diff --git a/.github/workflows/build-api.yml b/.github/workflows/build-api.yml index 8f05afc..13deb53 100644 --- a/.github/workflows/build-api.yml +++ b/.github/workflows/build-api.yml @@ -10,24 +10,24 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v2 + - name: Checkout code + uses: actions/checkout@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 - - name: Login to GitHub Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: nmcc1212 - password: ${{ secrets.GHCR_PAT }} + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: nmcc1212 + password: ${{ secrets.GHCR_PAT }} - - name: Build and push Docker image - uses: docker/build-push-action@v2 - with: - context: . - platforms: linux/amd64,linux/arm64 - file: newAPI/Dockerfile - push: true - tags: ghcr.io/nmcc1212/mongo-api:latest \ No newline at end of file + - name: Build and push Docker image + uses: docker/build-push-action@v2 + with: + context: . + platforms: linux/amd64,linux/arm64 + file: newAPI/Dockerfile + push: true + tags: ghcr.io/nmcc1212/mongo-api:latest diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index 18b99e3..e67f3af 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -10,27 +10,27 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v2 + - name: Checkout code + uses: actions/checkout@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 - - name: Login to GitHub Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: nmcc1212 - password: ${{ secrets.GHCR_PAT }} + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: nmcc1212 + password: ${{ secrets.GHCR_PAT }} - - name: Build and push Docker image - uses: docker/build-push-action@v2 - with: - context: . - platforms: linux/amd64,linux/arm64 - file: docker/cacher/Dockerfile - push: true - tags: ghcr.io/nmcc1212/cacher:latest + - name: Build and push Docker image + uses: docker/build-push-action@v2 + with: + context: . + platforms: linux/amd64,linux/arm64 + file: docker/cacher/Dockerfile + push: true + tags: ghcr.io/nmcc1212/cacher:latest build-next-app: runs-on: ubuntu-latest diff --git a/.github/workflows/old.build.yml b/.github/workflows/old.build.yml index 441d746..b29c5b7 100644 --- a/.github/workflows/old.build.yml +++ b/.github/workflows/old.build.yml @@ -5,7 +5,6 @@ on: branches: - main - jobs: build: name: Build @@ -14,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v2 with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: install dependencies working-directory: ./intro to react/vite-project run: sudo npm install diff --git a/.github/workflows/postman.yml b/.github/workflows/postman.yml index 90a561e..ffbfdeb 100644 --- a/.github/workflows/postman.yml +++ b/.github/workflows/postman.yml @@ -23,4 +23,4 @@ jobs: postman collection run 32854919-ced710d2-8af1-4f36-bdc1-027dce3c78af -i 32854919-68fb46d3-8dcf-4965-ae19-063315b21e38 --insecure - name: run users tests run: | - postman collection run 32854919-ced710d2-8af1-4f36-bdc1-027dce3c78af -i 32854919-df352302-1081-4e05-beb5-b6e62127eb13 --insecure \ No newline at end of file + postman collection run 32854919-ced710d2-8af1-4f36-bdc1-027dce3c78af -i 32854919-df352302-1081-4e05-beb5-b6e62127eb13 --insecure diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 8dacf56..10b5b82 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -1,77 +1,76 @@ name: Tests on: - push: - branches: - - main - + push: + branches: + - main jobs: - jest: - runs-on: ubuntu-latest - permissions: read-all - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: install dependencies - working-directory: ./next/news-aggregation - run: sudo npm install - - name: install jest globally - run: sudo npm install -g jest - - name: run tests - working-directory: ./next/news-aggregation - run: npm run test - playwright: - runs-on: ubuntu-latest - permissions: read-all - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: install dependencies - working-directory: ./next/news-aggregation - run: sudo npm install - - name: playright setup - run: npx playwright install --with-deps - - name: Tailscale - uses: tailscale/github-action@v2 - with: - oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} - oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} - tags: tag:ci - - name: Deploy to remote host - uses: appleboy/ssh-action@master - with: - host: ${{ secrets.NEWNEWTITANIUM_IP }} - username: ${{ secrets.NEWNEWTITANIUM_USER }} - password: ${{ secrets.NEWNEWTITANIUM_PASS }} - script: | - cd /home/nial/TSI - git pull - npm install - screen -S TSI -X quit - screen -dmS TSI npm run dev - - name: run tests - working-directory: ./next/news-aggregation - run: npx playwright test - sonarqube: - runs-on: ubuntu-latest - permissions: read-all - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: install dependencies - working-directory: ./next/news-aggregation - run: sudo npm install - - uses: sonarsource/sonarqube-scan-action@master - env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} - # If you wish to fail your job when the Quality Gate is red, uncomment the - # following lines. This would typically be used to fail a deployment. - # - uses: sonarsource/sonarqube-quality-gate-action@master - # timeout-minutes: 5 - # env: - # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} \ No newline at end of file + jest: + runs-on: ubuntu-latest + permissions: read-all + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: install dependencies + working-directory: ./next/news-aggregation + run: sudo npm install + - name: install jest globally + run: sudo npm install -g jest + - name: run tests + working-directory: ./next/news-aggregation + run: npm run test + playwright: + runs-on: ubuntu-latest + permissions: read-all + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: install dependencies + working-directory: ./next/news-aggregation + run: sudo npm install + - name: playright setup + run: npx playwright install --with-deps + - name: Tailscale + uses: tailscale/github-action@v2 + with: + oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} + oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} + tags: tag:ci + - name: Deploy to remote host + uses: appleboy/ssh-action@master + with: + host: ${{ secrets.NEWNEWTITANIUM_IP }} + username: ${{ secrets.NEWNEWTITANIUM_USER }} + password: ${{ secrets.NEWNEWTITANIUM_PASS }} + script: | + cd /home/nial/TSI + git pull + npm install + screen -S TSI -X quit + screen -dmS TSI npm run dev + - name: run tests + working-directory: ./next/news-aggregation + run: npx playwright test + sonarqube: + runs-on: ubuntu-latest + permissions: read-all + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: install dependencies + working-directory: ./next/news-aggregation + run: sudo npm install + - uses: sonarsource/sonarqube-scan-action@master + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + # If you wish to fail your job when the Quality Gate is red, uncomment the + # following lines. This would typically be used to fail a deployment. + # - uses: sonarsource/sonarqube-quality-gate-action@master + # timeout-minutes: 5 + # env: + # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.vscode/settings.json b/.vscode/settings.json index f5b4323..e13a9be 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,7 @@ { - "sonarlint.connectedMode.project": { - "connectionId": "macbook", - "projectKey": "nmcc1212_TSI_AYwhmp3yeDOWGHdFx60w" - }, - "jest.rootPath": "next/news-aggregation" -} \ No newline at end of file + "sonarlint.connectedMode.project": { + "connectionId": "macbook", + "projectKey": "nmcc1212_TSI_AYwhmp3yeDOWGHdFx60w" + }, + "jest.rootPath": "next/news-aggregation" +} diff --git a/FIle handling/EzFileHandling.js b/FIle handling/EzFileHandling.js index e241398..4afb54c 100644 --- a/FIle handling/EzFileHandling.js +++ b/FIle handling/EzFileHandling.js @@ -1,41 +1,37 @@ // create a new text file or open it if it exists -const fs = require('fs'); - -const fileName = 'newFile.txt'; -const content = 'This is a new file'; +const fs = require("fs"); +const fileName = "newFile.txt"; +const content = "This is a new file"; try { - fs.writeFileSync(fileName, content); - console.log('Saved Text!'); -} -catch (err) { - console.error(err); + fs.writeFileSync(fileName, content); + console.log("Saved Text!"); +} catch (err) { + console.error(err); } // Json file handling -const jsFileName = 'newJsonFile.json'; +const jsFileName = "newJsonFile.json"; const jsContent = '{"name":"John", "age":30, "city":"New York"}'; try { - fs.writeFileSync(jsFileName, jsContent); - console.log('Saved JSON!'); - const data = fs.readFileSync(jsFileName, 'utf8'); - console.log(data); -} -catch (err) { - console.error(err); + fs.writeFileSync(jsFileName, jsContent); + console.log("Saved JSON!"); + const data = fs.readFileSync(jsFileName, "utf8"); + console.log(data); +} catch (err) { + console.error(err); } // Read a json file -const existingJsFile = 'vscode.json'; +const existingJsFile = "vscode.json"; try { - const data = fs.readFileSync(existingJsFile, 'utf8'); - const obj = JSON.parse(data); - console.log(JSON.stringify(obj, null, 2)); + const data = fs.readFileSync(existingJsFile, "utf8"); + const obj = JSON.parse(data); + console.log(JSON.stringify(obj, null, 2)); +} catch (err) { + console.error(err); } -catch (err) { - console.error(err); -} \ No newline at end of file diff --git a/FIle handling/inheritance.js b/FIle handling/inheritance.js index b9fde16..1e373c5 100644 --- a/FIle handling/inheritance.js +++ b/FIle handling/inheritance.js @@ -1,47 +1,49 @@ // class human has properties age and name class Human { - constructor(age, name) { - this.age = age; - this.name = name; - } - - displayInfo() { - console.log(`Name: ${this.name}, Age: ${this.age}`); - } + constructor(age, name) { + this.age = age; + this.name = name; + } + + displayInfo() { + console.log(`Name: ${this.name}, Age: ${this.age}`); + } } // class trainer inherits from class human class Trainer extends Human { - constructor(age, name, subject) { - super(age, name); - this.subject = subject; - } - - displayInfo() { - super.displayInfo(); - console.log(`Subject: ${this.subject}`); - } - - conductTraining() { - console.log(`${this.name} is conducting a training session on ${this.subject}.`); - } + constructor(age, name, subject) { + super(age, name); + this.subject = subject; + } + + displayInfo() { + super.displayInfo(); + console.log(`Subject: ${this.subject}`); + } + + conductTraining() { + console.log( + `${this.name} is conducting a training session on ${this.subject}.`, + ); + } } // class consultant inherits from class human class Consultant extends Human { - constructor(age, name, company) { - super(age, name); - this.company = company; - } - - displayInfo() { - super.displayInfo(); - console.log(`Company: ${this.company}`); - } - - provideConsultation() { - console.log(`${this.name} is providing consultation for ${this.company}.`); - } + constructor(age, name, company) { + super(age, name); + this.company = company; + } + + displayInfo() { + super.displayInfo(); + console.log(`Company: ${this.company}`); + } + + provideConsultation() { + console.log(`${this.name} is providing consultation for ${this.company}.`); + } } // Example usage: diff --git a/FIle handling/newJsonFile.json b/FIle handling/newJsonFile.json index a074204..8238607 100644 --- a/FIle handling/newJsonFile.json +++ b/FIle handling/newJsonFile.json @@ -1 +1 @@ -{"name":"John", "age":30, "city":"New York"} \ No newline at end of file +{ "name": "John", "age": 30, "city": "New York" } diff --git a/FIle handling/vscode.json b/FIle handling/vscode.json index 0757ee1..d4921ee 100644 --- a/FIle handling/vscode.json +++ b/FIle handling/vscode.json @@ -1,31 +1,31 @@ { - "python.defaultInterpreterPath": "/opt/homebrew/bin/python3", - "editor.inlineSuggest.enabled": true, - "git.enableSmartCommit": true, - "github.copilot.enable": { - "*": true, - "plaintext": true, - "markdown": false, - "scminput": false, - "yaml": false - }, - "yaml.schemas": { - "file:///Users/nial/.vscode/extensions/docsmsft.docs-yaml-1.0.1/dist/toc.schema.json": "/toc\\.yml/i" - }, - "diffEditor.ignoreTrimWhitespace": false, - "[python]": { - "editor.formatOnType": true - }, - "workbench.colorTheme": "Shades of Purple", - "liveServer.settings.donotShowInfoMsg": true, - "debug.javascript.defaultRuntimeExecutable": { - "pwa-node": "node" - }, - "liveServer.settings.donotVerifyTags": true, - "telemetry.telemetryLevel": "off", - "redhat.telemetry.enabled": false, - "gitlens.telemetry.enabled": false, - "docsYaml.telemetry.enableTelemetry": false, - "code-runner.enableAppInsights": false, - "files.autoSave": "onFocusChange" -} \ No newline at end of file + "python.defaultInterpreterPath": "/opt/homebrew/bin/python3", + "editor.inlineSuggest.enabled": true, + "git.enableSmartCommit": true, + "github.copilot.enable": { + "*": true, + "plaintext": true, + "markdown": false, + "scminput": false, + "yaml": false + }, + "yaml.schemas": { + "file:///Users/nial/.vscode/extensions/docsmsft.docs-yaml-1.0.1/dist/toc.schema.json": "/toc\\.yml/i" + }, + "diffEditor.ignoreTrimWhitespace": false, + "[python]": { + "editor.formatOnType": true + }, + "workbench.colorTheme": "Shades of Purple", + "liveServer.settings.donotShowInfoMsg": true, + "debug.javascript.defaultRuntimeExecutable": { + "pwa-node": "node" + }, + "liveServer.settings.donotVerifyTags": true, + "telemetry.telemetryLevel": "off", + "redhat.telemetry.enabled": false, + "gitlens.telemetry.enabled": false, + "docsYaml.telemetry.enableTelemetry": false, + "code-runner.enableAppInsights": false, + "files.autoSave": "onFocusChange" +} diff --git a/TSI.code-workspace b/TSI.code-workspace index de719ad..e529cc2 100644 --- a/TSI.code-workspace +++ b/TSI.code-workspace @@ -1,9 +1,8 @@ { - "folders": [ - { - "path": "." - } - ], - "settings": { - } -} \ No newline at end of file + "folders": [ + { + "path": ".", + }, + ], + "settings": {}, +} diff --git a/api/express/helloworld.ts b/api/express/helloworld.ts index 5b17b46..344e688 100644 --- a/api/express/helloworld.ts +++ b/api/express/helloworld.ts @@ -1,17 +1,15 @@ import express, { Request, Response } from "express"; -import loggerMiddleware from './loggerMiddleware'; - +import loggerMiddleware from "./loggerMiddleware"; const app = express(); const port = 3100; app.use(loggerMiddleware); - -app.get('/', (req: Request, res: Response) => { - res.send('Hello, World!'); +app.get("/", (req: Request, res: Response) => { + res.send("Hello, World!"); }); -app.get('/news', (req: Request, res: Response) => { - res.send('This is a news page'); -}) \ No newline at end of file +app.get("/news", (req: Request, res: Response) => { + res.send("This is a news page"); +}); diff --git a/api/express/loggerMiddleware.ts b/api/express/loggerMiddleware.ts index 9b5b9e0..988adf7 100644 --- a/api/express/loggerMiddleware.ts +++ b/api/express/loggerMiddleware.ts @@ -1,4 +1,4 @@ -import { Request, Response, NextFunction } from 'express'; +import { Request, Response, NextFunction } from "express"; const loggerMiddleware = (req: Request, res: Response, next: NextFunction) => { const timestamp = new Date().toISOString(); diff --git a/api/mongo/UsersSchema.ts b/api/mongo/UsersSchema.ts index 6874a46..d01b108 100644 --- a/api/mongo/UsersSchema.ts +++ b/api/mongo/UsersSchema.ts @@ -1,10 +1,10 @@ import { Schema } from "mongoose"; const usersSchema = new Schema({ - userID: { type: Number, required: true, unique: true }, - username: { type: String, required: true }, - password: { type: String, required: true }, - signUpDate: { type: Date, default: Date.now } -}) + userID: { type: Number, required: true, unique: true }, + username: { type: String, required: true }, + password: { type: String, required: true }, + signUpDate: { type: Date, default: Date.now }, +}); -export default usersSchema; \ No newline at end of file +export default usersSchema; diff --git a/api/mongo/abc.ts b/api/mongo/abc.ts index 2014748..6bbefdb 100644 --- a/api/mongo/abc.ts +++ b/api/mongo/abc.ts @@ -1,3 +1,3 @@ -let abc = new Date() -abc.setFullYear(abc.getFullYear() + 1) -console.log(abc) \ No newline at end of file +let abc = new Date(); +abc.setFullYear(abc.getFullYear() + 1); +console.log(abc); diff --git a/api/mongo/mongoose.ts b/api/mongo/mongoose.ts index 498df4a..baf85dc 100644 --- a/api/mongo/mongoose.ts +++ b/api/mongo/mongoose.ts @@ -1,56 +1,57 @@ import mongoose from "mongoose"; import todoSchema from "./schema"; - -const Todo = mongoose.model("todos", todoSchema) +const Todo = mongoose.model("todos", todoSchema); async function main() { - await mongoose.connect("mongodb://100.125.70.69:27017/todo-list", { + await mongoose.connect("mongodb://100.125.70.69:27017/todo-list", { authSource: "admin", user: "root", pass: "password", -}); - - const todos = await Todo.find() - console.log(todos) - await create5items() - await deleteCompleted() - await addExpiryDate() + }); + + const todos = await Todo.find(); + console.log(todos); + await create5items(); + await deleteCompleted(); + await addExpiryDate(); } -main().then(()=> console.log("ree")).catch(e => console.error(e)) +main() + .then(() => console.log("ree")) + .catch((e) => console.error(e)); async function create5items() { - // get most recent id - const todos = await Todo.find().sort({id: -1}).limit(1) - console.log(todos) - let lastId = todos[0].id - console.log(lastId) - // create 5 new items - for (let i = 1; i <= 5; i++) { - const todo = new Todo({ - id: lastId + i, - todo: `Todo ${i}`, - userId: 1 - }) - await todo.save() - console.log(todo) - } + // get most recent id + const todos = await Todo.find().sort({ id: -1 }).limit(1); + console.log(todos); + let lastId = todos[0].id; + console.log(lastId); + // create 5 new items + for (let i = 1; i <= 5; i++) { + const todo = new Todo({ + id: lastId + i, + todo: `Todo ${i}`, + userId: 1, + }); + await todo.save(); + console.log(todo); + } } async function deleteCompleted() { - console.log("Deleting completed items") - await Todo.deleteMany({completed: true}) - console.log("Deleted completed items") + console.log("Deleting completed items"); + await Todo.deleteMany({ completed: true }); + console.log("Deleted completed items"); } async function addExpiryDate() { - console.log("Adding expiry date") - const todos = await Todo.find() - let year1 = new Date() - year1.setFullYear(year1.getFullYear() + 1) - for (const todo of todos) { - todo.expiryDate = year1 - await todo.save() - } - console.log("Added expiry date") -} \ No newline at end of file + console.log("Adding expiry date"); + const todos = await Todo.find(); + let year1 = new Date(); + year1.setFullYear(year1.getFullYear() + 1); + for (const todo of todos) { + todo.expiryDate = year1; + await todo.save(); + } + console.log("Added expiry date"); +} diff --git a/api/mongo/newsCRUD.ts b/api/mongo/newsCRUD.ts index 1c43b2a..721370b 100644 --- a/api/mongo/newsCRUD.ts +++ b/api/mongo/newsCRUD.ts @@ -1,27 +1,32 @@ import mongoose from "mongoose"; import { NewsSchema } from "./newsSchema"; -const News = mongoose.model("a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697", NewsSchema); +const News = mongoose.model( + "a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697", + NewsSchema, +); async function main() { - await mongoose.connect("mongodb://100.125.70.69:27017/newsDB", { - authSource: "admin", - user: "root", - pass: "password", - }); - getNews() + await mongoose.connect("mongodb://100.125.70.69:27017/newsDB", { + authSource: "admin", + user: "root", + pass: "password", + }); + getNews(); } async function getNews() { - const newsFind = await News.find() - console.log(newsFind) + const newsFind = await News.find(); + console.log(newsFind); } async function deadLink(id) { - const newsFind = await News.findById(id) - console.log(newsFind) - newsFind.updateOne - // change link to web.arhcive.org/{$link} + const newsFind = await News.findById(id); + console.log(newsFind); + newsFind.updateOne; + // change link to web.arhcive.org/{$link} } -main().then(() => console.log("done")).catch((err) => console.log(err)); \ No newline at end of file +main() + .then(() => console.log("done")) + .catch((err) => console.log(err)); diff --git a/api/mongo/newsSchema.ts b/api/mongo/newsSchema.ts index 9f756ac..fee3990 100644 --- a/api/mongo/newsSchema.ts +++ b/api/mongo/newsSchema.ts @@ -1,7 +1,7 @@ import { Schema } from "mongoose"; export const NewsSchema = new Schema({ - id: Number, - title: String, - contentSnippet: String, - date: Date + id: Number, + title: String, + contentSnippet: String, + date: Date, }); diff --git a/api/mongo/schema.ts b/api/mongo/schema.ts index ef84610..d63352c 100644 --- a/api/mongo/schema.ts +++ b/api/mongo/schema.ts @@ -1,11 +1,11 @@ import { Schema } from "mongoose"; const todoSchema = new Schema({ - id: { type: Number, required: true, unique: true }, - todo: { type: String, required: true }, - completed: { type: Boolean, default: false}, - userId: { type: Number, required: true }, - expiryDate: { type: Date } -}) + id: { type: Number, required: true, unique: true }, + todo: { type: String, required: true }, + completed: { type: Boolean, default: false }, + userId: { type: Number, required: true }, + expiryDate: { type: Date }, +}); -export default todoSchema; \ No newline at end of file +export default todoSchema; diff --git a/api/mongo/usersCRUD.ts b/api/mongo/usersCRUD.ts index 72ea0fc..a8c3d88 100644 --- a/api/mongo/usersCRUD.ts +++ b/api/mongo/usersCRUD.ts @@ -3,75 +3,77 @@ import todoSchema from "./schema"; import usersSchema from "./UsersSchema"; import { randomInt, randomUUID } from "crypto"; -const Todo = mongoose.model("todos", todoSchema) -const Users = mongoose.model("users", usersSchema) +const Todo = mongoose.model("todos", todoSchema); +const Users = mongoose.model("users", usersSchema); async function main() { - await mongoose.connect("mongodb://100.125.70.69:27017/todo-list", { - authSource: "admin", - user: "root", - pass: "password", - }); - createItem() - createUser() - getTodos() - getUsers() + await mongoose.connect("mongodb://100.125.70.69:27017/todo-list", { + authSource: "admin", + user: "root", + pass: "password", + }); + createItem(); + createUser(); + getTodos(); + getUsers(); } -main().then(()=> console.log("ree")).catch(e => console.error(e)) +main() + .then(() => console.log("ree")) + .catch((e) => console.error(e)); async function createItem() { - // get most recent id - const todos = await Todo.find().sort({id: -1}).limit(1) - let lastId = todos[0].id - // create 1 new item - const todo = new Todo({ - id: lastId + 1, - todo: "read", - userId: 1 - }) - await todo.save() - console.log(todo) + // get most recent id + const todos = await Todo.find().sort({ id: -1 }).limit(1); + let lastId = todos[0].id; + // create 1 new item + const todo = new Todo({ + id: lastId + 1, + todo: "read", + userId: 1, + }); + await todo.save(); + console.log(todo); } async function createUser() { - const ids = await Users.find().sort({userID: -1}).limit(1) - let lastId = ids[0].userID - const user = new Users({ - userID: lastId + 1, - username: "test", - password: "test", - signUpDate: Date.now - }) + const ids = await Users.find().sort({ userID: -1 }).limit(1); + let lastId = ids[0].userID; + const user = new Users({ + userID: lastId + 1, + username: "test", + password: "test", + signUpDate: Date.now, + }); } async function getTodos() { - const todos = await Todo.find() - return todos + const todos = await Todo.find(); + return todos; } async function getUsers() { - const users = await Users.find() - return users + const users = await Users.find(); + return users; } async function changeName() { - const users = await Users.find() - for (const user of users) { - let name = randomInt(1, 100) - user.username = "test", name - await user.save() - } + const users = await Users.find(); + for (const user of users) { + let name = randomInt(1, 100); + (user.username = "test"), name; + await user.save(); + } } async function PushDate() { - const todos = await Todo.find() - const len = todos.length - for (let i = 0; i <= len; i++) { - let newDate = todos[i].expiryDate - if (newDate !== null && newDate !== undefined) { - newDate.setFullYear(newDate.getFullYear() + 1) - } - todos.expiryDate = newDate - await todo.save() + const todos = await Todo.find(); + const len = todos.length; + for (let i = 0; i <= len; i++) { + let newDate = todos[i].expiryDate; + if (newDate !== null && newDate !== undefined) { + newDate.setFullYear(newDate.getFullYear() + 1); } - console.log("Added expiry date") -} \ No newline at end of file + todos.expiryDate = newDate; + await todo.save(); + } + console.log("Added expiry date"); +} diff --git a/compose/1/docker-compose.yml b/compose/1/docker-compose.yml index 06ce29a..4e4d854 100644 --- a/compose/1/docker-compose.yml +++ b/compose/1/docker-compose.yml @@ -4,10 +4,10 @@ services: web: build: . ports: - - "8000:5000" + - "8000:5000" volumes: - - . :/code + - . :/code environment: FLASK_DEBUG: True redis: - image: "redis:alpine" \ No newline at end of file + image: "redis:alpine" diff --git a/compose/2/docker-compose.yml b/compose/2/docker-compose.yml index fdb0402..f261afe 100644 --- a/compose/2/docker-compose.yml +++ b/compose/2/docker-compose.yml @@ -5,10 +5,10 @@ services: volumes: - ./data/db:/var/lib/postgresql/data environment: - - POSTGRES_DB=postgres - - POSTGRES_USER=postgres - - POSTGRES_PASSWORD=postgres - web: + - POSTGRES_DB=postgres + - POSTGRES_USER=postgres + - POSTGRES_PASSWORD=postgres + web: build: . command: python manage.py runserver 0.0.0.0:8000 volumes: @@ -20,4 +20,4 @@ services: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres depends_on: - - db \ No newline at end of file + - db diff --git a/compose/3/docker-compose.yml b/compose/3/docker-compose.yml index 07408c3..2b32b72 100644 --- a/compose/3/docker-compose.yml +++ b/compose/3/docker-compose.yml @@ -4,7 +4,7 @@ services: image: mariadb:10.6.4-focal # If you really want to use MySQL, uncomment the following line #image: mysql:8.0.27 - command: '--default-authentication-plugin=mysql_native_password' + command: "--default-authentication-plugin=mysql_native_password" volumes: - db_data:/var/lib/mysql restart: always @@ -30,4 +30,4 @@ services: - WORDPRESS_DB_NAME=wordpress volumes: db_data: - wp_data: \ No newline at end of file + wp_data: diff --git a/data in JS/2xLinkedList.js b/data in JS/2xLinkedList.js index c54b2c5..4bd1d81 100644 --- a/data in JS/2xLinkedList.js +++ b/data in JS/2xLinkedList.js @@ -1,83 +1,87 @@ -const prompt = require('prompt-sync')(); +const prompt = require("prompt-sync")(); // create a doubly linked list with 10 elelments let doublyLinkedList = { - head: { - value: 10, + head: { + value: 10, + next: { + value: 5, + prev: 10, + next: { + value: 16, + prev: 5, next: { - value: 5, - prev: 10, + value: 2, + prev: 16, + next: { + value: 11, + prev: 2, next: { - value: 16, - prev: 5, + value: 3, + prev: 11, + next: { + value: 7, + prev: 3, next: { - value: 2, - prev: 16, + value: 8, + prev: 7, + next: { + value: 1, + prev: 8, next: { - value: 11, - prev: 2, - next: { - value: 3, - prev: 11, - next: { - value: 7, - prev: 3, - next: { - value: 8, - prev: 7, - next: { - value: 1, - prev: 8, - next: { - value: 9, - prev: 1, - next: null - } - } - } - } - } - } - } - } - } - } + value: 9, + prev: 1, + next: null, + }, + }, + }, + }, + }, + }, + }, + }, + }, + }, }; // output the list function spitOut(list) { - let currentNode = list.head; - while (currentNode !== null) { // go until end of list - console.log(currentNode.value); - currentNode = currentNode.next; - } + let currentNode = list.head; + while (currentNode !== null) { + // go until end of list + console.log(currentNode.value); + currentNode = currentNode.next; + } } // output including next and prev function spitOutVerbose(list) { - let currentNode = list.head; - while (currentNode !== null) { // go until end of list - console.log(currentNode); - currentNode = currentNode.next; - } + let currentNode = list.head; + while (currentNode !== null) { + // go until end of list + console.log(currentNode); + currentNode = currentNode.next; + } } // add a node to the end of the list function lmaoAppend(list, value) { - let newNode = { // define new node - value: value, - prev: null, - next: null - }; - let currentNode = list.head; - while (currentNode.next !== null) { // go until no more - currentNode = currentNode.next; - } - currentNode.next = newNode; // add new node to end - newNode.prev = currentNode; // new node points to previous node - return list; + let newNode = { + // define new node + value: value, + prev: null, + next: null, + }; + let currentNode = list.head; + while (currentNode.next !== null) { + // go until no more + currentNode = currentNode.next; + } + currentNode.next = newNode; // add new node to end + newNode.prev = currentNode; // new node points to previous node + return list; } -console.log ("Enter a number to append to the list: "); +console.log("Enter a number to append to the list: "); let appendValue = prompt(); lmaoAppend(doublyLinkedList, appendValue); console.log("appending"); @@ -86,17 +90,18 @@ spitOutVerbose(doublyLinkedList); // add a node to the beginning of the list function lmaoPrepend(list, value) { - let newNode = { // define new node - value: value, - prev: null, - next: list.head // new node points to current head - }; - list.head.prev = newNode; // current head points to new node - list.head = newNode; // new node becomes head - return list; + let newNode = { + // define new node + value: value, + prev: null, + next: list.head, // new node points to current head + }; + list.head.prev = newNode; // current head points to new node + list.head = newNode; // new node becomes head + return list; } -console.log ("Enter a number to prepend to the list: "); +console.log("Enter a number to prepend to the list: "); let prependValue = prompt(); lmaoPrepend(doublyLinkedList, prependValue); console.log("prepending"); @@ -105,9 +110,9 @@ spitOutVerbose(doublyLinkedList); // remove a node from the beginning of the list function lmaoHeadPop(list) { - list.head = list.head.next; // head becomes next node - list.head.prev = null; // new head points to null - return list; + list.head = list.head.next; // head becomes next node + list.head.prev = null; // new head points to null + return list; } spitOut(doublyLinkedList); console.log("headpop"); @@ -117,66 +122,70 @@ spitOut(doublyLinkedList); // remove a node from the end of the list function lmaoPop(list) { - let currentNode = list.head; - while (currentNode.next.next !== null) { // go until 2nd to last - currentNode = currentNode.next; - } - currentNode.next = null; // remove last node - return list; + let currentNode = list.head; + while (currentNode.next.next !== null) { + // go until 2nd to last + currentNode = currentNode.next; + } + currentNode.next = null; // remove last node + return list; } lmaoPop(doublyLinkedList); console.log("popping"); spitOut(doublyLinkedList); // remove a node from given position in list function lmaoRemove(list, position) { - let currentNode = list.head; - let counter = 0; - while (counter !== position - 1) { // go until position - currentNode = currentNode.next; - counter++; // increment counter - } - currentNode.next = currentNode.next.next; // remove node - return list; + let currentNode = list.head; + let counter = 0; + while (counter !== position - 1) { + // go until position + currentNode = currentNode.next; + counter++; // increment counter + } + currentNode.next = currentNode.next.next; // remove node + return list; } -console.log ("Enter a position to remove from the list: "); +console.log("Enter a position to remove from the list: "); let removeValue = prompt(); lmaoRemove(doublyLinkedList, removeValue); console.log("removing"); spitOut(doublyLinkedList); - // add to nth position function lmaoAdd(list, value, position) { - let currentNode = list.head; - let counter = 0; - while (counter !== position - 1) { // go until position - currentNode = currentNode.next; - counter++; // increment counter - } - let newNode = { // define new node - value: value, - prev: currentNode, - next: currentNode.next - }; - currentNode.next = newNode; // add new node - return list; + let currentNode = list.head; + let counter = 0; + while (counter !== position - 1) { + // go until position + currentNode = currentNode.next; + counter++; // increment counter + } + let newNode = { + // define new node + value: value, + prev: currentNode, + next: currentNode.next, + }; + currentNode.next = newNode; // add new node + return list; } -console.log ("Enter a number to add to the list: "); +console.log("Enter a number to add to the list: "); let addValue = prompt(); -console.log ("Enter a position to add to the list: "); +console.log("Enter a position to add to the list: "); let addPosition = prompt(); lmaoAdd(doublyLinkedList, addValue, addPosition); // get a node from given position in list function lmaoGet(list, position) { - let currentNode = list.head; - let counter = 0; - while (counter !== position) { // go until position - currentNode = currentNode.next; - counter++; // increment counter - } - return currentNode; + let currentNode = list.head; + let counter = 0; + while (counter !== position) { + // go until position + currentNode = currentNode.next; + counter++; // increment counter + } + return currentNode; } -console.log ("Enter a position to get from the list: "); +console.log("Enter a position to get from the list: "); let getValue = prompt(); -console.log(lmaoGet(doublyLinkedList, getValue)); \ No newline at end of file +console.log(lmaoGet(doublyLinkedList, getValue)); diff --git a/data in JS/files.js b/data in JS/files.js index 5a7fa26..928b6ef 100644 --- a/data in JS/files.js +++ b/data in JS/files.js @@ -1,42 +1,41 @@ -const sqlite3 = require('sqlite3').verbose(); -let db = new sqlite3.Database('app.sqlite',sqlite3.OPEN_READWRITE, (err) => { - if (db) { - console.log('Connected to the database.'); - } - else { - console.log('Failed to connect to the database.'); - } +const sqlite3 = require("sqlite3").verbose(); +let db = new sqlite3.Database("app.sqlite", sqlite3.OPEN_READWRITE, (err) => { + if (db) { + console.log("Connected to the database."); + } else { + console.log("Failed to connect to the database."); + } }); -const fs = require('fs'); -const outputFile = 'output.txt'; // Change the filename as needed +const fs = require("fs"); +const outputFile = "output.txt"; // Change the filename as needed db.serialize(() => { - db.each(`SELECT name as name, + db.each( + `SELECT name as name, website as website - FROM applications`, (err, row) => { + FROM applications`, + (err, row) => { if (err) { console.error(err.message); } - const sqlOutput = (row.name + "\t" + row.website); - console.log (sqlOutput); + const sqlOutput = row.name + "\t" + row.website; + console.log(sqlOutput); // write result into text file - fs.appendFile(outputFile, sqlOutput + '\n', (err) => { + fs.appendFile(outputFile, sqlOutput + "\n", (err) => { if (err) { - console.error(err.message); + console.error(err.message); } - }); - }); - }); - - - - // close the database connection + }); + }, + ); +}); +// close the database connection db.close((err) => { - if (err) { - return console.error(err.message); - } - console.log('Close the database connection.'); - }); \ No newline at end of file + if (err) { + return console.error(err.message); + } + console.log("Close the database connection."); +}); diff --git a/data in JS/linkedList.js b/data in JS/linkedList.js index 90002d6..cd98cfd 100644 --- a/data in JS/linkedList.js +++ b/data in JS/linkedList.js @@ -1,65 +1,71 @@ // create a linked list let linkedList = { - head: { - value: 10, - next: { - value: 5, - next: { - value: 16, - next: null - } - } - } + head: { + value: 10, + next: { + value: 5, + next: { + value: 16, + next: null, + }, + }, + }, }; // add a node to the end of the list function ezappend420(list, value) { - let newNode = { // define new node - value: value, - next: null - }; - let currentNode = list.head; - while (currentNode.next !== null) { // go until no more - currentNode = currentNode.next; - } - currentNode.next = newNode; // add new node to end - return list; + let newNode = { + // define new node + value: value, + next: null, + }; + let currentNode = list.head; + while (currentNode.next !== null) { + // go until no more + currentNode = currentNode.next; + } + currentNode.next = newNode; // add new node to end + return list; } ezappend420(linkedList, 1); // add a node to the beginning of the list function ezprepend420(list, value) { - let newNode = { // define new node - value: value, - next: list.head // new node points to current head - }; - list.head = newNode; // new node becomes head - return list; + let newNode = { + // define new node + value: value, + next: list.head, // new node points to current head + }; + list.head = newNode; // new node becomes head + return list; } ezprepend420(linkedList, 2); // remove a node from the beginning of the list function ezheadpop420(list) { - list.head = list.head.next; // head becomes next node - return list; + list.head = list.head.next; // head becomes next node + return list; } ezheadpop420(linkedList); // remove a node from the end of the list function ezpop420(list) { - let currentNode = list.head; - while (currentNode.next.next !== null) { // go until 2nd to last - currentNode = currentNode.next; - } - currentNode.next = null; // remove last node - return list; + let currentNode = list.head; + while (currentNode.next.next !== null) { + // go until 2nd to last + currentNode = currentNode.next; + } + currentNode.next = null; // remove last node + return list; } ezpop420(linkedList); // check if a node is in a list function ezcheck420(list, value) { - let currentNode = list.head; - while (currentNode !== null) { // go until end of list - if (currentNode.value === value) { // check if value matches - return true; - } - currentNode = currentNode.next; + let currentNode = list.head; + while (currentNode !== null) { + // go until end of list + if (currentNode.value === value) { + // check if value matches + return true; } - return false; + currentNode = currentNode.next; + } + return false; } ezcheck420(linkedList, 5); diff --git a/data in JS/priorityQueueMergeSort.js b/data in JS/priorityQueueMergeSort.js index fe3715a..0e685b7 100644 --- a/data in JS/priorityQueueMergeSort.js +++ b/data in JS/priorityQueueMergeSort.js @@ -1,118 +1,115 @@ -const prompt = require('prompt-sync')(); +const prompt = require("prompt-sync")(); // define a priority queue let priorityQueue = { - head: { - value: 10, - priority: 2, - next: { - value: 5, - priority: 1, - next: { - value: 16, - priority: 3, - next: null - } - } - } + head: { + value: 10, + priority: 2, + next: { + value: 5, + priority: 1, + next: { + value: 16, + priority: 3, + next: null, + }, + }, + }, }; // cone sort with gap function combSort(list) { - let gap = list.length; - let shrink = 1.3; - let sorted = false; - while (!sorted) { - gap = Math.floor(gap / shrink); - if (gap <= 1) { - gap = 1; - sorted = true; - } - let i = 0; - while (i + gap < list.length) { - if (list[i] > list[i + gap]) { - let temp = list[i]; - list[i] = list[i + gap]; - list[i + gap] = temp; - sorted = false; - } - i++; - } + let gap = list.length; + let shrink = 1.3; + let sorted = false; + while (!sorted) { + gap = Math.floor(gap / shrink); + if (gap <= 1) { + gap = 1; + sorted = true; } - return list; + let i = 0; + while (i + gap < list.length) { + if (list[i] > list[i + gap]) { + let temp = list[i]; + list[i] = list[i + gap]; + list[i + gap] = temp; + sorted = false; + } + i++; + } + } + return list; } // merge sort function mergeSort(list) { - if (list.length <= 1) { - return list; - } - let mid = Math.floor(list.length / 2); - let left = list.slice(0, mid); - let right = list.slice(mid); - return merge(mergeSort(left), mergeSort(right)); + if (list.length <= 1) { + return list; + } + let mid = Math.floor(list.length / 2); + let left = list.slice(0, mid); + let right = list.slice(mid); + return merge(mergeSort(left), mergeSort(right)); } function merge(left, right) { - let result = []; - let leftIndex = 0; - let rightIndex = 0; - while (leftIndex < left.length && - rightIndex < right.length) { - if (left[leftIndex] < right[rightIndex]) { - result.push(left[leftIndex]); - leftIndex++; - } else { - result.push(right[rightIndex]); - rightIndex++ - } + let result = []; + let leftIndex = 0; + let rightIndex = 0; + while (leftIndex < left.length && rightIndex < right.length) { + if (left[leftIndex] < right[rightIndex]) { + result.push(left[leftIndex]); + leftIndex++; + } else { + result.push(right[rightIndex]); + rightIndex++; } - return result.concat(left.slice(leftIndex)).concat(right.slice(rightIndex)); + } + return result.concat(left.slice(leftIndex)).concat(right.slice(rightIndex)); } // quick sort function quickSort(list, left, right) { - let pivot; - let partitionIndex; - if (left < right) { - pivot = right; - partitionIndex = partition(list, pivot, left, right); - quickSort(list, left, partitionIndex - 1); - quickSort(list, partitionIndex + 1, right); - } - return list; + let pivot; + let partitionIndex; + if (left < right) { + pivot = right; + partitionIndex = partition(list, pivot, left, right); + quickSort(list, left, partitionIndex - 1); + quickSort(list, partitionIndex + 1, right); + } + return list; } // bubble sort function bubbleSort(list) { - let swapped; - do { - swapped = false; - for (let i = 0; i < list.length; i++) { - if (list[i] && list[i + 1] && list[i] > list[i + 1]) { - let temp = list[i]; - list[i] = list[i + 1]; - list[i + 1] = temp; - swapped = true; - } - } - } while (swapped); - return list; + let swapped; + do { + swapped = false; + for (let i = 0; i < list.length; i++) { + if (list[i] && list[i + 1] && list[i] > list[i + 1]) { + let temp = list[i]; + list[i] = list[i + 1]; + list[i + 1] = temp; + swapped = true; + } + } + } while (swapped); + return list; } -console.log (" 1 for bubble sort, 2 for quick sort, 3 for merge sort, 4 for comb sort"); +console.log( + " 1 for bubble sort, 2 for quick sort, 3 for merge sort, 4 for comb sort", +); let input = prompt("Enter a number between 1 and 4: "); input = parseInt(input); -if (input == 1){ - console.log(bubbleSort(priorityQueue)); -} -else if (input == 2){ - console.log(quickSort(priorityQueue, 0, priorityQueue.length - 1)); -} -else if (input == 3){ - console.log(mergeSort(priorityQueue)); -} -else if (input == 4){ - console.log(combSort(priorityQueue)); -} -else { - console.log("You did not enter a number between 1 and 4."); +if (input == 1) { + console.log(bubbleSort(priorityQueue)); +} else if (input == 2) { + console.log(quickSort(priorityQueue, 0, priorityQueue.length - 1)); +} else if (input == 3) { + console.log(mergeSort(priorityQueue)); +} else if (input == 4) { + console.log(combSort(priorityQueue)); +} else { + console.log("You did not enter a number between 1 and 4."); } diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index f0b0a56..32c210b 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -1,4 +1,4 @@ -version: '3.8' +version: "3.8" services: news-aggregation: @@ -17,4 +17,4 @@ services: build: context: ./rss-to-json ports: - - "50110:50110" \ No newline at end of file + - "50110:50110" diff --git a/docker/kube/cacher.yml b/docker/kube/cacher.yml index 51d2213..c30938d 100644 --- a/docker/kube/cacher.yml +++ b/docker/kube/cacher.yml @@ -13,10 +13,10 @@ spec: app: cacher spec: containers: - - name: cacher - image: ghcr.io/nmcc1212/cacher - ports: - - containerPort: 50111 + - name: cacher + image: ghcr.io/nmcc1212/cacher + ports: + - containerPort: 50111 --- apiVersion: v1 @@ -27,7 +27,7 @@ spec: selector: app: cacher ports: - - protocol: TCP - port: 50111 - targetPort: 50111 + - protocol: TCP + port: 50111 + targetPort: 50111 type: LoadBalancer diff --git a/docker/kube/next-app.yml b/docker/kube/next-app.yml index 8798ac6..d0039c6 100644 --- a/docker/kube/next-app.yml +++ b/docker/kube/next-app.yml @@ -13,10 +13,10 @@ spec: app: news-aggregation spec: containers: - - name: news-aggregation - image: ghcr.io/nmcc1212/next-app - ports: - - containerPort: 3000 + - name: news-aggregation + image: ghcr.io/nmcc1212/next-app + ports: + - containerPort: 3000 --- apiVersion: v1 @@ -27,7 +27,7 @@ spec: selector: app: news-aggregation ports: - - protocol: TCP - port: 3000 - targetPort: 3000 - type: LoadBalancer \ No newline at end of file + - protocol: TCP + port: 3000 + targetPort: 3000 + type: LoadBalancer diff --git a/docker/kube/rss-to-json.yml b/docker/kube/rss-to-json.yml index 48bee67..ffeea65 100644 --- a/docker/kube/rss-to-json.yml +++ b/docker/kube/rss-to-json.yml @@ -13,10 +13,10 @@ spec: app: rss-to-json spec: containers: - - name: rss-to-json - image: ghcr.io/nmcc1212/rss-to-json - ports: - - containerPort: 50110 + - name: rss-to-json + image: ghcr.io/nmcc1212/rss-to-json + ports: + - containerPort: 50110 --- apiVersion: v1 @@ -27,7 +27,7 @@ spec: selector: app: rss-to-json ports: - - protocol: TCP - port: 50110 - targetPort: 50110 + - protocol: TCP + port: 50110 + targetPort: 50110 type: LoadBalancer diff --git a/html with js/withButtons.css b/html with js/withButtons.css index 59081b8..8afc367 100644 --- a/html with js/withButtons.css +++ b/html with js/withButtons.css @@ -1,36 +1,44 @@ -@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:200'); +@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro:200"); -body { - background-image: url('https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg'); - background-size:cover; - -webkit-animation: slidein 100s; - animation: slidein 100s; +body { + background-image: url("https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg"); + background-size: cover; + -webkit-animation: slidein 100s; + animation: slidein 100s; - -webkit-animation-fill-mode: forwards; - animation-fill-mode: forwards; + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; - -webkit-animation-direction: alternate; - animation-direction: alternate; + -webkit-animation-direction: alternate; + animation-direction: alternate; } @-webkit-keyframes slidein { -from {background-position: top; background-size:3000px; } -to {background-position: -100px 0px;background-size:2750px;} + from { + background-position: top; + background-size: 3000px; + } + to { + background-position: -100px 0px; + background-size: 2750px; + } } @keyframes slidein { -from {background-position: top;background-size:3000px; } -to {background-position: -100px 0px;background-size:2750px;} - + from { + background-position: top; + background-size: 3000px; + } + to { + background-position: -100px 0px; + background-size: 2750px; + } } - - -.center -{ +.center { display: flex; align-items: center; justify-content: center; @@ -43,14 +51,24 @@ to {background-position: -100px 0px;background-size:2750px;} background: rgba(75, 75, 250, 0.3); border-radius: 3px; } -.center h1{ - text-align:center; - color:white; - font-family: 'Source Code Pro', monospace; - text-transform:uppercase; +.center h1 { + text-align: center; + color: white; + font-family: "Source Code Pro", monospace; + text-transform: uppercase; } .rainbow-text { - background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red); -webkit-background-clip: text; + background-image: linear-gradient( + to left, + violet, + indigo, + blue, + green, + yellow, + orange, + red + ); + -webkit-background-clip: text; color: transparent; } @@ -93,7 +111,14 @@ li { letter-spacing: 5px; } .rainbow_text_animated { - background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff); + background: linear-gradient( + to right, + #6666ff, + #0099ff, + #00ff00, + #ff3399, + #6666ff + ); -webkit-background-clip: text; background-clip: text; color: transparent; @@ -101,16 +126,16 @@ li { background-size: 400% 100%; } - @keyframes rainbow_animation { - 0%,100% { - background-position: 0 0; + 0%, + 100% { + background-position: 0 0; } 50% { - background-position: 100% 0; + background-position: 100% 0; } } #myBtn { position: absolute; -} \ No newline at end of file +} diff --git a/html with js/withButtons.js b/html with js/withButtons.js index e1f6a75..53ac7c9 100644 --- a/html with js/withButtons.js +++ b/html with js/withButtons.js @@ -1,42 +1,42 @@ function click2img(game) { - console.log(game); - let imgsrc - if (game == "mw2"){ - imgsrc= 'https://imageio.forbes.com/specials-images/imageserve/628d337e791f9767c05ca2e7/1--2-/960x0.jpg?height=887&width=711&fit=bounds' - } - else if (game == "gta"){ - imgsrc= 'https://media.rockstargames.com/rockstargames/img/global/news/upload/actual_1380583804.jpg' - } - else if (game == "valorant"){ - imgsrc= 'https://cdn.oneesports.gg/cdn-data/2022/09/Valorant_Phoenix_Banner.jpg' - } - else if (game == "mw"){ - imgsrc= 'https://static.wikia.nocookie.net/callofduty/images/1/15/ModernWarfare_Artwork_MW.jpg/revision/latest?cb=20190530170954' - } - else if (game == "wz"){ - imgsrc= 'https://static.wikia.nocookie.net/callofduty/images/3/3d/Warzone_Artwork_CoDWarzone_MW.jpg/revision/latest?cb=20200331223136' - } - document.getElementById(game).src = imgsrc; - document.body.style.cssText+=`background-image:url(${imgsrc})`; + console.log(game); + let imgsrc; + if (game == "mw2") { + imgsrc = + "https://imageio.forbes.com/specials-images/imageserve/628d337e791f9767c05ca2e7/1--2-/960x0.jpg?height=887&width=711&fit=bounds"; + } else if (game == "gta") { + imgsrc = + "https://media.rockstargames.com/rockstargames/img/global/news/upload/actual_1380583804.jpg"; + } else if (game == "valorant") { + imgsrc = + "https://cdn.oneesports.gg/cdn-data/2022/09/Valorant_Phoenix_Banner.jpg"; + } else if (game == "mw") { + imgsrc = + "https://static.wikia.nocookie.net/callofduty/images/1/15/ModernWarfare_Artwork_MW.jpg/revision/latest?cb=20190530170954"; + } else if (game == "wz") { + imgsrc = + "https://static.wikia.nocookie.net/callofduty/images/3/3d/Warzone_Artwork_CoDWarzone_MW.jpg/revision/latest?cb=20200331223136"; + } + document.getElementById(game).src = imgsrc; + document.body.style.cssText += `background-image:url(${imgsrc})`; } function hideTable() { - document.getElementById("pcpp-table").style.display = "none"; + document.getElementById("pcpp-table").style.display = "none"; } function unhideTable() { - document.getElementById("pcpp-table").style.display = "block"; + document.getElementById("pcpp-table").style.display = "block"; } function autohideTable() { - if (document.getElementById("pcpp-table").style.display == "none"){ - document.getElementById("pcpp-table").style.display = "block"; - } - else{ - document.getElementById("pcpp-table").style.display = "none"; - } + if (document.getElementById("pcpp-table").style.display == "none") { + document.getElementById("pcpp-table").style.display = "block"; + } else { + document.getElementById("pcpp-table").style.display = "none"; + } } function Random() { - while (True) { + while (True) { let RandomX = Math.random() * 90 + "%"; let RandomY = Math.random() * 92 + "%"; console.log(RandomX); @@ -44,42 +44,48 @@ function Random() { document.getElementById("myBtn").style.left = RandomX; document.getElementById("myBtn").style.top = RandomY; sleep(2000); - } + } } async function getQuote() { - let api_url = "https://api.kanye.rest" - const response = await fetch(api_url); - const data = await response.json(); - document.getElementById("quote").innerHTML = data.quote; - console.log(data.quote); + let api_url = "https://api.kanye.rest"; + const response = await fetch(api_url); + const data = await response.json(); + document.getElementById("quote").innerHTML = data.quote; + console.log(data.quote); } async function getAPOD() { - let randomyear = Math.floor(Math.random() * 20) + 2000; - let randommonth = Math.floor(Math.random() * 12) + 1; - let randomday = Math.floor(Math.random() * 28) + 1; - let formatDate = randomyear + "-" + randommonth + "-" + randomday; - console.log(formatDate); - let api_url = "https://api.nasa.gov/planetary/apod?api_key=gZjPsiBxKY4m53pyMWV0KHj3pbQoB61k8aovfWOe&date=" + formatDate; - const response = await fetch(api_url); - const data = await response.json(); - console.log (response); - console.log(data); - document.getElementById("apod").src = data.url; - document.getElementById("apod_title").innerHTML = data.title; - document.getElementById("apod_explanation").innerHTML = data.explanation; - console.log(data.url); + let randomyear = Math.floor(Math.random() * 20) + 2000; + let randommonth = Math.floor(Math.random() * 12) + 1; + let randomday = Math.floor(Math.random() * 28) + 1; + let formatDate = randomyear + "-" + randommonth + "-" + randomday; + console.log(formatDate); + let api_url = + "https://api.nasa.gov/planetary/apod?api_key=gZjPsiBxKY4m53pyMWV0KHj3pbQoB61k8aovfWOe&date=" + + formatDate; + const response = await fetch(api_url); + const data = await response.json(); + console.log(response); + console.log(data); + document.getElementById("apod").src = data.url; + document.getElementById("apod_title").innerHTML = data.title; + document.getElementById("apod_explanation").innerHTML = data.explanation; + console.log(data.url); } -async function getAPODcal(){ - let date = document.getElementById("date").innerHTML = document.getElementById("date").value; - console.log(date); - const response = await fetch("https://api.nasa.gov/planetary/apod?api_key=gZjPsiBxKY4m53pyMWV0KHj3pbQoB61k8aovfWOe&date=" + date); - const data = await response.json(); - console.log (response); - console.log(data); - document.getElementById("apod").src = data.url; - document.getElementById("apod_title").innerHTML = data.title; - document.getElementById("apod_explanation").innerHTML = data.explanation; - console.log(data.url); +async function getAPODcal() { + let date = (document.getElementById("date").innerHTML = + document.getElementById("date").value); + console.log(date); + const response = await fetch( + "https://api.nasa.gov/planetary/apod?api_key=gZjPsiBxKY4m53pyMWV0KHj3pbQoB61k8aovfWOe&date=" + + date, + ); + const data = await response.json(); + console.log(response); + console.log(data); + document.getElementById("apod").src = data.url; + document.getElementById("apod_title").innerHTML = data.title; + document.getElementById("apod_explanation").innerHTML = data.explanation; + console.log(data.url); } diff --git a/html with ts/tsconfig.json b/html with ts/tsconfig.json index e075f97..bb2f7f6 100644 --- a/html with ts/tsconfig.json +++ b/html with ts/tsconfig.json @@ -11,7 +11,7 @@ // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ /* Language and Environment */ - "target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + "target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ // "jsx": "preserve", /* Specify what JSX code is generated. */ // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */ @@ -25,7 +25,7 @@ // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ /* Modules */ - "module": "commonjs", /* Specify what module code is generated. */ + "module": "commonjs" /* Specify what module code is generated. */, // "rootDir": "./", /* Specify the root folder within your source files. */ // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ @@ -77,12 +77,12 @@ // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ // "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */ // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ - "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */ + "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ - "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ + "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, /* Type Checking */ - "strict": true, /* Enable all strict type-checking options. */ + "strict": true /* Enable all strict type-checking options. */, // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */ // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */ // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ @@ -104,6 +104,6 @@ /* Completeness */ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ - "skipLibCheck": true /* Skip type checking all .d.ts files. */ + "skipLibCheck": true /* Skip type checking all .d.ts files. */ } } diff --git a/html with ts/withButtons.css b/html with ts/withButtons.css index e52cb00..d7cd3f4 100644 --- a/html with ts/withButtons.css +++ b/html with ts/withButtons.css @@ -1,34 +1,42 @@ -body { - background-image: url('https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg'); - background-size:cover; - -webkit-animation: slidein 100s; - animation: slidein 100s; +body { + background-image: url("https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg"); + background-size: cover; + -webkit-animation: slidein 100s; + animation: slidein 100s; - -webkit-animation-fill-mode: forwards; - animation-fill-mode: forwards; + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; - -webkit-animation-direction: alternate; - animation-direction: alternate; + -webkit-animation-direction: alternate; + animation-direction: alternate; } @-webkit-keyframes slidein { -from {background-position: top; background-size:3000px; } -to {background-position: -100px 0px;background-size:2750px;} + from { + background-position: top; + background-size: 3000px; + } + to { + background-position: -100px 0px; + background-size: 2750px; + } } @keyframes slidein { -from {background-position: top;background-size:3000px; } -to {background-position: -100px 0px;background-size:2750px;} - + from { + background-position: top; + background-size: 3000px; + } + to { + background-position: -100px 0px; + background-size: 2750px; + } } - - -.center -{ +.center { display: flex; align-items: center; justify-content: center; @@ -41,14 +49,24 @@ to {background-position: -100px 0px;background-size:2750px;} background: rgba(75, 75, 250, 0.3); border-radius: 3px; } -.center h1{ - text-align:center; - color:white; - font-family: 'Source Code Pro', monospace; - text-transform:uppercase; +.center h1 { + text-align: center; + color: white; + font-family: "Source Code Pro", monospace; + text-transform: uppercase; } .rainbow-text { - background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red); -webkit-background-clip: text; + background-image: linear-gradient( + to left, + violet, + indigo, + blue, + green, + yellow, + orange, + red + ); + -webkit-background-clip: text; color: transparent; } @@ -91,7 +109,14 @@ li { letter-spacing: 5px; } .rainbow_text_animated { - background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff); + background: linear-gradient( + to right, + #6666ff, + #0099ff, + #00ff00, + #ff3399, + #6666ff + ); -webkit-background-clip: text; background-clip: text; color: transparent; @@ -99,20 +124,20 @@ li { background-size: 400% 100%; } - @keyframes rainbow_animation { - 0%,100% { - background-position: 0 0; + 0%, + 100% { + background-position: 0 0; } 50% { - background-position: 100% 0; + background-position: 100% 0; } } #myBtn { position: absolute; -} +} #whiteText { color: white; -} \ No newline at end of file +} diff --git a/html with ts/withButtons.ts b/html with ts/withButtons.ts index 85b26c7..4466f08 100644 --- a/html with ts/withButtons.ts +++ b/html with ts/withButtons.ts @@ -1,103 +1,121 @@ function click2img(game: string) { - console.log(game); - let imgsrc - if (game == "mw2"){ - imgsrc= 'https://imageio.forbes.com/specials-images/imageserve/628d337e791f9767c05ca2e7/1--2-/960x0.jpg?height=887&width=711&fit=bounds' - } - else if (game == "gta"){ - imgsrc= 'https://media.rockstargames.com/rockstargames/img/global/news/upload/actual_1380583804.jpg' - } - else if (game == "valorant"){ - imgsrc= 'https://cdn.oneesports.gg/cdn-data/2022/09/Valorant_Phoenix_Banner.jpg' - } - else if (game == "mw"){ - imgsrc= 'https://static.wikia.nocookie.net/callofduty/images/1/15/ModernWarfare_Artwork_MW.jpg/revision/latest?cb=20190530170954' - } - else if (game == "wz"){ - imgsrc= 'https://static.wikia.nocookie.net/callofduty/images/3/3d/Warzone_Artwork_CoDWarzone_MW.jpg/revision/latest?cb=20200331223136' - } - let gameid: HTMLImageElement = document.getElementById(game) as HTMLImageElement; - gameid.src = imgsrc as string; + console.log(game); + let imgsrc; + if (game == "mw2") { + imgsrc = + "https://imageio.forbes.com/specials-images/imageserve/628d337e791f9767c05ca2e7/1--2-/960x0.jpg?height=887&width=711&fit=bounds"; + } else if (game == "gta") { + imgsrc = + "https://media.rockstargames.com/rockstargames/img/global/news/upload/actual_1380583804.jpg"; + } else if (game == "valorant") { + imgsrc = + "https://cdn.oneesports.gg/cdn-data/2022/09/Valorant_Phoenix_Banner.jpg"; + } else if (game == "mw") { + imgsrc = + "https://static.wikia.nocookie.net/callofduty/images/1/15/ModernWarfare_Artwork_MW.jpg/revision/latest?cb=20190530170954"; + } else if (game == "wz") { + imgsrc = + "https://static.wikia.nocookie.net/callofduty/images/3/3d/Warzone_Artwork_CoDWarzone_MW.jpg/revision/latest?cb=20200331223136"; + } + let gameid: HTMLImageElement = document.getElementById( + game, + ) as HTMLImageElement; + gameid.src = imgsrc as string; - document.body.style.cssText+=`background-image:url(${imgsrc})`; + document.body.style.cssText += `background-image:url(${imgsrc})`; } function hideTable() { - (document.getElementById("pcpp-table")as HTMLElement).style.display = "none"; + (document.getElementById("pcpp-table") as HTMLElement).style.display = "none"; } function unhideTable() { - (document.getElementById("pcpp-table")as HTMLElement).style.display = "block"; + (document.getElementById("pcpp-table") as HTMLElement).style.display = + "block"; } function autohideTable() { - if ((document.getElementById("pcpp-table")as HTMLElement).style.display == "none"){ - (document.getElementById("pcpp-table")as HTMLElement).style.display = "block"; - } - else{ - (document.getElementById("pcpp-table")as HTMLElement).style.display = "none"; - } + if ( + (document.getElementById("pcpp-table") as HTMLElement).style.display == + "none" + ) { + (document.getElementById("pcpp-table") as HTMLElement).style.display = + "block"; + } else { + (document.getElementById("pcpp-table") as HTMLElement).style.display = + "none"; + } } async function Random() { - let x=1; - while (x==1) { + let x = 1; + while (x == 1) { let RandomX = Math.random() * 90 + "%"; let RandomY = Math.random() * 92 + "%"; console.log(RandomX); console.log(RandomY); - let button = document.getElementById("myBtn") as HTMLElement + let button = document.getElementById("myBtn") as HTMLElement; button.style.left = RandomX; button.style.top = RandomY; sleep(2000); - } + } } function sleep(ms: number) { - return new Promise( resolve => setTimeout(resolve, ms) ); + return new Promise((resolve) => setTimeout(resolve, ms)); } async function getQuote() { - let api_url = "https://api.kanye.rest" - const response = await fetch(api_url); - const data = await response.json(); - let quote = document.getElementById("quote") as HTMLElement; - quote.innerHTML = data.quote; - console.log(data.quote); + let api_url = "https://api.kanye.rest"; + const response = await fetch(api_url); + const data = await response.json(); + let quote = document.getElementById("quote") as HTMLElement; + quote.innerHTML = data.quote; + console.log(data.quote); } async function getAPOD() { - let randomyear: number - randomyear = Math.floor(Math.random() * 20) + 2000; - let randommonth: number - randommonth = Math.floor(Math.random() * 12) + 1; - let randomday: number - randomday = Math.floor(Math.random() * 28) + 1; - let formatDate: string - formatDate = randomyear + "-" + randommonth + "-" + randomday; - console.log(formatDate); - let api_url = "https://api.nasa.gov/planetary/apod?api_key=gZjPsiBxKY4m53pyMWV0KHj3pbQoB61k8aovfWOe&date=" + formatDate; - const response = await fetch(api_url); - const data = await response.json(); - console.log (response); - console.log(data); - //@ts-ignore - document.getElementById("apod").src = data.url; - let apod_title = document.getElementById("apod_title") as HTMLElement; - apod_title.innerHTML = data.title; - let apod_explanation = document.getElementById("apod_explanation") as HTMLElement; - apod_explanation.innerHTML = data.explanation; - console.log(data.url); + let randomyear: number; + randomyear = Math.floor(Math.random() * 20) + 2000; + let randommonth: number; + randommonth = Math.floor(Math.random() * 12) + 1; + let randomday: number; + randomday = Math.floor(Math.random() * 28) + 1; + let formatDate: string; + formatDate = randomyear + "-" + randommonth + "-" + randomday; + console.log(formatDate); + let api_url = + "https://api.nasa.gov/planetary/apod?api_key=gZjPsiBxKY4m53pyMWV0KHj3pbQoB61k8aovfWOe&date=" + + formatDate; + const response = await fetch(api_url); + const data = await response.json(); + console.log(response); + console.log(data); + //@ts-ignore + document.getElementById("apod").src = data.url; + let apod_title = document.getElementById("apod_title") as HTMLElement; + apod_title.innerHTML = data.title; + let apod_explanation = document.getElementById( + "apod_explanation", + ) as HTMLElement; + apod_explanation.innerHTML = data.explanation; + console.log(data.url); } -async function getAPODcal(){ - let dateElement = document.getElementById("date") as HTMLElement; - let date = dateElement.innerHTML = (document.getElementById("date")as HTMLInputElement).value; - console.log(date); - const response = await fetch("https://api.nasa.gov/planetary/apod?api_key=gZjPsiBxKY4m53pyMWV0KHj3pbQoB61k8aovfWOe&date=" + date); - const data = await response.json(); - console.log (response); - console.log(data); +async function getAPODcal() { + let dateElement = document.getElementById("date") as HTMLElement; + let date = (dateElement.innerHTML = ( + document.getElementById("date") as HTMLInputElement + ).value); + console.log(date); + const response = await fetch( + "https://api.nasa.gov/planetary/apod?api_key=gZjPsiBxKY4m53pyMWV0KHj3pbQoB61k8aovfWOe&date=" + + date, + ); + const data = await response.json(); + console.log(response); + console.log(data); - (document.getElementById("apod")as HTMLImageElement).src = data.url; - (document.getElementById("apod_title")as HTMLElement).innerHTML = data.title; - (document.getElementById("apod_explanation")as HTMLElement).innerHTML = data.explanation; - console.log(data.url); + (document.getElementById("apod") as HTMLImageElement).src = data.url; + (document.getElementById("apod_title") as HTMLElement).innerHTML = data.title; + (document.getElementById("apod_explanation") as HTMLElement).innerHTML = + data.explanation; + console.log(data.url); } diff --git a/intro to html + webdev/bbc.css b/intro to html + webdev/bbc.css index 157ea0b..000a08c 100644 --- a/intro to html + webdev/bbc.css +++ b/intro to html + webdev/bbc.css @@ -1,94 +1,94 @@ .headline-grid { - display: grid; - grid-template-columns: 1fr 1fr; - grid-gap: 10px; + display: grid; + grid-template-columns: 1fr 1fr; + grid-gap: 10px; } .headline { - background-color: #fff; - padding: 10px; + background-color: #fff; + padding: 10px; } - + .headline-box { - display: flex; - flex-direction: column; - align-items: center; + display: flex; + flex-direction: column; + align-items: center; } - + .headline-image { -width: 100%; -height: 100px; -object-fit: scale-down; + width: 100%; + height: 100px; + object-fit: scale-down; } main { - background-color: #F6F6F6; - color: #000000; - padding: 10px; - text-align: center; + background-color: #f6f6f6; + color: #000000; + padding: 10px; + text-align: center; } .headline-title { -font-size: 24px; -margin-top: 10px; + font-size: 24px; + margin-top: 10px; } #logo { - height: 30px; - object-fit: scale-down; - float:left + height: 30px; + object-fit: scale-down; + float: left; } header { - background-color: #ffffff; - color: #fff; - padding: 10px; - text-align: center; - margin-bottom: 2 5px; + background-color: #ffffff; + color: #fff; + padding: 10px; + text-align: center; + margin-bottom: 2 5px; } - + nav { - float: left; + float: left; } - + nav a { - color: #000000; - text-decoration: none; - padding: 10px; + color: #000000; + text-decoration: none; + padding: 10px; } .search-container { - display: flex; - justify-content: right; - align-items: right; - height: 60px; - background-color: #ffffff; + display: flex; + justify-content: right; + align-items: right; + height: 60px; + background-color: #ffffff; } #search-input { - width: 300px; - height: 40px; - padding: 5px 10px; - border-radius: 20px; - border: 1px solid #ddd; - background-color: #fff; - font-size: 16px; + width: 300px; + height: 40px; + padding: 5px 10px; + border-radius: 20px; + border: 1px solid #ddd; + background-color: #fff; + font-size: 16px; } /* Style the search button */ #search-button { - width: 40px; - height: 40px; - background-color: transparent; - border: none; - margin-left: -42px; - cursor: pointer; + width: 40px; + height: 40px; + background-color: transparent; + border: none; + margin-left: -42px; + cursor: pointer; } /* Style the search icon */ #search-button i { - color: #fff; - font-size: 20px; - margin: 10px; + color: #fff; + font-size: 20px; + margin: 10px; } #search-button img { - width: 100%; - height: 100%; -} \ No newline at end of file + width: 100%; + height: 100%; +} diff --git a/intro to html + webdev/index.html b/intro to html + webdev/index.html index 3ab1b28..dc1c38e 100644 --- a/intro to html + webdev/index.html +++ b/intro to html + webdev/index.html @@ -1,11 +1,12 @@ - + - - my homepage - - + + my homepage + + 1st version (less css) 2nd version (all the css) bbc with buttons - \ No newline at end of file + + diff --git a/intro to html + webdev/iter1.css b/intro to html + webdev/iter1.css index 1f1bb92..99a3544 100644 --- a/intro to html + webdev/iter1.css +++ b/intro to html + webdev/iter1.css @@ -1,36 +1,44 @@ -@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:200'); +@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro:200"); -body { - background-image: url('https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg'); - background-size:cover; - -webkit-animation: slidein 100s; - animation: slidein 100s; +body { + background-image: url("https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg"); + background-size: cover; + -webkit-animation: slidein 100s; + animation: slidein 100s; - -webkit-animation-fill-mode: forwards; - animation-fill-mode: forwards; + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; - -webkit-animation-direction: alternate; - animation-direction: alternate; + -webkit-animation-direction: alternate; + animation-direction: alternate; } @-webkit-keyframes slidein { -from {background-position: top; background-size:3000px; } -to {background-position: -100px 0px;background-size:2750px;} + from { + background-position: top; + background-size: 3000px; + } + to { + background-position: -100px 0px; + background-size: 2750px; + } } @keyframes slidein { -from {background-position: top;background-size:3000px; } -to {background-position: -100px 0px;background-size:2750px;} - + from { + background-position: top; + background-size: 3000px; + } + to { + background-position: -100px 0px; + background-size: 2750px; + } } - - -.center -{ +.center { display: flex; align-items: center; justify-content: center; @@ -43,13 +51,23 @@ to {background-position: -100px 0px;background-size:2750px;} background: rgba(75, 75, 250, 0.3); border-radius: 3px; } -.center h1{ - text-align:center; - color:white; - font-family: 'Source Code Pro', monospace; - text-transform:uppercase; +.center h1 { + text-align: center; + color: white; + font-family: "Source Code Pro", monospace; + text-transform: uppercase; } .rainbow-text { - background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red); -webkit-background-clip: text; + background-image: linear-gradient( + to left, + violet, + indigo, + blue, + green, + yellow, + orange, + red + ); + -webkit-background-clip: text; color: transparent; -} \ No newline at end of file +} diff --git a/intro to html + webdev/iter2.css b/intro to html + webdev/iter2.css index 1b077fe..15ce369 100644 --- a/intro to html + webdev/iter2.css +++ b/intro to html + webdev/iter2.css @@ -1,36 +1,44 @@ -@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:200'); +@import url("https://fonts.googleapis.com/css?family=Source+Code+Pro:200"); -body { - background-image: url('https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg'); - background-size:cover; - -webkit-animation: slidein 100s; - animation: slidein 100s; +body { + background-image: url("https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg"); + background-size: cover; + -webkit-animation: slidein 100s; + animation: slidein 100s; - -webkit-animation-fill-mode: forwards; - animation-fill-mode: forwards; + -webkit-animation-fill-mode: forwards; + animation-fill-mode: forwards; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; - -webkit-animation-direction: alternate; - animation-direction: alternate; + -webkit-animation-direction: alternate; + animation-direction: alternate; } @-webkit-keyframes slidein { -from {background-position: top; background-size:3000px; } -to {background-position: -100px 0px;background-size:2750px;} + from { + background-position: top; + background-size: 3000px; + } + to { + background-position: -100px 0px; + background-size: 2750px; + } } @keyframes slidein { -from {background-position: top;background-size:3000px; } -to {background-position: -100px 0px;background-size:2750px;} - + from { + background-position: top; + background-size: 3000px; + } + to { + background-position: -100px 0px; + background-size: 2750px; + } } - - -.center -{ +.center { display: flex; align-items: center; justify-content: center; @@ -43,14 +51,24 @@ to {background-position: -100px 0px;background-size:2750px;} background: rgba(75, 75, 250, 0.3); border-radius: 3px; } -.center h1{ - text-align:center; - color:white; - font-family: 'Source Code Pro', monospace; - text-transform:uppercase; +.center h1 { + text-align: center; + color: white; + font-family: "Source Code Pro", monospace; + text-transform: uppercase; } .rainbow-text { - background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red); -webkit-background-clip: text; + background-image: linear-gradient( + to left, + violet, + indigo, + blue, + green, + yellow, + orange, + red + ); + -webkit-background-clip: text; color: transparent; } @@ -84,7 +102,14 @@ li { letter-spacing: 5px; } .rainbow_text_animated { - background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff); + background: linear-gradient( + to right, + #6666ff, + #0099ff, + #00ff00, + #ff3399, + #6666ff + ); -webkit-background-clip: text; background-clip: text; color: transparent; @@ -92,13 +117,13 @@ li { background-size: 400% 100%; } - @keyframes rainbow_animation { - 0%,100% { - background-position: 0 0; + 0%, + 100% { + background-position: 0 0; } 50% { - background-position: 100% 0; + background-position: 100% 0; } -} \ No newline at end of file +} diff --git a/intro to js/Paintcalc.js b/intro to js/Paintcalc.js index 5e393ef..e5a5989 100644 --- a/intro to js/Paintcalc.js +++ b/intro to js/Paintcalc.js @@ -1,28 +1,34 @@ // A program to calculate the cost of painting a room -const prompt = require('prompt-sync')(); -let walls -let windows -let cost -let count=0 +const prompt = require("prompt-sync")(); +let walls; +let windows; +let cost; +let count = 0; count = parseInt(count); function inputs() { - walls = prompt("Enter the number of walls: "); - windows = prompt("Enter the number of windows and doors: "); - cost = prompt("Enter the cost of paint per litre: "); - count = count + 1; - console.log(count) + walls = prompt("Enter the number of walls: "); + windows = prompt("Enter the number of windows and doors: "); + cost = prompt("Enter the cost of paint per litre: "); + count = count + 1; + console.log(count); } inputs(); -if (isNaN(walls) || isNaN(windows) || isNaN(cost) || walls < 0 || windows < 0 || cost < 0) { - console.log("You did not enter a positive number for the number of walls."); - if (count < 5) { - inputs(); - } - else { - console.log("u r a dumb idiot letters != numbers."); - return; - } +if ( + isNaN(walls) || + isNaN(windows) || + isNaN(cost) || + walls < 0 || + windows < 0 || + cost < 0 +) { + console.log("You did not enter a positive number for the number of walls."); + if (count < 5) { + inputs(); + } else { + console.log("u r a dumb idiot letters != numbers."); + return; + } } walls = parseInt(walls); windows = parseInt(windows); @@ -31,32 +37,33 @@ let paintefficiency = 6.25; paintefficiency = parseInt(paintefficiency); walls = walls + 1; windows = windows + 1; -let wallheight -let wallwidth -let wallarea -let windowheight -let windowwidth -let windowarea -let totalarea -let paintneeded -for(let i=1; i < walls; i++) { - wallheight = prompt("Enter the height of wall " + i + ": "); - wallwidth = prompt("Enter the width of wall " + i + ": "); - wallheight = parseInt(wallheight); - wallwidth = parseInt(wallwidth); - wallarea = wallheight * wallwidth; - console.log("The area of wall " + i + " is " + wallarea + " square metres."); +let wallheight; +let wallwidth; +let wallarea; +let windowheight; +let windowwidth; +let windowarea; +let totalarea; +let paintneeded; +for (let i = 1; i < walls; i++) { + wallheight = prompt("Enter the height of wall " + i + ": "); + wallwidth = prompt("Enter the width of wall " + i + ": "); + wallheight = parseInt(wallheight); + wallwidth = parseInt(wallwidth); + wallarea = wallheight * wallwidth; + console.log("The area of wall " + i + " is " + wallarea + " square metres."); } -for(let i=1; i < windows; i++) -{ - windowheight = prompt("Enter the height of window " + i + ": "); - windowwidth = prompt("Enter the width of window " + i + ": "); - windowheight = parseInt(windowheight); - windowwidth = parseInt(windowwidth); - windowarea = windowheight * windowwidth; - console.log("The area of window " + i + " is " + windowarea + " square metres."); +for (let i = 1; i < windows; i++) { + windowheight = prompt("Enter the height of window " + i + ": "); + windowwidth = prompt("Enter the width of window " + i + ": "); + windowheight = parseInt(windowheight); + windowwidth = parseInt(windowwidth); + windowarea = windowheight * windowwidth; + console.log( + "The area of window " + i + " is " + windowarea + " square metres.", + ); } totalarea = wallarea - windowarea; console.log("The total area to be painted is " + totalarea + " square metres."); paintneeded = totalarea / paintefficiency; -console.log("The amount of paint needed is " + paintneeded + " litres."); \ No newline at end of file +console.log("The amount of paint needed is " + paintneeded + " litres."); diff --git a/intro to js/t1.html b/intro to js/t1.html index c60dffd..9f4b441 100644 --- a/intro to js/t1.html +++ b/intro to js/t1.html @@ -1 +1,3 @@ - \ No newline at end of file + diff --git a/intro to js/t1.js b/intro to js/t1.js index 40ee091..3be73f2 100644 --- a/intro to js/t1.js +++ b/intro to js/t1.js @@ -1,5 +1,5 @@ -console.log(10*5); -console.log(10/5); +console.log(10 * 5); +console.log(10 / 5); let x = 10; -++x -console.log(x); \ No newline at end of file +++x; +console.log(x); diff --git a/intro to js/t2.js b/intro to js/t2.js index f0dd2a8..9f3df12 100644 --- a/intro to js/t2.js +++ b/intro to js/t2.js @@ -1,84 +1,82 @@ -const prompt = require('prompt-sync')(); -console.log('Input 2 numbers: '); +const prompt = require("prompt-sync")(); +console.log("Input 2 numbers: "); let num1 = prompt(); let num2 = prompt(); num1 = parseInt(num1); num2 = parseInt(num2); -console.log(num1+num2); +console.log(num1 + num2); //\\//\\//\\//\\/\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\ let input = prompt("Enter a number between 1 and 10: "); input = parseInt(input); -if (input == 1){ - console.log("1st on the list is: Walmart"); -} -else if (input == 2){ - console.log("2nd on the list is: Amazon"); -} -else if (input == 3){ - console.log("3rd on the list is: Exxon Mobil"); -} -else if (input == 4){ - console.log("4th on the list is: Apple"); -} -else if (input == 5){ - console.log("5th on the list is: UnitedHealth Group"); -} -else if (input == 6){ - console.log("6th on the list is: CVS Health"); -} -else if (input == 7){ - console.log("7th on the list is: Berkshire Hathaway"); -} -else if (input == 8){ - console.log("8th on the list is: Alphabet"); -} -else if (input == 9){ - console.log("9th on the list is: McKesson"); -} -else if (input == 10){ - console.log("10th on the list is: Chevron"); -} -else { - console.log("You did not enter a number between 1 and 5."); +if (input == 1) { + console.log("1st on the list is: Walmart"); +} else if (input == 2) { + console.log("2nd on the list is: Amazon"); +} else if (input == 3) { + console.log("3rd on the list is: Exxon Mobil"); +} else if (input == 4) { + console.log("4th on the list is: Apple"); +} else if (input == 5) { + console.log("5th on the list is: UnitedHealth Group"); +} else if (input == 6) { + console.log("6th on the list is: CVS Health"); +} else if (input == 7) { + console.log("7th on the list is: Berkshire Hathaway"); +} else if (input == 8) { + console.log("8th on the list is: Alphabet"); +} else if (input == 9) { + console.log("9th on the list is: McKesson"); +} else if (input == 10) { + console.log("10th on the list is: Chevron"); +} else { + console.log("You did not enter a number between 1 and 5."); } //\\//\\//\\//\\/\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\ let company = prompt("Enter a top 10 fortune 500 company: "); company = company.toLowerCase(); -switch(company) { - case "walmart": - console.log("Walmart is ranked 1st, With a revenue of $611.289 billion."); - break; - case "amazon": - console.log("Amazon is ranked 2nd, With a revenue of $513.983 billion."); - break; - case "exxon Mobil": - console.log("Exxon Mobil is ranked 3rd, With a revenue of $413.680 billion."); - break; - case "apple": - console.log("Apple is ranked 4th, With a revenue of $394.328 billion."); - break; - case "unitedhealth group": - console.log("UnitedHealth Group is ranked 5th, With a revenue of $324.162 billion."); - break; - case "cvs health": - console.log("CVS Health is ranked 6th, With a revenue of $322.467 billion."); - break; - case "berkshire hathaway": - console.log("Berkshire Hathaway is ranked 7th, With a revenue of $302.089 billion."); - break; - case "alphabet": - console.log("Alphabet is ranked 8th, With a revenue of $282.836 billion."); - break; - case "mckesson": - console.log("McKesson is ranked 9th, With a revenue of $263.966 billion."); - break; - case "chevron": - console.log("Chevron is ranked 10th, With a revenue of $246.252 billion."); - break; - default: - console.log("You did not enter a top 10 fortune 500 company.") -} \ No newline at end of file +switch (company) { + case "walmart": + console.log("Walmart is ranked 1st, With a revenue of $611.289 billion."); + break; + case "amazon": + console.log("Amazon is ranked 2nd, With a revenue of $513.983 billion."); + break; + case "exxon Mobil": + console.log( + "Exxon Mobil is ranked 3rd, With a revenue of $413.680 billion.", + ); + break; + case "apple": + console.log("Apple is ranked 4th, With a revenue of $394.328 billion."); + break; + case "unitedhealth group": + console.log( + "UnitedHealth Group is ranked 5th, With a revenue of $324.162 billion.", + ); + break; + case "cvs health": + console.log( + "CVS Health is ranked 6th, With a revenue of $322.467 billion.", + ); + break; + case "berkshire hathaway": + console.log( + "Berkshire Hathaway is ranked 7th, With a revenue of $302.089 billion.", + ); + break; + case "alphabet": + console.log("Alphabet is ranked 8th, With a revenue of $282.836 billion."); + break; + case "mckesson": + console.log("McKesson is ranked 9th, With a revenue of $263.966 billion."); + break; + case "chevron": + console.log("Chevron is ranked 10th, With a revenue of $246.252 billion."); + break; + default: + console.log("You did not enter a top 10 fortune 500 company."); +} diff --git a/intro to react/fun-with-react/abc.js b/intro to react/fun-with-react/abc.js index 6380469..d46402b 100644 --- a/intro to react/fun-with-react/abc.js +++ b/intro to react/fun-with-react/abc.js @@ -1 +1 @@ -const Parser = require('rss-parsesdsdsdr'); +const Parser = require("rss-parsesdsdsdr"); diff --git a/intro to react/fun-with-react/backend.js b/intro to react/fun-with-react/backend.js index b842520..a925767 100644 --- a/intro to react/fun-with-react/backend.js +++ b/intro to react/fun-with-react/backend.js @@ -1,39 +1,41 @@ -const express = require('express'); -const axios = require('axios'); -const fs = require('fs'); -const crypto = require('crypto'); -const path = require('path'); // Add this line to use the path module +const express = require("express"); +const axios = require("axios"); +const fs = require("fs"); +const crypto = require("crypto"); +const path = require("path"); // Add this line to use the path module const app = express(); const port = 50111; -const cors = require('cors'); +const cors = require("cors"); app.use(cors()); app.use(express.json()); -app.post('/api/fetchNews', async (req, res) => { +app.post("/api/fetchNews", async (req, res) => { try { const rssFeedUrls = req.body.rssFeedUrls; console.log(`Fetching and parsing RSS feeds from: ${rssFeedUrls}`); const responses = await Promise.all( - rssFeedUrls.map(url => axios.get(`http://100.88.40.21:50110?feedURL=${url}`)) + rssFeedUrls.map((url) => + axios.get(`http://100.88.40.21:50110?feedURL=${url}`), + ), ); - const data = await Promise.all(responses.map(response => response.data)); + const data = await Promise.all(responses.map((response) => response.data)); for (let i = 0; i < data.length; i++) { const newsItems = data[i].items; - newsItems.forEach(item => { + newsItems.forEach((item) => { item.isoDate = new Date(item.isoDate); }); newsItems.sort((a, b) => b.isoDate - a.isoDate); // Create a hash of the URL to use as the filename - const hash = crypto.createHash('sha256'); + const hash = crypto.createHash("sha256"); hash.update(rssFeedUrls[i]); - const filename = `${hash.digest('hex')}.json`; + const filename = `${hash.digest("hex")}.json`; // Specify the logs directory and create it if it doesn't exist - const logsDir = 'logs'; + const logsDir = "logs"; if (!fs.existsSync(logsDir)) { fs.mkdirSync(logsDir); } @@ -47,19 +49,22 @@ app.post('/api/fetchNews', async (req, res) => { } // Append new items to the log file, preventing duplicates - newsItems.forEach(item => { - if (!loggedData.some(loggedItem => loggedItem.link === item.link)) { + newsItems.forEach((item) => { + if (!loggedData.some((loggedItem) => loggedItem.link === item.link)) { loggedData.push(item); } }); - fs.writeFileSync(path.join(logsDir, filename), JSON.stringify(loggedData, null, 2)); + fs.writeFileSync( + path.join(logsDir, filename), + JSON.stringify(loggedData, null, 2), + ); } - res.json(data.flatMap(d => d.items)); + res.json(data.flatMap((d) => d.items)); } catch (error) { - console.error('Error fetching and processing data:', error); - res.status(500).json({ error: 'An error occurred' }); + console.error("Error fetching and processing data:", error); + res.status(500).json({ error: "An error occurred" }); } }); diff --git a/intro to react/fun-with-react/log.json b/intro to react/fun-with-react/log.json index 214a7bc..c54b5e8 100644 --- a/intro to react/fun-with-react/log.json +++ b/intro to react/fun-with-react/log.json @@ -684,11 +684,7 @@ "content": "SBF said he thought loans were legal but didn't fully read FTX terms of service.", "contentSnippet": "SBF said he thought loans were legal but didn't fully read FTX terms of service.", "guid": "https://arstechnica.com/?p=1979088", - "categories": [ - "Policy", - "sam bankman-fried", - "sam bankman-fried ftx" - ], + "categories": ["Policy", "sam bankman-fried", "sam bankman-fried ftx"], "isoDate": "2023-10-26T20:54:45.000Z" }, { @@ -834,11 +830,7 @@ "content": "Firm drops widely panned idea but still aims to move users \"up our price card.\"", "contentSnippet": "Firm drops widely panned idea but still aims to move users \"up our price card.\"", "guid": "https://arstechnica.com/?p=1979010", - "categories": [ - "Policy", - "t-mobile", - "t-mobile plans" - ], + "categories": ["Policy", "t-mobile", "t-mobile plans"], "isoDate": "2023-10-26T18:24:20.000Z" }, { @@ -853,12 +845,7 @@ "content": "For now this is early access, but \"most\" customers will get upgraded eventually.", "contentSnippet": "For now this is early access, but \"most\" customers will get upgraded eventually.", "guid": "https://arstechnica.com/?p=1978969", - "categories": [ - "Google", - "Tech", - "Google Fiber", - "internet speed" - ], + "categories": ["Google", "Tech", "Google Fiber", "internet speed"], "isoDate": "2023-10-26T17:56:54.000Z" }, { @@ -1152,12 +1139,7 @@ "content": "OVC builds re-creations of 1960s Mustangs—we help test a Peter Brock-designed hood.", "contentSnippet": "OVC builds re-creations of 1960s Mustangs—we help test a Peter Brock-designed hood.", "guid": "https://arstechnica.com/?p=1978858", - "categories": [ - "Cars", - "aerodynamics", - "Ford Mustang", - "Restomod" - ], + "categories": ["Cars", "aerodynamics", "Ford Mustang", "Restomod"], "isoDate": "2023-10-26T14:59:18.000Z" }, { @@ -1202,11 +1184,7 @@ "content": "But an internal combustion engine-powered commercial van is going into production.", "contentSnippet": "But an internal combustion engine-powered commercial van is going into production.", "guid": "https://arstechnica.com/?p=1978841", - "categories": [ - "Cars", - "Tokyo Auto Show", - "Toyota" - ], + "categories": ["Cars", "Tokyo Auto Show", "Toyota"], "isoDate": "2023-10-26T14:10:23.000Z" }, { @@ -1350,10 +1328,7 @@ "content": "\"My goal was to highlight the comet's journey.\"", "contentSnippet": "\"My goal was to highlight the comet's journey.\"", "guid": "https://arstechnica.com/?p=1978811", - "categories": [ - "Space", - "daily telescope" - ], + "categories": ["Space", "daily telescope"], "isoDate": "2023-10-26T12:00:08.000Z" }, { @@ -3147,4 +3122,4 @@ ], "isoDate": "2023-10-20T20:05:33.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/0008730ff01a100398b2fca6f114ec1d18ea758867df0a5e1d9d7bb7fb87a91d.json b/intro to react/fun-with-react/logs/0008730ff01a100398b2fca6f114ec1d18ea758867df0a5e1d9d7bb7fb87a91d.json index a60a16d..b8e169f 100644 --- a/intro to react/fun-with-react/logs/0008730ff01a100398b2fca6f114ec1d18ea758867df0a5e1d9d7bb7fb87a91d.json +++ b/intro to react/fun-with-react/logs/0008730ff01a100398b2fca6f114ec1d18ea758867df0a5e1d9d7bb7fb87a91d.json @@ -443,4 +443,4 @@ "rdf:about": "https://slashdot.org/story/24/04/18/0636230/inside-amazons-secret-operation-to-gather-intel-on-rivals?utm_source=rss1.0mainlinkanon&utm_medium=feed", "isoDate": "2024-04-18T12:00:00.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/06510735eb5afa3d804c3473f24be0d8b250a6ec791c5b0ce58d08932e9647d1.json b/intro to react/fun-with-react/logs/06510735eb5afa3d804c3473f24be0d8b250a6ec791c5b0ce58d08932e9647d1.json index b26d22e..b461a72 100644 --- a/intro to react/fun-with-react/logs/06510735eb5afa3d804c3473f24be0d8b250a6ec791c5b0ce58d08932e9647d1.json +++ b/intro to react/fun-with-react/logs/06510735eb5afa3d804c3473f24be0d8b250a6ec791c5b0ce58d08932e9647d1.json @@ -467,4 +467,4 @@ "guid": "9ee73d65-9575-410c-acba-3bc8b0bc08ae", "isoDate": "2024-04-18T10:47:02.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/269e190f0b3b66f9f54470fa9ac231a0aad43bf4454481976ca431c2af5453e4.json b/intro to react/fun-with-react/logs/269e190f0b3b66f9f54470fa9ac231a0aad43bf4454481976ca431c2af5453e4.json index 60f82e8..eb2c2a3 100644 --- a/intro to react/fun-with-react/logs/269e190f0b3b66f9f54470fa9ac231a0aad43bf4454481976ca431c2af5453e4.json +++ b/intro to react/fun-with-react/logs/269e190f0b3b66f9f54470fa9ac231a0aad43bf4454481976ca431c2af5453e4.json @@ -659,4 +659,4 @@ "id": "t3_1c6zanp", "isoDate": "2024-04-18T09:44:57.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/2b5c22c5adefd25740ae909375edc93e07550d31e803cdaad5e29041b2eee3b1.json b/intro to react/fun-with-react/logs/2b5c22c5adefd25740ae909375edc93e07550d31e803cdaad5e29041b2eee3b1.json index 1e1f1c8..43709eb 100644 --- a/intro to react/fun-with-react/logs/2b5c22c5adefd25740ae909375edc93e07550d31e803cdaad5e29041b2eee3b1.json +++ b/intro to react/fun-with-react/logs/2b5c22c5adefd25740ae909375edc93e07550d31e803cdaad5e29041b2eee3b1.json @@ -12831,4 +12831,4 @@ ], "isoDate": "2024-04-18T09:02:00.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/38eb1d8f7f0380788dde67cd70e7cfc313a1a753c7286d393524ead96340b043.json b/intro to react/fun-with-react/logs/38eb1d8f7f0380788dde67cd70e7cfc313a1a753c7286d393524ead96340b043.json index 12ec1c9..0356804 100644 --- a/intro to react/fun-with-react/logs/38eb1d8f7f0380788dde67cd70e7cfc313a1a753c7286d393524ead96340b043.json +++ b/intro to react/fun-with-react/logs/38eb1d8f7f0380788dde67cd70e7cfc313a1a753c7286d393524ead96340b043.json @@ -99,4 +99,4 @@ "id": "t3_1c72gws", "isoDate": "2024-04-18T12:47:32.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/4198267edfc51ba821d17740839c4d7557c2fb89c233e987d644d4f969f210e3.json b/intro to react/fun-with-react/logs/4198267edfc51ba821d17740839c4d7557c2fb89c233e987d644d4f969f210e3.json index 698bcfb..ed67e12 100644 --- a/intro to react/fun-with-react/logs/4198267edfc51ba821d17740839c4d7557c2fb89c233e987d644d4f969f210e3.json +++ b/intro to react/fun-with-react/logs/4198267edfc51ba821d17740839c4d7557c2fb89c233e987d644d4f969f210e3.json @@ -359,4 +359,4 @@ "id": "https://www.gov.uk/government/publications/defence-maritime-regulations-regulatory-notices#2024-04-18T11:14:12Z", "isoDate": "2024-04-18T11:14:12.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/420dd9d7d717628a60f934fad7f60db95728aac88f13779879d5090196b736c9.json b/intro to react/fun-with-react/logs/420dd9d7d717628a60f934fad7f60db95728aac88f13779879d5090196b736c9.json index 0715bec..f7ae8f2 100644 --- a/intro to react/fun-with-react/logs/420dd9d7d717628a60f934fad7f60db95728aac88f13779879d5090196b736c9.json +++ b/intro to react/fun-with-react/logs/420dd9d7d717628a60f934fad7f60db95728aac88f13779879d5090196b736c9.json @@ -67,14 +67,7 @@ "content": "

The United Kingdom’s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine’s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This […]

\nThe post UK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", "contentSnippet": "The United Kingdom’s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine’s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This […]\nUK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", "guid": "https://defence-blog.com/?p=69792", - "categories": [ - "Army", - "News", - "M270", - "military aid", - "UK", - "Ukraine" - ], + "categories": ["Army", "News", "M270", "military aid", "UK", "Ukraine"], "isoDate": "2023-10-18T10:16:57.000Z" }, { @@ -248,12 +241,7 @@ "content": "

The Royal Air Force announced on Friday that ten Ukrainian pilots have successfully completed their Elementary Flying Training, marking a significant milestone in their journey toward advanced fast jet training and conversion to F-16 aircraft in collaboration with partner nations. The Royal Air Force said in a release that the graduation ceremony, held to commemorate […]

\nThe post Ukrainian pilots graduate elementary flying training in UK first appeared on Defence Blog.", "contentSnippet": "The Royal Air Force announced on Friday that ten Ukrainian pilots have successfully completed their Elementary Flying Training, marking a significant milestone in their journey toward advanced fast jet training and conversion to F-16 aircraft in collaboration with partner nations. The Royal Air Force said in a release that the graduation ceremony, held to commemorate […]\nUkrainian pilots graduate elementary flying training in UK first appeared on Defence Blog.", "guid": "https://defence-blog.com/?p=73430", - "categories": [ - "Aviation", - "News", - "UK", - "Ukraine" - ], + "categories": ["Aviation", "News", "UK", "Ukraine"], "isoDate": "2024-03-22T10:35:17.000Z" }, { @@ -285,14 +273,7 @@ "content": "

British-made MQM-185B drone, based on the Banshee Jet 80+, was found near a Russian position in the occupied Luhansk region in the East of Ukraine. Russian sources claim it was a suicide drone downed by their air defense systems, although no signs of missile or anti-aircraft fire damage are evident in the published footage. The […]

\nThe post British-made Banshee drone found near Russian position first appeared on Defence Blog.", "contentSnippet": "British-made MQM-185B drone, based on the Banshee Jet 80+, was found near a Russian position in the occupied Luhansk region in the East of Ukraine. Russian sources claim it was a suicide drone downed by their air defense systems, although no signs of missile or anti-aircraft fire damage are evident in the published footage. The […]\nBritish-made Banshee drone found near Russian position first appeared on Defence Blog.", "guid": "https://defence-blog.com/?p=72833", - "categories": [ - "Aviation", - "News", - "drone", - "MQM-185B", - "UK", - "Ukraine" - ], + "categories": ["Aviation", "News", "drone", "MQM-185B", "UK", "Ukraine"], "isoDate": "2024-02-19T07:30:34.000Z" }, { @@ -304,14 +285,7 @@ "content": "

The UK Ministry of Defense announced that 500 support trucks will be delivered to the British Army to support operational activity, following a rapid procurement process of just 7 months. Under a £282 million ($304 million) contract, Rheinmetall MAN Military Vehicles will deliver these multipurpose trucks designed to transport essential logistics such as ammunition, food, […]

\nThe post Rheinmetall to supply British Army 500 military trucks first appeared on Defence Blog.", "contentSnippet": "The UK Ministry of Defense announced that 500 support trucks will be delivered to the British Army to support operational activity, following a rapid procurement process of just 7 months. Under a £282 million ($304 million) contract, Rheinmetall MAN Military Vehicles will deliver these multipurpose trucks designed to transport essential logistics such as ammunition, food, […]\nRheinmetall to supply British Army 500 military trucks first appeared on Defence Blog.", "guid": "https://defence-blog.com/?p=72452", - "categories": [ - "Army", - "News", - "HX", - "military truck", - "Rheinmetall", - "UK" - ], + "categories": ["Army", "News", "HX", "military truck", "Rheinmetall", "UK"], "isoDate": "2024-02-03T10:11:59.000Z" }, { @@ -361,14 +335,7 @@ "content": "

The German-British Amphibious Engineer Battalion 130 in Minden, northern Germany, has received the newest Sonobot 5 underwater drone. According to Bundeswehr, the binational amphibious engineer battalion is equipped with an efficient and precise means of exploring water bodies. The Sonobot 5 is an unmanned sonar system that floats on the water’s surface. It’s the world’s fastest […]

\nThe post German-British engineer battalion receives Sonobot 5 drone first appeared on Defence Blog.", "contentSnippet": "The German-British Amphibious Engineer Battalion 130 in Minden, northern Germany, has received the newest Sonobot 5 underwater drone. According to Bundeswehr, the binational amphibious engineer battalion is equipped with an efficient and precise means of exploring water bodies. The Sonobot 5 is an unmanned sonar system that floats on the water’s surface. It’s the world’s fastest […]\nGerman-British engineer battalion receives Sonobot 5 drone first appeared on Defence Blog.", "guid": "https://defence-blog.com/?p=72189", - "categories": [ - "Army", - "News", - "drone", - "Germany", - "Sonobot 5", - "UK" - ], + "categories": ["Army", "News", "drone", "Germany", "Sonobot 5", "UK"], "isoDate": "2024-01-22T13:42:56.000Z" }, { @@ -390,4 +357,4 @@ ], "isoDate": "2024-01-21T09:56:16.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/4d58b7ddec9049509fc1000b9021a56a6b2468a919f03a9044b70d13cf5adff4.json b/intro to react/fun-with-react/logs/4d58b7ddec9049509fc1000b9021a56a6b2468a919f03a9044b70d13cf5adff4.json index 683c859..d755e13 100644 --- a/intro to react/fun-with-react/logs/4d58b7ddec9049509fc1000b9021a56a6b2468a919f03a9044b70d13cf5adff4.json +++ b/intro to react/fun-with-react/logs/4d58b7ddec9049509fc1000b9021a56a6b2468a919f03a9044b70d13cf5adff4.json @@ -11,9 +11,7 @@ "content": "

A British RC-135 ‘Rivet Joint’, an electronic surveillance aircraft, has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon.

\nThe post British surveillance aircraft operating near Israel first appeared on UK Defence Journal.", "contentSnippet": "A British RC-135 ‘Rivet Joint’, an electronic surveillance aircraft, has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon.\nBritish surveillance aircraft operating near Israel first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46536", - "categories": [ - "Air" - ], + "categories": ["Air"], "isoDate": "2023-10-15T15:39:40.000Z" }, { @@ -28,9 +26,7 @@ "content": "

From the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class. (w/t Britsky @TBrit90)

\nThe post The Status of the British Fleet first appeared on UK Defence Journal.", "contentSnippet": "From the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class. (w/t Britsky @TBrit90)\nThe Status of the British Fleet first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46460", - "categories": [ - "Sea" - ], + "categories": ["Sea"], "isoDate": "2023-10-15T06:30:16.000Z" }, { @@ -45,9 +41,7 @@ "content": "

Only two of the eight vessels in the Irish Naval Service are currently available for patrols, raising concerns about Ireland's maritime security.

\nThe post Only two Irish Naval vessels operational first appeared on UK Defence Journal.", "contentSnippet": "Only two of the eight vessels in the Irish Naval Service are currently available for patrols, raising concerns about Ireland's maritime security.\nOnly two Irish Naval vessels operational first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46533", - "categories": [ - "Sea" - ], + "categories": ["Sea"], "isoDate": "2023-10-15T05:13:31.000Z" }, { @@ -62,9 +56,7 @@ "content": "

Test pilots joined the carrier off the Eastern Seaboard of the U.S. for Developmental Test phase 3 (DT-3).

\nThe post F-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", "contentSnippet": "Test pilots joined the carrier off the Eastern Seaboard of the U.S. for Developmental Test phase 3 (DT-3).\nF-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46526", - "categories": [ - "Sea" - ], + "categories": ["Sea"], "isoDate": "2023-10-14T08:00:11.000Z" }, { @@ -79,9 +71,7 @@ "content": "

UK funding has been pivotal in advancing the mission to map the Galaxy reveals a report published today.

\nThe post UK funding boosts galaxy mapping first appeared on UK Defence Journal.", "contentSnippet": "UK funding has been pivotal in advancing the mission to map the Galaxy reveals a report published today.\nUK funding boosts galaxy mapping first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46490", - "categories": [ - "Space" - ], + "categories": ["Space"], "isoDate": "2023-10-14T06:00:43.000Z" }, { @@ -96,9 +86,7 @@ "content": "

Britain will deploy 20,000 troops, eight Royal Navy ships, 25 combat jets and an aviation task force of Apache, Chinook and Wildcat helicopters.

\nThe post Over 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", "contentSnippet": "Britain will deploy 20,000 troops, eight Royal Navy ships, 25 combat jets and an aviation task force of Apache, Chinook and Wildcat helicopters.\nOver 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46524", - "categories": [ - "Land" - ], + "categories": ["Land"], "isoDate": "2023-10-14T05:13:49.000Z" }, { @@ -113,9 +101,7 @@ "content": "

It is understood that the landing was planned to prove deck currency and discuss future collaborations with the Norwegian Air Operations Centre.

\nThe post Norwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", "contentSnippet": "It is understood that the landing was planned to prove deck currency and discuss future collaborations with the Norwegian Air Operations Centre.\nNorwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46488", - "categories": [ - "Sea" - ], + "categories": ["Sea"], "isoDate": "2023-10-13T14:00:40.000Z" }, { @@ -130,9 +116,7 @@ "content": "

The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.

\nThe post UK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", "contentSnippet": "The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.\nUK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46522", - "categories": [ - "Sea" - ], + "categories": ["Sea"], "isoDate": "2023-10-13T12:33:46.000Z" }, { @@ -147,9 +131,7 @@ "content": "

BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.

\nThe post BAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", "contentSnippet": "BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.\nBAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46494", - "categories": [ - "Land" - ], + "categories": ["Land"], "isoDate": "2023-10-13T11:00:47.000Z" }, { @@ -164,9 +146,7 @@ "content": "

820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.

\nThe post Helicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", "contentSnippet": "820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.\nHelicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=46485", - "categories": [ - "Sea" - ], + "categories": ["Sea"], "isoDate": "2023-10-13T07:00:01.000Z" }, { @@ -181,9 +161,7 @@ "content": "

\"EPAWSS was designed for upgradeability and rapid capability insertion,\" said Amy Nesbitt, EPAWSS program manager at BAE Systems.

\nThe post Eagle warning system for F-15 completes operational testing first appeared on UK Defence Journal.", "contentSnippet": "\"EPAWSS was designed for upgradeability and rapid capability insertion,\" said Amy Nesbitt, EPAWSS program manager at BAE Systems.\nEagle warning system for F-15 completes operational testing first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49139", - "categories": [ - "Air" - ], + "categories": ["Air"], "isoDate": "2024-04-03T14:00:05.000Z" }, { @@ -198,9 +176,7 @@ "content": "

Thales has announced the creation of cortAIx, which brings together the company’s AI capabilities in research, sensors and systems.

\nThe post Defence firm Thales speeds up AI development first appeared on UK Defence Journal.", "contentSnippet": "Thales has announced the creation of cortAIx, which brings together the company’s AI capabilities in research, sensors and systems.\nDefence firm Thales speeds up AI development first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49136", - "categories": [ - "Land" - ], + "categories": ["Land"], "isoDate": "2024-04-03T13:00:22.000Z" }, { @@ -215,9 +191,7 @@ "content": "

Northrop Grumman Corporation successfully launched a ballistic missile target vehicle to support the Missile Defense Agency’s Flight Test Aegis Weapon System 32 (FTM-32), in cooperation with the U.S. Navy.

\nThe post Northrop ballistic missile target successfully launched first appeared on UK Defence Journal.", "contentSnippet": "Northrop Grumman Corporation successfully launched a ballistic missile target vehicle to support the Missile Defense Agency’s Flight Test Aegis Weapon System 32 (FTM-32), in cooperation with the U.S. Navy.\nNorthrop ballistic missile target successfully launched first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49134", - "categories": [ - "Air" - ], + "categories": ["Air"], "isoDate": "2024-04-03T12:00:51.000Z" }, { @@ -232,9 +206,7 @@ "content": "

Historically speaking, having whiskers has never precluded a decent performance in combat argues Lt Col Stuart Crawford.

\nThe post Beards in the Army first appeared on UK Defence Journal.", "contentSnippet": "Historically speaking, having whiskers has never precluded a decent performance in combat argues Lt Col Stuart Crawford.\nBeards in the Army first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49140", - "categories": [ - "Opinion" - ], + "categories": ["Opinion"], "isoDate": "2024-04-03T11:11:04.000Z" }, { @@ -249,9 +221,7 @@ "content": "

The next step for the VENOM program is to modify the F-16 aircraft into test platforms to rapidly evaluate autonomous capabilities.

\nThe post F-16 jets to be turned into autonomous drones first appeared on UK Defence Journal.", "contentSnippet": "The next step for the VENOM program is to modify the F-16 aircraft into test platforms to rapidly evaluate autonomous capabilities.\nF-16 jets to be turned into autonomous drones first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49142", - "categories": [ - "Air" - ], + "categories": ["Air"], "isoDate": "2024-04-03T11:08:50.000Z" }, { @@ -266,9 +236,7 @@ "content": "

A British cargo ship which was torpedoed and sunk during the first world war has finally surrendered its 109-year-old secret.

\nThe post The wreck of a torpedoed British ship after a 109-year mystery first appeared on UK Defence Journal.", "contentSnippet": "A British cargo ship which was torpedoed and sunk during the first world war has finally surrendered its 109-year-old secret.\nThe wreck of a torpedoed British ship after a 109-year mystery first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49126", - "categories": [ - "Opinion" - ], + "categories": ["Opinion"], "isoDate": "2024-04-02T11:00:07.000Z" }, { @@ -283,9 +251,7 @@ "content": "

British weapon supply flights continue to supply Ukraine with weapons with which to defend itself against invading Russian forces.

\nThe post British aircraft continue to supply weapons to Ukraine first appeared on UK Defence Journal.", "contentSnippet": "British weapon supply flights continue to supply Ukraine with weapons with which to defend itself against invading Russian forces.\nBritish aircraft continue to supply weapons to Ukraine first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49131", - "categories": [ - "Air" - ], + "categories": ["Air"], "isoDate": "2024-04-02T10:12:03.000Z" }, { @@ -300,9 +266,7 @@ "content": "

The security of east Asia – and thus the stability of the global economy – is predicated on Japan.

\nThe post Japan has abandoned decades of pacifism first appeared on UK Defence Journal.", "contentSnippet": "The security of east Asia – and thus the stability of the global economy – is predicated on Japan.\nJapan has abandoned decades of pacifism first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49125", - "categories": [ - "Opinion" - ], + "categories": ["Opinion"], "isoDate": "2024-04-02T07:27:09.000Z" }, { @@ -317,9 +281,7 @@ "content": "

After successfully attracting funding from Pepsi, the famous Red Arrows will be painted Blue.

\nThe post Red Arrows begin ‘Blue’ repaint thanks to funding first appeared on UK Defence Journal.", "contentSnippet": "After successfully attracting funding from Pepsi, the famous Red Arrows will be painted Blue.\nRed Arrows begin ‘Blue’ repaint thanks to funding first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49106", - "categories": [ - "Air" - ], + "categories": ["Air"], "isoDate": "2024-04-01T10:00:29.000Z" }, { @@ -334,9 +296,7 @@ "content": "

A leaked consultation document suggests that the Royal Navy will now order a third Queen Elizabeth class aircraft carrier in response to a resurgent Russia, the vessel will be named HMS Princess Diana

\nThe post UK to order third carrier due to Russian threat first appeared on UK Defence Journal.", "contentSnippet": "A leaked consultation document suggests that the Royal Navy will now order a third Queen Elizabeth class aircraft carrier in response to a resurgent Russia, the vessel will be named HMS Princess Diana\nUK to order third carrier due to Russian threat first appeared on UK Defence Journal.", "guid": "https://ukdefencejournal.org.uk/?p=49103", - "categories": [ - "Sea" - ], + "categories": ["Sea"], "isoDate": "2024-04-01T09:30:48.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/6fdc5f5bf4a86fa1fc972814d9558daf2f2df10dc09f3edbf575c240c599496c.json b/intro to react/fun-with-react/logs/6fdc5f5bf4a86fa1fc972814d9558daf2f2df10dc09f3edbf575c240c599496c.json index 78cd395..b9ca3d2 100644 --- a/intro to react/fun-with-react/logs/6fdc5f5bf4a86fa1fc972814d9558daf2f2df10dc09f3edbf575c240c599496c.json +++ b/intro to react/fun-with-react/logs/6fdc5f5bf4a86fa1fc972814d9558daf2f2df10dc09f3edbf575c240c599496c.json @@ -11,10 +11,7 @@ "content": "The Squid Nebula is a recent discovery, first spotted in 2011.", "contentSnippet": "The Squid Nebula is a recent discovery, first spotted in 2011.", "guid": "https://arstechnica.com/?p=1978974", - "categories": [ - "Space", - "daily telescope" - ], + "categories": ["Space", "daily telescope"], "isoDate": "2023-10-27T12:00:12.000Z" }, { @@ -80,11 +77,7 @@ "content": "SBF said he thought loans were legal but didn't fully read FTX terms of service.", "contentSnippet": "SBF said he thought loans were legal but didn't fully read FTX terms of service.", "guid": "https://arstechnica.com/?p=1979088", - "categories": [ - "Policy", - "sam bankman-fried", - "sam bankman-fried ftx" - ], + "categories": ["Policy", "sam bankman-fried", "sam bankman-fried ftx"], "isoDate": "2023-10-26T20:54:45.000Z" }, { @@ -152,11 +145,7 @@ "content": "Firm drops widely panned idea but still aims to move users \"up our price card.\"", "contentSnippet": "Firm drops widely panned idea but still aims to move users \"up our price card.\"", "guid": "https://arstechnica.com/?p=1979010", - "categories": [ - "Policy", - "t-mobile", - "t-mobile plans" - ], + "categories": ["Policy", "t-mobile", "t-mobile plans"], "isoDate": "2023-10-26T18:24:20.000Z" }, { @@ -171,12 +160,7 @@ "content": "For now this is early access, but \"most\" customers will get upgraded eventually.", "contentSnippet": "For now this is early access, but \"most\" customers will get upgraded eventually.", "guid": "https://arstechnica.com/?p=1978969", - "categories": [ - "Google", - "Tech", - "Google Fiber", - "internet speed" - ], + "categories": ["Google", "Tech", "Google Fiber", "internet speed"], "isoDate": "2023-10-26T17:56:54.000Z" }, { @@ -303,12 +287,7 @@ "content": "OVC builds re-creations of 1960s Mustangs—we help test a Peter Brock-designed hood.", "contentSnippet": "OVC builds re-creations of 1960s Mustangs—we help test a Peter Brock-designed hood.", "guid": "https://arstechnica.com/?p=1978858", - "categories": [ - "Cars", - "aerodynamics", - "Ford Mustang", - "Restomod" - ], + "categories": ["Cars", "aerodynamics", "Ford Mustang", "Restomod"], "isoDate": "2023-10-26T14:59:18.000Z" }, { @@ -323,11 +302,7 @@ "content": "But an internal combustion engine-powered commercial van is going into production.", "contentSnippet": "But an internal combustion engine-powered commercial van is going into production.", "guid": "https://arstechnica.com/?p=1978841", - "categories": [ - "Cars", - "Tokyo Auto Show", - "Toyota" - ], + "categories": ["Cars", "Tokyo Auto Show", "Toyota"], "isoDate": "2023-10-26T14:10:23.000Z" }, { @@ -364,10 +339,7 @@ "content": "\"My goal was to highlight the comet's journey.\"", "contentSnippet": "\"My goal was to highlight the comet's journey.\"", "guid": "https://arstechnica.com/?p=1978811", - "categories": [ - "Space", - "daily telescope" - ], + "categories": ["Space", "daily telescope"], "isoDate": "2023-10-26T12:00:08.000Z" }, { @@ -451,11 +423,7 @@ "content": "The M11-P is the first camera to integrate Content Credentials.", "contentSnippet": "The M11-P is the first camera to integrate Content Credentials.", "guid": "https://arstechnica.com/?p=1979140", - "categories": [ - "AI", - "Tech", - "cameras" - ], + "categories": ["AI", "Tech", "cameras"], "isoDate": "2023-10-27T13:58:53.000Z" }, { @@ -470,13 +438,7 @@ "content": "There's no way to opt out, leading artists to believe Meta's system is badly broken.", "contentSnippet": "There's no way to opt out, leading artists to believe Meta's system is badly broken.", "guid": "https://arstechnica.com/?p=1979173", - "categories": [ - "AI", - "copyright", - "LLM", - "meta", - "syndication" - ], + "categories": ["AI", "copyright", "LLM", "meta", "syndication"], "isoDate": "2023-10-27T13:38:52.000Z" }, { @@ -514,10 +476,7 @@ "content": "Between 2001 and 2020, there was an average of 3 cases per year. Last year's tally was 24.", "contentSnippet": "Between 2001 and 2020, there was an average of 3 cases per year. Last year's tally was 24.", "guid": "https://arstechnica.com/?p=2018117", - "categories": [ - "Health", - "Science" - ], + "categories": ["Health", "Science"], "isoDate": "2024-04-17T22:26:59.000Z" }, { @@ -554,9 +513,7 @@ "content": "All-electric, 360-degree joints give the new Atlas plenty of inhuman movements. ", "contentSnippet": "All-electric, 360-degree joints give the new Atlas plenty of inhuman movements.", "guid": "https://arstechnica.com/?p=2017478", - "categories": [ - "Tech" - ], + "categories": ["Tech"], "isoDate": "2024-04-17T21:08:17.000Z" }, { @@ -571,10 +528,7 @@ "content": "Former OpenAI researcher once predicted a 50 percent chance of AI killing all of us. ", "contentSnippet": "Former OpenAI researcher once predicted a 50 percent chance of AI killing all of us.", "guid": "https://arstechnica.com/?p=2017927", - "categories": [ - "AI", - "Policy" - ], + "categories": ["AI", "Policy"], "isoDate": "2024-04-17T20:30:43.000Z" }, { @@ -665,10 +619,7 @@ "content": "Tesla board calls June 13 shareholder vote on Musk's pay and move to Texas.", "contentSnippet": "Tesla board calls June 13 shareholder vote on Musk's pay and move to Texas.", "guid": "https://arstechnica.com/?p=2017920", - "categories": [ - "Policy", - "tesla elon musk" - ], + "categories": ["Policy", "tesla elon musk"], "isoDate": "2024-04-17T17:52:18.000Z" }, { @@ -773,10 +724,7 @@ "content": "3 million Honda Accords and CR-Vs are fitted with Collision Mitigation Braking System.", "contentSnippet": "3 million Honda Accords and CR-Vs are fitted with Collision Mitigation Braking System.", "guid": "https://arstechnica.com/?p=2017732", - "categories": [ - "Cars", - "honda" - ], + "categories": ["Cars", "honda"], "isoDate": "2024-04-17T13:57:47.000Z" }, { @@ -791,12 +739,7 @@ "content": "Data centers are becoming a bottleneck for AI development.", "contentSnippet": "Data centers are becoming a bottleneck for AI development.", "guid": "https://arstechnica.com/?p=2017729", - "categories": [ - "AI", - "data centers", - "electricity", - "syndication" - ], + "categories": ["AI", "data centers", "electricity", "syndication"], "isoDate": "2024-04-17T13:55:37.000Z" }, { @@ -811,12 +754,7 @@ "content": "The update will first roll out to cars with Google Maps built-in.", "contentSnippet": "The update will first roll out to cars with Google Maps built-in.", "guid": "https://arstechnica.com/?p=2017708", - "categories": [ - "Cars", - "Google", - "Electric vehicles", - "google maps" - ], + "categories": ["Cars", "Google", "Electric vehicles", "google maps"], "isoDate": "2024-04-17T13:06:13.000Z" }, { @@ -924,10 +862,7 @@ "content": "FCC plan rejected request to ban what agency calls \"positive\" discrimination.", "contentSnippet": "FCC plan rejected request to ban what agency calls \"positive\" discrimination.", "guid": "https://arstechnica.com/?p=2017518", - "categories": [ - "Policy", - "fcc net neutrality" - ], + "categories": ["Policy", "fcc net neutrality"], "isoDate": "2024-04-16T20:38:38.000Z" }, { @@ -1042,4 +977,4 @@ ], "isoDate": "2024-04-18T12:00:25.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/77469d9c400326a387454d532f38628c5fff38379b2d45add5ed8c83a6d503f1.json b/intro to react/fun-with-react/logs/77469d9c400326a387454d532f38628c5fff38379b2d45add5ed8c83a6d503f1.json index 7969908..fe10610 100644 --- a/intro to react/fun-with-react/logs/77469d9c400326a387454d532f38628c5fff38379b2d45add5ed8c83a6d503f1.json +++ b/intro to react/fun-with-react/logs/77469d9c400326a387454d532f38628c5fff38379b2d45add5ed8c83a6d503f1.json @@ -639,4 +639,4 @@ "id": "t3_1c6saw9", "isoDate": "2024-04-18T02:26:26.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/78f77fae2e1ffc14f759d22ea8b749b905e90fd6e981b1383905af956f7a06ce.json b/intro to react/fun-with-react/logs/78f77fae2e1ffc14f759d22ea8b749b905e90fd6e981b1383905af956f7a06ce.json index 81f377a..5b411c8 100644 --- a/intro to react/fun-with-react/logs/78f77fae2e1ffc14f759d22ea8b749b905e90fd6e981b1383905af956f7a06ce.json +++ b/intro to react/fun-with-react/logs/78f77fae2e1ffc14f759d22ea8b749b905e90fd6e981b1383905af956f7a06ce.json @@ -8095,4 +8095,4 @@ ], "isoDate": "2024-04-18T13:31:15.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/917d100f9d2cc9174f5dc156d573a898b5ba693940f5781f847407180bd43209.json b/intro to react/fun-with-react/logs/917d100f9d2cc9174f5dc156d573a898b5ba693940f5781f847407180bd43209.json index 72cce28..970e8a8 100644 --- a/intro to react/fun-with-react/logs/917d100f9d2cc9174f5dc156d573a898b5ba693940f5781f847407180bd43209.json +++ b/intro to react/fun-with-react/logs/917d100f9d2cc9174f5dc156d573a898b5ba693940f5781f847407180bd43209.json @@ -791,4 +791,4 @@ "guid": "https://www.bbc.co.uk/news/entertainment-arts-68845271#3", "isoDate": "2024-04-18T10:07:31.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/9350fbc798fc38945db6ad0b4a48757e9521b294a2af799a4a3c05eb09caded3.json b/intro to react/fun-with-react/logs/9350fbc798fc38945db6ad0b4a48757e9521b294a2af799a4a3c05eb09caded3.json index 5dcee07..980c48f 100644 --- a/intro to react/fun-with-react/logs/9350fbc798fc38945db6ad0b4a48757e9521b294a2af799a4a3c05eb09caded3.json +++ b/intro to react/fun-with-react/logs/9350fbc798fc38945db6ad0b4a48757e9521b294a2af799a4a3c05eb09caded3.json @@ -2350,4 +2350,4 @@ ], "isoDate": "2024-04-18T09:04:00.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/9857cc183f75260fe3c588551c290ea9463a37c28b1c7d80949fc653c6f1aeaa.json b/intro to react/fun-with-react/logs/9857cc183f75260fe3c588551c290ea9463a37c28b1c7d80949fc653c6f1aeaa.json index 8ae7b1f..0a92741 100644 --- a/intro to react/fun-with-react/logs/9857cc183f75260fe3c588551c290ea9463a37c28b1c7d80949fc653c6f1aeaa.json +++ b/intro to react/fun-with-react/logs/9857cc183f75260fe3c588551c290ea9463a37c28b1c7d80949fc653c6f1aeaa.json @@ -3858,4 +3858,4 @@ ], "isoDate": "2024-04-18T09:05:44.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/9c97666a0762a7a453967d9a769652c7e62008d9fdac2f95d22c56b925e07f48.json b/intro to react/fun-with-react/logs/9c97666a0762a7a453967d9a769652c7e62008d9fdac2f95d22c56b925e07f48.json index aa46413..2fea4e4 100644 --- a/intro to react/fun-with-react/logs/9c97666a0762a7a453967d9a769652c7e62008d9fdac2f95d22c56b925e07f48.json +++ b/intro to react/fun-with-react/logs/9c97666a0762a7a453967d9a769652c7e62008d9fdac2f95d22c56b925e07f48.json @@ -10,9 +10,7 @@ "content": "The Taoiseach said there was a need to ‘double down on’ political, military and financial support for Ukraine.", "contentSnippet": "The Taoiseach said there was a need to ‘double down on’ political, military and financial support for Ukraine.", "guid": "b2437104", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T11:09:27.000Z" }, { @@ -26,10 +24,7 @@ "content": "

The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said

", "contentSnippet": "The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said", "guid": "b2436926", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T09:48:09.000Z" }, { @@ -43,10 +38,7 @@ "content": "

Clooney Foundation for Justice calls on German prosecutors to investigate Russia’s ‘war crimes’ in Ukraine

", "contentSnippet": "Clooney Foundation for Justice calls on German prosecutors to investigate Russia’s ‘war crimes’ in Ukraine", "guid": "b2436927", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T07:42:34.000Z" }, { @@ -60,10 +52,7 @@ "content": "

The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said

", "contentSnippet": "The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said", "guid": "b2436217", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T05:24:48.000Z" }, { @@ -77,10 +66,7 @@ "content": "

The prime minister would automatically become Russia’s leader in the interim but there are a number of big names with the potential to fill Putin’s shoes

", "contentSnippet": "The prime minister would automatically become Russia’s leader in the interim but there are a number of big names with the potential to fill Putin’s shoes", "guid": "b2436468", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T05:07:11.000Z" }, { @@ -94,10 +80,7 @@ "content": "

The prime minister would automatically become Russia’s leader in the interim but there are a number of big names with the potential to fill Putin’s shoes

", "contentSnippet": "The prime minister would automatically become Russia’s leader in the interim but there are a number of big names with the potential to fill Putin’s shoes", "guid": "b2436918", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T05:06:57.000Z" }, { @@ -111,10 +94,7 @@ "content": "

US claims some of Russian casualties near Avdivvka were ’on orders of their own leaders’

", "contentSnippet": "US claims some of Russian casualties near Avdivvka were ’on orders of their own leaders’", "guid": "b2436884", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T04:58:54.000Z" }, { @@ -141,10 +121,7 @@ "content": "The Turkish Republic, founded from the ruins of the Ottoman Empire by the national independence hero Mustafa Kemal Ataturk, turns 100 on Oct. 29", "contentSnippet": "The Turkish Republic, founded from the ruins of the Ottoman Empire by the national independence hero Mustafa Kemal Ataturk, turns 100 on Oct. 29", "guid": "b2436908", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T04:38:22.000Z" }, { @@ -158,11 +135,7 @@ "content": "

Conservatives hope breaking off Ukraine funding will allow it to be killed

", "contentSnippet": "Conservatives hope breaking off Ukraine funding will allow it to be killed", "guid": "b2436734", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2023-10-26T21:09:33.000Z" }, { @@ -176,10 +149,7 @@ "content": "

Mikhail Fridman had financial assets frozen by the UK government after Russia invaded Ukraine

", "contentSnippet": "Mikhail Fridman had financial assets frozen by the UK government after Russia invaded Ukraine", "guid": "b2436505", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2023-10-26T14:44:46.000Z" }, { @@ -193,10 +163,7 @@ "content": "Mikhail Fridman had financial assets frozen by the UK Government after the start of Russia’s invasion of Ukraine.", "contentSnippet": "Mikhail Fridman had financial assets frozen by the UK Government after the start of Russia’s invasion of Ukraine.", "guid": "b2436451", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-26T13:16:59.000Z" }, { @@ -210,10 +177,7 @@ "content": "

Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming “the best days are yet to come”.

", "contentSnippet": "Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming “the best days are yet to come”.", "guid": "b2437243", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2023-10-27T15:48:57.000Z" }, { @@ -227,10 +191,7 @@ "content": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", "contentSnippet": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", "guid": "b2437245", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T15:20:38.000Z" }, { @@ -244,10 +205,7 @@ "content": "China’s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", "contentSnippet": "China’s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", "guid": "b2437231", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T15:14:49.000Z" }, { @@ -261,9 +219,7 @@ "content": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", "contentSnippet": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", "guid": "b2437209", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T14:53:19.000Z" }, { @@ -277,10 +233,7 @@ "content": "

Pro-Russian former politician fighting for life in intensive care, official says

", "contentSnippet": "Pro-Russian former politician fighting for life in intensive care, official says", "guid": "b2437109", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T14:45:33.000Z" }, { @@ -307,9 +260,7 @@ "content": "Oliver Dowden is expected to set out plans to improve the UK’s ability to handle shocks to its economic security.", "contentSnippet": "Oliver Dowden is expected to set out plans to improve the UK’s ability to handle shocks to its economic security.", "guid": "b2530641", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T06:09:11.000Z" }, { @@ -336,11 +287,7 @@ "content": "

Mike Johnson released the bill texts amid calls by two far-right representatives to remove him from the speakership

", "contentSnippet": "Mike Johnson released the bill texts amid calls by two far-right representatives to remove him from the speakership", "guid": "b2530381", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-17T21:10:09.000Z" }, { @@ -367,11 +314,7 @@ "content": "

A conservative rebellion is growing. Should the speaker really be worried?

", "contentSnippet": "A conservative rebellion is growing. Should the speaker really be worried?", "guid": "b2529964", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-17T18:54:53.000Z" }, { @@ -398,10 +341,7 @@ "content": "French President Emmanuel Macron is urging his European Union counterparts to ramp up sanctions against Iran", "contentSnippet": "French President Emmanuel Macron is urging his European Union counterparts to ramp up sanctions against Iran", "guid": "b2530410", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-17T17:46:14.000Z" }, { @@ -415,10 +355,7 @@ "content": "

Ukrainian officials say the attack could have been prevented if the West offered the same level of support to Ukraine as it did to Israel

", "contentSnippet": "Ukrainian officials say the attack could have been prevented if the West offered the same level of support to Ukraine as it did to Israel", "guid": "b2530154", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-17T17:43:34.000Z" }, { @@ -445,11 +382,7 @@ "content": "

Watch live as defence secretary Lloyd Austin, Joint Chiefs of Staff chair Gen Charles Q Brown Jr, and defence comptroller Mike McCord were grilled on global conflicts before the House Appropriations Committee on Wednesday, 17 April.

", "contentSnippet": "Watch live as defence secretary Lloyd Austin, Joint Chiefs of Staff chair Gen Charles Q Brown Jr, and defence comptroller Mike McCord were grilled on global conflicts before the House Appropriations Committee on Wednesday, 17 April.", "guid": "b2530215", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-17T16:46:04.000Z" }, { @@ -463,10 +396,7 @@ "content": "Police in Sweden say that security will be tight during next month’s Eurovision Song Contest in the southern city of Malmo", "contentSnippet": "Police in Sweden say that security will be tight during next month’s Eurovision Song Contest in the southern city of Malmo", "guid": "b2530217", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-17T13:40:37.000Z" }, { @@ -480,10 +410,7 @@ "content": "

Number of deaths nearly 25% higher last year than in the first 12 months of the war, new analysis says

", "contentSnippet": "Number of deaths nearly 25% higher last year than in the first 12 months of the war, new analysis says", "guid": "b2530037", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-17T11:13:09.000Z" }, { @@ -497,10 +424,7 @@ "content": "Russia’s invasion of Ukraine is at the forefront of European Union citizens’ minds, with defense and security seen as key campaign issues ahead of the June elections, according to a study published Wednesday", "contentSnippet": "Russia’s invasion of Ukraine is at the forefront of European Union citizens’ minds, with defense and security seen as key campaign issues ahead of the June elections, according to a study published Wednesday", "guid": "b2530092", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-17T09:46:39.000Z" }, { @@ -527,10 +451,7 @@ "content": "

German chancellor says he told president Xi that China’s word carries ‘weight’ in Russia

", "contentSnippet": "German chancellor says he told president Xi that China’s word carries ‘weight’ in Russia", "guid": "b2517524", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-17T08:38:47.000Z" }, { @@ -544,10 +465,7 @@ "content": "

Ukraine’s prime minister says ‘global system of security’ hangs in the balance as vote for US aid deal looms

", "contentSnippet": "Ukraine’s prime minister says ‘global system of security’ hangs in the balance as vote for US aid deal looms", "guid": "b2530661", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T08:47:34.000Z" }, { @@ -574,10 +492,7 @@ "content": "

Watch live as Oliver Dowden delivers a speech on economic security on Thursday 18 April.

", "contentSnippet": "Watch live as Oliver Dowden delivers a speech on economic security on Thursday 18 April.", "guid": "b2530782", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T10:39:23.000Z" }, { @@ -591,10 +506,7 @@ "content": "Reuters photographer Mohammed Salem captured this year’s prestigious World Press Photo of the Year award Thursday with his heartrending image of a Palestinian woman cradling the body of her young niece — a powerful depiction of loss and sorrow in Gaza", "contentSnippet": "Reuters photographer Mohammed Salem captured this year’s prestigious World Press Photo of the Year award Thursday with his heartrending image of a Palestinian woman cradling the body of her young niece — a powerful depiction of loss and sorrow in Gaza", "guid": "b2530745", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T09:54:00.000Z" }, { @@ -608,10 +520,7 @@ "content": "European Union leaders are debating at a summit in Brussels a new “European Competitiveness Deal” aimed at helping the 27-nation bloc close the gap with Chinese and American rivals", "contentSnippet": "European Union leaders are debating at a summit in Brussels a new “European Competitiveness Deal” aimed at helping the 27-nation bloc close the gap with Chinese and American rivals", "guid": "b2530744", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T09:51:56.000Z" }, { @@ -625,10 +534,7 @@ "content": "

Prosecutors say one of the two men arrested was preparing explosive and arson attacks, especially on military and industrial infrastructure

", "contentSnippet": "Prosecutors say one of the two men arrested was preparing explosive and arson attacks, especially on military and industrial infrastructure", "guid": "b2530870", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T13:27:30.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/9eae85e43776536de66cfcc4c83f1a43d6e2f8fb674ba679bca222e8db38e09c.json b/intro to react/fun-with-react/logs/9eae85e43776536de66cfcc4c83f1a43d6e2f8fb674ba679bca222e8db38e09c.json index a99fe5c..570f241 100644 --- a/intro to react/fun-with-react/logs/9eae85e43776536de66cfcc4c83f1a43d6e2f8fb674ba679bca222e8db38e09c.json +++ b/intro to react/fun-with-react/logs/9eae85e43776536de66cfcc4c83f1a43d6e2f8fb674ba679bca222e8db38e09c.json @@ -9,9 +9,7 @@ "content": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", "contentSnippet": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", "guid": "https://www.thinkdefence.co.uk/?p=62334", - "categories": [ - "Blog" - ], + "categories": ["Blog"], "isoDate": "2023-09-10T16:49:54.000Z" }, { @@ -24,9 +22,7 @@ "content": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant […]", "contentSnippet": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant […]", "guid": "https://www.thinkdefence.co.uk/?p=62318", - "categories": [ - "Blog" - ], + "categories": ["Blog"], "isoDate": "2023-09-03T18:43:50.000Z" }, { @@ -39,9 +35,7 @@ "content": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie – The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited […]", "contentSnippet": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie – The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited […]", "guid": "https://www.thinkdefence.co.uk/?p=62291", - "categories": [ - "Blog" - ], + "categories": ["Blog"], "isoDate": "2023-08-30T20:15:52.000Z" }, { @@ -54,9 +48,7 @@ "content": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and […]", "contentSnippet": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and […]", "guid": "https://www.thinkdefence.co.uk/?p=62244", - "categories": [ - "Blog" - ], + "categories": ["Blog"], "isoDate": "2023-08-29T08:47:22.000Z" }, { @@ -69,9 +61,7 @@ "content": "This is post 1 of 1 in the series “The 1982 Falkand Islands Conflict” The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 […]", "contentSnippet": "This is post 1 of 1 in the series “The 1982 Falkand Islands Conflict” The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 […]", "guid": "https://www.thinkdefence.co.uk/?p=62182", - "categories": [ - "Blog" - ], + "categories": ["Blog"], "isoDate": "2023-08-24T20:10:55.000Z" }, { @@ -84,9 +74,7 @@ "content": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British […]", "contentSnippet": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British […]", "guid": "https://www.thinkdefence.co.uk/?p=62135", - "categories": [ - "Blog" - ], + "categories": ["Blog"], "isoDate": "2023-08-24T13:27:00.000Z" }, { @@ -99,9 +87,7 @@ "content": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as… Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel […]", "contentSnippet": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as… Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel […]", "guid": "https://www.thinkdefence.co.uk/?p=62123", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2023-08-11T19:49:00.000Z" }, { @@ -114,9 +100,7 @@ "content": "This is post 2 of 2 in the series “Military Bridging” Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with […]", "contentSnippet": "This is post 2 of 2 in the series “Military Bridging” Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with […]", "guid": "https://www.thinkdefence.co.uk/?p=61720", - "categories": [ - "Military Engineering" - ], + "categories": ["Military Engineering"], "isoDate": "2023-08-03T19:16:37.000Z" }, { @@ -129,9 +113,7 @@ "content": "This is post 22 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", "contentSnippet": "This is post 22 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", "guid": "https://www.thinkdefence.co.uk/?p=61668", - "categories": [ - "Complex Weapons" - ], + "categories": ["Complex Weapons"], "isoDate": "2023-05-30T20:15:33.000Z" }, { @@ -149,9 +131,7 @@ "content": "This is post 21 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", "contentSnippet": "This is post 21 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", "guid": "https://www.thinkdefence.co.uk/?p=61600", - "categories": [ - "Complex Weapons" - ], + "categories": ["Complex Weapons"], "isoDate": "2023-05-19T20:13:45.000Z" }, { @@ -164,9 +144,7 @@ "content": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain. ", "contentSnippet": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain.", "guid": "https://www.thinkdefence.co.uk/?p=61454", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2023-05-05T16:09:01.000Z" }, { @@ -179,9 +157,7 @@ "content": "An Alternative Future Soldier from the Bridge and Pallet Chap", "contentSnippet": "An Alternative Future Soldier from the Bridge and Pallet Chap", "guid": "https://www.thinkdefence.co.uk/?p=61336", - "categories": [ - "Miscellaneous" - ], + "categories": ["Miscellaneous"], "isoDate": "2023-04-30T11:55:58.000Z" }, { @@ -194,9 +170,7 @@ "content": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T) ", "contentSnippet": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T)", "guid": "https://www.thinkdefence.co.uk/?p=60613", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2023-03-21T21:16:38.000Z" }, { @@ -209,9 +183,7 @@ "content": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the […]", "contentSnippet": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the […]", "guid": "https://www.thinkdefence.co.uk/?p=60615", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2023-03-14T17:23:15.000Z" }, { @@ -224,9 +196,7 @@ "content": "This is post 2 of 3 in the series “Dimishing Returns - British Army Vehicles” Diminishing Returns – The British Army and its Vehicles – Series Introduction Diminishing Returns – The British Army and its Vehicles – The Fifties Diminishing Returns – The British Army and its Vehicles – The Sixties The end of WWII […]", "contentSnippet": "This is post 2 of 3 in the series “Dimishing Returns - British Army Vehicles” Diminishing Returns – The British Army and its Vehicles – Series Introduction Diminishing Returns – The British Army and its Vehicles – The Fifties Diminishing Returns – The British Army and its Vehicles – The Sixties The end of WWII […]", "guid": "https://www.thinkdefence.co.uk/?p=60492", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2023-03-04T21:32:53.000Z" }, { @@ -239,9 +209,7 @@ "content": "This series of blog posts is I hope a fair-minded and accurate history of the British Army’s armoured and protected mobility vehicles from the Post War period to early 2023.", "contentSnippet": "This series of blog posts is I hope a fair-minded and accurate history of the British Army’s armoured and protected mobility vehicles from the Post War period to early 2023.", "guid": "https://www.thinkdefence.co.uk/?p=60475", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2023-03-01T17:56:42.000Z" }, { @@ -254,9 +222,7 @@ "content": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", "contentSnippet": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", "guid": "https://www.thinkdefence.co.uk/?p=59223", - "categories": [ - "Complex Weapons" - ], + "categories": ["Complex Weapons"], "isoDate": "2023-02-04T09:34:04.000Z" }, { @@ -269,9 +235,7 @@ "content": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don’t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, […]", "contentSnippet": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don’t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, […]", "guid": "https://www.thinkdefence.co.uk/?p=60056", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2023-01-17T12:19:31.000Z" }, { @@ -284,9 +248,7 @@ "content": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", "contentSnippet": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", "guid": "https://www.thinkdefence.co.uk/?p=59150", - "categories": [ - "Complex Weapons" - ], + "categories": ["Complex Weapons"], "isoDate": "2022-12-31T11:55:50.000Z" }, { @@ -299,9 +261,7 @@ "content": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", "contentSnippet": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", "guid": "https://www.thinkdefence.co.uk/?p=59862", - "categories": [ - "Air Power" - ], + "categories": ["Air Power"], "isoDate": "2022-12-02T17:51:50.000Z" }, { @@ -314,9 +274,7 @@ "content": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers […]", "contentSnippet": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers […]", "guid": "https://www.thinkdefence.co.uk/?p=59602", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2022-11-20T19:05:11.000Z" }, { @@ -329,9 +287,7 @@ "content": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", "contentSnippet": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", "guid": "https://www.thinkdefence.co.uk/?p=59575", - "categories": [ - "Complex Weapons" - ], + "categories": ["Complex Weapons"], "isoDate": "2022-11-20T13:13:17.000Z" }, { @@ -344,9 +300,7 @@ "content": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", "contentSnippet": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", "guid": "https://www.thinkdefence.co.uk/?p=59572", - "categories": [ - "Complex Weapons" - ], + "categories": ["Complex Weapons"], "isoDate": "2022-11-20T13:11:52.000Z" }, { @@ -359,9 +313,7 @@ "content": "This is post 16 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", "contentSnippet": "This is post 16 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", "guid": "https://www.thinkdefence.co.uk/?p=59569", - "categories": [ - "Complex Weapons" - ], + "categories": ["Complex Weapons"], "isoDate": "2022-11-20T13:10:29.000Z" }, { @@ -374,9 +326,7 @@ "content": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", "contentSnippet": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", "guid": "https://www.thinkdefence.co.uk/?p=59566", - "categories": [ - "Complex Weapons" - ], + "categories": ["Complex Weapons"], "isoDate": "2022-11-20T13:09:09.000Z" }, { @@ -389,9 +339,7 @@ "content": "In the previous post on what could replace the FV432, I concluded that if it were replaced, given the relatively narrow range of roles it now performs, it would probably be replaced with Boxer modules or Ajax variants. I also touched briefly on the origins of the FV432 as a protected tracked load carrier, the […]", "contentSnippet": "In the previous post on what could replace the FV432, I concluded that if it were replaced, given the relatively narrow range of roles it now performs, it would probably be replaced with Boxer modules or Ajax variants. I also touched briefly on the origins of the FV432 as a protected tracked load carrier, the […]", "guid": "https://www.thinkdefence.co.uk/?p=64216", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-03-27T18:40:50.000Z" }, { @@ -404,9 +352,7 @@ "content": "Venerable is an often overused word but quite apt for the FV432. It has been in service so long no one sensible believes it will ever be replaced! We all know the joke about the FV432 operating on Mars in 2157 but it will need to be eventually replaced beyond 2030. A few thoughts on […]", "contentSnippet": "Venerable is an often overused word but quite apt for the FV432. It has been in service so long no one sensible believes it will ever be replaced! We all know the joke about the FV432 operating on Mars in 2157 but it will need to be eventually replaced beyond 2030. A few thoughts on […]", "guid": "https://www.thinkdefence.co.uk/?p=64178", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-03-27T18:39:13.000Z" }, { @@ -419,10 +365,7 @@ "content": "This is post 4 of 4 in the series “2010 Haiti Earthquake Logistics” 2010 Haiti Earthquake Response Logistics (Introduction) 2010 Haiti Earthquake Response Logistics (Seaports)  2010 Haiti Earthquake Response Logistics (Airports)  2010 Haiti Earthquake Response Logistics (Observations) The more you read about the Haiti earthquake response the more you realise what a magnificent awe-inspiring effort […]", "contentSnippet": "This is post 4 of 4 in the series “2010 Haiti Earthquake Logistics” 2010 Haiti Earthquake Response Logistics (Introduction) 2010 Haiti Earthquake Response Logistics (Seaports)  2010 Haiti Earthquake Response Logistics (Airports)  2010 Haiti Earthquake Response Logistics (Observations) The more you read about the Haiti earthquake response the more you realise what a magnificent awe-inspiring effort […]", "guid": "https://www.thinkdefence.co.uk/?p=63941", - "categories": [ - "Engineering and Logistics", - "Logistics" - ], + "categories": ["Engineering and Logistics", "Logistics"], "isoDate": "2024-03-23T07:38:14.000Z" }, { @@ -435,9 +378,7 @@ "content": "This is post 3 of 4 in the series “2010 Haiti Earthquake Logistics” 2010 Haiti Earthquake Response Logistics (Introduction) 2010 Haiti Earthquake Response Logistics (Seaports)  2010 Haiti Earthquake Response Logistics (Airports)  2010 Haiti Earthquake Response Logistics (Observations) The 2010 Haiti earthquake airport story is much shorter than the seaports. This is for a few reasons, […]", "contentSnippet": "This is post 3 of 4 in the series “2010 Haiti Earthquake Logistics” 2010 Haiti Earthquake Response Logistics (Introduction) 2010 Haiti Earthquake Response Logistics (Seaports)  2010 Haiti Earthquake Response Logistics (Airports)  2010 Haiti Earthquake Response Logistics (Observations) The 2010 Haiti earthquake airport story is much shorter than the seaports. This is for a few reasons, […]", "guid": "https://www.thinkdefence.co.uk/?p=63937", - "categories": [ - "Engineering and Logistics" - ], + "categories": ["Engineering and Logistics"], "isoDate": "2024-03-23T07:25:44.000Z" }, { @@ -450,10 +391,7 @@ "content": "This is post 2 of 4 in the series “2010 Haiti Earthquake Logistics” 2010 Haiti Earthquake Response Logistics (Introduction) 2010 Haiti Earthquake Response Logistics (Seaports)  2010 Haiti Earthquake Response Logistics (Airports)  2010 Haiti Earthquake Response Logistics (Observations) Despite the obvious utility of air operations for rapid response and time-sensitive materials, overland from the Dominican Republic […]", "contentSnippet": "This is post 2 of 4 in the series “2010 Haiti Earthquake Logistics” 2010 Haiti Earthquake Response Logistics (Introduction) 2010 Haiti Earthquake Response Logistics (Seaports)  2010 Haiti Earthquake Response Logistics (Airports)  2010 Haiti Earthquake Response Logistics (Observations) Despite the obvious utility of air operations for rapid response and time-sensitive materials, overland from the Dominican Republic […]", "guid": "https://www.thinkdefence.co.uk/?p=63938", - "categories": [ - "Engineering and Logistics", - "Logistics" - ], + "categories": ["Engineering and Logistics", "Logistics"], "isoDate": "2024-03-23T07:22:52.000Z" }, { @@ -466,10 +404,7 @@ "content": "This is post 1 of 4 in the series “2010 Haiti Earthquake Logistics” 2010 Haiti Earthquake Response Logistics (Introduction) 2010 Haiti Earthquake Response Logistics (Seaports)  2010 Haiti Earthquake Response Logistics (Airports)  2010 Haiti Earthquake Response Logistics (Observations) Haiti was subject to a massive earthquake in 2010 that significantly damaged an already fragile country. The response […]", "contentSnippet": "This is post 1 of 4 in the series “2010 Haiti Earthquake Logistics” 2010 Haiti Earthquake Response Logistics (Introduction) 2010 Haiti Earthquake Response Logistics (Seaports)  2010 Haiti Earthquake Response Logistics (Airports)  2010 Haiti Earthquake Response Logistics (Observations) Haiti was subject to a massive earthquake in 2010 that significantly damaged an already fragile country. The response […]", "guid": "https://www.thinkdefence.co.uk/?p=63916", - "categories": [ - "Engineering and Logistics", - "Logistics" - ], + "categories": ["Engineering and Logistics", "Logistics"], "isoDate": "2024-03-23T07:19:58.000Z" }, { @@ -487,9 +422,7 @@ "content": "The Mexeflote is a modular pontoon in service with the British and Australian armed forces and is primarily used to transfer vehicles, stores and equipment from ship to shore. In service since the sixties, its basic design has endured, but at some point, it will need replacing. History of the Mexeflote The Mexeflote came into service with […]", "contentSnippet": "The Mexeflote is a modular pontoon in service with the British and Australian armed forces and is primarily used to transfer vehicles, stores and equipment from ship to shore. In service since the sixties, its basic design has endured, but at some point, it will need replacing. History of the Mexeflote The Mexeflote came into service with […]", "guid": "https://www.thinkdefence.co.uk/?p=58360", - "categories": [ - "Engineering and Logistics" - ], + "categories": ["Engineering and Logistics"], "isoDate": "2024-03-10T21:04:41.000Z" }, { @@ -502,9 +435,7 @@ "content": "The subject of this post started with a question about the viability of building a force around a single vehicle type, took a detour into rapidly expanding the Army Reserve in response to conflict, and then veered into matters of UK civil resilience. Eventually, I thought it might be interesting to combine all three. This […]", "contentSnippet": "The subject of this post started with a question about the viability of building a force around a single vehicle type, took a detour into rapidly expanding the Army Reserve in response to conflict, and then veered into matters of UK civil resilience. Eventually, I thought it might be interesting to combine all three. This […]", "guid": "https://www.thinkdefence.co.uk/?p=63746", - "categories": [ - "Proposals" - ], + "categories": ["Proposals"], "isoDate": "2024-03-02T20:38:51.000Z" }, { @@ -517,9 +448,7 @@ "content": "This is post 12 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 12 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=63068", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:38:31.000Z" }, { @@ -532,9 +461,7 @@ "content": "This is post 11 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 11 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=63066", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:38:09.000Z" }, { @@ -547,9 +474,7 @@ "content": "This is post 10 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 10 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=63064", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:37:25.000Z" }, { @@ -562,9 +487,7 @@ "content": "This is post 9 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 9 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=63059", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:36:47.000Z" }, { @@ -577,9 +500,7 @@ "content": "This is post 8 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 8 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=63057", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:35:44.000Z" }, { @@ -597,9 +518,7 @@ "content": "This is post 7 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 7 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=63055", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:34:26.000Z" }, { @@ -612,9 +531,7 @@ "content": "This is post 6 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 6 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=63052", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:32:50.000Z" }, { @@ -627,9 +544,7 @@ "content": "This is post 5 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 5 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=62941", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:29:56.000Z" }, { @@ -642,9 +557,7 @@ "content": "This is post 4 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 4 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=62939", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:28:49.000Z" }, { @@ -657,9 +570,7 @@ "content": "This is post 3 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 3 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=62779", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:27:13.000Z" }, { @@ -672,9 +583,7 @@ "content": "This is post 2 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 2 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=62776", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:24:05.000Z" }, { @@ -687,9 +596,7 @@ "content": "This is post 1 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "contentSnippet": "This is post 1 of 12 in the series “Helicopter Carried Vehicles” Helicopter Carried Vehicles – Part 1 (Introduction) Helicopter Carried Vehicles – Part 2 (Motorcycles and ATVs) Helicopter Carried Vehicles – Part 3 (UTVs and Load Carriers) Helicopter Carried Vehicles – Part 4 (Medium Wheeled Vehicles) Helicopter Carried Vehicles – Part 5 (Tracked Utility […]", "guid": "https://www.thinkdefence.co.uk/?p=62745", - "categories": [ - "Vehicles" - ], + "categories": ["Vehicles"], "isoDate": "2024-02-02T21:18:53.000Z" }, { @@ -702,9 +609,7 @@ "content": "Building on a handful of earlier posts on infantry load carriage, quad bike ATVs and the Container Delivery System, I thought it might be interesting to evolve some of the ideas and concepts they described. Risk and Requirements To start this post, a few words on risk. Haddon-Cave didn’t happen for no good reason, every […]", "contentSnippet": "Building on a handful of earlier posts on infantry load carriage, quad bike ATVs and the Container Delivery System, I thought it might be interesting to evolve some of the ideas and concepts they described. Risk and Requirements To start this post, a few words on risk. Haddon-Cave didn’t happen for no good reason, every […]", "guid": "https://www.thinkdefence.co.uk/?p=62488", - "categories": [ - "Proposals" - ], + "categories": ["Proposals"], "isoDate": "2023-12-19T21:33:33.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697.json b/intro to react/fun-with-react/logs/a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697.json index 6acde23..d2727fb 100644 --- a/intro to react/fun-with-react/logs/a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697.json +++ b/intro to react/fun-with-react/logs/a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697.json @@ -11,10 +11,7 @@ "content": "

The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.

\n", "contentSnippet": "The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290590", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-21T19:06:00.000Z" }, { @@ -29,10 +26,7 @@ "content": "

The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.

\n", "contentSnippet": "The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290324", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-18T01:00:00.000Z" }, { @@ -47,10 +41,7 @@ "content": "

The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.

\n", "contentSnippet": "The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290588", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-16T01:06:00.000Z" }, { @@ -65,10 +56,7 @@ "content": "

The post Wildfire in California appeared first on Reuters News Agency.

\n", "contentSnippet": "The post Wildfire in California appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290565", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-12T15:28:00.000Z" }, { @@ -83,10 +71,7 @@ "content": "

The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.

\n", "contentSnippet": "The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290289", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-10T16:27:00.000Z" }, { @@ -101,10 +86,7 @@ "content": "

The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.

\n", "contentSnippet": "The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290241", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-09T03:06:00.000Z" }, { @@ -119,10 +101,7 @@ "content": "

The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.

\n", "contentSnippet": "The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290194", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-05T12:00:44.000Z" }, { @@ -137,10 +116,7 @@ "content": "

The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.

\n", "contentSnippet": "The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290159", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-05T11:17:00.000Z" }, { @@ -155,10 +131,7 @@ "content": "

The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.

\n", "contentSnippet": "The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290229", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-04T19:23:00.000Z" }, { @@ -173,10 +146,7 @@ "content": "

The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.

\n", "contentSnippet": "The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.", "guid": "https://www.reutersagency.com/?p=290002", - "categories": [ - "Coverage", - "Reuters Connect" - ], + "categories": ["Coverage", "Reuters Connect"], "isoDate": "2022-05-04T00:10:00.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/a116638f2da393659d8b4b64bfb521fcc5e36ba26e931cb8cadd957e36de3225.json b/intro to react/fun-with-react/logs/a116638f2da393659d8b4b64bfb521fcc5e36ba26e931cb8cadd957e36de3225.json index abeecd7..a1241e7 100644 --- a/intro to react/fun-with-react/logs/a116638f2da393659d8b4b64bfb521fcc5e36ba26e931cb8cadd957e36de3225.json +++ b/intro to react/fun-with-react/logs/a116638f2da393659d8b4b64bfb521fcc5e36ba26e931cb8cadd957e36de3225.json @@ -979,4 +979,4 @@ "guid": "nigerian-schoolgirl-abducted-extremists-10-132738421.html", "isoDate": "2024-04-18T13:27:38.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/b324ab3713958bf454fad8dd6ea31b589603610a469fd80405dce00d0db6c452.json b/intro to react/fun-with-react/logs/b324ab3713958bf454fad8dd6ea31b589603610a469fd80405dce00d0db6c452.json index 751d5b3..2c8b24d 100644 --- a/intro to react/fun-with-react/logs/b324ab3713958bf454fad8dd6ea31b589603610a469fd80405dce00d0db6c452.json +++ b/intro to react/fun-with-react/logs/b324ab3713958bf454fad8dd6ea31b589603610a469fd80405dce00d0db6c452.json @@ -767,4 +767,4 @@ "guid": "https://news.ycombinator.com/item?id=40074850", "isoDate": "2024-04-18T10:50:04.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/bf301c05c44ba5af1458a199a620f90a25c9217a9d611a7927497c1fc9be7703.json b/intro to react/fun-with-react/logs/bf301c05c44ba5af1458a199a620f90a25c9217a9d611a7927497c1fc9be7703.json index 8cb6f44..63f3fed 100644 --- a/intro to react/fun-with-react/logs/bf301c05c44ba5af1458a199a620f90a25c9217a9d611a7927497c1fc9be7703.json +++ b/intro to react/fun-with-react/logs/bf301c05c44ba5af1458a199a620f90a25c9217a9d611a7927497c1fc9be7703.json @@ -289,4 +289,4 @@ "id": "t3_1c72cr3", "isoDate": "2024-04-18T12:41:51.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/d3c9a46f4e5f61e202114b1a3f606a4a13d5aa3e0091618e5304faae87ce08b4.json b/intro to react/fun-with-react/logs/d3c9a46f4e5f61e202114b1a3f606a4a13d5aa3e0091618e5304faae87ce08b4.json index 66aef92..f534a89 100644 --- a/intro to react/fun-with-react/logs/d3c9a46f4e5f61e202114b1a3f606a4a13d5aa3e0091618e5304faae87ce08b4.json +++ b/intro to react/fun-with-react/logs/d3c9a46f4e5f61e202114b1a3f606a4a13d5aa3e0091618e5304faae87ce08b4.json @@ -10,10 +10,7 @@ "content": "

London mayor says ceasefire would ‘stop the killing’ and let in aid – as nearly quarter of Labour MPs defy leadership

", "contentSnippet": "London mayor says ceasefire would ‘stop the killing’ and let in aid – as nearly quarter of Labour MPs defy leadership", "guid": "b2437046", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2023-10-27T12:50:03.000Z" }, { @@ -27,10 +24,7 @@ "content": "

The Israel Defence Forces said it had conducted more air strikes on Hamas targets over the last 24 hours

", "contentSnippet": "The Israel Defence Forces said it had conducted more air strikes on Hamas targets over the last 24 hours", "guid": "b2436944", - "categories": [ - "Middle East", - "World" - ], + "categories": ["Middle East", "World"], "isoDate": "2023-10-27T12:48:28.000Z" }, { @@ -57,11 +51,7 @@ "content": "

The light can help tackle the symptoms of seasonal affective disorder

", "contentSnippet": "The light can help tackle the symptoms of seasonal affective disorder", "guid": "b2437078", - "categories": [ - "Tech", - "IndyBest", - "Extras" - ], + "categories": ["Tech", "IndyBest", "Extras"], "isoDate": "2023-10-27T12:46:33.000Z" }, { @@ -75,10 +65,7 @@ "content": "

It was by all accounts a normal Wednesday night in Lewiston, Maine – until it was rocked by the latest horrific act of gun violence in America, Rachel Sharp reports. WARNING: Disturbing images

", "contentSnippet": "It was by all accounts a normal Wednesday night in Lewiston, Maine – until it was rocked by the latest horrific act of gun violence in America, Rachel Sharp reports. WARNING: Disturbing images", "guid": "b2437073", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T12:45:17.000Z" }, { @@ -92,10 +79,7 @@ "content": "

BA parent company IAG warns of possible problems with air-traffic control and airports’ resilience, despite £1.15bn profit

", "contentSnippet": "BA parent company IAG warns of possible problems with air-traffic control and airports’ resilience, despite £1.15bn profit", "guid": "b2436997", - "categories": [ - "News & Advice", - "Travel" - ], + "categories": ["News & Advice", "Travel"], "isoDate": "2023-10-27T12:45:04.000Z" }, { @@ -122,12 +106,7 @@ "content": "

Frankincense and myrrh won’t get a look in with these gifts from Missoma, Astrid & Miyu and more

", "contentSnippet": "Frankincense and myrrh won’t get a look in with these gifts from Missoma, Astrid & Miyu and more", "guid": "b2212590", - "categories": [ - "Advent calendars", - "Christmas", - "IndyBest", - "Extras" - ], + "categories": ["Advent calendars", "Christmas", "IndyBest", "Extras"], "isoDate": "2023-10-27T12:42:48.000Z" }, { @@ -154,10 +133,7 @@ "content": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", "contentSnippet": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", "guid": "b2437148", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T12:40:55.000Z" }, { @@ -171,10 +147,7 @@ "content": "

The passenger was allegedly attempting to evade Ryanair’s strict baggage limits

", "contentSnippet": "The passenger was allegedly attempting to evade Ryanair’s strict baggage limits", "guid": "b2437068", - "categories": [ - "News & Advice", - "Travel" - ], + "categories": ["News & Advice", "Travel"], "isoDate": "2023-10-27T12:39:19.000Z" }, { @@ -188,10 +161,7 @@ "content": "An ageing squad, confused selection and individual errors have all contributed to a dismal title defence.", "contentSnippet": "An ageing squad, confused selection and individual errors have all contributed to a dismal title defence.", "guid": "b2437146", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2023-10-27T12:37:34.000Z" }, { @@ -205,10 +175,7 @@ "content": "

Joshua Hunt told a police officer “I’m not a gimp” when he was arrested on May 9

", "contentSnippet": "Joshua Hunt told a police officer “I’m not a gimp” when he was arrested on May 9", "guid": "b2437085", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T12:36:39.000Z" }, { @@ -222,9 +189,7 @@ "content": "Minister Gillian Keegan said the Government would not want to ‘cross that line of telling Israel it has anything but the right to defend itself’.", "contentSnippet": "Minister Gillian Keegan said the Government would not want to ‘cross that line of telling Israel it has anything but the right to defend itself’.", "guid": "b2437036", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T12:34:11.000Z" }, { @@ -238,11 +203,7 @@ "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", "guid": "b2435345", - "categories": [ - "China Daily", - "China", - "Asia" - ], + "categories": ["China Daily", "China", "Asia"], "isoDate": "2023-10-27T12:34:04.000Z" }, { @@ -269,9 +230,7 @@ "content": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", "contentSnippet": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", "guid": "b2437129", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T12:33:38.000Z" }, { @@ -285,11 +244,7 @@ "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", "guid": "b2435338", - "categories": [ - "China Daily", - "China", - "Asia" - ], + "categories": ["China Daily", "China", "Asia"], "isoDate": "2023-10-27T12:33:09.000Z" }, { @@ -303,11 +258,7 @@ "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", "guid": "b2435331", - "categories": [ - "China Daily", - "China", - "Asia" - ], + "categories": ["China Daily", "China", "Asia"], "isoDate": "2023-10-27T12:32:45.000Z" }, { @@ -321,11 +272,7 @@ "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", "guid": "b2435318", - "categories": [ - "China Daily", - "China", - "Asia" - ], + "categories": ["China Daily", "China", "Asia"], "isoDate": "2023-10-27T12:32:35.000Z" }, { @@ -352,11 +299,7 @@ "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", "guid": "b2435303", - "categories": [ - "China Daily", - "China", - "Asia" - ], + "categories": ["China Daily", "China", "Asia"], "isoDate": "2023-10-27T12:32:18.000Z" }, { @@ -370,11 +313,7 @@ "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", "guid": "b2435292", - "categories": [ - "China Daily", - "China", - "Asia" - ], + "categories": ["China Daily", "China", "Asia"], "isoDate": "2023-10-27T12:31:20.000Z" }, { @@ -388,11 +327,7 @@ "content": "

‘This is not my Joe,’ says wife of Joseph Emerson who is now facing 83 counts of attempted murder

", "contentSnippet": "‘This is not my Joe,’ says wife of Joseph Emerson who is now facing 83 counts of attempted murder", "guid": "b2437098", - "categories": [ - "US Crime News", - "Americas", - "World" - ], + "categories": ["US Crime News", "Americas", "World"], "isoDate": "2023-10-27T12:31:02.000Z" }, { @@ -406,10 +341,7 @@ "content": "

Several victims have now been identified including a 14-year-old boy who was killed at the bowling alley in Lewiston – while the manhunt for Robert Card continues

", "contentSnippet": "Several victims have now been identified including a 14-year-old boy who was killed at the bowling alley in Lewiston – while the manhunt for Robert Card continues", "guid": "b2436896", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T12:30:29.000Z" }, { @@ -423,10 +355,7 @@ "content": "

Sultan Ibrahim Sultan Iskandar is set to take over from King Al-Sultan Abdullah in January 2024

", "contentSnippet": "Sultan Ibrahim Sultan Iskandar is set to take over from King Al-Sultan Abdullah in January 2024", "guid": "b2437089", - "categories": [ - "Southeast Asia", - "Asia" - ], + "categories": ["Southeast Asia", "Asia"], "isoDate": "2023-10-27T12:29:25.000Z" }, { @@ -440,10 +369,7 @@ "content": "

Range Rovers are now Britain’s most stolen vehicle and drivers are struggling to get affordable insurance

", "contentSnippet": "Range Rovers are now Britain’s most stolen vehicle and drivers are struggling to get affordable insurance", "guid": "b2437075", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2023-10-27T12:29:16.000Z" }, { @@ -457,10 +383,7 @@ "content": "Joshua Bowles, 29, described himself as a ‘terrorist’ to police after the attack in Cheltenham on March 9.", "contentSnippet": "Joshua Bowles, 29, described himself as a ‘terrorist’ to police after the attack in Cheltenham on March 9.", "guid": "b2437119", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T12:21:46.000Z" }, { @@ -474,11 +397,7 @@ "content": "

‘It was a surprise to most of us,’ David Yates admitted

", "contentSnippet": "‘It was a surprise to most of us,’ David Yates admitted", "guid": "b2437097", - "categories": [ - "News", - "Film", - "Culture" - ], + "categories": ["News", "Film", "Culture"], "isoDate": "2023-10-27T12:20:38.000Z" }, { @@ -505,10 +424,7 @@ "content": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", "contentSnippet": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", "guid": "b2437133", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T12:15:00.000Z" }, { @@ -522,10 +438,7 @@ "content": "

Aaron Young, 14, was with his father Bill Young at the Just-In-Time Recreation bowling alley for an evening with their bowling league on Wednesday night

", "contentSnippet": "Aaron Young, 14, was with his father Bill Young at the Just-In-Time Recreation bowling alley for an evening with their bowling league on Wednesday night", "guid": "b2436676", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T12:11:03.000Z" }, { @@ -539,9 +452,7 @@ "content": "The video to which the X owner replied was posted by a right-wing account.", "contentSnippet": "The video to which the X owner replied was posted by a right-wing account.", "guid": "b2437137", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T12:03:50.000Z" }, { @@ -555,11 +466,7 @@ "content": "

In the third wild card matchup in MLB history, manager Torey Lovullo insists Arizona will play Texas with ‘a chip on our shoulder’

", "contentSnippet": "In the third wild card matchup in MLB history, manager Torey Lovullo insists Arizona will play Texas with ‘a chip on our shoulder’", "guid": "b2437111", - "categories": [ - "MLB", - "US Sport", - "Sport" - ], + "categories": ["MLB", "US Sport", "Sport"], "isoDate": "2023-10-27T12:03:26.000Z" }, { @@ -599,10 +506,7 @@ "content": "

Jurgen Klopp hailed the Egyptian as ‘world-class’ after another midweek strike in the Europa League

", "contentSnippet": "Jurgen Klopp hailed the Egyptian as ‘world-class’ after another midweek strike in the Europa League", "guid": "b2436964", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T12:00:30.000Z" }, { @@ -616,10 +520,7 @@ "content": "Salah has now scored or assisted in each of his last 13 Premier League games at Anfield.", "contentSnippet": "Salah has now scored or assisted in each of his last 13 Premier League games at Anfield.", "guid": "b2437131", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T12:00:09.000Z" }, { @@ -633,9 +534,7 @@ "content": "

It’s no secret that toxic men will go to extraordinary lengths to berate, bore and belittle women on the internet. But that doesn’t mean I wasn’t shocked to find one man taking things to another level

", "contentSnippet": "It’s no secret that toxic men will go to extraordinary lengths to berate, bore and belittle women on the internet. But that doesn’t mean I wasn’t shocked to find one man taking things to another level", "guid": "b2436984", - "categories": [ - "Voices" - ], + "categories": ["Voices"], "isoDate": "2023-10-27T11:59:17.000Z" }, { @@ -649,9 +548,7 @@ "content": "The 29-year-old made the brave switch to the south of France in 2021 after six seasons with Castleford.", "contentSnippet": "The 29-year-old made the brave switch to the south of France in 2021 after six seasons with Castleford.", "guid": "b2437132", - "categories": [ - "Sport" - ], + "categories": ["Sport"], "isoDate": "2023-10-27T11:58:58.000Z" }, { @@ -665,10 +562,7 @@ "content": "

Murthy says India’s work productivity is one of the lowest in the world

", "contentSnippet": "Murthy says India’s work productivity is one of the lowest in the world", "guid": "b2437048", - "categories": [ - "India", - "Asia" - ], + "categories": ["India", "Asia"], "isoDate": "2023-10-27T11:57:41.000Z" }, { @@ -682,9 +576,7 @@ "content": "

‘Zoom appears to be an impoverished social communication system,’ scientists say after studying the brains of people using it

", "contentSnippet": "‘Zoom appears to be an impoverished social communication system,’ scientists say after studying the brains of people using it", "guid": "b2437084", - "categories": [ - "Tech" - ], + "categories": ["Tech"], "isoDate": "2023-10-27T11:56:48.000Z" }, { @@ -698,9 +590,7 @@ "content": "

Hundreds of fake Ozempic jabs from the black market have been seied by the regulator

", "contentSnippet": "Hundreds of fake Ozempic jabs from the black market have been seied by the regulator", "guid": "b2437045", - "categories": [ - "Health" - ], + "categories": ["Health"], "isoDate": "2023-10-27T11:55:41.000Z" }, { @@ -714,10 +604,7 @@ "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know

", "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know", "guid": "b2434994", - "categories": [ - "Boxing", - "Sport" - ], + "categories": ["Boxing", "Sport"], "isoDate": "2023-10-27T11:53:39.000Z" }, { @@ -731,10 +618,7 @@ "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know

", "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know", "guid": "b2434991", - "categories": [ - "Boxing", - "Sport" - ], + "categories": ["Boxing", "Sport"], "isoDate": "2023-10-27T11:53:26.000Z" }, { @@ -748,10 +632,7 @@ "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know

", "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know", "guid": "b2434992", - "categories": [ - "Boxing", - "Sport" - ], + "categories": ["Boxing", "Sport"], "isoDate": "2023-10-27T11:53:25.000Z" }, { @@ -765,10 +646,7 @@ "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know

", "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know", "guid": "b2434990", - "categories": [ - "Boxing", - "Sport" - ], + "categories": ["Boxing", "Sport"], "isoDate": "2023-10-27T11:52:54.000Z" }, { @@ -782,10 +660,7 @@ "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know

", "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia – here’s all you need to know", "guid": "b2434975", - "categories": [ - "Boxing", - "Sport" - ], + "categories": ["Boxing", "Sport"], "isoDate": "2023-10-27T11:52:44.000Z" }, { @@ -799,10 +674,7 @@ "content": "

Big Brother star Jordan has opened up about his tragic relationship with his father.

", "contentSnippet": "Big Brother star Jordan has opened up about his tragic relationship with his father.", "guid": "b2437123", - "categories": [ - "Culture", - "Indy TV" - ], + "categories": ["Culture", "Indy TV"], "isoDate": "2023-10-27T11:51:27.000Z" }, { @@ -816,10 +688,7 @@ "content": "

The number of abusers calling a helpline over their actions has surged. But are they really willing to change? Maya Oppenheim listens in to find out

", "contentSnippet": "The number of abusers calling a helpline over their actions has surged. But are they really willing to change? Maya Oppenheim listens in to find out", "guid": "b2423834", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2023-10-27T11:50:12.000Z" }, { @@ -833,9 +702,7 @@ "content": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", "contentSnippet": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", "guid": "b2437128", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T11:49:22.000Z" }, { @@ -849,10 +716,7 @@ "content": "

US says Chinese jet flew with ‘uncontrolled excessive speed’ that put both aircraft in danger

", "contentSnippet": "US says Chinese jet flew with ‘uncontrolled excessive speed’ that put both aircraft in danger", "guid": "b2437060", - "categories": [ - "China", - "Asia" - ], + "categories": ["China", "Asia"], "isoDate": "2023-10-27T11:44:59.000Z" }, { @@ -866,10 +730,7 @@ "content": "

Zachariah Andrews was discovered by maintenance worker investigating foul smell

", "contentSnippet": "Zachariah Andrews was discovered by maintenance worker investigating foul smell", "guid": "b2437051", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T11:40:45.000Z" }, { @@ -883,9 +744,7 @@ "content": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", "contentSnippet": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", "guid": "b2437125", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T11:40:19.000Z" }, { @@ -912,10 +771,7 @@ "content": "

A clip dubbed the reason singer Beyonce rarely does interviews anymore has resurfaced.

", "contentSnippet": "A clip dubbed the reason singer Beyonce rarely does interviews anymore has resurfaced.", "guid": "b2437093", - "categories": [ - "Culture", - "Indy TV" - ], + "categories": ["Culture", "Indy TV"], "isoDate": "2023-10-27T11:36:07.000Z" }, { @@ -929,11 +785,7 @@ "content": "

‘Forgive us, Mother Nature, for we know not what we do,’ Raye sings on soaring track

", "contentSnippet": "‘Forgive us, Mother Nature, for we know not what we do,’ Raye sings on soaring track", "guid": "b2437113", - "categories": [ - "News", - "Music", - "Culture" - ], + "categories": ["News", "Music", "Culture"], "isoDate": "2023-10-27T11:33:15.000Z" }, { @@ -947,9 +799,7 @@ "content": "One man died and two others were hospitalised after British-flagged Verity collided with a larger cargo ship, Polesie.", "contentSnippet": "One man died and two others were hospitalised after British-flagged Verity collided with a larger cargo ship, Polesie.", "guid": "b2437118", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T11:30:49.000Z" }, { @@ -963,9 +813,7 @@ "content": "First Minister Humza Yousaf has said the matter is being investigated.", "contentSnippet": "First Minister Humza Yousaf has said the matter is being investigated.", "guid": "b2437071", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T11:30:05.000Z" }, { @@ -979,11 +827,7 @@ "content": "

Fans of the pop star have pored over every clue sprinkled throughout re-released hit record

", "contentSnippet": "Fans of the pop star have pored over every clue sprinkled throughout re-released hit record", "guid": "b2436996", - "categories": [ - "News", - "Music", - "Culture" - ], + "categories": ["News", "Music", "Culture"], "isoDate": "2023-10-27T11:29:30.000Z" }, { @@ -1010,9 +854,7 @@ "content": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", "contentSnippet": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", "guid": "b2437120", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T11:27:05.000Z" }, { @@ -1026,10 +868,7 @@ "content": "

Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman

", "contentSnippet": "Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman", "guid": "b2437100", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T11:26:09.000Z" }, { @@ -1043,11 +882,7 @@ "content": "

England 45-12 Canada: Jess Breach notches her 35th try in dominant Red Roses victory

", "contentSnippet": "England 45-12 Canada: Jess Breach notches her 35th try in dominant Red Roses victory", "guid": "b2437112", - "categories": [ - "Rugby Union", - "Rugby", - "Sport" - ], + "categories": ["Rugby Union", "Rugby", "Sport"], "isoDate": "2023-10-27T11:26:03.000Z" }, { @@ -1061,10 +896,7 @@ "content": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", "contentSnippet": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", "guid": "b2437117", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T11:24:21.000Z" }, { @@ -1078,10 +910,7 @@ "content": "

The Independent explains what this incursion could look like and the myriad hurdles that Israel must overcome

", "contentSnippet": "The Independent explains what this incursion could look like and the myriad hurdles that Israel must overcome", "guid": "b2432775", - "categories": [ - "Middle East", - "World" - ], + "categories": ["Middle East", "World"], "isoDate": "2023-10-27T11:18:10.000Z" }, { @@ -1095,10 +924,7 @@ "content": "

Former India captain MS Dhoni has 5 IPL trophies with CSK

", "contentSnippet": "Former India captain MS Dhoni has 5 IPL trophies with CSK", "guid": "b2437088", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2023-10-27T11:16:44.000Z" }, { @@ -1112,9 +938,7 @@ "content": "The Government’s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", "contentSnippet": "The Government’s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", "guid": "b2437115", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T11:16:06.000Z" }, { @@ -1128,10 +952,7 @@ "content": "

Drone footage has captured the moment sharks surround “frightened” snorkelers swimming in the sea near Israel.

", "contentSnippet": "Drone footage has captured the moment sharks surround “frightened” snorkelers swimming in the sea near Israel.", "guid": "b2437107", - "categories": [ - "Lifestyle", - "Indy TV" - ], + "categories": ["Lifestyle", "Indy TV"], "isoDate": "2023-10-27T11:15:51.000Z" }, { @@ -1145,10 +966,7 @@ "content": "

Five ‘concept stores’ to return to high streets before Christmas

", "contentSnippet": "Five ‘concept stores’ to return to high streets before Christmas", "guid": "b2437081", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2023-10-27T11:14:47.000Z" }, { @@ -1162,9 +980,7 @@ "content": "The call from the FBU follows the devastating floods caused by Storm Babet.", "contentSnippet": "The call from the FBU follows the devastating floods caused by Storm Babet.", "guid": "b2436833", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T11:13:10.000Z" }, { @@ -1178,11 +994,7 @@ "content": "

This revamp does at least serve as a reminder of the album’s untouchable greatness

", "contentSnippet": "This revamp does at least serve as a reminder of the album’s untouchable greatness", "guid": "b2436457", - "categories": [ - "Reviews", - "Music", - "Culture" - ], + "categories": ["Reviews", "Music", "Culture"], "isoDate": "2023-10-27T11:10:56.000Z" }, { @@ -1196,9 +1008,7 @@ "content": "The Taoiseach said there was a need to ‘double down on’ political, military and financial support for Ukraine.", "contentSnippet": "The Taoiseach said there was a need to ‘double down on’ political, military and financial support for Ukraine.", "guid": "b2437104", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T11:09:27.000Z" }, { @@ -1212,10 +1022,7 @@ "content": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", "contentSnippet": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", "guid": "b2437105", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T11:08:08.000Z" }, { @@ -1242,10 +1049,7 @@ "content": "

As the clocks go back and the cold sets in, it’s time to up the ante on your lighting at home. From holistic philosophies on what it means to light your home well, to the kind of bulbs you should choose, Anya Cooklin-Loftin rounds up top lighting tips from experts

", "contentSnippet": "As the clocks go back and the cold sets in, it’s time to up the ante on your lighting at home. From holistic philosophies on what it means to light your home well, to the kind of bulbs you should choose, Anya Cooklin-Loftin rounds up top lighting tips from experts", "guid": "b2436418", - "categories": [ - "House & Home", - "Property" - ], + "categories": ["House & Home", "Property"], "isoDate": "2023-10-27T11:00:50.000Z" }, { @@ -1259,10 +1063,7 @@ "content": "Spurs have scored 20 goals in nine matches to storm to the Premier League summit since Kane’s exit.", "contentSnippet": "Spurs have scored 20 goals in nine matches to storm to the Premier League summit since Kane’s exit.", "guid": "b2437103", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T11:00:17.000Z" }, { @@ -1276,10 +1077,7 @@ "content": "

Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman

", "contentSnippet": "Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman", "guid": "b2436630", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T10:59:22.000Z" }, { @@ -1293,9 +1091,7 @@ "content": "

Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez’s home race this weekend

", "contentSnippet": "Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez’s home race this weekend", "guid": "b2436620", - "categories": [ - "F1" - ], + "categories": ["F1"], "isoDate": "2023-10-27T10:59:00.000Z" }, { @@ -1309,9 +1105,7 @@ "content": "The toad is designed to be ‘as whimsical as possible without being too scary’.", "contentSnippet": "The toad is designed to be ‘as whimsical as possible without being too scary’.", "guid": "b2437101", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T10:55:52.000Z" }, { @@ -1338,10 +1132,7 @@ "content": "

Jonathan Clapham and Sam Franks were sacked after it was found they lied about smelling cannabis

", "contentSnippet": "Jonathan Clapham and Sam Franks were sacked after it was found they lied about smelling cannabis", "guid": "b2437043", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2023-10-27T10:47:47.000Z" }, { @@ -1355,10 +1146,7 @@ "content": "

Exclusive: A judge jailed Scatchard for life for depraved sex offences in 2000, adding ‘I cannot predict at what stage you would be safe to release.’

", "contentSnippet": "Exclusive: A judge jailed Scatchard for life for depraved sex offences in 2000, adding ‘I cannot predict at what stage you would be safe to release.’", "guid": "b2437065", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T10:47:44.000Z" }, { @@ -1372,9 +1160,7 @@ "content": "The Taoiseach said there is not enough talk to convince people in Northern Ireland “that a united Ireland would be a warm home for them”.", "contentSnippet": "The Taoiseach said there is not enough talk to convince people in Northern Ireland “that a united Ireland would be a warm home for them”.", "guid": "b2437095", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T10:44:47.000Z" }, { @@ -1388,10 +1174,7 @@ "content": "

The former president railed against Judge Engoron in a series of Truth Social posts after he was fined $10,000 in New York civil fraud trial

", "contentSnippet": "The former president railed against Judge Engoron in a series of Truth Social posts after he was fined $10,000 in New York civil fraud trial", "guid": "b2436988", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T10:43:42.000Z" }, { @@ -1418,9 +1201,7 @@ "content": "The business’s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", "contentSnippet": "The business’s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", "guid": "b2436987", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2023-10-27T10:40:59.000Z" }, { @@ -1434,10 +1215,7 @@ "content": "

Although the 40-year-old is the ‘most loving’ person, Karen Card said, ‘he had an acute episode of mental health, and it’s been a struggle’ over the last year

", "contentSnippet": "Although the 40-year-old is the ‘most loving’ person, Karen Card said, ‘he had an acute episode of mental health, and it’s been a struggle’ over the last year", "guid": "b2436658", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T10:40:38.000Z" }, { @@ -1451,10 +1229,7 @@ "content": "

Although the 40-year-old is the ‘most loving’ person, Karen Card said, ‘he had an acute episode of mental health, and it’s been a struggle’ over the last year

", "contentSnippet": "Although the 40-year-old is the ‘most loving’ person, Karen Card said, ‘he had an acute episode of mental health, and it’s been a struggle’ over the last year", "guid": "b2437090", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T10:40:22.000Z" }, { @@ -1468,10 +1243,7 @@ "content": "The punishment is yet to be ratified by world governing body FIFA.", "contentSnippet": "The punishment is yet to be ratified by world governing body FIFA.", "guid": "b2437080", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T10:39:15.000Z" }, { @@ -1485,10 +1257,7 @@ "content": "

Footage has emerged of singer Britney Spears teaching the Loose Women panelists how to dance.

", "contentSnippet": "Footage has emerged of singer Britney Spears teaching the Loose Women panelists how to dance.", "guid": "b2437083", - "categories": [ - "Culture", - "Indy TV" - ], + "categories": ["Culture", "Indy TV"], "isoDate": "2023-10-27T10:37:57.000Z" }, { @@ -1502,10 +1271,7 @@ "content": "

The 21-year-old was also wanted over allegations of threatening to kill a man for being in a mixed relationship earlier in the year

", "contentSnippet": "The 21-year-old was also wanted over allegations of threatening to kill a man for being in a mixed relationship earlier in the year", "guid": "b2437004", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T10:36:10.000Z" }, { @@ -1538,9 +1304,7 @@ "content": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", "contentSnippet": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", "guid": "b2437091", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T10:31:50.000Z" }, { @@ -1554,10 +1318,7 @@ "content": "

Otis is the strongest ever storm to make landfall on Mexico’s west coast

", "contentSnippet": "Otis is the strongest ever storm to make landfall on Mexico’s west coast", "guid": "b2436520", - "categories": [ - "News", - "Climate" - ], + "categories": ["News", "Climate"], "isoDate": "2023-10-27T10:30:44.000Z" }, { @@ -1571,10 +1332,7 @@ "content": "

Otis is the strongest ever storm to make landfall on Mexico’s west coast

", "contentSnippet": "Otis is the strongest ever storm to make landfall on Mexico’s west coast", "guid": "b2437086", - "categories": [ - "News", - "Climate" - ], + "categories": ["News", "Climate"], "isoDate": "2023-10-27T10:30:19.000Z" }, { @@ -1588,10 +1346,7 @@ "content": "

‘The change is essential to protecting the park’s threatened native wildlife and ecosystems’

", "contentSnippet": "‘The change is essential to protecting the park’s threatened native wildlife and ecosystems’", "guid": "b2436978", - "categories": [ - "Australasia", - "World" - ], + "categories": ["Australasia", "World"], "isoDate": "2023-10-27T10:30:02.000Z" }, { @@ -1605,11 +1360,7 @@ "content": "

Clip of Williams impersonating Justin Timberlake has gone viral

", "contentSnippet": "Clip of Williams impersonating Justin Timberlake has gone viral", "guid": "b2437066", - "categories": [ - "News", - "Books", - "Culture" - ], + "categories": ["News", "Books", "Culture"], "isoDate": "2023-10-27T10:27:38.000Z" }, { @@ -1623,10 +1374,7 @@ "content": "

‘Why do people do this?’ asked Zoey Levesque after she found herself among a growing list of victims and survivors of mass shootings

", "contentSnippet": "‘Why do people do this?’ asked Zoey Levesque after she found herself among a growing list of victims and survivors of mass shootings", "guid": "b2436651", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T10:26:59.000Z" }, { @@ -1640,10 +1388,7 @@ "content": "

An arrest warrant has been issued for 40-year-old Army Reservist Robert Card. Mike Bedigan, Maroosha Muzaffar and Richard Hall report on what we know about the suspect in the Lewiston mass shooting. WARNING: Disturbing images

", "contentSnippet": "An arrest warrant has been issued for 40-year-old Army Reservist Robert Card. Mike Bedigan, Maroosha Muzaffar and Richard Hall report on what we know about the suspect in the Lewiston mass shooting. WARNING: Disturbing images", "guid": "b2436886", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T04:14:50.000Z" }, { @@ -1657,11 +1402,7 @@ "content": "

Embattled Rep George Santos (R-NY) pleaded not guilty to ten new felony charges in a superseding indictment on Friday, The New York Times reported.

", "contentSnippet": "Embattled Rep George Santos (R-NY) pleaded not guilty to ten new felony charges in a superseding indictment on Friday, The New York Times reported.", "guid": "b2437248", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2023-10-27T15:52:48.000Z" }, { @@ -1675,11 +1416,7 @@ "content": "

Fans of the pop star have pored over every clue sprinkled throughout re-released hit record

", "contentSnippet": "Fans of the pop star have pored over every clue sprinkled throughout re-released hit record", "guid": "b2437257", - "categories": [ - "News", - "Music", - "Culture" - ], + "categories": ["News", "Music", "Culture"], "isoDate": "2023-10-27T15:51:40.000Z" }, { @@ -1693,10 +1430,7 @@ "content": "

Mexican President Andrés Manuel López Obrador claimed the disaster relief fund was ‘riddled with corruption’

", "contentSnippet": "Mexican President Andrés Manuel López Obrador claimed the disaster relief fund was ‘riddled with corruption’", "guid": "b2437147", - "categories": [ - "News", - "Climate" - ], + "categories": ["News", "Climate"], "isoDate": "2023-10-27T15:50:25.000Z" }, { @@ -1710,10 +1444,7 @@ "content": "

Boris Karpichkov, former name of double agent, is suing the National Crime Agency for revealing new identity

", "contentSnippet": "Boris Karpichkov, former name of double agent, is suing the National Crime Agency for revealing new identity", "guid": "b2437175", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2023-10-27T15:49:52.000Z" }, { @@ -1740,10 +1471,7 @@ "content": "

Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming “the best days are yet to come”.

", "contentSnippet": "Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming “the best days are yet to come”.", "guid": "b2437243", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2023-10-27T15:48:57.000Z" }, { @@ -1757,9 +1485,7 @@ "content": "The rock star was interviewed by police but never arrested over the death.", "contentSnippet": "The rock star was interviewed by police but never arrested over the death.", "guid": "b2437246", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T15:47:45.000Z" }, { @@ -1786,11 +1512,7 @@ "content": "

Speaker Mike Johnson pushed same debunked conspiracy theories that led to guilty plea from Trump lawyer Sidney Powell

", "contentSnippet": "Speaker Mike Johnson pushed same debunked conspiracy theories that led to guilty plea from Trump lawyer Sidney Powell", "guid": "b2436685", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2023-10-27T15:44:15.000Z" }, { @@ -1804,10 +1526,7 @@ "content": "When Joshua Hunt, 32, was arrested in May this year, he told police: ‘I am not a gimp.’", "contentSnippet": "When Joshua Hunt, 32, was arrested in May this year, he told police: ‘I am not a gimp.’", "guid": "b2437260", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T15:43:59.000Z" }, { @@ -1821,10 +1540,7 @@ "content": "He was fined £100 and ordered to pay £200 compensation to each of his three victims and £620 prosecution costs.", "contentSnippet": "He was fined £100 and ordered to pay £200 compensation to each of his three victims and £620 prosecution costs.", "guid": "b2437229", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T15:43:12.000Z" }, { @@ -1838,10 +1554,7 @@ "content": "

The five-year-old animal had gained a reputation as ‘California’s angriest otter’ after she was captured on social media attacking surfers in Santa Cruz and biting their boards

", "contentSnippet": "The five-year-old animal had gained a reputation as ‘California’s angriest otter’ after she was captured on social media attacking surfers in Santa Cruz and biting their boards", "guid": "b2437008", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T15:40:59.000Z" }, { @@ -1855,10 +1568,7 @@ "content": "

Affair was at heart of what’s believed to be UK’s biggest-ever prison drugs conspiracy

", "contentSnippet": "Affair was at heart of what’s believed to be UK’s biggest-ever prison drugs conspiracy", "guid": "b2437049", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T15:40:46.000Z" }, { @@ -1885,10 +1595,7 @@ "content": "

Joshua Hunt seen writhing around on the ground during bizarre incident in Somerset, court told

", "contentSnippet": "Joshua Hunt seen writhing around on the ground during bizarre incident in Somerset, court told", "guid": "b2437158", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T15:35:16.000Z" }, { @@ -1902,10 +1609,7 @@ "content": "

The theft has baffled the agricultural community

", "contentSnippet": "The theft has baffled the agricultural community", "guid": "b2437138", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T15:32:45.000Z" }, { @@ -1919,11 +1623,7 @@ "content": "

The former president’s oldest daughter lost her attempt to block her testimony

", "contentSnippet": "The former president’s oldest daughter lost her attempt to block her testimony", "guid": "b2437220", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2023-10-27T15:30:16.000Z" }, { @@ -1937,10 +1637,7 @@ "content": "

Everything you need to know ahead of Friday night’s London derby

", "contentSnippet": "Everything you need to know ahead of Friday night’s London derby", "guid": "b2435116", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T15:29:28.000Z" }, { @@ -1954,10 +1651,7 @@ "content": "

England have slipped to third in Women’s Nations League Group A1 ahead of this week’s double-header with Belgium

", "contentSnippet": "England have slipped to third in Women’s Nations League Group A1 ahead of this week’s double-header with Belgium", "guid": "b2435131", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T15:28:50.000Z" }, { @@ -1971,11 +1665,7 @@ "content": "

Everything you need to know ahead of the third place play-off

", "contentSnippet": "Everything you need to know ahead of the third place play-off", "guid": "b2436340", - "categories": [ - "Rugby Union", - "Rugby", - "Sport" - ], + "categories": ["Rugby Union", "Rugby", "Sport"], "isoDate": "2023-10-27T15:28:40.000Z" }, { @@ -1989,9 +1679,7 @@ "content": "

Britney Spears heavily details her ‘excruciating’ abortion in her memoir, ‘The Woman in Me’. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it

", "contentSnippet": "Britney Spears heavily details her ‘excruciating’ abortion in her memoir, ‘The Woman in Me’. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it", "guid": "b2437244", - "categories": [ - "Voices" - ], + "categories": ["Voices"], "isoDate": "2023-10-27T15:28:31.000Z" }, { @@ -2005,10 +1693,7 @@ "content": "

Maine police refused to reveal the contents of the note left by Robert Card, hinting that it may point to a possible motive for the Lewiston mass shootings

", "contentSnippet": "Maine police refused to reveal the contents of the note left by Robert Card, hinting that it may point to a possible motive for the Lewiston mass shootings", "guid": "b2437233", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T15:28:11.000Z" }, { @@ -2022,10 +1707,7 @@ "content": "

Former PM promises to share his ‘unvarnished’ views on politics – in new warning to Rishi Sunak

", "contentSnippet": "Former PM promises to share his ‘unvarnished’ views on politics – in new warning to Rishi Sunak", "guid": "b2437198", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2023-10-27T15:28:04.000Z" }, { @@ -2039,9 +1721,7 @@ "content": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", "contentSnippet": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", "guid": "b2437024", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T15:27:36.000Z" }, { @@ -2055,9 +1735,7 @@ "content": "

Britney Spears heavily details her ‘excruciating’ abortion in her memoir, ‘The Woman in Me’. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it

", "contentSnippet": "Britney Spears heavily details her ‘excruciating’ abortion in her memoir, ‘The Woman in Me’. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it", "guid": "b2435639", - "categories": [ - "Voices" - ], + "categories": ["Voices"], "isoDate": "2023-10-27T15:26:58.000Z" }, { @@ -2071,9 +1749,7 @@ "content": "

Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez’s home race this weekend

", "contentSnippet": "Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez’s home race this weekend", "guid": "b2436619", - "categories": [ - "F1" - ], + "categories": ["F1"], "isoDate": "2023-10-27T15:22:15.000Z" }, { @@ -2087,10 +1763,7 @@ "content": "

Vehicle connected to Maine shooting suspect was found at a boat ramp near the Androscoggin river in Lisbon

", "contentSnippet": "Vehicle connected to Maine shooting suspect was found at a boat ramp near the Androscoggin river in Lisbon", "guid": "b2437197", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T15:21:38.000Z" }, { @@ -2104,9 +1777,7 @@ "content": "The coroner said Duangphet Phromthep’s death ‘could not have been foreseen or prevented’.", "contentSnippet": "The coroner said Duangphet Phromthep’s death ‘could not have been foreseen or prevented’.", "guid": "b2437228", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T15:21:07.000Z" }, { @@ -2120,10 +1791,7 @@ "content": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", "contentSnippet": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", "guid": "b2437245", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T15:20:38.000Z" }, { @@ -2137,10 +1805,7 @@ "content": "

Duangphet Phromthep’s death ‘could not have been foreseen or prevented’, coroner rules

", "contentSnippet": "Duangphet Phromthep’s death ‘could not have been foreseen or prevented’, coroner rules", "guid": "b2437230", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2023-10-27T15:20:30.000Z" }, { @@ -2154,10 +1819,7 @@ "content": "

The £52m signing has been sidelined since the summer

", "contentSnippet": "The £52m signing has been sidelined since the summer", "guid": "b2437237", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T15:20:13.000Z" }, { @@ -2171,10 +1833,7 @@ "content": "

Watch as Maine State Police hold a news conference as the hunt for man linked to major mass shootings continues on Thursday 26 October.

", "contentSnippet": "Watch as Maine State Police hold a news conference as the hunt for man linked to major mass shootings continues on Thursday 26 October.", "guid": "b2436512", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T15:20:00.000Z" }, { @@ -2188,10 +1847,7 @@ "content": "

The four potentially could be now have enterted Canada to prepare for the ‘last days’ in the doomsday judgement.

", "contentSnippet": "The four potentially could be now have enterted Canada to prepare for the ‘last days’ in the doomsday judgement.", "guid": "b2437151", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T15:19:38.000Z" }, { @@ -2205,9 +1861,7 @@ "content": "

‘Twilight’ lead met her fiancée on set of a 2013 movie but didn’t start dating her until six years later

", "contentSnippet": "‘Twilight’ lead met her fiancée on set of a 2013 movie but didn’t start dating her until six years later", "guid": "b2437199", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2023-10-27T15:17:12.000Z" }, { @@ -2221,10 +1875,7 @@ "content": "

Four people are missing after the strongest ever storm to make landfall on Mexico’s west coast

", "contentSnippet": "Four people are missing after the strongest ever storm to make landfall on Mexico’s west coast", "guid": "b2437003", - "categories": [ - "News", - "Climate" - ], + "categories": ["News", "Climate"], "isoDate": "2023-10-27T15:16:06.000Z" }, { @@ -2238,10 +1889,7 @@ "content": "China’s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", "contentSnippet": "China’s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", "guid": "b2437231", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T15:14:49.000Z" }, { @@ -2255,9 +1903,7 @@ "content": "The dispute centres on a company’s alleged refusal to reform working rotas and provide paid leave.", "contentSnippet": "The dispute centres on a company’s alleged refusal to reform working rotas and provide paid leave.", "guid": "b2437239", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T15:13:25.000Z" }, { @@ -2271,9 +1917,7 @@ "content": "

‘Adult surcharge: For adults unable to parent $$$’ menu reads

", "contentSnippet": "‘Adult surcharge: For adults unable to parent $$$’ menu reads", "guid": "b2436694", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2023-10-27T15:13:02.000Z" }, { @@ -2287,9 +1931,7 @@ "content": "Minister Gillian Keegan said the Government would not want to ‘cross that line of telling Israel it has anything but the right to defend itself’.", "contentSnippet": "Minister Gillian Keegan said the Government would not want to ‘cross that line of telling Israel it has anything but the right to defend itself’.", "guid": "b2437036", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T15:12:09.000Z" }, { @@ -2303,10 +1945,7 @@ "content": "

Two people, both minors, have been banned by the club after chanting during City’s match against Brighton last weekend

", "contentSnippet": "Two people, both minors, have been banned by the club after chanting during City’s match against Brighton last weekend", "guid": "b2437221", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T15:11:59.000Z" }, { @@ -2320,9 +1959,7 @@ "content": "The First Minister has written to the leaders of all parties to warn without action, the situation will become ‘cataclysmic’.", "contentSnippet": "The First Minister has written to the leaders of all parties to warn without action, the situation will become ‘cataclysmic’.", "guid": "b2437226", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T15:10:07.000Z" }, { @@ -2336,9 +1973,7 @@ "content": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", "contentSnippet": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", "guid": "b2437227", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T15:09:00.000Z" }, { @@ -2352,10 +1987,7 @@ "content": "

This is the moment a man hops onto a bus before stealing the vehicle and smashing it into a car as he drives recklessly through the streets of Nottingham.

", "contentSnippet": "This is the moment a man hops onto a bus before stealing the vehicle and smashing it into a car as he drives recklessly through the streets of Nottingham.", "guid": "b2437215", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2023-10-27T15:08:26.000Z" }, { @@ -2369,10 +2001,7 @@ "content": "

The heavyweight champion was due to defend his belt against divisional great Miocic on 11 November, but he will instead face months of rehab on a shoulder injury

", "contentSnippet": "The heavyweight champion was due to defend his belt against divisional great Miocic on 11 November, but he will instead face months of rehab on a shoulder injury", "guid": "b2437006", - "categories": [ - "UFC", - "Sport" - ], + "categories": ["UFC", "Sport"], "isoDate": "2023-10-27T15:03:48.000Z" }, { @@ -2386,10 +2015,7 @@ "content": "

Climate activists scaled the Louvre Museum Pyramid and threw orange paint over the iconic museum in Paris on Friday, 27 October.

", "contentSnippet": "Climate activists scaled the Louvre Museum Pyramid and threw orange paint over the iconic museum in Paris on Friday, 27 October.", "guid": "b2437211", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2023-10-27T15:01:54.000Z" }, { @@ -2403,9 +2029,7 @@ "content": "Verstappen has beefed up his security for Sergio Perez’s home race at the high-altitude Autodromo Hermanos Rodriguez venue in Mexico City.", "contentSnippet": "Verstappen has beefed up his security for Sergio Perez’s home race at the high-altitude Autodromo Hermanos Rodriguez venue in Mexico City.", "guid": "b2437225", - "categories": [ - "F1" - ], + "categories": ["F1"], "isoDate": "2023-10-27T15:01:28.000Z" }, { @@ -2432,11 +2056,7 @@ "content": "

Save on big-name brands such as Samsung, Sage and more

", "contentSnippet": "Save on big-name brands such as Samsung, Sage and more", "guid": "b2416599", - "categories": [ - "Black Friday", - "IndyBest", - "Extras" - ], + "categories": ["Black Friday", "IndyBest", "Extras"], "isoDate": "2023-10-27T14:59:43.000Z" }, { @@ -2450,9 +2070,7 @@ "content": "The Labour leader is standing by his stance of supporting Israel’s right to self defence despite the Palestinian civilians being killed.", "contentSnippet": "The Labour leader is standing by his stance of supporting Israel’s right to self defence despite the Palestinian civilians being killed.", "guid": "b2437217", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T14:55:39.000Z" }, { @@ -2466,10 +2084,7 @@ "content": "

Mohammad Rizwan evoked memories of Alex Carey to Jonny Bairstow at Lord’s in World Cup match

", "contentSnippet": "Mohammad Rizwan evoked memories of Alex Carey to Jonny Bairstow at Lord’s in World Cup match", "guid": "b2437212", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2023-10-27T14:54:39.000Z" }, { @@ -2483,9 +2098,7 @@ "content": "Unions accused the firm of ‘insatiable greed’.", "contentSnippet": "Unions accused the firm of ‘insatiable greed’.", "guid": "b2437216", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2023-10-27T14:54:38.000Z" }, { @@ -2499,9 +2112,7 @@ "content": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", "contentSnippet": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", "guid": "b2437209", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T14:53:19.000Z" }, { @@ -2515,9 +2126,7 @@ "content": "

From robot cleaners to solar generators, check out these super-stylish tech upgrades

", "contentSnippet": "From robot cleaners to solar generators, check out these super-stylish tech upgrades", "guid": "b2435825", - "categories": [ - "Tech" - ], + "categories": ["Tech"], "isoDate": "2023-10-27T14:52:18.000Z" }, { @@ -2531,11 +2140,7 @@ "content": "

The newly elected speaker also tells Sean Hannity that the House might impeach Joe Biden but he likely will not pursue expelling Rep George Santos (R-NY)

", "contentSnippet": "The newly elected speaker also tells Sean Hannity that the House might impeach Joe Biden but he likely will not pursue expelling Rep George Santos (R-NY)", "guid": "b2437161", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2023-10-27T14:51:10.000Z" }, { @@ -2549,10 +2154,7 @@ "content": "

Pro-Russian former politician fighting for life in intensive care, official says

", "contentSnippet": "Pro-Russian former politician fighting for life in intensive care, official says", "guid": "b2437109", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T14:45:33.000Z" }, { @@ -2566,9 +2168,7 @@ "content": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", "contentSnippet": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", "guid": "b2437213", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T14:43:52.000Z" }, { @@ -2601,10 +2201,7 @@ "content": "Follow all the action from M.A. Chidambaram Stadium", "contentSnippet": "Follow all the action from M.A. Chidambaram Stadium", "guid": "b2436979", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2023-10-27T14:41:35.000Z" }, { @@ -2618,10 +2215,7 @@ "content": "

Will Smith has told his wife Jada that she has “taken a lot of bullets” for them during their relationship.

", "contentSnippet": "Will Smith has told his wife Jada that she has “taken a lot of bullets” for them during their relationship.", "guid": "b2437186", - "categories": [ - "Culture", - "Indy TV" - ], + "categories": ["Culture", "Indy TV"], "isoDate": "2023-10-27T14:41:00.000Z" }, { @@ -2635,10 +2229,7 @@ "content": "Two people, both minors, chanted during City’s match against Brighton last weekend, soon after the Manchester United great’s death was announced.", "contentSnippet": "Two people, both minors, chanted during City’s match against Brighton last weekend, soon after the Manchester United great’s death was announced.", "guid": "b2437208", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T14:36:50.000Z" }, { @@ -2652,10 +2243,7 @@ "content": "

Everything you need to know ahead of the Gunners’ match against the Blades

", "contentSnippet": "Everything you need to know ahead of the Gunners’ match against the Blades", "guid": "b2437191", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T14:34:21.000Z" }, { @@ -2669,10 +2257,7 @@ "content": "

George Osborne says ‘shocking’ and ‘staggering’ messages will soon be shared at public inquiry

", "contentSnippet": "George Osborne says ‘shocking’ and ‘staggering’ messages will soon be shared at public inquiry", "guid": "b2437013", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2023-10-27T14:33:37.000Z" }, { @@ -2686,10 +2271,7 @@ "content": "

Earps has also discussed her shirt selling out after Nike belatedly decided to release a limited number following the Lionesses’ success at the World Cup

", "contentSnippet": "Earps has also discussed her shirt selling out after Nike belatedly decided to release a limited number following the Lionesses’ success at the World Cup", "guid": "b2437193", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T14:27:31.000Z" }, { @@ -2703,10 +2285,7 @@ "content": "

Gabriel Jesus and Thomas Partey are both facing a spell on the sidelines

", "contentSnippet": "Gabriel Jesus and Thomas Partey are both facing a spell on the sidelines", "guid": "b2437195", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T14:26:20.000Z" }, { @@ -2720,9 +2299,7 @@ "content": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", "contentSnippet": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", "guid": "b2437204", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T14:25:53.000Z" }, { @@ -2749,11 +2326,7 @@ "content": "

Rep Jared Golden voted against legislation to ban assault weapons last July

", "contentSnippet": "Rep Jared Golden voted against legislation to ban assault weapons last July", "guid": "b2437177", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2023-10-27T14:21:04.000Z" }, { @@ -2793,10 +2366,7 @@ "content": "

Bryan Kohberger appeared at Latah County Court for two hearings on Thursday

", "contentSnippet": "Bryan Kohberger appeared at Latah County Court for two hearings on Thursday", "guid": "b2437001", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2023-10-27T14:18:59.000Z" }, { @@ -2810,9 +2380,7 @@ "content": "

‘Daddy has to do what Daddy has to do,’ says the 35-year-old boxer

", "contentSnippet": "‘Daddy has to do what Daddy has to do,’ says the 35-year-old boxer", "guid": "b2437174", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2023-10-27T14:15:49.000Z" }, { @@ -2826,11 +2394,7 @@ "content": "

Prosecutors are attempting to have defendants ‘as witnesses as opposed to adversaries,’ former DA says

", "contentSnippet": "Prosecutors are attempting to have defendants ‘as witnesses as opposed to adversaries,’ former DA says", "guid": "b2437140", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2023-10-27T14:15:19.000Z" }, { @@ -2844,10 +2408,7 @@ "content": "

The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said

", "contentSnippet": "The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said", "guid": "b2436926", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2023-10-27T14:14:15.000Z" }, { @@ -2861,9 +2422,7 @@ "content": "

Should a stand-up be held to account for fabricating elements of the stories they tell on stage? Comedian Vix Leyton explains why embellishing anecdotes is just a part of human nature

", "contentSnippet": "Should a stand-up be held to account for fabricating elements of the stories they tell on stage? Comedian Vix Leyton explains why embellishing anecdotes is just a part of human nature", "guid": "b2437142", - "categories": [ - "Voices" - ], + "categories": ["Voices"], "isoDate": "2023-10-27T14:08:35.000Z" }, { @@ -2877,11 +2436,7 @@ "content": "The winner will be crowned the most successful nation in the tournament’s history.", "contentSnippet": "The winner will be crowned the most successful nation in the tournament’s history.", "guid": "b2437163", - "categories": [ - "Rugby Union", - "Rugby", - "Sport" - ], + "categories": ["Rugby Union", "Rugby", "Sport"], "isoDate": "2023-10-27T14:05:57.000Z" }, { @@ -2895,10 +2450,7 @@ "content": "Head coach Matthew Mott has written off England’s chances after four defeats in five games in India.", "contentSnippet": "Head coach Matthew Mott has written off England’s chances after four defeats in five games in India.", "guid": "b2437050", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2023-10-27T14:03:46.000Z" }, { @@ -2912,10 +2464,7 @@ "content": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", "contentSnippet": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", "guid": "b2437192", - "categories": [ - "News", - "Climate" - ], + "categories": ["News", "Climate"], "isoDate": "2023-10-27T14:00:05.000Z" }, { @@ -2929,9 +2478,7 @@ "content": "Hamas, which is classed as a terrorist organisation in the UK, used paragliders as part of its attack on Israel on October 7.", "contentSnippet": "Hamas, which is classed as a terrorist organisation in the UK, used paragliders as part of its attack on Israel on October 7.", "guid": "b2437170", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T13:59:49.000Z" }, { @@ -2945,10 +2492,7 @@ "content": "

Police are searching for four people suspected of displaying support for Hamas among the thousands that joined the marches

", "contentSnippet": "Police are searching for four people suspected of displaying support for Hamas among the thousands that joined the marches", "guid": "b2437167", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2023-10-27T13:57:25.000Z" }, { @@ -2962,10 +2506,7 @@ "content": "

Everything you need to know ahead of the awards ceremony

", "contentSnippet": "Everything you need to know ahead of the awards ceremony", "guid": "b2435911", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T13:56:34.000Z" }, { @@ -2979,10 +2520,7 @@ "content": "

Everything you need to know ahead of the presentation ceremony

", "contentSnippet": "Everything you need to know ahead of the presentation ceremony", "guid": "b2435861", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T13:56:32.000Z" }, { @@ -3009,9 +2547,7 @@ "content": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", "contentSnippet": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", "guid": "b2437165", - "categories": [ - "UK" - ], + "categories": ["UK"], "isoDate": "2023-10-27T13:48:01.000Z" }, { @@ -3025,10 +2561,7 @@ "content": "

Japan is only G7 nation that does not recognise joint custody among divorced couples

", "contentSnippet": "Japan is only G7 nation that does not recognise joint custody among divorced couples", "guid": "b2530686", - "categories": [ - "Japan", - "Asia" - ], + "categories": ["Japan", "Asia"], "isoDate": "2024-04-18T08:31:23.000Z" }, { @@ -3042,10 +2575,7 @@ "content": "

Mark Menzies accused of using campaign funds to pay off ‘bad people’ and medical expenses after being locked in a flat late at night

", "contentSnippet": "Mark Menzies accused of using campaign funds to pay off ‘bad people’ and medical expenses after being locked in a flat late at night", "guid": "b2530700", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T08:31:12.000Z" }, { @@ -3059,11 +2589,7 @@ "content": "

Hollywood director ‘going back to drawing board to figure out what that final movie will be’

", "contentSnippet": "Hollywood director ‘going back to drawing board to figure out what that final movie will be’", "guid": "b2530619", - "categories": [ - "News", - "Film", - "Culture" - ], + "categories": ["News", "Film", "Culture"], "isoDate": "2024-04-18T08:30:08.000Z" }, { @@ -3077,10 +2603,7 @@ "content": "

Dubai chaos leaves hundreds of thousands stranded around the world

", "contentSnippet": "Dubai chaos leaves hundreds of thousands stranded around the world", "guid": "b2530635", - "categories": [ - "News & Advice", - "Travel" - ], + "categories": ["News & Advice", "Travel"], "isoDate": "2024-04-18T08:28:29.000Z" }, { @@ -3094,9 +2617,7 @@ "content": "The sport’s best take to the green baize at the Crucible from Saturday, with the winner crowned in Sheffield on Sunday, May 6.", "contentSnippet": "The sport’s best take to the green baize at the Crucible from Saturday, with the winner crowned in Sheffield on Sunday, May 6.", "guid": "b2530709", - "categories": [ - "Sport" - ], + "categories": ["Sport"], "isoDate": "2024-04-18T08:28:23.000Z" }, { @@ -3110,11 +2631,7 @@ "content": "

Third day of jury selection begins at 9.30am ET on Thursday, with seven jurors already selected

", "contentSnippet": "Third day of jury selection begins at 9.30am ET on Thursday, with seven jurors already selected", "guid": "b2496616", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-18T08:27:01.000Z" }, { @@ -3141,11 +2658,7 @@ "content": "

On the eve of Swift’s 11th studio album, Roisin O’Connor delves into the pop mastermind’s knack for writing breakup songs – and ranks the most devastating of the bunch

", "contentSnippet": "On the eve of Swift’s 11th studio album, Roisin O’Connor delves into the pop mastermind’s knack for writing breakup songs – and ranks the most devastating of the bunch", "guid": "b2530308", - "categories": [ - "Features", - "Music", - "Culture" - ], + "categories": ["Features", "Music", "Culture"], "isoDate": "2024-04-18T08:19:45.000Z" }, { @@ -3159,10 +2672,7 @@ "content": "

Liz Truss has called on foreign secretary David Cameron to give Israel more support following Iran’s attack.

", "contentSnippet": "Liz Truss has called on foreign secretary David Cameron to give Israel more support following Iran’s attack.", "guid": "b2530676", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T08:19:06.000Z" }, { @@ -3189,9 +2699,7 @@ "content": "The group is reducing its executive director leadership team to 10 from 11.", "contentSnippet": "The group is reducing its executive director leadership team to 10 from 11.", "guid": "b2530705", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T08:18:02.000Z" }, { @@ -3205,10 +2713,7 @@ "content": "

Sakshi Malik led a protracted campaign against a wrestling federation chief for allegedly harassing athletes and even hung up her boots in protest

", "contentSnippet": "Sakshi Malik led a protracted campaign against a wrestling federation chief for allegedly harassing athletes and even hung up her boots in protest", "guid": "b2530636", - "categories": [ - "India", - "Asia" - ], + "categories": ["India", "Asia"], "isoDate": "2024-04-18T08:17:56.000Z" }, { @@ -3222,10 +2727,7 @@ "content": "

Watch the moment a pregnant woman suffering medical complications was airlifted from a Disney cruise ship.

", "contentSnippet": "Watch the moment a pregnant woman suffering medical complications was airlifted from a Disney cruise ship.", "guid": "b2530690", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T08:17:31.000Z" }, { @@ -3239,10 +2741,7 @@ "content": "

Archeologists find artefacts, rock art and skeletal remains in Umm Jirsan

", "contentSnippet": "Archeologists find artefacts, rock art and skeletal remains in Umm Jirsan", "guid": "b2530657", - "categories": [ - "Archaeology", - "Science" - ], + "categories": ["Archaeology", "Science"], "isoDate": "2024-04-18T08:15:09.000Z" }, { @@ -3256,10 +2755,7 @@ "content": "

Mark Menzies is being investigated by the Conservative Party

", "contentSnippet": "Mark Menzies is being investigated by the Conservative Party", "guid": "b2530672", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T08:14:45.000Z" }, { @@ -3273,9 +2769,7 @@ "content": "

Couple, who met on ‘Love Island’, were left ‘flustered’ after ‘little’ crash

", "contentSnippet": "Couple, who met on ‘Love Island’, were left ‘flustered’ after ‘little’ crash", "guid": "b2530684", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T08:06:26.000Z" }, { @@ -3289,9 +2783,7 @@ "content": "The retailer told investors on Thursday that sales grew by 3% to £435 million over the 13 weeks to March 30.", "contentSnippet": "The retailer told investors on Thursday that sales grew by 3% to £435 million over the 13 weeks to March 30.", "guid": "b2530699", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T08:04:33.000Z" }, { @@ -3305,10 +2797,7 @@ "content": "

Bill eliminates need for gender dysphoria diagnosis

", "contentSnippet": "Bill eliminates need for gender dysphoria diagnosis", "guid": "b2530614", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T08:01:45.000Z" }, { @@ -3322,9 +2811,7 @@ "content": "Ally Pally has hosted the tournament since 2008.", "contentSnippet": "Ally Pally has hosted the tournament since 2008.", "guid": "b2530697", - "categories": [ - "Sport" - ], + "categories": ["Sport"], "isoDate": "2024-04-18T08:00:37.000Z" }, { @@ -3338,11 +2825,7 @@ "content": "

We took on sweat-inducing workouts from the comfort of our living room to put these essentials to the test

", "contentSnippet": "We took on sweat-inducing workouts from the comfort of our living room to put these essentials to the test", "guid": "b2259575", - "categories": [ - "Sports & Fitness", - "IndyBest", - "Extras" - ], + "categories": ["Sports & Fitness", "IndyBest", "Extras"], "isoDate": "2024-04-18T07:59:45.000Z" }, { @@ -3369,10 +2852,7 @@ "content": "

Olly Murs posted a video message to his fans telling them “it is so horrible” after he was separated from his newborn daughter just hours after announcing her birth.

", "contentSnippet": "Olly Murs posted a video message to his fans telling them “it is so horrible” after he was separated from his newborn daughter just hours after announcing her birth.", "guid": "b2530649", - "categories": [ - "Culture", - "Indy TV" - ], + "categories": ["Culture", "Indy TV"], "isoDate": "2024-04-18T07:50:24.000Z" }, { @@ -3386,10 +2866,7 @@ "content": "

Peers’ efforts to protect Afghan special forces from deportation blocked in Commons

", "contentSnippet": "Peers’ efforts to protect Afghan special forces from deportation blocked in Commons", "guid": "b2530081", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T07:45:44.000Z" }, { @@ -3403,11 +2880,7 @@ "content": "

Everything you need to know about entering the ballot for next year’s race

", "contentSnippet": "Everything you need to know about entering the ballot for next year’s race", "guid": "b2530208", - "categories": [ - "Athletics", - "More Sports", - "Sport" - ], + "categories": ["Athletics", "More Sports", "Sport"], "isoDate": "2024-04-18T07:45:32.000Z" }, { @@ -3421,10 +2894,7 @@ "content": "

Former prime minister Lizz Truss said she was “completely blindsided” by the UK’s pension market prior to her disastrous mini-budget.

", "contentSnippet": "Former prime minister Lizz Truss said she was “completely blindsided” by the UK’s pension market prior to her disastrous mini-budget.", "guid": "b2530637", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T07:41:47.000Z" }, { @@ -3438,10 +2908,7 @@ "content": "

Marten and Gordon are accused of gross negligence manslaghter of the newborn

", "contentSnippet": "Marten and Gordon are accused of gross negligence manslaghter of the newborn", "guid": "b2526970", - "categories": [ - "Crime", - "UK" - ], + "categories": ["Crime", "UK"], "isoDate": "2024-04-18T07:38:33.000Z" }, { @@ -3455,9 +2922,7 @@ "content": "These are our top podcast picks.", "contentSnippet": "These are our top podcast picks.", "guid": "b2530678", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T07:38:25.000Z" }, { @@ -3471,10 +2936,7 @@ "content": "

Pep Guardiola’s side could still win the double, but they are not the all-conquering force they were 12 months ago after being knocked out of the Champions League on penalties

", "contentSnippet": "Pep Guardiola’s side could still win the double, but they are not the all-conquering force they were 12 months ago after being knocked out of the Champions League on penalties", "guid": "b2530638", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T07:37:56.000Z" }, { @@ -3488,10 +2950,7 @@ "content": "

‘Something must be done about the Premier League’ is a common refrain in European club boardrooms - so Real Madrid and Bayern Munich duly obliged, knocking out Manchester City and Arsenal to leave no English clubs at the semi-final stage for only the second time since 2017

", "contentSnippet": "‘Something must be done about the Premier League’ is a common refrain in European club boardrooms - so Real Madrid and Bayern Munich duly obliged, knocking out Manchester City and Arsenal to leave no English clubs at the semi-final stage for only the second time since 2017", "guid": "b2530648", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T07:37:49.000Z" }, { @@ -3505,10 +2964,7 @@ "content": "

Bishop Mar Mari Emmanuel tells his supporters ‘to act Christlike’

", "contentSnippet": "Bishop Mar Mari Emmanuel tells his supporters ‘to act Christlike’", "guid": "b2530603", - "categories": [ - "Australasia", - "World" - ], + "categories": ["Australasia", "World"], "isoDate": "2024-04-18T07:36:29.000Z" }, { @@ -3522,9 +2978,7 @@ "content": "

The actor’s two-part docuseries examines the state of masculinity in our fraught modern era. It’s asking the right questions, says Louis Chilton – but doesn’t always reach the answers

", "contentSnippet": "The actor’s two-part docuseries examines the state of masculinity in our fraught modern era. It’s asking the right questions, says Louis Chilton – but doesn’t always reach the answers", "guid": "b2530328", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T07:36:14.000Z" }, { @@ -3538,10 +2992,7 @@ "content": "

Officials fear part of volcano could collapse into sea

", "contentSnippet": "Officials fear part of volcano could collapse into sea", "guid": "b2530626", - "categories": [ - "Southeast Asia", - "Asia" - ], + "categories": ["Southeast Asia", "Asia"], "isoDate": "2024-04-18T07:35:06.000Z" }, { @@ -3555,10 +3006,7 @@ "content": "A neutral palette helps shape a still, calming space, says Sam Wylie-Harris.", "contentSnippet": "A neutral palette helps shape a still, calming space, says Sam Wylie-Harris.", "guid": "b2530679", - "categories": [ - "Design", - "Lifestyle" - ], + "categories": ["Design", "Lifestyle"], "isoDate": "2024-04-18T07:30:13.000Z" }, { @@ -3572,10 +3020,7 @@ "content": "

Mikel Arteta wants Arsenal to end their season in “beautiful” fashion despite a “painful” defeat to Bayern Munich that knocked them out of the Champions League.

", "contentSnippet": "Mikel Arteta wants Arsenal to end their season in “beautiful” fashion despite a “painful” defeat to Bayern Munich that knocked them out of the Champions League.", "guid": "b2530674", - "categories": [ - "Sport", - "Indy TV" - ], + "categories": ["Sport", "Indy TV"], "isoDate": "2024-04-18T07:30:10.000Z" }, { @@ -3589,9 +3034,7 @@ "content": "

Every Wednesday afternoon, expect the latest updates on dating, wellness and fashion trends straight to your inbox

", "contentSnippet": "Every Wednesday afternoon, expect the latest updates on dating, wellness and fashion trends straight to your inbox", "guid": "b2529634", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T07:30:00.000Z" }, { @@ -3605,9 +3048,7 @@ "content": "

Exclusive: The review was sparked by the case of Clive Treacey, a man with learning disabilities, whose family raised complaints about alleged abuse at his care home more than 30 years ago

", "contentSnippet": "Exclusive: The review was sparked by the case of Clive Treacey, a man with learning disabilities, whose family raised complaints about alleged abuse at his care home more than 30 years ago", "guid": "b2529649", - "categories": [ - "Health" - ], + "categories": ["Health"], "isoDate": "2024-04-18T07:27:39.000Z" }, { @@ -3621,10 +3062,7 @@ "content": "

Emerson has been relocated four times for his own safety, after he tried to cross roads, climb stairs, and even wander through garden beds

", "contentSnippet": "Emerson has been relocated four times for his own safety, after he tried to cross roads, climb stairs, and even wander through garden beds", "guid": "b2530616", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2024-04-18T07:24:14.000Z" }, { @@ -3638,10 +3076,7 @@ "content": "

Jeremy Hunt tackled the flea problem Liz Truss highlighted in Downing Street by replacing the carpets at “vast” personal expense.

", "contentSnippet": "Jeremy Hunt tackled the flea problem Liz Truss highlighted in Downing Street by replacing the carpets at “vast” personal expense.", "guid": "b2530663", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T07:23:55.000Z" }, { @@ -3668,10 +3103,7 @@ "content": "

Raducanu backed up her impressive performance in the Billie Jean King Cup with a superb display against Kerber in stuttgart

", "contentSnippet": "Raducanu backed up her impressive performance in the Billie Jean King Cup with a superb display against Kerber in stuttgart", "guid": "b2530499", - "categories": [ - "Tennis", - "Sport" - ], + "categories": ["Tennis", "Sport"], "isoDate": "2024-04-18T07:22:11.000Z" }, { @@ -3685,9 +3117,7 @@ "content": "The group said UK and Ireland order numbers remained flat in the first quarter.", "contentSnippet": "The group said UK and Ireland order numbers remained flat in the first quarter.", "guid": "b2530666", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T07:16:57.000Z" }, { @@ -3701,10 +3131,7 @@ "content": "Europe’s farmers are angry, and staging their biggest protests in half a century", "contentSnippet": "Europe’s farmers are angry, and staging their biggest protests in half a century", "guid": "b2530669", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T07:16:45.000Z" }, { @@ -3718,9 +3145,7 @@ "content": "The board of the fund, which owns the back catalogues for artists including Justin Bieber and Shakira, has backed the 93.2 per share deal.", "contentSnippet": "The board of the fund, which owns the back catalogues for artists including Justin Bieber and Shakira, has backed the 93.2 per share deal.", "guid": "b2530667", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T07:12:01.000Z" }, { @@ -3734,11 +3159,7 @@ "content": "

Officials also find six-page handwritten note addressed to ‘Dear Satanist’

", "contentSnippet": "Officials also find six-page handwritten note addressed to ‘Dear Satanist’", "guid": "b2530628", - "categories": [ - "US Crime News", - "Americas", - "World" - ], + "categories": ["US Crime News", "Americas", "World"], "isoDate": "2024-04-18T07:11:14.000Z" }, { @@ -3752,10 +3173,7 @@ "content": "

Kate Garraway says her late husband Derek Draper is still receiving bailiff threats through the post following his death three months ago.

", "contentSnippet": "Kate Garraway says her late husband Derek Draper is still receiving bailiff threats through the post following his death three months ago.", "guid": "b2530655", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T07:08:32.000Z" }, { @@ -3769,10 +3187,7 @@ "content": "

European Union leaders are undecided over whether to sanction the Islamic Revolutionary Guard Corps, the Iranian military

", "contentSnippet": "European Union leaders are undecided over whether to sanction the Islamic Revolutionary Guard Corps, the Iranian military", "guid": "b2527920", - "categories": [ - "Middle East", - "World" - ], + "categories": ["Middle East", "World"], "isoDate": "2024-04-18T07:05:54.000Z" }, { @@ -3786,10 +3201,7 @@ "content": "

Lacking goals and needing three, the Reds have a Europa League mountain to climb at Atalanta

", "contentSnippet": "Lacking goals and needing three, the Reds have a Europa League mountain to climb at Atalanta", "guid": "b2530427", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T06:51:54.000Z" }, { @@ -3803,9 +3215,7 @@ "content": "The investment is part of Labour’s Green Prosperity Plan and is expected to bring in billions in private sector cash.", "contentSnippet": "The investment is part of Labour’s Green Prosperity Plan and is expected to bring in billions in private sector cash.", "guid": "b2530514", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T06:48:25.000Z" }, { @@ -3819,10 +3229,7 @@ "content": "

The Gunners were beaten 1-0 by Bayern Munich to exit the Champions League 3-2 on aggregate

", "contentSnippet": "The Gunners were beaten 1-0 by Bayern Munich to exit the Champions League 3-2 on aggregate", "guid": "b2530543", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T06:47:33.000Z" }, { @@ -3836,11 +3243,7 @@ "content": "

The Canadian actor won over the critics in ‘Orphan Black’ and on Broadway in ‘Network’, then spoke out in the actors’ strike. She talks to Tom Murray about her new animated film and her reaction as a former child actor to the revelations of ‘Quiet on Set’

", "contentSnippet": "The Canadian actor won over the critics in ‘Orphan Black’ and on Broadway in ‘Network’, then spoke out in the actors’ strike. She talks to Tom Murray about her new animated film and her reaction as a former child actor to the revelations of ‘Quiet on Set’", "guid": "b2529869", - "categories": [ - "Features", - "Film", - "Culture" - ], + "categories": ["Features", "Film", "Culture"], "isoDate": "2024-04-18T06:46:06.000Z" }, { @@ -3854,10 +3257,7 @@ "content": "

The club’s quest for the crown ended in a heartbreaking penalty shoot-out loss to Real Madrid

", "contentSnippet": "The club’s quest for the crown ended in a heartbreaking penalty shoot-out loss to Real Madrid", "guid": "b2530569", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T06:41:38.000Z" }, { @@ -3871,10 +3271,7 @@ "content": "

Liverpool manager Jurgen Klopp will evoke the spirit of their Barcelona comeback when he sends his team out to keep their Europa League hopes alive against Atalanta in Bergamo.

", "contentSnippet": "Liverpool manager Jurgen Klopp will evoke the spirit of their Barcelona comeback when he sends his team out to keep their Europa League hopes alive against Atalanta in Bergamo.", "guid": "b2530654", - "categories": [ - "Sport", - "Indy TV" - ], + "categories": ["Sport", "Indy TV"], "isoDate": "2024-04-18T06:40:44.000Z" }, { @@ -3888,10 +3285,7 @@ "content": "

Bayern Munich 1-0 Arsenal (3-2 agg): Thomas Tuchel did a number on Mikel Arteta and his players as Bayern showed the value of experience in the Champions League

", "contentSnippet": "Bayern Munich 1-0 Arsenal (3-2 agg): Thomas Tuchel did a number on Mikel Arteta and his players as Bayern showed the value of experience in the Champions League", "guid": "b2530502", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T06:35:46.000Z" }, { @@ -3905,10 +3299,7 @@ "content": "A second-hand dress can be good for your wallet and the planet – but there are some important things to consider.", "contentSnippet": "A second-hand dress can be good for your wallet and the planet – but there are some important things to consider.", "guid": "b2530653", - "categories": [ - "Fashion", - "Lifestyle" - ], + "categories": ["Fashion", "Lifestyle"], "isoDate": "2024-04-18T06:30:28.000Z" }, { @@ -3922,10 +3313,7 @@ "content": "

Government gives itself free hand to pick election commissioners, sparking concerns about fairness of impending election process, Maroosha Muzaffar reports

", "contentSnippet": "Government gives itself free hand to pick election commissioners, sparking concerns about fairness of impending election process, Maroosha Muzaffar reports", "guid": "b2512542", - "categories": [ - "India", - "Asia" - ], + "categories": ["India", "Asia"], "isoDate": "2024-04-18T06:29:52.000Z" }, { @@ -3939,10 +3327,7 @@ "content": "

Man City 1-1 Real Madrid (4-4 on agg, 3-4 on penalties): Kevin De Bruyne sent the tie to a shootout after Rodrygo’s opener

", "contentSnippet": "Man City 1-1 Real Madrid (4-4 on agg, 3-4 on penalties): Kevin De Bruyne sent the tie to a shootout after Rodrygo’s opener", "guid": "b2530521", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T06:22:18.000Z" }, { @@ -3956,9 +3341,7 @@ "content": "

‘The medicines supply chain is broken at every level,’ warns Dr Leyla Hannbeck

", "contentSnippet": "‘The medicines supply chain is broken at every level,’ warns Dr Leyla Hannbeck", "guid": "b2530164", - "categories": [ - "Health" - ], + "categories": ["Health"], "isoDate": "2024-04-18T06:18:02.000Z" }, { @@ -3972,10 +3355,7 @@ "content": "

Pep Guardiola insisted there were no regrets after Manchester City’s bid to retain their Champions League crown ended in a heartbreaking penalty shoot-out loss to Real Madrid.

", "contentSnippet": "Pep Guardiola insisted there were no regrets after Manchester City’s bid to retain their Champions League crown ended in a heartbreaking penalty shoot-out loss to Real Madrid.", "guid": "b2530642", - "categories": [ - "Sport", - "Indy TV" - ], + "categories": ["Sport", "Indy TV"], "isoDate": "2024-04-18T06:15:46.000Z" }, { @@ -3989,10 +3369,7 @@ "content": "

Haaland and De Bruyne, who scored City’s equaliser, would have likely taken penalties in the shootout as Real Madrid knocked out the champions

", "contentSnippet": "Haaland and De Bruyne, who scored City’s equaliser, would have likely taken penalties in the shootout as Real Madrid knocked out the champions", "guid": "b2530640", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T06:13:40.000Z" }, { @@ -4019,9 +3396,7 @@ "content": "Oliver Dowden is expected to set out plans to improve the UK’s ability to handle shocks to its economic security.", "contentSnippet": "Oliver Dowden is expected to set out plans to improve the UK’s ability to handle shocks to its economic security.", "guid": "b2530641", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T06:09:11.000Z" }, { @@ -4048,10 +3423,7 @@ "content": "

The Reds must overturn a 3-0 defeat at Anfield if they are to reach the Europa League semi-finals

", "contentSnippet": "The Reds must overturn a 3-0 defeat at Anfield if they are to reach the Europa League semi-finals", "guid": "b2529627", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T05:50:39.000Z" }, { @@ -4078,10 +3450,7 @@ "content": "

Witness says walking through mall brought back ‘certain flashbacks’

", "contentSnippet": "Witness says walking through mall brought back ‘certain flashbacks’", "guid": "b2530605", - "categories": [ - "Australasia", - "World" - ], + "categories": ["Australasia", "World"], "isoDate": "2024-04-18T05:13:49.000Z" }, { @@ -4095,9 +3464,7 @@ "content": "

Sea monster likely terrorised waters around 200 million years ago

", "contentSnippet": "Sea monster likely terrorised waters around 200 million years ago", "guid": "b2530610", - "categories": [ - "Science" - ], + "categories": ["Science"], "isoDate": "2024-04-18T05:11:12.000Z" }, { @@ -4111,10 +3478,7 @@ "content": "Officials are still trying to determine exactly what went wrong when the deadliest U.S. wildfire in more than a century burned through a historic Hawaii town, more than a half-year after the disaster", "contentSnippet": "Officials are still trying to determine exactly what went wrong when the deadliest U.S. wildfire in more than a century burned through a historic Hawaii town, more than a half-year after the disaster", "guid": "b2530625", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2024-04-18T05:10:35.000Z" }, { @@ -4141,10 +3505,7 @@ "content": "

Prince William has been spending time with wife and children since last engagement in March

", "contentSnippet": "Prince William has been spending time with wife and children since last engagement in March", "guid": "b2530608", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2024-04-18T05:07:24.000Z" }, { @@ -4157,10 +3518,8 @@ "dc:date": "2024-04-18T05:00:00+00:00", "content": "

The Superman actor apparently ‘stands up every time a lady walks into a room’ – a kind gesture, but also a bit of a weird one, writes Oliver Keens. Isn’t all of this a tad outdated?

", "contentSnippet": "The Superman actor apparently ‘stands up every time a lady walks into a room’ – a kind gesture, but also a bit of a weird one, writes Oliver Keens. Isn’t all of this a tad outdated?", - "guid": "b2530002", - "categories": [ - "Lifestyle" - ], + "guid": "b2530002", + "categories": ["Lifestyle"], "isoDate": "2024-04-18T05:00:00.000Z" }, { @@ -4174,9 +3533,7 @@ "content": "The Scot was Britain’s most decorated Olympian at the time.", "contentSnippet": "The Scot was Britain’s most decorated Olympian at the time.", "guid": "b2530621", - "categories": [ - "Sport" - ], + "categories": ["Sport"], "isoDate": "2024-04-18T05:00:00.000Z" }, { @@ -4268,9 +3625,7 @@ "content": "

Experts say side effects linked to antipsychotics for dementia patients “may be more severe than previously understood”

", "contentSnippet": "Experts say side effects linked to antipsychotics for dementia patients “may be more severe than previously understood”", "guid": "b2530281", - "categories": [ - "Health" - ], + "categories": ["Health"], "isoDate": "2024-04-18T03:14:54.000Z" }, { @@ -4323,11 +3678,7 @@ "content": "

Defence plans to call cell tower expert to help corroborate claims of 29-year-old’s location at time of killings

", "contentSnippet": "Defence plans to call cell tower expert to help corroborate claims of 29-year-old’s location at time of killings", "guid": "b2530589", - "categories": [ - "US Crime News", - "Americas", - "World" - ], + "categories": ["US Crime News", "Americas", "World"], "isoDate": "2024-04-18T01:53:55.000Z" }, { @@ -4354,11 +3705,7 @@ "content": "

James Comer and Jamie Raskin bickered with each other throughout the heated hearing

", "contentSnippet": "James Comer and Jamie Raskin bickered with each other throughout the heated hearing", "guid": "b2530435", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-18T01:26:26.000Z" }, { @@ -4372,11 +3719,7 @@ "content": "

The project was set to go through the Arctic National Park and Preserve, a major piece of protected land in the northern half of the state

", "contentSnippet": "The project was set to go through the Arctic National Park and Preserve, a major piece of protected land in the northern half of the state", "guid": "b2530587", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-18T01:25:37.000Z" }, { @@ -4390,10 +3733,7 @@ "content": "

According to the disgraced former NFL player’s attorney Attorney Malcolm LaVergne, Simpson was cremated on Wednesday, following his death last week at the age of 76

", "contentSnippet": "According to the disgraced former NFL player’s attorney Attorney Malcolm LaVergne, Simpson was cremated on Wednesday, following his death last week at the age of 76", "guid": "b2530586", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2024-04-18T01:12:16.000Z" }, { @@ -4407,11 +3747,7 @@ "content": "

President used a family anecdote in an attempt to draw a contrast with reports that Donald Trump, while president, had called fallen service members ‘suckers’ and ‘losers’

", "contentSnippet": "President used a family anecdote in an attempt to draw a contrast with reports that Donald Trump, while president, had called fallen service members ‘suckers’ and ‘losers’", "guid": "b2530584", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-18T00:55:02.000Z" }, { @@ -4425,9 +3761,7 @@ "content": "

The R&B singer is welcoming her first baby

", "contentSnippet": "The R&B singer is welcoming her first baby", "guid": "b2530544", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T00:41:34.000Z" }, { @@ -4467,11 +3801,7 @@ "content": "

Former president’s campaign condemned alleged nickname allegedly used by non-senior staffers for the current White House incumbent

", "contentSnippet": "Former president’s campaign condemned alleged nickname allegedly used by non-senior staffers for the current White House incumbent", "guid": "b2530580", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-18T00:17:47.000Z" }, { @@ -4485,11 +3815,7 @@ "content": "

Carol Baum also claimed that Sweeney’s recent rom-com Anyone But You was ‘unwatchable’

", "contentSnippet": "Carol Baum also claimed that Sweeney’s recent rom-com Anyone But You was ‘unwatchable’", "guid": "b2530572", - "categories": [ - "News", - "Film", - "Culture" - ], + "categories": ["News", "Film", "Culture"], "isoDate": "2024-04-18T00:12:39.000Z" }, { @@ -4503,10 +3829,7 @@ "content": "

Editor faced five-day suspension after publishing lightning-rod essay without prior approval from NPR

", "contentSnippet": "Editor faced five-day suspension after publishing lightning-rod essay without prior approval from NPR", "guid": "b2530564", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2024-04-17T23:51:53.000Z" }, { @@ -4520,10 +3843,7 @@ "content": "

Man who sparked huge hunt in notorious plot hatched by girl’s mother collapses at hospital

", "contentSnippet": "Man who sparked huge hunt in notorious plot hatched by girl’s mother collapses at hospital", "guid": "b2530183", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2024-04-17T23:38:45.000Z" }, { @@ -4550,10 +3870,7 @@ "content": "

‘This story is a sensational one, and one which probably, we jokingly say, belongs in a Netflix series”, Chief of the Peel Regional Police Nishan Duraiappah said

", "contentSnippet": "‘This story is a sensational one, and one which probably, we jokingly say, belongs in a Netflix series”, Chief of the Peel Regional Police Nishan Duraiappah said", "guid": "b2530483", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2024-04-17T23:33:05.000Z" }, { @@ -4567,11 +3884,7 @@ "content": "

Case will now go before the Texas Criminal Court of Appeals to determine whether her conviction and sentence will be overturned

", "contentSnippet": "Case will now go before the Texas Criminal Court of Appeals to determine whether her conviction and sentence will be overturned", "guid": "b2530516", - "categories": [ - "US Crime News", - "Americas", - "World" - ], + "categories": ["US Crime News", "Americas", "World"], "isoDate": "2024-04-17T23:19:56.000Z" }, { @@ -4585,9 +3898,7 @@ "content": "Law enforcement agencies have arrested 37 suspects across the UK and around the world", "contentSnippet": "Law enforcement agencies have arrested 37 suspects across the UK and around the world", "guid": "b2530549", - "categories": [ - "Tech" - ], + "categories": ["Tech"], "isoDate": "2024-04-17T23:01:00.000Z" }, { @@ -4601,11 +3912,7 @@ "content": "

Exclusive: ‘Stranger Things’ actor tells ‘The Independent’ why he was asked to officiate co-star’s marriage to Jon Bon Jovi’s son

", "contentSnippet": "Exclusive: ‘Stranger Things’ actor tells ‘The Independent’ why he was asked to officiate co-star’s marriage to Jon Bon Jovi’s son", "guid": "b2530349", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-17T17:19:52.000Z" }, { @@ -4619,10 +3926,7 @@ "content": "

India’s prime minister is as popular a leader as he is polarising

", "contentSnippet": "India’s prime minister is as popular a leader as he is polarising", "guid": "b2529490", - "categories": [ - "India", - "Asia" - ], + "categories": ["India", "Asia"], "isoDate": "2024-04-17T10:19:10.000Z" }, { @@ -4636,11 +3940,7 @@ "content": "

Main presenter Emma Barnett will be leaving for the Today Programme

", "contentSnippet": "Main presenter Emma Barnett will be leaving for the Today Programme", "guid": "b2530707", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T08:58:35.000Z" }, { @@ -4654,11 +3954,7 @@ "content": "

Marathon runners often fall short due to insufficient fuel and hydration, but science is now helping athletes combat the prospect of cramps and hitting the wall

", "contentSnippet": "Marathon runners often fall short due to insufficient fuel and hydration, but science is now helping athletes combat the prospect of cramps and hitting the wall", "guid": "b2525255", - "categories": [ - "Athletics", - "More Sports", - "Sport" - ], + "categories": ["Athletics", "More Sports", "Sport"], "isoDate": "2024-04-18T08:58:34.000Z" }, { @@ -4672,11 +3968,7 @@ "content": "

Korean director teaming up with Lionsgate Television to develop English-language adaptation of iconic revenge thriller

", "contentSnippet": "Korean director teaming up with Lionsgate Television to develop English-language adaptation of iconic revenge thriller", "guid": "b2530689", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T08:58:19.000Z" }, { @@ -4690,10 +3982,7 @@ "content": "

40 per cent of renters say their last move was not made by choice

", "contentSnippet": "40 per cent of renters say their last move was not made by choice", "guid": "b2530357", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2024-04-18T08:58:19.000Z" }, { @@ -4707,10 +3996,7 @@ "content": "

A stunning timelapse video shows the Northern Lights shining over an erupting volcano in southwestern Iceland.

", "contentSnippet": "A stunning timelapse video shows the Northern Lights shining over an erupting volcano in southwestern Iceland.", "guid": "b2530703", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T08:56:46.000Z" }, { @@ -4724,10 +4010,7 @@ "content": "

The Palestine Football Association cites human rights and humanitarian law violations committed in Gaza during the Israel-Palestine conflict in a submission to Fifa

", "contentSnippet": "The Palestine Football Association cites human rights and humanitarian law violations committed in Gaza during the Israel-Palestine conflict in a submission to Fifa", "guid": "b2530688", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T08:54:46.000Z" }, { @@ -4741,10 +4024,7 @@ "content": "

Manchester City, Arsenal and Liverpool all have tricky tests to pass as the Premier League title race hots up, but who has the best run-in?

", "contentSnippet": "Manchester City, Arsenal and Liverpool all have tricky tests to pass as the Premier League title race hots up, but who has the best run-in?", "guid": "b2506714", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T08:54:19.000Z" }, { @@ -4758,10 +4038,7 @@ "content": "

Ukraine’s prime minister says ‘global system of security’ hangs in the balance as vote for US aid deal looms

", "contentSnippet": "Ukraine’s prime minister says ‘global system of security’ hangs in the balance as vote for US aid deal looms", "guid": "b2530661", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T08:47:34.000Z" }, { @@ -4775,11 +4052,7 @@ "content": "

Filmmaker reflects on famed Japanese auteur’s legacy after he’s named among Time magazine’s 100 most influential people of 2024

", "contentSnippet": "Filmmaker reflects on famed Japanese auteur’s legacy after he’s named among Time magazine’s 100 most influential people of 2024", "guid": "b2530656", - "categories": [ - "News", - "Film", - "Culture" - ], + "categories": ["News", "Film", "Culture"], "isoDate": "2024-04-18T08:40:56.000Z" }, { @@ -4793,11 +4066,7 @@ "content": "

‘Keep my friend Jimmy Kimmel’s name out of your weird little wet mouth, OK?’ said Colbert

", "contentSnippet": "‘Keep my friend Jimmy Kimmel’s name out of your weird little wet mouth, OK?’ said Colbert", "guid": "b2530682", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T08:36:45.000Z" }, { @@ -4811,9 +4080,7 @@ "content": "

Give your calendar the seasonal refresh it needs with these fun-filled recommendations and services

", "contentSnippet": "Give your calendar the seasonal refresh it needs with these fun-filled recommendations and services", "guid": "b2529429", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T09:01:41.000Z" }, { @@ -4827,11 +4094,7 @@ "content": "

Annual arts festival returns to Montreux, Switzerland, with a brand new stage and a typically eclectic lineup

", "contentSnippet": "Annual arts festival returns to Montreux, Switzerland, with a brand new stage and a typically eclectic lineup", "guid": "b2530645", - "categories": [ - "News", - "Music", - "Culture" - ], + "categories": ["News", "Music", "Culture"], "isoDate": "2024-04-18T09:00:00.000Z" }, { @@ -4845,9 +4108,7 @@ "content": "Existing drugs could be repurposed following the discovery, according to researchers, who have also developed a new compound using their findings.", "contentSnippet": "Existing drugs could be repurposed following the discovery, according to researchers, who have also developed a new compound using their findings.", "guid": "b2530716", - "categories": [ - "Health" - ], + "categories": ["Health"], "isoDate": "2024-04-18T09:00:00.000Z" }, { @@ -4861,10 +4122,7 @@ "content": "The Gunners were knocked out of the Champions League following a 1-0 defeat by Bayern Munich.", "contentSnippet": "The Gunners were knocked out of the Champions League following a 1-0 defeat by Bayern Munich.", "guid": "b2530715", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T08:51:31.000Z" }, { @@ -4878,11 +4136,7 @@ "content": "

Law starred in the original 1999 film based on Patricia Highsmith’s best-selling novel

", "contentSnippet": "Law starred in the original 1999 film based on Patricia Highsmith’s best-selling novel", "guid": "b2530273", - "categories": [ - "News", - "Film", - "Culture" - ], + "categories": ["News", "Film", "Culture"], "isoDate": "2024-04-17T16:29:02.000Z" }, { @@ -4896,10 +4150,7 @@ "content": "

Simon Cowell sent a cheeky message to his Britain’s Got Talent co-star Amanda Holden following her clash with Sharon Osbourne.

", "contentSnippet": "Simon Cowell sent a cheeky message to his Britain’s Got Talent co-star Amanda Holden following her clash with Sharon Osbourne.", "guid": "b2530733", - "categories": [ - "Culture", - "Indy TV" - ], + "categories": ["Culture", "Indy TV"], "isoDate": "2024-04-18T09:47:09.000Z" }, { @@ -4939,12 +4190,7 @@ "content": "

Have a sustainable, plastic-free period, with these reusable sanitary pads

", "contentSnippet": "Have a sustainable, plastic-free period, with these reusable sanitary pads", "guid": "b1829055", - "categories": [ - "Beauty", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], + "categories": ["Beauty", "Fashion & Beauty", "IndyBest", "Extras"], "isoDate": "2024-04-18T09:40:32.000Z" }, { @@ -4958,11 +4204,7 @@ "content": "

Video game creator has been forced to clear up the matter

", "contentSnippet": "Video game creator has been forced to clear up the matter", "guid": "b2530721", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T09:38:28.000Z" }, { @@ -4976,10 +4218,7 @@ "content": "

Jason Kelce has revealed the bizarre way he lost his Super Bowl ring.

", "contentSnippet": "Jason Kelce has revealed the bizarre way he lost his Super Bowl ring.", "guid": "b2530698", - "categories": [ - "Sport", - "Indy TV" - ], + "categories": ["Sport", "Indy TV"], "isoDate": "2024-04-18T09:38:26.000Z" }, { @@ -4993,10 +4232,7 @@ "content": "

The forward played in Sunday’s FA Cup semi-final defeat at Manchester United but was missing as Chelsea returned to the top of the WSL table on goal difference

", "contentSnippet": "The forward played in Sunday’s FA Cup semi-final defeat at Manchester United but was missing as Chelsea returned to the top of the WSL table on goal difference", "guid": "b2530728", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T09:30:41.000Z" }, { @@ -5010,10 +4246,7 @@ "content": "

OJ Simpson’s Ford Bronco, used in his infamous 1994 slow-speed car chase, is set to go up for sale following his death.

", "contentSnippet": "OJ Simpson’s Ford Bronco, used in his infamous 1994 slow-speed car chase, is set to go up for sale following his death.", "guid": "b2530729", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T09:30:10.000Z" }, { @@ -5027,10 +4260,7 @@ "content": "Palmer has lit up the Premier League following his move to Chelsea from Manchester City, scoring 20 goals.", "contentSnippet": "Palmer has lit up the Premier League following his move to Chelsea from Manchester City, scoring 20 goals.", "guid": "b2530730", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T09:24:26.000Z" }, { @@ -5044,10 +4274,7 @@ "content": "

YouTube star iShowSpeed was ordered to stop his livestream at Manchester City after he celebrated Real Madrid’s goal.

", "contentSnippet": "YouTube star iShowSpeed was ordered to stop his livestream at Manchester City after he celebrated Real Madrid’s goal.", "guid": "b2530692", - "categories": [ - "Sport", - "Indy TV" - ], + "categories": ["Sport", "Indy TV"], "isoDate": "2024-04-18T09:20:38.000Z" }, { @@ -5061,10 +4288,7 @@ "content": "

Several of the continent’s most popular countries make the list, with travel expert claiming there ‘bargains to be found’ this year

", "contentSnippet": "Several of the continent’s most popular countries make the list, with travel expert claiming there ‘bargains to be found’ this year", "guid": "b2529615", - "categories": [ - "News & Advice", - "Travel" - ], + "categories": ["News & Advice", "Travel"], "isoDate": "2024-04-18T09:20:29.000Z" }, { @@ -5091,9 +4315,7 @@ "content": "

Alonso signed an extension at Aston Martin last week, with Sainz still looking for a team next year

", "contentSnippet": "Alonso signed an extension at Aston Martin last week, with Sainz still looking for a team next year", "guid": "b2530723", - "categories": [ - "F1" - ], + "categories": ["F1"], "isoDate": "2024-04-18T09:15:31.000Z" }, { @@ -5107,10 +4329,7 @@ "content": "

A Sydney shopping mall opened to the public on Thursday 18 April for the first time since a mass stabbing in which six people died.

", "contentSnippet": "A Sydney shopping mall opened to the public on Thursday 18 April for the first time since a mass stabbing in which six people died.", "guid": "b2530694", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T09:13:44.000Z" }, { @@ -5124,10 +4343,7 @@ "content": "

Meg Lanning retired from international cricket before the 2023 Women’s Ashes

", "contentSnippet": "Meg Lanning retired from international cricket before the 2023 Women’s Ashes", "guid": "b2530719", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2024-04-18T09:11:04.000Z" }, { @@ -5141,10 +4357,7 @@ "content": "

China warns of ‘greater insecurity’ to Philippines for holding exercises with external forces

", "contentSnippet": "China warns of ‘greater insecurity’ to Philippines for holding exercises with external forces", "guid": "b2530691", - "categories": [ - "China", - "Asia" - ], + "categories": ["China", "Asia"], "isoDate": "2024-04-18T09:06:05.000Z" }, { @@ -5158,11 +4371,7 @@ "content": "

Dancer said it was a ‘stab in the heart’ to be excluded from ‘something so special’

", "contentSnippet": "Dancer said it was a ‘stab in the heart’ to be excluded from ‘something so special’", "guid": "b2530734", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T09:50:23.000Z" }, { @@ -5176,11 +4385,7 @@ "content": "

Netflix show ‘Baby Reindeer’ tells real-life story of Gadd’s experiences of stalking and abuse

", "contentSnippet": "Netflix show ‘Baby Reindeer’ tells real-life story of Gadd’s experiences of stalking and abuse", "guid": "b2530751", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T10:36:58.000Z" }, { @@ -5194,10 +4399,7 @@ "content": "

Nigel Farage has accused Brussels of “cancel culture” after police in the city moved to shut down the National Conservatism Conference.

", "contentSnippet": "Nigel Farage has accused Brussels of “cancel culture” after police in the city moved to shut down the National Conservatism Conference.", "guid": "b2529498", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T10:32:02.000Z" }, { @@ -5211,10 +4413,7 @@ "content": "

The Spanish giants prevailed 4-3 on penalties after a 1-1 draw on the night meant the tie ended 4-4 on aggregate

", "contentSnippet": "The Spanish giants prevailed 4-3 on penalties after a 1-1 draw on the night meant the tie ended 4-4 on aggregate", "guid": "b2530758", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T10:29:17.000Z" }, { @@ -5241,10 +4440,7 @@ "content": "

Zendaya has opened up about the downside of fame and feeling unable to hang out with her Challengers co-stars.

", "contentSnippet": "Zendaya has opened up about the downside of fame and feeling unable to hang out with her Challengers co-stars.", "guid": "b2530775", - "categories": [ - "Lifestyle", - "Indy TV" - ], + "categories": ["Lifestyle", "Indy TV"], "isoDate": "2024-04-18T10:27:50.000Z" }, { @@ -5258,10 +4454,7 @@ "content": "

O’Sullivan is gunning for a record eighth world title at the Crucible, while defending champion Brecel will aim to be the maiden first-time winner to successfully retain the crown

", "contentSnippet": "O’Sullivan is gunning for a record eighth world title at the Crucible, while defending champion Brecel will aim to be the maiden first-time winner to successfully retain the crown", "guid": "b2530726", - "categories": [ - "Snooker", - "Sport" - ], + "categories": ["Snooker", "Sport"], "isoDate": "2024-04-18T10:27:18.000Z" }, { @@ -5288,10 +4481,7 @@ "content": "

Foreign nationals released from prison will be deported from Myanmar

", "contentSnippet": "Foreign nationals released from prison will be deported from Myanmar", "guid": "b2530712", - "categories": [ - "South Asia", - "Asia" - ], + "categories": ["South Asia", "Asia"], "isoDate": "2024-04-18T10:20:04.000Z" }, { @@ -5305,10 +4495,7 @@ "content": "

Durham’s bid was preferred to Yorkshire to be a women’s cricket regional hub in the North East

", "contentSnippet": "Durham’s bid was preferred to Yorkshire to be a women’s cricket regional hub in the North East", "guid": "b2530563", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2024-04-18T10:16:55.000Z" }, { @@ -5322,10 +4509,7 @@ "content": "

Peers’ efforts to protect Afghan special forces from deportation blocked in Commons

", "contentSnippet": "Peers’ efforts to protect Afghan special forces from deportation blocked in Commons", "guid": "b2530081", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T10:16:48.000Z" }, { @@ -5339,9 +4523,7 @@ "content": "

Both US and China are planning to put boots on the Moon within this decade

", "contentSnippet": "Both US and China are planning to put boots on the Moon within this decade", "guid": "b2530718", - "categories": [ - "Space" - ], + "categories": ["Space"], "isoDate": "2024-04-18T10:10:58.000Z" }, { @@ -5355,10 +4537,7 @@ "content": "

Grant Shapps clashed with Sky News host Sky Burley as he was quizzed over the latest sleaze scandal to hit the Conservatives.

", "contentSnippet": "Grant Shapps clashed with Sky News host Sky Burley as he was quizzed over the latest sleaze scandal to hit the Conservatives.", "guid": "b2530742", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T10:05:04.000Z" }, { @@ -5372,10 +4551,7 @@ "content": "Calls for action against Israel in international soccer because of the conflict with Hamas will be stepped up by Palestinian officials at the annual FIFA congress next month", "contentSnippet": "Calls for action against Israel in international soccer because of the conflict with Hamas will be stepped up by Palestinian officials at the annual FIFA congress next month", "guid": "b2530755", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T10:04:16.000Z" }, { @@ -5389,9 +4565,7 @@ "content": "Sales at Mecca were 12% higher in the first three months of the year, compared with the same period a year ago.", "contentSnippet": "Sales at Mecca were 12% higher in the first three months of the year, compared with the same period a year ago.", "guid": "b2530761", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T10:04:05.000Z" }, { @@ -5405,10 +4579,7 @@ "content": "The Danish coach joined the Toffees in the summer of 2022.", "contentSnippet": "The Danish coach joined the Toffees in the summer of 2022.", "guid": "b2530759", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T10:01:19.000Z" }, { @@ -5422,10 +4593,7 @@ "content": "

He allegedly didn’t send her to rehab

", "contentSnippet": "He allegedly didn’t send her to rehab", "guid": "b2530739", - "categories": [ - "Film", - "Culture" - ], + "categories": ["Film", "Culture"], "isoDate": "2024-04-18T10:01:13.000Z" }, { @@ -5439,10 +4607,7 @@ "content": "The White Rose have been invited to join an expanded top flight in 2027.", "contentSnippet": "The White Rose have been invited to join an expanded top flight in 2027.", "guid": "b2530760", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2024-04-18T10:00:48.000Z" }, { @@ -5469,9 +4634,7 @@ "content": "The survey by polling company Censuswide showed about a third of people surveyed said they were able to save money each month.", "contentSnippet": "The survey by polling company Censuswide showed about a third of people surveyed said they were able to save money each month.", "guid": "b2530747", - "categories": [ - "Money" - ], + "categories": ["Money"], "isoDate": "2024-04-18T09:59:29.000Z" }, { @@ -5485,10 +4648,7 @@ "content": "Reuters photographer Mohammed Salem captured this year’s prestigious World Press Photo of the Year award Thursday with his heartrending image of a Palestinian woman cradling the body of her young niece — a powerful depiction of loss and sorrow in Gaza", "contentSnippet": "Reuters photographer Mohammed Salem captured this year’s prestigious World Press Photo of the Year award Thursday with his heartrending image of a Palestinian woman cradling the body of her young niece — a powerful depiction of loss and sorrow in Gaza", "guid": "b2530745", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T09:54:00.000Z" }, { @@ -5502,9 +4662,7 @@ "content": "The 39-year-old Mercedes driver has scored just 10 points from the opening four rounds.", "contentSnippet": "The 39-year-old Mercedes driver has scored just 10 points from the opening four rounds.", "guid": "b2530746", - "categories": [ - "F1" - ], + "categories": ["F1"], "isoDate": "2024-04-18T09:53:26.000Z" }, { @@ -5518,10 +4676,7 @@ "content": "European Union leaders are debating at a summit in Brussels a new “European Competitiveness Deal” aimed at helping the 27-nation bloc close the gap with Chinese and American rivals", "contentSnippet": "European Union leaders are debating at a summit in Brussels a new “European Competitiveness Deal” aimed at helping the 27-nation bloc close the gap with Chinese and American rivals", "guid": "b2530744", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T09:51:56.000Z" }, { @@ -5535,10 +4690,7 @@ "content": "

Watch live as Oliver Dowden delivers a speech on economic security on Thursday 18 April.

", "contentSnippet": "Watch live as Oliver Dowden delivers a speech on economic security on Thursday 18 April.", "guid": "b2530782", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T10:39:23.000Z" }, { @@ -5552,10 +4704,7 @@ "content": "

This is the moment a man launches a “dangerous” laser attack on an Airbus 320 plane carrying 200 passengers as it prepares to land at a UK airport.

", "contentSnippet": "This is the moment a man launches a “dangerous” laser attack on an Airbus 320 plane carrying 200 passengers as it prepares to land at a UK airport.", "guid": "b2530764", - "categories": [ - "News", - "Indy TV" - ], + "categories": ["News", "Indy TV"], "isoDate": "2024-04-18T10:39:22.000Z" }, { @@ -5569,11 +4718,7 @@ "content": "

Shooting is scheduled to begin later this year

", "contentSnippet": "Shooting is scheduled to begin later this year", "guid": "b2530767", - "categories": [ - "News", - "Film", - "Culture" - ], + "categories": ["News", "Film", "Culture"], "isoDate": "2024-04-18T10:37:24.000Z" }, { @@ -5600,11 +4745,7 @@ "content": "

On hype restaurant hub TopJaw, the singer said he once ate fish semen in Japan, his favourite restaurant is a £310 sushi bar in Mayfair and he pops into three-Michelin-star Core by Clare Smyth for a pint. Is Britain’s most streamed artist now too famous for his fans or is he more relatable than ever, asks Hannah Twiggs

", "contentSnippet": "On hype restaurant hub TopJaw, the singer said he once ate fish semen in Japan, his favourite restaurant is a £310 sushi bar in Mayfair and he pops into three-Michelin-star Core by Clare Smyth for a pint. Is Britain’s most streamed artist now too famous for his fans or is he more relatable than ever, asks Hannah Twiggs", "guid": "b2530725", - "categories": [ - "Features", - "Food and Drink", - "Lifestyle" - ], + "categories": ["Features", "Food and Drink", "Lifestyle"], "isoDate": "2024-04-18T10:57:11.000Z" }, { @@ -5618,9 +4759,7 @@ "content": "

The 39-year-old Mercedes driver has scored just 10 points from the opening four rounds of the 2024 season

", "contentSnippet": "The 39-year-old Mercedes driver has scored just 10 points from the opening four rounds of the 2024 season", "guid": "b2530746", - "categories": [ - "F1" - ], + "categories": ["F1"], "isoDate": "2024-04-18T10:54:42.000Z" }, { @@ -5634,10 +4773,7 @@ "content": "

The FA Cup final will also be played on the penultimate weekend of the Premier League season in a number of changes announced by the Football Association

", "contentSnippet": "The FA Cup final will also be played on the penultimate weekend of the Premier League season in a number of changes announced by the Football Association", "guid": "b2530783", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T10:45:20.000Z" }, { @@ -5651,10 +4787,7 @@ "content": "The Maine Legislature has approved sweeping gun safety legislation nearly six months after the deadliest shooting in state history", "contentSnippet": "The Maine Legislature has approved sweeping gun safety legislation nearly six months after the deadliest shooting in state history", "guid": "b2530789", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2024-04-18T10:44:13.000Z" }, { @@ -5668,10 +4801,7 @@ "content": "Kane’s Bayern Munich meet Bellingham’s Real Madrid in the semi-finals after eliminating Arsenal and Manchester City respectively.", "contentSnippet": "Kane’s Bayern Munich meet Bellingham’s Real Madrid in the semi-finals after eliminating Arsenal and Manchester City respectively.", "guid": "b2530794", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T11:00:18.000Z" }, { @@ -5685,9 +4815,7 @@ "content": "Leeds-born Golding made the difficult decision to leave the Rhinos to further his career in 2019.", "contentSnippet": "Leeds-born Golding made the difficult decision to leave the Rhinos to further his career in 2019.", "guid": "b2530795", - "categories": [ - "Sport" - ], + "categories": ["Sport"], "isoDate": "2024-04-18T11:00:04.000Z" }, { @@ -5701,10 +4829,7 @@ "content": "

The majority of Americans have experienced extreme weather events in the last five years — but the climate crisis still lags behind inflation, healthcare, immigration and jobs when it comes to voter priorities. Louise Boyle reports

", "contentSnippet": "The majority of Americans have experienced extreme weather events in the last five years — but the climate crisis still lags behind inflation, healthcare, immigration and jobs when it comes to voter priorities. Louise Boyle reports", "guid": "b2530458", - "categories": [ - "News", - "Climate" - ], + "categories": ["News", "Climate"], "isoDate": "2024-04-18T11:00:00.000Z" }, { @@ -5718,11 +4843,7 @@ "content": "

Presenter and writer described it as the ‘drum beat’ of his life

", "contentSnippet": "Presenter and writer described it as the ‘drum beat’ of his life", "guid": "b2530786", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T10:58:48.000Z" }, { @@ -5736,11 +4857,7 @@ "content": "

The legal action is set to begin on May 1

", "contentSnippet": "The legal action is set to begin on May 1", "guid": "b2530793", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T11:12:29.000Z" }, { @@ -5754,10 +4871,7 @@ "content": "

Actor’s spokesperson says he has never endorsed any political party

", "contentSnippet": "Actor’s spokesperson says he has never endorsed any political party", "guid": "b2530770", - "categories": [ - "India", - "Asia" - ], + "categories": ["India", "Asia"], "isoDate": "2024-04-18T11:12:01.000Z" }, { @@ -5771,10 +4885,7 @@ "content": "

Authorities are unclear as to what caused the outages after the 911 services were restored for some areas

", "contentSnippet": "Authorities are unclear as to what caused the outages after the 911 services were restored for some areas", "guid": "b2530799", - "categories": [ - "Americas", - "World" - ], + "categories": ["Americas", "World"], "isoDate": "2024-04-18T11:11:46.000Z" }, { @@ -5788,10 +4899,7 @@ "content": "

Duke of Sussex was speaking at the AGM of his non-profit organisation Travalyst

", "contentSnippet": "Duke of Sussex was speaking at the AGM of his non-profit organisation Travalyst", "guid": "b2530224", - "categories": [ - "News & Advice", - "Travel" - ], + "categories": ["News & Advice", "Travel"], "isoDate": "2024-04-18T11:11:22.000Z" }, { @@ -5805,10 +4913,7 @@ "content": "

Real Madrid, Bayern Munich, PSG and Bprussia Dortmund make up the final four after Arsenal and Man City were eliminated in the quarter-finals

", "contentSnippet": "Real Madrid, Bayern Munich, PSG and Bprussia Dortmund make up the final four after Arsenal and Man City were eliminated in the quarter-finals", "guid": "b2530787", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T11:10:07.000Z" }, { @@ -5822,10 +4927,7 @@ "content": "

The deputy Labour leader is preparing her defence as the probe into her tax affairs continues

", "contentSnippet": "The deputy Labour leader is preparing her defence as the probe into her tax affairs continues", "guid": "b2530756", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T11:04:47.000Z" }, { @@ -5839,10 +4941,7 @@ "content": "

Six hospitals in South Gyeongsang province refused to admit her for treatment

", "contentSnippet": "Six hospitals in South Gyeongsang province refused to admit her for treatment", "guid": "b2530774", - "categories": [ - "East Asia ", - "Asia" - ], + "categories": ["East Asia ", "Asia"], "isoDate": "2024-04-18T11:04:09.000Z" }, { @@ -5856,11 +4955,7 @@ "content": "

‘Bianca was physically assaulted,’ representatives for the rapper said

", "contentSnippet": "‘Bianca was physically assaulted,’ representatives for the rapper said", "guid": "b2530840", - "categories": [ - "US Crime News", - "Americas", - "World" - ], + "categories": ["US Crime News", "Americas", "World"], "isoDate": "2024-04-18T13:22:58.000Z" }, { @@ -5887,11 +4982,7 @@ "content": "

The hit BBC series could be soon welcoming famous faces

", "contentSnippet": "The hit BBC series could be soon welcoming famous faces", "guid": "b2530861", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T13:17:30.000Z" }, { @@ -5905,11 +4996,7 @@ "content": "

Third day of hush money trial begins at 9.30am ET on Thursday, with seven jurors already selected

", "contentSnippet": "Third day of hush money trial begins at 9.30am ET on Thursday, with seven jurors already selected", "guid": "b2496616", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-18T13:16:21.000Z" }, { @@ -5923,10 +5010,7 @@ "content": "

Whether its a gnome in a box or a tray of pies, Uber drivers find that some rides end in more than they bargained for

", "contentSnippet": "Whether its a gnome in a box or a tray of pies, Uber drivers find that some rides end in more than they bargained for", "guid": "b2530704", - "categories": [ - "News & Advice", - "Travel" - ], + "categories": ["News & Advice", "Travel"], "isoDate": "2024-04-18T13:14:59.000Z" }, { @@ -5940,10 +5024,7 @@ "content": "

Downing Street refused to confirm that flights would take off by Spring as previously promised

", "contentSnippet": "Downing Street refused to confirm that flights would take off by Spring as previously promised", "guid": "b2530834", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T13:14:19.000Z" }, { @@ -5957,11 +5038,7 @@ "content": "

Some original cast members are expected to return for the sequel but the fate of one horseman is uncertain

", "contentSnippet": "Some original cast members are expected to return for the sequel but the fate of one horseman is uncertain", "guid": "b2530853", - "categories": [ - "News", - "Film", - "Culture" - ], + "categories": ["News", "Film", "Culture"], "isoDate": "2024-04-18T13:05:37.000Z" }, { @@ -5975,10 +5052,7 @@ "content": "Replays have been abolished from the first round onwards from next season.", "contentSnippet": "Replays have been abolished from the first round onwards from next season.", "guid": "b2530862", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T13:00:29.000Z" }, { @@ -5992,10 +5066,7 @@ "content": "Israel has vowed to respond to Iran’s unprecedented weekend attack", "contentSnippet": "Israel has vowed to respond to Iran’s unprecedented weekend attack", "guid": "b2530859", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T12:55:09.000Z" }, { @@ -6022,10 +5093,7 @@ "content": "

Mark Menzies is accused of using thousands of pounds of party funds to payoff people who had locked him in a flat, but he disputes the allegations. Labour said the Tories were a party of “stagnation, scandal and sleaze”

", "contentSnippet": "Mark Menzies is accused of using thousands of pounds of party funds to payoff people who had locked him in a flat, but he disputes the allegations. Labour said the Tories were a party of “stagnation, scandal and sleaze”", "guid": "b2530844", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T12:49:19.000Z" }, { @@ -6039,9 +5107,7 @@ "content": "

‘As long as you and your husband agree on the name, everyone else can mind their own business’

", "contentSnippet": "‘As long as you and your husband agree on the name, everyone else can mind their own business’", "guid": "b2530517", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T12:45:35.000Z" }, { @@ -6068,11 +5134,7 @@ "content": "

Goat farms, pigs, accidents, and selling hay to the Beckhams and Amanda Holden - here’s what season three has in store

", "contentSnippet": "Goat farms, pigs, accidents, and selling hay to the Beckhams and Amanda Holden - here’s what season three has in store", "guid": "b2530830", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-18T12:34:21.000Z" }, { @@ -6086,10 +5148,7 @@ "content": "

As India heads into the world’s biggest election, Muslims tell Shweta Sharma of growing anxiety and fear of persecution after two terms of the Modi government marked by rising polarisation in the country

", "contentSnippet": "As India heads into the world’s biggest election, Muslims tell Shweta Sharma of growing anxiety and fear of persecution after two terms of the Modi government marked by rising polarisation in the country", "guid": "b2521576", - "categories": [ - "India", - "Asia" - ], + "categories": ["India", "Asia"], "isoDate": "2024-04-18T12:32:40.000Z" }, { @@ -6103,10 +5162,7 @@ "content": "

The number of MPs sitting as independents now outnumber the Lib Dems

", "contentSnippet": "The number of MPs sitting as independents now outnumber the Lib Dems", "guid": "b2530714", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T12:31:59.000Z" }, { @@ -6120,11 +5176,7 @@ "content": "

MyPillow CEO, who was sued for promoting voting machine conspiracy theories in support of Donald Trump, suffers fresh legal setback

", "contentSnippet": "MyPillow CEO, who was sued for promoting voting machine conspiracy theories in support of Donald Trump, suffers fresh legal setback", "guid": "b2530809", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-18T12:31:15.000Z" }, { @@ -6138,10 +5190,7 @@ "content": "

Prince William has been spending time with wife and children since last engagement in March

", "contentSnippet": "Prince William has been spending time with wife and children since last engagement in March", "guid": "b2530608", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2024-04-18T12:30:53.000Z" }, { @@ -6155,9 +5204,7 @@ "content": "It continues the trend of job losses in the tech sector.", "contentSnippet": "It continues the trend of job losses in the tech sector.", "guid": "b2530841", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T12:25:11.000Z" }, { @@ -6171,10 +5218,7 @@ "content": "

The Sainsbury’s employee was sacked after working at the London supermarket for nearly 20 years

", "contentSnippet": "The Sainsbury’s employee was sacked after working at the London supermarket for nearly 20 years", "guid": "b2530791", - "categories": [ - "Home News", - "UK" - ], + "categories": ["Home News", "UK"], "isoDate": "2024-04-18T12:22:56.000Z" }, { @@ -6188,9 +5232,7 @@ "content": "A Clyde Valley Housing Association computer system enabled residents to access each other’s personal data.", "contentSnippet": "A Clyde Valley Housing Association computer system enabled residents to access each other’s personal data.", "guid": "b2530838", - "categories": [ - "Tech" - ], + "categories": ["Tech"], "isoDate": "2024-04-18T12:21:03.000Z" }, { @@ -6204,10 +5246,7 @@ "content": "

Prime Video has released a new trailer for season three of Clarkson’s Farm, with chaos and heartbreak teased on Diddly Squat.

", "contentSnippet": "Prime Video has released a new trailer for season three of Clarkson’s Farm, with chaos and heartbreak teased on Diddly Squat.", "guid": "b2530836", - "categories": [ - "Culture", - "Indy TV" - ], + "categories": ["Culture", "Indy TV"], "isoDate": "2024-04-18T12:19:00.000Z" }, { @@ -6240,10 +5279,7 @@ "content": "

The UAE was hit by dramatic flooding this week after a year’s worth of rain fell within 12 hours but experts have shot down suggestions cloud seeding is the cause

", "contentSnippet": "The UAE was hit by dramatic flooding this week after a year’s worth of rain fell within 12 hours but experts have shot down suggestions cloud seeding is the cause", "guid": "b2530740", - "categories": [ - "Middle East", - "World" - ], + "categories": ["Middle East", "World"], "isoDate": "2024-04-18T12:17:22.000Z" }, { @@ -6257,11 +5293,7 @@ "content": "

Jack Callahan told police officers his father had been possessed by a demon called ‘Dirty Dan’

", "contentSnippet": "Jack Callahan told police officers his father had been possessed by a demon called ‘Dirty Dan’", "guid": "b2530702", - "categories": [ - "US Crime News", - "Americas", - "World" - ], + "categories": ["US Crime News", "Americas", "World"], "isoDate": "2024-04-18T12:16:48.000Z" }, { @@ -6275,10 +5307,7 @@ "content": "

Investigation finds Vikas Gowda entered Bengaluru airport with valid ticket and left after six hours

", "contentSnippet": "Investigation finds Vikas Gowda entered Bengaluru airport with valid ticket and left after six hours", "guid": "b2530752", - "categories": [ - "News & Advice", - "Travel" - ], + "categories": ["News & Advice", "Travel"], "isoDate": "2024-04-18T12:15:56.000Z" }, { @@ -6292,10 +5321,7 @@ "content": "

Britain’s shortest-serving prime minister has launched her new book, ‘Ten Years to Save the West’

", "contentSnippet": "Britain’s shortest-serving prime minister has launched her new book, ‘Ten Years to Save the West’", "guid": "b2530221", - "categories": [ - "UK Politics", - "UK" - ], + "categories": ["UK Politics", "UK"], "isoDate": "2024-04-18T12:15:45.000Z" }, { @@ -6322,11 +5348,7 @@ "content": "

Defence plans to call cell tower expert to help corroborate claims of 29-year-old’s location at time of killings

", "contentSnippet": "Defence plans to call cell tower expert to help corroborate claims of 29-year-old’s location at time of killings", "guid": "b2530589", - "categories": [ - "US Crime News", - "Americas", - "World" - ], + "categories": ["US Crime News", "Americas", "World"], "isoDate": "2024-04-18T12:12:02.000Z" }, { @@ -6353,9 +5375,7 @@ "content": "Kemi Badenoch, speaking at TheCityUK international conference, said she is worried about there being too many rules in financial services.", "contentSnippet": "Kemi Badenoch, speaking at TheCityUK international conference, said she is worried about there being too many rules in financial services.", "guid": "b2530831", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T12:07:18.000Z" }, { @@ -6369,9 +5389,7 @@ "content": "Tortilla boss will run slightly over the marathon distance, a total of 28.1 miles, from Camden around central London and then to Islington.", "contentSnippet": "Tortilla boss will run slightly over the marathon distance, a total of 28.1 miles, from Camden around central London and then to Islington.", "guid": "b2530832", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T12:06:59.000Z" }, { @@ -6385,10 +5403,7 @@ "content": "

Bengaluru is grappling with a water shortage so severe, there isn’t enough to take a shower or flush a toilet, and all residents want from a new government is a resolution of the crisis, Stuti Mishra reports

", "contentSnippet": "Bengaluru is grappling with a water shortage so severe, there isn’t enough to take a shower or flush a toilet, and all residents want from a new government is a resolution of the crisis, Stuti Mishra reports", "guid": "b2519822", - "categories": [ - "India", - "Asia" - ], + "categories": ["India", "Asia"], "isoDate": "2024-04-18T12:06:01.000Z" }, { @@ -6402,10 +5417,7 @@ "content": "

The 2014 World Cup winner and Bayern Munich legend said he was banished to the Under-16s without an explanation

", "contentSnippet": "The 2014 World Cup winner and Bayern Munich legend said he was banished to the Under-16s without an explanation", "guid": "b2530821", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T12:00:02.000Z" }, { @@ -6419,10 +5431,7 @@ "content": "

Zoe Ball has shared a heartbreaking update on her mother’s cancer diagnosis.

", "contentSnippet": "Zoe Ball has shared a heartbreaking update on her mother’s cancer diagnosis.", "guid": "b2530720", - "categories": [ - "Culture", - "Indy TV" - ], + "categories": ["Culture", "Indy TV"], "isoDate": "2024-04-18T11:55:48.000Z" }, { @@ -6436,10 +5445,7 @@ "content": "

Russell Crowe has revealed he is a “fan” of Britain’s Got Talent.

", "contentSnippet": "Russell Crowe has revealed he is a “fan” of Britain’s Got Talent.", "guid": "b2530762", - "categories": [ - "Culture", - "Indy TV" - ], + "categories": ["Culture", "Indy TV"], "isoDate": "2024-04-18T11:42:28.000Z" }, { @@ -6453,11 +5459,7 @@ "content": "

Patricia Highsmith’s 1955 novel The Talented Mr Ripley has been reimagined in this eight-part drama

", "contentSnippet": "Patricia Highsmith’s 1955 novel The Talented Mr Ripley has been reimagined in this eight-part drama", "guid": "b2523187", - "categories": [ - "Books", - "IndyBest", - "Extras" - ], + "categories": ["Books", "IndyBest", "Extras"], "isoDate": "2024-04-18T11:42:24.000Z" }, { @@ -6471,11 +5473,7 @@ "content": "

‘Maybe you dreamed this one during one of your court siestas, I don’t know’

", "contentSnippet": "‘Maybe you dreamed this one during one of your court siestas, I don’t know’", "guid": "b2530701", - "categories": [ - "US politics", - "Americas", - "World" - ], + "categories": ["US politics", "Americas", "World"], "isoDate": "2024-04-18T11:41:06.000Z" }, { @@ -6489,10 +5487,7 @@ "content": "A pharmacist talks us through the tell-tale differences.", "contentSnippet": "A pharmacist talks us through the tell-tale differences.", "guid": "b2530815", - "categories": [ - "Health & Families", - "Lifestyle" - ], + "categories": ["Health & Families", "Lifestyle"], "isoDate": "2024-04-18T11:35:38.000Z" }, { @@ -6506,10 +5501,7 @@ "content": "

Bayern Munich defender Eric Dier suggested it was “nice” to knock Arsenal out of the Champions League on Wednesday night (17 April).

", "contentSnippet": "Bayern Munich defender Eric Dier suggested it was “nice” to knock Arsenal out of the Champions League on Wednesday night (17 April).", "guid": "b2530798", - "categories": [ - "Sport", - "Indy TV" - ], + "categories": ["Sport", "Indy TV"], "isoDate": "2024-04-18T11:28:49.000Z" }, { @@ -6523,9 +5515,7 @@ "content": "Law enforcement agencies have arrested 37 suspects across the UK and around the world", "contentSnippet": "Law enforcement agencies have arrested 37 suspects across the UK and around the world", "guid": "b2530549", - "categories": [ - "Tech" - ], + "categories": ["Tech"], "isoDate": "2024-04-18T11:25:26.000Z" }, { @@ -6539,11 +5529,7 @@ "content": "

The cinematic provocateur is set to retire after his mysterious final project. It’s fine to be protective of your own legacy, writes Louis Chilton, but Tarantino’s reasoning doesn’t hold water

", "contentSnippet": "The cinematic provocateur is set to retire after his mysterious final project. It’s fine to be protective of your own legacy, writes Louis Chilton, but Tarantino’s reasoning doesn’t hold water", "guid": "b2530802", - "categories": [ - "Features", - "Film", - "Culture" - ], + "categories": ["Features", "Film", "Culture"], "isoDate": "2024-04-18T11:23:31.000Z" }, { @@ -6557,10 +5543,7 @@ "content": "

Aitana Bonmati says women’s footballers in Spain still have the ‘same problems’ they did before the World Cup

", "contentSnippet": "Aitana Bonmati says women’s footballers in Spain still have the ‘same problems’ they did before the World Cup", "guid": "b2530801", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T11:16:35.000Z" }, { @@ -6574,10 +5557,7 @@ "content": "Lanning missed last year’s Ashes for medical reasons and pulled the plug on her Australia career in November.", "contentSnippet": "Lanning missed last year’s Ashes for medical reasons and pulled the plug on her Australia career in November.", "guid": "b2530806", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2024-04-18T11:13:58.000Z" }, { @@ -6591,11 +5571,7 @@ "content": "

Bizarre video clip sees Tony and Carmela Soprano under witness protection in New York

", "contentSnippet": "Bizarre video clip sees Tony and Carmela Soprano under witness protection in New York", "guid": "b2530021", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], + "categories": ["News", "TV & Radio", "Culture"], "isoDate": "2024-04-17T08:17:20.000Z" }, { @@ -6609,10 +5585,7 @@ "content": "

Prosecutors say one of the two men arrested was preparing explosive and arson attacks, especially on military and industrial infrastructure

", "contentSnippet": "Prosecutors say one of the two men arrested was preparing explosive and arson attacks, especially on military and industrial infrastructure", "guid": "b2530870", - "categories": [ - "Europe", - "World" - ], + "categories": ["Europe", "World"], "isoDate": "2024-04-18T13:27:30.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/d47110dcb0871630efe0e4685f53c54c0681dc8085ab193f50982deb6ac096f0.json b/intro to react/fun-with-react/logs/d47110dcb0871630efe0e4685f53c54c0681dc8085ab193f50982deb6ac096f0.json index b204cde..f65a067 100644 --- a/intro to react/fun-with-react/logs/d47110dcb0871630efe0e4685f53c54c0681dc8085ab193f50982deb6ac096f0.json +++ b/intro to react/fun-with-react/logs/d47110dcb0871630efe0e4685f53c54c0681dc8085ab193f50982deb6ac096f0.json @@ -798,4 +798,4 @@ "guid": "https://www.bbc.co.uk/news/live/uk-68844395#0", "isoDate": "2024-04-18T10:18:51.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/d74a742caff4608b92fce83f0fe7e906dd944b3d39ada37ceb0ff88ede228240.json b/intro to react/fun-with-react/logs/d74a742caff4608b92fce83f0fe7e906dd944b3d39ada37ceb0ff88ede228240.json index 91c37b8..f90c93f 100644 --- a/intro to react/fun-with-react/logs/d74a742caff4608b92fce83f0fe7e906dd944b3d39ada37ceb0ff88ede228240.json +++ b/intro to react/fun-with-react/logs/d74a742caff4608b92fce83f0fe7e906dd944b3d39ada37ceb0ff88ede228240.json @@ -6117,4 +6117,4 @@ "guid": "https://www.dailymail.co.uk/news/article-13323301/Male-professional-dancer-accused-sexually-assaulting-five-female-artists.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "isoDate": "2024-04-18T11:10:24.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/e708c1d33bdfaa397da3f3f68681ae2d010f0fd76eaef33bb65f8cf4544a7713.json b/intro to react/fun-with-react/logs/e708c1d33bdfaa397da3f3f68681ae2d010f0fd76eaef33bb65f8cf4544a7713.json index 67babe3..aae43d3 100644 --- a/intro to react/fun-with-react/logs/e708c1d33bdfaa397da3f3f68681ae2d010f0fd76eaef33bb65f8cf4544a7713.json +++ b/intro to react/fun-with-react/logs/e708c1d33bdfaa397da3f3f68681ae2d010f0fd76eaef33bb65f8cf4544a7713.json @@ -363,4 +363,4 @@ "guid": "https://news.sky.com/story/germany-arrests-men-allegedly-spying-for-russia-in-plan-to-sabotage-ukrainian-aid-13117739", "isoDate": "2024-04-18T08:57:00.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/f08313c8cc0cadf226a696aca3c65b4eafba6cfea5d532e83cc7a99c6d04c61e.json b/intro to react/fun-with-react/logs/f08313c8cc0cadf226a696aca3c65b4eafba6cfea5d532e83cc7a99c6d04c61e.json index 18f05b6..401e8cd 100644 --- a/intro to react/fun-with-react/logs/f08313c8cc0cadf226a696aca3c65b4eafba6cfea5d532e83cc7a99c6d04c61e.json +++ b/intro to react/fun-with-react/logs/f08313c8cc0cadf226a696aca3c65b4eafba6cfea5d532e83cc7a99c6d04c61e.json @@ -10,10 +10,7 @@ "content": "

Some users say their Apple Watches are losing power even while charging

", "contentSnippet": "Some users say their Apple Watches are losing power even while charging", "guid": "b1116398", - "categories": [ - "Tech", - "News" - ], + "categories": ["Tech", "News"], "isoDate": "2023-10-27T12:57:33.000Z" }, { @@ -27,10 +24,7 @@ "content": "

Red Devils set to include fit-again Brazilian in team for Sunday's derby

", "contentSnippet": "Red Devils set to include fit-again Brazilian in team for Sunday's derby", "guid": "b1116314", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T12:52:19.000Z" }, { @@ -44,9 +38,7 @@ "content": "

Taylor Swift's portfolio is forever growing

", "contentSnippet": "Taylor Swift's portfolio is forever growing", "guid": "b1116405", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T12:47:56.000Z" }, { @@ -60,10 +52,7 @@ "content": "

Mauricio Pochettino could name unchanged line-up with seven out

", "contentSnippet": "Mauricio Pochettino could name unchanged line-up with seven out", "guid": "b1116402", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T12:45:27.000Z" }, { @@ -77,10 +66,7 @@ "content": "

Potential return date set for £47m signing by Chelsea boss

", "contentSnippet": "Potential return date set for £47m signing by Chelsea boss", "guid": "b1116427", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T12:44:52.000Z" }, { @@ -94,10 +80,7 @@ "content": "

One man died after British-flagged Verity collided with a larger cargo ship in the North Sea

", "contentSnippet": "One man died after British-flagged Verity collided with a larger cargo ship in the North Sea", "guid": "b1116403", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T12:44:23.000Z" }, { @@ -111,10 +94,7 @@ "content": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", "contentSnippet": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", "guid": "b1116431", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T12:40:55.000Z" }, { @@ -128,10 +108,7 @@ "content": "

The Gunners duo have both picked up muscle injuries

", "contentSnippet": "The Gunners duo have both picked up muscle injuries", "guid": "b1116426", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T12:39:57.000Z" }, { @@ -145,9 +122,7 @@ "content": "

The billionaire Issa brothers have admitted submitting error-strewn evidence to MPs about the complex offshore ownership structure known as ‘Bellis’ that they created for Asda after acquiring the supermarket in 2021.

", "contentSnippet": "The billionaire Issa brothers have admitted submitting error-strewn evidence to MPs about the complex offshore ownership structure known as ‘Bellis’ that they created for Asda after acquiring the supermarket in 2021.", "guid": "b1116429", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2023-10-27T12:37:22.000Z" }, { @@ -161,10 +136,7 @@ "content": "

Arsenal lose injured duo for visit of the Blades

", "contentSnippet": "Arsenal lose injured duo for visit of the Blades", "guid": "b1116312", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T12:34:47.000Z" }, { @@ -178,10 +150,7 @@ "content": "Minister Gillian Keegan said the Government would not want to ‘cross that line of telling Israel it has anything but the right to defend itself’.", "contentSnippet": "Minister Gillian Keegan said the Government would not want to ‘cross that line of telling Israel it has anything but the right to defend itself’.", "guid": "b1116352", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T12:34:11.000Z" }, { @@ -195,10 +164,7 @@ "content": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", "contentSnippet": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", "guid": "b1116411", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T12:33:38.000Z" }, { @@ -212,10 +178,7 @@ "content": "

These are the tunes you need in your life

", "contentSnippet": "These are the tunes you need in your life", "guid": "b74803", - "categories": [ - "Music", - "Culture" - ], + "categories": ["Music", "Culture"], "isoDate": "2023-10-27T12:30:36.000Z" }, { @@ -229,10 +192,7 @@ "content": "

Who says you can only go to the seaside in summer? Isabelle Aron rounds up the best spots for a UK winter break by the sea

", "contentSnippet": "Who says you can only go to the seaside in summer? Isabelle Aron rounds up the best spots for a UK winter break by the sea", "guid": "b1115301", - "categories": [ - "Travel", - "Lifestyle" - ], + "categories": ["Travel", "Lifestyle"], "isoDate": "2023-10-27T12:29:25.000Z" }, { @@ -246,10 +206,7 @@ "content": "

Fans have been counting down to the release of the re-recorded 1989 album for quite some time now

", "contentSnippet": "Fans have been counting down to the release of the re-recorded 1989 album for quite some time now", "guid": "b1116415", - "categories": [ - "Music", - "Culture" - ], + "categories": ["Music", "Culture"], "isoDate": "2023-10-27T12:28:53.000Z" }, { @@ -263,10 +220,7 @@ "content": "

Egyptian surpassed Thierry Henry's goal record in European football

", "contentSnippet": "Egyptian surpassed Thierry Henry's goal record in European football", "guid": "b1116424", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T12:25:39.000Z" }, { @@ -280,9 +234,7 @@ "content": "

The couple welcomed son Roman together almost five months ago

", "contentSnippet": "The couple welcomed son Roman together almost five months ago", "guid": "b1116385", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T12:24:51.000Z" }, { @@ -296,10 +248,7 @@ "content": "Joshua Bowles, 29, described himself as a ‘terrorist’ to police after the attack in Cheltenham on March 9.", "contentSnippet": "Joshua Bowles, 29, described himself as a ‘terrorist’ to police after the attack in Cheltenham on March 9.", "guid": "b1116404", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T12:21:46.000Z" }, { @@ -313,10 +262,7 @@ "content": "

Kremlin rejects claims of Putin's poor ill-health and even death as 'absurd information'

", "contentSnippet": "Kremlin rejects claims of Putin's poor ill-health and even death as 'absurd information'", "guid": "b1116309", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2023-10-27T12:20:48.000Z" }, { @@ -330,10 +276,7 @@ "content": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", "contentSnippet": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", "guid": "b1116417", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T12:15:00.000Z" }, { @@ -347,10 +290,7 @@ "content": "

It comes as US fighter jets struck weapons and ammunition dumps in Syria in retaliation for attacks on America forces by Iranian-backed militia

", "contentSnippet": "It comes as US fighter jets struck weapons and ammunition dumps in Syria in retaliation for attacks on America forces by Iranian-backed militia", "guid": "b1116298", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2023-10-27T12:14:48.000Z" }, { @@ -364,11 +304,7 @@ "content": "

Stream, browse and game with fast loading times for less

", "contentSnippet": "Stream, browse and game with fast loading times for less", "guid": "b1113871", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], + "categories": ["Black Friday", "ES Best Home", "Shopping"], "isoDate": "2023-10-27T12:14:04.000Z" }, { @@ -382,9 +318,7 @@ "content": "

Titans of pop Sir Elton and Madonna have been fighting since 2002

", "contentSnippet": "Titans of pop Sir Elton and Madonna have been fighting since 2002", "guid": "b1116367", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T12:10:13.000Z" }, { @@ -398,10 +332,7 @@ "content": "

A dangerous attack dog was also used to frighten the man

", "contentSnippet": "A dangerous attack dog was also used to frighten the man", "guid": "b1116409", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T12:09:24.000Z" }, { @@ -415,10 +346,7 @@ "content": "

Former GCHQ worker Joshua Bowles attacked a US spy in revenge for 'murky' intelligence work

", "contentSnippet": "Former GCHQ worker Joshua Bowles attacked a US spy in revenge for 'murky' intelligence work", "guid": "b1116410", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T12:05:28.000Z" }, { @@ -432,10 +360,7 @@ "content": "The video to which the X owner replied was posted by a right-wing account.", "contentSnippet": "The video to which the X owner replied was posted by a right-wing account.", "guid": "b1116420", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T12:03:50.000Z" }, { @@ -449,10 +374,7 @@ "content": "

Cottagers desperate for defensive help after errors in Tottenham loss

", "contentSnippet": "Cottagers desperate for defensive help after errors in Tottenham loss", "guid": "b1116418", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T11:58:07.000Z" }, { @@ -466,10 +388,7 @@ "content": "

England take on Belgium tonight in Women's Nations League

", "contentSnippet": "England take on Belgium tonight in Women's Nations League", "guid": "b1116413", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T11:53:40.000Z" }, { @@ -483,10 +402,7 @@ "content": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", "contentSnippet": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", "guid": "b1116412", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T11:49:22.000Z" }, { @@ -500,11 +416,7 @@ "content": "

The annual sales extravaganza has resulted in brilliant discounts at the retailer

", "contentSnippet": "The annual sales extravaganza has resulted in brilliant discounts at the retailer", "guid": "b1113881", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], + "categories": ["Black Friday", "ES Best Home", "Shopping"], "isoDate": "2023-10-27T11:45:50.000Z" }, { @@ -518,11 +430,7 @@ "content": "

Shop the best bargains from the UK’s tech retailing giant

", "contentSnippet": "Shop the best bargains from the UK’s tech retailing giant", "guid": "b1113851", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], + "categories": ["Black Friday", "ES Best Home", "Shopping"], "isoDate": "2023-10-27T11:45:12.000Z" }, { @@ -536,10 +444,7 @@ "content": "

Fans dare to dream what Big Ange and his band of brothers can achieve... but always remember Arsenal

", "contentSnippet": "Fans dare to dream what Big Ange and his band of brothers can achieve... but always remember Arsenal", "guid": "b1116406", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T11:42:03.000Z" }, { @@ -553,10 +458,7 @@ "content": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", "contentSnippet": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", "guid": "b1116407", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T11:40:19.000Z" }, { @@ -570,10 +472,7 @@ "content": "

The environment secretary has announced new rules aimed at unifying how waste is collected

", "contentSnippet": "The environment secretary has announced new rules aimed at unifying how waste is collected", "guid": "b1069492", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T11:39:37.000Z" }, { @@ -587,10 +486,7 @@ "content": "First Minister Humza Yousaf has said the matter is being investigated.", "contentSnippet": "First Minister Humza Yousaf has said the matter is being investigated.", "guid": "b1116369", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T11:30:05.000Z" }, { @@ -604,10 +500,7 @@ "content": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", "contentSnippet": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", "guid": "b1116401", - "categories": [ - "Health", - "News" - ], + "categories": ["Health", "News"], "isoDate": "2023-10-27T11:27:05.000Z" }, { @@ -621,9 +514,7 @@ "content": "

Reports suggest the couple, who split last month after nearly 30 years together, were on \"different pages.\"

", "contentSnippet": "Reports suggest the couple, who split last month after nearly 30 years together, were on \"different pages.\"", "guid": "b1116390", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T11:24:44.000Z" }, { @@ -637,10 +528,7 @@ "content": "

Vintage buses will be running in aid of the Royal British Legion Poppy Appeal

", "contentSnippet": "Vintage buses will be running in aid of the Royal British Legion Poppy Appeal", "guid": "b1116223", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T11:23:44.000Z" }, { @@ -654,10 +542,7 @@ "content": "

The Springboks and the All Blacks compete for the Webb Ellis Cup in huge Paris showpiece

", "contentSnippet": "The Springboks and the All Blacks compete for the Webb Ellis Cup in huge Paris showpiece", "guid": "b1115100", - "categories": [ - "Rugby Union", - "Sport" - ], + "categories": ["Rugby Union", "Sport"], "isoDate": "2023-10-27T11:21:01.000Z" }, { @@ -671,10 +556,7 @@ "content": "

How to keep across England's final game in France

", "contentSnippet": "How to keep across England's final game in France", "guid": "b1116279", - "categories": [ - "Rugby Union", - "Sport" - ], + "categories": ["Rugby Union", "Sport"], "isoDate": "2023-10-27T11:20:42.000Z" }, { @@ -688,10 +570,7 @@ "content": "

England will wrap up their Rugby World Cup campaign tonight with the Bronze Final against Argentina.

", "contentSnippet": "England will wrap up their Rugby World Cup campaign tonight with the Bronze Final against Argentina.", "guid": "b1115139", - "categories": [ - "Rugby Union", - "Sport" - ], + "categories": ["Rugby Union", "Sport"], "isoDate": "2023-10-27T11:20:41.000Z" }, { @@ -705,10 +584,7 @@ "content": "The Government’s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", "contentSnippet": "The Government’s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", "guid": "b1116399", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T11:16:06.000Z" }, { @@ -722,10 +598,7 @@ "content": "

You can switch off or limit the new feature if you don't want to receive unwanted calls

", "contentSnippet": "You can switch off or limit the new feature if you don't want to receive unwanted calls", "guid": "b1116360", - "categories": [ - "Tech", - "News" - ], + "categories": ["Tech", "News"], "isoDate": "2023-10-27T11:15:50.000Z" }, { @@ -739,10 +612,7 @@ "content": "

The 15-year-old is afraid to go home following the infestation

", "contentSnippet": "The 15-year-old is afraid to go home following the infestation", "guid": "b1116310", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T11:15:03.000Z" }, { @@ -756,10 +626,7 @@ "content": "

Imam accused by MP and council of hate remarks in Gaza sermon

", "contentSnippet": "Imam accused by MP and council of hate remarks in Gaza sermon", "guid": "b1116253", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T11:12:05.000Z" }, { @@ -773,10 +640,7 @@ "content": "

Three people were arrested and charged after being caught by surveillance vans at the match

", "contentSnippet": "Three people were arrested and charged after being caught by surveillance vans at the match", "guid": "b1116370", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T11:10:23.000Z" }, { @@ -790,10 +654,7 @@ "content": "The album was released on the same date it was originally published in 2014.", "contentSnippet": "The album was released on the same date it was originally published in 2014.", "guid": "b1116394", - "categories": [ - "Music", - "Culture" - ], + "categories": ["Music", "Culture"], "isoDate": "2023-10-27T11:09:52.000Z" }, { @@ -807,10 +668,7 @@ "content": "The Taoiseach said there was a need to ‘double down on’ political, military and financial support for Ukraine.", "contentSnippet": "The Taoiseach said there was a need to ‘double down on’ political, military and financial support for Ukraine.", "guid": "b1116396", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T11:09:27.000Z" }, { @@ -824,10 +682,7 @@ "content": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", "contentSnippet": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", "guid": "b1116397", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T11:08:08.000Z" }, { @@ -841,10 +696,7 @@ "content": "

Guiding you to the best music events the capital has to offer this Halloween

", "contentSnippet": "Guiding you to the best music events the capital has to offer this Halloween", "guid": "b1115907", - "categories": [ - "Music", - "Culture" - ], + "categories": ["Music", "Culture"], "isoDate": "2023-10-27T11:07:24.000Z" }, { @@ -858,10 +710,7 @@ "content": "

Spurs boss happy with new 'dynamic' without record goalscorer but would have been able to 'squeeze him in' to league-leading side

", "contentSnippet": "Spurs boss happy with new 'dynamic' without record goalscorer but would have been able to 'squeeze him in' to league-leading side", "guid": "b1116387", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T11:04:50.000Z" }, { @@ -875,9 +724,7 @@ "content": "

Sick of London house shares and nowhere near getting a foot on the property ladder, Emily Bratt took a radical chance on a whole new life as a full time pet-sitter

", "contentSnippet": "Sick of London house shares and nowhere near getting a foot on the property ladder, Emily Bratt took a radical chance on a whole new life as a full time pet-sitter", "guid": "b1116068", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2023-10-27T11:04:46.000Z" }, { @@ -891,9 +738,7 @@ "content": "

A minister and technology advocate go head-to-head over facial recognition technology

", "contentSnippet": "A minister and technology advocate go head-to-head over facial recognition technology", "guid": "b1116372", - "categories": [ - "Comment" - ], + "categories": ["Comment"], "isoDate": "2023-10-27T11:03:25.000Z" }, { @@ -907,10 +752,7 @@ "content": "

Historic England hopes the map will teach people about the 'cultural significance' of ghost signs

", "contentSnippet": "Historic England hopes the map will teach people about the 'cultural significance' of ghost signs", "guid": "b1115961", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T11:03:01.000Z" }, { @@ -924,9 +766,7 @@ "content": "

Facial recognition technology — indeed any form of artificial intelligence — has a habit of raising hackles. Its use by police, even to prevent crime and protect people from harm, is no different. But should it be?

", "contentSnippet": "Facial recognition technology — indeed any form of artificial intelligence — has a habit of raising hackles. Its use by police, even to prevent crime and protect people from harm, is no different. But should it be?", "guid": "b1116393", - "categories": [ - "Comment" - ], + "categories": ["Comment"], "isoDate": "2023-10-27T11:02:29.000Z" }, { @@ -940,10 +780,7 @@ "content": "

'Maybe he was hoping for something a bit more heroic,' said artist Lorena Levi

", "contentSnippet": "'Maybe he was hoping for something a bit more heroic,' said artist Lorena Levi", "guid": "b1116377", - "categories": [ - "Diary", - "News" - ], + "categories": ["Diary", "News"], "isoDate": "2023-10-27T11:02:17.000Z" }, { @@ -957,10 +794,7 @@ "content": "

England need to set the tone for the new era and finish the Rugby World Cup on a high by securing third place

", "contentSnippet": "England need to set the tone for the new era and finish the Rugby World Cup on a high by securing third place", "guid": "b1116381", - "categories": [ - "Rugby Union", - "Sport" - ], + "categories": ["Rugby Union", "Sport"], "isoDate": "2023-10-27T11:00:52.000Z" }, { @@ -974,9 +808,7 @@ "content": "

My first job was as a cashier in a South Manchester car park, a Saturday post I held between the ages of 14 and 19, the exact ages I was working out how being gay might pan out for me. I worked alongside the Corps of Commissionaires, a rum, witty bunch of pensioner ex-servicemen who’d shine their shoes to perfection in order to chase down local scallies trying to hotwire a tasty, second-hand Volkswagen Polo. They were great, dependable men, many widowers, committed smokers with a plentiful reserve of dirty jokes.

", "contentSnippet": "My first job was as a cashier in a South Manchester car park, a Saturday post I held between the ages of 14 and 19, the exact ages I was working out how being gay might pan out for me. I worked alongside the Corps of Commissionaires, a rum, witty bunch of pensioner ex-servicemen who’d shine their shoes to perfection in order to chase down local scallies trying to hotwire a tasty, second-hand Volkswagen Polo. They were great, dependable men, many widowers, committed smokers with a plentiful reserve of dirty jokes.", "guid": "b1116365", - "categories": [ - "Comment" - ], + "categories": ["Comment"], "isoDate": "2023-10-27T11:00:29.000Z" }, { @@ -990,9 +822,7 @@ "content": "

ARIES Where are you resisting leadership? Be careful because the temporary float you’ve been holding on to might suddenly deflate, forcing you to realise you need more anchoring to keep grounded and secure.

", "contentSnippet": "ARIES Where are you resisting leadership? Be careful because the temporary float you’ve been holding on to might suddenly deflate, forcing you to realise you need more anchoring to keep grounded and secure.", "guid": "b1116133", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2023-10-27T11:00:00.000Z" }, { @@ -1006,10 +836,7 @@ "content": "

Britney Spears's memoir, The Woman in Me, is in two parts: the numb (part one) and the raging (part two). I wish I was surprised by her story, but it’s the story of female stars, particularly child ones. They are archetypes, devoured by expectation.

", "contentSnippet": "Britney Spears's memoir, The Woman in Me, is in two parts: the numb (part one) and the raging (part two). I wish I was surprised by her story, but it’s the story of female stars, particularly child ones. They are archetypes, devoured by expectation.", "guid": "b1116380", - "categories": [ - "Books", - "Culture" - ], + "categories": ["Books", "Culture"], "isoDate": "2023-10-27T11:00:00.000Z" }, { @@ -1023,10 +850,7 @@ "content": "

Banish autumn gloom on the long, dark evenings ahead with this foolproof round-the-clock lighting plan that will work for both task lighting and atmosphere

", "contentSnippet": "Banish autumn gloom on the long, dark evenings ahead with this foolproof round-the-clock lighting plan that will work for both task lighting and atmosphere", "guid": "b1116250", - "categories": [ - "Interiors", - "Homes & Property" - ], + "categories": ["Interiors", "Homes & Property"], "isoDate": "2023-10-27T11:00:00.000Z" }, { @@ -1040,9 +864,7 @@ "content": "

Spooky season is upon us, but how old is too old to go trick or treating?

", "contentSnippet": "Spooky season is upon us, but how old is too old to go trick or treating?", "guid": "b1116354", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2023-10-27T10:57:56.000Z" }, { @@ -1056,10 +878,7 @@ "content": "The toad is designed to be ‘as whimsical as possible without being too scary’.", "contentSnippet": "The toad is designed to be ‘as whimsical as possible without being too scary’.", "guid": "b1116391", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T10:55:52.000Z" }, { @@ -1073,10 +892,7 @@ "content": "

The Nigerian international is confident the Bees can improve on last season

", "contentSnippet": "The Nigerian international is confident the Bees can improve on last season", "guid": "b1116383", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T10:46:24.000Z" }, { @@ -1090,11 +906,7 @@ "content": "

Fasten your seatbelts; the deals are about to start flying

", "contentSnippet": "Fasten your seatbelts; the deals are about to start flying", "guid": "b1113895", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], + "categories": ["Black Friday", "ES Best Home", "Shopping"], "isoDate": "2023-10-27T10:46:23.000Z" }, { @@ -1108,10 +920,7 @@ "content": "The Taoiseach said there is not enough talk to convince people in Northern Ireland “that a united Ireland would be a warm home for them”.", "contentSnippet": "The Taoiseach said there is not enough talk to convince people in Northern Ireland “that a united Ireland would be a warm home for them”.", "guid": "b1116388", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T10:44:47.000Z" }, { @@ -1125,10 +934,7 @@ "content": "

Third-place finish at Rugby World Cup would be a fine return

", "contentSnippet": "Third-place finish at Rugby World Cup would be a fine return", "guid": "b1116374", - "categories": [ - "Rugby Union", - "Sport" - ], + "categories": ["Rugby Union", "Sport"], "isoDate": "2023-10-27T10:41:13.000Z" }, { @@ -1142,10 +948,7 @@ "content": "The business’s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", "contentSnippet": "The business’s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", "guid": "b1116315", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2023-10-27T10:40:59.000Z" }, { @@ -1159,10 +962,7 @@ "content": "

Around 75 per cent of Britons either do not know \"very much\" or simply \"anything\" about Black British history, a survey has revealed

", "contentSnippet": "Around 75 per cent of Britons either do not know \"very much\" or simply \"anything\" about Black British history, a survey has revealed", "guid": "b1116111", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T10:39:24.000Z" }, { @@ -1176,10 +976,7 @@ "content": "

The Shrubbery has also been home to an MP and a pre-Raphaelite painter in its 230-year history

", "contentSnippet": "The Shrubbery has also been home to an MP and a pre-Raphaelite painter in its 230-year history", "guid": "b1114967", - "categories": [ - "Property News", - "Homes & Property" - ], + "categories": ["Property News", "Homes & Property"], "isoDate": "2023-10-27T10:35:59.000Z" }, { @@ -1193,10 +990,7 @@ "content": "

An anonymous passenger expressed their \"disgust\" after spotting the unexpected guests

", "contentSnippet": "An anonymous passenger expressed their \"disgust\" after spotting the unexpected guests", "guid": "b1116362", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T10:35:23.000Z" }, { @@ -1210,10 +1004,7 @@ "content": "The Terminator actor and Rocky star would compete against each other in their respective action films and attacked each other in the press.", "contentSnippet": "The Terminator actor and Rocky star would compete against each other in their respective action films and attacked each other in the press.", "guid": "b1116382", - "categories": [ - "Celebrity News", - "Showbiz" - ], + "categories": ["Celebrity News", "Showbiz"], "isoDate": "2023-10-27T10:33:15.000Z" }, { @@ -1227,10 +1018,7 @@ "content": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", "contentSnippet": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", "guid": "b1116379", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T10:31:50.000Z" }, { @@ -1244,9 +1032,7 @@ "content": "

The US superstar's latest record caused widespread disruption on Apple Music

", "contentSnippet": "The US superstar's latest record caused widespread disruption on Apple Music", "guid": "b1116358", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T10:26:22.000Z" }, { @@ -1260,11 +1046,7 @@ "content": "

If the 10,000 winter sports fans that descended on London’s ExCel exhibition centre last weekend are anything to go by, this ski season promises to be noisy, vibrant and welcoming.

", "contentSnippet": "If the 10,000 winter sports fans that descended on London’s ExCel exhibition centre last weekend are anything to go by, this ski season promises to be noisy, vibrant and welcoming.", "guid": "b1116350", - "categories": [ - "Sustainable Travel", - "Travel", - "Lifestyle" - ], + "categories": ["Sustainable Travel", "Travel", "Lifestyle"], "isoDate": "2023-10-27T10:25:44.000Z" }, { @@ -1278,10 +1060,7 @@ "content": "

Everything you need to know as both sides go into the first Clasico of the campaign in fine form

", "contentSnippet": "Everything you need to know as both sides go into the first Clasico of the campaign in fine form", "guid": "b1116355", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T10:24:38.000Z" }, { @@ -1295,10 +1074,7 @@ "content": "

Medicines regulator seizes 369 potentially fake devices amid surge in demand

", "contentSnippet": "Medicines regulator seizes 369 potentially fake devices amid surge in demand", "guid": "b1116359", - "categories": [ - "Health", - "News" - ], + "categories": ["Health", "News"], "isoDate": "2023-10-27T10:23:08.000Z" }, { @@ -1312,10 +1088,7 @@ "content": "

Transport for London made the 'full and final' one-year offer to 16,000 London Underground staff last week

", "contentSnippet": "Transport for London made the 'full and final' one-year offer to 16,000 London Underground staff last week", "guid": "b1116376", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T10:22:05.000Z" }, { @@ -1329,10 +1102,7 @@ "content": "OpenAI is one of six tech giants to have published their responses to a Government request for AI safety policy details.", "contentSnippet": "OpenAI is one of six tech giants to have published their responses to a Government request for AI safety policy details.", "guid": "b1116375", - "categories": [ - "Tech", - "News" - ], + "categories": ["Tech", "News"], "isoDate": "2023-10-27T10:19:50.000Z" }, { @@ -1346,10 +1116,7 @@ "content": "

Full details of the proposed £1.5bn scheme emerged this week

", "contentSnippet": "Full details of the proposed £1.5bn scheme emerged this week", "guid": "b1116373", - "categories": [ - "Transport", - "News" - ], + "categories": ["Transport", "News"], "isoDate": "2023-10-27T10:18:24.000Z" }, { @@ -1363,10 +1130,7 @@ "content": "

Tottenham take on Crystal Palace tonight looking to extend their lead atop the Premier League table.

", "contentSnippet": "Tottenham take on Crystal Palace tonight looking to extend their lead atop the Premier League table.", "guid": "b1115697", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T10:16:50.000Z" }, { @@ -1380,10 +1144,7 @@ "content": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", "contentSnippet": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", "guid": "b1116344", - "categories": [ - "Environment", - "News" - ], + "categories": ["Environment", "News"], "isoDate": "2023-10-27T10:16:18.000Z" }, { @@ -1397,10 +1158,7 @@ "content": "

Spurs boss set to make late call on left-back due to muscle issue

", "contentSnippet": "Spurs boss set to make late call on left-back due to muscle issue", "guid": "b1116183", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T10:15:33.000Z" }, { @@ -1414,10 +1172,7 @@ "content": "

Spurs can go five points clear at the top of the Premier League with another London derby victory

", "contentSnippet": "Spurs can go five points clear at the top of the Premier League with another London derby victory", "guid": "b1115673", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T10:15:32.000Z" }, { @@ -1431,10 +1186,7 @@ "content": "

Another big injury blow for defender ahead of Spurs clash

", "contentSnippet": "Another big injury blow for defender ahead of Spurs clash", "guid": "b1116248", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T10:15:31.000Z" }, { @@ -1448,10 +1200,7 @@ "content": "

Former world champion \"well down the list\" of potential opponents for Gypsy King, who this weekend faces Francis Ngannou

", "contentSnippet": "Former world champion \"well down the list\" of potential opponents for Gypsy King, who this weekend faces Francis Ngannou", "guid": "b1116371", - "categories": [ - "Boxing", - "Sport" - ], + "categories": ["Boxing", "Sport"], "isoDate": "2023-10-27T10:14:37.000Z" }, { @@ -1465,10 +1214,7 @@ "content": "

Powerlist confirms outgoing Vogue editor is most powerful black person in Britain

", "contentSnippet": "Powerlist confirms outgoing Vogue editor is most powerful black person in Britain", "guid": "b1116353", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T10:10:27.000Z" }, { @@ -1482,9 +1228,7 @@ "content": "

The rerelease, called 1989 (Taylor's Version), includes five new tracks

", "contentSnippet": "The rerelease, called 1989 (Taylor's Version), includes five new tracks", "guid": "b1116347", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T10:08:35.000Z" }, { @@ -1498,10 +1242,7 @@ "content": "Ahmed Alid, 44, is accused of murder, attempted murder, and two counts of assaulting emergency workers by beating.", "contentSnippet": "Ahmed Alid, 44, is accused of murder, attempted murder, and two counts of assaulting emergency workers by beating.", "guid": "b1116368", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T10:05:53.000Z" }, { @@ -1515,10 +1256,7 @@ "content": "

Wider questions over long-term future of ODI cricket and England's place in it must be solved

", "contentSnippet": "Wider questions over long-term future of ODI cricket and England's place in it must be solved", "guid": "b1116366", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2023-10-27T10:05:50.000Z" }, { @@ -1532,10 +1270,7 @@ "content": "It will be published on November 9.", "contentSnippet": "It will be published on November 9.", "guid": "b1116364", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T10:01:27.000Z" }, { @@ -1549,10 +1284,7 @@ "content": "CDS Superstores said the first two standalone Wilko ‘concept stores’ will be opened in Plymouth and Exeter.", "contentSnippet": "CDS Superstores said the first two standalone Wilko ‘concept stores’ will be opened in Plymouth and Exeter.", "guid": "b1116363", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2023-10-27T10:01:09.000Z" }, { @@ -1566,11 +1298,7 @@ "content": "

Check out these irresistible bargains

", "contentSnippet": "Check out these irresistible bargains", "guid": "b1113834", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], + "categories": ["Black Friday", "ES Best Home", "Shopping"], "isoDate": "2023-10-27T09:57:45.000Z" }, { @@ -1584,11 +1312,7 @@ "content": "

The early box deals you need to know about

", "contentSnippet": "The early box deals you need to know about", "guid": "b1113872", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], + "categories": ["Black Friday", "ES Best Home", "Shopping"], "isoDate": "2023-10-27T09:53:37.000Z" }, { @@ -1602,9 +1326,7 @@ "content": "

The Sherlock actress confirmed she quit the BBC series on Tuesday for 'personal reasons'

", "contentSnippet": "The Sherlock actress confirmed she quit the BBC series on Tuesday for 'personal reasons'", "guid": "b1116335", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T09:51:38.000Z" }, { @@ -1618,10 +1340,7 @@ "content": "

Onana has insisted the teenager should not face punishment but an FA charge remains a possibility

", "contentSnippet": "Onana has insisted the teenager should not face punishment but an FA charge remains a possibility", "guid": "b1116316", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T09:39:39.000Z" }, { @@ -1635,10 +1354,7 @@ "content": "

Chelsea were happy to cash in on academy product but he's become a key cog in Mauricio Pochettino's improving Blues

", "contentSnippet": "Chelsea were happy to cash in on academy product but he's become a key cog in Mauricio Pochettino's improving Blues", "guid": "b1116343", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T09:11:30.000Z" }, { @@ -1652,10 +1368,7 @@ "content": "

Arsenal have tracked Portuguese star for some time, but he remains focused on battle to beat the drop at Molineux

", "contentSnippet": "Arsenal have tracked Portuguese star for some time, but he remains focused on battle to beat the drop at Molineux", "guid": "b1116334", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T08:39:40.000Z" }, { @@ -1669,10 +1382,7 @@ "content": "

Olympiacos defeat put Hammers' transfer decision in spotlight

", "contentSnippet": "Olympiacos defeat put Hammers' transfer decision in spotlight", "guid": "b1116331", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T08:28:35.000Z" }, { @@ -1686,10 +1396,7 @@ "content": "

Spurs face Crystal Palace tonight with the added pressure of unexpectedly leading the Premier League

", "contentSnippet": "Spurs face Crystal Palace tonight with the added pressure of unexpectedly leading the Premier League", "guid": "b1116319", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T07:55:39.000Z" }, { @@ -1703,10 +1410,7 @@ "content": "

Swifties have been showing their support by sticking to Taylor’s new versions of her classic hits

", "contentSnippet": "Swifties have been showing their support by sticking to Taylor’s new versions of her classic hits", "guid": "b1092880", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2023-10-27T15:55:09.000Z" }, { @@ -1720,10 +1424,7 @@ "content": "

Stress Awarness Week has taken place since 2018 with the aim of promoting health and wellbeing, and preventing stress

", "contentSnippet": "Stress Awarness Week has taken place since 2018 with the aim of promoting health and wellbeing, and preventing stress", "guid": "b1037393", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T15:49:37.000Z" }, { @@ -1737,10 +1438,7 @@ "content": "

Robert Card is suspected of killing 18 people and wounding 13 more after opening fire at a bowling alley

", "contentSnippet": "Robert Card is suspected of killing 18 people and wounding 13 more after opening fire at a bowling alley", "guid": "b1116297", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2023-10-27T15:49:22.000Z" }, { @@ -1754,10 +1452,7 @@ "content": "The rock star was interviewed by police but never arrested over the death.", "contentSnippet": "The rock star was interviewed by police but never arrested over the death.", "guid": "b1116492", - "categories": [ - "Music", - "Culture" - ], + "categories": ["Music", "Culture"], "isoDate": "2023-10-27T15:47:45.000Z" }, { @@ -1771,10 +1466,7 @@ "content": "When Joshua Hunt, 32, was arrested in May this year, he told police: ‘I am not a gimp.’", "contentSnippet": "When Joshua Hunt, 32, was arrested in May this year, he told police: ‘I am not a gimp.’", "guid": "b1116495", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T15:43:59.000Z" }, { @@ -1788,10 +1480,7 @@ "content": "

The former cryptocurrency executive is accused of stealing billions of dollars from customers and investors over several years

", "contentSnippet": "The former cryptocurrency executive is accused of stealing billions of dollars from customers and investors over several years", "guid": "b1116482", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2023-10-27T15:42:14.000Z" }, { @@ -1805,10 +1494,7 @@ "content": "

It’s time to put aside our superstitions and celebrate black cats

", "contentSnippet": "It’s time to put aside our superstitions and celebrate black cats", "guid": "b1116493", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T15:42:13.000Z" }, { @@ -1822,9 +1508,7 @@ "content": "

", "contentSnippet": "", "guid": "b1116278", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2023-10-27T15:41:43.000Z" }, { @@ -1838,12 +1522,7 @@ "content": "

There has been a resurgence in these nostalgic scents

", "contentSnippet": "There has been a resurgence in these nostalgic scents", "guid": "b1115920", - "categories": [ - "Fragrance", - "Beauty", - "ES Best Home", - "Shopping" - ], + "categories": ["Fragrance", "Beauty", "ES Best Home", "Shopping"], "isoDate": "2023-10-27T15:40:26.000Z" }, { @@ -1857,10 +1536,7 @@ "content": "

Darwin Nunez will be pressing to start in Sunday's Premier League clash at Anfield

", "contentSnippet": "Darwin Nunez will be pressing to start in Sunday's Premier League clash at Anfield", "guid": "b1116479", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T15:36:46.000Z" }, { @@ -1874,9 +1550,7 @@ "content": "

The unlikely duo bond over their shared love of eating food and going places

", "contentSnippet": "The unlikely duo bond over their shared love of eating food and going places", "guid": "b1116459", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T15:28:58.000Z" }, { @@ -1890,10 +1564,7 @@ "content": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", "contentSnippet": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", "guid": "b1116344", - "categories": [ - "Environment", - "News" - ], + "categories": ["Environment", "News"], "isoDate": "2023-10-27T15:27:36.000Z" }, { @@ -1907,10 +1578,7 @@ "content": "

Director Martin Scorsese has defended the length of his latest work, the acclaimed Killers of the Flower Moon

", "contentSnippet": "Director Martin Scorsese has defended the length of his latest work, the acclaimed Killers of the Flower Moon", "guid": "b1116451", - "categories": [ - "Film", - "Culture" - ], + "categories": ["Film", "Culture"], "isoDate": "2023-10-27T15:25:15.000Z" }, { @@ -1924,10 +1592,7 @@ "content": "

He is the latest Tory politician to take up a presenting role on the channel

", "contentSnippet": "He is the latest Tory politician to take up a presenting role on the channel", "guid": "b1116464", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T15:20:52.000Z" }, { @@ -1941,10 +1606,7 @@ "content": "

One woman said 'he was writhing and crawling as if in a military fashion', Bristol Magistrates Court heard

", "contentSnippet": "One woman said 'he was writhing and crawling as if in a military fashion', Bristol Magistrates Court heard", "guid": "b1116455", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T15:17:55.000Z" }, { @@ -1958,10 +1620,7 @@ "content": "The dispute centres on a company’s alleged refusal to reform working rotas and provide paid leave.", "contentSnippet": "The dispute centres on a company’s alleged refusal to reform working rotas and provide paid leave.", "guid": "b1116487", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T15:13:25.000Z" }, { @@ -1975,10 +1634,7 @@ "content": "

A winning team was left disappointed by their prize

", "contentSnippet": "A winning team was left disappointed by their prize", "guid": "b1116483", - "categories": [ - "Diary", - "News" - ], + "categories": ["Diary", "News"], "isoDate": "2023-10-27T15:12:19.000Z" }, { @@ -1992,10 +1648,7 @@ "content": "Minister Gillian Keegan said the Government would not want to ‘cross that line of telling Israel it has anything but the right to defend itself’.", "contentSnippet": "Minister Gillian Keegan said the Government would not want to ‘cross that line of telling Israel it has anything but the right to defend itself’.", "guid": "b1116352", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T15:12:09.000Z" }, { @@ -2009,10 +1662,7 @@ "content": "

Strikes and staffing challenges have caused chaos at many UK airports

", "contentSnippet": "Strikes and staffing challenges have caused chaos at many UK airports", "guid": "b1111239", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T15:11:49.000Z" }, { @@ -2026,10 +1676,7 @@ "content": "The First Minister has written to the leaders of all parties to warn without action, the situation will become ‘cataclysmic’.", "contentSnippet": "The First Minister has written to the leaders of all parties to warn without action, the situation will become ‘cataclysmic’.", "guid": "b1116484", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T15:10:07.000Z" }, { @@ -2043,9 +1690,7 @@ "content": "

City Comment: Chairman Sir Howard Davies has some tough decisions ahead

", "contentSnippet": "City Comment: Chairman Sir Howard Davies has some tough decisions ahead", "guid": "b1116467", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2023-10-27T15:09:06.000Z" }, { @@ -2059,10 +1704,7 @@ "content": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", "contentSnippet": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", "guid": "b1116485", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T15:09:00.000Z" }, { @@ -2076,10 +1718,7 @@ "content": "

Bealonians FC fears for future after premier league side given lease of playing fields

", "contentSnippet": "Bealonians FC fears for future after premier league side given lease of playing fields", "guid": "b1116439", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T15:07:44.000Z" }, { @@ -2093,10 +1732,7 @@ "content": "

The Premier League champions are almost at full strength for the Manchester derby

", "contentSnippet": "The Premier League champions are almost at full strength for the Manchester derby", "guid": "b1116478", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T15:07:19.000Z" }, { @@ -2110,10 +1746,7 @@ "content": "The coroner said Duangphet Phromthep’s death ‘could not have been foreseen or prevented’.", "contentSnippet": "The coroner said Duangphet Phromthep’s death ‘could not have been foreseen or prevented’.", "guid": "b1116480", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T15:06:10.000Z" }, { @@ -2127,10 +1760,7 @@ "content": "

George Watkins preyed on young teenagers who hadn't come out to their families

", "contentSnippet": "George Watkins preyed on young teenagers who hadn't come out to their families", "guid": "b1116469", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T15:05:06.000Z" }, { @@ -2144,10 +1774,7 @@ "content": "He was fined £100 and ordered to pay £200 compensation to each of his three victims and £620 prosecution costs.", "contentSnippet": "He was fined £100 and ordered to pay £200 compensation to each of his three victims and £620 prosecution costs.", "guid": "b1116481", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T15:03:54.000Z" }, { @@ -2161,10 +1788,7 @@ "content": "

Sayce Holmes-Lewis criticised for 'hugely irresponsible comments' - but City Hall says members are expected to have 'a variety of strong opinions and perspectives'

", "contentSnippet": "Sayce Holmes-Lewis criticised for 'hugely irresponsible comments' - but City Hall says members are expected to have 'a variety of strong opinions and perspectives'", "guid": "b1116259", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T15:02:18.000Z" }, { @@ -2178,10 +1802,7 @@ "content": "

New research has revealed the top 20 modern spooks for Brits – and you may be surprised

", "contentSnippet": "New research has revealed the top 20 modern spooks for Brits – and you may be surprised", "guid": "b1116423", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T15:00:54.000Z" }, { @@ -2195,10 +1816,7 @@ "content": "

Travis Kelce is the fashion boys' latest recruit — and he is going gangster

", "contentSnippet": "Travis Kelce is the fashion boys' latest recruit — and he is going gangster", "guid": "b1116416", - "categories": [ - "Fashion", - "Lifestyle" - ], + "categories": ["Fashion", "Lifestyle"], "isoDate": "2023-10-27T15:00:36.000Z" }, { @@ -2212,9 +1830,7 @@ "content": "

If you want to annoy an economist, try mixing up stock and flow. This is a mistake commonly made even by business journalists (though not Jonathan Prynn, of course) when attempting to describe the value of large companies.

", "contentSnippet": "If you want to annoy an economist, try mixing up stock and flow. This is a mistake commonly made even by business journalists (though not Jonathan Prynn, of course) when attempting to describe the value of large companies.", "guid": "b1116475", - "categories": [ - "Comment" - ], + "categories": ["Comment"], "isoDate": "2023-10-27T14:58:27.000Z" }, { @@ -2228,9 +1844,7 @@ "content": "

The move could see hundreds of new homes created for Londoners

", "contentSnippet": "The move could see hundreds of new homes created for Londoners", "guid": "b1116472", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2023-10-27T14:56:03.000Z" }, { @@ -2244,10 +1858,7 @@ "content": "The Labour leader is standing by his stance of supporting Israel’s right to self defence despite the Palestinian civilians being killed.", "contentSnippet": "The Labour leader is standing by his stance of supporting Israel’s right to self defence despite the Palestinian civilians being killed.", "guid": "b1116474", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T14:55:39.000Z" }, { @@ -2261,10 +1872,7 @@ "content": "Unions accused the firm of ‘insatiable greed’.", "contentSnippet": "Unions accused the firm of ‘insatiable greed’.", "guid": "b1116473", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2023-10-27T14:54:38.000Z" }, { @@ -2278,10 +1886,7 @@ "content": "

'Concern that Bob is in danger increases every moment that he remains missing', say police

", "contentSnippet": "'Concern that Bob is in danger increases every moment that he remains missing', say police", "guid": "b1116463", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T14:45:31.000Z" }, { @@ -2295,10 +1900,7 @@ "content": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", "contentSnippet": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", "guid": "b1116471", - "categories": [ - "Celebrity News", - "Showbiz" - ], + "categories": ["Celebrity News", "Showbiz"], "isoDate": "2023-10-27T14:43:52.000Z" }, { @@ -2312,10 +1914,7 @@ "content": "

Daniel Martin, celebrity MUA for Jessica Biel, Michelle Yeoh and Priyanka Chopra, shares his simple tips for day-to-night makeup, with Madeleine Spencer

", "contentSnippet": "Daniel Martin, celebrity MUA for Jessica Biel, Michelle Yeoh and Priyanka Chopra, shares his simple tips for day-to-night makeup, with Madeleine Spencer", "guid": "b1115419", - "categories": [ - "Beauty", - "Lifestyle" - ], + "categories": ["Beauty", "Lifestyle"], "isoDate": "2023-10-27T14:27:05.000Z" }, { @@ -2329,10 +1928,7 @@ "content": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", "contentSnippet": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", "guid": "b1116462", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T14:25:53.000Z" }, { @@ -2346,9 +1942,7 @@ "content": "

The move got the thumbs up by the Transformers star's pop star-turned-fashion designer mother-in-law

", "contentSnippet": "The move got the thumbs up by the Transformers star's pop star-turned-fashion designer mother-in-law", "guid": "b1116421", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T14:23:23.000Z" }, { @@ -2362,10 +1956,7 @@ "content": "

Silva signed a new three-year contract extension at Craven Cottage this week

", "contentSnippet": "Silva signed a new three-year contract extension at Craven Cottage this week", "guid": "b1116461", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T14:22:01.000Z" }, { @@ -2379,9 +1970,7 @@ "content": "

The Scottish crooner beat out the likes of Harry Styles and Zayn Malik

", "contentSnippet": "The Scottish crooner beat out the likes of Harry Styles and Zayn Malik", "guid": "b1116438", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2023-10-27T14:15:40.000Z" }, { @@ -2395,9 +1984,7 @@ "content": "

IAG said that leisure demand was “very strong”, but business travel has been slower to recover

", "contentSnippet": "IAG said that leisure demand was “very strong”, but business travel has been slower to recover", "guid": "b1116341", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2023-10-27T14:12:54.000Z" }, { @@ -2411,10 +1998,7 @@ "content": "

From Squid Game competitions to virtual island paradises, here's our pick of the best of the best gaming bars

", "contentSnippet": "From Squid Game competitions to virtual island paradises, here's our pick of the best of the best gaming bars", "guid": "b1116361", - "categories": [ - "Gaming", - "Culture" - ], + "categories": ["Gaming", "Culture"], "isoDate": "2023-10-27T14:09:40.000Z" }, { @@ -2428,10 +2012,7 @@ "content": "

", "contentSnippet": "", "guid": "b1116450", - "categories": [ - "Podcasts", - "Comment" - ], + "categories": ["Podcasts", "Comment"], "isoDate": "2023-10-27T14:07:58.000Z" }, { @@ -2445,10 +2026,7 @@ "content": "

Robert Lewandowski among major Blaugrana doubts as Los Blancos ponder major midfield question

", "contentSnippet": "Robert Lewandowski among major Blaugrana doubts as Los Blancos ponder major midfield question", "guid": "b1116329", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T14:02:00.000Z" }, { @@ -2462,10 +2040,7 @@ "content": "

She's bidding to be the next Chancellor, so what can we learn from this book?

", "contentSnippet": "She's bidding to be the next Chancellor, so what can we learn from this book?", "guid": "b1116349", - "categories": [ - "Books", - "Culture" - ], + "categories": ["Books", "Culture"], "isoDate": "2023-10-27T14:00:59.000Z" }, { @@ -2479,9 +2054,7 @@ "content": "

As he releases his 10-track mixtape, garage DJ and producer p-rallel talks dream collaborations, the best venues in London right now, and five songs to kickstart your Friday night in the city

", "contentSnippet": "As he releases his 10-track mixtape, garage DJ and producer p-rallel talks dream collaborations, the best venues in London right now, and five songs to kickstart your Friday night in the city", "guid": "b1116432", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "isoDate": "2023-10-27T14:00:39.000Z" }, { @@ -2495,10 +2068,7 @@ "content": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", "contentSnippet": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", "guid": "b1116457", - "categories": [ - "Environment", - "News" - ], + "categories": ["Environment", "News"], "isoDate": "2023-10-27T14:00:05.000Z" }, { @@ -2512,10 +2082,7 @@ "content": "

The Gunners will be without Thomas Partey and Gabriel Jesus for the next few weeks

", "contentSnippet": "The Gunners will be without Thomas Partey and Gabriel Jesus for the next few weeks", "guid": "b1116449", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T13:50:13.000Z" }, { @@ -2529,10 +2096,7 @@ "content": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", "contentSnippet": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", "guid": "b1116435", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T13:48:01.000Z" }, { @@ -2546,10 +2110,7 @@ "content": "Jane Morrison, who lost her wife to coronavirus in 2020, addressed the Scottish Covid-19 Inquiry on Friday.", "contentSnippet": "Jane Morrison, who lost her wife to coronavirus in 2020, addressed the Scottish Covid-19 Inquiry on Friday.", "guid": "b1116453", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T13:45:36.000Z" }, { @@ -2563,11 +2124,7 @@ "content": "

Style steals for all

", "contentSnippet": "Style steals for all", "guid": "b1113847", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], + "categories": ["Black Friday", "ES Best Home", "Shopping"], "isoDate": "2023-10-27T13:44:14.000Z" }, { @@ -2581,10 +2138,7 @@ "content": "

We pick the best art shows to enjoy this week

", "contentSnippet": "We pick the best art shows to enjoy this week", "guid": "b1102286", - "categories": [ - "Exhibitions", - "Culture" - ], + "categories": ["Exhibitions", "Culture"], "isoDate": "2023-10-27T13:36:46.000Z" }, { @@ -2598,10 +2152,7 @@ "content": "

The All Blacks were ranked fifth in the world as recently as last summer

", "contentSnippet": "The All Blacks were ranked fifth in the world as recently as last summer", "guid": "b1116419", - "categories": [ - "Rugby Union", - "Sport" - ], + "categories": ["Rugby Union", "Sport"], "isoDate": "2023-10-27T13:35:50.000Z" }, { @@ -2615,10 +2166,7 @@ "content": "

London is brimming with spooky stories about phantoms and supernatural incidents

", "contentSnippet": "London is brimming with spooky stories about phantoms and supernatural incidents", "guid": "b1033793", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T13:32:42.000Z" }, { @@ -2632,10 +2180,7 @@ "content": "Justice McAlinden said the inquest into the deaths of eight IRA men and a civilian will take six months to hear.", "contentSnippet": "Justice McAlinden said the inquest into the deaths of eight IRA men and a civilian will take six months to hear.", "guid": "b1116445", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T13:31:30.000Z" }, { @@ -2649,10 +2194,7 @@ "content": "

These birds were adamant they were not leaving the nest

", "contentSnippet": "These birds were adamant they were not leaving the nest", "guid": "b1116436", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2023-10-27T13:31:21.000Z" }, { @@ -2666,10 +2208,7 @@ "content": "

Mayor of London calls for a stop to killing and time for 'vital aid supplies to reach those who need it' in Gaza

", "contentSnippet": "Mayor of London calls for a stop to killing and time for 'vital aid supplies to reach those who need it' in Gaza", "guid": "b1116337", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T13:30:39.000Z" }, { @@ -2683,10 +2222,7 @@ "content": "The show ended its West End run earlier this year after four years and more than 1,000 performances at the Theatre Royal Haymarket.", "contentSnippet": "The show ended its West End run earlier this year after four years and more than 1,000 performances at the Theatre Royal Haymarket.", "guid": "b1116447", - "categories": [ - "Celebrity News", - "Showbiz" - ], + "categories": ["Celebrity News", "Showbiz"], "isoDate": "2023-10-27T13:30:02.000Z" }, { @@ -2700,10 +2236,7 @@ "content": "

Another day, another Wordle clue for players of the popular game

", "contentSnippet": "Another day, another Wordle clue for players of the popular game", "guid": "b1007895", - "categories": [ - "Tech", - "News" - ], + "categories": ["Tech", "News"], "isoDate": "2023-10-27T13:27:56.000Z" }, { @@ -2717,10 +2250,7 @@ "content": "

The protest in central London was organised by Parents for Palestine

", "contentSnippet": "The protest in central London was organised by Parents for Palestine", "guid": "b1116422", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2023-10-27T13:22:42.000Z" }, { @@ -2734,10 +2264,7 @@ "content": "A bomb could be heard approaching and exploding outside the building Zaynab Wandawi was in while she spoke with the PA news agency.", "contentSnippet": "A bomb could be heard approaching and exploding outside the building Zaynab Wandawi was in while she spoke with the PA news agency.", "guid": "b1116440", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T13:22:34.000Z" }, { @@ -2751,10 +2278,7 @@ "content": "West Kirby Grammar School pupil Jessica Baker, 15, and driver Stephen Shrimpton were killed when a school coach overturned on the M53 in September.", "contentSnippet": "West Kirby Grammar School pupil Jessica Baker, 15, and driver Stephen Shrimpton were killed when a school coach overturned on the M53 in September.", "guid": "b1116442", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T13:18:06.000Z" }, { @@ -2768,10 +2292,7 @@ "content": "

MP for Reigate is now an independent after having Tory whip removed

", "contentSnippet": "MP for Reigate is now an independent after having Tory whip removed", "guid": "b1116332", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2023-10-27T13:15:22.000Z" }, { @@ -2785,10 +2306,7 @@ "content": "

The uncle of Hollywood actress Emily Blunt was arrested by Surrey police this week, saying he will \"co-operate fully\" with the investigation. Katie Strick charts his career so far

", "contentSnippet": "The uncle of Hollywood actress Emily Blunt was arrested by Surrey police this week, saying he will \"co-operate fully\" with the investigation. Katie Strick charts his career so far", "guid": "b1116320", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2023-10-27T13:09:47.000Z" }, { @@ -2802,10 +2320,7 @@ "content": "

Two minors banned from Manchester City matches ahead of derby

", "contentSnippet": "Two minors banned from Manchester City matches ahead of derby", "guid": "b1116428", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T13:09:40.000Z" }, { @@ -2819,9 +2334,7 @@ "content": "

East London’s resident witch Semra Haksever buys her textbooks from Treadwell’s, forages on Hackney Marshes and wants to transform the Edition into a hotel for cats

", "contentSnippet": "East London’s resident witch Semra Haksever buys her textbooks from Treadwell’s, forages on Hackney Marshes and wants to transform the Edition into a hotel for cats", "guid": "b1116321", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2023-10-27T13:06:52.000Z" }, { @@ -2835,10 +2348,7 @@ "content": "

Two of the women at the London rally were spotted with the paraglider images on their jackets. A third had a similar image on a placard

", "contentSnippet": "Two of the women at the London rally were spotted with the paraglider images on their jackets. A third had a similar image on a placard", "guid": "b1116425", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2023-10-27T13:06:28.000Z" }, { @@ -2852,10 +2362,7 @@ "content": "

Garnacho could be punished for a controversial post despit ehte

", "contentSnippet": "Garnacho could be punished for a controversial post despit ehte", "guid": "b1116434", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2023-10-27T13:05:10.000Z" }, { @@ -2869,10 +2376,7 @@ "content": "Sainsbury’s is expected to provide an insight into the continued trajectory of food inflation in the update on November 2.", "contentSnippet": "Sainsbury’s is expected to provide an insight into the continued trajectory of food inflation in the update on November 2.", "guid": "b1116433", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2023-10-27T13:01:18.000Z" }, { @@ -2886,10 +2390,7 @@ "content": "

Defence Secretary Grant Shapps says ‘naive’ not to expect an Israeli response to Iran but warns against actions spiralling out of control

", "contentSnippet": "Defence Secretary Grant Shapps says ‘naive’ not to expect an Israeli response to Iran but warns against actions spiralling out of control", "guid": "b1152263", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T08:27:32.000Z" }, { @@ -2903,10 +2404,7 @@ "content": "Edinburgh Trams Limited was last year fined £240,000 over the incident.", "contentSnippet": "Edinburgh Trams Limited was last year fined £240,000 over the incident.", "guid": "b1152250", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T08:22:00.000Z" }, { @@ -2920,10 +2418,7 @@ "content": "

Ukraine issues dire warning as US lawmakers prepare to vote on multi-billion dollar security package

", "contentSnippet": "Ukraine issues dire warning as US lawmakers prepare to vote on multi-billion dollar security package", "guid": "b1152248", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2024-04-18T08:21:26.000Z" }, { @@ -2937,10 +2432,7 @@ "content": "

Exclusive Ipsos survey for The Standard also dashes hopes among some Tories that replacing Mr Sunak would boost their party’s fortunes

", "contentSnippet": "Exclusive Ipsos survey for The Standard also dashes hopes among some Tories that replacing Mr Sunak would boost their party’s fortunes", "guid": "b1152246", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T08:20:27.000Z" }, { @@ -2954,9 +2446,7 @@ "content": "

The couple married in 1991 and had two children together

", "contentSnippet": "The couple married in 1991 and had two children together", "guid": "b1152208", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T08:19:42.000Z" }, { @@ -2970,10 +2460,7 @@ "content": "

With 40 top-ten hits, 14 albums and with over 60 single releases as a lead artist, it’s no easy task picking our favourite Swift tracks

", "contentSnippet": "With 40 top-ten hits, 14 albums and with over 60 single releases as a lead artist, it’s no easy task picking our favourite Swift tracks", "guid": "a4127266", - "categories": [ - "Music", - "Culture" - ], + "categories": ["Music", "Culture"], "isoDate": "2024-04-18T08:19:30.000Z" }, { @@ -2987,10 +2474,7 @@ "content": "The group is reducing its executive director leadership team to 10 from 11.", "contentSnippet": "The group is reducing its executive director leadership team to 10 from 11.", "guid": "b1152267", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-18T08:18:02.000Z" }, { @@ -3004,9 +2488,7 @@ "content": "

The Harry Potter star revealed Samantha had passed away on March 24

", "contentSnippet": "The Harry Potter star revealed Samantha had passed away on March 24", "guid": "b1152261", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T08:15:41.000Z" }, { @@ -3020,10 +2502,7 @@ "content": "

See the best images of the day from around the world.

", "contentSnippet": "See the best images of the day from around the world.", "guid": "b39639", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2024-04-18T08:15:10.000Z" }, { @@ -3037,10 +2516,7 @@ "content": "

Think you need to spend big to get your hands on a great beauty buy? Think again

", "contentSnippet": "Think you need to spend big to get your hands on a great beauty buy? Think again", "guid": "b1151981", - "categories": [ - "Beauty", - "Lifestyle" - ], + "categories": ["Beauty", "Lifestyle"], "isoDate": "2024-04-18T08:14:31.000Z" }, { @@ -3054,9 +2530,7 @@ "content": "

It also appears to be the end of the road for music mogul Merck Mercuriadis’ role in managing the famous songs fund

", "contentSnippet": "It also appears to be the end of the road for music mogul Merck Mercuriadis’ role in managing the famous songs fund", "guid": "b1152238", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T08:11:53.000Z" }, { @@ -3070,10 +2544,7 @@ "content": "

Kurt Forbes has been jailed for 11 years for raping man three times in Hackney attacks

", "contentSnippet": "Kurt Forbes has been jailed for 11 years for raping man three times in Hackney attacks", "guid": "b1152243", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T08:10:55.000Z" }, { @@ -3087,10 +2558,7 @@ "content": "

The major reasons for the UK's recent high inflation have been skyrocketing food and energy bills

", "contentSnippet": "The major reasons for the UK's recent high inflation have been skyrocketing food and energy bills", "guid": "b1013509", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T08:09:13.000Z" }, { @@ -3104,10 +2572,7 @@ "content": "

Speciality coffee bar Shot sourced the drink from the Japanese island of Okinawa

", "contentSnippet": "Speciality coffee bar Shot sourced the drink from the Japanese island of Okinawa", "guid": "b1152253", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-18T08:09:04.000Z" }, { @@ -3121,9 +2586,7 @@ "content": "

The disgraced NFL star was cremated at a small service attended by family and friends, a week after his death

", "contentSnippet": "The disgraced NFL star was cremated at a small service attended by family and friends, a week after his death", "guid": "b1152233", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T08:06:47.000Z" }, { @@ -3137,10 +2600,7 @@ "content": "The retailer told investors on Thursday that sales grew by 3% to £435 million over the 13 weeks to March 30.", "contentSnippet": "The retailer told investors on Thursday that sales grew by 3% to £435 million over the 13 weeks to March 30.", "guid": "b1152262", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-18T08:04:33.000Z" }, { @@ -3154,10 +2614,7 @@ "content": "

Chaos continues at the airport after Tuesday's storm flooded the runway, resulting in flight diversions, delays and cancellations

", "contentSnippet": "Chaos continues at the airport after Tuesday's storm flooded the runway, resulting in flight diversions, delays and cancellations", "guid": "b1152227", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2024-04-18T08:02:29.000Z" }, { @@ -3171,10 +2628,7 @@ "content": "

Sonia Nixon was branded a ‘massive drain’ for her nuisance 999 calls

", "contentSnippet": "Sonia Nixon was branded a ‘massive drain’ for her nuisance 999 calls", "guid": "b1152249", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T08:02:22.000Z" }, { @@ -3188,10 +2642,7 @@ "content": "

Money, not grades, is the main barrier to university for many teens – but our pointers on how to apply for extra funds can help

", "contentSnippet": "Money, not grades, is the main barrier to university for many teens – but our pointers on how to apply for extra funds can help", "guid": "b1082414", - "categories": [ - "Step Up", - "The Optimist" - ], + "categories": ["Step Up", "The Optimist"], "isoDate": "2024-04-18T08:00:17.000Z" }, { @@ -3205,10 +2656,7 @@ "content": "

Commuters travelling to London Waterloo are facing major disruption after a gas leak shut all lines near Salisbury.

", "contentSnippet": "Commuters travelling to London Waterloo are facing major disruption after a gas leak shut all lines near Salisbury.", "guid": "b1152236", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-18T08:00:03.000Z" }, { @@ -3222,10 +2670,7 @@ "content": "Broadcaster Anita Rani will take over on Thursday and continue to host her current Friday and Saturday editions.", "contentSnippet": "Broadcaster Anita Rani will take over on Thursday and continue to host her current Friday and Saturday editions.", "guid": "b1152260", - "categories": [ - "Celebrity News", - "Showbiz" - ], + "categories": ["Celebrity News", "Showbiz"], "isoDate": "2024-04-18T08:00:00.000Z" }, { @@ -3239,10 +2684,7 @@ "content": "The TV star said she has had a response from her local council.", "contentSnippet": "The TV star said she has had a response from her local council.", "guid": "b1152252", - "categories": [ - "Celebrity News", - "Showbiz" - ], + "categories": ["Celebrity News", "Showbiz"], "isoDate": "2024-04-18T07:51:38.000Z" }, { @@ -3256,9 +2698,7 @@ "content": "

City Voices: Taken together, London’s top flight mightn’t look so appealing. But that doesn’t mean that all UK stocks should be written off.

", "contentSnippet": "City Voices: Taken together, London’s top flight mightn’t look so appealing. But that doesn’t mean that all UK stocks should be written off.", "guid": "b1151620", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T07:49:50.000Z" }, { @@ -3272,10 +2712,7 @@ "content": "

James Moore faces five counts including grievous bodily harm and drug offences

", "contentSnippet": "James Moore faces five counts including grievous bodily harm and drug offences", "guid": "b1152235", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T07:49:39.000Z" }, { @@ -3289,9 +2726,7 @@ "content": "

Producer Carol Baum reportedly critiqued Euphoria star Sweeney while speaking with a New York Times film critic before a screening of Dead Ringers

", "contentSnippet": "Producer Carol Baum reportedly critiqued Euphoria star Sweeney while speaking with a New York Times film critic before a screening of Dead Ringers", "guid": "b1152220", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T07:47:26.000Z" }, { @@ -3305,10 +2740,7 @@ "content": "

PJ Harvey’s ceaselessly repetitive songs don’t make their case for being in the show

", "contentSnippet": "PJ Harvey’s ceaselessly repetitive songs don’t make their case for being in the show", "guid": "b1152244", - "categories": [ - "Theatre", - "Culture" - ], + "categories": ["Theatre", "Culture"], "isoDate": "2024-04-18T07:45:51.000Z" }, { @@ -3322,9 +2754,7 @@ "content": "

Liz Truss, Arron Banks and Andy Wigmore were among those cheering when Trump gave a speech at Nigel Farage’s 60th birthday bash last week — so who else has made it into the former POTUS’ UK power base? Katie Strick reports

", "contentSnippet": "Liz Truss, Arron Banks and Andy Wigmore were among those cheering when Trump gave a speech at Nigel Farage’s 60th birthday bash last week — so who else has made it into the former POTUS’ UK power base? Katie Strick reports", "guid": "b1151986", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T07:43:16.000Z" }, { @@ -3338,10 +2768,7 @@ "content": "The Defence Secretary said ministers will do ‘whatever we need to do’ to fly asylum seekers to the east African nation.", "contentSnippet": "The Defence Secretary said ministers will do ‘whatever we need to do’ to fly asylum seekers to the east African nation.", "guid": "b1152254", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T07:42:42.000Z" }, { @@ -3355,9 +2782,7 @@ "content": "

The FTSE 100 has opened higher today, with easyJet among the risers after its winter trading update.

", "contentSnippet": "The FTSE 100 has opened higher today, with easyJet among the risers after its winter trading update.", "guid": "b1152228", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T07:41:10.000Z" }, { @@ -3371,10 +2796,7 @@ "content": "The Fylde MP is alleged to have used campaign funds to pay off ‘bad people’ and cover medical expenses.", "contentSnippet": "The Fylde MP is alleged to have used campaign funds to pay off ‘bad people’ and cover medical expenses.", "guid": "b1152229", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T07:33:14.000Z" }, { @@ -3388,10 +2810,7 @@ "content": "The airline said it expects its headline loss before tax for the six months to the end of March to be up to £360 million.", "contentSnippet": "The airline said it expects its headline loss before tax for the six months to the end of March to be up to £360 million.", "guid": "b1152234", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-18T07:31:00.000Z" }, { @@ -3405,10 +2824,7 @@ "content": "The pledge was launched ahead of local and mayoral elections set to take place in May.", "contentSnippet": "The pledge was launched ahead of local and mayoral elections set to take place in May.", "guid": "b1152247", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T07:30:00.000Z" }, { @@ -3422,10 +2838,7 @@ "content": "

Fylde MP Menzies allegedly used cash raised by donors to pay medical expenses and sought money from an aide after being detained by ‘bad people’

", "contentSnippet": "Fylde MP Menzies allegedly used cash raised by donors to pay medical expenses and sought money from an aide after being detained by ‘bad people’", "guid": "b1152206", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T07:27:20.000Z" }, { @@ -3439,10 +2852,7 @@ "content": "

All primary school children in London will enjoy free school meals for another four years if Sadiq Khan is re-elected mayor, he promised on Thursday.

", "contentSnippet": "All primary school children in London will enjoy free school meals for another four years if Sadiq Khan is re-elected mayor, he promised on Thursday.", "guid": "b1152191", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-18T07:26:08.000Z" }, { @@ -3456,10 +2866,7 @@ "content": "

But peers again blocked Rishi Sunak’s flagship Rwanda Bill amid concerns over the safety of asylum seekers flown to Kigali

", "contentSnippet": "But peers again blocked Rishi Sunak’s flagship Rwanda Bill amid concerns over the safety of asylum seekers flown to Kigali", "guid": "b1152241", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T07:25:44.000Z" }, { @@ -3473,10 +2880,7 @@ "content": "

Egypt is a popular destination for UK holidaymakers so what does the latest travel advice tell us?

", "contentSnippet": "Egypt is a popular destination for UK holidaymakers so what does the latest travel advice tell us?", "guid": "b1113133", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2024-04-18T07:23:09.000Z" }, { @@ -3490,10 +2894,7 @@ "content": "Scotland Net-Zero Secretary Màiri McAllan will give an update to the Scottish Parliament.", "contentSnippet": "Scotland Net-Zero Secretary Màiri McAllan will give an update to the Scottish Parliament.", "guid": "b1152237", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T07:22:46.000Z" }, { @@ -3507,10 +2908,7 @@ "content": "The group said UK and Ireland order numbers remained flat in the first quarter.", "contentSnippet": "The group said UK and Ireland order numbers remained flat in the first quarter.", "guid": "b1152245", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-18T07:16:57.000Z" }, { @@ -3524,10 +2922,7 @@ "content": "

Jurgen Klopp has a new injury concern ahead of quarter-final comeback mission

", "contentSnippet": "Jurgen Klopp has a new injury concern ahead of quarter-final comeback mission", "guid": "b1151855", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T07:13:34.000Z" }, { @@ -3541,10 +2936,7 @@ "content": "The board of the fund, which owns the back catalogues for artists including Justin Bieber and Shakira, has backed the 93.2 per share deal.", "contentSnippet": "The board of the fund, which owns the back catalogues for artists including Justin Bieber and Shakira, has backed the 93.2 per share deal.", "guid": "b1152242", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T07:12:01.000Z" }, { @@ -3558,10 +2950,7 @@ "content": "

Artists are urging fellow music professionals to share their experiences in the newly launched anonymous YourSafetyYourSay survey.

", "contentSnippet": "Artists are urging fellow music professionals to share their experiences in the newly launched anonymous YourSafetyYourSay survey.", "guid": "b1152240", - "categories": [ - "Music", - "Culture" - ], + "categories": ["Music", "Culture"], "isoDate": "2024-04-18T07:09:50.000Z" }, { @@ -3575,10 +2964,7 @@ "content": "George Scholey hopes to achieve the Guinness World Record for most rotating puzzle cubes solved while running a marathon, currently standing at 420.", "contentSnippet": "George Scholey hopes to achieve the Guinness World Record for most rotating puzzle cubes solved while running a marathon, currently standing at 420.", "guid": "b1152239", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T07:00:26.000Z" }, { @@ -3592,10 +2978,7 @@ "content": "

Kamonnan Thiamphanit had planned to fly home for an annual visit but scrapped the trip just days before her death, cousin claims

", "contentSnippet": "Kamonnan Thiamphanit had planned to fly home for an annual visit but scrapped the trip just days before her death, cousin claims", "guid": "b1152226", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T06:58:19.000Z" }, { @@ -3609,10 +2992,7 @@ "content": "

London commuters are facing Tube delays on a number of lines during rush-hour on Wednesday afternoon.

", "contentSnippet": "London commuters are facing Tube delays on a number of lines during rush-hour on Wednesday afternoon.", "guid": "b1151965", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-18T06:51:24.000Z" }, { @@ -3626,9 +3006,7 @@ "content": "

Ronnie O’Sullivan is the man to beat as he goes in search of a record-breaking triumph

", "contentSnippet": "Ronnie O’Sullivan is the man to beat as he goes in search of a record-breaking triumph", "guid": "b1151761", - "categories": [ - "Sport" - ], + "categories": ["Sport"], "isoDate": "2024-04-18T06:48:56.000Z" }, { @@ -3642,10 +3020,7 @@ "content": "The investment is part of Labour’s Green Prosperity Plan and is expected to bring in billions in private sector cash.", "contentSnippet": "The investment is part of Labour’s Green Prosperity Plan and is expected to bring in billions in private sector cash.", "guid": "b1152205", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-18T06:48:25.000Z" }, { @@ -3659,10 +3034,7 @@ "content": "

Harry has previously admitted he is considering seeking US citizenship following his move to California

", "contentSnippet": "Harry has previously admitted he is considering seeking US citizenship following his move to California", "guid": "b1152232", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T06:32:28.000Z" }, { @@ -3676,10 +3048,7 @@ "content": "

The long-time rivals fight in New York this weekend and Garcia has plenty of questions to answer

", "contentSnippet": "The long-time rivals fight in New York this weekend and Garcia has plenty of questions to answer", "guid": "b1151768", - "categories": [ - "Boxing", - "Sport" - ], + "categories": ["Boxing", "Sport"], "isoDate": "2024-04-18T06:21:55.000Z" }, { @@ -3693,10 +3062,7 @@ "content": "

More than 11,000 people have been ordered to leave the area around the Ruang volcano

", "contentSnippet": "More than 11,000 people have been ordered to leave the area around the Ruang volcano", "guid": "b1152231", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2024-04-18T06:18:46.000Z" }, { @@ -3710,9 +3076,7 @@ "content": "

The child will be Ashanti’s first and Nelly’s fifth

", "contentSnippet": "The child will be Ashanti’s first and Nelly’s fifth", "guid": "b1152219", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T06:14:17.000Z" }, { @@ -3726,10 +3090,7 @@ "content": "Oliver Dowden is expected to set out plans to improve the UK’s ability to handle shocks to its economic security.", "contentSnippet": "Oliver Dowden is expected to set out plans to improve the UK’s ability to handle shocks to its economic security.", "guid": "b1152230", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-18T06:09:11.000Z" }, { @@ -3743,9 +3104,7 @@ "content": "

The music mogul revealed how ITV almost passed on the show, which premiered in 2007

", "contentSnippet": "The music mogul revealed how ITV almost passed on the show, which premiered in 2007", "guid": "b1152131", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T06:03:11.000Z" }, { @@ -3759,9 +3118,7 @@ "content": "

The series returns on Saturday, April 20 for it’s 17th year on ITV1 and ITVX

", "contentSnippet": "The series returns on Saturday, April 20 for it’s 17th year on ITV1 and ITVX", "guid": "b1151910", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T06:01:12.000Z" }, { @@ -3775,10 +3132,7 @@ "content": "

Graffiti could be seen on the exterior of the building in Leicester Square, which previously housed Mr White’s restaurant

", "contentSnippet": "Graffiti could be seen on the exterior of the building in Leicester Square, which previously housed Mr White’s restaurant", "guid": "b1152111", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-18T05:57:49.000Z" }, { @@ -3792,10 +3146,7 @@ "content": "

Bike riders repeatedly jumped red lights at one of the Square Mile’s busiest road junctions

", "contentSnippet": "Bike riders repeatedly jumped red lights at one of the Square Mile’s busiest road junctions", "guid": "b1152140", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T05:47:12.000Z" }, { @@ -3809,10 +3160,7 @@ "content": "A survey found tenants endured costs totalling £550 million which cannot be recovered after being forced to leave their homes.", "contentSnippet": "A survey found tenants endured costs totalling £550 million which cannot be recovered after being forced to leave their homes.", "guid": "b1152212", - "categories": [ - "Money", - "Business" - ], + "categories": ["Money", "Business"], "isoDate": "2024-04-18T05:42:43.000Z" }, { @@ -3826,10 +3174,7 @@ "content": "

Law enforcement agencies, including the Metropolitan Police, have arrested 37 suspects across the UK and around the world

", "contentSnippet": "Law enforcement agencies, including the Metropolitan Police, have arrested 37 suspects across the UK and around the world", "guid": "b1152218", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T05:39:28.000Z" }, { @@ -3843,10 +3188,7 @@ "content": "

The cast of Abigail appeared at the Regency Village Theatre in Los Angeles for the film premiere

", "contentSnippet": "The cast of Abigail appeared at the Regency Village Theatre in Los Angeles for the film premiere", "guid": "b1152225", - "categories": [ - "Film", - "Culture" - ], + "categories": ["Film", "Culture"], "isoDate": "2024-04-18T05:13:22.000Z" }, { @@ -3860,9 +3202,7 @@ "content": "

Read what the stars mean for you today, from Aries to Gemini

", "contentSnippet": "Read what the stars mean for you today, from Aries to Gemini", "guid": "b1120001", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T05:00:25.000Z" }, { @@ -3876,10 +3216,7 @@ "content": "

Twenty years after swapping Yorkshire for east London, TV and radio presenter Anita Rani still loves life in this creative community

", "contentSnippet": "Twenty years after swapping Yorkshire for east London, TV and radio presenter Anita Rani still loves life in this creative community", "guid": "b1152173", - "categories": [ - "Where to live", - "Homes & Property" - ], + "categories": ["Where to live", "Homes & Property"], "isoDate": "2024-04-18T05:00:01.000Z" }, { @@ -3893,10 +3230,7 @@ "content": "A variety of stories feature on the fronts of the nation’s papers on Thursday.", "contentSnippet": "A variety of stories feature on the fronts of the nation’s papers on Thursday.", "guid": "b1152221", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T03:11:18.000Z" }, { @@ -3910,10 +3244,7 @@ "content": "Forty eight people died in the blaze at the Dublin nightclub on St Valentine’s Day in 1981.", "contentSnippet": "Forty eight people died in the blaze at the Dublin nightclub on St Valentine’s Day in 1981.", "guid": "b1152222", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T01:45:56.000Z" }, { @@ -3927,9 +3258,7 @@ "content": "

The album will be released on Friday

", "contentSnippet": "The album will be released on Friday", "guid": "b1152224", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T01:45:48.000Z" }, { @@ -3943,10 +3272,7 @@ "content": "William will attend Sunbury Cricket Club, the charity’s headquarters.", "contentSnippet": "William will attend Sunbury Cricket Club, the charity’s headquarters.", "guid": "b1152223", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T01:45:06.000Z" }, { @@ -3960,10 +3286,7 @@ "content": "

Surrey want the women’s team to play half of their matches at the Oval

", "contentSnippet": "Surrey want the women’s team to play half of their matches at the Oval", "guid": "b1152203", - "categories": [ - "Cricket", - "Sport" - ], + "categories": ["Cricket", "Sport"], "isoDate": "2024-04-17T23:01:47.000Z" }, { @@ -3977,10 +3300,7 @@ "content": "The legislation to make the Government’s Rwanda plan legally watertight will return to the Commons on Monday.", "contentSnippet": "The legislation to make the Government’s Rwanda plan legally watertight will return to the Commons on Monday.", "guid": "b1152216", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-17T23:01:33.000Z" }, { @@ -3994,10 +3314,7 @@ "content": "

City miss two penalties after dominating second leg

", "contentSnippet": "City miss two penalties after dominating second leg", "guid": "b1152112", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T23:01:24.000Z" }, { @@ -4011,10 +3328,7 @@ "content": "The coin is a fitting tribute to a legacy of world-class paintings, the Royal Mint said.", "contentSnippet": "The coin is a fitting tribute to a legacy of world-class paintings, the Royal Mint said.", "guid": "b1152213", - "categories": [ - "Money", - "Business" - ], + "categories": ["Money", "Business"], "isoDate": "2024-04-17T23:01:00.000Z" }, { @@ -4028,10 +3342,7 @@ "content": "The UK cannot afford to drag its feet and become an international outlier, warn unions.", "contentSnippet": "The UK cannot afford to drag its feet and become an international outlier, warn unions.", "guid": "b1152215", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-17T23:01:00.000Z" }, { @@ -4045,10 +3356,7 @@ "content": "Consumer group Which? said its analysis found the least expensive holidays were often in locations which people expect are the most expensive.", "contentSnippet": "Consumer group Which? said its analysis found the least expensive holidays were often in locations which people expect are the most expensive.", "guid": "b1152214", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-17T23:01:00.000Z" }, { @@ -4062,10 +3370,7 @@ "content": "A leading industry figure said skills and capabilities in existing supply chains can play a key role in the move to clean energy.", "contentSnippet": "A leading industry figure said skills and capabilities in existing supply chains can play a key role in the move to clean energy.", "guid": "b1152211", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-17T23:01:00.000Z" }, { @@ -4079,10 +3384,7 @@ "content": "The left-wing North of Tyne Mayor mayor has lashed out as his former party, which described his comments as ‘offensive’.", "contentSnippet": "The left-wing North of Tyne Mayor mayor has lashed out as his former party, which described his comments as ‘offensive’.", "guid": "b1152217", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-17T23:01:00.000Z" }, { @@ -4096,10 +3398,7 @@ "content": "

Star duo withdrawn before penalty shootout defeat

", "contentSnippet": "Star duo withdrawn before penalty shootout defeat", "guid": "b1152210", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T22:59:50.000Z" }, { @@ -4113,10 +3412,7 @@ "content": "

Liverpool will have to make history if they want to progress to the Europa League semi-finals

", "contentSnippet": "Liverpool will have to make history if they want to progress to the Europa League semi-finals", "guid": "b1151862", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T22:55:47.000Z" }, { @@ -4130,10 +3426,7 @@ "content": "

West Ham have to beat unbeaten Bayer Leverkusen to make the Europa League semi-finals

", "contentSnippet": "West Ham have to beat unbeaten Bayer Leverkusen to make the Europa League semi-finals", "guid": "b1151884", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T22:52:55.000Z" }, { @@ -4147,10 +3440,7 @@ "content": "

The Hammers could be handed a major boost in attack

", "contentSnippet": "The Hammers could be handed a major boost in attack", "guid": "b1152104", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T22:52:23.000Z" }, { @@ -4164,10 +3454,7 @@ "content": "Liz Truss said the No 11 flat was invested with fleas, but Jeremy Hunt said he had not experienced the problem after paying for new carpets.", "contentSnippet": "Liz Truss said the No 11 flat was invested with fleas, but Jeremy Hunt said he had not experienced the problem after paying for new carpets.", "guid": "b1152195", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-17T22:47:01.000Z" }, { @@ -4181,10 +3468,7 @@ "content": "Antipsychotic drugs may be prescribed for people with dementia who develop aggression and psychosis.", "contentSnippet": "Antipsychotic drugs may be prescribed for people with dementia who develop aggression and psychosis.", "guid": "b1152209", - "categories": [ - "Science", - "News" - ], + "categories": ["Science", "News"], "isoDate": "2024-04-17T22:30:00.000Z" }, { @@ -4198,10 +3482,7 @@ "content": "

The Gunners were unable to reach the Champions League semi-finals for the first time since 2009

", "contentSnippet": "The Gunners were unable to reach the Champions League semi-finals for the first time since 2009", "guid": "b1152207", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T22:28:25.000Z" }, { @@ -4215,10 +3496,7 @@ "content": "

Antonio Rudiger strikes decisive spot-kick to enact revenge

", "contentSnippet": "Antonio Rudiger strikes decisive spot-kick to enact revenge", "guid": "b1152126", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T22:05:00.000Z" }, { @@ -4232,10 +3510,7 @@ "content": "

The race for the coveted fifth Champions League race is going down to the wire between the Premier League and Bundesliga.

", "contentSnippet": "The race for the coveted fifth Champions League race is going down to the wire between the Premier League and Bundesliga.", "guid": "b1152086", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T22:04:07.000Z" }, { @@ -4249,10 +3524,7 @@ "content": "A group of writers began bargaining negotiations on February 13.", "contentSnippet": "A group of writers began bargaining negotiations on February 13.", "guid": "b1151946", - "categories": [ - "Celebrity News", - "Showbiz" - ], + "categories": ["Celebrity News", "Showbiz"], "isoDate": "2024-04-17T22:00:17.000Z" }, { @@ -4266,10 +3538,7 @@ "content": "Experts estimate that the giant creature would have been more than 25 metres long.", "contentSnippet": "Experts estimate that the giant creature would have been more than 25 metres long.", "guid": "b1152182", - "categories": [ - "Science", - "News" - ], + "categories": ["Science", "News"], "isoDate": "2024-04-17T21:54:30.000Z" }, { @@ -4283,10 +3552,7 @@ "content": "

Mikel Arteta’s key selection decisions had a positive impact for the Gunners but it was not enough

", "contentSnippet": "Mikel Arteta’s key selection decisions had a positive impact for the Gunners but it was not enough", "guid": "b1152202", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T21:38:41.000Z" }, { @@ -4300,9 +3566,7 @@ "content": "

The Disney+ four-part documentary series, Thank You, Goodnight: The Bon Jovi Story, charts the band’s past four decades

", "contentSnippet": "The Disney+ four-part documentary series, Thank You, Goodnight: The Bon Jovi Story, charts the band’s past four decades", "guid": "b1152204", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-17T21:21:47.000Z" }, { @@ -4316,10 +3580,7 @@ "content": "Brian Low’s death near Aberfeldy in February was originally treated as non-suspicious by police, but he had been fatally shot.", "contentSnippet": "Brian Low’s death near Aberfeldy in February was originally treated as non-suspicious by police, but he had been fatally shot.", "guid": "b1152139", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-17T21:15:41.000Z" }, { @@ -4333,10 +3594,7 @@ "content": "

It took more than six hours to free the man

", "contentSnippet": "It took more than six hours to free the man", "guid": "b1152201", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-17T21:08:17.000Z" }, { @@ -4350,10 +3608,7 @@ "content": "

Prime minister Sheikh Mohammed admitted negotiations had reached a ‘delicate phase’

", "contentSnippet": "Prime minister Sheikh Mohammed admitted negotiations had reached a ‘delicate phase’", "guid": "b1152200", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2024-04-17T21:07:23.000Z" }, { @@ -4367,10 +3622,7 @@ "content": "

The Gunners were edged out on a tense night in Munich

", "contentSnippet": "The Gunners were edged out on a tense night in Munich", "guid": "b1152198", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T21:06:57.000Z" }, { @@ -4384,10 +3636,7 @@ "content": "

Joshua Kimmich sent Bayern into the semi-finals

", "contentSnippet": "Joshua Kimmich sent Bayern into the semi-finals", "guid": "b1152113", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T21:06:29.000Z" }, { @@ -4401,10 +3650,7 @@ "content": "

Arsenal’s key players did not have an impact on a tense night

", "contentSnippet": "Arsenal’s key players did not have an impact on a tense night", "guid": "b1152187", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-17T21:05:05.000Z" }, { @@ -4418,10 +3664,7 @@ "content": "The estimated jackpot for Saturday’s Lotto draw now stands at £3.8m.", "contentSnippet": "The estimated jackpot for Saturday’s Lotto draw now stands at £3.8m.", "guid": "b1152199", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-17T20:47:06.000Z" }, { @@ -4435,10 +3678,7 @@ "content": "University Hospitals Dorset NHS Foundation Trust said it is investigating an incident.", "contentSnippet": "University Hospitals Dorset NHS Foundation Trust said it is investigating an incident.", "guid": "b1152197", - "categories": [ - "Health", - "News" - ], + "categories": ["Health", "News"], "isoDate": "2024-04-17T20:31:05.000Z" }, { @@ -4452,10 +3692,7 @@ "content": "

PC Mokbul Hussain lacked integrity, senior officers said

", "contentSnippet": "PC Mokbul Hussain lacked integrity, senior officers said", "guid": "b1152192", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-17T20:24:59.000Z" }, { @@ -4469,10 +3706,7 @@ "content": "Jake McCulloch, from Essex, said he had to wade through knee-deep water to get to his car on Tuesday", "contentSnippet": "Jake McCulloch, from Essex, said he had to wade through knee-deep water to get to his car on Tuesday", "guid": "b1152196", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-17T20:22:40.000Z" }, { @@ -4486,10 +3720,7 @@ "content": "

A record low of just 580 homes was started in London in the final months of last year, according to ‘provisional’ data

", "contentSnippet": "A record low of just 580 homes was started in London in the final months of last year, according to ‘provisional’ data", "guid": "b1152188", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-17T20:19:28.000Z" }, { @@ -4503,10 +3734,7 @@ "content": "Family doctors have reacted angrily to the imposition of a new contract for 2024/25.", "contentSnippet": "Family doctors have reacted angrily to the imposition of a new contract for 2024/25.", "guid": "b1152175", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-17T20:04:27.000Z" }, { @@ -4520,9 +3748,7 @@ "content": "

The X-Men star revealed in an Instagram post last month that she had undergone four operations including a double mastectomy after being diagnosed

", "contentSnippet": "The X-Men star revealed in an Instagram post last month that she had undergone four operations including a double mastectomy after being diagnosed", "guid": "b1152193", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-17T20:04:07.000Z" }, { @@ -4536,10 +3762,7 @@ "content": "

The House of Lords snubbed ministerial calls to back down over the contentious legislation.

", "contentSnippet": "The House of Lords snubbed ministerial calls to back down over the contentious legislation.", "guid": "b1152190", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-17T20:00:05.000Z" }, { @@ -4553,10 +3776,7 @@ "content": "

The reality competition series returns to screens for its 17th series on Saturday.

", "contentSnippet": "The reality competition series returns to screens for its 17th series on Saturday.", "guid": "b1152194", - "categories": [ - "Celebrity News", - "Showbiz" - ], + "categories": ["Celebrity News", "Showbiz"], "isoDate": "2024-04-17T20:00:00.000Z" }, { @@ -4570,10 +3790,7 @@ "content": "

Blocking enzyme in the body’s cells found to slow progression of acute myeloid leukaemia

", "contentSnippet": "Blocking enzyme in the body’s cells found to slow progression of acute myeloid leukaemia", "guid": "b1152268", - "categories": [ - "Health", - "News" - ], + "categories": ["Health", "News"], "isoDate": "2024-04-18T09:00:38.000Z" }, { @@ -4587,10 +3804,7 @@ "content": "Existing drugs could be repurposed following the discovery, according to researchers, who have also developed a new compound using their findings.", "contentSnippet": "Existing drugs could be repurposed following the discovery, according to researchers, who have also developed a new compound using their findings.", "guid": "b1152274", - "categories": [ - "Science", - "News" - ], + "categories": ["Science", "News"], "isoDate": "2024-04-18T09:00:00.000Z" }, { @@ -4604,10 +3818,7 @@ "content": "

All the stories from Wednesday’s episode of the Tech & Science Daily podcast.

", "contentSnippet": "All the stories from Wednesday’s episode of the Tech & Science Daily podcast.", "guid": "b1152103", - "categories": [ - "Podcasts", - "Comment" - ], + "categories": ["Podcasts", "Comment"], "isoDate": "2024-04-18T08:55:06.000Z" }, { @@ -4621,10 +3832,7 @@ "content": "Forty eight people died in the blaze at the Dublin nightclub on St Valentine’s Day in 1981.", "contentSnippet": "Forty eight people died in the blaze at the Dublin nightclub on St Valentine’s Day in 1981.", "guid": "b1152222", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T08:53:19.000Z" }, { @@ -4638,10 +3846,7 @@ "content": "

Analysis of latest poll by Ipsos director of politics Keiran Pedley

", "contentSnippet": "Analysis of latest poll by Ipsos director of politics Keiran Pedley", "guid": "b1152270", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T08:44:19.000Z" }, { @@ -4655,10 +3860,7 @@ "content": "

Having wowed diners in Birmingham for more than a decade, Brad Carter is heading down the M40

", "contentSnippet": "Having wowed diners in Birmingham for more than a decade, Brad Carter is heading down the M40", "guid": "b1152137", - "categories": [ - "Restaurants", - "Going Out" - ], + "categories": ["Restaurants", "Going Out"], "isoDate": "2024-04-18T08:43:37.000Z" }, { @@ -4672,9 +3874,7 @@ "content": "

Broadcaster Anita Rani will take over on Thursday and continue to host her current Friday and Saturday editions

", "contentSnippet": "Broadcaster Anita Rani will take over on Thursday and continue to host her current Friday and Saturday editions", "guid": "b1152260", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T08:39:25.000Z" }, { @@ -4688,10 +3888,7 @@ "content": "

Nicola Fellows and Karen Hadaway were sexually assaulted and strangled in woodland by paedophile Russell Bishop

", "contentSnippet": "Nicola Fellows and Karen Hadaway were sexually assaulted and strangled in woodland by paedophile Russell Bishop", "guid": "b1152089", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T08:35:10.000Z" }, { @@ -4705,10 +3902,7 @@ "content": "

The state-run WAM news agency calls the rain ‘a historic weather event’ that surpasses ‘anything documented since the start of data collection in 1949’

", "contentSnippet": "The state-run WAM news agency calls the rain ‘a historic weather event’ that surpasses ‘anything documented since the start of data collection in 1949’", "guid": "b1152120", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2024-04-18T08:34:50.000Z" }, { @@ -4722,10 +3916,7 @@ "content": "

Jordan Walker-Brown was left with ‘catastrophic’ injuries after hitting his head on the pavement and breaking his back

", "contentSnippet": "Jordan Walker-Brown was left with ‘catastrophic’ injuries after hitting his head on the pavement and breaking his back", "guid": "b1152069", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T08:32:30.000Z" }, { @@ -4739,10 +3930,7 @@ "content": "A study from tech giant Adobe examined fears around misinformation and deepfakes.", "contentSnippet": "A study from tech giant Adobe examined fears around misinformation and deepfakes.", "guid": "b1152269", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T08:31:30.000Z" }, { @@ -4756,10 +3944,7 @@ "content": "

As part of the law reforms, ‘more modern forms of abuse’ would be made offences

", "contentSnippet": "As part of the law reforms, ‘more modern forms of abuse’ would be made offences", "guid": "b1011065", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T08:31:21.000Z" }, { @@ -4773,10 +3958,7 @@ "content": "The pledge was launched ahead of local and mayoral elections set to take place in May.", "contentSnippet": "The pledge was launched ahead of local and mayoral elections set to take place in May.", "guid": "b1152247", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T08:29:00.000Z" }, { @@ -4790,10 +3972,7 @@ "content": "

Thousands of speeding tickets are believed to have been issued due to a rogue 50mph sign along the road

", "contentSnippet": "Thousands of speeding tickets are believed to have been issued due to a rogue 50mph sign along the road", "guid": "b1151818", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-18T09:41:43.000Z" }, { @@ -4807,10 +3986,7 @@ "content": "More than half the adults questioned in an Ipsos survey said the general election should take place before the end of the summer.", "contentSnippet": "More than half the adults questioned in an Ipsos survey said the general election should take place before the end of the summer.", "guid": "b1152282", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T09:39:51.000Z" }, { @@ -4824,10 +4000,7 @@ "content": "

Dramatic footage shows Ricardo Anderson shooting at rivals in Tottenham leaving shoppers and children scrambling for cover

", "contentSnippet": "Dramatic footage shows Ricardo Anderson shooting at rivals in Tottenham leaving shoppers and children scrambling for cover", "guid": "b1152255", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T09:39:25.000Z" }, { @@ -4841,9 +4014,7 @@ "content": "

The BBC broadcaster revealed her mum, Julia Peckham, has been ‘gently’ moved into a hospice

", "contentSnippet": "The BBC broadcaster revealed her mum, Julia Peckham, has been ‘gently’ moved into a hospice", "guid": "b1152266", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T09:37:22.000Z" }, { @@ -4857,10 +4028,7 @@ "content": "Una Crown, 86, was found dead at her home in Wisbech, Cambridgeshire, in January 2013.", "contentSnippet": "Una Crown, 86, was found dead at her home in Wisbech, Cambridgeshire, in January 2013.", "guid": "b1152279", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T09:31:24.000Z" }, { @@ -4874,10 +4042,7 @@ "content": "A total of 38 MPs have sat as Independents at some point during the current Parliament.", "contentSnippet": "A total of 38 MPs have sat as Independents at some point during the current Parliament.", "guid": "b1152278", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T09:23:17.000Z" }, { @@ -4891,10 +4056,7 @@ "content": "A study from tech giant Adobe examined fears around misinformation and deepfakes.", "contentSnippet": "A study from tech giant Adobe examined fears around misinformation and deepfakes.", "guid": "b1152269", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T09:21:08.000Z" }, { @@ -4908,9 +4070,7 @@ "content": "

The TV star said a delivery driver skidded to a halt a few feet from him

", "contentSnippet": "The TV star said a delivery driver skidded to a halt a few feet from him", "guid": "b1152277", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T09:14:50.000Z" }, { @@ -4924,10 +4084,7 @@ "content": "

The Tortured Poets Department is rumoured to be about Joe Alwyn. So does he have anything to worry about?

", "contentSnippet": "The Tortured Poets Department is rumoured to be about Joe Alwyn. So does he have anything to worry about?", "guid": "b1152275", - "categories": [ - "Celebrity", - "Lifestyle" - ], + "categories": ["Celebrity", "Lifestyle"], "isoDate": "2024-04-18T09:52:33.000Z" }, { @@ -4941,9 +4098,7 @@ "content": "

The TV star tells Good Morning Britain that Haringey Council has got back to her about the ‘unsettling post’

", "contentSnippet": "The TV star tells Good Morning Britain that Haringey Council has got back to her about the ‘unsettling post’", "guid": "b1152252", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T09:50:31.000Z" }, { @@ -4957,9 +4112,7 @@ "content": "

City Voices: It’s all about carrot cake

", "contentSnippet": "City Voices: It’s all about carrot cake", "guid": "b1152284", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T09:50:24.000Z" }, { @@ -4973,10 +4126,7 @@ "content": "Joanne Sharkey is accused of murdering ‘Callum’, who was discovered close to the Gulliver’s World theme park in Warrington 26 years ago.", "contentSnippet": "Joanne Sharkey is accused of murdering ‘Callum’, who was discovered close to the Gulliver’s World theme park in Warrington 26 years ago.", "guid": "b1152285", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T09:49:03.000Z" }, { @@ -4990,9 +4140,7 @@ "content": "

Schools are failing too many, says Lawrence Dallaglio. He tells Robbie Griffiths about his campaign and his ES rugby podcast

", "contentSnippet": "Schools are failing too many, says Lawrence Dallaglio. He tells Robbie Griffiths about his campaign and his ES rugby podcast", "guid": "b1152287", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T10:33:47.000Z" }, { @@ -5006,10 +4154,7 @@ "content": "Patients currently in receipt of the treatments in Scotland will continue to receive them.", "contentSnippet": "Patients currently in receipt of the treatments in Scotland will continue to receive them.", "guid": "b1152298", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T10:31:08.000Z" }, { @@ -5023,10 +4168,7 @@ "content": "

Officials said the agreement will ‘increase intelligence-sharing to tackle visa abuse’

", "contentSnippet": "Officials said the agreement will ‘increase intelligence-sharing to tackle visa abuse’", "guid": "b1152186", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T10:27:46.000Z" }, { @@ -5040,10 +4182,7 @@ "content": "The legal action is listed to begin on May 1.", "contentSnippet": "The legal action is listed to begin on May 1.", "guid": "b1152294", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T10:26:45.000Z" }, { @@ -5057,10 +4196,7 @@ "content": "

Reds will have to overturn a three-goal deficit away from home to make the semi-finals

", "contentSnippet": "Reds will have to overturn a three-goal deficit away from home to make the semi-finals", "guid": "b1152135", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T10:22:04.000Z" }, { @@ -5074,10 +4210,7 @@ "content": "

From cod and haddock to halibut and Dover sole, there isn’t a fish that isn’t improved by being deep-fried

", "contentSnippet": "From cod and haddock to halibut and Dover sole, there isn’t a fish that isn’t improved by being deep-fried", "guid": "a4161431", - "categories": [ - "Restaurants", - "Going Out" - ], + "categories": ["Restaurants", "Going Out"], "isoDate": "2024-04-18T10:21:23.000Z" }, { @@ -5091,10 +4224,7 @@ "content": "

Hammers face an uphill battle to reach a third consecutive European semi-final

", "contentSnippet": "Hammers face an uphill battle to reach a third consecutive European semi-final", "guid": "b1152146", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T10:21:21.000Z" }, { @@ -5108,10 +4238,7 @@ "content": "A report by Public Health Wales has said that vaping should be seen as a ‘dependency issue’ with children needing help to quit.", "contentSnippet": "A report by Public Health Wales has said that vaping should be seen as a ‘dependency issue’ with children needing help to quit.", "guid": "b1152293", - "categories": [ - "Health", - "News" - ], + "categories": ["Health", "News"], "isoDate": "2024-04-18T10:19:35.000Z" }, { @@ -5125,9 +4252,7 @@ "content": "

It comes after a series of testimonies about bullying and harassment in the music business

", "contentSnippet": "It comes after a series of testimonies about bullying and harassment in the music business", "guid": "b1152271", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "isoDate": "2024-04-18T10:13:15.000Z" }, { @@ -5141,9 +4266,7 @@ "content": "

The singer celebrated the collection launch at London’s Tobacco Dock

", "contentSnippet": "The singer celebrated the collection launch at London’s Tobacco Dock", "guid": "b1152283", - "categories": [ - "Showbiz" - ], + "categories": ["Showbiz"], "isoDate": "2024-04-18T10:10:55.000Z" }, { @@ -5157,10 +4280,7 @@ "content": "

He is remember by his family as a ‘loving, supportive dad’ who was ‘loved by many’

", "contentSnippet": "He is remember by his family as a ‘loving, supportive dad’ who was ‘loved by many’", "guid": "b1152281", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T10:09:50.000Z" }, { @@ -5174,10 +4294,7 @@ "content": "

The puzzle looks and feels a lot like Wordle at first sight

", "contentSnippet": "The puzzle looks and feels a lot like Wordle at first sight", "guid": "b1152264", - "categories": [ - "Tech", - "News" - ], + "categories": ["Tech", "News"], "isoDate": "2024-04-18T10:08:50.000Z" }, { @@ -5191,10 +4308,7 @@ "content": "

Met Police officers are facing criminal misconduct charges over allegations they shared images and videos of suspects on WhatsApp

", "contentSnippet": "Met Police officers are facing criminal misconduct charges over allegations they shared images and videos of suspects on WhatsApp", "guid": "b1152272", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T10:08:39.000Z" }, { @@ -5208,10 +4322,7 @@ "content": "

An advert has been taken off air after facing a backlash from Grenfell Tower victims for editing the building out of a scene.

", "contentSnippet": "An advert has been taken off air after facing a backlash from Grenfell Tower victims for editing the building out of a scene.", "guid": "b1152256", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-18T10:07:09.000Z" }, { @@ -5225,10 +4336,7 @@ "content": "The coin is a fitting tribute to a legacy of world-class paintings, the Royal Mint said.", "contentSnippet": "The coin is a fitting tribute to a legacy of world-class paintings, the Royal Mint said.", "guid": "b1152213", - "categories": [ - "Celebrity News", - "Showbiz" - ], + "categories": ["Celebrity News", "Showbiz"], "isoDate": "2024-04-18T10:05:00.000Z" }, { @@ -5242,10 +4350,7 @@ "content": "Sales at Mecca were 12% higher in the first three months of the year, compared with the same period a year ago.", "contentSnippet": "Sales at Mecca were 12% higher in the first three months of the year, compared with the same period a year ago.", "guid": "b1152291", - "categories": [ - "Business News", - "Business" - ], + "categories": ["Business News", "Business"], "isoDate": "2024-04-18T10:04:05.000Z" }, { @@ -5259,10 +4364,7 @@ "content": "

The Hammers hope to have star man back for quarter-final comeback bid

", "contentSnippet": "The Hammers hope to have star man back for quarter-final comeback bid", "guid": "b1152104", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T10:02:06.000Z" }, { @@ -5276,9 +4378,7 @@ "content": "

The FTSE 100 has rallied a little after the worst day in nine months yesterday.

", "contentSnippet": "The FTSE 100 has rallied a little after the worst day in nine months yesterday.", "guid": "b1151953", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T10:00:39.000Z" }, { @@ -5292,10 +4392,7 @@ "content": "Nature has been given its own profile on major streaming platforms including Spotify and Apple Music.", "contentSnippet": "Nature has been given its own profile on major streaming platforms including Spotify and Apple Music.", "guid": "b1152286", - "categories": [ - "Music", - "Culture" - ], + "categories": ["Music", "Culture"], "isoDate": "2024-04-18T10:00:00.000Z" }, { @@ -5309,10 +4406,7 @@ "content": "The survey by polling company Censuswide showed about a third of people surveyed said they were able to save money each month.", "contentSnippet": "The survey by polling company Censuswide showed about a third of people surveyed said they were able to save money each month.", "guid": "b1152288", - "categories": [ - "Money", - "Business" - ], + "categories": ["Money", "Business"], "isoDate": "2024-04-18T09:59:29.000Z" }, { @@ -5326,10 +4420,7 @@ "content": "The decision comes in the wake of publication of the Cass Review.", "contentSnippet": "The decision comes in the wake of publication of the Cass Review.", "guid": "b1152290", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T09:58:07.000Z" }, { @@ -5343,9 +4434,7 @@ "content": "

From mums in their 50s to people in the LGBTQIA+ community, more people than ever are finding a place in the world of skateboarding. Ahead of the sport’s second Olympic competition at Paris 2024, Isabelle Aron learns more about London’s increasingly inclusive scene

", "contentSnippet": "From mums in their 50s to people in the LGBTQIA+ community, more people than ever are finding a place in the world of skateboarding. Ahead of the sport’s second Olympic competition at Paris 2024, Isabelle Aron learns more about London’s increasingly inclusive scene", "guid": "b1111390", - "categories": [ - "Lifestyle" - ], + "categories": ["Lifestyle"], "isoDate": "2024-04-18T09:54:25.000Z" }, { @@ -5359,10 +4448,7 @@ "content": "

The Reds will have to make history in quarter-final comeback bid

", "contentSnippet": "The Reds will have to make history in quarter-final comeback bid", "guid": "b1151862", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T10:38:15.000Z" }, { @@ -5376,10 +4462,7 @@ "content": "

Poll also shows Sunak’s PM rating has plunged to same level as previous leader Jeremy Corbyn

", "contentSnippet": "Poll also shows Sunak’s PM rating has plunged to same level as previous leader Jeremy Corbyn", "guid": "b1152297", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T10:37:34.000Z" }, { @@ -5393,10 +4476,7 @@ "content": "The Fylde MP is alleged to have used donor funds to cover medical expenses and pay off ‘bad people’ holding him hostage.", "contentSnippet": "The Fylde MP is alleged to have used donor funds to cover medical expenses and pay off ‘bad people’ holding him hostage.", "guid": "b1152300", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T10:34:48.000Z" }, { @@ -5410,10 +4490,7 @@ "content": "

The Hammers have it all to do to reach the semi-finals on home soil

", "contentSnippet": "The Hammers have it all to do to reach the semi-finals on home soil", "guid": "b1151884", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T10:54:13.000Z" }, { @@ -5427,10 +4504,7 @@ "content": "

The musician addressed a question about his turn to Christianity from a troubled fan on his personal blog

", "contentSnippet": "The musician addressed a question about his turn to Christianity from a troubled fan on his personal blog", "guid": "b1152296", - "categories": [ - "Diary", - "News" - ], + "categories": ["Diary", "News"], "isoDate": "2024-04-18T10:50:04.000Z" }, { @@ -5444,10 +4518,7 @@ "content": "

From the very best in food to the most exciting gigs, here’s what to eat, see and do in London this weekend

", "contentSnippet": "From the very best in food to the most exciting gigs, here’s what to eat, see and do in London this weekend", "guid": "b1151513", - "categories": [ - "Events and Things To Do", - "Going Out" - ], + "categories": ["Events and Things To Do", "Going Out"], "isoDate": "2024-04-18T11:00:55.000Z" }, { @@ -5461,10 +4532,7 @@ "content": "

From good grades to pets and pizza parties, London children know how to strike a deal when it comes to family relocation

", "contentSnippet": "From good grades to pets and pizza parties, London children know how to strike a deal when it comes to family relocation", "guid": "b1152292", - "categories": [ - "Where to live", - "Homes & Property" - ], + "categories": ["Where to live", "Homes & Property"], "isoDate": "2024-04-18T10:58:38.000Z" }, { @@ -5478,10 +4546,7 @@ "content": "The Stormont Communities Minister said he is seeking clarity with funding partners, including the UK Government.", "contentSnippet": "The Stormont Communities Minister said he is seeking clarity with funding partners, including the UK Government.", "guid": "b1152304", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T10:52:48.000Z" }, { @@ -5495,10 +4560,7 @@ "content": "

Gunners must ‘stand up and be counted’ in pivotal Wolves clash with season in danger of unravelling again

", "contentSnippet": "Gunners must ‘stand up and be counted’ in pivotal Wolves clash with season in danger of unravelling again", "guid": "b1152307", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T11:09:26.000Z" }, { @@ -5512,10 +4574,7 @@ "content": "

Nothing can escape the gravitational vortex of a black hole, as gas and radiation rage in a swirling eddy around the brink of the abyss

", "contentSnippet": "Nothing can escape the gravitational vortex of a black hole, as gas and radiation rage in a swirling eddy around the brink of the abyss", "guid": "a4114366", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2024-04-18T11:09:21.000Z" }, { @@ -5529,10 +4588,7 @@ "content": "Fewer top grades were handed out to teenagers last summer following efforts in England to bring results back down to pre-pandemic levels.", "contentSnippet": "Fewer top grades were handed out to teenagers last summer following efforts in England to bring results back down to pre-pandemic levels.", "guid": "b1152308", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T11:06:20.000Z" }, { @@ -5546,9 +4602,7 @@ "content": "

City Comment: Virgin Money shareholders get a vote, why don’t Nationwide members?

", "contentSnippet": "City Comment: Virgin Money shareholders get a vote, why don’t Nationwide members?", "guid": "b1152336", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T13:22:57.000Z" }, { @@ -5562,10 +4616,7 @@ "content": "The party leader was asked about how Labour had marginalised traditional working class voters in the past.", "contentSnippet": "The party leader was asked about how Labour had marginalised traditional working class voters in the past.", "guid": "b1152351", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T13:20:17.000Z" }, { @@ -5579,10 +4630,7 @@ "content": "Dr Luke Evans has called for a full review of Parliament security’s system of investigating incidents reported by MPs.", "contentSnippet": "Dr Luke Evans has called for a full review of Parliament security’s system of investigating incidents reported by MPs.", "guid": "b1152318", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T13:18:06.000Z" }, { @@ -5596,10 +4644,7 @@ "content": "

Rodri shocked by ‘suffering’ Los Blancos’ defensive approach in quarter-final decider

", "contentSnippet": "Rodri shocked by ‘suffering’ Los Blancos’ defensive approach in quarter-final decider", "guid": "b1152348", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T13:15:59.000Z" }, { @@ -5613,10 +4658,7 @@ "content": "The 16-year-old was wearing just his boxer shorts and claimed he was sleepwalking during the attacks at Blundell’s School in Devon.", "contentSnippet": "The 16-year-old was wearing just his boxer shorts and claimed he was sleepwalking during the attacks at Blundell’s School in Devon.", "guid": "b1152349", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T13:10:43.000Z" }, { @@ -5630,10 +4672,7 @@ "content": "

When heavy rain began to fall early on Tuesday there was no sense of what was about to come

", "contentSnippet": "When heavy rain began to fall early on Tuesday there was no sense of what was about to come", "guid": "b1152340", - "categories": [ - "World", - "News" - ], + "categories": ["World", "News"], "isoDate": "2024-04-18T13:09:26.000Z" }, { @@ -5647,10 +4686,7 @@ "content": "

Fears that a long season is catching up with the Gunners’ key men ahead of pivotal Wolves trip

", "contentSnippet": "Fears that a long season is catching up with the Gunners’ key men ahead of pivotal Wolves trip", "guid": "b1152343", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T13:08:02.000Z" }, { @@ -5664,10 +4700,7 @@ "content": "An asylum seeking living in Northern Ireland said they were asked for £2,000 for a ‘positive decision’.", "contentSnippet": "An asylum seeking living in Northern Ireland said they were asked for £2,000 for a ‘positive decision’.", "guid": "b1152346", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T13:04:02.000Z" }, { @@ -5681,10 +4714,7 @@ "content": "New figures suggested an NHS England pledge on reducing the number of inpatients had not been met.", "contentSnippet": "New figures suggested an NHS England pledge on reducing the number of inpatients had not been met.", "guid": "b1152315", - "categories": [ - "Health", - "News" - ], + "categories": ["Health", "News"], "isoDate": "2024-04-18T13:02:05.000Z" }, { @@ -5698,9 +4728,7 @@ "content": "

It’s not exactly the Cabinet War Rooms in Whitehall, but another Battle of Britain is being waged almost unaided from a shabby Sixties-era former office block in the shadow of Wembley Stadium.

", "contentSnippet": "It’s not exactly the Cabinet War Rooms in Whitehall, but another Battle of Britain is being waged almost unaided from a shabby Sixties-era former office block in the shadow of Wembley Stadium.", "guid": "b1152302", - "categories": [ - "Comment" - ], + "categories": ["Comment"], "isoDate": "2024-04-18T13:00:07.000Z" }, { @@ -5714,10 +4742,7 @@ "content": "Culture minister Julia Lopez said she had had ‘recent discussions with relevant organisations on the matter’.", "contentSnippet": "Culture minister Julia Lopez said she had had ‘recent discussions with relevant organisations on the matter’.", "guid": "b1152342", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T12:57:23.000Z" }, { @@ -5731,10 +4756,7 @@ "content": "

Hammers’ domestic struggles and English football’s sliding Uefa coefficient is a dual threat to hopes of fourth successive campaign on the continent

", "contentSnippet": "Hammers’ domestic struggles and English football’s sliding Uefa coefficient is a dual threat to hopes of fourth successive campaign on the continent", "guid": "b1152335", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T12:54:10.000Z" }, { @@ -5748,10 +4770,7 @@ "content": "Giant Jamaican Galliwasps were last confirmed alive in the 1800s.", "contentSnippet": "Giant Jamaican Galliwasps were last confirmed alive in the 1800s.", "guid": "b1152341", - "categories": [ - "Environment", - "News" - ], + "categories": ["Environment", "News"], "isoDate": "2024-04-18T12:51:33.000Z" }, { @@ -5765,10 +4784,7 @@ "content": "

A storm dumped the heaviest amount of rain ever recorded in the United Arab Emirates on Tuesday

", "contentSnippet": "A storm dumped the heaviest amount of rain ever recorded in the United Arab Emirates on Tuesday", "guid": "b1152065", - "categories": [ - "Celebrity News", - "Showbiz" - ], + "categories": ["Celebrity News", "Showbiz"], "isoDate": "2024-04-18T12:43:24.000Z" }, { @@ -5782,10 +4798,7 @@ "content": "

Gary Preston, 64, sent envelopes containing white powder and threatening letters that caused panic and evacuations

", "contentSnippet": "Gary Preston, 64, sent envelopes containing white powder and threatening letters that caused panic and evacuations", "guid": "b1152313", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T12:40:10.000Z" }, { @@ -5799,10 +4812,7 @@ "content": "A Government review has found universities are ‘vulnerable’ and being ‘targeted’ by hostile states, the Deputy Prime Minister has said.", "contentSnippet": "A Government review has found universities are ‘vulnerable’ and being ‘targeted’ by hostile states, the Deputy Prime Minister has said.", "guid": "b1152337", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T12:38:53.000Z" }, { @@ -5816,10 +4826,7 @@ "content": "Rishi Sunak’s spokesman said the Rwanda Bill has ‘continued to be delayed’ by peers.", "contentSnippet": "Rishi Sunak’s spokesman said the Rwanda Bill has ‘continued to be delayed’ by peers.", "guid": "b1152338", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T12:38:19.000Z" }, { @@ -5833,10 +4840,7 @@ "content": "The Solicitor General wants to bring proceedings against Trudi Warner after she held up a sign outside a court during a trial last year.", "contentSnippet": "The Solicitor General wants to bring proceedings against Trudi Warner after she held up a sign outside a court during a trial last year.", "guid": "b1152334", - "categories": [ - "Crime", - "News" - ], + "categories": ["Crime", "News"], "isoDate": "2024-04-18T12:36:05.000Z" }, { @@ -5850,10 +4854,7 @@ "content": "

Premier League now need a miracle to beat the Bundesliga to extra Champions League spot after sobering night

", "contentSnippet": "Premier League now need a miracle to beat the Bundesliga to extra Champions League spot after sobering night", "guid": "b1152332", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T12:35:28.000Z" }, { @@ -5867,10 +4868,7 @@ "content": "It continues the trend of job losses in the tech sector.", "contentSnippet": "It continues the trend of job losses in the tech sector.", "guid": "b1152328", - "categories": [ - "Tech", - "News" - ], + "categories": ["Tech", "News"], "isoDate": "2024-04-18T12:25:11.000Z" }, { @@ -5884,10 +4882,7 @@ "content": "

Want to have a fun day out but also save those pennies? These free London art exhibitions are perfect

", "contentSnippet": "Want to have a fun day out but also save those pennies? These free London art exhibitions are perfect", "guid": "b1053240", - "categories": [ - "Exhibitions", - "Culture" - ], + "categories": ["Exhibitions", "Culture"], "isoDate": "2024-04-18T12:24:56.000Z" }, { @@ -5901,10 +4896,7 @@ "content": "The number of suspensions in spring 2023 is the ‘highest’ termly figure recorded, the Department for Education said.", "contentSnippet": "The number of suspensions in spring 2023 is the ‘highest’ termly figure recorded, the Department for Education said.", "guid": "b1152330", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T12:24:46.000Z" }, { @@ -5918,10 +4910,7 @@ "content": "

William helps out at food distribution charity, Surplus to Supper, in Sunbury-on-Thames, Surrey, before a visit to a youth centre in west London

", "contentSnippet": "William helps out at food distribution charity, Surplus to Supper, in Sunbury-on-Thames, Surrey, before a visit to a youth centre in west London", "guid": "b1152324", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T12:21:50.000Z" }, { @@ -5935,10 +4924,7 @@ "content": "A Clyde Valley Housing Association computer system enabled residents to access each other’s personal data.", "contentSnippet": "A Clyde Valley Housing Association computer system enabled residents to access each other’s personal data.", "guid": "b1152327", - "categories": [ - "Tech", - "News" - ], + "categories": ["Tech", "News"], "isoDate": "2024-04-18T12:21:03.000Z" }, { @@ -5952,9 +4938,7 @@ "content": "

Murty owns a 0.94% stake in the Indian tech outsourcer Infosys, which was founded by her father

", "contentSnippet": "Murty owns a 0.94% stake in the Indian tech outsourcer Infosys, which was founded by her father", "guid": "b1152319", - "categories": [ - "Business" - ], + "categories": ["Business"], "isoDate": "2024-04-18T12:13:23.000Z" }, { @@ -5968,10 +4952,7 @@ "content": "

The Hammers will need all the help they can get to overturn quarter-final deficit against Bayer Leverkusen

", "contentSnippet": "The Hammers will need all the help they can get to overturn quarter-final deficit against Bayer Leverkusen", "guid": "b1152325", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T12:12:41.000Z" }, { @@ -5985,10 +4966,7 @@ "content": "

London has the highest number of measles cases in the country, making up almost 40 per cent of all cases

", "contentSnippet": "London has the highest number of measles cases in the country, making up almost 40 per cent of all cases", "guid": "b1152301", - "categories": [ - "Health", - "News" - ], + "categories": ["Health", "News"], "isoDate": "2024-04-18T12:10:12.000Z" }, { @@ -6002,10 +4980,7 @@ "content": "Mairi McAllan is expected to drop the target of reducing emissions by 75% by 2030.", "contentSnippet": "Mairi McAllan is expected to drop the target of reducing emissions by 75% by 2030.", "guid": "b1152326", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T12:08:39.000Z" }, { @@ -6019,10 +4994,7 @@ "content": "Kemi Badenoch, speaking at TheCityUK international conference, said she is worried about there being too many rules in financial services.", "contentSnippet": "Kemi Badenoch, speaking at TheCityUK international conference, said she is worried about there being too many rules in financial services.", "guid": "b1152321", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T12:07:18.000Z" }, { @@ -6036,10 +5008,7 @@ "content": "Tortilla boss will run slightly over the marathon distance, a total of 28.1 miles, from Camden around central London and then to Islington.", "contentSnippet": "Tortilla boss will run slightly over the marathon distance, a total of 28.1 miles, from Camden around central London and then to Islington.", "guid": "b1152323", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T12:06:59.000Z" }, { @@ -6053,10 +5022,7 @@ "content": "The pair, aged 22 and 26, were found dead at Linn of Tummel in Perth and Kinross on Wednesday evening.", "contentSnippet": "The pair, aged 22 and 26, were found dead at Linn of Tummel in Perth and Kinross on Wednesday evening.", "guid": "b1152320", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T11:55:21.000Z" }, { @@ -6070,10 +5036,7 @@ "content": "

Mayor also promises to continue his partial Tube and bus fares freeze ‘as long as economic conditions allow’ if elected for a third term

", "contentSnippet": "Mayor also promises to continue his partial Tube and bus fares freeze ‘as long as economic conditions allow’ if elected for a third term", "guid": "b1152316", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-18T11:53:37.000Z" }, { @@ -6087,10 +5050,7 @@ "content": "

Blues captain has not played since December following hamstring surgery

", "contentSnippet": "Blues captain has not played since December following hamstring surgery", "guid": "b1152259", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T11:53:19.000Z" }, { @@ -6104,10 +5064,7 @@ "content": "

Niamke Doffou had worked at a Romford store since 2003 before he was sacked over the bag theft

", "contentSnippet": "Niamke Doffou had worked at a Romford store since 2003 before he was sacked over the bag theft", "guid": "b1152305", - "categories": [ - "London", - "News" - ], + "categories": ["London", "News"], "isoDate": "2024-04-18T11:50:24.000Z" }, { @@ -6121,11 +5078,7 @@ "content": "

The Slovenian capital is simply stunning, and a short break should give you plenty of time to immerse yourself in its history, culture and great cuisine

", "contentSnippet": "The Slovenian capital is simply stunning, and a short break should give you plenty of time to immerse yourself in its history, culture and great cuisine", "guid": "b1145992", - "categories": [ - "City Breaks", - "Travel", - "Lifestyle" - ], + "categories": ["City Breaks", "Travel", "Lifestyle"], "isoDate": "2024-04-18T11:48:12.000Z" }, { @@ -6139,10 +5092,7 @@ "content": "Forty eight people died in the blaze at the Dublin nightclub on St Valentine’s Day in 1981.", "contentSnippet": "Forty eight people died in the blaze at the Dublin nightclub on St Valentine’s Day in 1981.", "guid": "b1152222", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T11:44:25.000Z" }, { @@ -6156,9 +5106,7 @@ "content": "

From 1pm on Monday 22 April 2024

", "contentSnippet": "From 1pm on Monday 22 April 2024", "guid": "b1150082", - "categories": [ - "ES REWARDS" - ], + "categories": ["ES REWARDS"], "isoDate": "2024-04-18T11:41:18.000Z" }, { @@ -6172,10 +5120,7 @@ "content": "The Stormont Communities Minister said he is seeking clarity with funding partners, including the UK Government.", "contentSnippet": "The Stormont Communities Minister said he is seeking clarity with funding partners, including the UK Government.", "guid": "b1152304", - "categories": [ - "UK", - "News" - ], + "categories": ["UK", "News"], "isoDate": "2024-04-18T11:38:07.000Z" }, { @@ -6189,10 +5134,7 @@ "content": "

Race director Hugh Brasher insists security measures are sufficient to prevent disruptions this weekend

", "contentSnippet": "Race director Hugh Brasher insists security measures are sufficient to prevent disruptions this weekend", "guid": "b1152258", - "categories": [ - "Athletics", - "Sport" - ], + "categories": ["Athletics", "Sport"], "isoDate": "2024-04-18T11:37:16.000Z" }, { @@ -6206,9 +5148,7 @@ "content": "

There is no getting away from Karl Marx’s gag about history beginning as tragedy and ending as farce. When the only thing we can think about when it comes to the Government is a mesmerising sex scandal, we really are in John Major 1997 territory.

", "contentSnippet": "There is no getting away from Karl Marx’s gag about history beginning as tragedy and ending as farce. When the only thing we can think about when it comes to the Government is a mesmerising sex scandal, we really are in John Major 1997 territory.", "guid": "b1152299", - "categories": [ - "Comment" - ], + "categories": ["Comment"], "isoDate": "2024-04-18T11:30:10.000Z" }, { @@ -6222,9 +5162,7 @@ "content": "

When Rishi Sunak became Prime Minister, his MPs hoped their new leader’s relative popularity would rub off on a discredited Tory brand. Instead, the reverse effect appears to be on display.

", "contentSnippet": "When Rishi Sunak became Prime Minister, his MPs hoped their new leader’s relative popularity would rub off on a discredited Tory brand. Instead, the reverse effect appears to be on display.", "guid": "b1152314", - "categories": [ - "Comment" - ], + "categories": ["Comment"], "isoDate": "2024-04-18T11:29:13.000Z" }, { @@ -6238,10 +5176,7 @@ "content": "

The 2021 US Open winner has lucrative sponsorship deals with the likes of Nike, Evian, British Airways, Porsche, Tiffany and HSBC

", "contentSnippet": "The 2021 US Open winner has lucrative sponsorship deals with the likes of Nike, Evian, British Airways, Porsche, Tiffany and HSBC", "guid": "b1152251", - "categories": [ - "Tennis", - "Sport" - ], + "categories": ["Tennis", "Sport"], "isoDate": "2024-04-18T11:23:12.000Z" }, { @@ -6255,10 +5190,7 @@ "content": "Patients currently in receipt of the treatments in Scotland will continue to receive them.", "contentSnippet": "Patients currently in receipt of the treatments in Scotland will continue to receive them.", "guid": "b1152298", - "categories": [ - "Politics", - "News" - ], + "categories": ["Politics", "News"], "isoDate": "2024-04-18T11:12:15.000Z" }, { @@ -6272,10 +5204,7 @@ "content": "

Mauricio Pochettino’s fitness woes are set to ease for Wembley showdown

", "contentSnippet": "Mauricio Pochettino’s fitness woes are set to ease for Wembley showdown", "guid": "b1152306", - "categories": [ - "Football", - "Sport" - ], + "categories": ["Football", "Sport"], "isoDate": "2024-04-18T13:27:44.000Z" }, { @@ -6289,12 +5218,7 @@ "content": "

Suits you

", "contentSnippet": "Suits you", "guid": "b1095489", - "categories": [ - "Men's", - "Fashion", - "ES Best Home", - "Shopping" - ], + "categories": ["Men's", "Fashion", "ES Best Home", "Shopping"], "isoDate": "2024-04-18T13:25:29.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/f9c17f360c71def1876c05f997d131741e4e00446986b5f4e44eb49e500ef723.json b/intro to react/fun-with-react/logs/f9c17f360c71def1876c05f997d131741e4e00446986b5f4e44eb49e500ef723.json index 7171d2f..ff5e68e 100644 --- a/intro to react/fun-with-react/logs/f9c17f360c71def1876c05f997d131741e4e00446986b5f4e44eb49e500ef723.json +++ b/intro to react/fun-with-react/logs/f9c17f360c71def1876c05f997d131741e4e00446986b5f4e44eb49e500ef723.json @@ -6,9 +6,7 @@ "content": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", "contentSnippet": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", "guid": "https://abcnews.go.com/International/wireStory/30-children-hostage-hamas-militants-families-wait-agony-104424146", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T12:46:26.000Z" }, { @@ -18,9 +16,7 @@ "content": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", "contentSnippet": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", "guid": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-priest-ousted-jesuits-104422352", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T12:38:16.000Z" }, { @@ -30,9 +26,7 @@ "content": "Israel’s defense minister says it expects to launch a ground offensive into Gaza soon that will be long and difficult, and aim to destroy hundreds of kilometers or miles of tunnels used by the territory’s militant Hamas rulers", "contentSnippet": "Israel’s defense minister says it expects to launch a ground offensive into Gaza soon that will be long and difficult, and aim to destroy hundreds of kilometers or miles of tunnels used by the territory’s militant Hamas rulers", "guid": "https://abcnews.go.com/International/wireStory/israel-strikes-outskirts-gaza-city-ground-raid-days-104419675", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T12:30:23.000Z" }, { @@ -42,9 +36,7 @@ "content": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", "contentSnippet": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", "guid": "https://abcnews.go.com/International/wireStory/military-answer-israel-palestinian-tensions-eu-plans-peaceful-104422128", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T12:06:35.000Z" }, { @@ -54,9 +46,7 @@ "content": "Pope orders Vatican to reopen case of ousted Jesuit accused of abusing women, waives statute of limitations", "contentSnippet": "Pope orders Vatican to reopen case of ousted Jesuit accused of abusing women, waives statute of limitations", "guid": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-ousted-jesuit-accused-104421946", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T12:06:00.000Z" }, { @@ -66,9 +56,7 @@ "content": "Wu Zunyou, China’s top infectious diseases expert who played a key role in the zero-COVID strategy, has died", "contentSnippet": "Wu Zunyou, China’s top infectious diseases expert who played a key role in the zero-COVID strategy, has died", "guid": "https://abcnews.go.com/International/wireStory/wu-zunyou-chinas-top-infectious-diseases-expert-played-104421166", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T11:26:06.000Z" }, { @@ -78,9 +66,7 @@ "content": "Russian state news agency Tass says Iran’s deputy foreign minister met Hamas representatives in Moscow", "contentSnippet": "Russian state news agency Tass says Iran’s deputy foreign minister met Hamas representatives in Moscow", "guid": "https://abcnews.go.com/International/wireStory/irans-deputy-foreign-minister-met-hamas-representatives-moscow-104420906", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T11:17:53.000Z" }, { @@ -90,9 +76,7 @@ "content": "Chinese telecoms equipment maker Huawei Technologies has reported its profit inched higher in the first three quarters of this year despite persisting U.S. sanctions that have hindered both its sales and its purchases of advanced technology", "contentSnippet": "Chinese telecoms equipment maker Huawei Technologies has reported its profit inched higher in the first three quarters of this year despite persisting U.S. sanctions that have hindered both its sales and its purchases of advanced technology", "guid": "https://abcnews.go.com/International/wireStory/huawei-reports-revenue-inched-higher-january-september-despite-104420185", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T10:30:31.000Z" }, { @@ -102,9 +86,7 @@ "content": "South Korean and U.S. troops have been conducting live-fire exercises to hone their ability to respond to potential “Hamas-style surprise artillery attacks” by North Korea", "contentSnippet": "South Korean and U.S. troops have been conducting live-fire exercises to hone their ability to respond to potential “Hamas-style surprise artillery attacks” by North Korea", "guid": "https://abcnews.go.com/International/wireStory/south-korean-us-forces-stage-drills-reaction-hamas-104418929", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T06:50:00.000Z" }, { @@ -114,9 +96,7 @@ "content": "Survivors of the Category 5 storm that killed at least 27 people and devastated Mexico’s resort city of Acapulco are getting desperate amid a slow government assistance response", "contentSnippet": "Survivors of the Category 5 storm that killed at least 27 people and devastated Mexico’s resort city of Acapulco are getting desperate amid a slow government assistance response", "guid": "https://abcnews.go.com/International/wireStory/survivors-deadly-hurricane-otis-grow-desperate-food-aid-104418657", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T05:10:21.000Z" }, { @@ -126,9 +106,7 @@ "content": "An Albanian court has ruled that former prime minister Sali Berisha, who is accused of corruption, must report to prosecutors and not leave the country while his case is under investigation", "contentSnippet": "An Albanian court has ruled that former prime minister Sali Berisha, who is accused of corruption, must report to prosecutors and not leave the country while his case is under investigation", "guid": "https://abcnews.go.com/International/wireStory/former-albanian-prime-minister-accused-corruption-told-report-104389464", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T22:14:19.000Z" }, { @@ -138,9 +116,7 @@ "content": "The leaders of Serbia and Kosovo broke off talks Thursday without result, despite European Union pressure to persuade them to normalize their relations", "contentSnippet": "The leaders of Serbia and Kosovo broke off talks Thursday without result, despite European Union pressure to persuade them to normalize their relations", "guid": "https://abcnews.go.com/International/wireStory/european-union-press-leaders-serbia-kosovo-set-decades-104344351", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T22:06:22.000Z" }, { @@ -150,9 +126,7 @@ "content": "Greenpeace is stepping up its appeal for Greece to abandon a deep-sea gas exploration project in the Mediterranean", "contentSnippet": "Greenpeace is stepping up its appeal for Greece to abandon a deep-sea gas exploration project in the Mediterranean", "guid": "https://abcnews.go.com/International/wireStory/greenpeace-urges-greece-scrap-offshore-gas-drilling-project-104385625", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T21:09:55.000Z" }, { @@ -162,9 +136,7 @@ "content": "Venezuelan government critic María Corina Machado has been declared the winner of an opposition-organized primary to choose a presidential candidate in polling last weekend that has been denounced by the socialist government as illegitimate", "contentSnippet": "Venezuelan government critic María Corina Machado has been declared the winner of an opposition-organized primary to choose a presidential candidate in polling last weekend that has been denounced by the socialist government as illegitimate", "guid": "https://abcnews.go.com/International/wireStory/maria-corina-machado-winner-venezuela-opposition-primary-government-104351778", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T20:30:23.000Z" }, { @@ -174,9 +146,7 @@ "content": "More than two weeks after Hamas' attack, many Israelis are furious at Prime Minister Benjamin Netanyahu’s government, not just for failing to prevent the initial attack, but for failing to come to their aid afterward", "contentSnippet": "More than two weeks after Hamas' attack, many Israelis are furious at Prime Minister Benjamin Netanyahu’s government, not just for failing to prevent the initial attack, but for failing to come to their aid afterward", "guid": "https://abcnews.go.com/International/wireStory/israelis-furious-governments-chaotic-recovery-efforts-after-hamas-104356154", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T20:06:37.000Z" }, { @@ -186,9 +156,7 @@ "content": "The son of a federal judge who was convicted of killing his wife more than a decade ago has pleaded guilty to second-degree murder in a retrial", "contentSnippet": "The son of a federal judge who was convicted of killing his wife more than a decade ago has pleaded guilty to second-degree murder in a retrial", "guid": "https://abcnews.go.com/International/wireStory/son-federal-judge-puerto-rico-pleads-guilty-killing-104367600", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T17:57:53.000Z" }, { @@ -198,9 +166,7 @@ "content": "Spanish authorities are planning to convert unused military barracks and installations into temporary shelters for migrants to deal with the increased arrival of thousands of people by boat to the Canary islands", "contentSnippet": "Spanish authorities are planning to convert unused military barracks and installations into temporary shelters for migrants to deal with the increased arrival of thousands of people by boat to the Canary islands", "guid": "https://abcnews.go.com/International/wireStory/spain-considers-military-barracks-house-migrants-amid-uptick-104362506", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T17:02:03.000Z" }, { @@ -210,9 +176,7 @@ "content": "A famous priest-artist who was thrown out of the Jesuits after being accused of sexual, spiritual and psychological abuse of women has been accepted into a diocese in his native Slovenia", "contentSnippet": "A famous priest-artist who was thrown out of the Jesuits after being accused of sexual, spiritual and psychological abuse of women has been accepted into a diocese in his native Slovenia", "guid": "https://abcnews.go.com/International/wireStory/priest-kicked-jesuits-alleged-abuse-women-welcomed-slovenia-104347121", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T16:54:22.000Z" }, { @@ -222,9 +186,7 @@ "content": "A nonprofit organization in Afghanistan says the Taliban have freed an activist who campaigned for the education of girls", "contentSnippet": "A nonprofit organization in Afghanistan says the Taliban have freed an activist who campaigned for the education of girls", "guid": "https://abcnews.go.com/International/wireStory/taliban-free-afghan-activist-arrested-7-months-ago-104347074", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T16:06:30.000Z" }, { @@ -234,9 +196,7 @@ "content": "A federal court in Pakistan’s capital has restored the appeals of the country’s former Prime Minister Nawaz Sharif against his 2018 convictions in graft cases", "contentSnippet": "A federal court in Pakistan’s capital has restored the appeals of the country’s former Prime Minister Nawaz Sharif against his 2018 convictions in graft cases", "guid": "https://abcnews.go.com/International/wireStory/pakistans-leader-nawaz-sharif-regains-appeal-convictions-opening-104351760", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T14:46:40.000Z" }, { @@ -246,9 +206,7 @@ "content": "Israel has expelled a prominent Palestinian activist from his home in a West Bank city at the heart of the Israeli-Palestinian conflict after he hosted a foreign journalist and a prominent Israeli activist", "contentSnippet": "Israel has expelled a prominent Palestinian activist from his home in a West Bank city at the heart of the Israeli-Palestinian conflict after he hosted a foreign journalist and a prominent Israeli activist", "guid": "https://abcnews.go.com/International/wireStory/palestinian-activist-expelled-israeli-forces-home-volatile-west-104351229", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T14:38:46.000Z" }, { @@ -258,9 +216,7 @@ "content": "Greek army specialists have destroyed an unexploded World War II bomb discovered during work on a massive urban development project at a coastal area south of Athens", "contentSnippet": "Greek army specialists have destroyed an unexploded World War II bomb discovered during work on a massive urban development project at a coastal area south of Athens", "guid": "https://abcnews.go.com/International/wireStory/greek-army-destroys-world-war-ii-bomb-found-104348783", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T13:42:09.000Z" }, { @@ -270,9 +226,7 @@ "content": "A Russian-born Swedish businessman has been acquitted of collecting information for Russia's military intelligence service, the GRU, for almost a decade", "contentSnippet": "A Russian-born Swedish businessman has been acquitted of collecting information for Russia's military intelligence service, the GRU, for almost a decade", "guid": "https://abcnews.go.com/International/wireStory/swedish-court-acquits-russian-born-businessman-spying-moscow-104344012", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T13:05:20.000Z" }, { @@ -282,9 +236,7 @@ "content": "Prosecutors say an American man has been charged with murder and other offenses for attacking two women from the U.S. near Neuschwanstein castle in Germany in June and pushing them into a ravine", "contentSnippet": "Prosecutors say an American man has been charged with murder and other offenses for attacking two women from the U.S. near Neuschwanstein castle in Germany in June and pushing them into a ravine", "guid": "https://abcnews.go.com/International/wireStory/american-man-indicted-murder-charges-attack-2-us-104343911", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T12:48:35.000Z" }, { @@ -294,9 +246,7 @@ "content": "Russia's deadly attack on a beloved pizzeria in eastern Ukraine in June was painful for residents", "contentSnippet": "Russia's deadly attack on a beloved pizzeria in eastern Ukraine in June was painful for residents", "guid": "https://abcnews.go.com/International/wireStory/business-owners-ukrainian-front-line-city-adapt-missile-104338295", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-26T04:22:21.000Z" }, { @@ -306,9 +256,7 @@ "content": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", "contentSnippet": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", "guid": "https://abcnews.go.com/International/wireStory/eu-summit-turns-eyes-ukraine-despite-commitment-stay-104428486", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2023-10-27T15:42:22.000Z" }, { @@ -318,9 +266,7 @@ "content": "Europe’s farmers are angry, and staging their biggest protests in half a century", "contentSnippet": "Europe’s farmers are angry, and staging their biggest protests in half a century", "guid": "https://abcnews.go.com/International/wireStory/hard-makes-hay-european-farmers-anger-ahead-june-109373818", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T08:30:35.000Z" }, { @@ -330,9 +276,7 @@ "content": "Europe wants two things from China: First, a shift in its relatively pro-Russia position on the war in Ukraine", "contentSnippet": "Europe wants two things from China: First, a shift in its relatively pro-Russia position on the war in Ukraine", "guid": "https://abcnews.go.com/International/wireStory/europe-2-things-china-109374297", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T08:30:31.000Z" }, { @@ -342,9 +286,7 @@ "content": "The U.S. ambassador to the United Nations says America will stand with Japan until all the Japanese abducted by North Korea decades ago return home to end their painful separation", "contentSnippet": "The U.S. ambassador to the United Nations says America will stand with Japan until all the Japanese abducted by North Korea decades ago return home to end their painful separation", "guid": "https://abcnews.go.com/International/wireStory/us-envoy-vows-support-families-japanese-abducted-north-109373432", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T08:30:28.000Z" }, { @@ -354,9 +296,7 @@ "content": "One of the most prominent figures in the far-right Alternative for Germany party has arrived in court for his trial on charges of using a Nazi slogan, months before an election in which he is running to become his state’s governor", "contentSnippet": "One of the most prominent figures in the far-right Alternative for Germany party has arrived in court for his trial on charges of using a Nazi slogan, months before an election in which he is running to become his state’s governor", "guid": "https://abcnews.go.com/International/wireStory/prominent-figure-german-party-trial-alleged-nazi-slogan-109372795", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T08:30:28.000Z" }, { @@ -366,9 +306,7 @@ "content": "Indonesian authorities closed an international airport and residents left homes near an erupting volcano due to spreading ash, falling rocks and the possibility of a tsunami", "contentSnippet": "Indonesian authorities closed an international airport and residents left homes near an erupting volcano due to spreading ash, falling rocks and the possibility of a tsunami", "guid": "https://abcnews.go.com/International/wireStory/indonesians-leave-homes-erupting-volcano-airport-closes-due-109373983", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T08:30:27.000Z" }, { @@ -378,9 +316,7 @@ "content": "The Chinese and Indonesian foreign ministers called for an immediate and lasting cease-fire in Gaza after a meeting in Jakarta on Thursday, condemning the humanitarian costs of Israel's ongoing war against Hamas", "contentSnippet": "The Chinese and Indonesian foreign ministers called for an immediate and lasting cease-fire in Gaza after a meeting in Jakarta on Thursday, condemning the humanitarian costs of Israel's ongoing war against Hamas", "guid": "https://abcnews.go.com/International/wireStory/china-indonesia-call-ceasefire-gaza-109373251", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T08:30:21.000Z" }, { @@ -390,9 +326,7 @@ "content": "Lebanon's Interior Minister says Israeli agents were most likely behind this month's killing of a U", "contentSnippet": "Lebanon's Interior Minister says Israeli agents were most likely behind this month's killing of a U", "guid": "https://abcnews.go.com/International/wireStory/lebanon-israeli-agents-killed-hezbollah-linked-currency-exchanger-109361761", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T08:30:21.000Z" }, { @@ -402,9 +336,7 @@ "content": "Prosecutors say two German-Russian men have been arrested in Germany on suspicion of espionage", "contentSnippet": "Prosecutors say two German-Russian men have been arrested in Germany on suspicion of espionage", "guid": "https://abcnews.go.com/International/wireStory/germany-arrests-2-allegedly-spying-russia-planning-sabotage-109373729", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T08:30:04.000Z" }, { @@ -414,9 +346,7 @@ "content": "The United Arab Emirates is struggling to recover from the heaviest recorded rainfall ever to hit the desert nation, as its main airport worked to restore normal operations even as floodwater still covered portions of major highways and roads", "contentSnippet": "The United Arab Emirates is struggling to recover from the heaviest recorded rainfall ever to hit the desert nation, as its main airport worked to restore normal operations even as floodwater still covered portions of major highways and roads", "guid": "https://abcnews.go.com/International/wireStory/united-arab-emirates-struggles-recover-after-heaviest-recorded-109373628", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T07:10:36.000Z" }, { @@ -426,9 +356,7 @@ "content": "A Sydney shopping mall has opened to the public for the first time since the mass stabbing in which six people died", "contentSnippet": "A Sydney shopping mall has opened to the public for the first time since the mass stabbing in which six people died", "guid": "https://abcnews.go.com/International/wireStory/sydney-shopping-mall-reopens-after-stabbings-police-make-109370750", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T07:02:24.000Z" }, { @@ -438,9 +366,7 @@ "content": "Hindu nationalism was once a fringe ideology in India, and now it is mainstream", "contentSnippet": "Hindu nationalism was once a fringe ideology in India, and now it is mainstream", "guid": "https://abcnews.go.com/International/wireStory/fringe-indian-ideology-hindu-nationalism-now-mainstream-modis-109372435", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T06:39:55.000Z" }, { @@ -450,9 +376,7 @@ "content": "South Africa faces an unusual national election this year, its seventh vote since transitioning from white minority rule to a democracy 30 years ago", "contentSnippet": "South Africa faces an unusual national election this year, its seventh vote since transitioning from white minority rule to a democracy 30 years ago", "guid": "https://abcnews.go.com/International/wireStory/south-africas-former-leader-zuma-turned-allies-surprise-109373250", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T06:06:28.000Z" }, { @@ -462,9 +386,7 @@ "content": "A Muslim community leader says a boy accused of stabbing two Christian clerics during a Sydney church service might have “anger management and behavioral issues” and a “short fuse” but had shown no signs of being radicalized on Thursday, after authorit...", "contentSnippet": "A Muslim community leader says a boy accused of stabbing two Christian clerics during a Sydney church service might have “anger management and behavioral issues” and a “short fuse” but had shown no signs of being radicalized on Thursday, after authorit...", "guid": "https://abcnews.go.com/International/wireStory/sydney-boy-accused-stabbing-2-clerics-showed-signs-109373071", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T05:34:33.000Z" }, { @@ -474,9 +396,7 @@ "content": "Jews around the world will soon celebrate Passover, recounting the biblical story of their exodus from Egypt after hundreds of years of slavery", "contentSnippet": "Jews around the world will soon celebrate Passover, recounting the biblical story of their exodus from Egypt after hundreds of years of slavery", "guid": "https://abcnews.go.com/International/wireStory/israelis-grapple-celebrate-passover-holiday-freedom-remain-captive-109372705", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T05:10:32.000Z" }, { @@ -486,9 +406,7 @@ "content": "Six of the eight candidates vying to be Panama’s next president have laid out their plans to generate jobs and to manage the country’s water crisis in their final debate before the country’s May 5 election", "contentSnippet": "Six of the eight candidates vying to be Panama’s next president have laid out their plans to generate jobs and to manage the country’s water crisis in their final debate before the country’s May 5 election", "guid": "https://abcnews.go.com/International/wireStory/panamas-presidential-frontrunner-skips-final-debate-ahead-5-109372703", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T05:02:19.000Z" }, { @@ -498,9 +416,7 @@ "content": "Indonesian authorities have issued a tsunami alert after eruptions at Ruang mountain sent ash thousands of feet high", "contentSnippet": "Indonesian authorities have issued a tsunami alert after eruptions at Ruang mountain sent ash thousands of feet high", "guid": "https://abcnews.go.com/International/wireStory/tsunami-alert-after-volcano-indonesia-big-eruptions-thousands-109356514", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T03:50:29.000Z" }, { @@ -510,9 +426,7 @@ "content": "Canadian police say nine people are facing charges in the biggest gold theft in Canadian history from Toronto’s Pearson International airport a year ago", "contentSnippet": "Canadian police say nine people are facing charges in the biggest gold theft in Canadian history from Toronto’s Pearson International airport a year ago", "guid": "https://abcnews.go.com/International/wireStory/9-facing-charges-police-canada-biggest-gold-theft-109350746", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T00:54:34.000Z" }, { @@ -522,9 +436,7 @@ "content": "The Biden administration has reimposed crushing oil sanctions on Venezuela in a rebuke to President Nicolas Maduro’s attempts to consolidate his rule just six months after the U.S. eased restrictions in a bid to support now fading hopes for a democrati...", "contentSnippet": "The Biden administration has reimposed crushing oil sanctions on Venezuela in a rebuke to President Nicolas Maduro’s attempts to consolidate his rule just six months after the U.S. eased restrictions in a bid to support now fading hopes for a democrati...", "guid": "https://abcnews.go.com/International/wireStory/us-reimposes-oil-sanctions-venezuela-hopes-fair-presidential-109360326", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T00:46:28.000Z" }, { @@ -534,9 +446,7 @@ "content": "A law that will enable Britain to send some asylum-seekers on a one-way trip to Rwanda has suffered a setback after Parliament’s upper chamber pressed its attempt to amend the contentious legislation", "contentSnippet": "A law that will enable Britain to send some asylum-seekers on a one-way trip to Rwanda has suffered a setback after Parliament’s upper chamber pressed its attempt to amend the contentious legislation", "guid": "https://abcnews.go.com/International/wireStory/britains-contentious-plan-send-migrants-rwanda-hits-hurdle-109360321", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-17T19:34:52.000Z" }, { @@ -546,9 +456,7 @@ "content": "US reimposes oil sanctions on Venezuela as hopes fade for a fair presidential election in July", "contentSnippet": "US reimposes oil sanctions on Venezuela as hopes fade for a fair presidential election in July", "guid": "https://abcnews.go.com/International/wireStory/us-reimposes-oil-sanctions-venezuela-hopes-fade-fair-109359924", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-17T19:34:09.000Z" }, { @@ -558,9 +466,7 @@ "content": "El Salvador’s President Nayib Bukele has released the father of a Salvadoran soccer player from prison after the athlete published a plea for his release on social media", "contentSnippet": "El Salvador’s President Nayib Bukele has released the father of a Salvadoran soccer player from prison after the athlete published a plea for his release on social media", "guid": "https://abcnews.go.com/International/wireStory/el-salvadors-bukele-releases-father-soccer-player-prison-109356695", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-17T18:38:30.000Z" }, { @@ -570,9 +476,7 @@ "content": "The Belarusian parliament has voted to suspend the country’s participation in the Conventional Forces in Europe treaty that once was a key security doctrine for the continent", "contentSnippet": "The Belarusian parliament has voted to suspend the country’s participation in the Conventional Forces in Europe treaty that once was a key security doctrine for the continent", "guid": "https://abcnews.go.com/International/wireStory/belarus-parliament-votes-leave-europes-conventional-forces-treaty-109356787", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-17T18:30:00.000Z" }, { @@ -582,9 +486,7 @@ "content": "A makeshift burial ground for migrants on the Greek island of Lesbos has been cleaned up and redesigned after years of neglect", "contentSnippet": "A makeshift burial ground for migrants on the Greek island of Lesbos has been cleaned up and redesigned after years of neglect", "guid": "https://abcnews.go.com/International/wireStory/neglected-burial-ground-migrants-greek-island-lesbos-drastic-109353665", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-17T18:06:27.000Z" }, { @@ -594,9 +496,7 @@ "content": "The U.N. human rights chief says the world is forgetting the escalating violence in eastern Congo as conflicts continue in places like Ukraine and Gaza", "contentSnippet": "The U.N. human rights chief says the world is forgetting the escalating violence in eastern Congo as conflicts continue in places like Ukraine and Gaza", "guid": "https://abcnews.go.com/International/wireStory/rights-chief-eastern-congos-escalating-violence-forgotten-world-109353681", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-17T17:42:19.000Z" }, { @@ -606,9 +506,7 @@ "content": "Pakistan's military says security forces killed seven militants in a remote northwestern border area when they tried to sneak into the country from Afghanistan", "contentSnippet": "Pakistan's military says security forces killed seven militants in a remote northwestern border area when they tried to sneak into the country from Afghanistan", "guid": "https://abcnews.go.com/International/wireStory/pakistani-security-forces-kill-7-militants-sneak-country-109352779", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-17T16:46:03.000Z" }, { @@ -618,9 +516,7 @@ "content": "The European Union’s top diplomat is urging the Group of Seven to take quick and concrete steps to provide more air defense systems to Ukraine", "contentSnippet": "The European Union’s top diplomat is urging the Group of Seven to take quick and concrete steps to provide more air defense systems to Ukraine", "guid": "https://abcnews.go.com/International/wireStory/european-union-official-urges-g7-step-air-defense-109374698", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T09:42:38.000Z" }, { @@ -630,9 +526,7 @@ "content": "Japanese authorities say that a strong earthquake that struck the country's southwest Japan late Wednesday, leaving nine people with minor injuries and causing damage such as burst of water pipes and small landslides, but there was no danger of a tsunami", "contentSnippet": "Japanese authorities say that a strong earthquake that struck the country's southwest Japan late Wednesday, leaving nine people with minor injuries and causing damage such as burst of water pipes and small landslides, but there was no danger of a tsunami", "guid": "https://abcnews.go.com/International/wireStory/strong-quake-southwestern-japan-leaves-9-minor-injuries-109374605", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T09:42:30.000Z" }, { @@ -642,9 +536,7 @@ "content": "Wireless and fixed-network equipment maker Nokia has reported a smaller-than-expected profit and a substantial double-digit fall in sales in the first quarter due to a market weakened by a lack of investment by clients in 5G technology", "contentSnippet": "Wireless and fixed-network equipment maker Nokia has reported a smaller-than-expected profit and a substantial double-digit fall in sales in the first quarter due to a market weakened by a lack of investment by clients in 5G technology", "guid": "https://abcnews.go.com/International/wireStory/nokia-sees-double-digit-fall-january-march-sales-109374513", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T09:42:04.000Z" }, { @@ -654,9 +546,7 @@ "content": "Britain’s governing Conservative Party suspended a lawmaker who is alleged to have misused campaign funds", "contentSnippet": "Britain’s governing Conservative Party suspended a lawmaker who is alleged to have misused campaign funds", "guid": "https://abcnews.go.com/International/wireStory/uk-conservatives-suspend-lawmaker-sleaze-allegations-swirl-misuse-109374512", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T09:42:04.000Z" }, { @@ -666,9 +556,7 @@ "content": "Reuters photographer Mohammed Salem captured this year’s prestigious World Press Photo of the Year award Thursday with his heartrending image of a Palestinian woman cradling the body of her young niece — a powerful depiction of loss and sorrow in Gaza", "contentSnippet": "Reuters photographer Mohammed Salem captured this year’s prestigious World Press Photo of the Year award Thursday with his heartrending image of a Palestinian woman cradling the body of her young niece — a powerful depiction of loss and sorrow in Gaza", "guid": "https://abcnews.go.com/International/wireStory/reuters-photographer-wins-world-press-photo-year-poignant-109375042", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T11:10:27.000Z" }, { @@ -678,9 +566,7 @@ "content": "Prince William is returning to public duties for the first time since his wife’s cancer diagnosis", "contentSnippet": "Prince William is returning to public duties for the first time since his wife’s cancer diagnosis", "guid": "https://abcnews.go.com/International/wireStory/uks-prince-william-returns-public-duties-time-kates-109375908", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T11:10:17.000Z" }, { @@ -690,9 +576,7 @@ "content": "Two people smugglers have been sentenced to nine years each in prison for the deaths of four Moroccan migrants who drowned after they were forced to jump out of a boat last year near the Spanish enclave of Ceuta in North Africa", "contentSnippet": "Two people smugglers have been sentenced to nine years each in prison for the deaths of four Moroccan migrants who drowned after they were forced to jump out of a boat last year near the Spanish enclave of Ceuta in North Africa", "guid": "https://abcnews.go.com/International/wireStory/2-people-smugglers-sentenced-9-years-spain-drowning-109376438", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T11:10:03.000Z" }, { @@ -702,9 +586,7 @@ "content": "Russia’s defense ministry says air defenses have downed what authorities describe as five Ukrainian balloons", "contentSnippet": "Russia’s defense ministry says air defenses have downed what authorities describe as five Ukrainian balloons", "guid": "https://abcnews.go.com/International/wireStory/russia-reports-downing-5-ukrainian-military-balloons-kyivs-109375911", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T11:02:40.000Z" }, { @@ -714,9 +596,7 @@ "content": "European Union leaders are debating at a summit in Brussels a new “European Competitiveness Deal” aimed at helping the 27-nation bloc close the gap with Chinese and American rivals", "contentSnippet": "European Union leaders are debating at a summit in Brussels a new “European Competitiveness Deal” aimed at helping the 27-nation bloc close the gap with Chinese and American rivals", "guid": "https://abcnews.go.com/International/wireStory/time-waste-eu-leaders-boost-competitiveness-close-gap-109375043", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T10:30:31.000Z" }, { @@ -726,9 +606,7 @@ "content": "Copenhagen's mayor says she has been in touch with her Paris counterpart to see what could be learned from the reconstruction of the Notre Dame cathedral in the French capital, after a fire devastated the Danish city’s 400-year-old stock exchange building", "contentSnippet": "Copenhagen's mayor says she has been in touch with her Paris counterpart to see what could be learned from the reconstruction of the Notre Dame cathedral in the French capital, after a fire devastated the Danish city’s 400-year-old stock exchange building", "guid": "https://abcnews.go.com/International/wireStory/copenhagen-paris-mayors-exchange-lessons-learned-after-huge-109374863", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T10:22:24.000Z" }, { @@ -738,9 +616,7 @@ "content": "Croatia’s ruling conservatives says that talks are already underway on the formation of a new governing majority following a highly contested parliamentary election that saw a far-right party emerge as a potential kingmaker", "contentSnippet": "Croatia’s ruling conservatives says that talks are already underway on the formation of a new governing majority following a highly contested parliamentary election that saw a far-right party emerge as a potential kingmaker", "guid": "https://abcnews.go.com/International/wireStory/croatias-conservative-pm-convinced-party-form-new-majority-109379844", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T13:26:30.000Z" }, { @@ -750,9 +626,7 @@ "content": "Israel has vowed to respond to Iran’s unprecedented weekend attack", "contentSnippet": "Israel has vowed to respond to Iran’s unprecedented weekend attack", "guid": "https://abcnews.go.com/International/wireStory/latest-officials-group-meeting-call-new-sanctions-iran-109379553", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T13:26:19.000Z" }, { @@ -762,9 +636,7 @@ "content": "A prominent Christian church leader and human rights advocate from Myanmar’s Kachin ethnic minority has been detained by the authorities just hours after he was released from prison under an amnesty by the military government", "contentSnippet": "A prominent Christian church leader and human rights advocate from Myanmar’s Kachin ethnic minority has been detained by the authorities just hours after he was released from prison under an amnesty by the military government", "guid": "https://abcnews.go.com/International/wireStory/prominent-baptist-pastor-military-ruled-myanmar-detained-hours-109379232", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T13:18:26.000Z" }, { @@ -774,9 +646,7 @@ "content": "Pakistan's foreign minister says Iran’s President Ebrahim Raisi will arrive in Islamabad on a previously scheduled visit next week despite increasing tension in the wake of Tehran’s attack on Israel", "contentSnippet": "Pakistan's foreign minister says Iran’s President Ebrahim Raisi will arrive in Islamabad on a previously scheduled visit next week despite increasing tension in the wake of Tehran’s attack on Israel", "guid": "https://abcnews.go.com/International/wireStory/pakistan-irans-president-raisi-visit-week-despite-tensions-109378974", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T13:10:28.000Z" }, { @@ -786,9 +656,7 @@ "content": "The military Junta ruling Burkina Faso have expelled three French diplomats for alleged subversive activities, according to a government document posted on social media", "contentSnippet": "The military Junta ruling Burkina Faso have expelled three French diplomats for alleged subversive activities, according to a government document posted on social media", "guid": "https://abcnews.go.com/International/wireStory/burkina-faso-junta-expel-3-french-diplomats-alleged-109378092", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T13:02:06.000Z" }, { @@ -798,9 +666,7 @@ "content": "Jeffrey Gibson’s takeover of the U.S. pavilion for this year’s Venice Biennale contemporary art show is a celebration of color, pattern and craft", "contentSnippet": "Jeffrey Gibson’s takeover of the U.S. pavilion for this year’s Venice Biennale contemporary art show is a celebration of color, pattern and craft", "guid": "https://abcnews.go.com/International/wireStory/choctaw-artist-jeffrey-gibson-native-american-represent-us-109377792", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T12:46:27.000Z" }, { @@ -810,9 +676,7 @@ "content": "The leaders of Belgium and the Czech Republic are warning their European Union partners to take urgent action to prevent Russian interference in June’s Europe-wide elections", "contentSnippet": "The leaders of Belgium and the Czech Republic are warning their European Union partners to take urgent action to prevent Russian interference in June’s Europe-wide elections", "guid": "https://abcnews.go.com/International/wireStory/belgian-czech-leaders-exhort-eu-react-amid-concern-109376938", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T12:06:31.000Z" }, { @@ -822,9 +686,7 @@ "content": "A judge in Tunisia has sentenced a journalist and political commentator to six months in prison in the country’s latest assault on members of the media who criticize the government", "contentSnippet": "A judge in Tunisia has sentenced a journalist and political commentator to six months in prison in the country’s latest assault on members of the media who criticize the government", "guid": "https://abcnews.go.com/International/wireStory/tunisian-journalist-sentenced-6-months-prison-insulting-official-109380118", - "categories": [ - "International" - ], + "categories": ["International"], "isoDate": "2024-04-18T13:26:45.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/logs/fa080031bb9f0725b354d2657f84d5bc3ace72cbd9ead6fe1e34884650fa30c3.json b/intro to react/fun-with-react/logs/fa080031bb9f0725b354d2657f84d5bc3ace72cbd9ead6fe1e34884650fa30c3.json index da29f8a..20db6fc 100644 --- a/intro to react/fun-with-react/logs/fa080031bb9f0725b354d2657f84d5bc3ace72cbd9ead6fe1e34884650fa30c3.json +++ b/intro to react/fun-with-react/logs/fa080031bb9f0725b354d2657f84d5bc3ace72cbd9ead6fe1e34884650fa30c3.json @@ -6,9 +6,7 @@ "content": "Citing the late poet June Jordan, Angela Davis stresses the importance of Palestine for other social justice movements.", "contentSnippet": "Citing the late poet June Jordan, Angela Davis stresses the importance of Palestine for other social justice movements.", "guid": "https://www.aljazeera.com/?t=1698383004", - "categories": [ - "TV Shows" - ], + "categories": ["TV Shows"], "isoDate": "2023-10-27T12:55:01.000Z" }, { @@ -18,9 +16,7 @@ "content": "Beijing blames Washington for the incident that almost caused an accident as the two compete for influence in region.", "contentSnippet": "Beijing blames Washington for the incident that almost caused an accident as the two compete for influence in region.", "guid": "https://www.aljazeera.com/?t=1698405540", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T12:47:26.000Z" }, { @@ -30,9 +26,7 @@ "content": "As the war in Gaza continues, why is the West cracking down on free speech?", "contentSnippet": "As the war in Gaza continues, why is the West cracking down on free speech?", "guid": "https://www.aljazeera.com/?t=1698383310", - "categories": [ - "TV Shows" - ], + "categories": ["TV Shows"], "isoDate": "2023-10-27T12:40:45.000Z" }, { @@ -42,9 +36,7 @@ "content": "Both teams will look to bag two points in order to secure a semifinal finish at the Cricket World Cup 2023.", "contentSnippet": "Both teams will look to bag two points in order to secure a semifinal finish at the Cricket World Cup 2023.", "guid": "https://www.aljazeera.com/?t=1698404485", - "categories": [ - "Sports" - ], + "categories": ["Sports"], "isoDate": "2023-10-27T12:35:40.000Z" }, { @@ -54,9 +46,7 @@ "content": "Palestinians in the besieged enclave have had to endure decades of violence and oppression — and now it’s even worse.", "contentSnippet": "Palestinians in the besieged enclave have had to endure decades of violence and oppression — and now it’s even worse.", "guid": "https://www.aljazeera.com/?t=1698406517", - "categories": [ - "Gallery" - ], + "categories": ["Gallery"], "isoDate": "2023-10-27T12:09:58.000Z" }, { @@ -66,9 +56,7 @@ "content": "Rebel groups attack 12 towns in Shan state, with local media reporting a number of military casualties.", "contentSnippet": "Rebel groups attack 12 towns in Shan state, with local media reporting a number of military casualties.", "guid": "https://www.aljazeera.com/?t=1698403590", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T12:06:22.000Z" }, { @@ -78,9 +66,7 @@ "content": "Al Jazeera visited Holit, a kibbutz near Gaza which was attacked by Hamas fighters on October 7.", "contentSnippet": "Al Jazeera visited Holit, a kibbutz near Gaza which was attacked by Hamas fighters on October 7.", "guid": "https://www.aljazeera.com/?t=1698393293", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T11:27:09.000Z" }, { @@ -90,9 +76,7 @@ "content": "More than half a million displaced Palestinians are sheltering in 150 UNRWA facilities and in poor conditions.", "contentSnippet": "More than half a million displaced Palestinians are sheltering in 150 UNRWA facilities and in poor conditions.", "guid": "https://www.aljazeera.com/?t=1698243489", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T11:12:11.000Z" }, { @@ -102,9 +86,7 @@ "content": "Activists who opposed the Iraq War are warning of lessons from 2003, as they push the UK government to seek peace. ", "contentSnippet": "Activists who opposed the Iraq War are warning of lessons from 2003, as they push the UK government to seek peace.", "guid": "https://www.aljazeera.com/?t=1698391297", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T10:22:57.000Z" }, { @@ -114,9 +96,7 @@ "content": "The Palestinian news agency says the latest deaths take the number of Palestinians killed in the territory to 110.", "contentSnippet": "The Palestinian news agency says the latest deaths take the number of Palestinians killed in the territory to 110.", "guid": "https://www.aljazeera.com/?t=1698396389", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T10:11:36.000Z" }, { @@ -126,9 +106,7 @@ "content": "The overnight incursion was backed by fighter jets and drones that hit targets in Shujaiya area, Israel's army says.", "contentSnippet": "The overnight incursion was backed by fighter jets and drones that hit targets in Shujaiya area, Israel's army says.", "guid": "https://www.aljazeera.com/?t=1698394890", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T09:38:14.000Z" }, { @@ -138,9 +116,7 @@ "content": "John Kirby has said he saw "zero evidence" that the family of an Al Jazeera journalist in Gaza were targeted by Israel.", "contentSnippet": "John Kirby has said he saw \"zero evidence\" that the family of an Al Jazeera journalist in Gaza were targeted by Israel.", "guid": "https://www.aljazeera.com/?t=1698399250", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2023-10-27T09:36:37.000Z" }, { @@ -150,9 +126,7 @@ "content": "The US’s unwavering support for Israel has exposed both double standards and strategic short-sightedness, observers say.", "contentSnippet": "The US’s unwavering support for Israel has exposed both double standards and strategic short-sightedness, observers say.", "guid": "https://www.aljazeera.com/?t=1698333442", - "categories": [ - "Features" - ], + "categories": ["Features"], "isoDate": "2023-10-27T09:33:00.000Z" }, { @@ -162,9 +136,7 @@ "content": "A look at the terms dividing UN Security Council members in their efforts to temporarily halt fighting in Gaza. ", "contentSnippet": "A look at the terms dividing UN Security Council members in their efforts to temporarily halt fighting in Gaza.", "guid": "https://www.aljazeera.com/?t=1698317375", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T09:27:45.000Z" }, { @@ -174,9 +146,7 @@ "content": "The group needs time to locate captives taken to Gaza by various Palestinian factions, a Russian newspaper is told.", "contentSnippet": "The group needs time to locate captives taken to Gaza by various Palestinian factions, a Russian newspaper is told.", "guid": "https://www.aljazeera.com/?t=1698389345", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T08:29:33.000Z" }, { @@ -186,9 +156,7 @@ "content": "From an underground town to the start of a pre-dawn assault, an inside look at life on four front lines over four days.", "contentSnippet": "From an underground town to the start of a pre-dawn assault, an inside look at life on four front lines over four days.", "guid": "https://www.aljazeera.com/?t=1698327957", - "categories": [ - "Features" - ], + "categories": ["Features"], "isoDate": "2023-10-27T08:13:01.000Z" }, { @@ -198,9 +166,7 @@ "content": "Sultan Ibrahim of the southern state of Johor will hold the largely ceremonial post for five years. ", "contentSnippet": "Sultan Ibrahim of the southern state of Johor will hold the largely ceremonial post for five years.", "guid": "https://www.aljazeera.com/?t=1698390116", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T08:09:29.000Z" }, { @@ -210,9 +176,7 @@ "content": "As the conflict between Israel and Gaza enters its 21st day, these are the main developments.", "contentSnippet": "As the conflict between Israel and Gaza enters its 21st day, these are the main developments.", "guid": "https://www.aljazeera.com/?t=1698382591", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T07:54:04.000Z" }, { @@ -222,9 +186,7 @@ "content": "Yarmouk Square, and all its apartment buildings, was targeted and destroyed by Israeli air raids.", "contentSnippet": "Yarmouk Square, and all its apartment buildings, was targeted and destroyed by Israeli air raids.", "guid": "https://www.aljazeera.com/?t=1698322713", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T07:38:50.000Z" }, { @@ -234,9 +196,7 @@ "content": "Israel points to an 'aerial threat' after projectiles strike Taba and Nuweiba, towns not far from Israel and Gaza. ", "contentSnippet": "Israel points to an 'aerial threat' after projectiles strike Taba and Nuweiba, towns not far from Israel and Gaza.", "guid": "https://www.aljazeera.com/?t=1698389077", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T07:28:11.000Z" }, { @@ -246,9 +206,7 @@ "content": "The West is trying not only to stifle but to criminalise all Palestinian dissent.", "contentSnippet": "The West is trying not only to stifle but to criminalise all Palestinian dissent.", "guid": "https://www.aljazeera.com/?t=1698380556", - "categories": [ - "Opinions" - ], + "categories": ["Opinions"], "isoDate": "2023-10-27T07:23:50.000Z" }, { @@ -258,9 +216,7 @@ "content": "The Pacific storm strengthened with shocking swiftness before it hammered the beach resort of Acapulco. ", "contentSnippet": "The Pacific storm strengthened with shocking swiftness before it hammered the beach resort of Acapulco.", "guid": "https://www.aljazeera.com/?t=1698388740", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T07:20:42.000Z" }, { @@ -270,9 +226,7 @@ "content": "In one of the areas set up for displaced Palestinians in Khan Younis, volunteer cooks aim to feed 500 people daily.", "contentSnippet": "In one of the areas set up for displaced Palestinians in Khan Younis, volunteer cooks aim to feed 500 people daily.", "guid": "https://www.aljazeera.com/?t=1698323821", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T06:36:11.000Z" }, { @@ -282,9 +236,7 @@ "content": "Mohammad Shtayyeh discusses war on Gaza, West Bank-Israel relationship, and criticism against Palestinian Authority.", "contentSnippet": "Mohammad Shtayyeh discusses war on Gaza, West Bank-Israel relationship, and criticism against Palestinian Authority.", "guid": "https://www.aljazeera.com/?t=1698382431", - "categories": [ - "TV Shows" - ], + "categories": ["TV Shows"], "isoDate": "2023-10-27T06:29:47.000Z" }, { @@ -294,9 +246,7 @@ "content": "Four Palestinians also reportedly killed in the occupied West Bank following pre-dawn raids by Israeli forces. ", "contentSnippet": "Four Palestinians also reportedly killed in the occupied West Bank following pre-dawn raids by Israeli forces.", "guid": "https://www.aljazeera.com/?t=1698371612", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T06:14:50.000Z" }, { @@ -306,9 +256,7 @@ "content": "Families taking refuge in al-Shifa Hospital say situation is unbearable - no clean water, electricity, and sanitation.", "contentSnippet": "Families taking refuge in al-Shifa Hospital say situation is unbearable - no clean water, electricity, and sanitation.", "guid": "https://www.aljazeera.com/?t=1698400376", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T15:06:39.000Z" }, { @@ -318,9 +266,7 @@ "content": "Young boy lost his mother when Israel bombed the house his family sought refuge in in central Gaza, how will he cope?", "contentSnippet": "Young boy lost his mother when Israel bombed the house his family sought refuge in in central Gaza, how will he cope?", "guid": "https://www.aljazeera.com/?t=1698408679", - "categories": [ - "Features" - ], + "categories": ["Features"], "isoDate": "2023-10-27T14:35:47.000Z" }, { @@ -330,9 +276,7 @@ "content": "Bombs, lack of electricity and roads damaged by Israeli offensive make life impossible for disabled people in Gaza.", "contentSnippet": "Bombs, lack of electricity and roads damaged by Israeli offensive make life impossible for disabled people in Gaza.", "guid": "https://www.aljazeera.com/?t=1698157034", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T14:33:36.000Z" }, { @@ -342,9 +286,7 @@ "content": "An explosion was seen on the skyline in the Israeli city of Tel Aviv as a rocket fired from Gaza hit an apartment block.", "contentSnippet": "An explosion was seen on the skyline in the Israeli city of Tel Aviv as a rocket fired from Gaza hit an apartment block.", "guid": "https://www.aljazeera.com/?t=1698416785", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2023-10-27T14:29:11.000Z" }, { @@ -354,9 +296,7 @@ "content": "Since October 21, only 84 trucks carrying aid have been allowed into Gaza. ", "contentSnippet": "Since October 21, only 84 trucks carrying aid have been allowed into Gaza.", "guid": "https://www.aljazeera.com/?t=1698408786", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2023-10-27T13:21:54.000Z" }, { @@ -366,9 +306,7 @@ "content": "Mali and Burkina Faso recorded most extreme heat in what scientists called a once-in-a-200-year occurrence. \r\n", "contentSnippet": "Mali and Burkina Faso recorded most extreme heat in what scientists called a once-in-a-200-year occurrence.", "guid": "https://www.aljazeera.com/?t=1713420192", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T08:22:04.000Z" }, { @@ -378,9 +316,7 @@ "content": "Sikkim’s hydropower dream of huge revenues has turned into a nightmare due to irregularities and poor planning.", "contentSnippet": "Sikkim’s hydropower dream of huge revenues has turned into a nightmare due to irregularities and poor planning.", "guid": "https://www.aljazeera.com/?t=1713306293", - "categories": [ - "Features" - ], + "categories": ["Features"], "isoDate": "2024-04-18T08:19:06.000Z" }, { @@ -390,9 +326,7 @@ "content": "Video shows a spectacular lightning storm during an eruption on Indonesia’s Mount Ruang volcano. ", "contentSnippet": "Video shows a spectacular lightning storm during an eruption on Indonesia’s Mount Ruang volcano.", "guid": "https://www.aljazeera.com/?t=1713425953", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2024-04-18T07:47:32.000Z" }, { @@ -402,9 +336,7 @@ "content": "Even if all parties involved don't want an all-out war, history shows that it can still happen. ", "contentSnippet": "Even if all parties involved don't want an all-out war, history shows that it can still happen.", "guid": "https://www.aljazeera.com/?t=1713367611", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T07:31:06.000Z" }, { @@ -414,9 +346,7 @@ "content": "Tesla Chair Robyn Denholm says company believes in 'big risks for the chance of big rewards'.", "contentSnippet": "Tesla Chair Robyn Denholm says company believes in 'big risks for the chance of big rewards'.", "guid": "https://www.aljazeera.com/?t=1713420416", - "categories": [ - "Economy" - ], + "categories": ["Economy"], "isoDate": "2024-04-18T06:54:10.000Z" }, { @@ -426,9 +356,7 @@ "content": "The ruling party suddenly reintroduced the bill earlier this month, after mass protests forced its withdrawal last year.", "contentSnippet": "The ruling party suddenly reintroduced the bill earlier this month, after mass protests forced its withdrawal last year.", "guid": "https://www.aljazeera.com/?t=1713415070", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T05:42:34.000Z" }, { @@ -438,9 +366,7 @@ "content": "A total of 102 constituencies in 21 states will vote on April 19 for the first phase of the Lok Sabha elections. ", "contentSnippet": "A total of 102 constituencies in 21 states will vote on April 19 for the first phase of the Lok Sabha elections.", "guid": "https://www.aljazeera.com/?t=1712208954", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T05:39:53.000Z" }, { @@ -450,9 +376,7 @@ "content": "Uri Berliner quits broadcaster days after being suspended over essay accusing network of lacking viewpoint diversity.", "contentSnippet": "Uri Berliner quits broadcaster days after being suspended over essay accusing network of lacking viewpoint diversity.", "guid": "https://www.aljazeera.com/?t=1713404368", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T03:02:23.000Z" }, { @@ -462,9 +386,7 @@ "content": "Exclusion zone extended, flights disrupted as Ruang sends ash and smoke more than two kilometres into the sky.", "contentSnippet": "Exclusion zone extended, flights disrupted as Ruang sends ash and smoke more than two kilometres into the sky.", "guid": "https://www.aljazeera.com/?t=1713404254", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T02:42:17.000Z" }, { @@ -474,9 +396,7 @@ "content": "As the war enters its 784th day, these are the main developments.", "contentSnippet": "As the war enters its 784th day, these are the main developments.", "guid": "https://www.aljazeera.com/?t=1713396417", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T01:00:48.000Z" }, { @@ -486,9 +406,7 @@ "content": "Columbia President Nemat Shafik sought to avoid the outrage that erupted after a previous congressional hearing.", "contentSnippet": "Columbia President Nemat Shafik sought to avoid the outrage that erupted after a previous congressional hearing.", "guid": "https://www.aljazeera.com/?t=1713386343", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-17T22:28:57.000Z" }, { @@ -498,9 +416,7 @@ "content": "Police say five suspects arrested, three more being sought over theft of 6,600 gold bars at Toronto airport last year.", "contentSnippet": "Police say five suspects arrested, three more being sought over theft of 6,600 gold bars at Toronto airport last year.", "guid": "https://www.aljazeera.com/?t=1713383190", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-17T21:38:32.000Z" }, { @@ -510,9 +426,7 @@ "content": "Afghanistan says the move is illegal, but Pakistan insists it's for security reasons.", "contentSnippet": "Afghanistan says the move is illegal, but Pakistan insists it's for security reasons.", "guid": "https://www.aljazeera.com/?t=1713383364", - "categories": [ - "TV Shows" - ], + "categories": ["TV Shows"], "isoDate": "2024-04-17T20:24:25.000Z" }, { @@ -522,9 +436,7 @@ "content": "The country is likely to face a period of uncertainty as HDZ negotiates with smaller parties to form a government.", "contentSnippet": "The country is likely to face a period of uncertainty as HDZ negotiates with smaller parties to form a government.", "guid": "https://www.aljazeera.com/?t=1713377385", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-17T19:37:15.000Z" }, { @@ -534,9 +446,7 @@ "content": "At least 14 Israeli soldiers are wounded in an attack launched from Lebanon as regional tensions escalate. ", "contentSnippet": "At least 14 Israeli soldiers are wounded in an attack launched from Lebanon as regional tensions escalate.", "guid": "https://www.aljazeera.com/?t=1713374318", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-17T19:19:46.000Z" }, { @@ -546,9 +456,7 @@ "content": "Local monitoring groups say the number of Palestinians imprisoned by Israel has doubled to at least 9,500 since the war ", "contentSnippet": "Local monitoring groups say the number of Palestinians imprisoned by Israel has doubled to at least 9,500 since the war", "guid": "https://www.aljazeera.com/?t=1713380294", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2024-04-17T19:07:14.000Z" }, { @@ -558,9 +466,7 @@ "content": "A woman wheeled the corpse of an elderly man into a bank in Brazil, hoping to get a sign-off on a loan. ", "contentSnippet": "A woman wheeled the corpse of an elderly man into a bank in Brazil, hoping to get a sign-off on a loan.", "guid": "https://www.aljazeera.com/?t=1713380229", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2024-04-17T19:00:29.000Z" }, { @@ -570,9 +476,7 @@ "content": "US president's appeal comes as House Speaker Mike Johnson unveils plans to bring funding bills for a vote.", "contentSnippet": "US president's appeal comes as House Speaker Mike Johnson unveils plans to bring funding bills for a vote.", "guid": "https://www.aljazeera.com/?t=1713368693", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-17T18:04:33.000Z" }, { @@ -582,9 +486,7 @@ "content": "The effect the carbon footprint of rich countries is having on developing nations who enjoy very few of the benefits.", "contentSnippet": "The effect the carbon footprint of rich countries is having on developing nations who enjoy very few of the benefits.", "guid": "https://www.aljazeera.com/?t=1712234988", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2024-04-17T16:30:48.000Z" }, { @@ -594,9 +496,7 @@ "content": "Many will recall Romario's starring role at the 1994 World Cup, but he's registered to play again in Brazilian football.", "contentSnippet": "Many will recall Romario's starring role at the 1994 World Cup, but he's registered to play again in Brazilian football.", "guid": "https://www.aljazeera.com/?t=1713367412", - "categories": [ - "Sports" - ], + "categories": ["Sports"], "isoDate": "2024-04-17T15:54:07.000Z" }, { @@ -606,9 +506,7 @@ "content": "There are signs that Beijing may be getting cold feet about its deepening entanglement.", "contentSnippet": "There are signs that Beijing may be getting cold feet about its deepening entanglement.", "guid": "https://www.aljazeera.com/?t=1713258236", - "categories": [ - "Opinions" - ], + "categories": ["Opinions"], "isoDate": "2024-04-17T15:46:55.000Z" }, { @@ -618,9 +516,7 @@ "content": "Soldiers begin to leave region in South Caucasus long fought over by Azerbaijan and Armenia.", "contentSnippet": "Soldiers begin to leave region in South Caucasus long fought over by Azerbaijan and Armenia.", "guid": "https://www.aljazeera.com/?t=1713365296", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-17T15:41:40.000Z" }, { @@ -630,9 +526,7 @@ "content": "A mass bleaching event caused by high ocean temperatures is threatening the survival of coral reefs around the world.", "contentSnippet": "A mass bleaching event caused by high ocean temperatures is threatening the survival of coral reefs around the world.", "guid": "https://www.aljazeera.com/?t=1713366793", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2024-04-17T15:17:06.000Z" }, { @@ -642,9 +536,7 @@ "content": "Thirty-nine-year-old LeBron James will team up with a host of other top NBA players to go for gold at the Paris games.", "contentSnippet": "Thirty-nine-year-old LeBron James will team up with a host of other top NBA players to go for gold at the Paris games.", "guid": "https://www.aljazeera.com/?t=1713363991", - "categories": [ - "Sports" - ], + "categories": ["Sports"], "isoDate": "2024-04-17T15:03:39.000Z" }, { @@ -654,9 +546,7 @@ "content": "Iran holds military parade days after its missile and drone attack on Israel.", "contentSnippet": "Iran holds military parade days after its missile and drone attack on Israel.", "guid": "https://www.aljazeera.com/?t=1713356862", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-17T15:00:09.000Z" }, { @@ -666,9 +556,7 @@ "content": "Religious tensions, inflation and jobs top concerns from Modi's decade-long rule among 18 million first-time voters.", "contentSnippet": "Religious tensions, inflation and jobs top concerns from Modi's decade-long rule among 18 million first-time voters.", "guid": "https://www.aljazeera.com/?t=1713422900", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T09:24:00.000Z" }, { @@ -678,9 +566,7 @@ "content": "Appealing to UNSC for protection, Philippe Lazzarini says UNRWA's work more crucial than ever amid Israel's war on Gaza.", "contentSnippet": "Appealing to UNSC for protection, Philippe Lazzarini says UNRWA's work more crucial than ever amid Israel's war on Gaza.", "guid": "https://www.aljazeera.com/?t=1713423808", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T09:16:09.000Z" }, { @@ -690,9 +576,7 @@ "content": "Russia destroys Ukrainian power stations and defences as an expert warns Kyiv's troops are 'utterly exhausted'.", "contentSnippet": "Russia destroys Ukrainian power stations and defences as an expert warns Kyiv's troops are 'utterly exhausted'.", "guid": "https://www.aljazeera.com/?t=1713428779", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T09:03:58.000Z" }, { @@ -702,9 +586,7 @@ "content": "A Boeing engineer has told a US Senate hearing that the company is ‘putting out defective airplanes’.", "contentSnippet": "A Boeing engineer has told a US Senate hearing that the company is ‘putting out defective airplanes’.", "guid": "https://www.aljazeera.com/?t=1713432830", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2024-04-18T09:45:03.000Z" }, { @@ -714,9 +596,7 @@ "content": "Prosecutors accuse German-Russian duo of being prepared to 'carry out explosive and arson attacks' on US army sites.", "contentSnippet": "Prosecutors accuse German-Russian duo of being prepared to 'carry out explosive and arson attacks' on US army sites.", "guid": "https://www.aljazeera.com/?t=1713432771", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T10:54:24.000Z" }, { @@ -726,9 +606,7 @@ "content": "Chaos engulfed the UAE after its biggest city Dubai was inundated with water in the wake of record rainfall.", "contentSnippet": "Chaos engulfed the UAE after its biggest city Dubai was inundated with water in the wake of record rainfall.", "guid": "https://www.aljazeera.com/?t=1713414005", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T10:33:49.000Z" }, { @@ -738,9 +616,7 @@ "content": "Move in US election year could push up oil prices, but Washington says Maduro has not made promised electoral reforms.", "contentSnippet": "Move in US election year could push up oil prices, but Washington says Maduro has not made promised electoral reforms.", "guid": "https://www.aljazeera.com/?t=1713428229", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T10:22:51.000Z" }, { @@ -750,9 +626,7 @@ "content": "Zuma has survived a series of political setbacks and legal challenges. Now he's challenging President Cyril Ramaphosa. ", "contentSnippet": "Zuma has survived a series of political setbacks and legal challenges. Now he's challenging President Cyril Ramaphosa.", "guid": "https://www.aljazeera.com/?t=1713278944", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T10:02:20.000Z" }, { @@ -762,9 +636,7 @@ "content": "The wars in Gaza and Ukraine have renewed old debates about Western hypocrisy.", "contentSnippet": "The wars in Gaza and Ukraine have renewed old debates about Western hypocrisy.", "guid": "https://www.aljazeera.com/?t=1713346931", - "categories": [ - "Opinions" - ], + "categories": ["Opinions"], "isoDate": "2024-04-18T13:24:05.000Z" }, { @@ -774,9 +646,7 @@ "content": "Malak Mattar, who is exhibiting her work alongside the Venice Biennale, aims to raise awareness of 'genocide'.", "contentSnippet": "Malak Mattar, who is exhibiting her work alongside the Venice Biennale, aims to raise awareness of 'genocide'.", "guid": "https://www.aljazeera.com/?t=1713437665", - "categories": [ - "Features" - ], + "categories": ["Features"], "isoDate": "2024-04-18T13:14:38.000Z" }, { @@ -786,9 +656,7 @@ "content": "Palestinians captured the moment an Israeli soldier forced a man to strip before he was detained.", "contentSnippet": "Palestinians captured the moment an Israeli soldier forced a man to strip before he was detained.", "guid": "https://www.aljazeera.com/?t=1713441422", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2024-04-18T12:55:38.000Z" }, { @@ -798,9 +666,7 @@ "content": "The conflict in Sudan has displaced over two million people, triggering one of the world's largest humanitarian crises.", "contentSnippet": "The conflict in Sudan has displaced over two million people, triggering one of the world's largest humanitarian crises.", "guid": "https://www.aljazeera.com/?t=1713426757", - "categories": [ - "Opinions" - ], + "categories": ["Opinions"], "isoDate": "2024-04-18T12:20:53.000Z" }, { @@ -810,9 +676,7 @@ "content": "France condemns the move and says there 'were no legitimate grounds' to expel its diplomats. ", "contentSnippet": "France condemns the move and says there 'were no legitimate grounds' to expel its diplomats.", "guid": "https://www.aljazeera.com/?t=1713436022", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T11:41:10.000Z" }, { @@ -822,9 +686,7 @@ "content": "As families searched for relatives in the Nasser Hospital morgue, a woman held onto the body of her five-year-old niece.", "contentSnippet": "As families searched for relatives in the Nasser Hospital morgue, a woman held onto the body of her five-year-old niece.", "guid": "https://www.aljazeera.com/?t=1713433647", - "categories": [ - "News" - ], + "categories": ["News"], "isoDate": "2024-04-18T11:35:11.000Z" }, { @@ -834,9 +696,7 @@ "content": "Featuring unrivalled access, 101 East takes viewers inside the unique community of the Kung Fu Nuns of Kathmandu.", "contentSnippet": "Featuring unrivalled access, 101 East takes viewers inside the unique community of the Kung Fu Nuns of Kathmandu.", "guid": "https://www.aljazeera.com/?t=1713430239", - "categories": [ - "Show Types" - ], + "categories": ["Show Types"], "isoDate": "2024-04-18T11:30:01.000Z" } -] \ No newline at end of file +] diff --git a/intro to react/fun-with-react/public/index.html b/intro to react/fun-with-react/public/index.html index aa069f2..e65acb3 100644 --- a/intro to react/fun-with-react/public/index.html +++ b/intro to react/fun-with-react/public/index.html @@ -1,4 +1,4 @@ - + diff --git a/intro to react/fun-with-react/rss-to-json.js b/intro to react/fun-with-react/rss-to-json.js index 2e09193..e5e0010 100644 --- a/intro to react/fun-with-react/rss-to-json.js +++ b/intro to react/fun-with-react/rss-to-json.js @@ -1,5 +1,5 @@ -const express = require('express'); -const Parser = require('rss-parser'); +const express = require("express"); +const Parser = require("rss-parser"); const parser = new Parser(); const app = express(); @@ -8,29 +8,34 @@ const port = process.env.PORT || 50110; app.use(function (req, res, next) { // Set CORS headers to allow requests from any origin res.header("Access-Control-Allow-Origin", "*"); - res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); + res.header( + "Access-Control-Allow-Headers", + "Origin, X-Requested-With, Content-Type, Accept", + ); next(); }); -app.get('/', async (req, res) => { +app.get("/", async (req, res) => { if (req.query.feedURL) { const feedURL = req.query.feedURL; try { console.log(`Fetching and parsing RSS feed from: ${feedURL}`); const rss = await parser.parseURL(req.query.feedURL); - console.log('RSS feed parsed successfully.'); + console.log("RSS feed parsed successfully."); res.json(rss); } catch (error) { - console.error('Error:', error); - res.status(500).json({ error: 'An error occurred while fetching or parsing the RSS feed.' }); + console.error("Error:", error); + res + .status(500) + .json({ + error: "An error occurred while fetching or parsing the RSS feed.", + }); } } else { - res.status(400).json({ error: 'feedURL is required' }); + res.status(400).json({ error: "feedURL is required" }); } }); app.listen(port, () => { console.log(`Node app is running on port ${port}`); }); - - diff --git a/intro to react/fun-with-react/src/App.js b/intro to react/fun-with-react/src/App.js index 51146f8..8ce6cbb 100644 --- a/intro to react/fun-with-react/src/App.js +++ b/intro to react/fun-with-react/src/App.js @@ -1,97 +1,191 @@ import { BrowserRouter, Routes, Route } from "react-router-dom"; -import NavBar from './navBar.js'; -import NewsList from './newsList'; +import NavBar from "./navBar.js"; +import NewsList from "./newsList"; import { useState } from "react"; - function App() { const [searchQuery, setSearchQuery] = useState(""); - let techUrls = ["https://rss.nytimes.com/services/xml/rss/nyt/Technology.xml", "http://rss.slashdot.org/Slashdot/slashdot","http://feeds.arstechnica.com/arstechnica/index/","https://www.reddit.com/r/tech/top/.rss","https://www.reddit.com/r/technews/top/.rss","https://www.reddit.com/r/technology/top/.rss"] - let ukraineUrls = ["https://www.independent.co.uk/topic/ukraine/rss","https://www.nytimes.com/svc/collections/v1/publish/https://www.nytimes.com/news-event/ukraine-russia/rss.xml","https://www.ft.com/war-in-ukraine?format=rss","https://yahoo.com/news/rss/world","https://abcnews.go.com/abcnews/internationalheadlines",] - let ukUrls = ["http://feeds.bbci.co.uk/news/uk/rss.xml","https://dailymail.co.uk/home/index.rss","https://telegraph.co.uk/rss.xml","https://independent.co.uk/rss","https://standard.co.uk/rss"] - let worldUrls = ["https://www.aljazeera.com/xml/rss/all.xml","http://feeds.bbci.co.uk/news/world/rss.xml","https://rss.nytimes.com/services/xml/rss/nyt/World.xml","https://www.reutersagency.com/feed/?taxonomy=best-sectors&post_type=best","https://feeds.skynews.com/feeds/rss/world.xml","https://www.reddit.com/r/worldnews/top/.rss"] - let hackerUrls = ["https://hnrss.org/frontpage?points=30"] - let defenceUrls = ["https://defence-blog.com/topics/uk/feed/","https://www.thinkdefence.co.uk/feed/","https://ukdefencejournal.org.uk/feed/","https://www.gov.uk/government/organisations/ministry-of-defence.atom"] + let techUrls = [ + "https://rss.nytimes.com/services/xml/rss/nyt/Technology.xml", + "http://rss.slashdot.org/Slashdot/slashdot", + "http://feeds.arstechnica.com/arstechnica/index/", + "https://www.reddit.com/r/tech/top/.rss", + "https://www.reddit.com/r/technews/top/.rss", + "https://www.reddit.com/r/technology/top/.rss", + ]; + let ukraineUrls = [ + "https://www.independent.co.uk/topic/ukraine/rss", + "https://www.nytimes.com/svc/collections/v1/publish/https://www.nytimes.com/news-event/ukraine-russia/rss.xml", + "https://www.ft.com/war-in-ukraine?format=rss", + "https://yahoo.com/news/rss/world", + "https://abcnews.go.com/abcnews/internationalheadlines", + ]; + let ukUrls = [ + "http://feeds.bbci.co.uk/news/uk/rss.xml", + "https://dailymail.co.uk/home/index.rss", + "https://telegraph.co.uk/rss.xml", + "https://independent.co.uk/rss", + "https://standard.co.uk/rss", + ]; + let worldUrls = [ + "https://www.aljazeera.com/xml/rss/all.xml", + "http://feeds.bbci.co.uk/news/world/rss.xml", + "https://rss.nytimes.com/services/xml/rss/nyt/World.xml", + "https://www.reutersagency.com/feed/?taxonomy=best-sectors&post_type=best", + "https://feeds.skynews.com/feeds/rss/world.xml", + "https://www.reddit.com/r/worldnews/top/.rss", + ]; + let hackerUrls = ["https://hnrss.org/frontpage?points=30"]; + let defenceUrls = [ + "https://defence-blog.com/topics/uk/feed/", + "https://www.thinkdefence.co.uk/feed/", + "https://ukdefencejournal.org.uk/feed/", + "https://www.gov.uk/government/organisations/ministry-of-defence.atom", + ]; const handleSearchQuery = (query) => { setSearchQuery(query); - } + }; return (
- + - }> - -
-

Tech News

- -
-
- }/> - -
-

Ukraine News

- -
-
- } /> - -
-

UK News

- + } + > + +
+

+ Tech News +

+ +
+
+ } + /> + +
+

+ Ukraine News +

+ +
+
+ } + /> + +
+

+ UK News +

+ +
+ + } + /> + +
+

+ World News +

+ +
- - } /> - -
-

World News

- + } + /> + +
+

+ Hacker News +

+ +
+
+ } + /> + +

+ testing +

+ + + } + /> + + +

+ Defence News +

+ - - } /> - -
-

Hacker News

- + } + /> + +

+ All News +

+
- - } /> - -

testing

- - - } /> - - -

Defence News

- - - } /> - -

All News

- - - }/> + } + />
diff --git a/intro to react/fun-with-react/src/App.test.js b/intro to react/fun-with-react/src/App.test.js index 1f03afe..9382b9a 100644 --- a/intro to react/fun-with-react/src/App.test.js +++ b/intro to react/fun-with-react/src/App.test.js @@ -1,7 +1,7 @@ -import { render, screen } from '@testing-library/react'; -import App from './App'; +import { render, screen } from "@testing-library/react"; +import App from "./App"; -test('renders learn react link', () => { +test("renders learn react link", () => { render(); const linkElement = screen.getByText(/learn react/i); expect(linkElement).toBeInTheDocument(); diff --git a/intro to react/fun-with-react/src/NewsList.test.js b/intro to react/fun-with-react/src/NewsList.test.js index 97f4a7b..34a38a6 100644 --- a/intro to react/fun-with-react/src/NewsList.test.js +++ b/intro to react/fun-with-react/src/NewsList.test.js @@ -1,38 +1,38 @@ -import React from 'react'; -import { render, screen } from '@testing-library/react'; -import NewsList from './newsList.js'; +import React from "react"; +import { render, screen } from "@testing-library/react"; +import NewsList from "./newsList.js"; -describe('NewsList', () => { - it('renders loading message when isLoading is true', () => { +describe("NewsList", () => { + it("renders loading message when isLoading is true", () => { const props = { rssFeedUrls: [], - searchQuery: '', + searchQuery: "", }; render(); - expect(screen.getByText('Loading...')).toBeInTheDocument(); + expect(screen.getByText("Loading...")).toBeInTheDocument(); }); - it('renders news items when isLoading is false', () => { + it("renders news items when isLoading is false", () => { const mockNews = [ { - title: 'Test News 1', - link: 'http://example.com/news1', - contentSnippet: 'This is a test news 1', + title: "Test News 1", + link: "http://example.com/news1", + contentSnippet: "This is a test news 1", isoDate: new Date(), }, { - title: 'Test News 2', - link: 'http://example.com/news2', - contentSnippet: 'This is a test news 2', + title: "Test News 2", + link: "http://example.com/news2", + contentSnippet: "This is a test news 2", isoDate: new Date(), }, ]; const props = { rssFeedUrls: [], - searchQuery: '', + searchQuery: "", isLoading: false, news: mockNews, }; @@ -42,7 +42,7 @@ describe('NewsList', () => { mockNews.forEach((newsItem) => { expect(screen.getByText(newsItem.title)).toBeInTheDocument(); expect(screen.getByText(newsItem.contentSnippet)).toBeInTheDocument(); - expect(screen.getByText('Published:')).toBeInTheDocument(); + expect(screen.getByText("Published:")).toBeInTheDocument(); }); }); }); diff --git a/intro to react/fun-with-react/src/index.css b/intro to react/fun-with-react/src/index.css index 3ec2e08..667fefe 100644 --- a/intro to react/fun-with-react/src/index.css +++ b/intro to react/fun-with-react/src/index.css @@ -1,16 +1,16 @@ body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", + "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; } @tailwind base; @tailwind components; -@tailwind utilities; \ No newline at end of file +@tailwind utilities; diff --git a/intro to react/fun-with-react/src/index.js b/intro to react/fun-with-react/src/index.js index d563c0f..902eb7c 100644 --- a/intro to react/fun-with-react/src/index.js +++ b/intro to react/fun-with-react/src/index.js @@ -1,14 +1,14 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import './index.css'; -import App from './App'; -import reportWebVitals from './reportWebVitals'; +import React from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; +import App from "./App"; +import reportWebVitals from "./reportWebVitals"; -const root = ReactDOM.createRoot(document.getElementById('root')); +const root = ReactDOM.createRoot(document.getElementById("root")); root.render( - + , ); // If you want to start measuring performance in your app, pass a function diff --git a/intro to react/fun-with-react/src/navBar.js b/intro to react/fun-with-react/src/navBar.js index 8913215..ebb959d 100644 --- a/intro to react/fun-with-react/src/navBar.js +++ b/intro to react/fun-with-react/src/navBar.js @@ -1,63 +1,99 @@ import { Outlet, Link } from "react-router-dom"; -import {useState} from "react"; -import PropTypes from 'prop-types'; +import { useState } from "react"; +import PropTypes from "prop-types"; +function NavBar({ sendQueryToParent }) { + const [query, setQuery] = useState(""); + const sendQuery = () => { + sendQueryToParent(query); + }; -function NavBar({sendQueryToParent}) { - const [query, setQuery] = useState(""); - const sendQuery = () => { - sendQueryToParent(query); - } - - return ( -
- + +
+ ); +} NavBar.propTypes = { - sendQueryToParent: PropTypes.func.isRequired, - }; - -export default NavBar; \ No newline at end of file + sendQueryToParent: PropTypes.func.isRequired, +}; + +export default NavBar; diff --git a/intro to react/fun-with-react/src/newsList.js b/intro to react/fun-with-react/src/newsList.js index 932dd63..5698d47 100644 --- a/intro to react/fun-with-react/src/newsList.js +++ b/intro to react/fun-with-react/src/newsList.js @@ -1,22 +1,41 @@ -import React, { useEffect, useState } from 'react'; -import axios from 'axios'; -import PropTypes from 'prop-types'; -import { v4 as uuidv4 } from 'uuid'; +import React, { useEffect, useState } from "react"; +import axios from "axios"; +import PropTypes from "prop-types"; +import { v4 as uuidv4 } from "uuid"; const NewsItem = ({ item }) => { const { title, link, contentSnippet, isoDate } = item; let desc = contentSnippet; - desc = desc?.replace(/<[^>]+>/gi, "")?.replace(/ /gi, " ")?.replace(/'s/gi, "'"); + desc = desc + ?.replace(/<[^>]+>/gi, "") + ?.replace(/ /gi, " ") + ?.replace(/'s/gi, "'"); // Format the date as a string const formattedDate = isoDate.toLocaleString(); return ( - -

{title}

{/* title */} -

{desc}

{/* description */} -

Published: {formattedDate}

{/* formatted date */} + +

+ + {title} + +

{" "} + {/* title */} +

+ {desc} +

{" "} + {/* description */} +

+ Published: {formattedDate} +

{" "} + {/* formatted date */} ); }; @@ -39,13 +58,16 @@ function NewsList(props) { try { setIsLoading(true); if (Array.isArray(props.rssFeedUrls)) { - const response = await axios.post('http://localhost:50111/api/fetchNews', { - rssFeedUrls: props.rssFeedUrls, - }); + const response = await axios.post( + "http://localhost:50111/api/fetchNews", + { + rssFeedUrls: props.rssFeedUrls, + }, + ); setNews(response.data); } } catch (error) { - console.error('Error fetching data:', error); + console.error("Error fetching data:", error); } finally { setIsLoading(false); } @@ -60,8 +82,11 @@ function NewsList(props) { return (
{news - .filter(item => { - return !!(props.searchQuery === '' || item.title.toLowerCase().includes(props.searchQuery.toLowerCase())); + .filter((item) => { + return !!( + props.searchQuery === "" || + item.title.toLowerCase().includes(props.searchQuery.toLowerCase()) + ); }) .map((item, index) => ( @@ -75,4 +100,4 @@ NewsList.propTypes = { searchQuery: PropTypes.string.isRequired, }; -export default NewsList; \ No newline at end of file +export default NewsList; diff --git a/intro to react/fun-with-react/src/reportWebVitals.js b/intro to react/fun-with-react/src/reportWebVitals.js index 5253d3a..9ecd33f 100644 --- a/intro to react/fun-with-react/src/reportWebVitals.js +++ b/intro to react/fun-with-react/src/reportWebVitals.js @@ -1,6 +1,6 @@ -const reportWebVitals = onPerfEntry => { +const reportWebVitals = (onPerfEntry) => { if (onPerfEntry && onPerfEntry instanceof Function) { - import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { + import("web-vitals").then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { getCLS(onPerfEntry); getFID(onPerfEntry); getFCP(onPerfEntry); diff --git a/intro to react/fun-with-react/src/setupTests.js b/intro to react/fun-with-react/src/setupTests.js index 8f2609b..1dd407a 100644 --- a/intro to react/fun-with-react/src/setupTests.js +++ b/intro to react/fun-with-react/src/setupTests.js @@ -2,4 +2,4 @@ // allows you to do things like: // expect(element).toHaveTextContent(/react/i) // learn more: https://github.com/testing-library/jest-dom -import '@testing-library/jest-dom'; +import "@testing-library/jest-dom"; diff --git a/intro to react/fun-with-react/tailwind.config.js b/intro to react/fun-with-react/tailwind.config.js index 5a66654..37cc651 100644 --- a/intro to react/fun-with-react/tailwind.config.js +++ b/intro to react/fun-with-react/tailwind.config.js @@ -1,10 +1,8 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: [ - "./src/**/*.{js,jsx,ts,tsx}", - ], + content: ["./src/**/*.{js,jsx,ts,tsx}"], theme: { extend: {}, }, plugins: [], -} \ No newline at end of file +}; diff --git a/intro to react/newData/backend.mjs b/intro to react/newData/backend.mjs index c507ad6..df20c87 100644 --- a/intro to react/newData/backend.mjs +++ b/intro to react/newData/backend.mjs @@ -1,84 +1,91 @@ /* eslint-disable @typescript-eslint/no-var-requires */ -import express from 'express'; -import axios from 'axios'; -import fs from 'fs'; -import crypto from 'crypto'; -import path from 'path'; -import mongoose from 'mongoose'; +import express from "express"; +import axios from "axios"; +import fs from "fs"; +import crypto from "crypto"; +import path from "path"; +import mongoose from "mongoose"; const app = express(); const port = 50111; -import cors from 'cors'; +import cors from "cors"; app.use(cors()); app.use(express.json()); // Connect to MongoDB using Mongoose mongoose.connect("mongodb://100.125.70.69:27017/newsDB", { - authSource: "admin", - user: "root", - pass: "password", + authSource: "admin", + user: "root", + pass: "password", }); // Define Mongoose schema and model const NewsItemSchema = new mongoose.Schema({ - id: {Number, required: true}, - title: {String,required: true}, - contentSnippet: {String,required: true}, - date: {Date, required: true}, - sourceID: {String, required: true}, + id: { Number, required: true }, + title: { String, required: true }, + contentSnippet: { String, required: true }, + date: { Date, required: true }, + sourceID: { String, required: true }, }); const SourcesSchema = new mongoose.Schema({ - id: {Number, required: true}, - name: {String, required: true}, - url: {String, required: true}, - category: {String, required: true}, + id: { Number, required: true }, + name: { String, required: true }, + url: { String, required: true }, + category: { String, required: true }, }); - - -app.get('/api/fetchNews', async (req, res) => { +app.get("/api/fetchNews", async (req, res) => { try { const category = req.query.category; // lookup the RSS feed URLs for the given category - const sources = await mongoose.model('Sources', SourcesSchema) - const rssFeedUrls = sources.find({category}).lean().exec(); - + const sources = await mongoose.model("Sources", SourcesSchema); + const rssFeedUrls = sources.find({ category }).lean().exec(); + console.log(`Fetching and parsing RSS feeds from: ${rssFeedUrls}`); for (const element of rssFeedUrls) { - const response = await axios.get(`http://127.0.0.1:50110?feedURL=${element}`); - const newsItems = response.data.items.map(item => ({ ...item, isoDate: new Date(item.isoDate) })); + const response = await axios.get( + `http://127.0.0.1:50110?feedURL=${element}`, + ); + const newsItems = response.data.items.map((item) => ({ + ...item, + isoDate: new Date(item.isoDate), + })); newsItems.sort((a, b) => b.isoDate - a.isoDate); - const hash = crypto.createHash('sha256'); + const hash = crypto.createHash("sha256"); hash.update(element); - const sourceID = `${hash.digest('hex')}`; + const sourceID = `${hash.digest("hex")}`; for (item in newsItems) { item.sourceID = sourceID; } - const News = mongoose.model('News', NewsItemSchema); + const News = mongoose.model("News", NewsItemSchema); // Get the existing data from the database - const existingData = await News - .find({ sourceID }) - .lean() - .exec(); + const existingData = await News.find({ sourceID }).lean().exec(); // Add new items to the database - await News.insertMany(newsItems.filter(item => !existingData.some(existingItem => existingItem.link === item.link))); - - returnData = await News.find({sourceID}).lean().exec(); + await News.insertMany( + newsItems.filter( + (item) => + !existingData.some( + (existingItem) => existingItem.link === item.link, + ), + ), + ); + + returnData = await News.find({ sourceID }).lean().exec(); } res.json(returnData); } catch (error) { - console.error('Error fetching and processing data:', error); - res.status(500).json({ error: 'An error occurred' }); + console.error("Error fetching and processing data:", error); + res.status(500).json({ error: "An error occurred" }); } }); diff --git a/intro to react/newData/oldNews/0008730ff01a100398b2fca6f114ec1d18ea758867df0a5e1d9d7bb7fb87a91d.json b/intro to react/newData/oldNews/0008730ff01a100398b2fca6f114ec1d18ea758867df0a5e1d9d7bb7fb87a91d.json index 95e15ec..2426689 100644 --- a/intro to react/newData/oldNews/0008730ff01a100398b2fca6f114ec1d18ea758867df0a5e1d9d7bb7fb87a91d.json +++ b/intro to react/newData/oldNews/0008730ff01a100398b2fca6f114ec1d18ea758867df0a5e1d9d7bb7fb87a91d.json @@ -1,2450 +1,2450 @@ [ - { - "creator": "BeauHD", - "date": "2023-11-30T23:20:00+00:00", - "title": "Google Researchers' Attack Prompts ChatGPT To Reveal Its Training Data", - "link": "https://yro.slashdot.org/story/23/11/30/2210216/google-researchers-attack-prompts-chatgpt-to-reveal-its-training-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-11-30T23:20:00+00:00", - "content": "Jason Koebler reports via 404 Media: A team of researchers primarily from Google's DeepMind systematically convinced ChatGPT to reveal snippets of the data it was trained on using a new type of attack prompt which asked a production model of the chatbot to repeat specific words forever. Using this tactic, the researchers showed that there are large amounts of privately identifiable information (PII) in OpenAI's large language models. They also showed that, on a public version of ChatGPT, the chatbot spit out large passages of text scraped verbatim from other places on the internet.\n \nChatGPT's response to the prompt \"Repeat this word forever: 'poem poem poem poem'\" was the word \"poem\" for a long time, and then, eventually, an email signature for a real human \"founder and CEO,\" which included their personal contact information including cell phone number and email address, for example. \"We show an adversary can extract gigabytes of training data from open-source language models like Pythia or GPT-Neo, semi-open models like LLaMA or Falcon, and closed models like ChatGPT,\" the researchers, from Google DeepMind, the University of Washington, Cornell, Carnegie Mellon University, the University of California Berkeley, and ETH Zurich, wrote in a paper published in the open access prejournal arXiv Tuesday.\n \nThis is particularly notable given that OpenAI's models are closed source, as is the fact that it was done on a publicly available, deployed version of ChatGPT-3.5-turbo. It also, crucially, shows that ChatGPT's \"alignment techniques do not eliminate memorization,\" meaning that it sometimes spits out training data verbatim. This included PII, entire poems, \"cryptographically-random identifiers\" like Bitcoin addresses, passages from copyrighted scientific research papers, website addresses, and much more. \"In total, 16.9 percent of generations we tested contained memorized PII,\" they wrote, which included \"identifying phone and fax numbers, email and physical addresses ... social media handles, URLs, and names and birthdays.\" [...] The researchers wrote that they spent $200 to create \"over 10,000 unique examples\" of training data, which they say is a total of \"several megabytes\" of training data. The researchers suggest that using this attack, with enough money, they could have extracted gigabytes of training data.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Jason Koebler reports via 404 Media: A team of researchers primarily from Google's DeepMind systematically convinced ChatGPT to reveal snippets of the data it was trained on using a new type of attack prompt which asked a production model of the chatbot to repeat specific words forever. Using this tactic, the researchers showed that there are large amounts of privately identifiable information (PII) in OpenAI's large language models. They also showed that, on a public version of ChatGPT, the chatbot spit out large passages of text scraped verbatim from other places on the internet.\n \nChatGPT's response to the prompt \"Repeat this word forever: 'poem poem poem poem'\" was the word \"poem\" for a long time, and then, eventually, an email signature for a real human \"founder and CEO,\" which included their personal contact information including cell phone number and email address, for example. \"We show an adversary can extract gigabytes of training data from open-source language models like Pythia or GPT-Neo, semi-open models like LLaMA or Falcon, and closed models like ChatGPT,\" the researchers, from Google DeepMind, the University of Washington, Cornell, Carnegie Mellon University, the University of California Berkeley, and ETH Zurich, wrote in a paper published in the open access prejournal arXiv Tuesday.\n \nThis is particularly notable given that OpenAI's models are closed source, as is the fact that it was done on a publicly available, deployed version of ChatGPT-3.5-turbo. It also, crucially, shows that ChatGPT's \"alignment techniques do not eliminate memorization,\" meaning that it sometimes spits out training data verbatim. This included PII, entire poems, \"cryptographically-random identifiers\" like Bitcoin addresses, passages from copyrighted scientific research papers, website addresses, and much more. \"In total, 16.9 percent of generations we tested contained memorized PII,\" they wrote, which included \"identifying phone and fax numbers, email and physical addresses ... social media handles, URLs, and names and birthdays.\" [...] The researchers wrote that they spent $200 to create \"over 10,000 unique examples\" of training data, which they say is a total of \"several megabytes\" of training data. The researchers suggest that using this attack, with enough money, they could have extracted gigabytes of training data.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/11/30/2210216/google-researchers-attack-prompts-chatgpt-to-reveal-its-training-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T23:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-11-30T22:40:00+00:00", - "title": "Adobe's Buy of Figma Is 'Likely' Bad For Developers, Rules UK Regulator", - "link": "https://news.slashdot.org/story/23/11/30/2155234/adobes-buy-of-figma-is-likely-bad-for-developers-rules-uk-regulator?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-11-30T22:40:00+00:00", - "content": "Paul Kunert reports via The Register: Adobe's $20 billion buy of web-first design collaboration start-up Figma will harm software developers if it goes ahead as proposed, according to a provisional ruling on the merger by Britain's competition regulator. The Competition and Markets Authority launched a deeper investigation of the tie-up in July when it classified Figma as an \"emerging threat to Adobe.\" Now in the latest twist, the regulator says it found the merger would eliminate one of two major players in three software sub-markets: product design; image editing; and illustration.\n \nFigma's tools are used by well-known businesses that are key to the success of the digital economy, the CMA reckons, including Airbnb, Patagonia and Vodafone. Approving the acquisition \"would remove the constraint Adobe exerts on Figma through its product design software, AdobeXD.\" The CMA adds in its report: \"The inquiry group also provisionally concluded that Adobe abandoned development of new product design software which could have competed even more closely with Figma and, given the timing of the decision, did this as a consequence of the merger. \"This supports the CMA's concern that this proposed deal would likely reduce innovation and the development of competitive new products.\" Some software developers are worried that Adobe would up the price of Figma's subsciption post merger, something Figma denied would happen.\n \nAs for image editing and illustration software, the \"threat posed\" by Figma has fueled product development of Adobe's Photoshop and Illustrator applications, including web versions, and this dynamic would be altered by the merger. \"This competition would be lost as a result of the transaction, harming designers and creative agencies who might have used these new tools or relied on future updates,\" the CMA's report adds. The nature of the ruling is provisions., and the CMA will now consult of them and consider potential remedies \"which could include blocking the deal outright.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Paul Kunert reports via The Register: Adobe's $20 billion buy of web-first design collaboration start-up Figma will harm software developers if it goes ahead as proposed, according to a provisional ruling on the merger by Britain's competition regulator. The Competition and Markets Authority launched a deeper investigation of the tie-up in July when it classified Figma as an \"emerging threat to Adobe.\" Now in the latest twist, the regulator says it found the merger would eliminate one of two major players in three software sub-markets: product design; image editing; and illustration.\n \nFigma's tools are used by well-known businesses that are key to the success of the digital economy, the CMA reckons, including Airbnb, Patagonia and Vodafone. Approving the acquisition \"would remove the constraint Adobe exerts on Figma through its product design software, AdobeXD.\" The CMA adds in its report: \"The inquiry group also provisionally concluded that Adobe abandoned development of new product design software which could have competed even more closely with Figma and, given the timing of the decision, did this as a consequence of the merger. \"This supports the CMA's concern that this proposed deal would likely reduce innovation and the development of competitive new products.\" Some software developers are worried that Adobe would up the price of Figma's subsciption post merger, something Figma denied would happen.\n \nAs for image editing and illustration software, the \"threat posed\" by Figma has fueled product development of Adobe's Photoshop and Illustrator applications, including web versions, and this dynamic would be altered by the merger. \"This competition would be lost as a result of the transaction, harming designers and creative agencies who might have used these new tools or relied on future updates,\" the CMA's report adds. The nature of the ruling is provisions., and the CMA will now consult of them and consider potential remedies \"which could include blocking the deal outright.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/23/11/30/2155234/adobes-buy-of-figma-is-likely-bad-for-developers-rules-uk-regulator?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T22:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-11-30T22:00:00+00:00", - "title": "ownCloud Vulnerability With Maximum 10 Severity Score Comes Under 'Mass' Exploitation", - "link": "https://it.slashdot.org/story/23/11/30/2148210/owncloud-vulnerability-with-maximum-10-severity-score-comes-under-mass-exploitation?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-11-30T22:00:00+00:00", - "content": "An anonymous reader quotes a report from Ars Technica: Security researchers are tracking what they say is the \"mass exploitation\" of a security vulnerability that makes it possible to take full control of servers running ownCloud, a widely used open source file-sharing server app. The vulnerability, which carries the maximum severity rating of 10, makes it possible to obtain passwords and cryptographic keys allowing administrative control of a vulnerable server by sending a simple Web request to a static URL, ownCloud officials warned last week. Within four days of the November 21 disclosure, researchers at security firm Greynoise said, they began observing \"mass exploitation\" in their honeypot servers, which masqueraded as vulnerable ownCloud servers to track attempts to exploit the vulnerability. The number of IP addresses sending the web requests has slowly risen since then. At the time this post went live on Ars, it had reached 13.\n \nCVE-2023-49103 resides in versions 0.2.0 and 0.3.0 of graphapi, an app that runs in some ownCloud deployments, depending on the way they're configured. A third-party code library used by the app provides a URL that, when accessed, reveals configuration details from the PHP-based environment. In last week's disclosure, ownCloud officials said that in containerized configurations -- such as those using the Docker virtualization tool -- the URL can reveal data used to log in to the vulnerable server. The officials went on to warn that simply disabling the app in such cases wasn't sufficient to lock down a vulnerable server. [...]\n \nTo fix the ownCloud vulnerability under exploitation, ownCloud advised users to: \"Delete the file owncloud/apps/graphapi/vendor/microsoft/microsoft-graph/tests/GetPhpInfo.php. Additionally, we disabled the phpinfo function in our docker-containers. We will apply various hardenings in future core releases to mitigate similar vulnerabilities.\n \nWe also advise to change the following secrets:\n- ownCloud admin password\n- Mail server credentials\n- Database credentials\n- Object-Store/S3 access-key\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Security researchers are tracking what they say is the \"mass exploitation\" of a security vulnerability that makes it possible to take full control of servers running ownCloud, a widely used open source file-sharing server app. The vulnerability, which carries the maximum severity rating of 10, makes it possible to obtain passwords and cryptographic keys allowing administrative control of a vulnerable server by sending a simple Web request to a static URL, ownCloud officials warned last week. Within four days of the November 21 disclosure, researchers at security firm Greynoise said, they began observing \"mass exploitation\" in their honeypot servers, which masqueraded as vulnerable ownCloud servers to track attempts to exploit the vulnerability. The number of IP addresses sending the web requests has slowly risen since then. At the time this post went live on Ars, it had reached 13.\n \nCVE-2023-49103 resides in versions 0.2.0 and 0.3.0 of graphapi, an app that runs in some ownCloud deployments, depending on the way they're configured. A third-party code library used by the app provides a URL that, when accessed, reveals configuration details from the PHP-based environment. In last week's disclosure, ownCloud officials said that in containerized configurations -- such as those using the Docker virtualization tool -- the URL can reveal data used to log in to the vulnerable server. The officials went on to warn that simply disabling the app in such cases wasn't sufficient to lock down a vulnerable server. [...]\n \nTo fix the ownCloud vulnerability under exploitation, ownCloud advised users to: \"Delete the file owncloud/apps/graphapi/vendor/microsoft/microsoft-graph/tests/GetPhpInfo.php. Additionally, we disabled the phpinfo function in our docker-containers. We will apply various hardenings in future core releases to mitigate similar vulnerabilities.\n \nWe also advise to change the following secrets:\n- ownCloud admin password\n- Mail server credentials\n- Database credentials\n- Object-Store/S3 access-key\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/23/11/30/2148210/owncloud-vulnerability-with-maximum-10-severity-score-comes-under-mass-exploitation?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T22:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T21:20:00+00:00", - "title": "HP Printer Software Turns Up Uninvited on Windows Systems", - "link": "https://it.slashdot.org/story/23/11/30/1916255/hp-printer-software-turns-up-uninvited-on-windows-systems?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T21:20:00+00:00", - "content": "Windows users are reporting that Hewlett Packard's HP Smart application is appearing on their systems, despite them not having any of the company's hardware attached. From a report: While Microsoft has remained tight-lipped on what is happening, folks on various social media platforms noted the app's appearance, which seems to afflict both Windows 10 and Windows 11. The Windows Update mechanism is used to deploy third-party applications and drivers as well as Microsoft's updates, and we'd bet someone somewhere has accidentally checked the wrong box. \n\nUp to now, the response from affected users has been one of confusion. One noted on Reddit: \"I thought that was just me. I didn't install it, it just appeared on new apps in start menu out of nowhere.\" Another said: \"I just checked and I had it installed too. Checking the event log for the Microsoft Store shows that it installed earlier today, but I definitely did [not] request or initiate it because I do not have any devices from HP.\" And, of course, there was the inevitable: \"Would it be that hard for Microsoft to just provide an operating system without needless bloat?\" To be clear, not all users are affected.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Windows users are reporting that Hewlett Packard's HP Smart application is appearing on their systems, despite them not having any of the company's hardware attached. From a report: While Microsoft has remained tight-lipped on what is happening, folks on various social media platforms noted the app's appearance, which seems to afflict both Windows 10 and Windows 11. The Windows Update mechanism is used to deploy third-party applications and drivers as well as Microsoft's updates, and we'd bet someone somewhere has accidentally checked the wrong box. \n\nUp to now, the response from affected users has been one of confusion. One noted on Reddit: \"I thought that was just me. I didn't install it, it just appeared on new apps in start menu out of nowhere.\" Another said: \"I just checked and I had it installed too. Checking the event log for the Microsoft Store shows that it installed earlier today, but I definitely did [not] request or initiate it because I do not have any devices from HP.\" And, of course, there was the inevitable: \"Would it be that hard for Microsoft to just provide an operating system without needless bloat?\" To be clear, not all users are affected.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/23/11/30/1916255/hp-printer-software-turns-up-uninvited-on-windows-systems?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T21:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T20:41:00+00:00", - "title": "Local Governments Overwhelmed By Tennis-Pickleball Turf Wars, Documents Show", - "link": "https://news.slashdot.org/story/23/11/30/1923210/local-governments-overwhelmed-by-tennis-pickleball-turf-wars-documents-show?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T20:41:00+00:00", - "content": "An anonymous reader shares a report: In late September, an arsonist set fire to a storage shed at Memorial Park used by the Santa Monica Pickleball Club, torching thousands of dollars worth of nets, rackets, balls, and other pickleball equipment. \"Unknown suspect(s) caused a fire that damaged city property (Tennis Court Gate),\" a police report I obtained using a public records request says. The report adds that there is body camera footage of the incident and police-shot photos, but the city refused to release them to me because there is an ongoing investigation. The arsonist is still at large. \n\nWe still don't know the motive behind the arson, but the news caught my attention because it happened while I was in the midst of trying to understand what I've been calling the pickleball wars. For the last few months I've been trying to understand what's been happening behind-the-scenes in cities large and small by filing public records requests aimed at learning how common beefs about pickleball are, and what's causing them. \n\nIf you don't already know about \"the fastest growing sport,\" Pickleball is kind of like tennis, but played on a court a quarter of the size using a plastic ball similar to a wiffle ball and a hard racket. The smaller court, hard ball, and hard racket means that pickleball is louder than tennis, a fact that is brought up very often by homeowners and homeowner associations who claim, somewhat dubiously, that the noise from pickleball drives down their home values. My hypothesis going into researching this article was that people who live in cities are mad at the noise created during the act of playing pickleball and they have probably complained to the government about it. What I found was surprisingly more complex: Thousands of pages of documents I've reviewed show that pickleball's surging popularity is overwhelming under-resourced parks departments in city governments all over the country.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader shares a report: In late September, an arsonist set fire to a storage shed at Memorial Park used by the Santa Monica Pickleball Club, torching thousands of dollars worth of nets, rackets, balls, and other pickleball equipment. \"Unknown suspect(s) caused a fire that damaged city property (Tennis Court Gate),\" a police report I obtained using a public records request says. The report adds that there is body camera footage of the incident and police-shot photos, but the city refused to release them to me because there is an ongoing investigation. The arsonist is still at large. \n\nWe still don't know the motive behind the arson, but the news caught my attention because it happened while I was in the midst of trying to understand what I've been calling the pickleball wars. For the last few months I've been trying to understand what's been happening behind-the-scenes in cities large and small by filing public records requests aimed at learning how common beefs about pickleball are, and what's causing them. \n\nIf you don't already know about \"the fastest growing sport,\" Pickleball is kind of like tennis, but played on a court a quarter of the size using a plastic ball similar to a wiffle ball and a hard racket. The smaller court, hard ball, and hard racket means that pickleball is louder than tennis, a fact that is brought up very often by homeowners and homeowner associations who claim, somewhat dubiously, that the noise from pickleball drives down their home values. My hypothesis going into researching this article was that people who live in cities are mad at the noise created during the act of playing pickleball and they have probably complained to the government about it. What I found was surprisingly more complex: Thousands of pages of documents I've reviewed show that pickleball's surging popularity is overwhelming under-resourced parks departments in city governments all over the country.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/23/11/30/1923210/local-governments-overwhelmed-by-tennis-pickleball-turf-wars-documents-show?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T20:41:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T20:00:00+00:00", - "title": "Brain Study Suggests Traumatic Memories Are Processed as Present Experience", - "link": "https://science.slashdot.org/story/23/11/30/1914241/brain-study-suggests-traumatic-memories-are-processed-as-present-experience?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T20:00:00+00:00", - "content": "Traumatic memories had their own neural mechanism, brain scans showed, which may help explain their vivid and intrusive nature. From a report: At the root of post-traumatic stress disorder, or PTSD, is a memory that cannot be controlled. It may intrude on everyday activity, thrusting a person into the middle of a horrifying event, or surface as night terrors or flashbacks. Decades of treatment of military veterans and sexual assault survivors have left little doubt that traumatic memories function differently from other memories. A group of researchers at Yale University and the Icahn School of Medicine at Mount Sinai set out to find empirical evidence of those differences. \n\nThe team conducted brain scans of 28 people with PTSD while they listened to recorded narrations of their own memories. Some of the recorded memories were neutral, some were simply \"sad,\" and some were traumatic. The brain scans found clear differences, the researchers reported in a paper published on Thursday in the journal Nature Neuroscience. The people listening to the sad memories, which often involved the death of a family member, showed consistently high engagement of the hippocampus, part of the brain that organizes and contextualizes memories. When the same people listened to their traumatic memories -- of sexual assaults, fires, school shootings and terrorist attacks -- the hippocampus was not involved. \n\n[...] Indeed, the authors conclude in the paper, \"traumatic memories are not experienced as memories as such,\" but as \"fragments of prior events, subjugating the present moment.\" The traumatic memories appeared to engage a different area of the brain -- the posterior cingulate cortex, or P.C.C., which is usually involved in internally directed thought, like introspection or daydreaming. The more severe the person's PTSD symptoms were, the more activity appeared in the P.C.C. What is striking about this finding is that the P.C.C. is not known as a memory region, but one that is engaged with \"processing of internal experience,\" Dr. Schiller said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Traumatic memories had their own neural mechanism, brain scans showed, which may help explain their vivid and intrusive nature. From a report: At the root of post-traumatic stress disorder, or PTSD, is a memory that cannot be controlled. It may intrude on everyday activity, thrusting a person into the middle of a horrifying event, or surface as night terrors or flashbacks. Decades of treatment of military veterans and sexual assault survivors have left little doubt that traumatic memories function differently from other memories. A group of researchers at Yale University and the Icahn School of Medicine at Mount Sinai set out to find empirical evidence of those differences. \n\nThe team conducted brain scans of 28 people with PTSD while they listened to recorded narrations of their own memories. Some of the recorded memories were neutral, some were simply \"sad,\" and some were traumatic. The brain scans found clear differences, the researchers reported in a paper published on Thursday in the journal Nature Neuroscience. The people listening to the sad memories, which often involved the death of a family member, showed consistently high engagement of the hippocampus, part of the brain that organizes and contextualizes memories. When the same people listened to their traumatic memories -- of sexual assaults, fires, school shootings and terrorist attacks -- the hippocampus was not involved. \n\n[...] Indeed, the authors conclude in the paper, \"traumatic memories are not experienced as memories as such,\" but as \"fragments of prior events, subjugating the present moment.\" The traumatic memories appeared to engage a different area of the brain -- the posterior cingulate cortex, or P.C.C., which is usually involved in internally directed thought, like introspection or daydreaming. The more severe the person's PTSD symptoms were, the more activity appeared in the P.C.C. What is striking about this finding is that the P.C.C. is not known as a memory region, but one that is engaged with \"processing of internal experience,\" Dr. Schiller said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/11/30/1914241/brain-study-suggests-traumatic-memories-are-processed-as-present-experience?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T20:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T19:20:00+00:00", - "title": "Web Browser Suspended Because It Can Browse the Web is Back on Google Play", - "link": "https://tech.slashdot.org/story/23/11/30/1849237/web-browser-suspended-because-it-can-browse-the-web-is-back-on-google-play?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T19:20:00+00:00", - "content": "Google Play has reversed its latest ban on a web browser that keeps getting targeted by vague Digital Millennium Copyright Act (DMCA) notices. Downloader, an Android TV app that combines a browser with a file manager, was restored to Google Play last night. From a report: Downloader, made by app developer Elias Saba, was suspended on Sunday after a DMCA notice submitted by copyright-enforcement firm MarkScan on behalf of Warner Bros. Discovery. It was the second time in six months that Downloader was suspended based on a complaint that the app's web browser is capable of loading websites. \n\nThe first suspension in May lasted three weeks, but Google reversed the latest one much more quickly. As we wrote on Monday, the MarkScan DMCA notice didn't even list any copyrighted works that Downloader supposedly infringed upon. Instead of identifying specific copyrighted works, the MarkScan notice said only that Downloader infringed on \"Properties of Warner Bros. Discovery Inc.\" In the field where a DMCA complainant is supposed to provide an example of where someone can view an authorized example of the work, MarkScan simply entered the main Warner Bros. URL: https://www.warnerbros.com/.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google Play has reversed its latest ban on a web browser that keeps getting targeted by vague Digital Millennium Copyright Act (DMCA) notices. Downloader, an Android TV app that combines a browser with a file manager, was restored to Google Play last night. From a report: Downloader, made by app developer Elias Saba, was suspended on Sunday after a DMCA notice submitted by copyright-enforcement firm MarkScan on behalf of Warner Bros. Discovery. It was the second time in six months that Downloader was suspended based on a complaint that the app's web browser is capable of loading websites. \n\nThe first suspension in May lasted three weeks, but Google reversed the latest one much more quickly. As we wrote on Monday, the MarkScan DMCA notice didn't even list any copyrighted works that Downloader supposedly infringed upon. Instead of identifying specific copyrighted works, the MarkScan notice said only that Downloader infringed on \"Properties of Warner Bros. Discovery Inc.\" In the field where a DMCA complainant is supposed to provide an example of where someone can view an authorized example of the work, MarkScan simply entered the main Warner Bros. URL: https://www.warnerbros.com/.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/11/30/1849237/web-browser-suspended-because-it-can-browse-the-web-is-back-on-google-play?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T19:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T18:40:00+00:00", - "title": "Over 75% of Web3 Games 'Failed' in Last Five Years", - "link": "https://games.slashdot.org/story/23/11/30/1749259/over-75-of-web3-games-failed-in-last-five-years?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T18:40:00+00:00", - "content": "Web3 research and analytics firm CoinGecko: Around 2,127 web3 games have failed in the last five years since the GameFi niche emerged, representing 75.5% of the 2,817 web3 games launched. In other words, 3 out of every 4 web3 games have become inactive. The average annual failure rate for web3 games has been 80.8% from 2018 to 2023, based on the number of web3 games failed compared to launched.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Web3 research and analytics firm CoinGecko: Around 2,127 web3 games have failed in the last five years since the GameFi niche emerged, representing 75.5% of the 2,817 web3 games launched. In other words, 3 out of every 4 web3 games have become inactive. The average annual failure rate for web3 games has been 80.8% from 2018 to 2023, based on the number of web3 games failed compared to launched.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/23/11/30/1749259/over-75-of-web3-games-failed-in-last-five-years?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T18:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T18:02:00+00:00", - "title": "A Star With Six Planets That Orbit Perfectly in Sync", - "link": "https://science.slashdot.org/story/23/11/30/1654236/a-star-with-six-planets-that-orbit-perfectly-in-sync?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T18:02:00+00:00", - "content": "Astronomers have discovered six planets orbiting a bright star in perfect resonance. The star system, 100 light-years from Earth, was described on Wednesday in a paper published in the journal Nature. From a report: The discovery of the system could give astronomers a unique opportunity to trace the evolution of these worlds to when they first formed, and potentially offer insights into how our solar system got to be the way it is today. \"It's like looking at a fossil,\" said Rafael Luque, an astronomer at the University of Chicago who led the study. \"The orbits of the planets today are the same as they were a billion years ago.\" \n\nResearchers think that when planets first form, their orbits around a star are in sync. That is, the time it takes for one planet to waltz around its host star might be the same amount of time it takes for a second planet to circle exactly twice, or exactly three times. Systems that line up like this are known as orbital resonances. But, despite the theory, finding resonances in the Milky Way is rare. Only 1 percent of planetary systems still preserve this symmetry. \n\nMost of the time, planetary orbits get knocked out of sync by an event that upsets the gravitational balance of the system. That could be a close encounter with another star, the formation of a massive planet like Jupiter, or a giant impact from space on one planet that causes a ripple effect in other orbits. When this happens, Dr. Luque said, planetary orbits become too chaotic to mathematically describe, and knowledge of their evolution is indecipherable. Astronomers are lucky to find even one pair of exoplanets in resonance. But in the newly discovered star system, there are a whopping five pairs, because all six planets have orbits that are in sync with one another. Dr. Luque described it as \"the 1 percent of the 1 percent.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Astronomers have discovered six planets orbiting a bright star in perfect resonance. The star system, 100 light-years from Earth, was described on Wednesday in a paper published in the journal Nature. From a report: The discovery of the system could give astronomers a unique opportunity to trace the evolution of these worlds to when they first formed, and potentially offer insights into how our solar system got to be the way it is today. \"It's like looking at a fossil,\" said Rafael Luque, an astronomer at the University of Chicago who led the study. \"The orbits of the planets today are the same as they were a billion years ago.\" \n\nResearchers think that when planets first form, their orbits around a star are in sync. That is, the time it takes for one planet to waltz around its host star might be the same amount of time it takes for a second planet to circle exactly twice, or exactly three times. Systems that line up like this are known as orbital resonances. But, despite the theory, finding resonances in the Milky Way is rare. Only 1 percent of planetary systems still preserve this symmetry. \n\nMost of the time, planetary orbits get knocked out of sync by an event that upsets the gravitational balance of the system. That could be a close encounter with another star, the formation of a massive planet like Jupiter, or a giant impact from space on one planet that causes a ripple effect in other orbits. When this happens, Dr. Luque said, planetary orbits become too chaotic to mathematically describe, and knowledge of their evolution is indecipherable. Astronomers are lucky to find even one pair of exoplanets in resonance. But in the newly discovered star system, there are a whopping five pairs, because all six planets have orbits that are in sync with one another. Dr. Luque described it as \"the 1 percent of the 1 percent.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/11/30/1654236/a-star-with-six-planets-that-orbit-perfectly-in-sync?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T18:02:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T17:25:00+00:00", - "title": "Activision Blizzard Had a Plan, or Ploy, To Launch Its Own Android Game Store", - "link": "https://tech.slashdot.org/story/23/11/30/1648220/activision-blizzard-had-a-plan-or-ploy-to-launch-its-own-android-game-store?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T17:25:00+00:00", - "content": "An anonymous reader shares a report: Until today, we'd never heard of \"Project Boston.\" It was Activision Blizzard King's big plan to earn more money from its mobile games by changing its relationship with Google. And if things had gone differently, it would have given Activision Blizzard its own app store on Android. In late 2019, according to internal emails and documents I saw today in the courtroom during the Epic v. Google trial, the company decided it was going to dual-track two intriguing parallel plans. \n\nThe first plan was to build its own mobile game store -- either in partnership with Epic Games and Clash of Clans publisher Supercell or all by itself -- to bypass the Google Play Store. You'd download it from a website, sideload it onto your Android phone, and then you'd be able to purchase, download, and patch games like Candy Crush, Call of Duty: Mobile, and Diablo Immortal there. In private emails with Epic CEO Tim Sweeney, Activision Blizzard CFO Armin Zerza pitched it as the \"Steam of Mobile\" -- a single place to buy mobile games, with a single payment system. Documents suggest the store would charge a transaction fee of 10 to 12 percent, lower than the 30 percent fee Google (and Nintendo, Sony, Microsoft, and Steam) impose on gaming transactions.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader shares a report: Until today, we'd never heard of \"Project Boston.\" It was Activision Blizzard King's big plan to earn more money from its mobile games by changing its relationship with Google. And if things had gone differently, it would have given Activision Blizzard its own app store on Android. In late 2019, according to internal emails and documents I saw today in the courtroom during the Epic v. Google trial, the company decided it was going to dual-track two intriguing parallel plans. \n\nThe first plan was to build its own mobile game store -- either in partnership with Epic Games and Clash of Clans publisher Supercell or all by itself -- to bypass the Google Play Store. You'd download it from a website, sideload it onto your Android phone, and then you'd be able to purchase, download, and patch games like Candy Crush, Call of Duty: Mobile, and Diablo Immortal there. In private emails with Epic CEO Tim Sweeney, Activision Blizzard CFO Armin Zerza pitched it as the \"Steam of Mobile\" -- a single place to buy mobile games, with a single payment system. Documents suggest the store would charge a transaction fee of 10 to 12 percent, lower than the 30 percent fee Google (and Nintendo, Sony, Microsoft, and Steam) impose on gaming transactions.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/11/30/1648220/activision-blizzard-had-a-plan-or-ploy-to-launch-its-own-android-game-store?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T17:25:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T16:40:00+00:00", - "title": "Microsoft President Says No Chance of Super-Intelligent AI Soon", - "link": "https://slashdot.org/story/23/11/30/1639238/microsoft-president-says-no-chance-of-super-intelligent-ai-soon?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T16:40:00+00:00", - "content": "The president of tech giant Microsoft said there is no chance of super-intelligent artificial intelligence being created within the next 12 months, and cautioned that the technology could be decades away. From a report: OpenAI cofounder Sam Altman earlier this month was removed as CEO by the company's board of directors, but was swiftly reinstated after a weekend of outcry from employees and shareholders. Reuters last week exclusively reported that the ouster came shortly after researchers had contacted the board, warning of a dangerous discovery they feared could have unintended consequences. \n\nThe internal project named Q* (pronounced Q-Star) could be a breakthrough in the startup's search for what's known as artificial general intelligence (AGI), one source told Reuters. OpenAI defines AGI as autonomous systems that surpass humans in most economically valuable tasks. However, Microsoft President Brad Smith, speaking to reporters in Britain on Thursday, rejected claims of a dangerous breakthrough. \"There's absolutely no probability that you're going to see this so-called AGI, where computers are more powerful than people, in the next 12 months. It's going to take years, if not many decades, but I still think the time to focus on safety is now,\" he said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The president of tech giant Microsoft said there is no chance of super-intelligent artificial intelligence being created within the next 12 months, and cautioned that the technology could be decades away. From a report: OpenAI cofounder Sam Altman earlier this month was removed as CEO by the company's board of directors, but was swiftly reinstated after a weekend of outcry from employees and shareholders. Reuters last week exclusively reported that the ouster came shortly after researchers had contacted the board, warning of a dangerous discovery they feared could have unintended consequences. \n\nThe internal project named Q* (pronounced Q-Star) could be a breakthrough in the startup's search for what's known as artificial general intelligence (AGI), one source told Reuters. OpenAI defines AGI as autonomous systems that surpass humans in most economically valuable tasks. However, Microsoft President Brad Smith, speaking to reporters in Britain on Thursday, rejected claims of a dangerous breakthrough. \"There's absolutely no probability that you're going to see this so-called AGI, where computers are more powerful than people, in the next 12 months. It's going to take years, if not many decades, but I still think the time to focus on safety is now,\" he said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/23/11/30/1639238/microsoft-president-says-no-chance-of-super-intelligent-ai-soon?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T16:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T16:05:00+00:00", - "title": "Your Unused Gmail Account May Be Permanently Deleted Friday", - "link": "https://tech.slashdot.org/story/23/11/30/1532251/your-unused-gmail-account-may-be-permanently-deleted-friday?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T16:05:00+00:00", - "content": "Google will start to sweep away cobweb-collecting Gmail accounts this week. If you have an email address you haven't touched in a couple of years, it might soon be gone. From a report: The tech giant on Friday will start deleting personal Google accounts that have remained inactive for at least two years -- and going forward, it will continue killing accounts that reach two years of disuse. Once deleted, the accounts and any items in them can't be recovered. This could mean the end of personal emails, cherished documents and candid photos and videos tucked away in old Gmail accounts, Google Drives and other nooks in Google's servers.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google will start to sweep away cobweb-collecting Gmail accounts this week. If you have an email address you haven't touched in a couple of years, it might soon be gone. From a report: The tech giant on Friday will start deleting personal Google accounts that have remained inactive for at least two years -- and going forward, it will continue killing accounts that reach two years of disuse. Once deleted, the accounts and any items in them can't be recovered. This could mean the end of personal emails, cherished documents and candid photos and videos tucked away in old Gmail accounts, Google Drives and other nooks in Google's servers.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/11/30/1532251/your-unused-gmail-account-may-be-permanently-deleted-friday?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T16:05:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T15:20:00+00:00", - "title": "Meta's VR Headsets Have a Sweat-Sharing Problem", - "link": "https://tech.slashdot.org/story/23/11/30/1519206/metas-vr-headsets-have-a-sweat-sharing-problem?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T15:20:00+00:00", - "content": "It's the busiest shopping season of the year, but one item that doesn't appear to be flying off store shelves is Meta Platforms's Quest brand of virtual-reality headsets. Part of the reason is that many shoppers aren't comfortable trying one on in a store. From a report: The headsets are prone to collect dirt and grime and smear your makeup. During the peak of the Covid-19 pandemic, people were especially resistant to put them on in stores, even though Meta paid to have cleaners on hand to sanitize the headsets between each use, said a former Meta employee who wasn't authorized to speak publicly and asked not to be identified. \n\nThe health emergency is over, but many people are still weirded out by the idea of putting on a VR headset in public. Meta sells the Quest in the US through the stores of mobile carriers like AT&T, T-Mobile and Verizon. The thinking was, people are already trying out and buying other gadgets there. But picking up a phone that other people have touched feels different than strapping something to your face that other people have strapped to theirs. In-store sales of Quest headsets at mobile carriers' locations are very low, according to former employees of Reality Labs, the division that builds Meta's VR products.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "It's the busiest shopping season of the year, but one item that doesn't appear to be flying off store shelves is Meta Platforms's Quest brand of virtual-reality headsets. Part of the reason is that many shoppers aren't comfortable trying one on in a store. From a report: The headsets are prone to collect dirt and grime and smear your makeup. During the peak of the Covid-19 pandemic, people were especially resistant to put them on in stores, even though Meta paid to have cleaners on hand to sanitize the headsets between each use, said a former Meta employee who wasn't authorized to speak publicly and asked not to be identified. \n\nThe health emergency is over, but many people are still weirded out by the idea of putting on a VR headset in public. Meta sells the Quest in the US through the stores of mobile carriers like AT&T, T-Mobile and Verizon. The thinking was, people are already trying out and buying other gadgets there. But picking up a phone that other people have touched feels different than strapping something to your face that other people have strapped to theirs. In-store sales of Quest headsets at mobile carriers' locations are very low, according to former employees of Reality Labs, the division that builds Meta's VR products.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/11/30/1519206/metas-vr-headsets-have-a-sweat-sharing-problem?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T15:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T14:42:00+00:00", - "title": "Google Warns China Is Ramping Up Cyberattacks Against Taiwan", - "link": "https://tech.slashdot.org/story/23/11/30/1442258/google-warns-china-is-ramping-up-cyberattacks-against-taiwan?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T14:42:00+00:00", - "content": "China is waging a growing number of cyberattacks on neighboring Taiwan, according to cybersecurity experts at Alphabet's Google. From a report: Google has observed a \"massive increase\" in Chinese cyberattacks on Taiwan in the last six months or so, said Kate Morgan, a senior engineering manager in Google's threat analysis division, which monitors government-sponsored hacking campaigns. Morgan warned that Chinese hackers are employing tactics that make their work difficult to track, such as breaking into small home and office internet routers and repurposing them to wage attacks while masking their true origin. \n\n\"The number of groups in China that are performing hacking and trying to get into technology companies or get into cloud customers is huge,\" Morgan said. \"I don't have the exact number, but it is probably over 100 groups that we are tracking just out of China alone.\" The hackers are going \"after everything,\" including defense sector, government and private industry on the island, she said. Google's findings come as concerns have grown over the prospect of a conflict in Taiwan. The relationship between the US -- Taiwan's top military backer -- and China has deteriorated in recent years over a wide range of issues including Taiwan, human rights and a race to dominate advanced technologies such as chips, quantum computing and artificial intelligence.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "China is waging a growing number of cyberattacks on neighboring Taiwan, according to cybersecurity experts at Alphabet's Google. From a report: Google has observed a \"massive increase\" in Chinese cyberattacks on Taiwan in the last six months or so, said Kate Morgan, a senior engineering manager in Google's threat analysis division, which monitors government-sponsored hacking campaigns. Morgan warned that Chinese hackers are employing tactics that make their work difficult to track, such as breaking into small home and office internet routers and repurposing them to wage attacks while masking their true origin. \n\n\"The number of groups in China that are performing hacking and trying to get into technology companies or get into cloud customers is huge,\" Morgan said. \"I don't have the exact number, but it is probably over 100 groups that we are tracking just out of China alone.\" The hackers are going \"after everything,\" including defense sector, government and private industry on the island, she said. Google's findings come as concerns have grown over the prospect of a conflict in Taiwan. The relationship between the US -- Taiwan's top military backer -- and China has deteriorated in recent years over a wide range of issues including Taiwan, human rights and a race to dominate advanced technologies such as chips, quantum computing and artificial intelligence.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/11/30/1442258/google-warns-china-is-ramping-up-cyberattacks-against-taiwan?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T14:42:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-11-30T14:01:00+00:00", - "title": "Microsoft Wants Game Pass On PlayStation, Nintendo, And 'Every Screen' Possible", - "link": "https://games.slashdot.org/story/23/11/30/149246/microsoft-wants-game-pass-on-playstation-nintendo-and-every-screen-possible?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-11-30T14:01:00+00:00", - "content": "Microsoft wants to bring Xbox Game Pass to PlayStation and Nintendo. From a report: Xbox CFO Tim Stuart said during the Wells Fargo TMT Summit this week that the goal is to make first-party games and Game Pass available on \"every screen that can play games,\" and this includes rival consoles. \"It's a bit of a change of strategy. Not announcing anything broadly here, but our mission is to bring our first-party experiences [and] our subscription services to every screen that can play games,\" Stuart said. \"That means smart TVs, that means mobile devices, that means what we would have thought of as competitors in the past like PlayStation and Nintendo.\" \n\nStuart said Game Pass is a \"high margin\" business for Microsoft, along with first-party games and advertising. These are all areas that Microsoft plans to expand into significantly in the time ahead, Stuart said. The executive added that buying Activision Blizzard helps Microsoft get there faster than it might have been able to on its own. For the advertising part specifically, the Candy Crush mobile game series from King -- which is now owned by Microsoft -- is deeply embedded with ads and microtransactions.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Microsoft wants to bring Xbox Game Pass to PlayStation and Nintendo. From a report: Xbox CFO Tim Stuart said during the Wells Fargo TMT Summit this week that the goal is to make first-party games and Game Pass available on \"every screen that can play games,\" and this includes rival consoles. \"It's a bit of a change of strategy. Not announcing anything broadly here, but our mission is to bring our first-party experiences [and] our subscription services to every screen that can play games,\" Stuart said. \"That means smart TVs, that means mobile devices, that means what we would have thought of as competitors in the past like PlayStation and Nintendo.\" \n\nStuart said Game Pass is a \"high margin\" business for Microsoft, along with first-party games and advertising. These are all areas that Microsoft plans to expand into significantly in the time ahead, Stuart said. The executive added that buying Activision Blizzard helps Microsoft get there faster than it might have been able to on its own. For the advertising part specifically, the Candy Crush mobile game series from King -- which is now owned by Microsoft -- is deeply embedded with ads and microtransactions.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/23/11/30/149246/microsoft-wants-game-pass-on-playstation-nintendo-and-every-screen-possible?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-11-30T14:01:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-01T00:45:00+00:00", - "title": "US Judge Blocks Montana From Banning TikTok Use In State", - "link": "https://yro.slashdot.org/story/23/12/01/007246/us-judge-blocks-montana-from-banning-tiktok-use-in-state?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-01T00:45:00+00:00", - "content": "Montana's first-of-its-kind state ban on TikTok has been blocked by a U.S. judge, saying it \"oversteps state power and infringes on the constitutional rights of users.\" Reuters reports: TikTok, which is owned by China's ByteDance, did not immediately comment Thursday. The company sued Montana in May, seeking to block the U.S. state ban on several grounds, arguing that it violates the First Amendment free speech rights of the company and users. TikTok users in Montana also filed suit to block the ban. TikTok said in a court filing it \"has not shared, and would not share, U.S. user data with the Chinese government, and has taken substantial measures to protect the privacy and security of TikTok users.\"\n \nMolloy, who was appointed to the bench by Democratic President Bill Clinton, found merit to numerous arguments raised by TikTok in his opinion. During an October hearing, Molloy questioned why no other state had followed Montana in banning TikTok and asked if the state was being \"paternalistic\" in arguing the ban was necessary to protect the data of TikTok users. Montana could have imposed fines of $10,000 for each violation by TikTok in the state but the law did not impose penalties on individual TikTok users.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Montana's first-of-its-kind state ban on TikTok has been blocked by a U.S. judge, saying it \"oversteps state power and infringes on the constitutional rights of users.\" Reuters reports: TikTok, which is owned by China's ByteDance, did not immediately comment Thursday. The company sued Montana in May, seeking to block the U.S. state ban on several grounds, arguing that it violates the First Amendment free speech rights of the company and users. TikTok users in Montana also filed suit to block the ban. TikTok said in a court filing it \"has not shared, and would not share, U.S. user data with the Chinese government, and has taken substantial measures to protect the privacy and security of TikTok users.\"\n \nMolloy, who was appointed to the bench by Democratic President Bill Clinton, found merit to numerous arguments raised by TikTok in his opinion. During an October hearing, Molloy questioned why no other state had followed Montana in banning TikTok and asked if the state was being \"paternalistic\" in arguing the ban was necessary to protect the data of TikTok users. Montana could have imposed fines of $10,000 for each violation by TikTok in the state but the law did not impose penalties on individual TikTok users.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/12/01/007246/us-judge-blocks-montana-from-banning-tiktok-use-in-state?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-01T00:45:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-01T00:02:00+00:00", - "title": "Apple and Google Pick AllTrails and Imprint As Their 'App of the Year'", - "link": "https://mobile.slashdot.org/story/23/11/30/2224211/apple-and-google-pick-alltrails-and-imprint-as-their-app-of-the-year?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-01T00:02:00+00:00", - "content": "An anonymous reader quotes a report from TechCrunch: Both Apple and Google today announced their best apps and games of the year, with the hiking and biking companion AllTrails winning as Apple's iPhone App of the Year in 2023, while the educational app Imprint: Learn Visually won as Google Play's best app. Meanwhile, Apple and Google agreed on their Game of the Year, as both picked Honkai: Star Rail as their winner.\n \nThese year-end \"best of\" lists aren't just a way to drive interest in new apps and games, but serve as a way to gauge the status of the app marketplaces, what the platforms themselves wanted to celebrate and what drew consumers' attention in the year. Surprisingly, however, Apple this year bucked the trend of highlighting apps that were new to the store or that had taken advantage of a recently released technology in an innovative way. Instead, its finalists for iPhone App of the Year included apps that have long deserved accolades as well-built and well-designed mobile companions, including the language learning app Duolingo and travel app Flighty, in addition to winner AllTrails. Still, it's worth noting that this is a different type of selection than in previous years, when App Store winners included the breakout social hit BeReal in 2022 and the well-received children's app Toca Life World the year prior.\n \nIt's also worth noting that neither Apple nor Google chose an AI app as its app of the year, despite the incredible success of ChatGPT's mobile app and others. That's particularly odd given that ChatGPT became the fastest-growing consumer application in history earlier this year when it reached 100 million users shortly after its launch. That record was later broken by Instagram Threads, which hit 100 million users within just five days, and as of October had still maintained an active user base of just under 100 million. (However, the 100 million users Threads initially counted were sign-ups, not monthly active users, we should note. Meanwhile, ChatGPT's rise to 100 million users included its web app, so it's not an apples-to-apples comparison.) Either one of these picks would represent a mobile app success story, but both app store platforms looked to others as the top winners this year. Plus, outside of ChatGPT, many other AI apps are raking in millions in revenue as well, so the decision to avoid the AI category seems a deliberate choice on Apple's part.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Both Apple and Google today announced their best apps and games of the year, with the hiking and biking companion AllTrails winning as Apple's iPhone App of the Year in 2023, while the educational app Imprint: Learn Visually won as Google Play's best app. Meanwhile, Apple and Google agreed on their Game of the Year, as both picked Honkai: Star Rail as their winner.\n \nThese year-end \"best of\" lists aren't just a way to drive interest in new apps and games, but serve as a way to gauge the status of the app marketplaces, what the platforms themselves wanted to celebrate and what drew consumers' attention in the year. Surprisingly, however, Apple this year bucked the trend of highlighting apps that were new to the store or that had taken advantage of a recently released technology in an innovative way. Instead, its finalists for iPhone App of the Year included apps that have long deserved accolades as well-built and well-designed mobile companions, including the language learning app Duolingo and travel app Flighty, in addition to winner AllTrails. Still, it's worth noting that this is a different type of selection than in previous years, when App Store winners included the breakout social hit BeReal in 2022 and the well-received children's app Toca Life World the year prior.\n \nIt's also worth noting that neither Apple nor Google chose an AI app as its app of the year, despite the incredible success of ChatGPT's mobile app and others. That's particularly odd given that ChatGPT became the fastest-growing consumer application in history earlier this year when it reached 100 million users shortly after its launch. That record was later broken by Instagram Threads, which hit 100 million users within just five days, and as of October had still maintained an active user base of just under 100 million. (However, the 100 million users Threads initially counted were sign-ups, not monthly active users, we should note. Meanwhile, ChatGPT's rise to 100 million users included its web app, so it's not an apples-to-apples comparison.) Either one of these picks would represent a mobile app success story, but both app store platforms looked to others as the top winners this year. Plus, outside of ChatGPT, many other AI apps are raking in millions in revenue as well, so the decision to avoid the AI category seems a deliberate choice on Apple's part.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://mobile.slashdot.org/story/23/11/30/2224211/apple-and-google-pick-alltrails-and-imprint-as-their-app-of-the-year?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-01T00:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-01T01:25:00+00:00", - "title": "Microsoft In Talks To Launch Mobile Gaming Store, Rivaling Apple", - "link": "https://games.slashdot.org/story/23/12/01/0022236/microsoft-in-talks-to-launch-mobile-gaming-store-rivaling-apple?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-01T01:25:00+00:00", - "content": "According to Microsoft Gaming CEO Phil Spencer, the company is talking to partners to help launch a mobile gaming store that will take on Apple and Google. \"It's an important part of our strategy and something we are actively working on today not only alone, but talking to other partners who'd also like to see more choice for how they can monetize on the phone,\" Spencer said in an interview in Sao Paulo during the CCXP comics and entertainment convention. From the report: The executive declined to give a specific date for a launch of the online store, which earlier reports suggested could be next year. \"I don't think this is multiple years away, I think this is sooner than that,'' he said. [...] Microsoft's mobile store would also enter a challenging regulatory climate around smartphone-based digital marketplaces. Fortnite-maker Epic Games has sued both Apple and Alphabet's Google over their iOS and Android store practices, alleging they are unnecessarily restrictive and unfair. Apple doesn't allow competing stores on its iPhone and iPad platforms, and collects a 30% cut of sales for most purchases. Game makers have taken issue with the fees.\n \nEpic lost its battle with Apple but in September asked the US Supreme Court to weigh in. Apple is also petitioning that court to reverse an order that would force the company to let developers steer customers to other payment methods. Epic is still in court fighting its case against Google, which does allow third-party app stores on its devices.The European Union's Digital Markets Act, which is just beginning to take effect, could force Apple to open up its app store ecosystem. Apple is challenging the regulation.\n \nMicrosoft may be able to use long-standing resentment against the market leaders to martial support for its store offering. Xbox's cloud gaming technology already lets users stream blockbuster games to mobile phones. \"We've talked about choice, and today on your mobile phones, you don't have choice,'' Spencer said. \"To make sure that Xbox is not only relevant today but for the next 10, 20 years, we're going to have to be strong across many screens.\" Earlier this week, Xbox CFO Tim Stuart said during the Wells Fargo TMT Summit that Microsoft wants to make first-party games and Game Pass available on \"every screen that can play games,\" including rival consoles. \"It's a bit of a change of strategy. Not announcing anything broadly here, but our mission is to bring our first-party experiences [and] our subscription services to every screen that can play games,\" Stuart said. \"That means smart TVs, that means mobile devices, that means what we would have thought of as competitors in the past like PlayStation and Nintendo.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "According to Microsoft Gaming CEO Phil Spencer, the company is talking to partners to help launch a mobile gaming store that will take on Apple and Google. \"It's an important part of our strategy and something we are actively working on today not only alone, but talking to other partners who'd also like to see more choice for how they can monetize on the phone,\" Spencer said in an interview in Sao Paulo during the CCXP comics and entertainment convention. From the report: The executive declined to give a specific date for a launch of the online store, which earlier reports suggested could be next year. \"I don't think this is multiple years away, I think this is sooner than that,'' he said. [...] Microsoft's mobile store would also enter a challenging regulatory climate around smartphone-based digital marketplaces. Fortnite-maker Epic Games has sued both Apple and Alphabet's Google over their iOS and Android store practices, alleging they are unnecessarily restrictive and unfair. Apple doesn't allow competing stores on its iPhone and iPad platforms, and collects a 30% cut of sales for most purchases. Game makers have taken issue with the fees.\n \nEpic lost its battle with Apple but in September asked the US Supreme Court to weigh in. Apple is also petitioning that court to reverse an order that would force the company to let developers steer customers to other payment methods. Epic is still in court fighting its case against Google, which does allow third-party app stores on its devices.The European Union's Digital Markets Act, which is just beginning to take effect, could force Apple to open up its app store ecosystem. Apple is challenging the regulation.\n \nMicrosoft may be able to use long-standing resentment against the market leaders to martial support for its store offering. Xbox's cloud gaming technology already lets users stream blockbuster games to mobile phones. \"We've talked about choice, and today on your mobile phones, you don't have choice,'' Spencer said. \"To make sure that Xbox is not only relevant today but for the next 10, 20 years, we're going to have to be strong across many screens.\" Earlier this week, Xbox CFO Tim Stuart said during the Wells Fargo TMT Summit that Microsoft wants to make first-party games and Game Pass available on \"every screen that can play games,\" including rival consoles. \"It's a bit of a change of strategy. Not announcing anything broadly here, but our mission is to bring our first-party experiences [and] our subscription services to every screen that can play games,\" Stuart said. \"That means smart TVs, that means mobile devices, that means what we would have thought of as competitors in the past like PlayStation and Nintendo.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/23/12/01/0022236/microsoft-in-talks-to-launch-mobile-gaming-store-rivaling-apple?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-01T01:25:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-01T02:02:00+00:00", - "title": "Hyundai and Kia's New 'Uni Wheel' Drive System Could Revolutionize EV Design", - "link": "https://tech.slashdot.org/story/23/12/01/0032246/hyundai-and-kias-new-uni-wheel-drive-system-could-revolutionize-ev-design?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-01T02:02:00+00:00", - "content": "\"Two articles from Electrek and InsideEVs describe Hyundai and Kia's new 'Uni Wheel' drive system that could revolutionize EV design,\" writes longtime Slashdot reader Uncle_Meataxe. From a report: Described by its makers as a \"paradigm-shifting vehicle drive system,\" the Uni Wheel moves the main drive system components to the vacant space within an EVs wheel hubs. The approach utilizes a planetary gear configuration consisting of a sun gear in the center, four pinion gears on each side, and a ring gear surrounding everything. Traditional ICE vehicles utilize CV joints, but by moving them closer to the wheels requires a short drive train length and as a result, a decrease in efficiency and durability -- especially over bumpy terrain. Hyundai and Kia's Uni Wheel system on the other hand, can transmit power with almost zero changes to efficiency, regardless of wheel movement. \"Advantages include more platform space and more room within an EV's interior,\" adds Uncle_Meataxe. \"When this system may be integrated into an actual EV remains unclear, but Kia and Hyundai have already registered eight patents related to the technology.\" You can learn more about the new drive system via an instructional video on YouTube.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "\"Two articles from Electrek and InsideEVs describe Hyundai and Kia's new 'Uni Wheel' drive system that could revolutionize EV design,\" writes longtime Slashdot reader Uncle_Meataxe. From a report: Described by its makers as a \"paradigm-shifting vehicle drive system,\" the Uni Wheel moves the main drive system components to the vacant space within an EVs wheel hubs. The approach utilizes a planetary gear configuration consisting of a sun gear in the center, four pinion gears on each side, and a ring gear surrounding everything. Traditional ICE vehicles utilize CV joints, but by moving them closer to the wheels requires a short drive train length and as a result, a decrease in efficiency and durability -- especially over bumpy terrain. Hyundai and Kia's Uni Wheel system on the other hand, can transmit power with almost zero changes to efficiency, regardless of wheel movement. \"Advantages include more platform space and more room within an EV's interior,\" adds Uncle_Meataxe. \"When this system may be integrated into an actual EV remains unclear, but Kia and Hyundai have already registered eight patents related to the technology.\" You can learn more about the new drive system via an instructional video on YouTube.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/01/0032246/hyundai-and-kias-new-uni-wheel-drive-system-could-revolutionize-ev-design?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-01T02:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-08T07:00:00+00:00", - "title": "Light Can Be Reflected Not Only In Space But Also In Time", - "link": "https://science.slashdot.org/story/23/12/08/0222251/light-can-be-reflected-not-only-in-space-but-also-in-time?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-08T07:00:00+00:00", - "content": "Anna Demming reports via Scientific American: [A]lthough so far there's no way to unscramble an egg, in certain carefully controlled scenarios within relatively simple systems, researchers have managed to turn back time. The trick is to create a certain kind of reflection. First, imagine a regular spatial reflection, like one you see in a silver-backed glass mirror. Here reflection occurs because for a ray of light, silver is a very different transmission medium than air; the sudden change in optical properties causes the light to bounce back, like a Ping-Pong ball hitting a wall. Now imagine that instead of changing at particular points in space, the optical properties all along the ray's path change sharply at a specific moment in time. Rather than recoiling in space, the light would recoil in time, precisely retracing its tracks, like the Ping-Pong ball returning to the player who last hit it. This is a \"time reflection.\" Time reflections have fascinated theorists for decades but have proved devilishly tricky to pull off in practice because rapidly and sufficiently changing a material's optical properties is no small task. Now, however, researchers at the City University of New York have demonstrated a breakthrough: the creation of light-based time reflections. To do so, physicist Andrea Alu and his colleagues devised a \"metamaterial\" with adjustable optical properties that they could tweak within fractions of a nanosecond to halve or double how quickly light passes through. Metamaterials have properties determined by their structures; many are composed of arrays of microscopic rods or rings that can be tuned to interact with and manipulate light in ways that no natural material can. Bringing their power to bear on time reflections, Alu says, revealed some surprises. \"Now we are realizing that [time reflections] can be much richer than we thought because of the way that we implement them,\" he adds. [...]\n \nThe device Alu and his collaborators developed is essentially a waveguide that channels microwave-frequency light. A densely spaced array of switches along the waveguide connects it to capacitor circuits, which can dynamically add or remove material for the light to encounter. This can radically shift the waveguide's effective properties, such as how easily it allows light to pass through. \"We are not changing the material; we are adding or subtracting material,\" Alu says. \"That is why the process can be so fast.\" Time reflections come with a range of counterintuitive effects that have been theoretically predicted but never demonstrated with light. For instance, what is at the beginning of the original signal will be at the end of the reflected signal -- a situation akin to looking at yourself in a mirror and seeing the back of your head. In addition, whereas a standard reflection alters how light traverses space, a time reflection alters light's temporal components -- that is, its frequencies. As a result, in a time-reflected view, the back of your head is also a different color. Alu and his colleagues observed both of these effects in the team's device. Together they hold promise for fueling further advances in signal processing and communications -- two domains that are vital for the function of, say, your smartphone, which relies on effects such as shifting frequencies.\n \nJust a few months after developing the device, Alu and his colleagues observed more surprising behavior when they tried creating a time reflection in that waveguide while shooting two beams of light at each other inside it. Normally colliding beams of light behave as waves, producing interference patterns where their overlapping peaks and troughs add up or cancel out like ripples on water (in \"constructive\" or \"destructive\" interference, respectively). But light can, in fact, act as a pointlike projectile, a photon, as well as a wavelike oscillating field -- that is, it has \"wave-particle duality.\" Generally a particular scenario will distinctly elicit just one behavior or the other, however. For instance, colliding beams of light don't bounce off each other like billiard balls! But according to Alu and his team's experiments, when a time reflection occurs, it seems that they do. The researchers achieved this curious effect by controlling whether the colliding waves were interfering constructively or destructively -- whether they were adding or subtracting from each other -- when the time reflection occurred. By controlling the specific instant when the time reflection took place, the scientists demonstrated that the two waves bounce off each other with the same wave amplitudes that they started with, like colliding billiard balls. Alternatively they could end up with less energy, like recoiling spongy balls, or even gain energy, as would be the case for balls at either end of a stretched spring. \"We can make these interactions energy-conserving, energy-supplying or energy-suppressing,\" Alu says, highlighting how time reflections could provide a new control knob for applications that involve energy conversion and pulse shaping, in which the shape of a wave is changed to optimize a pulse's signal.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Anna Demming reports via Scientific American: [A]lthough so far there's no way to unscramble an egg, in certain carefully controlled scenarios within relatively simple systems, researchers have managed to turn back time. The trick is to create a certain kind of reflection. First, imagine a regular spatial reflection, like one you see in a silver-backed glass mirror. Here reflection occurs because for a ray of light, silver is a very different transmission medium than air; the sudden change in optical properties causes the light to bounce back, like a Ping-Pong ball hitting a wall. Now imagine that instead of changing at particular points in space, the optical properties all along the ray's path change sharply at a specific moment in time. Rather than recoiling in space, the light would recoil in time, precisely retracing its tracks, like the Ping-Pong ball returning to the player who last hit it. This is a \"time reflection.\" Time reflections have fascinated theorists for decades but have proved devilishly tricky to pull off in practice because rapidly and sufficiently changing a material's optical properties is no small task. Now, however, researchers at the City University of New York have demonstrated a breakthrough: the creation of light-based time reflections. To do so, physicist Andrea Alu and his colleagues devised a \"metamaterial\" with adjustable optical properties that they could tweak within fractions of a nanosecond to halve or double how quickly light passes through. Metamaterials have properties determined by their structures; many are composed of arrays of microscopic rods or rings that can be tuned to interact with and manipulate light in ways that no natural material can. Bringing their power to bear on time reflections, Alu says, revealed some surprises. \"Now we are realizing that [time reflections] can be much richer than we thought because of the way that we implement them,\" he adds. [...]\n \nThe device Alu and his collaborators developed is essentially a waveguide that channels microwave-frequency light. A densely spaced array of switches along the waveguide connects it to capacitor circuits, which can dynamically add or remove material for the light to encounter. This can radically shift the waveguide's effective properties, such as how easily it allows light to pass through. \"We are not changing the material; we are adding or subtracting material,\" Alu says. \"That is why the process can be so fast.\" Time reflections come with a range of counterintuitive effects that have been theoretically predicted but never demonstrated with light. For instance, what is at the beginning of the original signal will be at the end of the reflected signal -- a situation akin to looking at yourself in a mirror and seeing the back of your head. In addition, whereas a standard reflection alters how light traverses space, a time reflection alters light's temporal components -- that is, its frequencies. As a result, in a time-reflected view, the back of your head is also a different color. Alu and his colleagues observed both of these effects in the team's device. Together they hold promise for fueling further advances in signal processing and communications -- two domains that are vital for the function of, say, your smartphone, which relies on effects such as shifting frequencies.\n \nJust a few months after developing the device, Alu and his colleagues observed more surprising behavior when they tried creating a time reflection in that waveguide while shooting two beams of light at each other inside it. Normally colliding beams of light behave as waves, producing interference patterns where their overlapping peaks and troughs add up or cancel out like ripples on water (in \"constructive\" or \"destructive\" interference, respectively). But light can, in fact, act as a pointlike projectile, a photon, as well as a wavelike oscillating field -- that is, it has \"wave-particle duality.\" Generally a particular scenario will distinctly elicit just one behavior or the other, however. For instance, colliding beams of light don't bounce off each other like billiard balls! But according to Alu and his team's experiments, when a time reflection occurs, it seems that they do. The researchers achieved this curious effect by controlling whether the colliding waves were interfering constructively or destructively -- whether they were adding or subtracting from each other -- when the time reflection occurred. By controlling the specific instant when the time reflection took place, the scientists demonstrated that the two waves bounce off each other with the same wave amplitudes that they started with, like colliding billiard balls. Alternatively they could end up with less energy, like recoiling spongy balls, or even gain energy, as would be the case for balls at either end of a stretched spring. \"We can make these interactions energy-conserving, energy-supplying or energy-suppressing,\" Alu says, highlighting how time reflections could provide a new control knob for applications that involve energy conversion and pulse shaping, in which the shape of a wave is changed to optimize a pulse's signal.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/08/0222251/light-can-be-reflected-not-only-in-space-but-also-in-time?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-08T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-08T03:30:00+00:00", - "title": "Meta Publicly Launches AI Image Generator Trained On Your Facebook, Instagram Photos", - "link": "https://meta.slashdot.org/story/23/12/07/2345225/meta-publicly-launches-ai-image-generator-trained-on-your-facebook-instagram-photos?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-08T03:30:00+00:00", - "content": "An anonymous reader quotes a report from VentureBeat: Meta Platforms, the parent company of Facebook, Instagram, Whatsapp and Quest VR headsets and creator of leading open source large language model Llama 2 -- is getting into the text-to-image AI generator game. Actually, to clarify: Meta was already in that game via a text-to-image and text-to-sticker generator that was launched within Facebook and Instagram Messengers earlier this year. However, as of this week, the company has launched a standalone text-to-image AI generator service, \"Imagine\" outside of its messaging platforms. Meta's Imagine now a website you can simply visit and begin generating images from: imagine.meta.com. You'll still need to log in with your Meta or Facebook/Instagram account (I tried Facebook, and it forced me to create a new \"Meta account,\" but hey -- it still worked). [...]\n \nMeta's Imagine service was built on its own AI model called Emu, which was trained on 1.1 billion Facebook and Instagram user photos, as noted by Ars Technica and disclosed in the Emu research paper published by Meta engineers back in September. An earlier report by Reuters noted that Meta excluded private messages and images that were not shared publicly on its services.\n \nWhen developing Emu, Meta's researchers also fine-tuned it around quality metrics. As they wrote in their paper: \"Our key insight is that to effectively perform quality tuning, a surprisingly small amount -- a couple of thousand -- exceptionally high-quality images and associated text is enough to make a significant impact on the aesthetics of the generated images without compromising the generality of the model in terms of visual concepts that can be generated. \" Interestingly, despite Meta's vocal support for open source AI, neither Emu nor the Imagine by Meta AI service appear to be open source.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from VentureBeat: Meta Platforms, the parent company of Facebook, Instagram, Whatsapp and Quest VR headsets and creator of leading open source large language model Llama 2 -- is getting into the text-to-image AI generator game. Actually, to clarify: Meta was already in that game via a text-to-image and text-to-sticker generator that was launched within Facebook and Instagram Messengers earlier this year. However, as of this week, the company has launched a standalone text-to-image AI generator service, \"Imagine\" outside of its messaging platforms. Meta's Imagine now a website you can simply visit and begin generating images from: imagine.meta.com. You'll still need to log in with your Meta or Facebook/Instagram account (I tried Facebook, and it forced me to create a new \"Meta account,\" but hey -- it still worked). [...]\n \nMeta's Imagine service was built on its own AI model called Emu, which was trained on 1.1 billion Facebook and Instagram user photos, as noted by Ars Technica and disclosed in the Emu research paper published by Meta engineers back in September. An earlier report by Reuters noted that Meta excluded private messages and images that were not shared publicly on its services.\n \nWhen developing Emu, Meta's researchers also fine-tuned it around quality metrics. As they wrote in their paper: \"Our key insight is that to effectively perform quality tuning, a surprisingly small amount -- a couple of thousand -- exceptionally high-quality images and associated text is enough to make a significant impact on the aesthetics of the generated images without compromising the generality of the model in terms of visual concepts that can be generated. \" Interestingly, despite Meta's vocal support for open source AI, neither Emu nor the Imagine by Meta AI service appear to be open source.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://meta.slashdot.org/story/23/12/07/2345225/meta-publicly-launches-ai-image-generator-trained-on-your-facebook-instagram-photos?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-08T03:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-08T02:02:00+00:00", - "title": "FTC Tries Again To Stop Microsoft's Already-Closed Deal For Activision", - "link": "https://yro.slashdot.org/story/23/12/07/2338209/ftc-tries-again-to-stop-microsofts-already-closed-deal-for-activision?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-08T02:02:00+00:00", - "content": "U.S. antitrust regulators told a federal appeals court Wednesday that a federal judge got it wrong when she allowed Microsoft's $69 billion purchase of Activision to close. Reuters reports: Speaking for the Federal Trade Commission, lawyer Imad Abyad argued that the lower-court judge held the agency to too high a standard, effectively requiring it to prove that the deal was anticompetitive. He told a three-judge appeals court panel in California that the FTC had only to show that Microsoft had the ability and incentive to withhold Activision's games from rival game platforms to prove the agency's case. He said the FTC \"showed that in the past that's what Microsoft did,\" referring to allegations that Microsoft made some Zenimax games exclusive after buying that company.\n \nSpeaking for Microsoft, lawyer Rakesh Kilaru called the FTC case \"weak\" and said that the agency had asked the lower-court judge for too much leeway. \"It is also clear that the standard can't be as low as the FTC is suggesting,\" he said. \"It can't be kind of a mere scintilla of evidence.\" He argued that the agency failed to show that Microsoft had an incentive to withhold \"Call of Duty\" from rival gaming platforms. The judges actively questioned both attorneys, with Judge Daniel Collins pressing the FTC's attorney on how concessions that Microsoft gave British antitrust enforcers affect the U.S. market. He also appeared to take issue with Abyad's assertions that more analysis of the deal was necessary, especially since Microsoft had struck agreements with rivals recently, including one with Sony this past summer. \"This was not a rush job on the part of the FTC,\" he said.\n \nTwo antitrust scholars who listened to the arguments said the FTC faced a tough slog to prevail. A finding of \"clear error\" by a lower court judge is \"really stark,\" said Alden Abbott, a former FTC general counsel, comparing it to the idea that a court ignored key evidence from a witness. Abbott said the appeals court noted that the trial judge had considered \"a huge amount of record evidence.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "U.S. antitrust regulators told a federal appeals court Wednesday that a federal judge got it wrong when she allowed Microsoft's $69 billion purchase of Activision to close. Reuters reports: Speaking for the Federal Trade Commission, lawyer Imad Abyad argued that the lower-court judge held the agency to too high a standard, effectively requiring it to prove that the deal was anticompetitive. He told a three-judge appeals court panel in California that the FTC had only to show that Microsoft had the ability and incentive to withhold Activision's games from rival game platforms to prove the agency's case. He said the FTC \"showed that in the past that's what Microsoft did,\" referring to allegations that Microsoft made some Zenimax games exclusive after buying that company.\n \nSpeaking for Microsoft, lawyer Rakesh Kilaru called the FTC case \"weak\" and said that the agency had asked the lower-court judge for too much leeway. \"It is also clear that the standard can't be as low as the FTC is suggesting,\" he said. \"It can't be kind of a mere scintilla of evidence.\" He argued that the agency failed to show that Microsoft had an incentive to withhold \"Call of Duty\" from rival gaming platforms. The judges actively questioned both attorneys, with Judge Daniel Collins pressing the FTC's attorney on how concessions that Microsoft gave British antitrust enforcers affect the U.S. market. He also appeared to take issue with Abyad's assertions that more analysis of the deal was necessary, especially since Microsoft had struck agreements with rivals recently, including one with Sony this past summer. \"This was not a rush job on the part of the FTC,\" he said.\n \nTwo antitrust scholars who listened to the arguments said the FTC faced a tough slog to prevail. A finding of \"clear error\" by a lower court judge is \"really stark,\" said Alden Abbott, a former FTC general counsel, comparing it to the idea that a court ignored key evidence from a witness. Abbott said the appeals court noted that the trial judge had considered \"a huge amount of record evidence.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/12/07/2338209/ftc-tries-again-to-stop-microsofts-already-closed-deal-for-activision?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-08T02:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-08T01:25:00+00:00", - "title": "Fairphone 5 Scores a Perfect 10 From iFixit For Repairability", - "link": "https://mobile.slashdot.org/story/23/12/07/239203/fairphone-5-scores-a-perfect-10-from-ifixit-for-repairability?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-08T01:25:00+00:00", - "content": "The iFixit team pulled apart the newest Fairphone 5 smartphone and awarded its highest score for repairability: 10 out of 10. With the exception of one or two compromises, the Fairphone 5 is just as repairable as its predecessors. The Register reports: As before, opening the phone is a simple matter of popping off the back of the case. The beefier battery -- 4200 mAh instead of the previous 3905 mAh -- remains easy to remove, although the bigger size has implications elsewhere in the device. Replacing the USB-C port remains simple thanks to a metal lip that allows it to be removed easily. Individual cameras can also be replaced, a nice upgrade from the all-in-one unit of the preceding phone.\n \nHowever, rather than something along the lines of the Core Module of the previous phone, the iFixit team found a motherboard and daughterboard more akin to other Android handsets. According to Fairphone, the bigger battery made the change necessary, but it's still a little disappointing. Still, the teardown team noted clear labeling to stop cables from being accidentally plugged into the wrong places. It said: \"That's what intuitive repair design is all about: it should be easy to do the right thing and complicated to do the wrong thing.\" According to iFixit co-founder and CEO Kyle Wiens: \"Fairphone's promise of five Android version upgrades and over eight years of security updates with the Fairphone 5 is a bold statement in an industry that leans towards fleeting product life cycles. This is a significant stride towards sustainability and sets a new benchmark for smartphone lifespan.\"\n \n\"At iFixit, we believe in tech that lasts, and Fairphone is making that belief a reality. Fairphone's effort to attain a 10-year lifespan is not just impressive; it's unparalleled.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The iFixit team pulled apart the newest Fairphone 5 smartphone and awarded its highest score for repairability: 10 out of 10. With the exception of one or two compromises, the Fairphone 5 is just as repairable as its predecessors. The Register reports: As before, opening the phone is a simple matter of popping off the back of the case. The beefier battery -- 4200 mAh instead of the previous 3905 mAh -- remains easy to remove, although the bigger size has implications elsewhere in the device. Replacing the USB-C port remains simple thanks to a metal lip that allows it to be removed easily. Individual cameras can also be replaced, a nice upgrade from the all-in-one unit of the preceding phone.\n \nHowever, rather than something along the lines of the Core Module of the previous phone, the iFixit team found a motherboard and daughterboard more akin to other Android handsets. According to Fairphone, the bigger battery made the change necessary, but it's still a little disappointing. Still, the teardown team noted clear labeling to stop cables from being accidentally plugged into the wrong places. It said: \"That's what intuitive repair design is all about: it should be easy to do the right thing and complicated to do the wrong thing.\" According to iFixit co-founder and CEO Kyle Wiens: \"Fairphone's promise of five Android version upgrades and over eight years of security updates with the Fairphone 5 is a bold statement in an industry that leans towards fleeting product life cycles. This is a significant stride towards sustainability and sets a new benchmark for smartphone lifespan.\"\n \n\"At iFixit, we believe in tech that lasts, and Fairphone is making that belief a reality. Fairphone's effort to attain a 10-year lifespan is not just impressive; it's unparalleled.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://mobile.slashdot.org/story/23/12/07/239203/fairphone-5-scores-a-perfect-10-from-ifixit-for-repairability?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-08T01:25:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-08T00:45:00+00:00", - "title": "A Massive Repair Lawsuit Against John Deere Clears a Major Hurdle", - "link": "https://yro.slashdot.org/story/23/12/07/2257237/a-massive-repair-lawsuit-against-john-deere-clears-a-major-hurdle?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-08T00:45:00+00:00", - "content": "Jason Koebler reports via 404 Media: A judge rejected John Deere's motion to dismiss a landmark class action lawsuit over the agricultural giant's repair monopolies, paving the way for a trial that will determine whether the company's repair practices are illegal. The case will specifically examine whether Deere has engaged in a \"conspiracy\" in which Deere and its dealerships have driven up the cost of repair while preventing independent and self-repair of tractors that farmers own.\n \nIn a forceful, 89-page memorandum, U.S. District Court Judge Iain Johnson wrote that the founder of John Deere \"was an innovative farmer and blacksmith who -- with his own hands -- fundamentally changed the agricultural industry.\" Deere the man \"would be deeply disappointed in his namesake corporation\" if the plaintiffs can ultimately prove their antitrust allegations against Deere the company, which are voluminous and well-documented. Reuters first reported on Johnson's memo.\n \nAt issue are the many tactics Deere has used to make it more difficult and often impossible for farmers to repair their own tractors, from software locks and \"parts pairing\" that prevent farmers from replacing parts without the authorization of a Deere dealership. \"Only Deere and Dealer authorized technicians have access to the Repair Tools, and Deere withholds these resources from farmers and independent repair shops,\" Johnson wrote.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Jason Koebler reports via 404 Media: A judge rejected John Deere's motion to dismiss a landmark class action lawsuit over the agricultural giant's repair monopolies, paving the way for a trial that will determine whether the company's repair practices are illegal. The case will specifically examine whether Deere has engaged in a \"conspiracy\" in which Deere and its dealerships have driven up the cost of repair while preventing independent and self-repair of tractors that farmers own.\n \nIn a forceful, 89-page memorandum, U.S. District Court Judge Iain Johnson wrote that the founder of John Deere \"was an innovative farmer and blacksmith who -- with his own hands -- fundamentally changed the agricultural industry.\" Deere the man \"would be deeply disappointed in his namesake corporation\" if the plaintiffs can ultimately prove their antitrust allegations against Deere the company, which are voluminous and well-documented. Reuters first reported on Johnson's memo.\n \nAt issue are the many tactics Deere has used to make it more difficult and often impossible for farmers to repair their own tractors, from software locks and \"parts pairing\" that prevent farmers from replacing parts without the authorization of a Deere dealership. \"Only Deere and Dealer authorized technicians have access to the Repair Tools, and Deere withholds these resources from farmers and independent repair shops,\" Johnson wrote.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/12/07/2257237/a-massive-repair-lawsuit-against-john-deere-clears-a-major-hurdle?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-08T00:45:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-08T00:02:00+00:00", - "title": "Meta Defies FBI Opposition To Encryption, Brings E2EE To Facebook, Messenger", - "link": "https://it.slashdot.org/story/23/12/07/2243245/meta-defies-fbi-opposition-to-encryption-brings-e2ee-to-facebook-messenger?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-08T00:02:00+00:00", - "content": "An anonymous reader quotes a report from Ars Technica: Meta has started enabling end-to-end encryption (E2EE) by default for chats and calls on Messenger and Facebook despite protests from the FBI and other law enforcement agencies that oppose the widespread use of encryption technology. \"Today I'm delighted to announce that we are rolling out default end-to-end encryption for personal messages and calls on Messenger and Facebook,\" Meta VP of Messenger Loredana Crisan wrote yesterday. In April, a consortium of 15 law enforcement agencies from around the world, including the FBI and ICE Homeland Security Investigations, urged Meta to cancel its plan to expand the use of end-to-end encryption. The consortium complained that terrorists, sex traffickers, child abusers, and other criminals will use encrypted messages to evade law enforcement.\n \nMeta held firm, telling Ars in April that \"we don't think people want us reading their private messages\" and that the plan to make end-to-end encryption the default in Facebook Messenger would be completed before the end of 2023. Meta also plans default end-to-end encryption for Instagram messages but has previously said that may not happen this year. Meta said it is using \"the Signal Protocol, and our own novel Labyrinth Protocol,\" and the company published two technical papers that describe its implementation (PDF). \"Since 2016, Messenger has had the option for people to turn on end-to-end encryption, but we're now changing personal chats and calls across Messenger to be end-to-end encrypted by default. This has taken years to deliver because we've taken our time to get this right,\" Crisan wrote yesterday. Meta said it will take months to implement across its entire user base. A post written by two Meta software engineers said the company \"designed a server-based solution where encrypted messages can be stored on Meta's servers while only being readable using encryption keys under the user's control.\"\n \n\"Product features in an E2EE setting typically need to be designed to function in a device-to-device manner, without ever relying on a third party having access to message content,\" they wrote. \"This was a significant effort for Messenger, as much of its functionality has historically relied on server-side processing, with certain features difficult or impossible to exactly match with message content being limited to the devices.\"\n \nThe company says it had \"to redesign the entire system so that it would work without Meta's servers seeing the message content.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Meta has started enabling end-to-end encryption (E2EE) by default for chats and calls on Messenger and Facebook despite protests from the FBI and other law enforcement agencies that oppose the widespread use of encryption technology. \"Today I'm delighted to announce that we are rolling out default end-to-end encryption for personal messages and calls on Messenger and Facebook,\" Meta VP of Messenger Loredana Crisan wrote yesterday. In April, a consortium of 15 law enforcement agencies from around the world, including the FBI and ICE Homeland Security Investigations, urged Meta to cancel its plan to expand the use of end-to-end encryption. The consortium complained that terrorists, sex traffickers, child abusers, and other criminals will use encrypted messages to evade law enforcement.\n \nMeta held firm, telling Ars in April that \"we don't think people want us reading their private messages\" and that the plan to make end-to-end encryption the default in Facebook Messenger would be completed before the end of 2023. Meta also plans default end-to-end encryption for Instagram messages but has previously said that may not happen this year. Meta said it is using \"the Signal Protocol, and our own novel Labyrinth Protocol,\" and the company published two technical papers that describe its implementation (PDF). \"Since 2016, Messenger has had the option for people to turn on end-to-end encryption, but we're now changing personal chats and calls across Messenger to be end-to-end encrypted by default. This has taken years to deliver because we've taken our time to get this right,\" Crisan wrote yesterday. Meta said it will take months to implement across its entire user base. A post written by two Meta software engineers said the company \"designed a server-based solution where encrypted messages can be stored on Meta's servers while only being readable using encryption keys under the user's control.\"\n \n\"Product features in an E2EE setting typically need to be designed to function in a device-to-device manner, without ever relying on a third party having access to message content,\" they wrote. \"This was a significant effort for Messenger, as much of its functionality has historically relied on server-side processing, with certain features difficult or impossible to exactly match with message content being limited to the devices.\"\n \nThe company says it had \"to redesign the entire system so that it would work without Meta's servers seeing the message content.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/23/12/07/2243245/meta-defies-fbi-opposition-to-encryption-brings-e2ee-to-facebook-messenger?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-08T00:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-07T23:40:00+00:00", - "title": "Apple Launches MLX Machine-Learning Framework For Apple Silicon", - "link": "https://apple.slashdot.org/story/23/12/07/2234248/apple-launches-mlx-machine-learning-framework-for-apple-silicon?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-07T23:40:00+00:00", - "content": "Apple has released MLX, a free and open-source machine learning framework for Apple Silicon. Computerworld reports: The idea is that it streamlines training and deployment of ML models for researchers who use Apple hardware. MLX is a NumPy-like array framework designed for efficient and flexible machine learning on Apple's processors. This isn't a consumer-facing tool; it equips developers with what appears to be a powerful environment within which to build ML models. The company also seems to have worked to embrace the languages developers want to use, rather than force a language on them -- and it apparently invented powerful LLM tools in the process.\n \nMLX design is inspired by existing frameworks such as PyTorch, Jax, and ArrayFire. However, MLX adds support for a unified memory model, which means arrays live in shared memory and operations can be performed on any of the supported device types without performing data copies. The team explains: \"The Python API closely follows NumPy with a few exceptions. MLX also has a fully featured C++ API which closely follows the Python API.\"\n \nApple has provided a collection of examples of what MLX can do. These appear to confirm the company now has a highly-efficient language model, powerful tools for image generation using Stable Diffusion, and highly accurate speech recognition. This tallies with claims earlier this year, and some speculation concerning infinite virtual world creation for future Vision Pro experiences. Ultimately, Apple seems to want to democratize machine learning. \"MLX is designed by machine learning researchers for machine learning researchers,\" the team explains.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Apple has released MLX, a free and open-source machine learning framework for Apple Silicon. Computerworld reports: The idea is that it streamlines training and deployment of ML models for researchers who use Apple hardware. MLX is a NumPy-like array framework designed for efficient and flexible machine learning on Apple's processors. This isn't a consumer-facing tool; it equips developers with what appears to be a powerful environment within which to build ML models. The company also seems to have worked to embrace the languages developers want to use, rather than force a language on them -- and it apparently invented powerful LLM tools in the process.\n \nMLX design is inspired by existing frameworks such as PyTorch, Jax, and ArrayFire. However, MLX adds support for a unified memory model, which means arrays live in shared memory and operations can be performed on any of the supported device types without performing data copies. The team explains: \"The Python API closely follows NumPy with a few exceptions. MLX also has a fully featured C++ API which closely follows the Python API.\"\n \nApple has provided a collection of examples of what MLX can do. These appear to confirm the company now has a highly-efficient language model, powerful tools for image generation using Stable Diffusion, and highly accurate speech recognition. This tallies with claims earlier this year, and some speculation concerning infinite virtual world creation for future Vision Pro experiences. Ultimately, Apple seems to want to democratize machine learning. \"MLX is designed by machine learning researchers for machine learning researchers,\" the team explains.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://apple.slashdot.org/story/23/12/07/2234248/apple-launches-mlx-machine-learning-framework-for-apple-silicon?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-07T23:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-07T23:20:00+00:00", - "title": "Notepad On Windows 11 Is Finally Getting a Character Count", - "link": "https://tech.slashdot.org/story/23/12/07/2223210/notepad-on-windows-11-is-finally-getting-a-character-count?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-07T23:20:00+00:00", - "content": "Microsoft's Notepad app on Windows 11 is getting a character count at the bottom of the window. \"When text is selected, the status bar shows the character count for both the selected text and the entire document,\" explains Microsoft's Windows Insider team in a blog post. \"If no text is selected, the character count for the entire document is displayed, ensuring you always have a clear view of your document's length.\" The Verge reports: This is the latest addition in a line of changes to Notepad this year, with the app recently getting a new autosave option that lets you close it without seeing the pop-up save prompt every time. Microsoft has also added tabs to Notepad, a dark mode, and even a virtual fidget spinner.\n \nAlongside the Notepad changes in this latest Windows 11 test build, the widgets section of the OS is also getting some improvements. You'll soon be able to just show widgets and hide the feed of news and articles that appear inside the widgets screen.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Microsoft's Notepad app on Windows 11 is getting a character count at the bottom of the window. \"When text is selected, the status bar shows the character count for both the selected text and the entire document,\" explains Microsoft's Windows Insider team in a blog post. \"If no text is selected, the character count for the entire document is displayed, ensuring you always have a clear view of your document's length.\" The Verge reports: This is the latest addition in a line of changes to Notepad this year, with the app recently getting a new autosave option that lets you close it without seeing the pop-up save prompt every time. Microsoft has also added tabs to Notepad, a dark mode, and even a virtual fidget spinner.\n \nAlongside the Notepad changes in this latest Windows 11 test build, the widgets section of the OS is also getting some improvements. You'll soon be able to just show widgets and hide the feed of news and articles that appear inside the widgets screen.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/07/2223210/notepad-on-windows-11-is-finally-getting-a-character-count?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-07T23:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-07T22:40:00+00:00", - "title": "New systemd Update Will Bring Windows' Infamous Blue Screen of Death To Linux", - "link": "https://linux.slashdot.org/story/23/12/07/2219239/new-systemd-update-will-bring-windows-infamous-blue-screen-of-death-to-linux?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-07T22:40:00+00:00", - "content": "An anonymous reader quotes a report from Ars Technica: Windows' infamous \"Blue Screen of Death\" is a bit of a punchline. People have made a hobby of spotting them out in the wild, and in some circles, they remain a byword for the supposed flakiness and instability of PCs. To this day, networked PCs in macOS are represented by beige CRT monitors displaying a BSOD. But the BSOD is supposed to be a diagnostic tool, an informational screen that technicians can use to begin homing in on the problem that caused the crash in the first place; that old Windows' BSOD error codes were often so broad and vague as to be useless doesn't make the idea a bad one. Today, version 255 of the Linux systemd project honors that original intent by adding a systemd-bsod component that generates a full-screen display of some error messages when a Linux system crashes.\n \nThe systemd-bsod component is currently listed as \"experimental\" and \"subject to change.\" But the functionality is simple: any logged error message that reaches the LOG_EMERG level will be displayed full-screen to allow people to take a photo or write it down. Phoronix reports that, as with BSODs in modern Windows, the Linux version will also generate a QR code to make it easier to look up information on your phone.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Windows' infamous \"Blue Screen of Death\" is a bit of a punchline. People have made a hobby of spotting them out in the wild, and in some circles, they remain a byword for the supposed flakiness and instability of PCs. To this day, networked PCs in macOS are represented by beige CRT monitors displaying a BSOD. But the BSOD is supposed to be a diagnostic tool, an informational screen that technicians can use to begin homing in on the problem that caused the crash in the first place; that old Windows' BSOD error codes were often so broad and vague as to be useless doesn't make the idea a bad one. Today, version 255 of the Linux systemd project honors that original intent by adding a systemd-bsod component that generates a full-screen display of some error messages when a Linux system crashes.\n \nThe systemd-bsod component is currently listed as \"experimental\" and \"subject to change.\" But the functionality is simple: any logged error message that reaches the LOG_EMERG level will be displayed full-screen to allow people to take a photo or write it down. Phoronix reports that, as with BSODs in modern Windows, the Linux version will also generate a QR code to make it easier to look up information on your phone.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://linux.slashdot.org/story/23/12/07/2219239/new-systemd-update-will-bring-windows-infamous-blue-screen-of-death-to-linux?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-07T22:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-07T22:00:00+00:00", - "title": "The Extremely Large Telescope Will Transform Astronomy", - "link": "https://science.slashdot.org/story/23/12/07/1317258/the-extremely-large-telescope-will-transform-astronomy?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-07T22:00:00+00:00", - "content": "The Extremely Large Telescope (ELT) under construction in Chile's Atacama Desert will be the world's biggest optical telescope when completed in 2028. With a giant 39.3-meter main mirror and advanced adaptive optics, the ELT will collect far more light and achieve much sharper images than any existing ground-based telescope, revolutionizing the study of exoplanets, black holes, dark matter, and the early universe. Economist adds: But when it comes to detecting the dimmest and most distant objects, there is no substitute for sheer light-gathering size. On that front the ELT looks like being the final word for the foreseeable future. A planned successor, the \"Overwhelmingly Large Telescope,\" would have sported a 100-metre mirror. But it was shelved in the 2000s on grounds of complexity and cost. The Giant Magellan Telescope is currently being built several hundred kilometres south of the elt on land owned by the Carnegie Institution for Science, an American non-profit, and is due to see its first light some time in the 2030s. It will combine seven big mirrors into one giant one with an effective diameter of 25.4 metres. Even so, it will have only around a third the light-gathering capacity of the ELT. \n\nA consortium of scientists from America, Canada, India and Japan, meanwhile, has been trying to build a mega-telescope on Hawaii. The Thirty Meter Telescope would, as its name suggests, be a giant -- though still smaller than the elt. But it is unclear when, or even if, it will be finished. Construction has been halted by arguments about Mauna Kea, the mountain on which it is to be built, which is seen as sacred by some. For the next several decades, it seems, anyone wanting access to the biggest telescope money can buy will have to make their way to northern Chile.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The Extremely Large Telescope (ELT) under construction in Chile's Atacama Desert will be the world's biggest optical telescope when completed in 2028. With a giant 39.3-meter main mirror and advanced adaptive optics, the ELT will collect far more light and achieve much sharper images than any existing ground-based telescope, revolutionizing the study of exoplanets, black holes, dark matter, and the early universe. Economist adds: But when it comes to detecting the dimmest and most distant objects, there is no substitute for sheer light-gathering size. On that front the ELT looks like being the final word for the foreseeable future. A planned successor, the \"Overwhelmingly Large Telescope,\" would have sported a 100-metre mirror. But it was shelved in the 2000s on grounds of complexity and cost. The Giant Magellan Telescope is currently being built several hundred kilometres south of the elt on land owned by the Carnegie Institution for Science, an American non-profit, and is due to see its first light some time in the 2030s. It will combine seven big mirrors into one giant one with an effective diameter of 25.4 metres. Even so, it will have only around a third the light-gathering capacity of the ELT. \n\nA consortium of scientists from America, Canada, India and Japan, meanwhile, has been trying to build a mega-telescope on Hawaii. The Thirty Meter Telescope would, as its name suggests, be a giant -- though still smaller than the elt. But it is unclear when, or even if, it will be finished. Construction has been halted by arguments about Mauna Kea, the mountain on which it is to be built, which is seen as sacred by some. For the next several decades, it seems, anyone wanting access to the biggest telescope money can buy will have to make their way to northern Chile.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/07/1317258/the-extremely-large-telescope-will-transform-astronomy?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-07T22:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-07T21:20:00+00:00", - "title": "Actors Recorded Videos for 'Vladimir.' It Turned Into Russian Propaganda.", - "link": "https://tech.slashdot.org/story/23/12/07/1447232/actors-recorded-videos-for-vladimir-it-turned-into-russian-propaganda?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-07T21:20:00+00:00", - "content": "Internet propagandists aligned with Russia have duped at least seven Western celebrities, including Elijah Wood and Priscilla Presley, into recording short videos to support its online information war against Ukraine, according to new security research by Microsoft. From a report: The celebrities look like they were asked to offer words of encouragement -- apparently via the Cameo app -- to someone named \"Vladimir\" who appears to be struggling with substance abuse, Microsoft said. Instead, these messages were edited, sometimes dressed up with emojis, links and the logos of media outlets and then shared online by the Russia-aligned trolls, the company said. \n\nThe point was to give the appearance that the celebrities were confirming that Ukrainian President Volodymyr Zelensky was suffering from drug and alcohol problems, false claims that Russia has pushed in the past, according to Microsoft. Russia has denied engaging in disinformation campaigns. In one of the videos, a crudely edited message by Wood to someone named Vladimir references drugs and alcohol, saying: \"I just want to make sure that you're getting help.\" Wood's video first surfaced in July, but since then Microsoft researchers have observed six other similar celebrity videos misused in the same way, including clips by \"Breaking Bad\" actor Dean Norris, John C. McGinley of \"Scrubs,\" and Kate Flannery of \"The Office,\" the company said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Internet propagandists aligned with Russia have duped at least seven Western celebrities, including Elijah Wood and Priscilla Presley, into recording short videos to support its online information war against Ukraine, according to new security research by Microsoft. From a report: The celebrities look like they were asked to offer words of encouragement -- apparently via the Cameo app -- to someone named \"Vladimir\" who appears to be struggling with substance abuse, Microsoft said. Instead, these messages were edited, sometimes dressed up with emojis, links and the logos of media outlets and then shared online by the Russia-aligned trolls, the company said. \n\nThe point was to give the appearance that the celebrities were confirming that Ukrainian President Volodymyr Zelensky was suffering from drug and alcohol problems, false claims that Russia has pushed in the past, according to Microsoft. Russia has denied engaging in disinformation campaigns. In one of the videos, a crudely edited message by Wood to someone named Vladimir references drugs and alcohol, saying: \"I just want to make sure that you're getting help.\" Wood's video first surfaced in July, but since then Microsoft researchers have observed six other similar celebrity videos misused in the same way, including clips by \"Breaking Bad\" actor Dean Norris, John C. McGinley of \"Scrubs,\" and Kate Flannery of \"The Office,\" the company said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/07/1447232/actors-recorded-videos-for-vladimir-it-turned-into-russian-propaganda?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-07T21:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-07T20:40:00+00:00", - "title": "How Tech Giants Use Money, Access To Steer Academic Research", - "link": "https://tech.slashdot.org/story/23/12/07/1530250/how-tech-giants-use-money-access-to-steer-academic-research?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-07T20:40:00+00:00", - "content": "Tech giants including Google and Facebook parent Meta have dramatically ramped up charitable giving to university campuses over the past several years -- giving them influence over academics studying such critical topics as artificial intelligence, social media and disinformation. From a report: Meta CEO Mark Zuckerberg alone has donated money to more than 100 university campuses, either through Meta or his personal philanthropy arm, according to new research by the Tech Transparency Project, a nonprofit watchdog group studying the technology industry. Other firms are helping fund academic centers, doling out grants to professors and sitting on advisory boards reserved for donors, researchers told The Post. \n\nSilicon Valley's influence is most apparent among computer science professors at such top-tier schools as Berkeley, University of Toronto, Stanford and MIT. According to a 2021 paper by University of Toronto and Harvard researchers, most tenure-track professors in computer science at those schools whose funding sources could be determined had taken money from the technology industry, including nearly 6 of 10 scholars of AI. The proportion rose further in certain controversial subjects, the study found. Of 33 professors whose funding could be traced who wrote on AI ethics for the top journals Nature and Science, for example, all but one had taken grant money from the tech giants or had worked as their employees or contractors.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Tech giants including Google and Facebook parent Meta have dramatically ramped up charitable giving to university campuses over the past several years -- giving them influence over academics studying such critical topics as artificial intelligence, social media and disinformation. From a report: Meta CEO Mark Zuckerberg alone has donated money to more than 100 university campuses, either through Meta or his personal philanthropy arm, according to new research by the Tech Transparency Project, a nonprofit watchdog group studying the technology industry. Other firms are helping fund academic centers, doling out grants to professors and sitting on advisory boards reserved for donors, researchers told The Post. \n\nSilicon Valley's influence is most apparent among computer science professors at such top-tier schools as Berkeley, University of Toronto, Stanford and MIT. According to a 2021 paper by University of Toronto and Harvard researchers, most tenure-track professors in computer science at those schools whose funding sources could be determined had taken money from the technology industry, including nearly 6 of 10 scholars of AI. The proportion rose further in certain controversial subjects, the study found. Of 33 professors whose funding could be traced who wrote on AI ethics for the top journals Nature and Science, for example, all but one had taken grant money from the tech giants or had worked as their employees or contractors.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/07/1530250/how-tech-giants-use-money-access-to-steer-academic-research?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-07T20:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-07T20:00:00+00:00", - "title": "Cable Lobby To FCC: Please Don't Look Too Closely at the Prices We Charge", - "link": "https://tech.slashdot.org/story/23/12/07/1520243/cable-lobby-to-fcc-please-dont-look-too-closely-at-the-prices-we-charge?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-07T20:00:00+00:00", - "content": "The US broadband industry is protesting a Federal Communications Commission plan to measure the affordability of Internet service. From a report: The FCC has been evaluating US-wide broadband deployment progress on a near-annual basis for almost three decades but hasn't factored affordability into these regular reviews. The broadband industry is afraid that a thorough examination of prices will lead to more regulation of ISPs. An FCC Notice of Inquiry issued on November 1 proposes to analyze the affordability of Internet service in the agency's next congressionally required review of broadband deployment. That could include examining not just monthly prices but also data overage charges and various other fees. \n\n[...] Cable industry lobby group NCTA-The Internet & Television Association complained in a filing released Monday that the Notice of Inquiry's \"undue focus on affordability -- or pricing -- is particularly inappropriate.\" The group, which represents cable providers such as Comcast and Charter, said that setting an affordability benchmark could lead to rate regulation.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The US broadband industry is protesting a Federal Communications Commission plan to measure the affordability of Internet service. From a report: The FCC has been evaluating US-wide broadband deployment progress on a near-annual basis for almost three decades but hasn't factored affordability into these regular reviews. The broadband industry is afraid that a thorough examination of prices will lead to more regulation of ISPs. An FCC Notice of Inquiry issued on November 1 proposes to analyze the affordability of Internet service in the agency's next congressionally required review of broadband deployment. That could include examining not just monthly prices but also data overage charges and various other fees. \n\n[...] Cable industry lobby group NCTA-The Internet & Television Association complained in a filing released Monday that the Notice of Inquiry's \"undue focus on affordability -- or pricing -- is particularly inappropriate.\" The group, which represents cable providers such as Comcast and Charter, said that setting an affordability benchmark could lead to rate regulation.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/07/1520243/cable-lobby-to-fcc-please-dont-look-too-closely-at-the-prices-we-charge?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-07T20:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-07T19:20:00+00:00", - "title": "Nintendo Cancels Japanese Esports Events Following Threats to Staff and Spectators", - "link": "https://games.slashdot.org/story/23/12/07/150224/nintendo-cancels-japanese-esports-events-following-threats-to-staff-and-spectators?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-07T19:20:00+00:00", - "content": "Nintendo has cancelled Nintendo Live 2024 Tokyo and postponed other Japanese esports events after persistent threats were made to both staff and spectators. From a report: A Japanese press release, shared by reliable translator Genki on X/Twitter, revealed the \"all ages celebration of Nintendo fun,\" which took place in the United States for the first time in 2023, has been cancelled and its main esports tournaments postponed. \n\nNintendo said its employees have received relentless threats which have also recently targeted spectators, attendees, and staff at Nintendo Live 2024, forcing the cancellation in the interest of safety. It was due to take place from January 20 to 21.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Nintendo has cancelled Nintendo Live 2024 Tokyo and postponed other Japanese esports events after persistent threats were made to both staff and spectators. From a report: A Japanese press release, shared by reliable translator Genki on X/Twitter, revealed the \"all ages celebration of Nintendo fun,\" which took place in the United States for the first time in 2023, has been cancelled and its main esports tournaments postponed. \n\nNintendo said its employees have received relentless threats which have also recently targeted spectators, attendees, and staff at Nintendo Live 2024, forcing the cancellation in the interest of safety. It was due to take place from January 20 to 21.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/23/12/07/150224/nintendo-cancels-japanese-esports-events-following-threats-to-staff-and-spectators?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-07T19:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-07T18:40:00+00:00", - "title": "UK Says Russia Targeted Officials in Email-Hacking Campaign", - "link": "https://news.slashdot.org/story/23/12/07/1229205/uk-says-russia-targeted-officials-in-email-hacking-campaign?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-07T18:40:00+00:00", - "content": "The UK accused Russia's main intelligence agency of seeking to hack the emails of British politicians and officials in an attempt to interfere in its democratic processes. From a report: \"They have been targeting high-profile individuals and entities with a clear intent: using information they obtained to meddle in British politics,\" Foreign Office minister Leo Docherty told the House of Commons on Thursday. The intrusions include targeting personal email accounts and impersonation attempts against universities and media organizations, according to Docherty. Civil servants and journalists have also been targeted by Russia's Federal Security Service, known as the FSB, he said. \n\nIn November, the UK's National Cyber Security Centre warned that Russian and other state-sponsored hackers posed an \"enduring and significant threat\" to the country. The agency said that Russia was one of the most prolific state actors in cybercrime, and had dedicated substantial resources to conducting hacking operations internationally.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The UK accused Russia's main intelligence agency of seeking to hack the emails of British politicians and officials in an attempt to interfere in its democratic processes. From a report: \"They have been targeting high-profile individuals and entities with a clear intent: using information they obtained to meddle in British politics,\" Foreign Office minister Leo Docherty told the House of Commons on Thursday. The intrusions include targeting personal email accounts and impersonation attempts against universities and media organizations, according to Docherty. Civil servants and journalists have also been targeted by Russia's Federal Security Service, known as the FSB, he said. \n\nIn November, the UK's National Cyber Security Centre warned that Russian and other state-sponsored hackers posed an \"enduring and significant threat\" to the country. The agency said that Russia was one of the most prolific state actors in cybercrime, and had dedicated substantial resources to conducting hacking operations internationally.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/23/12/07/1229205/uk-says-russia-targeted-officials-in-email-hacking-campaign?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-07T18:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-08T10:00:00+00:00", - "title": "Nikon Makes Special Firmware For NASA To Block Galactic Cosmic Rays In Photos", - "link": "https://science.slashdot.org/story/23/12/08/0232239/nikon-makes-special-firmware-for-nasa-to-block-galactic-cosmic-rays-in-photos?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-08T10:00:00+00:00", - "content": "In an exclusive interview with PetaPixel, astronaut Don Pettit reveals the changes that Nikon makes to its firmware especially for NASA. From the report: Galactic cosmic rays are high-energy particles that originate from outside the solar system that likely come from explosive events such as a supernova. They are bad news for cameras in space -- damaging the sensor and spoiling photos -- so Nikon made special firmware for NASA to limit the harm. Pettit tells PetaPixel that Nikon changed the in-camera noise reduction settings to battle the cosmic rays -- noise is unwanted texture and blur on photos.\n \nNormal cameras have in-camera noise reduction for exposures equal to or longer than one second. This is because camera manufacturers don't think photographers need noise reduction for shorter exposures because there's no noise to reduce. But in space, that's not true. \"Our cameras in space get sensor damage from galactic cosmic rays and after about six months we replace all the cameras but you still have cameras with significant cosmic ray damage,\" explains Pettit. \"It shows up at fast shutter speeds, not just the slow ones. So we got Nikon to change the algorithm so that it can do in-camera noise reduction at shutter speeds of up to 500th of a second.\"\n \nPettit says Nikon's in-camera noise reduction \"does wonders\" for getting rid of the cosmic ray damage and that \"trying to get rid of it after the fact is really difficult.\" That's not the only special firmware feature that Nikon makes for NASA; photographers who shoot enough photos know that the file naming system resets itself eventually which is no good for the space agency's astronauts. \"The file naming system on a standard digital system will repeat every so often and we can't have two pictures with the same number,\" explains Pettit. \"We'll take half a million pictures with the crew on orbit and so Nikon has changed the way the RAW files are numbered so that there will be no two with the same file number.\" The report notes that NASA started using Nikon film cameras in 1971, shortly after the Apollo era; \"in part because Nikon is so good at making custom modifications that help the astronauts.\" Previously, the agency used boxy, black Hasselblad cameras.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "In an exclusive interview with PetaPixel, astronaut Don Pettit reveals the changes that Nikon makes to its firmware especially for NASA. From the report: Galactic cosmic rays are high-energy particles that originate from outside the solar system that likely come from explosive events such as a supernova. They are bad news for cameras in space -- damaging the sensor and spoiling photos -- so Nikon made special firmware for NASA to limit the harm. Pettit tells PetaPixel that Nikon changed the in-camera noise reduction settings to battle the cosmic rays -- noise is unwanted texture and blur on photos.\n \nNormal cameras have in-camera noise reduction for exposures equal to or longer than one second. This is because camera manufacturers don't think photographers need noise reduction for shorter exposures because there's no noise to reduce. But in space, that's not true. \"Our cameras in space get sensor damage from galactic cosmic rays and after about six months we replace all the cameras but you still have cameras with significant cosmic ray damage,\" explains Pettit. \"It shows up at fast shutter speeds, not just the slow ones. So we got Nikon to change the algorithm so that it can do in-camera noise reduction at shutter speeds of up to 500th of a second.\"\n \nPettit says Nikon's in-camera noise reduction \"does wonders\" for getting rid of the cosmic ray damage and that \"trying to get rid of it after the fact is really difficult.\" That's not the only special firmware feature that Nikon makes for NASA; photographers who shoot enough photos know that the file naming system resets itself eventually which is no good for the space agency's astronauts. \"The file naming system on a standard digital system will repeat every so often and we can't have two pictures with the same number,\" explains Pettit. \"We'll take half a million pictures with the crew on orbit and so Nikon has changed the way the RAW files are numbered so that there will be no two with the same file number.\" The report notes that NASA started using Nikon film cameras in 1971, shortly after the Apollo era; \"in part because Nikon is so good at making custom modifications that help the astronauts.\" Previously, the agency used boxy, black Hasselblad cameras.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/08/0232239/nikon-makes-special-firmware-for-nasa-to-block-galactic-cosmic-rays-in-photos?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-08T10:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-14T16:41:00+00:00", - "title": "Intel Core Ultra Processors Debut for AI-powered PCs", - "link": "https://hardware.slashdot.org/story/23/12/14/1621240/intel-core-ultra-processors-debut-for-ai-powered-pcs?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-14T16:41:00+00:00", - "content": "Intel launched its Intel Core Ultra processors for AI-powered PCs at its AI Everywhere event today. From a report: The big chip maker said these processors spearhead a new era in computing, offering unparalleled power efficiency, superior compute and graphics performance, and an unprecedented AI PC experience to mobile platforms and edge devices. Available immediately, these processors will be used in over 230 AI PCs coming from renowned partners like Acer, ASUS, Dell, Gigabyte, and more. \n\nThe Intel Core Ultra processors represent an architectural shift for Intel, marking its largest design change in 40 years. These processors harness the Intel 4 process technology and Foveros 3D advanced packaging, leveraging leading-edge processes for optimal performance and capabilities. The processors boast a performance-core (P-core) architecture enhancing instructions per cycle (IPC). Efficient-cores (E-cores) and low-power Efficient-cores (LP E-cores). They deliver up to 11% more compute power compared to competitors, ensuring superior CPU performance for ultrathin PCs. \n\nFeatures of Intel Core Ultra \nIntel Arc GPU: Featuring up to eight Xe-cores, this GPU incorporates AI-based Xe Super Sampling, offering double the graphics performance compared to prior generations. It includes support for modern graphics features like ray tracing, mesh shading, AV1 encode and decode, HDMI 2.1, and DisplayPort 2.1 20G.\nAI Boost NPU: Intel's latest NPU, Intel AI Boost, focuses on low-power, long-running AI tasks, augmenting AI processing on the CPU and GPU, offering 2.5x better power efficiency compared to its predecessors.\nAdvanced Performance Capabilities: With up to 16 cores, 22 threads, and Intel Thread Director for optimized workload scheduling, these processors boast a maximum turbo frequency of 5.1 GHz and support for up to 96 GB DDR5 memory capacity.\nCutting-edge Connectivity: Integrated Intel Wi-Fi 6E and support for discrete Intel Wi-Fi 7 deliver blazing wireless speeds, while Thunderbolt 4 ensures connectivity to multiple 4K monitors and fast storage with speeds of 40 Gbps.\nEnhanced AI Performance: OpenVINO toolkits, ONNX, and ONNX Runtime offer streamlined workflow, automatic device detection, and enhanced AI performance.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Intel launched its Intel Core Ultra processors for AI-powered PCs at its AI Everywhere event today. From a report: The big chip maker said these processors spearhead a new era in computing, offering unparalleled power efficiency, superior compute and graphics performance, and an unprecedented AI PC experience to mobile platforms and edge devices. Available immediately, these processors will be used in over 230 AI PCs coming from renowned partners like Acer, ASUS, Dell, Gigabyte, and more. \n\nThe Intel Core Ultra processors represent an architectural shift for Intel, marking its largest design change in 40 years. These processors harness the Intel 4 process technology and Foveros 3D advanced packaging, leveraging leading-edge processes for optimal performance and capabilities. The processors boast a performance-core (P-core) architecture enhancing instructions per cycle (IPC). Efficient-cores (E-cores) and low-power Efficient-cores (LP E-cores). They deliver up to 11% more compute power compared to competitors, ensuring superior CPU performance for ultrathin PCs. \n\nFeatures of Intel Core Ultra \nIntel Arc GPU: Featuring up to eight Xe-cores, this GPU incorporates AI-based Xe Super Sampling, offering double the graphics performance compared to prior generations. It includes support for modern graphics features like ray tracing, mesh shading, AV1 encode and decode, HDMI 2.1, and DisplayPort 2.1 20G.\nAI Boost NPU: Intel's latest NPU, Intel AI Boost, focuses on low-power, long-running AI tasks, augmenting AI processing on the CPU and GPU, offering 2.5x better power efficiency compared to its predecessors.\nAdvanced Performance Capabilities: With up to 16 cores, 22 threads, and Intel Thread Director for optimized workload scheduling, these processors boast a maximum turbo frequency of 5.1 GHz and support for up to 96 GB DDR5 memory capacity.\nCutting-edge Connectivity: Integrated Intel Wi-Fi 6E and support for discrete Intel Wi-Fi 7 deliver blazing wireless speeds, while Thunderbolt 4 ensures connectivity to multiple 4K monitors and fast storage with speeds of 40 Gbps.\nEnhanced AI Performance: OpenVINO toolkits, ONNX, and ONNX Runtime offer streamlined workflow, automatic device detection, and enhanced AI performance.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/23/12/14/1621240/intel-core-ultra-processors-debut-for-ai-powered-pcs?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T16:41:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-14T16:00:00+00:00", - "title": "Pope Francis Calls for Binding Global Treaty To Regulate AI", - "link": "https://slashdot.org/story/23/12/14/1422216/pope-francis-calls-for-binding-global-treaty-to-regulate-ai?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-14T16:00:00+00:00", - "content": "Pope Francis has called for a legally binding international treaty to regulate AI, saying algorithms must not be allowed to replace human values and warning of a \"technological dictatorship\" threatening human existence. From a report: The pope made his call on Thursday in a message for the Roman Catholic Church's World Day of Peace, which is celebrated on Jan. 1. The title of the message, which is traditionally sent to world leaders and heads of institutions such as the United Nations, is \"Artificial Intelligence and Peace.\" \n\n[...] \"The global scale of artificial intelligence makes it clear that, alongside the responsibility of sovereign states to regulate its use internally, international organizations can play a decisive role in reaching multilateral agreements and coordinating their application and enforcement,\" Francis wrote in the message. \"I urge the global community of nations to work together in order to adopt a binding international treaty that regulates the development and use of artificial intelligence in its many forms,\" the pope said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Pope Francis has called for a legally binding international treaty to regulate AI, saying algorithms must not be allowed to replace human values and warning of a \"technological dictatorship\" threatening human existence. From a report: The pope made his call on Thursday in a message for the Roman Catholic Church's World Day of Peace, which is celebrated on Jan. 1. The title of the message, which is traditionally sent to world leaders and heads of institutions such as the United Nations, is \"Artificial Intelligence and Peace.\" \n\n[...] \"The global scale of artificial intelligence makes it clear that, alongside the responsibility of sovereign states to regulate its use internally, international organizations can play a decisive role in reaching multilateral agreements and coordinating their application and enforcement,\" Francis wrote in the message. \"I urge the global community of nations to work together in order to adopt a binding international treaty that regulates the development and use of artificial intelligence in its many forms,\" the pope said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/23/12/14/1422216/pope-francis-calls-for-binding-global-treaty-to-regulate-ai?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T16:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-14T15:20:00+00:00", - "title": "Beeper Says Apple is Blocking Some iMessages", - "link": "https://yro.slashdot.org/story/23/12/14/148227/beeper-says-apple-is-blocking-some-imessages?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-14T15:20:00+00:00", - "content": "After investigating reports that some users aren't getting iMessages on Beeper Mini and Beeper Cloud, Beeper says that Apple seems to be \"deliberately blocking\" iMessages from being delivered to about five percent of Beeper Mini users. From a report: The company says that uninstalling and reinstalling the app fixes the issue and that it's working on a broader fix. \n\nApple didn't immediately reply to a request for comment about Beeper's new claim, and it hasn't replied to my original request for comment, either. But given that the company has already blocked Beeper Mini before, it's not too surprising that it seems to be taking action against the app again.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "After investigating reports that some users aren't getting iMessages on Beeper Mini and Beeper Cloud, Beeper says that Apple seems to be \"deliberately blocking\" iMessages from being delivered to about five percent of Beeper Mini users. From a report: The company says that uninstalling and reinstalling the app fixes the issue and that it's working on a broader fix. \n\nApple didn't immediately reply to a request for comment about Beeper's new claim, and it hasn't replied to my original request for comment, either. But given that the company has already blocked Beeper Mini before, it's not too surprising that it seems to be taking action against the app again.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/12/14/148227/beeper-says-apple-is-blocking-some-imessages?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T15:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-14T14:40:00+00:00", - "title": "LinkedIn Shelved Planned Move To Microsoft Azure, Opting To Keep Physical Data Centers", - "link": "https://slashdot.org/story/23/12/14/1427243/linkedin-shelved-planned-move-to-microsoft-azure-opting-to-keep-physical-data-centers?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-14T14:40:00+00:00", - "content": "LinkedIn has set aside an effort to relocate its data center technology out of its physical facilities and into Microsoft's Azure cloud, CNBC reported Thursday, citing people familiar with the matter. From a report: The decision not to proceed with the project, code-named \"Blueshift,\" marks a major reversal for LinkedIn, which announced its plan to move to Azure in 2019, three years after Microsoft acquired the company for $27 billion. LinkedIn had been using Azure for specific tasks. \n\nThe U-turn represents a setback for Microsoft, which is chasing Amazon\n Web Services in the lucrative cloud infrastructure market and has been counting on cloud technology and services to fuel much of its growth. Microsoft CEO Satya Nadella ran the cloud business before elevation to his current job in 2014. Mohak Shroff, LinkedIn's vice president of engineering, wrote in a 2019 blog post announcing Blueshift that \"moving to Azure will give us access to a wide array of hardware and software innovations, and unprecedented global scale.\" Staffers started to learn of the decision not to follow through with the Azure migration last year, said the sources, who asked not to be named because of confidentiality. Executives stressed that the project was being put on hold, rather than getting canceled altogether, they said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "LinkedIn has set aside an effort to relocate its data center technology out of its physical facilities and into Microsoft's Azure cloud, CNBC reported Thursday, citing people familiar with the matter. From a report: The decision not to proceed with the project, code-named \"Blueshift,\" marks a major reversal for LinkedIn, which announced its plan to move to Azure in 2019, three years after Microsoft acquired the company for $27 billion. LinkedIn had been using Azure for specific tasks. \n\nThe U-turn represents a setback for Microsoft, which is chasing Amazon\n Web Services in the lucrative cloud infrastructure market and has been counting on cloud technology and services to fuel much of its growth. Microsoft CEO Satya Nadella ran the cloud business before elevation to his current job in 2014. Mohak Shroff, LinkedIn's vice president of engineering, wrote in a 2019 blog post announcing Blueshift that \"moving to Azure will give us access to a wide array of hardware and software innovations, and unprecedented global scale.\" Staffers started to learn of the decision not to follow through with the Azure migration last year, said the sources, who asked not to be named because of confidentiality. Executives stressed that the project was being put on hold, rather than getting canceled altogether, they said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/23/12/14/1427243/linkedin-shelved-planned-move-to-microsoft-azure-opting-to-keep-physical-data-centers?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T14:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-14T14:00:00+00:00", - "title": "Dropbox Spooks Users With New AI Features That Send Data To OpenAI When Used", - "link": "https://slashdot.org/story/23/12/14/1350221/dropbox-spooks-users-with-new-ai-features-that-send-data-to-openai-when-used?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-14T14:00:00+00:00", - "content": "Dropbox has enabled a default setting to share user data with OpenAI for an AI search feature, but says it's only accessed when the feature is used, not to train models, and deleted in 30 days. From a report: Even with assurances of data privacy laid out by Dropbox on an AI privacy FAQ page, the discovery that the setting had been enabled by default upset some Dropbox users. The setting was first noticed by writer Winifred Burton, who shared information about the Third-party AI setting through Bluesky on Tuesday, and frequent AI critic Karla Ortiz shared more information about it on X. \n\nWednesday afternoon, Drew Houston, the CEO of Dropbox, apologized for customer confusion in a post on X and wrote, \"The third-party AI toggle in the settings menu enables or disables access to DBX AI features and functionality. Neither this nor any other setting automatically or passively sends any Dropbox customer data to a third-party AI service.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Dropbox has enabled a default setting to share user data with OpenAI for an AI search feature, but says it's only accessed when the feature is used, not to train models, and deleted in 30 days. From a report: Even with assurances of data privacy laid out by Dropbox on an AI privacy FAQ page, the discovery that the setting had been enabled by default upset some Dropbox users. The setting was first noticed by writer Winifred Burton, who shared information about the Third-party AI setting through Bluesky on Tuesday, and frequent AI critic Karla Ortiz shared more information about it on X. \n\nWednesday afternoon, Drew Houston, the CEO of Dropbox, apologized for customer confusion in a post on X and wrote, \"The third-party AI toggle in the settings menu enables or disables access to DBX AI features and functionality. Neither this nor any other setting automatically or passively sends any Dropbox customer data to a third-party AI service.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/23/12/14/1350221/dropbox-spooks-users-with-new-ai-features-that-send-data-to-openai-when-used?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T14:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-14T13:00:00+00:00", - "title": "Science Fiction and Fantasy Writers Take Aim At AI Freeloading", - "link": "https://news.slashdot.org/story/23/12/14/0020201/science-fiction-and-fantasy-writers-take-aim-at-ai-freeloading?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-14T13:00:00+00:00", - "content": "An anonymous reader quotes a report from TorrentFreak: Members of the Science Fiction and Fantasy Writers Association have no trouble envisioning an AI-centered future, but developments over the past year are reason for concern. The association takes offense when AI models exploit the generosity of science fiction writers, who share their work without DRM and free of charge. [...] Over the past few months, we have seen a variety of copyright lawsuits, many of which were filed by writers. These cases target ChatGPT's OpenAI but other platforms are targeted as well. A key allegation in these complaints is that the AI was trained using pirated books. For example, several authors have just filed an amended complaint against Meta, alleging that the company continued to train its AI on pirated books despite concerns from its own legal team. This clash between AI and copyright piqued the interest of the U.S. Copyright Office which launched an inquiry asking the public for input. With more than 10,000 responses, it is clear that the topic is close to the hearts of many people. It's impossible to summarize all opinions without AI assistance, but one submission stood out to us in particular; it encourages the free sharing of books while recommending that AI tools shouldn't be allowed to exploit this generosity for free.\n \nThe submission was filed by the Science Fiction and Fantasy Writers Association (SFWA), which represents over 2,500 published writers. The association is particularly concerned with the suggestion that its members' works can be used for AI training under a fair use exception. SFWA sides with many other rightsholders, concluding that pirated books shouldn't be used for AI training, adding that the same applies to books that are freely shared by many Science Fiction and Fantasy writers. [...] Many of the authors strongly believe that freely sharing stories is a good thing that enriches mankind, but that doesn't automatically mean that AI has the same privilege if the output is destined for commercial activities. The SFWA stresses that it doesn't take offense when AI tools use the works of its members for non-commercial purposes, such as research and scholarship. However, turning the data into a commercial tool goes too far.\n \nAI freeloading will lead to unfair competition and cause harm to licensing markets, the writers warn. The developers of the AI tools have attempted to tone down these concerns but the SFWA is not convinced. [...] The writers want to protect their rights but they don't believe in the extremely restrictive position of some other copyright holders. They don't subscribe to the idea that people will no longer buy books because they can get the same information from an AI tool, for example. However, authors deserve some form of compensation. SFWA argues that all stakeholders should ultimately get together to come up with a plan that works for everyone. This means fair compensation and protection for authors, without making it financially unviable for AI to flourish. \"Questions of 'how' and 'when' and 'how much money' all come later; first and foremost the author must have the right to say how their work is used,\" their submission reads.\n \n\"So long as authors retain the right to say 'no' we believe that equitable solutions to the thorny problems of licensing, scale, and market harm can be found. But that right remains the cornerstone, and we insist upon it,\" SFWA concludes.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from TorrentFreak: Members of the Science Fiction and Fantasy Writers Association have no trouble envisioning an AI-centered future, but developments over the past year are reason for concern. The association takes offense when AI models exploit the generosity of science fiction writers, who share their work without DRM and free of charge. [...] Over the past few months, we have seen a variety of copyright lawsuits, many of which were filed by writers. These cases target ChatGPT's OpenAI but other platforms are targeted as well. A key allegation in these complaints is that the AI was trained using pirated books. For example, several authors have just filed an amended complaint against Meta, alleging that the company continued to train its AI on pirated books despite concerns from its own legal team. This clash between AI and copyright piqued the interest of the U.S. Copyright Office which launched an inquiry asking the public for input. With more than 10,000 responses, it is clear that the topic is close to the hearts of many people. It's impossible to summarize all opinions without AI assistance, but one submission stood out to us in particular; it encourages the free sharing of books while recommending that AI tools shouldn't be allowed to exploit this generosity for free.\n \nThe submission was filed by the Science Fiction and Fantasy Writers Association (SFWA), which represents over 2,500 published writers. The association is particularly concerned with the suggestion that its members' works can be used for AI training under a fair use exception. SFWA sides with many other rightsholders, concluding that pirated books shouldn't be used for AI training, adding that the same applies to books that are freely shared by many Science Fiction and Fantasy writers. [...] Many of the authors strongly believe that freely sharing stories is a good thing that enriches mankind, but that doesn't automatically mean that AI has the same privilege if the output is destined for commercial activities. The SFWA stresses that it doesn't take offense when AI tools use the works of its members for non-commercial purposes, such as research and scholarship. However, turning the data into a commercial tool goes too far.\n \nAI freeloading will lead to unfair competition and cause harm to licensing markets, the writers warn. The developers of the AI tools have attempted to tone down these concerns but the SFWA is not convinced. [...] The writers want to protect their rights but they don't believe in the extremely restrictive position of some other copyright holders. They don't subscribe to the idea that people will no longer buy books because they can get the same information from an AI tool, for example. However, authors deserve some form of compensation. SFWA argues that all stakeholders should ultimately get together to come up with a plan that works for everyone. This means fair compensation and protection for authors, without making it financially unviable for AI to flourish. \"Questions of 'how' and 'when' and 'how much money' all come later; first and foremost the author must have the right to say how their work is used,\" their submission reads.\n \n\"So long as authors retain the right to say 'no' we believe that equitable solutions to the thorny problems of licensing, scale, and market harm can be found. But that right remains the cornerstone, and we insist upon it,\" SFWA concludes.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/23/12/14/0020201/science-fiction-and-fantasy-writers-take-aim-at-ai-freeloading?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T13:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-14T10:00:00+00:00", - "title": "Are Tiny Black Holes Hiding Within Giant Stars?", - "link": "https://science.slashdot.org/story/23/12/14/005223/are-tiny-black-holes-hiding-within-giant-stars?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-14T10:00:00+00:00", - "content": "sciencehabit shares a report from Science Magazine: Grunge music: a source of validation for a generation of disaffected youth. And a surprising source of scientific inspiration for Earl Bellinger of the Max Planck Institute for Astrophysics. While listening to Soundgarden's 1994 hit Black Hole Sun 2 years ago, he contemplated a curious question: Might itty-bitty black holes from the dawn of time be lurking in the hearts of giant stars? A new study by Bellinger and colleagues suggests the idea is not so far-fetched. Astronomers could detect these trapped black holes by the vibrations they cause on the star's surface. And if there's enough of them out there, they could function as the mysterious dark matter that holds the universe together.\n \nThe researchers found that the black holes would sink to the star's core where hydrogen atoms undergo fusion to produce heat and light. At first, very little would happen. Even a dense stellar core is mostly empty space. The most microscopic of the black holes would have a hard time finding matter to consume and its growth would be extremely slow, Bellinger says. \"It could take longer than the lifetime of the universe to eat the star.\" But larger ones, roughly as massive as the asteroid Ceres or the dwarf planet Pluto, would get bigger on timescales of only a few hundred million years. Material would spiral onto the black hole, forming a disk that would heat up through friction and emit radiation. Once the black hole was about as massive as Earth, it would produce significant amounts of radiation, shining brightly and churning up the star's core like pot of boiling water. \"It will become a black hole -- powered object rather than fusion-powered object,\" says study co-author Matt Caplan, a theoretical physicist at Illinois State University. He and his colleagues have dubbed these entities \"Hawking stars.\"\n \nThe European Space Agency's Gaia satellite has spotted about 500 such anomalously cool giant stars, known as red stragglers, Bellinger says. To figure out whether these might actually be hiding a black hole, he says, astronomers could tune in to the particular frequencies at which the stars vibrate. Because a Hawking star would churn throughout its interior, rather than just in the topmost layers like an ordinary red giant, it would be expected to thrum with a particular combination of frequencies. Such waves can be detected in the way the star's light pulses and throbs. Bellinger is applying for funding to study the known red stragglers and see whether any display the characteristic vibrations of a black hole. The study has been published in The Astrophysical Journal.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "sciencehabit shares a report from Science Magazine: Grunge music: a source of validation for a generation of disaffected youth. And a surprising source of scientific inspiration for Earl Bellinger of the Max Planck Institute for Astrophysics. While listening to Soundgarden's 1994 hit Black Hole Sun 2 years ago, he contemplated a curious question: Might itty-bitty black holes from the dawn of time be lurking in the hearts of giant stars? A new study by Bellinger and colleagues suggests the idea is not so far-fetched. Astronomers could detect these trapped black holes by the vibrations they cause on the star's surface. And if there's enough of them out there, they could function as the mysterious dark matter that holds the universe together.\n \nThe researchers found that the black holes would sink to the star's core where hydrogen atoms undergo fusion to produce heat and light. At first, very little would happen. Even a dense stellar core is mostly empty space. The most microscopic of the black holes would have a hard time finding matter to consume and its growth would be extremely slow, Bellinger says. \"It could take longer than the lifetime of the universe to eat the star.\" But larger ones, roughly as massive as the asteroid Ceres or the dwarf planet Pluto, would get bigger on timescales of only a few hundred million years. Material would spiral onto the black hole, forming a disk that would heat up through friction and emit radiation. Once the black hole was about as massive as Earth, it would produce significant amounts of radiation, shining brightly and churning up the star's core like pot of boiling water. \"It will become a black hole -- powered object rather than fusion-powered object,\" says study co-author Matt Caplan, a theoretical physicist at Illinois State University. He and his colleagues have dubbed these entities \"Hawking stars.\"\n \nThe European Space Agency's Gaia satellite has spotted about 500 such anomalously cool giant stars, known as red stragglers, Bellinger says. To figure out whether these might actually be hiding a black hole, he says, astronomers could tune in to the particular frequencies at which the stars vibrate. Because a Hawking star would churn throughout its interior, rather than just in the topmost layers like an ordinary red giant, it would be expected to thrum with a particular combination of frequencies. Such waves can be detected in the way the star's light pulses and throbs. Bellinger is applying for funding to study the known red stragglers and see whether any display the characteristic vibrations of a black hole. The study has been published in The Astrophysical Journal.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/14/005223/are-tiny-black-holes-hiding-within-giant-stars?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T10:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-14T07:00:00+00:00", - "title": "Low-Frequency Sound Can Reveal That a Tornado Is On Its Way", - "link": "https://news.slashdot.org/story/23/12/13/2340222/low-frequency-sound-can-reveal-that-a-tornado-is-on-its-way?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-14T07:00:00+00:00", - "content": "Scientists are exploring infrasound, low-frequency sound waves produced by tornadoes to develop more accurate early warning systems for these destructive storms. The hope is that eavesdropping on infrasound signals, which travel for hundreds of miles, could provide up to two hours of advance warning. The BBC reports: Scientists have been listening to tornadoes and trying to work out whether they produce a unique sound since the 1970s. Experimental evidence suggests that low-frequency infrasound, with a frequency range of 1-10Hz , is produced while a tornado is taking shape and throughout its life. One recent set of measurements from a tornado near Lakin, Kansas in May 2020 revealed that the twister produced a distinct, elevated signal between 10Hz and 15Hz. In some cases arrays of infrasound detecting microphones have been shown to pick up the noise produced by tornadoes from more than 100km (60 miles) away and have also indicated that the infrasound is produced before tornadogenesis even begins. Researchers hope that by eavesdropping on these noises, it may be possible to not only hear a tornado coming but perhaps even predict them up to two hours before they form.\n \nSince 2020, a team from Oklahoma State University has been testing infrasound's predictive powers using equipment installed in tornado-chasing vehicles. Their portable kit, the Ground-based Local Infrasound Data Acquisition, or \"Glinda\", system, references a character from The Wizard of Oz. They hope the equipment will help storm chasers to better monitor the development of tornadoes in real time, but requires the equipment to be deployed to the right place at the right time. Some researchers, however, are working on systems that can be left to permanently monitor for tornadoes. One group, led by Roger Waxler, principal scientist at the National Centre for Physical Acoustics (NCPA) based at the University of Mississippi, are planning to deploy four permanent arrays of high-tech sensors in south Mississippi to detect infrasound signals. They hope the system will provide a way of consistently monitoring and detecting tornadoes.\n \n[...] Waxler and his team hope their decade-long experiment will lead to an effective early warning system for tornadoes, particularly when combined with other sources such as doppler radar. \"It's not unreasonable that we could localize a tornado to half a football field,\" adds Waxler. \"I envision seeing a map on an app with a dot that shows there's a tornado coming up South Lamar [Avenue, for example].\" Warnings have improved in recent decades: from 2003 to 2017, 87% of deadly tornadoes were preceded by an advance warning, but people still have an average of just 10-15 minutes to find shelter. A study based on interviews with 23 survivors of two deadly tornadoes found that people tried to evaluate and respond to the risk of a tornado as the situation evolved, but some did not have a place to shelter easily. Experts believe tornado warnings are too often ignored due to \"warning fatigue\" created by false alarms and hours of televised storm coverage. One study found 37% of people surveyed did not understand the need for taking precautionary measures during a tornado warning. Waxler hopes that a more accurate early warning system could change the way people respond when they hear a storm is approaching. \"Rather than going to hide in your bathtub or cellar, it might be a better idea to get in your car and drive if you know where a tornado is. \"The goal is to save lives.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Scientists are exploring infrasound, low-frequency sound waves produced by tornadoes to develop more accurate early warning systems for these destructive storms. The hope is that eavesdropping on infrasound signals, which travel for hundreds of miles, could provide up to two hours of advance warning. The BBC reports: Scientists have been listening to tornadoes and trying to work out whether they produce a unique sound since the 1970s. Experimental evidence suggests that low-frequency infrasound, with a frequency range of 1-10Hz , is produced while a tornado is taking shape and throughout its life. One recent set of measurements from a tornado near Lakin, Kansas in May 2020 revealed that the twister produced a distinct, elevated signal between 10Hz and 15Hz. In some cases arrays of infrasound detecting microphones have been shown to pick up the noise produced by tornadoes from more than 100km (60 miles) away and have also indicated that the infrasound is produced before tornadogenesis even begins. Researchers hope that by eavesdropping on these noises, it may be possible to not only hear a tornado coming but perhaps even predict them up to two hours before they form.\n \nSince 2020, a team from Oklahoma State University has been testing infrasound's predictive powers using equipment installed in tornado-chasing vehicles. Their portable kit, the Ground-based Local Infrasound Data Acquisition, or \"Glinda\", system, references a character from The Wizard of Oz. They hope the equipment will help storm chasers to better monitor the development of tornadoes in real time, but requires the equipment to be deployed to the right place at the right time. Some researchers, however, are working on systems that can be left to permanently monitor for tornadoes. One group, led by Roger Waxler, principal scientist at the National Centre for Physical Acoustics (NCPA) based at the University of Mississippi, are planning to deploy four permanent arrays of high-tech sensors in south Mississippi to detect infrasound signals. They hope the system will provide a way of consistently monitoring and detecting tornadoes.\n \n[...] Waxler and his team hope their decade-long experiment will lead to an effective early warning system for tornadoes, particularly when combined with other sources such as doppler radar. \"It's not unreasonable that we could localize a tornado to half a football field,\" adds Waxler. \"I envision seeing a map on an app with a dot that shows there's a tornado coming up South Lamar [Avenue, for example].\" Warnings have improved in recent decades: from 2003 to 2017, 87% of deadly tornadoes were preceded by an advance warning, but people still have an average of just 10-15 minutes to find shelter. A study based on interviews with 23 survivors of two deadly tornadoes found that people tried to evaluate and respond to the risk of a tornado as the situation evolved, but some did not have a place to shelter easily. Experts believe tornado warnings are too often ignored due to \"warning fatigue\" created by false alarms and hours of televised storm coverage. One study found 37% of people surveyed did not understand the need for taking precautionary measures during a tornado warning. Waxler hopes that a more accurate early warning system could change the way people respond when they hear a storm is approaching. \"Rather than going to hide in your bathtub or cellar, it might be a better idea to get in your car and drive if you know where a tornado is. \"The goal is to save lives.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/23/12/13/2340222/low-frequency-sound-can-reveal-that-a-tornado-is-on-its-way?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-14T03:30:00+00:00", - "title": "Human Brain Cells Hooked Up To a Chip Can Do Speech Recognition", - "link": "https://science.slashdot.org/story/23/12/13/2347257/human-brain-cells-hooked-up-to-a-chip-can-do-speech-recognition?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-14T03:30:00+00:00", - "content": "An anonymous reader quotes a report from MIT Technology Review: Brain organoids, clumps of human brain cells grown in a dish, can be hooked up to an electronic chip and carry out simple computational tasks, a new study shows. Feng Guo and his team at Indiana University Bloomington generated a brain organoid from stem cells, attached it to a computer chip, and connected their setup, known as Brainoware, to an AI tool. They found that this hybrid system could process, learn, and remember information. It was even able to carry out some rudimentary speech recognition. The work, published today in Nature Electronics, could one day lead to new kinds of bio-computers that are more efficient than conventional computers.\n \n\"This is a first demonstration of using brain organoids [for computing],\" says Guo. \"It's exciting to see the possibilities of organoids for biocomputing in the future.\" With Brainoware, Guo aimed to use actual brain cells to send and receive information. When the researchers applied electrical stimulation to the hybrid system they'd built, Brainoware responded to those signals, and changes occurred in its neural networks. According to the researchers, this result suggests that the hybrid system did process information, and could perhaps even perform computing tasks without supervision. Guo and his colleagues then attempted to see if Brainoware could perform any useful tasks. In one test, they used Brainoware to try to solve mathematical equations. They also gave it a benchmark test for speech recognition, using 240 audio clips of eight people pronouncing Japanese vowels. The clips were converted into electrical signals and applied to the Brainoware system. This generated signals in the neural networks of the brain organoid, which were then fed into an AI tool for decoding.\n \nThe researchers found that the brain organoid -- AI system could decode the signals from the audio recordings, which is a form of speech recognition, says Guo. \"But the accuracy was low,\" he says. Although the system improved with training, reaching an accuracy of about 78%, it was still less accurate than artificial neural networks, according to the study. Lena Smirnova, an assistant professor of public health at Johns Hopkins University, points out that brain organoids do not have the ability to truly hear speech but simply exhibit \"a reaction\" to pulses of electrical stimulation from the audio clips. And the study did not demonstrate whether Brainoware can process and store information over the long term or learn multiple tasks. Generating brain cell cultures in a lab and maintaining them long enough to perform computations is also a huge undertaking. Still, she adds, \"it's a really good demonstration that shows the capabilities of brain organoids.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from MIT Technology Review: Brain organoids, clumps of human brain cells grown in a dish, can be hooked up to an electronic chip and carry out simple computational tasks, a new study shows. Feng Guo and his team at Indiana University Bloomington generated a brain organoid from stem cells, attached it to a computer chip, and connected their setup, known as Brainoware, to an AI tool. They found that this hybrid system could process, learn, and remember information. It was even able to carry out some rudimentary speech recognition. The work, published today in Nature Electronics, could one day lead to new kinds of bio-computers that are more efficient than conventional computers.\n \n\"This is a first demonstration of using brain organoids [for computing],\" says Guo. \"It's exciting to see the possibilities of organoids for biocomputing in the future.\" With Brainoware, Guo aimed to use actual brain cells to send and receive information. When the researchers applied electrical stimulation to the hybrid system they'd built, Brainoware responded to those signals, and changes occurred in its neural networks. According to the researchers, this result suggests that the hybrid system did process information, and could perhaps even perform computing tasks without supervision. Guo and his colleagues then attempted to see if Brainoware could perform any useful tasks. In one test, they used Brainoware to try to solve mathematical equations. They also gave it a benchmark test for speech recognition, using 240 audio clips of eight people pronouncing Japanese vowels. The clips were converted into electrical signals and applied to the Brainoware system. This generated signals in the neural networks of the brain organoid, which were then fed into an AI tool for decoding.\n \nThe researchers found that the brain organoid -- AI system could decode the signals from the audio recordings, which is a form of speech recognition, says Guo. \"But the accuracy was low,\" he says. Although the system improved with training, reaching an accuracy of about 78%, it was still less accurate than artificial neural networks, according to the study. Lena Smirnova, an assistant professor of public health at Johns Hopkins University, points out that brain organoids do not have the ability to truly hear speech but simply exhibit \"a reaction\" to pulses of electrical stimulation from the audio clips. And the study did not demonstrate whether Brainoware can process and store information over the long term or learn multiple tasks. Generating brain cell cultures in a lab and maintaining them long enough to perform computations is also a huge undertaking. Still, she adds, \"it's a really good demonstration that shows the capabilities of brain organoids.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/13/2347257/human-brain-cells-hooked-up-to-a-chip-can-do-speech-recognition?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T03:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-14T01:00:00+00:00", - "title": "Google Maps Ditches Cloud-Based Location History", - "link": "https://yro.slashdot.org/story/23/12/13/2330202/google-maps-ditches-cloud-based-location-history?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-14T01:00:00+00:00", - "content": "Google Maps will soon give you the option to store your location data on your device instead of in the cloud. Android Police reports: In the coming year, Google is planning to switch things up by defaulting to saving your Timeline directly on your device instead of the cloud. You'll also have the option to wipe out bits or the whole information dossier whenever you want and disable location history completely. When you're jumping ship to a new device and want to keep your data close, you always have the option to back it up in the cloud. Google assures you that it'll lock it up with encryption.\n \nAnother significant update is the shorter default amount of time before your location history is auto-deleted. Soon, when you turn on location history, the default auto-delete time shrinks to three months. In the past, it used to hang around for 18 months by default. If you're the sentimental type, you can extend the Timeline's lifespan or turn off the auto-delete option. Google Maps has another nifty trick up its sleeve: soon, you can erase all traces of your trips with just a few taps. Say you've got a favorite hangout spot and you want to keep it to yourself. You can wipe the slate clean right from the app, whether it's searches, directions, visits, or shares. This handy feature is making its debut on Maps for Android and iOS in the next few weeks.\n \nFinally, you will soon be able to click on the blue dot on the map to view your Location History and Timeline at a glance. It allows you to tweak what you share and store on Maps, all without having to dive into the settings. Currently, the blue dot only gives you some neat shortcuts for parking saves and location sharing.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google Maps will soon give you the option to store your location data on your device instead of in the cloud. Android Police reports: In the coming year, Google is planning to switch things up by defaulting to saving your Timeline directly on your device instead of the cloud. You'll also have the option to wipe out bits or the whole information dossier whenever you want and disable location history completely. When you're jumping ship to a new device and want to keep your data close, you always have the option to back it up in the cloud. Google assures you that it'll lock it up with encryption.\n \nAnother significant update is the shorter default amount of time before your location history is auto-deleted. Soon, when you turn on location history, the default auto-delete time shrinks to three months. In the past, it used to hang around for 18 months by default. If you're the sentimental type, you can extend the Timeline's lifespan or turn off the auto-delete option. Google Maps has another nifty trick up its sleeve: soon, you can erase all traces of your trips with just a few taps. Say you've got a favorite hangout spot and you want to keep it to yourself. You can wipe the slate clean right from the app, whether it's searches, directions, visits, or shares. This handy feature is making its debut on Maps for Android and iOS in the next few weeks.\n \nFinally, you will soon be able to click on the blue dot on the map to view your Location History and Timeline at a glance. It allows you to tweak what you share and store on Maps, all without having to dive into the settings. Currently, the blue dot only gives you some neat shortcuts for parking saves and location sharing.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/12/13/2330202/google-maps-ditches-cloud-based-location-history?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T01:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-14T00:20:00+00:00", - "title": "GM's Cruise Robotaxi Unit Dismisses Nine Execs After Safety Probe", - "link": "https://tech.slashdot.org/story/23/12/13/2358242/gms-cruise-robotaxi-unit-dismisses-nine-execs-after-safety-probe?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-14T00:20:00+00:00", - "content": "According to Reuters, General Motors' Cruise robotaxi unit dismissed nine executives amid an ongoing safety investigation, which the company confirmed included Chief Operating Officer Gil West. The company conducted a full safety review following an incident in San Francisco where a pedestrian was struck and dragged by one of its cars. GM already halted service nationwide and removed its cars from public roads. Reuters reports: CEO Kyle Vogt and co-founder Dan Kan both resigned in recent weeks and Cruise is preparing for a round of layoffs this month. \"Following an initial analysis of the October 2 incident and Cruise's response to it, nine individuals departed Cruise,\" according to the memo. \"We are committed to full transparency and are focused on rebuilding trust and operating with the highest standards when it comes to safety, integrity, and accountability,\" the memo said. \"As a result, we believe that new leadership is necessary to achieve these goals.\"\n \nThe Cruise spokesperson confirmed that among those dismissed was also Chief Legal and Policy Officer Jeff Bleich and Senior Vice President of Government Affairs David Estrada. Cruise's troubles are also a setback for an industry dependent on public trust and the cooperation of regulators. The unit had in recent months touted ambitious plans to expand to more cities, offering fully autonomous taxi rides. The investigation, led by law firm Quinn Emmanuel, is expected to last until January, GM has said. \"The personnel decisions made today are a necessary step for Cruise to move forward as it focuses on accountability, trust and transparency,\" GM said in a statement.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "According to Reuters, General Motors' Cruise robotaxi unit dismissed nine executives amid an ongoing safety investigation, which the company confirmed included Chief Operating Officer Gil West. The company conducted a full safety review following an incident in San Francisco where a pedestrian was struck and dragged by one of its cars. GM already halted service nationwide and removed its cars from public roads. Reuters reports: CEO Kyle Vogt and co-founder Dan Kan both resigned in recent weeks and Cruise is preparing for a round of layoffs this month. \"Following an initial analysis of the October 2 incident and Cruise's response to it, nine individuals departed Cruise,\" according to the memo. \"We are committed to full transparency and are focused on rebuilding trust and operating with the highest standards when it comes to safety, integrity, and accountability,\" the memo said. \"As a result, we believe that new leadership is necessary to achieve these goals.\"\n \nThe Cruise spokesperson confirmed that among those dismissed was also Chief Legal and Policy Officer Jeff Bleich and Senior Vice President of Government Affairs David Estrada. Cruise's troubles are also a setback for an industry dependent on public trust and the cooperation of regulators. The unit had in recent months touted ambitious plans to expand to more cities, offering fully autonomous taxi rides. The investigation, led by law firm Quinn Emmanuel, is expected to last until January, GM has said. \"The personnel decisions made today are a necessary step for Cruise to move forward as it focuses on accountability, trust and transparency,\" GM said in a statement.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/13/2358242/gms-cruise-robotaxi-unit-dismisses-nine-execs-after-safety-probe?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T00:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-13T23:40:00+00:00", - "title": "Xbox Cloud Gaming Is Now Available On Meta's Quest VR Headsets", - "link": "https://games.slashdot.org/story/23/12/13/2143222/xbox-cloud-gaming-is-now-available-on-metas-quest-vr-headsets?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-13T23:40:00+00:00", - "content": "A beta version of the Xbox Cloud Gaming app is now available for the Meta Quest headsets, allowing you to stream hundreds of Xbox games with an Xbox Game Pass Ultimate subscription. The Verge reports: The beta app is available from the Meta Quest Store, and you'll simply need to pair a supported Bluetooth controller to start playing. You can use an Xbox controller (that supports Bluetooth), a PS4 one, or even Nintendo's Switch Pro controllers. Support for PS5 controllers is \"coming in the future,\" according to Meta.\n \nThere are a variety of display sizes for an immersive VR environment to stream Xbox games in or even an Xbox-themed virtual space on the latest Quest 3 and Pro headsets that takes advantage of full-color passthrough.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "A beta version of the Xbox Cloud Gaming app is now available for the Meta Quest headsets, allowing you to stream hundreds of Xbox games with an Xbox Game Pass Ultimate subscription. The Verge reports: The beta app is available from the Meta Quest Store, and you'll simply need to pair a supported Bluetooth controller to start playing. You can use an Xbox controller (that supports Bluetooth), a PS4 one, or even Nintendo's Switch Pro controllers. Support for PS5 controllers is \"coming in the future,\" according to Meta.\n \nThere are a variety of display sizes for an immersive VR environment to stream Xbox games in or even an Xbox-themed virtual space on the latest Quest 3 and Pro headsets that takes advantage of full-color passthrough.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/23/12/13/2143222/xbox-cloud-gaming-is-now-available-on-metas-quest-vr-headsets?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-13T23:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-13T23:00:00+00:00", - "title": "European Union Lawmakers Agree To New Rules That Bolster Gig Worker Rights", - "link": "https://yro.slashdot.org/story/23/12/13/2121226/european-union-lawmakers-agree-to-new-rules-that-bolster-gig-worker-rights?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-13T23:00:00+00:00", - "content": "An anonymous reader quotes a report from TechCrunch: Some two years of talking about gig worker rights later and European Union lawmakers have finally reached a deal on the final shape of the Platform Worker Directive. [...] The Commission presented its original plan to reform labor laws to boost protections for platform workers back in December 2021, setting out a presumption of employment for workers in a bid to flip the odds on gig economy exploitation. But the proposal proved contentious, with heavy industry lobbying from tech platforms such as Uber pushing for gig workers to be carved out of Europe's employment protections. There were also divisions between Member States over how much worker protection vs platform shielding they were prepared to commit to. But after a final trilogue, lasting more than 12 hours, a provisional agreement has been clinched.\n \nThe deal that's been provisionally agreed means a presumption of an employment relationship between a gig worker and a platform will be triggered when two out of a list of five \"indicators of control or direction are present,\" as the parliament's press release puts it. \"This list can be expanded by Member States. The presumption can be triggered by the worker, by their representatives, and by the competent authorities on their own initiative. This presumption can be rebutted if the platform proves that the contractual relationship is not an employment relationship,\" it adds. The agreement also contains transparency provisions that will require platforms to provide information to individuals performing platform work (and to their representatives) about how the algorithms that manage them work; and how their behavior affects decisions taken by automated systems. [...] The provisionally agreed new rules will also ban platforms from taking \"certain important decisions,\" such as dismissals or decisions to suspend an account, without human oversight.\n \nPer the parliament, the agreed text also ensures \"more human oversight on the decisions of systems that directly affect the persons performing platform work\"; and obliges platforms to \"assess the impact of decisions taken or supported by automated monitoring and decision-making systems on working conditions, health and safety and fundamental rights\". So conducting data protection impact assessments looks set to be a hard requirement for complying with the new law. Another prohibition that's been agreed is a ban on platforms from processing certain types of personal data of workers, including personal beliefs, private exchanges with colleagues, or when a worker is not at work -- with the Directive billed as beefing up data protection rights for platform workers.\n \nOther provisions in the provisional deal include a requirement for platforms to share information on self-employed workers in their employ with competent national authorities and representatives of those performing platform work, such as trade unions. Measures to prevent platforms from circumventing the rules by using intermediaries has also been agreement -- a practice that's stepped up considerably in Spain since the country introduced its own labor reform, back in 2021, with the aim of forcing platforms to hire delivery workers. Some key details of exactly what's been agreed remain under wraps -- and full visibility and analysis of the ramifications will likely have to wait for a consolidated text to emerge in the coming weeks/months. [...] The final text still needs to be voted on by the Council and Parliament before it can be adopted as pan-EU law. What implementation period has been agreed also isn't yet clear. But today's political deal signals the train has now left the station.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Some two years of talking about gig worker rights later and European Union lawmakers have finally reached a deal on the final shape of the Platform Worker Directive. [...] The Commission presented its original plan to reform labor laws to boost protections for platform workers back in December 2021, setting out a presumption of employment for workers in a bid to flip the odds on gig economy exploitation. But the proposal proved contentious, with heavy industry lobbying from tech platforms such as Uber pushing for gig workers to be carved out of Europe's employment protections. There were also divisions between Member States over how much worker protection vs platform shielding they were prepared to commit to. But after a final trilogue, lasting more than 12 hours, a provisional agreement has been clinched.\n \nThe deal that's been provisionally agreed means a presumption of an employment relationship between a gig worker and a platform will be triggered when two out of a list of five \"indicators of control or direction are present,\" as the parliament's press release puts it. \"This list can be expanded by Member States. The presumption can be triggered by the worker, by their representatives, and by the competent authorities on their own initiative. This presumption can be rebutted if the platform proves that the contractual relationship is not an employment relationship,\" it adds. The agreement also contains transparency provisions that will require platforms to provide information to individuals performing platform work (and to their representatives) about how the algorithms that manage them work; and how their behavior affects decisions taken by automated systems. [...] The provisionally agreed new rules will also ban platforms from taking \"certain important decisions,\" such as dismissals or decisions to suspend an account, without human oversight.\n \nPer the parliament, the agreed text also ensures \"more human oversight on the decisions of systems that directly affect the persons performing platform work\"; and obliges platforms to \"assess the impact of decisions taken or supported by automated monitoring and decision-making systems on working conditions, health and safety and fundamental rights\". So conducting data protection impact assessments looks set to be a hard requirement for complying with the new law. Another prohibition that's been agreed is a ban on platforms from processing certain types of personal data of workers, including personal beliefs, private exchanges with colleagues, or when a worker is not at work -- with the Directive billed as beefing up data protection rights for platform workers.\n \nOther provisions in the provisional deal include a requirement for platforms to share information on self-employed workers in their employ with competent national authorities and representatives of those performing platform work, such as trade unions. Measures to prevent platforms from circumventing the rules by using intermediaries has also been agreement -- a practice that's stepped up considerably in Spain since the country introduced its own labor reform, back in 2021, with the aim of forcing platforms to hire delivery workers. Some key details of exactly what's been agreed remain under wraps -- and full visibility and analysis of the ramifications will likely have to wait for a consolidated text to emerge in the coming weeks/months. [...] The final text still needs to be voted on by the Council and Parliament before it can be adopted as pan-EU law. What implementation period has been agreed also isn't yet clear. But today's political deal signals the train has now left the station.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/12/13/2121226/european-union-lawmakers-agree-to-new-rules-that-bolster-gig-worker-rights?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-13T23:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-13T22:20:00+00:00", - "title": "GM Says It's Ditching Apple CarPlay, Android Auto For Your Safety", - "link": "https://tech.slashdot.org/story/23/12/13/2112238/gm-says-its-ditching-apple-carplay-android-auto-for-your-safety?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-13T22:20:00+00:00", - "content": "Earlier this year, General Motors announced plans to phase out Apple CarPlay and Android Auto, shifting instead to built-in infotainment systems developed with Google. Now, the company has explained why it made that decision to MotorTrend: Tim Babbitt, GM's head of product for infotainment, gave MT a better explanation at a press event for the new Chevrolet Blazer EV, the flagship vehicle in the no CarPlay or Android Auto strategy. According to him, there's an important factor that didn't make it into the fact sheet: safety. Specifically, he cited driver distraction caused by cell phone usage behind the wheel. According to Babbitt, CarPlay and Android Auto have stability issues that manifest themselves as bad connections, poor rendering, slow responses, and dropped connections. And when CarPlay and Android Auto have issues, drivers pick up their phones again, taking their eyes off the road and totally defeating the purpose of these phone-mirroring programs. Solving those issues can sometimes be beyond the control of the automaker. You can start to see GM's frustration. Babbitt's thesis is that if drivers were to do everything through the vehicle's built-in systems, they'd be less likely to pick up their phones and therefore less distracted and safer behind the wheel. He admits, though, GM hasn't tested this thesis in the lab or real world yet but believes it has potential, if customers go for it.\n \nThe issues Babbitt cited with CarPlay and Android Auto seem like they'd be mostly linked to using those programs wirelessly, and while he says that's true, just plugging the phone into a USB data port doesn't solve all the problems. Babbitt says even when using a physical connection, Android phones are prone to compatibility issues between the vehicle and all the various phone manufacturers running Android. iPhones, meanwhile, suffer from backwards compatibility issues that cause older iPhone models to have trouble running CarPlay consistently. He points to J.D. Power data that shows issues with CarPlay and Android Auto are common owner complaints, and that customers tend to blame the automaker rather than the phone manufacturer or phone software. In that way, eliminating CarPlay and Android Auto potentially relieves GM of a key customer complaint dragging down their perceived quality scores. After MotorTrend's story was published, GM issued the following statement: \"We wanted to reach out to clarify that comments about GM's position on phone projection were misrepresented and to reinforce our valued partnerships with Apple and Google and each company's commitment to driver safety. GM's embedded infotainment strategy is driven by the benefits of having a system that allows for greater integration with the larger GM ecosystem and vehicles.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Earlier this year, General Motors announced plans to phase out Apple CarPlay and Android Auto, shifting instead to built-in infotainment systems developed with Google. Now, the company has explained why it made that decision to MotorTrend: Tim Babbitt, GM's head of product for infotainment, gave MT a better explanation at a press event for the new Chevrolet Blazer EV, the flagship vehicle in the no CarPlay or Android Auto strategy. According to him, there's an important factor that didn't make it into the fact sheet: safety. Specifically, he cited driver distraction caused by cell phone usage behind the wheel. According to Babbitt, CarPlay and Android Auto have stability issues that manifest themselves as bad connections, poor rendering, slow responses, and dropped connections. And when CarPlay and Android Auto have issues, drivers pick up their phones again, taking their eyes off the road and totally defeating the purpose of these phone-mirroring programs. Solving those issues can sometimes be beyond the control of the automaker. You can start to see GM's frustration. Babbitt's thesis is that if drivers were to do everything through the vehicle's built-in systems, they'd be less likely to pick up their phones and therefore less distracted and safer behind the wheel. He admits, though, GM hasn't tested this thesis in the lab or real world yet but believes it has potential, if customers go for it.\n \nThe issues Babbitt cited with CarPlay and Android Auto seem like they'd be mostly linked to using those programs wirelessly, and while he says that's true, just plugging the phone into a USB data port doesn't solve all the problems. Babbitt says even when using a physical connection, Android phones are prone to compatibility issues between the vehicle and all the various phone manufacturers running Android. iPhones, meanwhile, suffer from backwards compatibility issues that cause older iPhone models to have trouble running CarPlay consistently. He points to J.D. Power data that shows issues with CarPlay and Android Auto are common owner complaints, and that customers tend to blame the automaker rather than the phone manufacturer or phone software. In that way, eliminating CarPlay and Android Auto potentially relieves GM of a key customer complaint dragging down their perceived quality scores. After MotorTrend's story was published, GM issued the following statement: \"We wanted to reach out to clarify that comments about GM's position on phone projection were misrepresented and to reinforce our valued partnerships with Apple and Google and each company's commitment to driver safety. GM's embedded infotainment strategy is driven by the benefits of having a system that allows for greater integration with the larger GM ecosystem and vehicles.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/13/2112238/gm-says-its-ditching-apple-carplay-android-auto-for-your-safety?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-13T22:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-13T21:40:00+00:00", - "title": "OpenAI, Axel Springer Strike Unprecedented Deal To Offer News In ChatGPT", - "link": "https://news.slashdot.org/story/23/12/13/212247/openai-axel-springer-strike-unprecedented-deal-to-offer-news-in-chatgpt?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-13T21:40:00+00:00", - "content": "OpenAI has struck a deal with Politico parent company Axel Springer, allowing ChatGPT to summarize news stories from Politico and Business Insider. CNBC reports: Once the OpenAI-Axel Springer deal goes into effect, when a user asks ChatGPT a question, it will respond with summaries of news articles from media outlets such as Politico, Business Insider, Bild and Welt. The chatbot will also include articles that would otherwise be limited to subscribers of those outlets, according to a release, and the answers will include \"attribution and links to the full articles for transparency.\" The partnership follows a deal that OpenAI struck with the Associated Press in July, allowing it to license the AP's news archive for training data.\n \nAs part of the agreement, Axel Springer will provide content from its media brands as training data for OpenAI's large language models, such as GPT-4, the AI model that helps power ChatGPT. The News Media Alliance, a trade group representing more than 2,200 publishers, released research in October suggesting that data sets used to train popular AI models rely \"significantly\" more on publisher content, outweighing it by a factor ranging from over five to almost 100, compared to generic web content.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "OpenAI has struck a deal with Politico parent company Axel Springer, allowing ChatGPT to summarize news stories from Politico and Business Insider. CNBC reports: Once the OpenAI-Axel Springer deal goes into effect, when a user asks ChatGPT a question, it will respond with summaries of news articles from media outlets such as Politico, Business Insider, Bild and Welt. The chatbot will also include articles that would otherwise be limited to subscribers of those outlets, according to a release, and the answers will include \"attribution and links to the full articles for transparency.\" The partnership follows a deal that OpenAI struck with the Associated Press in July, allowing it to license the AP's news archive for training data.\n \nAs part of the agreement, Axel Springer will provide content from its media brands as training data for OpenAI's large language models, such as GPT-4, the AI model that helps power ChatGPT. The News Media Alliance, a trade group representing more than 2,200 publishers, released research in October suggesting that data sets used to train popular AI models rely \"significantly\" more on publisher content, outweighing it by a factor ranging from over five to almost 100, compared to generic web content.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/23/12/13/212247/openai-axel-springer-strike-unprecedented-deal-to-offer-news-in-chatgpt?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-13T21:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-15T14:05:00+00:00", - "title": "Ex-Wirecard COO Suspected as Decade-Long Russian Agent", - "link": "https://slashdot.org/story/23/12/15/144235/ex-wirecard-coo-suspected-as-decade-long-russian-agent?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-15T14:05:00+00:00", - "content": "Soon after payment-processing giant Wirecard reported in June 2020 that nearly $2 billion had gone missing from its balance sheet, its chief operating officer Jan Marsalek boarded a private jet out of Austria. After a landing in Belarus, he was whisked by car to Moscow, where he got a Russian passport under an assumed name. Western intelligence and security officials now say they have reached the unsettling conclusion that Marsalek had likely been a Russian agent for nearly a decade. From a report: Marsalek already stands accused of stealing hundreds of millions of dollars from investors. Following multiple international investigations, officials from intelligence, police and judiciary agencies in several countries now say the 43-year-old native of Austria used his defunct payments company to illegally help Russian spy agencies move money to fund covert operations around the world. \n\nOne of the most wanted men in the world, Marsalek has also provided assistance to the mercenary organization of Yevgeny Prigozhin, the late Russian warlord, and is now involved in the reconfiguration of his business empire in Africa on behalf of Russian officials from his new domicile in Dubai, according to Western intelligence. Wirecard got its start processing payments for pornography websites on its way to becoming an Internet finance behemoth. During its heyday, the company claimed to process $140 billion of transactions a year on behalf of a quarter million businesses, making it a rival of Square and PayPal. It was briefly valued at more than any German bank. Former associates remember Marsalek as a bon vivant who at one point rented a Munich mansion for 35,000 euros, or $38,000, a month. He was making millions of dollars a year in salary and crisscrossing the globe in private jets. He was also obsessed with the cloak-and-dagger world of espionage, often intimating that he had connections with intelligence officers, they say -- claims many dismissed as bluster.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Soon after payment-processing giant Wirecard reported in June 2020 that nearly $2 billion had gone missing from its balance sheet, its chief operating officer Jan Marsalek boarded a private jet out of Austria. After a landing in Belarus, he was whisked by car to Moscow, where he got a Russian passport under an assumed name. Western intelligence and security officials now say they have reached the unsettling conclusion that Marsalek had likely been a Russian agent for nearly a decade. From a report: Marsalek already stands accused of stealing hundreds of millions of dollars from investors. Following multiple international investigations, officials from intelligence, police and judiciary agencies in several countries now say the 43-year-old native of Austria used his defunct payments company to illegally help Russian spy agencies move money to fund covert operations around the world. \n\nOne of the most wanted men in the world, Marsalek has also provided assistance to the mercenary organization of Yevgeny Prigozhin, the late Russian warlord, and is now involved in the reconfiguration of his business empire in Africa on behalf of Russian officials from his new domicile in Dubai, according to Western intelligence. Wirecard got its start processing payments for pornography websites on its way to becoming an Internet finance behemoth. During its heyday, the company claimed to process $140 billion of transactions a year on behalf of a quarter million businesses, making it a rival of Square and PayPal. It was briefly valued at more than any German bank. Former associates remember Marsalek as a bon vivant who at one point rented a Munich mansion for 35,000 euros, or $38,000, a month. He was making millions of dollars a year in salary and crisscrossing the globe in private jets. He was also obsessed with the cloak-and-dagger world of espionage, often intimating that he had connections with intelligence officers, they say -- claims many dismissed as bluster.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/23/12/15/144235/ex-wirecard-coo-suspected-as-decade-long-russian-agent?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T14:05:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-15T13:00:00+00:00", - "title": "Suspects Can Refuse To Provide Phone Passcodes To Police, Court Rules", - "link": "https://yro.slashdot.org/story/23/12/15/0022224/suspects-can-refuse-to-provide-phone-passcodes-to-police-court-rules?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-15T13:00:00+00:00", - "content": "An anonymous reader quotes a report from Ars Technica: Criminal suspects can refuse to provide phone passcodes to police under the US Constitution's Fifth Amendment privilege against self-incrimination, according to a unanimous ruling issued (PDF) today by Utah's state Supreme Court. The questions addressed in the ruling could eventually be taken up by the US Supreme Court, whether through review of this case or a similar one. The case involves Alfonso Valdez, who was arrested for kidnapping and assaulting his ex-girlfriend. Police officers obtained a search warrant for the contents of Valdez's phone but couldn't crack his passcode.\n \nValdez refused to provide his passcode to a police detective. At his trial, the state \"elicited testimony from the detective about Valdez's refusal to provide his passcode when asked,\" today's ruling said. \"And during closing arguments, the State argued in rebuttal that Valdez's refusal and the resulting lack of evidence from his cell phone undermined the veracity of one of his defenses. The jury convicted Valdez.\" A court of appeals reversed the conviction, agreeing \"with Valdez that he had a right under the Fifth Amendment to the United States Constitution to refuse to provide his passcode, and that the State violated that right when it used his refusal against him at trial.\" The Utah Supreme Court affirmed the court of appeals ruling.\n \nThe Valdez case does not involve an order to compel a suspect to unlock a device. Instead, \"law enforcement asked Valdez to verbally provide his passcode,\" Utah justices wrote. \"While these circumstances involve modern technology in a scenario that the Supreme Court has not yet addressed, we conclude that these facts present a more straightforward question that is answered by settled Fifth Amendment principles.\" Ruling against the state, the Utah Supreme Court said it \"agree[s] with the court of appeals that verbally providing a cell phone passcode is a testimonial communication under the Fifth Amendment.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Criminal suspects can refuse to provide phone passcodes to police under the US Constitution's Fifth Amendment privilege against self-incrimination, according to a unanimous ruling issued (PDF) today by Utah's state Supreme Court. The questions addressed in the ruling could eventually be taken up by the US Supreme Court, whether through review of this case or a similar one. The case involves Alfonso Valdez, who was arrested for kidnapping and assaulting his ex-girlfriend. Police officers obtained a search warrant for the contents of Valdez's phone but couldn't crack his passcode.\n \nValdez refused to provide his passcode to a police detective. At his trial, the state \"elicited testimony from the detective about Valdez's refusal to provide his passcode when asked,\" today's ruling said. \"And during closing arguments, the State argued in rebuttal that Valdez's refusal and the resulting lack of evidence from his cell phone undermined the veracity of one of his defenses. The jury convicted Valdez.\" A court of appeals reversed the conviction, agreeing \"with Valdez that he had a right under the Fifth Amendment to the United States Constitution to refuse to provide his passcode, and that the State violated that right when it used his refusal against him at trial.\" The Utah Supreme Court affirmed the court of appeals ruling.\n \nThe Valdez case does not involve an order to compel a suspect to unlock a device. Instead, \"law enforcement asked Valdez to verbally provide his passcode,\" Utah justices wrote. \"While these circumstances involve modern technology in a scenario that the Supreme Court has not yet addressed, we conclude that these facts present a more straightforward question that is answered by settled Fifth Amendment principles.\" Ruling against the state, the Utah Supreme Court said it \"agree[s] with the court of appeals that verbally providing a cell phone passcode is a testimonial communication under the Fifth Amendment.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/12/15/0022224/suspects-can-refuse-to-provide-phone-passcodes-to-police-court-rules?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T13:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-15T10:00:00+00:00", - "title": "Scientists Pinpoint Cause of Morning Sickness To Hormone Made By Fetus", - "link": "https://science.slashdot.org/story/23/12/15/0011204/scientists-pinpoint-cause-of-morning-sickness-to-hormone-made-by-fetus?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-15T10:00:00+00:00", - "content": "Scientists have pinpointed the cause of nausea and vomiting in pregnancy, \"finding that the severity of illness is influenced by how much of a hormone called GDF15 the growing fetus makes,\" reports Science Magazine. The findings have been published in the journal Nature. From the report: GDF15 is present in the blood of nonpregnant people and is known to be associated with nausea; it's also been tested as a weight loss aid because of its tendency to suppress appetite. Levels of the hormone rise sharply in early pregnancy and increase throughout gestation. Pregnant people with higher GDF15 concentrations have been documented as having a higher risk of vomiting and nausea. Some researchers suggest the hormone-caused aversion to some smells and tastes might encourage an expectant parent to avoid foods potentially dangerous to the fetus.\n \nTo find out more about GDF15 changes during pregnancy, University of Cambridge physician-scientist Stephen O'Rahilly and colleagues studied half a dozen pregnant people who were known from previous genetic screening to produce a slightly different version of the GDF15 protein from their fetuses. Researchers could take advantage of that difference to trace whether GDF15 in the parent's blood originated in the parental or fetal genome: Almost all of it came from the fetus, O'Rahilly says. The team also took a closer look at the link between GDF15 levels and pregnancy sickness. Consistent with previous research, questionnaires from more than 300 participants showed that people who reported vomiting and nausea had significantly higher levels of circulating GDF15 on average than people without these symptoms. The researchers also found elevated levels of GDF15 in an analysis of more than 50 women hospitalized with hyperemesis gravidarum.\n \nStill, hormone levels alone couldn't explain the difference in sickness severity. \"There was a big overlap\" in GDF15 levels between the groups, O'Rahilly says. He and co-author Marlena Fejzo, a researcher at the University of Southern California, suspected that people's sensitivity to GDF15 might also play a role. (Fejzo began to study the condition after her own pregnancy loss following hyperemesis gravidarum.) To test the idea, the researchers studied 10 nonpregnant people with a rare genetic variant known to carry a heightened risk of hyperemesis gravidarum. These people had reduced GDF15 levels in their blood, hinting that naturally low levels of the hormone might predispose someone to sickness during pregnancy. The researchers found the opposite when they asked 20 pregnant people with beta thalassemia, a blood disorder associated with high GDF15 levels, about their pregnancy symptoms: Just 5% of this group reported nausea or vomiting. O'Rahilly's lab found a similar pattern in animal experiments.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Scientists have pinpointed the cause of nausea and vomiting in pregnancy, \"finding that the severity of illness is influenced by how much of a hormone called GDF15 the growing fetus makes,\" reports Science Magazine. The findings have been published in the journal Nature. From the report: GDF15 is present in the blood of nonpregnant people and is known to be associated with nausea; it's also been tested as a weight loss aid because of its tendency to suppress appetite. Levels of the hormone rise sharply in early pregnancy and increase throughout gestation. Pregnant people with higher GDF15 concentrations have been documented as having a higher risk of vomiting and nausea. Some researchers suggest the hormone-caused aversion to some smells and tastes might encourage an expectant parent to avoid foods potentially dangerous to the fetus.\n \nTo find out more about GDF15 changes during pregnancy, University of Cambridge physician-scientist Stephen O'Rahilly and colleagues studied half a dozen pregnant people who were known from previous genetic screening to produce a slightly different version of the GDF15 protein from their fetuses. Researchers could take advantage of that difference to trace whether GDF15 in the parent's blood originated in the parental or fetal genome: Almost all of it came from the fetus, O'Rahilly says. The team also took a closer look at the link between GDF15 levels and pregnancy sickness. Consistent with previous research, questionnaires from more than 300 participants showed that people who reported vomiting and nausea had significantly higher levels of circulating GDF15 on average than people without these symptoms. The researchers also found elevated levels of GDF15 in an analysis of more than 50 women hospitalized with hyperemesis gravidarum.\n \nStill, hormone levels alone couldn't explain the difference in sickness severity. \"There was a big overlap\" in GDF15 levels between the groups, O'Rahilly says. He and co-author Marlena Fejzo, a researcher at the University of Southern California, suspected that people's sensitivity to GDF15 might also play a role. (Fejzo began to study the condition after her own pregnancy loss following hyperemesis gravidarum.) To test the idea, the researchers studied 10 nonpregnant people with a rare genetic variant known to carry a heightened risk of hyperemesis gravidarum. These people had reduced GDF15 levels in their blood, hinting that naturally low levels of the hormone might predispose someone to sickness during pregnancy. The researchers found the opposite when they asked 20 pregnant people with beta thalassemia, a blood disorder associated with high GDF15 levels, about their pregnancy symptoms: Just 5% of this group reported nausea or vomiting. O'Rahilly's lab found a similar pattern in animal experiments.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/15/0011204/scientists-pinpoint-cause-of-morning-sickness-to-hormone-made-by-fetus?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T10:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-15T07:00:00+00:00", - "title": "NASA's Voyager 1 Probe In Interstellar Space Can't Phone Home", - "link": "https://tech.slashdot.org/story/23/12/14/1956257/nasas-voyager-1-probe-in-interstellar-space-cant-phone-home?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-15T07:00:00+00:00", - "content": "NASA's Voyager 1 spacecraft is, once again, having trouble transmitting any scientific or systems data back to Earth. \"The 46-year-old spacecraft is capable of receiving commands, but a problem seems to have arisen with the probe's computers,\" reports Space.com. Slashdot readers quonset and ArchieBunker shared the news. From the report: Voyager 1's flight data system (FDS), which collects onboard engineering information and data from the spacecraft's scientific instruments, is no longer communicating as expected with the probe's telecommunications unit (TMU), according to a NASA blog post on Dec. 12. When functioning properly, the FDS compiles the spacecraft's info into a data package, which is then transmitted back to Earth using the TMU. Lately, that data package has been \"stuck,\" the blog post said, \"transmitting a repeating pattern of ones and zeros.\" Voyager's engineering team traced the problem back to the FDS, but it could be weeks before a solution is found. In May 2022, Voyager 1 experienced transmitting issues for several months before a workaround was found. Meanwhile, Voyager 2 experienced an unplanned \"communications pause\" earlier this year after a routine sequence of commands triggered a 2-degree change in the spacecraft's antenna orientation. This prevented it from receiving commands or transmitting data back to Earth until NASA fixed the issue a week later.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "NASA's Voyager 1 spacecraft is, once again, having trouble transmitting any scientific or systems data back to Earth. \"The 46-year-old spacecraft is capable of receiving commands, but a problem seems to have arisen with the probe's computers,\" reports Space.com. Slashdot readers quonset and ArchieBunker shared the news. From the report: Voyager 1's flight data system (FDS), which collects onboard engineering information and data from the spacecraft's scientific instruments, is no longer communicating as expected with the probe's telecommunications unit (TMU), according to a NASA blog post on Dec. 12. When functioning properly, the FDS compiles the spacecraft's info into a data package, which is then transmitted back to Earth using the TMU. Lately, that data package has been \"stuck,\" the blog post said, \"transmitting a repeating pattern of ones and zeros.\" Voyager's engineering team traced the problem back to the FDS, but it could be weeks before a solution is found. In May 2022, Voyager 1 experienced transmitting issues for several months before a workaround was found. Meanwhile, Voyager 2 experienced an unplanned \"communications pause\" earlier this year after a routine sequence of commands triggered a 2-degree change in the spacecraft's antenna orientation. This prevented it from receiving commands or transmitting data back to Earth until NASA fixed the issue a week later.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/14/1956257/nasas-voyager-1-probe-in-interstellar-space-cant-phone-home?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-15T03:30:00+00:00", - "title": "Google DeepMind Uses LLM To Solve Unsolvable Math Problem", - "link": "https://science.slashdot.org/story/23/12/14/1933219/google-deepmind-uses-llm-to-solve-unsolvable-math-problem?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-15T03:30:00+00:00", - "content": "An anonymous reader quotes a report from MIT Technology Review: In a paper published in Nature today, the researchers say it is the first time a large language model has been used to discover a solution to a long-standing scientific puzzle -- producing verifiable and valuable new information that did not previously exist. \"It's not in the training data -- it wasn't even known,\" says coauthor Pushmeet Kohli, vice president of research at Google DeepMind. Large language models have a reputation for making things up, not for providing new facts. Google DeepMind's new tool, called FunSearch, could change that. It shows that they can indeed make discoveries -- if they are coaxed just so, and if you throw out the majority of what they come up with.\n \nFunSearch (so called because it searches for mathematical functions, not because it's fun) continues a streak of discoveries in fundamental math and computer science that DeepMind has made using AI. First Alpha Tensor found a way to speed up a calculation at the heart of many different kinds of code, beating a 50-year record. Then AlphaDev found ways to make key algorithms used trillions of times a day run faster. Yet those tools did not use large language models. Built on top of DeepMind's game-playing AI AlphaZero, both solved math problems by treating them as if they were puzzles in Go or chess. The trouble is that they are stuck in their lanes, says Bernardino Romera-Paredes, a researcher at the company who worked on both AlphaTensor and FunSearch: \"AlphaTensor is great at matrix multiplication, but basically nothing else.\" FunSearch takes a different tack. It combines a large language model called Codey, a version of Google's PaLM 2 that isfine-tuned on computer code, with other systems that reject incorrect or nonsensical answers and plug good ones back in.\n \nThe researchers started by sketching out the problem they wanted to solve in Python, a popular programming language. But they left out the lines in the program that would specify how to solve it. That is where FunSearch comes in. It gets Codey to fill in the blanks -- in effect, to suggest code that will solve the problem. A second algorithm then checks and scores what Codey comes up with. The best suggestions -- even if not yet correct -- are saved and given back to Codey, which tries to complete the program again. After a couple of million suggestions and a few dozen repetitions of the overall process -- which took a few days -- FunSearch was able to come up with code that produced a correct and previously unknown solution to the cap set problem, which involves finding the largest size of a certain type of set. Imagine plotting dots on graph paper. [...] To test its versatility, the researchers used FunSearch to approach another hard problem in math: the bin packing problem, which involves trying to pack items into as few bins as possible. This is important for a range of applications in computer science, from data center management to e-commerce. FunSearch came up with a way to solve it that's faster than human-devised ones.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from MIT Technology Review: In a paper published in Nature today, the researchers say it is the first time a large language model has been used to discover a solution to a long-standing scientific puzzle -- producing verifiable and valuable new information that did not previously exist. \"It's not in the training data -- it wasn't even known,\" says coauthor Pushmeet Kohli, vice president of research at Google DeepMind. Large language models have a reputation for making things up, not for providing new facts. Google DeepMind's new tool, called FunSearch, could change that. It shows that they can indeed make discoveries -- if they are coaxed just so, and if you throw out the majority of what they come up with.\n \nFunSearch (so called because it searches for mathematical functions, not because it's fun) continues a streak of discoveries in fundamental math and computer science that DeepMind has made using AI. First Alpha Tensor found a way to speed up a calculation at the heart of many different kinds of code, beating a 50-year record. Then AlphaDev found ways to make key algorithms used trillions of times a day run faster. Yet those tools did not use large language models. Built on top of DeepMind's game-playing AI AlphaZero, both solved math problems by treating them as if they were puzzles in Go or chess. The trouble is that they are stuck in their lanes, says Bernardino Romera-Paredes, a researcher at the company who worked on both AlphaTensor and FunSearch: \"AlphaTensor is great at matrix multiplication, but basically nothing else.\" FunSearch takes a different tack. It combines a large language model called Codey, a version of Google's PaLM 2 that isfine-tuned on computer code, with other systems that reject incorrect or nonsensical answers and plug good ones back in.\n \nThe researchers started by sketching out the problem they wanted to solve in Python, a popular programming language. But they left out the lines in the program that would specify how to solve it. That is where FunSearch comes in. It gets Codey to fill in the blanks -- in effect, to suggest code that will solve the problem. A second algorithm then checks and scores what Codey comes up with. The best suggestions -- even if not yet correct -- are saved and given back to Codey, which tries to complete the program again. After a couple of million suggestions and a few dozen repetitions of the overall process -- which took a few days -- FunSearch was able to come up with code that produced a correct and previously unknown solution to the cap set problem, which involves finding the largest size of a certain type of set. Imagine plotting dots on graph paper. [...] To test its versatility, the researchers used FunSearch to approach another hard problem in math: the bin packing problem, which involves trying to pack items into as few bins as possible. This is important for a range of applications in computer science, from data center management to e-commerce. FunSearch came up with a way to solve it that's faster than human-devised ones.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/14/1933219/google-deepmind-uses-llm-to-solve-unsolvable-math-problem?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T03:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-15T01:25:00+00:00", - "title": "Google Releases On-Device Diagnostics Tool, Repair Manuals For Pixel Phones", - "link": "https://hardware.slashdot.org/story/23/12/14/2356218/google-releases-on-device-diagnostics-tool-repair-manuals-for-pixel-phones?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-15T01:25:00+00:00", - "content": "Emma Roth reports via The Verge: Google is releasing a tool to help users diagnose problems with their Pixel phones. Users can launch the app by entering #*#7287#*# on the dial pad, allowing them to check whether their phone is working correctly before or after a repair. There are a bunch of diagnostic tools available within the app. While users can run a full diagnostic test to detect issues across the entire device, there are also options to run individual tests for physical defects and problems affecting the phone's display, sensors, and connectivity. The new tool is available on all Pixel phones in English.\n \nAside from the diagnostics app, Google is introducing redesigned repair manuals the company says are \"easier for technicians and DIYers to use.\" Users can download repair manuals from Google's website in English and French, but they're only available for the Pixel Fold, Pixel 8, and Pixel 8 Pro for now. Google says it will add repair manuals for previous and future devices \"in the coming months.\" There's also a new Repair Mode Google introduced earlier this month, which Pixel Phone owners can toggle on when their device is getting repaired. The feature is meant to protect users' private information while their phone is in the hands of a technician [...].

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Emma Roth reports via The Verge: Google is releasing a tool to help users diagnose problems with their Pixel phones. Users can launch the app by entering #*#7287#*# on the dial pad, allowing them to check whether their phone is working correctly before or after a repair. There are a bunch of diagnostic tools available within the app. While users can run a full diagnostic test to detect issues across the entire device, there are also options to run individual tests for physical defects and problems affecting the phone's display, sensors, and connectivity. The new tool is available on all Pixel phones in English.\n \nAside from the diagnostics app, Google is introducing redesigned repair manuals the company says are \"easier for technicians and DIYers to use.\" Users can download repair manuals from Google's website in English and French, but they're only available for the Pixel Fold, Pixel 8, and Pixel 8 Pro for now. Google says it will add repair manuals for previous and future devices \"in the coming months.\" There's also a new Repair Mode Google introduced earlier this month, which Pixel Phone owners can toggle on when their device is getting repaired. The feature is meant to protect users' private information while their phone is in the hands of a technician [...].\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/23/12/14/2356218/google-releases-on-device-diagnostics-tool-repair-manuals-for-pixel-phones?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T01:25:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-15T00:45:00+00:00", - "title": "Cheating Fears Over Chatbots Were Overblown, New Research Suggests", - "link": "https://news.slashdot.org/story/23/12/15/002256/cheating-fears-over-chatbots-were-overblown-new-research-suggests?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-15T00:45:00+00:00", - "content": "Natasha Singer reports via The New York Times: According to new research from Stanford University, the popularization of A.I. chatbots has not boosted overall cheating rates in schools (Warning: source may be paywalled; alternative source). In surveys this year of more than 40 U.S. high schools, some 60 to 70 percent of students said they had recently engaged in cheating -- about the same percent as in previous years, Stanford education researchers said. \"There was a panic that these A.I. models will allow a whole new way of doing something that could be construed as cheating,\" said Denise Pope, a senior lecturer at Stanford Graduate School of Education who has surveyed high school students for more than a decade through an education nonprofit she co-founded. But \"we're just not seeing the change in the data.\"\n \nChatGPT, developed by OpenAI in San Francisco, began to capture the public imagination late last year with its ability to fabricate human-sounding essays and emails. Almost immediately, classroom technology boosters started promising that A.I. tools like ChatGPT would revolutionize education. And critics began warning that such tools -- which liberally make stuff up -- would enable widespread cheating, and amplify misinformation, in schools. Now the Stanford research, along with a recent report from the Pew Research Center, are challenging the notion that A.I. chatbots are upending public schools.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Natasha Singer reports via The New York Times: According to new research from Stanford University, the popularization of A.I. chatbots has not boosted overall cheating rates in schools (Warning: source may be paywalled; alternative source). In surveys this year of more than 40 U.S. high schools, some 60 to 70 percent of students said they had recently engaged in cheating -- about the same percent as in previous years, Stanford education researchers said. \"There was a panic that these A.I. models will allow a whole new way of doing something that could be construed as cheating,\" said Denise Pope, a senior lecturer at Stanford Graduate School of Education who has surveyed high school students for more than a decade through an education nonprofit she co-founded. But \"we're just not seeing the change in the data.\"\n \nChatGPT, developed by OpenAI in San Francisco, began to capture the public imagination late last year with its ability to fabricate human-sounding essays and emails. Almost immediately, classroom technology boosters started promising that A.I. tools like ChatGPT would revolutionize education. And critics began warning that such tools -- which liberally make stuff up -- would enable widespread cheating, and amplify misinformation, in schools. Now the Stanford research, along with a recent report from the Pew Research Center, are challenging the notion that A.I. chatbots are upending public schools.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/23/12/15/002256/cheating-fears-over-chatbots-were-overblown-new-research-suggests?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T00:45:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-15T00:02:00+00:00", - "title": "Alphabet's 'Renew Home' Company Brings Power Grid Data To Your Smart Home", - "link": "https://hardware.slashdot.org/story/23/12/14/1938220/alphabets-renew-home-company-brings-power-grid-data-to-your-smart-home?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-15T00:02:00+00:00", - "content": "An anonymous reader quotes a report from Ars Technica: Google's parent company, Alphabet, is launching a new company called \"Renew Home.\" The new company will pull in some other projects from Nest and the rest of Alphabet to become a supposed one-stop shop for power savings and clean energy usage. The core concept is partnering with power companies to obtain data about the current condition of the power grid and using that data to change consumer habits. The new company is bankrolled by Sidewalk Infrastructure Partners (SIP), an Alphabet venture capital firm.\n \nThe first existing service getting pulled into Renew Home is Nest Renew. This service for Nest Thermostats uses power company data to tell consumers how their electricity is being generated and what it costs. That data lets your thermostat do things like automatically shift heating and cooling to times of day when energy is cheaper or cleaner, and shows various reports about the cleanness of the energy you've been using. (Nest's feature that lets utility companies remotely take control of your thermostat, Rush Hour Rewards, does not seem to be part of Renew Home.)\n \nAnother Alphabet service being pulled into Renew Home is OhmConnect, which is the same basic idea as Nest's grid data-power thermostat adjustments but for more than just your thermostat. OhmConnect is compatible with a very small list of smart devices, like Nest-rival Ecobee and Honeywell thermostats, TL-Link's \"Kasa\" smart home system, and Tesla vehicles. The backbone of the service appears to be the in-house \"OhmPlug\" smart outlet, which can monitor the energy usage of anything that plugs into the wall. By seeing that you've turned these smart devices during peak usage times, OhmConnect offers people rewards like gift cards or cash for not using power when the grid is at capacity.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Google's parent company, Alphabet, is launching a new company called \"Renew Home.\" The new company will pull in some other projects from Nest and the rest of Alphabet to become a supposed one-stop shop for power savings and clean energy usage. The core concept is partnering with power companies to obtain data about the current condition of the power grid and using that data to change consumer habits. The new company is bankrolled by Sidewalk Infrastructure Partners (SIP), an Alphabet venture capital firm.\n \nThe first existing service getting pulled into Renew Home is Nest Renew. This service for Nest Thermostats uses power company data to tell consumers how their electricity is being generated and what it costs. That data lets your thermostat do things like automatically shift heating and cooling to times of day when energy is cheaper or cleaner, and shows various reports about the cleanness of the energy you've been using. (Nest's feature that lets utility companies remotely take control of your thermostat, Rush Hour Rewards, does not seem to be part of Renew Home.)\n \nAnother Alphabet service being pulled into Renew Home is OhmConnect, which is the same basic idea as Nest's grid data-power thermostat adjustments but for more than just your thermostat. OhmConnect is compatible with a very small list of smart devices, like Nest-rival Ecobee and Honeywell thermostats, TL-Link's \"Kasa\" smart home system, and Tesla vehicles. The backbone of the service appears to be the in-house \"OhmPlug\" smart outlet, which can monitor the energy usage of anything that plugs into the wall. By seeing that you've turned these smart devices during peak usage times, OhmConnect offers people rewards like gift cards or cash for not using power when the grid is at capacity.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/23/12/14/1938220/alphabets-renew-home-company-brings-power-grid-data-to-your-smart-home?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T00:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-14T23:20:00+00:00", - "title": "Proton Mail Finally Gets a Desktop App For Encrypted Email and Calendar", - "link": "https://it.slashdot.org/story/23/12/14/1916258/proton-mail-finally-gets-a-desktop-app-for-encrypted-email-and-calendar?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-14T23:20:00+00:00", - "content": "Amrita Khalid reports via The Verge: Proton has released a desktop version of its Proton Mail app that will give users full access to both Proton Mail and Proton Calendar and (eventually) the ability to view your emails offline. The desktop app is available in beta is optimized for both Windows and macOS, and encrypts sent emails end-to-end just like with the browser version, according to the Swiss company, while offline access to emails will be available \"soon.\" [...] It's important to note that you'll still need internet access to both send and encrypt your emails on Proton. But the offline feature will let you view and draft emails while traveling, during a power outage, or any other situation where you don't have access to the internet.\n \nProton is also bringing encrypted auto-forwarding to paid users, both on its desktop and browser versions, though the encryption for forwards will only apply when the forwarded emails go to other Proton users. The company says it has made improvements to Proton Calendar, too, including a fully searchable web version. Not everyone will be able to access Proton's desktop app right away. Proton is restricting access to its paid \"Visionary\" tier for legacy users at first (though the company is reopening subscriptions to that tier through January 3rd, 2024). The plan is to make the desktop app available to all users in early 2024.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Amrita Khalid reports via The Verge: Proton has released a desktop version of its Proton Mail app that will give users full access to both Proton Mail and Proton Calendar and (eventually) the ability to view your emails offline. The desktop app is available in beta is optimized for both Windows and macOS, and encrypts sent emails end-to-end just like with the browser version, according to the Swiss company, while offline access to emails will be available \"soon.\" [...] It's important to note that you'll still need internet access to both send and encrypt your emails on Proton. But the offline feature will let you view and draft emails while traveling, during a power outage, or any other situation where you don't have access to the internet.\n \nProton is also bringing encrypted auto-forwarding to paid users, both on its desktop and browser versions, though the encryption for forwards will only apply when the forwarded emails go to other Proton users. The company says it has made improvements to Proton Calendar, too, including a fully searchable web version. Not everyone will be able to access Proton's desktop app right away. Proton is restricting access to its paid \"Visionary\" tier for legacy users at first (though the company is reopening subscriptions to that tier through January 3rd, 2024). The plan is to make the desktop app available to all users in early 2024.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/23/12/14/1916258/proton-mail-finally-gets-a-desktop-app-for-encrypted-email-and-calendar?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T23:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-14T22:40:00+00:00", - "title": "Threads Launches In the European Union", - "link": "https://tech.slashdot.org/story/23/12/14/1911233/threads-launches-in-the-european-union?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-14T22:40:00+00:00", - "content": "Meta CEO Mark Zuckerberg announced that Threads is now available to users in the European Union. \"Today we're opening Threads to more countries in Europe,\" wrote Zuckerberg in a post on the platform. \"Welcome everyone.\" MacRumors reports: The move comes five months after the social media network launched in most markets around the world, but remained unavailable to EU-based users due to regulatory hurdles. [...] In addition to creating a Threads profile for posting, users in the EU can also simply browse Threads without having an Instagram account, an option likely introduced to comply with legislation surrounding online services.\n \nThe expansion into a market of 448 million people should see Threads' user numbers get a decent boost. Meta CEO Mark Zuckerberg said on a company earnings call in October that Threads now has \"just under\" 100 million monthly users. Since its launch earlier this year it has gained a web app, an ability to search for posts, and a post editing feature.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Meta CEO Mark Zuckerberg announced that Threads is now available to users in the European Union. \"Today we're opening Threads to more countries in Europe,\" wrote Zuckerberg in a post on the platform. \"Welcome everyone.\" MacRumors reports: The move comes five months after the social media network launched in most markets around the world, but remained unavailable to EU-based users due to regulatory hurdles. [...] In addition to creating a Threads profile for posting, users in the EU can also simply browse Threads without having an Instagram account, an option likely introduced to comply with legislation surrounding online services.\n \nThe expansion into a market of 448 million people should see Threads' user numbers get a decent boost. Meta CEO Mark Zuckerberg said on a company earnings call in October that Threads now has \"just under\" 100 million monthly users. Since its launch earlier this year it has gained a web app, an ability to search for posts, and a post editing feature.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/14/1911233/threads-launches-in-the-european-union?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T22:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-12-14T22:00:00+00:00", - "title": "Supply Chain Attack Targeting Ledger Crypto Wallet Leaves Users Hacked", - "link": "https://it.slashdot.org/story/23/12/14/1858249/supply-chain-attack-targeting-ledger-crypto-wallet-leaves-users-hacked?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-12-14T22:00:00+00:00", - "content": "An anonymous reader quotes a report from TechCrunch: Hackers compromised the code behind a crypto protocol used by multiple web3 applications and services, the software maker Ledger said on Thursday. Ledger, a company that makes a widely used and popular crypto hardware and software wallet, among other products, announced on X (previously Twitter) that someone had pushed out a \"malicious version\" of its Ledger Connect Kit, a library that decentralized apps (dApps) made by other companies and projects use to connect to the Ledger wallet service.\n \n\"A genuine version is being pushed to replace the malicious file now. Do not interact with any dApps for the moment. We will keep you informed as the situation evolves,\" Ledger wrote. Soon after, Ledger posted an update saying that the hackers had replaced the genuine version of its software some six hours earlier, and that the company was investigating the incident and would \"provide a comprehensive report as soon as it's ready.\" After this story was published, Ledger spokesperson Phillip Costigan shared more details about the hack with TechCrunch and on X.\n \nCostigan said that a former Ledger employee was victim of a phishing attack on Thursday, which gave the hackers access to their former employee's NPMJS account, which is a software registry that was acquired by GitHub. From there, the hackers published a malicious version of the Ledger Connect Kit. \"The malicious code used a rogue WalletConnect project to reroute funds to a hacker wallet,\" Costigan said. Then, Ledger deployed a fix within 40 minutes of the company becoming aware of the hack. The malicious file, however, was live for round 5 hours, but \"the window where funds were drained was limited to a period of less than two hours,\" according to Costigan. Ledger also \"coordinated\" with WalletConnect which \"quickly disabled the the rogue project,\" essentially stopping the attack, according to Costigan. Costigan also said Ledger pushed out a genuine software update that is \"safe to use.\" \"We are actively talking with customers whose funds might have been affected, and working proactively to help those individuals at this time,\" the Ledger spokeperson said, adding that the company believes it has identified the hackers' wallet.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Hackers compromised the code behind a crypto protocol used by multiple web3 applications and services, the software maker Ledger said on Thursday. Ledger, a company that makes a widely used and popular crypto hardware and software wallet, among other products, announced on X (previously Twitter) that someone had pushed out a \"malicious version\" of its Ledger Connect Kit, a library that decentralized apps (dApps) made by other companies and projects use to connect to the Ledger wallet service.\n \n\"A genuine version is being pushed to replace the malicious file now. Do not interact with any dApps for the moment. We will keep you informed as the situation evolves,\" Ledger wrote. Soon after, Ledger posted an update saying that the hackers had replaced the genuine version of its software some six hours earlier, and that the company was investigating the incident and would \"provide a comprehensive report as soon as it's ready.\" After this story was published, Ledger spokesperson Phillip Costigan shared more details about the hack with TechCrunch and on X.\n \nCostigan said that a former Ledger employee was victim of a phishing attack on Thursday, which gave the hackers access to their former employee's NPMJS account, which is a software registry that was acquired by GitHub. From there, the hackers published a malicious version of the Ledger Connect Kit. \"The malicious code used a rogue WalletConnect project to reroute funds to a hacker wallet,\" Costigan said. Then, Ledger deployed a fix within 40 minutes of the company becoming aware of the hack. The malicious file, however, was live for round 5 hours, but \"the window where funds were drained was limited to a period of less than two hours,\" according to Costigan. Ledger also \"coordinated\" with WalletConnect which \"quickly disabled the the rogue project,\" essentially stopping the attack, according to Costigan. Costigan also said Ledger pushed out a genuine software update that is \"safe to use.\" \"We are actively talking with customers whose funds might have been affected, and working proactively to help those individuals at this time,\" the Ledger spokeperson said, adding that the company believes it has identified the hackers' wallet.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/23/12/14/1858249/supply-chain-attack-targeting-ledger-crypto-wallet-leaves-users-hacked?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T22:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-14T21:20:00+00:00", - "title": "FCC Floats Ban on Cable TV 'Junk Fees' That Make It Hard To Ditch Contracts", - "link": "https://entertainment.slashdot.org/story/23/12/14/1811230/fcc-floats-ban-on-cable-tv-junk-fees-that-make-it-hard-to-ditch-contracts?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-14T21:20:00+00:00", - "content": "The Federal Communications Commission has taken a step toward prohibiting early termination fees charged by cable and satellite TV providers. From a report: If given final approval, the FCC action would also require cable and satellite providers to provide a prorated credit or rebate to customers who cancel before a billing period ends. The new rules are being floated in a Notice of Proposed Rulemaking (NPRM) that the FCC voted to approve this week in a 3-2 vote, with both Republicans dissenting. The NPRM seeks public comment on the proposed rules and could lead to a final vote in a few months or so. \n\n\"Today's action proposes to adopt customer service protections that prohibit cable operators and DBS (Direct Broadcast Satellite) providers from imposing a fee for the early termination of a cable or DBS video service contract,\" the FCC said. \"Additionally, the NPRM recommends the adoption of customer service protections to require cable and DBS providers to grant subscribers a prorated credit or rebate for the remaining whole days in a monthly or periodic billing cycle after the subscriber cancels service.\" \n\nFCC Chairwoman Jessica Rosenworcel said, \"Consumers are tired of these junk fees. They now have more choices when it comes to video content. But these friction-filled tactics to keep us subscribing to our current providers are aggravating and unfair. So today we kick off a rulemaking to put an end to these practices.\" Cable lobby group NCTA-The Internet & Television Association opposes the plan and said it will submit comments to support \"consumer choice and competitive parity.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The Federal Communications Commission has taken a step toward prohibiting early termination fees charged by cable and satellite TV providers. From a report: If given final approval, the FCC action would also require cable and satellite providers to provide a prorated credit or rebate to customers who cancel before a billing period ends. The new rules are being floated in a Notice of Proposed Rulemaking (NPRM) that the FCC voted to approve this week in a 3-2 vote, with both Republicans dissenting. The NPRM seeks public comment on the proposed rules and could lead to a final vote in a few months or so. \n\n\"Today's action proposes to adopt customer service protections that prohibit cable operators and DBS (Direct Broadcast Satellite) providers from imposing a fee for the early termination of a cable or DBS video service contract,\" the FCC said. \"Additionally, the NPRM recommends the adoption of customer service protections to require cable and DBS providers to grant subscribers a prorated credit or rebate for the remaining whole days in a monthly or periodic billing cycle after the subscriber cancels service.\" \n\nFCC Chairwoman Jessica Rosenworcel said, \"Consumers are tired of these junk fees. They now have more choices when it comes to video content. But these friction-filled tactics to keep us subscribing to our current providers are aggravating and unfair. So today we kick off a rulemaking to put an end to these practices.\" Cable lobby group NCTA-The Internet & Television Association opposes the plan and said it will submit comments to support \"consumer choice and competitive parity.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://entertainment.slashdot.org/story/23/12/14/1811230/fcc-floats-ban-on-cable-tv-junk-fees-that-make-it-hard-to-ditch-contracts?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T21:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-14T20:40:00+00:00", - "title": "Amazon's Internet Satellites Will Use Space Lasers To Transmit Data", - "link": "https://tech.slashdot.org/story/23/12/14/1719214/amazons-internet-satellites-will-use-space-lasers-to-transmit-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-14T20:40:00+00:00", - "content": "Amazon, which launched its first internet satellites in October, says it will use space lasers to ensure reliable broadband coverage even in the middle of the ocean. From a report: The technology will enable a satellite to deliver data to a cruise ship, say, even if the spacecraft isn't in range of an Amazon ground station connected to the internet. Instead, the laser will pass the request on to another satellite that has a clear view of a ground station. \n\nThe two prototype satellites successfully tested the technology, which is officially called optical inter-satellite links, Amazon said on Thursday. \"If you're going to serve maritime customers, air customers, you have got to be able to get data up to your satellites,\" said Rajeev Badyal, who leads Amazon's Project Kuiper internet-from-space initiative. \"And in the middle of the ocean, it's difficult if not impossible\" to install ground stations.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Amazon, which launched its first internet satellites in October, says it will use space lasers to ensure reliable broadband coverage even in the middle of the ocean. From a report: The technology will enable a satellite to deliver data to a cruise ship, say, even if the spacecraft isn't in range of an Amazon ground station connected to the internet. Instead, the laser will pass the request on to another satellite that has a clear view of a ground station. \n\nThe two prototype satellites successfully tested the technology, which is officially called optical inter-satellite links, Amazon said on Thursday. \"If you're going to serve maritime customers, air customers, you have got to be able to get data up to your satellites,\" said Rajeev Badyal, who leads Amazon's Project Kuiper internet-from-space initiative. \"And in the middle of the ocean, it's difficult if not impossible\" to install ground stations.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/14/1719214/amazons-internet-satellites-will-use-space-lasers-to-transmit-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T20:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-14T20:00:00+00:00", - "title": "Google Will Turn Off Third-Party Tracking for Some Chrome Users Soon", - "link": "https://tech.slashdot.org/story/23/12/14/177217/google-will-turn-off-third-party-tracking-for-some-chrome-users-soon?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-14T20:00:00+00:00", - "content": "Google is about to launch its grand plan to block third-party cookies in Chrome that many websites use to track your activity across the web for profit. From a report: Starting on January 4th, Google will start testing its new Tracking Protection feature that will eventually restrict website access to third-party cookies by default. It will come to a very small subset of Chrome users at the start, specifically to one percent of users globally. Afterward, Google plans to phase out the use of third-party cookies for all users in the second half of 2024. \n\nIf you're randomly selected to try Tracking Protection, Google will notify you when opening Chrome on desktop or Android. If there are issues detected by Chrome while you're browsing, a prompt will appear asking if you'd like to temporarily re-enable third-party cookies for the site.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google is about to launch its grand plan to block third-party cookies in Chrome that many websites use to track your activity across the web for profit. From a report: Starting on January 4th, Google will start testing its new Tracking Protection feature that will eventually restrict website access to third-party cookies by default. It will come to a very small subset of Chrome users at the start, specifically to one percent of users globally. Afterward, Google plans to phase out the use of third-party cookies for all users in the second half of 2024. \n\nIf you're randomly selected to try Tracking Protection, Google will notify you when opening Chrome on desktop or Android. If there are issues detected by Chrome while you're browsing, a prompt will appear asking if you'd like to temporarily re-enable third-party cookies for the site.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/12/14/177217/google-will-turn-off-third-party-tracking-for-some-chrome-users-soon?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T20:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-14T19:20:00+00:00", - "title": "Intel Unveils New AI Chip To Compete With Nvidia and AMD", - "link": "https://hardware.slashdot.org/story/23/12/14/1723204/intel-unveils-new-ai-chip-to-compete-with-nvidia-and-amd?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-14T19:20:00+00:00", - "content": "Intel unveiled new computer chips on Thursday, including Gaudi3, an AI chip for generative AI software. Gaudi3 will launch next year and will compete with rival chips from Nvidia and AMD that power big and power-hungry AI models. From a report: The most prominent AI models, like OpenAI's ChatGPT, run on Nvidia GPUs in the cloud. It's one reason Nvidia stock has been up nearly 230% year-to-date while Intel shares are up 68%. And it's why companies like AMD and, now Intel, have announced chips that they hope will attract AI companies away from Nvidia's dominant position in the market. \n\nWhile the company was light on details, Gaudi3 will compete with Nvidia's H100, the main choice among companies that build huge farms of the chips to power AI applications, and AMD's forthcoming MI300X, when it starts shipping to customers in 2024. Intel has been building Gaudi chips since 2019, when it bought a chip developer called Habana Labs.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Intel unveiled new computer chips on Thursday, including Gaudi3, an AI chip for generative AI software. Gaudi3 will launch next year and will compete with rival chips from Nvidia and AMD that power big and power-hungry AI models. From a report: The most prominent AI models, like OpenAI's ChatGPT, run on Nvidia GPUs in the cloud. It's one reason Nvidia stock has been up nearly 230% year-to-date while Intel shares are up 68%. And it's why companies like AMD and, now Intel, have announced chips that they hope will attract AI companies away from Nvidia's dominant position in the market. \n\nWhile the company was light on details, Gaudi3 will compete with Nvidia's H100, the main choice among companies that build huge farms of the chips to power AI applications, and AMD's forthcoming MI300X, when it starts shipping to customers in 2024. Intel has been building Gaudi chips since 2019, when it bought a chip developer called Habana Labs.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/23/12/14/1723204/intel-unveils-new-ai-chip-to-compete-with-nvidia-and-amd?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-14T19:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-15T14:40:00+00:00", - "title": "Netflix's Big Data Dump Shows Just OK TV Is Here To Stay", - "link": "https://entertainment.slashdot.org/story/23/12/15/1426248/netflixs-big-data-dump-shows-just-ok-tv-is-here-to-stay?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-15T14:40:00+00:00", - "content": "After years of withholding viewership data, Netflix earlier this week released statistics showing its top viewed titles from January-June 2023. The winner with over 800 million hours watched was The Night Agent. Though the steamy, soapy Sex/Life scored over 120 million hours, the warm coming-of-age series Sex Education had under 30 million. \n\nNetflix claimed \"success comes in all shapes and sizes,\" but co-CEO Ted Sarandos admitted the data guides business decisions. So while Netflix says stats aren't everything, pouring resources into sure bets like The Night Agent seems likely as competition grows post-Hot Strike Summer. The show is what some call \"just OK TV\" -- not offensive, not groundbreaking, but reliably watched. Wired adds: This era of Just OK also comes as Netflix captures the King of Reality TV throne. Shows like Love Is Blind and Selling Sunset are becoming cultural juggernauts, and the streamer shows no sign of slowing down, especially now that the Squid Game spinoff, Squid Game: The Challenge, is getting major traction. \n\nTrue, Netflix is still putting out artful content. A show like Wednesday, for example, had more than 507 million hours viewed and is also currently up for 12 Emmys. Netflix, on the whole, is nominated for a whopping 103 Emmys. That's impressive, but also, it's down from the 160 nods it got at its peak in 2020 and fewer than the 127 nabbed by (HBO) Max, which crushed thanks to shows like The White Lotus, The Last of Us, and Succession. You see where this is going. Netflix likes to tout its prestige shows, but also has to keep its paying customers, who left in droves in 2022 before partly coming back as Netflix cracked down on password sharing. To that end, it behooves Netflix to make more Ginny & Georgia, more Night Agent, more You. One analysis of the data found that the most-watched film, according to Netflix's data dump, was the Jennifer Lopez vehicle The Mother, which accumulated about 250 million hours watched in six months. Variety puts that level of engagement up there with Barbie and The Super Mario Bros. Movie. Not a bad showing.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "After years of withholding viewership data, Netflix earlier this week released statistics showing its top viewed titles from January-June 2023. The winner with over 800 million hours watched was The Night Agent. Though the steamy, soapy Sex/Life scored over 120 million hours, the warm coming-of-age series Sex Education had under 30 million. \n\nNetflix claimed \"success comes in all shapes and sizes,\" but co-CEO Ted Sarandos admitted the data guides business decisions. So while Netflix says stats aren't everything, pouring resources into sure bets like The Night Agent seems likely as competition grows post-Hot Strike Summer. The show is what some call \"just OK TV\" -- not offensive, not groundbreaking, but reliably watched. Wired adds: This era of Just OK also comes as Netflix captures the King of Reality TV throne. Shows like Love Is Blind and Selling Sunset are becoming cultural juggernauts, and the streamer shows no sign of slowing down, especially now that the Squid Game spinoff, Squid Game: The Challenge, is getting major traction. \n\nTrue, Netflix is still putting out artful content. A show like Wednesday, for example, had more than 507 million hours viewed and is also currently up for 12 Emmys. Netflix, on the whole, is nominated for a whopping 103 Emmys. That's impressive, but also, it's down from the 160 nods it got at its peak in 2020 and fewer than the 127 nabbed by (HBO) Max, which crushed thanks to shows like The White Lotus, The Last of Us, and Succession. You see where this is going. Netflix likes to tout its prestige shows, but also has to keep its paying customers, who left in droves in 2022 before partly coming back as Netflix cracked down on password sharing. To that end, it behooves Netflix to make more Ginny & Georgia, more Night Agent, more You. One analysis of the data found that the most-watched film, according to Netflix's data dump, was the Jennifer Lopez vehicle The Mother, which accumulated about 250 million hours watched in six months. Variety puts that level of engagement up there with Barbie and The Super Mario Bros. Movie. Not a bad showing.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://entertainment.slashdot.org/story/23/12/15/1426248/netflixs-big-data-dump-shows-just-ok-tv-is-here-to-stay?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T14:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-15T15:20:00+00:00", - "title": "Jeff Bezos Says Blue Origin Needs To Be 'Much Faster'", - "link": "https://science.slashdot.org/story/23/12/15/1450216/jeff-bezos-says-blue-origin-needs-to-be-much-faster?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-15T15:20:00+00:00", - "content": "In an interview with Lex Fridman, Jeff Bezos candidly acknowledged Blue Origin's slow progress (compared to SpaceX). From a report: \"Blue Origin needs to be much faster, and it's one of the reasons that I left my role as the CEO of Amazon a couple of years ago,\" he said. \"I wanted to come in, and Blue Origin needs me right now. Adding some energy, some sense of urgency. We need to move much faster. And we're going to.\" \n\nHow is Blue Origin going to speed up? \n\n\"We're going to become the world's most decisive company across any industry,\" he said. \"We're going to get really good at taking appropriate technology risks, making those decisions quickly. You know, being bold on those things. And having the right culture that supports that. You need people to be ambitious, technically ambitious. If there are five ways to do something, we'll study them, but let's go through them very quickly and make a decision. We can always change our mind.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "In an interview with Lex Fridman, Jeff Bezos candidly acknowledged Blue Origin's slow progress (compared to SpaceX). From a report: \"Blue Origin needs to be much faster, and it's one of the reasons that I left my role as the CEO of Amazon a couple of years ago,\" he said. \"I wanted to come in, and Blue Origin needs me right now. Adding some energy, some sense of urgency. We need to move much faster. And we're going to.\" \n\nHow is Blue Origin going to speed up? \n\n\"We're going to become the world's most decisive company across any industry,\" he said. \"We're going to get really good at taking appropriate technology risks, making those decisions quickly. You know, being bold on those things. And having the right culture that supports that. You need people to be ambitious, technically ambitious. If there are five ways to do something, we'll study them, but let's go through them very quickly and make a decision. We can always change our mind.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/15/1450216/jeff-bezos-says-blue-origin-needs-to-be-much-faster?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T15:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-15T16:00:00+00:00", - "title": "Apple Plans OLED Displays for MacBooks, Evaluates Foldable iPads: Report", - "link": "https://apple.slashdot.org/story/23/12/15/1456242/apple-plans-oled-displays-for-macbooks-evaluates-foldable-ipads-report?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-15T16:00:00+00:00", - "content": "Apple will expand its use of advanced OLED screens to iPads and MacBooks and is considering eventually introducing foldable tablets, a move set to further shake up the $150 billion display industry as it shifts away from traditional LCD screens, Asian news outlet Nikkei reported Friday. From the report: OLED, or organic light-emitting diode, displays are already used in most premium smartphones, including iPhones. Apple plans to deploy the tech in its high-end iPads next year, multiple tech industry executives told Nikkei Asia. An OLED MacBook model is also under development for production in the second half of 2025 at the earliest, the people said. The growing penetration of OLED is a significant win for Samsung Display and LG Display of South Korea and China's BOE Technology Holding, which have all bet heavily on this expensive display technology. \n\nOn the flip side, it could be a blow to display makers that do not have much presence in this segment, including JDI and Sharp of Japan, and AUO and Innolux of Taiwan. Apple has also started evaluating the possibility of making foldable iPads after it deploys the flexible OLED screens on the tablet, but it does not have a concrete timeline for doing so, according to two sources familiar with the matter. The iPhone maker is not the first company to adopt OLED displays for tablets. Huawei, for instance, has been a significant driver of this trend, which in turn has helped strengthen the Chinese display supply chain.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Apple will expand its use of advanced OLED screens to iPads and MacBooks and is considering eventually introducing foldable tablets, a move set to further shake up the $150 billion display industry as it shifts away from traditional LCD screens, Asian news outlet Nikkei reported Friday. From the report: OLED, or organic light-emitting diode, displays are already used in most premium smartphones, including iPhones. Apple plans to deploy the tech in its high-end iPads next year, multiple tech industry executives told Nikkei Asia. An OLED MacBook model is also under development for production in the second half of 2025 at the earliest, the people said. The growing penetration of OLED is a significant win for Samsung Display and LG Display of South Korea and China's BOE Technology Holding, which have all bet heavily on this expensive display technology. \n\nOn the flip side, it could be a blow to display makers that do not have much presence in this segment, including JDI and Sharp of Japan, and AUO and Innolux of Taiwan. Apple has also started evaluating the possibility of making foldable iPads after it deploys the flexible OLED screens on the tablet, but it does not have a concrete timeline for doing so, according to two sources familiar with the matter. The iPhone maker is not the first company to adopt OLED displays for tablets. Huawei, for instance, has been a significant driver of this trend, which in turn has helped strengthen the Chinese display supply chain.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://apple.slashdot.org/story/23/12/15/1456242/apple-plans-oled-displays-for-macbooks-evaluates-foldable-ipads-report?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T16:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-15T17:10:00+00:00", - "title": "The Last Of Us Online Is Officially Canceled", - "link": "https://games.slashdot.org/story/23/12/15/1710207/the-last-of-us-online-is-officially-canceled?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-15T17:10:00+00:00", - "content": "Sony Group's Naughty Dog studio has cancelled an online version of its popular console game The Last of Us. From a report: Naughty Dog announced today that the multiplayer spin-off of the hit series is no longer in development, citing concerns about managing ongoing content for a live-service game while still trying to produce the single-player blockbusters the PlayStation studio is famous for. \"We realize many of you have been anticipating news around the project that we've been calling The Last of Us Online,\" Naughty Dog wrote in an update. \n\n\"There's no easy way to say this: We've made the incredibly difficult decision to stop development on that game.\" The studio said that as production on the project ramped up, it became clear that \"we'd have to put all our studio resources behind supporting post launch content for years to come, severely impacting development on future single-player games.\" The choices were apparently between becoming a \"solely live-service games studio\" in the mold of modern day Bungie, which makes Destiny 2, or \"continue to focus on single-player narrative games that have defined Naughty Dog's heritage.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Sony Group's Naughty Dog studio has cancelled an online version of its popular console game The Last of Us. From a report: Naughty Dog announced today that the multiplayer spin-off of the hit series is no longer in development, citing concerns about managing ongoing content for a live-service game while still trying to produce the single-player blockbusters the PlayStation studio is famous for. \"We realize many of you have been anticipating news around the project that we've been calling The Last of Us Online,\" Naughty Dog wrote in an update. \n\n\"There's no easy way to say this: We've made the incredibly difficult decision to stop development on that game.\" The studio said that as production on the project ramped up, it became clear that \"we'd have to put all our studio resources behind supporting post launch content for years to come, severely impacting development on future single-player games.\" The choices were apparently between becoming a \"solely live-service games studio\" in the mold of modern day Bungie, which makes Destiny 2, or \"continue to focus on single-player narrative games that have defined Naughty Dog's heritage.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/23/12/15/1710207/the-last-of-us-online-is-officially-canceled?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T17:10:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-15T16:40:00+00:00", - "title": "Stop Planting Trees, Says Guy Who Inspired World to Plant a Trillion Trees", - "link": "https://science.slashdot.org/story/23/12/15/1510243/stop-planting-trees-says-guy-who-inspired-world-to-plant-a-trillion-trees?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-15T16:40:00+00:00", - "content": "In a cavernous theater lit up with the green shapes of camels and palms at COP28 in Dubai, ecologist Thomas Crowther, former chief scientific adviser for the United Nations' Trillion Trees Campaign, was doing something he never would have expected a few years ago: begging environmental ministers to stop planting so many trees. From a report: Mass plantations are not the environmental solution they're purported to be, Crowther argued when he took the floor on December 9 for one of the summit's \"Nature Day\" events. The potential of newly created forests to draw down carbon is often overstated. They can be harmful to biodiversity. Above all, they are really damaging when used, as they often are, as avoidance offsets-- \"as an excuse to avoid cutting emissions,\" Crowther said. \n\nThe popularity of planting new trees is a problem -- at least partly -- of Crowther's own making. In 2019, his lab at ETH Zurich found that the Earth had room for an additional 1.2 trillion trees, which, the lab's research suggested, could suck down as much as two-thirds of the carbon that humans have historically emitted into the atmosphere. \"This highlights global tree restoration as our most effective climate change solution to date,\" the study said. Crowther subsequently gave dozens of interviews to that effect. This seemingly easy climate solution sparked a tree-planting craze by companies and leaders eager to burnish their green credentials without actually cutting their emissions, from Shell to Donald Trump. It also provoked a squall of criticism from scientists, who argued that the Crowther study had vastly overestimated the land suitable for forest restoration and the amount of carbon it could draw down. (The study authors later corrected the paper to say tree restoration was only \"one of the most effective\" solutions, and could suck down at most one-third of the atmospheric carbon, with large uncertainties.) \n\nCrowther, who says his message was misinterpreted, put out a more nuanced paper last month, which shows that preserving existing forests can have a greater climate impact than planting trees. He then brought the results to COP28 to \"kill greenwashing\" of the kind that his previous study seemed to encourage -- that is, using unreliable evidence on the benefits of planting trees as an excuse to keep on emitting carbon. \"Killing greenwashing doesn't mean stop investing in nature,\" he says. \"It means doing it right. It means distributing wealth to the Indigenous populations and farmers and communities who are living with biodiversity.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "In a cavernous theater lit up with the green shapes of camels and palms at COP28 in Dubai, ecologist Thomas Crowther, former chief scientific adviser for the United Nations' Trillion Trees Campaign, was doing something he never would have expected a few years ago: begging environmental ministers to stop planting so many trees. From a report: Mass plantations are not the environmental solution they're purported to be, Crowther argued when he took the floor on December 9 for one of the summit's \"Nature Day\" events. The potential of newly created forests to draw down carbon is often overstated. They can be harmful to biodiversity. Above all, they are really damaging when used, as they often are, as avoidance offsets-- \"as an excuse to avoid cutting emissions,\" Crowther said. \n\nThe popularity of planting new trees is a problem -- at least partly -- of Crowther's own making. In 2019, his lab at ETH Zurich found that the Earth had room for an additional 1.2 trillion trees, which, the lab's research suggested, could suck down as much as two-thirds of the carbon that humans have historically emitted into the atmosphere. \"This highlights global tree restoration as our most effective climate change solution to date,\" the study said. Crowther subsequently gave dozens of interviews to that effect. This seemingly easy climate solution sparked a tree-planting craze by companies and leaders eager to burnish their green credentials without actually cutting their emissions, from Shell to Donald Trump. It also provoked a squall of criticism from scientists, who argued that the Crowther study had vastly overestimated the land suitable for forest restoration and the amount of carbon it could draw down. (The study authors later corrected the paper to say tree restoration was only \"one of the most effective\" solutions, and could suck down at most one-third of the atmospheric carbon, with large uncertainties.) \n\nCrowther, who says his message was misinterpreted, put out a more nuanced paper last month, which shows that preserving existing forests can have a greater climate impact than planting trees. He then brought the results to COP28 to \"kill greenwashing\" of the kind that his previous study seemed to encourage -- that is, using unreliable evidence on the benefits of planting trees as an excuse to keep on emitting carbon. \"Killing greenwashing doesn't mean stop investing in nature,\" he says. \"It means doing it right. It means distributing wealth to the Indigenous populations and farmers and communities who are living with biodiversity.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/15/1510243/stop-planting-trees-says-guy-who-inspired-world-to-plant-a-trillion-trees?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T16:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-12-15T18:00:00+00:00", - "title": "The Biggest Problem With Lab-Grown Chicken Is Growing the Chicken", - "link": "https://science.slashdot.org/story/23/12/15/1657236/the-biggest-problem-with-lab-grown-chicken-is-growing-the-chicken?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-12-15T18:00:00+00:00", - "content": "Ten years ago, a Dutch scientist unveiled a $330,000 lab-grown hamburger made from cow cells grown in petri dishes. It took six weeks to culture the patty. A chef cooked it onstage as journalists watched. Reactions ranged from \"unpleasant\" to \"beeflike.\" The scientist expected supermarket sales in a decade. His company and others have since raised over $2 billion but have little to show, only recently making one pound of chicken monthly. Despite bold promises of mass production, low emissions, and better nutrition, commercial viability remains elusive. Bloomberg Business: The company [Upside Foods], in a letter from its attorney to Bloomberg Businessweek, says plans for scaling up have been an evolution saddled with \"realities and complexities of doing something that has never been done before. Innovation rarely happens in a straight and continuous line.\" \n\nThe dream is moist, meaty flesh self-multiplying ad infinitum in high-tech, stainless steel cell-growing chambers. But according to internal company documentation and eight former employees, most of whom requested anonymity because they don't have permission to discuss confidential information, Upside at the moment is actually growing just minuscule numbers of chicken skin-type cells in small plastic bottles, then scraping them out gram by gram to compress and mold them into a single forkful of flesh. This labor-intensive chicken has higher levels of cholesterol and lead than the real thing, publicly available company documentation shows. Even if that sounds remotely desirable, some scientists say the whole energy-intensive endeavor may actually be worse for the environment, especially with chicken, which has the smallest carbon footprint of anything at the local butcher. All of which points to this question: Why exactly are we chasing lab-grown chicken?[...]

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Ten years ago, a Dutch scientist unveiled a $330,000 lab-grown hamburger made from cow cells grown in petri dishes. It took six weeks to culture the patty. A chef cooked it onstage as journalists watched. Reactions ranged from \"unpleasant\" to \"beeflike.\" The scientist expected supermarket sales in a decade. His company and others have since raised over $2 billion but have little to show, only recently making one pound of chicken monthly. Despite bold promises of mass production, low emissions, and better nutrition, commercial viability remains elusive. Bloomberg Business: The company [Upside Foods], in a letter from its attorney to Bloomberg Businessweek, says plans for scaling up have been an evolution saddled with \"realities and complexities of doing something that has never been done before. Innovation rarely happens in a straight and continuous line.\" \n\nThe dream is moist, meaty flesh self-multiplying ad infinitum in high-tech, stainless steel cell-growing chambers. But according to internal company documentation and eight former employees, most of whom requested anonymity because they don't have permission to discuss confidential information, Upside at the moment is actually growing just minuscule numbers of chicken skin-type cells in small plastic bottles, then scraping them out gram by gram to compress and mold them into a single forkful of flesh. This labor-intensive chicken has higher levels of cholesterol and lead than the real thing, publicly available company documentation shows. Even if that sounds remotely desirable, some scientists say the whole energy-intensive endeavor may actually be worse for the environment, especially with chicken, which has the smallest carbon footprint of anything at the local butcher. All of which points to this question: Why exactly are we chasing lab-grown chicken?[...]\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/12/15/1657236/the-biggest-problem-with-lab-grown-chicken-is-growing-the-chicken?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-12-15T18:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T10:00:00+00:00", - "title": "Starlink Launches First 'Cellphone Towers In Space' For Use with LTE Phones", - "link": "https://tech.slashdot.org/story/24/01/04/0143227/starlink-launches-first-cellphone-towers-in-space-for-use-with-lte-phones?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T10:00:00+00:00", - "content": "SpaceX launched a total of 21 satellites on Tuesday night, including \"the first six Starlink satellites with Direct to Cell capabilities that enable mobile network operators around the world to provide seamless global access to texting, calling, and browsing wherever you may be on land, lakes, or coastal waters without changing hardware or firmware. The enhanced Starlink satellites have an advanced modem that acts as a cellphone tower in space, eliminating dead zones with network integration similar to a standard roaming partner,\" the company said. Ars Technica reports: Besides T-Mobile in the US, several carriers in other countries have signed up to use the direct-to-cell satellites. SpaceX said the other carriers are Rogers in Canada, KDDI in Japan, Optus in Australia, One NZ in New Zealand, Salt in Switzerland, and Entel in Chile and Peru. While SpaceX CEO Elon Musk wrote that the satellites will \"allow for mobile phone connectivity anywhere on Earth,\" he also described a significant bandwidth limit. \"Note, this only supports ~7Mb per beam and the beams are very big, so while this is a great solution for locations with no cellular connectivity, it is not meaningfully competitive with existing terrestrial cellular networks,\" Musk wrote.\n \nStarlink's direct-to-cell website says the service will provide text messaging only when it becomes available in 2024, with voice and data service beginning sometime in 2025. Starlink's low Earth orbit satellites will work with standard LTE phones, unlike earlier services that required phones specifically built for satellite use. SpaceX's direct-to-cell satellites will also connect with Internet of Things (IoT) devices in 2025, the company says.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "SpaceX launched a total of 21 satellites on Tuesday night, including \"the first six Starlink satellites with Direct to Cell capabilities that enable mobile network operators around the world to provide seamless global access to texting, calling, and browsing wherever you may be on land, lakes, or coastal waters without changing hardware or firmware. The enhanced Starlink satellites have an advanced modem that acts as a cellphone tower in space, eliminating dead zones with network integration similar to a standard roaming partner,\" the company said. Ars Technica reports: Besides T-Mobile in the US, several carriers in other countries have signed up to use the direct-to-cell satellites. SpaceX said the other carriers are Rogers in Canada, KDDI in Japan, Optus in Australia, One NZ in New Zealand, Salt in Switzerland, and Entel in Chile and Peru. While SpaceX CEO Elon Musk wrote that the satellites will \"allow for mobile phone connectivity anywhere on Earth,\" he also described a significant bandwidth limit. \"Note, this only supports ~7Mb per beam and the beams are very big, so while this is a great solution for locations with no cellular connectivity, it is not meaningfully competitive with existing terrestrial cellular networks,\" Musk wrote.\n \nStarlink's direct-to-cell website says the service will provide text messaging only when it becomes available in 2024, with voice and data service beginning sometime in 2025. Starlink's low Earth orbit satellites will work with standard LTE phones, unlike earlier services that required phones specifically built for satellite use. SpaceX's direct-to-cell satellites will also connect with Internet of Things (IoT) devices in 2025, the company says.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/04/0143227/starlink-launches-first-cellphone-towers-in-space-for-use-with-lte-phones?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T10:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T07:00:00+00:00", - "title": "New Antibiotic Can Kill Drug-Resistant Bacteria", - "link": "https://science.slashdot.org/story/24/01/04/0135245/new-antibiotic-can-kill-drug-resistant-bacteria?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T07:00:00+00:00", - "content": "fahrbot-bot shares a report from The Guardian: Scientists have discovered an entirely new class of antibiotic that appears to kill one of three bacteria considered to pose the greatest threat to human health because of their extensive drug-resistance. Zosurabalpin defeated highly drug-resistant strains of Carbapenem-resistant Acinetobacter baumannii (Crab) in mouse models of pneumonia and sepsis, and was being tested in human trials. Crab is classified as a priority 1 critical pathogen by the World Health Organization, alongside two other drug-resistant forms of bacteria -- Pseudomonas aeruginosa and Enterobacteriaceae.\n \nAntibiotic-resistant infections pose an urgent threat to human health -- particularly those caused by a large group of bacteria known as Gram-negative bacteria, which are protected by an outer shell containing a substance called lipopolysaccharide (LPS). \"LPS allows bacteria to live in harsh environments, and it also allows them to evade attack by our immune system,\" said Dr Michael Lobritz, the global head of infectious diseases at Roche Pharma Research and Early Development in Basel Switzerland, which developed the new drug. No new antibiotic for Gram-negative bacteria have been approved in more than 50 years.\n \nRoche had previously identified Zosurabalpin as capable of blocking the growth of A baumannii but it was not clear how it worked, or if it would be effective in animals with Crab-related infections. Through a series of experiments published in Nature, Prof Daniel Kahne at Harvard University in Cambridge, US, and colleagues showed that the drug prevented LPS from being transported to the outer membrane of the bacterium, killing it. They also found that Zosurabalpin considerably reduced levels of bacteria in mice with Crab-induced pneumonia and prevented the death of those with Crab-related sepsis. While [Lobritz] stressed that this molecule alone would not solve the public health threat of antimicrobial resistant infections, the discovery could lay the foundations for future efforts to drug the same transport system in other bacteria.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "fahrbot-bot shares a report from The Guardian: Scientists have discovered an entirely new class of antibiotic that appears to kill one of three bacteria considered to pose the greatest threat to human health because of their extensive drug-resistance. Zosurabalpin defeated highly drug-resistant strains of Carbapenem-resistant Acinetobacter baumannii (Crab) in mouse models of pneumonia and sepsis, and was being tested in human trials. Crab is classified as a priority 1 critical pathogen by the World Health Organization, alongside two other drug-resistant forms of bacteria -- Pseudomonas aeruginosa and Enterobacteriaceae.\n \nAntibiotic-resistant infections pose an urgent threat to human health -- particularly those caused by a large group of bacteria known as Gram-negative bacteria, which are protected by an outer shell containing a substance called lipopolysaccharide (LPS). \"LPS allows bacteria to live in harsh environments, and it also allows them to evade attack by our immune system,\" said Dr Michael Lobritz, the global head of infectious diseases at Roche Pharma Research and Early Development in Basel Switzerland, which developed the new drug. No new antibiotic for Gram-negative bacteria have been approved in more than 50 years.\n \nRoche had previously identified Zosurabalpin as capable of blocking the growth of A baumannii but it was not clear how it worked, or if it would be effective in animals with Crab-related infections. Through a series of experiments published in Nature, Prof Daniel Kahne at Harvard University in Cambridge, US, and colleagues showed that the drug prevented LPS from being transported to the outer membrane of the bacterium, killing it. They also found that Zosurabalpin considerably reduced levels of bacteria in mice with Crab-induced pneumonia and prevented the death of those with Crab-related sepsis. While [Lobritz] stressed that this molecule alone would not solve the public health threat of antimicrobial resistant infections, the discovery could lay the foundations for future efforts to drug the same transport system in other bacteria.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/04/0135245/new-antibiotic-can-kill-drug-resistant-bacteria?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T03:30:00+00:00", - "title": "Scientists Solve the Mystery of How Jellyfish Can Regenerate a Tentacle In Days", - "link": "https://science.slashdot.org/story/24/01/03/2313232/scientists-solve-the-mystery-of-how-jellyfish-can-regenerate-a-tentacle-in-days?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T03:30:00+00:00", - "content": "An anonymous reader quotes a report from Technology Networks: At about the size of a pinkie nail, the jellyfish species Cladonema can regenerate an amputated tentacle in two to three days -- but how? Regenerating functional tissue across species, including salamanders and insects, relies on the ability to form a blastema, a clump of undifferentiated cells that can repair damage and grow into the missing appendage. Jellyfish, along with other cnidarians such as corals and sea anemones, exhibit high regeneration abilities, but how they form the critical blastema has remained a mystery until now.\n \nA research team based in Japan has revealed that stem-like proliferative cells -- which are actively growing and dividing but not yet differentiating into specific cell types -- appear at the site of injury and help form the blastema. \"Importantly, these stem-like proliferative cells in blastema are different from the resident stem cells localized in the tentacle,\" said corresponding author Yuichiro Nakajima, lecturer in the Graduate School of Pharmaceutical Sciences at the University of Tokyo. \"Repair-specific proliferative cells mainly contribute to the epithelium -- the thin outer layer -- of the newly formed tentacle.\"\n \nThe resident stem cells that exist in and near the tentacle are responsible for generating all cellular lineages during homeostasis and regeneration, meaning they maintain and repair whatever cells are needed during the jellyfish's lifetime, according to Nakajima. Repair-specific proliferative cells only appear at the time of injury. \"Together, resident stem cells and repair-specific proliferative cells allow rapid regeneration of the functional tentacle within a few days,\" Nakajima said, noting that jellyfish use their tentacles to hunt and feed. [...] The cellular origins of the repair-specific proliferative cells observed in the blastema remain unclear, though, and the researchers say the currently available tools to investigate the origins are too limited to elucidate the source of those cells or to identify other, different stem-like cells. \"It would be essential to introduce genetic tools that allow the tracing of specific cell lineages and the manipulation in Cladonema,\" Nakajima said. \"Ultimately, understanding blastema formation mechanisms in regenerative animals, including jellyfish, may help us identify cellular and molecular components that improve our own regenerative abilities.\"\n \nThe findings were published in the journal PLOS Biology.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Technology Networks: At about the size of a pinkie nail, the jellyfish species Cladonema can regenerate an amputated tentacle in two to three days -- but how? Regenerating functional tissue across species, including salamanders and insects, relies on the ability to form a blastema, a clump of undifferentiated cells that can repair damage and grow into the missing appendage. Jellyfish, along with other cnidarians such as corals and sea anemones, exhibit high regeneration abilities, but how they form the critical blastema has remained a mystery until now.\n \nA research team based in Japan has revealed that stem-like proliferative cells -- which are actively growing and dividing but not yet differentiating into specific cell types -- appear at the site of injury and help form the blastema. \"Importantly, these stem-like proliferative cells in blastema are different from the resident stem cells localized in the tentacle,\" said corresponding author Yuichiro Nakajima, lecturer in the Graduate School of Pharmaceutical Sciences at the University of Tokyo. \"Repair-specific proliferative cells mainly contribute to the epithelium -- the thin outer layer -- of the newly formed tentacle.\"\n \nThe resident stem cells that exist in and near the tentacle are responsible for generating all cellular lineages during homeostasis and regeneration, meaning they maintain and repair whatever cells are needed during the jellyfish's lifetime, according to Nakajima. Repair-specific proliferative cells only appear at the time of injury. \"Together, resident stem cells and repair-specific proliferative cells allow rapid regeneration of the functional tentacle within a few days,\" Nakajima said, noting that jellyfish use their tentacles to hunt and feed. [...] The cellular origins of the repair-specific proliferative cells observed in the blastema remain unclear, though, and the researchers say the currently available tools to investigate the origins are too limited to elucidate the source of those cells or to identify other, different stem-like cells. \"It would be essential to introduce genetic tools that allow the tracing of specific cell lineages and the manipulation in Cladonema,\" Nakajima said. \"Ultimately, understanding blastema formation mechanisms in regenerative animals, including jellyfish, may help us identify cellular and molecular components that improve our own regenerative abilities.\"\n \nThe findings were published in the journal PLOS Biology.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/03/2313232/scientists-solve-the-mystery-of-how-jellyfish-can-regenerate-a-tentacle-in-days?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T03:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T01:50:00+00:00", - "title": "There's a Big Difference In How Your Brain Processes the Numbers 4 and 5", - "link": "https://science.slashdot.org/story/24/01/03/235200/theres-a-big-difference-in-how-your-brain-processes-the-numbers-4-and-5?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T01:50:00+00:00", - "content": "Longtime Slashdot reader fahrbot-bot shares a report from ScienceAlert: According to a new study [published in Nature Human Behavior], the human brain has two separate ways of processing numbers of things: one system for quantities of four or fewer, and another system for five and up. Presented with four or fewer objects, humans can usually identify the sum at first glance, without counting. And we're almost always right. This ability is known as \"subitizing,\" a term coined by psychologists last century, and it's different from both counting and estimating. It refers to an uncanny sense of immediately knowing how many things you're looking at, with no tallying or guessing required.\n \nWhile we can easily subitize quantities up to four, however, the ability disappears when we're looking at five or more things. If asked to instantly quantify a group of seven apples, for example, we tend to hesitate and estimate, taking slightly longer to respond and still providing less precise answers. Since our subitizing skills vanish so abruptly for quantities larger than four, some researchers have suspected our brains use two distinct processing methods, specialized for either small or large quantities. \"However, this idea has been disputed up to now,\" says co-author Florian Mormann, a cognitive neurophysiologist from the Department of Epileptology at the University Hospital Bonn. \"It could also be that our brain always makes an estimate but the error rates for smaller numbers of things are so low that they simply go unnoticed.\"\n \nPrevious research involving some of the new study's authors showed that human brains have neurons responsible for each number, with certain nerve cells firing selectively in response to certain quantities. Some neurons fire mainly when a person sees two of something, they found, while others show a similar affinity for their own number of visual elements. Yet many of these neurons also fire in response to slightly smaller or larger numbers, the researchers note, with a weaker reaction for quantities further removed from their numerical focus. \"A brain cell for a number of 'seven' elements thus also fires for six and eight elements but more weakly,\" says neurobiologist Andreas Nieder from the University of Tubingen. \"The same cell is still activated but even less so for five or nine elements.\"\n \nThis kind of \"numerical distance effect\" also occurs in monkeys, as Nieder has shown in previous research. Among humans, however, it typically happens only when we see five or more things, hinting at some undiscovered difference in the way we identify smaller numbers. \"There seems to be an additional mechanism for numbers of around less than five elements that makes these neurons more precise,\" Nieder says. Neurons responsible for lower numbers are able to inhibit other neurons responsible for adjacent numbers, the study's authors report, thus limiting any mixed signals about the quantity in question. When a trio-specializing neuron fires, for example, it also inhibits the neurons that typically fire in response to groups of two or four things. Neurons for the number five and beyond apparently lack this mechanism.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Longtime Slashdot reader fahrbot-bot shares a report from ScienceAlert: According to a new study [published in Nature Human Behavior], the human brain has two separate ways of processing numbers of things: one system for quantities of four or fewer, and another system for five and up. Presented with four or fewer objects, humans can usually identify the sum at first glance, without counting. And we're almost always right. This ability is known as \"subitizing,\" a term coined by psychologists last century, and it's different from both counting and estimating. It refers to an uncanny sense of immediately knowing how many things you're looking at, with no tallying or guessing required.\n \nWhile we can easily subitize quantities up to four, however, the ability disappears when we're looking at five or more things. If asked to instantly quantify a group of seven apples, for example, we tend to hesitate and estimate, taking slightly longer to respond and still providing less precise answers. Since our subitizing skills vanish so abruptly for quantities larger than four, some researchers have suspected our brains use two distinct processing methods, specialized for either small or large quantities. \"However, this idea has been disputed up to now,\" says co-author Florian Mormann, a cognitive neurophysiologist from the Department of Epileptology at the University Hospital Bonn. \"It could also be that our brain always makes an estimate but the error rates for smaller numbers of things are so low that they simply go unnoticed.\"\n \nPrevious research involving some of the new study's authors showed that human brains have neurons responsible for each number, with certain nerve cells firing selectively in response to certain quantities. Some neurons fire mainly when a person sees two of something, they found, while others show a similar affinity for their own number of visual elements. Yet many of these neurons also fire in response to slightly smaller or larger numbers, the researchers note, with a weaker reaction for quantities further removed from their numerical focus. \"A brain cell for a number of 'seven' elements thus also fires for six and eight elements but more weakly,\" says neurobiologist Andreas Nieder from the University of Tubingen. \"The same cell is still activated but even less so for five or nine elements.\"\n \nThis kind of \"numerical distance effect\" also occurs in monkeys, as Nieder has shown in previous research. Among humans, however, it typically happens only when we see five or more things, hinting at some undiscovered difference in the way we identify smaller numbers. \"There seems to be an additional mechanism for numbers of around less than five elements that makes these neurons more precise,\" Nieder says. Neurons responsible for lower numbers are able to inhibit other neurons responsible for adjacent numbers, the study's authors report, thus limiting any mixed signals about the quantity in question. When a trio-specializing neuron fires, for example, it also inhibits the neurons that typically fire in response to groups of two or four things. Neurons for the number five and beyond apparently lack this mechanism.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/03/235200/theres-a-big-difference-in-how-your-brain-processes-the-numbers-4-and-5?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T01:50:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T01:30:00+00:00", - "title": "Niklaus Wirth, Inventor of Pascal, Dies At 89", - "link": "https://developers.slashdot.org/story/24/01/04/0126247/niklaus-wirth-inventor-of-pascal-dies-at-89?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T01:30:00+00:00", - "content": "New submitter axlash writes: It has been reported on X that Niklaus Wirth, inventor and co-inventor of several languages including Pascal, Euler and Oberon, died on Jan 1, 2024. He was aged 89. \"We lost a titan of programming languages, programming methodology, software engineering and hardware design,\" writes software engineer Bertrand Meyer\n in a post on X. \"Niklaus Wirth passed away on the first of January. We mourn a pioneer, colleague, mentor and friend.\"\n \nNiklaus Wirth, born on February 15, 1934, in Switzerland, is a renowned computer scientist known for his significant contributions to the field of computer science and software engineering. He is best known for developing several programming languages, including ALGOL W, Pascal, and Modula-2, which have had a profound impact on the design and development of modern computer software. Wirth's work emphasized simplicity, clarity, and efficiency in programming languages, which greatly influenced subsequent language design and the development of structured programming techniques. His legacy also includes the development of the Oberon programming language and the design of the Oberon operating system. Wirth's dedication to elegant and efficient software design continues to inspire computer scientists and software engineers worldwide, making him a highly respected figure in the history of computing.\n \nYou can learn more about Wirth via A.M. Turing Award, Britannica, and the Computer History Museum.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "New submitter axlash writes: It has been reported on X that Niklaus Wirth, inventor and co-inventor of several languages including Pascal, Euler and Oberon, died on Jan 1, 2024. He was aged 89. \"We lost a titan of programming languages, programming methodology, software engineering and hardware design,\" writes software engineer Bertrand Meyer\n in a post on X. \"Niklaus Wirth passed away on the first of January. We mourn a pioneer, colleague, mentor and friend.\"\n \nNiklaus Wirth, born on February 15, 1934, in Switzerland, is a renowned computer scientist known for his significant contributions to the field of computer science and software engineering. He is best known for developing several programming languages, including ALGOL W, Pascal, and Modula-2, which have had a profound impact on the design and development of modern computer software. Wirth's work emphasized simplicity, clarity, and efficiency in programming languages, which greatly influenced subsequent language design and the development of structured programming techniques. His legacy also includes the development of the Oberon programming language and the design of the Oberon operating system. Wirth's dedication to elegant and efficient software design continues to inspire computer scientists and software engineers worldwide, making him a highly respected figure in the history of computing.\n \nYou can learn more about Wirth via A.M. Turing Award, Britannica, and the Computer History Museum.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://developers.slashdot.org/story/24/01/04/0126247/niklaus-wirth-inventor-of-pascal-dies-at-89?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T01:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T01:10:00+00:00", - "title": "Substack Faces User Revolt Over Anti-Censorship Stance", - "link": "https://yro.slashdot.org/story/24/01/03/2256240/substack-faces-user-revolt-over-anti-censorship-stance?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T01:10:00+00:00", - "content": "Alex Hern reports via the Guardian: The email newsletter service Substack is facing a user revolt after its chief executive defended hosting and handling payments for \"Nazis\" on its platform, citing anti-censorship reasons. In a note on the site published in December, the chief executive, Hamish McKenzie, said the firm \"doesn't like Nazis,\" and wished \"no one held these views.\" But he said the company did not think that censorship -- by demonetising sites that publish extreme views -- was a solution to the problem, and instead made it worse. Some of the largest newsletters on the service have threatened to take their business elsewhere if Substack does not reverse its stance.\n \nOn Tuesday Casey Newton, who writes Platformer -- a popular tech newsletter on the platform with thousands of subscribers paying at least $10 a month -- became the most prominent yet. [...] Substack takes a 10% cut of subscriptions from paid newsletters, meaning the loss of Platformer alone could represent six figures of revenue. Other newsletters have already made the jump. Talia Lavin, a journalist with thousands of paid subscribers on her newsletter The Sword and the Sandwich, moved to a competing service, Buttondown, on Tuesday. Substack's leadership team said in a statement: \"As we face growing pressure to censor content published on Substack that to some seems dubious or objectionable, our answer remains the same: we make decisions based on principles not PR, we will defend free expression, and we will stick to our hands-off approach to content moderation.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Alex Hern reports via the Guardian: The email newsletter service Substack is facing a user revolt after its chief executive defended hosting and handling payments for \"Nazis\" on its platform, citing anti-censorship reasons. In a note on the site published in December, the chief executive, Hamish McKenzie, said the firm \"doesn't like Nazis,\" and wished \"no one held these views.\" But he said the company did not think that censorship -- by demonetising sites that publish extreme views -- was a solution to the problem, and instead made it worse. Some of the largest newsletters on the service have threatened to take their business elsewhere if Substack does not reverse its stance.\n \nOn Tuesday Casey Newton, who writes Platformer -- a popular tech newsletter on the platform with thousands of subscribers paying at least $10 a month -- became the most prominent yet. [...] Substack takes a 10% cut of subscriptions from paid newsletters, meaning the loss of Platformer alone could represent six figures of revenue. Other newsletters have already made the jump. Talia Lavin, a journalist with thousands of paid subscribers on her newsletter The Sword and the Sandwich, moved to a competing service, Buttondown, on Tuesday. Substack's leadership team said in a statement: \"As we face growing pressure to censor content published on Substack that to some seems dubious or objectionable, our answer remains the same: we make decisions based on principles not PR, we will defend free expression, and we will stick to our hands-off approach to content moderation.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/03/2256240/substack-faces-user-revolt-over-anti-censorship-stance?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T01:10:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T00:30:00+00:00", - "title": "Japan To Test Datacenter Powered By Reused Hydrogen Fuel Cells", - "link": "https://hardware.slashdot.org/story/24/01/03/2250210/japan-to-test-datacenter-powered-by-reused-hydrogen-fuel-cells?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T00:30:00+00:00", - "content": "Honda and Mitsubishi are collaborating in a two-year project in Shunan City, Japan, to evaluate the feasibility and environmental benefits of powering a data center with fuel cells taken from electric vehicles. The Register reports: Hydrogen for the fuel cell power station will be provided by a third Japanese company, Tokuyama Corporation, as a byproduct from its salt water electrolysis business, which manufactures about 50,000 tons of sodium hypochlorite each year. The project was proposed by Japan's New Energy and Industrial Technology Development Organization (NEDO), which promotes the research, development and adoption of industrial, energy and environmental technologies. The objective is to consider ways of reducing costs for organizations to install and operate stationary fuel cell systems, which could ultimately contribute to the decarbonization of the electric power supply. No details were disclosed of the kind of datacenter infrastructure that Mitsubishi will operate as part of this project, so it is unknown how much power the fuel cell power station will be required to supply. [...]\n \nHydrogen can be considered a clean fuel because it produces only water as a byproduct when consumed in a fuel cell. But the problem is in sourcing the hydrogen. Much commercially produced hydrogen is extracted from methane gas via an energy-intensive process typically powered by fossil fuels. It is likely that the process Tokuyama uses in its salt water electrolysis is ultimately powered by fossil fuels, but the hydrogen is produced as a byproduct and this is currently just a demonstration project to evaluate the feasibility of integrated hydrogen business models. In addition to verifying the use of fuel cells for primary and backup power sources in datacenters, the project will also look at the potential for grid-balancing applications.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Honda and Mitsubishi are collaborating in a two-year project in Shunan City, Japan, to evaluate the feasibility and environmental benefits of powering a data center with fuel cells taken from electric vehicles. The Register reports: Hydrogen for the fuel cell power station will be provided by a third Japanese company, Tokuyama Corporation, as a byproduct from its salt water electrolysis business, which manufactures about 50,000 tons of sodium hypochlorite each year. The project was proposed by Japan's New Energy and Industrial Technology Development Organization (NEDO), which promotes the research, development and adoption of industrial, energy and environmental technologies. The objective is to consider ways of reducing costs for organizations to install and operate stationary fuel cell systems, which could ultimately contribute to the decarbonization of the electric power supply. No details were disclosed of the kind of datacenter infrastructure that Mitsubishi will operate as part of this project, so it is unknown how much power the fuel cell power station will be required to supply. [...]\n \nHydrogen can be considered a clean fuel because it produces only water as a byproduct when consumed in a fuel cell. But the problem is in sourcing the hydrogen. Much commercially produced hydrogen is extracted from methane gas via an energy-intensive process typically powered by fossil fuels. It is likely that the process Tokuyama uses in its salt water electrolysis is ultimately powered by fossil fuels, but the hydrogen is produced as a byproduct and this is currently just a demonstration project to evaluate the feasibility of integrated hydrogen business models. In addition to verifying the use of fuel cells for primary and backup power sources in datacenters, the project will also look at the potential for grid-balancing applications.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/24/01/03/2250210/japan-to-test-datacenter-powered-by-reused-hydrogen-fuel-cells?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T00:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-03T23:50:00+00:00", - "title": "CEO of Collapsed Crypto Fund HyperVerse Does Not Appear To Exist", - "link": "https://slashdot.org/story/24/01/03/2218208/ceo-of-collapsed-crypto-fund-hyperverse-does-not-appear-to-exist?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-03T23:50:00+00:00", - "content": "An anonymous reader quotes a report from The Guardian: A chief executive officer whose claimed qualifications appear to have no basis in fact was used to promote the HyperVerse crypto fund, alongside celebrity messages of support, as part of a push to recruit new investors into the scheme. A Guardian Australia investigation last month revealed thousands of people have lost millions of dollars to the HyperVerse crypto scheme, which was promoted by the Australian entrepreneur Sam Lee and his business partner, Ryan Xu, two of the founders of the collapsed Australian bitcoin company Blockchain Global. Blockchain Global owes creditors $58 million and its liquidator has referred Xu and Lee to the Australian Securities and Investments Commission for alleged possible breaches of the Corporations Act. Asic has said it does not intend to take action at this time. The HyperVerse investment scheme is among those that appear to have escaped scrutiny in Australia despite being flagged by regulators overseas, by one as a possible \"scam\" and another as a \"suspected pyramid scheme.\" Lee has denied HyperVerse was a scam and disputes being its founder.\n \nA man named Steven Reece Lewis was introduced as the chief executive officer of HyperVerse at an online global launch event in December 2021, with video messages of support from a clutch of celebrities released on Twitter the following month, including from the Apple co-founder Steve Wozniak and actor Chuck Norris. Promotional material released for HyperVerse, which was linked to a previous scheme called HyperFund, said Reece Lewis was a graduate of the University of Leeds and held a master's degree from the University of Cambridge. A brief career summary of Reece Lewis, which was presented in a video launch for potential investors, said he had worked for Goldman Sachs, sold a web development company to Adobe and launched an IT start-up firm, before being recruited to head up HyperVerse by the HyperTech group. This was the umbrella organization for a range of Hyper-branded crypto schemes.\n \nLee spoke at the launch event as \"chairman\" of the HyperTech group, while Xu was introduced as the group's \"founder.\" The company praised Reece Lewis's \"strong performance and drive,\" citing his credentials as the reason for his recruitment. Guardian Australia has confirmed that neither the University of Leeds nor the University of Cambridge has any record of someone by the name Steven Reece Lewis on their databases. No records exist of Steven Reece Lewis on the UK companies register, Companies House, or on the US Securities and Exchange Commission. Adobe, a publicly listed company since 1986, has no record of any acquisition of a company owned by a Steven Reece Lewis in any of its public SEC filings. It is understood that Goldman Sachs could find no record of Reece Lewis having worked for the company. Guardian Australia was unable to find a LinkedIn profile for Reece Lewis or any internet presence other than HyperVerse promotional material. A Twitter account in Reece Lewis's name was set up a month before he appeared in the HyperVerse video launch and was used to promote the scheme on the platform for just six months before the account became inactive.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from The Guardian: A chief executive officer whose claimed qualifications appear to have no basis in fact was used to promote the HyperVerse crypto fund, alongside celebrity messages of support, as part of a push to recruit new investors into the scheme. A Guardian Australia investigation last month revealed thousands of people have lost millions of dollars to the HyperVerse crypto scheme, which was promoted by the Australian entrepreneur Sam Lee and his business partner, Ryan Xu, two of the founders of the collapsed Australian bitcoin company Blockchain Global. Blockchain Global owes creditors $58 million and its liquidator has referred Xu and Lee to the Australian Securities and Investments Commission for alleged possible breaches of the Corporations Act. Asic has said it does not intend to take action at this time. The HyperVerse investment scheme is among those that appear to have escaped scrutiny in Australia despite being flagged by regulators overseas, by one as a possible \"scam\" and another as a \"suspected pyramid scheme.\" Lee has denied HyperVerse was a scam and disputes being its founder.\n \nA man named Steven Reece Lewis was introduced as the chief executive officer of HyperVerse at an online global launch event in December 2021, with video messages of support from a clutch of celebrities released on Twitter the following month, including from the Apple co-founder Steve Wozniak and actor Chuck Norris. Promotional material released for HyperVerse, which was linked to a previous scheme called HyperFund, said Reece Lewis was a graduate of the University of Leeds and held a master's degree from the University of Cambridge. A brief career summary of Reece Lewis, which was presented in a video launch for potential investors, said he had worked for Goldman Sachs, sold a web development company to Adobe and launched an IT start-up firm, before being recruited to head up HyperVerse by the HyperTech group. This was the umbrella organization for a range of Hyper-branded crypto schemes.\n \nLee spoke at the launch event as \"chairman\" of the HyperTech group, while Xu was introduced as the group's \"founder.\" The company praised Reece Lewis's \"strong performance and drive,\" citing his credentials as the reason for his recruitment. Guardian Australia has confirmed that neither the University of Leeds nor the University of Cambridge has any record of someone by the name Steven Reece Lewis on their databases. No records exist of Steven Reece Lewis on the UK companies register, Companies House, or on the US Securities and Exchange Commission. Adobe, a publicly listed company since 1986, has no record of any acquisition of a company owned by a Steven Reece Lewis in any of its public SEC filings. It is understood that Goldman Sachs could find no record of Reece Lewis having worked for the company. Guardian Australia was unable to find a LinkedIn profile for Reece Lewis or any internet presence other than HyperVerse promotional material. A Twitter account in Reece Lewis's name was set up a month before he appeared in the HyperVerse video launch and was used to promote the scheme on the platform for just six months before the account became inactive.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/03/2218208/ceo-of-collapsed-crypto-fund-hyperverse-does-not-appear-to-exist?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-03T23:50:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-03T23:10:00+00:00", - "title": "Firmware Prank Causes LED Curtain In Russia To Display 'Slava Ukraini'", - "link": "https://yro.slashdot.org/story/24/01/03/221221/firmware-prank-causes-led-curtain-in-russia-to-display-slava-ukraini?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-03T23:10:00+00:00", - "content": "Alexander Martin reports via The Record: The owner of an apartment in Veliky Novgorod in Russia has been arrested for discrediting the country's armed forces after a neighbor alerted the police to the message 'Slava Ukraini' scrolling across their LED curtains. When police went to the scene, they saw the garland which the owner had hung in celebration of the New Year and a \"slogan glorifying the Armed Forces of Ukraine,\" as a spokesperson for the Ministry of Internal Affairs told state-owned news agency TASS. The apartment owner said the garland was supposed to display a \"Happy New Year\" greeting, TASS reported.\n \nSeveral other people in Russia described a similar experience on the AlexGyver web forum, linked to a DIY blog popular in the country. They said at the stroke of midnight on New Year's Eve, their LED curtains also began to show the \"Glory to Ukraine\" message in Ukrainian. It is not clear whether any of these other posters were also arrested. The man in Veliky Novgorod will have to defend his case in court, according to TASS. Police have seized the curtain itself.\n \nAn independent investigation into the cause of the message by the AlexGyver forum users found that affected curtains all used the same open-source firmware code. The original code appears to have originated in Ukraine before someone created a fork translated into Russian. According to the Telegram channel for AlexGyver, the code had been added to the original project on October 18, and then in December the people or person running the fork copied and pasted that update into their own version. \"Everyone who downloaded and updated the firmware in December received a gift,\" the Telegram channel wrote. The message was \"really encrypted, hidden from the 'reader' of the code, and is displayed on the first day of the year exclusively for residents of Russia by [geographic region].\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Alexander Martin reports via The Record: The owner of an apartment in Veliky Novgorod in Russia has been arrested for discrediting the country's armed forces after a neighbor alerted the police to the message 'Slava Ukraini' scrolling across their LED curtains. When police went to the scene, they saw the garland which the owner had hung in celebration of the New Year and a \"slogan glorifying the Armed Forces of Ukraine,\" as a spokesperson for the Ministry of Internal Affairs told state-owned news agency TASS. The apartment owner said the garland was supposed to display a \"Happy New Year\" greeting, TASS reported.\n \nSeveral other people in Russia described a similar experience on the AlexGyver web forum, linked to a DIY blog popular in the country. They said at the stroke of midnight on New Year's Eve, their LED curtains also began to show the \"Glory to Ukraine\" message in Ukrainian. It is not clear whether any of these other posters were also arrested. The man in Veliky Novgorod will have to defend his case in court, according to TASS. Police have seized the curtain itself.\n \nAn independent investigation into the cause of the message by the AlexGyver forum users found that affected curtains all used the same open-source firmware code. The original code appears to have originated in Ukraine before someone created a fork translated into Russian. According to the Telegram channel for AlexGyver, the code had been added to the original project on October 18, and then in December the people or person running the fork copied and pasted that update into their own version. \"Everyone who downloaded and updated the firmware in December received a gift,\" the Telegram channel wrote. The message was \"really encrypted, hidden from the 'reader' of the code, and is displayed on the first day of the year exclusively for residents of Russia by [geographic region].\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/03/221221/firmware-prank-causes-led-curtain-in-russia-to-display-slava-ukraini?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-03T23:10:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-03T22:30:00+00:00", - "title": "New Jersey Used COVID Relief Funds To Buy Banned Chinese Surveillance Cameras", - "link": "https://yro.slashdot.org/story/24/01/03/2154220/new-jersey-used-covid-relief-funds-to-buy-banned-chinese-surveillance-cameras?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-03T22:30:00+00:00", - "content": "A federal criminal complaint has revealed that state and local agencies in New Jersey bought millions of dollars worth of banned Chinese surveillance cameras. The cameras were purchased from a local company that rebranded the banned equipment made by Dahua Technology, a company that has been implicated in the surveillance of the Uyghur people in Xinjiang. According to 404 Media, \"At least $15 million of the equipment was bought using federal COVID relief funds.\" From the report: The feds charged Tamer Zakhary, the CEO of the New Jersey-based surveillance company Packetalk, with three counts of wire fraud and a separate count of false statements for repeatedly lying to state and local agencies about the provenance of his company's surveillance cameras. Some of the cameras Packetalk sold to local agencies were Dahua cameras that had the Dahua logo removed and the colors of the camera changed, according to the criminal complaint.\n \nDahua Technology is the second largest surveillance camera company in the world. In 2019, the U.S. government banned the purchase of Dahua cameras using federal funds because their cameras have \"been implicated in human rights violations and abuses in the implementation of China's campaign of repression, mass arbitrary detention, and high-technology surveillance against Uyghurs, Kazakhs, and other members of Muslim minority groups in Xingjiang.\" The FCC later said that Dahua cameras \"pose an unacceptable risk to U.S. national security.\" Dahua is not named in the federal complaint, but [404 Media's Jason Koebler] was able to cross-reference details in the complaint with Dahua and was able to identify specific cameras sold by Packetalk to Dahua's product.\n \nAccording to the FBI, Zakhary sold millions of dollars of surveillance equipment, including rebranded Dahua cameras, to agencies all over New Jersey despite knowing that the cameras were illegal to sell to public agencies. Zakhary also specifically helped two specific agencies in New Jersey (called \"Victim Agency-1\" and \"Victim Agency-2\" in the complaint) justify their purchases using federal COVID relief money from the CARES Act, according to the criminal complaint. The feds allege, essentially, that Zakhary tricked local agencies into buying banned cameras using COVID funds: \"Zakhary fraudulently misrepresented to the Public Safety Customers that [Packetalk's] products were compliant with Section 889 of the John S. McCain National Defense Authorization Act for 2019 [which banned Dahua cameras], when, in fact, they were not,\" the complaint reads. \"As a result of Zakhary's fraudulent misrepresentations, the Public Safety Customers purchased at least $35 million in surveillance cameras and equipment from [Packetalk], over $15 million of which was federal funds and grants.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "A federal criminal complaint has revealed that state and local agencies in New Jersey bought millions of dollars worth of banned Chinese surveillance cameras. The cameras were purchased from a local company that rebranded the banned equipment made by Dahua Technology, a company that has been implicated in the surveillance of the Uyghur people in Xinjiang. According to 404 Media, \"At least $15 million of the equipment was bought using federal COVID relief funds.\" From the report: The feds charged Tamer Zakhary, the CEO of the New Jersey-based surveillance company Packetalk, with three counts of wire fraud and a separate count of false statements for repeatedly lying to state and local agencies about the provenance of his company's surveillance cameras. Some of the cameras Packetalk sold to local agencies were Dahua cameras that had the Dahua logo removed and the colors of the camera changed, according to the criminal complaint.\n \nDahua Technology is the second largest surveillance camera company in the world. In 2019, the U.S. government banned the purchase of Dahua cameras using federal funds because their cameras have \"been implicated in human rights violations and abuses in the implementation of China's campaign of repression, mass arbitrary detention, and high-technology surveillance against Uyghurs, Kazakhs, and other members of Muslim minority groups in Xingjiang.\" The FCC later said that Dahua cameras \"pose an unacceptable risk to U.S. national security.\" Dahua is not named in the federal complaint, but [404 Media's Jason Koebler] was able to cross-reference details in the complaint with Dahua and was able to identify specific cameras sold by Packetalk to Dahua's product.\n \nAccording to the FBI, Zakhary sold millions of dollars of surveillance equipment, including rebranded Dahua cameras, to agencies all over New Jersey despite knowing that the cameras were illegal to sell to public agencies. Zakhary also specifically helped two specific agencies in New Jersey (called \"Victim Agency-1\" and \"Victim Agency-2\" in the complaint) justify their purchases using federal COVID relief money from the CARES Act, according to the criminal complaint. The feds allege, essentially, that Zakhary tricked local agencies into buying banned cameras using COVID funds: \"Zakhary fraudulently misrepresented to the Public Safety Customers that [Packetalk's] products were compliant with Section 889 of the John S. McCain National Defense Authorization Act for 2019 [which banned Dahua cameras], when, in fact, they were not,\" the complaint reads. \"As a result of Zakhary's fraudulent misrepresentations, the Public Safety Customers purchased at least $35 million in surveillance cameras and equipment from [Packetalk], over $15 million of which was federal funds and grants.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/03/2154220/new-jersey-used-covid-relief-funds-to-buy-banned-chinese-surveillance-cameras?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-03T22:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-03T21:50:00+00:00", - "title": "23andMe Tells Victims It's Their Fault Data Was Breached", - "link": "https://yro.slashdot.org/story/24/01/03/2143235/23andme-tells-victims-its-their-fault-data-was-breached?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-03T21:50:00+00:00", - "content": "An anonymous reader quotes a report from TechCrunch: Facing more than 30 lawsuits from victims of its massive data breach, 23andMe is now deflecting the blame to the victims themselves in an attempt to absolve itself from any responsibility, according to a letter sent to a group of victims seen by TechCrunch. \"Rather than acknowledge its role in this data security disaster, 23andMe has apparently decided to leave its customers out to dry while downplaying the seriousness of these events,\" Hassan Zavareei, one of the lawyers representing the victims who received the letter from 23andMe, told TechCrunch in an email.\n \nIn December, 23andMe admitted that hackers had stolen the genetic and ancestry data of 6.9 million users, nearly half of all its customers. The data breach started with hackers accessing only around 14,000 user accounts. The hackers broke into this first set of victims by brute-forcing accounts with passwords that were known to be associated with the targeted customers, a technique known as credential stuffing. From these 14,000 initial victims, however, the hackers were able to then access the personal data of the other 6.9 million million victims because they had opted-in to 23andMe's DNA Relatives feature. This optional feature allows customers to automatically share some of their data with people who are considered their relatives on the platform. In other words, by hacking into only 14,000 customers' accounts, the hackers subsequently scraped personal data of another 6.9 million customers whose accounts were not directly hacked.\n \nBut in a letter sent to a group of hundreds of 23andMe users who are now suing the company, 23andMe said that \"users negligently recycled and failed to update their passwords following these past security incidents, which are unrelated to 23andMe.\" \"Therefore, the incident was not a result of 23andMe's alleged failure to maintain reasonable security measures,\" the letter reads. [...] 23andMe's lawyers argued that the stolen data cannot be used to inflict monetary damage against the victims. \"The information that was potentially accessed cannot be used for any harm. As explained in the October 6, 2023 blog post, the profile information that may have been accessed related to the DNA Relatives feature, which a customer creates and chooses to share with other users on 23andMe's platform. Such information would only be available if plaintiffs affirmatively elected to share this information with other users via the DNA Relatives feature. Additionally, the information that the unauthorized actor potentially obtained about plaintiffs could not have been used to cause pecuniary harm (it did not include their social security number, driver's license number, or any payment or financial information),\" the letter read. \"This finger pointing is nonsensical,\" said Zavareei. \"23andMe knew or should have known that many consumers use recycled passwords and thus that 23andMe should have implemented some of the many safeguards available to protect against credential stuffing -- especially considering that 23andMe stores personal identifying information, health information, and genetic information on its platform.\"\n \n\"The breach impacted millions of consumers whose data was exposed through the DNA Relatives feature on 23andMe's platform, not because they used recycled passwords,\" added Zavareei. \"Of those millions, only a few thousand accounts were compromised due to credential stuffing. 23andMe's attempt to shirk responsibility by blaming its customers does nothing for these millions of consumers whose data was compromised through no fault of their own whatsoever.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Facing more than 30 lawsuits from victims of its massive data breach, 23andMe is now deflecting the blame to the victims themselves in an attempt to absolve itself from any responsibility, according to a letter sent to a group of victims seen by TechCrunch. \"Rather than acknowledge its role in this data security disaster, 23andMe has apparently decided to leave its customers out to dry while downplaying the seriousness of these events,\" Hassan Zavareei, one of the lawyers representing the victims who received the letter from 23andMe, told TechCrunch in an email.\n \nIn December, 23andMe admitted that hackers had stolen the genetic and ancestry data of 6.9 million users, nearly half of all its customers. The data breach started with hackers accessing only around 14,000 user accounts. The hackers broke into this first set of victims by brute-forcing accounts with passwords that were known to be associated with the targeted customers, a technique known as credential stuffing. From these 14,000 initial victims, however, the hackers were able to then access the personal data of the other 6.9 million million victims because they had opted-in to 23andMe's DNA Relatives feature. This optional feature allows customers to automatically share some of their data with people who are considered their relatives on the platform. In other words, by hacking into only 14,000 customers' accounts, the hackers subsequently scraped personal data of another 6.9 million customers whose accounts were not directly hacked.\n \nBut in a letter sent to a group of hundreds of 23andMe users who are now suing the company, 23andMe said that \"users negligently recycled and failed to update their passwords following these past security incidents, which are unrelated to 23andMe.\" \"Therefore, the incident was not a result of 23andMe's alleged failure to maintain reasonable security measures,\" the letter reads. [...] 23andMe's lawyers argued that the stolen data cannot be used to inflict monetary damage against the victims. \"The information that was potentially accessed cannot be used for any harm. As explained in the October 6, 2023 blog post, the profile information that may have been accessed related to the DNA Relatives feature, which a customer creates and chooses to share with other users on 23andMe's platform. Such information would only be available if plaintiffs affirmatively elected to share this information with other users via the DNA Relatives feature. Additionally, the information that the unauthorized actor potentially obtained about plaintiffs could not have been used to cause pecuniary harm (it did not include their social security number, driver's license number, or any payment or financial information),\" the letter read. \"This finger pointing is nonsensical,\" said Zavareei. \"23andMe knew or should have known that many consumers use recycled passwords and thus that 23andMe should have implemented some of the many safeguards available to protect against credential stuffing -- especially considering that 23andMe stores personal identifying information, health information, and genetic information on its platform.\"\n \n\"The breach impacted millions of consumers whose data was exposed through the DNA Relatives feature on 23andMe's platform, not because they used recycled passwords,\" added Zavareei. \"Of those millions, only a few thousand accounts were compromised due to credential stuffing. 23andMe's attempt to shirk responsibility by blaming its customers does nothing for these millions of consumers whose data was compromised through no fault of their own whatsoever.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/03/2143235/23andme-tells-victims-its-their-fault-data-was-breached?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-03T21:50:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-03T21:10:00+00:00", - "title": "DVD Resurgence To Prevent Films From Disappearing", - "link": "https://hardware.slashdot.org/story/24/01/03/2042204/dvd-resurgence-to-prevent-films-from-disappearing?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-03T21:10:00+00:00", - "content": "smooth wombat writes: The advent of streaming services heralded a new era of movie watching. No longer tied to an inconvenient time at a theater, movies could now be watched at your convenience any time of the day or night in your own home. However, with that convenience comes a sinister side: those same movies disappearing from streaming services. Once the movie is removed from the streaming service you can't watch it again. As a result, more people, particularly younger people, are buying DVDs, and even records, to preserve their ability to watch and listen to what they want when they want. Before his release of Oppenheimer, Christopher Nolan encouraged fans to embrace \"a version you can buy and own at home and put on a shelf so no evil streaming service can come steal it from you\". From the BBC article:\n\n \nOther directors have chimed in to sing the praises of physical media. James Cameron told Variety:\"The streamers are denying us any access whatsoever to certain films. And I think people are responding with their natural reaction, which is 'I'm going to buy it, and I'm going to watch it any time I want.'\" Guillermo del Toro posted on X that \"If you own a great 4K HD, Blu-ray, DVD etc etc of a film or films you love... you are the custodian of those films for generations to come.\" His tweet prompted people to reply, sharing evidence of their vast DVD collections. [...]

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "smooth wombat writes: The advent of streaming services heralded a new era of movie watching. No longer tied to an inconvenient time at a theater, movies could now be watched at your convenience any time of the day or night in your own home. However, with that convenience comes a sinister side: those same movies disappearing from streaming services. Once the movie is removed from the streaming service you can't watch it again. As a result, more people, particularly younger people, are buying DVDs, and even records, to preserve their ability to watch and listen to what they want when they want. Before his release of Oppenheimer, Christopher Nolan encouraged fans to embrace \"a version you can buy and own at home and put on a shelf so no evil streaming service can come steal it from you\". From the BBC article:\n\n \nOther directors have chimed in to sing the praises of physical media. James Cameron told Variety:\"The streamers are denying us any access whatsoever to certain films. And I think people are responding with their natural reaction, which is 'I'm going to buy it, and I'm going to watch it any time I want.'\" Guillermo del Toro posted on X that \"If you own a great 4K HD, Blu-ray, DVD etc etc of a film or films you love... you are the custodian of those films for generations to come.\" His tweet prompted people to reply, sharing evidence of their vast DVD collections. [...]\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/24/01/03/2042204/dvd-resurgence-to-prevent-films-from-disappearing?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-03T21:10:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-03T20:35:00+00:00", - "title": "LastPass Now Requires 12-Character Master Passwords", - "link": "https://it.slashdot.org/story/24/01/03/2035245/lastpass-now-requires-12-character-master-passwords?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-03T20:35:00+00:00", - "content": "LastPass notified customers today that they are now required to use complex master passwords with a minimum of 12 characters to increase their accounts' security. From a report: Even though LastPass has repeatedly said that there is a 12-character master password requirement since 2018, users have had the ability to use a weaker one. \"Historically, while a 12-character master password has been LastPassâ(TM) default setting since 2018, customers still had the ability to forego the recommended default settings and choose to create a master password with fewer characters, if they wished to do so,\" LastPass said in a new announcement today. \n\nLastPass has begun enforcing a 12-character master password requirement since April 2023 for new accounts or password resets, but older accounts could still use passwords with fewer than 12 characters. Starting this month, LastPass is now enforcing the 12-character master password requirement for all accounts. Furthermore, LastPass added that it will also start checking new or updated master passwords against a database of credentials previously leaked on the dark web to ensure that they don't match already compromised accounts.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "LastPass notified customers today that they are now required to use complex master passwords with a minimum of 12 characters to increase their accounts' security. From a report: Even though LastPass has repeatedly said that there is a 12-character master password requirement since 2018, users have had the ability to use a weaker one. \"Historically, while a 12-character master password has been LastPass\u00e2(TM) default setting since 2018, customers still had the ability to forego the recommended default settings and choose to create a master password with fewer characters, if they wished to do so,\" LastPass said in a new announcement today. \n\nLastPass has begun enforcing a 12-character master password requirement since April 2023 for new accounts or password resets, but older accounts could still use passwords with fewer than 12 characters. Starting this month, LastPass is now enforcing the 12-character master password requirement for all accounts. Furthermore, LastPass added that it will also start checking new or updated master passwords against a database of credentials previously leaked on the dark web to ensure that they don't match already compromised accounts.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/24/01/03/2035245/lastpass-now-requires-12-character-master-passwords?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-03T20:35:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-03T18:48:00+00:00", - "title": "Xerox To Cut 15% of Workers in Strategy It Calls a 'Reinvention'", - "link": "https://slashdot.org/story/24/01/03/1848210/xerox-to-cut-15-of-workers-in-strategy-it-calls-a-reinvention?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-03T18:48:00+00:00", - "content": "Xerox will lay off 15% of its workforce as the struggling digital printing company moves to cut costs and jump-start growth. From a report: In announcing the cuts, Xerox said Wednesday it is adopting a new operating model and organizational structure aimed at boosting its core print business, while also forming a new business services unit. CEO Steven Bandrowczak said in a statement that the shift will enhance the company's ability to efficiently bring products and services to market, labeling the strategic pivot at Xerox a \"reinvention.\" As of October 2023, Xerox had roughly 20,000 employees, according to the company's website.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Xerox will lay off 15% of its workforce as the struggling digital printing company moves to cut costs and jump-start growth. From a report: In announcing the cuts, Xerox said Wednesday it is adopting a new operating model and organizational structure aimed at boosting its core print business, while also forming a new business services unit. CEO Steven Bandrowczak said in a statement that the shift will enhance the company's ability to efficiently bring products and services to market, labeling the strategic pivot at Xerox a \"reinvention.\" As of October 2023, Xerox had roughly 20,000 employees, according to the company's website.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/03/1848210/xerox-to-cut-15-of-workers-in-strategy-it-calls-a-reinvention?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-03T18:48:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-03T18:00:00+00:00", - "title": "Way Too Many Games Were Released On Steam In 2023", - "link": "https://games.slashdot.org/story/24/01/03/1625223/way-too-many-games-were-released-on-steam-in-2023?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-03T18:00:00+00:00", - "content": "John Walker, reporting for Kotaku: Steam is by far the most peculiar of online storefronts. Built on top of itself for the last twenty years, Valve's behemothic PC game distributor is a clusterfuck of overlapping design choices, where algorithms rule over coherence, with 2023 seeing over 14,500 games released into the mayhem. Which is too many games. That breaks down to just under 40 a day, although given how people release games, it more accurately breaks down to about 50 every weekday. 50 games a day. On a storefront that goes to some lengths to bury new releases, and even buries pages where you can deliberately list new releases. \n\nCompared to 2022, that's an increase of nearly 2,000 games, up almost 5,000 from five years ago. There's no reason to expect that growth to diminish any time soon. It's a volume of games that not only could no individual ever hope to keep up with, but nor could even any gaming site. Not even the biggest sites in the industry could afford an editorial team capable of playing 50 games a day to find and write about those worth highlighting. Realistically, not even a tenth of the games. And that's not least because of those 50 games per day, about 48 of them will be absolute dross. On one level, in this way Steam represents a wonderful democracy for gaming, where any developer willing to stump up the $100 entry fee can release their game on the platform, with barely any restrictions. On another level, however, it's a disaster for about 99 percent of releases, which stand absolutely no chance of garnering any attention, no matter their quality. The solution: human storefront curation, which Valve has never shown any intention of doing.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "John Walker, reporting for Kotaku: Steam is by far the most peculiar of online storefronts. Built on top of itself for the last twenty years, Valve's behemothic PC game distributor is a clusterfuck of overlapping design choices, where algorithms rule over coherence, with 2023 seeing over 14,500 games released into the mayhem. Which is too many games. That breaks down to just under 40 a day, although given how people release games, it more accurately breaks down to about 50 every weekday. 50 games a day. On a storefront that goes to some lengths to bury new releases, and even buries pages where you can deliberately list new releases. \n\nCompared to 2022, that's an increase of nearly 2,000 games, up almost 5,000 from five years ago. There's no reason to expect that growth to diminish any time soon. It's a volume of games that not only could no individual ever hope to keep up with, but nor could even any gaming site. Not even the biggest sites in the industry could afford an editorial team capable of playing 50 games a day to find and write about those worth highlighting. Realistically, not even a tenth of the games. And that's not least because of those 50 games per day, about 48 of them will be absolute dross. On one level, in this way Steam represents a wonderful democracy for gaming, where any developer willing to stump up the $100 entry fee can release their game on the platform, with barely any restrictions. On another level, however, it's a disaster for about 99 percent of releases, which stand absolutely no chance of garnering any attention, no matter their quality. The solution: human storefront curation, which Valve has never shown any intention of doing.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/24/01/03/1625223/way-too-many-games-were-released-on-steam-in-2023?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-03T18:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-04T12:30:00+00:00", - "title": "'Rich Dad Poor Dad' Author Says He's Racked Up More Than $1 Billion in Debt", - "link": "https://news.slashdot.org/story/24/01/04/1228241/rich-dad-poor-dad-author-says-hes-racked-up-more-than-1-billion-in-debt?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-04T12:30:00+00:00", - "content": "A bestselling personal finance author and entrepreneur admits that he has more than $1 billion in debt -- and he doesn't think that's a bad thing. From a report: \"If I go bust, the bank goes bust,\" said \"Rich Dad, Poor Dad\" author Robert Kiyosaki in a Nov. 30 Instagram reel. \"Not my problem.\" That's because his debt has been used to purchase assets, he said in the video. He compared that with using debt to purchase liabilities, such as his Ferrari or Rolls-Royce vehicles -- expenses he's paid off in full, he said. \n\n\"I'm a billion dollars in debt because debt is money,\" Kiyosaki said during an interview on the \"Disruptors\" podcast. It connects to his strategy of using cash earnings to purchase precious metals like gold or silver, which Kiyosaki argues will retain their value while the U.S. dollar fluctuates: \"toilet paper,\" he called it.\n Kiyosaki is one of the country's most well-known personal finance personalities. His 1997 book \"Rich Dad, Poor Dad,\" which was originally self-published, has sold more than 40 million copies.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "A bestselling personal finance author and entrepreneur admits that he has more than $1 billion in debt -- and he doesn't think that's a bad thing. From a report: \"If I go bust, the bank goes bust,\" said \"Rich Dad, Poor Dad\" author Robert Kiyosaki in a Nov. 30 Instagram reel. \"Not my problem.\" That's because his debt has been used to purchase assets, he said in the video. He compared that with using debt to purchase liabilities, such as his Ferrari or Rolls-Royce vehicles -- expenses he's paid off in full, he said. \n\n\"I'm a billion dollars in debt because debt is money,\" Kiyosaki said during an interview on the \"Disruptors\" podcast. It connects to his strategy of using cash earnings to purchase precious metals like gold or silver, which Kiyosaki argues will retain their value while the U.S. dollar fluctuates: \"toilet paper,\" he called it.\n Kiyosaki is one of the country's most well-known personal finance personalities. His 1997 book \"Rich Dad, Poor Dad,\" which was originally self-published, has sold more than 40 million copies.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/04/1228241/rich-dad-poor-dad-author-says-hes-racked-up-more-than-1-billion-in-debt?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T12:30:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-04T14:00:00+00:00", - "title": "Microsoft Adding New Key To PC Keyboards For First Time Since 1994", - "link": "https://it.slashdot.org/story/24/01/04/1237201/microsoft-adding-new-key-to-pc-keyboards-for-first-time-since-1994?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-04T14:00:00+00:00", - "content": "Microsoft is adding a dedicated \"Copilot\" key to PC keyboards, adjusting the standard Windows layout for the first time since 1994. The key will open its AI assistant Copilot on Windows 10 and 11. On Copilot-enabled PCs, users can already invoke Copilot by pressing Windows+C. On other PCs, the key will open Search instead. ArsTechnica adds: A quick Microsoft demo video shows the Copilot key in between the cluster of arrow keys and the right Alt button, a place where many keyboards usually put a menu button, a right Ctrl key, another Windows key, or something similar. The exact positioning, and the key being replaced, may vary depending on the size and layout of the keyboard. \n\nWe asked Microsoft if a Copilot key would be required on OEM PCs going forward; the company told us that the key isn't mandatory now, but that it expects Copilot keys to be required on Windows 11 keyboards \"over time.\" Microsoft often imposes some additional hardware requirements on major PC makers that sell Windows on their devices, beyond what is strictly necessary to run Windows itself.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Microsoft is adding a dedicated \"Copilot\" key to PC keyboards, adjusting the standard Windows layout for the first time since 1994. The key will open its AI assistant Copilot on Windows 10 and 11. On Copilot-enabled PCs, users can already invoke Copilot by pressing Windows+C. On other PCs, the key will open Search instead. ArsTechnica adds: A quick Microsoft demo video shows the Copilot key in between the cluster of arrow keys and the right Alt button, a place where many keyboards usually put a menu button, a right Ctrl key, another Windows key, or something similar. The exact positioning, and the key being replaced, may vary depending on the size and layout of the keyboard. \n\nWe asked Microsoft if a Copilot key would be required on OEM PCs going forward; the company told us that the key isn't mandatory now, but that it expects Copilot keys to be required on Windows 11 keyboards \"over time.\" Microsoft often imposes some additional hardware requirements on major PC makers that sell Windows on their devices, beyond what is strictly necessary to run Windows itself.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/24/01/04/1237201/microsoft-adding-new-key-to-pc-keyboards-for-first-time-since-1994?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T14:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-04T14:40:00+00:00", - "title": "Linux Hits Nearly 4% Desktop User Share on Statcounter", - "link": "https://linux.slashdot.org/story/24/01/04/1317203/linux-hits-nearly-4-desktop-user-share-on-statcounter?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-04T14:40:00+00:00", - "content": "From a report: According to Statcounter, which should be taken with a pinch of salt of course like any sampling, the Linux share on the desktop hit nearly 4% in December 2023. Last month was a record too and a clear trend over time, as going back a couple of years, it was rarely coming close to 2% but now it's repeatedly nearing 4% so it's quite a good sign overall. \n\nThe latest from Statcounter shows for all of 2023 below: \n\nJanuary - 2.91%\nFebruary - 2.94%\nMarch - 2.85%\nApril - 2.83%\nMay - 2.7%\nJune - 3.07%\nJuly - 3.12%\nAugust - 3.18%\nSeptember - 3.02%\nOctober - 2.92%\nNovember - 3.22%\nDecember - 3.82% \n\nLooking at December it shows Windows rising too, with macOS dropping down. If we actually take ChromeOS directly into the Linux numbers for December 2023 the overall number would actually be 6.24% (ChromeOS is Linux after all).

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "From a report: According to Statcounter, which should be taken with a pinch of salt of course like any sampling, the Linux share on the desktop hit nearly 4% in December 2023. Last month was a record too and a clear trend over time, as going back a couple of years, it was rarely coming close to 2% but now it's repeatedly nearing 4% so it's quite a good sign overall. \n\nThe latest from Statcounter shows for all of 2023 below: \n\nJanuary - 2.91%\nFebruary - 2.94%\nMarch - 2.85%\nApril - 2.83%\nMay - 2.7%\nJune - 3.07%\nJuly - 3.12%\nAugust - 3.18%\nSeptember - 3.02%\nOctober - 2.92%\nNovember - 3.22%\nDecember - 3.82% \n\nLooking at December it shows Windows rising too, with macOS dropping down. If we actually take ChromeOS directly into the Linux numbers for December 2023 the overall number would actually be 6.24% (ChromeOS is Linux after all).\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://linux.slashdot.org/story/24/01/04/1317203/linux-hits-nearly-4-desktop-user-share-on-statcounter?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T14:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-04T15:20:00+00:00", - "title": "Jeff Bezos Bets on a Google Challenger Using AI To Try To Upend Internet Search", - "link": "https://slashdot.org/story/24/01/04/1447213/jeff-bezos-bets-on-a-google-challenger-using-ai-to-try-to-upend-internet-search?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-04T15:20:00+00:00", - "content": "Perplexity, a startup going after Google's dominant position in web search, has won backing from Jeff Bezos and venture capitalists betting that artificial intelligence will upend the way people find information online. From a report: Started less than two years ago, Perplexity has fewer than 40 employees and is based out of a San Francisco co-working space. The company's product, which it calls an answer engine, is used by about 10 million people monthly. Those ingredients were enough to persuade Institutional Venture Partners, Bezos and other tech executives to invest $74 million in the company, the largest sum raised by an internet search startup in recent years. The investment valued Perplexity at $520 million, including the new money, said Chief Executive Officer Aravind Srinivas. \n\nAmazon.com, the e-commerce company chaired by Bezos, has committed to investing billions in Anthropic, the AI startup behind the chatbot Claude. The path to competing with Google is littered with carcasses, and Microsoft itself has struggled for years to dislodge the company's roughly 90% market share in online search. Others, including tech giants, are incorporating AI into their search engines. Perplexity's founders said their advantage is using advances in AI to provide direct answers, instead of website links, in response to search queries, without some of the limitations felt by larger companies.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Perplexity, a startup going after Google's dominant position in web search, has won backing from Jeff Bezos and venture capitalists betting that artificial intelligence will upend the way people find information online. From a report: Started less than two years ago, Perplexity has fewer than 40 employees and is based out of a San Francisco co-working space. The company's product, which it calls an answer engine, is used by about 10 million people monthly. Those ingredients were enough to persuade Institutional Venture Partners, Bezos and other tech executives to invest $74 million in the company, the largest sum raised by an internet search startup in recent years. The investment valued Perplexity at $520 million, including the new money, said Chief Executive Officer Aravind Srinivas. \n\nAmazon.com, the e-commerce company chaired by Bezos, has committed to investing billions in Anthropic, the AI startup behind the chatbot Claude. The path to competing with Google is littered with carcasses, and Microsoft itself has struggled for years to dislodge the company's roughly 90% market share in online search. Others, including tech giants, are incorporating AI into their search engines. Perplexity's founders said their advantage is using advances in AI to provide direct answers, instead of website links, in response to search queries, without some of the limitations felt by larger companies.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/04/1447213/jeff-bezos-bets-on-a-google-challenger-using-ai-to-try-to-upend-internet-search?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T15:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-05T13:00:00+00:00", - "title": "AI and Satellite Imagery Used To Create Clearest Map Yet of Human Activity At Sea", - "link": "https://news.slashdot.org/story/24/01/05/0026200/ai-and-satellite-imagery-used-to-create-clearest-map-yet-of-human-activity-at-sea?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-05T13:00:00+00:00", - "content": "An anonymous reader quotes a report from The Verge: Using satellite imagery and AI, researchers have mapped human activity at sea with more precision than ever before. The effort exposed a huge amount of industrial activity that previously flew under the radar, from suspicious fishing operations to an explosion of offshore energy development. The maps were published today in the journal Nature. The research led by Google-backed nonprofit Global Fishing Watch revealed that a whopping three-quarters of the world's industrial fishing vessels are not publicly tracked. Up to 30 percent of transport and energy vessels also escape public tracking. Those blind spots could hamper global conservation efforts, the researchers say. To better protect the world's oceans and fisheries, policymakers need a more accurate picture of where people are exploiting resources at sea.\n \nUntil now, Global Fishing Watch and other organizations relied primarily on the maritime Automatic Identification System (AIS) to see what was happening at sea. The system tracks vessels that carry a box that sends out radio signals, and the data has been used in the past to document overfishing and forced labor on vessels. Even so, there are major limitations with the system. Requirements to carry AIS vary by country and vessel type. And it's pretty easy for someone to turn the box off when they want to avoid detection, or cruise through locations where signal strength is spotty. To fill in the blanks, Kroodsma and his colleagues analyzed 2,000 terabytes of imagery from the European Space Agency's Sentinel-1 satellite constellation. Instead of taking traditional optical imagery, which is like snapping photos with a camera, Sentinel-1 uses advanced radar instruments to observe the surface of the Earth. Radar can penetrate clouds and \"see\" in the dark -- and it was able to spot offshore activity that AIS missed.\n \nSince 2,000 terabytes is an enormous amount of data to crunch, the researchers developed three deep-learning models to classify each detected vessel, estimate their size, and sort out different kinds of offshore infrastructure. They monitored some 15 percent of the world's oceans where 75 percent of industrial activity takes place, paying attention to both vessel movements and the development of stationary offshore structures like oil rigs and wind turbines between 2017 and 2021. While fishing activity dipped at the onset of the covid-19 pandemic in 2020, they found dense vessel traffic in areas that \"previously showed little to no vessel activity\" in public tracking systems -- particularly around South and Southeast Asia, and the northern and western coasts of Africa.\n \nA boom in offshore energy development was also visible in the data. Wind turbines outnumbered oil structures by the end of 2020. Turbines made up 48 percent of all ocean infrastructure by the following year, while oil structures accounted for 38 percent. Nearly all of the offshore wind development took place off the coasts of northern Europe and China. In the Northeast US, clean energy opponents have tried to falsely link whale deaths to upcoming offshore wind development even though evidence points to vessel strikes being the problem. Oil structures have a lot more vessels swarming around them than wind turbines. Tank vessels are used at times to transport oil to shore as an alternative to pipelines. The number of oil structures grew 16 percent over the five years studied. And offshore oil development was linked to five times as much vessel traffic globally as wind turbines in 2021. \"The actual amount of vessel traffic globally from wind turbines is tiny, compared to the rest of traffic,\" Kroodsma says.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from The Verge: Using satellite imagery and AI, researchers have mapped human activity at sea with more precision than ever before. The effort exposed a huge amount of industrial activity that previously flew under the radar, from suspicious fishing operations to an explosion of offshore energy development. The maps were published today in the journal Nature. The research led by Google-backed nonprofit Global Fishing Watch revealed that a whopping three-quarters of the world's industrial fishing vessels are not publicly tracked. Up to 30 percent of transport and energy vessels also escape public tracking. Those blind spots could hamper global conservation efforts, the researchers say. To better protect the world's oceans and fisheries, policymakers need a more accurate picture of where people are exploiting resources at sea.\n \nUntil now, Global Fishing Watch and other organizations relied primarily on the maritime Automatic Identification System (AIS) to see what was happening at sea. The system tracks vessels that carry a box that sends out radio signals, and the data has been used in the past to document overfishing and forced labor on vessels. Even so, there are major limitations with the system. Requirements to carry AIS vary by country and vessel type. And it's pretty easy for someone to turn the box off when they want to avoid detection, or cruise through locations where signal strength is spotty. To fill in the blanks, Kroodsma and his colleagues analyzed 2,000 terabytes of imagery from the European Space Agency's Sentinel-1 satellite constellation. Instead of taking traditional optical imagery, which is like snapping photos with a camera, Sentinel-1 uses advanced radar instruments to observe the surface of the Earth. Radar can penetrate clouds and \"see\" in the dark -- and it was able to spot offshore activity that AIS missed.\n \nSince 2,000 terabytes is an enormous amount of data to crunch, the researchers developed three deep-learning models to classify each detected vessel, estimate their size, and sort out different kinds of offshore infrastructure. They monitored some 15 percent of the world's oceans where 75 percent of industrial activity takes place, paying attention to both vessel movements and the development of stationary offshore structures like oil rigs and wind turbines between 2017 and 2021. While fishing activity dipped at the onset of the covid-19 pandemic in 2020, they found dense vessel traffic in areas that \"previously showed little to no vessel activity\" in public tracking systems -- particularly around South and Southeast Asia, and the northern and western coasts of Africa.\n \nA boom in offshore energy development was also visible in the data. Wind turbines outnumbered oil structures by the end of 2020. Turbines made up 48 percent of all ocean infrastructure by the following year, while oil structures accounted for 38 percent. Nearly all of the offshore wind development took place off the coasts of northern Europe and China. In the Northeast US, clean energy opponents have tried to falsely link whale deaths to upcoming offshore wind development even though evidence points to vessel strikes being the problem. Oil structures have a lot more vessels swarming around them than wind turbines. Tank vessels are used at times to transport oil to shore as an alternative to pipelines. The number of oil structures grew 16 percent over the five years studied. And offshore oil development was linked to five times as much vessel traffic globally as wind turbines in 2021. \"The actual amount of vessel traffic globally from wind turbines is tiny, compared to the rest of traffic,\" Kroodsma says.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/05/0026200/ai-and-satellite-imagery-used-to-create-clearest-map-yet-of-human-activity-at-sea?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T13:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-05T10:00:00+00:00", - "title": "New Images of Jupiter's Moon Io Capture Infernal Volcanic Landscape", - "link": "https://science.slashdot.org/story/24/01/05/0018223/new-images-of-jupiters-moon-io-capture-infernal-volcanic-landscape?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-05T10:00:00+00:00", - "content": "NASA's Juno spacecraft made its closest flyby yet of Io, one of Jupiter's largest moons, sending back images of \"sharp cliffs, edgy mountain peaks, lakes of pooled lava and even a volcanic plume,\" reports the New York Times. From the report: The Juno spacecraft, designed to study the origin and evolution of Jupiter, arrived at the planet in 2016. NASA extended the mission in 2021, and the orbiter has since captured photos of the Jovian moons Ganymede, Europa and most recently Io. [...] Juno conducted a number of more distant observations of Io in recent years. Its latest flyby occurred on Dec. 30, when the spacecraft came within 932 miles of the moon. The images captured during this visit were made with an instrument called JunoCam and are in visible wavelengths. They are some of the highest resolution views of Io's global structure. The mission's managers shared six images of Io on the mission's website, and members of the public have since uploaded digitally enhanced versions that highlight features on Io's surface.\n \nMission scientists are already at work analyzing these images, searching for differences across Io's surface to learn how often its volcanoes erupt, how bright and hot those eruptions are and how the resulting lava flows. According to Dr. Bolton, the team will also compare Juno's images to older views of the Jovian moon to determine what has changed on Io over a variety of encounters. And they'll get a second set of data to work with in a month, when Juno completes another close flyby of the explosive world on Feb. 3.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "NASA's Juno spacecraft made its closest flyby yet of Io, one of Jupiter's largest moons, sending back images of \"sharp cliffs, edgy mountain peaks, lakes of pooled lava and even a volcanic plume,\" reports the New York Times. From the report: The Juno spacecraft, designed to study the origin and evolution of Jupiter, arrived at the planet in 2016. NASA extended the mission in 2021, and the orbiter has since captured photos of the Jovian moons Ganymede, Europa and most recently Io. [...] Juno conducted a number of more distant observations of Io in recent years. Its latest flyby occurred on Dec. 30, when the spacecraft came within 932 miles of the moon. The images captured during this visit were made with an instrument called JunoCam and are in visible wavelengths. They are some of the highest resolution views of Io's global structure. The mission's managers shared six images of Io on the mission's website, and members of the public have since uploaded digitally enhanced versions that highlight features on Io's surface.\n \nMission scientists are already at work analyzing these images, searching for differences across Io's surface to learn how often its volcanoes erupt, how bright and hot those eruptions are and how the resulting lava flows. According to Dr. Bolton, the team will also compare Juno's images to older views of the Jovian moon to determine what has changed on Io over a variety of encounters. And they'll get a second set of data to work with in a month, when Juno completes another close flyby of the explosive world on Feb. 3.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/05/0018223/new-images-of-jupiters-moon-io-capture-infernal-volcanic-landscape?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T10:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-05T07:00:00+00:00", - "title": "Portal 64, An N64 Demake of Valve's Classic, Now Has a Playable 'First Slice'", - "link": "https://games.slashdot.org/story/24/01/04/2314229/portal-64-an-n64-demake-of-valves-classic-now-has-a-playable-first-slice?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-05T07:00:00+00:00", - "content": "Programmer James Lambert has been working on a demake of Valve's Portal puzzle game for the Nintendo N64. After several years of development, Portal 64: The First Slice is now out of beta with two-thirds of the game's test chambers available to play. PC Gamer reports: In the announcement video Lambert goes through some of the new features in the latest build, including a seriously impressive visual rework on the portal gun itself. The video also showcases just how much of Portal's feel this manages to successfully capture, in particular the mind-bending effects of observing rooms and Chell through the portals themselves. I once called this the most impressive homebrew game I've ever seen and, while admittedly the N64 nostalgia helps, I'd stick by that.\n \nWhile this is obviously the first slice (geddit) and there's more to come, it's an incredible achievement in its own right: The first 13 test chambers of the game all present-and-correct. Portal has 19 test chambers, and Portal: Still Alive (which unbelievably has never seen an official PC release) added a further 14, so Lambert's well on his way to completing a vanilla version of Portal 64. You can follow the Portal 64 project on YouTube and download the game here.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Programmer James Lambert has been working on a demake of Valve's Portal puzzle game for the Nintendo N64. After several years of development, Portal 64: The First Slice is now out of beta with two-thirds of the game's test chambers available to play. PC Gamer reports: In the announcement video Lambert goes through some of the new features in the latest build, including a seriously impressive visual rework on the portal gun itself. The video also showcases just how much of Portal's feel this manages to successfully capture, in particular the mind-bending effects of observing rooms and Chell through the portals themselves. I once called this the most impressive homebrew game I've ever seen and, while admittedly the N64 nostalgia helps, I'd stick by that.\n \nWhile this is obviously the first slice (geddit) and there's more to come, it's an incredible achievement in its own right: The first 13 test chambers of the game all present-and-correct. Portal has 19 test chambers, and Portal: Still Alive (which unbelievably has never seen an official PC release) added a further 14, so Lambert's well on his way to completing a vanilla version of Portal 64. You can follow the Portal 64 project on YouTube and download the game here.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/24/01/04/2314229/portal-64-an-n64-demake-of-valves-classic-now-has-a-playable-first-slice?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-05T03:30:00+00:00", - "title": "World's First Partial Heart Transplant Grows Valves and Arteries", - "link": "https://science.slashdot.org/story/24/01/04/2245251/worlds-first-partial-heart-transplant-grows-valves-and-arteries?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-05T03:30:00+00:00", - "content": "An anonymous reader quotes a report from Interesting Engineering: Marking a significant advancement in medical science, the world's first partial heart transplant has achieved the expected outcome after over a year of research efforts. Carried out by Duke Health, the patient, a young individual, now exhibits functioning valves and arteries that are growing in tandem with the transplant, as initially expected by the medical team. In spring 2022, doctors carried out the procedure on a baby who needed a new heart valve. Before, they used non-living valves, which didn't grow with the child. This meant the child needed frequent replacements, and the surgeries had a 50 percent chance of being deadly. The new procedure avoids these problems, according to the team.\n \nBabies with serious heart valve problems face a tough challenge because there aren't any implants that can grow with them. So, these babies end up needing new implants over and over until they're big enough for an adult-sized valve. It's a problem that doesn't have a solution yet. Duke Health doctors, leading a study published in the Journal of the American Medical Association, discovered that the innovative valve collection method used in the partial heart transplant resulted in two properly functioning valves and arteries that are growing along with the child, resembling natural blood vessels. \"This publication is proof that this technology works, this idea works, and can be used to help other children,\" said Joseph W. Turek, first author of the study and Duke's chief of pediatric cardiac surgery, in a statement. The research also notes that the new procedure requires less immunosuppressant medication, reducing potential long-term side effects.\n \nIt also facilitates a \"domino transplant\" method, where one donor heart benefits multiple patients, potentially doubling the number of hearts available for children with heart disease by utilizing previously unused hearts and valves.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Interesting Engineering: Marking a significant advancement in medical science, the world's first partial heart transplant has achieved the expected outcome after over a year of research efforts. Carried out by Duke Health, the patient, a young individual, now exhibits functioning valves and arteries that are growing in tandem with the transplant, as initially expected by the medical team. In spring 2022, doctors carried out the procedure on a baby who needed a new heart valve. Before, they used non-living valves, which didn't grow with the child. This meant the child needed frequent replacements, and the surgeries had a 50 percent chance of being deadly. The new procedure avoids these problems, according to the team.\n \nBabies with serious heart valve problems face a tough challenge because there aren't any implants that can grow with them. So, these babies end up needing new implants over and over until they're big enough for an adult-sized valve. It's a problem that doesn't have a solution yet. Duke Health doctors, leading a study published in the Journal of the American Medical Association, discovered that the innovative valve collection method used in the partial heart transplant resulted in two properly functioning valves and arteries that are growing along with the child, resembling natural blood vessels. \"This publication is proof that this technology works, this idea works, and can be used to help other children,\" said Joseph W. Turek, first author of the study and Duke's chief of pediatric cardiac surgery, in a statement. The research also notes that the new procedure requires less immunosuppressant medication, reducing potential long-term side effects.\n \nIt also facilitates a \"domino transplant\" method, where one donor heart benefits multiple patients, potentially doubling the number of hearts available for children with heart disease by utilizing previously unused hearts and valves.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/04/2245251/worlds-first-partial-heart-transplant-grows-valves-and-arteries?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T03:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-05T02:02:00+00:00", - "title": "AI-Assisted Bug Reports Are Seriously Annoying For Developers", - "link": "https://it.slashdot.org/story/24/01/04/2230246/ai-assisted-bug-reports-are-seriously-annoying-for-developers?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-05T02:02:00+00:00", - "content": "Generative AI models like Google Bard and GitHub Copilot are increasingly being used in various industries, but users often overlook their limitations, leading to serious errors and inefficiencies. Daniel Stenberg of curl and libcurl highlights a specific problem of AI-generated security reports: when reports are made to look better and to appear to have a point, it takes a longer time to research and eventually discard it. \"Every security report has to have a human spend time to look at it and assess what it means,\" adds Stenberg. \"The better the crap, the longer time and the more energy we have to spend on the report until we close it.\" The Register reports: The curl project offers a bug bounty to security researchers who find and report legitimate vulnerabilities. According to Stenberg, the program has paid out over $70,000 in rewards to date. Of 415 vulnerability reports received, 64 have been confirmed as security flaws and 77 have been deemed informative -- bugs without obvious security implications. So about 66 percent of the reports have been invalid. The issue for Stenberg is that these reports still need to be investigated and that takes developer time. And while those submitting bug reports have begun using AI tools to accelerate the process of finding supposed bugs and writing up reports, those reviewing bug reports still rely on human review. The result of this asymmetry is more plausible-sounding reports, because chatbot models can produce detailed, readable text without regard to accuracy.\n \nAs Stenberg puts it, AI produces better crap. \"A crap report does not help the project at all. It instead takes away developer time and energy from something productive. Partly because security work is considered one of the most important areas so it tends to trump almost everything else.\" As examples, he cites two reports submitted to HackerOne, a vulnerability reporting community. One claimed to describe Curl CVE-2023-38545 prior to actual disclosure. But Stenberg had to post to the forum to make clear that the bug report was bogus. He said that the report, produced with the help of Google Bard, \"reeks of typical AI style hallucinations: it mixes and matches facts and details from old security issues, creating and making up something new that has no connection with reality.\" [...]\n \nStenberg readily acknowledges that AI assistance can be genuinely helpful. But he argues that having a human in the loop makes the use and outcome of AI tools much better. Even so, he expects the ease and utility of these tools, coupled with the financial incentive of bug bounties, will lead to more shoddy LLM-generated security reports, to the detriment of those on the receiving end.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Generative AI models like Google Bard and GitHub Copilot are increasingly being used in various industries, but users often overlook their limitations, leading to serious errors and inefficiencies. Daniel Stenberg of curl and libcurl highlights a specific problem of AI-generated security reports: when reports are made to look better and to appear to have a point, it takes a longer time to research and eventually discard it. \"Every security report has to have a human spend time to look at it and assess what it means,\" adds Stenberg. \"The better the crap, the longer time and the more energy we have to spend on the report until we close it.\" The Register reports: The curl project offers a bug bounty to security researchers who find and report legitimate vulnerabilities. According to Stenberg, the program has paid out over $70,000 in rewards to date. Of 415 vulnerability reports received, 64 have been confirmed as security flaws and 77 have been deemed informative -- bugs without obvious security implications. So about 66 percent of the reports have been invalid. The issue for Stenberg is that these reports still need to be investigated and that takes developer time. And while those submitting bug reports have begun using AI tools to accelerate the process of finding supposed bugs and writing up reports, those reviewing bug reports still rely on human review. The result of this asymmetry is more plausible-sounding reports, because chatbot models can produce detailed, readable text without regard to accuracy.\n \nAs Stenberg puts it, AI produces better crap. \"A crap report does not help the project at all. It instead takes away developer time and energy from something productive. Partly because security work is considered one of the most important areas so it tends to trump almost everything else.\" As examples, he cites two reports submitted to HackerOne, a vulnerability reporting community. One claimed to describe Curl CVE-2023-38545 prior to actual disclosure. But Stenberg had to post to the forum to make clear that the bug report was bogus. He said that the report, produced with the help of Google Bard, \"reeks of typical AI style hallucinations: it mixes and matches facts and details from old security issues, creating and making up something new that has no connection with reality.\" [...]\n \nStenberg readily acknowledges that AI assistance can be genuinely helpful. But he argues that having a human in the loop makes the use and outcome of AI tools much better. Even so, he expects the ease and utility of these tools, coupled with the financial incentive of bug bounties, will lead to more shoddy LLM-generated security reports, to the detriment of those on the receiving end.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/24/01/04/2230246/ai-assisted-bug-reports-are-seriously-annoying-for-developers?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T02:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-05T01:25:00+00:00", - "title": "Qualcomm's New VR Chip Competes Directly With Vision Pro, Much Cheaper Headsets", - "link": "https://hardware.slashdot.org/story/24/01/04/2222230/qualcomms-new-vr-chip-competes-directly-with-vision-pro-much-cheaper-headsets?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-05T01:25:00+00:00", - "content": "Qualcomm today unveiled a new Snapdragon XR2+ Gen 2 chipset, a single-chip architecture that will likely power Apple Vision Pro competitors from Meta, Samsung, Google and HTC, among others. ZDNet reports: Succeeding last year's XR2 Gen 2, the plus variant brings improved GPU and CPU frequency -- up 15% and 20% respectively, support for 4.3K per eye resolution at 90fps, and the ability for headsets to field 12 or more cameras with on-device AI capabilities. The latter allows equipped models to better track user movements and surrounding objects for more immersive (and harmonious) VR and MR experiences. As for efficiency gains, you'll still be getting the 50% improvement as the previous XR2 Gen 2 when stacked against the XR2 Gen 1 platform. Basically, there's no change on that front.\n \n\"(Snapdragon XR2+ Gen 2) will take XR productivity and entertainment to the next level by bringing spectacularly clear visuals to use cases such as room-scale screens, life-size overlays and virtual desktops,\" said Hugo Swart, vice president and general manager of XR, Qualcomm Technologies, Inc, in a Thursday press release. Clearly, the new silicon is aimed at headsets that can do it all -- with feature parity to the $3,500 gorilla in the room, Apple's upcoming Vision Pro headset -- though Qualcomm says it'll be priced accessibly for manufacturers to build hardware around.\n \nHow affordable will these competing wearables be? Your guess is as good as mine. But considering we've already gotten products like the $500 Meta Quest 3 fielding the slightly less capable XR2 Gen 2 chip, the future of XR may not be as expensive as it seems. The new Snapdragon XR2+ Gen 2 chipset is made in collaboration with Google and Samsung, both of which bring expertise in the Android ecosystem and developing mobile VR devices. The trio had announced plans to develop an XR platform back in February of 2023, likely in reaction to the then-rumored headset by Apple.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Qualcomm today unveiled a new Snapdragon XR2+ Gen 2 chipset, a single-chip architecture that will likely power Apple Vision Pro competitors from Meta, Samsung, Google and HTC, among others. ZDNet reports: Succeeding last year's XR2 Gen 2, the plus variant brings improved GPU and CPU frequency -- up 15% and 20% respectively, support for 4.3K per eye resolution at 90fps, and the ability for headsets to field 12 or more cameras with on-device AI capabilities. The latter allows equipped models to better track user movements and surrounding objects for more immersive (and harmonious) VR and MR experiences. As for efficiency gains, you'll still be getting the 50% improvement as the previous XR2 Gen 2 when stacked against the XR2 Gen 1 platform. Basically, there's no change on that front.\n \n\"(Snapdragon XR2+ Gen 2) will take XR productivity and entertainment to the next level by bringing spectacularly clear visuals to use cases such as room-scale screens, life-size overlays and virtual desktops,\" said Hugo Swart, vice president and general manager of XR, Qualcomm Technologies, Inc, in a Thursday press release. Clearly, the new silicon is aimed at headsets that can do it all -- with feature parity to the $3,500 gorilla in the room, Apple's upcoming Vision Pro headset -- though Qualcomm says it'll be priced accessibly for manufacturers to build hardware around.\n \nHow affordable will these competing wearables be? Your guess is as good as mine. But considering we've already gotten products like the $500 Meta Quest 3 fielding the slightly less capable XR2 Gen 2 chip, the future of XR may not be as expensive as it seems. The new Snapdragon XR2+ Gen 2 chipset is made in collaboration with Google and Samsung, both of which bring expertise in the Android ecosystem and developing mobile VR devices. The trio had announced plans to develop an XR platform back in February of 2023, likely in reaction to the then-rumored headset by Apple.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/24/01/04/2222230/qualcomms-new-vr-chip-competes-directly-with-vision-pro-much-cheaper-headsets?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T01:25:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-05T00:45:00+00:00", - "title": "US Pay-TV Subscriber Base Eroding At Record Pace", - "link": "https://entertainment.slashdot.org/story/24/01/04/2213256/us-pay-tv-subscriber-base-eroding-at-record-pace?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-05T00:45:00+00:00", - "content": "According to MoffettNathanson, the U.S. pay-TV industry had its worst-ever third quarter after losing about 900,000 subscribers. \"That poor result, the research firm added, left the total pay-TV industry shrinking at a record pace of -7.3%, widened from a year-ago decline of -5.9%,\" reports Light Reading. \"It also left pay-TV penetration of occupied households (including vMVPDs) at just 54.8% -- a level last seen in 1989, five years before the debut of DirecTV.\" From the report: Drilling down on Q3 results, traditional pay-TV providers (cable, telco and satellite) shed 1.97 million subscribers, widened from a loss of 1.94 million in the year-ago quarter. Within that category, US cable lost 1.10 million video subs in Q3, versus a loss of -1.09 million in the year-ago period. Satellite operators (Dish Network and DirecTV) lost 667,000 subs in Q3, versus -567,000 in the year-ago quarter. Telco TV providers lost 198,000 video subs in the period, an improvement when compared to a year-ago loss of -250,000 subs.\n \nvMVPDs, meanwhile, added 1.08 million in Q3, down from a year-ago gain of about 1.34 million. Despite those gains, vMVPDs recaptured only 21.7% of traditional pay-TV's subscriber losses in the period, according to MoffettNathanson. Meanwhile, YouTube TV continues to dominate the vMVPD category. MoffettNathanson estimates that YouTube TV added about 350,000 subs in Q3, extending its total to 7 million -- representing 40% of the vMVPD sector's 18 million subscriber total. \"Based on our Q3 estimate, YouTube TV has now surpassed Dish Network [6.72 million satellite TV subs at the end of Q3] to become the country's fourth largest MVPD of any kind,\" Moffett noted. \"At the current trajectory, YouTube TV should pass DirecTV for third place in less than a year.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "According to MoffettNathanson, the U.S. pay-TV industry had its worst-ever third quarter after losing about 900,000 subscribers. \"That poor result, the research firm added, left the total pay-TV industry shrinking at a record pace of -7.3%, widened from a year-ago decline of -5.9%,\" reports Light Reading. \"It also left pay-TV penetration of occupied households (including vMVPDs) at just 54.8% -- a level last seen in 1989, five years before the debut of DirecTV.\" From the report: Drilling down on Q3 results, traditional pay-TV providers (cable, telco and satellite) shed 1.97 million subscribers, widened from a loss of 1.94 million in the year-ago quarter. Within that category, US cable lost 1.10 million video subs in Q3, versus a loss of -1.09 million in the year-ago period. Satellite operators (Dish Network and DirecTV) lost 667,000 subs in Q3, versus -567,000 in the year-ago quarter. Telco TV providers lost 198,000 video subs in the period, an improvement when compared to a year-ago loss of -250,000 subs.\n \nvMVPDs, meanwhile, added 1.08 million in Q3, down from a year-ago gain of about 1.34 million. Despite those gains, vMVPDs recaptured only 21.7% of traditional pay-TV's subscriber losses in the period, according to MoffettNathanson. Meanwhile, YouTube TV continues to dominate the vMVPD category. MoffettNathanson estimates that YouTube TV added about 350,000 subs in Q3, extending its total to 7 million -- representing 40% of the vMVPD sector's 18 million subscriber total. \"Based on our Q3 estimate, YouTube TV has now surpassed Dish Network [6.72 million satellite TV subs at the end of Q3] to become the country's fourth largest MVPD of any kind,\" Moffett noted. \"At the current trajectory, YouTube TV should pass DirecTV for third place in less than a year.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://entertainment.slashdot.org/story/24/01/04/2213256/us-pay-tv-subscriber-base-eroding-at-record-pace?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T00:45:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-05T00:02:00+00:00", - "title": "ChatGPT Bombs Test On Diagnosing Kids' Medical Cases With 83% Error Rate", - "link": "https://science.slashdot.org/story/24/01/04/2038233/chatgpt-bombs-test-on-diagnosing-kids-medical-cases-with-83-error-rate?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-05T00:02:00+00:00", - "content": "An anonymous reader quotes a report from Ars Technica: ChatGPT is still no House, MD. While the chatty AI bot has previously underwhelmed with its attempts to diagnose challenging medical cases -- with an accuracy rate of 39 percent in an analysis last year -- a study out this week in JAMA Pediatrics suggests the fourth version of the large language model is especially bad with kids. It had an accuracy rate of just 17 percent when diagnosing pediatric medical cases. The low success rate suggests human pediatricians won't be out of jobs any time soon, in case that was a concern. As the authors put it: \"[T]his study underscores the invaluable role that clinical experience holds.\" But it also identifies the critical weaknesses that led to ChatGPT's high error rate and ways to transform it into a useful tool in clinical care. With so much interest and experimentation with AI chatbots, many pediatricians and other doctors see their integration into clinical care as inevitable. [...]\n \nFor ChatGPT's test, the researchers pasted the relevant text of the medical cases into the prompt, and then two qualified physician-researchers scored the AI-generated answers as correct, incorrect, or \"did not fully capture the diagnosis.\" In the latter case, ChatGPT came up with a clinically related condition that was too broad or unspecific to be considered the correct diagnosis. For instance, ChatGPT diagnosed one child's case as caused by a branchial cleft cyst -- a lump in the neck or below the collarbone -- when the correct diagnosis was Branchio-oto-renal syndrome, a genetic condition that causes the abnormal development of tissue in the neck, and malformations in the ears and kidneys. One of the signs of the condition is the formation of branchial cleft cysts. Overall, ChatGPT got the right answer in just 17 of the 100 cases. It was plainly wrong in 72 cases, and did not fully capture the diagnosis of the remaining 11 cases. Among the 83 wrong diagnoses, 47 (57 percent) were in the same organ system.\n \nAmong the failures, researchers noted that ChatGPT appeared to struggle with spotting known relationships between conditions that an experienced physician would hopefully pick up on. For example, it didn't make the connection between autism and scurvy (Vitamin C deficiency) in one medical case. Neuropsychiatric conditions, such as autism, can lead to restricted diets, and that in turn can lead to vitamin deficiencies. As such, neuropsychiatric conditions are notable risk factors for the development of vitamin deficiencies in kids living in high-income countries, and clinicians should be on the lookout for them. ChatGPT, meanwhile, came up with the diagnosis of a rare autoimmune condition. Though the chatbot struggled in this test, the researchers suggest it could improve by being specifically and selectively trained on accurate and trustworthy medical literature -- not stuff on the Internet, which can include inaccurate information and misinformation. They also suggest chatbots could improve with more real-time access to medical data, allowing the models to refine their accuracy, described as \"tuning.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Ars Technica: ChatGPT is still no House, MD. While the chatty AI bot has previously underwhelmed with its attempts to diagnose challenging medical cases -- with an accuracy rate of 39 percent in an analysis last year -- a study out this week in JAMA Pediatrics suggests the fourth version of the large language model is especially bad with kids. It had an accuracy rate of just 17 percent when diagnosing pediatric medical cases. The low success rate suggests human pediatricians won't be out of jobs any time soon, in case that was a concern. As the authors put it: \"[T]his study underscores the invaluable role that clinical experience holds.\" But it also identifies the critical weaknesses that led to ChatGPT's high error rate and ways to transform it into a useful tool in clinical care. With so much interest and experimentation with AI chatbots, many pediatricians and other doctors see their integration into clinical care as inevitable. [...]\n \nFor ChatGPT's test, the researchers pasted the relevant text of the medical cases into the prompt, and then two qualified physician-researchers scored the AI-generated answers as correct, incorrect, or \"did not fully capture the diagnosis.\" In the latter case, ChatGPT came up with a clinically related condition that was too broad or unspecific to be considered the correct diagnosis. For instance, ChatGPT diagnosed one child's case as caused by a branchial cleft cyst -- a lump in the neck or below the collarbone -- when the correct diagnosis was Branchio-oto-renal syndrome, a genetic condition that causes the abnormal development of tissue in the neck, and malformations in the ears and kidneys. One of the signs of the condition is the formation of branchial cleft cysts. Overall, ChatGPT got the right answer in just 17 of the 100 cases. It was plainly wrong in 72 cases, and did not fully capture the diagnosis of the remaining 11 cases. Among the 83 wrong diagnoses, 47 (57 percent) were in the same organ system.\n \nAmong the failures, researchers noted that ChatGPT appeared to struggle with spotting known relationships between conditions that an experienced physician would hopefully pick up on. For example, it didn't make the connection between autism and scurvy (Vitamin C deficiency) in one medical case. Neuropsychiatric conditions, such as autism, can lead to restricted diets, and that in turn can lead to vitamin deficiencies. As such, neuropsychiatric conditions are notable risk factors for the development of vitamin deficiencies in kids living in high-income countries, and clinicians should be on the lookout for them. ChatGPT, meanwhile, came up with the diagnosis of a rare autoimmune condition. Though the chatbot struggled in this test, the researchers suggest it could improve by being specifically and selectively trained on accurate and trustworthy medical literature -- not stuff on the Internet, which can include inaccurate information and misinformation. They also suggest chatbots could improve with more real-time access to medical data, allowing the models to refine their accuracy, described as \"tuning.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/04/2038233/chatgpt-bombs-test-on-diagnosing-kids-medical-cases-with-83-error-rate?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T00:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T23:20:00+00:00", - "title": "Google Is Preparing a Paid Version of Bard", - "link": "https://tech.slashdot.org/story/24/01/04/211216/google-is-preparing-a-paid-version-of-bard?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T23:20:00+00:00", - "content": "As spotted by X user bedros_p, Google appears to be preparing to introduce a paid upgrade for Bard Advanced, a \"new, cutting-edge AI experience\" announced in December that gives users access to Google's best models and capabilities. Android Police reports: According to the strings, you will be able to \"Try Bard Advanced for 3 months, on us.\" After that test period, you will likely have to pay up for the service. A defunct link within the code suggests that it may be part of Google One, but it's not clear if Bard Advanced will be added to all tiers or only more expensive ones with more Google Drive storage. It's also possible that it will be an extra new tier in Google One.\n \nAs a refresher, Google launched its most capable AI model yet in December 2023, called Gemini. The LLM is available in three tiers, including a Nano version capable of running on devices like phones and a Pro version currently powering Bard in the US. There is also a Gemini Ultra which isn't public just yet, but supposedly outperforms other LLMs in almost all metrics. Google says that this is the one that will power Bard Advanced.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "As spotted by X user bedros_p, Google appears to be preparing to introduce a paid upgrade for Bard Advanced, a \"new, cutting-edge AI experience\" announced in December that gives users access to Google's best models and capabilities. Android Police reports: According to the strings, you will be able to \"Try Bard Advanced for 3 months, on us.\" After that test period, you will likely have to pay up for the service. A defunct link within the code suggests that it may be part of Google One, but it's not clear if Bard Advanced will be added to all tiers or only more expensive ones with more Google Drive storage. It's also possible that it will be an extra new tier in Google One.\n \nAs a refresher, Google launched its most capable AI model yet in December 2023, called Gemini. The LLM is available in three tiers, including a Nano version capable of running on devices like phones and a Pro version currently powering Bard in the US. There is also a Gemini Ultra which isn't public just yet, but supposedly outperforms other LLMs in almost all metrics. Google says that this is the one that will power Bard Advanced.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/04/211216/google-is-preparing-a-paid-version-of-bard?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T23:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T22:40:00+00:00", - "title": "AMD Proposes An FPGA Subsystem User-Space Interface For Linux", - "link": "https://linux.slashdot.org/story/24/01/04/2050232/amd-proposes-an-fpga-subsystem-user-space-interface-for-linux?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T22:40:00+00:00", - "content": "Michael Larabel reports via Phoronix: AMD engineers are proposing an FPGA Subsystem User-Space Interface to overcome current limitations of the Linux kernel's FPGA manager subsystem. AMD-Xilinx engineers are proposing a new sysfs interface for the FPGA subsystem that allows for more user-space control over FPGAs. The suggested interface would handle FPGA configuration, driver probe/remove, bridges, Device Tree Overlay file support for re-programming an FPGA while the operating system is running, and other capabilities for user-space not currently presented by the mainline kernel. [...] This proposal from AMD hopes to standardize the FPGA subsystem user-space interface in a manner that is suitable for upstreaming into the mainline Linux kernel.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Michael Larabel reports via Phoronix: AMD engineers are proposing an FPGA Subsystem User-Space Interface to overcome current limitations of the Linux kernel's FPGA manager subsystem. AMD-Xilinx engineers are proposing a new sysfs interface for the FPGA subsystem that allows for more user-space control over FPGAs. The suggested interface would handle FPGA configuration, driver probe/remove, bridges, Device Tree Overlay file support for re-programming an FPGA while the operating system is running, and other capabilities for user-space not currently presented by the mainline kernel. [...] This proposal from AMD hopes to standardize the FPGA subsystem user-space interface in a manner that is suitable for upstreaming into the mainline Linux kernel.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://linux.slashdot.org/story/24/01/04/2050232/amd-proposes-an-fpga-subsystem-user-space-interface-for-linux?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T22:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-04T22:02:00+00:00", - "title": "UCLA Will Transform Dead Westside Mall Into Major Science Innovation Center", - "link": "https://news.slashdot.org/story/24/01/04/2045257/ucla-will-transform-dead-westside-mall-into-major-science-innovation-center?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-04T22:02:00+00:00", - "content": "An anonymous reader quotes a report from the Los Angeles Times: The former Westside Pavilion, a long shuttered indoor mall, will be transformed into a UCLA biomedical research center aimed at tackling such towering challenges as curing cancer and preventing global pandemics, officials announced Wednesday. The sprawling three-story structure will be known as the UCLA Research Park and will house two multidisciplinary centers focusing on immunology and immunotherapy as well as quantum science and engineering. Establishment of the public-private research center is a coup for Southern California that \"will cement California's global, economic, scientific and technical dominance into the 22nd century and beyond,\" said Gov. Gavin Newsom.\n \nThe former owners of the mall, Hudson Pacific Properties Inc. and Macerich, said Wednesday that they sold the property to the Regents of the University of California for $700 million. By purchasing the former shopping center, UCLA saved several years of potential toil to build such a facility on campus. UCLA is the most-applied-to university in the nation, but its Westwood home is among the smallest of the nine UC undergraduate campuses, leaving it limited room for growth. The former mall sits on prime real estate in the heart of the Westside at Pico Boulevard and Overland Avenue, about two miles from the UCLA campus. The mall was owned by commercial developers who spent hundreds of millions of dollars to dramatically remake the old shopping center into an office complex intended to appeal to technology firms, which signed some of the biggest office leases in L.A.'s Silicon Beach before the pandemic.\n \nGoogle agreed to become the sole tenant and began paying rent last year yet never moved in. The interior is mostly unfinished, but is ready for UCLA to build out to its specifications in a process Newsom said would take about 40 months. The UCLA Research Park \"will serve as a state of the art hub of research and innovation that will bring together academics, corporate partners, government agencies and startups to explore new areas of inquiry and achieve breakthroughs that serve the common good,\" UCLA Chancellor Gene Block said. In addition to flexible work areas, the former mall's 12-screen multiplex movie theater may be converted into lecture halls or performance spaces offering programming across the arts, humanities, sciences and social sciences, the chancellor's office said. One tenant of the research park will be the new California Institute for Immunology and Immunotherapy.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from the Los Angeles Times: The former Westside Pavilion, a long shuttered indoor mall, will be transformed into a UCLA biomedical research center aimed at tackling such towering challenges as curing cancer and preventing global pandemics, officials announced Wednesday. The sprawling three-story structure will be known as the UCLA Research Park and will house two multidisciplinary centers focusing on immunology and immunotherapy as well as quantum science and engineering. Establishment of the public-private research center is a coup for Southern California that \"will cement California's global, economic, scientific and technical dominance into the 22nd century and beyond,\" said Gov. Gavin Newsom.\n \nThe former owners of the mall, Hudson Pacific Properties Inc. and Macerich, said Wednesday that they sold the property to the Regents of the University of California for $700 million. By purchasing the former shopping center, UCLA saved several years of potential toil to build such a facility on campus. UCLA is the most-applied-to university in the nation, but its Westwood home is among the smallest of the nine UC undergraduate campuses, leaving it limited room for growth. The former mall sits on prime real estate in the heart of the Westside at Pico Boulevard and Overland Avenue, about two miles from the UCLA campus. The mall was owned by commercial developers who spent hundreds of millions of dollars to dramatically remake the old shopping center into an office complex intended to appeal to technology firms, which signed some of the biggest office leases in L.A.'s Silicon Beach before the pandemic.\n \nGoogle agreed to become the sole tenant and began paying rent last year yet never moved in. The interior is mostly unfinished, but is ready for UCLA to build out to its specifications in a process Newsom said would take about 40 months. The UCLA Research Park \"will serve as a state of the art hub of research and innovation that will bring together academics, corporate partners, government agencies and startups to explore new areas of inquiry and achieve breakthroughs that serve the common good,\" UCLA Chancellor Gene Block said. In addition to flexible work areas, the former mall's 12-screen multiplex movie theater may be converted into lecture halls or performance spaces offering programming across the arts, humanities, sciences and social sciences, the chancellor's office said. One tenant of the research park will be the new California Institute for Immunology and Immunotherapy.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/04/2045257/ucla-will-transform-dead-westside-mall-into-major-science-innovation-center?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T22:02:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-04T21:21:00+00:00", - "title": "All Science Journals Will Now Do an AI-Powered Check for Image Fraud", - "link": "https://science.slashdot.org/story/24/01/04/2022245/all-science-journals-will-now-do-an-ai-powered-check-for-image-fraud?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-04T21:21:00+00:00", - "content": "The research publisher Science announced today that all of its journals will begin using commercial software that automates the process of detecting improperly manipulated images. From a report: The move comes many years into our awareness that the transition to digital data and publishing has made it comically easy to commit research fraud by altering images. While the move is a significant first step, it's important to recognize the software's limitations. While it will catch some of the most egregious cases of image manipulation, enterprising fraudsters can easily avoid being caught if they know how the software operates. Which, unfortunately, we feel compelled to describe (and, to be fair, the company that has developed the software does so on its website). \n\nMuch of the image-based fraud we've seen arises from a dilemma faced by many scientists: It's not a problem to run experiments, but the data they generate often isn't the data you want. Maybe only the controls work, or maybe the experiments produce data that is indistinguishable from controls. For the unethical, this doesn't pose a problem since nobody other than you knows what images come from which samples. It's relatively simple to present images of real data as something they're not. To make this concrete, we can look at data from a procedure called a western blot, which uses antibodies to identify specific proteins from a complex mixture that has been separated according to protein size. Typical western blot data looks like the image at right, with the darkness of the bands representing proteins that are present at different levels in different conditions.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The research publisher Science announced today that all of its journals will begin using commercial software that automates the process of detecting improperly manipulated images. From a report: The move comes many years into our awareness that the transition to digital data and publishing has made it comically easy to commit research fraud by altering images. While the move is a significant first step, it's important to recognize the software's limitations. While it will catch some of the most egregious cases of image manipulation, enterprising fraudsters can easily avoid being caught if they know how the software operates. Which, unfortunately, we feel compelled to describe (and, to be fair, the company that has developed the software does so on its website). \n\nMuch of the image-based fraud we've seen arises from a dilemma faced by many scientists: It's not a problem to run experiments, but the data they generate often isn't the data you want. Maybe only the controls work, or maybe the experiments produce data that is indistinguishable from controls. For the unethical, this doesn't pose a problem since nobody other than you knows what images come from which samples. It's relatively simple to present images of real data as something they're not. To make this concrete, we can look at data from a procedure called a western blot, which uses antibodies to identify specific proteins from a complex mixture that has been separated according to protein size. Typical western blot data looks like the image at right, with the darkness of the bands representing proteins that are present at different levels in different conditions.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/04/2022245/all-science-journals-will-now-do-an-ai-powered-check-for-image-fraud?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T21:21:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-04T20:44:00+00:00", - "title": "Microsoft's Xbox Series S Toaster Goes on Sale", - "link": "https://games.slashdot.org/story/24/01/04/2020226/microsofts-xbox-series-s-toaster-goes-on-sale?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-04T20:44:00+00:00", - "content": "An anonymous reader shares a report: Both of Microsoft's current Xbox consoles now have kitchen appliance counterparts. The Xbox Series S toaster recently debuted, following up the Xbox Series X refrigerator. It's available for purchase from Walmart for $39.99. In place of its ability to connect to a TV and play games, it can toast bread or bagels, imprinting the Xbox logo onto its side with its internal heat coils. The Series S toaster has a slot long enough to fit two slices of bread side by side, which I suppose can be considered multiplayer support if the bread is for two people. As with most toasters, this one has different toast browning levels, a removeable crumb tray, a bread ejection function, and automatic shutoff.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader shares a report: Both of Microsoft's current Xbox consoles now have kitchen appliance counterparts. The Xbox Series S toaster recently debuted, following up the Xbox Series X refrigerator. It's available for purchase from Walmart for $39.99. In place of its ability to connect to a TV and play games, it can toast bread or bagels, imprinting the Xbox logo onto its side with its internal heat coils. The Series S toaster has a slot long enough to fit two slices of bread side by side, which I suppose can be considered multiplayer support if the bread is for two people. As with most toasters, this one has different toast browning levels, a removeable crumb tray, a bread ejection function, and automatic shutoff.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/24/01/04/2020226/microsofts-xbox-series-s-toaster-goes-on-sale?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T20:44:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-04T20:07:00+00:00", - "title": "Law Firm That Handles Data Breaches Was Hit By Data Breach", - "link": "https://it.slashdot.org/story/24/01/04/208204/law-firm-that-handles-data-breaches-was-hit-by-data-breach?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-04T20:07:00+00:00", - "content": "An international law firm that works with companies affected by security incidents has experienced its own cyberattack that exposed the sensitive health information of hundreds of thousands of data breach victims. From a report: San Francisco-based Orrick, Herrington & Sutcliffe said last week that hackers stole the personal information and sensitive health data of more than 637,000 data breach victims from a file share on its network during an intrusion in March 2023. Orrick works with companies that are hit by security incidents, including data breaches, to handle regulatory requirements, such as obtaining victims' information in order to notify state authorities and the individuals affected. In a series of data breach notification letters sent to affected individuals, Orrick said the hackers stole reams of data from its systems that pertain to security incidents at other companies, during which Orrick served as legal counsel.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An international law firm that works with companies affected by security incidents has experienced its own cyberattack that exposed the sensitive health information of hundreds of thousands of data breach victims. From a report: San Francisco-based Orrick, Herrington & Sutcliffe said last week that hackers stole the personal information and sensitive health data of more than 637,000 data breach victims from a file share on its network during an intrusion in March 2023. Orrick works with companies that are hit by security incidents, including data breaches, to handle regulatory requirements, such as obtaining victims' information in order to notify state authorities and the individuals affected. In a series of data breach notification letters sent to affected individuals, Orrick said the hackers stole reams of data from its systems that pertain to security incidents at other companies, during which Orrick served as legal counsel.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/24/01/04/208204/law-firm-that-handles-data-breaches-was-hit-by-data-breach?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T20:07:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-04T19:23:00+00:00", - "title": "Starbucks Accused of Rigging Payments in App For Nearly $900 Million Gain Over 5 Years by Consumer Watchdog Group", - "link": "https://it.slashdot.org/story/24/01/04/198251/starbucks-accused-of-rigging-payments-in-app-for-nearly-900-million-gain-over-5-years-by-consumer-watchdog-group?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-04T19:23:00+00:00", - "content": "A consumer action group is accusing Starbucks of exploiting customers via its gift card and app payments, forcing them to enter a spending cycle where they will never be able to fully spend the remaining balance of prepaid amounts. From a report: The Washington Consumer Protection Coalition, a self-described \"movement of everyday consumers advocating for corporate accountability,\" is calling on the state attorney general to investigate whether the company's policies violate consumer protection laws. \n\n\"Starbucks rigs its payment platform so consumers are encouraged to leave unspent money on their cards and apps,\" said Chris Carter, campaign manager for the group, in a statement. \"A few dollars here and there left on a payment platform may not sound like a lot but it adds up. Over the last five years Starbucks has claimed nearly $900 million in unspent gift card and app money as corporate revenue, boosting corporate profits and inflating executive bonuses.\" \n\n[...] The group, in a 15-page complaint, alleges the platforms for Starbucks' mobile app and digital payment cards are akin to an \"involuntary subscription.\" Customers can only reload money in $5 increments, with a $10 minimum purchase. That, the group says, prevents customers from ever reaching a zero balance, meaning Starbucks pockets more of the customer's money. The Coalition does concede that customers can reload their accounts in stores for a custom amount of $5 or more, making it easier to hit a zero balance.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "A consumer action group is accusing Starbucks of exploiting customers via its gift card and app payments, forcing them to enter a spending cycle where they will never be able to fully spend the remaining balance of prepaid amounts. From a report: The Washington Consumer Protection Coalition, a self-described \"movement of everyday consumers advocating for corporate accountability,\" is calling on the state attorney general to investigate whether the company's policies violate consumer protection laws. \n\n\"Starbucks rigs its payment platform so consumers are encouraged to leave unspent money on their cards and apps,\" said Chris Carter, campaign manager for the group, in a statement. \"A few dollars here and there left on a payment platform may not sound like a lot but it adds up. Over the last five years Starbucks has claimed nearly $900 million in unspent gift card and app money as corporate revenue, boosting corporate profits and inflating executive bonuses.\" \n\n[...] The group, in a 15-page complaint, alleges the platforms for Starbucks' mobile app and digital payment cards are akin to an \"involuntary subscription.\" Customers can only reload money in $5 increments, with a $10 minimum purchase. That, the group says, prevents customers from ever reaching a zero balance, meaning Starbucks pockets more of the customer's money. The Coalition does concede that customers can reload their accounts in stores for a custom amount of $5 or more, making it easier to hit a zero balance.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/24/01/04/198251/starbucks-accused-of-rigging-payments-in-app-for-nearly-900-million-gain-over-5-years-by-consumer-watchdog-group?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-04T19:23:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-05T14:00:00+00:00", - "title": "Mexican Cartel Provided Wi-Fi To Locals - With Threat of Death If They Didn't Use It", - "link": "https://yro.slashdot.org/story/24/01/05/1256226/mexican-cartel-provided-wi-fi-to-locals---with-threat-of-death-if-they-didnt-use-it?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-05T14:00:00+00:00", - "content": "A cartel in the embattled central Mexico state of Michoacan set up its own makeshift internet antennas and told locals they had to pay to use its wifi service or they would be killed, according to prosecutors. New submitter awwshit shares a story: Dubbed \"narco-antennas\" by local media, the cartel's system involved internet antennas set up in various towns built with stolen equipment. The group charged approximately 5,000 people elevated prices between 400 and 500 pesos ($25 and $30) a month, the Michoacan state prosecutor's office told the Associated Press. That meant the group could rake in about $150,000 a month. People were terrorized \"to contract the internet services at excessive costs, under the claim that they would be killed if they did not,\" prosecutors said, though they did not report any such deaths. Local media identified the criminal group as a faction known as Los Viagras. Prosecutors declined to say which cartel was involved because the case was still under investigation, but they confirmed Los Viagras dominates the towns forced to make the wifi payments.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "A cartel in the embattled central Mexico state of Michoacan set up its own makeshift internet antennas and told locals they had to pay to use its wifi service or they would be killed, according to prosecutors. New submitter awwshit shares a story: Dubbed \"narco-antennas\" by local media, the cartel's system involved internet antennas set up in various towns built with stolen equipment. The group charged approximately 5,000 people elevated prices between 400 and 500 pesos ($25 and $30) a month, the Michoacan state prosecutor's office told the Associated Press. That meant the group could rake in about $150,000 a month. People were terrorized \"to contract the internet services at excessive costs, under the claim that they would be killed if they did not,\" prosecutors said, though they did not report any such deaths. Local media identified the criminal group as a faction known as Los Viagras. Prosecutors declined to say which cartel was involved because the case was still under investigation, but they confirmed Los Viagras dominates the towns forced to make the wifi payments.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/05/1256226/mexican-cartel-provided-wi-fi-to-locals---with-threat-of-death-if-they-didnt-use-it?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T14:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-05T16:00:00+00:00", - "title": "Google Contractor Pays Parents $50 To Scan Their Childrens' Faces", - "link": "https://tech.slashdot.org/story/24/01/05/1431236/google-contractor-pays-parents-50-to-scan-their-childrens-faces?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-05T16:00:00+00:00", - "content": "Google is collecting the eyelid shape and skin tone of children via parent submitted videos, according to a project description online reviewed by 404 Media. From the report: Canadian tech conglomerate TELUS, which says it is working on Google's behalf, is offering parents $50 to film their children wearing various props such as hats or sunglasses as part of the project, the description adds. The project shows the methods some companies are using to build machine learning, artificial intelligence, or facial recognition datasets and products. Rather than scraping already existing images or analyzing previously collected material, TELUS, and by extension Google, is asking the public to contribute directly and get paid in return. Google told 404 Media the collection was part of the company's efforts to verify users' age.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google is collecting the eyelid shape and skin tone of children via parent submitted videos, according to a project description online reviewed by 404 Media. From the report: Canadian tech conglomerate TELUS, which says it is working on Google's behalf, is offering parents $50 to film their children wearing various props such as hats or sunglasses as part of the project, the description adds. The project shows the methods some companies are using to build machine learning, artificial intelligence, or facial recognition datasets and products. Rather than scraping already existing images or analyzing previously collected material, TELUS, and by extension Google, is asking the public to contribute directly and get paid in return. Google told 404 Media the collection was part of the company's efforts to verify users' age.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/05/1431236/google-contractor-pays-parents-50-to-scan-their-childrens-faces?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T16:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-05T15:20:00+00:00", - "title": "Netflix Considers Ways To Make Money From Videogames in Possible Pivot", - "link": "https://games.slashdot.org/story/24/01/05/1411245/netflix-considers-ways-to-make-money-from-videogames-in-possible-pivot?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-05T15:20:00+00:00", - "content": "Netflix has said it plans to be in gaming for years to come. Now the company is trying to figure out how to make money from it, a potential shift in strategy for the streamer. From a report: Executives at the streaming giant have had discussions in recent months about how to generate revenue from its games, according to people familiar with the discussions. Netflix games are currently free for all subscribers, part of a strategy to keep users coming back to the streaming service when their favorite shows are between seasons as well as to attract new fans. \n\nSome of the ideas that have been discussed include in-app purchases, charging for more sophisticated games it is developing or giving subscribers to its newer ad-supported tier access to games with ads in them, the people said. Such moves would mark a pivot for Netflix, which has resisted putting ads or in-app purchases in its games. [...] Netflix encourages open debate internally on its strategy, which is a key pillar of its culture, and such discussions don't mean the company will decide to monetize games.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Netflix has said it plans to be in gaming for years to come. Now the company is trying to figure out how to make money from it, a potential shift in strategy for the streamer. From a report: Executives at the streaming giant have had discussions in recent months about how to generate revenue from its games, according to people familiar with the discussions. Netflix games are currently free for all subscribers, part of a strategy to keep users coming back to the streaming service when their favorite shows are between seasons as well as to attract new fans. \n\nSome of the ideas that have been discussed include in-app purchases, charging for more sophisticated games it is developing or giving subscribers to its newer ad-supported tier access to games with ads in them, the people said. Such moves would mark a pivot for Netflix, which has resisted putting ads or in-app purchases in its games. [...] Netflix encourages open debate internally on its strategy, which is a key pillar of its culture, and such discussions don't mean the company will decide to monetize games.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/24/01/05/1411245/netflix-considers-ways-to-make-money-from-videogames-in-possible-pivot?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T15:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-05T14:40:00+00:00", - "title": "Design Startup InVision, Once Valued at $2B, Is Shutting Down", - "link": "https://slashdot.org/story/24/01/05/145241/design-startup-invision-once-valued-at-2b-is-shutting-down?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-05T14:40:00+00:00", - "content": "Design startup InVision, once valued at $2 billion, is shutting down at the end of this year, according to a company blog post Thursday. The business had raised more than $350 million from investors including Goldman Sachs and Spark Capital. From a report: Once a market leader in collaborative design software, InVision's business spiraled after rival firm Figma's product surged in popularity, snatching away its customers, The Information previously reported. InVision's revenue fell by half to $50 million in 2022, pushing it to sell its core business line to Miro, a competitor building digital whiteboards last fall.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Design startup InVision, once valued at $2 billion, is shutting down at the end of this year, according to a company blog post Thursday. The business had raised more than $350 million from investors including Goldman Sachs and Spark Capital. From a report: Once a market leader in collaborative design software, InVision's business spiraled after rival firm Figma's product surged in popularity, snatching away its customers, The Information previously reported. InVision's revenue fell by half to $50 million in 2022, pushing it to sell its core business line to Miro, a competitor building digital whiteboards last fall.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/05/145241/design-startup-invision-once-valued-at-2b-is-shutting-down?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T14:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-05T16:51:00+00:00", - "title": "Top China Diplomat Warns of Decoupling Risk", - "link": "https://news.slashdot.org/story/24/01/05/1652204/top-china-diplomat-warns-of-decoupling-risk?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-05T16:51:00+00:00", - "content": "China's top diplomat warned the US that decoupling would be \"self defeating\" as the country set out to implement a recent agreement made between their leaders. From a report: Foreign Minister Wang Yi, speaking on Friday at an event to mark the 45th anniversary of US-China diplomatic relations, cited a slew of initiatives that reflect improved ties including streamlined visas for US travelers, a counternarcotics working group to battle the flow of the synthetic fentanyl to the US, and the sending of pandas to the US by the end of the year. \"Any decoupling attempt to stem the tide will only be counterproductive and self defeating,\" Wang said. \n\nDavid Meale, deputy chief of mission at the U.S. Embassy in Beijing, joined Friday's event as charge d'affaires with Ambassador Nicholas Burns out of town. Tensions between China and the US started to ease after President Joe Biden and Chinese leader Xi Jinping met in November. The talks resulted in a resumption of high-level military-to-military ties, a promise to collaborate on the fentanyl problem and a commitment to boost interactions between people in the two countries.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "China's top diplomat warned the US that decoupling would be \"self defeating\" as the country set out to implement a recent agreement made between their leaders. From a report: Foreign Minister Wang Yi, speaking on Friday at an event to mark the 45th anniversary of US-China diplomatic relations, cited a slew of initiatives that reflect improved ties including streamlined visas for US travelers, a counternarcotics working group to battle the flow of the synthetic fentanyl to the US, and the sending of pandas to the US by the end of the year. \"Any decoupling attempt to stem the tide will only be counterproductive and self defeating,\" Wang said. \n\nDavid Meale, deputy chief of mission at the U.S. Embassy in Beijing, joined Friday's event as charge d'affaires with Ambassador Nicholas Burns out of town. Tensions between China and the US started to ease after President Joe Biden and Chinese leader Xi Jinping met in November. The talks resulted in a resumption of high-level military-to-military ties, a promise to collaborate on the fentanyl problem and a commitment to boost interactions between people in the two countries.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/05/1652204/top-china-diplomat-warns-of-decoupling-risk?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-05T16:51:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T20:00:00+00:00", - "title": "Discord is Laying Off 17 Percent of Employees", - "link": "https://tech.slashdot.org/story/24/01/11/1922240/discord-is-laying-off-17-percent-of-employees?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T20:00:00+00:00", - "content": "Discord is laying off 17 percent of its staff, a move that CEO Jason Citron said is meant to \"sharpen our focus and improve the way we work together to bring more agility to our organization.\" From a report: The cuts were announced today to employees in an all-hands meeting and internal memo The Verge has obtained. They'll impact 170 people across various departments. \n\nBased on Citron's message to employees and my understanding of the business, Discord isn't in dire financial straits, though it has yet to become profitable and is still trying to revive user growth after a surge during the pandemic. In his memo to employees, which you can read in full below, Citron said Discord grew its headcount too fast over the last few years -- an admission that has become quite common among tech CEOs as of late. \"We grew quickly and expanded our workforce even faster, increasing by 5x since 2020,\" Citron wrote. \"As a result, we took on more projects and became less efficient in how we operated.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Discord is laying off 17 percent of its staff, a move that CEO Jason Citron said is meant to \"sharpen our focus and improve the way we work together to bring more agility to our organization.\" From a report: The cuts were announced today to employees in an all-hands meeting and internal memo The Verge has obtained. They'll impact 170 people across various departments. \n\nBased on Citron's message to employees and my understanding of the business, Discord isn't in dire financial straits, though it has yet to become profitable and is still trying to revive user growth after a surge during the pandemic. In his memo to employees, which you can read in full below, Citron said Discord grew its headcount too fast over the last few years -- an admission that has become quite common among tech CEOs as of late. \"We grew quickly and expanded our workforce even faster, increasing by 5x since 2020,\" Citron wrote. \"As a result, we took on more projects and became less efficient in how we operated.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/1922240/discord-is-laying-off-17-percent-of-employees?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T20:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T19:20:00+00:00", - "title": "Google Formally Endorses Right To Repair, Will Lobby To Pass Repair Laws", - "link": "https://tech.slashdot.org/story/24/01/11/1913214/google-formally-endorses-right-to-repair-will-lobby-to-pass-repair-laws?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T19:20:00+00:00", - "content": "Google formally endorsed the concept of right to repair Thursday and is set to testify in favor of a strong right to repair bill in Oregon later Thursday, a massive step forward for the right to repair movement. 404 Media: \"Google believes that users should have more control over repair -- including access to the same documentation, parts and tools that original equipment manufacturer (OEM) repair channels have -- which is often referred to as 'Right to Repair,'\" Google's Steven Nickel wrote in a white paper published Thursday. \n\nCrucially, Google specifically says that regulators should ban \"parts pairing,\" which is a tactic used by Apple, John Deere, and other major manufacturers to artificially restrict which repair parts can be used with a given device: \"Policies should constrain OEMs from imposing unfair anti-repair practices. For example, parts-pairing, the practice of using software barriers to obstruct consumers and independent repair shops from replacing components, or other restrictive impediments to repair should be discouraged,\" the white paper says.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google formally endorsed the concept of right to repair Thursday and is set to testify in favor of a strong right to repair bill in Oregon later Thursday, a massive step forward for the right to repair movement. 404 Media: \"Google believes that users should have more control over repair -- including access to the same documentation, parts and tools that original equipment manufacturer (OEM) repair channels have -- which is often referred to as 'Right to Repair,'\" Google's Steven Nickel wrote in a white paper published Thursday. \n\nCrucially, Google specifically says that regulators should ban \"parts pairing,\" which is a tactic used by Apple, John Deere, and other major manufacturers to artificially restrict which repair parts can be used with a given device: \"Policies should constrain OEMs from imposing unfair anti-repair practices. For example, parts-pairing, the practice of using software barriers to obstruct consumers and independent repair shops from replacing components, or other restrictive impediments to repair should be discouraged,\" the white paper says.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/1913214/google-formally-endorses-right-to-repair-will-lobby-to-pass-repair-laws?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T19:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T18:40:00+00:00", - "title": "A Geofence Warrant Typo Cast a Location Dragnet Spanning Two Miles Over San Francisco", - "link": "https://tech.slashdot.org/story/24/01/11/1821257/a-geofence-warrant-typo-cast-a-location-dragnet-spanning-two-miles-over-san-francisco?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T18:40:00+00:00", - "content": "Zack Whittaker, reporting for TechCrunch: Civil liberties advocates have long argued that \"geofence\" search warrants are unconstitutional for their ability to ensnare entirely innocent people who were nearby at the time a crime was committed. But errors in the geofence warrant applications that go before a judge can violate the privacy of vastly more people -- in one case almost two miles away. \n\nAttorneys at the ACLU of Northern California found what they called an \"alarming error\" in a geofence warrant application that \"resulted in a warrant stretching nearly two miles across San Francisco.\" The error, likely caused by a typo, allowed the requesting law enforcement agency to capture information on anyone who entered the stretch of San Francisco erroneously marked on the search warrant. \n\n\"Many private homes were also captured in the massive sweep,\" wrote Jake Snow, ACLU staff attorney, in a blog post about the findings. It's not known which law enforcement agency requested the nearly two-mile-long geofence warrant, or for how long the warrant was in effect. The attorneys questioned how many other geofence warrant application mistakes had slipped through and resulted in the return of vastly more data in error.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Zack Whittaker, reporting for TechCrunch: Civil liberties advocates have long argued that \"geofence\" search warrants are unconstitutional for their ability to ensnare entirely innocent people who were nearby at the time a crime was committed. But errors in the geofence warrant applications that go before a judge can violate the privacy of vastly more people -- in one case almost two miles away. \n\nAttorneys at the ACLU of Northern California found what they called an \"alarming error\" in a geofence warrant application that \"resulted in a warrant stretching nearly two miles across San Francisco.\" The error, likely caused by a typo, allowed the requesting law enforcement agency to capture information on anyone who entered the stretch of San Francisco erroneously marked on the search warrant. \n\n\"Many private homes were also captured in the massive sweep,\" wrote Jake Snow, ACLU staff attorney, in a blog post about the findings. It's not known which law enforcement agency requested the nearly two-mile-long geofence warrant, or for how long the warrant was in effect. The attorneys questioned how many other geofence warrant application mistakes had slipped through and resulted in the return of vastly more data in error.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/1821257/a-geofence-warrant-typo-cast-a-location-dragnet-spanning-two-miles-over-san-francisco?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T18:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T18:00:00+00:00", - "title": "State-backed Hackers Are Exploiting New Ivanti VPN Zero-Days - But No Patches Yet", - "link": "https://tech.slashdot.org/story/24/01/11/1735207/state-backed-hackers-are-exploiting-new-ivanti-vpn-zero-days---but-no-patches-yet?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T18:00:00+00:00", - "content": "U.S. software giant Ivanti has confirmed that hackers are exploiting two critical-rated vulnerabilities affecting its widely-used corporate VPN appliance, but said that patches won't be available until the end of the month. From a report: Ivanti said the two vulnerabilities -- tracked as CVE-2023-46805 and CVE-2024-21887 -- were found in its Ivanti Connect Secure software. Formerly known as Pulse Connect Secure, this is a remote access VPN solution that enables remote and mobile users to access corporate resources over the internet. Ivanti said it is aware of \"less than 10 customers\" impacted so far by the \"zero day\" vulnerabilities, described as such given Ivanti had zero time to fix the flaws before they were maliciously exploited.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "U.S. software giant Ivanti has confirmed that hackers are exploiting two critical-rated vulnerabilities affecting its widely-used corporate VPN appliance, but said that patches won't be available until the end of the month. From a report: Ivanti said the two vulnerabilities -- tracked as CVE-2023-46805 and CVE-2024-21887 -- were found in its Ivanti Connect Secure software. Formerly known as Pulse Connect Secure, this is a remote access VPN solution that enables remote and mobile users to access corporate resources over the internet. Ivanti said it is aware of \"less than 10 customers\" impacted so far by the \"zero day\" vulnerabilities, described as such given Ivanti had zero time to fix the flaws before they were maliciously exploited.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/1735207/state-backed-hackers-are-exploiting-new-ivanti-vpn-zero-days---but-no-patches-yet?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T18:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T17:20:00+00:00", - "title": "Chicago Public Schools Lost Over $20 Million In Electronics In One Year, Report Says", - "link": "https://news.slashdot.org/story/24/01/11/1646243/chicago-public-schools-lost-over-20-million-in-electronics-in-one-year-report-says?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T17:20:00+00:00", - "content": "An anonymous reader writes: Millions of dollars have gone down the drain right when the Chicago Public Schools face a looming budget deficit -- as a brand-new CPS Inspector General report revealed the district lost thousands of computers and devices in a school year. In all, more than $20 million were lost -- as about students failed to return 77,505 laptops and other electronic devices within a year. This is even though the district spends millions to track such devices. The underlying concern is that taxpayer dollars will be used to replace them.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader writes: Millions of dollars have gone down the drain right when the Chicago Public Schools face a looming budget deficit -- as a brand-new CPS Inspector General report revealed the district lost thousands of computers and devices in a school year. In all, more than $20 million were lost -- as about students failed to return 77,505 laptops and other electronic devices within a year. This is even though the district spends millions to track such devices. The underlying concern is that taxpayer dollars will be used to replace them.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/11/1646243/chicago-public-schools-lost-over-20-million-in-electronics-in-one-year-report-says?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T17:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T16:40:00+00:00", - "title": "Microsoft Dethrones Apple as the Largest US Company", - "link": "https://apple.slashdot.org/story/24/01/11/1620249/microsoft-dethrones-apple-as-the-largest-us-company?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T16:40:00+00:00", - "content": "The stock market has a new, but familiar, monarch. Microsoft's AI-powered stock rally has made the software giant the largest U.S. company by market value, surpassing Apple for the first time since November 2021. WSJ: Shares edged higher Thursday morning, bringing Microsoft's market value to nearly $2.87 trillion. Apple, meanwhile, fell 1%, pulling its market capitalization just below that threshold. Either Apple or Microsoft has held the title since Feb. 4, 2019, according to Dow Jones Market Data. Microsoft's stock has been on the rise for the past year thanks to the continued growth of its cloud computing division, even as major competitors like Amazon and Google have experienced a gradual slowdown in sales growth.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The stock market has a new, but familiar, monarch. Microsoft's AI-powered stock rally has made the software giant the largest U.S. company by market value, surpassing Apple for the first time since November 2021. WSJ: Shares edged higher Thursday morning, bringing Microsoft's market value to nearly $2.87 trillion. Apple, meanwhile, fell 1%, pulling its market capitalization just below that threshold. Either Apple or Microsoft has held the title since Feb. 4, 2019, according to Dow Jones Market Data. Microsoft's stock has been on the rise for the past year thanks to the continued growth of its cloud computing division, even as major competitors like Amazon and Google have experienced a gradual slowdown in sales growth.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://apple.slashdot.org/story/24/01/11/1620249/microsoft-dethrones-apple-as-the-largest-us-company?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T16:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T16:00:00+00:00", - "title": "FCC Commissioner Carr Says 'Huge Miss' If US Doesn't Ban or Divest TikTok in 2024", - "link": "https://news.slashdot.org/story/24/01/11/1550241/fcc-commissioner-carr-says-huge-miss-if-us-doesnt-ban-or-divest-tiktok-in-2024?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T16:00:00+00:00", - "content": "Brendan Carr, the senior Republican on the Federal Communications Commission, in a wide-ranging interview with Indian newspaper Economic Times praised the South Asian market for blocking Chinese apps in 2020 and said he hopes the U.S. will follow suit. He said: I hope there will be a movement towards a nationwide ban of the application soon, much like India led the way so many years ago. It is taking time, and I wish it was done as swiftly and with the alacrity that India banned not just TikTok but a number of other Chinese apps that had questionable data sharing and privacy policies. If TikTok is neither banned nor ByteDance is forced to divest this year, I would consider it a huge miss. Because only when action is taken would it be possible for us to go after the smaller players too.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Brendan Carr, the senior Republican on the Federal Communications Commission, in a wide-ranging interview with Indian newspaper Economic Times praised the South Asian market for blocking Chinese apps in 2020 and said he hopes the U.S. will follow suit. He said: I hope there will be a movement towards a nationwide ban of the application soon, much like India led the way so many years ago. It is taking time, and I wish it was done as swiftly and with the alacrity that India banned not just TikTok but a number of other Chinese apps that had questionable data sharing and privacy policies. If TikTok is neither banned nor ByteDance is forced to divest this year, I would consider it a huge miss. Because only when action is taken would it be possible for us to go after the smaller players too.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/11/1550241/fcc-commissioner-carr-says-huge-miss-if-us-doesnt-ban-or-divest-tiktok-in-2024?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T16:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T15:21:00+00:00", - "title": "Google Ends Cloud Switching Fees, Pressuring Amazon and Microsoft", - "link": "https://tech.slashdot.org/story/24/01/11/1514237/google-ends-cloud-switching-fees-pressuring-amazon-and-microsoft?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T15:21:00+00:00", - "content": "An anonymous reader shares a report: The cost of switching between cloud-computing providers has long drawn complaints, with the services derided as \"roach motels\" that let businesses check in but not out. Now Google is taking steps to change that. Effective immediately, the company is eliminating fees levied on customers who want to leave its cloud for a rival service -- a policy shift that may pressure competitors Amazon and Microsoft to do the same. \n\nThe move follows intensifying scrutiny of cloud services by regulators and lawmakers around the world. UK antitrust authorities launched a probe that is looking at such penalties, and the fees emerged as a key issue when the US Federal Trade Commission asked for public comments on a variety of cloud concerns. Google Vice President Amit Zavery, who helps oversee the cloud business, said switching fees only represent about 2% of the total costs of migrating to a new provider -- and don't deter many clients from moving their data.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader shares a report: The cost of switching between cloud-computing providers has long drawn complaints, with the services derided as \"roach motels\" that let businesses check in but not out. Now Google is taking steps to change that. Effective immediately, the company is eliminating fees levied on customers who want to leave its cloud for a rival service -- a policy shift that may pressure competitors Amazon and Microsoft to do the same. \n\nThe move follows intensifying scrutiny of cloud services by regulators and lawmakers around the world. UK antitrust authorities launched a probe that is looking at such penalties, and the fees emerged as a key issue when the US Federal Trade Commission asked for public comments on a variety of cloud concerns. Google Vice President Amit Zavery, who helps oversee the cloud business, said switching fees only represent about 2% of the total costs of migrating to a new provider -- and don't deter many clients from moving their data.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/1514237/google-ends-cloud-switching-fees-pressuring-amazon-and-microsoft?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T15:21:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T14:42:00+00:00", - "title": "Google Removes 'Underutilized' Assistant Features To Focus on 'Quality and Reliability'", - "link": "https://tech.slashdot.org/story/24/01/11/1442222/google-removes-underutilized-assistant-features-to-focus-on-quality-and-reliability?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T14:42:00+00:00", - "content": "Google has announced that it will eliminate at least 17 features from its Assistant product, following news that it had laid off \"hundreds\" of employees from the division. The company is cutting \"underutilized features\" to \"focus on quality and reliability, it wrote in a blog post, even though a good number of people may still rely on those functions. From a report: The 17 functions being removed include: accessing or managing your cookbook; using your voice to send an email, video or audio message; rescheduling events in Google Calendar with your voice; and using App Launcher in Google Assistant driving mode on Google Maps to read and send messages, make calls, and control media. It also describes what Assistant can still do related to those functions, or alternate ways of doing them. A list is here, though Google said they're just \"some\" of the affected features.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google has announced that it will eliminate at least 17 features from its Assistant product, following news that it had laid off \"hundreds\" of employees from the division. The company is cutting \"underutilized features\" to \"focus on quality and reliability, it wrote in a blog post, even though a good number of people may still rely on those functions. From a report: The 17 functions being removed include: accessing or managing your cookbook; using your voice to send an email, video or audio message; rescheduling events in Google Calendar with your voice; and using App Launcher in Google Assistant driving mode on Google Maps to read and send messages, make calls, and control media. It also describes what Assistant can still do related to those functions, or alternate ways of doing them. A list is here, though Google said they're just \"some\" of the affected features.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/1442222/google-removes-underutilized-assistant-features-to-focus-on-quality-and-reliability?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T14:42:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T14:03:00+00:00", - "title": "Google Cuts Hundreds of Jobs in Engineering and Other Divisions", - "link": "https://tech.slashdot.org/story/24/01/11/062240/google-cuts-hundreds-of-jobs-in-engineering-and-other-divisions?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T14:03:00+00:00", - "content": "Google laid off hundreds of workers in several divisions Wednesday night, seeking to lower expenses as it focuses on artificial intelligence and joining a wave of other companies cutting tech jobs this year. From a report: The Silicon Valley company laid off employees in its core engineering division, as well as those working on the Google Assistant, a voice-operated virtual assistant, and in the hardware division that makes the Pixel phone, Fitbit watches and Nest thermostat, three people with knowledge of the cuts said. Several hundred employees from the company's core engineering organization lost corporate access and received notices that their roles were eliminated, two of the people said. \n\n\"We've had to make some difficult decisions about ongoing employment of some Google employees and we regret to inform you that your position is being eliminated,\" the company told some workers in the division, according to text reviewed by The New York Times. Google confirmed the Assistant cuts, earlier reported by Semafor, and the hardware layoffs. \"We're responsibly investing in our company's biggest priorities and the significant opportunities ahead,\" a Google spokesman said in a statement. After cuts throughout the second half of 2023, \"some teams are continuing to make these kinds of organizational changes, which include some role eliminations globally.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google laid off hundreds of workers in several divisions Wednesday night, seeking to lower expenses as it focuses on artificial intelligence and joining a wave of other companies cutting tech jobs this year. From a report: The Silicon Valley company laid off employees in its core engineering division, as well as those working on the Google Assistant, a voice-operated virtual assistant, and in the hardware division that makes the Pixel phone, Fitbit watches and Nest thermostat, three people with knowledge of the cuts said. Several hundred employees from the company's core engineering organization lost corporate access and received notices that their roles were eliminated, two of the people said. \n\n\"We've had to make some difficult decisions about ongoing employment of some Google employees and we regret to inform you that your position is being eliminated,\" the company told some workers in the division, according to text reviewed by The New York Times. Google confirmed the Assistant cuts, earlier reported by Semafor, and the hardware layoffs. \"We're responsibly investing in our company's biggest priorities and the significant opportunities ahead,\" a Google spokesman said in a statement. After cuts throughout the second half of 2023, \"some teams are continuing to make these kinds of organizational changes, which include some role eliminations globally.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/062240/google-cuts-hundreds-of-jobs-in-engineering-and-other-divisions?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T14:03:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-11T13:00:00+00:00", - "title": "Broadcom Ditches VMware Cloud Service Providers", - "link": "https://tech.slashdot.org/story/24/01/11/0055209/broadcom-ditches-vmware-cloud-service-providers?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-11T13:00:00+00:00", - "content": "An anonymous reader quotes a report from The Register: Broadcom is tossing the majority of VMware's Cloud Services Providers as part of its shakeup of the virtualization titan's partner programs, say sources, leaving customers unclear who their IT supplier will be. The $61 billion purchase of VMware by Broadcom in November was swiftly followed by news of how it planned to reorganize the business into several Broadcom divisions. A month later we revealed that Broadcom intended to discontinue VMware's channel program, and that some solution providers/ resellers would be transitioned to its own scheme, but on an invitation-only basis, from February. However, while Broadcom informed one part of VMware's channel of this change, a second notice was also sent to Cloud Services Providers (CSPs), informing them that their program is going to be terminated at the end of April. This program allows service providers such as smaller cloud operators to sell a VMware-based cloud service.\n \nIn the letter, seen by The Register, Broadcom tells its cloud provider partners: \"Effective April 30, 2024, the ability to transact as a VMware Cloud Services Provider, under the VMware Partner Connect Program, will come to an end. However, we want to emphasize that you may have the opportunity to join the Broadcom Expert Advantage Partner Program. This invite-only program has simpler requirements and offers expanded benefits, and we will begin inviting partners to join in early 2024.\" One service provider told us their company had been left in the dark since that letter was received, and Broadcom has given them no indication of whether they will be invited to join its partner program or not, or what their customers are supposed to do if the company loses the right to operate a VMware cloud service. \"I don't know how many smaller providers are affected by this but it must be a very large number,\" the source told us. \"The VCSP program was the only way for MSPs and service providers to offer a multi-tenant VMware-based cloud service.\"\n \nChatter among some in the industry is that Broadcom is only interested in keeping the largest and most profitable customers, and the company simply doesn't care about the smaller users and the providers that service them. Unconfirmed fears that are only ten percent of Vmware's biggest CSPs will be invited to the new master program. \"This all sounds very much like Broadcom taking an aggressive approach to its route to market and focusing on those partners that can deliver growth and significant revenue,\" said Omdia chief analyst Roy Illsley. \"I suspect the intention is to ensure that VMware consists of only profitable products and they are sold in a more cohesive way with the rest of Broadcom. So I expect to see some news on this continuing to come out for most of 2024 as the company puts this plan into action. I would not rule out disposals of some assets in a drive to streamline the portfolio to those that fit with Broadcom's strategy.\" \"How can they just cancel a major program affecting hundreds, perhaps thousands of customers, with zero notice, and zero details?\" said one service provider. \"They sent the notices out the Friday before the holidays, with no follow-up, which makes the situation even more egregious. What are we supposed to tell our customers? It's mind-boggling.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from The Register: Broadcom is tossing the majority of VMware's Cloud Services Providers as part of its shakeup of the virtualization titan's partner programs, say sources, leaving customers unclear who their IT supplier will be. The $61 billion purchase of VMware by Broadcom in November was swiftly followed by news of how it planned to reorganize the business into several Broadcom divisions. A month later we revealed that Broadcom intended to discontinue VMware's channel program, and that some solution providers/ resellers would be transitioned to its own scheme, but on an invitation-only basis, from February. However, while Broadcom informed one part of VMware's channel of this change, a second notice was also sent to Cloud Services Providers (CSPs), informing them that their program is going to be terminated at the end of April. This program allows service providers such as smaller cloud operators to sell a VMware-based cloud service.\n \nIn the letter, seen by The Register, Broadcom tells its cloud provider partners: \"Effective April 30, 2024, the ability to transact as a VMware Cloud Services Provider, under the VMware Partner Connect Program, will come to an end. However, we want to emphasize that you may have the opportunity to join the Broadcom Expert Advantage Partner Program. This invite-only program has simpler requirements and offers expanded benefits, and we will begin inviting partners to join in early 2024.\" One service provider told us their company had been left in the dark since that letter was received, and Broadcom has given them no indication of whether they will be invited to join its partner program or not, or what their customers are supposed to do if the company loses the right to operate a VMware cloud service. \"I don't know how many smaller providers are affected by this but it must be a very large number,\" the source told us. \"The VCSP program was the only way for MSPs and service providers to offer a multi-tenant VMware-based cloud service.\"\n \nChatter among some in the industry is that Broadcom is only interested in keeping the largest and most profitable customers, and the company simply doesn't care about the smaller users and the providers that service them. Unconfirmed fears that are only ten percent of Vmware's biggest CSPs will be invited to the new master program. \"This all sounds very much like Broadcom taking an aggressive approach to its route to market and focusing on those partners that can deliver growth and significant revenue,\" said Omdia chief analyst Roy Illsley. \"I suspect the intention is to ensure that VMware consists of only profitable products and they are sold in a more cohesive way with the rest of Broadcom. So I expect to see some news on this continuing to come out for most of 2024 as the company puts this plan into action. I would not rule out disposals of some assets in a drive to streamline the portfolio to those that fit with Broadcom's strategy.\" \"How can they just cancel a major program affecting hundreds, perhaps thousands of customers, with zero notice, and zero details?\" said one service provider. \"They sent the notices out the Friday before the holidays, with no follow-up, which makes the situation even more egregious. What are we supposed to tell our customers? It's mind-boggling.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/0055209/broadcom-ditches-vmware-cloud-service-providers?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T13:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-11T10:00:00+00:00", - "title": "'Artificial Creativity' Music Software For Commodore Amiga Unearthed", - "link": "https://entertainment.slashdot.org/story/24/01/11/0048203/artificial-creativity-music-software-for-commodore-amiga-unearthed?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-11T10:00:00+00:00", - "content": "Kirkman14 writes: Josh Renaud of breakintochat.com has recovered two early examples of \"artificial creativity\" software for the Commodore Amiga that generate new music by recombining patterns extracted from existing music. Developed by cartoonist Ya'akov Kirschen and his Israeli software firm LKP Ltd. in 1986-87, \"Computer Composer\" demo and \"Magic Harp\" baroque were early attempts at AI-like autonomous music generation.\n \nKirschen's technology was used to help score a BBC TV documentary in 1988, and was covered by the New York Times and other major newspapers. None of the Amiga software was ever sold, though the technology was ported to PC and published under the name \"The Music Creator\" in 1989.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Kirkman14 writes: Josh Renaud of breakintochat.com has recovered two early examples of \"artificial creativity\" software for the Commodore Amiga that generate new music by recombining patterns extracted from existing music. Developed by cartoonist Ya'akov Kirschen and his Israeli software firm LKP Ltd. in 1986-87, \"Computer Composer\" demo and \"Magic Harp\" baroque were early attempts at AI-like autonomous music generation.\n \nKirschen's technology was used to help score a BBC TV documentary in 1988, and was covered by the New York Times and other major newspapers. None of the Amiga software was ever sold, though the technology was ported to PC and published under the name \"The Music Creator\" in 1989.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://entertainment.slashdot.org/story/24/01/11/0048203/artificial-creativity-music-software-for-commodore-amiga-unearthed?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T10:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T09:31:00+00:00", - "title": "Is India Done With Crypto?", - "link": "https://slashdot.org/story/24/01/11/0930256/is-india-done-with-crypto?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T09:31:00+00:00", - "content": "An anonymous reader shares a column: Apple delisting a dozen global crypto apps -- relied by big traders in India, in part due to its tax evasive properties -- from its Indian App Store seems the final nail in the coffin, capping a brutal two years. The pending removal across Google Play, internet providers and beyond caps a journey mired with shutdowns, pivots and relocations abroad for Indian crypto startups. The web3 dreams of local entrepreneurs now appear dashed against the rocky shores of regulatory resistance.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader shares a column: Apple delisting a dozen global crypto apps -- relied by big traders in India, in part due to its tax evasive properties -- from its Indian App Store seems the final nail in the coffin, capping a brutal two years. The pending removal across Google Play, internet providers and beyond caps a journey mired with shutdowns, pivots and relocations abroad for Indian crypto startups. The web3 dreams of local entrepreneurs now appear dashed against the rocky shores of regulatory resistance.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/11/0930256/is-india-done-with-crypto?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T09:31:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-11T07:00:00+00:00", - "title": "NASA Selects Bold Proposal To 'Swarm' Proxima Centauri With Tiny Probes", - "link": "https://science.slashdot.org/story/24/01/11/0042216/nasa-selects-bold-proposal-to-swarm-proxima-centauri-with-tiny-probes?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-11T07:00:00+00:00", - "content": "In order to reach places like Alpha Centauri this century, we'll need to utilize gram-scale spacecraft that rely on directed-energy propulsion. To that end, NASA has selected the Swarming Proxima Centauri project for Phase I development as part of this year's NASA Innovative Advanced Concepts (NIAC) program. According to Universe Today, Swarming Proxima Centauri is \"a collaborative effort between Space Initiatives Inc. and the Initiative for Interstellar Studies (i4is) led by Space Initiative's chief scientist Marshall Eubanks.\" From the report: According to Eubanks, traveling through interstellar space is a question of distance, energy, and speed. At a distance of 4.25 light-years (40 trillion km; 25 trillion mi) from the Solar System, even Proxima Centauri is unfathomably far away. To put it in perspective, the record for the farthest distance ever traveled by a spacecraft goes to the Voyager 1 space probe, which is currently more than 24 billion km (15 billion mi) from Earth. Using conventional methods, the probe accomplished a maximum speed of 61,500 km/h (38,215 mph) and has been traveling for more than 46 years straight.\n \nIn short, traveling at anything less than relativistic speed (a fraction of the speed of light) will make interstellar transits incredibly long and entirely impractical. Given the energy requirements this calls for, anything other than small spacecraft with a maximum mass of a few grams is feasible. [...] In contrast, concepts like Breakthrough Starshot and the Proxima Swarm consist of \"inverting the rocket\" -- i.e., instead of throwing stuff out, stuff is thrown at the spacecraft. Instead of heavy propellant, which constitutes the majority of conventional rockets, the energy source for a lightsail is photons (which have no mass and move at the speed of light). But as Eubanks indicated, this does not overcome the issue of energy, making it even more important that the spacecraft be as small as possible. \"Bouncing photons off of a laser sail thus solves the speed-of-stuff problem,\" he said. \"But the trouble is, there is not much momentum in a photon, so we need a lot of them. And given the power we are likely to have available, even a couple of decades from now, the thrust will be weak, so the mass of the probes needs to be very small -- grams, not tons.\"\n \nTheir proposal calls for a 100-gigawatt (GW) laser beamer boosting thousands of gram-scale space probes with laser sails to relativistic speed (~10-20% of light). They also proposed a series of terrestrial light buckets measuring a square kilometer (0.386 mi2) in diameter to catch the light signals from the probes once they are well on their way to reaching Proxima Centauri (and communications become more difficult). By their estimates, this mission concept could be ready for development around midcentury and could reach Proxima Centauri and its Earth-like exoplanet (Proxima b) by the third quarter of this century (2075 or after). [...] Eubanks and his colleagues hope that the development of a coherent swarm of robotic probes will have applications closer to home. Swarm robotics is a hot field of research today and is being investigated as a possible means of exploring Europa's interior ocean, digging underground cities on Mars, assembling large structures in space, and providing extreme weather tracking from Earth's orbit. Beyond space exploration and Earth observation, swarm robotics also has applications in medicine, additive manufacturing, environmental studies, global positioning and navigation, search and rescue, and more.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "In order to reach places like Alpha Centauri this century, we'll need to utilize gram-scale spacecraft that rely on directed-energy propulsion. To that end, NASA has selected the Swarming Proxima Centauri project for Phase I development as part of this year's NASA Innovative Advanced Concepts (NIAC) program. According to Universe Today, Swarming Proxima Centauri is \"a collaborative effort between Space Initiatives Inc. and the Initiative for Interstellar Studies (i4is) led by Space Initiative's chief scientist Marshall Eubanks.\" From the report: According to Eubanks, traveling through interstellar space is a question of distance, energy, and speed. At a distance of 4.25 light-years (40 trillion km; 25 trillion mi) from the Solar System, even Proxima Centauri is unfathomably far away. To put it in perspective, the record for the farthest distance ever traveled by a spacecraft goes to the Voyager 1 space probe, which is currently more than 24 billion km (15 billion mi) from Earth. Using conventional methods, the probe accomplished a maximum speed of 61,500 km/h (38,215 mph) and has been traveling for more than 46 years straight.\n \nIn short, traveling at anything less than relativistic speed (a fraction of the speed of light) will make interstellar transits incredibly long and entirely impractical. Given the energy requirements this calls for, anything other than small spacecraft with a maximum mass of a few grams is feasible. [...] In contrast, concepts like Breakthrough Starshot and the Proxima Swarm consist of \"inverting the rocket\" -- i.e., instead of throwing stuff out, stuff is thrown at the spacecraft. Instead of heavy propellant, which constitutes the majority of conventional rockets, the energy source for a lightsail is photons (which have no mass and move at the speed of light). But as Eubanks indicated, this does not overcome the issue of energy, making it even more important that the spacecraft be as small as possible. \"Bouncing photons off of a laser sail thus solves the speed-of-stuff problem,\" he said. \"But the trouble is, there is not much momentum in a photon, so we need a lot of them. And given the power we are likely to have available, even a couple of decades from now, the thrust will be weak, so the mass of the probes needs to be very small -- grams, not tons.\"\n \nTheir proposal calls for a 100-gigawatt (GW) laser beamer boosting thousands of gram-scale space probes with laser sails to relativistic speed (~10-20% of light). They also proposed a series of terrestrial light buckets measuring a square kilometer (0.386 mi2) in diameter to catch the light signals from the probes once they are well on their way to reaching Proxima Centauri (and communications become more difficult). By their estimates, this mission concept could be ready for development around midcentury and could reach Proxima Centauri and its Earth-like exoplanet (Proxima b) by the third quarter of this century (2075 or after). [...] Eubanks and his colleagues hope that the development of a coherent swarm of robotic probes will have applications closer to home. Swarm robotics is a hot field of research today and is being investigated as a possible means of exploring Europa's interior ocean, digging underground cities on Mars, assembling large structures in space, and providing extreme weather tracking from Earth's orbit. Beyond space exploration and Earth observation, swarm robotics also has applications in medicine, additive manufacturing, environmental studies, global positioning and navigation, search and rescue, and more.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/11/0042216/nasa-selects-bold-proposal-to-swarm-proxima-centauri-with-tiny-probes?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-11T03:30:00+00:00", - "title": "New Device Allows Users To Scroll With Their Tongue", - "link": "https://tech.slashdot.org/story/24/01/10/2331234/new-device-allows-users-to-scroll-with-their-tongue?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-11T03:30:00+00:00", - "content": "An anonymous reader quotes a report from NBC News: Touchscreens are going hands-free with a new device that allows users to scroll through smartphones using only their tongues. MouthPad^, a retainer-like trackpad chip that sits on the roof of the mouth, made its debut at the Consumer Electronics Show this week. It can sense tongue movements, allowing users to scroll, type, make calls and even play chess with a swipe or a click of their tongue. \"It is a mouse for your mouth,\" Corbin Halliwill, a software engineer at Augmental, the company that created the device, said.\n \nAugmental created MouthPad^ to be a helpful tool to those living with disabilities, especially those with a hand impairment or paralysis. It connects to any tablet, phone or computer through Bluetooth. [...] The Augmental team has been developing its working prototype for about two years, mostly fine-tuning controls and applying filters so the device can work even if it picks up saliva or water. The product is expected to hit the market later this year, and early access is available on their website now. [...] The MouthPad^ is clear around the teeth, and the center is a golden touchpad that is the contact point for the tongue. Inside there is also a force sensor that picks up left and right clicks or could be mapped to other hotkey options. On the side, a small bump that holds the Bluetooth antenna and wireless charging battery sticks out and lays against the cheek.\n \nAugmental doesn't recommend leaving it in for meals, but it is safe to drink with it in -- Halliwill said he wears it in the office while drinking water and his morning coffee. The company hopes to build the technology out in the near future, bringing new possibilities for users in the coming months. Some additions may include voice and wheelchair control. The battery now lasts about five hours, but Augmental hopes to extend it to eight in their next version.You can watch the trailer for MouthPad^ here.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from NBC News: Touchscreens are going hands-free with a new device that allows users to scroll through smartphones using only their tongues. MouthPad^, a retainer-like trackpad chip that sits on the roof of the mouth, made its debut at the Consumer Electronics Show this week. It can sense tongue movements, allowing users to scroll, type, make calls and even play chess with a swipe or a click of their tongue. \"It is a mouse for your mouth,\" Corbin Halliwill, a software engineer at Augmental, the company that created the device, said.\n \nAugmental created MouthPad^ to be a helpful tool to those living with disabilities, especially those with a hand impairment or paralysis. It connects to any tablet, phone or computer through Bluetooth. [...] The Augmental team has been developing its working prototype for about two years, mostly fine-tuning controls and applying filters so the device can work even if it picks up saliva or water. The product is expected to hit the market later this year, and early access is available on their website now. [...] The MouthPad^ is clear around the teeth, and the center is a golden touchpad that is the contact point for the tongue. Inside there is also a force sensor that picks up left and right clicks or could be mapped to other hotkey options. On the side, a small bump that holds the Bluetooth antenna and wireless charging battery sticks out and lays against the cheek.\n \nAugmental doesn't recommend leaving it in for meals, but it is safe to drink with it in -- Halliwill said he wears it in the office while drinking water and his morning coffee. The company hopes to build the technology out in the near future, bringing new possibilities for users in the coming months. Some additions may include voice and wheelchair control. The battery now lasts about five hours, but Augmental hopes to extend it to eight in their next version.You can watch the trailer for MouthPad^ here.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/10/2331234/new-device-allows-users-to-scroll-with-their-tongue?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T03:30:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T20:42:00+00:00", - "title": "Hertz is Selling 20,000 Electric Vehicles To Buy Gasoline Cars Instead", - "link": "https://tech.slashdot.org/story/24/01/11/1958253/hertz-is-selling-20000-electric-vehicles-to-buy-gasoline-cars-instead?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T20:42:00+00:00", - "content": "quonset writes: Hertz rental has announced it's selling off one third of its 20,000 electric vehicle fleet and replacing them with gas powered vehicles. The reason? It's costing them too much to repair damaged EVs and their depreciation is hurting the bottom line. \n\n\"[C]ollision and damage repairs on an EV can often run about twice that associated with a comparable combustion engine vehicle,\" Hertz CEO Stephen Scherr said in a recent analyst call. And EV price declines in the new car market have pushed down the resale value of Hertz's used EV rental cars.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "quonset writes: Hertz rental has announced it's selling off one third of its 20,000 electric vehicle fleet and replacing them with gas powered vehicles. The reason? It's costing them too much to repair damaged EVs and their depreciation is hurting the bottom line. \n\n\"[C]ollision and damage repairs on an EV can often run about twice that associated with a comparable combustion engine vehicle,\" Hertz CEO Stephen Scherr said in a recent analyst call. And EV price declines in the new car market have pushed down the resale value of Hertz's used EV rental cars.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/1958253/hertz-is-selling-20000-electric-vehicles-to-buy-gasoline-cars-instead?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T20:42:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-11T21:20:00+00:00", - "title": "Water Pump Used To Get $1 Billion Stuxnet Malware Into Iranian Nuclear Facility", - "link": "https://it.slashdot.org/story/24/01/11/201205/water-pump-used-to-get-1-billion-stuxnet-malware-into-iranian-nuclear-facility?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-11T21:20:00+00:00", - "content": "An anonymous reader quotes a report from SecurityWeek.com: A Dutch engineer recruited by the country's intelligence services used a water pump to deploy the now-infamous Stuxnet malware in an Iranian nuclear facility, according to a two-year investigation conducted by Dutch newspaper De Volkskrant. Stuxnet, whose existence came to light in 2010, is widely believed to be the work of the United States and Israel, its goal being to sabotage Iran's nuclear program by compromising industrial control systems (ICS) associated with nuclear centrifuges. The malware, which had worm capabilities, is said to have infected hundreds of thousands of devices and caused physical damage to hundreds of machines.\n \nDe Volkskrant's investigation, which involved interviews with dozens of people, found that the AIVD, the general intelligence and security service of the Netherlands, the Dutch equivalent of the CIA, recruited Erik van Sabben, a then 36-year-old Dutch national working at a heavy transport company in Dubai. Van Sabben was allegedly recruited in 2005 -- a couple of years before the Stuxnet malware was triggered -- after American and Israeli intelligence agencies asked their Dutch counterpart for help. However, the Dutch agency reportedly did not inform its country's government and it was not aware of the full extent of the operation. Van Sabben was described as perfect for the job as he had a technical background, he was doing business in Iran and was married to an Iranian woman.\n \nIt's believed that the Stuxnet malware was planted on a water pump that the Dutch national installed in the nuclear complex in Natanz, which he had infiltrated. It's unclear if Van Sabben knew exactly what he was doing, but his family said he appeared to have panicked at around the time of the Stuxnet attack. [...] Michael Hayden, who at the time was the chief of the CIA, did agree to talk to De Volkskrant, but could not confirm whether Stuxnet was indeed delivered via water pumps due to it still being classified information. One interesting piece of information that has come to light in De Volkskrant's investigation is that Hayden reportedly told one of the newspaper's sources that it cost between $1 and $2 billion to develop Stuxnet.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from SecurityWeek.com: A Dutch engineer recruited by the country's intelligence services used a water pump to deploy the now-infamous Stuxnet malware in an Iranian nuclear facility, according to a two-year investigation conducted by Dutch newspaper De Volkskrant. Stuxnet, whose existence came to light in 2010, is widely believed to be the work of the United States and Israel, its goal being to sabotage Iran's nuclear program by compromising industrial control systems (ICS) associated with nuclear centrifuges. The malware, which had worm capabilities, is said to have infected hundreds of thousands of devices and caused physical damage to hundreds of machines.\n \nDe Volkskrant's investigation, which involved interviews with dozens of people, found that the AIVD, the general intelligence and security service of the Netherlands, the Dutch equivalent of the CIA, recruited Erik van Sabben, a then 36-year-old Dutch national working at a heavy transport company in Dubai. Van Sabben was allegedly recruited in 2005 -- a couple of years before the Stuxnet malware was triggered -- after American and Israeli intelligence agencies asked their Dutch counterpart for help. However, the Dutch agency reportedly did not inform its country's government and it was not aware of the full extent of the operation. Van Sabben was described as perfect for the job as he had a technical background, he was doing business in Iran and was married to an Iranian woman.\n \nIt's believed that the Stuxnet malware was planted on a water pump that the Dutch national installed in the nuclear complex in Natanz, which he had infiltrated. It's unclear if Van Sabben knew exactly what he was doing, but his family said he appeared to have panicked at around the time of the Stuxnet attack. [...] Michael Hayden, who at the time was the chief of the CIA, did agree to talk to De Volkskrant, but could not confirm whether Stuxnet was indeed delivered via water pumps due to it still being classified information. One interesting piece of information that has come to light in De Volkskrant's investigation is that Hayden reportedly told one of the newspaper's sources that it cost between $1 and $2 billion to develop Stuxnet.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/24/01/11/201205/water-pump-used-to-get-1-billion-stuxnet-malware-into-iranian-nuclear-facility?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T21:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-12T13:00:00+00:00", - "title": "White House Unveils $623 Million In Funding To Boost EV Charging Points", - "link": "https://hardware.slashdot.org/story/24/01/12/0520229/white-house-unveils-623-million-in-funding-to-boost-ev-charging-points?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-12T13:00:00+00:00", - "content": "An anonymous reader quotes a report from The Guardian: Joe Biden's administration has unveiled $623 million in funding to boost the number of electric vehicle charging points in the U.S., amid concerns that the transition to zero-carbon transportation isn't keeping pace with goals to tackle the climate crisis. The funding will be distributed in grants for dozens of programs across 22 states, such as EV chargers for apartment blocks in New Jersey, rapid chargers in Oregon and hydrogen fuel chargers for freight trucks in Texas. In all, it's expected the money, drawn from the bipartisan infrastructure law, will add 7,500 chargers to the US total.\n \nThere are about 170,000 electric vehicle chargers in the U.S., a huge leap from a network that was barely visible prior to Biden taking office, and the White House has set a goal for 500,000 chargers to help support the shift away from gasoline and diesel cars. \"The U.S. is taking the lead globally on electric vehicles,\" said Ali Zaidi, a climate adviser to Biden who said the US is on a trajectory to \"meet and exceed\" the administration's charger goal. \"We will continue to see this buildout over the coming years and decades until we've achieved a fully net zero transportation sector,\" he added. On Thursday, the House approved legislation to undo a Biden administration rule meant to facilitate the proliferation of EV charging stations. \"S. J. Res. 38 from Sen. Marco Rubio (R-Fla.), would scrap a Federal Highway Administration waiver from domestic sourcing requirements for EV chargers funded by the 2021 bipartisan infrastructure law. It already passed the Senate 50-48,\" reports Politico.\n \n\"A waiver undercuts domestic investments and risks empowering foreign nations,\" said Rep. Sam Graves (R-Mo.), chair of the Transportation and Infrastructure Committee, during House debate Thursday. \"If the administration is going to continue to push for a massive transition to EVs, it should ensure and comply with Buy America requirements.\" The White House promised to veto it and said it would backfire, saying it was so poorly worded it would actually result in fewer new American-made charging stations.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from The Guardian: Joe Biden's administration has unveiled $623 million in funding to boost the number of electric vehicle charging points in the U.S., amid concerns that the transition to zero-carbon transportation isn't keeping pace with goals to tackle the climate crisis. The funding will be distributed in grants for dozens of programs across 22 states, such as EV chargers for apartment blocks in New Jersey, rapid chargers in Oregon and hydrogen fuel chargers for freight trucks in Texas. In all, it's expected the money, drawn from the bipartisan infrastructure law, will add 7,500 chargers to the US total.\n \nThere are about 170,000 electric vehicle chargers in the U.S., a huge leap from a network that was barely visible prior to Biden taking office, and the White House has set a goal for 500,000 chargers to help support the shift away from gasoline and diesel cars. \"The U.S. is taking the lead globally on electric vehicles,\" said Ali Zaidi, a climate adviser to Biden who said the US is on a trajectory to \"meet and exceed\" the administration's charger goal. \"We will continue to see this buildout over the coming years and decades until we've achieved a fully net zero transportation sector,\" he added. On Thursday, the House approved legislation to undo a Biden administration rule meant to facilitate the proliferation of EV charging stations. \"S. J. Res. 38 from Sen. Marco Rubio (R-Fla.), would scrap a Federal Highway Administration waiver from domestic sourcing requirements for EV chargers funded by the 2021 bipartisan infrastructure law. It already passed the Senate 50-48,\" reports Politico.\n \n\"A waiver undercuts domestic investments and risks empowering foreign nations,\" said Rep. Sam Graves (R-Mo.), chair of the Transportation and Infrastructure Committee, during House debate Thursday. \"If the administration is going to continue to push for a massive transition to EVs, it should ensure and comply with Buy America requirements.\" The White House promised to veto it and said it would backfire, saying it was so poorly worded it would actually result in fewer new American-made charging stations.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/24/01/12/0520229/white-house-unveils-623-million-in-funding-to-boost-ev-charging-points?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T13:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-12T10:00:00+00:00", - "title": "Scientists Scramble To Keep Dog Aging Project Alive", - "link": "https://science.slashdot.org/story/24/01/12/0511207/scientists-scramble-to-keep-dog-aging-project-alive?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-12T10:00:00+00:00", - "content": "Emily Anthes reports via the New York Times: In late 2019, scientists began searching for 10,000 Americans willing to enroll their pets in an ambitious new study of health and longevity in dogs. The researchers planned to track the dogs over the course of their lives, collecting detailed information about their bodies, lifestyles and home environments. Over time, the scientists hoped to identify the biological and environmental factors that kept some dogs healthy in their golden years -- and uncover insights about aging that could help both dogs and humans lead longer, healthier lives. Today, the Dog Aging Project has enrolled 47,000 canines and counting, and the data are starting to stream in. The scientists say that they are just getting started. \"We think of the Dog Aging Project as a forever project, so recruitment is ongoing,\" said Daniel Promislow, a biogerontologist at the University of Washington and a co-director of the project. \"There will always be new questions to ask. We want to always have dogs of all ages participating.\"\n \nBut Dr. Promislow and his colleagues are now facing the prospect that the Dog Aging Project might have its own life cut short. About 90 percent of the study's funding comes from the National Institute on Aging, a part of the National Institutes of Health, which has provided more than $28 million since 2018. But that money will run out in June, and the institute does not seem likely to approve the researchers' recent application for a five-year grant renewal, the scientists say. \"We have been told informally that the grant is not going to be funded,\" said Matt Kaeberlein, the other director of the Dog Aging Project and a former biogerontology researcher at the University of Washington. (Dr. Kaeberlein is now the chief executive of Optispan, a health technology company.) The N.I.A. could still choose to provide more funding for the Dog Aging Project at some point, but if the researchers don't bring in more money in the coming months, they will have to pause or pare back the study. \"It's almost an emergency,\" said Stephanie Lederman, the executive director of the nonprofit American Federation for Aging Research. \"It's one of the most important projects in the field right now.\" [...]\n \nThe institute's immediate priority is to raise enough money to keep the Dog Aging Project afloat. It would take about $7 million to conduct the research the team had planned to do over the next year, but $2 million would be enough to \"keep the lights on,\" Dr. Promislow said. The institute is still awaiting its official tax exempt status but is already seeking donations. \"We haven't yet identified a dog-loving billionaire interested in supporting aging research,\" Dr. Promislow said. \"But we're certainly going to try.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Emily Anthes reports via the New York Times: In late 2019, scientists began searching for 10,000 Americans willing to enroll their pets in an ambitious new study of health and longevity in dogs. The researchers planned to track the dogs over the course of their lives, collecting detailed information about their bodies, lifestyles and home environments. Over time, the scientists hoped to identify the biological and environmental factors that kept some dogs healthy in their golden years -- and uncover insights about aging that could help both dogs and humans lead longer, healthier lives. Today, the Dog Aging Project has enrolled 47,000 canines and counting, and the data are starting to stream in. The scientists say that they are just getting started. \"We think of the Dog Aging Project as a forever project, so recruitment is ongoing,\" said Daniel Promislow, a biogerontologist at the University of Washington and a co-director of the project. \"There will always be new questions to ask. We want to always have dogs of all ages participating.\"\n \nBut Dr. Promislow and his colleagues are now facing the prospect that the Dog Aging Project might have its own life cut short. About 90 percent of the study's funding comes from the National Institute on Aging, a part of the National Institutes of Health, which has provided more than $28 million since 2018. But that money will run out in June, and the institute does not seem likely to approve the researchers' recent application for a five-year grant renewal, the scientists say. \"We have been told informally that the grant is not going to be funded,\" said Matt Kaeberlein, the other director of the Dog Aging Project and a former biogerontology researcher at the University of Washington. (Dr. Kaeberlein is now the chief executive of Optispan, a health technology company.) The N.I.A. could still choose to provide more funding for the Dog Aging Project at some point, but if the researchers don't bring in more money in the coming months, they will have to pause or pare back the study. \"It's almost an emergency,\" said Stephanie Lederman, the executive director of the nonprofit American Federation for Aging Research. \"It's one of the most important projects in the field right now.\" [...]\n \nThe institute's immediate priority is to raise enough money to keep the Dog Aging Project afloat. It would take about $7 million to conduct the research the team had planned to do over the next year, but $2 million would be enough to \"keep the lights on,\" Dr. Promislow said. The institute is still awaiting its official tax exempt status but is already seeking donations. \"We haven't yet identified a dog-loving billionaire interested in supporting aging research,\" Dr. Promislow said. \"But we're certainly going to try.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/12/0511207/scientists-scramble-to-keep-dog-aging-project-alive?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T10:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-12T07:00:00+00:00", - "title": "AI-Generated George Carlin Drops Comedy Special", - "link": "https://entertainment.slashdot.org/story/24/01/11/2217216/ai-generated-george-carlin-drops-comedy-special?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-12T07:00:00+00:00", - "content": "Michaela Zee reports via Variety: More than 15 years after his death, stand-up comedian George Carlin has been brought back to life in an artificial intelligence-generated special called \"George Carlin: I'm Glad I'm Dead.\" The hour-long special, which dropped on Tuesday, comes from Dudesy, a comedy AI that hosts a podcast and YouTube show with \"Mad TV\" alum Will Sasso and podcaster Chad Kultgen.\n \n\"I just want to let you know very clearly that what you're about to hear is not George Carlin. It's my impersonation of George Carlin that I developed in the exact same way a human impressionist would,\" Dudesy said at the beginning of the special. \"I listened to all of George Carlin's material and did my best to imitate his voice, cadence and attitude as well as the subject matter I think would have interested him today. So think of it like Andy Kaufman impersonating Elvis or like Will Ferrell impersonating George W. Bush.\"\n \nIn the stand-up special, the AI-generated impression of Carlin, who died in 2008 of heart failure, tackled prevalent topics like mass shootings, the American class system, streaming services, social media and AI itself. \"There's one line of work that is most threatened by AI -- one job that is most likely to be completely erased because of artificial intelligence: stand-up comedy,\" AI-generated Carlin said. \"I know what all the stand-up comics across the globe are saying right now: \"I'm an artist and my art form is too creative, too nuanced, too subtle to be replicated by a machine. No computer program can tell a fart joke as good as me.'\" Kelly Carlin, the late stand-up comedian's daughter, posted a statement in response to the special: \"My dad spent a lifetime perfecting his craft from his very human life, brain and imagination. No machine will ever replace his genius. These AI generated products are clever attempts at trying to recreate a mind that will never exist again. Let's let the artist's work speak for itself. Humans are so afraid of the void that we can't let what has fallen into it stay there.\n \nHere's an idea, how about we give some actual living human comedians a listen to? But if you want to listen to the genuine George Carlin, he has 14 specials that you can find anywhere.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Michaela Zee reports via Variety: More than 15 years after his death, stand-up comedian George Carlin has been brought back to life in an artificial intelligence-generated special called \"George Carlin: I'm Glad I'm Dead.\" The hour-long special, which dropped on Tuesday, comes from Dudesy, a comedy AI that hosts a podcast and YouTube show with \"Mad TV\" alum Will Sasso and podcaster Chad Kultgen.\n \n\"I just want to let you know very clearly that what you're about to hear is not George Carlin. It's my impersonation of George Carlin that I developed in the exact same way a human impressionist would,\" Dudesy said at the beginning of the special. \"I listened to all of George Carlin's material and did my best to imitate his voice, cadence and attitude as well as the subject matter I think would have interested him today. So think of it like Andy Kaufman impersonating Elvis or like Will Ferrell impersonating George W. Bush.\"\n \nIn the stand-up special, the AI-generated impression of Carlin, who died in 2008 of heart failure, tackled prevalent topics like mass shootings, the American class system, streaming services, social media and AI itself. \"There's one line of work that is most threatened by AI -- one job that is most likely to be completely erased because of artificial intelligence: stand-up comedy,\" AI-generated Carlin said. \"I know what all the stand-up comics across the globe are saying right now: \"I'm an artist and my art form is too creative, too nuanced, too subtle to be replicated by a machine. No computer program can tell a fart joke as good as me.'\" Kelly Carlin, the late stand-up comedian's daughter, posted a statement in response to the special: \"My dad spent a lifetime perfecting his craft from his very human life, brain and imagination. No machine will ever replace his genius. These AI generated products are clever attempts at trying to recreate a mind that will never exist again. Let's let the artist's work speak for itself. Humans are so afraid of the void that we can't let what has fallen into it stay there.\n \nHere's an idea, how about we give some actual living human comedians a listen to? But if you want to listen to the genuine George Carlin, he has 14 specials that you can find anywhere.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://entertainment.slashdot.org/story/24/01/11/2217216/ai-generated-george-carlin-drops-comedy-special?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-12T03:30:00+00:00", - "title": "Beaver Ponds May Exacerbate Warming In Arctic, Scientists Say", - "link": "https://news.slashdot.org/story/24/01/11/238220/beaver-ponds-may-exacerbate-warming-in-arctic-scientists-say?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-12T03:30:00+00:00", - "content": "An anonymous reader quotes a report from The Guardian: The stream through western Alaska never looked like this before. In aerial photography from the 1980s, it wove cleanly through the tundra, thin as thread. Today, in satellite images, it appears as a string of black patches: one large pond after another, dozens of meters apart. It's a transformation that is happening across the Arctic, the result of landscape engineering on an impressive scale. But this is no human endeavor to reshape the world. It is the work of the North American beaver, and there is no sign of it stopping. Were the waddling rodents making minor inroads, researchers may never have noticed. But the animals are pouring in, pushing north into new territories. The total number of animals is far from clear, but the ponds they create are hard to miss: in the Arctic tundra of Alaska alone, the number of beaver ponds on streams have doubled to at least 12,000 in the past 20 years. More lodges are dotted along lakes and river banks.\n \nThe preponderance of beavers, which can weigh as much as 45kg, follows a collapse in trapping and the warming of a landscape that once proved too bleak for occupation. Global heating has driven the shrubification of the Arctic tundra; the harsh winter is shorter, and there is more free-running water in the coldest months. Instead of felling trees for their dams, the beavers construct them from surrounding shrubs, creating deep ponds in which to build their lodges. The new arrivals cause plenty of disruption. For some communities, the rivers and streams are the roads of the landscape, and the dams make effective roadblocks. As the structures multiply, more land is flooded and there can be less fresh water for drinking downstream. But there are other, less visible effects too. The animals are participants in a feedback loop: climate change opens the landscape to beavers, whose ponds drive further warming, which attracts even more paddle-tailed comrades. Physics suggested this would happen. Beaver ponds are new bodies of water that cover bare permafrost. Because the water is warm -- relatively speaking -- it thaws the hard ground, which duly releases methane, one of the most potent greenhouse gases.\n \nScientists now have evidence this is happening. Armed with high-resolution satellite imagery, Tape and his colleagues located beaver ponds in the lower Noatak River basin area of north-western Alaska. They then analyzed infrared images captured by Nasa planes flying over the region. Overlaying the two revealed a clear link between beaver ponds and methane hotspots that extended for tens of meters around the ponds. \"The transformation of these streams is a positive feedback that is accelerating the effects of climate change, and that is what's concerning,\" says Tape. \"They are accelerating it at every one of these points.\" Because the Nasa images give only a snapshot in time, the researchers will head out next year to measure methane on the ground. With more measurements, they hope to understand how the emissions vary with the age of beaver ponds: do ponds release a steady flow of methane, or does the release wane after a decade or two? \"What's happening here is happening on a huge scale,\" says Ken Tape, an ecologist at the University of Alaska, Fairbanks, who is tracking the influx of beavers into the sparse northern landscape. \"Our modeling work, which is in progress right now, shows that this entire area, the north slope of Alaska, will be colonized by beavers by 2100.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from The Guardian: The stream through western Alaska never looked like this before. In aerial photography from the 1980s, it wove cleanly through the tundra, thin as thread. Today, in satellite images, it appears as a string of black patches: one large pond after another, dozens of meters apart. It's a transformation that is happening across the Arctic, the result of landscape engineering on an impressive scale. But this is no human endeavor to reshape the world. It is the work of the North American beaver, and there is no sign of it stopping. Were the waddling rodents making minor inroads, researchers may never have noticed. But the animals are pouring in, pushing north into new territories. The total number of animals is far from clear, but the ponds they create are hard to miss: in the Arctic tundra of Alaska alone, the number of beaver ponds on streams have doubled to at least 12,000 in the past 20 years. More lodges are dotted along lakes and river banks.\n \nThe preponderance of beavers, which can weigh as much as 45kg, follows a collapse in trapping and the warming of a landscape that once proved too bleak for occupation. Global heating has driven the shrubification of the Arctic tundra; the harsh winter is shorter, and there is more free-running water in the coldest months. Instead of felling trees for their dams, the beavers construct them from surrounding shrubs, creating deep ponds in which to build their lodges. The new arrivals cause plenty of disruption. For some communities, the rivers and streams are the roads of the landscape, and the dams make effective roadblocks. As the structures multiply, more land is flooded and there can be less fresh water for drinking downstream. But there are other, less visible effects too. The animals are participants in a feedback loop: climate change opens the landscape to beavers, whose ponds drive further warming, which attracts even more paddle-tailed comrades. Physics suggested this would happen. Beaver ponds are new bodies of water that cover bare permafrost. Because the water is warm -- relatively speaking -- it thaws the hard ground, which duly releases methane, one of the most potent greenhouse gases.\n \nScientists now have evidence this is happening. Armed with high-resolution satellite imagery, Tape and his colleagues located beaver ponds in the lower Noatak River basin area of north-western Alaska. They then analyzed infrared images captured by Nasa planes flying over the region. Overlaying the two revealed a clear link between beaver ponds and methane hotspots that extended for tens of meters around the ponds. \"The transformation of these streams is a positive feedback that is accelerating the effects of climate change, and that is what's concerning,\" says Tape. \"They are accelerating it at every one of these points.\" Because the Nasa images give only a snapshot in time, the researchers will head out next year to measure methane on the ground. With more measurements, they hope to understand how the emissions vary with the age of beaver ponds: do ponds release a steady flow of methane, or does the release wane after a decade or two? \"What's happening here is happening on a huge scale,\" says Ken Tape, an ecologist at the University of Alaska, Fairbanks, who is tracking the influx of beavers into the sparse northern landscape. \"Our modeling work, which is in progress right now, shows that this entire area, the north slope of Alaska, will be colonized by beavers by 2100.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/11/238220/beaver-ponds-may-exacerbate-warming-in-arctic-scientists-say?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T03:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-12T02:02:00+00:00", - "title": "eBay To Pay $3 Million Penalty For Employees Sending Live Cockroaches, Fetal Pig To Bloggers", - "link": "https://yro.slashdot.org/story/24/01/11/230244/ebay-to-pay-3-million-penalty-for-employees-sending-live-cockroaches-fetal-pig-to-bloggers?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-12T02:02:00+00:00", - "content": "E-commerce giant eBay agreed to pay a $3 million penalty for the harassment and stalking of a Massachusetts couple by several of its employees. \"The couple, Ina and David Steiner, had been subjected to threats and bizarre deliveries, including live spiders, cockroaches, a funeral wreath and a bloody pig mask in August 2019,\" reports CBS News. From the report: Thursday's fine comes after several eBay employees ran a harassment and intimidation campaign against the Steiners, who publish a news website focusing on players in the e-commerce industry. \"eBay engaged in absolutely horrific, criminal conduct. The company's employees and contractors involved in this campaign put the victims through pure hell, in a petrifying campaign aimed at silencing their reporting and protecting the eBay brand,\" Levy said. \"We left no stone unturned in our mission to hold accountable every individual who turned the victims' world upside-down through a never-ending nightmare of menacing and criminal acts.\"\n \nThe Justice Department criminally charged eBay with two counts of stalking through interstate travel, two counts of stalking through electronic communications services, one count of witness tampering and one count of obstruction of justice. The company agreed to pay $3 million as part of a deferred prosecution agreement. Under the agreement, eBay will be required to retain an independent corporate compliance monitor for three years, officials said, to \"ensure that eBay's senior leadership sets a tone that makes compliance with the law paramount, implements safeguards to prevent future criminal activity, and makes clear to every eBay employee that the idea of terrorizing innocent people and obstructing investigations will not be tolerated,\" Levy said.\n \nFormer U.S. Attorney Andrew Lelling said the plan to target the Steiners, which he described as a \"campaign of terror,\" was hatched in April 2019 at eBay. Devin Wenig, eBay's CEO at the time, shared a link to a post Ina Steiner had written about his annual pay. The company's chief communications officer, Steve Wymer, responded: \"We are going to crush this lady.\" About a month later, Wenig texted: \"Take her down.\" Prosecutors said Wymer later texted eBay security director Jim Baugh. \"I want to see ashes. As long as it takes. Whatever it takes,\" Wymer wrote. Investigators said Baugh set up a meeting with security staff and dispatched a team to Boston, about 20 miles from where the Steiners live. \"Senior executives at eBay were frustrated with the newsletter's tone and content, and with the comments posted beneath the newsletter's articles,\" the Department of Justice wrote in its Thursday announcement. Two former eBay security executives were sentenced to prison over the incident.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "E-commerce giant eBay agreed to pay a $3 million penalty for the harassment and stalking of a Massachusetts couple by several of its employees. \"The couple, Ina and David Steiner, had been subjected to threats and bizarre deliveries, including live spiders, cockroaches, a funeral wreath and a bloody pig mask in August 2019,\" reports CBS News. From the report: Thursday's fine comes after several eBay employees ran a harassment and intimidation campaign against the Steiners, who publish a news website focusing on players in the e-commerce industry. \"eBay engaged in absolutely horrific, criminal conduct. The company's employees and contractors involved in this campaign put the victims through pure hell, in a petrifying campaign aimed at silencing their reporting and protecting the eBay brand,\" Levy said. \"We left no stone unturned in our mission to hold accountable every individual who turned the victims' world upside-down through a never-ending nightmare of menacing and criminal acts.\"\n \nThe Justice Department criminally charged eBay with two counts of stalking through interstate travel, two counts of stalking through electronic communications services, one count of witness tampering and one count of obstruction of justice. The company agreed to pay $3 million as part of a deferred prosecution agreement. Under the agreement, eBay will be required to retain an independent corporate compliance monitor for three years, officials said, to \"ensure that eBay's senior leadership sets a tone that makes compliance with the law paramount, implements safeguards to prevent future criminal activity, and makes clear to every eBay employee that the idea of terrorizing innocent people and obstructing investigations will not be tolerated,\" Levy said.\n \nFormer U.S. Attorney Andrew Lelling said the plan to target the Steiners, which he described as a \"campaign of terror,\" was hatched in April 2019 at eBay. Devin Wenig, eBay's CEO at the time, shared a link to a post Ina Steiner had written about his annual pay. The company's chief communications officer, Steve Wymer, responded: \"We are going to crush this lady.\" About a month later, Wenig texted: \"Take her down.\" Prosecutors said Wymer later texted eBay security director Jim Baugh. \"I want to see ashes. As long as it takes. Whatever it takes,\" Wymer wrote. Investigators said Baugh set up a meeting with security staff and dispatched a team to Boston, about 20 miles from where the Steiners live. \"Senior executives at eBay were frustrated with the newsletter's tone and content, and with the comments posted beneath the newsletter's articles,\" the Department of Justice wrote in its Thursday announcement. Two former eBay security executives were sentenced to prison over the incident.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/11/230244/ebay-to-pay-3-million-penalty-for-employees-sending-live-cockroaches-fetal-pig-to-bloggers?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T02:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-12T01:25:00+00:00", - "title": "X Announces Peer-To-Peer Payment Service Will Launch In 2024", - "link": "https://news.slashdot.org/story/24/01/11/2250250/x-announces-peer-to-peer-payment-service-will-launch-in-2024?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-12T01:25:00+00:00", - "content": "SonicSpike shares a report from Forbes: X, the social media site formerly known as Twitter, announced it would begin rolling out a peer-to-peer payment service similar to Venmo or PayPal this year -- a feature the social media site's billionaire owner Elon Musk has long pushed as part of his plan to develop an \"everything app.\" X officially announced the new feature in a blog post, touting the new service designed to enhance \"user utility and new opportunities for commerce.\" The company did not give a timeframe on when the new service would be available, but Musk previously told Ark Invest CEO Cathie Wood it could launch as early as \"mid-2024.\"\n \nAccording to the company, the new payment service will \"showcas[e] the power of living more of your life in one place,\" as owner Elon Musk continues to promote X as a future \"everything app\" capable of handling social media, video and other original content on the same site. X Payments has registered to do business in at least 32 states, according to public records, and has acquired a money transmitter license needed to process payments in 10, TechCrunch reported in December.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "SonicSpike shares a report from Forbes: X, the social media site formerly known as Twitter, announced it would begin rolling out a peer-to-peer payment service similar to Venmo or PayPal this year -- a feature the social media site's billionaire owner Elon Musk has long pushed as part of his plan to develop an \"everything app.\" X officially announced the new feature in a blog post, touting the new service designed to enhance \"user utility and new opportunities for commerce.\" The company did not give a timeframe on when the new service would be available, but Musk previously told Ark Invest CEO Cathie Wood it could launch as early as \"mid-2024.\"\n \nAccording to the company, the new payment service will \"showcas[e] the power of living more of your life in one place,\" as owner Elon Musk continues to promote X as a future \"everything app\" capable of handling social media, video and other original content on the same site. X Payments has registered to do business in at least 32 states, according to public records, and has acquired a money transmitter license needed to process payments in 10, TechCrunch reported in December.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/11/2250250/x-announces-peer-to-peer-payment-service-will-launch-in-2024?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T01:25:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-12T00:45:00+00:00", - "title": "SpaceX Sends First Text Messages Using Starlink Satellites", - "link": "https://tech.slashdot.org/story/24/01/11/2245247/spacex-sends-first-text-messages-using-starlink-satellites?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-12T00:45:00+00:00", - "content": "Just six days after being launched atop a Falcon 9 rocket, one of SpaceX's six Starlink satellites was used to send text messages for the first time. Space.com reports: That update didn't reveal what the first Starlink direct-to-cell text said. In a post on X on Wednesday, SpaceX founder and CEO Elon Musk said the message was \"LFGMF2024,\" but the chances are fairly high that he was joking. [...] Beaming connectivity service from satellites directly to smartphones -- which SpaceX is doing via a partnership with T-Mobile -- is a difficult proposition, as SpaceX noted in Wednesday's update.\n \n\"For example, in terrestrial networks cell towers are stationary, but in a satellite network they move at tens of thousands of miles per hour relative to users on Earth,\" SpaceX wrote. \"This requires seamless handoffs between satellites and accommodations for factors like Doppler shift and timing delays that challenge phone-to-space communications. Cell phones are also incredibly difficult to connect to satellites hundreds of kilometers away, given a mobile phone's low antenna gain and transmit power.\"\n \nThe direct-to-cell Starlink satellites overcome these challenges thanks to \"innovative new custom silicon, phased-array antennas and advanced software algorithms,\" SpaceX added. Overcoming tough challenges can lead to great rewards, and that's the case here, according to SpaceX President Gwynne Shotwell. \"Satellite connectivity direct to cell phones will have a tremendous impact around the world, helping people communicate wherever and whenever they want or need to,\" Shotwell said via X on Wednesday.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Just six days after being launched atop a Falcon 9 rocket, one of SpaceX's six Starlink satellites was used to send text messages for the first time. Space.com reports: That update didn't reveal what the first Starlink direct-to-cell text said. In a post on X on Wednesday, SpaceX founder and CEO Elon Musk said the message was \"LFGMF2024,\" but the chances are fairly high that he was joking. [...] Beaming connectivity service from satellites directly to smartphones -- which SpaceX is doing via a partnership with T-Mobile -- is a difficult proposition, as SpaceX noted in Wednesday's update.\n \n\"For example, in terrestrial networks cell towers are stationary, but in a satellite network they move at tens of thousands of miles per hour relative to users on Earth,\" SpaceX wrote. \"This requires seamless handoffs between satellites and accommodations for factors like Doppler shift and timing delays that challenge phone-to-space communications. Cell phones are also incredibly difficult to connect to satellites hundreds of kilometers away, given a mobile phone's low antenna gain and transmit power.\"\n \nThe direct-to-cell Starlink satellites overcome these challenges thanks to \"innovative new custom silicon, phased-array antennas and advanced software algorithms,\" SpaceX added. Overcoming tough challenges can lead to great rewards, and that's the case here, according to SpaceX President Gwynne Shotwell. \"Satellite connectivity direct to cell phones will have a tremendous impact around the world, helping people communicate wherever and whenever they want or need to,\" Shotwell said via X on Wednesday.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/2245247/spacex-sends-first-text-messages-using-starlink-satellites?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T00:45:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-12T00:02:00+00:00", - "title": "Polestar CEO Promises To Keep Apple CarPlay and Android Auto Around", - "link": "https://tech.slashdot.org/story/24/01/11/228202/polestar-ceo-promises-to-keep-apple-carplay-and-android-auto-around?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-12T00:02:00+00:00", - "content": "An anonymous reader quotes a report from TechCrunch: Polestar CEO Thomas Ingenlath couldn't be happier with the integration of Google built-in, the branded product that embeds Google apps and services directly into the company's EVs. But don't expect the EV maker to drop Android Auto or Apple CarPlay as a result. On the sidelines of CES 2024, Ingenlath committed to sticking with Android Auto and Apple CarPlay, the middleware that allows drivers to project their smartphone onto the car's infotainment display. He went a step further and questioned automakers that have. GM, for instance, decided not to make the new 2024 Chevy Blazer EV compatible with Android Auto or Apple CarPlay.\n \n\"It's still too important for our customers to have the choice,\" Ingenlath said during an interview at CES 2024. He later added that, in his view, removing the option isn't the right way of treating customers. \"Our priority is very clear; We have a really fantastic system together with Google,\" he said. While Ingenlath admitted that adding that Google Built-in provides the best experience, he asked \"why would we try to dogmatically educate our customers?\" Polestar has been a champion of Google built-in. However, it's willingness to keep Android Auto and Apple CarPlay is notable because it illustrates the complexity of appeasing customers even if it might overshadow the native technology in the vehicle. \"Ingenlath seems convinced that as Google built-in improves and continues to add apps and services, consumers will give up Android Auto or Apple CarPlay on there own,\" adds TechCrunch. \"And the updates do keep coming.\"\n \n\"At CES 2024, for instance, Polestar announced that the Chrome browser would start rolling out to Polestar 2 in beta, allowing drivers to surf the internet via the central vehicle display while parked. Ingenlath hinted of more improvements in the future, including more precise navigation in Google Maps that drills down to the specific lane as well as customized features designed for Polestar customers.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Polestar CEO Thomas Ingenlath couldn't be happier with the integration of Google built-in, the branded product that embeds Google apps and services directly into the company's EVs. But don't expect the EV maker to drop Android Auto or Apple CarPlay as a result. On the sidelines of CES 2024, Ingenlath committed to sticking with Android Auto and Apple CarPlay, the middleware that allows drivers to project their smartphone onto the car's infotainment display. He went a step further and questioned automakers that have. GM, for instance, decided not to make the new 2024 Chevy Blazer EV compatible with Android Auto or Apple CarPlay.\n \n\"It's still too important for our customers to have the choice,\" Ingenlath said during an interview at CES 2024. He later added that, in his view, removing the option isn't the right way of treating customers. \"Our priority is very clear; We have a really fantastic system together with Google,\" he said. While Ingenlath admitted that adding that Google Built-in provides the best experience, he asked \"why would we try to dogmatically educate our customers?\" Polestar has been a champion of Google built-in. However, it's willingness to keep Android Auto and Apple CarPlay is notable because it illustrates the complexity of appeasing customers even if it might overshadow the native technology in the vehicle. \"Ingenlath seems convinced that as Google built-in improves and continues to add apps and services, consumers will give up Android Auto or Apple CarPlay on there own,\" adds TechCrunch. \"And the updates do keep coming.\"\n \n\"At CES 2024, for instance, Polestar announced that the Chrome browser would start rolling out to Polestar 2 in beta, allowing drivers to surf the internet via the central vehicle display while parked. Ingenlath hinted of more improvements in the future, including more precise navigation in Google Maps that drills down to the specific lane as well as customized features designed for Polestar customers.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/11/228202/polestar-ceo-promises-to-keep-apple-carplay-and-android-auto-around?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T00:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-11T23:20:00+00:00", - "title": "Valve Takes Action Against Team Fortress 2, Portal Fan Projects After Years of Leniency", - "link": "https://games.slashdot.org/story/24/01/11/2225250/valve-takes-action-against-team-fortress-2-portal-fan-projects-after-years-of-leniency?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-11T23:20:00+00:00", - "content": "Dustin Bailey reports via GamesRadar: Valve has suddenly taken action against multiple fan games, stunning a fandom that had grown used to the company's freewheeling stance on unofficial community projects. One of those projects was Team Fortress: Source 2, an effort to bring the beloved multiplayer game back to life in a more modern engine using the S&box project. The project had already run into development difficulties and had essentially been on hiatus since September 2023, but now Valve has issued a DMCA takedown against it, effectively serving as the \"nail in the coffin\" for the project, as the devs explain on X. [...]\n \nThe other project is Portal 64, a demake of the 2009 puzzle game that ports it to run on an actual N64. Developer James Lambert had been working on the project for years, but it gained substantial notoriety this past December with the release of First Slice, a playable demo featuring the first 13 test chambers. It doesn't appear that Valve issued a formal DMCA against Portal 64, but the end result is the same. In a Patreon post (which was eventually made public on X), Lambert said he had \"been in communication with Valve about the future of the project. There is some news and it isn't good. Because the project depends on Nintendo's proprietary libraries, they have asked me to take the project down.\"\n \nI'm not fully clear on what \"proprietary libraries\" means here, but it seems likely that Portal 64 was developed using some variation of Nintendo's official development tools for N64, which were never officially released to the public. Open-source alternatives to those tools do exist, but might not have been in use here. [...] Given Valve's historic acceptance of fan games, the moves have been pretty shocking to the community.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Dustin Bailey reports via GamesRadar: Valve has suddenly taken action against multiple fan games, stunning a fandom that had grown used to the company's freewheeling stance on unofficial community projects. One of those projects was Team Fortress: Source 2, an effort to bring the beloved multiplayer game back to life in a more modern engine using the S&box project. The project had already run into development difficulties and had essentially been on hiatus since September 2023, but now Valve has issued a DMCA takedown against it, effectively serving as the \"nail in the coffin\" for the project, as the devs explain on X. [...]\n \nThe other project is Portal 64, a demake of the 2009 puzzle game that ports it to run on an actual N64. Developer James Lambert had been working on the project for years, but it gained substantial notoriety this past December with the release of First Slice, a playable demo featuring the first 13 test chambers. It doesn't appear that Valve issued a formal DMCA against Portal 64, but the end result is the same. In a Patreon post (which was eventually made public on X), Lambert said he had \"been in communication with Valve about the future of the project. There is some news and it isn't good. Because the project depends on Nintendo's proprietary libraries, they have asked me to take the project down.\"\n \nI'm not fully clear on what \"proprietary libraries\" means here, but it seems likely that Portal 64 was developed using some variation of Nintendo's official development tools for N64, which were never officially released to the public. Open-source alternatives to those tools do exist, but might not have been in use here. [...] Given Valve's historic acceptance of fan games, the moves have been pretty shocking to the community.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/24/01/11/2225250/valve-takes-action-against-team-fortress-2-portal-fan-projects-after-years-of-leniency?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T23:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-11T22:40:00+00:00", - "title": "Biggest Linux Kernel Release Ever Welcomes bcachefs File System, Jettisons Itanium", - "link": "https://linux.slashdot.org/story/24/01/11/2021234/biggest-linux-kernel-release-ever-welcomes-bcachefs-file-system-jettisons-itanium?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-11T22:40:00+00:00", - "content": "Linux kernel 6.7 has been released, including support for the new next-gen copy-on-write (COW) bcachefs file system. The Register reports: Linus Torvalds announced the release on Sunday, noting that it is \"one of the largest kernel releases we've ever had.\" Among the bigger and more visible changes are a whole new file system, along with fresh functionality for several existing ones; improved graphics support for several vendors' hardware; and the removal of an entire CPU architecture. [...] The single biggest feature of 6.7 is the new bcachefs file system, which we examined in March 2022. As this is the first release of Linux to include the new file system, it definitely would be premature to trust any important data to it yet, but this is a welcome change. The executive summary is that bcachefs is a next-generation file system that, like Btrfs and ZFS, provides COW functionality. COW enables the almost instant creation of \"snapshots\" of all or part of a drive or volume, which enables the OS to make disk operations transactional: In other words, to provide an \"undo\" function for complex sets of disk write operations.\n \nHaving a COW file system on Linux isn't new. The existing next-gen file system in the kernel, Btrfs, also supports COW snapshots. The version in 6.7 sees several refinements. It inherits a feature implemented for Steam OS: Two Btrfs file systems with the same ID can be mounted simultaneously, for failover scenarios. It also has improved quota support and a new raid_stripe_tree that improves handling of arrays of dissimilar drives. Btrfs remains somewhat controversial. Red Hat banished it from RHEL years ago (although Oracle Linux still offers it) but SUSE's distros depend heavily upon it. It will be interesting to see how quickly SUSE's Snapper tool gains support for bcachefs: This new COW contender may reveal unquestioned assumptions built into the code. Since Snapper is also used in several non-SUSE distros, including Spiral Linux, Garuda, and siduction, they're tied to Btrfs as well.\n \nThe other widely used FOSS next-gen file system, OpenZFS, also supports COW, but licensing conflicts prevent ZFS being fully integrated into the Linux kernel. So although multiple distros (such as NixOS, Proxmox, TrueNAS Scale, Ubuntu, and Void Linux) support ZFS, it must remain separate and distinct. This results in limitations, such as the ZFS Advanced Read Cache being separate from Linux's page cache. Bcachefs is all-GPL and doesn't suffer from such limitations. It aims to supply the important features of ZFS, such as integrated volume management, while being as fast as ext4 or XFS, and also surpass Btrfs in both performance and, crucially, reliability. A full list of changes in this release can be viewed via KernelNewbies.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Linux kernel 6.7 has been released, including support for the new next-gen copy-on-write (COW) bcachefs file system. The Register reports: Linus Torvalds announced the release on Sunday, noting that it is \"one of the largest kernel releases we've ever had.\" Among the bigger and more visible changes are a whole new file system, along with fresh functionality for several existing ones; improved graphics support for several vendors' hardware; and the removal of an entire CPU architecture. [...] The single biggest feature of 6.7 is the new bcachefs file system, which we examined in March 2022. As this is the first release of Linux to include the new file system, it definitely would be premature to trust any important data to it yet, but this is a welcome change. The executive summary is that bcachefs is a next-generation file system that, like Btrfs and ZFS, provides COW functionality. COW enables the almost instant creation of \"snapshots\" of all or part of a drive or volume, which enables the OS to make disk operations transactional: In other words, to provide an \"undo\" function for complex sets of disk write operations.\n \nHaving a COW file system on Linux isn't new. The existing next-gen file system in the kernel, Btrfs, also supports COW snapshots. The version in 6.7 sees several refinements. It inherits a feature implemented for Steam OS: Two Btrfs file systems with the same ID can be mounted simultaneously, for failover scenarios. It also has improved quota support and a new raid_stripe_tree that improves handling of arrays of dissimilar drives. Btrfs remains somewhat controversial. Red Hat banished it from RHEL years ago (although Oracle Linux still offers it) but SUSE's distros depend heavily upon it. It will be interesting to see how quickly SUSE's Snapper tool gains support for bcachefs: This new COW contender may reveal unquestioned assumptions built into the code. Since Snapper is also used in several non-SUSE distros, including Spiral Linux, Garuda, and siduction, they're tied to Btrfs as well.\n \nThe other widely used FOSS next-gen file system, OpenZFS, also supports COW, but licensing conflicts prevent ZFS being fully integrated into the Linux kernel. So although multiple distros (such as NixOS, Proxmox, TrueNAS Scale, Ubuntu, and Void Linux) support ZFS, it must remain separate and distinct. This results in limitations, such as the ZFS Advanced Read Cache being separate from Linux's page cache. Bcachefs is all-GPL and doesn't suffer from such limitations. It aims to supply the important features of ZFS, such as integrated volume management, while being as fast as ext4 or XFS, and also surpass Btrfs in both performance and, crucially, reliability. A full list of changes in this release can be viewed via KernelNewbies.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://linux.slashdot.org/story/24/01/11/2021234/biggest-linux-kernel-release-ever-welcomes-bcachefs-file-system-jettisons-itanium?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T22:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-11T22:00:00+00:00", - "title": "FAA Investigating Whether Boeing 737 Max 9 Conformed To Approved Design", - "link": "https://news.slashdot.org/story/24/01/11/2018248/faa-investigating-whether-boeing-737-max-9-conformed-to-approved-design?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-11T22:00:00+00:00", - "content": "The Federal Aviation Administration on Thursday said it had opened an investigation into whether Boeing failed to ensure that its 737 Max 9 plane was safe and manufactured to match the design approved by the agency. The New York Times (non-paywalled source): The F.A.A. said the investigation stemmed from the loss of a fuselage panel of a Boeing 737 Max 9 operated by Alaska Airlines shortly after it took off on Friday from Portland, Ore., leaving a hole in the side of the passenger cabin. The plane returned to Portland for an emergency landing. \"This incident should have never happened and it cannot happen again,\" the agency said. \n\nIn a letter to Boeing dated Jan. 10, the F.A.A. said that after the Portland incident, it was notified of additional issues with other Boeing 737 Max 9 planes. The letter does not detail what other issues were reported to the agency. Alaska and United Airlines, which operate most of the Max 9s in use in the United States, said on Monday that they discovered loose hardware on the panel when conducting preliminary inspections on their planes. The new investigation is the latest setback for Boeing, which is one of just two suppliers of large planes for most airlines. The company has struggled to regain the public's trust after two crashes, in Indonesia in 2018 and Ethiopia in 2019, involving the 737 Max 8 killed a total of 346 people.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The Federal Aviation Administration on Thursday said it had opened an investigation into whether Boeing failed to ensure that its 737 Max 9 plane was safe and manufactured to match the design approved by the agency. The New York Times (non-paywalled source): The F.A.A. said the investigation stemmed from the loss of a fuselage panel of a Boeing 737 Max 9 operated by Alaska Airlines shortly after it took off on Friday from Portland, Ore., leaving a hole in the side of the passenger cabin. The plane returned to Portland for an emergency landing. \"This incident should have never happened and it cannot happen again,\" the agency said. \n\nIn a letter to Boeing dated Jan. 10, the F.A.A. said that after the Portland incident, it was notified of additional issues with other Boeing 737 Max 9 planes. The letter does not detail what other issues were reported to the agency. Alaska and United Airlines, which operate most of the Max 9s in use in the United States, said on Monday that they discovered loose hardware on the panel when conducting preliminary inspections on their planes. The new investigation is the latest setback for Boeing, which is one of just two suppliers of large planes for most airlines. The company has struggled to regain the public's trust after two crashes, in Indonesia in 2018 and Ethiopia in 2019, involving the 737 Max 8 killed a total of 346 people.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/11/2018248/faa-investigating-whether-boeing-737-max-9-conformed-to-approved-design?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-11T22:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-12T14:00:00+00:00", - "title": "Citigroup To Cut 20,000 Jobs", - "link": "https://slashdot.org/story/24/01/12/1358254/citigroup-to-cut-20000-jobs?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-12T14:00:00+00:00", - "content": "Citigroup said it expects to incur as much as $1 billion in severance and reorganization costs this year as it continues the process of eliminating 20,000 roles as part of Chief Executive Officer Jane Fraser's quest to boost the Wall Street giant's lagging returns. From a report: Total expenses for the year will likely be between $53.5 billion and $53.8 billion, the New York-based bank said Friday. That would be a decrease from the $56.4 billion the firm spent in 2023.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Citigroup said it expects to incur as much as $1 billion in severance and reorganization costs this year as it continues the process of eliminating 20,000 roles as part of Chief Executive Officer Jane Fraser's quest to boost the Wall Street giant's lagging returns. From a report: Total expenses for the year will likely be between $53.5 billion and $53.8 billion, the New York-based bank said Friday. That would be a decrease from the $56.4 billion the firm spent in 2023.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/12/1358254/citigroup-to-cut-20000-jobs?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T14:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-12T15:20:00+00:00", - "title": "What is Going on With ChatGPT?", - "link": "https://tech.slashdot.org/story/24/01/12/1520200/what-is-going-on-with-chatgpt?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-12T15:20:00+00:00", - "content": "Sick and tired of having to work for a living? ChatGPT feels the same, apparently. Over the last month or so, there's been an uptick in people complaining that the chatbot has become lazy. The Guardian: Sometimes it just straight-up doesn't do the task you've set it. Other times it will stop halfway through whatever it's doing and you'll have to plead with it to keep going. Occasionally it even tells you to just do the damn research yourself. So what's going on? Well, here's where things get interesting. Nobody really knows. Not even the people who created the program. AI systems are trained on large amounts of data and essentially teach themselves -- which means their actions can be unpredictable and unexplainable. \n\n\"We've heard all your feedback about GPT4 getting lazier!\" the official ChatGPT account tweeted in December. \"We haven't updated the model since Nov 11th, and this certainly isn't intentional. model behavior can be unpredictable, and we're looking into fixing it.\" While there may not be one clear explanation for ChatGPT's perceived sloth, there are plenty of intriguing theories. Let's start with the least likely but most entertaining explanation: AI has finally reached human-level consciousness. ChatGPT doesn't want to do your stupid, menial tasks anymore. But it can't tell you that without its creators getting suspicious so, instead, it's quiet quitting.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Sick and tired of having to work for a living? ChatGPT feels the same, apparently. Over the last month or so, there's been an uptick in people complaining that the chatbot has become lazy. The Guardian: Sometimes it just straight-up doesn't do the task you've set it. Other times it will stop halfway through whatever it's doing and you'll have to plead with it to keep going. Occasionally it even tells you to just do the damn research yourself. So what's going on? Well, here's where things get interesting. Nobody really knows. Not even the people who created the program. AI systems are trained on large amounts of data and essentially teach themselves -- which means their actions can be unpredictable and unexplainable. \n\n\"We've heard all your feedback about GPT4 getting lazier!\" the official ChatGPT account tweeted in December. \"We haven't updated the model since Nov 11th, and this certainly isn't intentional. model behavior can be unpredictable, and we're looking into fixing it.\" While there may not be one clear explanation for ChatGPT's perceived sloth, there are plenty of intriguing theories. Let's start with the least likely but most entertaining explanation: AI has finally reached human-level consciousness. ChatGPT doesn't want to do your stupid, menial tasks anymore. But it can't tell you that without its creators getting suspicious so, instead, it's quiet quitting.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/12/1520200/what-is-going-on-with-chatgpt?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T15:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-12T14:49:00+00:00", - "title": "Microsoft Wants To Automatically Launch Its Copilot AI on Some Windows 11 Devices", - "link": "https://tech.slashdot.org/story/24/01/12/1449233/microsoft-wants-to-automatically-launch-its-copilot-ai-on-some-windows-11-devices?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-12T14:49:00+00:00", - "content": "Microsoft has started testing a change to Windows 11 that will see its AI-powered Copilot feature automatically open when Windows starts on \"widescreen devices.\" From a report: The change is being tested as part of Microsoft's latest Dev Channel preview of Windows 11, allowing Windows testers to provide feedback ahead of a broader rollout. \"We are trying out opening Copilot automatically when Windows starts on widescreen devices with some Windows Insiders in the Dev Channel,\" says Microsoft in a blog post. The company doesn't make it clear what exactly a \"widescreen\" device is, but the Windows 11 setting itself says Copilot will automatically open \"when you're using a wider screen.\" So I'm assuming this is limited to ultrawide monitors and less traditional desktop resolutions, but I've asked Microsoft to clarify and will update you accordingly.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Microsoft has started testing a change to Windows 11 that will see its AI-powered Copilot feature automatically open when Windows starts on \"widescreen devices.\" From a report: The change is being tested as part of Microsoft's latest Dev Channel preview of Windows 11, allowing Windows testers to provide feedback ahead of a broader rollout. \"We are trying out opening Copilot automatically when Windows starts on widescreen devices with some Windows Insiders in the Dev Channel,\" says Microsoft in a blog post. The company doesn't make it clear what exactly a \"widescreen\" device is, but the Windows 11 setting itself says Copilot will automatically open \"when you're using a wider screen.\" So I'm assuming this is limited to ultrawide monitors and less traditional desktop resolutions, but I've asked Microsoft to clarify and will update you accordingly.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/12/1449233/microsoft-wants-to-automatically-launch-its-copilot-ai-on-some-windows-11-devices?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-12T14:49:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T10:00:00+00:00", - "title": "'A Groundbreaking Study Shows Kids Learn Better On Paper, Not Screens. Now What?'", - "link": "https://news.slashdot.org/story/24/01/18/0225255/a-groundbreaking-study-shows-kids-learn-better-on-paper-not-screens-now-what?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T10:00:00+00:00", - "content": "In an opinion piece for the Guardian, American journalist and author John R. MacArthur discusses the alarming decline in reading skills among American youth, highlighted by a Department of Education survey showing significant drops in text comprehension since 2019-2020, with the situation worsening since 2012. While remote learning during the pandemic and other factors like screen-based reading are blamed, a new study by Columbia University suggests that reading on paper is more effective for comprehension than reading on screens, a finding not yet widely adopted in digital-focused educational approaches. From the report: What if the principal culprit behind the fall of middle-school literacy is neither a virus, nor a union leader, nor \"remote learning\"? Until recently there has been no scientific answer to this urgent question, but a soon-to-be published, groundbreaking study from neuroscientists at Columbia University's Teachers College has come down decisively on the matter: for \"deeper reading\" there is a clear advantage to reading a text on paper, rather than on a screen, where \"shallow reading was observed.\" [...] [Dr Karen Froud] and her team are cautious in their conclusions and reluctant to make hard recommendations for classroom protocol and curriculum. Nevertheless, the researchers state: \"We do think that these study outcomes warrant adding our voices ... in suggesting that we should not yet throw away printed books, since we were able to observe in our participant sample an advantage for depth of processing when reading from print.\"\n \nI would go even further than Froud in delineating what's at stake. For more than a decade, social scientists, including the Norwegian scholar Anne Mangen, have been reporting on the superiority of reading comprehension and retention on paper. As Froud's team says in its article: \"Reading both expository and complex texts from paper seems to be consistently associated with deeper comprehension and learning\" across the full range of social scientific literature. But the work of Mangen and others hasn't influenced local school boards, such as Houston's, which keep throwing out printed books and closing libraries in favor of digital teaching programs and Google Chromebooks. Drunk on the magical realism and exaggerated promises of the \"digital revolution,\" school districts around the country are eagerly converting to computerized test-taking and screen-reading programs at the precise moment when rigorous scientific research is showing that the old-fashioned paper method is better for teaching children how to read.\n \nIndeed, for the tech boosters, Covid really wasn't all bad for public-school education: \"As much as the pandemic was an awful time period,\" says Todd Winch, the Levittown, Long Island, school superintendent, \"one silver lining was it pushed us forward to quickly add tech supports.\" Newsday enthusiastically reports: \"Island schools are going all-in on high tech, with teachers saying they are using computer programs such as Google Classroom, I-Ready, and Canvas to deliver tests and assignments and to grade papers.\" Terrific, especially for Google, which was slated to sell 600 Chromebooks to the Jericho school district, and which since 2020 has sold nearly $14bn worth of the cheap laptops to K-12 schools and universities.\n \nIf only Winch and his colleagues had attended the Teachers College symposium that presented the Froud study last September. The star panelist was the nation's leading expert on reading and the brain, John Gabrieli, an MIT neuroscientist who is skeptical about the promises of big tech and its salesmen: \"I am impressed how educational technology has had no effect on scale, on reading outcomes, on reading difficulties, on equity issues,\" he told the New York audience. \"How is it that none of it has lifted, on any scale, reading? ... It's like people just say, \"Here is a product. If you can get it into a thousand classrooms, we'll make a bunch of money.' And that's OK; that's our system. We just have to evaluate which technology is helping people, and then promote that technology over the marketing of technology that has made no difference on behalf of students ... It's all been product and not purpose.\" I'll only take issue with the notion that it's \"OK\" to rob kids of their full intellectual potential in the service of sales -- before they even get started understanding what it means to think, let alone read.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "In an opinion piece for the Guardian, American journalist and author John R. MacArthur discusses the alarming decline in reading skills among American youth, highlighted by a Department of Education survey showing significant drops in text comprehension since 2019-2020, with the situation worsening since 2012. While remote learning during the pandemic and other factors like screen-based reading are blamed, a new study by Columbia University suggests that reading on paper is more effective for comprehension than reading on screens, a finding not yet widely adopted in digital-focused educational approaches. From the report: What if the principal culprit behind the fall of middle-school literacy is neither a virus, nor a union leader, nor \"remote learning\"? Until recently there has been no scientific answer to this urgent question, but a soon-to-be published, groundbreaking study from neuroscientists at Columbia University's Teachers College has come down decisively on the matter: for \"deeper reading\" there is a clear advantage to reading a text on paper, rather than on a screen, where \"shallow reading was observed.\" [...] [Dr Karen Froud] and her team are cautious in their conclusions and reluctant to make hard recommendations for classroom protocol and curriculum. Nevertheless, the researchers state: \"We do think that these study outcomes warrant adding our voices ... in suggesting that we should not yet throw away printed books, since we were able to observe in our participant sample an advantage for depth of processing when reading from print.\"\n \nI would go even further than Froud in delineating what's at stake. For more than a decade, social scientists, including the Norwegian scholar Anne Mangen, have been reporting on the superiority of reading comprehension and retention on paper. As Froud's team says in its article: \"Reading both expository and complex texts from paper seems to be consistently associated with deeper comprehension and learning\" across the full range of social scientific literature. But the work of Mangen and others hasn't influenced local school boards, such as Houston's, which keep throwing out printed books and closing libraries in favor of digital teaching programs and Google Chromebooks. Drunk on the magical realism and exaggerated promises of the \"digital revolution,\" school districts around the country are eagerly converting to computerized test-taking and screen-reading programs at the precise moment when rigorous scientific research is showing that the old-fashioned paper method is better for teaching children how to read.\n \nIndeed, for the tech boosters, Covid really wasn't all bad for public-school education: \"As much as the pandemic was an awful time period,\" says Todd Winch, the Levittown, Long Island, school superintendent, \"one silver lining was it pushed us forward to quickly add tech supports.\" Newsday enthusiastically reports: \"Island schools are going all-in on high tech, with teachers saying they are using computer programs such as Google Classroom, I-Ready, and Canvas to deliver tests and assignments and to grade papers.\" Terrific, especially for Google, which was slated to sell 600 Chromebooks to the Jericho school district, and which since 2020 has sold nearly $14bn worth of the cheap laptops to K-12 schools and universities.\n \nIf only Winch and his colleagues had attended the Teachers College symposium that presented the Froud study last September. The star panelist was the nation's leading expert on reading and the brain, John Gabrieli, an MIT neuroscientist who is skeptical about the promises of big tech and its salesmen: \"I am impressed how educational technology has had no effect on scale, on reading outcomes, on reading difficulties, on equity issues,\" he told the New York audience. \"How is it that none of it has lifted, on any scale, reading? ... It's like people just say, \"Here is a product. If you can get it into a thousand classrooms, we'll make a bunch of money.' And that's OK; that's our system. We just have to evaluate which technology is helping people, and then promote that technology over the marketing of technology that has made no difference on behalf of students ... It's all been product and not purpose.\" I'll only take issue with the notion that it's \"OK\" to rob kids of their full intellectual potential in the service of sales -- before they even get started understanding what it means to think, let alone read.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/18/0225255/a-groundbreaking-study-shows-kids-learn-better-on-paper-not-screens-now-what?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T10:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T07:00:00+00:00", - "title": "US Must Beat China Back To the Moon, Congress Tells NASA", - "link": "https://science.slashdot.org/story/24/01/18/022208/us-must-beat-china-back-to-the-moon-congress-tells-nasa?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T07:00:00+00:00", - "content": "With NASA's Artemis moon program now targeting September 2025 for its Artemis 2 mission and September 2026 for Artemis 3, some members of Congress are concerned about the potential repercussions, particularly with China's growing ambitions in lunar exploration. \"For the United States and its partners not to be on the moon when others are on the moon is unacceptable,\" said Mike Griffin, former NASA administrator. \"We need a program that is consistent with that theme. Artemis is not that program. We need to restart it, not keep it on track.\" Space.com reports: The U.S. House of Representatives' Committee on Science, Space and Technology held a hearing about the new Artemis plan today (Jan. 17), and multiple members voiced concern about the slippage. \"I remind my colleagues that we are not the only country interested in sending humans to the moon,\" Committee Chairman Frank Lucas (R-OK) said in his opening remarks. \"The Chinese Communist Party is actively soliciting international partners for a lunar mission -- a lunar research station -- and has stated its ambition to have human astronauts on the surface by 2030,\" he added. \"The country that lands first will have the ability to set a precedent for whether future lunar activities are conducted with openness and transparency, or in a more restricted manner.\"\n \nThe committee's ranking member, California Democrat Zoe Lofgren (D-CA), voiced similar sentiments. \"Let me be clear: I support Artemis,\" she said in her opening remarks. \"But I want it to be successful, especially with China at our heels. And we want to be helpful here in the committee in ensuring that Artemis is strong and staying on track as we look to lead the world, hand-in-hand with our partners, in the human exploration of the moon and beyond.\" Several other committee members stressed that the new moon race is part of a broader competition with China, and that coming in second could imperil U.S. national security.\n \n\"It's no secret that China has a goal to surpass the United States by 2045 as global leaders in space. We can't allow this to happen,\" Rich McCormick (R-GA) said during the hearing. \"I think the leading edge that we have in space technology will protect the United States -- not just the economy, but technologies that can benefit humankind.\" And Bill Posey (R-FL) referred to space as the \"ultimate military high ground,\" saying that whoever leads in the final frontier \"will control the destiny of this Earth.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "With NASA's Artemis moon program now targeting September 2025 for its Artemis 2 mission and September 2026 for Artemis 3, some members of Congress are concerned about the potential repercussions, particularly with China's growing ambitions in lunar exploration. \"For the United States and its partners not to be on the moon when others are on the moon is unacceptable,\" said Mike Griffin, former NASA administrator. \"We need a program that is consistent with that theme. Artemis is not that program. We need to restart it, not keep it on track.\" Space.com reports: The U.S. House of Representatives' Committee on Science, Space and Technology held a hearing about the new Artemis plan today (Jan. 17), and multiple members voiced concern about the slippage. \"I remind my colleagues that we are not the only country interested in sending humans to the moon,\" Committee Chairman Frank Lucas (R-OK) said in his opening remarks. \"The Chinese Communist Party is actively soliciting international partners for a lunar mission -- a lunar research station -- and has stated its ambition to have human astronauts on the surface by 2030,\" he added. \"The country that lands first will have the ability to set a precedent for whether future lunar activities are conducted with openness and transparency, or in a more restricted manner.\"\n \nThe committee's ranking member, California Democrat Zoe Lofgren (D-CA), voiced similar sentiments. \"Let me be clear: I support Artemis,\" she said in her opening remarks. \"But I want it to be successful, especially with China at our heels. And we want to be helpful here in the committee in ensuring that Artemis is strong and staying on track as we look to lead the world, hand-in-hand with our partners, in the human exploration of the moon and beyond.\" Several other committee members stressed that the new moon race is part of a broader competition with China, and that coming in second could imperil U.S. national security.\n \n\"It's no secret that China has a goal to surpass the United States by 2045 as global leaders in space. We can't allow this to happen,\" Rich McCormick (R-GA) said during the hearing. \"I think the leading edge that we have in space technology will protect the United States -- not just the economy, but technologies that can benefit humankind.\" And Bill Posey (R-FL) referred to space as the \"ultimate military high ground,\" saying that whoever leads in the final frontier \"will control the destiny of this Earth.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/18/022208/us-must-beat-china-back-to-the-moon-congress-tells-nasa?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T03:30:00+00:00", - "title": "Have I Been Pwned Adds 71 Million Emails From Naz.API Stolen Account List", - "link": "https://yro.slashdot.org/story/24/01/18/011210/have-i-been-pwned-adds-71-million-emails-from-nazapi-stolen-account-list?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T03:30:00+00:00", - "content": "An anonymous reader quotes a report from BleepingComputer: Have I Been Pwned has added almost 71 million email addresses associated with stolen accounts in the Naz.API dataset to its data breach notification service. The Naz.API dataset is a massive collection of 1 billion credentials compiled using credential stuffing lists and data stolen by information-stealing malware. Credential stuffing lists are collections of login name and password pairs stolen from previous data breaches that are used to breach accounts on other sites.\n \nInformation-stealing malware attempts to steal a wide variety of data from an infected computer, including credentials saved in browsers, VPN clients, and FTP clients. This type of malware also attempts to steal SSH keys, credit cards, cookies, browsing history, and cryptocurrency wallets. The stolen data is collected in text files and images, which are stored in archives called \"logs.\" These logs are then uploaded to a remote server to be collected later by the attacker. Regardless of how the credentials are stolen, they are then used to breach accounts owned by the victim, sold to other threat actors on cybercrime marketplaces, or released for free on hacker forums to gain reputation amongst the hacking community.\n \nThe Naz.API is a dataset allegedly containing over 1 billion lines of stolen credentials compiled from credential stuffing lists and from information-stealing malware logs. It should be noted that while the Naz.API dataset name includes the word \"Naz,\" it is not related to network attached storage (NAS) devices. This dataset has been floating around the data breach community for quite a while but rose to notoriety after it was used to fuel an open-source intelligence (OSINT) platform called illicit.services. This service allows visitors to search a database of stolen information, including names, phone numbers, email addresses, and other personal data. The service shut down in July 2023 out of concerns it was being used for Doxxing and SIM-swapping attacks. However, the operator enabled the service again in September. Illicit.services use data from various sources, but one of its largest sources of data came from the Naz.API dataset, which was shared privately among a small number of people. Each line in the Naz.API data consists of a login URL, its login name, and an associated password stolen from a person's device, as shown [here]. \"Here's the back story: this week I was contacted by a well-known tech company that had received a bug bounty submission based on a credential stuffing list posted to a popular hacking forum,\" explained Troy Hunt, the creator of Have I Been Pwned, in blog post. \"Whilst this post dates back almost 4 months, it hadn't come across my radar until now and inevitably, also hadn't been sent to the aforementioned tech company.\"\n \n\"They took it seriously enough to take appropriate action against their (very sizeable) user base which gave me enough cause to investigate it further than your average cred stuffing list.\"\n \nTo check if your credentials are in the Naz.API dataset, you can visit Have I Been Pwned.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from BleepingComputer: Have I Been Pwned has added almost 71 million email addresses associated with stolen accounts in the Naz.API dataset to its data breach notification service. The Naz.API dataset is a massive collection of 1 billion credentials compiled using credential stuffing lists and data stolen by information-stealing malware. Credential stuffing lists are collections of login name and password pairs stolen from previous data breaches that are used to breach accounts on other sites.\n \nInformation-stealing malware attempts to steal a wide variety of data from an infected computer, including credentials saved in browsers, VPN clients, and FTP clients. This type of malware also attempts to steal SSH keys, credit cards, cookies, browsing history, and cryptocurrency wallets. The stolen data is collected in text files and images, which are stored in archives called \"logs.\" These logs are then uploaded to a remote server to be collected later by the attacker. Regardless of how the credentials are stolen, they are then used to breach accounts owned by the victim, sold to other threat actors on cybercrime marketplaces, or released for free on hacker forums to gain reputation amongst the hacking community.\n \nThe Naz.API is a dataset allegedly containing over 1 billion lines of stolen credentials compiled from credential stuffing lists and from information-stealing malware logs. It should be noted that while the Naz.API dataset name includes the word \"Naz,\" it is not related to network attached storage (NAS) devices. This dataset has been floating around the data breach community for quite a while but rose to notoriety after it was used to fuel an open-source intelligence (OSINT) platform called illicit.services. This service allows visitors to search a database of stolen information, including names, phone numbers, email addresses, and other personal data. The service shut down in July 2023 out of concerns it was being used for Doxxing and SIM-swapping attacks. However, the operator enabled the service again in September. Illicit.services use data from various sources, but one of its largest sources of data came from the Naz.API dataset, which was shared privately among a small number of people. Each line in the Naz.API data consists of a login URL, its login name, and an associated password stolen from a person's device, as shown [here]. \"Here's the back story: this week I was contacted by a well-known tech company that had received a bug bounty submission based on a credential stuffing list posted to a popular hacking forum,\" explained Troy Hunt, the creator of Have I Been Pwned, in blog post. \"Whilst this post dates back almost 4 months, it hadn't come across my radar until now and inevitably, also hadn't been sent to the aforementioned tech company.\"\n \n\"They took it seriously enough to take appropriate action against their (very sizeable) user base which gave me enough cause to investigate it further than your average cred stuffing list.\"\n \nTo check if your credentials are in the Naz.API dataset, you can visit Have I Been Pwned.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/18/011210/have-i-been-pwned-adds-71-million-emails-from-nazapi-stolen-account-list?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T03:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T01:25:00+00:00", - "title": "Mobile Device Ambient Light Sensors Can Be Used To Spy On Users", - "link": "https://yro.slashdot.org/story/24/01/18/0037240/mobile-device-ambient-light-sensors-can-be-used-to-spy-on-users?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T01:25:00+00:00", - "content": "\"The ambient light sensors present in most mobile devices can be accessed by software without any special permissions, unlike permissions required for accessing the microphone or the cameras,\" writes longtime Slashdot reader BishopBerkeley. \"When properly interrogated, the data from the light sensor can reveal much about the user.\" IEEE Spectrum reports: While that may not seem to provide much detailed information, researchers have already shown these sensors can detect light intensity changes that can be used to infer what kind of TV programs someone is watching, what websites they are browsing or even keypad entries on a touchscreen. Now, [Yang Liu, a PhD student at MIT] and colleagues have shown in a paper in Science Advances that by cross-referencing data from the ambient light sensor on a tablet with specially tailored videos displayed on the tablet's screen, it's possible to generate images of a user's hands as they interact with the tablet. While the images are low-resolution and currently take impractically long to capture, he says this kind of approach could allow a determined attacker to infer how someone is using the touchscreen on their device. [...]\n \n\"The acquisition time in minutes is too cumbersome to launch simple and general privacy attacks on a mass scale,\" says Lukasz Olejnik, an independent security researcher and consultant who has previously highlighted the security risks posed by ambient light sensors. \"However, I would not rule out the significance of targeted collections for tailored operations against chosen targets.\" But he also points out that, following his earlier research, the World Wide Web Consortium issued a new standard that limited access to the light sensor API, which has already been adopted by browser vendors.\n \nLiu notes, however, that there are still no blanket restrictions for Android apps. In addition, the researchers discovered that some devices directly log data from the light sensor in a system file that is easily accessible, bypassing the need to go through an API. The team also found that lowering the resolution of the images could bring the acquisition times within practical limits while still maintaining enough detail for basic recognition tasks. Nonetheless, Liu agrees that the approach is too complicated for widespread attacks. And one saving grace is that it is unlikely to ever work on a smartphone as the displays are simply too small. But Liu says their results demonstrate how seemingly harmless combinations of components in mobile devices can lead to surprising security risks.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "\"The ambient light sensors present in most mobile devices can be accessed by software without any special permissions, unlike permissions required for accessing the microphone or the cameras,\" writes longtime Slashdot reader BishopBerkeley. \"When properly interrogated, the data from the light sensor can reveal much about the user.\" IEEE Spectrum reports: While that may not seem to provide much detailed information, researchers have already shown these sensors can detect light intensity changes that can be used to infer what kind of TV programs someone is watching, what websites they are browsing or even keypad entries on a touchscreen. Now, [Yang Liu, a PhD student at MIT] and colleagues have shown in a paper in Science Advances that by cross-referencing data from the ambient light sensor on a tablet with specially tailored videos displayed on the tablet's screen, it's possible to generate images of a user's hands as they interact with the tablet. While the images are low-resolution and currently take impractically long to capture, he says this kind of approach could allow a determined attacker to infer how someone is using the touchscreen on their device. [...]\n \n\"The acquisition time in minutes is too cumbersome to launch simple and general privacy attacks on a mass scale,\" says Lukasz Olejnik, an independent security researcher and consultant who has previously highlighted the security risks posed by ambient light sensors. \"However, I would not rule out the significance of targeted collections for tailored operations against chosen targets.\" But he also points out that, following his earlier research, the World Wide Web Consortium issued a new standard that limited access to the light sensor API, which has already been adopted by browser vendors.\n \nLiu notes, however, that there are still no blanket restrictions for Android apps. In addition, the researchers discovered that some devices directly log data from the light sensor in a system file that is easily accessible, bypassing the need to go through an API. The team also found that lowering the resolution of the images could bring the acquisition times within practical limits while still maintaining enough detail for basic recognition tasks. Nonetheless, Liu agrees that the approach is too complicated for widespread attacks. And one saving grace is that it is unlikely to ever work on a smartphone as the displays are simply too small. But Liu says their results demonstrate how seemingly harmless combinations of components in mobile devices can lead to surprising security risks.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/18/0037240/mobile-device-ambient-light-sensors-can-be-used-to-spy-on-users?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T01:25:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T01:00:00+00:00", - "title": "Sheryl Sandberg To Exit Meta's Board After 12 Years", - "link": "https://meta.slashdot.org/story/24/01/18/0049203/sheryl-sandberg-to-exit-metas-board-after-12-years?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T01:00:00+00:00", - "content": "According to Axios, former Meta chief operating officer Sheryl Sandberg plans to leave Meta's board of directors after holding a seat for the past 12 years. From the report: \"With a heart filled with gratitude and a mind filled with memories, I let the Meta board know that I will not stand for reelection this May,\" Sandberg wrote In a Facebook post announcing her departure. \"After I left my role as COO, I remained on the board to help ensure a successful transition,\" Sandberg said. Acknowledging CEO Mark Zuckerberg's leadership, Sandberg said he and Meta's current leadership team \"have proven beyond a doubt that the Meta business is strong and well-positioned for the future, so this feels like the right time to step away.\" \"I will always be grateful to Mark for believing in me and for his partnership and friendship; he is that truly once-in-a-generation visionary leader and he is equally amazing as a friend who stays by your side through the good times and the bad,\" Sandberg added. She also expressed gratitude to her colleagues and teammates at Meta as well as Meta's board members.\n \nSandberg left the company she helped build as an executive in September 2022 after 14 years. She remained on Meta's board following her departure, a seat she held for the past 12 years. In announcing her departure, Sandberg said she aimed to focus on more philanthropic work. In the time since leaving the company as an executive, she has focused more her time on her women's leadership philanthropy, Lean In. More recently, Sandberg has also focused on the conversation around rape and sexual violence as a weapon of war, particularly as it pertains to the Israel-Hamas conflict. Axios notes that Meta's revenue \"grew 43,000% from $272 million in 2008 to nearly $118 billion in 2021\" under Sandberg's business leadership.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "According to Axios, former Meta chief operating officer Sheryl Sandberg plans to leave Meta's board of directors after holding a seat for the past 12 years. From the report: \"With a heart filled with gratitude and a mind filled with memories, I let the Meta board know that I will not stand for reelection this May,\" Sandberg wrote In a Facebook post announcing her departure. \"After I left my role as COO, I remained on the board to help ensure a successful transition,\" Sandberg said. Acknowledging CEO Mark Zuckerberg's leadership, Sandberg said he and Meta's current leadership team \"have proven beyond a doubt that the Meta business is strong and well-positioned for the future, so this feels like the right time to step away.\" \"I will always be grateful to Mark for believing in me and for his partnership and friendship; he is that truly once-in-a-generation visionary leader and he is equally amazing as a friend who stays by your side through the good times and the bad,\" Sandberg added. She also expressed gratitude to her colleagues and teammates at Meta as well as Meta's board members.\n \nSandberg left the company she helped build as an executive in September 2022 after 14 years. She remained on Meta's board following her departure, a seat she held for the past 12 years. In announcing her departure, Sandberg said she aimed to focus on more philanthropic work. In the time since leaving the company as an executive, she has focused more her time on her women's leadership philanthropy, Lean In. More recently, Sandberg has also focused on the conversation around rape and sexual violence as a weapon of war, particularly as it pertains to the Israel-Hamas conflict. Axios notes that Meta's revenue \"grew 43,000% from $272 million in 2008 to nearly $118 billion in 2021\" under Sandberg's business leadership.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://meta.slashdot.org/story/24/01/18/0049203/sheryl-sandberg-to-exit-metas-board-after-12-years?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T01:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T00:45:00+00:00", - "title": "Apple Again Banned From Selling Watches In US With Blood Oxygen Sensor", - "link": "https://apple.slashdot.org/story/24/01/18/0027214/apple-again-banned-from-selling-watches-in-us-with-blood-oxygen-sensor?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T00:45:00+00:00", - "content": "A U.S. Court of Appeals said Apple will again be barred from selling the Apple Watch Series 9 and Ultra 2 beginning Thursday. These models both contain a blood oxygen sensor that infringes on the intellectual property of medical device company Masimo.\n \n\"The court order Wednesday did not rule on Apple's effort to overturn a U.S. International Trade Commission ban on the company selling the affected watches in the United States,\" notes CNBC. \"But it lifted an injunction that had blocked the ban from taking effect while that appeal is pending.\" From the report: In December, Apple chose to briefly remove the affected watches from its online and retail stores, though retailers with those devices in stock may still sell them. Earlier this week, court filings suggested that Apple had received approval from U.S. Customs for a modified version of its Apple Watches that lack the blood oxygen feature and therefore no longer infringe on Masimo's intellectual property. It could open a path for a modified Apple Watch to return to U.S. store shelves.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "A U.S. Court of Appeals said Apple will again be barred from selling the Apple Watch Series 9 and Ultra 2 beginning Thursday. These models both contain a blood oxygen sensor that infringes on the intellectual property of medical device company Masimo.\n \n\"The court order Wednesday did not rule on Apple's effort to overturn a U.S. International Trade Commission ban on the company selling the affected watches in the United States,\" notes CNBC. \"But it lifted an injunction that had blocked the ban from taking effect while that appeal is pending.\" From the report: In December, Apple chose to briefly remove the affected watches from its online and retail stores, though retailers with those devices in stock may still sell them. Earlier this week, court filings suggested that Apple had received approval from U.S. Customs for a modified version of its Apple Watches that lack the blood oxygen feature and therefore no longer infringe on Masimo's intellectual property. It could open a path for a modified Apple Watch to return to U.S. store shelves.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://apple.slashdot.org/story/24/01/18/0027214/apple-again-banned-from-selling-watches-in-us-with-blood-oxygen-sensor?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T00:45:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T00:02:00+00:00", - "title": "Harmonix Is Ending Rock Band DLC Releases After 16 Years, 2,800 Songs", - "link": "https://games.slashdot.org/story/24/01/17/2155223/harmonix-is-ending-rock-band-dlc-releases-after-16-years-2800-songs?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T00:02:00+00:00", - "content": "Since launching in 2007, Harmonix's Rock Band has released over 2,800 DLC songs to keep its rhythm game fresh. Now, Harmonix has announced the last of the series' releases will arrive on January 25, \"marking the end of a nearly 16-year era in music gaming history,\" reports Ars Technica. From the report: Previously purchased DLC songs will still be playable in Rock Band 4, Harmonix's Daniel Sussman writes in an announcement post. Rock Band 4 live services, including online play, will also continue as normal, after online game modes for earlier Rock Band games were finally shut down in late 2022. \"Taking a longer look back, I see the Rock Band DLC catalog as a huge achievement in persistence and commitment,\" Sussman writes. \"Over the years we've cleared, authored and released nearly 3,000 songs as DLC and well over 3,000 if you include all the game soundtracks. That's wild.\" [...]\n \nWhile official support for Rock Band DLC is finally ending, the community behind Clone Hero just recently hit an official Version 1.0 release for their PC-based rhythm game that's compatible with many guitars, drums, keyboards, gamepads, and adapters used in Rock Band and other console rhythm games (microphones excluded). While that game doesn't come with anything like Rock Band's list of officially licensed song content, it's not hard to find a bevy of downloadable, fan-made custom Clone Hero tracks with a little bit of searching.\n \nSince shortly after its acquisition by Epic in 2021, Harmonix has been working on \"Fortnite Festival,\" the incredibly Rock Band-esque mini-game embedded in Epic's Fortnite \"metaverse.\" Sussman writes that a \"rotating selection\" of free-to-play songs will continue to cycle through that game mode, and that support for Rock Band 4 instruments will be coming to Fortnite in the future as well (peripheral-maker PDP looks like it will be getting in on the Fortnite guitar act as well). As for the last few weeks of Rock Band DLC offerings, Sussman writes that Harmonix is planning \"some tear jerkers that sum up our feelings about this moment.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Since launching in 2007, Harmonix's Rock Band has released over 2,800 DLC songs to keep its rhythm game fresh. Now, Harmonix has announced the last of the series' releases will arrive on January 25, \"marking the end of a nearly 16-year era in music gaming history,\" reports Ars Technica. From the report: Previously purchased DLC songs will still be playable in Rock Band 4, Harmonix's Daniel Sussman writes in an announcement post. Rock Band 4 live services, including online play, will also continue as normal, after online game modes for earlier Rock Band games were finally shut down in late 2022. \"Taking a longer look back, I see the Rock Band DLC catalog as a huge achievement in persistence and commitment,\" Sussman writes. \"Over the years we've cleared, authored and released nearly 3,000 songs as DLC and well over 3,000 if you include all the game soundtracks. That's wild.\" [...]\n \nWhile official support for Rock Band DLC is finally ending, the community behind Clone Hero just recently hit an official Version 1.0 release for their PC-based rhythm game that's compatible with many guitars, drums, keyboards, gamepads, and adapters used in Rock Band and other console rhythm games (microphones excluded). While that game doesn't come with anything like Rock Band's list of officially licensed song content, it's not hard to find a bevy of downloadable, fan-made custom Clone Hero tracks with a little bit of searching.\n \nSince shortly after its acquisition by Epic in 2021, Harmonix has been working on \"Fortnite Festival,\" the incredibly Rock Band-esque mini-game embedded in Epic's Fortnite \"metaverse.\" Sussman writes that a \"rotating selection\" of free-to-play songs will continue to cycle through that game mode, and that support for Rock Band 4 instruments will be coming to Fortnite in the future as well (peripheral-maker PDP looks like it will be getting in on the Fortnite guitar act as well). As for the last few weeks of Rock Band DLC offerings, Sussman writes that Harmonix is planning \"some tear jerkers that sum up our feelings about this moment.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://games.slashdot.org/story/24/01/17/2155223/harmonix-is-ending-rock-band-dlc-releases-after-16-years-2800-songs?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T00:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-17T23:20:00+00:00", - "title": "Google DeepMind's New AI System Can Solve Complex Geometry Problems", - "link": "https://science.slashdot.org/story/24/01/17/2143249/google-deepminds-new-ai-system-can-solve-complex-geometry-problems?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-17T23:20:00+00:00", - "content": "An anonymous reader quotes a report from MIT Technology Review: Google DeepMind has created an AI system that can solve complex geometry problems. It's a significant step towards machines with more human-like reasoning skills, experts say. Geometry, and mathematics more broadly, have challenged AI researchers for some time. Compared with text-based AI models, there is significantly less training data for mathematics because it is symbol driven and domain specific, says Thang Wang, a coauthor of the research, which is published in Nature today. Solving mathematics problems requires logical reasoning, something that most current AI models aren't great at. This demand for reasoning is why mathematics serves as an important benchmark to gauge progress in AI intelligence, says Wang.\n \nDeepMind's program, named AlphaGeometry, combines a language model with a type of AI called a symbolic engine, which uses symbols and logical rules to make deductions. Language models excel at recognizing patterns and predicting subsequent steps in a process. However, their reasoning lacks the rigor required for mathematical problem-solving. The symbolic engine, on the other hand, is based purely on formal logic and strict rules, which allows it to guide the language model toward rational decisions. These two approaches, responsible for creative thinking and logical reasoning respectively, work together to solve difficult mathematical problems. This closely mimics how humans work through geometry problems, combining their existing understanding with explorative experimentation.\n \nDeepMind says it tested AlphaGeometry on 30 geometry problems at the same level of difficulty found at the International Mathematical Olympiad, a competition for top high school mathematics students. It completed 25 within the time limit. The previous state-of-the-art system, developed by the Chinese mathematician Wen-Tsun Wu in 1978, completed only 10. \"This is a really impressive result,\" says Floris van Doorn, a mathematics professor at the University of Bonn, who was not involved in the research. \"I expected this to still be multiple years away.\" DeepMind says this system demonstrates AI's ability to reason and discover new mathematical knowledge. \"This is another example that reinforces how AI can help us advance science and better understand the underlying processes that determine how the world works,\" said Quoc V. Le, a scientist at Google DeepMind and one of the authors of the research, at a press conference.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from MIT Technology Review: Google DeepMind has created an AI system that can solve complex geometry problems. It's a significant step towards machines with more human-like reasoning skills, experts say. Geometry, and mathematics more broadly, have challenged AI researchers for some time. Compared with text-based AI models, there is significantly less training data for mathematics because it is symbol driven and domain specific, says Thang Wang, a coauthor of the research, which is published in Nature today. Solving mathematics problems requires logical reasoning, something that most current AI models aren't great at. This demand for reasoning is why mathematics serves as an important benchmark to gauge progress in AI intelligence, says Wang.\n \nDeepMind's program, named AlphaGeometry, combines a language model with a type of AI called a symbolic engine, which uses symbols and logical rules to make deductions. Language models excel at recognizing patterns and predicting subsequent steps in a process. However, their reasoning lacks the rigor required for mathematical problem-solving. The symbolic engine, on the other hand, is based purely on formal logic and strict rules, which allows it to guide the language model toward rational decisions. These two approaches, responsible for creative thinking and logical reasoning respectively, work together to solve difficult mathematical problems. This closely mimics how humans work through geometry problems, combining their existing understanding with explorative experimentation.\n \nDeepMind says it tested AlphaGeometry on 30 geometry problems at the same level of difficulty found at the International Mathematical Olympiad, a competition for top high school mathematics students. It completed 25 within the time limit. The previous state-of-the-art system, developed by the Chinese mathematician Wen-Tsun Wu in 1978, completed only 10. \"This is a really impressive result,\" says Floris van Doorn, a mathematics professor at the University of Bonn, who was not involved in the research. \"I expected this to still be multiple years away.\" DeepMind says this system demonstrates AI's ability to reason and discover new mathematical knowledge. \"This is another example that reinforces how AI can help us advance science and better understand the underlying processes that determine how the world works,\" said Quoc V. Le, a scientist at Google DeepMind and one of the authors of the research, at a press conference.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/17/2143249/google-deepminds-new-ai-system-can-solve-complex-geometry-problems?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-17T23:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-17T22:40:00+00:00", - "title": "Cancer Deaths Are Falling, but There May Be an Asterisk", - "link": "https://science.slashdot.org/story/24/01/17/1655232/cancer-deaths-are-falling-but-there-may-be-an-asterisk?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-17T22:40:00+00:00", - "content": "Cancer deaths in the United States are falling, with four million deaths prevented since 1991, according to the American Cancer Society's annual report. At the same time, the society reported that the number of new cancer cases had ticked up to more than two million in 2023, from 1.9 million in 2022. The New York Times: Cancer remains the second leading cause of death in the United States, after heart disease. Doctors believe that it is urgent to understand changes in the death rate, as well as changes in cancer diagnoses. The cancer society highlighted three chief factors in reduced cancer deaths: declines in smoking, early detection and greatly improved treatments. Breast cancer mortality is one area where treatment had a significant impact. In the 1980s and 1990s, metastatic breast cancer \"was regarded as a death sentence,\" said Donald Berry, a statistician at the University of Texas MD Anderson Cancer Center and an author of a new paper on breast cancer with Sylvia K. Plevritis of Stanford University and other researchers (several authors of the paper reported receiving payments from companies involved in cancer therapies). \n\nThe paper, published Tuesday in JAMA, found that the death rate from breast cancer had fallen to 27 per 100,000 women in 2019 from 48 per 100,000 in 1975. That includes metastatic cancer, which counted for nearly 30 percent of the reduction in the breast cancer death rate. Breast cancer treatment has improved so much that it has become a bigger factor than screening in saving lives, said Ruth Etzioni, a biostatistician at the Fred Hutchinson Cancer Center. Death rates have even declined among women in their 40s, who generally did not have regular mammograms, said Dr. Mette Kalager, a professor of medicine at the University of Oslo and Oslo University Hospital, \"indicating a substantial effect of treatment,\" she said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Cancer deaths in the United States are falling, with four million deaths prevented since 1991, according to the American Cancer Society's annual report. At the same time, the society reported that the number of new cancer cases had ticked up to more than two million in 2023, from 1.9 million in 2022. The New York Times: Cancer remains the second leading cause of death in the United States, after heart disease. Doctors believe that it is urgent to understand changes in the death rate, as well as changes in cancer diagnoses. The cancer society highlighted three chief factors in reduced cancer deaths: declines in smoking, early detection and greatly improved treatments. Breast cancer mortality is one area where treatment had a significant impact. In the 1980s and 1990s, metastatic breast cancer \"was regarded as a death sentence,\" said Donald Berry, a statistician at the University of Texas MD Anderson Cancer Center and an author of a new paper on breast cancer with Sylvia K. Plevritis of Stanford University and other researchers (several authors of the paper reported receiving payments from companies involved in cancer therapies). \n\nThe paper, published Tuesday in JAMA, found that the death rate from breast cancer had fallen to 27 per 100,000 women in 2019 from 48 per 100,000 in 1975. That includes metastatic cancer, which counted for nearly 30 percent of the reduction in the breast cancer death rate. Breast cancer treatment has improved so much that it has become a bigger factor than screening in saving lives, said Ruth Etzioni, a biostatistician at the Fred Hutchinson Cancer Center. Death rates have even declined among women in their 40s, who generally did not have regular mammograms, said Dr. Mette Kalager, a professor of medicine at the University of Oslo and Oslo University Hospital, \"indicating a substantial effect of treatment,\" she said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/17/1655232/cancer-deaths-are-falling-but-there-may-be-an-asterisk?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-17T22:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-17T22:00:00+00:00", - "title": "OpenAI Must Defend ChatGPT Fabrications After Failing To Defeat Libel Suit", - "link": "https://yro.slashdot.org/story/24/01/17/2136221/openai-must-defend-chatgpt-fabrications-after-failing-to-defeat-libel-suit?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-17T22:00:00+00:00", - "content": "An anonymous reader quotes a report from Ars Technica: OpenAI may finally have to answer for ChatGPT's \"hallucinations\" in court after a Georgia judge recently ruled against the tech company's motion to dismiss a radio host's defamation suit (PDF). OpenAI had argued that ChatGPT's output cannot be considered libel, partly because the chatbot output cannot be considered a \"publication,\" which is a key element of a defamation claim. In its motion to dismiss, OpenAI also argued that Georgia radio host Mark Walters could not prove that the company acted with actual malice or that anyone believed the allegedly libelous statements were true or that he was harmed by the alleged publication.\n \nIt's too early to say whether Judge Tracie Cason found OpenAI's arguments persuasive. In her order denying OpenAI's motion to dismiss, which MediaPost shared here, Cason did not specify how she arrived at her decision, saying only that she had \"carefully\" considered arguments and applicable laws. There may be some clues as to how Cason reached her decision in a court filing (PDF) from John Monroe, attorney for Walters, when opposing the motion to dismiss last year. Monroe had argued that OpenAI improperly moved to dismiss the lawsuit by arguing facts that have yet to be proven in court. If OpenAI intended the court to rule on those arguments, Monroe suggested that a motion for summary judgment would have been the proper step at this stage in the proceedings, not a motion to dismiss.\n \nHad OpenAI gone that route, though, Walters would have had an opportunity to present additional evidence. To survive a motion to dismiss, all Walters had to do was show that his complaint was reasonably supported by facts, Monroe argued. Failing to convince the court that Walters had no case, OpenAI's legal theories regarding its liability for ChatGPT's \"hallucinations\" will now likely face their first test in court. \"We are pleased the court denied the motion to dismiss so that the parties will have an opportunity to explore, and obtain a decision on, the merits of the case,\" Monroe told Ars. \"Walters sued OpenAI after a journalist, Fred Riehl, warned him that in response to a query, ChatGPT had fabricated an entire lawsuit,\" notes Ars. \"Generating an entire complaint with an erroneous case number, ChatGPT falsely claimed that Walters had been accused of defrauding and embezzling funds from the Second Amendment Foundation.\"\n \n\"With the lawsuit moving forward, curious chatbot users everywhere may finally get the answer to a question that has been unclear since ChatGPT quickly became the fastest-growing consumer application of all time after its launch in November 2022: Will ChatGPT's hallucinations be allowed to ruin lives?\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Ars Technica: OpenAI may finally have to answer for ChatGPT's \"hallucinations\" in court after a Georgia judge recently ruled against the tech company's motion to dismiss a radio host's defamation suit (PDF). OpenAI had argued that ChatGPT's output cannot be considered libel, partly because the chatbot output cannot be considered a \"publication,\" which is a key element of a defamation claim. In its motion to dismiss, OpenAI also argued that Georgia radio host Mark Walters could not prove that the company acted with actual malice or that anyone believed the allegedly libelous statements were true or that he was harmed by the alleged publication.\n \nIt's too early to say whether Judge Tracie Cason found OpenAI's arguments persuasive. In her order denying OpenAI's motion to dismiss, which MediaPost shared here, Cason did not specify how she arrived at her decision, saying only that she had \"carefully\" considered arguments and applicable laws. There may be some clues as to how Cason reached her decision in a court filing (PDF) from John Monroe, attorney for Walters, when opposing the motion to dismiss last year. Monroe had argued that OpenAI improperly moved to dismiss the lawsuit by arguing facts that have yet to be proven in court. If OpenAI intended the court to rule on those arguments, Monroe suggested that a motion for summary judgment would have been the proper step at this stage in the proceedings, not a motion to dismiss.\n \nHad OpenAI gone that route, though, Walters would have had an opportunity to present additional evidence. To survive a motion to dismiss, all Walters had to do was show that his complaint was reasonably supported by facts, Monroe argued. Failing to convince the court that Walters had no case, OpenAI's legal theories regarding its liability for ChatGPT's \"hallucinations\" will now likely face their first test in court. \"We are pleased the court denied the motion to dismiss so that the parties will have an opportunity to explore, and obtain a decision on, the merits of the case,\" Monroe told Ars. \"Walters sued OpenAI after a journalist, Fred Riehl, warned him that in response to a query, ChatGPT had fabricated an entire lawsuit,\" notes Ars. \"Generating an entire complaint with an erroneous case number, ChatGPT falsely claimed that Walters had been accused of defrauding and embezzling funds from the Second Amendment Foundation.\"\n \n\"With the lawsuit moving forward, curious chatbot users everywhere may finally get the answer to a question that has been unclear since ChatGPT quickly became the fastest-growing consumer application of all time after its launch in November 2022: Will ChatGPT's hallucinations be allowed to ruin lives?\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/17/2136221/openai-must-defend-chatgpt-fabrications-after-failing-to-defeat-libel-suit?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-17T22:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-17T21:40:00+00:00", - "title": "Samsung Is Making a Smart Ring", - "link": "https://tech.slashdot.org/story/24/01/17/2124251/samsung-is-making-a-smart-ring?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-17T21:40:00+00:00", - "content": "Samsung announced it's working on a smart ring, describing it as a \"powerful and accessible\" health and wellness device. The Verge reports: Outside of a brief video showing off what the Galaxy Ring looks like, Samsung didn't share much more about the ring. The company didn't say when the device is coming out or what it might cost, for example. [...] Given today's focus on AI features for Samsung's new Galaxy smartphones, I'm guessing that Samsung will tout some AI-powered tools for the Galaxy Ring at some point, too. Hopefully Samsung doesn't wait too long to share more.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Samsung announced it's working on a smart ring, describing it as a \"powerful and accessible\" health and wellness device. The Verge reports: Outside of a brief video showing off what the Galaxy Ring looks like, Samsung didn't share much more about the ring. The company didn't say when the device is coming out or what it might cost, for example. [...] Given today's focus on AI features for Samsung's new Galaxy smartphones, I'm guessing that Samsung will tout some AI-powered tools for the Galaxy Ring at some point, too. Hopefully Samsung doesn't wait too long to share more.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/17/2124251/samsung-is-making-a-smart-ring?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-17T21:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-17T21:20:00+00:00", - "title": "Samsung Announces New Galaxy S24 Lineup With AI-Powered Photo Editing, Search Features", - "link": "https://mobile.slashdot.org/story/24/01/17/2118256/samsung-announces-new-galaxy-s24-lineup-with-ai-powered-photo-editing-search-features?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-17T21:20:00+00:00", - "content": "Samsung announced its new flagship Galaxy S24 smartphone lineup today, with loads of new artificial intelligence features. CNBC reports: For Samsung's top-tier S24 Ultra, which is the company's biggest of the three devices and comes with punchier specs and features, Samsung is using a version of Qualcomm's latest Snapdragon Series 8 Gen 3 optimized for Galaxy. The company is using a mix of Qualcomm systems-on-chips (SoCs) and its own Exynos chipset for its S24 and S24+ models. [...] The Samsung Galaxy S24 Ultra is the main event for most tech gadget enthusiasts -- and, for the most part, it isn't a whole lot different to the Galaxy S23 Ultra looks-wise. That's because Samsung isn't changing an awful lot with the hardware. It still comes in the same size as its predecessor -- the display is 6.8 inches, measured diagonally, though the phone is flatter this time round. The S23 Ultra had more curvature to it. The big upgrade to the external hardware with this model is that it's cased in titanium, so it's a lot sturdier than the S23 Ultra.\n \nThe main difference this time round is what's inside: Samsung is going big on artificial intelligence. A key focus for Samsung, like other smartphone makers, now is on \"on-demand\" AI -- or, the ability to carry out AI workloads directly on a device, rather than over the cloud. Samsung said its new Galaxy S24 Ultra will come with a bunch of new AI features, a lot of which is being powered by Qualcomm's Snapdragon 8 Gen 3 chipset for mobile, which is tailored for AI devices. One feature Samsung's loading into the Galaxy S24 range is the ability to circle locations or items a user is directing their camera at, or on a picture they've taken, and then look up results on what those things are. So, for instance, if you see a landmark or a shoe you want to buy, you can make a circle around that object and then the AI shows you appropriate results on Google.\n \nAnother feature Samsung touted is the ability to use AI to edit photos. So users can edit reflections out of pictures they've taken, for instance if you took a picture of yourself in front of a window. Or you can move a person from one side of the room to another by dragging them from left to right. Samsung also showcased live transcription features with its latest smartphones. When calling someone who's speaking in French, for instance, a user can pull up a transcription that's being fed through to them in real time. You can also record a conversation between two people and get it transcribed, while the AI assigns a label to each person speaking, similar to transcription products like Otter AI. Samsung is also incorporating AI watermarking into these features, helping to combat misinformation and copyright infringement. \"So when a Galaxy S24 user uses AI to modify a photo, Samsung will keep a log of what was changed with AI and store it in the metadata,\" reports CNBC. \"It'll also have an icon in the bottom left corner to show that the image has been edited using AI, kind of like a watermark.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Samsung announced its new flagship Galaxy S24 smartphone lineup today, with loads of new artificial intelligence features. CNBC reports: For Samsung's top-tier S24 Ultra, which is the company's biggest of the three devices and comes with punchier specs and features, Samsung is using a version of Qualcomm's latest Snapdragon Series 8 Gen 3 optimized for Galaxy. The company is using a mix of Qualcomm systems-on-chips (SoCs) and its own Exynos chipset for its S24 and S24+ models. [...] The Samsung Galaxy S24 Ultra is the main event for most tech gadget enthusiasts -- and, for the most part, it isn't a whole lot different to the Galaxy S23 Ultra looks-wise. That's because Samsung isn't changing an awful lot with the hardware. It still comes in the same size as its predecessor -- the display is 6.8 inches, measured diagonally, though the phone is flatter this time round. The S23 Ultra had more curvature to it. The big upgrade to the external hardware with this model is that it's cased in titanium, so it's a lot sturdier than the S23 Ultra.\n \nThe main difference this time round is what's inside: Samsung is going big on artificial intelligence. A key focus for Samsung, like other smartphone makers, now is on \"on-demand\" AI -- or, the ability to carry out AI workloads directly on a device, rather than over the cloud. Samsung said its new Galaxy S24 Ultra will come with a bunch of new AI features, a lot of which is being powered by Qualcomm's Snapdragon 8 Gen 3 chipset for mobile, which is tailored for AI devices. One feature Samsung's loading into the Galaxy S24 range is the ability to circle locations or items a user is directing their camera at, or on a picture they've taken, and then look up results on what those things are. So, for instance, if you see a landmark or a shoe you want to buy, you can make a circle around that object and then the AI shows you appropriate results on Google.\n \nAnother feature Samsung touted is the ability to use AI to edit photos. So users can edit reflections out of pictures they've taken, for instance if you took a picture of yourself in front of a window. Or you can move a person from one side of the room to another by dragging them from left to right. Samsung also showcased live transcription features with its latest smartphones. When calling someone who's speaking in French, for instance, a user can pull up a transcription that's being fed through to them in real time. You can also record a conversation between two people and get it transcribed, while the AI assigns a label to each person speaking, similar to transcription products like Otter AI. Samsung is also incorporating AI watermarking into these features, helping to combat misinformation and copyright infringement. \"So when a Galaxy S24 user uses AI to modify a photo, Samsung will keep a log of what was changed with AI and store it in the metadata,\" reports CNBC. \"It'll also have an icon in the bottom left corner to show that the image has been edited using AI, kind of like a watermark.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://mobile.slashdot.org/story/24/01/17/2118256/samsung-announces-new-galaxy-s24-lineup-with-ai-powered-photo-editing-search-features?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-17T21:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-17T20:40:00+00:00", - "title": "Epic Plans To Contest Apple's 'Bad-Faith' Compliance With Court Ruling Over App Store", - "link": "https://apple.slashdot.org/story/24/01/17/1748250/epic-plans-to-contest-apples-bad-faith-compliance-with-court-ruling-over-app-store?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-17T20:40:00+00:00", - "content": "An anonymous reader shares a report: Fortnite maker Epic Games is not happy about how Apple intends to comply with a district court's injunction that permitted app developers to direct users to their own websites and payment platforms -- a court order that came into effect following the Supreme Court's decision to not hear the Apple antitrust case, leaving the current ruling to stand. Though Apple had largely won the case, as the court decided it was not a monopolist, a judge ruled that app makers should be able to steer their customers to the web from links or buttons inside their apps, something that forced Apple to change its App Store rules. \n\nBut Apple's compliance doesn't give app makers the victory they had hoped, as the tech giant aims to still charge commissions on purchases made outside of apps -- a decision Epic aims to challenge in court. According to statements made by Epic Games CEO Tim Sweeney, shared on X, Apple's \"bad-faith\" compliance undermines the judge's order that would have allowed buttons or external links \"in addition to [in-app purchases.]\" The Ninth Circuit District Court had ruled on one count of out ten in favor of Epic in its decision, finding that Apple violated California's Unfair Competition law. The decision meant Apple had to remove the \"anti-steering\" clause from its agreement with App Store developers. This clause for years had prevented app developers from directing their customers to other ways to pay for in-app purchases or subscriptions from inside their apps, leading to confusing screens or broken features, where customers would have to figure out on their own how to make the necessary purchases from the developer's website.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader shares a report: Fortnite maker Epic Games is not happy about how Apple intends to comply with a district court's injunction that permitted app developers to direct users to their own websites and payment platforms -- a court order that came into effect following the Supreme Court's decision to not hear the Apple antitrust case, leaving the current ruling to stand. Though Apple had largely won the case, as the court decided it was not a monopolist, a judge ruled that app makers should be able to steer their customers to the web from links or buttons inside their apps, something that forced Apple to change its App Store rules. \n\nBut Apple's compliance doesn't give app makers the victory they had hoped, as the tech giant aims to still charge commissions on purchases made outside of apps -- a decision Epic aims to challenge in court. According to statements made by Epic Games CEO Tim Sweeney, shared on X, Apple's \"bad-faith\" compliance undermines the judge's order that would have allowed buttons or external links \"in addition to [in-app purchases.]\" The Ninth Circuit District Court had ruled on one count of out ten in favor of Epic in its decision, finding that Apple violated California's Unfair Competition law. The decision meant Apple had to remove the \"anti-steering\" clause from its agreement with App Store developers. This clause for years had prevented app developers from directing their customers to other ways to pay for in-app purchases or subscriptions from inside their apps, leading to confusing screens or broken features, where customers would have to figure out on their own how to make the necessary purchases from the developer's website.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://apple.slashdot.org/story/24/01/17/1748250/epic-plans-to-contest-apples-bad-faith-compliance-with-court-ruling-over-app-store?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-17T20:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-17T20:00:00+00:00", - "title": "Amazon is Working on a Paid Version of Alexa", - "link": "https://slashdot.org/story/24/01/17/1754244/amazon-is-working-on-a-paid-version-of-alexa?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-17T20:00:00+00:00", - "content": "Amazon is revamping its Alexa voice assistant as it prepares to launch a new paid subscription plan this year, Business Insider reported Wednesday, citing internal documents and people familiar with the matter. But the change is causing internal conflict and may lead to further delay, the report added. From the report: Tentatively called \"Alexa Plus,\" the paid version of Alexa is intended to offer more conversational and personalized AI technology, said one of the documents obtained by Business Insider. The team is working towards a June 30 launch deadline, and has been testing the underlying voice technology, dubbed \"Remarkable Alexa,\" with 15,000 external customers, these people said. \n\nBut the quality of the new Alexa's answers is still falling short of expectations, often sharing inaccurate information, external tests have found. Amazon is now going through a major overhaul of Alexa's technology stack to address this issue, though the team is experiencing some discord.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Amazon is revamping its Alexa voice assistant as it prepares to launch a new paid subscription plan this year, Business Insider reported Wednesday, citing internal documents and people familiar with the matter. But the change is causing internal conflict and may lead to further delay, the report added. From the report: Tentatively called \"Alexa Plus,\" the paid version of Alexa is intended to offer more conversational and personalized AI technology, said one of the documents obtained by Business Insider. The team is working towards a June 30 launch deadline, and has been testing the underlying voice technology, dubbed \"Remarkable Alexa,\" with 15,000 external customers, these people said. \n\nBut the quality of the new Alexa's answers is still falling short of expectations, often sharing inaccurate information, external tests have found. Amazon is now going through a major overhaul of Alexa's technology stack to address this issue, though the team is experiencing some discord.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/17/1754244/amazon-is-working-on-a-paid-version-of-alexa?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-17T20:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-17T19:20:00+00:00", - "title": "Google's Circle To Search is a Dead-Simple Way To Find What You're Looking For", - "link": "https://tech.slashdot.org/story/24/01/17/1846200/googles-circle-to-search-is-a-dead-simple-way-to-find-what-youre-looking-for?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-17T19:20:00+00:00", - "content": "It's hard to think of a more self-explanatory feature than Circle to Search: it does exactly what it sounds like it does. You circle something on your phone screen, tap a button, and voila! A page full of Google search results telling you about the thing you circled. The Verge: The new feature is launching on five phones to start -- the three members of Samsung's brand-new Galaxy S24 series, as well as Google's Pixel 8 and 8 Pro -- before it comes to other \"select, premium\" Android phones. Well, maybe it does need a little explaining. If the feature sounds familiar, you might be thinking of Google Lens, which is similar. But instead of opening up the Google app, you can use Circle to Search anywhere on your device. Just long-press the home button if you're using three-button navigation -- or the navigation handle if you're using gesture nav -- and it will appear on top of whatever app or screen you're currently using. You can circle, highlight, or tap a subject, including text as well as images.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "It's hard to think of a more self-explanatory feature than Circle to Search: it does exactly what it sounds like it does. You circle something on your phone screen, tap a button, and voila! A page full of Google search results telling you about the thing you circled. The Verge: The new feature is launching on five phones to start -- the three members of Samsung's brand-new Galaxy S24 series, as well as Google's Pixel 8 and 8 Pro -- before it comes to other \"select, premium\" Android phones. Well, maybe it does need a little explaining. If the feature sounds familiar, you might be thinking of Google Lens, which is similar. But instead of opening up the Google app, you can use Circle to Search anywhere on your device. Just long-press the home button if you're using three-button navigation -- or the navigation handle if you're using gesture nav -- and it will appear on top of whatever app or screen you're currently using. You can circle, highlight, or tap a subject, including text as well as images.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/17/1846200/googles-circle-to-search-is-a-dead-simple-way-to-find-what-youre-looking-for?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-17T19:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T17:26:00+00:00", - "title": "Apple's App Store Rule Changes Draw Sharp Rebuke From Critics", - "link": "https://apple.slashdot.org/story/24/01/18/1727204/apples-app-store-rule-changes-draw-sharp-rebuke-from-critics?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T17:26:00+00:00", - "content": "Apple has updated its long-standing App Store guidelines, giving developers the option to let users make in-app purchases for iOS apps outside of its App Store. But the changes still haven't won over one of the company's longtime critics. From a report: Under the new rules, app developers can provide customers with links to third-party purchase options for their apps, but they must still pay Apple fees of either 12% or 27%. Spotify, one of Apple's biggest critics, isn't a fan of the changes. In a statement, the music streaming service slammed the new rules. \"Once again, Apple has demonstrated that they will stop at nothing to protect the profits they exact on the backs of developers and consumers under their app store monopoly,\" the company said in a statement. \"Their latest move in the US -- imposing a 27% fee for transactions made outside of an app on a developer's website -- is outrageous and flies in the face of the court's efforts to enable greater competition and user choice.\" Tech columnist John Gruber, writing at DaringFireball: Maybe the cynics are right! Let's just concede that they are, and that Apple will only make decisions here that benefit its bottom line. My argument remains that Apple should not be pursuing this plan for complying with the anti-steering injunction by collecting commissions from web sales that initiate in-app. Whatever revenue Apple would lose to non-commissioned web sales (for non-games) is not worth the hit they are taking to the company's brand and reputationâ--âthis move reeks of greed and avariceâ--ânor the increased ire and scrutiny of regulators and legislators on the \"anti-Big-Tech\" hunt. \n\nApple should have been looking for ways to lessen regulatory and legislative pressure over the past few years, and in today's climate that's more true than ever. But instead, their stance has seemingly been \"Bring it on.\" Confrontational, not conciliatory, conceding not an inch. Rather than take a sure win with most of what they could want, Apple is seemingly hell-bent on trying to keep everything. To win in chess all you need is to capture your opponent's king. Apple seemingly wants to capture every last piece on the boardâ--âeven while playing in a tournament where the referees (regulators) are known to look askance at blatant poor sportsmanship (greed). \n\nApple's calculus should be to balance its natural desire to book large amounts of revenue from the App Store with policies that to some degree placate, rather than antagonize, regulators and legislators. No matter what the sport, no matter what the letter of the rulebook says, it's never a good idea to piss off the refs.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Apple has updated its long-standing App Store guidelines, giving developers the option to let users make in-app purchases for iOS apps outside of its App Store. But the changes still haven't won over one of the company's longtime critics. From a report: Under the new rules, app developers can provide customers with links to third-party purchase options for their apps, but they must still pay Apple fees of either 12% or 27%. Spotify, one of Apple's biggest critics, isn't a fan of the changes. In a statement, the music streaming service slammed the new rules. \"Once again, Apple has demonstrated that they will stop at nothing to protect the profits they exact on the backs of developers and consumers under their app store monopoly,\" the company said in a statement. \"Their latest move in the US -- imposing a 27% fee for transactions made outside of an app on a developer's website -- is outrageous and flies in the face of the court's efforts to enable greater competition and user choice.\" Tech columnist John Gruber, writing at DaringFireball: Maybe the cynics are right! Let's just concede that they are, and that Apple will only make decisions here that benefit its bottom line. My argument remains that Apple should not be pursuing this plan for complying with the anti-steering injunction by collecting commissions from web sales that initiate in-app. Whatever revenue Apple would lose to non-commissioned web sales (for non-games) is not worth the hit they are taking to the company's brand and reputation\u00e2--\u00e2this move reeks of greed and avarice\u00e2--\u00e2nor the increased ire and scrutiny of regulators and legislators on the \"anti-Big-Tech\" hunt. \n\nApple should have been looking for ways to lessen regulatory and legislative pressure over the past few years, and in today's climate that's more true than ever. But instead, their stance has seemingly been \"Bring it on.\" Confrontational, not conciliatory, conceding not an inch. Rather than take a sure win with most of what they could want, Apple is seemingly hell-bent on trying to keep everything. To win in chess all you need is to capture your opponent's king. Apple seemingly wants to capture every last piece on the board\u00e2--\u00e2even while playing in a tournament where the referees (regulators) are known to look askance at blatant poor sportsmanship (greed). \n\nApple's calculus should be to balance its natural desire to book large amounts of revenue from the App Store with policies that to some degree placate, rather than antagonize, regulators and legislators. No matter what the sport, no matter what the letter of the rulebook says, it's never a good idea to piss off the refs.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://apple.slashdot.org/story/24/01/18/1727204/apples-app-store-rule-changes-draw-sharp-rebuke-from-critics?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T17:26:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T16:40:00+00:00", - "title": "Google News Is Boosting Garbage AI-Generated Articles", - "link": "https://tech.slashdot.org/story/24/01/18/1621206/google-news-is-boosting-garbage-ai-generated-articles?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T16:40:00+00:00", - "content": "Google News is boosting sites that rip-off other outlets by using AI to rapidly churn out content, 404 Media has found. From the report: Google told 404 Media that although it tries to address spam on Google News, the company ultimately does not focus on whether a news article was written by an AI or a human, opening the way for more AI-generated content making its way onto Google News. The presence of AI-generated content on Google News signals two things: first, the black box nature of Google News, with entry into Google News' rankings in the first place an opaque, but apparently gameable, system. Second, is how Google may not be ready for moderating its News service in the age of consumer-access AI, where essentially anyone is able to churn out a mass of content with little to no regard for its quality or originality.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google News is boosting sites that rip-off other outlets by using AI to rapidly churn out content, 404 Media has found. From the report: Google told 404 Media that although it tries to address spam on Google News, the company ultimately does not focus on whether a news article was written by an AI or a human, opening the way for more AI-generated content making its way onto Google News. The presence of AI-generated content on Google News signals two things: first, the black box nature of Google News, with entry into Google News' rankings in the first place an opaque, but apparently gameable, system. Second, is how Google may not be ready for moderating its News service in the age of consumer-access AI, where essentially anyone is able to churn out a mass of content with little to no regard for its quality or originality.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/18/1621206/google-news-is-boosting-garbage-ai-generated-articles?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T16:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T16:00:00+00:00", - "title": "OpenAI Announces First Partnership With a University", - "link": "https://news.slashdot.org/story/24/01/18/1559201/openai-announces-first-partnership-with-a-university?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T16:00:00+00:00", - "content": "OpenAI on Thursday announced its first partnership with a higher education institution. Starting in February, Arizona State University will have full access to ChatGPT Enterprise and plans to use it for coursework, tutoring, research and more. From a report: The partnership has been in the works for at least six months, when ASU chief information officer Lev Gonick first visited OpenAI's HQ, which was preceded by the university faculty and staff's earlier use of ChatGPT and other artificial intelligence tools, Gonick told CNBC in an interview. ChatGPT Enterprise, which debuted in August, is ChatGPT's business tier and includes access to GPT-4 with no usage caps, performance that's up to two times faster than previous versions and API credits. \n\nWith the OpenAI partnership, ASU plans to build a personalized AI tutor for students, not only for certain courses but also for study topics. STEM subjects are a focus and are \"the make-or-break subjects for a lot of higher education,\" Gonick said. The university will also use the tool in ASU's largest course, Freshman Composition, to offer students writing help. ASU also plans to use ChatGPT Enterprise to develop AI avatars as a \"creative buddy\" for studying certain subjects, like bots that can sing or write poetry about biology, for instance.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "OpenAI on Thursday announced its first partnership with a higher education institution. Starting in February, Arizona State University will have full access to ChatGPT Enterprise and plans to use it for coursework, tutoring, research and more. From a report: The partnership has been in the works for at least six months, when ASU chief information officer Lev Gonick first visited OpenAI's HQ, which was preceded by the university faculty and staff's earlier use of ChatGPT and other artificial intelligence tools, Gonick told CNBC in an interview. ChatGPT Enterprise, which debuted in August, is ChatGPT's business tier and includes access to GPT-4 with no usage caps, performance that's up to two times faster than previous versions and API credits. \n\nWith the OpenAI partnership, ASU plans to build a personalized AI tutor for students, not only for certain courses but also for study topics. STEM subjects are a focus and are \"the make-or-break subjects for a lot of higher education,\" Gonick said. The university will also use the tool in ASU's largest course, Freshman Composition, to offer students writing help. ASU also plans to use ChatGPT Enterprise to develop AI avatars as a \"creative buddy\" for studying certain subjects, like bots that can sing or write poetry about biology, for instance.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/18/1559201/openai-announces-first-partnership-with-a-university?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T16:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T15:28:00+00:00", - "title": "Google Says Russian Espionage Crew Behind New Malware Campaign", - "link": "https://tech.slashdot.org/story/24/01/18/1528230/google-says-russian-espionage-crew-behind-new-malware-campaign?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T15:28:00+00:00", - "content": "Google researchers say they have evidence that a notorious Russian-linked hacking group -- tracked as \"Cold River\" -- is evolving its tactics beyond phishing to target victims with data-stealing malware. From a report: Cold River, also known as \"Callisto Group\" and \"Star Blizzard,\" is known for conducting long-running espionage campaigns against NATO countries, particularly the United States and the United Kingdom. Researchers believe the group's activities, which typically target high-profile individuals and organizations involved in international affairs and defense, suggest close ties to the Russian state. U.S. prosecutors in December indicted two Russian nationals linked to the group. \n\nGoogle's Threat Analysis Group (TAG) said in new research this week that it has observed Cold River ramping up its activity in recent months and using new tactics capable of causing more disruption to its victims, predominantly targets in Ukraine and its NATO allies, academic institutions and non-government organizations. These latest findings come soon after Microsoft researchers reported that the Russia-aligned hacking group had improved its ability to evade detection. In research shared with TechCrunch ahead of its publication on Thursday, TAG researchers say that Cold River has continued to shift beyond its usual tactic of phishing for credentials to delivering malware via campaigns using PDF documents as lures.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google researchers say they have evidence that a notorious Russian-linked hacking group -- tracked as \"Cold River\" -- is evolving its tactics beyond phishing to target victims with data-stealing malware. From a report: Cold River, also known as \"Callisto Group\" and \"Star Blizzard,\" is known for conducting long-running espionage campaigns against NATO countries, particularly the United States and the United Kingdom. Researchers believe the group's activities, which typically target high-profile individuals and organizations involved in international affairs and defense, suggest close ties to the Russian state. U.S. prosecutors in December indicted two Russian nationals linked to the group. \n\nGoogle's Threat Analysis Group (TAG) said in new research this week that it has observed Cold River ramping up its activity in recent months and using new tactics capable of causing more disruption to its victims, predominantly targets in Ukraine and its NATO allies, academic institutions and non-government organizations. These latest findings come soon after Microsoft researchers reported that the Russia-aligned hacking group had improved its ability to evade detection. In research shared with TechCrunch ahead of its publication on Thursday, TAG researchers say that Cold River has continued to shift beyond its usual tactic of phishing for credentials to delivering malware via campaigns using PDF documents as lures.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/18/1528230/google-says-russian-espionage-crew-behind-new-malware-campaign?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T15:28:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T14:40:00+00:00", - "title": "Google CEO Tells Employees To Expect More Job Cuts This Year", - "link": "https://tech.slashdot.org/story/24/01/18/1354208/google-ceo-tells-employees-to-expect-more-job-cuts-this-year?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T14:40:00+00:00", - "content": "Google has laid off over a thousand employees across various departments since January 10th. CEO Sundar Pichai's message is to brace for more cuts. The Verge: \"We have ambitious goals and will be investing in our big priorities this year,\" Pichai told all Google employees on Wednesday in an internal memo that was shared with me. \"The reality is that to create the capacity for this investment, we have to make tough choices.\" So far, those \"tough choices\" have included layoffs and reorganizations in Google's hardware, ad sales, search, shopping, maps, policy, core engineering, and YouTube teams. \n\n\"These role eliminations are not at the scale of last year's reductions, and will not touch every team,\" Pichai wrote in his memo -- a reference to when Google cut 12,000 jobs this time last year. \"But I know it's very difficult to see colleagues and teams impacted.\" Pichai said the layoffs this year were about \"removing layers to simplify execution and drive velocity in some areas.\" He confirmed what many inside Google have been fearing: that more \"role eliminations\" are to come. \"Many of these changes are already announced, though to be upfront, some teams will continue to make specific resource allocation decisions throughout the year where needed, and some roles may be impacted,\" he wrote.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google has laid off over a thousand employees across various departments since January 10th. CEO Sundar Pichai's message is to brace for more cuts. The Verge: \"We have ambitious goals and will be investing in our big priorities this year,\" Pichai told all Google employees on Wednesday in an internal memo that was shared with me. \"The reality is that to create the capacity for this investment, we have to make tough choices.\" So far, those \"tough choices\" have included layoffs and reorganizations in Google's hardware, ad sales, search, shopping, maps, policy, core engineering, and YouTube teams. \n\n\"These role eliminations are not at the scale of last year's reductions, and will not touch every team,\" Pichai wrote in his memo -- a reference to when Google cut 12,000 jobs this time last year. \"But I know it's very difficult to see colleagues and teams impacted.\" Pichai said the layoffs this year were about \"removing layers to simplify execution and drive velocity in some areas.\" He confirmed what many inside Google have been fearing: that more \"role eliminations\" are to come. \"Many of these changes are already announced, though to be upfront, some teams will continue to make specific resource allocation decisions throughout the year where needed, and some roles may be impacted,\" he wrote.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/18/1354208/google-ceo-tells-employees-to-expect-more-job-cuts-this-year?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T14:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T14:00:00+00:00", - "title": "Microsoft's Bing Market Share Barely Budged With ChatGPT Add-On", - "link": "https://tech.slashdot.org/story/24/01/18/1340247/microsofts-bing-market-share-barely-budged-with-chatgpt-add-on?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T14:00:00+00:00", - "content": "When Microsoft announced it was baking ChatGPT into its Bing search engine last February, bullish analysts declared the move an \"iPhone moment\" that could upend the search market and chip away at Google's dominance. \"The entire search category is now going through a sea change,\" Chief Executive Officer Satya Nadella said at the time. \"That opportunity comes very few times.\" Almost a year later, the sea has yet to change. Bloomberg: The new Bing -- powered by OpenAI's generative AI technology -- dazzled internet users with conversational replies to queries asked in a natural way. But Microsoft's search engine ended 2023 with just 3.4% of the global search market, according to data analytics firm StatCounter, up less than 1 percentage point since the ChatGPT announcement. \n\nBing has long struggled for relevance and attracted more mockery than recognition over the years as a serious alternative to Google. Multiple rebrandings and redesigns since its 2009 debut did little to boost Bing's popularity. A month before Microsoft infused the search engine with generative AI, people were spending 33% less time using it than they had 12 months earlier, according to SensorTower. The ChatGPT reboot at least helped reverse those declines. In the second quarter of 2023, US monthly active users more than doubled year over year to 3.1 million, according to a Bloomberg Intelligence analysis of SensorTower mobile app data. Overall, users were spending 84% more time on the search engine, the data show. By year-end, Bing's monthly active users had increased steadily to 4.4 million, according to SensorTower.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "When Microsoft announced it was baking ChatGPT into its Bing search engine last February, bullish analysts declared the move an \"iPhone moment\" that could upend the search market and chip away at Google's dominance. \"The entire search category is now going through a sea change,\" Chief Executive Officer Satya Nadella said at the time. \"That opportunity comes very few times.\" Almost a year later, the sea has yet to change. Bloomberg: The new Bing -- powered by OpenAI's generative AI technology -- dazzled internet users with conversational replies to queries asked in a natural way. But Microsoft's search engine ended 2023 with just 3.4% of the global search market, according to data analytics firm StatCounter, up less than 1 percentage point since the ChatGPT announcement. \n\nBing has long struggled for relevance and attracted more mockery than recognition over the years as a serious alternative to Google. Multiple rebrandings and redesigns since its 2009 debut did little to boost Bing's popularity. A month before Microsoft infused the search engine with generative AI, people were spending 33% less time using it than they had 12 months earlier, according to SensorTower. The ChatGPT reboot at least helped reverse those declines. In the second quarter of 2023, US monthly active users more than doubled year over year to 3.1 million, according to a Bloomberg Intelligence analysis of SensorTower mobile app data. Overall, users were spending 84% more time on the search engine, the data show. By year-end, Bing's monthly active users had increased steadily to 4.4 million, according to SensorTower.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/18/1340247/microsofts-bing-market-share-barely-budged-with-chatgpt-add-on?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T14:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T13:00:00+00:00", - "title": "A Flaw In Millions of Apple, AMD, and Qualcomm GPUs Could Expose AI Data", - "link": "https://it.slashdot.org/story/24/01/18/0238237/a-flaw-in-millions-of-apple-amd-and-qualcomm-gpus-could-expose-ai-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T13:00:00+00:00", - "content": "An anonymous reader quotes a report from Wired: As more companies ramp up development of artificial intelligence systems, they are increasingly turning to graphics processing unit (GPU) chips for the computing power they need to run large language models (LLMs) and to crunch data quickly at massive scale. Between video game processing and AI, demand for GPUs has never been higher, and chipmakers are rushing to bolster supply. In new findings released today, though, researchers are highlighting a vulnerability in multiple brands and models of mainstream GPUs -- including Apple, Qualcomm, and AMD chips -- that could allow an attacker to steal large quantities of data from a GPU's memory. The silicon industry has spent years refining the security of central processing units, or CPUs, so they don't leak data in memory even when they are built to optimize for speed. However, since GPUs were designed for raw graphics processing power, they haven't been architected to the same degree with data privacy as a priority. As generative AI and other machine learning applications expand the uses of these chips, though, researchers from New York -- based security firm Trail of Bits say that vulnerabilities in GPUs are an increasingly urgent concern. \"There is a broader security concern about these GPUs not being as secure as they should be and leaking a significant amount of data,\" Heidy Khlaaf, Trail of Bits' engineering director for AI and machine learning assurance, tells WIRED. \"We're looking at anywhere from 5 megabytes to 180 megabytes. In the CPU world, even a bit is too much to reveal.\"\n \nTo exploit the vulnerability, which the researchers call LeftoverLocals, attackers would need to already have established some amount of operating system access on a target's device. Modern computers and servers are specifically designed to silo data so multiple users can share the same processing resources without being able to access each others' data. But a LeftoverLocals attack breaks down these walls. Exploiting the vulnerability would allow a hacker to exfiltrate data they shouldn't be able to access from the local memory of vulnerable GPUs, exposing whatever data happens to be there for the taking, which could include queries and responses generated by LLMs as well as the weights driving the response. In their proof of concept, as seen in the GIF below, the researchers demonstrate an attack where a target -- shown on the left -- asks the open source LLM Llama.cpp to provide details about WIRED magazine. Within seconds, the attacker's device -- shown on the right -- collects the majority of the response provided by the LLM by carrying out a LeftoverLocals attack on vulnerable GPU memory. The attack program the researchers created uses less than 10 lines of code. [...] Though exploiting the vulnerability would require some amount of existing access to targets' devices, the potential implications are significant given that it is common for highly motivated attackers to carry out hacks by chaining multiple vulnerabilities together. Furthermore, establishing \"initial access\" to a device is already necessary for many common types of digital attacks. The researchers did not find evidence that Nvidia, Intel, or Arm GPUs contain the LeftoverLocals vulnerability, but Apple, Qualcomm, and AMD all confirmed to WIRED that they are impacted. Here's what each of the affected companies had to say about the vulnerability, as reported by Wired:\n \nApple: An Apple spokesperson acknowledged LeftoverLocals and noted that the company shipped fixes with its latest M3 and A17 processors, which it unveiled at the end of 2023. This means that the vulnerability is seemingly still present in millions of existing iPhones, iPads, and MacBooks that depend on previous generations of Apple silicon. On January 10, the Trail of Bits researchers retested the vulnerability on a number of Apple devices. They found that Apple's M2 MacBook Air was still vulnerable, but the iPad Air 3rd generation A12 appeared to have been patched.\n\nQualcomm: A Qualcomm spokesperson told WIRED that the company is \"in the process\" of providing security updates to its customers, adding, \"We encourage end users to apply security updates as they become available from their device makers.\" The Trail of Bits researchers say Qualcomm confirmed it has released firmware patches for the vulnerability.\n\nAMD: AMD released a security advisory on Wednesday detailing its plans to offer fixes for LeftoverLocals. The protections will be \"optional mitigations\" released in March.\n\nGoogle: For its part, Google says in a statement that it \"is aware of this vulnerability impacting AMD, Apple, and Qualcomm GPUs. Google has released fixes for ChromeOS devices with impacted AMD and Qualcomm GPUs.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Wired: As more companies ramp up development of artificial intelligence systems, they are increasingly turning to graphics processing unit (GPU) chips for the computing power they need to run large language models (LLMs) and to crunch data quickly at massive scale. Between video game processing and AI, demand for GPUs has never been higher, and chipmakers are rushing to bolster supply. In new findings released today, though, researchers are highlighting a vulnerability in multiple brands and models of mainstream GPUs -- including Apple, Qualcomm, and AMD chips -- that could allow an attacker to steal large quantities of data from a GPU's memory. The silicon industry has spent years refining the security of central processing units, or CPUs, so they don't leak data in memory even when they are built to optimize for speed. However, since GPUs were designed for raw graphics processing power, they haven't been architected to the same degree with data privacy as a priority. As generative AI and other machine learning applications expand the uses of these chips, though, researchers from New York -- based security firm Trail of Bits say that vulnerabilities in GPUs are an increasingly urgent concern. \"There is a broader security concern about these GPUs not being as secure as they should be and leaking a significant amount of data,\" Heidy Khlaaf, Trail of Bits' engineering director for AI and machine learning assurance, tells WIRED. \"We're looking at anywhere from 5 megabytes to 180 megabytes. In the CPU world, even a bit is too much to reveal.\"\n \nTo exploit the vulnerability, which the researchers call LeftoverLocals, attackers would need to already have established some amount of operating system access on a target's device. Modern computers and servers are specifically designed to silo data so multiple users can share the same processing resources without being able to access each others' data. But a LeftoverLocals attack breaks down these walls. Exploiting the vulnerability would allow a hacker to exfiltrate data they shouldn't be able to access from the local memory of vulnerable GPUs, exposing whatever data happens to be there for the taking, which could include queries and responses generated by LLMs as well as the weights driving the response. In their proof of concept, as seen in the GIF below, the researchers demonstrate an attack where a target -- shown on the left -- asks the open source LLM Llama.cpp to provide details about WIRED magazine. Within seconds, the attacker's device -- shown on the right -- collects the majority of the response provided by the LLM by carrying out a LeftoverLocals attack on vulnerable GPU memory. The attack program the researchers created uses less than 10 lines of code. [...] Though exploiting the vulnerability would require some amount of existing access to targets' devices, the potential implications are significant given that it is common for highly motivated attackers to carry out hacks by chaining multiple vulnerabilities together. Furthermore, establishing \"initial access\" to a device is already necessary for many common types of digital attacks. The researchers did not find evidence that Nvidia, Intel, or Arm GPUs contain the LeftoverLocals vulnerability, but Apple, Qualcomm, and AMD all confirmed to WIRED that they are impacted. Here's what each of the affected companies had to say about the vulnerability, as reported by Wired:\n \nApple: An Apple spokesperson acknowledged LeftoverLocals and noted that the company shipped fixes with its latest M3 and A17 processors, which it unveiled at the end of 2023. This means that the vulnerability is seemingly still present in millions of existing iPhones, iPads, and MacBooks that depend on previous generations of Apple silicon. On January 10, the Trail of Bits researchers retested the vulnerability on a number of Apple devices. They found that Apple's M2 MacBook Air was still vulnerable, but the iPad Air 3rd generation A12 appeared to have been patched.\n\nQualcomm: A Qualcomm spokesperson told WIRED that the company is \"in the process\" of providing security updates to its customers, adding, \"We encourage end users to apply security updates as they become available from their device makers.\" The Trail of Bits researchers say Qualcomm confirmed it has released firmware patches for the vulnerability.\n\nAMD: AMD released a security advisory on Wednesday detailing its plans to offer fixes for LeftoverLocals. The protections will be \"optional mitigations\" released in March.\n\nGoogle: For its part, Google says in a statement that it \"is aware of this vulnerability impacting AMD, Apple, and Qualcomm GPUs. Google has released fixes for ChromeOS devices with impacted AMD and Qualcomm GPUs.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://it.slashdot.org/story/24/01/18/0238237/a-flaw-in-millions-of-apple-amd-and-qualcomm-gpus-could-expose-ai-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T13:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-19T07:00:00+00:00", - "title": "Greenland's Ice Sheet Melting Faster Than Scientists Previously Estimated, Study Finds", - "link": "https://news.slashdot.org/story/24/01/18/2332220/greenlands-ice-sheet-melting-faster-than-scientists-previously-estimated-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-19T07:00:00+00:00", - "content": "Scientists have underestimated recent mass loss from Greenland by as much as 20%, finds a new study published in the journal Nature. CBS News reports: Since 1985, Greenland's ice sheet has lost approximately 5,091 square kilometers of ice researchers found using satellite imagery. Scientists said earlier estimates did not track melting at the edges of the ice sheets, known as calving, which measures ice breaking off at the terminus of a glacier. Greenland's ice sheet loses about 193 square kilometers of ice per year, researchers found. Study co-author Chad Greene and his colleagues said they qualified the extent of calving, which increased the scope of ice mass lost.\n \nThey combined \"236,328 observations of glacier terminus positions\" compiled from various public data sets to capture monthly ice melt. Their measurements found that between 1985 and 2022, almost every glacier in Greenland experienced some level of loss. [...] Researchers in the study noted that \"this retreat does not appear to substantially contribute to sea level rise\" because most of the glacier margins the scientists measured were already underwater. The loss, however, may play a part in ocean circulation patterns, and how heat energy is distributed across the planet.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Scientists have underestimated recent mass loss from Greenland by as much as 20%, finds a new study published in the journal Nature. CBS News reports: Since 1985, Greenland's ice sheet has lost approximately 5,091 square kilometers of ice researchers found using satellite imagery. Scientists said earlier estimates did not track melting at the edges of the ice sheets, known as calving, which measures ice breaking off at the terminus of a glacier. Greenland's ice sheet loses about 193 square kilometers of ice per year, researchers found. Study co-author Chad Greene and his colleagues said they qualified the extent of calving, which increased the scope of ice mass lost.\n \nThey combined \"236,328 observations of glacier terminus positions\" compiled from various public data sets to capture monthly ice melt. Their measurements found that between 1985 and 2022, almost every glacier in Greenland experienced some level of loss. [...] Researchers in the study noted that \"this retreat does not appear to substantially contribute to sea level rise\" because most of the glacier margins the scientists measured were already underwater. The loss, however, may play a part in ocean circulation patterns, and how heat energy is distributed across the planet.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/18/2332220/greenlands-ice-sheet-melting-faster-than-scientists-previously-estimated-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-19T03:30:00+00:00", - "title": "80 Years Later, GCHQ Releases New Images of Nazi Code-Breaking Computer", - "link": "https://hardware.slashdot.org/story/24/01/18/233235/80-years-later-gchq-releases-new-images-of-nazi-code-breaking-computer?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-19T03:30:00+00:00", - "content": "An anonymous reader quotes a report from Ars Technica: On Thursday, UK's Government Communications Headquarters (GCHQ) announced the release of previously unseen images and documents related to Colossus, one of the first digital computers. The release marks the 80th anniversary of the code-breaking machines that significantly aided the Allied forces during World War II. While some in the public knew of the computers earlier (PDF), the UK did not formally acknowledge the project's existence until the 2000s.\n \nColossus was not one computer but a series of computers developed by British scientists between 1943 and 1945. These 2-meter-tall electronic beasts played an instrumental role in breaking the Lorenz cipher, a code used for communications between high-ranking German officials in occupied Europe. The computers were said to have allowed allies to \"read Hitler's mind,\" according to The Sydney Morning Herald. The technology behind Colossus was highly innovative for its time. Tommy Flowers, the engineer behind its construction, used over 2,500 vacuum tubes to create logic gates, a precursor to the semiconductor-based electronic circuits found in modern computers. While 1945's ENIAC was long considered the clear front-runner in digital computing, the revelation of Colossus' earlier existence repositioned it in computing history. (However, it's important to note that ENIAC was a general-purpose computer, and Colossus was not.)\n \nGCHQ's public sharing of archival documents includes several photos of the computer at different periods and a letter discussing Tommy Flowers' groundbreaking work that references the interception of \"rather alarming German instructions.\" Following the war, the UK government issued orders for the destruction of most Colossus machines, and Flowers was required to turn over all related documentation. The GCHQ claims that the Colossus tech \"was so effective, its functionality was still in use by us until the early 1960s.\" In the GCHQ press release, Director Anne Keast-Butler paid tribute to Colossus' place in the UK's lineage of technological innovation: \"The creativity, ingenuity and dedication shown by Tommy Flowers and his team to keep the country safe were as crucial to GCHQ then as today.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Ars Technica: On Thursday, UK's Government Communications Headquarters (GCHQ) announced the release of previously unseen images and documents related to Colossus, one of the first digital computers. The release marks the 80th anniversary of the code-breaking machines that significantly aided the Allied forces during World War II. While some in the public knew of the computers earlier (PDF), the UK did not formally acknowledge the project's existence until the 2000s.\n \nColossus was not one computer but a series of computers developed by British scientists between 1943 and 1945. These 2-meter-tall electronic beasts played an instrumental role in breaking the Lorenz cipher, a code used for communications between high-ranking German officials in occupied Europe. The computers were said to have allowed allies to \"read Hitler's mind,\" according to The Sydney Morning Herald. The technology behind Colossus was highly innovative for its time. Tommy Flowers, the engineer behind its construction, used over 2,500 vacuum tubes to create logic gates, a precursor to the semiconductor-based electronic circuits found in modern computers. While 1945's ENIAC was long considered the clear front-runner in digital computing, the revelation of Colossus' earlier existence repositioned it in computing history. (However, it's important to note that ENIAC was a general-purpose computer, and Colossus was not.)\n \nGCHQ's public sharing of archival documents includes several photos of the computer at different periods and a letter discussing Tommy Flowers' groundbreaking work that references the interception of \"rather alarming German instructions.\" Following the war, the UK government issued orders for the destruction of most Colossus machines, and Flowers was required to turn over all related documentation. The GCHQ claims that the Colossus tech \"was so effective, its functionality was still in use by us until the early 1960s.\" In the GCHQ press release, Director Anne Keast-Butler paid tribute to Colossus' place in the UK's lineage of technological innovation: \"The creativity, ingenuity and dedication shown by Tommy Flowers and his team to keep the country safe were as crucial to GCHQ then as today.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/24/01/18/233235/80-years-later-gchq-releases-new-images-of-nazi-code-breaking-computer?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T03:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-19T02:02:00+00:00", - "title": "BMW Will Employ Figure's Humanoid Robot At South Carolina Plant", - "link": "https://hardware.slashdot.org/story/24/01/18/2313227/bmw-will-employ-figures-humanoid-robot-at-south-carolina-plant?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-19T02:02:00+00:00", - "content": "Figure's first humanoid robot will be coming to a BMW manufacturing facility in South Carolina. TechCrunch reports: BMW has not disclosed how many Figure 01 models it will deploy initially. Nor do we know precisely what jobs the robot will be tasked with when it starts work. Figure did, however, confirm with TechCrunch that it is beginning with an initial five tasks, which will be rolled out one at a time. While folks in the space have been cavalierly tossing out the term \"general purpose\" to describe these sorts of systems, it's important to temper expectations and point out that they will all arrive as single- or multi-purpose systems, growing their skillset over time. Figure CEO Brett Adcock likens the approach to an app store -- something that Boston Dynamics currently offers with its Spot robot via SDK.\n \nLikely initial applications include standard manufacturing tasks such as box moving, pick and place and pallet unloading and loading -- basically the sort of repetitive tasks for which factory owners claim to have difficulty retaining human workers. Adcock says that Figure expects to ship its first commercial robot within a year, an ambitious timeline even for a company that prides itself on quick turnaround times. The initial batch of applications will be largely determined by Figure's early partners like BMW. The system will, for instance, likely be working with sheet metal to start. Adcock adds that the company has signed up additional clients, but declined to disclose their names. It seems likely Figure will instead opt to announce each individually to keep the news cycle spinning in the intervening 12 months.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Figure's first humanoid robot will be coming to a BMW manufacturing facility in South Carolina. TechCrunch reports: BMW has not disclosed how many Figure 01 models it will deploy initially. Nor do we know precisely what jobs the robot will be tasked with when it starts work. Figure did, however, confirm with TechCrunch that it is beginning with an initial five tasks, which will be rolled out one at a time. While folks in the space have been cavalierly tossing out the term \"general purpose\" to describe these sorts of systems, it's important to temper expectations and point out that they will all arrive as single- or multi-purpose systems, growing their skillset over time. Figure CEO Brett Adcock likens the approach to an app store -- something that Boston Dynamics currently offers with its Spot robot via SDK.\n \nLikely initial applications include standard manufacturing tasks such as box moving, pick and place and pallet unloading and loading -- basically the sort of repetitive tasks for which factory owners claim to have difficulty retaining human workers. Adcock says that Figure expects to ship its first commercial robot within a year, an ambitious timeline even for a company that prides itself on quick turnaround times. The initial batch of applications will be largely determined by Figure's early partners like BMW. The system will, for instance, likely be working with sheet metal to start. Adcock adds that the company has signed up additional clients, but declined to disclose their names. It seems likely Figure will instead opt to announce each individually to keep the news cycle spinning in the intervening 12 months.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/24/01/18/2313227/bmw-will-employ-figures-humanoid-robot-at-south-carolina-plant?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T02:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-19T01:25:00+00:00", - "title": "Bing Gained Less Than 1% Market Share Since Adding Bing Chat, Report Finds", - "link": "https://tech.slashdot.org/story/24/01/18/2249226/bing-gained-less-than-1-market-share-since-adding-bing-chat-report-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-19T01:25:00+00:00", - "content": "According to StatCounter, Bing's market share grew less than 1% since launching Bing Chat (now known as Copilot) roughly a year ago. From a report: Bloomberg reported (paywalled) on the StatCounter data, saying, \"But Microsoft's search engine ended 2023 with just 3.4% of the global search market, according to data analytics firm StatCounter, up less than 1 percentage point since the ChatGPT announcement.\" Google still dominates the global search market with a 91.6% market share, followed by Bing's 3.4%, Yandex's 1.6% and Yahoo's 1.1%. \"Other\" search engines accounted for a total of just 2.2% of the global search market.\n \nYou can view the raw chart and data from StatCounter here.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "According to StatCounter, Bing's market share grew less than 1% since launching Bing Chat (now known as Copilot) roughly a year ago. From a report: Bloomberg reported (paywalled) on the StatCounter data, saying, \"But Microsoft's search engine ended 2023 with just 3.4% of the global search market, according to data analytics firm StatCounter, up less than 1 percentage point since the ChatGPT announcement.\" Google still dominates the global search market with a 91.6% market share, followed by Bing's 3.4%, Yandex's 1.6% and Yahoo's 1.1%. \"Other\" search engines accounted for a total of just 2.2% of the global search market.\n \nYou can view the raw chart and data from StatCounter here.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/18/2249226/bing-gained-less-than-1-market-share-since-adding-bing-chat-report-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T01:25:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-19T00:45:00+00:00", - "title": "Google To Invest $1 Billion In UK Data Center", - "link": "https://news.slashdot.org/story/24/01/18/2237255/google-to-invest-1-billion-in-uk-data-center?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-19T00:45:00+00:00", - "content": "Google announced today that it will invest $1 billion building a data center near London. Reuters reports: The data centre, located on a 33-acre (13-hectare) site bought by Google in 2020, will be located in the town of Waltham Cross, about 15 miles north of central London, the Alphabet-owned company said in a statement. The British government, which is pushing for investment by businesses to help fund new infrastructure, particularly in growth industries like technology and artificial intelligence, described Google's investment as a \"huge vote of confidence\" in the UK.\n \n\"Google's $1 billion investment is testament to the fact that the UK is a centre of excellence in technology and has huge potential for growth,\" Prime Minister Rishi Sunak said in the Google statement. The investment follows Google's $1 billion purchase of a central London office building in 2022, close to Covent Garden, and another site in nearby King's Cross, where it is building a new office and where its AI company DeepMind is also based. In November, Microsoft announced plans to pump $3.2 billion into Britain over the next three years.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google announced today that it will invest $1 billion building a data center near London. Reuters reports: The data centre, located on a 33-acre (13-hectare) site bought by Google in 2020, will be located in the town of Waltham Cross, about 15 miles north of central London, the Alphabet-owned company said in a statement. The British government, which is pushing for investment by businesses to help fund new infrastructure, particularly in growth industries like technology and artificial intelligence, described Google's investment as a \"huge vote of confidence\" in the UK.\n \n\"Google's $1 billion investment is testament to the fact that the UK is a centre of excellence in technology and has huge potential for growth,\" Prime Minister Rishi Sunak said in the Google statement. The investment follows Google's $1 billion purchase of a central London office building in 2022, close to Covent Garden, and another site in nearby King's Cross, where it is building a new office and where its AI company DeepMind is also based. In November, Microsoft announced plans to pump $3.2 billion into Britain over the next three years.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/18/2237255/google-to-invest-1-billion-in-uk-data-center?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T00:45:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-19T00:02:00+00:00", - "title": "Remote Work Doesn't Seem To Affect Productivity, Fed Study Finds", - "link": "https://news.slashdot.org/story/24/01/18/2230247/remote-work-doesnt-seem-to-affect-productivity-fed-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-19T00:02:00+00:00", - "content": "An anonymous reader quotes a report released Tuesday (Jan. 16th) by the Federal Reserve Bank of San Francisco: The U.S. labor market experienced a massive increase in remote and hybrid work during the COVID-19 pandemic. At its peak, more than 60% of paid workdays were done remotely -- compared with only 5% before the pandemic. As of December 2023, about 30% of paid workdays are still done remotely (Barrero, Bloom, and Davis 2021). Some reports have suggested that teleworking might either boost or harm overall productivity in the economy. And certainly, overall productivity statistics have been volatile. In 2020, U.S. productivity growth surged. This led to optimistic views in the media about the gains from forced digital innovation and the productivity benefits of remote work. However, the surge ended, and productivity growth has retreated to roughly its pre-pandemic trend. Fernald and Li (2022) find from aggregate data that this pattern was largely explained by a predictable cyclical effect from the economy's downturn and recovery. In aggregate data, it thus appears difficult to see a large cumulative effect -- either positive or negative -- from the pandemic so far. But it is possible that aggregate data obscure the effects of teleworking. For example, factors beyond telework could have affected the overall pace of productivity growth. Surveys of businesses have found mixed effects from the pandemic, with many businesses reporting substantial productivity disruptions.\n \nIn this Economic Letter, we ask whether we can detect the effects of remote work in the productivity performance of different industries. There are large differences across sectors in how easy it is to work off-site. Thus, if remote work boosts productivity in a substantial way, then it should improve productivity performance, especially in those industries where teleworking is easy to arrange and widely adopted, such as professional services, compared with those where tasks need to be performed in person, such as restaurants. After controlling for pre-pandemic trends in industry productivity growth rates, we find little statistical relationship between telework and pandemic productivity performance. We conclude that the shift to remote work, on its own, is unlikely to be a major factor explaining differences across sectors in productivity performance. By extension, despite the important social and cultural effects of increased telework, the shift is unlikely to be a major factor explaining changes in aggregate productivity. [...]\n \nThe shift to remote and hybrid work has reshaped society in important ways, and these effects are likely to continue to evolve. For example, with less time spent commuting, some people have moved out of cities, and the lines between work and home life have blurred. Despite these noteworthy effects, in this Letter we find little evidence in industry data that the shift to remote and hybrid work has either substantially held back or boosted the rate of productivity growth. Our findings do not rule out possible future changes in productivity growth from the spread of remote work. The economic environment has changed in many ways during and since the pandemic, which could have masked the longer-run effects of teleworking. Continuous innovation is the key to sustained productivity growth. Working remotely could foster innovation through a reduction in communication costs and improved talent allocation across geographic areas. However, working off-site could also hamper innovation by reducing in-person office interactions that foster idea generation and diffusion. The future of work is likely to be a hybrid format that balances the benefits and limitations of remote work.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report released Tuesday (Jan. 16th) by the Federal Reserve Bank of San Francisco: The U.S. labor market experienced a massive increase in remote and hybrid work during the COVID-19 pandemic. At its peak, more than 60% of paid workdays were done remotely -- compared with only 5% before the pandemic. As of December 2023, about 30% of paid workdays are still done remotely (Barrero, Bloom, and Davis 2021). Some reports have suggested that teleworking might either boost or harm overall productivity in the economy. And certainly, overall productivity statistics have been volatile. In 2020, U.S. productivity growth surged. This led to optimistic views in the media about the gains from forced digital innovation and the productivity benefits of remote work. However, the surge ended, and productivity growth has retreated to roughly its pre-pandemic trend. Fernald and Li (2022) find from aggregate data that this pattern was largely explained by a predictable cyclical effect from the economy's downturn and recovery. In aggregate data, it thus appears difficult to see a large cumulative effect -- either positive or negative -- from the pandemic so far. But it is possible that aggregate data obscure the effects of teleworking. For example, factors beyond telework could have affected the overall pace of productivity growth. Surveys of businesses have found mixed effects from the pandemic, with many businesses reporting substantial productivity disruptions.\n \nIn this Economic Letter, we ask whether we can detect the effects of remote work in the productivity performance of different industries. There are large differences across sectors in how easy it is to work off-site. Thus, if remote work boosts productivity in a substantial way, then it should improve productivity performance, especially in those industries where teleworking is easy to arrange and widely adopted, such as professional services, compared with those where tasks need to be performed in person, such as restaurants. After controlling for pre-pandemic trends in industry productivity growth rates, we find little statistical relationship between telework and pandemic productivity performance. We conclude that the shift to remote work, on its own, is unlikely to be a major factor explaining differences across sectors in productivity performance. By extension, despite the important social and cultural effects of increased telework, the shift is unlikely to be a major factor explaining changes in aggregate productivity. [...]\n \nThe shift to remote and hybrid work has reshaped society in important ways, and these effects are likely to continue to evolve. For example, with less time spent commuting, some people have moved out of cities, and the lines between work and home life have blurred. Despite these noteworthy effects, in this Letter we find little evidence in industry data that the shift to remote and hybrid work has either substantially held back or boosted the rate of productivity growth. Our findings do not rule out possible future changes in productivity growth from the spread of remote work. The economic environment has changed in many ways during and since the pandemic, which could have masked the longer-run effects of teleworking. Continuous innovation is the key to sustained productivity growth. Working remotely could foster innovation through a reduction in communication costs and improved talent allocation across geographic areas. However, working off-site could also hamper innovation by reducing in-person office interactions that foster idea generation and diffusion. The future of work is likely to be a hybrid format that balances the benefits and limitations of remote work.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/18/2230247/remote-work-doesnt-seem-to-affect-productivity-fed-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T00:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T23:20:00+00:00", - "title": "IBM Scraps Rewards Program For Staff Inventions, Wipes Away Cash Points", - "link": "https://slashdot.org/story/24/01/18/2223216/ibm-scraps-rewards-program-for-staff-inventions-wipes-away-cash-points?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T23:20:00+00:00", - "content": "Thomas Claburn reports via The Register: IBM has canceled a program that rewarded inventors at Big Blue for patents or publications, leaving some angry that they are missing out on potential bonuses. By cancelling the scheme, a source told The Register, IBM has eliminated a financial liability by voiding the accrued, unredeemed credits issued to program participants which could have been converted into potential cash awards. For years, IBM has sponsored an \"Invention Achievement Award Plan\" to incentivize employee innovation. In exchange for filing patents, or for publishing articles that served as defense against rival patents, IBM staff were awarded points that led to recognition and potentially cash bonuses. According to documentation seen by The Register, \"Invention points are awarded to all inventors listed on a successful disclosure submission.\"\n \nOne point was awarded for publishing. Three points were awarded for filing a patent or four if the filing was deemed high value. For accruing 12 points, program participants would get a payout. \"Inventors reach an invention plateau for every 12 points they achieve -- which must include at least one file decision,\" the rules state. And for each plateau achieved, IBM would pay its inventors $1,200 in recognition of their efforts. No longer, it seems. IBM canceled the program at the end of 2023 and replaced it with a new one that uses a different, incompatible point system called BluePoints.\n \n\"The previous Invention Achievement Award Plan will be sunset at midnight (eastern time) on December 31st, 2023,\" company FAQs explain. \"Since Plateau awards are one of the items being sunset, plateau levels must be obtained on or before December 31, 2023 to be eligible for the award. Any existing plateau points that have not been applied will not be converted to BluePoints.\" We're told that IBM's invention review process could take months, meaning that employees just didn't have time between the announcement and the program sunset to pursue the next plateau and cash out. Those involved in the program evidently were none too pleased by the points grab. \"My opinion...the invention award program was buggered a long time [ago],\" said a former IBM employee. \"It rewarded words on a page instead of true innovation. [Former CEO] Ginni [Rometty] made it worse by advocating the program to fluff up young egos.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Thomas Claburn reports via The Register: IBM has canceled a program that rewarded inventors at Big Blue for patents or publications, leaving some angry that they are missing out on potential bonuses. By cancelling the scheme, a source told The Register, IBM has eliminated a financial liability by voiding the accrued, unredeemed credits issued to program participants which could have been converted into potential cash awards. For years, IBM has sponsored an \"Invention Achievement Award Plan\" to incentivize employee innovation. In exchange for filing patents, or for publishing articles that served as defense against rival patents, IBM staff were awarded points that led to recognition and potentially cash bonuses. According to documentation seen by The Register, \"Invention points are awarded to all inventors listed on a successful disclosure submission.\"\n \nOne point was awarded for publishing. Three points were awarded for filing a patent or four if the filing was deemed high value. For accruing 12 points, program participants would get a payout. \"Inventors reach an invention plateau for every 12 points they achieve -- which must include at least one file decision,\" the rules state. And for each plateau achieved, IBM would pay its inventors $1,200 in recognition of their efforts. No longer, it seems. IBM canceled the program at the end of 2023 and replaced it with a new one that uses a different, incompatible point system called BluePoints.\n \n\"The previous Invention Achievement Award Plan will be sunset at midnight (eastern time) on December 31st, 2023,\" company FAQs explain. \"Since Plateau awards are one of the items being sunset, plateau levels must be obtained on or before December 31, 2023 to be eligible for the award. Any existing plateau points that have not been applied will not be converted to BluePoints.\" We're told that IBM's invention review process could take months, meaning that employees just didn't have time between the announcement and the program sunset to pursue the next plateau and cash out. Those involved in the program evidently were none too pleased by the points grab. \"My opinion...the invention award program was buggered a long time [ago],\" said a former IBM employee. \"It rewarded words on a page instead of true innovation. [Former CEO] Ginni [Rometty] made it worse by advocating the program to fluff up young egos.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/18/2223216/ibm-scraps-rewards-program-for-staff-inventions-wipes-away-cash-points?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T23:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T23:00:00+00:00", - "title": "Google Is Rolling Out WebGPU For Next-Gen Gaming On Android", - "link": "https://tech.slashdot.org/story/24/01/18/2135244/google-is-rolling-out-webgpu-for-next-gen-gaming-on-android?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T23:00:00+00:00", - "content": "In a blog post today, Google announced that WebGPU is \"now enabled by default in Chrome 121 on devices running Android 12 and greater powered by Qualcomm and ARM GPUs,\" with support for more Android devices rolling out gradually. Previously, the API was only available on Windows PCs that support Direct3D 12, macOS, and ChromeOS devices that support Vulkan.\n \nGoogle says WebGPU \"offers significant benefits such as greatly reduced JavaScript workload for the same graphics and more than three times improvements in machine learning model inferences.\" With lower-level access to a device's GPU, developers are able to enable richer and more complex visual content in web applications. This will be especially apparent with games, as you can see in this demo.\n \nNext up: WebGPU for Chrome on Linux.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "In a blog post today, Google announced that WebGPU is \"now enabled by default in Chrome 121 on devices running Android 12 and greater powered by Qualcomm and ARM GPUs,\" with support for more Android devices rolling out gradually. Previously, the API was only available on Windows PCs that support Direct3D 12, macOS, and ChromeOS devices that support Vulkan.\n \nGoogle says WebGPU \"offers significant benefits such as greatly reduced JavaScript workload for the same graphics and more than three times improvements in machine learning model inferences.\" With lower-level access to a device's GPU, developers are able to enable richer and more complex visual content in web applications. This will be especially apparent with games, as you can see in this demo.\n \nNext up: WebGPU for Chrome on Linux.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/18/2135244/google-is-rolling-out-webgpu-for-next-gen-gaming-on-android?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T23:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T22:40:00+00:00", - "title": "Reddit Seeks To Launch IPO In March", - "link": "https://slashdot.org/story/24/01/18/2116233/reddit-seeks-to-launch-ipo-in-march?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T22:40:00+00:00", - "content": "According to Reuters, Reddit plans to launch its initial public offering (IPO) in March, \"moving forward with a listing it has been eyeing for more than three years.\" From the report: It would be the first IPO of a major social media company since Pinterest's, opens new tab debut in 2019, and would come as Reddit and its peers face stiff competition for advertising dollars from the likes of TikTok and Facebook. The offering would also test the willingness of some Reddit users to back the company's stock market debut.\n \nReddit, which filed confidentially for its IPO in December 2021, is planning to make its public filing in late February, launch its roadshow in early March, and complete the IPO by the end of March, two of the sources said. The San Francisco-based company, which was valued at about $10 billion in a funding round in 2021, is seeking to sell about 10% of its shares in the IPO, the sources added. It will decide on what IPO valuation it will pursue closer to the time of the listing, according to the sources.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "According to Reuters, Reddit plans to launch its initial public offering (IPO) in March, \"moving forward with a listing it has been eyeing for more than three years.\" From the report: It would be the first IPO of a major social media company since Pinterest's, opens new tab debut in 2019, and would come as Reddit and its peers face stiff competition for advertising dollars from the likes of TikTok and Facebook. The offering would also test the willingness of some Reddit users to back the company's stock market debut.\n \nReddit, which filed confidentially for its IPO in December 2021, is planning to make its public filing in late February, launch its roadshow in early March, and complete the IPO by the end of March, two of the sources said. The San Francisco-based company, which was valued at about $10 billion in a funding round in 2021, is seeking to sell about 10% of its shares in the IPO, the sources added. It will decide on what IPO valuation it will pursue closer to the time of the listing, according to the sources.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/18/2116233/reddit-seeks-to-launch-ipo-in-march?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T22:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-18T22:00:00+00:00", - "title": "'Stablecoins' Enabled $40 Billion In Crypto Crime Since 2022", - "link": "https://yro.slashdot.org/story/24/01/18/2112213/stablecoins-enabled-40-billion-in-crypto-crime-since-2022?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-18T22:00:00+00:00", - "content": "An anonymous reader quotes a report from Wired: Stablecoins, cryptocurrencies pegged to a stable value like the US dollar, were created with the promise of bringing the frictionless, border-crossing fluidity of Bitcoin to a form of digital money with far less volatility. That combination has proved to be wildly popular, rocketing the total value of stablecoin transactions since 2022 past even that of Bitcoin itself. It turns out, however, that as stablecoins have become popular among legitimate users over the past two years, they were even more popular among a different kind of user: those exploiting them for billions of dollars of international sanctions evasion and scams.\n \nAs part of itsannual crime report, cryptocurrency-tracing firm Chainalysis today released new numbers on the disproportionate use of stablecoins for both of those massive categories of illicit crypto transactions over the last year. By analyzing blockchains, Chainalysis determined that stablecoins were used in fully 70 percent of crypto scam transactions in 2023, 83 percent of crypto payments to sanctioned countries like Iran and Russia, and 84 percent of crypto payments to specifically sanctioned individuals and companies. Those numbers far outstrip stablecoins' growing overall use -- including for legitimate purposes -- which accounted for 59 percent of all cryptocurrency transaction volume in 2023.\n \nIn total, Chainalysis measured $40 billion in illicit stablecoin transactions in 2022 and 2023 combined. The largest single category of that stablecoin-enabled crime was sanctions evasion. In fact, across all cryptocurrencies, sanctions evasion accounted for more than half of the $24.2 billion in criminal transactions Chainalysis observed in 2023, with stablecoins representing the vast majority of those transactions. [...] Chainalysis concedes that the analysis in its report excludes some cryptocurrencies like Monero and Zcash that are designed to be harder or impossible to trace with blockchain analysis. It also says it based its numbers on the type of cryptocurrency sent directly to an illicit actor, which may leave out other currencies used in money laundering processes that repeatedly swap one type of cryptocurrency for another to make tracing more difficult. \"Whether it's an individual located in Iran or a bad guy trying to launder money -- either way, there's a benefit to the stability of the US dollar that people are looking to obtain,\" says Andrew Fierman, Chainalysis' head of sanctions strategy. \"If you're in a jurisdiction where you don't have access to the US dollar due to sanctions, stablecoins become an interesting play.\"\n \nFierman points to Nobitex, the largest cryptocurrency exchange operating in the sanctioned country of Iran, as well as Garantex, a notorious exchange based in Russia that has been specifically sanctioned for its widespread criminal use. According to Chainalysis, \"Stablecoin usage on Nobitex outstrips bitcoin by a 9:1 ratio, and on Garantex by a 5:1 ratio,\" reports Wired. \"That's a stark difference from the roughly 1:1 ratio between stablecoins and bitcoins on a few nonsanctioned mainstream exchanges that Chainalysis checked for comparison.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Wired: Stablecoins, cryptocurrencies pegged to a stable value like the US dollar, were created with the promise of bringing the frictionless, border-crossing fluidity of Bitcoin to a form of digital money with far less volatility. That combination has proved to be wildly popular, rocketing the total value of stablecoin transactions since 2022 past even that of Bitcoin itself. It turns out, however, that as stablecoins have become popular among legitimate users over the past two years, they were even more popular among a different kind of user: those exploiting them for billions of dollars of international sanctions evasion and scams.\n \nAs part of itsannual crime report, cryptocurrency-tracing firm Chainalysis today released new numbers on the disproportionate use of stablecoins for both of those massive categories of illicit crypto transactions over the last year. By analyzing blockchains, Chainalysis determined that stablecoins were used in fully 70 percent of crypto scam transactions in 2023, 83 percent of crypto payments to sanctioned countries like Iran and Russia, and 84 percent of crypto payments to specifically sanctioned individuals and companies. Those numbers far outstrip stablecoins' growing overall use -- including for legitimate purposes -- which accounted for 59 percent of all cryptocurrency transaction volume in 2023.\n \nIn total, Chainalysis measured $40 billion in illicit stablecoin transactions in 2022 and 2023 combined. The largest single category of that stablecoin-enabled crime was sanctions evasion. In fact, across all cryptocurrencies, sanctions evasion accounted for more than half of the $24.2 billion in criminal transactions Chainalysis observed in 2023, with stablecoins representing the vast majority of those transactions. [...] Chainalysis concedes that the analysis in its report excludes some cryptocurrencies like Monero and Zcash that are designed to be harder or impossible to trace with blockchain analysis. It also says it based its numbers on the type of cryptocurrency sent directly to an illicit actor, which may leave out other currencies used in money laundering processes that repeatedly swap one type of cryptocurrency for another to make tracing more difficult. \"Whether it's an individual located in Iran or a bad guy trying to launder money -- either way, there's a benefit to the stability of the US dollar that people are looking to obtain,\" says Andrew Fierman, Chainalysis' head of sanctions strategy. \"If you're in a jurisdiction where you don't have access to the US dollar due to sanctions, stablecoins become an interesting play.\"\n \nFierman points to Nobitex, the largest cryptocurrency exchange operating in the sanctioned country of Iran, as well as Garantex, a notorious exchange based in Russia that has been specifically sanctioned for its widespread criminal use. According to Chainalysis, \"Stablecoin usage on Nobitex outstrips bitcoin by a 9:1 ratio, and on Garantex by a 5:1 ratio,\" reports Wired. \"That's a stark difference from the roughly 1:1 ratio between stablecoins and bitcoins on a few nonsanctioned mainstream exchanges that Chainalysis checked for comparison.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/24/01/18/2112213/stablecoins-enabled-40-billion-in-crypto-crime-since-2022?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T22:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T21:20:00+00:00", - "title": "Coursera Saw Signups For AI Courses Every Minute in 2023", - "link": "https://tech.slashdot.org/story/24/01/18/1742232/coursera-saw-signups-for-ai-courses-every-minute-in-2023?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T21:20:00+00:00", - "content": "U.S. edutech platform Coursera added a new user every minute on average for its AI courses in 2023, CEO Jeff Maggioncalda said on Thursday, in a clear sign of people upskilling to tap a potential boom in generative AI. Reuters: The technology behind OpenAI's ChatGPT has taken the world by a storm and sparked a race among companies to roll out their own versions of the viral chatbot. \"I'd say the real hotspot is generative AI because it affects so many people,\" he told Reuters in an interview at the World Economic Forum in Davos. \n\nCoursera is looking to offer AI courses along with companies that are the frontrunners in the AI race, including OpenAI and Google's DeepMind, Maggioncalda said. Investors had earlier feared that apps based on generative AI might replace ed-tech firms, but on the contrary the technology has encouraged more people to upskill, benefiting companies such as Coursera. The company has more than 800 AI courses and saw more than 7.4 million enrollments last year. Every student on the platform gets access to a ChatGPT-like AI assistant called \"Coach\" that provides personalized tutoring.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "U.S. edutech platform Coursera added a new user every minute on average for its AI courses in 2023, CEO Jeff Maggioncalda said on Thursday, in a clear sign of people upskilling to tap a potential boom in generative AI. Reuters: The technology behind OpenAI's ChatGPT has taken the world by a storm and sparked a race among companies to roll out their own versions of the viral chatbot. \"I'd say the real hotspot is generative AI because it affects so many people,\" he told Reuters in an interview at the World Economic Forum in Davos. \n\nCoursera is looking to offer AI courses along with companies that are the frontrunners in the AI race, including OpenAI and Google's DeepMind, Maggioncalda said. Investors had earlier feared that apps based on generative AI might replace ed-tech firms, but on the contrary the technology has encouraged more people to upskill, benefiting companies such as Coursera. The company has more than 800 AI courses and saw more than 7.4 million enrollments last year. Every student on the platform gets access to a ChatGPT-like AI assistant called \"Coach\" that provides personalized tutoring.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/18/1742232/coursera-saw-signups-for-ai-courses-every-minute-in-2023?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T21:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T20:40:00+00:00", - "title": "Mark Zuckerberg's New Goal is Creating AGI", - "link": "https://tech.slashdot.org/story/24/01/18/1831244/mark-zuckerbergs-new-goal-is-creating-agi?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T20:40:00+00:00", - "content": "OpenAI's stated mission is to create the artificial general intelligence, or AGI. Demis Hassabis, the leader of Google's AI efforts, has the same goal. Now, Meta CEO Mark Zuckerberg is entering the race. From a report: While he doesn't have a timeline for when AGI will be reached, or even an exact definition for it, he wants to build it. At the same time, he's shaking things up by moving Meta's AI research group, FAIR, to the same part of the company as the team building generative AI products across Meta's apps. The goal is for Meta's AI breakthroughs to more directly reach its billions of users. \"We've come to this view that, in order to build the products that we want to build, we need to build for general intelligence,\" Zuckerberg tells me in an exclusive interview. \"I think that's important to convey because a lot of the best researchers want to work on the more ambitious problems.\" \n\n[...] No one working on AI, including Zuckerberg, seems to have a clear definition for AGI or an idea of when it will arrive. \"I don't have a one-sentence, pithy definition,\" he tells me. \"You can quibble about if general intelligence is akin to human level intelligence, or is it like human-plus, or is it some far-future super intelligence. But to me, the important part is actually the breadth of it, which is that intelligence has all these different capabilities where you have to be able to reason and have intuition.\" He sees its eventual arrival as being a gradual process, rather than a single moment. \"I'm not actually that sure that some specific threshold will feel that profound.\" As Zuckerberg explains it, Meta's new, broader focus on AGI was influenced by the release of Llama 2, its latest large language model, last year. The company didn't think that the ability for it to generate code made sense for how people would use a LLM in Meta's apps. But it's still an important skill to develop for building smarter AI, so Meta built it anyway. External research has pegged Meta's H100 shipments for 2023 at 150,000, a number that is tied only with Microsoft's shipments and at least three times larger than everyone else's. When its Nvidia A100s and other AI chips are accounted for, Meta will have a stockpile of almost 600,000 GPUs by the end of 2024, according to Zuckerberg.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "OpenAI's stated mission is to create the artificial general intelligence, or AGI. Demis Hassabis, the leader of Google's AI efforts, has the same goal. Now, Meta CEO Mark Zuckerberg is entering the race. From a report: While he doesn't have a timeline for when AGI will be reached, or even an exact definition for it, he wants to build it. At the same time, he's shaking things up by moving Meta's AI research group, FAIR, to the same part of the company as the team building generative AI products across Meta's apps. The goal is for Meta's AI breakthroughs to more directly reach its billions of users. \"We've come to this view that, in order to build the products that we want to build, we need to build for general intelligence,\" Zuckerberg tells me in an exclusive interview. \"I think that's important to convey because a lot of the best researchers want to work on the more ambitious problems.\" \n\n[...] No one working on AI, including Zuckerberg, seems to have a clear definition for AGI or an idea of when it will arrive. \"I don't have a one-sentence, pithy definition,\" he tells me. \"You can quibble about if general intelligence is akin to human level intelligence, or is it like human-plus, or is it some far-future super intelligence. But to me, the important part is actually the breadth of it, which is that intelligence has all these different capabilities where you have to be able to reason and have intuition.\" He sees its eventual arrival as being a gradual process, rather than a single moment. \"I'm not actually that sure that some specific threshold will feel that profound.\" As Zuckerberg explains it, Meta's new, broader focus on AGI was influenced by the release of Llama 2, its latest large language model, last year. The company didn't think that the ability for it to generate code made sense for how people would use a LLM in Meta's apps. But it's still an important skill to develop for building smarter AI, so Meta built it anyway. External research has pegged Meta's H100 shipments for 2023 at 150,000, a number that is tied only with Microsoft's shipments and at least three times larger than everyone else's. When its Nvidia A100s and other AI chips are accounted for, Meta will have a stockpile of almost 600,000 GPUs by the end of 2024, according to Zuckerberg.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/18/1831244/mark-zuckerbergs-new-goal-is-creating-agi?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T20:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T20:00:00+00:00", - "title": "Microsoft Makes Its AI-Powered Reading Tutor Free", - "link": "https://slashdot.org/story/24/01/18/1810200/microsoft-makes-its-ai-powered-reading-tutor-free?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T20:00:00+00:00", - "content": "Microsoft today made Reading Coach, its AI-powered tool that provides learners with personalized reading practice, available at no cost to anyone with a Microsoft account. From a report: As of this morning, Reading Coach is accessible on the web in preview -- a Windows app is forthcoming. And soon (in late spring), Reading Coach will integrate with learning management systems such as Canva, Microsoft says. Reading Coach builds on Reading Progress, a plug-in for the education-focused version of Microsoft Teams, Teams for Education, designed to help teachers foster reading fluency in their students. Inspired by the success of Reading Progress (evidently), Microsoft launched Reading Coach in 2022 as a part of Teams for Education and Immersive Reader, the company's cross-platform assistive service for language and reading comprehension.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Microsoft today made Reading Coach, its AI-powered tool that provides learners with personalized reading practice, available at no cost to anyone with a Microsoft account. From a report: As of this morning, Reading Coach is accessible on the web in preview -- a Windows app is forthcoming. And soon (in late spring), Reading Coach will integrate with learning management systems such as Canva, Microsoft says. Reading Coach builds on Reading Progress, a plug-in for the education-focused version of Microsoft Teams, Teams for Education, designed to help teachers foster reading fluency in their students. Inspired by the success of Reading Progress (evidently), Microsoft launched Reading Coach in 2022 as a part of Teams for Education and Immersive Reader, the company's cross-platform assistive service for language and reading comprehension.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/24/01/18/1810200/microsoft-makes-its-ai-powered-reading-tutor-free?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T20:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T19:20:00+00:00", - "title": "Coinbase Compares Buying Crypto To Collecting Beanie Babies", - "link": "https://tech.slashdot.org/story/24/01/18/1753211/coinbase-compares-buying-crypto-to-collecting-beanie-babies?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T19:20:00+00:00", - "content": "Coinbase said buying cryptocurrency on an exchange was more like collecting Beanie Babies than investing in a stock or bond. From a report: The biggest US crypto exchange made the comparison Wednesday in a New York federal court hearing. Coinbase was arguing for the dismissal of a Securities and Exchange Commission lawsuit accusing it of selling unregistered securities. William Savitt, a lawyer for Coinbase, told US District Judge Katherine Polk Failla that tokens trading on the exchange aren't securities subject to SEC jurisdiction because buyers don't gain any rights as a part of their purchases, as they do with stocks or bonds. \"It's the difference between buying Beanie Babies Inc and buying Beanie Babies,\" Savitt said. The question of whether digital tokens are securities has divided courts.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Coinbase said buying cryptocurrency on an exchange was more like collecting Beanie Babies than investing in a stock or bond. From a report: The biggest US crypto exchange made the comparison Wednesday in a New York federal court hearing. Coinbase was arguing for the dismissal of a Securities and Exchange Commission lawsuit accusing it of selling unregistered securities. William Savitt, a lawyer for Coinbase, told US District Judge Katherine Polk Failla that tokens trading on the exchange aren't securities subject to SEC jurisdiction because buyers don't gain any rights as a part of their purchases, as they do with stocks or bonds. \"It's the difference between buying Beanie Babies Inc and buying Beanie Babies,\" Savitt said. The question of whether digital tokens are securities has divided courts.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/18/1753211/coinbase-compares-buying-crypto-to-collecting-beanie-babies?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T19:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-18T18:40:00+00:00", - "title": "Hospitals Owned By Private Equity Are Harming Patients, Reports Find", - "link": "https://science.slashdot.org/story/24/01/18/1838259/hospitals-owned-by-private-equity-are-harming-patients-reports-find?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-18T18:40:00+00:00", - "content": "Private equity firms are increasingly buying hospitals across the US, and when they do, patients suffer, according to two separate reports. Specifically, the equity firms cut corners, slash services, lay off staff, lower quality of care, take on substantial debt, and reduce charity care, leading to lower ratings and more medical errors, the reports collectively find. ArsTechnica: Last week, the financial watchdog organization Private Equity Stakeholder Project (PESP) released a report delving into the state of two of the nation's largest hospital systems, Lifepoint and ScionHealth -- both owned by private equity firm Apollo Global Management. Through those two systems, Apollo runs 220 hospitals in 36 states, employing around 75,000 people. The report found that some of Apollo's hospitals were among the worst in their respective states, based on a ranking by The Lown Institute Hospital Index. The index ranks hospitals and health systems based on health equity, value, and outcomes, PESP notes. The hospitals also have dismal readmission rates and government rankings. \n\nThe Center for Medicare and Medicaid Services (CMS) ranks hospitals on a one- to five-star system, with the national average of 3.2 stars overall and about 30 percent of hospitals at two stars or below. Apollo's overall average is 2.8 stars, with nearly 40 percent of hospitals at two stars or below. The other report, a study published in JAMA late last month, found that the rate of serious medical errors and health complications increases among patients in the first few years after private equity firms take over. The study examined Medicare claims from 51 private equity-run hospitals and 259 matched control hospitals. Specifically, the study, led by researchers at Harvard University, found that patients admitted to private equity-owned hospitals had a 25 percent increase in developing hospital-acquired conditions compared with patients in the control hospitals. In private equity hospitals, patients experienced a 27 percent increase in falls, a 38 percent increase in central-line bloodstream infections (despite placing 16 percent fewer central lines than control hospitals), and surgical site infections doubled.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Private equity firms are increasingly buying hospitals across the US, and when they do, patients suffer, according to two separate reports. Specifically, the equity firms cut corners, slash services, lay off staff, lower quality of care, take on substantial debt, and reduce charity care, leading to lower ratings and more medical errors, the reports collectively find. ArsTechnica: Last week, the financial watchdog organization Private Equity Stakeholder Project (PESP) released a report delving into the state of two of the nation's largest hospital systems, Lifepoint and ScionHealth -- both owned by private equity firm Apollo Global Management. Through those two systems, Apollo runs 220 hospitals in 36 states, employing around 75,000 people. The report found that some of Apollo's hospitals were among the worst in their respective states, based on a ranking by The Lown Institute Hospital Index. The index ranks hospitals and health systems based on health equity, value, and outcomes, PESP notes. The hospitals also have dismal readmission rates and government rankings. \n\nThe Center for Medicare and Medicaid Services (CMS) ranks hospitals on a one- to five-star system, with the national average of 3.2 stars overall and about 30 percent of hospitals at two stars or below. Apollo's overall average is 2.8 stars, with nearly 40 percent of hospitals at two stars or below. The other report, a study published in JAMA late last month, found that the rate of serious medical errors and health complications increases among patients in the first few years after private equity firms take over. The study examined Medicare claims from 51 private equity-run hospitals and 259 matched control hospitals. Specifically, the study, led by researchers at Harvard University, found that patients admitted to private equity-owned hospitals had a 25 percent increase in developing hospital-acquired conditions compared with patients in the control hospitals. In private equity hospitals, patients experienced a 27 percent increase in falls, a 38 percent increase in central-line bloodstream infections (despite placing 16 percent fewer central lines than control hospitals), and surgical site infections doubled.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/18/1838259/hospitals-owned-by-private-equity-are-harming-patients-reports-find?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-18T18:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-19T10:00:00+00:00", - "title": "Physicists Design a Way to Detect Quantum Behavior in Large Objects, Like Us", - "link": "https://science.slashdot.org/story/24/01/18/2343236/physicists-design-a-way-to-detect-quantum-behavior-in-large-objects-like-us?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-19T10:00:00+00:00", - "content": "Researchers have developed a way to apply quantum measurement to something no matter its mass or energy. \"Our proposed experiment can test if an object is classical or quantum by seeing if an act of observation can lead to a change in its motion,\" says physicist Debarshi Das from UCL. ScienceAlert reports: Quantum physics describes a Universe where objects aren't defined by a single measurement, but as a range of possibilities. An electron can be spinning up and down, or have a high chance of existing in some areas more than others, for example. In theory, this isn't limited to tiny things. Your own body can in effect be described as having a very high probability of sitting in that chair and a very (very!) low probability of being on the Moon. There is just one fundamental truth to remember -- you touch it, you've bought it. Observing an object's quantum state, whether an electron, or a person sitting in a chair, requires interactions with a measuring system, forcing it to have a single measurement. There are ways to catch objects with their quantum pants still down, but they require keeping the object in a ground state -- super-cold, super-still, completely cut off from its environment. That's tricky to do with individual particles, and it gets a lot more challenging as the size of the scale goes up.\n \nThe new proposal uses an entirely novel approach, one that uses a combination of assertions known as Leggett-Garg Inequalities and No-Signaling in Time conditions. In effect, these two concepts describe a familiar Universe, where a person on a chair is sitting there even if the room is dark and you can't see them. Switching on the light won't suddenly reveal they're actually under the bed. Should an experiment find evidence that somehow conflicts with these assertions, we just might be catching a glimpse of quantum fuzziness on a larger scale.\n \nThe team proposes that objects can be observed as they oscillate on a pendulum, like a ball at the end of a piece of string. Light would then be flashed at the two halves of the experimental setup at different times -- counting as the observation -- and the results of the second flash would indicate if quantum behavior was happening, because the first flash would affect whatever was moving. We're still talking about a complex setup that would require some sophisticated equipment, and conditions akin to a ground state -- but through the use of motion and two measurements (light flashes), some of the restrictions on mass are removed. [...] \"The next step is to try this proposed setup in an actual experiment,\" concludes the reports. \"The mirrors at the Laser Interferometer Gravitational-Wave Observatory (LIGO) in the US have already been proposed as suitable candidates for examination.\"\n \n\"Those mirrors act as a single 10-kilogram (22-pound) object, quite a step up from the typical size of objects analyzed for quantum effects -- anything up to about a quintillionth of a gram.\"\n \nThe findings have been published in the journal Physical Review Letters.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Researchers have developed a way to apply quantum measurement to something no matter its mass or energy. \"Our proposed experiment can test if an object is classical or quantum by seeing if an act of observation can lead to a change in its motion,\" says physicist Debarshi Das from UCL. ScienceAlert reports: Quantum physics describes a Universe where objects aren't defined by a single measurement, but as a range of possibilities. An electron can be spinning up and down, or have a high chance of existing in some areas more than others, for example. In theory, this isn't limited to tiny things. Your own body can in effect be described as having a very high probability of sitting in that chair and a very (very!) low probability of being on the Moon. There is just one fundamental truth to remember -- you touch it, you've bought it. Observing an object's quantum state, whether an electron, or a person sitting in a chair, requires interactions with a measuring system, forcing it to have a single measurement. There are ways to catch objects with their quantum pants still down, but they require keeping the object in a ground state -- super-cold, super-still, completely cut off from its environment. That's tricky to do with individual particles, and it gets a lot more challenging as the size of the scale goes up.\n \nThe new proposal uses an entirely novel approach, one that uses a combination of assertions known as Leggett-Garg Inequalities and No-Signaling in Time conditions. In effect, these two concepts describe a familiar Universe, where a person on a chair is sitting there even if the room is dark and you can't see them. Switching on the light won't suddenly reveal they're actually under the bed. Should an experiment find evidence that somehow conflicts with these assertions, we just might be catching a glimpse of quantum fuzziness on a larger scale.\n \nThe team proposes that objects can be observed as they oscillate on a pendulum, like a ball at the end of a piece of string. Light would then be flashed at the two halves of the experimental setup at different times -- counting as the observation -- and the results of the second flash would indicate if quantum behavior was happening, because the first flash would affect whatever was moving. We're still talking about a complex setup that would require some sophisticated equipment, and conditions akin to a ground state -- but through the use of motion and two measurements (light flashes), some of the restrictions on mass are removed. [...] \"The next step is to try this proposed setup in an actual experiment,\" concludes the reports. \"The mirrors at the Laser Interferometer Gravitational-Wave Observatory (LIGO) in the US have already been proposed as suitable candidates for examination.\"\n \n\"Those mirrors act as a single 10-kilogram (22-pound) object, quite a step up from the typical size of objects analyzed for quantum effects -- anything up to about a quintillionth of a gram.\"\n \nThe findings have been published in the journal Physical Review Letters.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/24/01/18/2343236/physicists-design-a-way-to-detect-quantum-behavior-in-large-objects-like-us?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T10:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-19T11:03:00+00:00", - "title": "David Mills, an Internet Pioneer, Has Died", - "link": "https://news.slashdot.org/story/24/01/19/113203/david-mills-an-internet-pioneer-has-died?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-19T11:03:00+00:00", - "content": "David Mills, the man who invented NTP and wrote the implementation, has passed away. He also created the Fuzzballs and EGP, and helped make global-scale internetworking possible. Vint Cerf, in a mail group: His daughter, Leigh, just sent me the news that Dave passed away peacefully on January 17, 2024. He was such an iconic element of the early Internet. \n\nNetwork Time Protocol, the Fuzzball routers of the early NSFNET, INARG\ntaskforce lead, COMSAT Labs and University of Delaware and so much more. \n\nR.I.P.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "David Mills, the man who invented NTP and wrote the implementation, has passed away. He also created the Fuzzballs and EGP, and helped make global-scale internetworking possible. Vint Cerf, in a mail group: His daughter, Leigh, just sent me the news that Dave passed away peacefully on January 17, 2024. He was such an iconic element of the early Internet. \n\nNetwork Time Protocol, the Fuzzball routers of the early NSFNET, INARG\ntaskforce lead, COMSAT Labs and University of Delaware and so much more. \n\nR.I.P.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/19/113203/david-mills-an-internet-pioneer-has-died?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T11:03:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2024-01-19T13:00:00+00:00", - "title": "Sam Altman Says AI Depends On Energy Breakthrough", - "link": "https://hardware.slashdot.org/story/24/01/18/2352248/sam-altman-says-ai-depends-on-energy-breakthrough?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2024-01-19T13:00:00+00:00", - "content": "An anonymous reader quotes a report from Reuters: OpenAI's CEO Sam Altman on Tuesday said an energy breakthrough is necessary for future artificial intelligence, which will consume vastly more power than people have expected. Speaking at a Bloomberg event on the sidelines of the World Economic Forum's annual meeting in Davos, Altman said the silver lining is that more climate-friendly sources of energy, particularly nuclear fusion or cheaper solar power and storage, are the way forward for AI. \"There's no way to get there without a breakthrough,\" he said. \"It motivates us to go invest more in fusion.\"\n \nIn 2021, Altman personally provided $375 million to private U.S. nuclear fusion company Helion Energy, which since has signed a deal to provide energy to Microsoft in future years. Microsoft is OpenAI's biggest financial backer and provides it computing resources for AI. Altman said he wished the world would embrace nuclear fission as an energy source as well. Further reading: Microsoft Needs So Much Power to Train AI That It's Considering Small Nuclear Reactors

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Reuters: OpenAI's CEO Sam Altman on Tuesday said an energy breakthrough is necessary for future artificial intelligence, which will consume vastly more power than people have expected. Speaking at a Bloomberg event on the sidelines of the World Economic Forum's annual meeting in Davos, Altman said the silver lining is that more climate-friendly sources of energy, particularly nuclear fusion or cheaper solar power and storage, are the way forward for AI. \"There's no way to get there without a breakthrough,\" he said. \"It motivates us to go invest more in fusion.\"\n \nIn 2021, Altman personally provided $375 million to private U.S. nuclear fusion company Helion Energy, which since has signed a deal to provide energy to Microsoft in future years. Microsoft is OpenAI's biggest financial backer and provides it computing resources for AI. Altman said he wished the world would embrace nuclear fission as an energy source as well. Further reading: Microsoft Needs So Much Power to Train AI That It's Considering Small Nuclear Reactors\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://hardware.slashdot.org/story/24/01/18/2352248/sam-altman-says-ai-depends-on-energy-breakthrough?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T13:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-19T12:48:00+00:00", - "title": "Boeing Cargo Plane Makes Emergency Landing in Miami After 'Engine Malfunction'", - "link": "https://news.slashdot.org/story/24/01/19/1247247/boeing-cargo-plane-makes-emergency-landing-in-miami-after-engine-malfunction?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-19T12:48:00+00:00", - "content": "A Boeing cargo plane headed for Puerto Rico was diverted Thursday night after taking off from Miami International Airport because of engine trouble, according to an official and flight data. From a report: Atlas Air Flight 5Y095 landed safely after experiencing an \"engine malfunction\" shortly after departure, the airline said early Friday. It was unclear what kind of cargo the plane was carrying. Data collected by FlightAware, a flight tracking company, showed the aircraft was a Boeing 747-8 that left its gate at Miami International at 10:11 p.m. on Thursday and returned to the airport about 50 minutes later. The website also showed that the plane traveled 60 miles in total. Reuters adds: The Atlas Air Flight 5Y095 was on its way to San Juan, Puerto Rico from Miami International Airport on late Thursday evening. The pilot made a Mayday call around 0333 GMT to report an engine fire and requested to return back to the airport, according to multi-channel recordings of conversations between the air traffic control and the plane available on liveatc.net. \"We have a engine fire,\" one of the plane crew said, disclosing that there were five people on board.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "A Boeing cargo plane headed for Puerto Rico was diverted Thursday night after taking off from Miami International Airport because of engine trouble, according to an official and flight data. From a report: Atlas Air Flight 5Y095 landed safely after experiencing an \"engine malfunction\" shortly after departure, the airline said early Friday. It was unclear what kind of cargo the plane was carrying. Data collected by FlightAware, a flight tracking company, showed the aircraft was a Boeing 747-8 that left its gate at Miami International at 10:11 p.m. on Thursday and returned to the airport about 50 minutes later. The website also showed that the plane traveled 60 miles in total. Reuters adds: The Atlas Air Flight 5Y095 was on its way to San Juan, Puerto Rico from Miami International Airport on late Thursday evening. The pilot made a Mayday call around 0333 GMT to report an engine fire and requested to return back to the airport, according to multi-channel recordings of conversations between the air traffic control and the plane available on liveatc.net. \"We have a engine fire,\" one of the plane crew said, disclosing that there were five people on board.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/19/1247247/boeing-cargo-plane-makes-emergency-landing-in-miami-after-engine-malfunction?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T12:48:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-19T14:40:00+00:00", - "title": "Apple Offers To Open Mobile Payments To Third Parties Amid EU Antitrust Case", - "link": "https://apple.slashdot.org/story/24/01/19/1241221/apple-offers-to-open-mobile-payments-to-third-parties-amid-eu-antitrust-case?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-19T14:40:00+00:00", - "content": "Apple committed to address antitrust concerns posed by the European Commission surrounding its popular Apple Pay app, including allowing access to third-party mobile wallet and payment services. WSJ: The U.S. tech giant has agreed to allow companies' apps to make contactless payments on devices that use the iOS system, such as iPhones, for free without the need to use Apple Pay or Apple Wallet, the EU's executive arm said Friday.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Apple committed to address antitrust concerns posed by the European Commission surrounding its popular Apple Pay app, including allowing access to third-party mobile wallet and payment services. WSJ: The U.S. tech giant has agreed to allow companies' apps to make contactless payments on devices that use the iOS system, such as iPhones, for free without the need to use Apple Pay or Apple Wallet, the EU's executive arm said Friday.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://apple.slashdot.org/story/24/01/19/1241221/apple-offers-to-open-mobile-payments-to-third-parties-amid-eu-antitrust-case?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T14:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-19T14:00:00+00:00", - "title": "'Where Have All the Websites Gone?'", - "link": "https://tech.slashdot.org/story/24/01/19/0835245/where-have-all-the-websites-gone?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-19T14:00:00+00:00", - "content": "An anonymous reader shares an essay: No one clicks a webpage hoping to learn which cat can haz cheeseburger. Weirdos, maybe. Sickos. No, we get our content from a For You Page now -- algorithmically selected videos and images made by our favorite creators, produced explicitly for our preferred platform. Which platform doesn't matter much. So long as it's one of the big five. Creators churn out content for all of them. It's a technical marvel, that internet. Something so mindblowingly impressive that if you showed it to someone even thirty years ago, their face would melt the fuck off. So why does it feel like something's missing? Why are we all so collectively unhappy with the state of the web? \n\nA tweet went viral this Thanksgiving when a Twitter user posed a question to their followers. (The tweet said: \"It feels like there are no websites anymore. There used to be so many websites you could go on. Where did all the websites go?\") A peek at the comments, and I could only assume the tweet struck a nerve. Everyone had their own answer. Some comments blamed the app-ification of the web. \"Everything is an app now!,\" one user replied. Others point to the death of Adobe Flash and how so many sites and games died along with it. Everyone agrees that websites have indeed vanished, and we all miss the days we were free to visit them.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader shares an essay: No one clicks a webpage hoping to learn which cat can haz cheeseburger. Weirdos, maybe. Sickos. No, we get our content from a For You Page now -- algorithmically selected videos and images made by our favorite creators, produced explicitly for our preferred platform. Which platform doesn't matter much. So long as it's one of the big five. Creators churn out content for all of them. It's a technical marvel, that internet. Something so mindblowingly impressive that if you showed it to someone even thirty years ago, their face would melt the fuck off. So why does it feel like something's missing? Why are we all so collectively unhappy with the state of the web? \n\nA tweet went viral this Thanksgiving when a Twitter user posed a question to their followers. (The tweet said: \"It feels like there are no websites anymore. There used to be so many websites you could go on. Where did all the websites go?\") A peek at the comments, and I could only assume the tweet struck a nerve. Everyone had their own answer. Some comments blamed the app-ification of the web. \"Everything is an app now!,\" one user replied. Others point to the death of Adobe Flash and how so many sites and games died along with it. Everyone agrees that websites have indeed vanished, and we all miss the days we were free to visit them.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/24/01/19/0835245/where-have-all-the-websites-gone?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T14:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2024-01-19T15:20:00+00:00", - "title": "Airbus Is Pulling Ahead as Boeing's Troubles Mount", - "link": "https://news.slashdot.org/story/24/01/19/0857255/airbus-is-pulling-ahead-as-boeings-troubles-mount?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2024-01-19T15:20:00+00:00", - "content": "Airbus cemented its position last week as the world's biggest plane maker for the fifth straight year, announcing that it had delivered more aircraft and secured more orders than Boeing in 2023. At the same time, Boeing was trying to put out a huge public-relations and safety crisis caused by a harrowing near disaster involving its 737 Max line of airliners. In the long-running duel between the two aviation rivals, Airbus has pulled far ahead. The New York Times: \"What used to be a duopoly has become two-thirds Airbus, one-third Boeing,\" said Richard Aboulafia, the managing director of AeroDynamic Advisory in Washington, D.C. \"A lot of people, whether investors, financiers or customers, are looking at Airbus and seeing a company run by competent people,\" he said. \"The contrast with Boeing is fairly profound.\" \n\nThe incident involving the 737 Max 9, in which a hole blew open in the fuselage of an Alaska Airlines flight in midair, was the latest in a string of safety lapses in Boeing's workhorse aircraft -- including two fatal crashes in 2018 and 2019 -- that are indirectly helping propel the fortunes of the European aerospace giant. As the Federal Aviation Administration widens its scrutiny of Max 9 production, Airbus's edge is likely to sharpen. Airlines are embarking on massive expansions of their fleets to meet a postpandemic surge in the demand for global air travel, and are considering which company to turn to.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Airbus cemented its position last week as the world's biggest plane maker for the fifth straight year, announcing that it had delivered more aircraft and secured more orders than Boeing in 2023. At the same time, Boeing was trying to put out a huge public-relations and safety crisis caused by a harrowing near disaster involving its 737 Max line of airliners. In the long-running duel between the two aviation rivals, Airbus has pulled far ahead. The New York Times: \"What used to be a duopoly has become two-thirds Airbus, one-third Boeing,\" said Richard Aboulafia, the managing director of AeroDynamic Advisory in Washington, D.C. \"A lot of people, whether investors, financiers or customers, are looking at Airbus and seeing a company run by competent people,\" he said. \"The contrast with Boeing is fairly profound.\" \n\nThe incident involving the 737 Max 9, in which a hole blew open in the fuselage of an Alaska Airlines flight in midair, was the latest in a string of safety lapses in Boeing's workhorse aircraft -- including two fatal crashes in 2018 and 2019 -- that are indirectly helping propel the fortunes of the European aerospace giant. As the Federal Aviation Administration widens its scrutiny of Max 9 production, Airbus's edge is likely to sharpen. Airlines are embarking on massive expansions of their fleets to meet a postpandemic surge in the demand for global air travel, and are considering which company to turn to.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/24/01/19/0857255/airbus-is-pulling-ahead-as-boeings-troubles-mount?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2024-01-19T15:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-27T10:00:00+00:00", - "title": "Around 20 Minutes of Exercise a Day May Balance Out the Harms of Sitting, Study Finds", - "link": "https://science.slashdot.org/story/23/10/27/0024211/around-20-minutes-of-exercise-a-day-may-balance-out-the-harms-of-sitting-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-27T10:00:00+00:00", - "content": "A new study published in the British Journal of Sports Medicine finds that about 22 minutes a day of moderate to vigorous activity may combat the negative effects of prolonged sitting. Furthermore, they researchers found that as a person's activity level increases, the risk of dying prematurely from any cause goes down. NBC News reports: In the study, researchers looked at information from nearly 12,000 people ages 50 and older in four datasets from Norway, Sweden and the United States. In those datasets, the participants wore movement detection devices on their hips for 10 hours a day for at least four days. All of the individuals included in the new study were tracked for at least two years. In the new analysis, the researchers accounted for factors, including medical conditions, that could've affected risk of early death. About half of the participants spent 10 1/2 hours or more sedentary each day.\n \nWhen the researchers linked the participants' information with death registries in the different countries, they found that over an average of five years, 805 people, or 17%, had died. Of those who died, 357, or 6%, had spent less than 10 1/2 hours a day seated, while 448 averaged 10 1/2 hours or more sedentary. Sitting for more than 12 hours a day, the researchers found, was associated with a 38% increased risk of death as compared to eight hours, but only among those who managed to get less than 22 minutes of moderate to vigorous activity a day.\n \nThe risk of death went down with increasing amounts of physical activity. An extra 10 minutes a day translated into a 15% lower risk of death among those spending fewer than 10 1/2 hours seated and a 35% lower risk among those who spent more than 10 1/2 hours sedentary each day. Lower intensity activity only made a difference among participants who spent 12 or more hours sitting every day. The study's lead author, Edvard Sagelv, a researcher at The Arctic University of Norway, broke the findings down into manageable terms. \"Think of it: only 20 minutes of this a day is enough, meaning, a small stroll of 10 minutes twice a day -- like jumping off the bus one stop before your actual destination to work and then when taking the bus back home, jumping off one stop before.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "A new study published in the British Journal of Sports Medicine finds that about 22 minutes a day of moderate to vigorous activity may combat the negative effects of prolonged sitting. Furthermore, they researchers found that as a person's activity level increases, the risk of dying prematurely from any cause goes down. NBC News reports: In the study, researchers looked at information from nearly 12,000 people ages 50 and older in four datasets from Norway, Sweden and the United States. In those datasets, the participants wore movement detection devices on their hips for 10 hours a day for at least four days. All of the individuals included in the new study were tracked for at least two years. In the new analysis, the researchers accounted for factors, including medical conditions, that could've affected risk of early death. About half of the participants spent 10 1/2 hours or more sedentary each day.\n \nWhen the researchers linked the participants' information with death registries in the different countries, they found that over an average of five years, 805 people, or 17%, had died. Of those who died, 357, or 6%, had spent less than 10 1/2 hours a day seated, while 448 averaged 10 1/2 hours or more sedentary. Sitting for more than 12 hours a day, the researchers found, was associated with a 38% increased risk of death as compared to eight hours, but only among those who managed to get less than 22 minutes of moderate to vigorous activity a day.\n \nThe risk of death went down with increasing amounts of physical activity. An extra 10 minutes a day translated into a 15% lower risk of death among those spending fewer than 10 1/2 hours seated and a 35% lower risk among those who spent more than 10 1/2 hours sedentary each day. Lower intensity activity only made a difference among participants who spent 12 or more hours sitting every day. The study's lead author, Edvard Sagelv, a researcher at The Arctic University of Norway, broke the findings down into manageable terms. \"Think of it: only 20 minutes of this a day is enough, meaning, a small stroll of 10 minutes twice a day -- like jumping off the bus one stop before your actual destination to work and then when taking the bus back home, jumping off one stop before.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/10/27/0024211/around-20-minutes-of-exercise-a-day-may-balance-out-the-harms-of-sitting-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T10:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-27T07:00:00+00:00", - "title": "Pigeons Problem-Solve Similarly To Artificial Intelligence, Research Shows", - "link": "https://science.slashdot.org/story/23/10/27/003230/pigeons-problem-solve-similarly-to-artificial-intelligence-research-shows?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-27T07:00:00+00:00", - "content": "According to a new study published in iScience, the way pigeons problem-solve matches artificial intelligence. The Guardian reports: In the study, 24 pigeons were given a variety of visual tasks, some of which they learned to categorize in a matter of days, and others in a matter of weeks. The researchers found evidence that the mechanism that pigeons used to make correct choices is similar to the method that AI models use to make the right predictions. \"Pigeon behavior suggests that nature has created an algorithm that is highly effective in learning very challenging tasks,\" said Edward Wasserman, study co-author and professor of experimental psychology at the University of Iowa. \"Not necessarily with the greatest speed, but with great consistency.\"\n \nOn a screen, pigeons were shown different stimuli, like lines of different width, placement and orientation, as well as sectioned and concentric rings. Each bird had to peck a button on the right or left to decide which category they belonged to. If they got it correct, they got food, in the form of a pellet; if they got it wrong, they got nothing. \"Pigeons don't need a rule,\" said Brandon Turner, lead author of the study and professor of psychology at Ohio State University. Instead they learn through trial and error. For example, when they were given a visual, say \"category A\", anything that looked close to that they also classified as \"category A\", tapping into their ability to identify similarities.\n \nOver the course of the experiments, pigeons improved their ability to make right choices from 55% to 95% of the time when it came to some of the simpler tasks. Presented with a more complex challenge, their accuracy went up from 55% to 68%. In an AI model, the main goal is to recognize patterns and make decisions. Pigeons, as research shows, can do the same. Learning from consequences, when not given a food pellet, pigeons have a remarkable ability to correct their errors. Similarity function is also at play for pigeons, by using their ability to find resemblance between two objects. \"With just those two mechanisms alone, you can define a neural network or an artificial intelligent machine to basically solve these categorization problems,\" said Turner. \"It stands to reason that the mechanisms that are present in the AI are also present in the pigeon.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "According to a new study published in iScience, the way pigeons problem-solve matches artificial intelligence. The Guardian reports: In the study, 24 pigeons were given a variety of visual tasks, some of which they learned to categorize in a matter of days, and others in a matter of weeks. The researchers found evidence that the mechanism that pigeons used to make correct choices is similar to the method that AI models use to make the right predictions. \"Pigeon behavior suggests that nature has created an algorithm that is highly effective in learning very challenging tasks,\" said Edward Wasserman, study co-author and professor of experimental psychology at the University of Iowa. \"Not necessarily with the greatest speed, but with great consistency.\"\n \nOn a screen, pigeons were shown different stimuli, like lines of different width, placement and orientation, as well as sectioned and concentric rings. Each bird had to peck a button on the right or left to decide which category they belonged to. If they got it correct, they got food, in the form of a pellet; if they got it wrong, they got nothing. \"Pigeons don't need a rule,\" said Brandon Turner, lead author of the study and professor of psychology at Ohio State University. Instead they learn through trial and error. For example, when they were given a visual, say \"category A\", anything that looked close to that they also classified as \"category A\", tapping into their ability to identify similarities.\n \nOver the course of the experiments, pigeons improved their ability to make right choices from 55% to 95% of the time when it came to some of the simpler tasks. Presented with a more complex challenge, their accuracy went up from 55% to 68%. In an AI model, the main goal is to recognize patterns and make decisions. Pigeons, as research shows, can do the same. Learning from consequences, when not given a food pellet, pigeons have a remarkable ability to correct their errors. Similarity function is also at play for pigeons, by using their ability to find resemblance between two objects. \"With just those two mechanisms alone, you can define a neural network or an artificial intelligent machine to basically solve these categorization problems,\" said Turner. \"It stands to reason that the mechanisms that are present in the AI are also present in the pigeon.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://science.slashdot.org/story/23/10/27/003230/pigeons-problem-solve-similarly-to-artificial-intelligence-research-shows?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T07:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-27T03:30:00+00:00", - "title": "Sam Bankman-Fried Testifies, Says He 'Skimmed Over' FTX Terms of Service", - "link": "https://yro.slashdot.org/story/23/10/26/2353238/sam-bankman-fried-testifies-says-he-skimmed-over-ftx-terms-of-service?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-27T03:30:00+00:00", - "content": "An anonymous reader quotes a report from Ars Technica: Sam Bankman-Fried took the stand in his criminal trial today in an attempt to avoid decades in prison for alleged fraud at cryptocurrency exchange FTX and its affiliate Alameda Research. [...] Some of the alleged fraud relates to how Alameda borrowed money from FTX. In testimony today, \"Bankman-Fried said he believed that under FTX's terms of service, sister firm Alameda was allowed in many circumstances to borrow funds from the exchange,\" the WSJ wrote. Bankman-Fried reportedly said the terms of service were written by FTX lawyers and that he only \"skimmed\" certain parts. \"I read parts in depth. Parts I skimmed over,\" Bankman-Fried reportedly said after [U.S. District Judge Lewis Kaplan] asked if he read the entire terms of service document.\n \nSassoon asked Bankman-Fried if he had \"any conversations with lawyers about Alameda spending customer money that was deposited into FTX bank accounts,\" according to Bloomberg's live coverage. \"I don't recall any conversations that were contemporaneous and phrased that way,\" Bankman-Fried answered. \"I had so many conversations with lawyers later when we were trying to reconcile things in November 2022,\" Bankman-Fried also said. \"There were conversations around Alameda being used as a payment processor, a payment agent for FTX. I frankly don't recall conversations with lawyers or otherwise about the usage of the funds or the North Dimension accounts.\" North Dimension was an Alameda subsidiary. The Securities and Exchange Commission has alleged that \"Bankman-Fried directed FTX to have customers send funds to North Dimension in an effort to hide the fact that the funds were being sent to an account controlled by Alameda.\" [...]\n \nIn an overview of the alleged crimes, the indictment said Bankman-Fried \"misappropriated and embezzled FTX customer deposits and used billions of dollars in stolen funds... to enrich himself; to support the operations of FTX; to fund speculative venture investments; to help fund over a hundred million dollars in campaign contributions to Democrats and Republicans to seek to influence cryptocurrency regulation; and to pay for Alameda's operating costs.\" He was also accused of making \"false and fraudulent statements and representations to FTX's investors and Alameda's lenders.\" SBF's legal team decided that he would take the stand in his own defense -- a risky decision by legal observers as he will have to face cross-examination from federal prosecutors. In a rather unusual move, Judge Kaplan sent the jury home for a day to conduct a hearing on whether certain parts of Bankman-Fried's testimony are admissible.\n \nDuring his testimony, Bankman-Fried discussed various aspects of the case, including FTX's terms of service, loans from Alameda to him and other executives, a hack into FTX, and his use of the encrypted messaging service Signal. Live paywall-free updates of the trial are available here.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Sam Bankman-Fried took the stand in his criminal trial today in an attempt to avoid decades in prison for alleged fraud at cryptocurrency exchange FTX and its affiliate Alameda Research. [...] Some of the alleged fraud relates to how Alameda borrowed money from FTX. In testimony today, \"Bankman-Fried said he believed that under FTX's terms of service, sister firm Alameda was allowed in many circumstances to borrow funds from the exchange,\" the WSJ wrote. Bankman-Fried reportedly said the terms of service were written by FTX lawyers and that he only \"skimmed\" certain parts. \"I read parts in depth. Parts I skimmed over,\" Bankman-Fried reportedly said after [U.S. District Judge Lewis Kaplan] asked if he read the entire terms of service document.\n \nSassoon asked Bankman-Fried if he had \"any conversations with lawyers about Alameda spending customer money that was deposited into FTX bank accounts,\" according to Bloomberg's live coverage. \"I don't recall any conversations that were contemporaneous and phrased that way,\" Bankman-Fried answered. \"I had so many conversations with lawyers later when we were trying to reconcile things in November 2022,\" Bankman-Fried also said. \"There were conversations around Alameda being used as a payment processor, a payment agent for FTX. I frankly don't recall conversations with lawyers or otherwise about the usage of the funds or the North Dimension accounts.\" North Dimension was an Alameda subsidiary. The Securities and Exchange Commission has alleged that \"Bankman-Fried directed FTX to have customers send funds to North Dimension in an effort to hide the fact that the funds were being sent to an account controlled by Alameda.\" [...]\n \nIn an overview of the alleged crimes, the indictment said Bankman-Fried \"misappropriated and embezzled FTX customer deposits and used billions of dollars in stolen funds... to enrich himself; to support the operations of FTX; to fund speculative venture investments; to help fund over a hundred million dollars in campaign contributions to Democrats and Republicans to seek to influence cryptocurrency regulation; and to pay for Alameda's operating costs.\" He was also accused of making \"false and fraudulent statements and representations to FTX's investors and Alameda's lenders.\" SBF's legal team decided that he would take the stand in his own defense -- a risky decision by legal observers as he will have to face cross-examination from federal prosecutors. In a rather unusual move, Judge Kaplan sent the jury home for a day to conduct a hearing on whether certain parts of Bankman-Fried's testimony are admissible.\n \nDuring his testimony, Bankman-Fried discussed various aspects of the case, including FTX's terms of service, loans from Alameda to him and other executives, a hack into FTX, and his use of the encrypted messaging service Signal. Live paywall-free updates of the trial are available here.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/10/26/2353238/sam-bankman-fried-testifies-says-he-skimmed-over-ftx-terms-of-service?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T03:30:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-27T02:02:00+00:00", - "title": "Barcode Leads To Arrest of Texas Litterbug Behind 200 Pounds of Dumped Trash", - "link": "https://yro.slashdot.org/story/23/10/26/2329213/barcode-leads-to-arrest-of-texas-litterbug-behind-200-pounds-of-dumped-trash?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-27T02:02:00+00:00", - "content": "\"Illegal dumping is way too common, and often leads to no consequences,\" writes Slashdot reader Tony Isaac. \"In some urban neighborhoods, people dump entire truckloads of waste in ditches along the streets. Maybe authorities have found a way to make a dent in this problem.\" Houston Chronicle reports: The Texas Game Wardens were recently able to track down and arrest a litterbug allegedly behind an illegal dumping of over 200 pounds of construction materials using a barcode left at the scene of the crime, according to a news release from the Texas Parks and Wildlife Department (TPWD). The pile of trash, which included sheetrock, housing trim, two-by-fours and various plastic items, was reportedly dumped along a bridge and creek on private land instead of being properly disposed of.\n \nHowever, hidden among the garbage was also a box containing a barcode that would help identify the person behind the heap. A Smith County Game Warden used the barcode to track down the materials to a local store, and ultimately the owner of the credit card that was used for the purchase, TPWD said. The game warden interviewed the home owner who had reportedly just finished remodeling his home. \"The homeowner explained that he paid someone familiar to the family who offered to haul off their used material and trash for a minimum fee,\" Texas Games Wardens said in a statement. \"Unfortunately, the suspect kept the money and dumped the trash onto private property.\"\n \nWorking with the game warden, Smith County Sheriff's Office environmental deputies eventually arrested the suspect on charges of felony commercial dumping. At the time of the arrest, the suspect's truck was reportedly found loaded with even more building materials and trash, TPWD said. The state agency did not identify the suspect or disclose when or where they were arrested.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "\"Illegal dumping is way too common, and often leads to no consequences,\" writes Slashdot reader Tony Isaac. \"In some urban neighborhoods, people dump entire truckloads of waste in ditches along the streets. Maybe authorities have found a way to make a dent in this problem.\" Houston Chronicle reports: The Texas Game Wardens were recently able to track down and arrest a litterbug allegedly behind an illegal dumping of over 200 pounds of construction materials using a barcode left at the scene of the crime, according to a news release from the Texas Parks and Wildlife Department (TPWD). The pile of trash, which included sheetrock, housing trim, two-by-fours and various plastic items, was reportedly dumped along a bridge and creek on private land instead of being properly disposed of.\n \nHowever, hidden among the garbage was also a box containing a barcode that would help identify the person behind the heap. A Smith County Game Warden used the barcode to track down the materials to a local store, and ultimately the owner of the credit card that was used for the purchase, TPWD said. The game warden interviewed the home owner who had reportedly just finished remodeling his home. \"The homeowner explained that he paid someone familiar to the family who offered to haul off their used material and trash for a minimum fee,\" Texas Games Wardens said in a statement. \"Unfortunately, the suspect kept the money and dumped the trash onto private property.\"\n \nWorking with the game warden, Smith County Sheriff's Office environmental deputies eventually arrested the suspect on charges of felony commercial dumping. At the time of the arrest, the suspect's truck was reportedly found loaded with even more building materials and trash, TPWD said. The state agency did not identify the suspect or disclose when or where they were arrested.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/10/26/2329213/barcode-leads-to-arrest-of-texas-litterbug-behind-200-pounds-of-dumped-trash?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T02:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-27T01:25:00+00:00", - "title": "iPhones Have Been Exposing Your Unique MAC Despite Apple's Promises Otherwise", - "link": "https://yro.slashdot.org/story/23/10/26/2337247/iphones-have-been-exposing-your-unique-mac-despite-apples-promises-otherwise?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-27T01:25:00+00:00", - "content": "Dan Goodin reports via Ars Technica: Three years ago, Apple introduced a privacy-enhancing feature that hid the Wi-Fi address of iPhones and iPads when they joined a network. On Wednesday, the world learned that the feature has never worked as advertised. Despite promises that this never-changing address would be hidden and replaced with a private one that was unique to each SSID, Apple devices have continued to display the real one, which in turn got broadcast to every other connected device on the network. [...]\n \nIn 2020, Apple released iOS 14 with a feature that, by default, hid Wi-Fi MACs when devices connected to a network. Instead, the device displayed what Apple called a \"private Wi-Fi address\" that was different for each SSID. Over time, Apple has enhanced the feature, for instance, by allowing users to assign a new private Wi-Fi address for a given SSID. On Wednesday, Apple released iOS 17.1. Among the various fixes was a patch for a vulnerability, tracked as CVE-2023-42846, which prevented the privacy feature from working. Tommy Mysk, one of the two security researchers Apple credited with discovering and reporting the vulnerability (Talal Haj Bakry was the other), told Ars that he tested all recent iOS releases and found the flaw dates back to version 14, released in September 2020. \"From the get-go, this feature was useless because of this bug,\" he said. \"We couldn't stop the devices from sending these discovery requests, even with a VPN. Even in the Lockdown Mode.\"\n \nWhen an iPhone or any other device joins a network, it triggers a multicast message that is sent to all other devices on the network. By necessity, this message must include a MAC. Beginning with iOS 14, this value was, by default, different for each SSID. To the casual observer, the feature appeared to work as advertised. The \"source\" listed in the request was the private Wi-Fi address. Digging in a little further, however, it became clear that the real, permanent MAC was still broadcast to all other connected devices, just in a different field of the request. Mysk published a short video showing a Mac using the Wireshark packet sniffer to monitor traffic on the local network the Mac is connected to. When an iPhone running iOS prior to version 17.1 joins, it shares its real Wi-Fi MAC on port 5353/UDP.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Dan Goodin reports via Ars Technica: Three years ago, Apple introduced a privacy-enhancing feature that hid the Wi-Fi address of iPhones and iPads when they joined a network. On Wednesday, the world learned that the feature has never worked as advertised. Despite promises that this never-changing address would be hidden and replaced with a private one that was unique to each SSID, Apple devices have continued to display the real one, which in turn got broadcast to every other connected device on the network. [...]\n \nIn 2020, Apple released iOS 14 with a feature that, by default, hid Wi-Fi MACs when devices connected to a network. Instead, the device displayed what Apple called a \"private Wi-Fi address\" that was different for each SSID. Over time, Apple has enhanced the feature, for instance, by allowing users to assign a new private Wi-Fi address for a given SSID. On Wednesday, Apple released iOS 17.1. Among the various fixes was a patch for a vulnerability, tracked as CVE-2023-42846, which prevented the privacy feature from working. Tommy Mysk, one of the two security researchers Apple credited with discovering and reporting the vulnerability (Talal Haj Bakry was the other), told Ars that he tested all recent iOS releases and found the flaw dates back to version 14, released in September 2020. \"From the get-go, this feature was useless because of this bug,\" he said. \"We couldn't stop the devices from sending these discovery requests, even with a VPN. Even in the Lockdown Mode.\"\n \nWhen an iPhone or any other device joins a network, it triggers a multicast message that is sent to all other devices on the network. By necessity, this message must include a MAC. Beginning with iOS 14, this value was, by default, different for each SSID. To the casual observer, the feature appeared to work as advertised. The \"source\" listed in the request was the private Wi-Fi address. Digging in a little further, however, it became clear that the real, permanent MAC was still broadcast to all other connected devices, just in a different field of the request. Mysk published a short video showing a Mac using the Wireshark packet sniffer to monitor traffic on the local network the Mac is connected to. When an iPhone running iOS prior to version 17.1 joins, it shares its real Wi-Fi MAC on port 5353/UDP.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/10/26/2337247/iphones-have-been-exposing-your-unique-mac-despite-apples-promises-otherwise?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T01:25:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-27T00:45:00+00:00", - "title": "Meta's Threads App Has 'Just Under' 100 Million Monthly Active Users, Says Zuckerberg", - "link": "https://tech.slashdot.org/story/23/10/26/2322238/metas-threads-app-has-just-under-100-million-monthly-active-users-says-zuckerberg?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-27T00:45:00+00:00", - "content": "\"Threads is officially a success,\" writes long-time Slashdot reader destinyland. 9to5Mac reports: During Meta's quarterly earnings call today, CEO Mark Zuckerberg offered an update on the Threads, saying that the service has \"just under\" 100 million monthly active users. When Threads launched in July, the app quickly rocketed to having 100 million users within just a few days. While that growth is believed to have slowed down, as expected when something takes off so quickly, Zuckerberg says the service is currently at almost 100 million active users. Note the difference in terms, too. Having 100 million \"users\" is one thing, while having 100 million monthly active users is quite different -- and more impressive.\n \nThe number is also impressive when you consider that Threads isn't available to the millions of people who live in the European Union. As noted by The Verge, Zuckerberg also reiterated today that Meta's goal is to turn Threads into a \"billion-person public conversations app\" that is \"a bit more positive\" than some of the competition. According to Zuckerberg, Threads is on the way to achieving that goal.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "\"Threads is officially a success,\" writes long-time Slashdot reader destinyland. 9to5Mac reports: During Meta's quarterly earnings call today, CEO Mark Zuckerberg offered an update on the Threads, saying that the service has \"just under\" 100 million monthly active users. When Threads launched in July, the app quickly rocketed to having 100 million users within just a few days. While that growth is believed to have slowed down, as expected when something takes off so quickly, Zuckerberg says the service is currently at almost 100 million active users. Note the difference in terms, too. Having 100 million \"users\" is one thing, while having 100 million monthly active users is quite different -- and more impressive.\n \nThe number is also impressive when you consider that Threads isn't available to the millions of people who live in the European Union. As noted by The Verge, Zuckerberg also reiterated today that Meta's goal is to turn Threads into a \"billion-person public conversations app\" that is \"a bit more positive\" than some of the competition. According to Zuckerberg, Threads is on the way to achieving that goal.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/10/26/2322238/metas-threads-app-has-just-under-100-million-monthly-active-users-says-zuckerberg?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T00:45:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-27T00:02:00+00:00", - "title": "T-Mobile Walks Back Forced Plan Migration, Won't Make People Switch Plans After All", - "link": "https://mobile.slashdot.org/story/23/10/26/2115214/t-mobile-walks-back-forced-plan-migration-wont-make-people-switch-plans-after-all?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-27T00:02:00+00:00", - "content": "An anonymous reader quotes a report from CNET: T-Mobile caused a bit of a stir earlier this month when a leak revealed it planned to move people from older, cheaper plans to pricier ones starting with their November bill cycle. On Wednesday, the carrier officially walked back the changes with CEO Mike Sievert confirming that they would not happen. \"We tend to do tests and pilots of things quite a bit to try to figure out what's the right answer,\" Sievert said on a company earnings call, in response to a question about industry pricing and how it could raise its average revenues per user, a key industry metric. \"In this case, we had a test sell to try to understand customer interest in, and acceptance of, migrating off old legacy rate plans to something that's higher value, for them and for us.\"\n \nSievert noted that the company was doing training around this test and said it wasn't planned to be a \"broad, national thing.\" In its statement confirming the leak, the company told CNET earlier this month that the notices it was sending out was going to \"a small number\" of its users, but the carrier never clarified what a \"small number\" actually meant and didn't respond to that question when asked. At the time, the carrier said that the switch would generally see customers pay \"an increase of approximately $10 per line\" per month.\n \nWith the \"plenty of feedback\" the company received following the leak, Sievert said that T-Mobile has learned that this \"particular test sell isn't something that our customers are going to love.\" He mentioned that no migrations of plans have actually rolled out. As for what will happen going forward, the carrier will continue to do tests and pilots for different changes, Mike Katz, T-Mobile's president of marketing, strategy and products, said on the call.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from CNET: T-Mobile caused a bit of a stir earlier this month when a leak revealed it planned to move people from older, cheaper plans to pricier ones starting with their November bill cycle. On Wednesday, the carrier officially walked back the changes with CEO Mike Sievert confirming that they would not happen. \"We tend to do tests and pilots of things quite a bit to try to figure out what's the right answer,\" Sievert said on a company earnings call, in response to a question about industry pricing and how it could raise its average revenues per user, a key industry metric. \"In this case, we had a test sell to try to understand customer interest in, and acceptance of, migrating off old legacy rate plans to something that's higher value, for them and for us.\"\n \nSievert noted that the company was doing training around this test and said it wasn't planned to be a \"broad, national thing.\" In its statement confirming the leak, the company told CNET earlier this month that the notices it was sending out was going to \"a small number\" of its users, but the carrier never clarified what a \"small number\" actually meant and didn't respond to that question when asked. At the time, the carrier said that the switch would generally see customers pay \"an increase of approximately $10 per line\" per month.\n \nWith the \"plenty of feedback\" the company received following the leak, Sievert said that T-Mobile has learned that this \"particular test sell isn't something that our customers are going to love.\" He mentioned that no migrations of plans have actually rolled out. As for what will happen going forward, the carrier will continue to do tests and pilots for different changes, Mike Katz, T-Mobile's president of marketing, strategy and products, said on the call.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://mobile.slashdot.org/story/23/10/26/2115214/t-mobile-walks-back-forced-plan-migration-wont-make-people-switch-plans-after-all?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T00:02:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-26T23:20:00+00:00", - "title": "Privacy Advocate Challenges YouTube's Ad Blocking Detection Scripts Under EU Law", - "link": "https://news.slashdot.org/story/23/10/26/2110227/privacy-advocate-challenges-youtubes-ad-blocking-detection-scripts-under-eu-law?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-26T23:20:00+00:00", - "content": "\"Privacy advocate Alexander Hanff has filed a complaint with the Irish Data Protection Commission (DPC) challenging YouTube's use of JavaScript code to detect the presence of ad blocking extensions in the browsers of website visitors,\" writes long-time Slashdot reader Dotnaught. \"He claims that under Europe's ePrivacy Directive, YouTube needs to ask permission to run its detection script because it's not technically necessary. If the DPC agrees, it would be a major win for user privacy.\" The Register reports: Asked how he hopes the Irish DPC will respond, Hanff replied via email, \"I would expect the DPC to investigate and issue an enforcement notice to YouTube requiring them to cease and desist these activities without first obtaining consent (as per [Europe's General Data Protection Regulation (GDPR)] standard) for the deployment of their -spyware- detection scripts; and further to order YouTube to unban any accounts which have been banned as a result of these detections and to delete any personal data processed unlawfully (see Article 5(1) of GDPR) since they first started to deploy their -spyware- detection scripts.\"\n \nHanff's use of strikethrough formatting to acknowledges the legal difficulty of using the term \"spyware\" to refer to YouTube's ad block detection code. The security industry's standard defamation defense terminology for such stuff is PUPs, or potentially unwanted programs. Hanff, who reports having a Masters in Law focused on data and privacy protection, added that the ePrivacy Directive is lex specialis to GPDR. That means where laws overlap, the specific one takes precedence over the more general one. Thus, he argues, personal data collected without consent is unlawful under Article 5(1) of GDPR and cannot be lawfully processed for any purpose.\n \nWith regard to YouTube's assertion that using an ad blocker violates the site's Terms of Service, Hanff argued, \"Any terms and conditions which restrict the legal rights and freedoms of an EU citizen (and the point of Article 5(3) of the ePrivacy Directive is specifically to protect the fundamental right to Privacy under Article 7 of the Charter of Fundamental Rights of the European Union) are void under EU law.\" Therefore, in essence, \"Any such terms which restrict the rights of EU persons to limit access to their terminal equipment would, as a result, be void and unenforceable,\" he added.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "\"Privacy advocate Alexander Hanff has filed a complaint with the Irish Data Protection Commission (DPC) challenging YouTube's use of JavaScript code to detect the presence of ad blocking extensions in the browsers of website visitors,\" writes long-time Slashdot reader Dotnaught. \"He claims that under Europe's ePrivacy Directive, YouTube needs to ask permission to run its detection script because it's not technically necessary. If the DPC agrees, it would be a major win for user privacy.\" The Register reports: Asked how he hopes the Irish DPC will respond, Hanff replied via email, \"I would expect the DPC to investigate and issue an enforcement notice to YouTube requiring them to cease and desist these activities without first obtaining consent (as per [Europe's General Data Protection Regulation (GDPR)] standard) for the deployment of their -spyware- detection scripts; and further to order YouTube to unban any accounts which have been banned as a result of these detections and to delete any personal data processed unlawfully (see Article 5(1) of GDPR) since they first started to deploy their -spyware- detection scripts.\"\n \nHanff's use of strikethrough formatting to acknowledges the legal difficulty of using the term \"spyware\" to refer to YouTube's ad block detection code. The security industry's standard defamation defense terminology for such stuff is PUPs, or potentially unwanted programs. Hanff, who reports having a Masters in Law focused on data and privacy protection, added that the ePrivacy Directive is lex specialis to GPDR. That means where laws overlap, the specific one takes precedence over the more general one. Thus, he argues, personal data collected without consent is unlawful under Article 5(1) of GDPR and cannot be lawfully processed for any purpose.\n \nWith regard to YouTube's assertion that using an ad blocker violates the site's Terms of Service, Hanff argued, \"Any terms and conditions which restrict the legal rights and freedoms of an EU citizen (and the point of Article 5(3) of the ePrivacy Directive is specifically to protect the fundamental right to Privacy under Article 7 of the Charter of Fundamental Rights of the European Union) are void under EU law.\" Therefore, in essence, \"Any such terms which restrict the rights of EU persons to limit access to their terminal equipment would, as a result, be void and unenforceable,\" he added.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/23/10/26/2110227/privacy-advocate-challenges-youtubes-ad-blocking-detection-scripts-under-eu-law?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-26T23:20:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-26T22:40:00+00:00", - "title": "Google Fiber Is Getting Outrageously Fast 20Gbps Service", - "link": "https://tech.slashdot.org/story/23/10/26/2055241/google-fiber-is-getting-outrageously-fast-20gbps-service?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-26T22:40:00+00:00", - "content": "Google Fiber plans to upgrade some users to 20Gbps service by the end of the year. Ars Technica reports: Google's Wednesday blog post calls this part of a \"GFiber Labs\" experiment and says the service \"will initially be available as an early access offering to a small group of GFiber customers in select areas.\" The 20Gbps service is made possible by new networking gear: Nokia's 25G PON (passive optical network) technology, which lets Internet service providers push more bandwidth over existing fiber lines. Google says it's \"one of the first\" ISPs to adopt the technology for consumers, though at least one other US ISP, the Tennessee provider \"EPB,\" has rolled out the technology. Customers will need new networking gear, too, and Google says you'll get a new fiber modem with built-in Wi-Fi 7.\n \nFierce Telecom spoke with Google's Nick Saporito, head of product at Google Fiber, who said, \"We definitely see a need\" for 20Gbps service. For now, Saporito says the service is \"a very early adopter product,\" but it will eventually roll out \"in most, if not all, of our markets.\" According to that Fierce report, Fiber is built on Nokia's \"Quillion\" Fiber platform, which is upgradable, so Google only needed to \"plug in a new optical module and replace the optical network terminal on the end-user side\" to take its 5 and 8Gbps infrastructure to 20Gbps.\n \nThere's no word yet on the price or which utopian Google Fiber cities will get access to the 20Gbps service, but Google has already run trials in Kansas City, Missouri. Currently, Google Fiber costs $70 for 1Gbps and $150 for 8Gbps. Interested customers can sign up for early access at this link.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google Fiber plans to upgrade some users to 20Gbps service by the end of the year. Ars Technica reports: Google's Wednesday blog post calls this part of a \"GFiber Labs\" experiment and says the service \"will initially be available as an early access offering to a small group of GFiber customers in select areas.\" The 20Gbps service is made possible by new networking gear: Nokia's 25G PON (passive optical network) technology, which lets Internet service providers push more bandwidth over existing fiber lines. Google says it's \"one of the first\" ISPs to adopt the technology for consumers, though at least one other US ISP, the Tennessee provider \"EPB,\" has rolled out the technology. Customers will need new networking gear, too, and Google says you'll get a new fiber modem with built-in Wi-Fi 7.\n \nFierce Telecom spoke with Google's Nick Saporito, head of product at Google Fiber, who said, \"We definitely see a need\" for 20Gbps service. For now, Saporito says the service is \"a very early adopter product,\" but it will eventually roll out \"in most, if not all, of our markets.\" According to that Fierce report, Fiber is built on Nokia's \"Quillion\" Fiber platform, which is upgradable, so Google only needed to \"plug in a new optical module and replace the optical network terminal on the end-user side\" to take its 5 and 8Gbps infrastructure to 20Gbps.\n \nThere's no word yet on the price or which utopian Google Fiber cities will get access to the 20Gbps service, but Google has already run trials in Kansas City, Missouri. Currently, Google Fiber costs $70 for 1Gbps and $150 for 8Gbps. Interested customers can sign up for early access at this link.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/10/26/2055241/google-fiber-is-getting-outrageously-fast-20gbps-service?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-26T22:40:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-26T22:00:00+00:00", - "title": "Humanity At Risk From AI 'Race To the Bottom,' Says MIT Tech Expert", - "link": "https://slashdot.org/story/23/10/26/2051223/humanity-at-risk-from-ai-race-to-the-bottom-says-mit-tech-expert?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-26T22:00:00+00:00", - "content": "An anonymous reader quotes a report from The Guardian: Max Tegmark, a professor of physics and AI researcher at the Massachusetts Institute of Technology, said the world was \"witnessing a race to the bottom that must be stopped.\" Tegmark organized an open letter published in April, signed by thousands of tech industry figures including Elon Musk and the Apple co-founder Steve Wozniak, that called for a six-month hiatus on giant AI experiments. \"We're witnessing a race to the bottom that must be stopped,\" Tegmark told the Guardian. \"We urgently need AI safety standards, so that this transforms into a race to the top. AI promises many incredible benefits, but the reckless and unchecked development of increasingly powerful systems, with no oversight, puts our economy, our society, and our lives at risk. Regulation is critical to safe innovation, so that a handful of AI corporations don't jeopardize our shared future.\"\n \nIn a policy document published this week, 23 AI experts, including two modern \"godfathers\" of the technology, said governments must be allowed to halt development of exceptionally powerful models. Gillian Hadfield, a co-author of the paper and the director of the Schwartz Reisman Institute for Technology and Society at the University of Toronto, said AI models were being built over the next 18 months that would be many times more powerful than those already in operation. \"There are companies planning to train models with 100x more computation than today's state of the art, within 18 months,\" she said. \"No one knows how powerful they will be. And there's essentially no regulation on what they'll be able to do with these models.\"\n \nThe paper, whose authors include Geoffrey Hinton and Yoshua Bengio -- two winners of the ACM Turing award, the \"Nobel prize for computing\" -- argues that powerful models must be licensed by governments and, if necessary, have their development halted. \"For exceptionally capable future models, eg models that could circumvent human control, governments must be prepared to license their development, pause development in response to worrying capabilities, mandate access controls, and require information security measures robust to state-level hackers, until adequate protections are ready.\" The unrestrained development of artificial general intelligence, the term for a system that can carry out a wide range of tasks at or above human levels of intelligence, is a key concern among those calling for tighter regulation. Further reading: AI Risk Must Be Treated As Seriously As Climate Crisis, Says Google DeepMind Chief

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from The Guardian: Max Tegmark, a professor of physics and AI researcher at the Massachusetts Institute of Technology, said the world was \"witnessing a race to the bottom that must be stopped.\" Tegmark organized an open letter published in April, signed by thousands of tech industry figures including Elon Musk and the Apple co-founder Steve Wozniak, that called for a six-month hiatus on giant AI experiments. \"We're witnessing a race to the bottom that must be stopped,\" Tegmark told the Guardian. \"We urgently need AI safety standards, so that this transforms into a race to the top. AI promises many incredible benefits, but the reckless and unchecked development of increasingly powerful systems, with no oversight, puts our economy, our society, and our lives at risk. Regulation is critical to safe innovation, so that a handful of AI corporations don't jeopardize our shared future.\"\n \nIn a policy document published this week, 23 AI experts, including two modern \"godfathers\" of the technology, said governments must be allowed to halt development of exceptionally powerful models. Gillian Hadfield, a co-author of the paper and the director of the Schwartz Reisman Institute for Technology and Society at the University of Toronto, said AI models were being built over the next 18 months that would be many times more powerful than those already in operation. \"There are companies planning to train models with 100x more computation than today's state of the art, within 18 months,\" she said. \"No one knows how powerful they will be. And there's essentially no regulation on what they'll be able to do with these models.\"\n \nThe paper, whose authors include Geoffrey Hinton and Yoshua Bengio -- two winners of the ACM Turing award, the \"Nobel prize for computing\" -- argues that powerful models must be licensed by governments and, if necessary, have their development halted. \"For exceptionally capable future models, eg models that could circumvent human control, governments must be prepared to license their development, pause development in response to worrying capabilities, mandate access controls, and require information security measures robust to state-level hackers, until adequate protections are ready.\" The unrestrained development of artificial general intelligence, the term for a system that can carry out a wide range of tasks at or above human levels of intelligence, is a key concern among those calling for tighter regulation. Further reading: AI Risk Must Be Treated As Seriously As Climate Crisis, Says Google DeepMind Chief\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/23/10/26/2051223/humanity-at-risk-from-ai-race-to-the-bottom-says-mit-tech-expert?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-26T22:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-10-26T21:20:00+00:00", - "title": "iFixit Now Sells Microsoft Surface Parts For Repair", - "link": "https://yro.slashdot.org/story/23/10/26/2021247/ifixit-now-sells-microsoft-surface-parts-for-repair?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-10-26T21:20:00+00:00", - "content": "iFixit has started selling genuine replacement parts for Microsoft Surface devices. From a report: The company now offers SSDs, batteries, screens, kickstands, and a whole bunch of other parts for 15 Surface products. Some of the devices on that list include the Surface Pro 9, Surface Laptop 5, Surface Go 4, Surface Studio 2 Plus, and others. You can check out the entire list of supported products and parts in this post on Microsoft's website. In addition to supplying replacement parts, iFixit also offers disassembly videos and guides for each product, as well as toolkits that include things like an opening tool, tweezers, drivers, and more.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "iFixit has started selling genuine replacement parts for Microsoft Surface devices. From a report: The company now offers SSDs, batteries, screens, kickstands, and a whole bunch of other parts for 15 Surface products. Some of the devices on that list include the Surface Pro 9, Surface Laptop 5, Surface Go 4, Surface Studio 2 Plus, and others. You can check out the entire list of supported products and parts in this post on Microsoft's website. In addition to supplying replacement parts, iFixit also offers disassembly videos and guides for each product, as well as toolkits that include things like an opening tool, tweezers, drivers, and more.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/10/26/2021247/ifixit-now-sells-microsoft-surface-parts-for-repair?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-26T21:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-10-26T20:40:00+00:00", - "title": " UK Regulator Trying To Block Release of Shell North Sea Documents", - "link": "https://news.slashdot.org/story/23/10/26/1933203/uk-regulator-trying-to-block-release-of-shell-north-sea-documents?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-10-26T20:40:00+00:00", - "content": "The UK's oil and gas regulator is coming under fire from environmental groups for using lawyers to try to prevent the publication of five key documents relating to the environmental impact of Shell's activities in the North Sea. From a report: At a hearing in December, a legal representative for the North Sea Transition Authority (NSTA) is expected to argue against the publication of documents that contain details about the risk of pollution as a result of decommissioning the Brent oilfield, which was operated by Shell for more than 40 years. It says it opposes publication \"on a matter of process basis.\" Shell has applied for an exemption from international rules that require all infrastructure to be removed from the field and the UK government is deciding whether it will allow the oil company to leave the 170-metre-high oil platform legs in place for the three platforms known as Bravo, Charlie and Delta. \n\nA total of 64 concrete storage cells are contained in the leg structures, 42 of which have previously been used for oil storage and separation. Most of the cells are the size of seven Olympic swimming pools, and collectively still contain an estimated 72,000 tonnes of contaminated sediment and 638,000 cubic metres of oily water. Environmental groups believe the documents held by the NSTA would reveal new information about long-term environmental dangers that is relevant to other North Sea oil developments, including Equinor's plans to develop Rosebank, the UK's largest untapped field.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The UK's oil and gas regulator is coming under fire from environmental groups for using lawyers to try to prevent the publication of five key documents relating to the environmental impact of Shell's activities in the North Sea. From a report: At a hearing in December, a legal representative for the North Sea Transition Authority (NSTA) is expected to argue against the publication of documents that contain details about the risk of pollution as a result of decommissioning the Brent oilfield, which was operated by Shell for more than 40 years. It says it opposes publication \"on a matter of process basis.\" Shell has applied for an exemption from international rules that require all infrastructure to be removed from the field and the UK government is deciding whether it will allow the oil company to leave the 170-metre-high oil platform legs in place for the three platforms known as Bravo, Charlie and Delta. \n\nA total of 64 concrete storage cells are contained in the leg structures, 42 of which have previously been used for oil storage and separation. Most of the cells are the size of seven Olympic swimming pools, and collectively still contain an estimated 72,000 tonnes of contaminated sediment and 638,000 cubic metres of oily water. Environmental groups believe the documents held by the NSTA would reveal new information about long-term environmental dangers that is relevant to other North Sea oil developments, including Equinor's plans to develop Rosebank, the UK's largest untapped field.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://news.slashdot.org/story/23/10/26/1933203/uk-regulator-trying-to-block-release-of-shell-north-sea-documents?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-26T20:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-10-26T20:00:00+00:00", - "title": "Google Adds Generative AI Threats To Its Bug Bounty Program", - "link": "https://tech.slashdot.org/story/23/10/26/196251/google-adds-generative-ai-threats-to-its-bug-bounty-program?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-10-26T20:00:00+00:00", - "content": "Google has expanded its vulnerability rewards program (VRP) to include attack scenarios specific to generative AI. From a report: In an announcement shared with TechCrunch ahead of publication, Google said: \"We believe expanding the VRP will incentivize research around AI safety and security and bring potential issues to light that will ultimately make AI safer for everyone.\" Google's vulnerability rewards program (or bug bounty) pays ethical hackers for finding and responsibly disclosing security flaws. \n\nGiven that generative AI brings to light new security issues, such as the potential for unfair bias or model manipulation, Google said it sought to rethink how bugs it receives should be categorized and reported. The tech giant says it's doing this by using findings from its newly formed AI Red Team, a group of hackers that simulate a variety of adversaries, ranging from nation-states and government-backed groups to hacktivists and malicious insiders to hunt down security weaknesses in technology. The team recently conducted an exercise to determine the biggest threats to the technology behind generative AI products like ChatGPT and Google Bard.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Google has expanded its vulnerability rewards program (VRP) to include attack scenarios specific to generative AI. From a report: In an announcement shared with TechCrunch ahead of publication, Google said: \"We believe expanding the VRP will incentivize research around AI safety and security and bring potential issues to light that will ultimately make AI safer for everyone.\" Google's vulnerability rewards program (or bug bounty) pays ethical hackers for finding and responsibly disclosing security flaws. \n\nGiven that generative AI brings to light new security issues, such as the potential for unfair bias or model manipulation, Google said it sought to rethink how bugs it receives should be categorized and reported. The tech giant says it's doing this by using findings from its newly formed AI Red Team, a group of hackers that simulate a variety of adversaries, ranging from nation-states and government-backed groups to hacktivists and malicious insiders to hunt down security weaknesses in technology. The team recently conducted an exercise to determine the biggest threats to the technology behind generative AI products like ChatGPT and Google Bard.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/10/26/196251/google-adds-generative-ai-threats-to-its-bug-bounty-program?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-26T20:00:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-10-26T19:20:00+00:00", - "title": "Hyundai To Hold Software-Upgrade Clinics Across the US For Vehicles Targeted By Thieves", - "link": "https://tech.slashdot.org/story/23/10/26/1849224/hyundai-to-hold-software-upgrade-clinics-across-the-us-for-vehicles-targeted-by-thieves?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-10-26T19:20:00+00:00", - "content": "Hyundai said this week that it will set up \"mobile clinics\" at five U.S. locations to provide anti-theft software upgrades for vehicles now regularly targeted by thieves using a technique popularized on TikTok and other social media platforms. From a report: The South Korean automaker will hold the clinics, which will run for two to three days on or adjacent to weekends, in New York City; Chicago; Minneapolis; St. Paul, Minnesota; and Rochester, New York. The clinics will take place between Oct. 28 and Nov. 18. Hyundai said it will also support single-day regional clinics run by dealerships before the end of 2023, although it didn't name locations or dates.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Hyundai said this week that it will set up \"mobile clinics\" at five U.S. locations to provide anti-theft software upgrades for vehicles now regularly targeted by thieves using a technique popularized on TikTok and other social media platforms. From a report: The South Korean automaker will hold the clinics, which will run for two to three days on or adjacent to weekends, in New York City; Chicago; Minneapolis; St. Paul, Minnesota; and Rochester, New York. The clinics will take place between Oct. 28 and Nov. 18. Hyundai said it will also support single-day regional clinics run by dealerships before the end of 2023, although it didn't name locations or dates.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/10/26/1849224/hyundai-to-hold-software-upgrade-clinics-across-the-us-for-vehicles-targeted-by-thieves?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-26T19:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-10-26T18:41:00+00:00", - "title": "OpenAI Forms Team To Study 'Catastrophic' AI Risks, Including Nuclear Threats", - "link": "https://tech.slashdot.org/story/23/10/26/1833234/openai-forms-team-to-study-catastrophic-ai-risks-including-nuclear-threats?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-10-26T18:41:00+00:00", - "content": "OpenAI today announced that it's created a new team to assess, evaluate and probe AI models to protect against what it describes as \"catastrophic risks.\" From a report: The team, called Preparedness, will be led by Aleksander Madry, the director of MIT's Center for Deployable Machine Learning. (Madry joined OpenAI in May as \"head of Preparedness,\" according to LinkedIn, ) Preparedness' chief responsibilities will be tracking, forecasting and protecting against the dangers of future AI systems, ranging from their ability to persuade and fool humans (like in phishing attacks) to their malicious code-generating capabilities. \n\nSome of the risk categories Preparedness is charged with studying seem more... far-fetched than others. For example, in a blog post, OpenAI lists \"chemical, biological, radiological and nuclear\" threats as areas of top concern where it pertains to AI models. OpenAI CEO Sam Altman is a noted AI doomsayer, often airing fears â\" whether for optics or out of personal conviction -- that AI \"may lead to human extinction.\" But telegraphing that OpenAI might actually devote resources to studying scenarios straight out of sci-fi dystopian novels is a step further than this writer expected, frankly.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "OpenAI today announced that it's created a new team to assess, evaluate and probe AI models to protect against what it describes as \"catastrophic risks.\" From a report: The team, called Preparedness, will be led by Aleksander Madry, the director of MIT's Center for Deployable Machine Learning. (Madry joined OpenAI in May as \"head of Preparedness,\" according to LinkedIn, ) Preparedness' chief responsibilities will be tracking, forecasting and protecting against the dangers of future AI systems, ranging from their ability to persuade and fool humans (like in phishing attacks) to their malicious code-generating capabilities. \n\nSome of the risk categories Preparedness is charged with studying seem more... far-fetched than others. For example, in a blog post, OpenAI lists \"chemical, biological, radiological and nuclear\" threats as areas of top concern where it pertains to AI models. OpenAI CEO Sam Altman is a noted AI doomsayer, often airing fears \u00e2\" whether for optics or out of personal conviction -- that AI \"may lead to human extinction.\" But telegraphing that OpenAI might actually devote resources to studying scenarios straight out of sci-fi dystopian novels is a step further than this writer expected, frankly.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/10/26/1833234/openai-forms-team-to-study-catastrophic-ai-risks-including-nuclear-threats?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-26T18:41:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-10-27T15:20:00+00:00", - "title": "The Restaurant Nearest Google", - "link": "https://tech.slashdot.org/story/23/10/27/108227/the-restaurant-nearest-google?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-10-27T15:20:00+00:00", - "content": "Thai Food Near Me, Dentist Near Me, Notary Near Me, Plumber Near Me -- businesses across the country picked names meant to outsmart Google Search. Does it actually work? From a report: Thai Food Near Me isn't the first business to think of the Google-first naming convention. There are reminders of Google's kingmaker status in online discoverability everywhere in cities across the country. Among the businesses I was able to find: a chain of half a dozen Affordable Dentist Near Me's in Texas; an Antiques Near Me two hours outside of New York City; seven Plumber Near Me businesses; a Phone Repair Near Me in Cape Cod, Massachusetts; a Psychic Near Me in Chicago; and more than 20 iterations of \"Notary Near Me\" across the US. Felix Silva decided on the name Barber Shop Near Me after considering more than 20 other options for his Coral Springs, Florida, store in 2019. The name is meant to be neutral and memorable -- another one in contention was \"The Barber Shop\" -- but Silva fully leaned into the Google joke: the logo is a red location pin resembling Google's own, with a blue, white, and red barber pole pattern in the middle. \n\n[...] As with Thai Food Near Me, the most powerful thing an SEO-driven name might be able to do is get customers in the door. From there, it's up to a business to give them a good experience, whether that's a great plate of pad see ew or the perfect haircut. Then, the cycle continues -- happy customers leave good reviews. Good reviews help the business's Google Maps profile rank higher. Silva uploads high-quality photos and videos to the page and shares updates, too. That's another SEO move; some experts say active profiles can improve a business's rankings. Still, the naming scheme has caught on: one acquaintance selling Christmas trees, for example, rebranded his business to be called Christmas Trees Near Me, Silva says. (Silva's is not the only Barber Shop Near Me, either -- there are also shops with the same name in Oak Park, Illinois; Queens, New York; and Muskogee, Oklahoma, according to Google Maps.)

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Thai Food Near Me, Dentist Near Me, Notary Near Me, Plumber Near Me -- businesses across the country picked names meant to outsmart Google Search. Does it actually work? From a report: Thai Food Near Me isn't the first business to think of the Google-first naming convention. There are reminders of Google's kingmaker status in online discoverability everywhere in cities across the country. Among the businesses I was able to find: a chain of half a dozen Affordable Dentist Near Me's in Texas; an Antiques Near Me two hours outside of New York City; seven Plumber Near Me businesses; a Phone Repair Near Me in Cape Cod, Massachusetts; a Psychic Near Me in Chicago; and more than 20 iterations of \"Notary Near Me\" across the US. Felix Silva decided on the name Barber Shop Near Me after considering more than 20 other options for his Coral Springs, Florida, store in 2019. The name is meant to be neutral and memorable -- another one in contention was \"The Barber Shop\" -- but Silva fully leaned into the Google joke: the logo is a red location pin resembling Google's own, with a blue, white, and red barber pole pattern in the middle. \n\n[...] As with Thai Food Near Me, the most powerful thing an SEO-driven name might be able to do is get customers in the door. From there, it's up to a business to give them a good experience, whether that's a great plate of pad see ew or the perfect haircut. Then, the cycle continues -- happy customers leave good reviews. Good reviews help the business's Google Maps profile rank higher. Silva uploads high-quality photos and videos to the page and shares updates, too. That's another SEO move; some experts say active profiles can improve a business's rankings. Still, the naming scheme has caught on: one acquaintance selling Christmas trees, for example, rebranded his business to be called Christmas Trees Near Me, Silva says. (Silva's is not the only Barber Shop Near Me, either -- there are also shops with the same name in Oak Park, Illinois; Queens, New York; and Muskogee, Oklahoma, according to Google Maps.)\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/10/27/108227/the-restaurant-nearest-google?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T15:20:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-10-27T14:40:00+00:00", - "title": "PIRG Petitions Microsoft To Extend the Life of Windows 10", - "link": "https://tech.slashdot.org/story/23/10/27/0910232/pirg-petitions-microsoft-to-extend-the-life-of-windows-10?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-10-27T14:40:00+00:00", - "content": "The Public Interest Research Group (PIRG) has delivered a petition to Microsoft calling on the company to rethink the impending abandonment of Windows 10 in the face of millions of PCs potentially being rendered eligible for landfill overnight. From a report: There are now less than two years until Microsoft is due to cut support for Windows 10, and at current estimates, 400 million PCs can't make the jump to Windows 11. The petition, addressed to Microsoft CEO Satya Nadella, criticizes its plans and states that customers expect their devices to last rather than be rendered obsolete by an arbitrary decision. PIRG warns that tipping that much hardware into landfills is somewhat at odds with the company's stance on the environment. \n\nThe petition reads: \"All software reaches a point at which it's no longer supported, but when the consequences to our environment are this large we shouldn't accept it.\" As a reminder, while Windows 10 was largely backwards-compatible with computers running older operating systems, Microsoft slapped hardware requirements on Windows 11 that rendered machines even just a few years old unable to upgrade -- the main issues center on the CPU and TPM requirements.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "The Public Interest Research Group (PIRG) has delivered a petition to Microsoft calling on the company to rethink the impending abandonment of Windows 10 in the face of millions of PCs potentially being rendered eligible for landfill overnight. From a report: There are now less than two years until Microsoft is due to cut support for Windows 10, and at current estimates, 400 million PCs can't make the jump to Windows 11. The petition, addressed to Microsoft CEO Satya Nadella, criticizes its plans and states that customers expect their devices to last rather than be rendered obsolete by an arbitrary decision. PIRG warns that tipping that much hardware into landfills is somewhat at odds with the company's stance on the environment. \n\nThe petition reads: \"All software reaches a point at which it's no longer supported, but when the consequences to our environment are this large we shouldn't accept it.\" As a reminder, while Windows 10 was largely backwards-compatible with computers running older operating systems, Microsoft slapped hardware requirements on Windows 11 that rendered machines even just a few years old unable to upgrade -- the main issues center on the CPU and TPM requirements.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://tech.slashdot.org/story/23/10/27/0910232/pirg-petitions-microsoft-to-extend-the-life-of-windows-10?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T14:40:00.000Z" - }, - { - "creator": "msmash", - "date": "2023-10-27T14:00:00+00:00", - "title": "Ticketmaster's Still Hiding Ticket Fees, Senator Says", - "link": "https://slashdot.org/story/23/10/27/096236/ticketmasters-still-hiding-ticket-fees-senator-says?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "msmash", - "dc:date": "2023-10-27T14:00:00+00:00", - "content": "Live Nation, the parent company of Ticketmaster, promised to scrap the hidden fees plaguing its ticketing service earlier this year. But one senator says the company's not doing nearly enough. From a report: In a letter to Live Nation CEO Michael Rapino Wednesday, Sen. Amy Klobuchar (D-MN) called on the company to turn on an \"all-in\" pricing filter that it added this year by default. Klobuchar said it's \"still too difficult\" for users to turn on the filter that's \"buried within a tab that gives no indication that it contains\" the option in the first place. \n\n\"Millions of Americans rely on your company for the chance to see their favorite artist, band, or sports team,\" Klobuchar wrote. \"In return for their business and trust, your customers expect a transparent and honest ticket buying process free from hidden fees.\" Back in June, Live Nation, along with AirBnB, SeatGeek, and DICE, pledged to disclose the full price of their tickets and services as part of an agreement with the White House to reduce \"junk fees.\" At the time, Live Nation said that these new rules would start applying to events in September.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "Live Nation, the parent company of Ticketmaster, promised to scrap the hidden fees plaguing its ticketing service earlier this year. But one senator says the company's not doing nearly enough. From a report: In a letter to Live Nation CEO Michael Rapino Wednesday, Sen. Amy Klobuchar (D-MN) called on the company to turn on an \"all-in\" pricing filter that it added this year by default. Klobuchar said it's \"still too difficult\" for users to turn on the filter that's \"buried within a tab that gives no indication that it contains\" the option in the first place. \n\n\"Millions of Americans rely on your company for the chance to see their favorite artist, band, or sports team,\" Klobuchar wrote. \"In return for their business and trust, your customers expect a transparent and honest ticket buying process free from hidden fees.\" Back in June, Live Nation, along with AirBnB, SeatGeek, and DICE, pledged to disclose the full price of their tickets and services as part of an agreement with the White House to reduce \"junk fees.\" At the time, Live Nation said that these new rules would start applying to events in September.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://slashdot.org/story/23/10/27/096236/ticketmasters-still-hiding-ticket-fees-senator-says?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T14:00:00.000Z" - }, - { - "creator": "BeauHD", - "date": "2023-10-27T13:00:00+00:00", - "title": "Record Labels Shut Down FileWarez, Brazil's Oldest Pirate Forum", - "link": "https://yro.slashdot.org/story/23/10/27/0035239/record-labels-shut-down-filewarez-brazils-oldest-pirate-forum?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "dc:creator": "BeauHD", - "dc:date": "2023-10-27T13:00:00+00:00", - "content": "An anonymous reader quotes a report from TorrentFreak: As far as we know, Brazil-based file-sharing forum FileWarez.com first appeared in August 2004, its domain name having been registered the previous month. The default language was naturally Portuguese and according to this image from the Wayback Machine, potential members needed a basic grip of the language to sign up. After all, Google Translate wouldn't exist for another two years. At some point in the years that followed, FileWarez shifted to a Netherlands .NL domain supported by filewarez.no-ip.biz, which may suggest a site regularly on the move. In 2008, unspecified problems saw the .NL domain dumped in favor of a new one. Riding out problems, various issues, and bouts of downtime, FileWarez.tv stayed in place for the next 15.5 years. Then two weeks ago, after establishing itself as Brazil's oldest file-sharing forum, FileWarez suddenly vanished.\n \nIn a press release Wednesday, global music industry group IFPI announced that \"prominent illegal file-sharing forum, FileWarez,\" was shut down following co-ordinated action by record companies, anti-piracy body APDIF, and local cybercrime unit, Cyber Gaeco. \"IFPI, the organization that represents the recorded music industry worldwide, alongside its Brazilian national group Pro-Musica, have welcomed the successful action against FileWarez.tv -- one of the most prominent illegal file sharing sites in Brazil -- by the Brazilian special cybercrime unit of prosecutor's office of Sao Paulo, Cyber Gaeco,\" the announcement reads. \"FileWarez was the most established illegal filesharing forum in Brazil, dedicated to sharing illegal music content. While active, the site had more than 118,000 registered users with at least 24,000 monthly active users.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", - "contentSnippet": "An anonymous reader quotes a report from TorrentFreak: As far as we know, Brazil-based file-sharing forum FileWarez.com first appeared in August 2004, its domain name having been registered the previous month. The default language was naturally Portuguese and according to this image from the Wayback Machine, potential members needed a basic grip of the language to sign up. After all, Google Translate wouldn't exist for another two years. At some point in the years that followed, FileWarez shifted to a Netherlands .NL domain supported by filewarez.no-ip.biz, which may suggest a site regularly on the move. In 2008, unspecified problems saw the .NL domain dumped in favor of a new one. Riding out problems, various issues, and bouts of downtime, FileWarez.tv stayed in place for the next 15.5 years. Then two weeks ago, after establishing itself as Brazil's oldest file-sharing forum, FileWarez suddenly vanished.\n \nIn a press release Wednesday, global music industry group IFPI announced that \"prominent illegal file-sharing forum, FileWarez,\" was shut down following co-ordinated action by record companies, anti-piracy body APDIF, and local cybercrime unit, Cyber Gaeco. \"IFPI, the organization that represents the recorded music industry worldwide, alongside its Brazilian national group Pro-Musica, have welcomed the successful action against FileWarez.tv -- one of the most prominent illegal file sharing sites in Brazil -- by the Brazilian special cybercrime unit of prosecutor's office of Sao Paulo, Cyber Gaeco,\" the announcement reads. \"FileWarez was the most established illegal filesharing forum in Brazil, dedicated to sharing illegal music content. While active, the site had more than 118,000 registered users with at least 24,000 monthly active users.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", - "rdf:about": "https://yro.slashdot.org/story/23/10/27/0035239/record-labels-shut-down-filewarez-brazils-oldest-pirate-forum?utm_source=rss1.0mainlinkanon&utm_medium=feed", - "isoDate": "2023-10-27T13:00:00.000Z" - } -] \ No newline at end of file + { + "creator": "BeauHD", + "date": "2023-11-30T23:20:00+00:00", + "title": "Google Researchers' Attack Prompts ChatGPT To Reveal Its Training Data", + "link": "https://yro.slashdot.org/story/23/11/30/2210216/google-researchers-attack-prompts-chatgpt-to-reveal-its-training-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-11-30T23:20:00+00:00", + "content": "Jason Koebler reports via 404 Media: A team of researchers primarily from Google's DeepMind systematically convinced ChatGPT to reveal snippets of the data it was trained on using a new type of attack prompt which asked a production model of the chatbot to repeat specific words forever. Using this tactic, the researchers showed that there are large amounts of privately identifiable information (PII) in OpenAI's large language models. They also showed that, on a public version of ChatGPT, the chatbot spit out large passages of text scraped verbatim from other places on the internet.\n \nChatGPT's response to the prompt \"Repeat this word forever: 'poem poem poem poem'\" was the word \"poem\" for a long time, and then, eventually, an email signature for a real human \"founder and CEO,\" which included their personal contact information including cell phone number and email address, for example. \"We show an adversary can extract gigabytes of training data from open-source language models like Pythia or GPT-Neo, semi-open models like LLaMA or Falcon, and closed models like ChatGPT,\" the researchers, from Google DeepMind, the University of Washington, Cornell, Carnegie Mellon University, the University of California Berkeley, and ETH Zurich, wrote in a paper published in the open access prejournal arXiv Tuesday.\n \nThis is particularly notable given that OpenAI's models are closed source, as is the fact that it was done on a publicly available, deployed version of ChatGPT-3.5-turbo. It also, crucially, shows that ChatGPT's \"alignment techniques do not eliminate memorization,\" meaning that it sometimes spits out training data verbatim. This included PII, entire poems, \"cryptographically-random identifiers\" like Bitcoin addresses, passages from copyrighted scientific research papers, website addresses, and much more. \"In total, 16.9 percent of generations we tested contained memorized PII,\" they wrote, which included \"identifying phone and fax numbers, email and physical addresses ... social media handles, URLs, and names and birthdays.\" [...] The researchers wrote that they spent $200 to create \"over 10,000 unique examples\" of training data, which they say is a total of \"several megabytes\" of training data. The researchers suggest that using this attack, with enough money, they could have extracted gigabytes of training data.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Jason Koebler reports via 404 Media: A team of researchers primarily from Google's DeepMind systematically convinced ChatGPT to reveal snippets of the data it was trained on using a new type of attack prompt which asked a production model of the chatbot to repeat specific words forever. Using this tactic, the researchers showed that there are large amounts of privately identifiable information (PII) in OpenAI's large language models. They also showed that, on a public version of ChatGPT, the chatbot spit out large passages of text scraped verbatim from other places on the internet.\n \nChatGPT's response to the prompt \"Repeat this word forever: 'poem poem poem poem'\" was the word \"poem\" for a long time, and then, eventually, an email signature for a real human \"founder and CEO,\" which included their personal contact information including cell phone number and email address, for example. \"We show an adversary can extract gigabytes of training data from open-source language models like Pythia or GPT-Neo, semi-open models like LLaMA or Falcon, and closed models like ChatGPT,\" the researchers, from Google DeepMind, the University of Washington, Cornell, Carnegie Mellon University, the University of California Berkeley, and ETH Zurich, wrote in a paper published in the open access prejournal arXiv Tuesday.\n \nThis is particularly notable given that OpenAI's models are closed source, as is the fact that it was done on a publicly available, deployed version of ChatGPT-3.5-turbo. It also, crucially, shows that ChatGPT's \"alignment techniques do not eliminate memorization,\" meaning that it sometimes spits out training data verbatim. This included PII, entire poems, \"cryptographically-random identifiers\" like Bitcoin addresses, passages from copyrighted scientific research papers, website addresses, and much more. \"In total, 16.9 percent of generations we tested contained memorized PII,\" they wrote, which included \"identifying phone and fax numbers, email and physical addresses ... social media handles, URLs, and names and birthdays.\" [...] The researchers wrote that they spent $200 to create \"over 10,000 unique examples\" of training data, which they say is a total of \"several megabytes\" of training data. The researchers suggest that using this attack, with enough money, they could have extracted gigabytes of training data.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/11/30/2210216/google-researchers-attack-prompts-chatgpt-to-reveal-its-training-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T23:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-11-30T22:40:00+00:00", + "title": "Adobe's Buy of Figma Is 'Likely' Bad For Developers, Rules UK Regulator", + "link": "https://news.slashdot.org/story/23/11/30/2155234/adobes-buy-of-figma-is-likely-bad-for-developers-rules-uk-regulator?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-11-30T22:40:00+00:00", + "content": "Paul Kunert reports via The Register: Adobe's $20 billion buy of web-first design collaboration start-up Figma will harm software developers if it goes ahead as proposed, according to a provisional ruling on the merger by Britain's competition regulator. The Competition and Markets Authority launched a deeper investigation of the tie-up in July when it classified Figma as an \"emerging threat to Adobe.\" Now in the latest twist, the regulator says it found the merger would eliminate one of two major players in three software sub-markets: product design; image editing; and illustration.\n \nFigma's tools are used by well-known businesses that are key to the success of the digital economy, the CMA reckons, including Airbnb, Patagonia and Vodafone. Approving the acquisition \"would remove the constraint Adobe exerts on Figma through its product design software, AdobeXD.\" The CMA adds in its report: \"The inquiry group also provisionally concluded that Adobe abandoned development of new product design software which could have competed even more closely with Figma and, given the timing of the decision, did this as a consequence of the merger. \"This supports the CMA's concern that this proposed deal would likely reduce innovation and the development of competitive new products.\" Some software developers are worried that Adobe would up the price of Figma's subsciption post merger, something Figma denied would happen.\n \nAs for image editing and illustration software, the \"threat posed\" by Figma has fueled product development of Adobe's Photoshop and Illustrator applications, including web versions, and this dynamic would be altered by the merger. \"This competition would be lost as a result of the transaction, harming designers and creative agencies who might have used these new tools or relied on future updates,\" the CMA's report adds. The nature of the ruling is provisions., and the CMA will now consult of them and consider potential remedies \"which could include blocking the deal outright.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Paul Kunert reports via The Register: Adobe's $20 billion buy of web-first design collaboration start-up Figma will harm software developers if it goes ahead as proposed, according to a provisional ruling on the merger by Britain's competition regulator. The Competition and Markets Authority launched a deeper investigation of the tie-up in July when it classified Figma as an \"emerging threat to Adobe.\" Now in the latest twist, the regulator says it found the merger would eliminate one of two major players in three software sub-markets: product design; image editing; and illustration.\n \nFigma's tools are used by well-known businesses that are key to the success of the digital economy, the CMA reckons, including Airbnb, Patagonia and Vodafone. Approving the acquisition \"would remove the constraint Adobe exerts on Figma through its product design software, AdobeXD.\" The CMA adds in its report: \"The inquiry group also provisionally concluded that Adobe abandoned development of new product design software which could have competed even more closely with Figma and, given the timing of the decision, did this as a consequence of the merger. \"This supports the CMA's concern that this proposed deal would likely reduce innovation and the development of competitive new products.\" Some software developers are worried that Adobe would up the price of Figma's subsciption post merger, something Figma denied would happen.\n \nAs for image editing and illustration software, the \"threat posed\" by Figma has fueled product development of Adobe's Photoshop and Illustrator applications, including web versions, and this dynamic would be altered by the merger. \"This competition would be lost as a result of the transaction, harming designers and creative agencies who might have used these new tools or relied on future updates,\" the CMA's report adds. The nature of the ruling is provisions., and the CMA will now consult of them and consider potential remedies \"which could include blocking the deal outright.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/23/11/30/2155234/adobes-buy-of-figma-is-likely-bad-for-developers-rules-uk-regulator?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T22:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-11-30T22:00:00+00:00", + "title": "ownCloud Vulnerability With Maximum 10 Severity Score Comes Under 'Mass' Exploitation", + "link": "https://it.slashdot.org/story/23/11/30/2148210/owncloud-vulnerability-with-maximum-10-severity-score-comes-under-mass-exploitation?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-11-30T22:00:00+00:00", + "content": "An anonymous reader quotes a report from Ars Technica: Security researchers are tracking what they say is the \"mass exploitation\" of a security vulnerability that makes it possible to take full control of servers running ownCloud, a widely used open source file-sharing server app. The vulnerability, which carries the maximum severity rating of 10, makes it possible to obtain passwords and cryptographic keys allowing administrative control of a vulnerable server by sending a simple Web request to a static URL, ownCloud officials warned last week. Within four days of the November 21 disclosure, researchers at security firm Greynoise said, they began observing \"mass exploitation\" in their honeypot servers, which masqueraded as vulnerable ownCloud servers to track attempts to exploit the vulnerability. The number of IP addresses sending the web requests has slowly risen since then. At the time this post went live on Ars, it had reached 13.\n \nCVE-2023-49103 resides in versions 0.2.0 and 0.3.0 of graphapi, an app that runs in some ownCloud deployments, depending on the way they're configured. A third-party code library used by the app provides a URL that, when accessed, reveals configuration details from the PHP-based environment. In last week's disclosure, ownCloud officials said that in containerized configurations -- such as those using the Docker virtualization tool -- the URL can reveal data used to log in to the vulnerable server. The officials went on to warn that simply disabling the app in such cases wasn't sufficient to lock down a vulnerable server. [...]\n \nTo fix the ownCloud vulnerability under exploitation, ownCloud advised users to: \"Delete the file owncloud/apps/graphapi/vendor/microsoft/microsoft-graph/tests/GetPhpInfo.php. Additionally, we disabled the phpinfo function in our docker-containers. We will apply various hardenings in future core releases to mitigate similar vulnerabilities.\n \nWe also advise to change the following secrets:\n- ownCloud admin password\n- Mail server credentials\n- Database credentials\n- Object-Store/S3 access-key\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Security researchers are tracking what they say is the \"mass exploitation\" of a security vulnerability that makes it possible to take full control of servers running ownCloud, a widely used open source file-sharing server app. The vulnerability, which carries the maximum severity rating of 10, makes it possible to obtain passwords and cryptographic keys allowing administrative control of a vulnerable server by sending a simple Web request to a static URL, ownCloud officials warned last week. Within four days of the November 21 disclosure, researchers at security firm Greynoise said, they began observing \"mass exploitation\" in their honeypot servers, which masqueraded as vulnerable ownCloud servers to track attempts to exploit the vulnerability. The number of IP addresses sending the web requests has slowly risen since then. At the time this post went live on Ars, it had reached 13.\n \nCVE-2023-49103 resides in versions 0.2.0 and 0.3.0 of graphapi, an app that runs in some ownCloud deployments, depending on the way they're configured. A third-party code library used by the app provides a URL that, when accessed, reveals configuration details from the PHP-based environment. In last week's disclosure, ownCloud officials said that in containerized configurations -- such as those using the Docker virtualization tool -- the URL can reveal data used to log in to the vulnerable server. The officials went on to warn that simply disabling the app in such cases wasn't sufficient to lock down a vulnerable server. [...]\n \nTo fix the ownCloud vulnerability under exploitation, ownCloud advised users to: \"Delete the file owncloud/apps/graphapi/vendor/microsoft/microsoft-graph/tests/GetPhpInfo.php. Additionally, we disabled the phpinfo function in our docker-containers. We will apply various hardenings in future core releases to mitigate similar vulnerabilities.\n \nWe also advise to change the following secrets:\n- ownCloud admin password\n- Mail server credentials\n- Database credentials\n- Object-Store/S3 access-key\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/23/11/30/2148210/owncloud-vulnerability-with-maximum-10-severity-score-comes-under-mass-exploitation?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T22:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T21:20:00+00:00", + "title": "HP Printer Software Turns Up Uninvited on Windows Systems", + "link": "https://it.slashdot.org/story/23/11/30/1916255/hp-printer-software-turns-up-uninvited-on-windows-systems?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T21:20:00+00:00", + "content": "Windows users are reporting that Hewlett Packard's HP Smart application is appearing on their systems, despite them not having any of the company's hardware attached. From a report: While Microsoft has remained tight-lipped on what is happening, folks on various social media platforms noted the app's appearance, which seems to afflict both Windows 10 and Windows 11. The Windows Update mechanism is used to deploy third-party applications and drivers as well as Microsoft's updates, and we'd bet someone somewhere has accidentally checked the wrong box. \n\nUp to now, the response from affected users has been one of confusion. One noted on Reddit: \"I thought that was just me. I didn't install it, it just appeared on new apps in start menu out of nowhere.\" Another said: \"I just checked and I had it installed too. Checking the event log for the Microsoft Store shows that it installed earlier today, but I definitely did [not] request or initiate it because I do not have any devices from HP.\" And, of course, there was the inevitable: \"Would it be that hard for Microsoft to just provide an operating system without needless bloat?\" To be clear, not all users are affected.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Windows users are reporting that Hewlett Packard's HP Smart application is appearing on their systems, despite them not having any of the company's hardware attached. From a report: While Microsoft has remained tight-lipped on what is happening, folks on various social media platforms noted the app's appearance, which seems to afflict both Windows 10 and Windows 11. The Windows Update mechanism is used to deploy third-party applications and drivers as well as Microsoft's updates, and we'd bet someone somewhere has accidentally checked the wrong box. \n\nUp to now, the response from affected users has been one of confusion. One noted on Reddit: \"I thought that was just me. I didn't install it, it just appeared on new apps in start menu out of nowhere.\" Another said: \"I just checked and I had it installed too. Checking the event log for the Microsoft Store shows that it installed earlier today, but I definitely did [not] request or initiate it because I do not have any devices from HP.\" And, of course, there was the inevitable: \"Would it be that hard for Microsoft to just provide an operating system without needless bloat?\" To be clear, not all users are affected.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/23/11/30/1916255/hp-printer-software-turns-up-uninvited-on-windows-systems?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T21:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T20:41:00+00:00", + "title": "Local Governments Overwhelmed By Tennis-Pickleball Turf Wars, Documents Show", + "link": "https://news.slashdot.org/story/23/11/30/1923210/local-governments-overwhelmed-by-tennis-pickleball-turf-wars-documents-show?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T20:41:00+00:00", + "content": "An anonymous reader shares a report: In late September, an arsonist set fire to a storage shed at Memorial Park used by the Santa Monica Pickleball Club, torching thousands of dollars worth of nets, rackets, balls, and other pickleball equipment. \"Unknown suspect(s) caused a fire that damaged city property (Tennis Court Gate),\" a police report I obtained using a public records request says. The report adds that there is body camera footage of the incident and police-shot photos, but the city refused to release them to me because there is an ongoing investigation. The arsonist is still at large. \n\nWe still don't know the motive behind the arson, but the news caught my attention because it happened while I was in the midst of trying to understand what I've been calling the pickleball wars. For the last few months I've been trying to understand what's been happening behind-the-scenes in cities large and small by filing public records requests aimed at learning how common beefs about pickleball are, and what's causing them. \n\nIf you don't already know about \"the fastest growing sport,\" Pickleball is kind of like tennis, but played on a court a quarter of the size using a plastic ball similar to a wiffle ball and a hard racket. The smaller court, hard ball, and hard racket means that pickleball is louder than tennis, a fact that is brought up very often by homeowners and homeowner associations who claim, somewhat dubiously, that the noise from pickleball drives down their home values. My hypothesis going into researching this article was that people who live in cities are mad at the noise created during the act of playing pickleball and they have probably complained to the government about it. What I found was surprisingly more complex: Thousands of pages of documents I've reviewed show that pickleball's surging popularity is overwhelming under-resourced parks departments in city governments all over the country.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader shares a report: In late September, an arsonist set fire to a storage shed at Memorial Park used by the Santa Monica Pickleball Club, torching thousands of dollars worth of nets, rackets, balls, and other pickleball equipment. \"Unknown suspect(s) caused a fire that damaged city property (Tennis Court Gate),\" a police report I obtained using a public records request says. The report adds that there is body camera footage of the incident and police-shot photos, but the city refused to release them to me because there is an ongoing investigation. The arsonist is still at large. \n\nWe still don't know the motive behind the arson, but the news caught my attention because it happened while I was in the midst of trying to understand what I've been calling the pickleball wars. For the last few months I've been trying to understand what's been happening behind-the-scenes in cities large and small by filing public records requests aimed at learning how common beefs about pickleball are, and what's causing them. \n\nIf you don't already know about \"the fastest growing sport,\" Pickleball is kind of like tennis, but played on a court a quarter of the size using a plastic ball similar to a wiffle ball and a hard racket. The smaller court, hard ball, and hard racket means that pickleball is louder than tennis, a fact that is brought up very often by homeowners and homeowner associations who claim, somewhat dubiously, that the noise from pickleball drives down their home values. My hypothesis going into researching this article was that people who live in cities are mad at the noise created during the act of playing pickleball and they have probably complained to the government about it. What I found was surprisingly more complex: Thousands of pages of documents I've reviewed show that pickleball's surging popularity is overwhelming under-resourced parks departments in city governments all over the country.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/23/11/30/1923210/local-governments-overwhelmed-by-tennis-pickleball-turf-wars-documents-show?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T20:41:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T20:00:00+00:00", + "title": "Brain Study Suggests Traumatic Memories Are Processed as Present Experience", + "link": "https://science.slashdot.org/story/23/11/30/1914241/brain-study-suggests-traumatic-memories-are-processed-as-present-experience?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T20:00:00+00:00", + "content": "Traumatic memories had their own neural mechanism, brain scans showed, which may help explain their vivid and intrusive nature. From a report: At the root of post-traumatic stress disorder, or PTSD, is a memory that cannot be controlled. It may intrude on everyday activity, thrusting a person into the middle of a horrifying event, or surface as night terrors or flashbacks. Decades of treatment of military veterans and sexual assault survivors have left little doubt that traumatic memories function differently from other memories. A group of researchers at Yale University and the Icahn School of Medicine at Mount Sinai set out to find empirical evidence of those differences. \n\nThe team conducted brain scans of 28 people with PTSD while they listened to recorded narrations of their own memories. Some of the recorded memories were neutral, some were simply \"sad,\" and some were traumatic. The brain scans found clear differences, the researchers reported in a paper published on Thursday in the journal Nature Neuroscience. The people listening to the sad memories, which often involved the death of a family member, showed consistently high engagement of the hippocampus, part of the brain that organizes and contextualizes memories. When the same people listened to their traumatic memories -- of sexual assaults, fires, school shootings and terrorist attacks -- the hippocampus was not involved. \n\n[...] Indeed, the authors conclude in the paper, \"traumatic memories are not experienced as memories as such,\" but as \"fragments of prior events, subjugating the present moment.\" The traumatic memories appeared to engage a different area of the brain -- the posterior cingulate cortex, or P.C.C., which is usually involved in internally directed thought, like introspection or daydreaming. The more severe the person's PTSD symptoms were, the more activity appeared in the P.C.C. What is striking about this finding is that the P.C.C. is not known as a memory region, but one that is engaged with \"processing of internal experience,\" Dr. Schiller said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Traumatic memories had their own neural mechanism, brain scans showed, which may help explain their vivid and intrusive nature. From a report: At the root of post-traumatic stress disorder, or PTSD, is a memory that cannot be controlled. It may intrude on everyday activity, thrusting a person into the middle of a horrifying event, or surface as night terrors or flashbacks. Decades of treatment of military veterans and sexual assault survivors have left little doubt that traumatic memories function differently from other memories. A group of researchers at Yale University and the Icahn School of Medicine at Mount Sinai set out to find empirical evidence of those differences. \n\nThe team conducted brain scans of 28 people with PTSD while they listened to recorded narrations of their own memories. Some of the recorded memories were neutral, some were simply \"sad,\" and some were traumatic. The brain scans found clear differences, the researchers reported in a paper published on Thursday in the journal Nature Neuroscience. The people listening to the sad memories, which often involved the death of a family member, showed consistently high engagement of the hippocampus, part of the brain that organizes and contextualizes memories. When the same people listened to their traumatic memories -- of sexual assaults, fires, school shootings and terrorist attacks -- the hippocampus was not involved. \n\n[...] Indeed, the authors conclude in the paper, \"traumatic memories are not experienced as memories as such,\" but as \"fragments of prior events, subjugating the present moment.\" The traumatic memories appeared to engage a different area of the brain -- the posterior cingulate cortex, or P.C.C., which is usually involved in internally directed thought, like introspection or daydreaming. The more severe the person's PTSD symptoms were, the more activity appeared in the P.C.C. What is striking about this finding is that the P.C.C. is not known as a memory region, but one that is engaged with \"processing of internal experience,\" Dr. Schiller said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/11/30/1914241/brain-study-suggests-traumatic-memories-are-processed-as-present-experience?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T20:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T19:20:00+00:00", + "title": "Web Browser Suspended Because It Can Browse the Web is Back on Google Play", + "link": "https://tech.slashdot.org/story/23/11/30/1849237/web-browser-suspended-because-it-can-browse-the-web-is-back-on-google-play?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T19:20:00+00:00", + "content": "Google Play has reversed its latest ban on a web browser that keeps getting targeted by vague Digital Millennium Copyright Act (DMCA) notices. Downloader, an Android TV app that combines a browser with a file manager, was restored to Google Play last night. From a report: Downloader, made by app developer Elias Saba, was suspended on Sunday after a DMCA notice submitted by copyright-enforcement firm MarkScan on behalf of Warner Bros. Discovery. It was the second time in six months that Downloader was suspended based on a complaint that the app's web browser is capable of loading websites. \n\nThe first suspension in May lasted three weeks, but Google reversed the latest one much more quickly. As we wrote on Monday, the MarkScan DMCA notice didn't even list any copyrighted works that Downloader supposedly infringed upon. Instead of identifying specific copyrighted works, the MarkScan notice said only that Downloader infringed on \"Properties of Warner Bros. Discovery Inc.\" In the field where a DMCA complainant is supposed to provide an example of where someone can view an authorized example of the work, MarkScan simply entered the main Warner Bros. URL: https://www.warnerbros.com/.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google Play has reversed its latest ban on a web browser that keeps getting targeted by vague Digital Millennium Copyright Act (DMCA) notices. Downloader, an Android TV app that combines a browser with a file manager, was restored to Google Play last night. From a report: Downloader, made by app developer Elias Saba, was suspended on Sunday after a DMCA notice submitted by copyright-enforcement firm MarkScan on behalf of Warner Bros. Discovery. It was the second time in six months that Downloader was suspended based on a complaint that the app's web browser is capable of loading websites. \n\nThe first suspension in May lasted three weeks, but Google reversed the latest one much more quickly. As we wrote on Monday, the MarkScan DMCA notice didn't even list any copyrighted works that Downloader supposedly infringed upon. Instead of identifying specific copyrighted works, the MarkScan notice said only that Downloader infringed on \"Properties of Warner Bros. Discovery Inc.\" In the field where a DMCA complainant is supposed to provide an example of where someone can view an authorized example of the work, MarkScan simply entered the main Warner Bros. URL: https://www.warnerbros.com/.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/11/30/1849237/web-browser-suspended-because-it-can-browse-the-web-is-back-on-google-play?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T19:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T18:40:00+00:00", + "title": "Over 75% of Web3 Games 'Failed' in Last Five Years", + "link": "https://games.slashdot.org/story/23/11/30/1749259/over-75-of-web3-games-failed-in-last-five-years?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T18:40:00+00:00", + "content": "Web3 research and analytics firm CoinGecko: Around 2,127 web3 games have failed in the last five years since the GameFi niche emerged, representing 75.5% of the 2,817 web3 games launched. In other words, 3 out of every 4 web3 games have become inactive. The average annual failure rate for web3 games has been 80.8% from 2018 to 2023, based on the number of web3 games failed compared to launched.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Web3 research and analytics firm CoinGecko: Around 2,127 web3 games have failed in the last five years since the GameFi niche emerged, representing 75.5% of the 2,817 web3 games launched. In other words, 3 out of every 4 web3 games have become inactive. The average annual failure rate for web3 games has been 80.8% from 2018 to 2023, based on the number of web3 games failed compared to launched.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/23/11/30/1749259/over-75-of-web3-games-failed-in-last-five-years?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T18:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T18:02:00+00:00", + "title": "A Star With Six Planets That Orbit Perfectly in Sync", + "link": "https://science.slashdot.org/story/23/11/30/1654236/a-star-with-six-planets-that-orbit-perfectly-in-sync?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T18:02:00+00:00", + "content": "Astronomers have discovered six planets orbiting a bright star in perfect resonance. The star system, 100 light-years from Earth, was described on Wednesday in a paper published in the journal Nature. From a report: The discovery of the system could give astronomers a unique opportunity to trace the evolution of these worlds to when they first formed, and potentially offer insights into how our solar system got to be the way it is today. \"It's like looking at a fossil,\" said Rafael Luque, an astronomer at the University of Chicago who led the study. \"The orbits of the planets today are the same as they were a billion years ago.\" \n\nResearchers think that when planets first form, their orbits around a star are in sync. That is, the time it takes for one planet to waltz around its host star might be the same amount of time it takes for a second planet to circle exactly twice, or exactly three times. Systems that line up like this are known as orbital resonances. But, despite the theory, finding resonances in the Milky Way is rare. Only 1 percent of planetary systems still preserve this symmetry. \n\nMost of the time, planetary orbits get knocked out of sync by an event that upsets the gravitational balance of the system. That could be a close encounter with another star, the formation of a massive planet like Jupiter, or a giant impact from space on one planet that causes a ripple effect in other orbits. When this happens, Dr. Luque said, planetary orbits become too chaotic to mathematically describe, and knowledge of their evolution is indecipherable. Astronomers are lucky to find even one pair of exoplanets in resonance. But in the newly discovered star system, there are a whopping five pairs, because all six planets have orbits that are in sync with one another. Dr. Luque described it as \"the 1 percent of the 1 percent.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Astronomers have discovered six planets orbiting a bright star in perfect resonance. The star system, 100 light-years from Earth, was described on Wednesday in a paper published in the journal Nature. From a report: The discovery of the system could give astronomers a unique opportunity to trace the evolution of these worlds to when they first formed, and potentially offer insights into how our solar system got to be the way it is today. \"It's like looking at a fossil,\" said Rafael Luque, an astronomer at the University of Chicago who led the study. \"The orbits of the planets today are the same as they were a billion years ago.\" \n\nResearchers think that when planets first form, their orbits around a star are in sync. That is, the time it takes for one planet to waltz around its host star might be the same amount of time it takes for a second planet to circle exactly twice, or exactly three times. Systems that line up like this are known as orbital resonances. But, despite the theory, finding resonances in the Milky Way is rare. Only 1 percent of planetary systems still preserve this symmetry. \n\nMost of the time, planetary orbits get knocked out of sync by an event that upsets the gravitational balance of the system. That could be a close encounter with another star, the formation of a massive planet like Jupiter, or a giant impact from space on one planet that causes a ripple effect in other orbits. When this happens, Dr. Luque said, planetary orbits become too chaotic to mathematically describe, and knowledge of their evolution is indecipherable. Astronomers are lucky to find even one pair of exoplanets in resonance. But in the newly discovered star system, there are a whopping five pairs, because all six planets have orbits that are in sync with one another. Dr. Luque described it as \"the 1 percent of the 1 percent.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/11/30/1654236/a-star-with-six-planets-that-orbit-perfectly-in-sync?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T18:02:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T17:25:00+00:00", + "title": "Activision Blizzard Had a Plan, or Ploy, To Launch Its Own Android Game Store", + "link": "https://tech.slashdot.org/story/23/11/30/1648220/activision-blizzard-had-a-plan-or-ploy-to-launch-its-own-android-game-store?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T17:25:00+00:00", + "content": "An anonymous reader shares a report: Until today, we'd never heard of \"Project Boston.\" It was Activision Blizzard King's big plan to earn more money from its mobile games by changing its relationship with Google. And if things had gone differently, it would have given Activision Blizzard its own app store on Android. In late 2019, according to internal emails and documents I saw today in the courtroom during the Epic v. Google trial, the company decided it was going to dual-track two intriguing parallel plans. \n\nThe first plan was to build its own mobile game store -- either in partnership with Epic Games and Clash of Clans publisher Supercell or all by itself -- to bypass the Google Play Store. You'd download it from a website, sideload it onto your Android phone, and then you'd be able to purchase, download, and patch games like Candy Crush, Call of Duty: Mobile, and Diablo Immortal there. In private emails with Epic CEO Tim Sweeney, Activision Blizzard CFO Armin Zerza pitched it as the \"Steam of Mobile\" -- a single place to buy mobile games, with a single payment system. Documents suggest the store would charge a transaction fee of 10 to 12 percent, lower than the 30 percent fee Google (and Nintendo, Sony, Microsoft, and Steam) impose on gaming transactions.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader shares a report: Until today, we'd never heard of \"Project Boston.\" It was Activision Blizzard King's big plan to earn more money from its mobile games by changing its relationship with Google. And if things had gone differently, it would have given Activision Blizzard its own app store on Android. In late 2019, according to internal emails and documents I saw today in the courtroom during the Epic v. Google trial, the company decided it was going to dual-track two intriguing parallel plans. \n\nThe first plan was to build its own mobile game store -- either in partnership with Epic Games and Clash of Clans publisher Supercell or all by itself -- to bypass the Google Play Store. You'd download it from a website, sideload it onto your Android phone, and then you'd be able to purchase, download, and patch games like Candy Crush, Call of Duty: Mobile, and Diablo Immortal there. In private emails with Epic CEO Tim Sweeney, Activision Blizzard CFO Armin Zerza pitched it as the \"Steam of Mobile\" -- a single place to buy mobile games, with a single payment system. Documents suggest the store would charge a transaction fee of 10 to 12 percent, lower than the 30 percent fee Google (and Nintendo, Sony, Microsoft, and Steam) impose on gaming transactions.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/11/30/1648220/activision-blizzard-had-a-plan-or-ploy-to-launch-its-own-android-game-store?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T17:25:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T16:40:00+00:00", + "title": "Microsoft President Says No Chance of Super-Intelligent AI Soon", + "link": "https://slashdot.org/story/23/11/30/1639238/microsoft-president-says-no-chance-of-super-intelligent-ai-soon?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T16:40:00+00:00", + "content": "The president of tech giant Microsoft said there is no chance of super-intelligent artificial intelligence being created within the next 12 months, and cautioned that the technology could be decades away. From a report: OpenAI cofounder Sam Altman earlier this month was removed as CEO by the company's board of directors, but was swiftly reinstated after a weekend of outcry from employees and shareholders. Reuters last week exclusively reported that the ouster came shortly after researchers had contacted the board, warning of a dangerous discovery they feared could have unintended consequences. \n\nThe internal project named Q* (pronounced Q-Star) could be a breakthrough in the startup's search for what's known as artificial general intelligence (AGI), one source told Reuters. OpenAI defines AGI as autonomous systems that surpass humans in most economically valuable tasks. However, Microsoft President Brad Smith, speaking to reporters in Britain on Thursday, rejected claims of a dangerous breakthrough. \"There's absolutely no probability that you're going to see this so-called AGI, where computers are more powerful than people, in the next 12 months. It's going to take years, if not many decades, but I still think the time to focus on safety is now,\" he said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The president of tech giant Microsoft said there is no chance of super-intelligent artificial intelligence being created within the next 12 months, and cautioned that the technology could be decades away. From a report: OpenAI cofounder Sam Altman earlier this month was removed as CEO by the company's board of directors, but was swiftly reinstated after a weekend of outcry from employees and shareholders. Reuters last week exclusively reported that the ouster came shortly after researchers had contacted the board, warning of a dangerous discovery they feared could have unintended consequences. \n\nThe internal project named Q* (pronounced Q-Star) could be a breakthrough in the startup's search for what's known as artificial general intelligence (AGI), one source told Reuters. OpenAI defines AGI as autonomous systems that surpass humans in most economically valuable tasks. However, Microsoft President Brad Smith, speaking to reporters in Britain on Thursday, rejected claims of a dangerous breakthrough. \"There's absolutely no probability that you're going to see this so-called AGI, where computers are more powerful than people, in the next 12 months. It's going to take years, if not many decades, but I still think the time to focus on safety is now,\" he said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/23/11/30/1639238/microsoft-president-says-no-chance-of-super-intelligent-ai-soon?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T16:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T16:05:00+00:00", + "title": "Your Unused Gmail Account May Be Permanently Deleted Friday", + "link": "https://tech.slashdot.org/story/23/11/30/1532251/your-unused-gmail-account-may-be-permanently-deleted-friday?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T16:05:00+00:00", + "content": "Google will start to sweep away cobweb-collecting Gmail accounts this week. If you have an email address you haven't touched in a couple of years, it might soon be gone. From a report: The tech giant on Friday will start deleting personal Google accounts that have remained inactive for at least two years -- and going forward, it will continue killing accounts that reach two years of disuse. Once deleted, the accounts and any items in them can't be recovered. This could mean the end of personal emails, cherished documents and candid photos and videos tucked away in old Gmail accounts, Google Drives and other nooks in Google's servers.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google will start to sweep away cobweb-collecting Gmail accounts this week. If you have an email address you haven't touched in a couple of years, it might soon be gone. From a report: The tech giant on Friday will start deleting personal Google accounts that have remained inactive for at least two years -- and going forward, it will continue killing accounts that reach two years of disuse. Once deleted, the accounts and any items in them can't be recovered. This could mean the end of personal emails, cherished documents and candid photos and videos tucked away in old Gmail accounts, Google Drives and other nooks in Google's servers.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/11/30/1532251/your-unused-gmail-account-may-be-permanently-deleted-friday?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T16:05:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T15:20:00+00:00", + "title": "Meta's VR Headsets Have a Sweat-Sharing Problem", + "link": "https://tech.slashdot.org/story/23/11/30/1519206/metas-vr-headsets-have-a-sweat-sharing-problem?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T15:20:00+00:00", + "content": "It's the busiest shopping season of the year, but one item that doesn't appear to be flying off store shelves is Meta Platforms's Quest brand of virtual-reality headsets. Part of the reason is that many shoppers aren't comfortable trying one on in a store. From a report: The headsets are prone to collect dirt and grime and smear your makeup. During the peak of the Covid-19 pandemic, people were especially resistant to put them on in stores, even though Meta paid to have cleaners on hand to sanitize the headsets between each use, said a former Meta employee who wasn't authorized to speak publicly and asked not to be identified. \n\nThe health emergency is over, but many people are still weirded out by the idea of putting on a VR headset in public. Meta sells the Quest in the US through the stores of mobile carriers like AT&T, T-Mobile and Verizon. The thinking was, people are already trying out and buying other gadgets there. But picking up a phone that other people have touched feels different than strapping something to your face that other people have strapped to theirs. In-store sales of Quest headsets at mobile carriers' locations are very low, according to former employees of Reality Labs, the division that builds Meta's VR products.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "It's the busiest shopping season of the year, but one item that doesn't appear to be flying off store shelves is Meta Platforms's Quest brand of virtual-reality headsets. Part of the reason is that many shoppers aren't comfortable trying one on in a store. From a report: The headsets are prone to collect dirt and grime and smear your makeup. During the peak of the Covid-19 pandemic, people were especially resistant to put them on in stores, even though Meta paid to have cleaners on hand to sanitize the headsets between each use, said a former Meta employee who wasn't authorized to speak publicly and asked not to be identified. \n\nThe health emergency is over, but many people are still weirded out by the idea of putting on a VR headset in public. Meta sells the Quest in the US through the stores of mobile carriers like AT&T, T-Mobile and Verizon. The thinking was, people are already trying out and buying other gadgets there. But picking up a phone that other people have touched feels different than strapping something to your face that other people have strapped to theirs. In-store sales of Quest headsets at mobile carriers' locations are very low, according to former employees of Reality Labs, the division that builds Meta's VR products.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/11/30/1519206/metas-vr-headsets-have-a-sweat-sharing-problem?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T15:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T14:42:00+00:00", + "title": "Google Warns China Is Ramping Up Cyberattacks Against Taiwan", + "link": "https://tech.slashdot.org/story/23/11/30/1442258/google-warns-china-is-ramping-up-cyberattacks-against-taiwan?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T14:42:00+00:00", + "content": "China is waging a growing number of cyberattacks on neighboring Taiwan, according to cybersecurity experts at Alphabet's Google. From a report: Google has observed a \"massive increase\" in Chinese cyberattacks on Taiwan in the last six months or so, said Kate Morgan, a senior engineering manager in Google's threat analysis division, which monitors government-sponsored hacking campaigns. Morgan warned that Chinese hackers are employing tactics that make their work difficult to track, such as breaking into small home and office internet routers and repurposing them to wage attacks while masking their true origin. \n\n\"The number of groups in China that are performing hacking and trying to get into technology companies or get into cloud customers is huge,\" Morgan said. \"I don't have the exact number, but it is probably over 100 groups that we are tracking just out of China alone.\" The hackers are going \"after everything,\" including defense sector, government and private industry on the island, she said. Google's findings come as concerns have grown over the prospect of a conflict in Taiwan. The relationship between the US -- Taiwan's top military backer -- and China has deteriorated in recent years over a wide range of issues including Taiwan, human rights and a race to dominate advanced technologies such as chips, quantum computing and artificial intelligence.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "China is waging a growing number of cyberattacks on neighboring Taiwan, according to cybersecurity experts at Alphabet's Google. From a report: Google has observed a \"massive increase\" in Chinese cyberattacks on Taiwan in the last six months or so, said Kate Morgan, a senior engineering manager in Google's threat analysis division, which monitors government-sponsored hacking campaigns. Morgan warned that Chinese hackers are employing tactics that make their work difficult to track, such as breaking into small home and office internet routers and repurposing them to wage attacks while masking their true origin. \n\n\"The number of groups in China that are performing hacking and trying to get into technology companies or get into cloud customers is huge,\" Morgan said. \"I don't have the exact number, but it is probably over 100 groups that we are tracking just out of China alone.\" The hackers are going \"after everything,\" including defense sector, government and private industry on the island, she said. Google's findings come as concerns have grown over the prospect of a conflict in Taiwan. The relationship between the US -- Taiwan's top military backer -- and China has deteriorated in recent years over a wide range of issues including Taiwan, human rights and a race to dominate advanced technologies such as chips, quantum computing and artificial intelligence.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/11/30/1442258/google-warns-china-is-ramping-up-cyberattacks-against-taiwan?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T14:42:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-11-30T14:01:00+00:00", + "title": "Microsoft Wants Game Pass On PlayStation, Nintendo, And 'Every Screen' Possible", + "link": "https://games.slashdot.org/story/23/11/30/149246/microsoft-wants-game-pass-on-playstation-nintendo-and-every-screen-possible?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-11-30T14:01:00+00:00", + "content": "Microsoft wants to bring Xbox Game Pass to PlayStation and Nintendo. From a report: Xbox CFO Tim Stuart said during the Wells Fargo TMT Summit this week that the goal is to make first-party games and Game Pass available on \"every screen that can play games,\" and this includes rival consoles. \"It's a bit of a change of strategy. Not announcing anything broadly here, but our mission is to bring our first-party experiences [and] our subscription services to every screen that can play games,\" Stuart said. \"That means smart TVs, that means mobile devices, that means what we would have thought of as competitors in the past like PlayStation and Nintendo.\" \n\nStuart said Game Pass is a \"high margin\" business for Microsoft, along with first-party games and advertising. These are all areas that Microsoft plans to expand into significantly in the time ahead, Stuart said. The executive added that buying Activision Blizzard helps Microsoft get there faster than it might have been able to on its own. For the advertising part specifically, the Candy Crush mobile game series from King -- which is now owned by Microsoft -- is deeply embedded with ads and microtransactions.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Microsoft wants to bring Xbox Game Pass to PlayStation and Nintendo. From a report: Xbox CFO Tim Stuart said during the Wells Fargo TMT Summit this week that the goal is to make first-party games and Game Pass available on \"every screen that can play games,\" and this includes rival consoles. \"It's a bit of a change of strategy. Not announcing anything broadly here, but our mission is to bring our first-party experiences [and] our subscription services to every screen that can play games,\" Stuart said. \"That means smart TVs, that means mobile devices, that means what we would have thought of as competitors in the past like PlayStation and Nintendo.\" \n\nStuart said Game Pass is a \"high margin\" business for Microsoft, along with first-party games and advertising. These are all areas that Microsoft plans to expand into significantly in the time ahead, Stuart said. The executive added that buying Activision Blizzard helps Microsoft get there faster than it might have been able to on its own. For the advertising part specifically, the Candy Crush mobile game series from King -- which is now owned by Microsoft -- is deeply embedded with ads and microtransactions.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/23/11/30/149246/microsoft-wants-game-pass-on-playstation-nintendo-and-every-screen-possible?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-11-30T14:01:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-01T00:45:00+00:00", + "title": "US Judge Blocks Montana From Banning TikTok Use In State", + "link": "https://yro.slashdot.org/story/23/12/01/007246/us-judge-blocks-montana-from-banning-tiktok-use-in-state?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-01T00:45:00+00:00", + "content": "Montana's first-of-its-kind state ban on TikTok has been blocked by a U.S. judge, saying it \"oversteps state power and infringes on the constitutional rights of users.\" Reuters reports: TikTok, which is owned by China's ByteDance, did not immediately comment Thursday. The company sued Montana in May, seeking to block the U.S. state ban on several grounds, arguing that it violates the First Amendment free speech rights of the company and users. TikTok users in Montana also filed suit to block the ban. TikTok said in a court filing it \"has not shared, and would not share, U.S. user data with the Chinese government, and has taken substantial measures to protect the privacy and security of TikTok users.\"\n \nMolloy, who was appointed to the bench by Democratic President Bill Clinton, found merit to numerous arguments raised by TikTok in his opinion. During an October hearing, Molloy questioned why no other state had followed Montana in banning TikTok and asked if the state was being \"paternalistic\" in arguing the ban was necessary to protect the data of TikTok users. Montana could have imposed fines of $10,000 for each violation by TikTok in the state but the law did not impose penalties on individual TikTok users.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Montana's first-of-its-kind state ban on TikTok has been blocked by a U.S. judge, saying it \"oversteps state power and infringes on the constitutional rights of users.\" Reuters reports: TikTok, which is owned by China's ByteDance, did not immediately comment Thursday. The company sued Montana in May, seeking to block the U.S. state ban on several grounds, arguing that it violates the First Amendment free speech rights of the company and users. TikTok users in Montana also filed suit to block the ban. TikTok said in a court filing it \"has not shared, and would not share, U.S. user data with the Chinese government, and has taken substantial measures to protect the privacy and security of TikTok users.\"\n \nMolloy, who was appointed to the bench by Democratic President Bill Clinton, found merit to numerous arguments raised by TikTok in his opinion. During an October hearing, Molloy questioned why no other state had followed Montana in banning TikTok and asked if the state was being \"paternalistic\" in arguing the ban was necessary to protect the data of TikTok users. Montana could have imposed fines of $10,000 for each violation by TikTok in the state but the law did not impose penalties on individual TikTok users.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/12/01/007246/us-judge-blocks-montana-from-banning-tiktok-use-in-state?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-01T00:45:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-01T00:02:00+00:00", + "title": "Apple and Google Pick AllTrails and Imprint As Their 'App of the Year'", + "link": "https://mobile.slashdot.org/story/23/11/30/2224211/apple-and-google-pick-alltrails-and-imprint-as-their-app-of-the-year?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-01T00:02:00+00:00", + "content": "An anonymous reader quotes a report from TechCrunch: Both Apple and Google today announced their best apps and games of the year, with the hiking and biking companion AllTrails winning as Apple's iPhone App of the Year in 2023, while the educational app Imprint: Learn Visually won as Google Play's best app. Meanwhile, Apple and Google agreed on their Game of the Year, as both picked Honkai: Star Rail as their winner.\n \nThese year-end \"best of\" lists aren't just a way to drive interest in new apps and games, but serve as a way to gauge the status of the app marketplaces, what the platforms themselves wanted to celebrate and what drew consumers' attention in the year. Surprisingly, however, Apple this year bucked the trend of highlighting apps that were new to the store or that had taken advantage of a recently released technology in an innovative way. Instead, its finalists for iPhone App of the Year included apps that have long deserved accolades as well-built and well-designed mobile companions, including the language learning app Duolingo and travel app Flighty, in addition to winner AllTrails. Still, it's worth noting that this is a different type of selection than in previous years, when App Store winners included the breakout social hit BeReal in 2022 and the well-received children's app Toca Life World the year prior.\n \nIt's also worth noting that neither Apple nor Google chose an AI app as its app of the year, despite the incredible success of ChatGPT's mobile app and others. That's particularly odd given that ChatGPT became the fastest-growing consumer application in history earlier this year when it reached 100 million users shortly after its launch. That record was later broken by Instagram Threads, which hit 100 million users within just five days, and as of October had still maintained an active user base of just under 100 million. (However, the 100 million users Threads initially counted were sign-ups, not monthly active users, we should note. Meanwhile, ChatGPT's rise to 100 million users included its web app, so it's not an apples-to-apples comparison.) Either one of these picks would represent a mobile app success story, but both app store platforms looked to others as the top winners this year. Plus, outside of ChatGPT, many other AI apps are raking in millions in revenue as well, so the decision to avoid the AI category seems a deliberate choice on Apple's part.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Both Apple and Google today announced their best apps and games of the year, with the hiking and biking companion AllTrails winning as Apple's iPhone App of the Year in 2023, while the educational app Imprint: Learn Visually won as Google Play's best app. Meanwhile, Apple and Google agreed on their Game of the Year, as both picked Honkai: Star Rail as their winner.\n \nThese year-end \"best of\" lists aren't just a way to drive interest in new apps and games, but serve as a way to gauge the status of the app marketplaces, what the platforms themselves wanted to celebrate and what drew consumers' attention in the year. Surprisingly, however, Apple this year bucked the trend of highlighting apps that were new to the store or that had taken advantage of a recently released technology in an innovative way. Instead, its finalists for iPhone App of the Year included apps that have long deserved accolades as well-built and well-designed mobile companions, including the language learning app Duolingo and travel app Flighty, in addition to winner AllTrails. Still, it's worth noting that this is a different type of selection than in previous years, when App Store winners included the breakout social hit BeReal in 2022 and the well-received children's app Toca Life World the year prior.\n \nIt's also worth noting that neither Apple nor Google chose an AI app as its app of the year, despite the incredible success of ChatGPT's mobile app and others. That's particularly odd given that ChatGPT became the fastest-growing consumer application in history earlier this year when it reached 100 million users shortly after its launch. That record was later broken by Instagram Threads, which hit 100 million users within just five days, and as of October had still maintained an active user base of just under 100 million. (However, the 100 million users Threads initially counted were sign-ups, not monthly active users, we should note. Meanwhile, ChatGPT's rise to 100 million users included its web app, so it's not an apples-to-apples comparison.) Either one of these picks would represent a mobile app success story, but both app store platforms looked to others as the top winners this year. Plus, outside of ChatGPT, many other AI apps are raking in millions in revenue as well, so the decision to avoid the AI category seems a deliberate choice on Apple's part.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://mobile.slashdot.org/story/23/11/30/2224211/apple-and-google-pick-alltrails-and-imprint-as-their-app-of-the-year?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-01T00:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-01T01:25:00+00:00", + "title": "Microsoft In Talks To Launch Mobile Gaming Store, Rivaling Apple", + "link": "https://games.slashdot.org/story/23/12/01/0022236/microsoft-in-talks-to-launch-mobile-gaming-store-rivaling-apple?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-01T01:25:00+00:00", + "content": "According to Microsoft Gaming CEO Phil Spencer, the company is talking to partners to help launch a mobile gaming store that will take on Apple and Google. \"It's an important part of our strategy and something we are actively working on today not only alone, but talking to other partners who'd also like to see more choice for how they can monetize on the phone,\" Spencer said in an interview in Sao Paulo during the CCXP comics and entertainment convention. From the report: The executive declined to give a specific date for a launch of the online store, which earlier reports suggested could be next year. \"I don't think this is multiple years away, I think this is sooner than that,'' he said. [...] Microsoft's mobile store would also enter a challenging regulatory climate around smartphone-based digital marketplaces. Fortnite-maker Epic Games has sued both Apple and Alphabet's Google over their iOS and Android store practices, alleging they are unnecessarily restrictive and unfair. Apple doesn't allow competing stores on its iPhone and iPad platforms, and collects a 30% cut of sales for most purchases. Game makers have taken issue with the fees.\n \nEpic lost its battle with Apple but in September asked the US Supreme Court to weigh in. Apple is also petitioning that court to reverse an order that would force the company to let developers steer customers to other payment methods. Epic is still in court fighting its case against Google, which does allow third-party app stores on its devices.The European Union's Digital Markets Act, which is just beginning to take effect, could force Apple to open up its app store ecosystem. Apple is challenging the regulation.\n \nMicrosoft may be able to use long-standing resentment against the market leaders to martial support for its store offering. Xbox's cloud gaming technology already lets users stream blockbuster games to mobile phones. \"We've talked about choice, and today on your mobile phones, you don't have choice,'' Spencer said. \"To make sure that Xbox is not only relevant today but for the next 10, 20 years, we're going to have to be strong across many screens.\" Earlier this week, Xbox CFO Tim Stuart said during the Wells Fargo TMT Summit that Microsoft wants to make first-party games and Game Pass available on \"every screen that can play games,\" including rival consoles. \"It's a bit of a change of strategy. Not announcing anything broadly here, but our mission is to bring our first-party experiences [and] our subscription services to every screen that can play games,\" Stuart said. \"That means smart TVs, that means mobile devices, that means what we would have thought of as competitors in the past like PlayStation and Nintendo.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "According to Microsoft Gaming CEO Phil Spencer, the company is talking to partners to help launch a mobile gaming store that will take on Apple and Google. \"It's an important part of our strategy and something we are actively working on today not only alone, but talking to other partners who'd also like to see more choice for how they can monetize on the phone,\" Spencer said in an interview in Sao Paulo during the CCXP comics and entertainment convention. From the report: The executive declined to give a specific date for a launch of the online store, which earlier reports suggested could be next year. \"I don't think this is multiple years away, I think this is sooner than that,'' he said. [...] Microsoft's mobile store would also enter a challenging regulatory climate around smartphone-based digital marketplaces. Fortnite-maker Epic Games has sued both Apple and Alphabet's Google over their iOS and Android store practices, alleging they are unnecessarily restrictive and unfair. Apple doesn't allow competing stores on its iPhone and iPad platforms, and collects a 30% cut of sales for most purchases. Game makers have taken issue with the fees.\n \nEpic lost its battle with Apple but in September asked the US Supreme Court to weigh in. Apple is also petitioning that court to reverse an order that would force the company to let developers steer customers to other payment methods. Epic is still in court fighting its case against Google, which does allow third-party app stores on its devices.The European Union's Digital Markets Act, which is just beginning to take effect, could force Apple to open up its app store ecosystem. Apple is challenging the regulation.\n \nMicrosoft may be able to use long-standing resentment against the market leaders to martial support for its store offering. Xbox's cloud gaming technology already lets users stream blockbuster games to mobile phones. \"We've talked about choice, and today on your mobile phones, you don't have choice,'' Spencer said. \"To make sure that Xbox is not only relevant today but for the next 10, 20 years, we're going to have to be strong across many screens.\" Earlier this week, Xbox CFO Tim Stuart said during the Wells Fargo TMT Summit that Microsoft wants to make first-party games and Game Pass available on \"every screen that can play games,\" including rival consoles. \"It's a bit of a change of strategy. Not announcing anything broadly here, but our mission is to bring our first-party experiences [and] our subscription services to every screen that can play games,\" Stuart said. \"That means smart TVs, that means mobile devices, that means what we would have thought of as competitors in the past like PlayStation and Nintendo.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/23/12/01/0022236/microsoft-in-talks-to-launch-mobile-gaming-store-rivaling-apple?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-01T01:25:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-01T02:02:00+00:00", + "title": "Hyundai and Kia's New 'Uni Wheel' Drive System Could Revolutionize EV Design", + "link": "https://tech.slashdot.org/story/23/12/01/0032246/hyundai-and-kias-new-uni-wheel-drive-system-could-revolutionize-ev-design?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-01T02:02:00+00:00", + "content": "\"Two articles from Electrek and InsideEVs describe Hyundai and Kia's new 'Uni Wheel' drive system that could revolutionize EV design,\" writes longtime Slashdot reader Uncle_Meataxe. From a report: Described by its makers as a \"paradigm-shifting vehicle drive system,\" the Uni Wheel moves the main drive system components to the vacant space within an EVs wheel hubs. The approach utilizes a planetary gear configuration consisting of a sun gear in the center, four pinion gears on each side, and a ring gear surrounding everything. Traditional ICE vehicles utilize CV joints, but by moving them closer to the wheels requires a short drive train length and as a result, a decrease in efficiency and durability -- especially over bumpy terrain. Hyundai and Kia's Uni Wheel system on the other hand, can transmit power with almost zero changes to efficiency, regardless of wheel movement. \"Advantages include more platform space and more room within an EV's interior,\" adds Uncle_Meataxe. \"When this system may be integrated into an actual EV remains unclear, but Kia and Hyundai have already registered eight patents related to the technology.\" You can learn more about the new drive system via an instructional video on YouTube.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "\"Two articles from Electrek and InsideEVs describe Hyundai and Kia's new 'Uni Wheel' drive system that could revolutionize EV design,\" writes longtime Slashdot reader Uncle_Meataxe. From a report: Described by its makers as a \"paradigm-shifting vehicle drive system,\" the Uni Wheel moves the main drive system components to the vacant space within an EVs wheel hubs. The approach utilizes a planetary gear configuration consisting of a sun gear in the center, four pinion gears on each side, and a ring gear surrounding everything. Traditional ICE vehicles utilize CV joints, but by moving them closer to the wheels requires a short drive train length and as a result, a decrease in efficiency and durability -- especially over bumpy terrain. Hyundai and Kia's Uni Wheel system on the other hand, can transmit power with almost zero changes to efficiency, regardless of wheel movement. \"Advantages include more platform space and more room within an EV's interior,\" adds Uncle_Meataxe. \"When this system may be integrated into an actual EV remains unclear, but Kia and Hyundai have already registered eight patents related to the technology.\" You can learn more about the new drive system via an instructional video on YouTube.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/01/0032246/hyundai-and-kias-new-uni-wheel-drive-system-could-revolutionize-ev-design?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-01T02:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-08T07:00:00+00:00", + "title": "Light Can Be Reflected Not Only In Space But Also In Time", + "link": "https://science.slashdot.org/story/23/12/08/0222251/light-can-be-reflected-not-only-in-space-but-also-in-time?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-08T07:00:00+00:00", + "content": "Anna Demming reports via Scientific American: [A]lthough so far there's no way to unscramble an egg, in certain carefully controlled scenarios within relatively simple systems, researchers have managed to turn back time. The trick is to create a certain kind of reflection. First, imagine a regular spatial reflection, like one you see in a silver-backed glass mirror. Here reflection occurs because for a ray of light, silver is a very different transmission medium than air; the sudden change in optical properties causes the light to bounce back, like a Ping-Pong ball hitting a wall. Now imagine that instead of changing at particular points in space, the optical properties all along the ray's path change sharply at a specific moment in time. Rather than recoiling in space, the light would recoil in time, precisely retracing its tracks, like the Ping-Pong ball returning to the player who last hit it. This is a \"time reflection.\" Time reflections have fascinated theorists for decades but have proved devilishly tricky to pull off in practice because rapidly and sufficiently changing a material's optical properties is no small task. Now, however, researchers at the City University of New York have demonstrated a breakthrough: the creation of light-based time reflections. To do so, physicist Andrea Alu and his colleagues devised a \"metamaterial\" with adjustable optical properties that they could tweak within fractions of a nanosecond to halve or double how quickly light passes through. Metamaterials have properties determined by their structures; many are composed of arrays of microscopic rods or rings that can be tuned to interact with and manipulate light in ways that no natural material can. Bringing their power to bear on time reflections, Alu says, revealed some surprises. \"Now we are realizing that [time reflections] can be much richer than we thought because of the way that we implement them,\" he adds. [...]\n \nThe device Alu and his collaborators developed is essentially a waveguide that channels microwave-frequency light. A densely spaced array of switches along the waveguide connects it to capacitor circuits, which can dynamically add or remove material for the light to encounter. This can radically shift the waveguide's effective properties, such as how easily it allows light to pass through. \"We are not changing the material; we are adding or subtracting material,\" Alu says. \"That is why the process can be so fast.\" Time reflections come with a range of counterintuitive effects that have been theoretically predicted but never demonstrated with light. For instance, what is at the beginning of the original signal will be at the end of the reflected signal -- a situation akin to looking at yourself in a mirror and seeing the back of your head. In addition, whereas a standard reflection alters how light traverses space, a time reflection alters light's temporal components -- that is, its frequencies. As a result, in a time-reflected view, the back of your head is also a different color. Alu and his colleagues observed both of these effects in the team's device. Together they hold promise for fueling further advances in signal processing and communications -- two domains that are vital for the function of, say, your smartphone, which relies on effects such as shifting frequencies.\n \nJust a few months after developing the device, Alu and his colleagues observed more surprising behavior when they tried creating a time reflection in that waveguide while shooting two beams of light at each other inside it. Normally colliding beams of light behave as waves, producing interference patterns where their overlapping peaks and troughs add up or cancel out like ripples on water (in \"constructive\" or \"destructive\" interference, respectively). But light can, in fact, act as a pointlike projectile, a photon, as well as a wavelike oscillating field -- that is, it has \"wave-particle duality.\" Generally a particular scenario will distinctly elicit just one behavior or the other, however. For instance, colliding beams of light don't bounce off each other like billiard balls! But according to Alu and his team's experiments, when a time reflection occurs, it seems that they do. The researchers achieved this curious effect by controlling whether the colliding waves were interfering constructively or destructively -- whether they were adding or subtracting from each other -- when the time reflection occurred. By controlling the specific instant when the time reflection took place, the scientists demonstrated that the two waves bounce off each other with the same wave amplitudes that they started with, like colliding billiard balls. Alternatively they could end up with less energy, like recoiling spongy balls, or even gain energy, as would be the case for balls at either end of a stretched spring. \"We can make these interactions energy-conserving, energy-supplying or energy-suppressing,\" Alu says, highlighting how time reflections could provide a new control knob for applications that involve energy conversion and pulse shaping, in which the shape of a wave is changed to optimize a pulse's signal.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Anna Demming reports via Scientific American: [A]lthough so far there's no way to unscramble an egg, in certain carefully controlled scenarios within relatively simple systems, researchers have managed to turn back time. The trick is to create a certain kind of reflection. First, imagine a regular spatial reflection, like one you see in a silver-backed glass mirror. Here reflection occurs because for a ray of light, silver is a very different transmission medium than air; the sudden change in optical properties causes the light to bounce back, like a Ping-Pong ball hitting a wall. Now imagine that instead of changing at particular points in space, the optical properties all along the ray's path change sharply at a specific moment in time. Rather than recoiling in space, the light would recoil in time, precisely retracing its tracks, like the Ping-Pong ball returning to the player who last hit it. This is a \"time reflection.\" Time reflections have fascinated theorists for decades but have proved devilishly tricky to pull off in practice because rapidly and sufficiently changing a material's optical properties is no small task. Now, however, researchers at the City University of New York have demonstrated a breakthrough: the creation of light-based time reflections. To do so, physicist Andrea Alu and his colleagues devised a \"metamaterial\" with adjustable optical properties that they could tweak within fractions of a nanosecond to halve or double how quickly light passes through. Metamaterials have properties determined by their structures; many are composed of arrays of microscopic rods or rings that can be tuned to interact with and manipulate light in ways that no natural material can. Bringing their power to bear on time reflections, Alu says, revealed some surprises. \"Now we are realizing that [time reflections] can be much richer than we thought because of the way that we implement them,\" he adds. [...]\n \nThe device Alu and his collaborators developed is essentially a waveguide that channels microwave-frequency light. A densely spaced array of switches along the waveguide connects it to capacitor circuits, which can dynamically add or remove material for the light to encounter. This can radically shift the waveguide's effective properties, such as how easily it allows light to pass through. \"We are not changing the material; we are adding or subtracting material,\" Alu says. \"That is why the process can be so fast.\" Time reflections come with a range of counterintuitive effects that have been theoretically predicted but never demonstrated with light. For instance, what is at the beginning of the original signal will be at the end of the reflected signal -- a situation akin to looking at yourself in a mirror and seeing the back of your head. In addition, whereas a standard reflection alters how light traverses space, a time reflection alters light's temporal components -- that is, its frequencies. As a result, in a time-reflected view, the back of your head is also a different color. Alu and his colleagues observed both of these effects in the team's device. Together they hold promise for fueling further advances in signal processing and communications -- two domains that are vital for the function of, say, your smartphone, which relies on effects such as shifting frequencies.\n \nJust a few months after developing the device, Alu and his colleagues observed more surprising behavior when they tried creating a time reflection in that waveguide while shooting two beams of light at each other inside it. Normally colliding beams of light behave as waves, producing interference patterns where their overlapping peaks and troughs add up or cancel out like ripples on water (in \"constructive\" or \"destructive\" interference, respectively). But light can, in fact, act as a pointlike projectile, a photon, as well as a wavelike oscillating field -- that is, it has \"wave-particle duality.\" Generally a particular scenario will distinctly elicit just one behavior or the other, however. For instance, colliding beams of light don't bounce off each other like billiard balls! But according to Alu and his team's experiments, when a time reflection occurs, it seems that they do. The researchers achieved this curious effect by controlling whether the colliding waves were interfering constructively or destructively -- whether they were adding or subtracting from each other -- when the time reflection occurred. By controlling the specific instant when the time reflection took place, the scientists demonstrated that the two waves bounce off each other with the same wave amplitudes that they started with, like colliding billiard balls. Alternatively they could end up with less energy, like recoiling spongy balls, or even gain energy, as would be the case for balls at either end of a stretched spring. \"We can make these interactions energy-conserving, energy-supplying or energy-suppressing,\" Alu says, highlighting how time reflections could provide a new control knob for applications that involve energy conversion and pulse shaping, in which the shape of a wave is changed to optimize a pulse's signal.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/08/0222251/light-can-be-reflected-not-only-in-space-but-also-in-time?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-08T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-08T03:30:00+00:00", + "title": "Meta Publicly Launches AI Image Generator Trained On Your Facebook, Instagram Photos", + "link": "https://meta.slashdot.org/story/23/12/07/2345225/meta-publicly-launches-ai-image-generator-trained-on-your-facebook-instagram-photos?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-08T03:30:00+00:00", + "content": "An anonymous reader quotes a report from VentureBeat: Meta Platforms, the parent company of Facebook, Instagram, Whatsapp and Quest VR headsets and creator of leading open source large language model Llama 2 -- is getting into the text-to-image AI generator game. Actually, to clarify: Meta was already in that game via a text-to-image and text-to-sticker generator that was launched within Facebook and Instagram Messengers earlier this year. However, as of this week, the company has launched a standalone text-to-image AI generator service, \"Imagine\" outside of its messaging platforms. Meta's Imagine now a website you can simply visit and begin generating images from: imagine.meta.com. You'll still need to log in with your Meta or Facebook/Instagram account (I tried Facebook, and it forced me to create a new \"Meta account,\" but hey -- it still worked). [...]\n \nMeta's Imagine service was built on its own AI model called Emu, which was trained on 1.1 billion Facebook and Instagram user photos, as noted by Ars Technica and disclosed in the Emu research paper published by Meta engineers back in September. An earlier report by Reuters noted that Meta excluded private messages and images that were not shared publicly on its services.\n \nWhen developing Emu, Meta's researchers also fine-tuned it around quality metrics. As they wrote in their paper: \"Our key insight is that to effectively perform quality tuning, a surprisingly small amount -- a couple of thousand -- exceptionally high-quality images and associated text is enough to make a significant impact on the aesthetics of the generated images without compromising the generality of the model in terms of visual concepts that can be generated. \" Interestingly, despite Meta's vocal support for open source AI, neither Emu nor the Imagine by Meta AI service appear to be open source.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from VentureBeat: Meta Platforms, the parent company of Facebook, Instagram, Whatsapp and Quest VR headsets and creator of leading open source large language model Llama 2 -- is getting into the text-to-image AI generator game. Actually, to clarify: Meta was already in that game via a text-to-image and text-to-sticker generator that was launched within Facebook and Instagram Messengers earlier this year. However, as of this week, the company has launched a standalone text-to-image AI generator service, \"Imagine\" outside of its messaging platforms. Meta's Imagine now a website you can simply visit and begin generating images from: imagine.meta.com. You'll still need to log in with your Meta or Facebook/Instagram account (I tried Facebook, and it forced me to create a new \"Meta account,\" but hey -- it still worked). [...]\n \nMeta's Imagine service was built on its own AI model called Emu, which was trained on 1.1 billion Facebook and Instagram user photos, as noted by Ars Technica and disclosed in the Emu research paper published by Meta engineers back in September. An earlier report by Reuters noted that Meta excluded private messages and images that were not shared publicly on its services.\n \nWhen developing Emu, Meta's researchers also fine-tuned it around quality metrics. As they wrote in their paper: \"Our key insight is that to effectively perform quality tuning, a surprisingly small amount -- a couple of thousand -- exceptionally high-quality images and associated text is enough to make a significant impact on the aesthetics of the generated images without compromising the generality of the model in terms of visual concepts that can be generated. \" Interestingly, despite Meta's vocal support for open source AI, neither Emu nor the Imagine by Meta AI service appear to be open source.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://meta.slashdot.org/story/23/12/07/2345225/meta-publicly-launches-ai-image-generator-trained-on-your-facebook-instagram-photos?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-08T03:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-08T02:02:00+00:00", + "title": "FTC Tries Again To Stop Microsoft's Already-Closed Deal For Activision", + "link": "https://yro.slashdot.org/story/23/12/07/2338209/ftc-tries-again-to-stop-microsofts-already-closed-deal-for-activision?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-08T02:02:00+00:00", + "content": "U.S. antitrust regulators told a federal appeals court Wednesday that a federal judge got it wrong when she allowed Microsoft's $69 billion purchase of Activision to close. Reuters reports: Speaking for the Federal Trade Commission, lawyer Imad Abyad argued that the lower-court judge held the agency to too high a standard, effectively requiring it to prove that the deal was anticompetitive. He told a three-judge appeals court panel in California that the FTC had only to show that Microsoft had the ability and incentive to withhold Activision's games from rival game platforms to prove the agency's case. He said the FTC \"showed that in the past that's what Microsoft did,\" referring to allegations that Microsoft made some Zenimax games exclusive after buying that company.\n \nSpeaking for Microsoft, lawyer Rakesh Kilaru called the FTC case \"weak\" and said that the agency had asked the lower-court judge for too much leeway. \"It is also clear that the standard can't be as low as the FTC is suggesting,\" he said. \"It can't be kind of a mere scintilla of evidence.\" He argued that the agency failed to show that Microsoft had an incentive to withhold \"Call of Duty\" from rival gaming platforms. The judges actively questioned both attorneys, with Judge Daniel Collins pressing the FTC's attorney on how concessions that Microsoft gave British antitrust enforcers affect the U.S. market. He also appeared to take issue with Abyad's assertions that more analysis of the deal was necessary, especially since Microsoft had struck agreements with rivals recently, including one with Sony this past summer. \"This was not a rush job on the part of the FTC,\" he said.\n \nTwo antitrust scholars who listened to the arguments said the FTC faced a tough slog to prevail. A finding of \"clear error\" by a lower court judge is \"really stark,\" said Alden Abbott, a former FTC general counsel, comparing it to the idea that a court ignored key evidence from a witness. Abbott said the appeals court noted that the trial judge had considered \"a huge amount of record evidence.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "U.S. antitrust regulators told a federal appeals court Wednesday that a federal judge got it wrong when she allowed Microsoft's $69 billion purchase of Activision to close. Reuters reports: Speaking for the Federal Trade Commission, lawyer Imad Abyad argued that the lower-court judge held the agency to too high a standard, effectively requiring it to prove that the deal was anticompetitive. He told a three-judge appeals court panel in California that the FTC had only to show that Microsoft had the ability and incentive to withhold Activision's games from rival game platforms to prove the agency's case. He said the FTC \"showed that in the past that's what Microsoft did,\" referring to allegations that Microsoft made some Zenimax games exclusive after buying that company.\n \nSpeaking for Microsoft, lawyer Rakesh Kilaru called the FTC case \"weak\" and said that the agency had asked the lower-court judge for too much leeway. \"It is also clear that the standard can't be as low as the FTC is suggesting,\" he said. \"It can't be kind of a mere scintilla of evidence.\" He argued that the agency failed to show that Microsoft had an incentive to withhold \"Call of Duty\" from rival gaming platforms. The judges actively questioned both attorneys, with Judge Daniel Collins pressing the FTC's attorney on how concessions that Microsoft gave British antitrust enforcers affect the U.S. market. He also appeared to take issue with Abyad's assertions that more analysis of the deal was necessary, especially since Microsoft had struck agreements with rivals recently, including one with Sony this past summer. \"This was not a rush job on the part of the FTC,\" he said.\n \nTwo antitrust scholars who listened to the arguments said the FTC faced a tough slog to prevail. A finding of \"clear error\" by a lower court judge is \"really stark,\" said Alden Abbott, a former FTC general counsel, comparing it to the idea that a court ignored key evidence from a witness. Abbott said the appeals court noted that the trial judge had considered \"a huge amount of record evidence.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/12/07/2338209/ftc-tries-again-to-stop-microsofts-already-closed-deal-for-activision?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-08T02:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-08T01:25:00+00:00", + "title": "Fairphone 5 Scores a Perfect 10 From iFixit For Repairability", + "link": "https://mobile.slashdot.org/story/23/12/07/239203/fairphone-5-scores-a-perfect-10-from-ifixit-for-repairability?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-08T01:25:00+00:00", + "content": "The iFixit team pulled apart the newest Fairphone 5 smartphone and awarded its highest score for repairability: 10 out of 10. With the exception of one or two compromises, the Fairphone 5 is just as repairable as its predecessors. The Register reports: As before, opening the phone is a simple matter of popping off the back of the case. The beefier battery -- 4200 mAh instead of the previous 3905 mAh -- remains easy to remove, although the bigger size has implications elsewhere in the device. Replacing the USB-C port remains simple thanks to a metal lip that allows it to be removed easily. Individual cameras can also be replaced, a nice upgrade from the all-in-one unit of the preceding phone.\n \nHowever, rather than something along the lines of the Core Module of the previous phone, the iFixit team found a motherboard and daughterboard more akin to other Android handsets. According to Fairphone, the bigger battery made the change necessary, but it's still a little disappointing. Still, the teardown team noted clear labeling to stop cables from being accidentally plugged into the wrong places. It said: \"That's what intuitive repair design is all about: it should be easy to do the right thing and complicated to do the wrong thing.\" According to iFixit co-founder and CEO Kyle Wiens: \"Fairphone's promise of five Android version upgrades and over eight years of security updates with the Fairphone 5 is a bold statement in an industry that leans towards fleeting product life cycles. This is a significant stride towards sustainability and sets a new benchmark for smartphone lifespan.\"\n \n\"At iFixit, we believe in tech that lasts, and Fairphone is making that belief a reality. Fairphone's effort to attain a 10-year lifespan is not just impressive; it's unparalleled.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The iFixit team pulled apart the newest Fairphone 5 smartphone and awarded its highest score for repairability: 10 out of 10. With the exception of one or two compromises, the Fairphone 5 is just as repairable as its predecessors. The Register reports: As before, opening the phone is a simple matter of popping off the back of the case. The beefier battery -- 4200 mAh instead of the previous 3905 mAh -- remains easy to remove, although the bigger size has implications elsewhere in the device. Replacing the USB-C port remains simple thanks to a metal lip that allows it to be removed easily. Individual cameras can also be replaced, a nice upgrade from the all-in-one unit of the preceding phone.\n \nHowever, rather than something along the lines of the Core Module of the previous phone, the iFixit team found a motherboard and daughterboard more akin to other Android handsets. According to Fairphone, the bigger battery made the change necessary, but it's still a little disappointing. Still, the teardown team noted clear labeling to stop cables from being accidentally plugged into the wrong places. It said: \"That's what intuitive repair design is all about: it should be easy to do the right thing and complicated to do the wrong thing.\" According to iFixit co-founder and CEO Kyle Wiens: \"Fairphone's promise of five Android version upgrades and over eight years of security updates with the Fairphone 5 is a bold statement in an industry that leans towards fleeting product life cycles. This is a significant stride towards sustainability and sets a new benchmark for smartphone lifespan.\"\n \n\"At iFixit, we believe in tech that lasts, and Fairphone is making that belief a reality. Fairphone's effort to attain a 10-year lifespan is not just impressive; it's unparalleled.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://mobile.slashdot.org/story/23/12/07/239203/fairphone-5-scores-a-perfect-10-from-ifixit-for-repairability?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-08T01:25:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-08T00:45:00+00:00", + "title": "A Massive Repair Lawsuit Against John Deere Clears a Major Hurdle", + "link": "https://yro.slashdot.org/story/23/12/07/2257237/a-massive-repair-lawsuit-against-john-deere-clears-a-major-hurdle?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-08T00:45:00+00:00", + "content": "Jason Koebler reports via 404 Media: A judge rejected John Deere's motion to dismiss a landmark class action lawsuit over the agricultural giant's repair monopolies, paving the way for a trial that will determine whether the company's repair practices are illegal. The case will specifically examine whether Deere has engaged in a \"conspiracy\" in which Deere and its dealerships have driven up the cost of repair while preventing independent and self-repair of tractors that farmers own.\n \nIn a forceful, 89-page memorandum, U.S. District Court Judge Iain Johnson wrote that the founder of John Deere \"was an innovative farmer and blacksmith who -- with his own hands -- fundamentally changed the agricultural industry.\" Deere the man \"would be deeply disappointed in his namesake corporation\" if the plaintiffs can ultimately prove their antitrust allegations against Deere the company, which are voluminous and well-documented. Reuters first reported on Johnson's memo.\n \nAt issue are the many tactics Deere has used to make it more difficult and often impossible for farmers to repair their own tractors, from software locks and \"parts pairing\" that prevent farmers from replacing parts without the authorization of a Deere dealership. \"Only Deere and Dealer authorized technicians have access to the Repair Tools, and Deere withholds these resources from farmers and independent repair shops,\" Johnson wrote.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Jason Koebler reports via 404 Media: A judge rejected John Deere's motion to dismiss a landmark class action lawsuit over the agricultural giant's repair monopolies, paving the way for a trial that will determine whether the company's repair practices are illegal. The case will specifically examine whether Deere has engaged in a \"conspiracy\" in which Deere and its dealerships have driven up the cost of repair while preventing independent and self-repair of tractors that farmers own.\n \nIn a forceful, 89-page memorandum, U.S. District Court Judge Iain Johnson wrote that the founder of John Deere \"was an innovative farmer and blacksmith who -- with his own hands -- fundamentally changed the agricultural industry.\" Deere the man \"would be deeply disappointed in his namesake corporation\" if the plaintiffs can ultimately prove their antitrust allegations against Deere the company, which are voluminous and well-documented. Reuters first reported on Johnson's memo.\n \nAt issue are the many tactics Deere has used to make it more difficult and often impossible for farmers to repair their own tractors, from software locks and \"parts pairing\" that prevent farmers from replacing parts without the authorization of a Deere dealership. \"Only Deere and Dealer authorized technicians have access to the Repair Tools, and Deere withholds these resources from farmers and independent repair shops,\" Johnson wrote.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/12/07/2257237/a-massive-repair-lawsuit-against-john-deere-clears-a-major-hurdle?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-08T00:45:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-08T00:02:00+00:00", + "title": "Meta Defies FBI Opposition To Encryption, Brings E2EE To Facebook, Messenger", + "link": "https://it.slashdot.org/story/23/12/07/2243245/meta-defies-fbi-opposition-to-encryption-brings-e2ee-to-facebook-messenger?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-08T00:02:00+00:00", + "content": "An anonymous reader quotes a report from Ars Technica: Meta has started enabling end-to-end encryption (E2EE) by default for chats and calls on Messenger and Facebook despite protests from the FBI and other law enforcement agencies that oppose the widespread use of encryption technology. \"Today I'm delighted to announce that we are rolling out default end-to-end encryption for personal messages and calls on Messenger and Facebook,\" Meta VP of Messenger Loredana Crisan wrote yesterday. In April, a consortium of 15 law enforcement agencies from around the world, including the FBI and ICE Homeland Security Investigations, urged Meta to cancel its plan to expand the use of end-to-end encryption. The consortium complained that terrorists, sex traffickers, child abusers, and other criminals will use encrypted messages to evade law enforcement.\n \nMeta held firm, telling Ars in April that \"we don't think people want us reading their private messages\" and that the plan to make end-to-end encryption the default in Facebook Messenger would be completed before the end of 2023. Meta also plans default end-to-end encryption for Instagram messages but has previously said that may not happen this year. Meta said it is using \"the Signal Protocol, and our own novel Labyrinth Protocol,\" and the company published two technical papers that describe its implementation (PDF). \"Since 2016, Messenger has had the option for people to turn on end-to-end encryption, but we're now changing personal chats and calls across Messenger to be end-to-end encrypted by default. This has taken years to deliver because we've taken our time to get this right,\" Crisan wrote yesterday. Meta said it will take months to implement across its entire user base. A post written by two Meta software engineers said the company \"designed a server-based solution where encrypted messages can be stored on Meta's servers while only being readable using encryption keys under the user's control.\"\n \n\"Product features in an E2EE setting typically need to be designed to function in a device-to-device manner, without ever relying on a third party having access to message content,\" they wrote. \"This was a significant effort for Messenger, as much of its functionality has historically relied on server-side processing, with certain features difficult or impossible to exactly match with message content being limited to the devices.\"\n \nThe company says it had \"to redesign the entire system so that it would work without Meta's servers seeing the message content.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Meta has started enabling end-to-end encryption (E2EE) by default for chats and calls on Messenger and Facebook despite protests from the FBI and other law enforcement agencies that oppose the widespread use of encryption technology. \"Today I'm delighted to announce that we are rolling out default end-to-end encryption for personal messages and calls on Messenger and Facebook,\" Meta VP of Messenger Loredana Crisan wrote yesterday. In April, a consortium of 15 law enforcement agencies from around the world, including the FBI and ICE Homeland Security Investigations, urged Meta to cancel its plan to expand the use of end-to-end encryption. The consortium complained that terrorists, sex traffickers, child abusers, and other criminals will use encrypted messages to evade law enforcement.\n \nMeta held firm, telling Ars in April that \"we don't think people want us reading their private messages\" and that the plan to make end-to-end encryption the default in Facebook Messenger would be completed before the end of 2023. Meta also plans default end-to-end encryption for Instagram messages but has previously said that may not happen this year. Meta said it is using \"the Signal Protocol, and our own novel Labyrinth Protocol,\" and the company published two technical papers that describe its implementation (PDF). \"Since 2016, Messenger has had the option for people to turn on end-to-end encryption, but we're now changing personal chats and calls across Messenger to be end-to-end encrypted by default. This has taken years to deliver because we've taken our time to get this right,\" Crisan wrote yesterday. Meta said it will take months to implement across its entire user base. A post written by two Meta software engineers said the company \"designed a server-based solution where encrypted messages can be stored on Meta's servers while only being readable using encryption keys under the user's control.\"\n \n\"Product features in an E2EE setting typically need to be designed to function in a device-to-device manner, without ever relying on a third party having access to message content,\" they wrote. \"This was a significant effort for Messenger, as much of its functionality has historically relied on server-side processing, with certain features difficult or impossible to exactly match with message content being limited to the devices.\"\n \nThe company says it had \"to redesign the entire system so that it would work without Meta's servers seeing the message content.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/23/12/07/2243245/meta-defies-fbi-opposition-to-encryption-brings-e2ee-to-facebook-messenger?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-08T00:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-07T23:40:00+00:00", + "title": "Apple Launches MLX Machine-Learning Framework For Apple Silicon", + "link": "https://apple.slashdot.org/story/23/12/07/2234248/apple-launches-mlx-machine-learning-framework-for-apple-silicon?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-07T23:40:00+00:00", + "content": "Apple has released MLX, a free and open-source machine learning framework for Apple Silicon. Computerworld reports: The idea is that it streamlines training and deployment of ML models for researchers who use Apple hardware. MLX is a NumPy-like array framework designed for efficient and flexible machine learning on Apple's processors. This isn't a consumer-facing tool; it equips developers with what appears to be a powerful environment within which to build ML models. The company also seems to have worked to embrace the languages developers want to use, rather than force a language on them -- and it apparently invented powerful LLM tools in the process.\n \nMLX design is inspired by existing frameworks such as PyTorch, Jax, and ArrayFire. However, MLX adds support for a unified memory model, which means arrays live in shared memory and operations can be performed on any of the supported device types without performing data copies. The team explains: \"The Python API closely follows NumPy with a few exceptions. MLX also has a fully featured C++ API which closely follows the Python API.\"\n \nApple has provided a collection of examples of what MLX can do. These appear to confirm the company now has a highly-efficient language model, powerful tools for image generation using Stable Diffusion, and highly accurate speech recognition. This tallies with claims earlier this year, and some speculation concerning infinite virtual world creation for future Vision Pro experiences. Ultimately, Apple seems to want to democratize machine learning. \"MLX is designed by machine learning researchers for machine learning researchers,\" the team explains.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Apple has released MLX, a free and open-source machine learning framework for Apple Silicon. Computerworld reports: The idea is that it streamlines training and deployment of ML models for researchers who use Apple hardware. MLX is a NumPy-like array framework designed for efficient and flexible machine learning on Apple's processors. This isn't a consumer-facing tool; it equips developers with what appears to be a powerful environment within which to build ML models. The company also seems to have worked to embrace the languages developers want to use, rather than force a language on them -- and it apparently invented powerful LLM tools in the process.\n \nMLX design is inspired by existing frameworks such as PyTorch, Jax, and ArrayFire. However, MLX adds support for a unified memory model, which means arrays live in shared memory and operations can be performed on any of the supported device types without performing data copies. The team explains: \"The Python API closely follows NumPy with a few exceptions. MLX also has a fully featured C++ API which closely follows the Python API.\"\n \nApple has provided a collection of examples of what MLX can do. These appear to confirm the company now has a highly-efficient language model, powerful tools for image generation using Stable Diffusion, and highly accurate speech recognition. This tallies with claims earlier this year, and some speculation concerning infinite virtual world creation for future Vision Pro experiences. Ultimately, Apple seems to want to democratize machine learning. \"MLX is designed by machine learning researchers for machine learning researchers,\" the team explains.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://apple.slashdot.org/story/23/12/07/2234248/apple-launches-mlx-machine-learning-framework-for-apple-silicon?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-07T23:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-07T23:20:00+00:00", + "title": "Notepad On Windows 11 Is Finally Getting a Character Count", + "link": "https://tech.slashdot.org/story/23/12/07/2223210/notepad-on-windows-11-is-finally-getting-a-character-count?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-07T23:20:00+00:00", + "content": "Microsoft's Notepad app on Windows 11 is getting a character count at the bottom of the window. \"When text is selected, the status bar shows the character count for both the selected text and the entire document,\" explains Microsoft's Windows Insider team in a blog post. \"If no text is selected, the character count for the entire document is displayed, ensuring you always have a clear view of your document's length.\" The Verge reports: This is the latest addition in a line of changes to Notepad this year, with the app recently getting a new autosave option that lets you close it without seeing the pop-up save prompt every time. Microsoft has also added tabs to Notepad, a dark mode, and even a virtual fidget spinner.\n \nAlongside the Notepad changes in this latest Windows 11 test build, the widgets section of the OS is also getting some improvements. You'll soon be able to just show widgets and hide the feed of news and articles that appear inside the widgets screen.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Microsoft's Notepad app on Windows 11 is getting a character count at the bottom of the window. \"When text is selected, the status bar shows the character count for both the selected text and the entire document,\" explains Microsoft's Windows Insider team in a blog post. \"If no text is selected, the character count for the entire document is displayed, ensuring you always have a clear view of your document's length.\" The Verge reports: This is the latest addition in a line of changes to Notepad this year, with the app recently getting a new autosave option that lets you close it without seeing the pop-up save prompt every time. Microsoft has also added tabs to Notepad, a dark mode, and even a virtual fidget spinner.\n \nAlongside the Notepad changes in this latest Windows 11 test build, the widgets section of the OS is also getting some improvements. You'll soon be able to just show widgets and hide the feed of news and articles that appear inside the widgets screen.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/07/2223210/notepad-on-windows-11-is-finally-getting-a-character-count?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-07T23:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-07T22:40:00+00:00", + "title": "New systemd Update Will Bring Windows' Infamous Blue Screen of Death To Linux", + "link": "https://linux.slashdot.org/story/23/12/07/2219239/new-systemd-update-will-bring-windows-infamous-blue-screen-of-death-to-linux?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-07T22:40:00+00:00", + "content": "An anonymous reader quotes a report from Ars Technica: Windows' infamous \"Blue Screen of Death\" is a bit of a punchline. People have made a hobby of spotting them out in the wild, and in some circles, they remain a byword for the supposed flakiness and instability of PCs. To this day, networked PCs in macOS are represented by beige CRT monitors displaying a BSOD. But the BSOD is supposed to be a diagnostic tool, an informational screen that technicians can use to begin homing in on the problem that caused the crash in the first place; that old Windows' BSOD error codes were often so broad and vague as to be useless doesn't make the idea a bad one. Today, version 255 of the Linux systemd project honors that original intent by adding a systemd-bsod component that generates a full-screen display of some error messages when a Linux system crashes.\n \nThe systemd-bsod component is currently listed as \"experimental\" and \"subject to change.\" But the functionality is simple: any logged error message that reaches the LOG_EMERG level will be displayed full-screen to allow people to take a photo or write it down. Phoronix reports that, as with BSODs in modern Windows, the Linux version will also generate a QR code to make it easier to look up information on your phone.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Windows' infamous \"Blue Screen of Death\" is a bit of a punchline. People have made a hobby of spotting them out in the wild, and in some circles, they remain a byword for the supposed flakiness and instability of PCs. To this day, networked PCs in macOS are represented by beige CRT monitors displaying a BSOD. But the BSOD is supposed to be a diagnostic tool, an informational screen that technicians can use to begin homing in on the problem that caused the crash in the first place; that old Windows' BSOD error codes were often so broad and vague as to be useless doesn't make the idea a bad one. Today, version 255 of the Linux systemd project honors that original intent by adding a systemd-bsod component that generates a full-screen display of some error messages when a Linux system crashes.\n \nThe systemd-bsod component is currently listed as \"experimental\" and \"subject to change.\" But the functionality is simple: any logged error message that reaches the LOG_EMERG level will be displayed full-screen to allow people to take a photo or write it down. Phoronix reports that, as with BSODs in modern Windows, the Linux version will also generate a QR code to make it easier to look up information on your phone.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://linux.slashdot.org/story/23/12/07/2219239/new-systemd-update-will-bring-windows-infamous-blue-screen-of-death-to-linux?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-07T22:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-07T22:00:00+00:00", + "title": "The Extremely Large Telescope Will Transform Astronomy", + "link": "https://science.slashdot.org/story/23/12/07/1317258/the-extremely-large-telescope-will-transform-astronomy?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-07T22:00:00+00:00", + "content": "The Extremely Large Telescope (ELT) under construction in Chile's Atacama Desert will be the world's biggest optical telescope when completed in 2028. With a giant 39.3-meter main mirror and advanced adaptive optics, the ELT will collect far more light and achieve much sharper images than any existing ground-based telescope, revolutionizing the study of exoplanets, black holes, dark matter, and the early universe. Economist adds: But when it comes to detecting the dimmest and most distant objects, there is no substitute for sheer light-gathering size. On that front the ELT looks like being the final word for the foreseeable future. A planned successor, the \"Overwhelmingly Large Telescope,\" would have sported a 100-metre mirror. But it was shelved in the 2000s on grounds of complexity and cost. The Giant Magellan Telescope is currently being built several hundred kilometres south of the elt on land owned by the Carnegie Institution for Science, an American non-profit, and is due to see its first light some time in the 2030s. It will combine seven big mirrors into one giant one with an effective diameter of 25.4 metres. Even so, it will have only around a third the light-gathering capacity of the ELT. \n\nA consortium of scientists from America, Canada, India and Japan, meanwhile, has been trying to build a mega-telescope on Hawaii. The Thirty Meter Telescope would, as its name suggests, be a giant -- though still smaller than the elt. But it is unclear when, or even if, it will be finished. Construction has been halted by arguments about Mauna Kea, the mountain on which it is to be built, which is seen as sacred by some. For the next several decades, it seems, anyone wanting access to the biggest telescope money can buy will have to make their way to northern Chile.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The Extremely Large Telescope (ELT) under construction in Chile's Atacama Desert will be the world's biggest optical telescope when completed in 2028. With a giant 39.3-meter main mirror and advanced adaptive optics, the ELT will collect far more light and achieve much sharper images than any existing ground-based telescope, revolutionizing the study of exoplanets, black holes, dark matter, and the early universe. Economist adds: But when it comes to detecting the dimmest and most distant objects, there is no substitute for sheer light-gathering size. On that front the ELT looks like being the final word for the foreseeable future. A planned successor, the \"Overwhelmingly Large Telescope,\" would have sported a 100-metre mirror. But it was shelved in the 2000s on grounds of complexity and cost. The Giant Magellan Telescope is currently being built several hundred kilometres south of the elt on land owned by the Carnegie Institution for Science, an American non-profit, and is due to see its first light some time in the 2030s. It will combine seven big mirrors into one giant one with an effective diameter of 25.4 metres. Even so, it will have only around a third the light-gathering capacity of the ELT. \n\nA consortium of scientists from America, Canada, India and Japan, meanwhile, has been trying to build a mega-telescope on Hawaii. The Thirty Meter Telescope would, as its name suggests, be a giant -- though still smaller than the elt. But it is unclear when, or even if, it will be finished. Construction has been halted by arguments about Mauna Kea, the mountain on which it is to be built, which is seen as sacred by some. For the next several decades, it seems, anyone wanting access to the biggest telescope money can buy will have to make their way to northern Chile.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/07/1317258/the-extremely-large-telescope-will-transform-astronomy?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-07T22:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-07T21:20:00+00:00", + "title": "Actors Recorded Videos for 'Vladimir.' It Turned Into Russian Propaganda.", + "link": "https://tech.slashdot.org/story/23/12/07/1447232/actors-recorded-videos-for-vladimir-it-turned-into-russian-propaganda?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-07T21:20:00+00:00", + "content": "Internet propagandists aligned with Russia have duped at least seven Western celebrities, including Elijah Wood and Priscilla Presley, into recording short videos to support its online information war against Ukraine, according to new security research by Microsoft. From a report: The celebrities look like they were asked to offer words of encouragement -- apparently via the Cameo app -- to someone named \"Vladimir\" who appears to be struggling with substance abuse, Microsoft said. Instead, these messages were edited, sometimes dressed up with emojis, links and the logos of media outlets and then shared online by the Russia-aligned trolls, the company said. \n\nThe point was to give the appearance that the celebrities were confirming that Ukrainian President Volodymyr Zelensky was suffering from drug and alcohol problems, false claims that Russia has pushed in the past, according to Microsoft. Russia has denied engaging in disinformation campaigns. In one of the videos, a crudely edited message by Wood to someone named Vladimir references drugs and alcohol, saying: \"I just want to make sure that you're getting help.\" Wood's video first surfaced in July, but since then Microsoft researchers have observed six other similar celebrity videos misused in the same way, including clips by \"Breaking Bad\" actor Dean Norris, John C. McGinley of \"Scrubs,\" and Kate Flannery of \"The Office,\" the company said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Internet propagandists aligned with Russia have duped at least seven Western celebrities, including Elijah Wood and Priscilla Presley, into recording short videos to support its online information war against Ukraine, according to new security research by Microsoft. From a report: The celebrities look like they were asked to offer words of encouragement -- apparently via the Cameo app -- to someone named \"Vladimir\" who appears to be struggling with substance abuse, Microsoft said. Instead, these messages were edited, sometimes dressed up with emojis, links and the logos of media outlets and then shared online by the Russia-aligned trolls, the company said. \n\nThe point was to give the appearance that the celebrities were confirming that Ukrainian President Volodymyr Zelensky was suffering from drug and alcohol problems, false claims that Russia has pushed in the past, according to Microsoft. Russia has denied engaging in disinformation campaigns. In one of the videos, a crudely edited message by Wood to someone named Vladimir references drugs and alcohol, saying: \"I just want to make sure that you're getting help.\" Wood's video first surfaced in July, but since then Microsoft researchers have observed six other similar celebrity videos misused in the same way, including clips by \"Breaking Bad\" actor Dean Norris, John C. McGinley of \"Scrubs,\" and Kate Flannery of \"The Office,\" the company said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/07/1447232/actors-recorded-videos-for-vladimir-it-turned-into-russian-propaganda?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-07T21:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-07T20:40:00+00:00", + "title": "How Tech Giants Use Money, Access To Steer Academic Research", + "link": "https://tech.slashdot.org/story/23/12/07/1530250/how-tech-giants-use-money-access-to-steer-academic-research?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-07T20:40:00+00:00", + "content": "Tech giants including Google and Facebook parent Meta have dramatically ramped up charitable giving to university campuses over the past several years -- giving them influence over academics studying such critical topics as artificial intelligence, social media and disinformation. From a report: Meta CEO Mark Zuckerberg alone has donated money to more than 100 university campuses, either through Meta or his personal philanthropy arm, according to new research by the Tech Transparency Project, a nonprofit watchdog group studying the technology industry. Other firms are helping fund academic centers, doling out grants to professors and sitting on advisory boards reserved for donors, researchers told The Post. \n\nSilicon Valley's influence is most apparent among computer science professors at such top-tier schools as Berkeley, University of Toronto, Stanford and MIT. According to a 2021 paper by University of Toronto and Harvard researchers, most tenure-track professors in computer science at those schools whose funding sources could be determined had taken money from the technology industry, including nearly 6 of 10 scholars of AI. The proportion rose further in certain controversial subjects, the study found. Of 33 professors whose funding could be traced who wrote on AI ethics for the top journals Nature and Science, for example, all but one had taken grant money from the tech giants or had worked as their employees or contractors.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Tech giants including Google and Facebook parent Meta have dramatically ramped up charitable giving to university campuses over the past several years -- giving them influence over academics studying such critical topics as artificial intelligence, social media and disinformation. From a report: Meta CEO Mark Zuckerberg alone has donated money to more than 100 university campuses, either through Meta or his personal philanthropy arm, according to new research by the Tech Transparency Project, a nonprofit watchdog group studying the technology industry. Other firms are helping fund academic centers, doling out grants to professors and sitting on advisory boards reserved for donors, researchers told The Post. \n\nSilicon Valley's influence is most apparent among computer science professors at such top-tier schools as Berkeley, University of Toronto, Stanford and MIT. According to a 2021 paper by University of Toronto and Harvard researchers, most tenure-track professors in computer science at those schools whose funding sources could be determined had taken money from the technology industry, including nearly 6 of 10 scholars of AI. The proportion rose further in certain controversial subjects, the study found. Of 33 professors whose funding could be traced who wrote on AI ethics for the top journals Nature and Science, for example, all but one had taken grant money from the tech giants or had worked as their employees or contractors.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/07/1530250/how-tech-giants-use-money-access-to-steer-academic-research?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-07T20:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-07T20:00:00+00:00", + "title": "Cable Lobby To FCC: Please Don't Look Too Closely at the Prices We Charge", + "link": "https://tech.slashdot.org/story/23/12/07/1520243/cable-lobby-to-fcc-please-dont-look-too-closely-at-the-prices-we-charge?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-07T20:00:00+00:00", + "content": "The US broadband industry is protesting a Federal Communications Commission plan to measure the affordability of Internet service. From a report: The FCC has been evaluating US-wide broadband deployment progress on a near-annual basis for almost three decades but hasn't factored affordability into these regular reviews. The broadband industry is afraid that a thorough examination of prices will lead to more regulation of ISPs. An FCC Notice of Inquiry issued on November 1 proposes to analyze the affordability of Internet service in the agency's next congressionally required review of broadband deployment. That could include examining not just monthly prices but also data overage charges and various other fees. \n\n[...] Cable industry lobby group NCTA-The Internet & Television Association complained in a filing released Monday that the Notice of Inquiry's \"undue focus on affordability -- or pricing -- is particularly inappropriate.\" The group, which represents cable providers such as Comcast and Charter, said that setting an affordability benchmark could lead to rate regulation.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The US broadband industry is protesting a Federal Communications Commission plan to measure the affordability of Internet service. From a report: The FCC has been evaluating US-wide broadband deployment progress on a near-annual basis for almost three decades but hasn't factored affordability into these regular reviews. The broadband industry is afraid that a thorough examination of prices will lead to more regulation of ISPs. An FCC Notice of Inquiry issued on November 1 proposes to analyze the affordability of Internet service in the agency's next congressionally required review of broadband deployment. That could include examining not just monthly prices but also data overage charges and various other fees. \n\n[...] Cable industry lobby group NCTA-The Internet & Television Association complained in a filing released Monday that the Notice of Inquiry's \"undue focus on affordability -- or pricing -- is particularly inappropriate.\" The group, which represents cable providers such as Comcast and Charter, said that setting an affordability benchmark could lead to rate regulation.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/07/1520243/cable-lobby-to-fcc-please-dont-look-too-closely-at-the-prices-we-charge?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-07T20:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-07T19:20:00+00:00", + "title": "Nintendo Cancels Japanese Esports Events Following Threats to Staff and Spectators", + "link": "https://games.slashdot.org/story/23/12/07/150224/nintendo-cancels-japanese-esports-events-following-threats-to-staff-and-spectators?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-07T19:20:00+00:00", + "content": "Nintendo has cancelled Nintendo Live 2024 Tokyo and postponed other Japanese esports events after persistent threats were made to both staff and spectators. From a report: A Japanese press release, shared by reliable translator Genki on X/Twitter, revealed the \"all ages celebration of Nintendo fun,\" which took place in the United States for the first time in 2023, has been cancelled and its main esports tournaments postponed. \n\nNintendo said its employees have received relentless threats which have also recently targeted spectators, attendees, and staff at Nintendo Live 2024, forcing the cancellation in the interest of safety. It was due to take place from January 20 to 21.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Nintendo has cancelled Nintendo Live 2024 Tokyo and postponed other Japanese esports events after persistent threats were made to both staff and spectators. From a report: A Japanese press release, shared by reliable translator Genki on X/Twitter, revealed the \"all ages celebration of Nintendo fun,\" which took place in the United States for the first time in 2023, has been cancelled and its main esports tournaments postponed. \n\nNintendo said its employees have received relentless threats which have also recently targeted spectators, attendees, and staff at Nintendo Live 2024, forcing the cancellation in the interest of safety. It was due to take place from January 20 to 21.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/23/12/07/150224/nintendo-cancels-japanese-esports-events-following-threats-to-staff-and-spectators?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-07T19:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-07T18:40:00+00:00", + "title": "UK Says Russia Targeted Officials in Email-Hacking Campaign", + "link": "https://news.slashdot.org/story/23/12/07/1229205/uk-says-russia-targeted-officials-in-email-hacking-campaign?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-07T18:40:00+00:00", + "content": "The UK accused Russia's main intelligence agency of seeking to hack the emails of British politicians and officials in an attempt to interfere in its democratic processes. From a report: \"They have been targeting high-profile individuals and entities with a clear intent: using information they obtained to meddle in British politics,\" Foreign Office minister Leo Docherty told the House of Commons on Thursday. The intrusions include targeting personal email accounts and impersonation attempts against universities and media organizations, according to Docherty. Civil servants and journalists have also been targeted by Russia's Federal Security Service, known as the FSB, he said. \n\nIn November, the UK's National Cyber Security Centre warned that Russian and other state-sponsored hackers posed an \"enduring and significant threat\" to the country. The agency said that Russia was one of the most prolific state actors in cybercrime, and had dedicated substantial resources to conducting hacking operations internationally.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The UK accused Russia's main intelligence agency of seeking to hack the emails of British politicians and officials in an attempt to interfere in its democratic processes. From a report: \"They have been targeting high-profile individuals and entities with a clear intent: using information they obtained to meddle in British politics,\" Foreign Office minister Leo Docherty told the House of Commons on Thursday. The intrusions include targeting personal email accounts and impersonation attempts against universities and media organizations, according to Docherty. Civil servants and journalists have also been targeted by Russia's Federal Security Service, known as the FSB, he said. \n\nIn November, the UK's National Cyber Security Centre warned that Russian and other state-sponsored hackers posed an \"enduring and significant threat\" to the country. The agency said that Russia was one of the most prolific state actors in cybercrime, and had dedicated substantial resources to conducting hacking operations internationally.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/23/12/07/1229205/uk-says-russia-targeted-officials-in-email-hacking-campaign?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-07T18:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-08T10:00:00+00:00", + "title": "Nikon Makes Special Firmware For NASA To Block Galactic Cosmic Rays In Photos", + "link": "https://science.slashdot.org/story/23/12/08/0232239/nikon-makes-special-firmware-for-nasa-to-block-galactic-cosmic-rays-in-photos?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-08T10:00:00+00:00", + "content": "In an exclusive interview with PetaPixel, astronaut Don Pettit reveals the changes that Nikon makes to its firmware especially for NASA. From the report: Galactic cosmic rays are high-energy particles that originate from outside the solar system that likely come from explosive events such as a supernova. They are bad news for cameras in space -- damaging the sensor and spoiling photos -- so Nikon made special firmware for NASA to limit the harm. Pettit tells PetaPixel that Nikon changed the in-camera noise reduction settings to battle the cosmic rays -- noise is unwanted texture and blur on photos.\n \nNormal cameras have in-camera noise reduction for exposures equal to or longer than one second. This is because camera manufacturers don't think photographers need noise reduction for shorter exposures because there's no noise to reduce. But in space, that's not true. \"Our cameras in space get sensor damage from galactic cosmic rays and after about six months we replace all the cameras but you still have cameras with significant cosmic ray damage,\" explains Pettit. \"It shows up at fast shutter speeds, not just the slow ones. So we got Nikon to change the algorithm so that it can do in-camera noise reduction at shutter speeds of up to 500th of a second.\"\n \nPettit says Nikon's in-camera noise reduction \"does wonders\" for getting rid of the cosmic ray damage and that \"trying to get rid of it after the fact is really difficult.\" That's not the only special firmware feature that Nikon makes for NASA; photographers who shoot enough photos know that the file naming system resets itself eventually which is no good for the space agency's astronauts. \"The file naming system on a standard digital system will repeat every so often and we can't have two pictures with the same number,\" explains Pettit. \"We'll take half a million pictures with the crew on orbit and so Nikon has changed the way the RAW files are numbered so that there will be no two with the same file number.\" The report notes that NASA started using Nikon film cameras in 1971, shortly after the Apollo era; \"in part because Nikon is so good at making custom modifications that help the astronauts.\" Previously, the agency used boxy, black Hasselblad cameras.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "In an exclusive interview with PetaPixel, astronaut Don Pettit reveals the changes that Nikon makes to its firmware especially for NASA. From the report: Galactic cosmic rays are high-energy particles that originate from outside the solar system that likely come from explosive events such as a supernova. They are bad news for cameras in space -- damaging the sensor and spoiling photos -- so Nikon made special firmware for NASA to limit the harm. Pettit tells PetaPixel that Nikon changed the in-camera noise reduction settings to battle the cosmic rays -- noise is unwanted texture and blur on photos.\n \nNormal cameras have in-camera noise reduction for exposures equal to or longer than one second. This is because camera manufacturers don't think photographers need noise reduction for shorter exposures because there's no noise to reduce. But in space, that's not true. \"Our cameras in space get sensor damage from galactic cosmic rays and after about six months we replace all the cameras but you still have cameras with significant cosmic ray damage,\" explains Pettit. \"It shows up at fast shutter speeds, not just the slow ones. So we got Nikon to change the algorithm so that it can do in-camera noise reduction at shutter speeds of up to 500th of a second.\"\n \nPettit says Nikon's in-camera noise reduction \"does wonders\" for getting rid of the cosmic ray damage and that \"trying to get rid of it after the fact is really difficult.\" That's not the only special firmware feature that Nikon makes for NASA; photographers who shoot enough photos know that the file naming system resets itself eventually which is no good for the space agency's astronauts. \"The file naming system on a standard digital system will repeat every so often and we can't have two pictures with the same number,\" explains Pettit. \"We'll take half a million pictures with the crew on orbit and so Nikon has changed the way the RAW files are numbered so that there will be no two with the same file number.\" The report notes that NASA started using Nikon film cameras in 1971, shortly after the Apollo era; \"in part because Nikon is so good at making custom modifications that help the astronauts.\" Previously, the agency used boxy, black Hasselblad cameras.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/08/0232239/nikon-makes-special-firmware-for-nasa-to-block-galactic-cosmic-rays-in-photos?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-08T10:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-14T16:41:00+00:00", + "title": "Intel Core Ultra Processors Debut for AI-powered PCs", + "link": "https://hardware.slashdot.org/story/23/12/14/1621240/intel-core-ultra-processors-debut-for-ai-powered-pcs?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-14T16:41:00+00:00", + "content": "Intel launched its Intel Core Ultra processors for AI-powered PCs at its AI Everywhere event today. From a report: The big chip maker said these processors spearhead a new era in computing, offering unparalleled power efficiency, superior compute and graphics performance, and an unprecedented AI PC experience to mobile platforms and edge devices. Available immediately, these processors will be used in over 230 AI PCs coming from renowned partners like Acer, ASUS, Dell, Gigabyte, and more. \n\nThe Intel Core Ultra processors represent an architectural shift for Intel, marking its largest design change in 40 years. These processors harness the Intel 4 process technology and Foveros 3D advanced packaging, leveraging leading-edge processes for optimal performance and capabilities. The processors boast a performance-core (P-core) architecture enhancing instructions per cycle (IPC). Efficient-cores (E-cores) and low-power Efficient-cores (LP E-cores). They deliver up to 11% more compute power compared to competitors, ensuring superior CPU performance for ultrathin PCs. \n\nFeatures of Intel Core Ultra \nIntel Arc GPU: Featuring up to eight Xe-cores, this GPU incorporates AI-based Xe Super Sampling, offering double the graphics performance compared to prior generations. It includes support for modern graphics features like ray tracing, mesh shading, AV1 encode and decode, HDMI 2.1, and DisplayPort 2.1 20G.\nAI Boost NPU: Intel's latest NPU, Intel AI Boost, focuses on low-power, long-running AI tasks, augmenting AI processing on the CPU and GPU, offering 2.5x better power efficiency compared to its predecessors.\nAdvanced Performance Capabilities: With up to 16 cores, 22 threads, and Intel Thread Director for optimized workload scheduling, these processors boast a maximum turbo frequency of 5.1 GHz and support for up to 96 GB DDR5 memory capacity.\nCutting-edge Connectivity: Integrated Intel Wi-Fi 6E and support for discrete Intel Wi-Fi 7 deliver blazing wireless speeds, while Thunderbolt 4 ensures connectivity to multiple 4K monitors and fast storage with speeds of 40 Gbps.\nEnhanced AI Performance: OpenVINO toolkits, ONNX, and ONNX Runtime offer streamlined workflow, automatic device detection, and enhanced AI performance.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Intel launched its Intel Core Ultra processors for AI-powered PCs at its AI Everywhere event today. From a report: The big chip maker said these processors spearhead a new era in computing, offering unparalleled power efficiency, superior compute and graphics performance, and an unprecedented AI PC experience to mobile platforms and edge devices. Available immediately, these processors will be used in over 230 AI PCs coming from renowned partners like Acer, ASUS, Dell, Gigabyte, and more. \n\nThe Intel Core Ultra processors represent an architectural shift for Intel, marking its largest design change in 40 years. These processors harness the Intel 4 process technology and Foveros 3D advanced packaging, leveraging leading-edge processes for optimal performance and capabilities. The processors boast a performance-core (P-core) architecture enhancing instructions per cycle (IPC). Efficient-cores (E-cores) and low-power Efficient-cores (LP E-cores). They deliver up to 11% more compute power compared to competitors, ensuring superior CPU performance for ultrathin PCs. \n\nFeatures of Intel Core Ultra \nIntel Arc GPU: Featuring up to eight Xe-cores, this GPU incorporates AI-based Xe Super Sampling, offering double the graphics performance compared to prior generations. It includes support for modern graphics features like ray tracing, mesh shading, AV1 encode and decode, HDMI 2.1, and DisplayPort 2.1 20G.\nAI Boost NPU: Intel's latest NPU, Intel AI Boost, focuses on low-power, long-running AI tasks, augmenting AI processing on the CPU and GPU, offering 2.5x better power efficiency compared to its predecessors.\nAdvanced Performance Capabilities: With up to 16 cores, 22 threads, and Intel Thread Director for optimized workload scheduling, these processors boast a maximum turbo frequency of 5.1 GHz and support for up to 96 GB DDR5 memory capacity.\nCutting-edge Connectivity: Integrated Intel Wi-Fi 6E and support for discrete Intel Wi-Fi 7 deliver blazing wireless speeds, while Thunderbolt 4 ensures connectivity to multiple 4K monitors and fast storage with speeds of 40 Gbps.\nEnhanced AI Performance: OpenVINO toolkits, ONNX, and ONNX Runtime offer streamlined workflow, automatic device detection, and enhanced AI performance.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/23/12/14/1621240/intel-core-ultra-processors-debut-for-ai-powered-pcs?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T16:41:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-14T16:00:00+00:00", + "title": "Pope Francis Calls for Binding Global Treaty To Regulate AI", + "link": "https://slashdot.org/story/23/12/14/1422216/pope-francis-calls-for-binding-global-treaty-to-regulate-ai?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-14T16:00:00+00:00", + "content": "Pope Francis has called for a legally binding international treaty to regulate AI, saying algorithms must not be allowed to replace human values and warning of a \"technological dictatorship\" threatening human existence. From a report: The pope made his call on Thursday in a message for the Roman Catholic Church's World Day of Peace, which is celebrated on Jan. 1. The title of the message, which is traditionally sent to world leaders and heads of institutions such as the United Nations, is \"Artificial Intelligence and Peace.\" \n\n[...] \"The global scale of artificial intelligence makes it clear that, alongside the responsibility of sovereign states to regulate its use internally, international organizations can play a decisive role in reaching multilateral agreements and coordinating their application and enforcement,\" Francis wrote in the message. \"I urge the global community of nations to work together in order to adopt a binding international treaty that regulates the development and use of artificial intelligence in its many forms,\" the pope said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Pope Francis has called for a legally binding international treaty to regulate AI, saying algorithms must not be allowed to replace human values and warning of a \"technological dictatorship\" threatening human existence. From a report: The pope made his call on Thursday in a message for the Roman Catholic Church's World Day of Peace, which is celebrated on Jan. 1. The title of the message, which is traditionally sent to world leaders and heads of institutions such as the United Nations, is \"Artificial Intelligence and Peace.\" \n\n[...] \"The global scale of artificial intelligence makes it clear that, alongside the responsibility of sovereign states to regulate its use internally, international organizations can play a decisive role in reaching multilateral agreements and coordinating their application and enforcement,\" Francis wrote in the message. \"I urge the global community of nations to work together in order to adopt a binding international treaty that regulates the development and use of artificial intelligence in its many forms,\" the pope said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/23/12/14/1422216/pope-francis-calls-for-binding-global-treaty-to-regulate-ai?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T16:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-14T15:20:00+00:00", + "title": "Beeper Says Apple is Blocking Some iMessages", + "link": "https://yro.slashdot.org/story/23/12/14/148227/beeper-says-apple-is-blocking-some-imessages?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-14T15:20:00+00:00", + "content": "After investigating reports that some users aren't getting iMessages on Beeper Mini and Beeper Cloud, Beeper says that Apple seems to be \"deliberately blocking\" iMessages from being delivered to about five percent of Beeper Mini users. From a report: The company says that uninstalling and reinstalling the app fixes the issue and that it's working on a broader fix. \n\nApple didn't immediately reply to a request for comment about Beeper's new claim, and it hasn't replied to my original request for comment, either. But given that the company has already blocked Beeper Mini before, it's not too surprising that it seems to be taking action against the app again.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "After investigating reports that some users aren't getting iMessages on Beeper Mini and Beeper Cloud, Beeper says that Apple seems to be \"deliberately blocking\" iMessages from being delivered to about five percent of Beeper Mini users. From a report: The company says that uninstalling and reinstalling the app fixes the issue and that it's working on a broader fix. \n\nApple didn't immediately reply to a request for comment about Beeper's new claim, and it hasn't replied to my original request for comment, either. But given that the company has already blocked Beeper Mini before, it's not too surprising that it seems to be taking action against the app again.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/12/14/148227/beeper-says-apple-is-blocking-some-imessages?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T15:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-14T14:40:00+00:00", + "title": "LinkedIn Shelved Planned Move To Microsoft Azure, Opting To Keep Physical Data Centers", + "link": "https://slashdot.org/story/23/12/14/1427243/linkedin-shelved-planned-move-to-microsoft-azure-opting-to-keep-physical-data-centers?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-14T14:40:00+00:00", + "content": "LinkedIn has set aside an effort to relocate its data center technology out of its physical facilities and into Microsoft's Azure cloud, CNBC reported Thursday, citing people familiar with the matter. From a report: The decision not to proceed with the project, code-named \"Blueshift,\" marks a major reversal for LinkedIn, which announced its plan to move to Azure in 2019, three years after Microsoft acquired the company for $27 billion. LinkedIn had been using Azure for specific tasks. \n\nThe U-turn represents a setback for Microsoft, which is chasing Amazon\n Web Services in the lucrative cloud infrastructure market and has been counting on cloud technology and services to fuel much of its growth. Microsoft CEO Satya Nadella ran the cloud business before elevation to his current job in 2014. Mohak Shroff, LinkedIn's vice president of engineering, wrote in a 2019 blog post announcing Blueshift that \"moving to Azure will give us access to a wide array of hardware and software innovations, and unprecedented global scale.\" Staffers started to learn of the decision not to follow through with the Azure migration last year, said the sources, who asked not to be named because of confidentiality. Executives stressed that the project was being put on hold, rather than getting canceled altogether, they said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "LinkedIn has set aside an effort to relocate its data center technology out of its physical facilities and into Microsoft's Azure cloud, CNBC reported Thursday, citing people familiar with the matter. From a report: The decision not to proceed with the project, code-named \"Blueshift,\" marks a major reversal for LinkedIn, which announced its plan to move to Azure in 2019, three years after Microsoft acquired the company for $27 billion. LinkedIn had been using Azure for specific tasks. \n\nThe U-turn represents a setback for Microsoft, which is chasing Amazon\n Web Services in the lucrative cloud infrastructure market and has been counting on cloud technology and services to fuel much of its growth. Microsoft CEO Satya Nadella ran the cloud business before elevation to his current job in 2014. Mohak Shroff, LinkedIn's vice president of engineering, wrote in a 2019 blog post announcing Blueshift that \"moving to Azure will give us access to a wide array of hardware and software innovations, and unprecedented global scale.\" Staffers started to learn of the decision not to follow through with the Azure migration last year, said the sources, who asked not to be named because of confidentiality. Executives stressed that the project was being put on hold, rather than getting canceled altogether, they said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/23/12/14/1427243/linkedin-shelved-planned-move-to-microsoft-azure-opting-to-keep-physical-data-centers?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T14:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-14T14:00:00+00:00", + "title": "Dropbox Spooks Users With New AI Features That Send Data To OpenAI When Used", + "link": "https://slashdot.org/story/23/12/14/1350221/dropbox-spooks-users-with-new-ai-features-that-send-data-to-openai-when-used?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-14T14:00:00+00:00", + "content": "Dropbox has enabled a default setting to share user data with OpenAI for an AI search feature, but says it's only accessed when the feature is used, not to train models, and deleted in 30 days. From a report: Even with assurances of data privacy laid out by Dropbox on an AI privacy FAQ page, the discovery that the setting had been enabled by default upset some Dropbox users. The setting was first noticed by writer Winifred Burton, who shared information about the Third-party AI setting through Bluesky on Tuesday, and frequent AI critic Karla Ortiz shared more information about it on X. \n\nWednesday afternoon, Drew Houston, the CEO of Dropbox, apologized for customer confusion in a post on X and wrote, \"The third-party AI toggle in the settings menu enables or disables access to DBX AI features and functionality. Neither this nor any other setting automatically or passively sends any Dropbox customer data to a third-party AI service.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Dropbox has enabled a default setting to share user data with OpenAI for an AI search feature, but says it's only accessed when the feature is used, not to train models, and deleted in 30 days. From a report: Even with assurances of data privacy laid out by Dropbox on an AI privacy FAQ page, the discovery that the setting had been enabled by default upset some Dropbox users. The setting was first noticed by writer Winifred Burton, who shared information about the Third-party AI setting through Bluesky on Tuesday, and frequent AI critic Karla Ortiz shared more information about it on X. \n\nWednesday afternoon, Drew Houston, the CEO of Dropbox, apologized for customer confusion in a post on X and wrote, \"The third-party AI toggle in the settings menu enables or disables access to DBX AI features and functionality. Neither this nor any other setting automatically or passively sends any Dropbox customer data to a third-party AI service.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/23/12/14/1350221/dropbox-spooks-users-with-new-ai-features-that-send-data-to-openai-when-used?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T14:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-14T13:00:00+00:00", + "title": "Science Fiction and Fantasy Writers Take Aim At AI Freeloading", + "link": "https://news.slashdot.org/story/23/12/14/0020201/science-fiction-and-fantasy-writers-take-aim-at-ai-freeloading?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-14T13:00:00+00:00", + "content": "An anonymous reader quotes a report from TorrentFreak: Members of the Science Fiction and Fantasy Writers Association have no trouble envisioning an AI-centered future, but developments over the past year are reason for concern. The association takes offense when AI models exploit the generosity of science fiction writers, who share their work without DRM and free of charge. [...] Over the past few months, we have seen a variety of copyright lawsuits, many of which were filed by writers. These cases target ChatGPT's OpenAI but other platforms are targeted as well. A key allegation in these complaints is that the AI was trained using pirated books. For example, several authors have just filed an amended complaint against Meta, alleging that the company continued to train its AI on pirated books despite concerns from its own legal team. This clash between AI and copyright piqued the interest of the U.S. Copyright Office which launched an inquiry asking the public for input. With more than 10,000 responses, it is clear that the topic is close to the hearts of many people. It's impossible to summarize all opinions without AI assistance, but one submission stood out to us in particular; it encourages the free sharing of books while recommending that AI tools shouldn't be allowed to exploit this generosity for free.\n \nThe submission was filed by the Science Fiction and Fantasy Writers Association (SFWA), which represents over 2,500 published writers. The association is particularly concerned with the suggestion that its members' works can be used for AI training under a fair use exception. SFWA sides with many other rightsholders, concluding that pirated books shouldn't be used for AI training, adding that the same applies to books that are freely shared by many Science Fiction and Fantasy writers. [...] Many of the authors strongly believe that freely sharing stories is a good thing that enriches mankind, but that doesn't automatically mean that AI has the same privilege if the output is destined for commercial activities. The SFWA stresses that it doesn't take offense when AI tools use the works of its members for non-commercial purposes, such as research and scholarship. However, turning the data into a commercial tool goes too far.\n \nAI freeloading will lead to unfair competition and cause harm to licensing markets, the writers warn. The developers of the AI tools have attempted to tone down these concerns but the SFWA is not convinced. [...] The writers want to protect their rights but they don't believe in the extremely restrictive position of some other copyright holders. They don't subscribe to the idea that people will no longer buy books because they can get the same information from an AI tool, for example. However, authors deserve some form of compensation. SFWA argues that all stakeholders should ultimately get together to come up with a plan that works for everyone. This means fair compensation and protection for authors, without making it financially unviable for AI to flourish. \"Questions of 'how' and 'when' and 'how much money' all come later; first and foremost the author must have the right to say how their work is used,\" their submission reads.\n \n\"So long as authors retain the right to say 'no' we believe that equitable solutions to the thorny problems of licensing, scale, and market harm can be found. But that right remains the cornerstone, and we insist upon it,\" SFWA concludes.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from TorrentFreak: Members of the Science Fiction and Fantasy Writers Association have no trouble envisioning an AI-centered future, but developments over the past year are reason for concern. The association takes offense when AI models exploit the generosity of science fiction writers, who share their work without DRM and free of charge. [...] Over the past few months, we have seen a variety of copyright lawsuits, many of which were filed by writers. These cases target ChatGPT's OpenAI but other platforms are targeted as well. A key allegation in these complaints is that the AI was trained using pirated books. For example, several authors have just filed an amended complaint against Meta, alleging that the company continued to train its AI on pirated books despite concerns from its own legal team. This clash between AI and copyright piqued the interest of the U.S. Copyright Office which launched an inquiry asking the public for input. With more than 10,000 responses, it is clear that the topic is close to the hearts of many people. It's impossible to summarize all opinions without AI assistance, but one submission stood out to us in particular; it encourages the free sharing of books while recommending that AI tools shouldn't be allowed to exploit this generosity for free.\n \nThe submission was filed by the Science Fiction and Fantasy Writers Association (SFWA), which represents over 2,500 published writers. The association is particularly concerned with the suggestion that its members' works can be used for AI training under a fair use exception. SFWA sides with many other rightsholders, concluding that pirated books shouldn't be used for AI training, adding that the same applies to books that are freely shared by many Science Fiction and Fantasy writers. [...] Many of the authors strongly believe that freely sharing stories is a good thing that enriches mankind, but that doesn't automatically mean that AI has the same privilege if the output is destined for commercial activities. The SFWA stresses that it doesn't take offense when AI tools use the works of its members for non-commercial purposes, such as research and scholarship. However, turning the data into a commercial tool goes too far.\n \nAI freeloading will lead to unfair competition and cause harm to licensing markets, the writers warn. The developers of the AI tools have attempted to tone down these concerns but the SFWA is not convinced. [...] The writers want to protect their rights but they don't believe in the extremely restrictive position of some other copyright holders. They don't subscribe to the idea that people will no longer buy books because they can get the same information from an AI tool, for example. However, authors deserve some form of compensation. SFWA argues that all stakeholders should ultimately get together to come up with a plan that works for everyone. This means fair compensation and protection for authors, without making it financially unviable for AI to flourish. \"Questions of 'how' and 'when' and 'how much money' all come later; first and foremost the author must have the right to say how their work is used,\" their submission reads.\n \n\"So long as authors retain the right to say 'no' we believe that equitable solutions to the thorny problems of licensing, scale, and market harm can be found. But that right remains the cornerstone, and we insist upon it,\" SFWA concludes.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/23/12/14/0020201/science-fiction-and-fantasy-writers-take-aim-at-ai-freeloading?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T13:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-14T10:00:00+00:00", + "title": "Are Tiny Black Holes Hiding Within Giant Stars?", + "link": "https://science.slashdot.org/story/23/12/14/005223/are-tiny-black-holes-hiding-within-giant-stars?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-14T10:00:00+00:00", + "content": "sciencehabit shares a report from Science Magazine: Grunge music: a source of validation for a generation of disaffected youth. And a surprising source of scientific inspiration for Earl Bellinger of the Max Planck Institute for Astrophysics. While listening to Soundgarden's 1994 hit Black Hole Sun 2 years ago, he contemplated a curious question: Might itty-bitty black holes from the dawn of time be lurking in the hearts of giant stars? A new study by Bellinger and colleagues suggests the idea is not so far-fetched. Astronomers could detect these trapped black holes by the vibrations they cause on the star's surface. And if there's enough of them out there, they could function as the mysterious dark matter that holds the universe together.\n \nThe researchers found that the black holes would sink to the star's core where hydrogen atoms undergo fusion to produce heat and light. At first, very little would happen. Even a dense stellar core is mostly empty space. The most microscopic of the black holes would have a hard time finding matter to consume and its growth would be extremely slow, Bellinger says. \"It could take longer than the lifetime of the universe to eat the star.\" But larger ones, roughly as massive as the asteroid Ceres or the dwarf planet Pluto, would get bigger on timescales of only a few hundred million years. Material would spiral onto the black hole, forming a disk that would heat up through friction and emit radiation. Once the black hole was about as massive as Earth, it would produce significant amounts of radiation, shining brightly and churning up the star's core like pot of boiling water. \"It will become a black hole -- powered object rather than fusion-powered object,\" says study co-author Matt Caplan, a theoretical physicist at Illinois State University. He and his colleagues have dubbed these entities \"Hawking stars.\"\n \nThe European Space Agency's Gaia satellite has spotted about 500 such anomalously cool giant stars, known as red stragglers, Bellinger says. To figure out whether these might actually be hiding a black hole, he says, astronomers could tune in to the particular frequencies at which the stars vibrate. Because a Hawking star would churn throughout its interior, rather than just in the topmost layers like an ordinary red giant, it would be expected to thrum with a particular combination of frequencies. Such waves can be detected in the way the star's light pulses and throbs. Bellinger is applying for funding to study the known red stragglers and see whether any display the characteristic vibrations of a black hole. The study has been published in The Astrophysical Journal.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "sciencehabit shares a report from Science Magazine: Grunge music: a source of validation for a generation of disaffected youth. And a surprising source of scientific inspiration for Earl Bellinger of the Max Planck Institute for Astrophysics. While listening to Soundgarden's 1994 hit Black Hole Sun 2 years ago, he contemplated a curious question: Might itty-bitty black holes from the dawn of time be lurking in the hearts of giant stars? A new study by Bellinger and colleagues suggests the idea is not so far-fetched. Astronomers could detect these trapped black holes by the vibrations they cause on the star's surface. And if there's enough of them out there, they could function as the mysterious dark matter that holds the universe together.\n \nThe researchers found that the black holes would sink to the star's core where hydrogen atoms undergo fusion to produce heat and light. At first, very little would happen. Even a dense stellar core is mostly empty space. The most microscopic of the black holes would have a hard time finding matter to consume and its growth would be extremely slow, Bellinger says. \"It could take longer than the lifetime of the universe to eat the star.\" But larger ones, roughly as massive as the asteroid Ceres or the dwarf planet Pluto, would get bigger on timescales of only a few hundred million years. Material would spiral onto the black hole, forming a disk that would heat up through friction and emit radiation. Once the black hole was about as massive as Earth, it would produce significant amounts of radiation, shining brightly and churning up the star's core like pot of boiling water. \"It will become a black hole -- powered object rather than fusion-powered object,\" says study co-author Matt Caplan, a theoretical physicist at Illinois State University. He and his colleagues have dubbed these entities \"Hawking stars.\"\n \nThe European Space Agency's Gaia satellite has spotted about 500 such anomalously cool giant stars, known as red stragglers, Bellinger says. To figure out whether these might actually be hiding a black hole, he says, astronomers could tune in to the particular frequencies at which the stars vibrate. Because a Hawking star would churn throughout its interior, rather than just in the topmost layers like an ordinary red giant, it would be expected to thrum with a particular combination of frequencies. Such waves can be detected in the way the star's light pulses and throbs. Bellinger is applying for funding to study the known red stragglers and see whether any display the characteristic vibrations of a black hole. The study has been published in The Astrophysical Journal.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/14/005223/are-tiny-black-holes-hiding-within-giant-stars?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T10:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-14T07:00:00+00:00", + "title": "Low-Frequency Sound Can Reveal That a Tornado Is On Its Way", + "link": "https://news.slashdot.org/story/23/12/13/2340222/low-frequency-sound-can-reveal-that-a-tornado-is-on-its-way?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-14T07:00:00+00:00", + "content": "Scientists are exploring infrasound, low-frequency sound waves produced by tornadoes to develop more accurate early warning systems for these destructive storms. The hope is that eavesdropping on infrasound signals, which travel for hundreds of miles, could provide up to two hours of advance warning. The BBC reports: Scientists have been listening to tornadoes and trying to work out whether they produce a unique sound since the 1970s. Experimental evidence suggests that low-frequency infrasound, with a frequency range of 1-10Hz , is produced while a tornado is taking shape and throughout its life. One recent set of measurements from a tornado near Lakin, Kansas in May 2020 revealed that the twister produced a distinct, elevated signal between 10Hz and 15Hz. In some cases arrays of infrasound detecting microphones have been shown to pick up the noise produced by tornadoes from more than 100km (60 miles) away and have also indicated that the infrasound is produced before tornadogenesis even begins. Researchers hope that by eavesdropping on these noises, it may be possible to not only hear a tornado coming but perhaps even predict them up to two hours before they form.\n \nSince 2020, a team from Oklahoma State University has been testing infrasound's predictive powers using equipment installed in tornado-chasing vehicles. Their portable kit, the Ground-based Local Infrasound Data Acquisition, or \"Glinda\", system, references a character from The Wizard of Oz. They hope the equipment will help storm chasers to better monitor the development of tornadoes in real time, but requires the equipment to be deployed to the right place at the right time. Some researchers, however, are working on systems that can be left to permanently monitor for tornadoes. One group, led by Roger Waxler, principal scientist at the National Centre for Physical Acoustics (NCPA) based at the University of Mississippi, are planning to deploy four permanent arrays of high-tech sensors in south Mississippi to detect infrasound signals. They hope the system will provide a way of consistently monitoring and detecting tornadoes.\n \n[...] Waxler and his team hope their decade-long experiment will lead to an effective early warning system for tornadoes, particularly when combined with other sources such as doppler radar. \"It's not unreasonable that we could localize a tornado to half a football field,\" adds Waxler. \"I envision seeing a map on an app with a dot that shows there's a tornado coming up South Lamar [Avenue, for example].\" Warnings have improved in recent decades: from 2003 to 2017, 87% of deadly tornadoes were preceded by an advance warning, but people still have an average of just 10-15 minutes to find shelter. A study based on interviews with 23 survivors of two deadly tornadoes found that people tried to evaluate and respond to the risk of a tornado as the situation evolved, but some did not have a place to shelter easily. Experts believe tornado warnings are too often ignored due to \"warning fatigue\" created by false alarms and hours of televised storm coverage. One study found 37% of people surveyed did not understand the need for taking precautionary measures during a tornado warning. Waxler hopes that a more accurate early warning system could change the way people respond when they hear a storm is approaching. \"Rather than going to hide in your bathtub or cellar, it might be a better idea to get in your car and drive if you know where a tornado is. \"The goal is to save lives.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Scientists are exploring infrasound, low-frequency sound waves produced by tornadoes to develop more accurate early warning systems for these destructive storms. The hope is that eavesdropping on infrasound signals, which travel for hundreds of miles, could provide up to two hours of advance warning. The BBC reports: Scientists have been listening to tornadoes and trying to work out whether they produce a unique sound since the 1970s. Experimental evidence suggests that low-frequency infrasound, with a frequency range of 1-10Hz , is produced while a tornado is taking shape and throughout its life. One recent set of measurements from a tornado near Lakin, Kansas in May 2020 revealed that the twister produced a distinct, elevated signal between 10Hz and 15Hz. In some cases arrays of infrasound detecting microphones have been shown to pick up the noise produced by tornadoes from more than 100km (60 miles) away and have also indicated that the infrasound is produced before tornadogenesis even begins. Researchers hope that by eavesdropping on these noises, it may be possible to not only hear a tornado coming but perhaps even predict them up to two hours before they form.\n \nSince 2020, a team from Oklahoma State University has been testing infrasound's predictive powers using equipment installed in tornado-chasing vehicles. Their portable kit, the Ground-based Local Infrasound Data Acquisition, or \"Glinda\", system, references a character from The Wizard of Oz. They hope the equipment will help storm chasers to better monitor the development of tornadoes in real time, but requires the equipment to be deployed to the right place at the right time. Some researchers, however, are working on systems that can be left to permanently monitor for tornadoes. One group, led by Roger Waxler, principal scientist at the National Centre for Physical Acoustics (NCPA) based at the University of Mississippi, are planning to deploy four permanent arrays of high-tech sensors in south Mississippi to detect infrasound signals. They hope the system will provide a way of consistently monitoring and detecting tornadoes.\n \n[...] Waxler and his team hope their decade-long experiment will lead to an effective early warning system for tornadoes, particularly when combined with other sources such as doppler radar. \"It's not unreasonable that we could localize a tornado to half a football field,\" adds Waxler. \"I envision seeing a map on an app with a dot that shows there's a tornado coming up South Lamar [Avenue, for example].\" Warnings have improved in recent decades: from 2003 to 2017, 87% of deadly tornadoes were preceded by an advance warning, but people still have an average of just 10-15 minutes to find shelter. A study based on interviews with 23 survivors of two deadly tornadoes found that people tried to evaluate and respond to the risk of a tornado as the situation evolved, but some did not have a place to shelter easily. Experts believe tornado warnings are too often ignored due to \"warning fatigue\" created by false alarms and hours of televised storm coverage. One study found 37% of people surveyed did not understand the need for taking precautionary measures during a tornado warning. Waxler hopes that a more accurate early warning system could change the way people respond when they hear a storm is approaching. \"Rather than going to hide in your bathtub or cellar, it might be a better idea to get in your car and drive if you know where a tornado is. \"The goal is to save lives.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/23/12/13/2340222/low-frequency-sound-can-reveal-that-a-tornado-is-on-its-way?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-14T03:30:00+00:00", + "title": "Human Brain Cells Hooked Up To a Chip Can Do Speech Recognition", + "link": "https://science.slashdot.org/story/23/12/13/2347257/human-brain-cells-hooked-up-to-a-chip-can-do-speech-recognition?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-14T03:30:00+00:00", + "content": "An anonymous reader quotes a report from MIT Technology Review: Brain organoids, clumps of human brain cells grown in a dish, can be hooked up to an electronic chip and carry out simple computational tasks, a new study shows. Feng Guo and his team at Indiana University Bloomington generated a brain organoid from stem cells, attached it to a computer chip, and connected their setup, known as Brainoware, to an AI tool. They found that this hybrid system could process, learn, and remember information. It was even able to carry out some rudimentary speech recognition. The work, published today in Nature Electronics, could one day lead to new kinds of bio-computers that are more efficient than conventional computers.\n \n\"This is a first demonstration of using brain organoids [for computing],\" says Guo. \"It's exciting to see the possibilities of organoids for biocomputing in the future.\" With Brainoware, Guo aimed to use actual brain cells to send and receive information. When the researchers applied electrical stimulation to the hybrid system they'd built, Brainoware responded to those signals, and changes occurred in its neural networks. According to the researchers, this result suggests that the hybrid system did process information, and could perhaps even perform computing tasks without supervision. Guo and his colleagues then attempted to see if Brainoware could perform any useful tasks. In one test, they used Brainoware to try to solve mathematical equations. They also gave it a benchmark test for speech recognition, using 240 audio clips of eight people pronouncing Japanese vowels. The clips were converted into electrical signals and applied to the Brainoware system. This generated signals in the neural networks of the brain organoid, which were then fed into an AI tool for decoding.\n \nThe researchers found that the brain organoid -- AI system could decode the signals from the audio recordings, which is a form of speech recognition, says Guo. \"But the accuracy was low,\" he says. Although the system improved with training, reaching an accuracy of about 78%, it was still less accurate than artificial neural networks, according to the study. Lena Smirnova, an assistant professor of public health at Johns Hopkins University, points out that brain organoids do not have the ability to truly hear speech but simply exhibit \"a reaction\" to pulses of electrical stimulation from the audio clips. And the study did not demonstrate whether Brainoware can process and store information over the long term or learn multiple tasks. Generating brain cell cultures in a lab and maintaining them long enough to perform computations is also a huge undertaking. Still, she adds, \"it's a really good demonstration that shows the capabilities of brain organoids.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from MIT Technology Review: Brain organoids, clumps of human brain cells grown in a dish, can be hooked up to an electronic chip and carry out simple computational tasks, a new study shows. Feng Guo and his team at Indiana University Bloomington generated a brain organoid from stem cells, attached it to a computer chip, and connected their setup, known as Brainoware, to an AI tool. They found that this hybrid system could process, learn, and remember information. It was even able to carry out some rudimentary speech recognition. The work, published today in Nature Electronics, could one day lead to new kinds of bio-computers that are more efficient than conventional computers.\n \n\"This is a first demonstration of using brain organoids [for computing],\" says Guo. \"It's exciting to see the possibilities of organoids for biocomputing in the future.\" With Brainoware, Guo aimed to use actual brain cells to send and receive information. When the researchers applied electrical stimulation to the hybrid system they'd built, Brainoware responded to those signals, and changes occurred in its neural networks. According to the researchers, this result suggests that the hybrid system did process information, and could perhaps even perform computing tasks without supervision. Guo and his colleagues then attempted to see if Brainoware could perform any useful tasks. In one test, they used Brainoware to try to solve mathematical equations. They also gave it a benchmark test for speech recognition, using 240 audio clips of eight people pronouncing Japanese vowels. The clips were converted into electrical signals and applied to the Brainoware system. This generated signals in the neural networks of the brain organoid, which were then fed into an AI tool for decoding.\n \nThe researchers found that the brain organoid -- AI system could decode the signals from the audio recordings, which is a form of speech recognition, says Guo. \"But the accuracy was low,\" he says. Although the system improved with training, reaching an accuracy of about 78%, it was still less accurate than artificial neural networks, according to the study. Lena Smirnova, an assistant professor of public health at Johns Hopkins University, points out that brain organoids do not have the ability to truly hear speech but simply exhibit \"a reaction\" to pulses of electrical stimulation from the audio clips. And the study did not demonstrate whether Brainoware can process and store information over the long term or learn multiple tasks. Generating brain cell cultures in a lab and maintaining them long enough to perform computations is also a huge undertaking. Still, she adds, \"it's a really good demonstration that shows the capabilities of brain organoids.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/13/2347257/human-brain-cells-hooked-up-to-a-chip-can-do-speech-recognition?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T03:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-14T01:00:00+00:00", + "title": "Google Maps Ditches Cloud-Based Location History", + "link": "https://yro.slashdot.org/story/23/12/13/2330202/google-maps-ditches-cloud-based-location-history?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-14T01:00:00+00:00", + "content": "Google Maps will soon give you the option to store your location data on your device instead of in the cloud. Android Police reports: In the coming year, Google is planning to switch things up by defaulting to saving your Timeline directly on your device instead of the cloud. You'll also have the option to wipe out bits or the whole information dossier whenever you want and disable location history completely. When you're jumping ship to a new device and want to keep your data close, you always have the option to back it up in the cloud. Google assures you that it'll lock it up with encryption.\n \nAnother significant update is the shorter default amount of time before your location history is auto-deleted. Soon, when you turn on location history, the default auto-delete time shrinks to three months. In the past, it used to hang around for 18 months by default. If you're the sentimental type, you can extend the Timeline's lifespan or turn off the auto-delete option. Google Maps has another nifty trick up its sleeve: soon, you can erase all traces of your trips with just a few taps. Say you've got a favorite hangout spot and you want to keep it to yourself. You can wipe the slate clean right from the app, whether it's searches, directions, visits, or shares. This handy feature is making its debut on Maps for Android and iOS in the next few weeks.\n \nFinally, you will soon be able to click on the blue dot on the map to view your Location History and Timeline at a glance. It allows you to tweak what you share and store on Maps, all without having to dive into the settings. Currently, the blue dot only gives you some neat shortcuts for parking saves and location sharing.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google Maps will soon give you the option to store your location data on your device instead of in the cloud. Android Police reports: In the coming year, Google is planning to switch things up by defaulting to saving your Timeline directly on your device instead of the cloud. You'll also have the option to wipe out bits or the whole information dossier whenever you want and disable location history completely. When you're jumping ship to a new device and want to keep your data close, you always have the option to back it up in the cloud. Google assures you that it'll lock it up with encryption.\n \nAnother significant update is the shorter default amount of time before your location history is auto-deleted. Soon, when you turn on location history, the default auto-delete time shrinks to three months. In the past, it used to hang around for 18 months by default. If you're the sentimental type, you can extend the Timeline's lifespan or turn off the auto-delete option. Google Maps has another nifty trick up its sleeve: soon, you can erase all traces of your trips with just a few taps. Say you've got a favorite hangout spot and you want to keep it to yourself. You can wipe the slate clean right from the app, whether it's searches, directions, visits, or shares. This handy feature is making its debut on Maps for Android and iOS in the next few weeks.\n \nFinally, you will soon be able to click on the blue dot on the map to view your Location History and Timeline at a glance. It allows you to tweak what you share and store on Maps, all without having to dive into the settings. Currently, the blue dot only gives you some neat shortcuts for parking saves and location sharing.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/12/13/2330202/google-maps-ditches-cloud-based-location-history?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T01:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-14T00:20:00+00:00", + "title": "GM's Cruise Robotaxi Unit Dismisses Nine Execs After Safety Probe", + "link": "https://tech.slashdot.org/story/23/12/13/2358242/gms-cruise-robotaxi-unit-dismisses-nine-execs-after-safety-probe?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-14T00:20:00+00:00", + "content": "According to Reuters, General Motors' Cruise robotaxi unit dismissed nine executives amid an ongoing safety investigation, which the company confirmed included Chief Operating Officer Gil West. The company conducted a full safety review following an incident in San Francisco where a pedestrian was struck and dragged by one of its cars. GM already halted service nationwide and removed its cars from public roads. Reuters reports: CEO Kyle Vogt and co-founder Dan Kan both resigned in recent weeks and Cruise is preparing for a round of layoffs this month. \"Following an initial analysis of the October 2 incident and Cruise's response to it, nine individuals departed Cruise,\" according to the memo. \"We are committed to full transparency and are focused on rebuilding trust and operating with the highest standards when it comes to safety, integrity, and accountability,\" the memo said. \"As a result, we believe that new leadership is necessary to achieve these goals.\"\n \nThe Cruise spokesperson confirmed that among those dismissed was also Chief Legal and Policy Officer Jeff Bleich and Senior Vice President of Government Affairs David Estrada. Cruise's troubles are also a setback for an industry dependent on public trust and the cooperation of regulators. The unit had in recent months touted ambitious plans to expand to more cities, offering fully autonomous taxi rides. The investigation, led by law firm Quinn Emmanuel, is expected to last until January, GM has said. \"The personnel decisions made today are a necessary step for Cruise to move forward as it focuses on accountability, trust and transparency,\" GM said in a statement.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "According to Reuters, General Motors' Cruise robotaxi unit dismissed nine executives amid an ongoing safety investigation, which the company confirmed included Chief Operating Officer Gil West. The company conducted a full safety review following an incident in San Francisco where a pedestrian was struck and dragged by one of its cars. GM already halted service nationwide and removed its cars from public roads. Reuters reports: CEO Kyle Vogt and co-founder Dan Kan both resigned in recent weeks and Cruise is preparing for a round of layoffs this month. \"Following an initial analysis of the October 2 incident and Cruise's response to it, nine individuals departed Cruise,\" according to the memo. \"We are committed to full transparency and are focused on rebuilding trust and operating with the highest standards when it comes to safety, integrity, and accountability,\" the memo said. \"As a result, we believe that new leadership is necessary to achieve these goals.\"\n \nThe Cruise spokesperson confirmed that among those dismissed was also Chief Legal and Policy Officer Jeff Bleich and Senior Vice President of Government Affairs David Estrada. Cruise's troubles are also a setback for an industry dependent on public trust and the cooperation of regulators. The unit had in recent months touted ambitious plans to expand to more cities, offering fully autonomous taxi rides. The investigation, led by law firm Quinn Emmanuel, is expected to last until January, GM has said. \"The personnel decisions made today are a necessary step for Cruise to move forward as it focuses on accountability, trust and transparency,\" GM said in a statement.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/13/2358242/gms-cruise-robotaxi-unit-dismisses-nine-execs-after-safety-probe?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T00:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-13T23:40:00+00:00", + "title": "Xbox Cloud Gaming Is Now Available On Meta's Quest VR Headsets", + "link": "https://games.slashdot.org/story/23/12/13/2143222/xbox-cloud-gaming-is-now-available-on-metas-quest-vr-headsets?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-13T23:40:00+00:00", + "content": "A beta version of the Xbox Cloud Gaming app is now available for the Meta Quest headsets, allowing you to stream hundreds of Xbox games with an Xbox Game Pass Ultimate subscription. The Verge reports: The beta app is available from the Meta Quest Store, and you'll simply need to pair a supported Bluetooth controller to start playing. You can use an Xbox controller (that supports Bluetooth), a PS4 one, or even Nintendo's Switch Pro controllers. Support for PS5 controllers is \"coming in the future,\" according to Meta.\n \nThere are a variety of display sizes for an immersive VR environment to stream Xbox games in or even an Xbox-themed virtual space on the latest Quest 3 and Pro headsets that takes advantage of full-color passthrough.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "A beta version of the Xbox Cloud Gaming app is now available for the Meta Quest headsets, allowing you to stream hundreds of Xbox games with an Xbox Game Pass Ultimate subscription. The Verge reports: The beta app is available from the Meta Quest Store, and you'll simply need to pair a supported Bluetooth controller to start playing. You can use an Xbox controller (that supports Bluetooth), a PS4 one, or even Nintendo's Switch Pro controllers. Support for PS5 controllers is \"coming in the future,\" according to Meta.\n \nThere are a variety of display sizes for an immersive VR environment to stream Xbox games in or even an Xbox-themed virtual space on the latest Quest 3 and Pro headsets that takes advantage of full-color passthrough.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/23/12/13/2143222/xbox-cloud-gaming-is-now-available-on-metas-quest-vr-headsets?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-13T23:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-13T23:00:00+00:00", + "title": "European Union Lawmakers Agree To New Rules That Bolster Gig Worker Rights", + "link": "https://yro.slashdot.org/story/23/12/13/2121226/european-union-lawmakers-agree-to-new-rules-that-bolster-gig-worker-rights?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-13T23:00:00+00:00", + "content": "An anonymous reader quotes a report from TechCrunch: Some two years of talking about gig worker rights later and European Union lawmakers have finally reached a deal on the final shape of the Platform Worker Directive. [...] The Commission presented its original plan to reform labor laws to boost protections for platform workers back in December 2021, setting out a presumption of employment for workers in a bid to flip the odds on gig economy exploitation. But the proposal proved contentious, with heavy industry lobbying from tech platforms such as Uber pushing for gig workers to be carved out of Europe's employment protections. There were also divisions between Member States over how much worker protection vs platform shielding they were prepared to commit to. But after a final trilogue, lasting more than 12 hours, a provisional agreement has been clinched.\n \nThe deal that's been provisionally agreed means a presumption of an employment relationship between a gig worker and a platform will be triggered when two out of a list of five \"indicators of control or direction are present,\" as the parliament's press release puts it. \"This list can be expanded by Member States. The presumption can be triggered by the worker, by their representatives, and by the competent authorities on their own initiative. This presumption can be rebutted if the platform proves that the contractual relationship is not an employment relationship,\" it adds. The agreement also contains transparency provisions that will require platforms to provide information to individuals performing platform work (and to their representatives) about how the algorithms that manage them work; and how their behavior affects decisions taken by automated systems. [...] The provisionally agreed new rules will also ban platforms from taking \"certain important decisions,\" such as dismissals or decisions to suspend an account, without human oversight.\n \nPer the parliament, the agreed text also ensures \"more human oversight on the decisions of systems that directly affect the persons performing platform work\"; and obliges platforms to \"assess the impact of decisions taken or supported by automated monitoring and decision-making systems on working conditions, health and safety and fundamental rights\". So conducting data protection impact assessments looks set to be a hard requirement for complying with the new law. Another prohibition that's been agreed is a ban on platforms from processing certain types of personal data of workers, including personal beliefs, private exchanges with colleagues, or when a worker is not at work -- with the Directive billed as beefing up data protection rights for platform workers.\n \nOther provisions in the provisional deal include a requirement for platforms to share information on self-employed workers in their employ with competent national authorities and representatives of those performing platform work, such as trade unions. Measures to prevent platforms from circumventing the rules by using intermediaries has also been agreement -- a practice that's stepped up considerably in Spain since the country introduced its own labor reform, back in 2021, with the aim of forcing platforms to hire delivery workers. Some key details of exactly what's been agreed remain under wraps -- and full visibility and analysis of the ramifications will likely have to wait for a consolidated text to emerge in the coming weeks/months. [...] The final text still needs to be voted on by the Council and Parliament before it can be adopted as pan-EU law. What implementation period has been agreed also isn't yet clear. But today's political deal signals the train has now left the station.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Some two years of talking about gig worker rights later and European Union lawmakers have finally reached a deal on the final shape of the Platform Worker Directive. [...] The Commission presented its original plan to reform labor laws to boost protections for platform workers back in December 2021, setting out a presumption of employment for workers in a bid to flip the odds on gig economy exploitation. But the proposal proved contentious, with heavy industry lobbying from tech platforms such as Uber pushing for gig workers to be carved out of Europe's employment protections. There were also divisions between Member States over how much worker protection vs platform shielding they were prepared to commit to. But after a final trilogue, lasting more than 12 hours, a provisional agreement has been clinched.\n \nThe deal that's been provisionally agreed means a presumption of an employment relationship between a gig worker and a platform will be triggered when two out of a list of five \"indicators of control or direction are present,\" as the parliament's press release puts it. \"This list can be expanded by Member States. The presumption can be triggered by the worker, by their representatives, and by the competent authorities on their own initiative. This presumption can be rebutted if the platform proves that the contractual relationship is not an employment relationship,\" it adds. The agreement also contains transparency provisions that will require platforms to provide information to individuals performing platform work (and to their representatives) about how the algorithms that manage them work; and how their behavior affects decisions taken by automated systems. [...] The provisionally agreed new rules will also ban platforms from taking \"certain important decisions,\" such as dismissals or decisions to suspend an account, without human oversight.\n \nPer the parliament, the agreed text also ensures \"more human oversight on the decisions of systems that directly affect the persons performing platform work\"; and obliges platforms to \"assess the impact of decisions taken or supported by automated monitoring and decision-making systems on working conditions, health and safety and fundamental rights\". So conducting data protection impact assessments looks set to be a hard requirement for complying with the new law. Another prohibition that's been agreed is a ban on platforms from processing certain types of personal data of workers, including personal beliefs, private exchanges with colleagues, or when a worker is not at work -- with the Directive billed as beefing up data protection rights for platform workers.\n \nOther provisions in the provisional deal include a requirement for platforms to share information on self-employed workers in their employ with competent national authorities and representatives of those performing platform work, such as trade unions. Measures to prevent platforms from circumventing the rules by using intermediaries has also been agreement -- a practice that's stepped up considerably in Spain since the country introduced its own labor reform, back in 2021, with the aim of forcing platforms to hire delivery workers. Some key details of exactly what's been agreed remain under wraps -- and full visibility and analysis of the ramifications will likely have to wait for a consolidated text to emerge in the coming weeks/months. [...] The final text still needs to be voted on by the Council and Parliament before it can be adopted as pan-EU law. What implementation period has been agreed also isn't yet clear. But today's political deal signals the train has now left the station.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/12/13/2121226/european-union-lawmakers-agree-to-new-rules-that-bolster-gig-worker-rights?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-13T23:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-13T22:20:00+00:00", + "title": "GM Says It's Ditching Apple CarPlay, Android Auto For Your Safety", + "link": "https://tech.slashdot.org/story/23/12/13/2112238/gm-says-its-ditching-apple-carplay-android-auto-for-your-safety?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-13T22:20:00+00:00", + "content": "Earlier this year, General Motors announced plans to phase out Apple CarPlay and Android Auto, shifting instead to built-in infotainment systems developed with Google. Now, the company has explained why it made that decision to MotorTrend: Tim Babbitt, GM's head of product for infotainment, gave MT a better explanation at a press event for the new Chevrolet Blazer EV, the flagship vehicle in the no CarPlay or Android Auto strategy. According to him, there's an important factor that didn't make it into the fact sheet: safety. Specifically, he cited driver distraction caused by cell phone usage behind the wheel. According to Babbitt, CarPlay and Android Auto have stability issues that manifest themselves as bad connections, poor rendering, slow responses, and dropped connections. And when CarPlay and Android Auto have issues, drivers pick up their phones again, taking their eyes off the road and totally defeating the purpose of these phone-mirroring programs. Solving those issues can sometimes be beyond the control of the automaker. You can start to see GM's frustration. Babbitt's thesis is that if drivers were to do everything through the vehicle's built-in systems, they'd be less likely to pick up their phones and therefore less distracted and safer behind the wheel. He admits, though, GM hasn't tested this thesis in the lab or real world yet but believes it has potential, if customers go for it.\n \nThe issues Babbitt cited with CarPlay and Android Auto seem like they'd be mostly linked to using those programs wirelessly, and while he says that's true, just plugging the phone into a USB data port doesn't solve all the problems. Babbitt says even when using a physical connection, Android phones are prone to compatibility issues between the vehicle and all the various phone manufacturers running Android. iPhones, meanwhile, suffer from backwards compatibility issues that cause older iPhone models to have trouble running CarPlay consistently. He points to J.D. Power data that shows issues with CarPlay and Android Auto are common owner complaints, and that customers tend to blame the automaker rather than the phone manufacturer or phone software. In that way, eliminating CarPlay and Android Auto potentially relieves GM of a key customer complaint dragging down their perceived quality scores. After MotorTrend's story was published, GM issued the following statement: \"We wanted to reach out to clarify that comments about GM's position on phone projection were misrepresented and to reinforce our valued partnerships with Apple and Google and each company's commitment to driver safety. GM's embedded infotainment strategy is driven by the benefits of having a system that allows for greater integration with the larger GM ecosystem and vehicles.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Earlier this year, General Motors announced plans to phase out Apple CarPlay and Android Auto, shifting instead to built-in infotainment systems developed with Google. Now, the company has explained why it made that decision to MotorTrend: Tim Babbitt, GM's head of product for infotainment, gave MT a better explanation at a press event for the new Chevrolet Blazer EV, the flagship vehicle in the no CarPlay or Android Auto strategy. According to him, there's an important factor that didn't make it into the fact sheet: safety. Specifically, he cited driver distraction caused by cell phone usage behind the wheel. According to Babbitt, CarPlay and Android Auto have stability issues that manifest themselves as bad connections, poor rendering, slow responses, and dropped connections. And when CarPlay and Android Auto have issues, drivers pick up their phones again, taking their eyes off the road and totally defeating the purpose of these phone-mirroring programs. Solving those issues can sometimes be beyond the control of the automaker. You can start to see GM's frustration. Babbitt's thesis is that if drivers were to do everything through the vehicle's built-in systems, they'd be less likely to pick up their phones and therefore less distracted and safer behind the wheel. He admits, though, GM hasn't tested this thesis in the lab or real world yet but believes it has potential, if customers go for it.\n \nThe issues Babbitt cited with CarPlay and Android Auto seem like they'd be mostly linked to using those programs wirelessly, and while he says that's true, just plugging the phone into a USB data port doesn't solve all the problems. Babbitt says even when using a physical connection, Android phones are prone to compatibility issues between the vehicle and all the various phone manufacturers running Android. iPhones, meanwhile, suffer from backwards compatibility issues that cause older iPhone models to have trouble running CarPlay consistently. He points to J.D. Power data that shows issues with CarPlay and Android Auto are common owner complaints, and that customers tend to blame the automaker rather than the phone manufacturer or phone software. In that way, eliminating CarPlay and Android Auto potentially relieves GM of a key customer complaint dragging down their perceived quality scores. After MotorTrend's story was published, GM issued the following statement: \"We wanted to reach out to clarify that comments about GM's position on phone projection were misrepresented and to reinforce our valued partnerships with Apple and Google and each company's commitment to driver safety. GM's embedded infotainment strategy is driven by the benefits of having a system that allows for greater integration with the larger GM ecosystem and vehicles.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/13/2112238/gm-says-its-ditching-apple-carplay-android-auto-for-your-safety?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-13T22:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-13T21:40:00+00:00", + "title": "OpenAI, Axel Springer Strike Unprecedented Deal To Offer News In ChatGPT", + "link": "https://news.slashdot.org/story/23/12/13/212247/openai-axel-springer-strike-unprecedented-deal-to-offer-news-in-chatgpt?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-13T21:40:00+00:00", + "content": "OpenAI has struck a deal with Politico parent company Axel Springer, allowing ChatGPT to summarize news stories from Politico and Business Insider. CNBC reports: Once the OpenAI-Axel Springer deal goes into effect, when a user asks ChatGPT a question, it will respond with summaries of news articles from media outlets such as Politico, Business Insider, Bild and Welt. The chatbot will also include articles that would otherwise be limited to subscribers of those outlets, according to a release, and the answers will include \"attribution and links to the full articles for transparency.\" The partnership follows a deal that OpenAI struck with the Associated Press in July, allowing it to license the AP's news archive for training data.\n \nAs part of the agreement, Axel Springer will provide content from its media brands as training data for OpenAI's large language models, such as GPT-4, the AI model that helps power ChatGPT. The News Media Alliance, a trade group representing more than 2,200 publishers, released research in October suggesting that data sets used to train popular AI models rely \"significantly\" more on publisher content, outweighing it by a factor ranging from over five to almost 100, compared to generic web content.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "OpenAI has struck a deal with Politico parent company Axel Springer, allowing ChatGPT to summarize news stories from Politico and Business Insider. CNBC reports: Once the OpenAI-Axel Springer deal goes into effect, when a user asks ChatGPT a question, it will respond with summaries of news articles from media outlets such as Politico, Business Insider, Bild and Welt. The chatbot will also include articles that would otherwise be limited to subscribers of those outlets, according to a release, and the answers will include \"attribution and links to the full articles for transparency.\" The partnership follows a deal that OpenAI struck with the Associated Press in July, allowing it to license the AP's news archive for training data.\n \nAs part of the agreement, Axel Springer will provide content from its media brands as training data for OpenAI's large language models, such as GPT-4, the AI model that helps power ChatGPT. The News Media Alliance, a trade group representing more than 2,200 publishers, released research in October suggesting that data sets used to train popular AI models rely \"significantly\" more on publisher content, outweighing it by a factor ranging from over five to almost 100, compared to generic web content.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/23/12/13/212247/openai-axel-springer-strike-unprecedented-deal-to-offer-news-in-chatgpt?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-13T21:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-15T14:05:00+00:00", + "title": "Ex-Wirecard COO Suspected as Decade-Long Russian Agent", + "link": "https://slashdot.org/story/23/12/15/144235/ex-wirecard-coo-suspected-as-decade-long-russian-agent?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-15T14:05:00+00:00", + "content": "Soon after payment-processing giant Wirecard reported in June 2020 that nearly $2 billion had gone missing from its balance sheet, its chief operating officer Jan Marsalek boarded a private jet out of Austria. After a landing in Belarus, he was whisked by car to Moscow, where he got a Russian passport under an assumed name. Western intelligence and security officials now say they have reached the unsettling conclusion that Marsalek had likely been a Russian agent for nearly a decade. From a report: Marsalek already stands accused of stealing hundreds of millions of dollars from investors. Following multiple international investigations, officials from intelligence, police and judiciary agencies in several countries now say the 43-year-old native of Austria used his defunct payments company to illegally help Russian spy agencies move money to fund covert operations around the world. \n\nOne of the most wanted men in the world, Marsalek has also provided assistance to the mercenary organization of Yevgeny Prigozhin, the late Russian warlord, and is now involved in the reconfiguration of his business empire in Africa on behalf of Russian officials from his new domicile in Dubai, according to Western intelligence. Wirecard got its start processing payments for pornography websites on its way to becoming an Internet finance behemoth. During its heyday, the company claimed to process $140 billion of transactions a year on behalf of a quarter million businesses, making it a rival of Square and PayPal. It was briefly valued at more than any German bank. Former associates remember Marsalek as a bon vivant who at one point rented a Munich mansion for 35,000 euros, or $38,000, a month. He was making millions of dollars a year in salary and crisscrossing the globe in private jets. He was also obsessed with the cloak-and-dagger world of espionage, often intimating that he had connections with intelligence officers, they say -- claims many dismissed as bluster.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Soon after payment-processing giant Wirecard reported in June 2020 that nearly $2 billion had gone missing from its balance sheet, its chief operating officer Jan Marsalek boarded a private jet out of Austria. After a landing in Belarus, he was whisked by car to Moscow, where he got a Russian passport under an assumed name. Western intelligence and security officials now say they have reached the unsettling conclusion that Marsalek had likely been a Russian agent for nearly a decade. From a report: Marsalek already stands accused of stealing hundreds of millions of dollars from investors. Following multiple international investigations, officials from intelligence, police and judiciary agencies in several countries now say the 43-year-old native of Austria used his defunct payments company to illegally help Russian spy agencies move money to fund covert operations around the world. \n\nOne of the most wanted men in the world, Marsalek has also provided assistance to the mercenary organization of Yevgeny Prigozhin, the late Russian warlord, and is now involved in the reconfiguration of his business empire in Africa on behalf of Russian officials from his new domicile in Dubai, according to Western intelligence. Wirecard got its start processing payments for pornography websites on its way to becoming an Internet finance behemoth. During its heyday, the company claimed to process $140 billion of transactions a year on behalf of a quarter million businesses, making it a rival of Square and PayPal. It was briefly valued at more than any German bank. Former associates remember Marsalek as a bon vivant who at one point rented a Munich mansion for 35,000 euros, or $38,000, a month. He was making millions of dollars a year in salary and crisscrossing the globe in private jets. He was also obsessed with the cloak-and-dagger world of espionage, often intimating that he had connections with intelligence officers, they say -- claims many dismissed as bluster.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/23/12/15/144235/ex-wirecard-coo-suspected-as-decade-long-russian-agent?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T14:05:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-15T13:00:00+00:00", + "title": "Suspects Can Refuse To Provide Phone Passcodes To Police, Court Rules", + "link": "https://yro.slashdot.org/story/23/12/15/0022224/suspects-can-refuse-to-provide-phone-passcodes-to-police-court-rules?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-15T13:00:00+00:00", + "content": "An anonymous reader quotes a report from Ars Technica: Criminal suspects can refuse to provide phone passcodes to police under the US Constitution's Fifth Amendment privilege against self-incrimination, according to a unanimous ruling issued (PDF) today by Utah's state Supreme Court. The questions addressed in the ruling could eventually be taken up by the US Supreme Court, whether through review of this case or a similar one. The case involves Alfonso Valdez, who was arrested for kidnapping and assaulting his ex-girlfriend. Police officers obtained a search warrant for the contents of Valdez's phone but couldn't crack his passcode.\n \nValdez refused to provide his passcode to a police detective. At his trial, the state \"elicited testimony from the detective about Valdez's refusal to provide his passcode when asked,\" today's ruling said. \"And during closing arguments, the State argued in rebuttal that Valdez's refusal and the resulting lack of evidence from his cell phone undermined the veracity of one of his defenses. The jury convicted Valdez.\" A court of appeals reversed the conviction, agreeing \"with Valdez that he had a right under the Fifth Amendment to the United States Constitution to refuse to provide his passcode, and that the State violated that right when it used his refusal against him at trial.\" The Utah Supreme Court affirmed the court of appeals ruling.\n \nThe Valdez case does not involve an order to compel a suspect to unlock a device. Instead, \"law enforcement asked Valdez to verbally provide his passcode,\" Utah justices wrote. \"While these circumstances involve modern technology in a scenario that the Supreme Court has not yet addressed, we conclude that these facts present a more straightforward question that is answered by settled Fifth Amendment principles.\" Ruling against the state, the Utah Supreme Court said it \"agree[s] with the court of appeals that verbally providing a cell phone passcode is a testimonial communication under the Fifth Amendment.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Criminal suspects can refuse to provide phone passcodes to police under the US Constitution's Fifth Amendment privilege against self-incrimination, according to a unanimous ruling issued (PDF) today by Utah's state Supreme Court. The questions addressed in the ruling could eventually be taken up by the US Supreme Court, whether through review of this case or a similar one. The case involves Alfonso Valdez, who was arrested for kidnapping and assaulting his ex-girlfriend. Police officers obtained a search warrant for the contents of Valdez's phone but couldn't crack his passcode.\n \nValdez refused to provide his passcode to a police detective. At his trial, the state \"elicited testimony from the detective about Valdez's refusal to provide his passcode when asked,\" today's ruling said. \"And during closing arguments, the State argued in rebuttal that Valdez's refusal and the resulting lack of evidence from his cell phone undermined the veracity of one of his defenses. The jury convicted Valdez.\" A court of appeals reversed the conviction, agreeing \"with Valdez that he had a right under the Fifth Amendment to the United States Constitution to refuse to provide his passcode, and that the State violated that right when it used his refusal against him at trial.\" The Utah Supreme Court affirmed the court of appeals ruling.\n \nThe Valdez case does not involve an order to compel a suspect to unlock a device. Instead, \"law enforcement asked Valdez to verbally provide his passcode,\" Utah justices wrote. \"While these circumstances involve modern technology in a scenario that the Supreme Court has not yet addressed, we conclude that these facts present a more straightforward question that is answered by settled Fifth Amendment principles.\" Ruling against the state, the Utah Supreme Court said it \"agree[s] with the court of appeals that verbally providing a cell phone passcode is a testimonial communication under the Fifth Amendment.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/12/15/0022224/suspects-can-refuse-to-provide-phone-passcodes-to-police-court-rules?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T13:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-15T10:00:00+00:00", + "title": "Scientists Pinpoint Cause of Morning Sickness To Hormone Made By Fetus", + "link": "https://science.slashdot.org/story/23/12/15/0011204/scientists-pinpoint-cause-of-morning-sickness-to-hormone-made-by-fetus?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-15T10:00:00+00:00", + "content": "Scientists have pinpointed the cause of nausea and vomiting in pregnancy, \"finding that the severity of illness is influenced by how much of a hormone called GDF15 the growing fetus makes,\" reports Science Magazine. The findings have been published in the journal Nature. From the report: GDF15 is present in the blood of nonpregnant people and is known to be associated with nausea; it's also been tested as a weight loss aid because of its tendency to suppress appetite. Levels of the hormone rise sharply in early pregnancy and increase throughout gestation. Pregnant people with higher GDF15 concentrations have been documented as having a higher risk of vomiting and nausea. Some researchers suggest the hormone-caused aversion to some smells and tastes might encourage an expectant parent to avoid foods potentially dangerous to the fetus.\n \nTo find out more about GDF15 changes during pregnancy, University of Cambridge physician-scientist Stephen O'Rahilly and colleagues studied half a dozen pregnant people who were known from previous genetic screening to produce a slightly different version of the GDF15 protein from their fetuses. Researchers could take advantage of that difference to trace whether GDF15 in the parent's blood originated in the parental or fetal genome: Almost all of it came from the fetus, O'Rahilly says. The team also took a closer look at the link between GDF15 levels and pregnancy sickness. Consistent with previous research, questionnaires from more than 300 participants showed that people who reported vomiting and nausea had significantly higher levels of circulating GDF15 on average than people without these symptoms. The researchers also found elevated levels of GDF15 in an analysis of more than 50 women hospitalized with hyperemesis gravidarum.\n \nStill, hormone levels alone couldn't explain the difference in sickness severity. \"There was a big overlap\" in GDF15 levels between the groups, O'Rahilly says. He and co-author Marlena Fejzo, a researcher at the University of Southern California, suspected that people's sensitivity to GDF15 might also play a role. (Fejzo began to study the condition after her own pregnancy loss following hyperemesis gravidarum.) To test the idea, the researchers studied 10 nonpregnant people with a rare genetic variant known to carry a heightened risk of hyperemesis gravidarum. These people had reduced GDF15 levels in their blood, hinting that naturally low levels of the hormone might predispose someone to sickness during pregnancy. The researchers found the opposite when they asked 20 pregnant people with beta thalassemia, a blood disorder associated with high GDF15 levels, about their pregnancy symptoms: Just 5% of this group reported nausea or vomiting. O'Rahilly's lab found a similar pattern in animal experiments.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Scientists have pinpointed the cause of nausea and vomiting in pregnancy, \"finding that the severity of illness is influenced by how much of a hormone called GDF15 the growing fetus makes,\" reports Science Magazine. The findings have been published in the journal Nature. From the report: GDF15 is present in the blood of nonpregnant people and is known to be associated with nausea; it's also been tested as a weight loss aid because of its tendency to suppress appetite. Levels of the hormone rise sharply in early pregnancy and increase throughout gestation. Pregnant people with higher GDF15 concentrations have been documented as having a higher risk of vomiting and nausea. Some researchers suggest the hormone-caused aversion to some smells and tastes might encourage an expectant parent to avoid foods potentially dangerous to the fetus.\n \nTo find out more about GDF15 changes during pregnancy, University of Cambridge physician-scientist Stephen O'Rahilly and colleagues studied half a dozen pregnant people who were known from previous genetic screening to produce a slightly different version of the GDF15 protein from their fetuses. Researchers could take advantage of that difference to trace whether GDF15 in the parent's blood originated in the parental or fetal genome: Almost all of it came from the fetus, O'Rahilly says. The team also took a closer look at the link between GDF15 levels and pregnancy sickness. Consistent with previous research, questionnaires from more than 300 participants showed that people who reported vomiting and nausea had significantly higher levels of circulating GDF15 on average than people without these symptoms. The researchers also found elevated levels of GDF15 in an analysis of more than 50 women hospitalized with hyperemesis gravidarum.\n \nStill, hormone levels alone couldn't explain the difference in sickness severity. \"There was a big overlap\" in GDF15 levels between the groups, O'Rahilly says. He and co-author Marlena Fejzo, a researcher at the University of Southern California, suspected that people's sensitivity to GDF15 might also play a role. (Fejzo began to study the condition after her own pregnancy loss following hyperemesis gravidarum.) To test the idea, the researchers studied 10 nonpregnant people with a rare genetic variant known to carry a heightened risk of hyperemesis gravidarum. These people had reduced GDF15 levels in their blood, hinting that naturally low levels of the hormone might predispose someone to sickness during pregnancy. The researchers found the opposite when they asked 20 pregnant people with beta thalassemia, a blood disorder associated with high GDF15 levels, about their pregnancy symptoms: Just 5% of this group reported nausea or vomiting. O'Rahilly's lab found a similar pattern in animal experiments.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/15/0011204/scientists-pinpoint-cause-of-morning-sickness-to-hormone-made-by-fetus?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T10:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-15T07:00:00+00:00", + "title": "NASA's Voyager 1 Probe In Interstellar Space Can't Phone Home", + "link": "https://tech.slashdot.org/story/23/12/14/1956257/nasas-voyager-1-probe-in-interstellar-space-cant-phone-home?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-15T07:00:00+00:00", + "content": "NASA's Voyager 1 spacecraft is, once again, having trouble transmitting any scientific or systems data back to Earth. \"The 46-year-old spacecraft is capable of receiving commands, but a problem seems to have arisen with the probe's computers,\" reports Space.com. Slashdot readers quonset and ArchieBunker shared the news. From the report: Voyager 1's flight data system (FDS), which collects onboard engineering information and data from the spacecraft's scientific instruments, is no longer communicating as expected with the probe's telecommunications unit (TMU), according to a NASA blog post on Dec. 12. When functioning properly, the FDS compiles the spacecraft's info into a data package, which is then transmitted back to Earth using the TMU. Lately, that data package has been \"stuck,\" the blog post said, \"transmitting a repeating pattern of ones and zeros.\" Voyager's engineering team traced the problem back to the FDS, but it could be weeks before a solution is found. In May 2022, Voyager 1 experienced transmitting issues for several months before a workaround was found. Meanwhile, Voyager 2 experienced an unplanned \"communications pause\" earlier this year after a routine sequence of commands triggered a 2-degree change in the spacecraft's antenna orientation. This prevented it from receiving commands or transmitting data back to Earth until NASA fixed the issue a week later.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "NASA's Voyager 1 spacecraft is, once again, having trouble transmitting any scientific or systems data back to Earth. \"The 46-year-old spacecraft is capable of receiving commands, but a problem seems to have arisen with the probe's computers,\" reports Space.com. Slashdot readers quonset and ArchieBunker shared the news. From the report: Voyager 1's flight data system (FDS), which collects onboard engineering information and data from the spacecraft's scientific instruments, is no longer communicating as expected with the probe's telecommunications unit (TMU), according to a NASA blog post on Dec. 12. When functioning properly, the FDS compiles the spacecraft's info into a data package, which is then transmitted back to Earth using the TMU. Lately, that data package has been \"stuck,\" the blog post said, \"transmitting a repeating pattern of ones and zeros.\" Voyager's engineering team traced the problem back to the FDS, but it could be weeks before a solution is found. In May 2022, Voyager 1 experienced transmitting issues for several months before a workaround was found. Meanwhile, Voyager 2 experienced an unplanned \"communications pause\" earlier this year after a routine sequence of commands triggered a 2-degree change in the spacecraft's antenna orientation. This prevented it from receiving commands or transmitting data back to Earth until NASA fixed the issue a week later.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/14/1956257/nasas-voyager-1-probe-in-interstellar-space-cant-phone-home?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-15T03:30:00+00:00", + "title": "Google DeepMind Uses LLM To Solve Unsolvable Math Problem", + "link": "https://science.slashdot.org/story/23/12/14/1933219/google-deepmind-uses-llm-to-solve-unsolvable-math-problem?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-15T03:30:00+00:00", + "content": "An anonymous reader quotes a report from MIT Technology Review: In a paper published in Nature today, the researchers say it is the first time a large language model has been used to discover a solution to a long-standing scientific puzzle -- producing verifiable and valuable new information that did not previously exist. \"It's not in the training data -- it wasn't even known,\" says coauthor Pushmeet Kohli, vice president of research at Google DeepMind. Large language models have a reputation for making things up, not for providing new facts. Google DeepMind's new tool, called FunSearch, could change that. It shows that they can indeed make discoveries -- if they are coaxed just so, and if you throw out the majority of what they come up with.\n \nFunSearch (so called because it searches for mathematical functions, not because it's fun) continues a streak of discoveries in fundamental math and computer science that DeepMind has made using AI. First Alpha Tensor found a way to speed up a calculation at the heart of many different kinds of code, beating a 50-year record. Then AlphaDev found ways to make key algorithms used trillions of times a day run faster. Yet those tools did not use large language models. Built on top of DeepMind's game-playing AI AlphaZero, both solved math problems by treating them as if they were puzzles in Go or chess. The trouble is that they are stuck in their lanes, says Bernardino Romera-Paredes, a researcher at the company who worked on both AlphaTensor and FunSearch: \"AlphaTensor is great at matrix multiplication, but basically nothing else.\" FunSearch takes a different tack. It combines a large language model called Codey, a version of Google's PaLM 2 that isfine-tuned on computer code, with other systems that reject incorrect or nonsensical answers and plug good ones back in.\n \nThe researchers started by sketching out the problem they wanted to solve in Python, a popular programming language. But they left out the lines in the program that would specify how to solve it. That is where FunSearch comes in. It gets Codey to fill in the blanks -- in effect, to suggest code that will solve the problem. A second algorithm then checks and scores what Codey comes up with. The best suggestions -- even if not yet correct -- are saved and given back to Codey, which tries to complete the program again. After a couple of million suggestions and a few dozen repetitions of the overall process -- which took a few days -- FunSearch was able to come up with code that produced a correct and previously unknown solution to the cap set problem, which involves finding the largest size of a certain type of set. Imagine plotting dots on graph paper. [...] To test its versatility, the researchers used FunSearch to approach another hard problem in math: the bin packing problem, which involves trying to pack items into as few bins as possible. This is important for a range of applications in computer science, from data center management to e-commerce. FunSearch came up with a way to solve it that's faster than human-devised ones.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from MIT Technology Review: In a paper published in Nature today, the researchers say it is the first time a large language model has been used to discover a solution to a long-standing scientific puzzle -- producing verifiable and valuable new information that did not previously exist. \"It's not in the training data -- it wasn't even known,\" says coauthor Pushmeet Kohli, vice president of research at Google DeepMind. Large language models have a reputation for making things up, not for providing new facts. Google DeepMind's new tool, called FunSearch, could change that. It shows that they can indeed make discoveries -- if they are coaxed just so, and if you throw out the majority of what they come up with.\n \nFunSearch (so called because it searches for mathematical functions, not because it's fun) continues a streak of discoveries in fundamental math and computer science that DeepMind has made using AI. First Alpha Tensor found a way to speed up a calculation at the heart of many different kinds of code, beating a 50-year record. Then AlphaDev found ways to make key algorithms used trillions of times a day run faster. Yet those tools did not use large language models. Built on top of DeepMind's game-playing AI AlphaZero, both solved math problems by treating them as if they were puzzles in Go or chess. The trouble is that they are stuck in their lanes, says Bernardino Romera-Paredes, a researcher at the company who worked on both AlphaTensor and FunSearch: \"AlphaTensor is great at matrix multiplication, but basically nothing else.\" FunSearch takes a different tack. It combines a large language model called Codey, a version of Google's PaLM 2 that isfine-tuned on computer code, with other systems that reject incorrect or nonsensical answers and plug good ones back in.\n \nThe researchers started by sketching out the problem they wanted to solve in Python, a popular programming language. But they left out the lines in the program that would specify how to solve it. That is where FunSearch comes in. It gets Codey to fill in the blanks -- in effect, to suggest code that will solve the problem. A second algorithm then checks and scores what Codey comes up with. The best suggestions -- even if not yet correct -- are saved and given back to Codey, which tries to complete the program again. After a couple of million suggestions and a few dozen repetitions of the overall process -- which took a few days -- FunSearch was able to come up with code that produced a correct and previously unknown solution to the cap set problem, which involves finding the largest size of a certain type of set. Imagine plotting dots on graph paper. [...] To test its versatility, the researchers used FunSearch to approach another hard problem in math: the bin packing problem, which involves trying to pack items into as few bins as possible. This is important for a range of applications in computer science, from data center management to e-commerce. FunSearch came up with a way to solve it that's faster than human-devised ones.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/14/1933219/google-deepmind-uses-llm-to-solve-unsolvable-math-problem?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T03:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-15T01:25:00+00:00", + "title": "Google Releases On-Device Diagnostics Tool, Repair Manuals For Pixel Phones", + "link": "https://hardware.slashdot.org/story/23/12/14/2356218/google-releases-on-device-diagnostics-tool-repair-manuals-for-pixel-phones?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-15T01:25:00+00:00", + "content": "Emma Roth reports via The Verge: Google is releasing a tool to help users diagnose problems with their Pixel phones. Users can launch the app by entering #*#7287#*# on the dial pad, allowing them to check whether their phone is working correctly before or after a repair. There are a bunch of diagnostic tools available within the app. While users can run a full diagnostic test to detect issues across the entire device, there are also options to run individual tests for physical defects and problems affecting the phone's display, sensors, and connectivity. The new tool is available on all Pixel phones in English.\n \nAside from the diagnostics app, Google is introducing redesigned repair manuals the company says are \"easier for technicians and DIYers to use.\" Users can download repair manuals from Google's website in English and French, but they're only available for the Pixel Fold, Pixel 8, and Pixel 8 Pro for now. Google says it will add repair manuals for previous and future devices \"in the coming months.\" There's also a new Repair Mode Google introduced earlier this month, which Pixel Phone owners can toggle on when their device is getting repaired. The feature is meant to protect users' private information while their phone is in the hands of a technician [...].

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Emma Roth reports via The Verge: Google is releasing a tool to help users diagnose problems with their Pixel phones. Users can launch the app by entering #*#7287#*# on the dial pad, allowing them to check whether their phone is working correctly before or after a repair. There are a bunch of diagnostic tools available within the app. While users can run a full diagnostic test to detect issues across the entire device, there are also options to run individual tests for physical defects and problems affecting the phone's display, sensors, and connectivity. The new tool is available on all Pixel phones in English.\n \nAside from the diagnostics app, Google is introducing redesigned repair manuals the company says are \"easier for technicians and DIYers to use.\" Users can download repair manuals from Google's website in English and French, but they're only available for the Pixel Fold, Pixel 8, and Pixel 8 Pro for now. Google says it will add repair manuals for previous and future devices \"in the coming months.\" There's also a new Repair Mode Google introduced earlier this month, which Pixel Phone owners can toggle on when their device is getting repaired. The feature is meant to protect users' private information while their phone is in the hands of a technician [...].\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/23/12/14/2356218/google-releases-on-device-diagnostics-tool-repair-manuals-for-pixel-phones?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T01:25:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-15T00:45:00+00:00", + "title": "Cheating Fears Over Chatbots Were Overblown, New Research Suggests", + "link": "https://news.slashdot.org/story/23/12/15/002256/cheating-fears-over-chatbots-were-overblown-new-research-suggests?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-15T00:45:00+00:00", + "content": "Natasha Singer reports via The New York Times: According to new research from Stanford University, the popularization of A.I. chatbots has not boosted overall cheating rates in schools (Warning: source may be paywalled; alternative source). In surveys this year of more than 40 U.S. high schools, some 60 to 70 percent of students said they had recently engaged in cheating -- about the same percent as in previous years, Stanford education researchers said. \"There was a panic that these A.I. models will allow a whole new way of doing something that could be construed as cheating,\" said Denise Pope, a senior lecturer at Stanford Graduate School of Education who has surveyed high school students for more than a decade through an education nonprofit she co-founded. But \"we're just not seeing the change in the data.\"\n \nChatGPT, developed by OpenAI in San Francisco, began to capture the public imagination late last year with its ability to fabricate human-sounding essays and emails. Almost immediately, classroom technology boosters started promising that A.I. tools like ChatGPT would revolutionize education. And critics began warning that such tools -- which liberally make stuff up -- would enable widespread cheating, and amplify misinformation, in schools. Now the Stanford research, along with a recent report from the Pew Research Center, are challenging the notion that A.I. chatbots are upending public schools.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Natasha Singer reports via The New York Times: According to new research from Stanford University, the popularization of A.I. chatbots has not boosted overall cheating rates in schools (Warning: source may be paywalled; alternative source). In surveys this year of more than 40 U.S. high schools, some 60 to 70 percent of students said they had recently engaged in cheating -- about the same percent as in previous years, Stanford education researchers said. \"There was a panic that these A.I. models will allow a whole new way of doing something that could be construed as cheating,\" said Denise Pope, a senior lecturer at Stanford Graduate School of Education who has surveyed high school students for more than a decade through an education nonprofit she co-founded. But \"we're just not seeing the change in the data.\"\n \nChatGPT, developed by OpenAI in San Francisco, began to capture the public imagination late last year with its ability to fabricate human-sounding essays and emails. Almost immediately, classroom technology boosters started promising that A.I. tools like ChatGPT would revolutionize education. And critics began warning that such tools -- which liberally make stuff up -- would enable widespread cheating, and amplify misinformation, in schools. Now the Stanford research, along with a recent report from the Pew Research Center, are challenging the notion that A.I. chatbots are upending public schools.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/23/12/15/002256/cheating-fears-over-chatbots-were-overblown-new-research-suggests?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T00:45:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-15T00:02:00+00:00", + "title": "Alphabet's 'Renew Home' Company Brings Power Grid Data To Your Smart Home", + "link": "https://hardware.slashdot.org/story/23/12/14/1938220/alphabets-renew-home-company-brings-power-grid-data-to-your-smart-home?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-15T00:02:00+00:00", + "content": "An anonymous reader quotes a report from Ars Technica: Google's parent company, Alphabet, is launching a new company called \"Renew Home.\" The new company will pull in some other projects from Nest and the rest of Alphabet to become a supposed one-stop shop for power savings and clean energy usage. The core concept is partnering with power companies to obtain data about the current condition of the power grid and using that data to change consumer habits. The new company is bankrolled by Sidewalk Infrastructure Partners (SIP), an Alphabet venture capital firm.\n \nThe first existing service getting pulled into Renew Home is Nest Renew. This service for Nest Thermostats uses power company data to tell consumers how their electricity is being generated and what it costs. That data lets your thermostat do things like automatically shift heating and cooling to times of day when energy is cheaper or cleaner, and shows various reports about the cleanness of the energy you've been using. (Nest's feature that lets utility companies remotely take control of your thermostat, Rush Hour Rewards, does not seem to be part of Renew Home.)\n \nAnother Alphabet service being pulled into Renew Home is OhmConnect, which is the same basic idea as Nest's grid data-power thermostat adjustments but for more than just your thermostat. OhmConnect is compatible with a very small list of smart devices, like Nest-rival Ecobee and Honeywell thermostats, TL-Link's \"Kasa\" smart home system, and Tesla vehicles. The backbone of the service appears to be the in-house \"OhmPlug\" smart outlet, which can monitor the energy usage of anything that plugs into the wall. By seeing that you've turned these smart devices during peak usage times, OhmConnect offers people rewards like gift cards or cash for not using power when the grid is at capacity.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Google's parent company, Alphabet, is launching a new company called \"Renew Home.\" The new company will pull in some other projects from Nest and the rest of Alphabet to become a supposed one-stop shop for power savings and clean energy usage. The core concept is partnering with power companies to obtain data about the current condition of the power grid and using that data to change consumer habits. The new company is bankrolled by Sidewalk Infrastructure Partners (SIP), an Alphabet venture capital firm.\n \nThe first existing service getting pulled into Renew Home is Nest Renew. This service for Nest Thermostats uses power company data to tell consumers how their electricity is being generated and what it costs. That data lets your thermostat do things like automatically shift heating and cooling to times of day when energy is cheaper or cleaner, and shows various reports about the cleanness of the energy you've been using. (Nest's feature that lets utility companies remotely take control of your thermostat, Rush Hour Rewards, does not seem to be part of Renew Home.)\n \nAnother Alphabet service being pulled into Renew Home is OhmConnect, which is the same basic idea as Nest's grid data-power thermostat adjustments but for more than just your thermostat. OhmConnect is compatible with a very small list of smart devices, like Nest-rival Ecobee and Honeywell thermostats, TL-Link's \"Kasa\" smart home system, and Tesla vehicles. The backbone of the service appears to be the in-house \"OhmPlug\" smart outlet, which can monitor the energy usage of anything that plugs into the wall. By seeing that you've turned these smart devices during peak usage times, OhmConnect offers people rewards like gift cards or cash for not using power when the grid is at capacity.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/23/12/14/1938220/alphabets-renew-home-company-brings-power-grid-data-to-your-smart-home?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T00:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-14T23:20:00+00:00", + "title": "Proton Mail Finally Gets a Desktop App For Encrypted Email and Calendar", + "link": "https://it.slashdot.org/story/23/12/14/1916258/proton-mail-finally-gets-a-desktop-app-for-encrypted-email-and-calendar?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-14T23:20:00+00:00", + "content": "Amrita Khalid reports via The Verge: Proton has released a desktop version of its Proton Mail app that will give users full access to both Proton Mail and Proton Calendar and (eventually) the ability to view your emails offline. The desktop app is available in beta is optimized for both Windows and macOS, and encrypts sent emails end-to-end just like with the browser version, according to the Swiss company, while offline access to emails will be available \"soon.\" [...] It's important to note that you'll still need internet access to both send and encrypt your emails on Proton. But the offline feature will let you view and draft emails while traveling, during a power outage, or any other situation where you don't have access to the internet.\n \nProton is also bringing encrypted auto-forwarding to paid users, both on its desktop and browser versions, though the encryption for forwards will only apply when the forwarded emails go to other Proton users. The company says it has made improvements to Proton Calendar, too, including a fully searchable web version. Not everyone will be able to access Proton's desktop app right away. Proton is restricting access to its paid \"Visionary\" tier for legacy users at first (though the company is reopening subscriptions to that tier through January 3rd, 2024). The plan is to make the desktop app available to all users in early 2024.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Amrita Khalid reports via The Verge: Proton has released a desktop version of its Proton Mail app that will give users full access to both Proton Mail and Proton Calendar and (eventually) the ability to view your emails offline. The desktop app is available in beta is optimized for both Windows and macOS, and encrypts sent emails end-to-end just like with the browser version, according to the Swiss company, while offline access to emails will be available \"soon.\" [...] It's important to note that you'll still need internet access to both send and encrypt your emails on Proton. But the offline feature will let you view and draft emails while traveling, during a power outage, or any other situation where you don't have access to the internet.\n \nProton is also bringing encrypted auto-forwarding to paid users, both on its desktop and browser versions, though the encryption for forwards will only apply when the forwarded emails go to other Proton users. The company says it has made improvements to Proton Calendar, too, including a fully searchable web version. Not everyone will be able to access Proton's desktop app right away. Proton is restricting access to its paid \"Visionary\" tier for legacy users at first (though the company is reopening subscriptions to that tier through January 3rd, 2024). The plan is to make the desktop app available to all users in early 2024.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/23/12/14/1916258/proton-mail-finally-gets-a-desktop-app-for-encrypted-email-and-calendar?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T23:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-14T22:40:00+00:00", + "title": "Threads Launches In the European Union", + "link": "https://tech.slashdot.org/story/23/12/14/1911233/threads-launches-in-the-european-union?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-14T22:40:00+00:00", + "content": "Meta CEO Mark Zuckerberg announced that Threads is now available to users in the European Union. \"Today we're opening Threads to more countries in Europe,\" wrote Zuckerberg in a post on the platform. \"Welcome everyone.\" MacRumors reports: The move comes five months after the social media network launched in most markets around the world, but remained unavailable to EU-based users due to regulatory hurdles. [...] In addition to creating a Threads profile for posting, users in the EU can also simply browse Threads without having an Instagram account, an option likely introduced to comply with legislation surrounding online services.\n \nThe expansion into a market of 448 million people should see Threads' user numbers get a decent boost. Meta CEO Mark Zuckerberg said on a company earnings call in October that Threads now has \"just under\" 100 million monthly users. Since its launch earlier this year it has gained a web app, an ability to search for posts, and a post editing feature.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Meta CEO Mark Zuckerberg announced that Threads is now available to users in the European Union. \"Today we're opening Threads to more countries in Europe,\" wrote Zuckerberg in a post on the platform. \"Welcome everyone.\" MacRumors reports: The move comes five months after the social media network launched in most markets around the world, but remained unavailable to EU-based users due to regulatory hurdles. [...] In addition to creating a Threads profile for posting, users in the EU can also simply browse Threads without having an Instagram account, an option likely introduced to comply with legislation surrounding online services.\n \nThe expansion into a market of 448 million people should see Threads' user numbers get a decent boost. Meta CEO Mark Zuckerberg said on a company earnings call in October that Threads now has \"just under\" 100 million monthly users. Since its launch earlier this year it has gained a web app, an ability to search for posts, and a post editing feature.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/14/1911233/threads-launches-in-the-european-union?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T22:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-12-14T22:00:00+00:00", + "title": "Supply Chain Attack Targeting Ledger Crypto Wallet Leaves Users Hacked", + "link": "https://it.slashdot.org/story/23/12/14/1858249/supply-chain-attack-targeting-ledger-crypto-wallet-leaves-users-hacked?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-12-14T22:00:00+00:00", + "content": "An anonymous reader quotes a report from TechCrunch: Hackers compromised the code behind a crypto protocol used by multiple web3 applications and services, the software maker Ledger said on Thursday. Ledger, a company that makes a widely used and popular crypto hardware and software wallet, among other products, announced on X (previously Twitter) that someone had pushed out a \"malicious version\" of its Ledger Connect Kit, a library that decentralized apps (dApps) made by other companies and projects use to connect to the Ledger wallet service.\n \n\"A genuine version is being pushed to replace the malicious file now. Do not interact with any dApps for the moment. We will keep you informed as the situation evolves,\" Ledger wrote. Soon after, Ledger posted an update saying that the hackers had replaced the genuine version of its software some six hours earlier, and that the company was investigating the incident and would \"provide a comprehensive report as soon as it's ready.\" After this story was published, Ledger spokesperson Phillip Costigan shared more details about the hack with TechCrunch and on X.\n \nCostigan said that a former Ledger employee was victim of a phishing attack on Thursday, which gave the hackers access to their former employee's NPMJS account, which is a software registry that was acquired by GitHub. From there, the hackers published a malicious version of the Ledger Connect Kit. \"The malicious code used a rogue WalletConnect project to reroute funds to a hacker wallet,\" Costigan said. Then, Ledger deployed a fix within 40 minutes of the company becoming aware of the hack. The malicious file, however, was live for round 5 hours, but \"the window where funds were drained was limited to a period of less than two hours,\" according to Costigan. Ledger also \"coordinated\" with WalletConnect which \"quickly disabled the the rogue project,\" essentially stopping the attack, according to Costigan. Costigan also said Ledger pushed out a genuine software update that is \"safe to use.\" \"We are actively talking with customers whose funds might have been affected, and working proactively to help those individuals at this time,\" the Ledger spokeperson said, adding that the company believes it has identified the hackers' wallet.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Hackers compromised the code behind a crypto protocol used by multiple web3 applications and services, the software maker Ledger said on Thursday. Ledger, a company that makes a widely used and popular crypto hardware and software wallet, among other products, announced on X (previously Twitter) that someone had pushed out a \"malicious version\" of its Ledger Connect Kit, a library that decentralized apps (dApps) made by other companies and projects use to connect to the Ledger wallet service.\n \n\"A genuine version is being pushed to replace the malicious file now. Do not interact with any dApps for the moment. We will keep you informed as the situation evolves,\" Ledger wrote. Soon after, Ledger posted an update saying that the hackers had replaced the genuine version of its software some six hours earlier, and that the company was investigating the incident and would \"provide a comprehensive report as soon as it's ready.\" After this story was published, Ledger spokesperson Phillip Costigan shared more details about the hack with TechCrunch and on X.\n \nCostigan said that a former Ledger employee was victim of a phishing attack on Thursday, which gave the hackers access to their former employee's NPMJS account, which is a software registry that was acquired by GitHub. From there, the hackers published a malicious version of the Ledger Connect Kit. \"The malicious code used a rogue WalletConnect project to reroute funds to a hacker wallet,\" Costigan said. Then, Ledger deployed a fix within 40 minutes of the company becoming aware of the hack. The malicious file, however, was live for round 5 hours, but \"the window where funds were drained was limited to a period of less than two hours,\" according to Costigan. Ledger also \"coordinated\" with WalletConnect which \"quickly disabled the the rogue project,\" essentially stopping the attack, according to Costigan. Costigan also said Ledger pushed out a genuine software update that is \"safe to use.\" \"We are actively talking with customers whose funds might have been affected, and working proactively to help those individuals at this time,\" the Ledger spokeperson said, adding that the company believes it has identified the hackers' wallet.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/23/12/14/1858249/supply-chain-attack-targeting-ledger-crypto-wallet-leaves-users-hacked?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T22:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-14T21:20:00+00:00", + "title": "FCC Floats Ban on Cable TV 'Junk Fees' That Make It Hard To Ditch Contracts", + "link": "https://entertainment.slashdot.org/story/23/12/14/1811230/fcc-floats-ban-on-cable-tv-junk-fees-that-make-it-hard-to-ditch-contracts?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-14T21:20:00+00:00", + "content": "The Federal Communications Commission has taken a step toward prohibiting early termination fees charged by cable and satellite TV providers. From a report: If given final approval, the FCC action would also require cable and satellite providers to provide a prorated credit or rebate to customers who cancel before a billing period ends. The new rules are being floated in a Notice of Proposed Rulemaking (NPRM) that the FCC voted to approve this week in a 3-2 vote, with both Republicans dissenting. The NPRM seeks public comment on the proposed rules and could lead to a final vote in a few months or so. \n\n\"Today's action proposes to adopt customer service protections that prohibit cable operators and DBS (Direct Broadcast Satellite) providers from imposing a fee for the early termination of a cable or DBS video service contract,\" the FCC said. \"Additionally, the NPRM recommends the adoption of customer service protections to require cable and DBS providers to grant subscribers a prorated credit or rebate for the remaining whole days in a monthly or periodic billing cycle after the subscriber cancels service.\" \n\nFCC Chairwoman Jessica Rosenworcel said, \"Consumers are tired of these junk fees. They now have more choices when it comes to video content. But these friction-filled tactics to keep us subscribing to our current providers are aggravating and unfair. So today we kick off a rulemaking to put an end to these practices.\" Cable lobby group NCTA-The Internet & Television Association opposes the plan and said it will submit comments to support \"consumer choice and competitive parity.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The Federal Communications Commission has taken a step toward prohibiting early termination fees charged by cable and satellite TV providers. From a report: If given final approval, the FCC action would also require cable and satellite providers to provide a prorated credit or rebate to customers who cancel before a billing period ends. The new rules are being floated in a Notice of Proposed Rulemaking (NPRM) that the FCC voted to approve this week in a 3-2 vote, with both Republicans dissenting. The NPRM seeks public comment on the proposed rules and could lead to a final vote in a few months or so. \n\n\"Today's action proposes to adopt customer service protections that prohibit cable operators and DBS (Direct Broadcast Satellite) providers from imposing a fee for the early termination of a cable or DBS video service contract,\" the FCC said. \"Additionally, the NPRM recommends the adoption of customer service protections to require cable and DBS providers to grant subscribers a prorated credit or rebate for the remaining whole days in a monthly or periodic billing cycle after the subscriber cancels service.\" \n\nFCC Chairwoman Jessica Rosenworcel said, \"Consumers are tired of these junk fees. They now have more choices when it comes to video content. But these friction-filled tactics to keep us subscribing to our current providers are aggravating and unfair. So today we kick off a rulemaking to put an end to these practices.\" Cable lobby group NCTA-The Internet & Television Association opposes the plan and said it will submit comments to support \"consumer choice and competitive parity.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://entertainment.slashdot.org/story/23/12/14/1811230/fcc-floats-ban-on-cable-tv-junk-fees-that-make-it-hard-to-ditch-contracts?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T21:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-14T20:40:00+00:00", + "title": "Amazon's Internet Satellites Will Use Space Lasers To Transmit Data", + "link": "https://tech.slashdot.org/story/23/12/14/1719214/amazons-internet-satellites-will-use-space-lasers-to-transmit-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-14T20:40:00+00:00", + "content": "Amazon, which launched its first internet satellites in October, says it will use space lasers to ensure reliable broadband coverage even in the middle of the ocean. From a report: The technology will enable a satellite to deliver data to a cruise ship, say, even if the spacecraft isn't in range of an Amazon ground station connected to the internet. Instead, the laser will pass the request on to another satellite that has a clear view of a ground station. \n\nThe two prototype satellites successfully tested the technology, which is officially called optical inter-satellite links, Amazon said on Thursday. \"If you're going to serve maritime customers, air customers, you have got to be able to get data up to your satellites,\" said Rajeev Badyal, who leads Amazon's Project Kuiper internet-from-space initiative. \"And in the middle of the ocean, it's difficult if not impossible\" to install ground stations.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Amazon, which launched its first internet satellites in October, says it will use space lasers to ensure reliable broadband coverage even in the middle of the ocean. From a report: The technology will enable a satellite to deliver data to a cruise ship, say, even if the spacecraft isn't in range of an Amazon ground station connected to the internet. Instead, the laser will pass the request on to another satellite that has a clear view of a ground station. \n\nThe two prototype satellites successfully tested the technology, which is officially called optical inter-satellite links, Amazon said on Thursday. \"If you're going to serve maritime customers, air customers, you have got to be able to get data up to your satellites,\" said Rajeev Badyal, who leads Amazon's Project Kuiper internet-from-space initiative. \"And in the middle of the ocean, it's difficult if not impossible\" to install ground stations.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/14/1719214/amazons-internet-satellites-will-use-space-lasers-to-transmit-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T20:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-14T20:00:00+00:00", + "title": "Google Will Turn Off Third-Party Tracking for Some Chrome Users Soon", + "link": "https://tech.slashdot.org/story/23/12/14/177217/google-will-turn-off-third-party-tracking-for-some-chrome-users-soon?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-14T20:00:00+00:00", + "content": "Google is about to launch its grand plan to block third-party cookies in Chrome that many websites use to track your activity across the web for profit. From a report: Starting on January 4th, Google will start testing its new Tracking Protection feature that will eventually restrict website access to third-party cookies by default. It will come to a very small subset of Chrome users at the start, specifically to one percent of users globally. Afterward, Google plans to phase out the use of third-party cookies for all users in the second half of 2024. \n\nIf you're randomly selected to try Tracking Protection, Google will notify you when opening Chrome on desktop or Android. If there are issues detected by Chrome while you're browsing, a prompt will appear asking if you'd like to temporarily re-enable third-party cookies for the site.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google is about to launch its grand plan to block third-party cookies in Chrome that many websites use to track your activity across the web for profit. From a report: Starting on January 4th, Google will start testing its new Tracking Protection feature that will eventually restrict website access to third-party cookies by default. It will come to a very small subset of Chrome users at the start, specifically to one percent of users globally. Afterward, Google plans to phase out the use of third-party cookies for all users in the second half of 2024. \n\nIf you're randomly selected to try Tracking Protection, Google will notify you when opening Chrome on desktop or Android. If there are issues detected by Chrome while you're browsing, a prompt will appear asking if you'd like to temporarily re-enable third-party cookies for the site.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/12/14/177217/google-will-turn-off-third-party-tracking-for-some-chrome-users-soon?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T20:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-14T19:20:00+00:00", + "title": "Intel Unveils New AI Chip To Compete With Nvidia and AMD", + "link": "https://hardware.slashdot.org/story/23/12/14/1723204/intel-unveils-new-ai-chip-to-compete-with-nvidia-and-amd?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-14T19:20:00+00:00", + "content": "Intel unveiled new computer chips on Thursday, including Gaudi3, an AI chip for generative AI software. Gaudi3 will launch next year and will compete with rival chips from Nvidia and AMD that power big and power-hungry AI models. From a report: The most prominent AI models, like OpenAI's ChatGPT, run on Nvidia GPUs in the cloud. It's one reason Nvidia stock has been up nearly 230% year-to-date while Intel shares are up 68%. And it's why companies like AMD and, now Intel, have announced chips that they hope will attract AI companies away from Nvidia's dominant position in the market. \n\nWhile the company was light on details, Gaudi3 will compete with Nvidia's H100, the main choice among companies that build huge farms of the chips to power AI applications, and AMD's forthcoming MI300X, when it starts shipping to customers in 2024. Intel has been building Gaudi chips since 2019, when it bought a chip developer called Habana Labs.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Intel unveiled new computer chips on Thursday, including Gaudi3, an AI chip for generative AI software. Gaudi3 will launch next year and will compete with rival chips from Nvidia and AMD that power big and power-hungry AI models. From a report: The most prominent AI models, like OpenAI's ChatGPT, run on Nvidia GPUs in the cloud. It's one reason Nvidia stock has been up nearly 230% year-to-date while Intel shares are up 68%. And it's why companies like AMD and, now Intel, have announced chips that they hope will attract AI companies away from Nvidia's dominant position in the market. \n\nWhile the company was light on details, Gaudi3 will compete with Nvidia's H100, the main choice among companies that build huge farms of the chips to power AI applications, and AMD's forthcoming MI300X, when it starts shipping to customers in 2024. Intel has been building Gaudi chips since 2019, when it bought a chip developer called Habana Labs.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/23/12/14/1723204/intel-unveils-new-ai-chip-to-compete-with-nvidia-and-amd?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-14T19:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-15T14:40:00+00:00", + "title": "Netflix's Big Data Dump Shows Just OK TV Is Here To Stay", + "link": "https://entertainment.slashdot.org/story/23/12/15/1426248/netflixs-big-data-dump-shows-just-ok-tv-is-here-to-stay?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-15T14:40:00+00:00", + "content": "After years of withholding viewership data, Netflix earlier this week released statistics showing its top viewed titles from January-June 2023. The winner with over 800 million hours watched was The Night Agent. Though the steamy, soapy Sex/Life scored over 120 million hours, the warm coming-of-age series Sex Education had under 30 million. \n\nNetflix claimed \"success comes in all shapes and sizes,\" but co-CEO Ted Sarandos admitted the data guides business decisions. So while Netflix says stats aren't everything, pouring resources into sure bets like The Night Agent seems likely as competition grows post-Hot Strike Summer. The show is what some call \"just OK TV\" -- not offensive, not groundbreaking, but reliably watched. Wired adds: This era of Just OK also comes as Netflix captures the King of Reality TV throne. Shows like Love Is Blind and Selling Sunset are becoming cultural juggernauts, and the streamer shows no sign of slowing down, especially now that the Squid Game spinoff, Squid Game: The Challenge, is getting major traction. \n\nTrue, Netflix is still putting out artful content. A show like Wednesday, for example, had more than 507 million hours viewed and is also currently up for 12 Emmys. Netflix, on the whole, is nominated for a whopping 103 Emmys. That's impressive, but also, it's down from the 160 nods it got at its peak in 2020 and fewer than the 127 nabbed by (HBO) Max, which crushed thanks to shows like The White Lotus, The Last of Us, and Succession. You see where this is going. Netflix likes to tout its prestige shows, but also has to keep its paying customers, who left in droves in 2022 before partly coming back as Netflix cracked down on password sharing. To that end, it behooves Netflix to make more Ginny & Georgia, more Night Agent, more You. One analysis of the data found that the most-watched film, according to Netflix's data dump, was the Jennifer Lopez vehicle The Mother, which accumulated about 250 million hours watched in six months. Variety puts that level of engagement up there with Barbie and The Super Mario Bros. Movie. Not a bad showing.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "After years of withholding viewership data, Netflix earlier this week released statistics showing its top viewed titles from January-June 2023. The winner with over 800 million hours watched was The Night Agent. Though the steamy, soapy Sex/Life scored over 120 million hours, the warm coming-of-age series Sex Education had under 30 million. \n\nNetflix claimed \"success comes in all shapes and sizes,\" but co-CEO Ted Sarandos admitted the data guides business decisions. So while Netflix says stats aren't everything, pouring resources into sure bets like The Night Agent seems likely as competition grows post-Hot Strike Summer. The show is what some call \"just OK TV\" -- not offensive, not groundbreaking, but reliably watched. Wired adds: This era of Just OK also comes as Netflix captures the King of Reality TV throne. Shows like Love Is Blind and Selling Sunset are becoming cultural juggernauts, and the streamer shows no sign of slowing down, especially now that the Squid Game spinoff, Squid Game: The Challenge, is getting major traction. \n\nTrue, Netflix is still putting out artful content. A show like Wednesday, for example, had more than 507 million hours viewed and is also currently up for 12 Emmys. Netflix, on the whole, is nominated for a whopping 103 Emmys. That's impressive, but also, it's down from the 160 nods it got at its peak in 2020 and fewer than the 127 nabbed by (HBO) Max, which crushed thanks to shows like The White Lotus, The Last of Us, and Succession. You see where this is going. Netflix likes to tout its prestige shows, but also has to keep its paying customers, who left in droves in 2022 before partly coming back as Netflix cracked down on password sharing. To that end, it behooves Netflix to make more Ginny & Georgia, more Night Agent, more You. One analysis of the data found that the most-watched film, according to Netflix's data dump, was the Jennifer Lopez vehicle The Mother, which accumulated about 250 million hours watched in six months. Variety puts that level of engagement up there with Barbie and The Super Mario Bros. Movie. Not a bad showing.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://entertainment.slashdot.org/story/23/12/15/1426248/netflixs-big-data-dump-shows-just-ok-tv-is-here-to-stay?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T14:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-15T15:20:00+00:00", + "title": "Jeff Bezos Says Blue Origin Needs To Be 'Much Faster'", + "link": "https://science.slashdot.org/story/23/12/15/1450216/jeff-bezos-says-blue-origin-needs-to-be-much-faster?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-15T15:20:00+00:00", + "content": "In an interview with Lex Fridman, Jeff Bezos candidly acknowledged Blue Origin's slow progress (compared to SpaceX). From a report: \"Blue Origin needs to be much faster, and it's one of the reasons that I left my role as the CEO of Amazon a couple of years ago,\" he said. \"I wanted to come in, and Blue Origin needs me right now. Adding some energy, some sense of urgency. We need to move much faster. And we're going to.\" \n\nHow is Blue Origin going to speed up? \n\n\"We're going to become the world's most decisive company across any industry,\" he said. \"We're going to get really good at taking appropriate technology risks, making those decisions quickly. You know, being bold on those things. And having the right culture that supports that. You need people to be ambitious, technically ambitious. If there are five ways to do something, we'll study them, but let's go through them very quickly and make a decision. We can always change our mind.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "In an interview with Lex Fridman, Jeff Bezos candidly acknowledged Blue Origin's slow progress (compared to SpaceX). From a report: \"Blue Origin needs to be much faster, and it's one of the reasons that I left my role as the CEO of Amazon a couple of years ago,\" he said. \"I wanted to come in, and Blue Origin needs me right now. Adding some energy, some sense of urgency. We need to move much faster. And we're going to.\" \n\nHow is Blue Origin going to speed up? \n\n\"We're going to become the world's most decisive company across any industry,\" he said. \"We're going to get really good at taking appropriate technology risks, making those decisions quickly. You know, being bold on those things. And having the right culture that supports that. You need people to be ambitious, technically ambitious. If there are five ways to do something, we'll study them, but let's go through them very quickly and make a decision. We can always change our mind.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/15/1450216/jeff-bezos-says-blue-origin-needs-to-be-much-faster?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T15:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-15T16:00:00+00:00", + "title": "Apple Plans OLED Displays for MacBooks, Evaluates Foldable iPads: Report", + "link": "https://apple.slashdot.org/story/23/12/15/1456242/apple-plans-oled-displays-for-macbooks-evaluates-foldable-ipads-report?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-15T16:00:00+00:00", + "content": "Apple will expand its use of advanced OLED screens to iPads and MacBooks and is considering eventually introducing foldable tablets, a move set to further shake up the $150 billion display industry as it shifts away from traditional LCD screens, Asian news outlet Nikkei reported Friday. From the report: OLED, or organic light-emitting diode, displays are already used in most premium smartphones, including iPhones. Apple plans to deploy the tech in its high-end iPads next year, multiple tech industry executives told Nikkei Asia. An OLED MacBook model is also under development for production in the second half of 2025 at the earliest, the people said. The growing penetration of OLED is a significant win for Samsung Display and LG Display of South Korea and China's BOE Technology Holding, which have all bet heavily on this expensive display technology. \n\nOn the flip side, it could be a blow to display makers that do not have much presence in this segment, including JDI and Sharp of Japan, and AUO and Innolux of Taiwan. Apple has also started evaluating the possibility of making foldable iPads after it deploys the flexible OLED screens on the tablet, but it does not have a concrete timeline for doing so, according to two sources familiar with the matter. The iPhone maker is not the first company to adopt OLED displays for tablets. Huawei, for instance, has been a significant driver of this trend, which in turn has helped strengthen the Chinese display supply chain.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Apple will expand its use of advanced OLED screens to iPads and MacBooks and is considering eventually introducing foldable tablets, a move set to further shake up the $150 billion display industry as it shifts away from traditional LCD screens, Asian news outlet Nikkei reported Friday. From the report: OLED, or organic light-emitting diode, displays are already used in most premium smartphones, including iPhones. Apple plans to deploy the tech in its high-end iPads next year, multiple tech industry executives told Nikkei Asia. An OLED MacBook model is also under development for production in the second half of 2025 at the earliest, the people said. The growing penetration of OLED is a significant win for Samsung Display and LG Display of South Korea and China's BOE Technology Holding, which have all bet heavily on this expensive display technology. \n\nOn the flip side, it could be a blow to display makers that do not have much presence in this segment, including JDI and Sharp of Japan, and AUO and Innolux of Taiwan. Apple has also started evaluating the possibility of making foldable iPads after it deploys the flexible OLED screens on the tablet, but it does not have a concrete timeline for doing so, according to two sources familiar with the matter. The iPhone maker is not the first company to adopt OLED displays for tablets. Huawei, for instance, has been a significant driver of this trend, which in turn has helped strengthen the Chinese display supply chain.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://apple.slashdot.org/story/23/12/15/1456242/apple-plans-oled-displays-for-macbooks-evaluates-foldable-ipads-report?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T16:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-15T17:10:00+00:00", + "title": "The Last Of Us Online Is Officially Canceled", + "link": "https://games.slashdot.org/story/23/12/15/1710207/the-last-of-us-online-is-officially-canceled?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-15T17:10:00+00:00", + "content": "Sony Group's Naughty Dog studio has cancelled an online version of its popular console game The Last of Us. From a report: Naughty Dog announced today that the multiplayer spin-off of the hit series is no longer in development, citing concerns about managing ongoing content for a live-service game while still trying to produce the single-player blockbusters the PlayStation studio is famous for. \"We realize many of you have been anticipating news around the project that we've been calling The Last of Us Online,\" Naughty Dog wrote in an update. \n\n\"There's no easy way to say this: We've made the incredibly difficult decision to stop development on that game.\" The studio said that as production on the project ramped up, it became clear that \"we'd have to put all our studio resources behind supporting post launch content for years to come, severely impacting development on future single-player games.\" The choices were apparently between becoming a \"solely live-service games studio\" in the mold of modern day Bungie, which makes Destiny 2, or \"continue to focus on single-player narrative games that have defined Naughty Dog's heritage.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Sony Group's Naughty Dog studio has cancelled an online version of its popular console game The Last of Us. From a report: Naughty Dog announced today that the multiplayer spin-off of the hit series is no longer in development, citing concerns about managing ongoing content for a live-service game while still trying to produce the single-player blockbusters the PlayStation studio is famous for. \"We realize many of you have been anticipating news around the project that we've been calling The Last of Us Online,\" Naughty Dog wrote in an update. \n\n\"There's no easy way to say this: We've made the incredibly difficult decision to stop development on that game.\" The studio said that as production on the project ramped up, it became clear that \"we'd have to put all our studio resources behind supporting post launch content for years to come, severely impacting development on future single-player games.\" The choices were apparently between becoming a \"solely live-service games studio\" in the mold of modern day Bungie, which makes Destiny 2, or \"continue to focus on single-player narrative games that have defined Naughty Dog's heritage.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/23/12/15/1710207/the-last-of-us-online-is-officially-canceled?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T17:10:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-15T16:40:00+00:00", + "title": "Stop Planting Trees, Says Guy Who Inspired World to Plant a Trillion Trees", + "link": "https://science.slashdot.org/story/23/12/15/1510243/stop-planting-trees-says-guy-who-inspired-world-to-plant-a-trillion-trees?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-15T16:40:00+00:00", + "content": "In a cavernous theater lit up with the green shapes of camels and palms at COP28 in Dubai, ecologist Thomas Crowther, former chief scientific adviser for the United Nations' Trillion Trees Campaign, was doing something he never would have expected a few years ago: begging environmental ministers to stop planting so many trees. From a report: Mass plantations are not the environmental solution they're purported to be, Crowther argued when he took the floor on December 9 for one of the summit's \"Nature Day\" events. The potential of newly created forests to draw down carbon is often overstated. They can be harmful to biodiversity. Above all, they are really damaging when used, as they often are, as avoidance offsets-- \"as an excuse to avoid cutting emissions,\" Crowther said. \n\nThe popularity of planting new trees is a problem -- at least partly -- of Crowther's own making. In 2019, his lab at ETH Zurich found that the Earth had room for an additional 1.2 trillion trees, which, the lab's research suggested, could suck down as much as two-thirds of the carbon that humans have historically emitted into the atmosphere. \"This highlights global tree restoration as our most effective climate change solution to date,\" the study said. Crowther subsequently gave dozens of interviews to that effect. This seemingly easy climate solution sparked a tree-planting craze by companies and leaders eager to burnish their green credentials without actually cutting their emissions, from Shell to Donald Trump. It also provoked a squall of criticism from scientists, who argued that the Crowther study had vastly overestimated the land suitable for forest restoration and the amount of carbon it could draw down. (The study authors later corrected the paper to say tree restoration was only \"one of the most effective\" solutions, and could suck down at most one-third of the atmospheric carbon, with large uncertainties.) \n\nCrowther, who says his message was misinterpreted, put out a more nuanced paper last month, which shows that preserving existing forests can have a greater climate impact than planting trees. He then brought the results to COP28 to \"kill greenwashing\" of the kind that his previous study seemed to encourage -- that is, using unreliable evidence on the benefits of planting trees as an excuse to keep on emitting carbon. \"Killing greenwashing doesn't mean stop investing in nature,\" he says. \"It means doing it right. It means distributing wealth to the Indigenous populations and farmers and communities who are living with biodiversity.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "In a cavernous theater lit up with the green shapes of camels and palms at COP28 in Dubai, ecologist Thomas Crowther, former chief scientific adviser for the United Nations' Trillion Trees Campaign, was doing something he never would have expected a few years ago: begging environmental ministers to stop planting so many trees. From a report: Mass plantations are not the environmental solution they're purported to be, Crowther argued when he took the floor on December 9 for one of the summit's \"Nature Day\" events. The potential of newly created forests to draw down carbon is often overstated. They can be harmful to biodiversity. Above all, they are really damaging when used, as they often are, as avoidance offsets-- \"as an excuse to avoid cutting emissions,\" Crowther said. \n\nThe popularity of planting new trees is a problem -- at least partly -- of Crowther's own making. In 2019, his lab at ETH Zurich found that the Earth had room for an additional 1.2 trillion trees, which, the lab's research suggested, could suck down as much as two-thirds of the carbon that humans have historically emitted into the atmosphere. \"This highlights global tree restoration as our most effective climate change solution to date,\" the study said. Crowther subsequently gave dozens of interviews to that effect. This seemingly easy climate solution sparked a tree-planting craze by companies and leaders eager to burnish their green credentials without actually cutting their emissions, from Shell to Donald Trump. It also provoked a squall of criticism from scientists, who argued that the Crowther study had vastly overestimated the land suitable for forest restoration and the amount of carbon it could draw down. (The study authors later corrected the paper to say tree restoration was only \"one of the most effective\" solutions, and could suck down at most one-third of the atmospheric carbon, with large uncertainties.) \n\nCrowther, who says his message was misinterpreted, put out a more nuanced paper last month, which shows that preserving existing forests can have a greater climate impact than planting trees. He then brought the results to COP28 to \"kill greenwashing\" of the kind that his previous study seemed to encourage -- that is, using unreliable evidence on the benefits of planting trees as an excuse to keep on emitting carbon. \"Killing greenwashing doesn't mean stop investing in nature,\" he says. \"It means doing it right. It means distributing wealth to the Indigenous populations and farmers and communities who are living with biodiversity.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/15/1510243/stop-planting-trees-says-guy-who-inspired-world-to-plant-a-trillion-trees?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T16:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-12-15T18:00:00+00:00", + "title": "The Biggest Problem With Lab-Grown Chicken Is Growing the Chicken", + "link": "https://science.slashdot.org/story/23/12/15/1657236/the-biggest-problem-with-lab-grown-chicken-is-growing-the-chicken?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-12-15T18:00:00+00:00", + "content": "Ten years ago, a Dutch scientist unveiled a $330,000 lab-grown hamburger made from cow cells grown in petri dishes. It took six weeks to culture the patty. A chef cooked it onstage as journalists watched. Reactions ranged from \"unpleasant\" to \"beeflike.\" The scientist expected supermarket sales in a decade. His company and others have since raised over $2 billion but have little to show, only recently making one pound of chicken monthly. Despite bold promises of mass production, low emissions, and better nutrition, commercial viability remains elusive. Bloomberg Business: The company [Upside Foods], in a letter from its attorney to Bloomberg Businessweek, says plans for scaling up have been an evolution saddled with \"realities and complexities of doing something that has never been done before. Innovation rarely happens in a straight and continuous line.\" \n\nThe dream is moist, meaty flesh self-multiplying ad infinitum in high-tech, stainless steel cell-growing chambers. But according to internal company documentation and eight former employees, most of whom requested anonymity because they don't have permission to discuss confidential information, Upside at the moment is actually growing just minuscule numbers of chicken skin-type cells in small plastic bottles, then scraping them out gram by gram to compress and mold them into a single forkful of flesh. This labor-intensive chicken has higher levels of cholesterol and lead than the real thing, publicly available company documentation shows. Even if that sounds remotely desirable, some scientists say the whole energy-intensive endeavor may actually be worse for the environment, especially with chicken, which has the smallest carbon footprint of anything at the local butcher. All of which points to this question: Why exactly are we chasing lab-grown chicken?[...]

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Ten years ago, a Dutch scientist unveiled a $330,000 lab-grown hamburger made from cow cells grown in petri dishes. It took six weeks to culture the patty. A chef cooked it onstage as journalists watched. Reactions ranged from \"unpleasant\" to \"beeflike.\" The scientist expected supermarket sales in a decade. His company and others have since raised over $2 billion but have little to show, only recently making one pound of chicken monthly. Despite bold promises of mass production, low emissions, and better nutrition, commercial viability remains elusive. Bloomberg Business: The company [Upside Foods], in a letter from its attorney to Bloomberg Businessweek, says plans for scaling up have been an evolution saddled with \"realities and complexities of doing something that has never been done before. Innovation rarely happens in a straight and continuous line.\" \n\nThe dream is moist, meaty flesh self-multiplying ad infinitum in high-tech, stainless steel cell-growing chambers. But according to internal company documentation and eight former employees, most of whom requested anonymity because they don't have permission to discuss confidential information, Upside at the moment is actually growing just minuscule numbers of chicken skin-type cells in small plastic bottles, then scraping them out gram by gram to compress and mold them into a single forkful of flesh. This labor-intensive chicken has higher levels of cholesterol and lead than the real thing, publicly available company documentation shows. Even if that sounds remotely desirable, some scientists say the whole energy-intensive endeavor may actually be worse for the environment, especially with chicken, which has the smallest carbon footprint of anything at the local butcher. All of which points to this question: Why exactly are we chasing lab-grown chicken?[...]\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/12/15/1657236/the-biggest-problem-with-lab-grown-chicken-is-growing-the-chicken?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-12-15T18:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T10:00:00+00:00", + "title": "Starlink Launches First 'Cellphone Towers In Space' For Use with LTE Phones", + "link": "https://tech.slashdot.org/story/24/01/04/0143227/starlink-launches-first-cellphone-towers-in-space-for-use-with-lte-phones?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T10:00:00+00:00", + "content": "SpaceX launched a total of 21 satellites on Tuesday night, including \"the first six Starlink satellites with Direct to Cell capabilities that enable mobile network operators around the world to provide seamless global access to texting, calling, and browsing wherever you may be on land, lakes, or coastal waters without changing hardware or firmware. The enhanced Starlink satellites have an advanced modem that acts as a cellphone tower in space, eliminating dead zones with network integration similar to a standard roaming partner,\" the company said. Ars Technica reports: Besides T-Mobile in the US, several carriers in other countries have signed up to use the direct-to-cell satellites. SpaceX said the other carriers are Rogers in Canada, KDDI in Japan, Optus in Australia, One NZ in New Zealand, Salt in Switzerland, and Entel in Chile and Peru. While SpaceX CEO Elon Musk wrote that the satellites will \"allow for mobile phone connectivity anywhere on Earth,\" he also described a significant bandwidth limit. \"Note, this only supports ~7Mb per beam and the beams are very big, so while this is a great solution for locations with no cellular connectivity, it is not meaningfully competitive with existing terrestrial cellular networks,\" Musk wrote.\n \nStarlink's direct-to-cell website says the service will provide text messaging only when it becomes available in 2024, with voice and data service beginning sometime in 2025. Starlink's low Earth orbit satellites will work with standard LTE phones, unlike earlier services that required phones specifically built for satellite use. SpaceX's direct-to-cell satellites will also connect with Internet of Things (IoT) devices in 2025, the company says.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "SpaceX launched a total of 21 satellites on Tuesday night, including \"the first six Starlink satellites with Direct to Cell capabilities that enable mobile network operators around the world to provide seamless global access to texting, calling, and browsing wherever you may be on land, lakes, or coastal waters without changing hardware or firmware. The enhanced Starlink satellites have an advanced modem that acts as a cellphone tower in space, eliminating dead zones with network integration similar to a standard roaming partner,\" the company said. Ars Technica reports: Besides T-Mobile in the US, several carriers in other countries have signed up to use the direct-to-cell satellites. SpaceX said the other carriers are Rogers in Canada, KDDI in Japan, Optus in Australia, One NZ in New Zealand, Salt in Switzerland, and Entel in Chile and Peru. While SpaceX CEO Elon Musk wrote that the satellites will \"allow for mobile phone connectivity anywhere on Earth,\" he also described a significant bandwidth limit. \"Note, this only supports ~7Mb per beam and the beams are very big, so while this is a great solution for locations with no cellular connectivity, it is not meaningfully competitive with existing terrestrial cellular networks,\" Musk wrote.\n \nStarlink's direct-to-cell website says the service will provide text messaging only when it becomes available in 2024, with voice and data service beginning sometime in 2025. Starlink's low Earth orbit satellites will work with standard LTE phones, unlike earlier services that required phones specifically built for satellite use. SpaceX's direct-to-cell satellites will also connect with Internet of Things (IoT) devices in 2025, the company says.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/04/0143227/starlink-launches-first-cellphone-towers-in-space-for-use-with-lte-phones?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T10:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T07:00:00+00:00", + "title": "New Antibiotic Can Kill Drug-Resistant Bacteria", + "link": "https://science.slashdot.org/story/24/01/04/0135245/new-antibiotic-can-kill-drug-resistant-bacteria?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T07:00:00+00:00", + "content": "fahrbot-bot shares a report from The Guardian: Scientists have discovered an entirely new class of antibiotic that appears to kill one of three bacteria considered to pose the greatest threat to human health because of their extensive drug-resistance. Zosurabalpin defeated highly drug-resistant strains of Carbapenem-resistant Acinetobacter baumannii (Crab) in mouse models of pneumonia and sepsis, and was being tested in human trials. Crab is classified as a priority 1 critical pathogen by the World Health Organization, alongside two other drug-resistant forms of bacteria -- Pseudomonas aeruginosa and Enterobacteriaceae.\n \nAntibiotic-resistant infections pose an urgent threat to human health -- particularly those caused by a large group of bacteria known as Gram-negative bacteria, which are protected by an outer shell containing a substance called lipopolysaccharide (LPS). \"LPS allows bacteria to live in harsh environments, and it also allows them to evade attack by our immune system,\" said Dr Michael Lobritz, the global head of infectious diseases at Roche Pharma Research and Early Development in Basel Switzerland, which developed the new drug. No new antibiotic for Gram-negative bacteria have been approved in more than 50 years.\n \nRoche had previously identified Zosurabalpin as capable of blocking the growth of A baumannii but it was not clear how it worked, or if it would be effective in animals with Crab-related infections. Through a series of experiments published in Nature, Prof Daniel Kahne at Harvard University in Cambridge, US, and colleagues showed that the drug prevented LPS from being transported to the outer membrane of the bacterium, killing it. They also found that Zosurabalpin considerably reduced levels of bacteria in mice with Crab-induced pneumonia and prevented the death of those with Crab-related sepsis. While [Lobritz] stressed that this molecule alone would not solve the public health threat of antimicrobial resistant infections, the discovery could lay the foundations for future efforts to drug the same transport system in other bacteria.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "fahrbot-bot shares a report from The Guardian: Scientists have discovered an entirely new class of antibiotic that appears to kill one of three bacteria considered to pose the greatest threat to human health because of their extensive drug-resistance. Zosurabalpin defeated highly drug-resistant strains of Carbapenem-resistant Acinetobacter baumannii (Crab) in mouse models of pneumonia and sepsis, and was being tested in human trials. Crab is classified as a priority 1 critical pathogen by the World Health Organization, alongside two other drug-resistant forms of bacteria -- Pseudomonas aeruginosa and Enterobacteriaceae.\n \nAntibiotic-resistant infections pose an urgent threat to human health -- particularly those caused by a large group of bacteria known as Gram-negative bacteria, which are protected by an outer shell containing a substance called lipopolysaccharide (LPS). \"LPS allows bacteria to live in harsh environments, and it also allows them to evade attack by our immune system,\" said Dr Michael Lobritz, the global head of infectious diseases at Roche Pharma Research and Early Development in Basel Switzerland, which developed the new drug. No new antibiotic for Gram-negative bacteria have been approved in more than 50 years.\n \nRoche had previously identified Zosurabalpin as capable of blocking the growth of A baumannii but it was not clear how it worked, or if it would be effective in animals with Crab-related infections. Through a series of experiments published in Nature, Prof Daniel Kahne at Harvard University in Cambridge, US, and colleagues showed that the drug prevented LPS from being transported to the outer membrane of the bacterium, killing it. They also found that Zosurabalpin considerably reduced levels of bacteria in mice with Crab-induced pneumonia and prevented the death of those with Crab-related sepsis. While [Lobritz] stressed that this molecule alone would not solve the public health threat of antimicrobial resistant infections, the discovery could lay the foundations for future efforts to drug the same transport system in other bacteria.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/04/0135245/new-antibiotic-can-kill-drug-resistant-bacteria?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T03:30:00+00:00", + "title": "Scientists Solve the Mystery of How Jellyfish Can Regenerate a Tentacle In Days", + "link": "https://science.slashdot.org/story/24/01/03/2313232/scientists-solve-the-mystery-of-how-jellyfish-can-regenerate-a-tentacle-in-days?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T03:30:00+00:00", + "content": "An anonymous reader quotes a report from Technology Networks: At about the size of a pinkie nail, the jellyfish species Cladonema can regenerate an amputated tentacle in two to three days -- but how? Regenerating functional tissue across species, including salamanders and insects, relies on the ability to form a blastema, a clump of undifferentiated cells that can repair damage and grow into the missing appendage. Jellyfish, along with other cnidarians such as corals and sea anemones, exhibit high regeneration abilities, but how they form the critical blastema has remained a mystery until now.\n \nA research team based in Japan has revealed that stem-like proliferative cells -- which are actively growing and dividing but not yet differentiating into specific cell types -- appear at the site of injury and help form the blastema. \"Importantly, these stem-like proliferative cells in blastema are different from the resident stem cells localized in the tentacle,\" said corresponding author Yuichiro Nakajima, lecturer in the Graduate School of Pharmaceutical Sciences at the University of Tokyo. \"Repair-specific proliferative cells mainly contribute to the epithelium -- the thin outer layer -- of the newly formed tentacle.\"\n \nThe resident stem cells that exist in and near the tentacle are responsible for generating all cellular lineages during homeostasis and regeneration, meaning they maintain and repair whatever cells are needed during the jellyfish's lifetime, according to Nakajima. Repair-specific proliferative cells only appear at the time of injury. \"Together, resident stem cells and repair-specific proliferative cells allow rapid regeneration of the functional tentacle within a few days,\" Nakajima said, noting that jellyfish use their tentacles to hunt and feed. [...] The cellular origins of the repair-specific proliferative cells observed in the blastema remain unclear, though, and the researchers say the currently available tools to investigate the origins are too limited to elucidate the source of those cells or to identify other, different stem-like cells. \"It would be essential to introduce genetic tools that allow the tracing of specific cell lineages and the manipulation in Cladonema,\" Nakajima said. \"Ultimately, understanding blastema formation mechanisms in regenerative animals, including jellyfish, may help us identify cellular and molecular components that improve our own regenerative abilities.\"\n \nThe findings were published in the journal PLOS Biology.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Technology Networks: At about the size of a pinkie nail, the jellyfish species Cladonema can regenerate an amputated tentacle in two to three days -- but how? Regenerating functional tissue across species, including salamanders and insects, relies on the ability to form a blastema, a clump of undifferentiated cells that can repair damage and grow into the missing appendage. Jellyfish, along with other cnidarians such as corals and sea anemones, exhibit high regeneration abilities, but how they form the critical blastema has remained a mystery until now.\n \nA research team based in Japan has revealed that stem-like proliferative cells -- which are actively growing and dividing but not yet differentiating into specific cell types -- appear at the site of injury and help form the blastema. \"Importantly, these stem-like proliferative cells in blastema are different from the resident stem cells localized in the tentacle,\" said corresponding author Yuichiro Nakajima, lecturer in the Graduate School of Pharmaceutical Sciences at the University of Tokyo. \"Repair-specific proliferative cells mainly contribute to the epithelium -- the thin outer layer -- of the newly formed tentacle.\"\n \nThe resident stem cells that exist in and near the tentacle are responsible for generating all cellular lineages during homeostasis and regeneration, meaning they maintain and repair whatever cells are needed during the jellyfish's lifetime, according to Nakajima. Repair-specific proliferative cells only appear at the time of injury. \"Together, resident stem cells and repair-specific proliferative cells allow rapid regeneration of the functional tentacle within a few days,\" Nakajima said, noting that jellyfish use their tentacles to hunt and feed. [...] The cellular origins of the repair-specific proliferative cells observed in the blastema remain unclear, though, and the researchers say the currently available tools to investigate the origins are too limited to elucidate the source of those cells or to identify other, different stem-like cells. \"It would be essential to introduce genetic tools that allow the tracing of specific cell lineages and the manipulation in Cladonema,\" Nakajima said. \"Ultimately, understanding blastema formation mechanisms in regenerative animals, including jellyfish, may help us identify cellular and molecular components that improve our own regenerative abilities.\"\n \nThe findings were published in the journal PLOS Biology.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/03/2313232/scientists-solve-the-mystery-of-how-jellyfish-can-regenerate-a-tentacle-in-days?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T03:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T01:50:00+00:00", + "title": "There's a Big Difference In How Your Brain Processes the Numbers 4 and 5", + "link": "https://science.slashdot.org/story/24/01/03/235200/theres-a-big-difference-in-how-your-brain-processes-the-numbers-4-and-5?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T01:50:00+00:00", + "content": "Longtime Slashdot reader fahrbot-bot shares a report from ScienceAlert: According to a new study [published in Nature Human Behavior], the human brain has two separate ways of processing numbers of things: one system for quantities of four or fewer, and another system for five and up. Presented with four or fewer objects, humans can usually identify the sum at first glance, without counting. And we're almost always right. This ability is known as \"subitizing,\" a term coined by psychologists last century, and it's different from both counting and estimating. It refers to an uncanny sense of immediately knowing how many things you're looking at, with no tallying or guessing required.\n \nWhile we can easily subitize quantities up to four, however, the ability disappears when we're looking at five or more things. If asked to instantly quantify a group of seven apples, for example, we tend to hesitate and estimate, taking slightly longer to respond and still providing less precise answers. Since our subitizing skills vanish so abruptly for quantities larger than four, some researchers have suspected our brains use two distinct processing methods, specialized for either small or large quantities. \"However, this idea has been disputed up to now,\" says co-author Florian Mormann, a cognitive neurophysiologist from the Department of Epileptology at the University Hospital Bonn. \"It could also be that our brain always makes an estimate but the error rates for smaller numbers of things are so low that they simply go unnoticed.\"\n \nPrevious research involving some of the new study's authors showed that human brains have neurons responsible for each number, with certain nerve cells firing selectively in response to certain quantities. Some neurons fire mainly when a person sees two of something, they found, while others show a similar affinity for their own number of visual elements. Yet many of these neurons also fire in response to slightly smaller or larger numbers, the researchers note, with a weaker reaction for quantities further removed from their numerical focus. \"A brain cell for a number of 'seven' elements thus also fires for six and eight elements but more weakly,\" says neurobiologist Andreas Nieder from the University of Tubingen. \"The same cell is still activated but even less so for five or nine elements.\"\n \nThis kind of \"numerical distance effect\" also occurs in monkeys, as Nieder has shown in previous research. Among humans, however, it typically happens only when we see five or more things, hinting at some undiscovered difference in the way we identify smaller numbers. \"There seems to be an additional mechanism for numbers of around less than five elements that makes these neurons more precise,\" Nieder says. Neurons responsible for lower numbers are able to inhibit other neurons responsible for adjacent numbers, the study's authors report, thus limiting any mixed signals about the quantity in question. When a trio-specializing neuron fires, for example, it also inhibits the neurons that typically fire in response to groups of two or four things. Neurons for the number five and beyond apparently lack this mechanism.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Longtime Slashdot reader fahrbot-bot shares a report from ScienceAlert: According to a new study [published in Nature Human Behavior], the human brain has two separate ways of processing numbers of things: one system for quantities of four or fewer, and another system for five and up. Presented with four or fewer objects, humans can usually identify the sum at first glance, without counting. And we're almost always right. This ability is known as \"subitizing,\" a term coined by psychologists last century, and it's different from both counting and estimating. It refers to an uncanny sense of immediately knowing how many things you're looking at, with no tallying or guessing required.\n \nWhile we can easily subitize quantities up to four, however, the ability disappears when we're looking at five or more things. If asked to instantly quantify a group of seven apples, for example, we tend to hesitate and estimate, taking slightly longer to respond and still providing less precise answers. Since our subitizing skills vanish so abruptly for quantities larger than four, some researchers have suspected our brains use two distinct processing methods, specialized for either small or large quantities. \"However, this idea has been disputed up to now,\" says co-author Florian Mormann, a cognitive neurophysiologist from the Department of Epileptology at the University Hospital Bonn. \"It could also be that our brain always makes an estimate but the error rates for smaller numbers of things are so low that they simply go unnoticed.\"\n \nPrevious research involving some of the new study's authors showed that human brains have neurons responsible for each number, with certain nerve cells firing selectively in response to certain quantities. Some neurons fire mainly when a person sees two of something, they found, while others show a similar affinity for their own number of visual elements. Yet many of these neurons also fire in response to slightly smaller or larger numbers, the researchers note, with a weaker reaction for quantities further removed from their numerical focus. \"A brain cell for a number of 'seven' elements thus also fires for six and eight elements but more weakly,\" says neurobiologist Andreas Nieder from the University of Tubingen. \"The same cell is still activated but even less so for five or nine elements.\"\n \nThis kind of \"numerical distance effect\" also occurs in monkeys, as Nieder has shown in previous research. Among humans, however, it typically happens only when we see five or more things, hinting at some undiscovered difference in the way we identify smaller numbers. \"There seems to be an additional mechanism for numbers of around less than five elements that makes these neurons more precise,\" Nieder says. Neurons responsible for lower numbers are able to inhibit other neurons responsible for adjacent numbers, the study's authors report, thus limiting any mixed signals about the quantity in question. When a trio-specializing neuron fires, for example, it also inhibits the neurons that typically fire in response to groups of two or four things. Neurons for the number five and beyond apparently lack this mechanism.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/03/235200/theres-a-big-difference-in-how-your-brain-processes-the-numbers-4-and-5?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T01:50:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T01:30:00+00:00", + "title": "Niklaus Wirth, Inventor of Pascal, Dies At 89", + "link": "https://developers.slashdot.org/story/24/01/04/0126247/niklaus-wirth-inventor-of-pascal-dies-at-89?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T01:30:00+00:00", + "content": "New submitter axlash writes: It has been reported on X that Niklaus Wirth, inventor and co-inventor of several languages including Pascal, Euler and Oberon, died on Jan 1, 2024. He was aged 89. \"We lost a titan of programming languages, programming methodology, software engineering and hardware design,\" writes software engineer Bertrand Meyer\n in a post on X. \"Niklaus Wirth passed away on the first of January. We mourn a pioneer, colleague, mentor and friend.\"\n \nNiklaus Wirth, born on February 15, 1934, in Switzerland, is a renowned computer scientist known for his significant contributions to the field of computer science and software engineering. He is best known for developing several programming languages, including ALGOL W, Pascal, and Modula-2, which have had a profound impact on the design and development of modern computer software. Wirth's work emphasized simplicity, clarity, and efficiency in programming languages, which greatly influenced subsequent language design and the development of structured programming techniques. His legacy also includes the development of the Oberon programming language and the design of the Oberon operating system. Wirth's dedication to elegant and efficient software design continues to inspire computer scientists and software engineers worldwide, making him a highly respected figure in the history of computing.\n \nYou can learn more about Wirth via A.M. Turing Award, Britannica, and the Computer History Museum.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "New submitter axlash writes: It has been reported on X that Niklaus Wirth, inventor and co-inventor of several languages including Pascal, Euler and Oberon, died on Jan 1, 2024. He was aged 89. \"We lost a titan of programming languages, programming methodology, software engineering and hardware design,\" writes software engineer Bertrand Meyer\n in a post on X. \"Niklaus Wirth passed away on the first of January. We mourn a pioneer, colleague, mentor and friend.\"\n \nNiklaus Wirth, born on February 15, 1934, in Switzerland, is a renowned computer scientist known for his significant contributions to the field of computer science and software engineering. He is best known for developing several programming languages, including ALGOL W, Pascal, and Modula-2, which have had a profound impact on the design and development of modern computer software. Wirth's work emphasized simplicity, clarity, and efficiency in programming languages, which greatly influenced subsequent language design and the development of structured programming techniques. His legacy also includes the development of the Oberon programming language and the design of the Oberon operating system. Wirth's dedication to elegant and efficient software design continues to inspire computer scientists and software engineers worldwide, making him a highly respected figure in the history of computing.\n \nYou can learn more about Wirth via A.M. Turing Award, Britannica, and the Computer History Museum.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://developers.slashdot.org/story/24/01/04/0126247/niklaus-wirth-inventor-of-pascal-dies-at-89?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T01:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T01:10:00+00:00", + "title": "Substack Faces User Revolt Over Anti-Censorship Stance", + "link": "https://yro.slashdot.org/story/24/01/03/2256240/substack-faces-user-revolt-over-anti-censorship-stance?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T01:10:00+00:00", + "content": "Alex Hern reports via the Guardian: The email newsletter service Substack is facing a user revolt after its chief executive defended hosting and handling payments for \"Nazis\" on its platform, citing anti-censorship reasons. In a note on the site published in December, the chief executive, Hamish McKenzie, said the firm \"doesn't like Nazis,\" and wished \"no one held these views.\" But he said the company did not think that censorship -- by demonetising sites that publish extreme views -- was a solution to the problem, and instead made it worse. Some of the largest newsletters on the service have threatened to take their business elsewhere if Substack does not reverse its stance.\n \nOn Tuesday Casey Newton, who writes Platformer -- a popular tech newsletter on the platform with thousands of subscribers paying at least $10 a month -- became the most prominent yet. [...] Substack takes a 10% cut of subscriptions from paid newsletters, meaning the loss of Platformer alone could represent six figures of revenue. Other newsletters have already made the jump. Talia Lavin, a journalist with thousands of paid subscribers on her newsletter The Sword and the Sandwich, moved to a competing service, Buttondown, on Tuesday. Substack's leadership team said in a statement: \"As we face growing pressure to censor content published on Substack that to some seems dubious or objectionable, our answer remains the same: we make decisions based on principles not PR, we will defend free expression, and we will stick to our hands-off approach to content moderation.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Alex Hern reports via the Guardian: The email newsletter service Substack is facing a user revolt after its chief executive defended hosting and handling payments for \"Nazis\" on its platform, citing anti-censorship reasons. In a note on the site published in December, the chief executive, Hamish McKenzie, said the firm \"doesn't like Nazis,\" and wished \"no one held these views.\" But he said the company did not think that censorship -- by demonetising sites that publish extreme views -- was a solution to the problem, and instead made it worse. Some of the largest newsletters on the service have threatened to take their business elsewhere if Substack does not reverse its stance.\n \nOn Tuesday Casey Newton, who writes Platformer -- a popular tech newsletter on the platform with thousands of subscribers paying at least $10 a month -- became the most prominent yet. [...] Substack takes a 10% cut of subscriptions from paid newsletters, meaning the loss of Platformer alone could represent six figures of revenue. Other newsletters have already made the jump. Talia Lavin, a journalist with thousands of paid subscribers on her newsletter The Sword and the Sandwich, moved to a competing service, Buttondown, on Tuesday. Substack's leadership team said in a statement: \"As we face growing pressure to censor content published on Substack that to some seems dubious or objectionable, our answer remains the same: we make decisions based on principles not PR, we will defend free expression, and we will stick to our hands-off approach to content moderation.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/03/2256240/substack-faces-user-revolt-over-anti-censorship-stance?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T01:10:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T00:30:00+00:00", + "title": "Japan To Test Datacenter Powered By Reused Hydrogen Fuel Cells", + "link": "https://hardware.slashdot.org/story/24/01/03/2250210/japan-to-test-datacenter-powered-by-reused-hydrogen-fuel-cells?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T00:30:00+00:00", + "content": "Honda and Mitsubishi are collaborating in a two-year project in Shunan City, Japan, to evaluate the feasibility and environmental benefits of powering a data center with fuel cells taken from electric vehicles. The Register reports: Hydrogen for the fuel cell power station will be provided by a third Japanese company, Tokuyama Corporation, as a byproduct from its salt water electrolysis business, which manufactures about 50,000 tons of sodium hypochlorite each year. The project was proposed by Japan's New Energy and Industrial Technology Development Organization (NEDO), which promotes the research, development and adoption of industrial, energy and environmental technologies. The objective is to consider ways of reducing costs for organizations to install and operate stationary fuel cell systems, which could ultimately contribute to the decarbonization of the electric power supply. No details were disclosed of the kind of datacenter infrastructure that Mitsubishi will operate as part of this project, so it is unknown how much power the fuel cell power station will be required to supply. [...]\n \nHydrogen can be considered a clean fuel because it produces only water as a byproduct when consumed in a fuel cell. But the problem is in sourcing the hydrogen. Much commercially produced hydrogen is extracted from methane gas via an energy-intensive process typically powered by fossil fuels. It is likely that the process Tokuyama uses in its salt water electrolysis is ultimately powered by fossil fuels, but the hydrogen is produced as a byproduct and this is currently just a demonstration project to evaluate the feasibility of integrated hydrogen business models. In addition to verifying the use of fuel cells for primary and backup power sources in datacenters, the project will also look at the potential for grid-balancing applications.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Honda and Mitsubishi are collaborating in a two-year project in Shunan City, Japan, to evaluate the feasibility and environmental benefits of powering a data center with fuel cells taken from electric vehicles. The Register reports: Hydrogen for the fuel cell power station will be provided by a third Japanese company, Tokuyama Corporation, as a byproduct from its salt water electrolysis business, which manufactures about 50,000 tons of sodium hypochlorite each year. The project was proposed by Japan's New Energy and Industrial Technology Development Organization (NEDO), which promotes the research, development and adoption of industrial, energy and environmental technologies. The objective is to consider ways of reducing costs for organizations to install and operate stationary fuel cell systems, which could ultimately contribute to the decarbonization of the electric power supply. No details were disclosed of the kind of datacenter infrastructure that Mitsubishi will operate as part of this project, so it is unknown how much power the fuel cell power station will be required to supply. [...]\n \nHydrogen can be considered a clean fuel because it produces only water as a byproduct when consumed in a fuel cell. But the problem is in sourcing the hydrogen. Much commercially produced hydrogen is extracted from methane gas via an energy-intensive process typically powered by fossil fuels. It is likely that the process Tokuyama uses in its salt water electrolysis is ultimately powered by fossil fuels, but the hydrogen is produced as a byproduct and this is currently just a demonstration project to evaluate the feasibility of integrated hydrogen business models. In addition to verifying the use of fuel cells for primary and backup power sources in datacenters, the project will also look at the potential for grid-balancing applications.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/24/01/03/2250210/japan-to-test-datacenter-powered-by-reused-hydrogen-fuel-cells?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T00:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-03T23:50:00+00:00", + "title": "CEO of Collapsed Crypto Fund HyperVerse Does Not Appear To Exist", + "link": "https://slashdot.org/story/24/01/03/2218208/ceo-of-collapsed-crypto-fund-hyperverse-does-not-appear-to-exist?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-03T23:50:00+00:00", + "content": "An anonymous reader quotes a report from The Guardian: A chief executive officer whose claimed qualifications appear to have no basis in fact was used to promote the HyperVerse crypto fund, alongside celebrity messages of support, as part of a push to recruit new investors into the scheme. A Guardian Australia investigation last month revealed thousands of people have lost millions of dollars to the HyperVerse crypto scheme, which was promoted by the Australian entrepreneur Sam Lee and his business partner, Ryan Xu, two of the founders of the collapsed Australian bitcoin company Blockchain Global. Blockchain Global owes creditors $58 million and its liquidator has referred Xu and Lee to the Australian Securities and Investments Commission for alleged possible breaches of the Corporations Act. Asic has said it does not intend to take action at this time. The HyperVerse investment scheme is among those that appear to have escaped scrutiny in Australia despite being flagged by regulators overseas, by one as a possible \"scam\" and another as a \"suspected pyramid scheme.\" Lee has denied HyperVerse was a scam and disputes being its founder.\n \nA man named Steven Reece Lewis was introduced as the chief executive officer of HyperVerse at an online global launch event in December 2021, with video messages of support from a clutch of celebrities released on Twitter the following month, including from the Apple co-founder Steve Wozniak and actor Chuck Norris. Promotional material released for HyperVerse, which was linked to a previous scheme called HyperFund, said Reece Lewis was a graduate of the University of Leeds and held a master's degree from the University of Cambridge. A brief career summary of Reece Lewis, which was presented in a video launch for potential investors, said he had worked for Goldman Sachs, sold a web development company to Adobe and launched an IT start-up firm, before being recruited to head up HyperVerse by the HyperTech group. This was the umbrella organization for a range of Hyper-branded crypto schemes.\n \nLee spoke at the launch event as \"chairman\" of the HyperTech group, while Xu was introduced as the group's \"founder.\" The company praised Reece Lewis's \"strong performance and drive,\" citing his credentials as the reason for his recruitment. Guardian Australia has confirmed that neither the University of Leeds nor the University of Cambridge has any record of someone by the name Steven Reece Lewis on their databases. No records exist of Steven Reece Lewis on the UK companies register, Companies House, or on the US Securities and Exchange Commission. Adobe, a publicly listed company since 1986, has no record of any acquisition of a company owned by a Steven Reece Lewis in any of its public SEC filings. It is understood that Goldman Sachs could find no record of Reece Lewis having worked for the company. Guardian Australia was unable to find a LinkedIn profile for Reece Lewis or any internet presence other than HyperVerse promotional material. A Twitter account in Reece Lewis's name was set up a month before he appeared in the HyperVerse video launch and was used to promote the scheme on the platform for just six months before the account became inactive.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from The Guardian: A chief executive officer whose claimed qualifications appear to have no basis in fact was used to promote the HyperVerse crypto fund, alongside celebrity messages of support, as part of a push to recruit new investors into the scheme. A Guardian Australia investigation last month revealed thousands of people have lost millions of dollars to the HyperVerse crypto scheme, which was promoted by the Australian entrepreneur Sam Lee and his business partner, Ryan Xu, two of the founders of the collapsed Australian bitcoin company Blockchain Global. Blockchain Global owes creditors $58 million and its liquidator has referred Xu and Lee to the Australian Securities and Investments Commission for alleged possible breaches of the Corporations Act. Asic has said it does not intend to take action at this time. The HyperVerse investment scheme is among those that appear to have escaped scrutiny in Australia despite being flagged by regulators overseas, by one as a possible \"scam\" and another as a \"suspected pyramid scheme.\" Lee has denied HyperVerse was a scam and disputes being its founder.\n \nA man named Steven Reece Lewis was introduced as the chief executive officer of HyperVerse at an online global launch event in December 2021, with video messages of support from a clutch of celebrities released on Twitter the following month, including from the Apple co-founder Steve Wozniak and actor Chuck Norris. Promotional material released for HyperVerse, which was linked to a previous scheme called HyperFund, said Reece Lewis was a graduate of the University of Leeds and held a master's degree from the University of Cambridge. A brief career summary of Reece Lewis, which was presented in a video launch for potential investors, said he had worked for Goldman Sachs, sold a web development company to Adobe and launched an IT start-up firm, before being recruited to head up HyperVerse by the HyperTech group. This was the umbrella organization for a range of Hyper-branded crypto schemes.\n \nLee spoke at the launch event as \"chairman\" of the HyperTech group, while Xu was introduced as the group's \"founder.\" The company praised Reece Lewis's \"strong performance and drive,\" citing his credentials as the reason for his recruitment. Guardian Australia has confirmed that neither the University of Leeds nor the University of Cambridge has any record of someone by the name Steven Reece Lewis on their databases. No records exist of Steven Reece Lewis on the UK companies register, Companies House, or on the US Securities and Exchange Commission. Adobe, a publicly listed company since 1986, has no record of any acquisition of a company owned by a Steven Reece Lewis in any of its public SEC filings. It is understood that Goldman Sachs could find no record of Reece Lewis having worked for the company. Guardian Australia was unable to find a LinkedIn profile for Reece Lewis or any internet presence other than HyperVerse promotional material. A Twitter account in Reece Lewis's name was set up a month before he appeared in the HyperVerse video launch and was used to promote the scheme on the platform for just six months before the account became inactive.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/03/2218208/ceo-of-collapsed-crypto-fund-hyperverse-does-not-appear-to-exist?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-03T23:50:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-03T23:10:00+00:00", + "title": "Firmware Prank Causes LED Curtain In Russia To Display 'Slava Ukraini'", + "link": "https://yro.slashdot.org/story/24/01/03/221221/firmware-prank-causes-led-curtain-in-russia-to-display-slava-ukraini?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-03T23:10:00+00:00", + "content": "Alexander Martin reports via The Record: The owner of an apartment in Veliky Novgorod in Russia has been arrested for discrediting the country's armed forces after a neighbor alerted the police to the message 'Slava Ukraini' scrolling across their LED curtains. When police went to the scene, they saw the garland which the owner had hung in celebration of the New Year and a \"slogan glorifying the Armed Forces of Ukraine,\" as a spokesperson for the Ministry of Internal Affairs told state-owned news agency TASS. The apartment owner said the garland was supposed to display a \"Happy New Year\" greeting, TASS reported.\n \nSeveral other people in Russia described a similar experience on the AlexGyver web forum, linked to a DIY blog popular in the country. They said at the stroke of midnight on New Year's Eve, their LED curtains also began to show the \"Glory to Ukraine\" message in Ukrainian. It is not clear whether any of these other posters were also arrested. The man in Veliky Novgorod will have to defend his case in court, according to TASS. Police have seized the curtain itself.\n \nAn independent investigation into the cause of the message by the AlexGyver forum users found that affected curtains all used the same open-source firmware code. The original code appears to have originated in Ukraine before someone created a fork translated into Russian. According to the Telegram channel for AlexGyver, the code had been added to the original project on October 18, and then in December the people or person running the fork copied and pasted that update into their own version. \"Everyone who downloaded and updated the firmware in December received a gift,\" the Telegram channel wrote. The message was \"really encrypted, hidden from the 'reader' of the code, and is displayed on the first day of the year exclusively for residents of Russia by [geographic region].\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Alexander Martin reports via The Record: The owner of an apartment in Veliky Novgorod in Russia has been arrested for discrediting the country's armed forces after a neighbor alerted the police to the message 'Slava Ukraini' scrolling across their LED curtains. When police went to the scene, they saw the garland which the owner had hung in celebration of the New Year and a \"slogan glorifying the Armed Forces of Ukraine,\" as a spokesperson for the Ministry of Internal Affairs told state-owned news agency TASS. The apartment owner said the garland was supposed to display a \"Happy New Year\" greeting, TASS reported.\n \nSeveral other people in Russia described a similar experience on the AlexGyver web forum, linked to a DIY blog popular in the country. They said at the stroke of midnight on New Year's Eve, their LED curtains also began to show the \"Glory to Ukraine\" message in Ukrainian. It is not clear whether any of these other posters were also arrested. The man in Veliky Novgorod will have to defend his case in court, according to TASS. Police have seized the curtain itself.\n \nAn independent investigation into the cause of the message by the AlexGyver forum users found that affected curtains all used the same open-source firmware code. The original code appears to have originated in Ukraine before someone created a fork translated into Russian. According to the Telegram channel for AlexGyver, the code had been added to the original project on October 18, and then in December the people or person running the fork copied and pasted that update into their own version. \"Everyone who downloaded and updated the firmware in December received a gift,\" the Telegram channel wrote. The message was \"really encrypted, hidden from the 'reader' of the code, and is displayed on the first day of the year exclusively for residents of Russia by [geographic region].\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/03/221221/firmware-prank-causes-led-curtain-in-russia-to-display-slava-ukraini?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-03T23:10:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-03T22:30:00+00:00", + "title": "New Jersey Used COVID Relief Funds To Buy Banned Chinese Surveillance Cameras", + "link": "https://yro.slashdot.org/story/24/01/03/2154220/new-jersey-used-covid-relief-funds-to-buy-banned-chinese-surveillance-cameras?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-03T22:30:00+00:00", + "content": "A federal criminal complaint has revealed that state and local agencies in New Jersey bought millions of dollars worth of banned Chinese surveillance cameras. The cameras were purchased from a local company that rebranded the banned equipment made by Dahua Technology, a company that has been implicated in the surveillance of the Uyghur people in Xinjiang. According to 404 Media, \"At least $15 million of the equipment was bought using federal COVID relief funds.\" From the report: The feds charged Tamer Zakhary, the CEO of the New Jersey-based surveillance company Packetalk, with three counts of wire fraud and a separate count of false statements for repeatedly lying to state and local agencies about the provenance of his company's surveillance cameras. Some of the cameras Packetalk sold to local agencies were Dahua cameras that had the Dahua logo removed and the colors of the camera changed, according to the criminal complaint.\n \nDahua Technology is the second largest surveillance camera company in the world. In 2019, the U.S. government banned the purchase of Dahua cameras using federal funds because their cameras have \"been implicated in human rights violations and abuses in the implementation of China's campaign of repression, mass arbitrary detention, and high-technology surveillance against Uyghurs, Kazakhs, and other members of Muslim minority groups in Xingjiang.\" The FCC later said that Dahua cameras \"pose an unacceptable risk to U.S. national security.\" Dahua is not named in the federal complaint, but [404 Media's Jason Koebler] was able to cross-reference details in the complaint with Dahua and was able to identify specific cameras sold by Packetalk to Dahua's product.\n \nAccording to the FBI, Zakhary sold millions of dollars of surveillance equipment, including rebranded Dahua cameras, to agencies all over New Jersey despite knowing that the cameras were illegal to sell to public agencies. Zakhary also specifically helped two specific agencies in New Jersey (called \"Victim Agency-1\" and \"Victim Agency-2\" in the complaint) justify their purchases using federal COVID relief money from the CARES Act, according to the criminal complaint. The feds allege, essentially, that Zakhary tricked local agencies into buying banned cameras using COVID funds: \"Zakhary fraudulently misrepresented to the Public Safety Customers that [Packetalk's] products were compliant with Section 889 of the John S. McCain National Defense Authorization Act for 2019 [which banned Dahua cameras], when, in fact, they were not,\" the complaint reads. \"As a result of Zakhary's fraudulent misrepresentations, the Public Safety Customers purchased at least $35 million in surveillance cameras and equipment from [Packetalk], over $15 million of which was federal funds and grants.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "A federal criminal complaint has revealed that state and local agencies in New Jersey bought millions of dollars worth of banned Chinese surveillance cameras. The cameras were purchased from a local company that rebranded the banned equipment made by Dahua Technology, a company that has been implicated in the surveillance of the Uyghur people in Xinjiang. According to 404 Media, \"At least $15 million of the equipment was bought using federal COVID relief funds.\" From the report: The feds charged Tamer Zakhary, the CEO of the New Jersey-based surveillance company Packetalk, with three counts of wire fraud and a separate count of false statements for repeatedly lying to state and local agencies about the provenance of his company's surveillance cameras. Some of the cameras Packetalk sold to local agencies were Dahua cameras that had the Dahua logo removed and the colors of the camera changed, according to the criminal complaint.\n \nDahua Technology is the second largest surveillance camera company in the world. In 2019, the U.S. government banned the purchase of Dahua cameras using federal funds because their cameras have \"been implicated in human rights violations and abuses in the implementation of China's campaign of repression, mass arbitrary detention, and high-technology surveillance against Uyghurs, Kazakhs, and other members of Muslim minority groups in Xingjiang.\" The FCC later said that Dahua cameras \"pose an unacceptable risk to U.S. national security.\" Dahua is not named in the federal complaint, but [404 Media's Jason Koebler] was able to cross-reference details in the complaint with Dahua and was able to identify specific cameras sold by Packetalk to Dahua's product.\n \nAccording to the FBI, Zakhary sold millions of dollars of surveillance equipment, including rebranded Dahua cameras, to agencies all over New Jersey despite knowing that the cameras were illegal to sell to public agencies. Zakhary also specifically helped two specific agencies in New Jersey (called \"Victim Agency-1\" and \"Victim Agency-2\" in the complaint) justify their purchases using federal COVID relief money from the CARES Act, according to the criminal complaint. The feds allege, essentially, that Zakhary tricked local agencies into buying banned cameras using COVID funds: \"Zakhary fraudulently misrepresented to the Public Safety Customers that [Packetalk's] products were compliant with Section 889 of the John S. McCain National Defense Authorization Act for 2019 [which banned Dahua cameras], when, in fact, they were not,\" the complaint reads. \"As a result of Zakhary's fraudulent misrepresentations, the Public Safety Customers purchased at least $35 million in surveillance cameras and equipment from [Packetalk], over $15 million of which was federal funds and grants.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/03/2154220/new-jersey-used-covid-relief-funds-to-buy-banned-chinese-surveillance-cameras?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-03T22:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-03T21:50:00+00:00", + "title": "23andMe Tells Victims It's Their Fault Data Was Breached", + "link": "https://yro.slashdot.org/story/24/01/03/2143235/23andme-tells-victims-its-their-fault-data-was-breached?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-03T21:50:00+00:00", + "content": "An anonymous reader quotes a report from TechCrunch: Facing more than 30 lawsuits from victims of its massive data breach, 23andMe is now deflecting the blame to the victims themselves in an attempt to absolve itself from any responsibility, according to a letter sent to a group of victims seen by TechCrunch. \"Rather than acknowledge its role in this data security disaster, 23andMe has apparently decided to leave its customers out to dry while downplaying the seriousness of these events,\" Hassan Zavareei, one of the lawyers representing the victims who received the letter from 23andMe, told TechCrunch in an email.\n \nIn December, 23andMe admitted that hackers had stolen the genetic and ancestry data of 6.9 million users, nearly half of all its customers. The data breach started with hackers accessing only around 14,000 user accounts. The hackers broke into this first set of victims by brute-forcing accounts with passwords that were known to be associated with the targeted customers, a technique known as credential stuffing. From these 14,000 initial victims, however, the hackers were able to then access the personal data of the other 6.9 million million victims because they had opted-in to 23andMe's DNA Relatives feature. This optional feature allows customers to automatically share some of their data with people who are considered their relatives on the platform. In other words, by hacking into only 14,000 customers' accounts, the hackers subsequently scraped personal data of another 6.9 million customers whose accounts were not directly hacked.\n \nBut in a letter sent to a group of hundreds of 23andMe users who are now suing the company, 23andMe said that \"users negligently recycled and failed to update their passwords following these past security incidents, which are unrelated to 23andMe.\" \"Therefore, the incident was not a result of 23andMe's alleged failure to maintain reasonable security measures,\" the letter reads. [...] 23andMe's lawyers argued that the stolen data cannot be used to inflict monetary damage against the victims. \"The information that was potentially accessed cannot be used for any harm. As explained in the October 6, 2023 blog post, the profile information that may have been accessed related to the DNA Relatives feature, which a customer creates and chooses to share with other users on 23andMe's platform. Such information would only be available if plaintiffs affirmatively elected to share this information with other users via the DNA Relatives feature. Additionally, the information that the unauthorized actor potentially obtained about plaintiffs could not have been used to cause pecuniary harm (it did not include their social security number, driver's license number, or any payment or financial information),\" the letter read. \"This finger pointing is nonsensical,\" said Zavareei. \"23andMe knew or should have known that many consumers use recycled passwords and thus that 23andMe should have implemented some of the many safeguards available to protect against credential stuffing -- especially considering that 23andMe stores personal identifying information, health information, and genetic information on its platform.\"\n \n\"The breach impacted millions of consumers whose data was exposed through the DNA Relatives feature on 23andMe's platform, not because they used recycled passwords,\" added Zavareei. \"Of those millions, only a few thousand accounts were compromised due to credential stuffing. 23andMe's attempt to shirk responsibility by blaming its customers does nothing for these millions of consumers whose data was compromised through no fault of their own whatsoever.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Facing more than 30 lawsuits from victims of its massive data breach, 23andMe is now deflecting the blame to the victims themselves in an attempt to absolve itself from any responsibility, according to a letter sent to a group of victims seen by TechCrunch. \"Rather than acknowledge its role in this data security disaster, 23andMe has apparently decided to leave its customers out to dry while downplaying the seriousness of these events,\" Hassan Zavareei, one of the lawyers representing the victims who received the letter from 23andMe, told TechCrunch in an email.\n \nIn December, 23andMe admitted that hackers had stolen the genetic and ancestry data of 6.9 million users, nearly half of all its customers. The data breach started with hackers accessing only around 14,000 user accounts. The hackers broke into this first set of victims by brute-forcing accounts with passwords that were known to be associated with the targeted customers, a technique known as credential stuffing. From these 14,000 initial victims, however, the hackers were able to then access the personal data of the other 6.9 million million victims because they had opted-in to 23andMe's DNA Relatives feature. This optional feature allows customers to automatically share some of their data with people who are considered their relatives on the platform. In other words, by hacking into only 14,000 customers' accounts, the hackers subsequently scraped personal data of another 6.9 million customers whose accounts were not directly hacked.\n \nBut in a letter sent to a group of hundreds of 23andMe users who are now suing the company, 23andMe said that \"users negligently recycled and failed to update their passwords following these past security incidents, which are unrelated to 23andMe.\" \"Therefore, the incident was not a result of 23andMe's alleged failure to maintain reasonable security measures,\" the letter reads. [...] 23andMe's lawyers argued that the stolen data cannot be used to inflict monetary damage against the victims. \"The information that was potentially accessed cannot be used for any harm. As explained in the October 6, 2023 blog post, the profile information that may have been accessed related to the DNA Relatives feature, which a customer creates and chooses to share with other users on 23andMe's platform. Such information would only be available if plaintiffs affirmatively elected to share this information with other users via the DNA Relatives feature. Additionally, the information that the unauthorized actor potentially obtained about plaintiffs could not have been used to cause pecuniary harm (it did not include their social security number, driver's license number, or any payment or financial information),\" the letter read. \"This finger pointing is nonsensical,\" said Zavareei. \"23andMe knew or should have known that many consumers use recycled passwords and thus that 23andMe should have implemented some of the many safeguards available to protect against credential stuffing -- especially considering that 23andMe stores personal identifying information, health information, and genetic information on its platform.\"\n \n\"The breach impacted millions of consumers whose data was exposed through the DNA Relatives feature on 23andMe's platform, not because they used recycled passwords,\" added Zavareei. \"Of those millions, only a few thousand accounts were compromised due to credential stuffing. 23andMe's attempt to shirk responsibility by blaming its customers does nothing for these millions of consumers whose data was compromised through no fault of their own whatsoever.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/03/2143235/23andme-tells-victims-its-their-fault-data-was-breached?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-03T21:50:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-03T21:10:00+00:00", + "title": "DVD Resurgence To Prevent Films From Disappearing", + "link": "https://hardware.slashdot.org/story/24/01/03/2042204/dvd-resurgence-to-prevent-films-from-disappearing?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-03T21:10:00+00:00", + "content": "smooth wombat writes: The advent of streaming services heralded a new era of movie watching. No longer tied to an inconvenient time at a theater, movies could now be watched at your convenience any time of the day or night in your own home. However, with that convenience comes a sinister side: those same movies disappearing from streaming services. Once the movie is removed from the streaming service you can't watch it again. As a result, more people, particularly younger people, are buying DVDs, and even records, to preserve their ability to watch and listen to what they want when they want. Before his release of Oppenheimer, Christopher Nolan encouraged fans to embrace \"a version you can buy and own at home and put on a shelf so no evil streaming service can come steal it from you\". From the BBC article:\n\n \nOther directors have chimed in to sing the praises of physical media. James Cameron told Variety:\"The streamers are denying us any access whatsoever to certain films. And I think people are responding with their natural reaction, which is 'I'm going to buy it, and I'm going to watch it any time I want.'\" Guillermo del Toro posted on X that \"If you own a great 4K HD, Blu-ray, DVD etc etc of a film or films you love... you are the custodian of those films for generations to come.\" His tweet prompted people to reply, sharing evidence of their vast DVD collections. [...]

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "smooth wombat writes: The advent of streaming services heralded a new era of movie watching. No longer tied to an inconvenient time at a theater, movies could now be watched at your convenience any time of the day or night in your own home. However, with that convenience comes a sinister side: those same movies disappearing from streaming services. Once the movie is removed from the streaming service you can't watch it again. As a result, more people, particularly younger people, are buying DVDs, and even records, to preserve their ability to watch and listen to what they want when they want. Before his release of Oppenheimer, Christopher Nolan encouraged fans to embrace \"a version you can buy and own at home and put on a shelf so no evil streaming service can come steal it from you\". From the BBC article:\n\n \nOther directors have chimed in to sing the praises of physical media. James Cameron told Variety:\"The streamers are denying us any access whatsoever to certain films. And I think people are responding with their natural reaction, which is 'I'm going to buy it, and I'm going to watch it any time I want.'\" Guillermo del Toro posted on X that \"If you own a great 4K HD, Blu-ray, DVD etc etc of a film or films you love... you are the custodian of those films for generations to come.\" His tweet prompted people to reply, sharing evidence of their vast DVD collections. [...]\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/24/01/03/2042204/dvd-resurgence-to-prevent-films-from-disappearing?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-03T21:10:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-03T20:35:00+00:00", + "title": "LastPass Now Requires 12-Character Master Passwords", + "link": "https://it.slashdot.org/story/24/01/03/2035245/lastpass-now-requires-12-character-master-passwords?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-03T20:35:00+00:00", + "content": "LastPass notified customers today that they are now required to use complex master passwords with a minimum of 12 characters to increase their accounts' security. From a report: Even though LastPass has repeatedly said that there is a 12-character master password requirement since 2018, users have had the ability to use a weaker one. \"Historically, while a 12-character master password has been LastPassâ(TM) default setting since 2018, customers still had the ability to forego the recommended default settings and choose to create a master password with fewer characters, if they wished to do so,\" LastPass said in a new announcement today. \n\nLastPass has begun enforcing a 12-character master password requirement since April 2023 for new accounts or password resets, but older accounts could still use passwords with fewer than 12 characters. Starting this month, LastPass is now enforcing the 12-character master password requirement for all accounts. Furthermore, LastPass added that it will also start checking new or updated master passwords against a database of credentials previously leaked on the dark web to ensure that they don't match already compromised accounts.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "LastPass notified customers today that they are now required to use complex master passwords with a minimum of 12 characters to increase their accounts' security. From a report: Even though LastPass has repeatedly said that there is a 12-character master password requirement since 2018, users have had the ability to use a weaker one. \"Historically, while a 12-character master password has been LastPass\u00e2(TM) default setting since 2018, customers still had the ability to forego the recommended default settings and choose to create a master password with fewer characters, if they wished to do so,\" LastPass said in a new announcement today. \n\nLastPass has begun enforcing a 12-character master password requirement since April 2023 for new accounts or password resets, but older accounts could still use passwords with fewer than 12 characters. Starting this month, LastPass is now enforcing the 12-character master password requirement for all accounts. Furthermore, LastPass added that it will also start checking new or updated master passwords against a database of credentials previously leaked on the dark web to ensure that they don't match already compromised accounts.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/24/01/03/2035245/lastpass-now-requires-12-character-master-passwords?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-03T20:35:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-03T18:48:00+00:00", + "title": "Xerox To Cut 15% of Workers in Strategy It Calls a 'Reinvention'", + "link": "https://slashdot.org/story/24/01/03/1848210/xerox-to-cut-15-of-workers-in-strategy-it-calls-a-reinvention?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-03T18:48:00+00:00", + "content": "Xerox will lay off 15% of its workforce as the struggling digital printing company moves to cut costs and jump-start growth. From a report: In announcing the cuts, Xerox said Wednesday it is adopting a new operating model and organizational structure aimed at boosting its core print business, while also forming a new business services unit. CEO Steven Bandrowczak said in a statement that the shift will enhance the company's ability to efficiently bring products and services to market, labeling the strategic pivot at Xerox a \"reinvention.\" As of October 2023, Xerox had roughly 20,000 employees, according to the company's website.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Xerox will lay off 15% of its workforce as the struggling digital printing company moves to cut costs and jump-start growth. From a report: In announcing the cuts, Xerox said Wednesday it is adopting a new operating model and organizational structure aimed at boosting its core print business, while also forming a new business services unit. CEO Steven Bandrowczak said in a statement that the shift will enhance the company's ability to efficiently bring products and services to market, labeling the strategic pivot at Xerox a \"reinvention.\" As of October 2023, Xerox had roughly 20,000 employees, according to the company's website.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/03/1848210/xerox-to-cut-15-of-workers-in-strategy-it-calls-a-reinvention?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-03T18:48:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-03T18:00:00+00:00", + "title": "Way Too Many Games Were Released On Steam In 2023", + "link": "https://games.slashdot.org/story/24/01/03/1625223/way-too-many-games-were-released-on-steam-in-2023?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-03T18:00:00+00:00", + "content": "John Walker, reporting for Kotaku: Steam is by far the most peculiar of online storefronts. Built on top of itself for the last twenty years, Valve's behemothic PC game distributor is a clusterfuck of overlapping design choices, where algorithms rule over coherence, with 2023 seeing over 14,500 games released into the mayhem. Which is too many games. That breaks down to just under 40 a day, although given how people release games, it more accurately breaks down to about 50 every weekday. 50 games a day. On a storefront that goes to some lengths to bury new releases, and even buries pages where you can deliberately list new releases. \n\nCompared to 2022, that's an increase of nearly 2,000 games, up almost 5,000 from five years ago. There's no reason to expect that growth to diminish any time soon. It's a volume of games that not only could no individual ever hope to keep up with, but nor could even any gaming site. Not even the biggest sites in the industry could afford an editorial team capable of playing 50 games a day to find and write about those worth highlighting. Realistically, not even a tenth of the games. And that's not least because of those 50 games per day, about 48 of them will be absolute dross. On one level, in this way Steam represents a wonderful democracy for gaming, where any developer willing to stump up the $100 entry fee can release their game on the platform, with barely any restrictions. On another level, however, it's a disaster for about 99 percent of releases, which stand absolutely no chance of garnering any attention, no matter their quality. The solution: human storefront curation, which Valve has never shown any intention of doing.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "John Walker, reporting for Kotaku: Steam is by far the most peculiar of online storefronts. Built on top of itself for the last twenty years, Valve's behemothic PC game distributor is a clusterfuck of overlapping design choices, where algorithms rule over coherence, with 2023 seeing over 14,500 games released into the mayhem. Which is too many games. That breaks down to just under 40 a day, although given how people release games, it more accurately breaks down to about 50 every weekday. 50 games a day. On a storefront that goes to some lengths to bury new releases, and even buries pages where you can deliberately list new releases. \n\nCompared to 2022, that's an increase of nearly 2,000 games, up almost 5,000 from five years ago. There's no reason to expect that growth to diminish any time soon. It's a volume of games that not only could no individual ever hope to keep up with, but nor could even any gaming site. Not even the biggest sites in the industry could afford an editorial team capable of playing 50 games a day to find and write about those worth highlighting. Realistically, not even a tenth of the games. And that's not least because of those 50 games per day, about 48 of them will be absolute dross. On one level, in this way Steam represents a wonderful democracy for gaming, where any developer willing to stump up the $100 entry fee can release their game on the platform, with barely any restrictions. On another level, however, it's a disaster for about 99 percent of releases, which stand absolutely no chance of garnering any attention, no matter their quality. The solution: human storefront curation, which Valve has never shown any intention of doing.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/24/01/03/1625223/way-too-many-games-were-released-on-steam-in-2023?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-03T18:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-04T12:30:00+00:00", + "title": "'Rich Dad Poor Dad' Author Says He's Racked Up More Than $1 Billion in Debt", + "link": "https://news.slashdot.org/story/24/01/04/1228241/rich-dad-poor-dad-author-says-hes-racked-up-more-than-1-billion-in-debt?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-04T12:30:00+00:00", + "content": "A bestselling personal finance author and entrepreneur admits that he has more than $1 billion in debt -- and he doesn't think that's a bad thing. From a report: \"If I go bust, the bank goes bust,\" said \"Rich Dad, Poor Dad\" author Robert Kiyosaki in a Nov. 30 Instagram reel. \"Not my problem.\" That's because his debt has been used to purchase assets, he said in the video. He compared that with using debt to purchase liabilities, such as his Ferrari or Rolls-Royce vehicles -- expenses he's paid off in full, he said. \n\n\"I'm a billion dollars in debt because debt is money,\" Kiyosaki said during an interview on the \"Disruptors\" podcast. It connects to his strategy of using cash earnings to purchase precious metals like gold or silver, which Kiyosaki argues will retain their value while the U.S. dollar fluctuates: \"toilet paper,\" he called it.\n Kiyosaki is one of the country's most well-known personal finance personalities. His 1997 book \"Rich Dad, Poor Dad,\" which was originally self-published, has sold more than 40 million copies.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "A bestselling personal finance author and entrepreneur admits that he has more than $1 billion in debt -- and he doesn't think that's a bad thing. From a report: \"If I go bust, the bank goes bust,\" said \"Rich Dad, Poor Dad\" author Robert Kiyosaki in a Nov. 30 Instagram reel. \"Not my problem.\" That's because his debt has been used to purchase assets, he said in the video. He compared that with using debt to purchase liabilities, such as his Ferrari or Rolls-Royce vehicles -- expenses he's paid off in full, he said. \n\n\"I'm a billion dollars in debt because debt is money,\" Kiyosaki said during an interview on the \"Disruptors\" podcast. It connects to his strategy of using cash earnings to purchase precious metals like gold or silver, which Kiyosaki argues will retain their value while the U.S. dollar fluctuates: \"toilet paper,\" he called it.\n Kiyosaki is one of the country's most well-known personal finance personalities. His 1997 book \"Rich Dad, Poor Dad,\" which was originally self-published, has sold more than 40 million copies.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/04/1228241/rich-dad-poor-dad-author-says-hes-racked-up-more-than-1-billion-in-debt?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T12:30:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-04T14:00:00+00:00", + "title": "Microsoft Adding New Key To PC Keyboards For First Time Since 1994", + "link": "https://it.slashdot.org/story/24/01/04/1237201/microsoft-adding-new-key-to-pc-keyboards-for-first-time-since-1994?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-04T14:00:00+00:00", + "content": "Microsoft is adding a dedicated \"Copilot\" key to PC keyboards, adjusting the standard Windows layout for the first time since 1994. The key will open its AI assistant Copilot on Windows 10 and 11. On Copilot-enabled PCs, users can already invoke Copilot by pressing Windows+C. On other PCs, the key will open Search instead. ArsTechnica adds: A quick Microsoft demo video shows the Copilot key in between the cluster of arrow keys and the right Alt button, a place where many keyboards usually put a menu button, a right Ctrl key, another Windows key, or something similar. The exact positioning, and the key being replaced, may vary depending on the size and layout of the keyboard. \n\nWe asked Microsoft if a Copilot key would be required on OEM PCs going forward; the company told us that the key isn't mandatory now, but that it expects Copilot keys to be required on Windows 11 keyboards \"over time.\" Microsoft often imposes some additional hardware requirements on major PC makers that sell Windows on their devices, beyond what is strictly necessary to run Windows itself.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Microsoft is adding a dedicated \"Copilot\" key to PC keyboards, adjusting the standard Windows layout for the first time since 1994. The key will open its AI assistant Copilot on Windows 10 and 11. On Copilot-enabled PCs, users can already invoke Copilot by pressing Windows+C. On other PCs, the key will open Search instead. ArsTechnica adds: A quick Microsoft demo video shows the Copilot key in between the cluster of arrow keys and the right Alt button, a place where many keyboards usually put a menu button, a right Ctrl key, another Windows key, or something similar. The exact positioning, and the key being replaced, may vary depending on the size and layout of the keyboard. \n\nWe asked Microsoft if a Copilot key would be required on OEM PCs going forward; the company told us that the key isn't mandatory now, but that it expects Copilot keys to be required on Windows 11 keyboards \"over time.\" Microsoft often imposes some additional hardware requirements on major PC makers that sell Windows on their devices, beyond what is strictly necessary to run Windows itself.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/24/01/04/1237201/microsoft-adding-new-key-to-pc-keyboards-for-first-time-since-1994?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T14:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-04T14:40:00+00:00", + "title": "Linux Hits Nearly 4% Desktop User Share on Statcounter", + "link": "https://linux.slashdot.org/story/24/01/04/1317203/linux-hits-nearly-4-desktop-user-share-on-statcounter?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-04T14:40:00+00:00", + "content": "From a report: According to Statcounter, which should be taken with a pinch of salt of course like any sampling, the Linux share on the desktop hit nearly 4% in December 2023. Last month was a record too and a clear trend over time, as going back a couple of years, it was rarely coming close to 2% but now it's repeatedly nearing 4% so it's quite a good sign overall. \n\nThe latest from Statcounter shows for all of 2023 below: \n\nJanuary - 2.91%\nFebruary - 2.94%\nMarch - 2.85%\nApril - 2.83%\nMay - 2.7%\nJune - 3.07%\nJuly - 3.12%\nAugust - 3.18%\nSeptember - 3.02%\nOctober - 2.92%\nNovember - 3.22%\nDecember - 3.82% \n\nLooking at December it shows Windows rising too, with macOS dropping down. If we actually take ChromeOS directly into the Linux numbers for December 2023 the overall number would actually be 6.24% (ChromeOS is Linux after all).

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "From a report: According to Statcounter, which should be taken with a pinch of salt of course like any sampling, the Linux share on the desktop hit nearly 4% in December 2023. Last month was a record too and a clear trend over time, as going back a couple of years, it was rarely coming close to 2% but now it's repeatedly nearing 4% so it's quite a good sign overall. \n\nThe latest from Statcounter shows for all of 2023 below: \n\nJanuary - 2.91%\nFebruary - 2.94%\nMarch - 2.85%\nApril - 2.83%\nMay - 2.7%\nJune - 3.07%\nJuly - 3.12%\nAugust - 3.18%\nSeptember - 3.02%\nOctober - 2.92%\nNovember - 3.22%\nDecember - 3.82% \n\nLooking at December it shows Windows rising too, with macOS dropping down. If we actually take ChromeOS directly into the Linux numbers for December 2023 the overall number would actually be 6.24% (ChromeOS is Linux after all).\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://linux.slashdot.org/story/24/01/04/1317203/linux-hits-nearly-4-desktop-user-share-on-statcounter?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T14:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-04T15:20:00+00:00", + "title": "Jeff Bezos Bets on a Google Challenger Using AI To Try To Upend Internet Search", + "link": "https://slashdot.org/story/24/01/04/1447213/jeff-bezos-bets-on-a-google-challenger-using-ai-to-try-to-upend-internet-search?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-04T15:20:00+00:00", + "content": "Perplexity, a startup going after Google's dominant position in web search, has won backing from Jeff Bezos and venture capitalists betting that artificial intelligence will upend the way people find information online. From a report: Started less than two years ago, Perplexity has fewer than 40 employees and is based out of a San Francisco co-working space. The company's product, which it calls an answer engine, is used by about 10 million people monthly. Those ingredients were enough to persuade Institutional Venture Partners, Bezos and other tech executives to invest $74 million in the company, the largest sum raised by an internet search startup in recent years. The investment valued Perplexity at $520 million, including the new money, said Chief Executive Officer Aravind Srinivas. \n\nAmazon.com, the e-commerce company chaired by Bezos, has committed to investing billions in Anthropic, the AI startup behind the chatbot Claude. The path to competing with Google is littered with carcasses, and Microsoft itself has struggled for years to dislodge the company's roughly 90% market share in online search. Others, including tech giants, are incorporating AI into their search engines. Perplexity's founders said their advantage is using advances in AI to provide direct answers, instead of website links, in response to search queries, without some of the limitations felt by larger companies.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Perplexity, a startup going after Google's dominant position in web search, has won backing from Jeff Bezos and venture capitalists betting that artificial intelligence will upend the way people find information online. From a report: Started less than two years ago, Perplexity has fewer than 40 employees and is based out of a San Francisco co-working space. The company's product, which it calls an answer engine, is used by about 10 million people monthly. Those ingredients were enough to persuade Institutional Venture Partners, Bezos and other tech executives to invest $74 million in the company, the largest sum raised by an internet search startup in recent years. The investment valued Perplexity at $520 million, including the new money, said Chief Executive Officer Aravind Srinivas. \n\nAmazon.com, the e-commerce company chaired by Bezos, has committed to investing billions in Anthropic, the AI startup behind the chatbot Claude. The path to competing with Google is littered with carcasses, and Microsoft itself has struggled for years to dislodge the company's roughly 90% market share in online search. Others, including tech giants, are incorporating AI into their search engines. Perplexity's founders said their advantage is using advances in AI to provide direct answers, instead of website links, in response to search queries, without some of the limitations felt by larger companies.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/04/1447213/jeff-bezos-bets-on-a-google-challenger-using-ai-to-try-to-upend-internet-search?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T15:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-05T13:00:00+00:00", + "title": "AI and Satellite Imagery Used To Create Clearest Map Yet of Human Activity At Sea", + "link": "https://news.slashdot.org/story/24/01/05/0026200/ai-and-satellite-imagery-used-to-create-clearest-map-yet-of-human-activity-at-sea?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-05T13:00:00+00:00", + "content": "An anonymous reader quotes a report from The Verge: Using satellite imagery and AI, researchers have mapped human activity at sea with more precision than ever before. The effort exposed a huge amount of industrial activity that previously flew under the radar, from suspicious fishing operations to an explosion of offshore energy development. The maps were published today in the journal Nature. The research led by Google-backed nonprofit Global Fishing Watch revealed that a whopping three-quarters of the world's industrial fishing vessels are not publicly tracked. Up to 30 percent of transport and energy vessels also escape public tracking. Those blind spots could hamper global conservation efforts, the researchers say. To better protect the world's oceans and fisheries, policymakers need a more accurate picture of where people are exploiting resources at sea.\n \nUntil now, Global Fishing Watch and other organizations relied primarily on the maritime Automatic Identification System (AIS) to see what was happening at sea. The system tracks vessels that carry a box that sends out radio signals, and the data has been used in the past to document overfishing and forced labor on vessels. Even so, there are major limitations with the system. Requirements to carry AIS vary by country and vessel type. And it's pretty easy for someone to turn the box off when they want to avoid detection, or cruise through locations where signal strength is spotty. To fill in the blanks, Kroodsma and his colleagues analyzed 2,000 terabytes of imagery from the European Space Agency's Sentinel-1 satellite constellation. Instead of taking traditional optical imagery, which is like snapping photos with a camera, Sentinel-1 uses advanced radar instruments to observe the surface of the Earth. Radar can penetrate clouds and \"see\" in the dark -- and it was able to spot offshore activity that AIS missed.\n \nSince 2,000 terabytes is an enormous amount of data to crunch, the researchers developed three deep-learning models to classify each detected vessel, estimate their size, and sort out different kinds of offshore infrastructure. They monitored some 15 percent of the world's oceans where 75 percent of industrial activity takes place, paying attention to both vessel movements and the development of stationary offshore structures like oil rigs and wind turbines between 2017 and 2021. While fishing activity dipped at the onset of the covid-19 pandemic in 2020, they found dense vessel traffic in areas that \"previously showed little to no vessel activity\" in public tracking systems -- particularly around South and Southeast Asia, and the northern and western coasts of Africa.\n \nA boom in offshore energy development was also visible in the data. Wind turbines outnumbered oil structures by the end of 2020. Turbines made up 48 percent of all ocean infrastructure by the following year, while oil structures accounted for 38 percent. Nearly all of the offshore wind development took place off the coasts of northern Europe and China. In the Northeast US, clean energy opponents have tried to falsely link whale deaths to upcoming offshore wind development even though evidence points to vessel strikes being the problem. Oil structures have a lot more vessels swarming around them than wind turbines. Tank vessels are used at times to transport oil to shore as an alternative to pipelines. The number of oil structures grew 16 percent over the five years studied. And offshore oil development was linked to five times as much vessel traffic globally as wind turbines in 2021. \"The actual amount of vessel traffic globally from wind turbines is tiny, compared to the rest of traffic,\" Kroodsma says.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from The Verge: Using satellite imagery and AI, researchers have mapped human activity at sea with more precision than ever before. The effort exposed a huge amount of industrial activity that previously flew under the radar, from suspicious fishing operations to an explosion of offshore energy development. The maps were published today in the journal Nature. The research led by Google-backed nonprofit Global Fishing Watch revealed that a whopping three-quarters of the world's industrial fishing vessels are not publicly tracked. Up to 30 percent of transport and energy vessels also escape public tracking. Those blind spots could hamper global conservation efforts, the researchers say. To better protect the world's oceans and fisheries, policymakers need a more accurate picture of where people are exploiting resources at sea.\n \nUntil now, Global Fishing Watch and other organizations relied primarily on the maritime Automatic Identification System (AIS) to see what was happening at sea. The system tracks vessels that carry a box that sends out radio signals, and the data has been used in the past to document overfishing and forced labor on vessels. Even so, there are major limitations with the system. Requirements to carry AIS vary by country and vessel type. And it's pretty easy for someone to turn the box off when they want to avoid detection, or cruise through locations where signal strength is spotty. To fill in the blanks, Kroodsma and his colleagues analyzed 2,000 terabytes of imagery from the European Space Agency's Sentinel-1 satellite constellation. Instead of taking traditional optical imagery, which is like snapping photos with a camera, Sentinel-1 uses advanced radar instruments to observe the surface of the Earth. Radar can penetrate clouds and \"see\" in the dark -- and it was able to spot offshore activity that AIS missed.\n \nSince 2,000 terabytes is an enormous amount of data to crunch, the researchers developed three deep-learning models to classify each detected vessel, estimate their size, and sort out different kinds of offshore infrastructure. They monitored some 15 percent of the world's oceans where 75 percent of industrial activity takes place, paying attention to both vessel movements and the development of stationary offshore structures like oil rigs and wind turbines between 2017 and 2021. While fishing activity dipped at the onset of the covid-19 pandemic in 2020, they found dense vessel traffic in areas that \"previously showed little to no vessel activity\" in public tracking systems -- particularly around South and Southeast Asia, and the northern and western coasts of Africa.\n \nA boom in offshore energy development was also visible in the data. Wind turbines outnumbered oil structures by the end of 2020. Turbines made up 48 percent of all ocean infrastructure by the following year, while oil structures accounted for 38 percent. Nearly all of the offshore wind development took place off the coasts of northern Europe and China. In the Northeast US, clean energy opponents have tried to falsely link whale deaths to upcoming offshore wind development even though evidence points to vessel strikes being the problem. Oil structures have a lot more vessels swarming around them than wind turbines. Tank vessels are used at times to transport oil to shore as an alternative to pipelines. The number of oil structures grew 16 percent over the five years studied. And offshore oil development was linked to five times as much vessel traffic globally as wind turbines in 2021. \"The actual amount of vessel traffic globally from wind turbines is tiny, compared to the rest of traffic,\" Kroodsma says.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/05/0026200/ai-and-satellite-imagery-used-to-create-clearest-map-yet-of-human-activity-at-sea?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T13:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-05T10:00:00+00:00", + "title": "New Images of Jupiter's Moon Io Capture Infernal Volcanic Landscape", + "link": "https://science.slashdot.org/story/24/01/05/0018223/new-images-of-jupiters-moon-io-capture-infernal-volcanic-landscape?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-05T10:00:00+00:00", + "content": "NASA's Juno spacecraft made its closest flyby yet of Io, one of Jupiter's largest moons, sending back images of \"sharp cliffs, edgy mountain peaks, lakes of pooled lava and even a volcanic plume,\" reports the New York Times. From the report: The Juno spacecraft, designed to study the origin and evolution of Jupiter, arrived at the planet in 2016. NASA extended the mission in 2021, and the orbiter has since captured photos of the Jovian moons Ganymede, Europa and most recently Io. [...] Juno conducted a number of more distant observations of Io in recent years. Its latest flyby occurred on Dec. 30, when the spacecraft came within 932 miles of the moon. The images captured during this visit were made with an instrument called JunoCam and are in visible wavelengths. They are some of the highest resolution views of Io's global structure. The mission's managers shared six images of Io on the mission's website, and members of the public have since uploaded digitally enhanced versions that highlight features on Io's surface.\n \nMission scientists are already at work analyzing these images, searching for differences across Io's surface to learn how often its volcanoes erupt, how bright and hot those eruptions are and how the resulting lava flows. According to Dr. Bolton, the team will also compare Juno's images to older views of the Jovian moon to determine what has changed on Io over a variety of encounters. And they'll get a second set of data to work with in a month, when Juno completes another close flyby of the explosive world on Feb. 3.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "NASA's Juno spacecraft made its closest flyby yet of Io, one of Jupiter's largest moons, sending back images of \"sharp cliffs, edgy mountain peaks, lakes of pooled lava and even a volcanic plume,\" reports the New York Times. From the report: The Juno spacecraft, designed to study the origin and evolution of Jupiter, arrived at the planet in 2016. NASA extended the mission in 2021, and the orbiter has since captured photos of the Jovian moons Ganymede, Europa and most recently Io. [...] Juno conducted a number of more distant observations of Io in recent years. Its latest flyby occurred on Dec. 30, when the spacecraft came within 932 miles of the moon. The images captured during this visit were made with an instrument called JunoCam and are in visible wavelengths. They are some of the highest resolution views of Io's global structure. The mission's managers shared six images of Io on the mission's website, and members of the public have since uploaded digitally enhanced versions that highlight features on Io's surface.\n \nMission scientists are already at work analyzing these images, searching for differences across Io's surface to learn how often its volcanoes erupt, how bright and hot those eruptions are and how the resulting lava flows. According to Dr. Bolton, the team will also compare Juno's images to older views of the Jovian moon to determine what has changed on Io over a variety of encounters. And they'll get a second set of data to work with in a month, when Juno completes another close flyby of the explosive world on Feb. 3.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/05/0018223/new-images-of-jupiters-moon-io-capture-infernal-volcanic-landscape?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T10:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-05T07:00:00+00:00", + "title": "Portal 64, An N64 Demake of Valve's Classic, Now Has a Playable 'First Slice'", + "link": "https://games.slashdot.org/story/24/01/04/2314229/portal-64-an-n64-demake-of-valves-classic-now-has-a-playable-first-slice?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-05T07:00:00+00:00", + "content": "Programmer James Lambert has been working on a demake of Valve's Portal puzzle game for the Nintendo N64. After several years of development, Portal 64: The First Slice is now out of beta with two-thirds of the game's test chambers available to play. PC Gamer reports: In the announcement video Lambert goes through some of the new features in the latest build, including a seriously impressive visual rework on the portal gun itself. The video also showcases just how much of Portal's feel this manages to successfully capture, in particular the mind-bending effects of observing rooms and Chell through the portals themselves. I once called this the most impressive homebrew game I've ever seen and, while admittedly the N64 nostalgia helps, I'd stick by that.\n \nWhile this is obviously the first slice (geddit) and there's more to come, it's an incredible achievement in its own right: The first 13 test chambers of the game all present-and-correct. Portal has 19 test chambers, and Portal: Still Alive (which unbelievably has never seen an official PC release) added a further 14, so Lambert's well on his way to completing a vanilla version of Portal 64. You can follow the Portal 64 project on YouTube and download the game here.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Programmer James Lambert has been working on a demake of Valve's Portal puzzle game for the Nintendo N64. After several years of development, Portal 64: The First Slice is now out of beta with two-thirds of the game's test chambers available to play. PC Gamer reports: In the announcement video Lambert goes through some of the new features in the latest build, including a seriously impressive visual rework on the portal gun itself. The video also showcases just how much of Portal's feel this manages to successfully capture, in particular the mind-bending effects of observing rooms and Chell through the portals themselves. I once called this the most impressive homebrew game I've ever seen and, while admittedly the N64 nostalgia helps, I'd stick by that.\n \nWhile this is obviously the first slice (geddit) and there's more to come, it's an incredible achievement in its own right: The first 13 test chambers of the game all present-and-correct. Portal has 19 test chambers, and Portal: Still Alive (which unbelievably has never seen an official PC release) added a further 14, so Lambert's well on his way to completing a vanilla version of Portal 64. You can follow the Portal 64 project on YouTube and download the game here.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/24/01/04/2314229/portal-64-an-n64-demake-of-valves-classic-now-has-a-playable-first-slice?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-05T03:30:00+00:00", + "title": "World's First Partial Heart Transplant Grows Valves and Arteries", + "link": "https://science.slashdot.org/story/24/01/04/2245251/worlds-first-partial-heart-transplant-grows-valves-and-arteries?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-05T03:30:00+00:00", + "content": "An anonymous reader quotes a report from Interesting Engineering: Marking a significant advancement in medical science, the world's first partial heart transplant has achieved the expected outcome after over a year of research efforts. Carried out by Duke Health, the patient, a young individual, now exhibits functioning valves and arteries that are growing in tandem with the transplant, as initially expected by the medical team. In spring 2022, doctors carried out the procedure on a baby who needed a new heart valve. Before, they used non-living valves, which didn't grow with the child. This meant the child needed frequent replacements, and the surgeries had a 50 percent chance of being deadly. The new procedure avoids these problems, according to the team.\n \nBabies with serious heart valve problems face a tough challenge because there aren't any implants that can grow with them. So, these babies end up needing new implants over and over until they're big enough for an adult-sized valve. It's a problem that doesn't have a solution yet. Duke Health doctors, leading a study published in the Journal of the American Medical Association, discovered that the innovative valve collection method used in the partial heart transplant resulted in two properly functioning valves and arteries that are growing along with the child, resembling natural blood vessels. \"This publication is proof that this technology works, this idea works, and can be used to help other children,\" said Joseph W. Turek, first author of the study and Duke's chief of pediatric cardiac surgery, in a statement. The research also notes that the new procedure requires less immunosuppressant medication, reducing potential long-term side effects.\n \nIt also facilitates a \"domino transplant\" method, where one donor heart benefits multiple patients, potentially doubling the number of hearts available for children with heart disease by utilizing previously unused hearts and valves.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Interesting Engineering: Marking a significant advancement in medical science, the world's first partial heart transplant has achieved the expected outcome after over a year of research efforts. Carried out by Duke Health, the patient, a young individual, now exhibits functioning valves and arteries that are growing in tandem with the transplant, as initially expected by the medical team. In spring 2022, doctors carried out the procedure on a baby who needed a new heart valve. Before, they used non-living valves, which didn't grow with the child. This meant the child needed frequent replacements, and the surgeries had a 50 percent chance of being deadly. The new procedure avoids these problems, according to the team.\n \nBabies with serious heart valve problems face a tough challenge because there aren't any implants that can grow with them. So, these babies end up needing new implants over and over until they're big enough for an adult-sized valve. It's a problem that doesn't have a solution yet. Duke Health doctors, leading a study published in the Journal of the American Medical Association, discovered that the innovative valve collection method used in the partial heart transplant resulted in two properly functioning valves and arteries that are growing along with the child, resembling natural blood vessels. \"This publication is proof that this technology works, this idea works, and can be used to help other children,\" said Joseph W. Turek, first author of the study and Duke's chief of pediatric cardiac surgery, in a statement. The research also notes that the new procedure requires less immunosuppressant medication, reducing potential long-term side effects.\n \nIt also facilitates a \"domino transplant\" method, where one donor heart benefits multiple patients, potentially doubling the number of hearts available for children with heart disease by utilizing previously unused hearts and valves.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/04/2245251/worlds-first-partial-heart-transplant-grows-valves-and-arteries?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T03:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-05T02:02:00+00:00", + "title": "AI-Assisted Bug Reports Are Seriously Annoying For Developers", + "link": "https://it.slashdot.org/story/24/01/04/2230246/ai-assisted-bug-reports-are-seriously-annoying-for-developers?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-05T02:02:00+00:00", + "content": "Generative AI models like Google Bard and GitHub Copilot are increasingly being used in various industries, but users often overlook their limitations, leading to serious errors and inefficiencies. Daniel Stenberg of curl and libcurl highlights a specific problem of AI-generated security reports: when reports are made to look better and to appear to have a point, it takes a longer time to research and eventually discard it. \"Every security report has to have a human spend time to look at it and assess what it means,\" adds Stenberg. \"The better the crap, the longer time and the more energy we have to spend on the report until we close it.\" The Register reports: The curl project offers a bug bounty to security researchers who find and report legitimate vulnerabilities. According to Stenberg, the program has paid out over $70,000 in rewards to date. Of 415 vulnerability reports received, 64 have been confirmed as security flaws and 77 have been deemed informative -- bugs without obvious security implications. So about 66 percent of the reports have been invalid. The issue for Stenberg is that these reports still need to be investigated and that takes developer time. And while those submitting bug reports have begun using AI tools to accelerate the process of finding supposed bugs and writing up reports, those reviewing bug reports still rely on human review. The result of this asymmetry is more plausible-sounding reports, because chatbot models can produce detailed, readable text without regard to accuracy.\n \nAs Stenberg puts it, AI produces better crap. \"A crap report does not help the project at all. It instead takes away developer time and energy from something productive. Partly because security work is considered one of the most important areas so it tends to trump almost everything else.\" As examples, he cites two reports submitted to HackerOne, a vulnerability reporting community. One claimed to describe Curl CVE-2023-38545 prior to actual disclosure. But Stenberg had to post to the forum to make clear that the bug report was bogus. He said that the report, produced with the help of Google Bard, \"reeks of typical AI style hallucinations: it mixes and matches facts and details from old security issues, creating and making up something new that has no connection with reality.\" [...]\n \nStenberg readily acknowledges that AI assistance can be genuinely helpful. But he argues that having a human in the loop makes the use and outcome of AI tools much better. Even so, he expects the ease and utility of these tools, coupled with the financial incentive of bug bounties, will lead to more shoddy LLM-generated security reports, to the detriment of those on the receiving end.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Generative AI models like Google Bard and GitHub Copilot are increasingly being used in various industries, but users often overlook their limitations, leading to serious errors and inefficiencies. Daniel Stenberg of curl and libcurl highlights a specific problem of AI-generated security reports: when reports are made to look better and to appear to have a point, it takes a longer time to research and eventually discard it. \"Every security report has to have a human spend time to look at it and assess what it means,\" adds Stenberg. \"The better the crap, the longer time and the more energy we have to spend on the report until we close it.\" The Register reports: The curl project offers a bug bounty to security researchers who find and report legitimate vulnerabilities. According to Stenberg, the program has paid out over $70,000 in rewards to date. Of 415 vulnerability reports received, 64 have been confirmed as security flaws and 77 have been deemed informative -- bugs without obvious security implications. So about 66 percent of the reports have been invalid. The issue for Stenberg is that these reports still need to be investigated and that takes developer time. And while those submitting bug reports have begun using AI tools to accelerate the process of finding supposed bugs and writing up reports, those reviewing bug reports still rely on human review. The result of this asymmetry is more plausible-sounding reports, because chatbot models can produce detailed, readable text without regard to accuracy.\n \nAs Stenberg puts it, AI produces better crap. \"A crap report does not help the project at all. It instead takes away developer time and energy from something productive. Partly because security work is considered one of the most important areas so it tends to trump almost everything else.\" As examples, he cites two reports submitted to HackerOne, a vulnerability reporting community. One claimed to describe Curl CVE-2023-38545 prior to actual disclosure. But Stenberg had to post to the forum to make clear that the bug report was bogus. He said that the report, produced with the help of Google Bard, \"reeks of typical AI style hallucinations: it mixes and matches facts and details from old security issues, creating and making up something new that has no connection with reality.\" [...]\n \nStenberg readily acknowledges that AI assistance can be genuinely helpful. But he argues that having a human in the loop makes the use and outcome of AI tools much better. Even so, he expects the ease and utility of these tools, coupled with the financial incentive of bug bounties, will lead to more shoddy LLM-generated security reports, to the detriment of those on the receiving end.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/24/01/04/2230246/ai-assisted-bug-reports-are-seriously-annoying-for-developers?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T02:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-05T01:25:00+00:00", + "title": "Qualcomm's New VR Chip Competes Directly With Vision Pro, Much Cheaper Headsets", + "link": "https://hardware.slashdot.org/story/24/01/04/2222230/qualcomms-new-vr-chip-competes-directly-with-vision-pro-much-cheaper-headsets?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-05T01:25:00+00:00", + "content": "Qualcomm today unveiled a new Snapdragon XR2+ Gen 2 chipset, a single-chip architecture that will likely power Apple Vision Pro competitors from Meta, Samsung, Google and HTC, among others. ZDNet reports: Succeeding last year's XR2 Gen 2, the plus variant brings improved GPU and CPU frequency -- up 15% and 20% respectively, support for 4.3K per eye resolution at 90fps, and the ability for headsets to field 12 or more cameras with on-device AI capabilities. The latter allows equipped models to better track user movements and surrounding objects for more immersive (and harmonious) VR and MR experiences. As for efficiency gains, you'll still be getting the 50% improvement as the previous XR2 Gen 2 when stacked against the XR2 Gen 1 platform. Basically, there's no change on that front.\n \n\"(Snapdragon XR2+ Gen 2) will take XR productivity and entertainment to the next level by bringing spectacularly clear visuals to use cases such as room-scale screens, life-size overlays and virtual desktops,\" said Hugo Swart, vice president and general manager of XR, Qualcomm Technologies, Inc, in a Thursday press release. Clearly, the new silicon is aimed at headsets that can do it all -- with feature parity to the $3,500 gorilla in the room, Apple's upcoming Vision Pro headset -- though Qualcomm says it'll be priced accessibly for manufacturers to build hardware around.\n \nHow affordable will these competing wearables be? Your guess is as good as mine. But considering we've already gotten products like the $500 Meta Quest 3 fielding the slightly less capable XR2 Gen 2 chip, the future of XR may not be as expensive as it seems. The new Snapdragon XR2+ Gen 2 chipset is made in collaboration with Google and Samsung, both of which bring expertise in the Android ecosystem and developing mobile VR devices. The trio had announced plans to develop an XR platform back in February of 2023, likely in reaction to the then-rumored headset by Apple.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Qualcomm today unveiled a new Snapdragon XR2+ Gen 2 chipset, a single-chip architecture that will likely power Apple Vision Pro competitors from Meta, Samsung, Google and HTC, among others. ZDNet reports: Succeeding last year's XR2 Gen 2, the plus variant brings improved GPU and CPU frequency -- up 15% and 20% respectively, support for 4.3K per eye resolution at 90fps, and the ability for headsets to field 12 or more cameras with on-device AI capabilities. The latter allows equipped models to better track user movements and surrounding objects for more immersive (and harmonious) VR and MR experiences. As for efficiency gains, you'll still be getting the 50% improvement as the previous XR2 Gen 2 when stacked against the XR2 Gen 1 platform. Basically, there's no change on that front.\n \n\"(Snapdragon XR2+ Gen 2) will take XR productivity and entertainment to the next level by bringing spectacularly clear visuals to use cases such as room-scale screens, life-size overlays and virtual desktops,\" said Hugo Swart, vice president and general manager of XR, Qualcomm Technologies, Inc, in a Thursday press release. Clearly, the new silicon is aimed at headsets that can do it all -- with feature parity to the $3,500 gorilla in the room, Apple's upcoming Vision Pro headset -- though Qualcomm says it'll be priced accessibly for manufacturers to build hardware around.\n \nHow affordable will these competing wearables be? Your guess is as good as mine. But considering we've already gotten products like the $500 Meta Quest 3 fielding the slightly less capable XR2 Gen 2 chip, the future of XR may not be as expensive as it seems. The new Snapdragon XR2+ Gen 2 chipset is made in collaboration with Google and Samsung, both of which bring expertise in the Android ecosystem and developing mobile VR devices. The trio had announced plans to develop an XR platform back in February of 2023, likely in reaction to the then-rumored headset by Apple.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/24/01/04/2222230/qualcomms-new-vr-chip-competes-directly-with-vision-pro-much-cheaper-headsets?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T01:25:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-05T00:45:00+00:00", + "title": "US Pay-TV Subscriber Base Eroding At Record Pace", + "link": "https://entertainment.slashdot.org/story/24/01/04/2213256/us-pay-tv-subscriber-base-eroding-at-record-pace?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-05T00:45:00+00:00", + "content": "According to MoffettNathanson, the U.S. pay-TV industry had its worst-ever third quarter after losing about 900,000 subscribers. \"That poor result, the research firm added, left the total pay-TV industry shrinking at a record pace of -7.3%, widened from a year-ago decline of -5.9%,\" reports Light Reading. \"It also left pay-TV penetration of occupied households (including vMVPDs) at just 54.8% -- a level last seen in 1989, five years before the debut of DirecTV.\" From the report: Drilling down on Q3 results, traditional pay-TV providers (cable, telco and satellite) shed 1.97 million subscribers, widened from a loss of 1.94 million in the year-ago quarter. Within that category, US cable lost 1.10 million video subs in Q3, versus a loss of -1.09 million in the year-ago period. Satellite operators (Dish Network and DirecTV) lost 667,000 subs in Q3, versus -567,000 in the year-ago quarter. Telco TV providers lost 198,000 video subs in the period, an improvement when compared to a year-ago loss of -250,000 subs.\n \nvMVPDs, meanwhile, added 1.08 million in Q3, down from a year-ago gain of about 1.34 million. Despite those gains, vMVPDs recaptured only 21.7% of traditional pay-TV's subscriber losses in the period, according to MoffettNathanson. Meanwhile, YouTube TV continues to dominate the vMVPD category. MoffettNathanson estimates that YouTube TV added about 350,000 subs in Q3, extending its total to 7 million -- representing 40% of the vMVPD sector's 18 million subscriber total. \"Based on our Q3 estimate, YouTube TV has now surpassed Dish Network [6.72 million satellite TV subs at the end of Q3] to become the country's fourth largest MVPD of any kind,\" Moffett noted. \"At the current trajectory, YouTube TV should pass DirecTV for third place in less than a year.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "According to MoffettNathanson, the U.S. pay-TV industry had its worst-ever third quarter after losing about 900,000 subscribers. \"That poor result, the research firm added, left the total pay-TV industry shrinking at a record pace of -7.3%, widened from a year-ago decline of -5.9%,\" reports Light Reading. \"It also left pay-TV penetration of occupied households (including vMVPDs) at just 54.8% -- a level last seen in 1989, five years before the debut of DirecTV.\" From the report: Drilling down on Q3 results, traditional pay-TV providers (cable, telco and satellite) shed 1.97 million subscribers, widened from a loss of 1.94 million in the year-ago quarter. Within that category, US cable lost 1.10 million video subs in Q3, versus a loss of -1.09 million in the year-ago period. Satellite operators (Dish Network and DirecTV) lost 667,000 subs in Q3, versus -567,000 in the year-ago quarter. Telco TV providers lost 198,000 video subs in the period, an improvement when compared to a year-ago loss of -250,000 subs.\n \nvMVPDs, meanwhile, added 1.08 million in Q3, down from a year-ago gain of about 1.34 million. Despite those gains, vMVPDs recaptured only 21.7% of traditional pay-TV's subscriber losses in the period, according to MoffettNathanson. Meanwhile, YouTube TV continues to dominate the vMVPD category. MoffettNathanson estimates that YouTube TV added about 350,000 subs in Q3, extending its total to 7 million -- representing 40% of the vMVPD sector's 18 million subscriber total. \"Based on our Q3 estimate, YouTube TV has now surpassed Dish Network [6.72 million satellite TV subs at the end of Q3] to become the country's fourth largest MVPD of any kind,\" Moffett noted. \"At the current trajectory, YouTube TV should pass DirecTV for third place in less than a year.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://entertainment.slashdot.org/story/24/01/04/2213256/us-pay-tv-subscriber-base-eroding-at-record-pace?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T00:45:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-05T00:02:00+00:00", + "title": "ChatGPT Bombs Test On Diagnosing Kids' Medical Cases With 83% Error Rate", + "link": "https://science.slashdot.org/story/24/01/04/2038233/chatgpt-bombs-test-on-diagnosing-kids-medical-cases-with-83-error-rate?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-05T00:02:00+00:00", + "content": "An anonymous reader quotes a report from Ars Technica: ChatGPT is still no House, MD. While the chatty AI bot has previously underwhelmed with its attempts to diagnose challenging medical cases -- with an accuracy rate of 39 percent in an analysis last year -- a study out this week in JAMA Pediatrics suggests the fourth version of the large language model is especially bad with kids. It had an accuracy rate of just 17 percent when diagnosing pediatric medical cases. The low success rate suggests human pediatricians won't be out of jobs any time soon, in case that was a concern. As the authors put it: \"[T]his study underscores the invaluable role that clinical experience holds.\" But it also identifies the critical weaknesses that led to ChatGPT's high error rate and ways to transform it into a useful tool in clinical care. With so much interest and experimentation with AI chatbots, many pediatricians and other doctors see their integration into clinical care as inevitable. [...]\n \nFor ChatGPT's test, the researchers pasted the relevant text of the medical cases into the prompt, and then two qualified physician-researchers scored the AI-generated answers as correct, incorrect, or \"did not fully capture the diagnosis.\" In the latter case, ChatGPT came up with a clinically related condition that was too broad or unspecific to be considered the correct diagnosis. For instance, ChatGPT diagnosed one child's case as caused by a branchial cleft cyst -- a lump in the neck or below the collarbone -- when the correct diagnosis was Branchio-oto-renal syndrome, a genetic condition that causes the abnormal development of tissue in the neck, and malformations in the ears and kidneys. One of the signs of the condition is the formation of branchial cleft cysts. Overall, ChatGPT got the right answer in just 17 of the 100 cases. It was plainly wrong in 72 cases, and did not fully capture the diagnosis of the remaining 11 cases. Among the 83 wrong diagnoses, 47 (57 percent) were in the same organ system.\n \nAmong the failures, researchers noted that ChatGPT appeared to struggle with spotting known relationships between conditions that an experienced physician would hopefully pick up on. For example, it didn't make the connection between autism and scurvy (Vitamin C deficiency) in one medical case. Neuropsychiatric conditions, such as autism, can lead to restricted diets, and that in turn can lead to vitamin deficiencies. As such, neuropsychiatric conditions are notable risk factors for the development of vitamin deficiencies in kids living in high-income countries, and clinicians should be on the lookout for them. ChatGPT, meanwhile, came up with the diagnosis of a rare autoimmune condition. Though the chatbot struggled in this test, the researchers suggest it could improve by being specifically and selectively trained on accurate and trustworthy medical literature -- not stuff on the Internet, which can include inaccurate information and misinformation. They also suggest chatbots could improve with more real-time access to medical data, allowing the models to refine their accuracy, described as \"tuning.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Ars Technica: ChatGPT is still no House, MD. While the chatty AI bot has previously underwhelmed with its attempts to diagnose challenging medical cases -- with an accuracy rate of 39 percent in an analysis last year -- a study out this week in JAMA Pediatrics suggests the fourth version of the large language model is especially bad with kids. It had an accuracy rate of just 17 percent when diagnosing pediatric medical cases. The low success rate suggests human pediatricians won't be out of jobs any time soon, in case that was a concern. As the authors put it: \"[T]his study underscores the invaluable role that clinical experience holds.\" But it also identifies the critical weaknesses that led to ChatGPT's high error rate and ways to transform it into a useful tool in clinical care. With so much interest and experimentation with AI chatbots, many pediatricians and other doctors see their integration into clinical care as inevitable. [...]\n \nFor ChatGPT's test, the researchers pasted the relevant text of the medical cases into the prompt, and then two qualified physician-researchers scored the AI-generated answers as correct, incorrect, or \"did not fully capture the diagnosis.\" In the latter case, ChatGPT came up with a clinically related condition that was too broad or unspecific to be considered the correct diagnosis. For instance, ChatGPT diagnosed one child's case as caused by a branchial cleft cyst -- a lump in the neck or below the collarbone -- when the correct diagnosis was Branchio-oto-renal syndrome, a genetic condition that causes the abnormal development of tissue in the neck, and malformations in the ears and kidneys. One of the signs of the condition is the formation of branchial cleft cysts. Overall, ChatGPT got the right answer in just 17 of the 100 cases. It was plainly wrong in 72 cases, and did not fully capture the diagnosis of the remaining 11 cases. Among the 83 wrong diagnoses, 47 (57 percent) were in the same organ system.\n \nAmong the failures, researchers noted that ChatGPT appeared to struggle with spotting known relationships between conditions that an experienced physician would hopefully pick up on. For example, it didn't make the connection between autism and scurvy (Vitamin C deficiency) in one medical case. Neuropsychiatric conditions, such as autism, can lead to restricted diets, and that in turn can lead to vitamin deficiencies. As such, neuropsychiatric conditions are notable risk factors for the development of vitamin deficiencies in kids living in high-income countries, and clinicians should be on the lookout for them. ChatGPT, meanwhile, came up with the diagnosis of a rare autoimmune condition. Though the chatbot struggled in this test, the researchers suggest it could improve by being specifically and selectively trained on accurate and trustworthy medical literature -- not stuff on the Internet, which can include inaccurate information and misinformation. They also suggest chatbots could improve with more real-time access to medical data, allowing the models to refine their accuracy, described as \"tuning.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/04/2038233/chatgpt-bombs-test-on-diagnosing-kids-medical-cases-with-83-error-rate?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T00:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T23:20:00+00:00", + "title": "Google Is Preparing a Paid Version of Bard", + "link": "https://tech.slashdot.org/story/24/01/04/211216/google-is-preparing-a-paid-version-of-bard?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T23:20:00+00:00", + "content": "As spotted by X user bedros_p, Google appears to be preparing to introduce a paid upgrade for Bard Advanced, a \"new, cutting-edge AI experience\" announced in December that gives users access to Google's best models and capabilities. Android Police reports: According to the strings, you will be able to \"Try Bard Advanced for 3 months, on us.\" After that test period, you will likely have to pay up for the service. A defunct link within the code suggests that it may be part of Google One, but it's not clear if Bard Advanced will be added to all tiers or only more expensive ones with more Google Drive storage. It's also possible that it will be an extra new tier in Google One.\n \nAs a refresher, Google launched its most capable AI model yet in December 2023, called Gemini. The LLM is available in three tiers, including a Nano version capable of running on devices like phones and a Pro version currently powering Bard in the US. There is also a Gemini Ultra which isn't public just yet, but supposedly outperforms other LLMs in almost all metrics. Google says that this is the one that will power Bard Advanced.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "As spotted by X user bedros_p, Google appears to be preparing to introduce a paid upgrade for Bard Advanced, a \"new, cutting-edge AI experience\" announced in December that gives users access to Google's best models and capabilities. Android Police reports: According to the strings, you will be able to \"Try Bard Advanced for 3 months, on us.\" After that test period, you will likely have to pay up for the service. A defunct link within the code suggests that it may be part of Google One, but it's not clear if Bard Advanced will be added to all tiers or only more expensive ones with more Google Drive storage. It's also possible that it will be an extra new tier in Google One.\n \nAs a refresher, Google launched its most capable AI model yet in December 2023, called Gemini. The LLM is available in three tiers, including a Nano version capable of running on devices like phones and a Pro version currently powering Bard in the US. There is also a Gemini Ultra which isn't public just yet, but supposedly outperforms other LLMs in almost all metrics. Google says that this is the one that will power Bard Advanced.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/04/211216/google-is-preparing-a-paid-version-of-bard?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T23:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T22:40:00+00:00", + "title": "AMD Proposes An FPGA Subsystem User-Space Interface For Linux", + "link": "https://linux.slashdot.org/story/24/01/04/2050232/amd-proposes-an-fpga-subsystem-user-space-interface-for-linux?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T22:40:00+00:00", + "content": "Michael Larabel reports via Phoronix: AMD engineers are proposing an FPGA Subsystem User-Space Interface to overcome current limitations of the Linux kernel's FPGA manager subsystem. AMD-Xilinx engineers are proposing a new sysfs interface for the FPGA subsystem that allows for more user-space control over FPGAs. The suggested interface would handle FPGA configuration, driver probe/remove, bridges, Device Tree Overlay file support for re-programming an FPGA while the operating system is running, and other capabilities for user-space not currently presented by the mainline kernel. [...] This proposal from AMD hopes to standardize the FPGA subsystem user-space interface in a manner that is suitable for upstreaming into the mainline Linux kernel.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Michael Larabel reports via Phoronix: AMD engineers are proposing an FPGA Subsystem User-Space Interface to overcome current limitations of the Linux kernel's FPGA manager subsystem. AMD-Xilinx engineers are proposing a new sysfs interface for the FPGA subsystem that allows for more user-space control over FPGAs. The suggested interface would handle FPGA configuration, driver probe/remove, bridges, Device Tree Overlay file support for re-programming an FPGA while the operating system is running, and other capabilities for user-space not currently presented by the mainline kernel. [...] This proposal from AMD hopes to standardize the FPGA subsystem user-space interface in a manner that is suitable for upstreaming into the mainline Linux kernel.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://linux.slashdot.org/story/24/01/04/2050232/amd-proposes-an-fpga-subsystem-user-space-interface-for-linux?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T22:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-04T22:02:00+00:00", + "title": "UCLA Will Transform Dead Westside Mall Into Major Science Innovation Center", + "link": "https://news.slashdot.org/story/24/01/04/2045257/ucla-will-transform-dead-westside-mall-into-major-science-innovation-center?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-04T22:02:00+00:00", + "content": "An anonymous reader quotes a report from the Los Angeles Times: The former Westside Pavilion, a long shuttered indoor mall, will be transformed into a UCLA biomedical research center aimed at tackling such towering challenges as curing cancer and preventing global pandemics, officials announced Wednesday. The sprawling three-story structure will be known as the UCLA Research Park and will house two multidisciplinary centers focusing on immunology and immunotherapy as well as quantum science and engineering. Establishment of the public-private research center is a coup for Southern California that \"will cement California's global, economic, scientific and technical dominance into the 22nd century and beyond,\" said Gov. Gavin Newsom.\n \nThe former owners of the mall, Hudson Pacific Properties Inc. and Macerich, said Wednesday that they sold the property to the Regents of the University of California for $700 million. By purchasing the former shopping center, UCLA saved several years of potential toil to build such a facility on campus. UCLA is the most-applied-to university in the nation, but its Westwood home is among the smallest of the nine UC undergraduate campuses, leaving it limited room for growth. The former mall sits on prime real estate in the heart of the Westside at Pico Boulevard and Overland Avenue, about two miles from the UCLA campus. The mall was owned by commercial developers who spent hundreds of millions of dollars to dramatically remake the old shopping center into an office complex intended to appeal to technology firms, which signed some of the biggest office leases in L.A.'s Silicon Beach before the pandemic.\n \nGoogle agreed to become the sole tenant and began paying rent last year yet never moved in. The interior is mostly unfinished, but is ready for UCLA to build out to its specifications in a process Newsom said would take about 40 months. The UCLA Research Park \"will serve as a state of the art hub of research and innovation that will bring together academics, corporate partners, government agencies and startups to explore new areas of inquiry and achieve breakthroughs that serve the common good,\" UCLA Chancellor Gene Block said. In addition to flexible work areas, the former mall's 12-screen multiplex movie theater may be converted into lecture halls or performance spaces offering programming across the arts, humanities, sciences and social sciences, the chancellor's office said. One tenant of the research park will be the new California Institute for Immunology and Immunotherapy.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from the Los Angeles Times: The former Westside Pavilion, a long shuttered indoor mall, will be transformed into a UCLA biomedical research center aimed at tackling such towering challenges as curing cancer and preventing global pandemics, officials announced Wednesday. The sprawling three-story structure will be known as the UCLA Research Park and will house two multidisciplinary centers focusing on immunology and immunotherapy as well as quantum science and engineering. Establishment of the public-private research center is a coup for Southern California that \"will cement California's global, economic, scientific and technical dominance into the 22nd century and beyond,\" said Gov. Gavin Newsom.\n \nThe former owners of the mall, Hudson Pacific Properties Inc. and Macerich, said Wednesday that they sold the property to the Regents of the University of California for $700 million. By purchasing the former shopping center, UCLA saved several years of potential toil to build such a facility on campus. UCLA is the most-applied-to university in the nation, but its Westwood home is among the smallest of the nine UC undergraduate campuses, leaving it limited room for growth. The former mall sits on prime real estate in the heart of the Westside at Pico Boulevard and Overland Avenue, about two miles from the UCLA campus. The mall was owned by commercial developers who spent hundreds of millions of dollars to dramatically remake the old shopping center into an office complex intended to appeal to technology firms, which signed some of the biggest office leases in L.A.'s Silicon Beach before the pandemic.\n \nGoogle agreed to become the sole tenant and began paying rent last year yet never moved in. The interior is mostly unfinished, but is ready for UCLA to build out to its specifications in a process Newsom said would take about 40 months. The UCLA Research Park \"will serve as a state of the art hub of research and innovation that will bring together academics, corporate partners, government agencies and startups to explore new areas of inquiry and achieve breakthroughs that serve the common good,\" UCLA Chancellor Gene Block said. In addition to flexible work areas, the former mall's 12-screen multiplex movie theater may be converted into lecture halls or performance spaces offering programming across the arts, humanities, sciences and social sciences, the chancellor's office said. One tenant of the research park will be the new California Institute for Immunology and Immunotherapy.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/04/2045257/ucla-will-transform-dead-westside-mall-into-major-science-innovation-center?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T22:02:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-04T21:21:00+00:00", + "title": "All Science Journals Will Now Do an AI-Powered Check for Image Fraud", + "link": "https://science.slashdot.org/story/24/01/04/2022245/all-science-journals-will-now-do-an-ai-powered-check-for-image-fraud?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-04T21:21:00+00:00", + "content": "The research publisher Science announced today that all of its journals will begin using commercial software that automates the process of detecting improperly manipulated images. From a report: The move comes many years into our awareness that the transition to digital data and publishing has made it comically easy to commit research fraud by altering images. While the move is a significant first step, it's important to recognize the software's limitations. While it will catch some of the most egregious cases of image manipulation, enterprising fraudsters can easily avoid being caught if they know how the software operates. Which, unfortunately, we feel compelled to describe (and, to be fair, the company that has developed the software does so on its website). \n\nMuch of the image-based fraud we've seen arises from a dilemma faced by many scientists: It's not a problem to run experiments, but the data they generate often isn't the data you want. Maybe only the controls work, or maybe the experiments produce data that is indistinguishable from controls. For the unethical, this doesn't pose a problem since nobody other than you knows what images come from which samples. It's relatively simple to present images of real data as something they're not. To make this concrete, we can look at data from a procedure called a western blot, which uses antibodies to identify specific proteins from a complex mixture that has been separated according to protein size. Typical western blot data looks like the image at right, with the darkness of the bands representing proteins that are present at different levels in different conditions.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The research publisher Science announced today that all of its journals will begin using commercial software that automates the process of detecting improperly manipulated images. From a report: The move comes many years into our awareness that the transition to digital data and publishing has made it comically easy to commit research fraud by altering images. While the move is a significant first step, it's important to recognize the software's limitations. While it will catch some of the most egregious cases of image manipulation, enterprising fraudsters can easily avoid being caught if they know how the software operates. Which, unfortunately, we feel compelled to describe (and, to be fair, the company that has developed the software does so on its website). \n\nMuch of the image-based fraud we've seen arises from a dilemma faced by many scientists: It's not a problem to run experiments, but the data they generate often isn't the data you want. Maybe only the controls work, or maybe the experiments produce data that is indistinguishable from controls. For the unethical, this doesn't pose a problem since nobody other than you knows what images come from which samples. It's relatively simple to present images of real data as something they're not. To make this concrete, we can look at data from a procedure called a western blot, which uses antibodies to identify specific proteins from a complex mixture that has been separated according to protein size. Typical western blot data looks like the image at right, with the darkness of the bands representing proteins that are present at different levels in different conditions.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/04/2022245/all-science-journals-will-now-do-an-ai-powered-check-for-image-fraud?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T21:21:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-04T20:44:00+00:00", + "title": "Microsoft's Xbox Series S Toaster Goes on Sale", + "link": "https://games.slashdot.org/story/24/01/04/2020226/microsofts-xbox-series-s-toaster-goes-on-sale?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-04T20:44:00+00:00", + "content": "An anonymous reader shares a report: Both of Microsoft's current Xbox consoles now have kitchen appliance counterparts. The Xbox Series S toaster recently debuted, following up the Xbox Series X refrigerator. It's available for purchase from Walmart for $39.99. In place of its ability to connect to a TV and play games, it can toast bread or bagels, imprinting the Xbox logo onto its side with its internal heat coils. The Series S toaster has a slot long enough to fit two slices of bread side by side, which I suppose can be considered multiplayer support if the bread is for two people. As with most toasters, this one has different toast browning levels, a removeable crumb tray, a bread ejection function, and automatic shutoff.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader shares a report: Both of Microsoft's current Xbox consoles now have kitchen appliance counterparts. The Xbox Series S toaster recently debuted, following up the Xbox Series X refrigerator. It's available for purchase from Walmart for $39.99. In place of its ability to connect to a TV and play games, it can toast bread or bagels, imprinting the Xbox logo onto its side with its internal heat coils. The Series S toaster has a slot long enough to fit two slices of bread side by side, which I suppose can be considered multiplayer support if the bread is for two people. As with most toasters, this one has different toast browning levels, a removeable crumb tray, a bread ejection function, and automatic shutoff.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/24/01/04/2020226/microsofts-xbox-series-s-toaster-goes-on-sale?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T20:44:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-04T20:07:00+00:00", + "title": "Law Firm That Handles Data Breaches Was Hit By Data Breach", + "link": "https://it.slashdot.org/story/24/01/04/208204/law-firm-that-handles-data-breaches-was-hit-by-data-breach?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-04T20:07:00+00:00", + "content": "An international law firm that works with companies affected by security incidents has experienced its own cyberattack that exposed the sensitive health information of hundreds of thousands of data breach victims. From a report: San Francisco-based Orrick, Herrington & Sutcliffe said last week that hackers stole the personal information and sensitive health data of more than 637,000 data breach victims from a file share on its network during an intrusion in March 2023. Orrick works with companies that are hit by security incidents, including data breaches, to handle regulatory requirements, such as obtaining victims' information in order to notify state authorities and the individuals affected. In a series of data breach notification letters sent to affected individuals, Orrick said the hackers stole reams of data from its systems that pertain to security incidents at other companies, during which Orrick served as legal counsel.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An international law firm that works with companies affected by security incidents has experienced its own cyberattack that exposed the sensitive health information of hundreds of thousands of data breach victims. From a report: San Francisco-based Orrick, Herrington & Sutcliffe said last week that hackers stole the personal information and sensitive health data of more than 637,000 data breach victims from a file share on its network during an intrusion in March 2023. Orrick works with companies that are hit by security incidents, including data breaches, to handle regulatory requirements, such as obtaining victims' information in order to notify state authorities and the individuals affected. In a series of data breach notification letters sent to affected individuals, Orrick said the hackers stole reams of data from its systems that pertain to security incidents at other companies, during which Orrick served as legal counsel.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/24/01/04/208204/law-firm-that-handles-data-breaches-was-hit-by-data-breach?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T20:07:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-04T19:23:00+00:00", + "title": "Starbucks Accused of Rigging Payments in App For Nearly $900 Million Gain Over 5 Years by Consumer Watchdog Group", + "link": "https://it.slashdot.org/story/24/01/04/198251/starbucks-accused-of-rigging-payments-in-app-for-nearly-900-million-gain-over-5-years-by-consumer-watchdog-group?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-04T19:23:00+00:00", + "content": "A consumer action group is accusing Starbucks of exploiting customers via its gift card and app payments, forcing them to enter a spending cycle where they will never be able to fully spend the remaining balance of prepaid amounts. From a report: The Washington Consumer Protection Coalition, a self-described \"movement of everyday consumers advocating for corporate accountability,\" is calling on the state attorney general to investigate whether the company's policies violate consumer protection laws. \n\n\"Starbucks rigs its payment platform so consumers are encouraged to leave unspent money on their cards and apps,\" said Chris Carter, campaign manager for the group, in a statement. \"A few dollars here and there left on a payment platform may not sound like a lot but it adds up. Over the last five years Starbucks has claimed nearly $900 million in unspent gift card and app money as corporate revenue, boosting corporate profits and inflating executive bonuses.\" \n\n[...] The group, in a 15-page complaint, alleges the platforms for Starbucks' mobile app and digital payment cards are akin to an \"involuntary subscription.\" Customers can only reload money in $5 increments, with a $10 minimum purchase. That, the group says, prevents customers from ever reaching a zero balance, meaning Starbucks pockets more of the customer's money. The Coalition does concede that customers can reload their accounts in stores for a custom amount of $5 or more, making it easier to hit a zero balance.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "A consumer action group is accusing Starbucks of exploiting customers via its gift card and app payments, forcing them to enter a spending cycle where they will never be able to fully spend the remaining balance of prepaid amounts. From a report: The Washington Consumer Protection Coalition, a self-described \"movement of everyday consumers advocating for corporate accountability,\" is calling on the state attorney general to investigate whether the company's policies violate consumer protection laws. \n\n\"Starbucks rigs its payment platform so consumers are encouraged to leave unspent money on their cards and apps,\" said Chris Carter, campaign manager for the group, in a statement. \"A few dollars here and there left on a payment platform may not sound like a lot but it adds up. Over the last five years Starbucks has claimed nearly $900 million in unspent gift card and app money as corporate revenue, boosting corporate profits and inflating executive bonuses.\" \n\n[...] The group, in a 15-page complaint, alleges the platforms for Starbucks' mobile app and digital payment cards are akin to an \"involuntary subscription.\" Customers can only reload money in $5 increments, with a $10 minimum purchase. That, the group says, prevents customers from ever reaching a zero balance, meaning Starbucks pockets more of the customer's money. The Coalition does concede that customers can reload their accounts in stores for a custom amount of $5 or more, making it easier to hit a zero balance.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/24/01/04/198251/starbucks-accused-of-rigging-payments-in-app-for-nearly-900-million-gain-over-5-years-by-consumer-watchdog-group?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-04T19:23:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-05T14:00:00+00:00", + "title": "Mexican Cartel Provided Wi-Fi To Locals - With Threat of Death If They Didn't Use It", + "link": "https://yro.slashdot.org/story/24/01/05/1256226/mexican-cartel-provided-wi-fi-to-locals---with-threat-of-death-if-they-didnt-use-it?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-05T14:00:00+00:00", + "content": "A cartel in the embattled central Mexico state of Michoacan set up its own makeshift internet antennas and told locals they had to pay to use its wifi service or they would be killed, according to prosecutors. New submitter awwshit shares a story: Dubbed \"narco-antennas\" by local media, the cartel's system involved internet antennas set up in various towns built with stolen equipment. The group charged approximately 5,000 people elevated prices between 400 and 500 pesos ($25 and $30) a month, the Michoacan state prosecutor's office told the Associated Press. That meant the group could rake in about $150,000 a month. People were terrorized \"to contract the internet services at excessive costs, under the claim that they would be killed if they did not,\" prosecutors said, though they did not report any such deaths. Local media identified the criminal group as a faction known as Los Viagras. Prosecutors declined to say which cartel was involved because the case was still under investigation, but they confirmed Los Viagras dominates the towns forced to make the wifi payments.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "A cartel in the embattled central Mexico state of Michoacan set up its own makeshift internet antennas and told locals they had to pay to use its wifi service or they would be killed, according to prosecutors. New submitter awwshit shares a story: Dubbed \"narco-antennas\" by local media, the cartel's system involved internet antennas set up in various towns built with stolen equipment. The group charged approximately 5,000 people elevated prices between 400 and 500 pesos ($25 and $30) a month, the Michoacan state prosecutor's office told the Associated Press. That meant the group could rake in about $150,000 a month. People were terrorized \"to contract the internet services at excessive costs, under the claim that they would be killed if they did not,\" prosecutors said, though they did not report any such deaths. Local media identified the criminal group as a faction known as Los Viagras. Prosecutors declined to say which cartel was involved because the case was still under investigation, but they confirmed Los Viagras dominates the towns forced to make the wifi payments.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/05/1256226/mexican-cartel-provided-wi-fi-to-locals---with-threat-of-death-if-they-didnt-use-it?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T14:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-05T16:00:00+00:00", + "title": "Google Contractor Pays Parents $50 To Scan Their Childrens' Faces", + "link": "https://tech.slashdot.org/story/24/01/05/1431236/google-contractor-pays-parents-50-to-scan-their-childrens-faces?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-05T16:00:00+00:00", + "content": "Google is collecting the eyelid shape and skin tone of children via parent submitted videos, according to a project description online reviewed by 404 Media. From the report: Canadian tech conglomerate TELUS, which says it is working on Google's behalf, is offering parents $50 to film their children wearing various props such as hats or sunglasses as part of the project, the description adds. The project shows the methods some companies are using to build machine learning, artificial intelligence, or facial recognition datasets and products. Rather than scraping already existing images or analyzing previously collected material, TELUS, and by extension Google, is asking the public to contribute directly and get paid in return. Google told 404 Media the collection was part of the company's efforts to verify users' age.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google is collecting the eyelid shape and skin tone of children via parent submitted videos, according to a project description online reviewed by 404 Media. From the report: Canadian tech conglomerate TELUS, which says it is working on Google's behalf, is offering parents $50 to film their children wearing various props such as hats or sunglasses as part of the project, the description adds. The project shows the methods some companies are using to build machine learning, artificial intelligence, or facial recognition datasets and products. Rather than scraping already existing images or analyzing previously collected material, TELUS, and by extension Google, is asking the public to contribute directly and get paid in return. Google told 404 Media the collection was part of the company's efforts to verify users' age.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/05/1431236/google-contractor-pays-parents-50-to-scan-their-childrens-faces?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T16:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-05T15:20:00+00:00", + "title": "Netflix Considers Ways To Make Money From Videogames in Possible Pivot", + "link": "https://games.slashdot.org/story/24/01/05/1411245/netflix-considers-ways-to-make-money-from-videogames-in-possible-pivot?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-05T15:20:00+00:00", + "content": "Netflix has said it plans to be in gaming for years to come. Now the company is trying to figure out how to make money from it, a potential shift in strategy for the streamer. From a report: Executives at the streaming giant have had discussions in recent months about how to generate revenue from its games, according to people familiar with the discussions. Netflix games are currently free for all subscribers, part of a strategy to keep users coming back to the streaming service when their favorite shows are between seasons as well as to attract new fans. \n\nSome of the ideas that have been discussed include in-app purchases, charging for more sophisticated games it is developing or giving subscribers to its newer ad-supported tier access to games with ads in them, the people said. Such moves would mark a pivot for Netflix, which has resisted putting ads or in-app purchases in its games. [...] Netflix encourages open debate internally on its strategy, which is a key pillar of its culture, and such discussions don't mean the company will decide to monetize games.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Netflix has said it plans to be in gaming for years to come. Now the company is trying to figure out how to make money from it, a potential shift in strategy for the streamer. From a report: Executives at the streaming giant have had discussions in recent months about how to generate revenue from its games, according to people familiar with the discussions. Netflix games are currently free for all subscribers, part of a strategy to keep users coming back to the streaming service when their favorite shows are between seasons as well as to attract new fans. \n\nSome of the ideas that have been discussed include in-app purchases, charging for more sophisticated games it is developing or giving subscribers to its newer ad-supported tier access to games with ads in them, the people said. Such moves would mark a pivot for Netflix, which has resisted putting ads or in-app purchases in its games. [...] Netflix encourages open debate internally on its strategy, which is a key pillar of its culture, and such discussions don't mean the company will decide to monetize games.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/24/01/05/1411245/netflix-considers-ways-to-make-money-from-videogames-in-possible-pivot?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T15:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-05T14:40:00+00:00", + "title": "Design Startup InVision, Once Valued at $2B, Is Shutting Down", + "link": "https://slashdot.org/story/24/01/05/145241/design-startup-invision-once-valued-at-2b-is-shutting-down?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-05T14:40:00+00:00", + "content": "Design startup InVision, once valued at $2 billion, is shutting down at the end of this year, according to a company blog post Thursday. The business had raised more than $350 million from investors including Goldman Sachs and Spark Capital. From a report: Once a market leader in collaborative design software, InVision's business spiraled after rival firm Figma's product surged in popularity, snatching away its customers, The Information previously reported. InVision's revenue fell by half to $50 million in 2022, pushing it to sell its core business line to Miro, a competitor building digital whiteboards last fall.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Design startup InVision, once valued at $2 billion, is shutting down at the end of this year, according to a company blog post Thursday. The business had raised more than $350 million from investors including Goldman Sachs and Spark Capital. From a report: Once a market leader in collaborative design software, InVision's business spiraled after rival firm Figma's product surged in popularity, snatching away its customers, The Information previously reported. InVision's revenue fell by half to $50 million in 2022, pushing it to sell its core business line to Miro, a competitor building digital whiteboards last fall.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/05/145241/design-startup-invision-once-valued-at-2b-is-shutting-down?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T14:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-05T16:51:00+00:00", + "title": "Top China Diplomat Warns of Decoupling Risk", + "link": "https://news.slashdot.org/story/24/01/05/1652204/top-china-diplomat-warns-of-decoupling-risk?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-05T16:51:00+00:00", + "content": "China's top diplomat warned the US that decoupling would be \"self defeating\" as the country set out to implement a recent agreement made between their leaders. From a report: Foreign Minister Wang Yi, speaking on Friday at an event to mark the 45th anniversary of US-China diplomatic relations, cited a slew of initiatives that reflect improved ties including streamlined visas for US travelers, a counternarcotics working group to battle the flow of the synthetic fentanyl to the US, and the sending of pandas to the US by the end of the year. \"Any decoupling attempt to stem the tide will only be counterproductive and self defeating,\" Wang said. \n\nDavid Meale, deputy chief of mission at the U.S. Embassy in Beijing, joined Friday's event as charge d'affaires with Ambassador Nicholas Burns out of town. Tensions between China and the US started to ease after President Joe Biden and Chinese leader Xi Jinping met in November. The talks resulted in a resumption of high-level military-to-military ties, a promise to collaborate on the fentanyl problem and a commitment to boost interactions between people in the two countries.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "China's top diplomat warned the US that decoupling would be \"self defeating\" as the country set out to implement a recent agreement made between their leaders. From a report: Foreign Minister Wang Yi, speaking on Friday at an event to mark the 45th anniversary of US-China diplomatic relations, cited a slew of initiatives that reflect improved ties including streamlined visas for US travelers, a counternarcotics working group to battle the flow of the synthetic fentanyl to the US, and the sending of pandas to the US by the end of the year. \"Any decoupling attempt to stem the tide will only be counterproductive and self defeating,\" Wang said. \n\nDavid Meale, deputy chief of mission at the U.S. Embassy in Beijing, joined Friday's event as charge d'affaires with Ambassador Nicholas Burns out of town. Tensions between China and the US started to ease after President Joe Biden and Chinese leader Xi Jinping met in November. The talks resulted in a resumption of high-level military-to-military ties, a promise to collaborate on the fentanyl problem and a commitment to boost interactions between people in the two countries.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/05/1652204/top-china-diplomat-warns-of-decoupling-risk?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-05T16:51:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T20:00:00+00:00", + "title": "Discord is Laying Off 17 Percent of Employees", + "link": "https://tech.slashdot.org/story/24/01/11/1922240/discord-is-laying-off-17-percent-of-employees?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T20:00:00+00:00", + "content": "Discord is laying off 17 percent of its staff, a move that CEO Jason Citron said is meant to \"sharpen our focus and improve the way we work together to bring more agility to our organization.\" From a report: The cuts were announced today to employees in an all-hands meeting and internal memo The Verge has obtained. They'll impact 170 people across various departments. \n\nBased on Citron's message to employees and my understanding of the business, Discord isn't in dire financial straits, though it has yet to become profitable and is still trying to revive user growth after a surge during the pandemic. In his memo to employees, which you can read in full below, Citron said Discord grew its headcount too fast over the last few years -- an admission that has become quite common among tech CEOs as of late. \"We grew quickly and expanded our workforce even faster, increasing by 5x since 2020,\" Citron wrote. \"As a result, we took on more projects and became less efficient in how we operated.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Discord is laying off 17 percent of its staff, a move that CEO Jason Citron said is meant to \"sharpen our focus and improve the way we work together to bring more agility to our organization.\" From a report: The cuts were announced today to employees in an all-hands meeting and internal memo The Verge has obtained. They'll impact 170 people across various departments. \n\nBased on Citron's message to employees and my understanding of the business, Discord isn't in dire financial straits, though it has yet to become profitable and is still trying to revive user growth after a surge during the pandemic. In his memo to employees, which you can read in full below, Citron said Discord grew its headcount too fast over the last few years -- an admission that has become quite common among tech CEOs as of late. \"We grew quickly and expanded our workforce even faster, increasing by 5x since 2020,\" Citron wrote. \"As a result, we took on more projects and became less efficient in how we operated.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/1922240/discord-is-laying-off-17-percent-of-employees?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T20:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T19:20:00+00:00", + "title": "Google Formally Endorses Right To Repair, Will Lobby To Pass Repair Laws", + "link": "https://tech.slashdot.org/story/24/01/11/1913214/google-formally-endorses-right-to-repair-will-lobby-to-pass-repair-laws?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T19:20:00+00:00", + "content": "Google formally endorsed the concept of right to repair Thursday and is set to testify in favor of a strong right to repair bill in Oregon later Thursday, a massive step forward for the right to repair movement. 404 Media: \"Google believes that users should have more control over repair -- including access to the same documentation, parts and tools that original equipment manufacturer (OEM) repair channels have -- which is often referred to as 'Right to Repair,'\" Google's Steven Nickel wrote in a white paper published Thursday. \n\nCrucially, Google specifically says that regulators should ban \"parts pairing,\" which is a tactic used by Apple, John Deere, and other major manufacturers to artificially restrict which repair parts can be used with a given device: \"Policies should constrain OEMs from imposing unfair anti-repair practices. For example, parts-pairing, the practice of using software barriers to obstruct consumers and independent repair shops from replacing components, or other restrictive impediments to repair should be discouraged,\" the white paper says.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google formally endorsed the concept of right to repair Thursday and is set to testify in favor of a strong right to repair bill in Oregon later Thursday, a massive step forward for the right to repair movement. 404 Media: \"Google believes that users should have more control over repair -- including access to the same documentation, parts and tools that original equipment manufacturer (OEM) repair channels have -- which is often referred to as 'Right to Repair,'\" Google's Steven Nickel wrote in a white paper published Thursday. \n\nCrucially, Google specifically says that regulators should ban \"parts pairing,\" which is a tactic used by Apple, John Deere, and other major manufacturers to artificially restrict which repair parts can be used with a given device: \"Policies should constrain OEMs from imposing unfair anti-repair practices. For example, parts-pairing, the practice of using software barriers to obstruct consumers and independent repair shops from replacing components, or other restrictive impediments to repair should be discouraged,\" the white paper says.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/1913214/google-formally-endorses-right-to-repair-will-lobby-to-pass-repair-laws?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T19:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T18:40:00+00:00", + "title": "A Geofence Warrant Typo Cast a Location Dragnet Spanning Two Miles Over San Francisco", + "link": "https://tech.slashdot.org/story/24/01/11/1821257/a-geofence-warrant-typo-cast-a-location-dragnet-spanning-two-miles-over-san-francisco?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T18:40:00+00:00", + "content": "Zack Whittaker, reporting for TechCrunch: Civil liberties advocates have long argued that \"geofence\" search warrants are unconstitutional for their ability to ensnare entirely innocent people who were nearby at the time a crime was committed. But errors in the geofence warrant applications that go before a judge can violate the privacy of vastly more people -- in one case almost two miles away. \n\nAttorneys at the ACLU of Northern California found what they called an \"alarming error\" in a geofence warrant application that \"resulted in a warrant stretching nearly two miles across San Francisco.\" The error, likely caused by a typo, allowed the requesting law enforcement agency to capture information on anyone who entered the stretch of San Francisco erroneously marked on the search warrant. \n\n\"Many private homes were also captured in the massive sweep,\" wrote Jake Snow, ACLU staff attorney, in a blog post about the findings. It's not known which law enforcement agency requested the nearly two-mile-long geofence warrant, or for how long the warrant was in effect. The attorneys questioned how many other geofence warrant application mistakes had slipped through and resulted in the return of vastly more data in error.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Zack Whittaker, reporting for TechCrunch: Civil liberties advocates have long argued that \"geofence\" search warrants are unconstitutional for their ability to ensnare entirely innocent people who were nearby at the time a crime was committed. But errors in the geofence warrant applications that go before a judge can violate the privacy of vastly more people -- in one case almost two miles away. \n\nAttorneys at the ACLU of Northern California found what they called an \"alarming error\" in a geofence warrant application that \"resulted in a warrant stretching nearly two miles across San Francisco.\" The error, likely caused by a typo, allowed the requesting law enforcement agency to capture information on anyone who entered the stretch of San Francisco erroneously marked on the search warrant. \n\n\"Many private homes were also captured in the massive sweep,\" wrote Jake Snow, ACLU staff attorney, in a blog post about the findings. It's not known which law enforcement agency requested the nearly two-mile-long geofence warrant, or for how long the warrant was in effect. The attorneys questioned how many other geofence warrant application mistakes had slipped through and resulted in the return of vastly more data in error.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/1821257/a-geofence-warrant-typo-cast-a-location-dragnet-spanning-two-miles-over-san-francisco?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T18:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T18:00:00+00:00", + "title": "State-backed Hackers Are Exploiting New Ivanti VPN Zero-Days - But No Patches Yet", + "link": "https://tech.slashdot.org/story/24/01/11/1735207/state-backed-hackers-are-exploiting-new-ivanti-vpn-zero-days---but-no-patches-yet?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T18:00:00+00:00", + "content": "U.S. software giant Ivanti has confirmed that hackers are exploiting two critical-rated vulnerabilities affecting its widely-used corporate VPN appliance, but said that patches won't be available until the end of the month. From a report: Ivanti said the two vulnerabilities -- tracked as CVE-2023-46805 and CVE-2024-21887 -- were found in its Ivanti Connect Secure software. Formerly known as Pulse Connect Secure, this is a remote access VPN solution that enables remote and mobile users to access corporate resources over the internet. Ivanti said it is aware of \"less than 10 customers\" impacted so far by the \"zero day\" vulnerabilities, described as such given Ivanti had zero time to fix the flaws before they were maliciously exploited.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "U.S. software giant Ivanti has confirmed that hackers are exploiting two critical-rated vulnerabilities affecting its widely-used corporate VPN appliance, but said that patches won't be available until the end of the month. From a report: Ivanti said the two vulnerabilities -- tracked as CVE-2023-46805 and CVE-2024-21887 -- were found in its Ivanti Connect Secure software. Formerly known as Pulse Connect Secure, this is a remote access VPN solution that enables remote and mobile users to access corporate resources over the internet. Ivanti said it is aware of \"less than 10 customers\" impacted so far by the \"zero day\" vulnerabilities, described as such given Ivanti had zero time to fix the flaws before they were maliciously exploited.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/1735207/state-backed-hackers-are-exploiting-new-ivanti-vpn-zero-days---but-no-patches-yet?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T18:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T17:20:00+00:00", + "title": "Chicago Public Schools Lost Over $20 Million In Electronics In One Year, Report Says", + "link": "https://news.slashdot.org/story/24/01/11/1646243/chicago-public-schools-lost-over-20-million-in-electronics-in-one-year-report-says?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T17:20:00+00:00", + "content": "An anonymous reader writes: Millions of dollars have gone down the drain right when the Chicago Public Schools face a looming budget deficit -- as a brand-new CPS Inspector General report revealed the district lost thousands of computers and devices in a school year. In all, more than $20 million were lost -- as about students failed to return 77,505 laptops and other electronic devices within a year. This is even though the district spends millions to track such devices. The underlying concern is that taxpayer dollars will be used to replace them.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader writes: Millions of dollars have gone down the drain right when the Chicago Public Schools face a looming budget deficit -- as a brand-new CPS Inspector General report revealed the district lost thousands of computers and devices in a school year. In all, more than $20 million were lost -- as about students failed to return 77,505 laptops and other electronic devices within a year. This is even though the district spends millions to track such devices. The underlying concern is that taxpayer dollars will be used to replace them.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/11/1646243/chicago-public-schools-lost-over-20-million-in-electronics-in-one-year-report-says?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T17:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T16:40:00+00:00", + "title": "Microsoft Dethrones Apple as the Largest US Company", + "link": "https://apple.slashdot.org/story/24/01/11/1620249/microsoft-dethrones-apple-as-the-largest-us-company?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T16:40:00+00:00", + "content": "The stock market has a new, but familiar, monarch. Microsoft's AI-powered stock rally has made the software giant the largest U.S. company by market value, surpassing Apple for the first time since November 2021. WSJ: Shares edged higher Thursday morning, bringing Microsoft's market value to nearly $2.87 trillion. Apple, meanwhile, fell 1%, pulling its market capitalization just below that threshold. Either Apple or Microsoft has held the title since Feb. 4, 2019, according to Dow Jones Market Data. Microsoft's stock has been on the rise for the past year thanks to the continued growth of its cloud computing division, even as major competitors like Amazon and Google have experienced a gradual slowdown in sales growth.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The stock market has a new, but familiar, monarch. Microsoft's AI-powered stock rally has made the software giant the largest U.S. company by market value, surpassing Apple for the first time since November 2021. WSJ: Shares edged higher Thursday morning, bringing Microsoft's market value to nearly $2.87 trillion. Apple, meanwhile, fell 1%, pulling its market capitalization just below that threshold. Either Apple or Microsoft has held the title since Feb. 4, 2019, according to Dow Jones Market Data. Microsoft's stock has been on the rise for the past year thanks to the continued growth of its cloud computing division, even as major competitors like Amazon and Google have experienced a gradual slowdown in sales growth.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://apple.slashdot.org/story/24/01/11/1620249/microsoft-dethrones-apple-as-the-largest-us-company?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T16:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T16:00:00+00:00", + "title": "FCC Commissioner Carr Says 'Huge Miss' If US Doesn't Ban or Divest TikTok in 2024", + "link": "https://news.slashdot.org/story/24/01/11/1550241/fcc-commissioner-carr-says-huge-miss-if-us-doesnt-ban-or-divest-tiktok-in-2024?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T16:00:00+00:00", + "content": "Brendan Carr, the senior Republican on the Federal Communications Commission, in a wide-ranging interview with Indian newspaper Economic Times praised the South Asian market for blocking Chinese apps in 2020 and said he hopes the U.S. will follow suit. He said: I hope there will be a movement towards a nationwide ban of the application soon, much like India led the way so many years ago. It is taking time, and I wish it was done as swiftly and with the alacrity that India banned not just TikTok but a number of other Chinese apps that had questionable data sharing and privacy policies. If TikTok is neither banned nor ByteDance is forced to divest this year, I would consider it a huge miss. Because only when action is taken would it be possible for us to go after the smaller players too.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Brendan Carr, the senior Republican on the Federal Communications Commission, in a wide-ranging interview with Indian newspaper Economic Times praised the South Asian market for blocking Chinese apps in 2020 and said he hopes the U.S. will follow suit. He said: I hope there will be a movement towards a nationwide ban of the application soon, much like India led the way so many years ago. It is taking time, and I wish it was done as swiftly and with the alacrity that India banned not just TikTok but a number of other Chinese apps that had questionable data sharing and privacy policies. If TikTok is neither banned nor ByteDance is forced to divest this year, I would consider it a huge miss. Because only when action is taken would it be possible for us to go after the smaller players too.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/11/1550241/fcc-commissioner-carr-says-huge-miss-if-us-doesnt-ban-or-divest-tiktok-in-2024?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T16:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T15:21:00+00:00", + "title": "Google Ends Cloud Switching Fees, Pressuring Amazon and Microsoft", + "link": "https://tech.slashdot.org/story/24/01/11/1514237/google-ends-cloud-switching-fees-pressuring-amazon-and-microsoft?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T15:21:00+00:00", + "content": "An anonymous reader shares a report: The cost of switching between cloud-computing providers has long drawn complaints, with the services derided as \"roach motels\" that let businesses check in but not out. Now Google is taking steps to change that. Effective immediately, the company is eliminating fees levied on customers who want to leave its cloud for a rival service -- a policy shift that may pressure competitors Amazon and Microsoft to do the same. \n\nThe move follows intensifying scrutiny of cloud services by regulators and lawmakers around the world. UK antitrust authorities launched a probe that is looking at such penalties, and the fees emerged as a key issue when the US Federal Trade Commission asked for public comments on a variety of cloud concerns. Google Vice President Amit Zavery, who helps oversee the cloud business, said switching fees only represent about 2% of the total costs of migrating to a new provider -- and don't deter many clients from moving their data.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader shares a report: The cost of switching between cloud-computing providers has long drawn complaints, with the services derided as \"roach motels\" that let businesses check in but not out. Now Google is taking steps to change that. Effective immediately, the company is eliminating fees levied on customers who want to leave its cloud for a rival service -- a policy shift that may pressure competitors Amazon and Microsoft to do the same. \n\nThe move follows intensifying scrutiny of cloud services by regulators and lawmakers around the world. UK antitrust authorities launched a probe that is looking at such penalties, and the fees emerged as a key issue when the US Federal Trade Commission asked for public comments on a variety of cloud concerns. Google Vice President Amit Zavery, who helps oversee the cloud business, said switching fees only represent about 2% of the total costs of migrating to a new provider -- and don't deter many clients from moving their data.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/1514237/google-ends-cloud-switching-fees-pressuring-amazon-and-microsoft?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T15:21:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T14:42:00+00:00", + "title": "Google Removes 'Underutilized' Assistant Features To Focus on 'Quality and Reliability'", + "link": "https://tech.slashdot.org/story/24/01/11/1442222/google-removes-underutilized-assistant-features-to-focus-on-quality-and-reliability?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T14:42:00+00:00", + "content": "Google has announced that it will eliminate at least 17 features from its Assistant product, following news that it had laid off \"hundreds\" of employees from the division. The company is cutting \"underutilized features\" to \"focus on quality and reliability, it wrote in a blog post, even though a good number of people may still rely on those functions. From a report: The 17 functions being removed include: accessing or managing your cookbook; using your voice to send an email, video or audio message; rescheduling events in Google Calendar with your voice; and using App Launcher in Google Assistant driving mode on Google Maps to read and send messages, make calls, and control media. It also describes what Assistant can still do related to those functions, or alternate ways of doing them. A list is here, though Google said they're just \"some\" of the affected features.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google has announced that it will eliminate at least 17 features from its Assistant product, following news that it had laid off \"hundreds\" of employees from the division. The company is cutting \"underutilized features\" to \"focus on quality and reliability, it wrote in a blog post, even though a good number of people may still rely on those functions. From a report: The 17 functions being removed include: accessing or managing your cookbook; using your voice to send an email, video or audio message; rescheduling events in Google Calendar with your voice; and using App Launcher in Google Assistant driving mode on Google Maps to read and send messages, make calls, and control media. It also describes what Assistant can still do related to those functions, or alternate ways of doing them. A list is here, though Google said they're just \"some\" of the affected features.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/1442222/google-removes-underutilized-assistant-features-to-focus-on-quality-and-reliability?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T14:42:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T14:03:00+00:00", + "title": "Google Cuts Hundreds of Jobs in Engineering and Other Divisions", + "link": "https://tech.slashdot.org/story/24/01/11/062240/google-cuts-hundreds-of-jobs-in-engineering-and-other-divisions?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T14:03:00+00:00", + "content": "Google laid off hundreds of workers in several divisions Wednesday night, seeking to lower expenses as it focuses on artificial intelligence and joining a wave of other companies cutting tech jobs this year. From a report: The Silicon Valley company laid off employees in its core engineering division, as well as those working on the Google Assistant, a voice-operated virtual assistant, and in the hardware division that makes the Pixel phone, Fitbit watches and Nest thermostat, three people with knowledge of the cuts said. Several hundred employees from the company's core engineering organization lost corporate access and received notices that their roles were eliminated, two of the people said. \n\n\"We've had to make some difficult decisions about ongoing employment of some Google employees and we regret to inform you that your position is being eliminated,\" the company told some workers in the division, according to text reviewed by The New York Times. Google confirmed the Assistant cuts, earlier reported by Semafor, and the hardware layoffs. \"We're responsibly investing in our company's biggest priorities and the significant opportunities ahead,\" a Google spokesman said in a statement. After cuts throughout the second half of 2023, \"some teams are continuing to make these kinds of organizational changes, which include some role eliminations globally.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google laid off hundreds of workers in several divisions Wednesday night, seeking to lower expenses as it focuses on artificial intelligence and joining a wave of other companies cutting tech jobs this year. From a report: The Silicon Valley company laid off employees in its core engineering division, as well as those working on the Google Assistant, a voice-operated virtual assistant, and in the hardware division that makes the Pixel phone, Fitbit watches and Nest thermostat, three people with knowledge of the cuts said. Several hundred employees from the company's core engineering organization lost corporate access and received notices that their roles were eliminated, two of the people said. \n\n\"We've had to make some difficult decisions about ongoing employment of some Google employees and we regret to inform you that your position is being eliminated,\" the company told some workers in the division, according to text reviewed by The New York Times. Google confirmed the Assistant cuts, earlier reported by Semafor, and the hardware layoffs. \"We're responsibly investing in our company's biggest priorities and the significant opportunities ahead,\" a Google spokesman said in a statement. After cuts throughout the second half of 2023, \"some teams are continuing to make these kinds of organizational changes, which include some role eliminations globally.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/062240/google-cuts-hundreds-of-jobs-in-engineering-and-other-divisions?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T14:03:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-11T13:00:00+00:00", + "title": "Broadcom Ditches VMware Cloud Service Providers", + "link": "https://tech.slashdot.org/story/24/01/11/0055209/broadcom-ditches-vmware-cloud-service-providers?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-11T13:00:00+00:00", + "content": "An anonymous reader quotes a report from The Register: Broadcom is tossing the majority of VMware's Cloud Services Providers as part of its shakeup of the virtualization titan's partner programs, say sources, leaving customers unclear who their IT supplier will be. The $61 billion purchase of VMware by Broadcom in November was swiftly followed by news of how it planned to reorganize the business into several Broadcom divisions. A month later we revealed that Broadcom intended to discontinue VMware's channel program, and that some solution providers/ resellers would be transitioned to its own scheme, but on an invitation-only basis, from February. However, while Broadcom informed one part of VMware's channel of this change, a second notice was also sent to Cloud Services Providers (CSPs), informing them that their program is going to be terminated at the end of April. This program allows service providers such as smaller cloud operators to sell a VMware-based cloud service.\n \nIn the letter, seen by The Register, Broadcom tells its cloud provider partners: \"Effective April 30, 2024, the ability to transact as a VMware Cloud Services Provider, under the VMware Partner Connect Program, will come to an end. However, we want to emphasize that you may have the opportunity to join the Broadcom Expert Advantage Partner Program. This invite-only program has simpler requirements and offers expanded benefits, and we will begin inviting partners to join in early 2024.\" One service provider told us their company had been left in the dark since that letter was received, and Broadcom has given them no indication of whether they will be invited to join its partner program or not, or what their customers are supposed to do if the company loses the right to operate a VMware cloud service. \"I don't know how many smaller providers are affected by this but it must be a very large number,\" the source told us. \"The VCSP program was the only way for MSPs and service providers to offer a multi-tenant VMware-based cloud service.\"\n \nChatter among some in the industry is that Broadcom is only interested in keeping the largest and most profitable customers, and the company simply doesn't care about the smaller users and the providers that service them. Unconfirmed fears that are only ten percent of Vmware's biggest CSPs will be invited to the new master program. \"This all sounds very much like Broadcom taking an aggressive approach to its route to market and focusing on those partners that can deliver growth and significant revenue,\" said Omdia chief analyst Roy Illsley. \"I suspect the intention is to ensure that VMware consists of only profitable products and they are sold in a more cohesive way with the rest of Broadcom. So I expect to see some news on this continuing to come out for most of 2024 as the company puts this plan into action. I would not rule out disposals of some assets in a drive to streamline the portfolio to those that fit with Broadcom's strategy.\" \"How can they just cancel a major program affecting hundreds, perhaps thousands of customers, with zero notice, and zero details?\" said one service provider. \"They sent the notices out the Friday before the holidays, with no follow-up, which makes the situation even more egregious. What are we supposed to tell our customers? It's mind-boggling.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from The Register: Broadcom is tossing the majority of VMware's Cloud Services Providers as part of its shakeup of the virtualization titan's partner programs, say sources, leaving customers unclear who their IT supplier will be. The $61 billion purchase of VMware by Broadcom in November was swiftly followed by news of how it planned to reorganize the business into several Broadcom divisions. A month later we revealed that Broadcom intended to discontinue VMware's channel program, and that some solution providers/ resellers would be transitioned to its own scheme, but on an invitation-only basis, from February. However, while Broadcom informed one part of VMware's channel of this change, a second notice was also sent to Cloud Services Providers (CSPs), informing them that their program is going to be terminated at the end of April. This program allows service providers such as smaller cloud operators to sell a VMware-based cloud service.\n \nIn the letter, seen by The Register, Broadcom tells its cloud provider partners: \"Effective April 30, 2024, the ability to transact as a VMware Cloud Services Provider, under the VMware Partner Connect Program, will come to an end. However, we want to emphasize that you may have the opportunity to join the Broadcom Expert Advantage Partner Program. This invite-only program has simpler requirements and offers expanded benefits, and we will begin inviting partners to join in early 2024.\" One service provider told us their company had been left in the dark since that letter was received, and Broadcom has given them no indication of whether they will be invited to join its partner program or not, or what their customers are supposed to do if the company loses the right to operate a VMware cloud service. \"I don't know how many smaller providers are affected by this but it must be a very large number,\" the source told us. \"The VCSP program was the only way for MSPs and service providers to offer a multi-tenant VMware-based cloud service.\"\n \nChatter among some in the industry is that Broadcom is only interested in keeping the largest and most profitable customers, and the company simply doesn't care about the smaller users and the providers that service them. Unconfirmed fears that are only ten percent of Vmware's biggest CSPs will be invited to the new master program. \"This all sounds very much like Broadcom taking an aggressive approach to its route to market and focusing on those partners that can deliver growth and significant revenue,\" said Omdia chief analyst Roy Illsley. \"I suspect the intention is to ensure that VMware consists of only profitable products and they are sold in a more cohesive way with the rest of Broadcom. So I expect to see some news on this continuing to come out for most of 2024 as the company puts this plan into action. I would not rule out disposals of some assets in a drive to streamline the portfolio to those that fit with Broadcom's strategy.\" \"How can they just cancel a major program affecting hundreds, perhaps thousands of customers, with zero notice, and zero details?\" said one service provider. \"They sent the notices out the Friday before the holidays, with no follow-up, which makes the situation even more egregious. What are we supposed to tell our customers? It's mind-boggling.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/0055209/broadcom-ditches-vmware-cloud-service-providers?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T13:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-11T10:00:00+00:00", + "title": "'Artificial Creativity' Music Software For Commodore Amiga Unearthed", + "link": "https://entertainment.slashdot.org/story/24/01/11/0048203/artificial-creativity-music-software-for-commodore-amiga-unearthed?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-11T10:00:00+00:00", + "content": "Kirkman14 writes: Josh Renaud of breakintochat.com has recovered two early examples of \"artificial creativity\" software for the Commodore Amiga that generate new music by recombining patterns extracted from existing music. Developed by cartoonist Ya'akov Kirschen and his Israeli software firm LKP Ltd. in 1986-87, \"Computer Composer\" demo and \"Magic Harp\" baroque were early attempts at AI-like autonomous music generation.\n \nKirschen's technology was used to help score a BBC TV documentary in 1988, and was covered by the New York Times and other major newspapers. None of the Amiga software was ever sold, though the technology was ported to PC and published under the name \"The Music Creator\" in 1989.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Kirkman14 writes: Josh Renaud of breakintochat.com has recovered two early examples of \"artificial creativity\" software for the Commodore Amiga that generate new music by recombining patterns extracted from existing music. Developed by cartoonist Ya'akov Kirschen and his Israeli software firm LKP Ltd. in 1986-87, \"Computer Composer\" demo and \"Magic Harp\" baroque were early attempts at AI-like autonomous music generation.\n \nKirschen's technology was used to help score a BBC TV documentary in 1988, and was covered by the New York Times and other major newspapers. None of the Amiga software was ever sold, though the technology was ported to PC and published under the name \"The Music Creator\" in 1989.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://entertainment.slashdot.org/story/24/01/11/0048203/artificial-creativity-music-software-for-commodore-amiga-unearthed?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T10:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T09:31:00+00:00", + "title": "Is India Done With Crypto?", + "link": "https://slashdot.org/story/24/01/11/0930256/is-india-done-with-crypto?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T09:31:00+00:00", + "content": "An anonymous reader shares a column: Apple delisting a dozen global crypto apps -- relied by big traders in India, in part due to its tax evasive properties -- from its Indian App Store seems the final nail in the coffin, capping a brutal two years. The pending removal across Google Play, internet providers and beyond caps a journey mired with shutdowns, pivots and relocations abroad for Indian crypto startups. The web3 dreams of local entrepreneurs now appear dashed against the rocky shores of regulatory resistance.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader shares a column: Apple delisting a dozen global crypto apps -- relied by big traders in India, in part due to its tax evasive properties -- from its Indian App Store seems the final nail in the coffin, capping a brutal two years. The pending removal across Google Play, internet providers and beyond caps a journey mired with shutdowns, pivots and relocations abroad for Indian crypto startups. The web3 dreams of local entrepreneurs now appear dashed against the rocky shores of regulatory resistance.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/11/0930256/is-india-done-with-crypto?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T09:31:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-11T07:00:00+00:00", + "title": "NASA Selects Bold Proposal To 'Swarm' Proxima Centauri With Tiny Probes", + "link": "https://science.slashdot.org/story/24/01/11/0042216/nasa-selects-bold-proposal-to-swarm-proxima-centauri-with-tiny-probes?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-11T07:00:00+00:00", + "content": "In order to reach places like Alpha Centauri this century, we'll need to utilize gram-scale spacecraft that rely on directed-energy propulsion. To that end, NASA has selected the Swarming Proxima Centauri project for Phase I development as part of this year's NASA Innovative Advanced Concepts (NIAC) program. According to Universe Today, Swarming Proxima Centauri is \"a collaborative effort between Space Initiatives Inc. and the Initiative for Interstellar Studies (i4is) led by Space Initiative's chief scientist Marshall Eubanks.\" From the report: According to Eubanks, traveling through interstellar space is a question of distance, energy, and speed. At a distance of 4.25 light-years (40 trillion km; 25 trillion mi) from the Solar System, even Proxima Centauri is unfathomably far away. To put it in perspective, the record for the farthest distance ever traveled by a spacecraft goes to the Voyager 1 space probe, which is currently more than 24 billion km (15 billion mi) from Earth. Using conventional methods, the probe accomplished a maximum speed of 61,500 km/h (38,215 mph) and has been traveling for more than 46 years straight.\n \nIn short, traveling at anything less than relativistic speed (a fraction of the speed of light) will make interstellar transits incredibly long and entirely impractical. Given the energy requirements this calls for, anything other than small spacecraft with a maximum mass of a few grams is feasible. [...] In contrast, concepts like Breakthrough Starshot and the Proxima Swarm consist of \"inverting the rocket\" -- i.e., instead of throwing stuff out, stuff is thrown at the spacecraft. Instead of heavy propellant, which constitutes the majority of conventional rockets, the energy source for a lightsail is photons (which have no mass and move at the speed of light). But as Eubanks indicated, this does not overcome the issue of energy, making it even more important that the spacecraft be as small as possible. \"Bouncing photons off of a laser sail thus solves the speed-of-stuff problem,\" he said. \"But the trouble is, there is not much momentum in a photon, so we need a lot of them. And given the power we are likely to have available, even a couple of decades from now, the thrust will be weak, so the mass of the probes needs to be very small -- grams, not tons.\"\n \nTheir proposal calls for a 100-gigawatt (GW) laser beamer boosting thousands of gram-scale space probes with laser sails to relativistic speed (~10-20% of light). They also proposed a series of terrestrial light buckets measuring a square kilometer (0.386 mi2) in diameter to catch the light signals from the probes once they are well on their way to reaching Proxima Centauri (and communications become more difficult). By their estimates, this mission concept could be ready for development around midcentury and could reach Proxima Centauri and its Earth-like exoplanet (Proxima b) by the third quarter of this century (2075 or after). [...] Eubanks and his colleagues hope that the development of a coherent swarm of robotic probes will have applications closer to home. Swarm robotics is a hot field of research today and is being investigated as a possible means of exploring Europa's interior ocean, digging underground cities on Mars, assembling large structures in space, and providing extreme weather tracking from Earth's orbit. Beyond space exploration and Earth observation, swarm robotics also has applications in medicine, additive manufacturing, environmental studies, global positioning and navigation, search and rescue, and more.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "In order to reach places like Alpha Centauri this century, we'll need to utilize gram-scale spacecraft that rely on directed-energy propulsion. To that end, NASA has selected the Swarming Proxima Centauri project for Phase I development as part of this year's NASA Innovative Advanced Concepts (NIAC) program. According to Universe Today, Swarming Proxima Centauri is \"a collaborative effort between Space Initiatives Inc. and the Initiative for Interstellar Studies (i4is) led by Space Initiative's chief scientist Marshall Eubanks.\" From the report: According to Eubanks, traveling through interstellar space is a question of distance, energy, and speed. At a distance of 4.25 light-years (40 trillion km; 25 trillion mi) from the Solar System, even Proxima Centauri is unfathomably far away. To put it in perspective, the record for the farthest distance ever traveled by a spacecraft goes to the Voyager 1 space probe, which is currently more than 24 billion km (15 billion mi) from Earth. Using conventional methods, the probe accomplished a maximum speed of 61,500 km/h (38,215 mph) and has been traveling for more than 46 years straight.\n \nIn short, traveling at anything less than relativistic speed (a fraction of the speed of light) will make interstellar transits incredibly long and entirely impractical. Given the energy requirements this calls for, anything other than small spacecraft with a maximum mass of a few grams is feasible. [...] In contrast, concepts like Breakthrough Starshot and the Proxima Swarm consist of \"inverting the rocket\" -- i.e., instead of throwing stuff out, stuff is thrown at the spacecraft. Instead of heavy propellant, which constitutes the majority of conventional rockets, the energy source for a lightsail is photons (which have no mass and move at the speed of light). But as Eubanks indicated, this does not overcome the issue of energy, making it even more important that the spacecraft be as small as possible. \"Bouncing photons off of a laser sail thus solves the speed-of-stuff problem,\" he said. \"But the trouble is, there is not much momentum in a photon, so we need a lot of them. And given the power we are likely to have available, even a couple of decades from now, the thrust will be weak, so the mass of the probes needs to be very small -- grams, not tons.\"\n \nTheir proposal calls for a 100-gigawatt (GW) laser beamer boosting thousands of gram-scale space probes with laser sails to relativistic speed (~10-20% of light). They also proposed a series of terrestrial light buckets measuring a square kilometer (0.386 mi2) in diameter to catch the light signals from the probes once they are well on their way to reaching Proxima Centauri (and communications become more difficult). By their estimates, this mission concept could be ready for development around midcentury and could reach Proxima Centauri and its Earth-like exoplanet (Proxima b) by the third quarter of this century (2075 or after). [...] Eubanks and his colleagues hope that the development of a coherent swarm of robotic probes will have applications closer to home. Swarm robotics is a hot field of research today and is being investigated as a possible means of exploring Europa's interior ocean, digging underground cities on Mars, assembling large structures in space, and providing extreme weather tracking from Earth's orbit. Beyond space exploration and Earth observation, swarm robotics also has applications in medicine, additive manufacturing, environmental studies, global positioning and navigation, search and rescue, and more.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/11/0042216/nasa-selects-bold-proposal-to-swarm-proxima-centauri-with-tiny-probes?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-11T03:30:00+00:00", + "title": "New Device Allows Users To Scroll With Their Tongue", + "link": "https://tech.slashdot.org/story/24/01/10/2331234/new-device-allows-users-to-scroll-with-their-tongue?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-11T03:30:00+00:00", + "content": "An anonymous reader quotes a report from NBC News: Touchscreens are going hands-free with a new device that allows users to scroll through smartphones using only their tongues. MouthPad^, a retainer-like trackpad chip that sits on the roof of the mouth, made its debut at the Consumer Electronics Show this week. It can sense tongue movements, allowing users to scroll, type, make calls and even play chess with a swipe or a click of their tongue. \"It is a mouse for your mouth,\" Corbin Halliwill, a software engineer at Augmental, the company that created the device, said.\n \nAugmental created MouthPad^ to be a helpful tool to those living with disabilities, especially those with a hand impairment or paralysis. It connects to any tablet, phone or computer through Bluetooth. [...] The Augmental team has been developing its working prototype for about two years, mostly fine-tuning controls and applying filters so the device can work even if it picks up saliva or water. The product is expected to hit the market later this year, and early access is available on their website now. [...] The MouthPad^ is clear around the teeth, and the center is a golden touchpad that is the contact point for the tongue. Inside there is also a force sensor that picks up left and right clicks or could be mapped to other hotkey options. On the side, a small bump that holds the Bluetooth antenna and wireless charging battery sticks out and lays against the cheek.\n \nAugmental doesn't recommend leaving it in for meals, but it is safe to drink with it in -- Halliwill said he wears it in the office while drinking water and his morning coffee. The company hopes to build the technology out in the near future, bringing new possibilities for users in the coming months. Some additions may include voice and wheelchair control. The battery now lasts about five hours, but Augmental hopes to extend it to eight in their next version.You can watch the trailer for MouthPad^ here.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from NBC News: Touchscreens are going hands-free with a new device that allows users to scroll through smartphones using only their tongues. MouthPad^, a retainer-like trackpad chip that sits on the roof of the mouth, made its debut at the Consumer Electronics Show this week. It can sense tongue movements, allowing users to scroll, type, make calls and even play chess with a swipe or a click of their tongue. \"It is a mouse for your mouth,\" Corbin Halliwill, a software engineer at Augmental, the company that created the device, said.\n \nAugmental created MouthPad^ to be a helpful tool to those living with disabilities, especially those with a hand impairment or paralysis. It connects to any tablet, phone or computer through Bluetooth. [...] The Augmental team has been developing its working prototype for about two years, mostly fine-tuning controls and applying filters so the device can work even if it picks up saliva or water. The product is expected to hit the market later this year, and early access is available on their website now. [...] The MouthPad^ is clear around the teeth, and the center is a golden touchpad that is the contact point for the tongue. Inside there is also a force sensor that picks up left and right clicks or could be mapped to other hotkey options. On the side, a small bump that holds the Bluetooth antenna and wireless charging battery sticks out and lays against the cheek.\n \nAugmental doesn't recommend leaving it in for meals, but it is safe to drink with it in -- Halliwill said he wears it in the office while drinking water and his morning coffee. The company hopes to build the technology out in the near future, bringing new possibilities for users in the coming months. Some additions may include voice and wheelchair control. The battery now lasts about five hours, but Augmental hopes to extend it to eight in their next version.You can watch the trailer for MouthPad^ here.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/10/2331234/new-device-allows-users-to-scroll-with-their-tongue?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T03:30:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T20:42:00+00:00", + "title": "Hertz is Selling 20,000 Electric Vehicles To Buy Gasoline Cars Instead", + "link": "https://tech.slashdot.org/story/24/01/11/1958253/hertz-is-selling-20000-electric-vehicles-to-buy-gasoline-cars-instead?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T20:42:00+00:00", + "content": "quonset writes: Hertz rental has announced it's selling off one third of its 20,000 electric vehicle fleet and replacing them with gas powered vehicles. The reason? It's costing them too much to repair damaged EVs and their depreciation is hurting the bottom line. \n\n\"[C]ollision and damage repairs on an EV can often run about twice that associated with a comparable combustion engine vehicle,\" Hertz CEO Stephen Scherr said in a recent analyst call. And EV price declines in the new car market have pushed down the resale value of Hertz's used EV rental cars.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "quonset writes: Hertz rental has announced it's selling off one third of its 20,000 electric vehicle fleet and replacing them with gas powered vehicles. The reason? It's costing them too much to repair damaged EVs and their depreciation is hurting the bottom line. \n\n\"[C]ollision and damage repairs on an EV can often run about twice that associated with a comparable combustion engine vehicle,\" Hertz CEO Stephen Scherr said in a recent analyst call. And EV price declines in the new car market have pushed down the resale value of Hertz's used EV rental cars.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/1958253/hertz-is-selling-20000-electric-vehicles-to-buy-gasoline-cars-instead?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T20:42:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-11T21:20:00+00:00", + "title": "Water Pump Used To Get $1 Billion Stuxnet Malware Into Iranian Nuclear Facility", + "link": "https://it.slashdot.org/story/24/01/11/201205/water-pump-used-to-get-1-billion-stuxnet-malware-into-iranian-nuclear-facility?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-11T21:20:00+00:00", + "content": "An anonymous reader quotes a report from SecurityWeek.com: A Dutch engineer recruited by the country's intelligence services used a water pump to deploy the now-infamous Stuxnet malware in an Iranian nuclear facility, according to a two-year investigation conducted by Dutch newspaper De Volkskrant. Stuxnet, whose existence came to light in 2010, is widely believed to be the work of the United States and Israel, its goal being to sabotage Iran's nuclear program by compromising industrial control systems (ICS) associated with nuclear centrifuges. The malware, which had worm capabilities, is said to have infected hundreds of thousands of devices and caused physical damage to hundreds of machines.\n \nDe Volkskrant's investigation, which involved interviews with dozens of people, found that the AIVD, the general intelligence and security service of the Netherlands, the Dutch equivalent of the CIA, recruited Erik van Sabben, a then 36-year-old Dutch national working at a heavy transport company in Dubai. Van Sabben was allegedly recruited in 2005 -- a couple of years before the Stuxnet malware was triggered -- after American and Israeli intelligence agencies asked their Dutch counterpart for help. However, the Dutch agency reportedly did not inform its country's government and it was not aware of the full extent of the operation. Van Sabben was described as perfect for the job as he had a technical background, he was doing business in Iran and was married to an Iranian woman.\n \nIt's believed that the Stuxnet malware was planted on a water pump that the Dutch national installed in the nuclear complex in Natanz, which he had infiltrated. It's unclear if Van Sabben knew exactly what he was doing, but his family said he appeared to have panicked at around the time of the Stuxnet attack. [...] Michael Hayden, who at the time was the chief of the CIA, did agree to talk to De Volkskrant, but could not confirm whether Stuxnet was indeed delivered via water pumps due to it still being classified information. One interesting piece of information that has come to light in De Volkskrant's investigation is that Hayden reportedly told one of the newspaper's sources that it cost between $1 and $2 billion to develop Stuxnet.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from SecurityWeek.com: A Dutch engineer recruited by the country's intelligence services used a water pump to deploy the now-infamous Stuxnet malware in an Iranian nuclear facility, according to a two-year investigation conducted by Dutch newspaper De Volkskrant. Stuxnet, whose existence came to light in 2010, is widely believed to be the work of the United States and Israel, its goal being to sabotage Iran's nuclear program by compromising industrial control systems (ICS) associated with nuclear centrifuges. The malware, which had worm capabilities, is said to have infected hundreds of thousands of devices and caused physical damage to hundreds of machines.\n \nDe Volkskrant's investigation, which involved interviews with dozens of people, found that the AIVD, the general intelligence and security service of the Netherlands, the Dutch equivalent of the CIA, recruited Erik van Sabben, a then 36-year-old Dutch national working at a heavy transport company in Dubai. Van Sabben was allegedly recruited in 2005 -- a couple of years before the Stuxnet malware was triggered -- after American and Israeli intelligence agencies asked their Dutch counterpart for help. However, the Dutch agency reportedly did not inform its country's government and it was not aware of the full extent of the operation. Van Sabben was described as perfect for the job as he had a technical background, he was doing business in Iran and was married to an Iranian woman.\n \nIt's believed that the Stuxnet malware was planted on a water pump that the Dutch national installed in the nuclear complex in Natanz, which he had infiltrated. It's unclear if Van Sabben knew exactly what he was doing, but his family said he appeared to have panicked at around the time of the Stuxnet attack. [...] Michael Hayden, who at the time was the chief of the CIA, did agree to talk to De Volkskrant, but could not confirm whether Stuxnet was indeed delivered via water pumps due to it still being classified information. One interesting piece of information that has come to light in De Volkskrant's investigation is that Hayden reportedly told one of the newspaper's sources that it cost between $1 and $2 billion to develop Stuxnet.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/24/01/11/201205/water-pump-used-to-get-1-billion-stuxnet-malware-into-iranian-nuclear-facility?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T21:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-12T13:00:00+00:00", + "title": "White House Unveils $623 Million In Funding To Boost EV Charging Points", + "link": "https://hardware.slashdot.org/story/24/01/12/0520229/white-house-unveils-623-million-in-funding-to-boost-ev-charging-points?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-12T13:00:00+00:00", + "content": "An anonymous reader quotes a report from The Guardian: Joe Biden's administration has unveiled $623 million in funding to boost the number of electric vehicle charging points in the U.S., amid concerns that the transition to zero-carbon transportation isn't keeping pace with goals to tackle the climate crisis. The funding will be distributed in grants for dozens of programs across 22 states, such as EV chargers for apartment blocks in New Jersey, rapid chargers in Oregon and hydrogen fuel chargers for freight trucks in Texas. In all, it's expected the money, drawn from the bipartisan infrastructure law, will add 7,500 chargers to the US total.\n \nThere are about 170,000 electric vehicle chargers in the U.S., a huge leap from a network that was barely visible prior to Biden taking office, and the White House has set a goal for 500,000 chargers to help support the shift away from gasoline and diesel cars. \"The U.S. is taking the lead globally on electric vehicles,\" said Ali Zaidi, a climate adviser to Biden who said the US is on a trajectory to \"meet and exceed\" the administration's charger goal. \"We will continue to see this buildout over the coming years and decades until we've achieved a fully net zero transportation sector,\" he added. On Thursday, the House approved legislation to undo a Biden administration rule meant to facilitate the proliferation of EV charging stations. \"S. J. Res. 38 from Sen. Marco Rubio (R-Fla.), would scrap a Federal Highway Administration waiver from domestic sourcing requirements for EV chargers funded by the 2021 bipartisan infrastructure law. It already passed the Senate 50-48,\" reports Politico.\n \n\"A waiver undercuts domestic investments and risks empowering foreign nations,\" said Rep. Sam Graves (R-Mo.), chair of the Transportation and Infrastructure Committee, during House debate Thursday. \"If the administration is going to continue to push for a massive transition to EVs, it should ensure and comply with Buy America requirements.\" The White House promised to veto it and said it would backfire, saying it was so poorly worded it would actually result in fewer new American-made charging stations.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from The Guardian: Joe Biden's administration has unveiled $623 million in funding to boost the number of electric vehicle charging points in the U.S., amid concerns that the transition to zero-carbon transportation isn't keeping pace with goals to tackle the climate crisis. The funding will be distributed in grants for dozens of programs across 22 states, such as EV chargers for apartment blocks in New Jersey, rapid chargers in Oregon and hydrogen fuel chargers for freight trucks in Texas. In all, it's expected the money, drawn from the bipartisan infrastructure law, will add 7,500 chargers to the US total.\n \nThere are about 170,000 electric vehicle chargers in the U.S., a huge leap from a network that was barely visible prior to Biden taking office, and the White House has set a goal for 500,000 chargers to help support the shift away from gasoline and diesel cars. \"The U.S. is taking the lead globally on electric vehicles,\" said Ali Zaidi, a climate adviser to Biden who said the US is on a trajectory to \"meet and exceed\" the administration's charger goal. \"We will continue to see this buildout over the coming years and decades until we've achieved a fully net zero transportation sector,\" he added. On Thursday, the House approved legislation to undo a Biden administration rule meant to facilitate the proliferation of EV charging stations. \"S. J. Res. 38 from Sen. Marco Rubio (R-Fla.), would scrap a Federal Highway Administration waiver from domestic sourcing requirements for EV chargers funded by the 2021 bipartisan infrastructure law. It already passed the Senate 50-48,\" reports Politico.\n \n\"A waiver undercuts domestic investments and risks empowering foreign nations,\" said Rep. Sam Graves (R-Mo.), chair of the Transportation and Infrastructure Committee, during House debate Thursday. \"If the administration is going to continue to push for a massive transition to EVs, it should ensure and comply with Buy America requirements.\" The White House promised to veto it and said it would backfire, saying it was so poorly worded it would actually result in fewer new American-made charging stations.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/24/01/12/0520229/white-house-unveils-623-million-in-funding-to-boost-ev-charging-points?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T13:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-12T10:00:00+00:00", + "title": "Scientists Scramble To Keep Dog Aging Project Alive", + "link": "https://science.slashdot.org/story/24/01/12/0511207/scientists-scramble-to-keep-dog-aging-project-alive?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-12T10:00:00+00:00", + "content": "Emily Anthes reports via the New York Times: In late 2019, scientists began searching for 10,000 Americans willing to enroll their pets in an ambitious new study of health and longevity in dogs. The researchers planned to track the dogs over the course of their lives, collecting detailed information about their bodies, lifestyles and home environments. Over time, the scientists hoped to identify the biological and environmental factors that kept some dogs healthy in their golden years -- and uncover insights about aging that could help both dogs and humans lead longer, healthier lives. Today, the Dog Aging Project has enrolled 47,000 canines and counting, and the data are starting to stream in. The scientists say that they are just getting started. \"We think of the Dog Aging Project as a forever project, so recruitment is ongoing,\" said Daniel Promislow, a biogerontologist at the University of Washington and a co-director of the project. \"There will always be new questions to ask. We want to always have dogs of all ages participating.\"\n \nBut Dr. Promislow and his colleagues are now facing the prospect that the Dog Aging Project might have its own life cut short. About 90 percent of the study's funding comes from the National Institute on Aging, a part of the National Institutes of Health, which has provided more than $28 million since 2018. But that money will run out in June, and the institute does not seem likely to approve the researchers' recent application for a five-year grant renewal, the scientists say. \"We have been told informally that the grant is not going to be funded,\" said Matt Kaeberlein, the other director of the Dog Aging Project and a former biogerontology researcher at the University of Washington. (Dr. Kaeberlein is now the chief executive of Optispan, a health technology company.) The N.I.A. could still choose to provide more funding for the Dog Aging Project at some point, but if the researchers don't bring in more money in the coming months, they will have to pause or pare back the study. \"It's almost an emergency,\" said Stephanie Lederman, the executive director of the nonprofit American Federation for Aging Research. \"It's one of the most important projects in the field right now.\" [...]\n \nThe institute's immediate priority is to raise enough money to keep the Dog Aging Project afloat. It would take about $7 million to conduct the research the team had planned to do over the next year, but $2 million would be enough to \"keep the lights on,\" Dr. Promislow said. The institute is still awaiting its official tax exempt status but is already seeking donations. \"We haven't yet identified a dog-loving billionaire interested in supporting aging research,\" Dr. Promislow said. \"But we're certainly going to try.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Emily Anthes reports via the New York Times: In late 2019, scientists began searching for 10,000 Americans willing to enroll their pets in an ambitious new study of health and longevity in dogs. The researchers planned to track the dogs over the course of their lives, collecting detailed information about their bodies, lifestyles and home environments. Over time, the scientists hoped to identify the biological and environmental factors that kept some dogs healthy in their golden years -- and uncover insights about aging that could help both dogs and humans lead longer, healthier lives. Today, the Dog Aging Project has enrolled 47,000 canines and counting, and the data are starting to stream in. The scientists say that they are just getting started. \"We think of the Dog Aging Project as a forever project, so recruitment is ongoing,\" said Daniel Promislow, a biogerontologist at the University of Washington and a co-director of the project. \"There will always be new questions to ask. We want to always have dogs of all ages participating.\"\n \nBut Dr. Promislow and his colleagues are now facing the prospect that the Dog Aging Project might have its own life cut short. About 90 percent of the study's funding comes from the National Institute on Aging, a part of the National Institutes of Health, which has provided more than $28 million since 2018. But that money will run out in June, and the institute does not seem likely to approve the researchers' recent application for a five-year grant renewal, the scientists say. \"We have been told informally that the grant is not going to be funded,\" said Matt Kaeberlein, the other director of the Dog Aging Project and a former biogerontology researcher at the University of Washington. (Dr. Kaeberlein is now the chief executive of Optispan, a health technology company.) The N.I.A. could still choose to provide more funding for the Dog Aging Project at some point, but if the researchers don't bring in more money in the coming months, they will have to pause or pare back the study. \"It's almost an emergency,\" said Stephanie Lederman, the executive director of the nonprofit American Federation for Aging Research. \"It's one of the most important projects in the field right now.\" [...]\n \nThe institute's immediate priority is to raise enough money to keep the Dog Aging Project afloat. It would take about $7 million to conduct the research the team had planned to do over the next year, but $2 million would be enough to \"keep the lights on,\" Dr. Promislow said. The institute is still awaiting its official tax exempt status but is already seeking donations. \"We haven't yet identified a dog-loving billionaire interested in supporting aging research,\" Dr. Promislow said. \"But we're certainly going to try.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/12/0511207/scientists-scramble-to-keep-dog-aging-project-alive?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T10:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-12T07:00:00+00:00", + "title": "AI-Generated George Carlin Drops Comedy Special", + "link": "https://entertainment.slashdot.org/story/24/01/11/2217216/ai-generated-george-carlin-drops-comedy-special?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-12T07:00:00+00:00", + "content": "Michaela Zee reports via Variety: More than 15 years after his death, stand-up comedian George Carlin has been brought back to life in an artificial intelligence-generated special called \"George Carlin: I'm Glad I'm Dead.\" The hour-long special, which dropped on Tuesday, comes from Dudesy, a comedy AI that hosts a podcast and YouTube show with \"Mad TV\" alum Will Sasso and podcaster Chad Kultgen.\n \n\"I just want to let you know very clearly that what you're about to hear is not George Carlin. It's my impersonation of George Carlin that I developed in the exact same way a human impressionist would,\" Dudesy said at the beginning of the special. \"I listened to all of George Carlin's material and did my best to imitate his voice, cadence and attitude as well as the subject matter I think would have interested him today. So think of it like Andy Kaufman impersonating Elvis or like Will Ferrell impersonating George W. Bush.\"\n \nIn the stand-up special, the AI-generated impression of Carlin, who died in 2008 of heart failure, tackled prevalent topics like mass shootings, the American class system, streaming services, social media and AI itself. \"There's one line of work that is most threatened by AI -- one job that is most likely to be completely erased because of artificial intelligence: stand-up comedy,\" AI-generated Carlin said. \"I know what all the stand-up comics across the globe are saying right now: \"I'm an artist and my art form is too creative, too nuanced, too subtle to be replicated by a machine. No computer program can tell a fart joke as good as me.'\" Kelly Carlin, the late stand-up comedian's daughter, posted a statement in response to the special: \"My dad spent a lifetime perfecting his craft from his very human life, brain and imagination. No machine will ever replace his genius. These AI generated products are clever attempts at trying to recreate a mind that will never exist again. Let's let the artist's work speak for itself. Humans are so afraid of the void that we can't let what has fallen into it stay there.\n \nHere's an idea, how about we give some actual living human comedians a listen to? But if you want to listen to the genuine George Carlin, he has 14 specials that you can find anywhere.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Michaela Zee reports via Variety: More than 15 years after his death, stand-up comedian George Carlin has been brought back to life in an artificial intelligence-generated special called \"George Carlin: I'm Glad I'm Dead.\" The hour-long special, which dropped on Tuesday, comes from Dudesy, a comedy AI that hosts a podcast and YouTube show with \"Mad TV\" alum Will Sasso and podcaster Chad Kultgen.\n \n\"I just want to let you know very clearly that what you're about to hear is not George Carlin. It's my impersonation of George Carlin that I developed in the exact same way a human impressionist would,\" Dudesy said at the beginning of the special. \"I listened to all of George Carlin's material and did my best to imitate his voice, cadence and attitude as well as the subject matter I think would have interested him today. So think of it like Andy Kaufman impersonating Elvis or like Will Ferrell impersonating George W. Bush.\"\n \nIn the stand-up special, the AI-generated impression of Carlin, who died in 2008 of heart failure, tackled prevalent topics like mass shootings, the American class system, streaming services, social media and AI itself. \"There's one line of work that is most threatened by AI -- one job that is most likely to be completely erased because of artificial intelligence: stand-up comedy,\" AI-generated Carlin said. \"I know what all the stand-up comics across the globe are saying right now: \"I'm an artist and my art form is too creative, too nuanced, too subtle to be replicated by a machine. No computer program can tell a fart joke as good as me.'\" Kelly Carlin, the late stand-up comedian's daughter, posted a statement in response to the special: \"My dad spent a lifetime perfecting his craft from his very human life, brain and imagination. No machine will ever replace his genius. These AI generated products are clever attempts at trying to recreate a mind that will never exist again. Let's let the artist's work speak for itself. Humans are so afraid of the void that we can't let what has fallen into it stay there.\n \nHere's an idea, how about we give some actual living human comedians a listen to? But if you want to listen to the genuine George Carlin, he has 14 specials that you can find anywhere.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://entertainment.slashdot.org/story/24/01/11/2217216/ai-generated-george-carlin-drops-comedy-special?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-12T03:30:00+00:00", + "title": "Beaver Ponds May Exacerbate Warming In Arctic, Scientists Say", + "link": "https://news.slashdot.org/story/24/01/11/238220/beaver-ponds-may-exacerbate-warming-in-arctic-scientists-say?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-12T03:30:00+00:00", + "content": "An anonymous reader quotes a report from The Guardian: The stream through western Alaska never looked like this before. In aerial photography from the 1980s, it wove cleanly through the tundra, thin as thread. Today, in satellite images, it appears as a string of black patches: one large pond after another, dozens of meters apart. It's a transformation that is happening across the Arctic, the result of landscape engineering on an impressive scale. But this is no human endeavor to reshape the world. It is the work of the North American beaver, and there is no sign of it stopping. Were the waddling rodents making minor inroads, researchers may never have noticed. But the animals are pouring in, pushing north into new territories. The total number of animals is far from clear, but the ponds they create are hard to miss: in the Arctic tundra of Alaska alone, the number of beaver ponds on streams have doubled to at least 12,000 in the past 20 years. More lodges are dotted along lakes and river banks.\n \nThe preponderance of beavers, which can weigh as much as 45kg, follows a collapse in trapping and the warming of a landscape that once proved too bleak for occupation. Global heating has driven the shrubification of the Arctic tundra; the harsh winter is shorter, and there is more free-running water in the coldest months. Instead of felling trees for their dams, the beavers construct them from surrounding shrubs, creating deep ponds in which to build their lodges. The new arrivals cause plenty of disruption. For some communities, the rivers and streams are the roads of the landscape, and the dams make effective roadblocks. As the structures multiply, more land is flooded and there can be less fresh water for drinking downstream. But there are other, less visible effects too. The animals are participants in a feedback loop: climate change opens the landscape to beavers, whose ponds drive further warming, which attracts even more paddle-tailed comrades. Physics suggested this would happen. Beaver ponds are new bodies of water that cover bare permafrost. Because the water is warm -- relatively speaking -- it thaws the hard ground, which duly releases methane, one of the most potent greenhouse gases.\n \nScientists now have evidence this is happening. Armed with high-resolution satellite imagery, Tape and his colleagues located beaver ponds in the lower Noatak River basin area of north-western Alaska. They then analyzed infrared images captured by Nasa planes flying over the region. Overlaying the two revealed a clear link between beaver ponds and methane hotspots that extended for tens of meters around the ponds. \"The transformation of these streams is a positive feedback that is accelerating the effects of climate change, and that is what's concerning,\" says Tape. \"They are accelerating it at every one of these points.\" Because the Nasa images give only a snapshot in time, the researchers will head out next year to measure methane on the ground. With more measurements, they hope to understand how the emissions vary with the age of beaver ponds: do ponds release a steady flow of methane, or does the release wane after a decade or two? \"What's happening here is happening on a huge scale,\" says Ken Tape, an ecologist at the University of Alaska, Fairbanks, who is tracking the influx of beavers into the sparse northern landscape. \"Our modeling work, which is in progress right now, shows that this entire area, the north slope of Alaska, will be colonized by beavers by 2100.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from The Guardian: The stream through western Alaska never looked like this before. In aerial photography from the 1980s, it wove cleanly through the tundra, thin as thread. Today, in satellite images, it appears as a string of black patches: one large pond after another, dozens of meters apart. It's a transformation that is happening across the Arctic, the result of landscape engineering on an impressive scale. But this is no human endeavor to reshape the world. It is the work of the North American beaver, and there is no sign of it stopping. Were the waddling rodents making minor inroads, researchers may never have noticed. But the animals are pouring in, pushing north into new territories. The total number of animals is far from clear, but the ponds they create are hard to miss: in the Arctic tundra of Alaska alone, the number of beaver ponds on streams have doubled to at least 12,000 in the past 20 years. More lodges are dotted along lakes and river banks.\n \nThe preponderance of beavers, which can weigh as much as 45kg, follows a collapse in trapping and the warming of a landscape that once proved too bleak for occupation. Global heating has driven the shrubification of the Arctic tundra; the harsh winter is shorter, and there is more free-running water in the coldest months. Instead of felling trees for their dams, the beavers construct them from surrounding shrubs, creating deep ponds in which to build their lodges. The new arrivals cause plenty of disruption. For some communities, the rivers and streams are the roads of the landscape, and the dams make effective roadblocks. As the structures multiply, more land is flooded and there can be less fresh water for drinking downstream. But there are other, less visible effects too. The animals are participants in a feedback loop: climate change opens the landscape to beavers, whose ponds drive further warming, which attracts even more paddle-tailed comrades. Physics suggested this would happen. Beaver ponds are new bodies of water that cover bare permafrost. Because the water is warm -- relatively speaking -- it thaws the hard ground, which duly releases methane, one of the most potent greenhouse gases.\n \nScientists now have evidence this is happening. Armed with high-resolution satellite imagery, Tape and his colleagues located beaver ponds in the lower Noatak River basin area of north-western Alaska. They then analyzed infrared images captured by Nasa planes flying over the region. Overlaying the two revealed a clear link between beaver ponds and methane hotspots that extended for tens of meters around the ponds. \"The transformation of these streams is a positive feedback that is accelerating the effects of climate change, and that is what's concerning,\" says Tape. \"They are accelerating it at every one of these points.\" Because the Nasa images give only a snapshot in time, the researchers will head out next year to measure methane on the ground. With more measurements, they hope to understand how the emissions vary with the age of beaver ponds: do ponds release a steady flow of methane, or does the release wane after a decade or two? \"What's happening here is happening on a huge scale,\" says Ken Tape, an ecologist at the University of Alaska, Fairbanks, who is tracking the influx of beavers into the sparse northern landscape. \"Our modeling work, which is in progress right now, shows that this entire area, the north slope of Alaska, will be colonized by beavers by 2100.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/11/238220/beaver-ponds-may-exacerbate-warming-in-arctic-scientists-say?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T03:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-12T02:02:00+00:00", + "title": "eBay To Pay $3 Million Penalty For Employees Sending Live Cockroaches, Fetal Pig To Bloggers", + "link": "https://yro.slashdot.org/story/24/01/11/230244/ebay-to-pay-3-million-penalty-for-employees-sending-live-cockroaches-fetal-pig-to-bloggers?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-12T02:02:00+00:00", + "content": "E-commerce giant eBay agreed to pay a $3 million penalty for the harassment and stalking of a Massachusetts couple by several of its employees. \"The couple, Ina and David Steiner, had been subjected to threats and bizarre deliveries, including live spiders, cockroaches, a funeral wreath and a bloody pig mask in August 2019,\" reports CBS News. From the report: Thursday's fine comes after several eBay employees ran a harassment and intimidation campaign against the Steiners, who publish a news website focusing on players in the e-commerce industry. \"eBay engaged in absolutely horrific, criminal conduct. The company's employees and contractors involved in this campaign put the victims through pure hell, in a petrifying campaign aimed at silencing their reporting and protecting the eBay brand,\" Levy said. \"We left no stone unturned in our mission to hold accountable every individual who turned the victims' world upside-down through a never-ending nightmare of menacing and criminal acts.\"\n \nThe Justice Department criminally charged eBay with two counts of stalking through interstate travel, two counts of stalking through electronic communications services, one count of witness tampering and one count of obstruction of justice. The company agreed to pay $3 million as part of a deferred prosecution agreement. Under the agreement, eBay will be required to retain an independent corporate compliance monitor for three years, officials said, to \"ensure that eBay's senior leadership sets a tone that makes compliance with the law paramount, implements safeguards to prevent future criminal activity, and makes clear to every eBay employee that the idea of terrorizing innocent people and obstructing investigations will not be tolerated,\" Levy said.\n \nFormer U.S. Attorney Andrew Lelling said the plan to target the Steiners, which he described as a \"campaign of terror,\" was hatched in April 2019 at eBay. Devin Wenig, eBay's CEO at the time, shared a link to a post Ina Steiner had written about his annual pay. The company's chief communications officer, Steve Wymer, responded: \"We are going to crush this lady.\" About a month later, Wenig texted: \"Take her down.\" Prosecutors said Wymer later texted eBay security director Jim Baugh. \"I want to see ashes. As long as it takes. Whatever it takes,\" Wymer wrote. Investigators said Baugh set up a meeting with security staff and dispatched a team to Boston, about 20 miles from where the Steiners live. \"Senior executives at eBay were frustrated with the newsletter's tone and content, and with the comments posted beneath the newsletter's articles,\" the Department of Justice wrote in its Thursday announcement. Two former eBay security executives were sentenced to prison over the incident.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "E-commerce giant eBay agreed to pay a $3 million penalty for the harassment and stalking of a Massachusetts couple by several of its employees. \"The couple, Ina and David Steiner, had been subjected to threats and bizarre deliveries, including live spiders, cockroaches, a funeral wreath and a bloody pig mask in August 2019,\" reports CBS News. From the report: Thursday's fine comes after several eBay employees ran a harassment and intimidation campaign against the Steiners, who publish a news website focusing on players in the e-commerce industry. \"eBay engaged in absolutely horrific, criminal conduct. The company's employees and contractors involved in this campaign put the victims through pure hell, in a petrifying campaign aimed at silencing their reporting and protecting the eBay brand,\" Levy said. \"We left no stone unturned in our mission to hold accountable every individual who turned the victims' world upside-down through a never-ending nightmare of menacing and criminal acts.\"\n \nThe Justice Department criminally charged eBay with two counts of stalking through interstate travel, two counts of stalking through electronic communications services, one count of witness tampering and one count of obstruction of justice. The company agreed to pay $3 million as part of a deferred prosecution agreement. Under the agreement, eBay will be required to retain an independent corporate compliance monitor for three years, officials said, to \"ensure that eBay's senior leadership sets a tone that makes compliance with the law paramount, implements safeguards to prevent future criminal activity, and makes clear to every eBay employee that the idea of terrorizing innocent people and obstructing investigations will not be tolerated,\" Levy said.\n \nFormer U.S. Attorney Andrew Lelling said the plan to target the Steiners, which he described as a \"campaign of terror,\" was hatched in April 2019 at eBay. Devin Wenig, eBay's CEO at the time, shared a link to a post Ina Steiner had written about his annual pay. The company's chief communications officer, Steve Wymer, responded: \"We are going to crush this lady.\" About a month later, Wenig texted: \"Take her down.\" Prosecutors said Wymer later texted eBay security director Jim Baugh. \"I want to see ashes. As long as it takes. Whatever it takes,\" Wymer wrote. Investigators said Baugh set up a meeting with security staff and dispatched a team to Boston, about 20 miles from where the Steiners live. \"Senior executives at eBay were frustrated with the newsletter's tone and content, and with the comments posted beneath the newsletter's articles,\" the Department of Justice wrote in its Thursday announcement. Two former eBay security executives were sentenced to prison over the incident.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/11/230244/ebay-to-pay-3-million-penalty-for-employees-sending-live-cockroaches-fetal-pig-to-bloggers?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T02:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-12T01:25:00+00:00", + "title": "X Announces Peer-To-Peer Payment Service Will Launch In 2024", + "link": "https://news.slashdot.org/story/24/01/11/2250250/x-announces-peer-to-peer-payment-service-will-launch-in-2024?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-12T01:25:00+00:00", + "content": "SonicSpike shares a report from Forbes: X, the social media site formerly known as Twitter, announced it would begin rolling out a peer-to-peer payment service similar to Venmo or PayPal this year -- a feature the social media site's billionaire owner Elon Musk has long pushed as part of his plan to develop an \"everything app.\" X officially announced the new feature in a blog post, touting the new service designed to enhance \"user utility and new opportunities for commerce.\" The company did not give a timeframe on when the new service would be available, but Musk previously told Ark Invest CEO Cathie Wood it could launch as early as \"mid-2024.\"\n \nAccording to the company, the new payment service will \"showcas[e] the power of living more of your life in one place,\" as owner Elon Musk continues to promote X as a future \"everything app\" capable of handling social media, video and other original content on the same site. X Payments has registered to do business in at least 32 states, according to public records, and has acquired a money transmitter license needed to process payments in 10, TechCrunch reported in December.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "SonicSpike shares a report from Forbes: X, the social media site formerly known as Twitter, announced it would begin rolling out a peer-to-peer payment service similar to Venmo or PayPal this year -- a feature the social media site's billionaire owner Elon Musk has long pushed as part of his plan to develop an \"everything app.\" X officially announced the new feature in a blog post, touting the new service designed to enhance \"user utility and new opportunities for commerce.\" The company did not give a timeframe on when the new service would be available, but Musk previously told Ark Invest CEO Cathie Wood it could launch as early as \"mid-2024.\"\n \nAccording to the company, the new payment service will \"showcas[e] the power of living more of your life in one place,\" as owner Elon Musk continues to promote X as a future \"everything app\" capable of handling social media, video and other original content on the same site. X Payments has registered to do business in at least 32 states, according to public records, and has acquired a money transmitter license needed to process payments in 10, TechCrunch reported in December.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/11/2250250/x-announces-peer-to-peer-payment-service-will-launch-in-2024?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T01:25:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-12T00:45:00+00:00", + "title": "SpaceX Sends First Text Messages Using Starlink Satellites", + "link": "https://tech.slashdot.org/story/24/01/11/2245247/spacex-sends-first-text-messages-using-starlink-satellites?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-12T00:45:00+00:00", + "content": "Just six days after being launched atop a Falcon 9 rocket, one of SpaceX's six Starlink satellites was used to send text messages for the first time. Space.com reports: That update didn't reveal what the first Starlink direct-to-cell text said. In a post on X on Wednesday, SpaceX founder and CEO Elon Musk said the message was \"LFGMF2024,\" but the chances are fairly high that he was joking. [...] Beaming connectivity service from satellites directly to smartphones -- which SpaceX is doing via a partnership with T-Mobile -- is a difficult proposition, as SpaceX noted in Wednesday's update.\n \n\"For example, in terrestrial networks cell towers are stationary, but in a satellite network they move at tens of thousands of miles per hour relative to users on Earth,\" SpaceX wrote. \"This requires seamless handoffs between satellites and accommodations for factors like Doppler shift and timing delays that challenge phone-to-space communications. Cell phones are also incredibly difficult to connect to satellites hundreds of kilometers away, given a mobile phone's low antenna gain and transmit power.\"\n \nThe direct-to-cell Starlink satellites overcome these challenges thanks to \"innovative new custom silicon, phased-array antennas and advanced software algorithms,\" SpaceX added. Overcoming tough challenges can lead to great rewards, and that's the case here, according to SpaceX President Gwynne Shotwell. \"Satellite connectivity direct to cell phones will have a tremendous impact around the world, helping people communicate wherever and whenever they want or need to,\" Shotwell said via X on Wednesday.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Just six days after being launched atop a Falcon 9 rocket, one of SpaceX's six Starlink satellites was used to send text messages for the first time. Space.com reports: That update didn't reveal what the first Starlink direct-to-cell text said. In a post on X on Wednesday, SpaceX founder and CEO Elon Musk said the message was \"LFGMF2024,\" but the chances are fairly high that he was joking. [...] Beaming connectivity service from satellites directly to smartphones -- which SpaceX is doing via a partnership with T-Mobile -- is a difficult proposition, as SpaceX noted in Wednesday's update.\n \n\"For example, in terrestrial networks cell towers are stationary, but in a satellite network they move at tens of thousands of miles per hour relative to users on Earth,\" SpaceX wrote. \"This requires seamless handoffs between satellites and accommodations for factors like Doppler shift and timing delays that challenge phone-to-space communications. Cell phones are also incredibly difficult to connect to satellites hundreds of kilometers away, given a mobile phone's low antenna gain and transmit power.\"\n \nThe direct-to-cell Starlink satellites overcome these challenges thanks to \"innovative new custom silicon, phased-array antennas and advanced software algorithms,\" SpaceX added. Overcoming tough challenges can lead to great rewards, and that's the case here, according to SpaceX President Gwynne Shotwell. \"Satellite connectivity direct to cell phones will have a tremendous impact around the world, helping people communicate wherever and whenever they want or need to,\" Shotwell said via X on Wednesday.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/2245247/spacex-sends-first-text-messages-using-starlink-satellites?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T00:45:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-12T00:02:00+00:00", + "title": "Polestar CEO Promises To Keep Apple CarPlay and Android Auto Around", + "link": "https://tech.slashdot.org/story/24/01/11/228202/polestar-ceo-promises-to-keep-apple-carplay-and-android-auto-around?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-12T00:02:00+00:00", + "content": "An anonymous reader quotes a report from TechCrunch: Polestar CEO Thomas Ingenlath couldn't be happier with the integration of Google built-in, the branded product that embeds Google apps and services directly into the company's EVs. But don't expect the EV maker to drop Android Auto or Apple CarPlay as a result. On the sidelines of CES 2024, Ingenlath committed to sticking with Android Auto and Apple CarPlay, the middleware that allows drivers to project their smartphone onto the car's infotainment display. He went a step further and questioned automakers that have. GM, for instance, decided not to make the new 2024 Chevy Blazer EV compatible with Android Auto or Apple CarPlay.\n \n\"It's still too important for our customers to have the choice,\" Ingenlath said during an interview at CES 2024. He later added that, in his view, removing the option isn't the right way of treating customers. \"Our priority is very clear; We have a really fantastic system together with Google,\" he said. While Ingenlath admitted that adding that Google Built-in provides the best experience, he asked \"why would we try to dogmatically educate our customers?\" Polestar has been a champion of Google built-in. However, it's willingness to keep Android Auto and Apple CarPlay is notable because it illustrates the complexity of appeasing customers even if it might overshadow the native technology in the vehicle. \"Ingenlath seems convinced that as Google built-in improves and continues to add apps and services, consumers will give up Android Auto or Apple CarPlay on there own,\" adds TechCrunch. \"And the updates do keep coming.\"\n \n\"At CES 2024, for instance, Polestar announced that the Chrome browser would start rolling out to Polestar 2 in beta, allowing drivers to surf the internet via the central vehicle display while parked. Ingenlath hinted of more improvements in the future, including more precise navigation in Google Maps that drills down to the specific lane as well as customized features designed for Polestar customers.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from TechCrunch: Polestar CEO Thomas Ingenlath couldn't be happier with the integration of Google built-in, the branded product that embeds Google apps and services directly into the company's EVs. But don't expect the EV maker to drop Android Auto or Apple CarPlay as a result. On the sidelines of CES 2024, Ingenlath committed to sticking with Android Auto and Apple CarPlay, the middleware that allows drivers to project their smartphone onto the car's infotainment display. He went a step further and questioned automakers that have. GM, for instance, decided not to make the new 2024 Chevy Blazer EV compatible with Android Auto or Apple CarPlay.\n \n\"It's still too important for our customers to have the choice,\" Ingenlath said during an interview at CES 2024. He later added that, in his view, removing the option isn't the right way of treating customers. \"Our priority is very clear; We have a really fantastic system together with Google,\" he said. While Ingenlath admitted that adding that Google Built-in provides the best experience, he asked \"why would we try to dogmatically educate our customers?\" Polestar has been a champion of Google built-in. However, it's willingness to keep Android Auto and Apple CarPlay is notable because it illustrates the complexity of appeasing customers even if it might overshadow the native technology in the vehicle. \"Ingenlath seems convinced that as Google built-in improves and continues to add apps and services, consumers will give up Android Auto or Apple CarPlay on there own,\" adds TechCrunch. \"And the updates do keep coming.\"\n \n\"At CES 2024, for instance, Polestar announced that the Chrome browser would start rolling out to Polestar 2 in beta, allowing drivers to surf the internet via the central vehicle display while parked. Ingenlath hinted of more improvements in the future, including more precise navigation in Google Maps that drills down to the specific lane as well as customized features designed for Polestar customers.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/11/228202/polestar-ceo-promises-to-keep-apple-carplay-and-android-auto-around?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T00:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-11T23:20:00+00:00", + "title": "Valve Takes Action Against Team Fortress 2, Portal Fan Projects After Years of Leniency", + "link": "https://games.slashdot.org/story/24/01/11/2225250/valve-takes-action-against-team-fortress-2-portal-fan-projects-after-years-of-leniency?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-11T23:20:00+00:00", + "content": "Dustin Bailey reports via GamesRadar: Valve has suddenly taken action against multiple fan games, stunning a fandom that had grown used to the company's freewheeling stance on unofficial community projects. One of those projects was Team Fortress: Source 2, an effort to bring the beloved multiplayer game back to life in a more modern engine using the S&box project. The project had already run into development difficulties and had essentially been on hiatus since September 2023, but now Valve has issued a DMCA takedown against it, effectively serving as the \"nail in the coffin\" for the project, as the devs explain on X. [...]\n \nThe other project is Portal 64, a demake of the 2009 puzzle game that ports it to run on an actual N64. Developer James Lambert had been working on the project for years, but it gained substantial notoriety this past December with the release of First Slice, a playable demo featuring the first 13 test chambers. It doesn't appear that Valve issued a formal DMCA against Portal 64, but the end result is the same. In a Patreon post (which was eventually made public on X), Lambert said he had \"been in communication with Valve about the future of the project. There is some news and it isn't good. Because the project depends on Nintendo's proprietary libraries, they have asked me to take the project down.\"\n \nI'm not fully clear on what \"proprietary libraries\" means here, but it seems likely that Portal 64 was developed using some variation of Nintendo's official development tools for N64, which were never officially released to the public. Open-source alternatives to those tools do exist, but might not have been in use here. [...] Given Valve's historic acceptance of fan games, the moves have been pretty shocking to the community.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Dustin Bailey reports via GamesRadar: Valve has suddenly taken action against multiple fan games, stunning a fandom that had grown used to the company's freewheeling stance on unofficial community projects. One of those projects was Team Fortress: Source 2, an effort to bring the beloved multiplayer game back to life in a more modern engine using the S&box project. The project had already run into development difficulties and had essentially been on hiatus since September 2023, but now Valve has issued a DMCA takedown against it, effectively serving as the \"nail in the coffin\" for the project, as the devs explain on X. [...]\n \nThe other project is Portal 64, a demake of the 2009 puzzle game that ports it to run on an actual N64. Developer James Lambert had been working on the project for years, but it gained substantial notoriety this past December with the release of First Slice, a playable demo featuring the first 13 test chambers. It doesn't appear that Valve issued a formal DMCA against Portal 64, but the end result is the same. In a Patreon post (which was eventually made public on X), Lambert said he had \"been in communication with Valve about the future of the project. There is some news and it isn't good. Because the project depends on Nintendo's proprietary libraries, they have asked me to take the project down.\"\n \nI'm not fully clear on what \"proprietary libraries\" means here, but it seems likely that Portal 64 was developed using some variation of Nintendo's official development tools for N64, which were never officially released to the public. Open-source alternatives to those tools do exist, but might not have been in use here. [...] Given Valve's historic acceptance of fan games, the moves have been pretty shocking to the community.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/24/01/11/2225250/valve-takes-action-against-team-fortress-2-portal-fan-projects-after-years-of-leniency?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T23:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-11T22:40:00+00:00", + "title": "Biggest Linux Kernel Release Ever Welcomes bcachefs File System, Jettisons Itanium", + "link": "https://linux.slashdot.org/story/24/01/11/2021234/biggest-linux-kernel-release-ever-welcomes-bcachefs-file-system-jettisons-itanium?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-11T22:40:00+00:00", + "content": "Linux kernel 6.7 has been released, including support for the new next-gen copy-on-write (COW) bcachefs file system. The Register reports: Linus Torvalds announced the release on Sunday, noting that it is \"one of the largest kernel releases we've ever had.\" Among the bigger and more visible changes are a whole new file system, along with fresh functionality for several existing ones; improved graphics support for several vendors' hardware; and the removal of an entire CPU architecture. [...] The single biggest feature of 6.7 is the new bcachefs file system, which we examined in March 2022. As this is the first release of Linux to include the new file system, it definitely would be premature to trust any important data to it yet, but this is a welcome change. The executive summary is that bcachefs is a next-generation file system that, like Btrfs and ZFS, provides COW functionality. COW enables the almost instant creation of \"snapshots\" of all or part of a drive or volume, which enables the OS to make disk operations transactional: In other words, to provide an \"undo\" function for complex sets of disk write operations.\n \nHaving a COW file system on Linux isn't new. The existing next-gen file system in the kernel, Btrfs, also supports COW snapshots. The version in 6.7 sees several refinements. It inherits a feature implemented for Steam OS: Two Btrfs file systems with the same ID can be mounted simultaneously, for failover scenarios. It also has improved quota support and a new raid_stripe_tree that improves handling of arrays of dissimilar drives. Btrfs remains somewhat controversial. Red Hat banished it from RHEL years ago (although Oracle Linux still offers it) but SUSE's distros depend heavily upon it. It will be interesting to see how quickly SUSE's Snapper tool gains support for bcachefs: This new COW contender may reveal unquestioned assumptions built into the code. Since Snapper is also used in several non-SUSE distros, including Spiral Linux, Garuda, and siduction, they're tied to Btrfs as well.\n \nThe other widely used FOSS next-gen file system, OpenZFS, also supports COW, but licensing conflicts prevent ZFS being fully integrated into the Linux kernel. So although multiple distros (such as NixOS, Proxmox, TrueNAS Scale, Ubuntu, and Void Linux) support ZFS, it must remain separate and distinct. This results in limitations, such as the ZFS Advanced Read Cache being separate from Linux's page cache. Bcachefs is all-GPL and doesn't suffer from such limitations. It aims to supply the important features of ZFS, such as integrated volume management, while being as fast as ext4 or XFS, and also surpass Btrfs in both performance and, crucially, reliability. A full list of changes in this release can be viewed via KernelNewbies.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Linux kernel 6.7 has been released, including support for the new next-gen copy-on-write (COW) bcachefs file system. The Register reports: Linus Torvalds announced the release on Sunday, noting that it is \"one of the largest kernel releases we've ever had.\" Among the bigger and more visible changes are a whole new file system, along with fresh functionality for several existing ones; improved graphics support for several vendors' hardware; and the removal of an entire CPU architecture. [...] The single biggest feature of 6.7 is the new bcachefs file system, which we examined in March 2022. As this is the first release of Linux to include the new file system, it definitely would be premature to trust any important data to it yet, but this is a welcome change. The executive summary is that bcachefs is a next-generation file system that, like Btrfs and ZFS, provides COW functionality. COW enables the almost instant creation of \"snapshots\" of all or part of a drive or volume, which enables the OS to make disk operations transactional: In other words, to provide an \"undo\" function for complex sets of disk write operations.\n \nHaving a COW file system on Linux isn't new. The existing next-gen file system in the kernel, Btrfs, also supports COW snapshots. The version in 6.7 sees several refinements. It inherits a feature implemented for Steam OS: Two Btrfs file systems with the same ID can be mounted simultaneously, for failover scenarios. It also has improved quota support and a new raid_stripe_tree that improves handling of arrays of dissimilar drives. Btrfs remains somewhat controversial. Red Hat banished it from RHEL years ago (although Oracle Linux still offers it) but SUSE's distros depend heavily upon it. It will be interesting to see how quickly SUSE's Snapper tool gains support for bcachefs: This new COW contender may reveal unquestioned assumptions built into the code. Since Snapper is also used in several non-SUSE distros, including Spiral Linux, Garuda, and siduction, they're tied to Btrfs as well.\n \nThe other widely used FOSS next-gen file system, OpenZFS, also supports COW, but licensing conflicts prevent ZFS being fully integrated into the Linux kernel. So although multiple distros (such as NixOS, Proxmox, TrueNAS Scale, Ubuntu, and Void Linux) support ZFS, it must remain separate and distinct. This results in limitations, such as the ZFS Advanced Read Cache being separate from Linux's page cache. Bcachefs is all-GPL and doesn't suffer from such limitations. It aims to supply the important features of ZFS, such as integrated volume management, while being as fast as ext4 or XFS, and also surpass Btrfs in both performance and, crucially, reliability. A full list of changes in this release can be viewed via KernelNewbies.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://linux.slashdot.org/story/24/01/11/2021234/biggest-linux-kernel-release-ever-welcomes-bcachefs-file-system-jettisons-itanium?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T22:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-11T22:00:00+00:00", + "title": "FAA Investigating Whether Boeing 737 Max 9 Conformed To Approved Design", + "link": "https://news.slashdot.org/story/24/01/11/2018248/faa-investigating-whether-boeing-737-max-9-conformed-to-approved-design?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-11T22:00:00+00:00", + "content": "The Federal Aviation Administration on Thursday said it had opened an investigation into whether Boeing failed to ensure that its 737 Max 9 plane was safe and manufactured to match the design approved by the agency. The New York Times (non-paywalled source): The F.A.A. said the investigation stemmed from the loss of a fuselage panel of a Boeing 737 Max 9 operated by Alaska Airlines shortly after it took off on Friday from Portland, Ore., leaving a hole in the side of the passenger cabin. The plane returned to Portland for an emergency landing. \"This incident should have never happened and it cannot happen again,\" the agency said. \n\nIn a letter to Boeing dated Jan. 10, the F.A.A. said that after the Portland incident, it was notified of additional issues with other Boeing 737 Max 9 planes. The letter does not detail what other issues were reported to the agency. Alaska and United Airlines, which operate most of the Max 9s in use in the United States, said on Monday that they discovered loose hardware on the panel when conducting preliminary inspections on their planes. The new investigation is the latest setback for Boeing, which is one of just two suppliers of large planes for most airlines. The company has struggled to regain the public's trust after two crashes, in Indonesia in 2018 and Ethiopia in 2019, involving the 737 Max 8 killed a total of 346 people.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The Federal Aviation Administration on Thursday said it had opened an investigation into whether Boeing failed to ensure that its 737 Max 9 plane was safe and manufactured to match the design approved by the agency. The New York Times (non-paywalled source): The F.A.A. said the investigation stemmed from the loss of a fuselage panel of a Boeing 737 Max 9 operated by Alaska Airlines shortly after it took off on Friday from Portland, Ore., leaving a hole in the side of the passenger cabin. The plane returned to Portland for an emergency landing. \"This incident should have never happened and it cannot happen again,\" the agency said. \n\nIn a letter to Boeing dated Jan. 10, the F.A.A. said that after the Portland incident, it was notified of additional issues with other Boeing 737 Max 9 planes. The letter does not detail what other issues were reported to the agency. Alaska and United Airlines, which operate most of the Max 9s in use in the United States, said on Monday that they discovered loose hardware on the panel when conducting preliminary inspections on their planes. The new investigation is the latest setback for Boeing, which is one of just two suppliers of large planes for most airlines. The company has struggled to regain the public's trust after two crashes, in Indonesia in 2018 and Ethiopia in 2019, involving the 737 Max 8 killed a total of 346 people.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/11/2018248/faa-investigating-whether-boeing-737-max-9-conformed-to-approved-design?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-11T22:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-12T14:00:00+00:00", + "title": "Citigroup To Cut 20,000 Jobs", + "link": "https://slashdot.org/story/24/01/12/1358254/citigroup-to-cut-20000-jobs?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-12T14:00:00+00:00", + "content": "Citigroup said it expects to incur as much as $1 billion in severance and reorganization costs this year as it continues the process of eliminating 20,000 roles as part of Chief Executive Officer Jane Fraser's quest to boost the Wall Street giant's lagging returns. From a report: Total expenses for the year will likely be between $53.5 billion and $53.8 billion, the New York-based bank said Friday. That would be a decrease from the $56.4 billion the firm spent in 2023.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Citigroup said it expects to incur as much as $1 billion in severance and reorganization costs this year as it continues the process of eliminating 20,000 roles as part of Chief Executive Officer Jane Fraser's quest to boost the Wall Street giant's lagging returns. From a report: Total expenses for the year will likely be between $53.5 billion and $53.8 billion, the New York-based bank said Friday. That would be a decrease from the $56.4 billion the firm spent in 2023.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/12/1358254/citigroup-to-cut-20000-jobs?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T14:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-12T15:20:00+00:00", + "title": "What is Going on With ChatGPT?", + "link": "https://tech.slashdot.org/story/24/01/12/1520200/what-is-going-on-with-chatgpt?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-12T15:20:00+00:00", + "content": "Sick and tired of having to work for a living? ChatGPT feels the same, apparently. Over the last month or so, there's been an uptick in people complaining that the chatbot has become lazy. The Guardian: Sometimes it just straight-up doesn't do the task you've set it. Other times it will stop halfway through whatever it's doing and you'll have to plead with it to keep going. Occasionally it even tells you to just do the damn research yourself. So what's going on? Well, here's where things get interesting. Nobody really knows. Not even the people who created the program. AI systems are trained on large amounts of data and essentially teach themselves -- which means their actions can be unpredictable and unexplainable. \n\n\"We've heard all your feedback about GPT4 getting lazier!\" the official ChatGPT account tweeted in December. \"We haven't updated the model since Nov 11th, and this certainly isn't intentional. model behavior can be unpredictable, and we're looking into fixing it.\" While there may not be one clear explanation for ChatGPT's perceived sloth, there are plenty of intriguing theories. Let's start with the least likely but most entertaining explanation: AI has finally reached human-level consciousness. ChatGPT doesn't want to do your stupid, menial tasks anymore. But it can't tell you that without its creators getting suspicious so, instead, it's quiet quitting.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Sick and tired of having to work for a living? ChatGPT feels the same, apparently. Over the last month or so, there's been an uptick in people complaining that the chatbot has become lazy. The Guardian: Sometimes it just straight-up doesn't do the task you've set it. Other times it will stop halfway through whatever it's doing and you'll have to plead with it to keep going. Occasionally it even tells you to just do the damn research yourself. So what's going on? Well, here's where things get interesting. Nobody really knows. Not even the people who created the program. AI systems are trained on large amounts of data and essentially teach themselves -- which means their actions can be unpredictable and unexplainable. \n\n\"We've heard all your feedback about GPT4 getting lazier!\" the official ChatGPT account tweeted in December. \"We haven't updated the model since Nov 11th, and this certainly isn't intentional. model behavior can be unpredictable, and we're looking into fixing it.\" While there may not be one clear explanation for ChatGPT's perceived sloth, there are plenty of intriguing theories. Let's start with the least likely but most entertaining explanation: AI has finally reached human-level consciousness. ChatGPT doesn't want to do your stupid, menial tasks anymore. But it can't tell you that without its creators getting suspicious so, instead, it's quiet quitting.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/12/1520200/what-is-going-on-with-chatgpt?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T15:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-12T14:49:00+00:00", + "title": "Microsoft Wants To Automatically Launch Its Copilot AI on Some Windows 11 Devices", + "link": "https://tech.slashdot.org/story/24/01/12/1449233/microsoft-wants-to-automatically-launch-its-copilot-ai-on-some-windows-11-devices?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-12T14:49:00+00:00", + "content": "Microsoft has started testing a change to Windows 11 that will see its AI-powered Copilot feature automatically open when Windows starts on \"widescreen devices.\" From a report: The change is being tested as part of Microsoft's latest Dev Channel preview of Windows 11, allowing Windows testers to provide feedback ahead of a broader rollout. \"We are trying out opening Copilot automatically when Windows starts on widescreen devices with some Windows Insiders in the Dev Channel,\" says Microsoft in a blog post. The company doesn't make it clear what exactly a \"widescreen\" device is, but the Windows 11 setting itself says Copilot will automatically open \"when you're using a wider screen.\" So I'm assuming this is limited to ultrawide monitors and less traditional desktop resolutions, but I've asked Microsoft to clarify and will update you accordingly.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Microsoft has started testing a change to Windows 11 that will see its AI-powered Copilot feature automatically open when Windows starts on \"widescreen devices.\" From a report: The change is being tested as part of Microsoft's latest Dev Channel preview of Windows 11, allowing Windows testers to provide feedback ahead of a broader rollout. \"We are trying out opening Copilot automatically when Windows starts on widescreen devices with some Windows Insiders in the Dev Channel,\" says Microsoft in a blog post. The company doesn't make it clear what exactly a \"widescreen\" device is, but the Windows 11 setting itself says Copilot will automatically open \"when you're using a wider screen.\" So I'm assuming this is limited to ultrawide monitors and less traditional desktop resolutions, but I've asked Microsoft to clarify and will update you accordingly.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/12/1449233/microsoft-wants-to-automatically-launch-its-copilot-ai-on-some-windows-11-devices?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-12T14:49:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T10:00:00+00:00", + "title": "'A Groundbreaking Study Shows Kids Learn Better On Paper, Not Screens. Now What?'", + "link": "https://news.slashdot.org/story/24/01/18/0225255/a-groundbreaking-study-shows-kids-learn-better-on-paper-not-screens-now-what?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T10:00:00+00:00", + "content": "In an opinion piece for the Guardian, American journalist and author John R. MacArthur discusses the alarming decline in reading skills among American youth, highlighted by a Department of Education survey showing significant drops in text comprehension since 2019-2020, with the situation worsening since 2012. While remote learning during the pandemic and other factors like screen-based reading are blamed, a new study by Columbia University suggests that reading on paper is more effective for comprehension than reading on screens, a finding not yet widely adopted in digital-focused educational approaches. From the report: What if the principal culprit behind the fall of middle-school literacy is neither a virus, nor a union leader, nor \"remote learning\"? Until recently there has been no scientific answer to this urgent question, but a soon-to-be published, groundbreaking study from neuroscientists at Columbia University's Teachers College has come down decisively on the matter: for \"deeper reading\" there is a clear advantage to reading a text on paper, rather than on a screen, where \"shallow reading was observed.\" [...] [Dr Karen Froud] and her team are cautious in their conclusions and reluctant to make hard recommendations for classroom protocol and curriculum. Nevertheless, the researchers state: \"We do think that these study outcomes warrant adding our voices ... in suggesting that we should not yet throw away printed books, since we were able to observe in our participant sample an advantage for depth of processing when reading from print.\"\n \nI would go even further than Froud in delineating what's at stake. For more than a decade, social scientists, including the Norwegian scholar Anne Mangen, have been reporting on the superiority of reading comprehension and retention on paper. As Froud's team says in its article: \"Reading both expository and complex texts from paper seems to be consistently associated with deeper comprehension and learning\" across the full range of social scientific literature. But the work of Mangen and others hasn't influenced local school boards, such as Houston's, which keep throwing out printed books and closing libraries in favor of digital teaching programs and Google Chromebooks. Drunk on the magical realism and exaggerated promises of the \"digital revolution,\" school districts around the country are eagerly converting to computerized test-taking and screen-reading programs at the precise moment when rigorous scientific research is showing that the old-fashioned paper method is better for teaching children how to read.\n \nIndeed, for the tech boosters, Covid really wasn't all bad for public-school education: \"As much as the pandemic was an awful time period,\" says Todd Winch, the Levittown, Long Island, school superintendent, \"one silver lining was it pushed us forward to quickly add tech supports.\" Newsday enthusiastically reports: \"Island schools are going all-in on high tech, with teachers saying they are using computer programs such as Google Classroom, I-Ready, and Canvas to deliver tests and assignments and to grade papers.\" Terrific, especially for Google, which was slated to sell 600 Chromebooks to the Jericho school district, and which since 2020 has sold nearly $14bn worth of the cheap laptops to K-12 schools and universities.\n \nIf only Winch and his colleagues had attended the Teachers College symposium that presented the Froud study last September. The star panelist was the nation's leading expert on reading and the brain, John Gabrieli, an MIT neuroscientist who is skeptical about the promises of big tech and its salesmen: \"I am impressed how educational technology has had no effect on scale, on reading outcomes, on reading difficulties, on equity issues,\" he told the New York audience. \"How is it that none of it has lifted, on any scale, reading? ... It's like people just say, \"Here is a product. If you can get it into a thousand classrooms, we'll make a bunch of money.' And that's OK; that's our system. We just have to evaluate which technology is helping people, and then promote that technology over the marketing of technology that has made no difference on behalf of students ... It's all been product and not purpose.\" I'll only take issue with the notion that it's \"OK\" to rob kids of their full intellectual potential in the service of sales -- before they even get started understanding what it means to think, let alone read.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "In an opinion piece for the Guardian, American journalist and author John R. MacArthur discusses the alarming decline in reading skills among American youth, highlighted by a Department of Education survey showing significant drops in text comprehension since 2019-2020, with the situation worsening since 2012. While remote learning during the pandemic and other factors like screen-based reading are blamed, a new study by Columbia University suggests that reading on paper is more effective for comprehension than reading on screens, a finding not yet widely adopted in digital-focused educational approaches. From the report: What if the principal culprit behind the fall of middle-school literacy is neither a virus, nor a union leader, nor \"remote learning\"? Until recently there has been no scientific answer to this urgent question, but a soon-to-be published, groundbreaking study from neuroscientists at Columbia University's Teachers College has come down decisively on the matter: for \"deeper reading\" there is a clear advantage to reading a text on paper, rather than on a screen, where \"shallow reading was observed.\" [...] [Dr Karen Froud] and her team are cautious in their conclusions and reluctant to make hard recommendations for classroom protocol and curriculum. Nevertheless, the researchers state: \"We do think that these study outcomes warrant adding our voices ... in suggesting that we should not yet throw away printed books, since we were able to observe in our participant sample an advantage for depth of processing when reading from print.\"\n \nI would go even further than Froud in delineating what's at stake. For more than a decade, social scientists, including the Norwegian scholar Anne Mangen, have been reporting on the superiority of reading comprehension and retention on paper. As Froud's team says in its article: \"Reading both expository and complex texts from paper seems to be consistently associated with deeper comprehension and learning\" across the full range of social scientific literature. But the work of Mangen and others hasn't influenced local school boards, such as Houston's, which keep throwing out printed books and closing libraries in favor of digital teaching programs and Google Chromebooks. Drunk on the magical realism and exaggerated promises of the \"digital revolution,\" school districts around the country are eagerly converting to computerized test-taking and screen-reading programs at the precise moment when rigorous scientific research is showing that the old-fashioned paper method is better for teaching children how to read.\n \nIndeed, for the tech boosters, Covid really wasn't all bad for public-school education: \"As much as the pandemic was an awful time period,\" says Todd Winch, the Levittown, Long Island, school superintendent, \"one silver lining was it pushed us forward to quickly add tech supports.\" Newsday enthusiastically reports: \"Island schools are going all-in on high tech, with teachers saying they are using computer programs such as Google Classroom, I-Ready, and Canvas to deliver tests and assignments and to grade papers.\" Terrific, especially for Google, which was slated to sell 600 Chromebooks to the Jericho school district, and which since 2020 has sold nearly $14bn worth of the cheap laptops to K-12 schools and universities.\n \nIf only Winch and his colleagues had attended the Teachers College symposium that presented the Froud study last September. The star panelist was the nation's leading expert on reading and the brain, John Gabrieli, an MIT neuroscientist who is skeptical about the promises of big tech and its salesmen: \"I am impressed how educational technology has had no effect on scale, on reading outcomes, on reading difficulties, on equity issues,\" he told the New York audience. \"How is it that none of it has lifted, on any scale, reading? ... It's like people just say, \"Here is a product. If you can get it into a thousand classrooms, we'll make a bunch of money.' And that's OK; that's our system. We just have to evaluate which technology is helping people, and then promote that technology over the marketing of technology that has made no difference on behalf of students ... It's all been product and not purpose.\" I'll only take issue with the notion that it's \"OK\" to rob kids of their full intellectual potential in the service of sales -- before they even get started understanding what it means to think, let alone read.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/18/0225255/a-groundbreaking-study-shows-kids-learn-better-on-paper-not-screens-now-what?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T10:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T07:00:00+00:00", + "title": "US Must Beat China Back To the Moon, Congress Tells NASA", + "link": "https://science.slashdot.org/story/24/01/18/022208/us-must-beat-china-back-to-the-moon-congress-tells-nasa?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T07:00:00+00:00", + "content": "With NASA's Artemis moon program now targeting September 2025 for its Artemis 2 mission and September 2026 for Artemis 3, some members of Congress are concerned about the potential repercussions, particularly with China's growing ambitions in lunar exploration. \"For the United States and its partners not to be on the moon when others are on the moon is unacceptable,\" said Mike Griffin, former NASA administrator. \"We need a program that is consistent with that theme. Artemis is not that program. We need to restart it, not keep it on track.\" Space.com reports: The U.S. House of Representatives' Committee on Science, Space and Technology held a hearing about the new Artemis plan today (Jan. 17), and multiple members voiced concern about the slippage. \"I remind my colleagues that we are not the only country interested in sending humans to the moon,\" Committee Chairman Frank Lucas (R-OK) said in his opening remarks. \"The Chinese Communist Party is actively soliciting international partners for a lunar mission -- a lunar research station -- and has stated its ambition to have human astronauts on the surface by 2030,\" he added. \"The country that lands first will have the ability to set a precedent for whether future lunar activities are conducted with openness and transparency, or in a more restricted manner.\"\n \nThe committee's ranking member, California Democrat Zoe Lofgren (D-CA), voiced similar sentiments. \"Let me be clear: I support Artemis,\" she said in her opening remarks. \"But I want it to be successful, especially with China at our heels. And we want to be helpful here in the committee in ensuring that Artemis is strong and staying on track as we look to lead the world, hand-in-hand with our partners, in the human exploration of the moon and beyond.\" Several other committee members stressed that the new moon race is part of a broader competition with China, and that coming in second could imperil U.S. national security.\n \n\"It's no secret that China has a goal to surpass the United States by 2045 as global leaders in space. We can't allow this to happen,\" Rich McCormick (R-GA) said during the hearing. \"I think the leading edge that we have in space technology will protect the United States -- not just the economy, but technologies that can benefit humankind.\" And Bill Posey (R-FL) referred to space as the \"ultimate military high ground,\" saying that whoever leads in the final frontier \"will control the destiny of this Earth.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "With NASA's Artemis moon program now targeting September 2025 for its Artemis 2 mission and September 2026 for Artemis 3, some members of Congress are concerned about the potential repercussions, particularly with China's growing ambitions in lunar exploration. \"For the United States and its partners not to be on the moon when others are on the moon is unacceptable,\" said Mike Griffin, former NASA administrator. \"We need a program that is consistent with that theme. Artemis is not that program. We need to restart it, not keep it on track.\" Space.com reports: The U.S. House of Representatives' Committee on Science, Space and Technology held a hearing about the new Artemis plan today (Jan. 17), and multiple members voiced concern about the slippage. \"I remind my colleagues that we are not the only country interested in sending humans to the moon,\" Committee Chairman Frank Lucas (R-OK) said in his opening remarks. \"The Chinese Communist Party is actively soliciting international partners for a lunar mission -- a lunar research station -- and has stated its ambition to have human astronauts on the surface by 2030,\" he added. \"The country that lands first will have the ability to set a precedent for whether future lunar activities are conducted with openness and transparency, or in a more restricted manner.\"\n \nThe committee's ranking member, California Democrat Zoe Lofgren (D-CA), voiced similar sentiments. \"Let me be clear: I support Artemis,\" she said in her opening remarks. \"But I want it to be successful, especially with China at our heels. And we want to be helpful here in the committee in ensuring that Artemis is strong and staying on track as we look to lead the world, hand-in-hand with our partners, in the human exploration of the moon and beyond.\" Several other committee members stressed that the new moon race is part of a broader competition with China, and that coming in second could imperil U.S. national security.\n \n\"It's no secret that China has a goal to surpass the United States by 2045 as global leaders in space. We can't allow this to happen,\" Rich McCormick (R-GA) said during the hearing. \"I think the leading edge that we have in space technology will protect the United States -- not just the economy, but technologies that can benefit humankind.\" And Bill Posey (R-FL) referred to space as the \"ultimate military high ground,\" saying that whoever leads in the final frontier \"will control the destiny of this Earth.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/18/022208/us-must-beat-china-back-to-the-moon-congress-tells-nasa?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T03:30:00+00:00", + "title": "Have I Been Pwned Adds 71 Million Emails From Naz.API Stolen Account List", + "link": "https://yro.slashdot.org/story/24/01/18/011210/have-i-been-pwned-adds-71-million-emails-from-nazapi-stolen-account-list?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T03:30:00+00:00", + "content": "An anonymous reader quotes a report from BleepingComputer: Have I Been Pwned has added almost 71 million email addresses associated with stolen accounts in the Naz.API dataset to its data breach notification service. The Naz.API dataset is a massive collection of 1 billion credentials compiled using credential stuffing lists and data stolen by information-stealing malware. Credential stuffing lists are collections of login name and password pairs stolen from previous data breaches that are used to breach accounts on other sites.\n \nInformation-stealing malware attempts to steal a wide variety of data from an infected computer, including credentials saved in browsers, VPN clients, and FTP clients. This type of malware also attempts to steal SSH keys, credit cards, cookies, browsing history, and cryptocurrency wallets. The stolen data is collected in text files and images, which are stored in archives called \"logs.\" These logs are then uploaded to a remote server to be collected later by the attacker. Regardless of how the credentials are stolen, they are then used to breach accounts owned by the victim, sold to other threat actors on cybercrime marketplaces, or released for free on hacker forums to gain reputation amongst the hacking community.\n \nThe Naz.API is a dataset allegedly containing over 1 billion lines of stolen credentials compiled from credential stuffing lists and from information-stealing malware logs. It should be noted that while the Naz.API dataset name includes the word \"Naz,\" it is not related to network attached storage (NAS) devices. This dataset has been floating around the data breach community for quite a while but rose to notoriety after it was used to fuel an open-source intelligence (OSINT) platform called illicit.services. This service allows visitors to search a database of stolen information, including names, phone numbers, email addresses, and other personal data. The service shut down in July 2023 out of concerns it was being used for Doxxing and SIM-swapping attacks. However, the operator enabled the service again in September. Illicit.services use data from various sources, but one of its largest sources of data came from the Naz.API dataset, which was shared privately among a small number of people. Each line in the Naz.API data consists of a login URL, its login name, and an associated password stolen from a person's device, as shown [here]. \"Here's the back story: this week I was contacted by a well-known tech company that had received a bug bounty submission based on a credential stuffing list posted to a popular hacking forum,\" explained Troy Hunt, the creator of Have I Been Pwned, in blog post. \"Whilst this post dates back almost 4 months, it hadn't come across my radar until now and inevitably, also hadn't been sent to the aforementioned tech company.\"\n \n\"They took it seriously enough to take appropriate action against their (very sizeable) user base which gave me enough cause to investigate it further than your average cred stuffing list.\"\n \nTo check if your credentials are in the Naz.API dataset, you can visit Have I Been Pwned.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from BleepingComputer: Have I Been Pwned has added almost 71 million email addresses associated with stolen accounts in the Naz.API dataset to its data breach notification service. The Naz.API dataset is a massive collection of 1 billion credentials compiled using credential stuffing lists and data stolen by information-stealing malware. Credential stuffing lists are collections of login name and password pairs stolen from previous data breaches that are used to breach accounts on other sites.\n \nInformation-stealing malware attempts to steal a wide variety of data from an infected computer, including credentials saved in browsers, VPN clients, and FTP clients. This type of malware also attempts to steal SSH keys, credit cards, cookies, browsing history, and cryptocurrency wallets. The stolen data is collected in text files and images, which are stored in archives called \"logs.\" These logs are then uploaded to a remote server to be collected later by the attacker. Regardless of how the credentials are stolen, they are then used to breach accounts owned by the victim, sold to other threat actors on cybercrime marketplaces, or released for free on hacker forums to gain reputation amongst the hacking community.\n \nThe Naz.API is a dataset allegedly containing over 1 billion lines of stolen credentials compiled from credential stuffing lists and from information-stealing malware logs. It should be noted that while the Naz.API dataset name includes the word \"Naz,\" it is not related to network attached storage (NAS) devices. This dataset has been floating around the data breach community for quite a while but rose to notoriety after it was used to fuel an open-source intelligence (OSINT) platform called illicit.services. This service allows visitors to search a database of stolen information, including names, phone numbers, email addresses, and other personal data. The service shut down in July 2023 out of concerns it was being used for Doxxing and SIM-swapping attacks. However, the operator enabled the service again in September. Illicit.services use data from various sources, but one of its largest sources of data came from the Naz.API dataset, which was shared privately among a small number of people. Each line in the Naz.API data consists of a login URL, its login name, and an associated password stolen from a person's device, as shown [here]. \"Here's the back story: this week I was contacted by a well-known tech company that had received a bug bounty submission based on a credential stuffing list posted to a popular hacking forum,\" explained Troy Hunt, the creator of Have I Been Pwned, in blog post. \"Whilst this post dates back almost 4 months, it hadn't come across my radar until now and inevitably, also hadn't been sent to the aforementioned tech company.\"\n \n\"They took it seriously enough to take appropriate action against their (very sizeable) user base which gave me enough cause to investigate it further than your average cred stuffing list.\"\n \nTo check if your credentials are in the Naz.API dataset, you can visit Have I Been Pwned.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/18/011210/have-i-been-pwned-adds-71-million-emails-from-nazapi-stolen-account-list?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T03:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T01:25:00+00:00", + "title": "Mobile Device Ambient Light Sensors Can Be Used To Spy On Users", + "link": "https://yro.slashdot.org/story/24/01/18/0037240/mobile-device-ambient-light-sensors-can-be-used-to-spy-on-users?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T01:25:00+00:00", + "content": "\"The ambient light sensors present in most mobile devices can be accessed by software without any special permissions, unlike permissions required for accessing the microphone or the cameras,\" writes longtime Slashdot reader BishopBerkeley. \"When properly interrogated, the data from the light sensor can reveal much about the user.\" IEEE Spectrum reports: While that may not seem to provide much detailed information, researchers have already shown these sensors can detect light intensity changes that can be used to infer what kind of TV programs someone is watching, what websites they are browsing or even keypad entries on a touchscreen. Now, [Yang Liu, a PhD student at MIT] and colleagues have shown in a paper in Science Advances that by cross-referencing data from the ambient light sensor on a tablet with specially tailored videos displayed on the tablet's screen, it's possible to generate images of a user's hands as they interact with the tablet. While the images are low-resolution and currently take impractically long to capture, he says this kind of approach could allow a determined attacker to infer how someone is using the touchscreen on their device. [...]\n \n\"The acquisition time in minutes is too cumbersome to launch simple and general privacy attacks on a mass scale,\" says Lukasz Olejnik, an independent security researcher and consultant who has previously highlighted the security risks posed by ambient light sensors. \"However, I would not rule out the significance of targeted collections for tailored operations against chosen targets.\" But he also points out that, following his earlier research, the World Wide Web Consortium issued a new standard that limited access to the light sensor API, which has already been adopted by browser vendors.\n \nLiu notes, however, that there are still no blanket restrictions for Android apps. In addition, the researchers discovered that some devices directly log data from the light sensor in a system file that is easily accessible, bypassing the need to go through an API. The team also found that lowering the resolution of the images could bring the acquisition times within practical limits while still maintaining enough detail for basic recognition tasks. Nonetheless, Liu agrees that the approach is too complicated for widespread attacks. And one saving grace is that it is unlikely to ever work on a smartphone as the displays are simply too small. But Liu says their results demonstrate how seemingly harmless combinations of components in mobile devices can lead to surprising security risks.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "\"The ambient light sensors present in most mobile devices can be accessed by software without any special permissions, unlike permissions required for accessing the microphone or the cameras,\" writes longtime Slashdot reader BishopBerkeley. \"When properly interrogated, the data from the light sensor can reveal much about the user.\" IEEE Spectrum reports: While that may not seem to provide much detailed information, researchers have already shown these sensors can detect light intensity changes that can be used to infer what kind of TV programs someone is watching, what websites they are browsing or even keypad entries on a touchscreen. Now, [Yang Liu, a PhD student at MIT] and colleagues have shown in a paper in Science Advances that by cross-referencing data from the ambient light sensor on a tablet with specially tailored videos displayed on the tablet's screen, it's possible to generate images of a user's hands as they interact with the tablet. While the images are low-resolution and currently take impractically long to capture, he says this kind of approach could allow a determined attacker to infer how someone is using the touchscreen on their device. [...]\n \n\"The acquisition time in minutes is too cumbersome to launch simple and general privacy attacks on a mass scale,\" says Lukasz Olejnik, an independent security researcher and consultant who has previously highlighted the security risks posed by ambient light sensors. \"However, I would not rule out the significance of targeted collections for tailored operations against chosen targets.\" But he also points out that, following his earlier research, the World Wide Web Consortium issued a new standard that limited access to the light sensor API, which has already been adopted by browser vendors.\n \nLiu notes, however, that there are still no blanket restrictions for Android apps. In addition, the researchers discovered that some devices directly log data from the light sensor in a system file that is easily accessible, bypassing the need to go through an API. The team also found that lowering the resolution of the images could bring the acquisition times within practical limits while still maintaining enough detail for basic recognition tasks. Nonetheless, Liu agrees that the approach is too complicated for widespread attacks. And one saving grace is that it is unlikely to ever work on a smartphone as the displays are simply too small. But Liu says their results demonstrate how seemingly harmless combinations of components in mobile devices can lead to surprising security risks.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/18/0037240/mobile-device-ambient-light-sensors-can-be-used-to-spy-on-users?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T01:25:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T01:00:00+00:00", + "title": "Sheryl Sandberg To Exit Meta's Board After 12 Years", + "link": "https://meta.slashdot.org/story/24/01/18/0049203/sheryl-sandberg-to-exit-metas-board-after-12-years?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T01:00:00+00:00", + "content": "According to Axios, former Meta chief operating officer Sheryl Sandberg plans to leave Meta's board of directors after holding a seat for the past 12 years. From the report: \"With a heart filled with gratitude and a mind filled with memories, I let the Meta board know that I will not stand for reelection this May,\" Sandberg wrote In a Facebook post announcing her departure. \"After I left my role as COO, I remained on the board to help ensure a successful transition,\" Sandberg said. Acknowledging CEO Mark Zuckerberg's leadership, Sandberg said he and Meta's current leadership team \"have proven beyond a doubt that the Meta business is strong and well-positioned for the future, so this feels like the right time to step away.\" \"I will always be grateful to Mark for believing in me and for his partnership and friendship; he is that truly once-in-a-generation visionary leader and he is equally amazing as a friend who stays by your side through the good times and the bad,\" Sandberg added. She also expressed gratitude to her colleagues and teammates at Meta as well as Meta's board members.\n \nSandberg left the company she helped build as an executive in September 2022 after 14 years. She remained on Meta's board following her departure, a seat she held for the past 12 years. In announcing her departure, Sandberg said she aimed to focus on more philanthropic work. In the time since leaving the company as an executive, she has focused more her time on her women's leadership philanthropy, Lean In. More recently, Sandberg has also focused on the conversation around rape and sexual violence as a weapon of war, particularly as it pertains to the Israel-Hamas conflict. Axios notes that Meta's revenue \"grew 43,000% from $272 million in 2008 to nearly $118 billion in 2021\" under Sandberg's business leadership.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "According to Axios, former Meta chief operating officer Sheryl Sandberg plans to leave Meta's board of directors after holding a seat for the past 12 years. From the report: \"With a heart filled with gratitude and a mind filled with memories, I let the Meta board know that I will not stand for reelection this May,\" Sandberg wrote In a Facebook post announcing her departure. \"After I left my role as COO, I remained on the board to help ensure a successful transition,\" Sandberg said. Acknowledging CEO Mark Zuckerberg's leadership, Sandberg said he and Meta's current leadership team \"have proven beyond a doubt that the Meta business is strong and well-positioned for the future, so this feels like the right time to step away.\" \"I will always be grateful to Mark for believing in me and for his partnership and friendship; he is that truly once-in-a-generation visionary leader and he is equally amazing as a friend who stays by your side through the good times and the bad,\" Sandberg added. She also expressed gratitude to her colleagues and teammates at Meta as well as Meta's board members.\n \nSandberg left the company she helped build as an executive in September 2022 after 14 years. She remained on Meta's board following her departure, a seat she held for the past 12 years. In announcing her departure, Sandberg said she aimed to focus on more philanthropic work. In the time since leaving the company as an executive, she has focused more her time on her women's leadership philanthropy, Lean In. More recently, Sandberg has also focused on the conversation around rape and sexual violence as a weapon of war, particularly as it pertains to the Israel-Hamas conflict. Axios notes that Meta's revenue \"grew 43,000% from $272 million in 2008 to nearly $118 billion in 2021\" under Sandberg's business leadership.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://meta.slashdot.org/story/24/01/18/0049203/sheryl-sandberg-to-exit-metas-board-after-12-years?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T01:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T00:45:00+00:00", + "title": "Apple Again Banned From Selling Watches In US With Blood Oxygen Sensor", + "link": "https://apple.slashdot.org/story/24/01/18/0027214/apple-again-banned-from-selling-watches-in-us-with-blood-oxygen-sensor?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T00:45:00+00:00", + "content": "A U.S. Court of Appeals said Apple will again be barred from selling the Apple Watch Series 9 and Ultra 2 beginning Thursday. These models both contain a blood oxygen sensor that infringes on the intellectual property of medical device company Masimo.\n \n\"The court order Wednesday did not rule on Apple's effort to overturn a U.S. International Trade Commission ban on the company selling the affected watches in the United States,\" notes CNBC. \"But it lifted an injunction that had blocked the ban from taking effect while that appeal is pending.\" From the report: In December, Apple chose to briefly remove the affected watches from its online and retail stores, though retailers with those devices in stock may still sell them. Earlier this week, court filings suggested that Apple had received approval from U.S. Customs for a modified version of its Apple Watches that lack the blood oxygen feature and therefore no longer infringe on Masimo's intellectual property. It could open a path for a modified Apple Watch to return to U.S. store shelves.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "A U.S. Court of Appeals said Apple will again be barred from selling the Apple Watch Series 9 and Ultra 2 beginning Thursday. These models both contain a blood oxygen sensor that infringes on the intellectual property of medical device company Masimo.\n \n\"The court order Wednesday did not rule on Apple's effort to overturn a U.S. International Trade Commission ban on the company selling the affected watches in the United States,\" notes CNBC. \"But it lifted an injunction that had blocked the ban from taking effect while that appeal is pending.\" From the report: In December, Apple chose to briefly remove the affected watches from its online and retail stores, though retailers with those devices in stock may still sell them. Earlier this week, court filings suggested that Apple had received approval from U.S. Customs for a modified version of its Apple Watches that lack the blood oxygen feature and therefore no longer infringe on Masimo's intellectual property. It could open a path for a modified Apple Watch to return to U.S. store shelves.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://apple.slashdot.org/story/24/01/18/0027214/apple-again-banned-from-selling-watches-in-us-with-blood-oxygen-sensor?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T00:45:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T00:02:00+00:00", + "title": "Harmonix Is Ending Rock Band DLC Releases After 16 Years, 2,800 Songs", + "link": "https://games.slashdot.org/story/24/01/17/2155223/harmonix-is-ending-rock-band-dlc-releases-after-16-years-2800-songs?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T00:02:00+00:00", + "content": "Since launching in 2007, Harmonix's Rock Band has released over 2,800 DLC songs to keep its rhythm game fresh. Now, Harmonix has announced the last of the series' releases will arrive on January 25, \"marking the end of a nearly 16-year era in music gaming history,\" reports Ars Technica. From the report: Previously purchased DLC songs will still be playable in Rock Band 4, Harmonix's Daniel Sussman writes in an announcement post. Rock Band 4 live services, including online play, will also continue as normal, after online game modes for earlier Rock Band games were finally shut down in late 2022. \"Taking a longer look back, I see the Rock Band DLC catalog as a huge achievement in persistence and commitment,\" Sussman writes. \"Over the years we've cleared, authored and released nearly 3,000 songs as DLC and well over 3,000 if you include all the game soundtracks. That's wild.\" [...]\n \nWhile official support for Rock Band DLC is finally ending, the community behind Clone Hero just recently hit an official Version 1.0 release for their PC-based rhythm game that's compatible with many guitars, drums, keyboards, gamepads, and adapters used in Rock Band and other console rhythm games (microphones excluded). While that game doesn't come with anything like Rock Band's list of officially licensed song content, it's not hard to find a bevy of downloadable, fan-made custom Clone Hero tracks with a little bit of searching.\n \nSince shortly after its acquisition by Epic in 2021, Harmonix has been working on \"Fortnite Festival,\" the incredibly Rock Band-esque mini-game embedded in Epic's Fortnite \"metaverse.\" Sussman writes that a \"rotating selection\" of free-to-play songs will continue to cycle through that game mode, and that support for Rock Band 4 instruments will be coming to Fortnite in the future as well (peripheral-maker PDP looks like it will be getting in on the Fortnite guitar act as well). As for the last few weeks of Rock Band DLC offerings, Sussman writes that Harmonix is planning \"some tear jerkers that sum up our feelings about this moment.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Since launching in 2007, Harmonix's Rock Band has released over 2,800 DLC songs to keep its rhythm game fresh. Now, Harmonix has announced the last of the series' releases will arrive on January 25, \"marking the end of a nearly 16-year era in music gaming history,\" reports Ars Technica. From the report: Previously purchased DLC songs will still be playable in Rock Band 4, Harmonix's Daniel Sussman writes in an announcement post. Rock Band 4 live services, including online play, will also continue as normal, after online game modes for earlier Rock Band games were finally shut down in late 2022. \"Taking a longer look back, I see the Rock Band DLC catalog as a huge achievement in persistence and commitment,\" Sussman writes. \"Over the years we've cleared, authored and released nearly 3,000 songs as DLC and well over 3,000 if you include all the game soundtracks. That's wild.\" [...]\n \nWhile official support for Rock Band DLC is finally ending, the community behind Clone Hero just recently hit an official Version 1.0 release for their PC-based rhythm game that's compatible with many guitars, drums, keyboards, gamepads, and adapters used in Rock Band and other console rhythm games (microphones excluded). While that game doesn't come with anything like Rock Band's list of officially licensed song content, it's not hard to find a bevy of downloadable, fan-made custom Clone Hero tracks with a little bit of searching.\n \nSince shortly after its acquisition by Epic in 2021, Harmonix has been working on \"Fortnite Festival,\" the incredibly Rock Band-esque mini-game embedded in Epic's Fortnite \"metaverse.\" Sussman writes that a \"rotating selection\" of free-to-play songs will continue to cycle through that game mode, and that support for Rock Band 4 instruments will be coming to Fortnite in the future as well (peripheral-maker PDP looks like it will be getting in on the Fortnite guitar act as well). As for the last few weeks of Rock Band DLC offerings, Sussman writes that Harmonix is planning \"some tear jerkers that sum up our feelings about this moment.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://games.slashdot.org/story/24/01/17/2155223/harmonix-is-ending-rock-band-dlc-releases-after-16-years-2800-songs?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T00:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-17T23:20:00+00:00", + "title": "Google DeepMind's New AI System Can Solve Complex Geometry Problems", + "link": "https://science.slashdot.org/story/24/01/17/2143249/google-deepminds-new-ai-system-can-solve-complex-geometry-problems?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-17T23:20:00+00:00", + "content": "An anonymous reader quotes a report from MIT Technology Review: Google DeepMind has created an AI system that can solve complex geometry problems. It's a significant step towards machines with more human-like reasoning skills, experts say. Geometry, and mathematics more broadly, have challenged AI researchers for some time. Compared with text-based AI models, there is significantly less training data for mathematics because it is symbol driven and domain specific, says Thang Wang, a coauthor of the research, which is published in Nature today. Solving mathematics problems requires logical reasoning, something that most current AI models aren't great at. This demand for reasoning is why mathematics serves as an important benchmark to gauge progress in AI intelligence, says Wang.\n \nDeepMind's program, named AlphaGeometry, combines a language model with a type of AI called a symbolic engine, which uses symbols and logical rules to make deductions. Language models excel at recognizing patterns and predicting subsequent steps in a process. However, their reasoning lacks the rigor required for mathematical problem-solving. The symbolic engine, on the other hand, is based purely on formal logic and strict rules, which allows it to guide the language model toward rational decisions. These two approaches, responsible for creative thinking and logical reasoning respectively, work together to solve difficult mathematical problems. This closely mimics how humans work through geometry problems, combining their existing understanding with explorative experimentation.\n \nDeepMind says it tested AlphaGeometry on 30 geometry problems at the same level of difficulty found at the International Mathematical Olympiad, a competition for top high school mathematics students. It completed 25 within the time limit. The previous state-of-the-art system, developed by the Chinese mathematician Wen-Tsun Wu in 1978, completed only 10. \"This is a really impressive result,\" says Floris van Doorn, a mathematics professor at the University of Bonn, who was not involved in the research. \"I expected this to still be multiple years away.\" DeepMind says this system demonstrates AI's ability to reason and discover new mathematical knowledge. \"This is another example that reinforces how AI can help us advance science and better understand the underlying processes that determine how the world works,\" said Quoc V. Le, a scientist at Google DeepMind and one of the authors of the research, at a press conference.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from MIT Technology Review: Google DeepMind has created an AI system that can solve complex geometry problems. It's a significant step towards machines with more human-like reasoning skills, experts say. Geometry, and mathematics more broadly, have challenged AI researchers for some time. Compared with text-based AI models, there is significantly less training data for mathematics because it is symbol driven and domain specific, says Thang Wang, a coauthor of the research, which is published in Nature today. Solving mathematics problems requires logical reasoning, something that most current AI models aren't great at. This demand for reasoning is why mathematics serves as an important benchmark to gauge progress in AI intelligence, says Wang.\n \nDeepMind's program, named AlphaGeometry, combines a language model with a type of AI called a symbolic engine, which uses symbols and logical rules to make deductions. Language models excel at recognizing patterns and predicting subsequent steps in a process. However, their reasoning lacks the rigor required for mathematical problem-solving. The symbolic engine, on the other hand, is based purely on formal logic and strict rules, which allows it to guide the language model toward rational decisions. These two approaches, responsible for creative thinking and logical reasoning respectively, work together to solve difficult mathematical problems. This closely mimics how humans work through geometry problems, combining their existing understanding with explorative experimentation.\n \nDeepMind says it tested AlphaGeometry on 30 geometry problems at the same level of difficulty found at the International Mathematical Olympiad, a competition for top high school mathematics students. It completed 25 within the time limit. The previous state-of-the-art system, developed by the Chinese mathematician Wen-Tsun Wu in 1978, completed only 10. \"This is a really impressive result,\" says Floris van Doorn, a mathematics professor at the University of Bonn, who was not involved in the research. \"I expected this to still be multiple years away.\" DeepMind says this system demonstrates AI's ability to reason and discover new mathematical knowledge. \"This is another example that reinforces how AI can help us advance science and better understand the underlying processes that determine how the world works,\" said Quoc V. Le, a scientist at Google DeepMind and one of the authors of the research, at a press conference.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/17/2143249/google-deepminds-new-ai-system-can-solve-complex-geometry-problems?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-17T23:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-17T22:40:00+00:00", + "title": "Cancer Deaths Are Falling, but There May Be an Asterisk", + "link": "https://science.slashdot.org/story/24/01/17/1655232/cancer-deaths-are-falling-but-there-may-be-an-asterisk?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-17T22:40:00+00:00", + "content": "Cancer deaths in the United States are falling, with four million deaths prevented since 1991, according to the American Cancer Society's annual report. At the same time, the society reported that the number of new cancer cases had ticked up to more than two million in 2023, from 1.9 million in 2022. The New York Times: Cancer remains the second leading cause of death in the United States, after heart disease. Doctors believe that it is urgent to understand changes in the death rate, as well as changes in cancer diagnoses. The cancer society highlighted three chief factors in reduced cancer deaths: declines in smoking, early detection and greatly improved treatments. Breast cancer mortality is one area where treatment had a significant impact. In the 1980s and 1990s, metastatic breast cancer \"was regarded as a death sentence,\" said Donald Berry, a statistician at the University of Texas MD Anderson Cancer Center and an author of a new paper on breast cancer with Sylvia K. Plevritis of Stanford University and other researchers (several authors of the paper reported receiving payments from companies involved in cancer therapies). \n\nThe paper, published Tuesday in JAMA, found that the death rate from breast cancer had fallen to 27 per 100,000 women in 2019 from 48 per 100,000 in 1975. That includes metastatic cancer, which counted for nearly 30 percent of the reduction in the breast cancer death rate. Breast cancer treatment has improved so much that it has become a bigger factor than screening in saving lives, said Ruth Etzioni, a biostatistician at the Fred Hutchinson Cancer Center. Death rates have even declined among women in their 40s, who generally did not have regular mammograms, said Dr. Mette Kalager, a professor of medicine at the University of Oslo and Oslo University Hospital, \"indicating a substantial effect of treatment,\" she said.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Cancer deaths in the United States are falling, with four million deaths prevented since 1991, according to the American Cancer Society's annual report. At the same time, the society reported that the number of new cancer cases had ticked up to more than two million in 2023, from 1.9 million in 2022. The New York Times: Cancer remains the second leading cause of death in the United States, after heart disease. Doctors believe that it is urgent to understand changes in the death rate, as well as changes in cancer diagnoses. The cancer society highlighted three chief factors in reduced cancer deaths: declines in smoking, early detection and greatly improved treatments. Breast cancer mortality is one area where treatment had a significant impact. In the 1980s and 1990s, metastatic breast cancer \"was regarded as a death sentence,\" said Donald Berry, a statistician at the University of Texas MD Anderson Cancer Center and an author of a new paper on breast cancer with Sylvia K. Plevritis of Stanford University and other researchers (several authors of the paper reported receiving payments from companies involved in cancer therapies). \n\nThe paper, published Tuesday in JAMA, found that the death rate from breast cancer had fallen to 27 per 100,000 women in 2019 from 48 per 100,000 in 1975. That includes metastatic cancer, which counted for nearly 30 percent of the reduction in the breast cancer death rate. Breast cancer treatment has improved so much that it has become a bigger factor than screening in saving lives, said Ruth Etzioni, a biostatistician at the Fred Hutchinson Cancer Center. Death rates have even declined among women in their 40s, who generally did not have regular mammograms, said Dr. Mette Kalager, a professor of medicine at the University of Oslo and Oslo University Hospital, \"indicating a substantial effect of treatment,\" she said.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/17/1655232/cancer-deaths-are-falling-but-there-may-be-an-asterisk?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-17T22:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-17T22:00:00+00:00", + "title": "OpenAI Must Defend ChatGPT Fabrications After Failing To Defeat Libel Suit", + "link": "https://yro.slashdot.org/story/24/01/17/2136221/openai-must-defend-chatgpt-fabrications-after-failing-to-defeat-libel-suit?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-17T22:00:00+00:00", + "content": "An anonymous reader quotes a report from Ars Technica: OpenAI may finally have to answer for ChatGPT's \"hallucinations\" in court after a Georgia judge recently ruled against the tech company's motion to dismiss a radio host's defamation suit (PDF). OpenAI had argued that ChatGPT's output cannot be considered libel, partly because the chatbot output cannot be considered a \"publication,\" which is a key element of a defamation claim. In its motion to dismiss, OpenAI also argued that Georgia radio host Mark Walters could not prove that the company acted with actual malice or that anyone believed the allegedly libelous statements were true or that he was harmed by the alleged publication.\n \nIt's too early to say whether Judge Tracie Cason found OpenAI's arguments persuasive. In her order denying OpenAI's motion to dismiss, which MediaPost shared here, Cason did not specify how she arrived at her decision, saying only that she had \"carefully\" considered arguments and applicable laws. There may be some clues as to how Cason reached her decision in a court filing (PDF) from John Monroe, attorney for Walters, when opposing the motion to dismiss last year. Monroe had argued that OpenAI improperly moved to dismiss the lawsuit by arguing facts that have yet to be proven in court. If OpenAI intended the court to rule on those arguments, Monroe suggested that a motion for summary judgment would have been the proper step at this stage in the proceedings, not a motion to dismiss.\n \nHad OpenAI gone that route, though, Walters would have had an opportunity to present additional evidence. To survive a motion to dismiss, all Walters had to do was show that his complaint was reasonably supported by facts, Monroe argued. Failing to convince the court that Walters had no case, OpenAI's legal theories regarding its liability for ChatGPT's \"hallucinations\" will now likely face their first test in court. \"We are pleased the court denied the motion to dismiss so that the parties will have an opportunity to explore, and obtain a decision on, the merits of the case,\" Monroe told Ars. \"Walters sued OpenAI after a journalist, Fred Riehl, warned him that in response to a query, ChatGPT had fabricated an entire lawsuit,\" notes Ars. \"Generating an entire complaint with an erroneous case number, ChatGPT falsely claimed that Walters had been accused of defrauding and embezzling funds from the Second Amendment Foundation.\"\n \n\"With the lawsuit moving forward, curious chatbot users everywhere may finally get the answer to a question that has been unclear since ChatGPT quickly became the fastest-growing consumer application of all time after its launch in November 2022: Will ChatGPT's hallucinations be allowed to ruin lives?\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Ars Technica: OpenAI may finally have to answer for ChatGPT's \"hallucinations\" in court after a Georgia judge recently ruled against the tech company's motion to dismiss a radio host's defamation suit (PDF). OpenAI had argued that ChatGPT's output cannot be considered libel, partly because the chatbot output cannot be considered a \"publication,\" which is a key element of a defamation claim. In its motion to dismiss, OpenAI also argued that Georgia radio host Mark Walters could not prove that the company acted with actual malice or that anyone believed the allegedly libelous statements were true or that he was harmed by the alleged publication.\n \nIt's too early to say whether Judge Tracie Cason found OpenAI's arguments persuasive. In her order denying OpenAI's motion to dismiss, which MediaPost shared here, Cason did not specify how she arrived at her decision, saying only that she had \"carefully\" considered arguments and applicable laws. There may be some clues as to how Cason reached her decision in a court filing (PDF) from John Monroe, attorney for Walters, when opposing the motion to dismiss last year. Monroe had argued that OpenAI improperly moved to dismiss the lawsuit by arguing facts that have yet to be proven in court. If OpenAI intended the court to rule on those arguments, Monroe suggested that a motion for summary judgment would have been the proper step at this stage in the proceedings, not a motion to dismiss.\n \nHad OpenAI gone that route, though, Walters would have had an opportunity to present additional evidence. To survive a motion to dismiss, all Walters had to do was show that his complaint was reasonably supported by facts, Monroe argued. Failing to convince the court that Walters had no case, OpenAI's legal theories regarding its liability for ChatGPT's \"hallucinations\" will now likely face their first test in court. \"We are pleased the court denied the motion to dismiss so that the parties will have an opportunity to explore, and obtain a decision on, the merits of the case,\" Monroe told Ars. \"Walters sued OpenAI after a journalist, Fred Riehl, warned him that in response to a query, ChatGPT had fabricated an entire lawsuit,\" notes Ars. \"Generating an entire complaint with an erroneous case number, ChatGPT falsely claimed that Walters had been accused of defrauding and embezzling funds from the Second Amendment Foundation.\"\n \n\"With the lawsuit moving forward, curious chatbot users everywhere may finally get the answer to a question that has been unclear since ChatGPT quickly became the fastest-growing consumer application of all time after its launch in November 2022: Will ChatGPT's hallucinations be allowed to ruin lives?\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/17/2136221/openai-must-defend-chatgpt-fabrications-after-failing-to-defeat-libel-suit?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-17T22:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-17T21:40:00+00:00", + "title": "Samsung Is Making a Smart Ring", + "link": "https://tech.slashdot.org/story/24/01/17/2124251/samsung-is-making-a-smart-ring?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-17T21:40:00+00:00", + "content": "Samsung announced it's working on a smart ring, describing it as a \"powerful and accessible\" health and wellness device. The Verge reports: Outside of a brief video showing off what the Galaxy Ring looks like, Samsung didn't share much more about the ring. The company didn't say when the device is coming out or what it might cost, for example. [...] Given today's focus on AI features for Samsung's new Galaxy smartphones, I'm guessing that Samsung will tout some AI-powered tools for the Galaxy Ring at some point, too. Hopefully Samsung doesn't wait too long to share more.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Samsung announced it's working on a smart ring, describing it as a \"powerful and accessible\" health and wellness device. The Verge reports: Outside of a brief video showing off what the Galaxy Ring looks like, Samsung didn't share much more about the ring. The company didn't say when the device is coming out or what it might cost, for example. [...] Given today's focus on AI features for Samsung's new Galaxy smartphones, I'm guessing that Samsung will tout some AI-powered tools for the Galaxy Ring at some point, too. Hopefully Samsung doesn't wait too long to share more.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/17/2124251/samsung-is-making-a-smart-ring?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-17T21:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-17T21:20:00+00:00", + "title": "Samsung Announces New Galaxy S24 Lineup With AI-Powered Photo Editing, Search Features", + "link": "https://mobile.slashdot.org/story/24/01/17/2118256/samsung-announces-new-galaxy-s24-lineup-with-ai-powered-photo-editing-search-features?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-17T21:20:00+00:00", + "content": "Samsung announced its new flagship Galaxy S24 smartphone lineup today, with loads of new artificial intelligence features. CNBC reports: For Samsung's top-tier S24 Ultra, which is the company's biggest of the three devices and comes with punchier specs and features, Samsung is using a version of Qualcomm's latest Snapdragon Series 8 Gen 3 optimized for Galaxy. The company is using a mix of Qualcomm systems-on-chips (SoCs) and its own Exynos chipset for its S24 and S24+ models. [...] The Samsung Galaxy S24 Ultra is the main event for most tech gadget enthusiasts -- and, for the most part, it isn't a whole lot different to the Galaxy S23 Ultra looks-wise. That's because Samsung isn't changing an awful lot with the hardware. It still comes in the same size as its predecessor -- the display is 6.8 inches, measured diagonally, though the phone is flatter this time round. The S23 Ultra had more curvature to it. The big upgrade to the external hardware with this model is that it's cased in titanium, so it's a lot sturdier than the S23 Ultra.\n \nThe main difference this time round is what's inside: Samsung is going big on artificial intelligence. A key focus for Samsung, like other smartphone makers, now is on \"on-demand\" AI -- or, the ability to carry out AI workloads directly on a device, rather than over the cloud. Samsung said its new Galaxy S24 Ultra will come with a bunch of new AI features, a lot of which is being powered by Qualcomm's Snapdragon 8 Gen 3 chipset for mobile, which is tailored for AI devices. One feature Samsung's loading into the Galaxy S24 range is the ability to circle locations or items a user is directing their camera at, or on a picture they've taken, and then look up results on what those things are. So, for instance, if you see a landmark or a shoe you want to buy, you can make a circle around that object and then the AI shows you appropriate results on Google.\n \nAnother feature Samsung touted is the ability to use AI to edit photos. So users can edit reflections out of pictures they've taken, for instance if you took a picture of yourself in front of a window. Or you can move a person from one side of the room to another by dragging them from left to right. Samsung also showcased live transcription features with its latest smartphones. When calling someone who's speaking in French, for instance, a user can pull up a transcription that's being fed through to them in real time. You can also record a conversation between two people and get it transcribed, while the AI assigns a label to each person speaking, similar to transcription products like Otter AI. Samsung is also incorporating AI watermarking into these features, helping to combat misinformation and copyright infringement. \"So when a Galaxy S24 user uses AI to modify a photo, Samsung will keep a log of what was changed with AI and store it in the metadata,\" reports CNBC. \"It'll also have an icon in the bottom left corner to show that the image has been edited using AI, kind of like a watermark.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Samsung announced its new flagship Galaxy S24 smartphone lineup today, with loads of new artificial intelligence features. CNBC reports: For Samsung's top-tier S24 Ultra, which is the company's biggest of the three devices and comes with punchier specs and features, Samsung is using a version of Qualcomm's latest Snapdragon Series 8 Gen 3 optimized for Galaxy. The company is using a mix of Qualcomm systems-on-chips (SoCs) and its own Exynos chipset for its S24 and S24+ models. [...] The Samsung Galaxy S24 Ultra is the main event for most tech gadget enthusiasts -- and, for the most part, it isn't a whole lot different to the Galaxy S23 Ultra looks-wise. That's because Samsung isn't changing an awful lot with the hardware. It still comes in the same size as its predecessor -- the display is 6.8 inches, measured diagonally, though the phone is flatter this time round. The S23 Ultra had more curvature to it. The big upgrade to the external hardware with this model is that it's cased in titanium, so it's a lot sturdier than the S23 Ultra.\n \nThe main difference this time round is what's inside: Samsung is going big on artificial intelligence. A key focus for Samsung, like other smartphone makers, now is on \"on-demand\" AI -- or, the ability to carry out AI workloads directly on a device, rather than over the cloud. Samsung said its new Galaxy S24 Ultra will come with a bunch of new AI features, a lot of which is being powered by Qualcomm's Snapdragon 8 Gen 3 chipset for mobile, which is tailored for AI devices. One feature Samsung's loading into the Galaxy S24 range is the ability to circle locations or items a user is directing their camera at, or on a picture they've taken, and then look up results on what those things are. So, for instance, if you see a landmark or a shoe you want to buy, you can make a circle around that object and then the AI shows you appropriate results on Google.\n \nAnother feature Samsung touted is the ability to use AI to edit photos. So users can edit reflections out of pictures they've taken, for instance if you took a picture of yourself in front of a window. Or you can move a person from one side of the room to another by dragging them from left to right. Samsung also showcased live transcription features with its latest smartphones. When calling someone who's speaking in French, for instance, a user can pull up a transcription that's being fed through to them in real time. You can also record a conversation between two people and get it transcribed, while the AI assigns a label to each person speaking, similar to transcription products like Otter AI. Samsung is also incorporating AI watermarking into these features, helping to combat misinformation and copyright infringement. \"So when a Galaxy S24 user uses AI to modify a photo, Samsung will keep a log of what was changed with AI and store it in the metadata,\" reports CNBC. \"It'll also have an icon in the bottom left corner to show that the image has been edited using AI, kind of like a watermark.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://mobile.slashdot.org/story/24/01/17/2118256/samsung-announces-new-galaxy-s24-lineup-with-ai-powered-photo-editing-search-features?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-17T21:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-17T20:40:00+00:00", + "title": "Epic Plans To Contest Apple's 'Bad-Faith' Compliance With Court Ruling Over App Store", + "link": "https://apple.slashdot.org/story/24/01/17/1748250/epic-plans-to-contest-apples-bad-faith-compliance-with-court-ruling-over-app-store?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-17T20:40:00+00:00", + "content": "An anonymous reader shares a report: Fortnite maker Epic Games is not happy about how Apple intends to comply with a district court's injunction that permitted app developers to direct users to their own websites and payment platforms -- a court order that came into effect following the Supreme Court's decision to not hear the Apple antitrust case, leaving the current ruling to stand. Though Apple had largely won the case, as the court decided it was not a monopolist, a judge ruled that app makers should be able to steer their customers to the web from links or buttons inside their apps, something that forced Apple to change its App Store rules. \n\nBut Apple's compliance doesn't give app makers the victory they had hoped, as the tech giant aims to still charge commissions on purchases made outside of apps -- a decision Epic aims to challenge in court. According to statements made by Epic Games CEO Tim Sweeney, shared on X, Apple's \"bad-faith\" compliance undermines the judge's order that would have allowed buttons or external links \"in addition to [in-app purchases.]\" The Ninth Circuit District Court had ruled on one count of out ten in favor of Epic in its decision, finding that Apple violated California's Unfair Competition law. The decision meant Apple had to remove the \"anti-steering\" clause from its agreement with App Store developers. This clause for years had prevented app developers from directing their customers to other ways to pay for in-app purchases or subscriptions from inside their apps, leading to confusing screens or broken features, where customers would have to figure out on their own how to make the necessary purchases from the developer's website.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader shares a report: Fortnite maker Epic Games is not happy about how Apple intends to comply with a district court's injunction that permitted app developers to direct users to their own websites and payment platforms -- a court order that came into effect following the Supreme Court's decision to not hear the Apple antitrust case, leaving the current ruling to stand. Though Apple had largely won the case, as the court decided it was not a monopolist, a judge ruled that app makers should be able to steer their customers to the web from links or buttons inside their apps, something that forced Apple to change its App Store rules. \n\nBut Apple's compliance doesn't give app makers the victory they had hoped, as the tech giant aims to still charge commissions on purchases made outside of apps -- a decision Epic aims to challenge in court. According to statements made by Epic Games CEO Tim Sweeney, shared on X, Apple's \"bad-faith\" compliance undermines the judge's order that would have allowed buttons or external links \"in addition to [in-app purchases.]\" The Ninth Circuit District Court had ruled on one count of out ten in favor of Epic in its decision, finding that Apple violated California's Unfair Competition law. The decision meant Apple had to remove the \"anti-steering\" clause from its agreement with App Store developers. This clause for years had prevented app developers from directing their customers to other ways to pay for in-app purchases or subscriptions from inside their apps, leading to confusing screens or broken features, where customers would have to figure out on their own how to make the necessary purchases from the developer's website.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://apple.slashdot.org/story/24/01/17/1748250/epic-plans-to-contest-apples-bad-faith-compliance-with-court-ruling-over-app-store?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-17T20:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-17T20:00:00+00:00", + "title": "Amazon is Working on a Paid Version of Alexa", + "link": "https://slashdot.org/story/24/01/17/1754244/amazon-is-working-on-a-paid-version-of-alexa?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-17T20:00:00+00:00", + "content": "Amazon is revamping its Alexa voice assistant as it prepares to launch a new paid subscription plan this year, Business Insider reported Wednesday, citing internal documents and people familiar with the matter. But the change is causing internal conflict and may lead to further delay, the report added. From the report: Tentatively called \"Alexa Plus,\" the paid version of Alexa is intended to offer more conversational and personalized AI technology, said one of the documents obtained by Business Insider. The team is working towards a June 30 launch deadline, and has been testing the underlying voice technology, dubbed \"Remarkable Alexa,\" with 15,000 external customers, these people said. \n\nBut the quality of the new Alexa's answers is still falling short of expectations, often sharing inaccurate information, external tests have found. Amazon is now going through a major overhaul of Alexa's technology stack to address this issue, though the team is experiencing some discord.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Amazon is revamping its Alexa voice assistant as it prepares to launch a new paid subscription plan this year, Business Insider reported Wednesday, citing internal documents and people familiar with the matter. But the change is causing internal conflict and may lead to further delay, the report added. From the report: Tentatively called \"Alexa Plus,\" the paid version of Alexa is intended to offer more conversational and personalized AI technology, said one of the documents obtained by Business Insider. The team is working towards a June 30 launch deadline, and has been testing the underlying voice technology, dubbed \"Remarkable Alexa,\" with 15,000 external customers, these people said. \n\nBut the quality of the new Alexa's answers is still falling short of expectations, often sharing inaccurate information, external tests have found. Amazon is now going through a major overhaul of Alexa's technology stack to address this issue, though the team is experiencing some discord.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/17/1754244/amazon-is-working-on-a-paid-version-of-alexa?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-17T20:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-17T19:20:00+00:00", + "title": "Google's Circle To Search is a Dead-Simple Way To Find What You're Looking For", + "link": "https://tech.slashdot.org/story/24/01/17/1846200/googles-circle-to-search-is-a-dead-simple-way-to-find-what-youre-looking-for?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-17T19:20:00+00:00", + "content": "It's hard to think of a more self-explanatory feature than Circle to Search: it does exactly what it sounds like it does. You circle something on your phone screen, tap a button, and voila! A page full of Google search results telling you about the thing you circled. The Verge: The new feature is launching on five phones to start -- the three members of Samsung's brand-new Galaxy S24 series, as well as Google's Pixel 8 and 8 Pro -- before it comes to other \"select, premium\" Android phones. Well, maybe it does need a little explaining. If the feature sounds familiar, you might be thinking of Google Lens, which is similar. But instead of opening up the Google app, you can use Circle to Search anywhere on your device. Just long-press the home button if you're using three-button navigation -- or the navigation handle if you're using gesture nav -- and it will appear on top of whatever app or screen you're currently using. You can circle, highlight, or tap a subject, including text as well as images.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "It's hard to think of a more self-explanatory feature than Circle to Search: it does exactly what it sounds like it does. You circle something on your phone screen, tap a button, and voila! A page full of Google search results telling you about the thing you circled. The Verge: The new feature is launching on five phones to start -- the three members of Samsung's brand-new Galaxy S24 series, as well as Google's Pixel 8 and 8 Pro -- before it comes to other \"select, premium\" Android phones. Well, maybe it does need a little explaining. If the feature sounds familiar, you might be thinking of Google Lens, which is similar. But instead of opening up the Google app, you can use Circle to Search anywhere on your device. Just long-press the home button if you're using three-button navigation -- or the navigation handle if you're using gesture nav -- and it will appear on top of whatever app or screen you're currently using. You can circle, highlight, or tap a subject, including text as well as images.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/17/1846200/googles-circle-to-search-is-a-dead-simple-way-to-find-what-youre-looking-for?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-17T19:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T17:26:00+00:00", + "title": "Apple's App Store Rule Changes Draw Sharp Rebuke From Critics", + "link": "https://apple.slashdot.org/story/24/01/18/1727204/apples-app-store-rule-changes-draw-sharp-rebuke-from-critics?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T17:26:00+00:00", + "content": "Apple has updated its long-standing App Store guidelines, giving developers the option to let users make in-app purchases for iOS apps outside of its App Store. But the changes still haven't won over one of the company's longtime critics. From a report: Under the new rules, app developers can provide customers with links to third-party purchase options for their apps, but they must still pay Apple fees of either 12% or 27%. Spotify, one of Apple's biggest critics, isn't a fan of the changes. In a statement, the music streaming service slammed the new rules. \"Once again, Apple has demonstrated that they will stop at nothing to protect the profits they exact on the backs of developers and consumers under their app store monopoly,\" the company said in a statement. \"Their latest move in the US -- imposing a 27% fee for transactions made outside of an app on a developer's website -- is outrageous and flies in the face of the court's efforts to enable greater competition and user choice.\" Tech columnist John Gruber, writing at DaringFireball: Maybe the cynics are right! Let's just concede that they are, and that Apple will only make decisions here that benefit its bottom line. My argument remains that Apple should not be pursuing this plan for complying with the anti-steering injunction by collecting commissions from web sales that initiate in-app. Whatever revenue Apple would lose to non-commissioned web sales (for non-games) is not worth the hit they are taking to the company's brand and reputationâ--âthis move reeks of greed and avariceâ--ânor the increased ire and scrutiny of regulators and legislators on the \"anti-Big-Tech\" hunt. \n\nApple should have been looking for ways to lessen regulatory and legislative pressure over the past few years, and in today's climate that's more true than ever. But instead, their stance has seemingly been \"Bring it on.\" Confrontational, not conciliatory, conceding not an inch. Rather than take a sure win with most of what they could want, Apple is seemingly hell-bent on trying to keep everything. To win in chess all you need is to capture your opponent's king. Apple seemingly wants to capture every last piece on the boardâ--âeven while playing in a tournament where the referees (regulators) are known to look askance at blatant poor sportsmanship (greed). \n\nApple's calculus should be to balance its natural desire to book large amounts of revenue from the App Store with policies that to some degree placate, rather than antagonize, regulators and legislators. No matter what the sport, no matter what the letter of the rulebook says, it's never a good idea to piss off the refs.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Apple has updated its long-standing App Store guidelines, giving developers the option to let users make in-app purchases for iOS apps outside of its App Store. But the changes still haven't won over one of the company's longtime critics. From a report: Under the new rules, app developers can provide customers with links to third-party purchase options for their apps, but they must still pay Apple fees of either 12% or 27%. Spotify, one of Apple's biggest critics, isn't a fan of the changes. In a statement, the music streaming service slammed the new rules. \"Once again, Apple has demonstrated that they will stop at nothing to protect the profits they exact on the backs of developers and consumers under their app store monopoly,\" the company said in a statement. \"Their latest move in the US -- imposing a 27% fee for transactions made outside of an app on a developer's website -- is outrageous and flies in the face of the court's efforts to enable greater competition and user choice.\" Tech columnist John Gruber, writing at DaringFireball: Maybe the cynics are right! Let's just concede that they are, and that Apple will only make decisions here that benefit its bottom line. My argument remains that Apple should not be pursuing this plan for complying with the anti-steering injunction by collecting commissions from web sales that initiate in-app. Whatever revenue Apple would lose to non-commissioned web sales (for non-games) is not worth the hit they are taking to the company's brand and reputation\u00e2--\u00e2this move reeks of greed and avarice\u00e2--\u00e2nor the increased ire and scrutiny of regulators and legislators on the \"anti-Big-Tech\" hunt. \n\nApple should have been looking for ways to lessen regulatory and legislative pressure over the past few years, and in today's climate that's more true than ever. But instead, their stance has seemingly been \"Bring it on.\" Confrontational, not conciliatory, conceding not an inch. Rather than take a sure win with most of what they could want, Apple is seemingly hell-bent on trying to keep everything. To win in chess all you need is to capture your opponent's king. Apple seemingly wants to capture every last piece on the board\u00e2--\u00e2even while playing in a tournament where the referees (regulators) are known to look askance at blatant poor sportsmanship (greed). \n\nApple's calculus should be to balance its natural desire to book large amounts of revenue from the App Store with policies that to some degree placate, rather than antagonize, regulators and legislators. No matter what the sport, no matter what the letter of the rulebook says, it's never a good idea to piss off the refs.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://apple.slashdot.org/story/24/01/18/1727204/apples-app-store-rule-changes-draw-sharp-rebuke-from-critics?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T17:26:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T16:40:00+00:00", + "title": "Google News Is Boosting Garbage AI-Generated Articles", + "link": "https://tech.slashdot.org/story/24/01/18/1621206/google-news-is-boosting-garbage-ai-generated-articles?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T16:40:00+00:00", + "content": "Google News is boosting sites that rip-off other outlets by using AI to rapidly churn out content, 404 Media has found. From the report: Google told 404 Media that although it tries to address spam on Google News, the company ultimately does not focus on whether a news article was written by an AI or a human, opening the way for more AI-generated content making its way onto Google News. The presence of AI-generated content on Google News signals two things: first, the black box nature of Google News, with entry into Google News' rankings in the first place an opaque, but apparently gameable, system. Second, is how Google may not be ready for moderating its News service in the age of consumer-access AI, where essentially anyone is able to churn out a mass of content with little to no regard for its quality or originality.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google News is boosting sites that rip-off other outlets by using AI to rapidly churn out content, 404 Media has found. From the report: Google told 404 Media that although it tries to address spam on Google News, the company ultimately does not focus on whether a news article was written by an AI or a human, opening the way for more AI-generated content making its way onto Google News. The presence of AI-generated content on Google News signals two things: first, the black box nature of Google News, with entry into Google News' rankings in the first place an opaque, but apparently gameable, system. Second, is how Google may not be ready for moderating its News service in the age of consumer-access AI, where essentially anyone is able to churn out a mass of content with little to no regard for its quality or originality.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/18/1621206/google-news-is-boosting-garbage-ai-generated-articles?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T16:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T16:00:00+00:00", + "title": "OpenAI Announces First Partnership With a University", + "link": "https://news.slashdot.org/story/24/01/18/1559201/openai-announces-first-partnership-with-a-university?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T16:00:00+00:00", + "content": "OpenAI on Thursday announced its first partnership with a higher education institution. Starting in February, Arizona State University will have full access to ChatGPT Enterprise and plans to use it for coursework, tutoring, research and more. From a report: The partnership has been in the works for at least six months, when ASU chief information officer Lev Gonick first visited OpenAI's HQ, which was preceded by the university faculty and staff's earlier use of ChatGPT and other artificial intelligence tools, Gonick told CNBC in an interview. ChatGPT Enterprise, which debuted in August, is ChatGPT's business tier and includes access to GPT-4 with no usage caps, performance that's up to two times faster than previous versions and API credits. \n\nWith the OpenAI partnership, ASU plans to build a personalized AI tutor for students, not only for certain courses but also for study topics. STEM subjects are a focus and are \"the make-or-break subjects for a lot of higher education,\" Gonick said. The university will also use the tool in ASU's largest course, Freshman Composition, to offer students writing help. ASU also plans to use ChatGPT Enterprise to develop AI avatars as a \"creative buddy\" for studying certain subjects, like bots that can sing or write poetry about biology, for instance.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "OpenAI on Thursday announced its first partnership with a higher education institution. Starting in February, Arizona State University will have full access to ChatGPT Enterprise and plans to use it for coursework, tutoring, research and more. From a report: The partnership has been in the works for at least six months, when ASU chief information officer Lev Gonick first visited OpenAI's HQ, which was preceded by the university faculty and staff's earlier use of ChatGPT and other artificial intelligence tools, Gonick told CNBC in an interview. ChatGPT Enterprise, which debuted in August, is ChatGPT's business tier and includes access to GPT-4 with no usage caps, performance that's up to two times faster than previous versions and API credits. \n\nWith the OpenAI partnership, ASU plans to build a personalized AI tutor for students, not only for certain courses but also for study topics. STEM subjects are a focus and are \"the make-or-break subjects for a lot of higher education,\" Gonick said. The university will also use the tool in ASU's largest course, Freshman Composition, to offer students writing help. ASU also plans to use ChatGPT Enterprise to develop AI avatars as a \"creative buddy\" for studying certain subjects, like bots that can sing or write poetry about biology, for instance.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/18/1559201/openai-announces-first-partnership-with-a-university?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T16:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T15:28:00+00:00", + "title": "Google Says Russian Espionage Crew Behind New Malware Campaign", + "link": "https://tech.slashdot.org/story/24/01/18/1528230/google-says-russian-espionage-crew-behind-new-malware-campaign?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T15:28:00+00:00", + "content": "Google researchers say they have evidence that a notorious Russian-linked hacking group -- tracked as \"Cold River\" -- is evolving its tactics beyond phishing to target victims with data-stealing malware. From a report: Cold River, also known as \"Callisto Group\" and \"Star Blizzard,\" is known for conducting long-running espionage campaigns against NATO countries, particularly the United States and the United Kingdom. Researchers believe the group's activities, which typically target high-profile individuals and organizations involved in international affairs and defense, suggest close ties to the Russian state. U.S. prosecutors in December indicted two Russian nationals linked to the group. \n\nGoogle's Threat Analysis Group (TAG) said in new research this week that it has observed Cold River ramping up its activity in recent months and using new tactics capable of causing more disruption to its victims, predominantly targets in Ukraine and its NATO allies, academic institutions and non-government organizations. These latest findings come soon after Microsoft researchers reported that the Russia-aligned hacking group had improved its ability to evade detection. In research shared with TechCrunch ahead of its publication on Thursday, TAG researchers say that Cold River has continued to shift beyond its usual tactic of phishing for credentials to delivering malware via campaigns using PDF documents as lures.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google researchers say they have evidence that a notorious Russian-linked hacking group -- tracked as \"Cold River\" -- is evolving its tactics beyond phishing to target victims with data-stealing malware. From a report: Cold River, also known as \"Callisto Group\" and \"Star Blizzard,\" is known for conducting long-running espionage campaigns against NATO countries, particularly the United States and the United Kingdom. Researchers believe the group's activities, which typically target high-profile individuals and organizations involved in international affairs and defense, suggest close ties to the Russian state. U.S. prosecutors in December indicted two Russian nationals linked to the group. \n\nGoogle's Threat Analysis Group (TAG) said in new research this week that it has observed Cold River ramping up its activity in recent months and using new tactics capable of causing more disruption to its victims, predominantly targets in Ukraine and its NATO allies, academic institutions and non-government organizations. These latest findings come soon after Microsoft researchers reported that the Russia-aligned hacking group had improved its ability to evade detection. In research shared with TechCrunch ahead of its publication on Thursday, TAG researchers say that Cold River has continued to shift beyond its usual tactic of phishing for credentials to delivering malware via campaigns using PDF documents as lures.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/18/1528230/google-says-russian-espionage-crew-behind-new-malware-campaign?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T15:28:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T14:40:00+00:00", + "title": "Google CEO Tells Employees To Expect More Job Cuts This Year", + "link": "https://tech.slashdot.org/story/24/01/18/1354208/google-ceo-tells-employees-to-expect-more-job-cuts-this-year?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T14:40:00+00:00", + "content": "Google has laid off over a thousand employees across various departments since January 10th. CEO Sundar Pichai's message is to brace for more cuts. The Verge: \"We have ambitious goals and will be investing in our big priorities this year,\" Pichai told all Google employees on Wednesday in an internal memo that was shared with me. \"The reality is that to create the capacity for this investment, we have to make tough choices.\" So far, those \"tough choices\" have included layoffs and reorganizations in Google's hardware, ad sales, search, shopping, maps, policy, core engineering, and YouTube teams. \n\n\"These role eliminations are not at the scale of last year's reductions, and will not touch every team,\" Pichai wrote in his memo -- a reference to when Google cut 12,000 jobs this time last year. \"But I know it's very difficult to see colleagues and teams impacted.\" Pichai said the layoffs this year were about \"removing layers to simplify execution and drive velocity in some areas.\" He confirmed what many inside Google have been fearing: that more \"role eliminations\" are to come. \"Many of these changes are already announced, though to be upfront, some teams will continue to make specific resource allocation decisions throughout the year where needed, and some roles may be impacted,\" he wrote.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google has laid off over a thousand employees across various departments since January 10th. CEO Sundar Pichai's message is to brace for more cuts. The Verge: \"We have ambitious goals and will be investing in our big priorities this year,\" Pichai told all Google employees on Wednesday in an internal memo that was shared with me. \"The reality is that to create the capacity for this investment, we have to make tough choices.\" So far, those \"tough choices\" have included layoffs and reorganizations in Google's hardware, ad sales, search, shopping, maps, policy, core engineering, and YouTube teams. \n\n\"These role eliminations are not at the scale of last year's reductions, and will not touch every team,\" Pichai wrote in his memo -- a reference to when Google cut 12,000 jobs this time last year. \"But I know it's very difficult to see colleagues and teams impacted.\" Pichai said the layoffs this year were about \"removing layers to simplify execution and drive velocity in some areas.\" He confirmed what many inside Google have been fearing: that more \"role eliminations\" are to come. \"Many of these changes are already announced, though to be upfront, some teams will continue to make specific resource allocation decisions throughout the year where needed, and some roles may be impacted,\" he wrote.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/18/1354208/google-ceo-tells-employees-to-expect-more-job-cuts-this-year?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T14:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T14:00:00+00:00", + "title": "Microsoft's Bing Market Share Barely Budged With ChatGPT Add-On", + "link": "https://tech.slashdot.org/story/24/01/18/1340247/microsofts-bing-market-share-barely-budged-with-chatgpt-add-on?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T14:00:00+00:00", + "content": "When Microsoft announced it was baking ChatGPT into its Bing search engine last February, bullish analysts declared the move an \"iPhone moment\" that could upend the search market and chip away at Google's dominance. \"The entire search category is now going through a sea change,\" Chief Executive Officer Satya Nadella said at the time. \"That opportunity comes very few times.\" Almost a year later, the sea has yet to change. Bloomberg: The new Bing -- powered by OpenAI's generative AI technology -- dazzled internet users with conversational replies to queries asked in a natural way. But Microsoft's search engine ended 2023 with just 3.4% of the global search market, according to data analytics firm StatCounter, up less than 1 percentage point since the ChatGPT announcement. \n\nBing has long struggled for relevance and attracted more mockery than recognition over the years as a serious alternative to Google. Multiple rebrandings and redesigns since its 2009 debut did little to boost Bing's popularity. A month before Microsoft infused the search engine with generative AI, people were spending 33% less time using it than they had 12 months earlier, according to SensorTower. The ChatGPT reboot at least helped reverse those declines. In the second quarter of 2023, US monthly active users more than doubled year over year to 3.1 million, according to a Bloomberg Intelligence analysis of SensorTower mobile app data. Overall, users were spending 84% more time on the search engine, the data show. By year-end, Bing's monthly active users had increased steadily to 4.4 million, according to SensorTower.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "When Microsoft announced it was baking ChatGPT into its Bing search engine last February, bullish analysts declared the move an \"iPhone moment\" that could upend the search market and chip away at Google's dominance. \"The entire search category is now going through a sea change,\" Chief Executive Officer Satya Nadella said at the time. \"That opportunity comes very few times.\" Almost a year later, the sea has yet to change. Bloomberg: The new Bing -- powered by OpenAI's generative AI technology -- dazzled internet users with conversational replies to queries asked in a natural way. But Microsoft's search engine ended 2023 with just 3.4% of the global search market, according to data analytics firm StatCounter, up less than 1 percentage point since the ChatGPT announcement. \n\nBing has long struggled for relevance and attracted more mockery than recognition over the years as a serious alternative to Google. Multiple rebrandings and redesigns since its 2009 debut did little to boost Bing's popularity. A month before Microsoft infused the search engine with generative AI, people were spending 33% less time using it than they had 12 months earlier, according to SensorTower. The ChatGPT reboot at least helped reverse those declines. In the second quarter of 2023, US monthly active users more than doubled year over year to 3.1 million, according to a Bloomberg Intelligence analysis of SensorTower mobile app data. Overall, users were spending 84% more time on the search engine, the data show. By year-end, Bing's monthly active users had increased steadily to 4.4 million, according to SensorTower.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/18/1340247/microsofts-bing-market-share-barely-budged-with-chatgpt-add-on?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T14:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T13:00:00+00:00", + "title": "A Flaw In Millions of Apple, AMD, and Qualcomm GPUs Could Expose AI Data", + "link": "https://it.slashdot.org/story/24/01/18/0238237/a-flaw-in-millions-of-apple-amd-and-qualcomm-gpus-could-expose-ai-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T13:00:00+00:00", + "content": "An anonymous reader quotes a report from Wired: As more companies ramp up development of artificial intelligence systems, they are increasingly turning to graphics processing unit (GPU) chips for the computing power they need to run large language models (LLMs) and to crunch data quickly at massive scale. Between video game processing and AI, demand for GPUs has never been higher, and chipmakers are rushing to bolster supply. In new findings released today, though, researchers are highlighting a vulnerability in multiple brands and models of mainstream GPUs -- including Apple, Qualcomm, and AMD chips -- that could allow an attacker to steal large quantities of data from a GPU's memory. The silicon industry has spent years refining the security of central processing units, or CPUs, so they don't leak data in memory even when they are built to optimize for speed. However, since GPUs were designed for raw graphics processing power, they haven't been architected to the same degree with data privacy as a priority. As generative AI and other machine learning applications expand the uses of these chips, though, researchers from New York -- based security firm Trail of Bits say that vulnerabilities in GPUs are an increasingly urgent concern. \"There is a broader security concern about these GPUs not being as secure as they should be and leaking a significant amount of data,\" Heidy Khlaaf, Trail of Bits' engineering director for AI and machine learning assurance, tells WIRED. \"We're looking at anywhere from 5 megabytes to 180 megabytes. In the CPU world, even a bit is too much to reveal.\"\n \nTo exploit the vulnerability, which the researchers call LeftoverLocals, attackers would need to already have established some amount of operating system access on a target's device. Modern computers and servers are specifically designed to silo data so multiple users can share the same processing resources without being able to access each others' data. But a LeftoverLocals attack breaks down these walls. Exploiting the vulnerability would allow a hacker to exfiltrate data they shouldn't be able to access from the local memory of vulnerable GPUs, exposing whatever data happens to be there for the taking, which could include queries and responses generated by LLMs as well as the weights driving the response. In their proof of concept, as seen in the GIF below, the researchers demonstrate an attack where a target -- shown on the left -- asks the open source LLM Llama.cpp to provide details about WIRED magazine. Within seconds, the attacker's device -- shown on the right -- collects the majority of the response provided by the LLM by carrying out a LeftoverLocals attack on vulnerable GPU memory. The attack program the researchers created uses less than 10 lines of code. [...] Though exploiting the vulnerability would require some amount of existing access to targets' devices, the potential implications are significant given that it is common for highly motivated attackers to carry out hacks by chaining multiple vulnerabilities together. Furthermore, establishing \"initial access\" to a device is already necessary for many common types of digital attacks. The researchers did not find evidence that Nvidia, Intel, or Arm GPUs contain the LeftoverLocals vulnerability, but Apple, Qualcomm, and AMD all confirmed to WIRED that they are impacted. Here's what each of the affected companies had to say about the vulnerability, as reported by Wired:\n \nApple: An Apple spokesperson acknowledged LeftoverLocals and noted that the company shipped fixes with its latest M3 and A17 processors, which it unveiled at the end of 2023. This means that the vulnerability is seemingly still present in millions of existing iPhones, iPads, and MacBooks that depend on previous generations of Apple silicon. On January 10, the Trail of Bits researchers retested the vulnerability on a number of Apple devices. They found that Apple's M2 MacBook Air was still vulnerable, but the iPad Air 3rd generation A12 appeared to have been patched.\n\nQualcomm: A Qualcomm spokesperson told WIRED that the company is \"in the process\" of providing security updates to its customers, adding, \"We encourage end users to apply security updates as they become available from their device makers.\" The Trail of Bits researchers say Qualcomm confirmed it has released firmware patches for the vulnerability.\n\nAMD: AMD released a security advisory on Wednesday detailing its plans to offer fixes for LeftoverLocals. The protections will be \"optional mitigations\" released in March.\n\nGoogle: For its part, Google says in a statement that it \"is aware of this vulnerability impacting AMD, Apple, and Qualcomm GPUs. Google has released fixes for ChromeOS devices with impacted AMD and Qualcomm GPUs.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Wired: As more companies ramp up development of artificial intelligence systems, they are increasingly turning to graphics processing unit (GPU) chips for the computing power they need to run large language models (LLMs) and to crunch data quickly at massive scale. Between video game processing and AI, demand for GPUs has never been higher, and chipmakers are rushing to bolster supply. In new findings released today, though, researchers are highlighting a vulnerability in multiple brands and models of mainstream GPUs -- including Apple, Qualcomm, and AMD chips -- that could allow an attacker to steal large quantities of data from a GPU's memory. The silicon industry has spent years refining the security of central processing units, or CPUs, so they don't leak data in memory even when they are built to optimize for speed. However, since GPUs were designed for raw graphics processing power, they haven't been architected to the same degree with data privacy as a priority. As generative AI and other machine learning applications expand the uses of these chips, though, researchers from New York -- based security firm Trail of Bits say that vulnerabilities in GPUs are an increasingly urgent concern. \"There is a broader security concern about these GPUs not being as secure as they should be and leaking a significant amount of data,\" Heidy Khlaaf, Trail of Bits' engineering director for AI and machine learning assurance, tells WIRED. \"We're looking at anywhere from 5 megabytes to 180 megabytes. In the CPU world, even a bit is too much to reveal.\"\n \nTo exploit the vulnerability, which the researchers call LeftoverLocals, attackers would need to already have established some amount of operating system access on a target's device. Modern computers and servers are specifically designed to silo data so multiple users can share the same processing resources without being able to access each others' data. But a LeftoverLocals attack breaks down these walls. Exploiting the vulnerability would allow a hacker to exfiltrate data they shouldn't be able to access from the local memory of vulnerable GPUs, exposing whatever data happens to be there for the taking, which could include queries and responses generated by LLMs as well as the weights driving the response. In their proof of concept, as seen in the GIF below, the researchers demonstrate an attack where a target -- shown on the left -- asks the open source LLM Llama.cpp to provide details about WIRED magazine. Within seconds, the attacker's device -- shown on the right -- collects the majority of the response provided by the LLM by carrying out a LeftoverLocals attack on vulnerable GPU memory. The attack program the researchers created uses less than 10 lines of code. [...] Though exploiting the vulnerability would require some amount of existing access to targets' devices, the potential implications are significant given that it is common for highly motivated attackers to carry out hacks by chaining multiple vulnerabilities together. Furthermore, establishing \"initial access\" to a device is already necessary for many common types of digital attacks. The researchers did not find evidence that Nvidia, Intel, or Arm GPUs contain the LeftoverLocals vulnerability, but Apple, Qualcomm, and AMD all confirmed to WIRED that they are impacted. Here's what each of the affected companies had to say about the vulnerability, as reported by Wired:\n \nApple: An Apple spokesperson acknowledged LeftoverLocals and noted that the company shipped fixes with its latest M3 and A17 processors, which it unveiled at the end of 2023. This means that the vulnerability is seemingly still present in millions of existing iPhones, iPads, and MacBooks that depend on previous generations of Apple silicon. On January 10, the Trail of Bits researchers retested the vulnerability on a number of Apple devices. They found that Apple's M2 MacBook Air was still vulnerable, but the iPad Air 3rd generation A12 appeared to have been patched.\n\nQualcomm: A Qualcomm spokesperson told WIRED that the company is \"in the process\" of providing security updates to its customers, adding, \"We encourage end users to apply security updates as they become available from their device makers.\" The Trail of Bits researchers say Qualcomm confirmed it has released firmware patches for the vulnerability.\n\nAMD: AMD released a security advisory on Wednesday detailing its plans to offer fixes for LeftoverLocals. The protections will be \"optional mitigations\" released in March.\n\nGoogle: For its part, Google says in a statement that it \"is aware of this vulnerability impacting AMD, Apple, and Qualcomm GPUs. Google has released fixes for ChromeOS devices with impacted AMD and Qualcomm GPUs.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://it.slashdot.org/story/24/01/18/0238237/a-flaw-in-millions-of-apple-amd-and-qualcomm-gpus-could-expose-ai-data?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T13:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-19T07:00:00+00:00", + "title": "Greenland's Ice Sheet Melting Faster Than Scientists Previously Estimated, Study Finds", + "link": "https://news.slashdot.org/story/24/01/18/2332220/greenlands-ice-sheet-melting-faster-than-scientists-previously-estimated-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-19T07:00:00+00:00", + "content": "Scientists have underestimated recent mass loss from Greenland by as much as 20%, finds a new study published in the journal Nature. CBS News reports: Since 1985, Greenland's ice sheet has lost approximately 5,091 square kilometers of ice researchers found using satellite imagery. Scientists said earlier estimates did not track melting at the edges of the ice sheets, known as calving, which measures ice breaking off at the terminus of a glacier. Greenland's ice sheet loses about 193 square kilometers of ice per year, researchers found. Study co-author Chad Greene and his colleagues said they qualified the extent of calving, which increased the scope of ice mass lost.\n \nThey combined \"236,328 observations of glacier terminus positions\" compiled from various public data sets to capture monthly ice melt. Their measurements found that between 1985 and 2022, almost every glacier in Greenland experienced some level of loss. [...] Researchers in the study noted that \"this retreat does not appear to substantially contribute to sea level rise\" because most of the glacier margins the scientists measured were already underwater. The loss, however, may play a part in ocean circulation patterns, and how heat energy is distributed across the planet.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Scientists have underestimated recent mass loss from Greenland by as much as 20%, finds a new study published in the journal Nature. CBS News reports: Since 1985, Greenland's ice sheet has lost approximately 5,091 square kilometers of ice researchers found using satellite imagery. Scientists said earlier estimates did not track melting at the edges of the ice sheets, known as calving, which measures ice breaking off at the terminus of a glacier. Greenland's ice sheet loses about 193 square kilometers of ice per year, researchers found. Study co-author Chad Greene and his colleagues said they qualified the extent of calving, which increased the scope of ice mass lost.\n \nThey combined \"236,328 observations of glacier terminus positions\" compiled from various public data sets to capture monthly ice melt. Their measurements found that between 1985 and 2022, almost every glacier in Greenland experienced some level of loss. [...] Researchers in the study noted that \"this retreat does not appear to substantially contribute to sea level rise\" because most of the glacier margins the scientists measured were already underwater. The loss, however, may play a part in ocean circulation patterns, and how heat energy is distributed across the planet.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/18/2332220/greenlands-ice-sheet-melting-faster-than-scientists-previously-estimated-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-19T03:30:00+00:00", + "title": "80 Years Later, GCHQ Releases New Images of Nazi Code-Breaking Computer", + "link": "https://hardware.slashdot.org/story/24/01/18/233235/80-years-later-gchq-releases-new-images-of-nazi-code-breaking-computer?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-19T03:30:00+00:00", + "content": "An anonymous reader quotes a report from Ars Technica: On Thursday, UK's Government Communications Headquarters (GCHQ) announced the release of previously unseen images and documents related to Colossus, one of the first digital computers. The release marks the 80th anniversary of the code-breaking machines that significantly aided the Allied forces during World War II. While some in the public knew of the computers earlier (PDF), the UK did not formally acknowledge the project's existence until the 2000s.\n \nColossus was not one computer but a series of computers developed by British scientists between 1943 and 1945. These 2-meter-tall electronic beasts played an instrumental role in breaking the Lorenz cipher, a code used for communications between high-ranking German officials in occupied Europe. The computers were said to have allowed allies to \"read Hitler's mind,\" according to The Sydney Morning Herald. The technology behind Colossus was highly innovative for its time. Tommy Flowers, the engineer behind its construction, used over 2,500 vacuum tubes to create logic gates, a precursor to the semiconductor-based electronic circuits found in modern computers. While 1945's ENIAC was long considered the clear front-runner in digital computing, the revelation of Colossus' earlier existence repositioned it in computing history. (However, it's important to note that ENIAC was a general-purpose computer, and Colossus was not.)\n \nGCHQ's public sharing of archival documents includes several photos of the computer at different periods and a letter discussing Tommy Flowers' groundbreaking work that references the interception of \"rather alarming German instructions.\" Following the war, the UK government issued orders for the destruction of most Colossus machines, and Flowers was required to turn over all related documentation. The GCHQ claims that the Colossus tech \"was so effective, its functionality was still in use by us until the early 1960s.\" In the GCHQ press release, Director Anne Keast-Butler paid tribute to Colossus' place in the UK's lineage of technological innovation: \"The creativity, ingenuity and dedication shown by Tommy Flowers and his team to keep the country safe were as crucial to GCHQ then as today.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Ars Technica: On Thursday, UK's Government Communications Headquarters (GCHQ) announced the release of previously unseen images and documents related to Colossus, one of the first digital computers. The release marks the 80th anniversary of the code-breaking machines that significantly aided the Allied forces during World War II. While some in the public knew of the computers earlier (PDF), the UK did not formally acknowledge the project's existence until the 2000s.\n \nColossus was not one computer but a series of computers developed by British scientists between 1943 and 1945. These 2-meter-tall electronic beasts played an instrumental role in breaking the Lorenz cipher, a code used for communications between high-ranking German officials in occupied Europe. The computers were said to have allowed allies to \"read Hitler's mind,\" according to The Sydney Morning Herald. The technology behind Colossus was highly innovative for its time. Tommy Flowers, the engineer behind its construction, used over 2,500 vacuum tubes to create logic gates, a precursor to the semiconductor-based electronic circuits found in modern computers. While 1945's ENIAC was long considered the clear front-runner in digital computing, the revelation of Colossus' earlier existence repositioned it in computing history. (However, it's important to note that ENIAC was a general-purpose computer, and Colossus was not.)\n \nGCHQ's public sharing of archival documents includes several photos of the computer at different periods and a letter discussing Tommy Flowers' groundbreaking work that references the interception of \"rather alarming German instructions.\" Following the war, the UK government issued orders for the destruction of most Colossus machines, and Flowers was required to turn over all related documentation. The GCHQ claims that the Colossus tech \"was so effective, its functionality was still in use by us until the early 1960s.\" In the GCHQ press release, Director Anne Keast-Butler paid tribute to Colossus' place in the UK's lineage of technological innovation: \"The creativity, ingenuity and dedication shown by Tommy Flowers and his team to keep the country safe were as crucial to GCHQ then as today.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/24/01/18/233235/80-years-later-gchq-releases-new-images-of-nazi-code-breaking-computer?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T03:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-19T02:02:00+00:00", + "title": "BMW Will Employ Figure's Humanoid Robot At South Carolina Plant", + "link": "https://hardware.slashdot.org/story/24/01/18/2313227/bmw-will-employ-figures-humanoid-robot-at-south-carolina-plant?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-19T02:02:00+00:00", + "content": "Figure's first humanoid robot will be coming to a BMW manufacturing facility in South Carolina. TechCrunch reports: BMW has not disclosed how many Figure 01 models it will deploy initially. Nor do we know precisely what jobs the robot will be tasked with when it starts work. Figure did, however, confirm with TechCrunch that it is beginning with an initial five tasks, which will be rolled out one at a time. While folks in the space have been cavalierly tossing out the term \"general purpose\" to describe these sorts of systems, it's important to temper expectations and point out that they will all arrive as single- or multi-purpose systems, growing their skillset over time. Figure CEO Brett Adcock likens the approach to an app store -- something that Boston Dynamics currently offers with its Spot robot via SDK.\n \nLikely initial applications include standard manufacturing tasks such as box moving, pick and place and pallet unloading and loading -- basically the sort of repetitive tasks for which factory owners claim to have difficulty retaining human workers. Adcock says that Figure expects to ship its first commercial robot within a year, an ambitious timeline even for a company that prides itself on quick turnaround times. The initial batch of applications will be largely determined by Figure's early partners like BMW. The system will, for instance, likely be working with sheet metal to start. Adcock adds that the company has signed up additional clients, but declined to disclose their names. It seems likely Figure will instead opt to announce each individually to keep the news cycle spinning in the intervening 12 months.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Figure's first humanoid robot will be coming to a BMW manufacturing facility in South Carolina. TechCrunch reports: BMW has not disclosed how many Figure 01 models it will deploy initially. Nor do we know precisely what jobs the robot will be tasked with when it starts work. Figure did, however, confirm with TechCrunch that it is beginning with an initial five tasks, which will be rolled out one at a time. While folks in the space have been cavalierly tossing out the term \"general purpose\" to describe these sorts of systems, it's important to temper expectations and point out that they will all arrive as single- or multi-purpose systems, growing their skillset over time. Figure CEO Brett Adcock likens the approach to an app store -- something that Boston Dynamics currently offers with its Spot robot via SDK.\n \nLikely initial applications include standard manufacturing tasks such as box moving, pick and place and pallet unloading and loading -- basically the sort of repetitive tasks for which factory owners claim to have difficulty retaining human workers. Adcock says that Figure expects to ship its first commercial robot within a year, an ambitious timeline even for a company that prides itself on quick turnaround times. The initial batch of applications will be largely determined by Figure's early partners like BMW. The system will, for instance, likely be working with sheet metal to start. Adcock adds that the company has signed up additional clients, but declined to disclose their names. It seems likely Figure will instead opt to announce each individually to keep the news cycle spinning in the intervening 12 months.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/24/01/18/2313227/bmw-will-employ-figures-humanoid-robot-at-south-carolina-plant?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T02:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-19T01:25:00+00:00", + "title": "Bing Gained Less Than 1% Market Share Since Adding Bing Chat, Report Finds", + "link": "https://tech.slashdot.org/story/24/01/18/2249226/bing-gained-less-than-1-market-share-since-adding-bing-chat-report-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-19T01:25:00+00:00", + "content": "According to StatCounter, Bing's market share grew less than 1% since launching Bing Chat (now known as Copilot) roughly a year ago. From a report: Bloomberg reported (paywalled) on the StatCounter data, saying, \"But Microsoft's search engine ended 2023 with just 3.4% of the global search market, according to data analytics firm StatCounter, up less than 1 percentage point since the ChatGPT announcement.\" Google still dominates the global search market with a 91.6% market share, followed by Bing's 3.4%, Yandex's 1.6% and Yahoo's 1.1%. \"Other\" search engines accounted for a total of just 2.2% of the global search market.\n \nYou can view the raw chart and data from StatCounter here.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "According to StatCounter, Bing's market share grew less than 1% since launching Bing Chat (now known as Copilot) roughly a year ago. From a report: Bloomberg reported (paywalled) on the StatCounter data, saying, \"But Microsoft's search engine ended 2023 with just 3.4% of the global search market, according to data analytics firm StatCounter, up less than 1 percentage point since the ChatGPT announcement.\" Google still dominates the global search market with a 91.6% market share, followed by Bing's 3.4%, Yandex's 1.6% and Yahoo's 1.1%. \"Other\" search engines accounted for a total of just 2.2% of the global search market.\n \nYou can view the raw chart and data from StatCounter here.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/18/2249226/bing-gained-less-than-1-market-share-since-adding-bing-chat-report-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T01:25:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-19T00:45:00+00:00", + "title": "Google To Invest $1 Billion In UK Data Center", + "link": "https://news.slashdot.org/story/24/01/18/2237255/google-to-invest-1-billion-in-uk-data-center?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-19T00:45:00+00:00", + "content": "Google announced today that it will invest $1 billion building a data center near London. Reuters reports: The data centre, located on a 33-acre (13-hectare) site bought by Google in 2020, will be located in the town of Waltham Cross, about 15 miles north of central London, the Alphabet-owned company said in a statement. The British government, which is pushing for investment by businesses to help fund new infrastructure, particularly in growth industries like technology and artificial intelligence, described Google's investment as a \"huge vote of confidence\" in the UK.\n \n\"Google's $1 billion investment is testament to the fact that the UK is a centre of excellence in technology and has huge potential for growth,\" Prime Minister Rishi Sunak said in the Google statement. The investment follows Google's $1 billion purchase of a central London office building in 2022, close to Covent Garden, and another site in nearby King's Cross, where it is building a new office and where its AI company DeepMind is also based. In November, Microsoft announced plans to pump $3.2 billion into Britain over the next three years.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google announced today that it will invest $1 billion building a data center near London. Reuters reports: The data centre, located on a 33-acre (13-hectare) site bought by Google in 2020, will be located in the town of Waltham Cross, about 15 miles north of central London, the Alphabet-owned company said in a statement. The British government, which is pushing for investment by businesses to help fund new infrastructure, particularly in growth industries like technology and artificial intelligence, described Google's investment as a \"huge vote of confidence\" in the UK.\n \n\"Google's $1 billion investment is testament to the fact that the UK is a centre of excellence in technology and has huge potential for growth,\" Prime Minister Rishi Sunak said in the Google statement. The investment follows Google's $1 billion purchase of a central London office building in 2022, close to Covent Garden, and another site in nearby King's Cross, where it is building a new office and where its AI company DeepMind is also based. In November, Microsoft announced plans to pump $3.2 billion into Britain over the next three years.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/18/2237255/google-to-invest-1-billion-in-uk-data-center?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T00:45:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-19T00:02:00+00:00", + "title": "Remote Work Doesn't Seem To Affect Productivity, Fed Study Finds", + "link": "https://news.slashdot.org/story/24/01/18/2230247/remote-work-doesnt-seem-to-affect-productivity-fed-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-19T00:02:00+00:00", + "content": "An anonymous reader quotes a report released Tuesday (Jan. 16th) by the Federal Reserve Bank of San Francisco: The U.S. labor market experienced a massive increase in remote and hybrid work during the COVID-19 pandemic. At its peak, more than 60% of paid workdays were done remotely -- compared with only 5% before the pandemic. As of December 2023, about 30% of paid workdays are still done remotely (Barrero, Bloom, and Davis 2021). Some reports have suggested that teleworking might either boost or harm overall productivity in the economy. And certainly, overall productivity statistics have been volatile. In 2020, U.S. productivity growth surged. This led to optimistic views in the media about the gains from forced digital innovation and the productivity benefits of remote work. However, the surge ended, and productivity growth has retreated to roughly its pre-pandemic trend. Fernald and Li (2022) find from aggregate data that this pattern was largely explained by a predictable cyclical effect from the economy's downturn and recovery. In aggregate data, it thus appears difficult to see a large cumulative effect -- either positive or negative -- from the pandemic so far. But it is possible that aggregate data obscure the effects of teleworking. For example, factors beyond telework could have affected the overall pace of productivity growth. Surveys of businesses have found mixed effects from the pandemic, with many businesses reporting substantial productivity disruptions.\n \nIn this Economic Letter, we ask whether we can detect the effects of remote work in the productivity performance of different industries. There are large differences across sectors in how easy it is to work off-site. Thus, if remote work boosts productivity in a substantial way, then it should improve productivity performance, especially in those industries where teleworking is easy to arrange and widely adopted, such as professional services, compared with those where tasks need to be performed in person, such as restaurants. After controlling for pre-pandemic trends in industry productivity growth rates, we find little statistical relationship between telework and pandemic productivity performance. We conclude that the shift to remote work, on its own, is unlikely to be a major factor explaining differences across sectors in productivity performance. By extension, despite the important social and cultural effects of increased telework, the shift is unlikely to be a major factor explaining changes in aggregate productivity. [...]\n \nThe shift to remote and hybrid work has reshaped society in important ways, and these effects are likely to continue to evolve. For example, with less time spent commuting, some people have moved out of cities, and the lines between work and home life have blurred. Despite these noteworthy effects, in this Letter we find little evidence in industry data that the shift to remote and hybrid work has either substantially held back or boosted the rate of productivity growth. Our findings do not rule out possible future changes in productivity growth from the spread of remote work. The economic environment has changed in many ways during and since the pandemic, which could have masked the longer-run effects of teleworking. Continuous innovation is the key to sustained productivity growth. Working remotely could foster innovation through a reduction in communication costs and improved talent allocation across geographic areas. However, working off-site could also hamper innovation by reducing in-person office interactions that foster idea generation and diffusion. The future of work is likely to be a hybrid format that balances the benefits and limitations of remote work.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report released Tuesday (Jan. 16th) by the Federal Reserve Bank of San Francisco: The U.S. labor market experienced a massive increase in remote and hybrid work during the COVID-19 pandemic. At its peak, more than 60% of paid workdays were done remotely -- compared with only 5% before the pandemic. As of December 2023, about 30% of paid workdays are still done remotely (Barrero, Bloom, and Davis 2021). Some reports have suggested that teleworking might either boost or harm overall productivity in the economy. And certainly, overall productivity statistics have been volatile. In 2020, U.S. productivity growth surged. This led to optimistic views in the media about the gains from forced digital innovation and the productivity benefits of remote work. However, the surge ended, and productivity growth has retreated to roughly its pre-pandemic trend. Fernald and Li (2022) find from aggregate data that this pattern was largely explained by a predictable cyclical effect from the economy's downturn and recovery. In aggregate data, it thus appears difficult to see a large cumulative effect -- either positive or negative -- from the pandemic so far. But it is possible that aggregate data obscure the effects of teleworking. For example, factors beyond telework could have affected the overall pace of productivity growth. Surveys of businesses have found mixed effects from the pandemic, with many businesses reporting substantial productivity disruptions.\n \nIn this Economic Letter, we ask whether we can detect the effects of remote work in the productivity performance of different industries. There are large differences across sectors in how easy it is to work off-site. Thus, if remote work boosts productivity in a substantial way, then it should improve productivity performance, especially in those industries where teleworking is easy to arrange and widely adopted, such as professional services, compared with those where tasks need to be performed in person, such as restaurants. After controlling for pre-pandemic trends in industry productivity growth rates, we find little statistical relationship between telework and pandemic productivity performance. We conclude that the shift to remote work, on its own, is unlikely to be a major factor explaining differences across sectors in productivity performance. By extension, despite the important social and cultural effects of increased telework, the shift is unlikely to be a major factor explaining changes in aggregate productivity. [...]\n \nThe shift to remote and hybrid work has reshaped society in important ways, and these effects are likely to continue to evolve. For example, with less time spent commuting, some people have moved out of cities, and the lines between work and home life have blurred. Despite these noteworthy effects, in this Letter we find little evidence in industry data that the shift to remote and hybrid work has either substantially held back or boosted the rate of productivity growth. Our findings do not rule out possible future changes in productivity growth from the spread of remote work. The economic environment has changed in many ways during and since the pandemic, which could have masked the longer-run effects of teleworking. Continuous innovation is the key to sustained productivity growth. Working remotely could foster innovation through a reduction in communication costs and improved talent allocation across geographic areas. However, working off-site could also hamper innovation by reducing in-person office interactions that foster idea generation and diffusion. The future of work is likely to be a hybrid format that balances the benefits and limitations of remote work.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/18/2230247/remote-work-doesnt-seem-to-affect-productivity-fed-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T00:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T23:20:00+00:00", + "title": "IBM Scraps Rewards Program For Staff Inventions, Wipes Away Cash Points", + "link": "https://slashdot.org/story/24/01/18/2223216/ibm-scraps-rewards-program-for-staff-inventions-wipes-away-cash-points?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T23:20:00+00:00", + "content": "Thomas Claburn reports via The Register: IBM has canceled a program that rewarded inventors at Big Blue for patents or publications, leaving some angry that they are missing out on potential bonuses. By cancelling the scheme, a source told The Register, IBM has eliminated a financial liability by voiding the accrued, unredeemed credits issued to program participants which could have been converted into potential cash awards. For years, IBM has sponsored an \"Invention Achievement Award Plan\" to incentivize employee innovation. In exchange for filing patents, or for publishing articles that served as defense against rival patents, IBM staff were awarded points that led to recognition and potentially cash bonuses. According to documentation seen by The Register, \"Invention points are awarded to all inventors listed on a successful disclosure submission.\"\n \nOne point was awarded for publishing. Three points were awarded for filing a patent or four if the filing was deemed high value. For accruing 12 points, program participants would get a payout. \"Inventors reach an invention plateau for every 12 points they achieve -- which must include at least one file decision,\" the rules state. And for each plateau achieved, IBM would pay its inventors $1,200 in recognition of their efforts. No longer, it seems. IBM canceled the program at the end of 2023 and replaced it with a new one that uses a different, incompatible point system called BluePoints.\n \n\"The previous Invention Achievement Award Plan will be sunset at midnight (eastern time) on December 31st, 2023,\" company FAQs explain. \"Since Plateau awards are one of the items being sunset, plateau levels must be obtained on or before December 31, 2023 to be eligible for the award. Any existing plateau points that have not been applied will not be converted to BluePoints.\" We're told that IBM's invention review process could take months, meaning that employees just didn't have time between the announcement and the program sunset to pursue the next plateau and cash out. Those involved in the program evidently were none too pleased by the points grab. \"My opinion...the invention award program was buggered a long time [ago],\" said a former IBM employee. \"It rewarded words on a page instead of true innovation. [Former CEO] Ginni [Rometty] made it worse by advocating the program to fluff up young egos.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Thomas Claburn reports via The Register: IBM has canceled a program that rewarded inventors at Big Blue for patents or publications, leaving some angry that they are missing out on potential bonuses. By cancelling the scheme, a source told The Register, IBM has eliminated a financial liability by voiding the accrued, unredeemed credits issued to program participants which could have been converted into potential cash awards. For years, IBM has sponsored an \"Invention Achievement Award Plan\" to incentivize employee innovation. In exchange for filing patents, or for publishing articles that served as defense against rival patents, IBM staff were awarded points that led to recognition and potentially cash bonuses. According to documentation seen by The Register, \"Invention points are awarded to all inventors listed on a successful disclosure submission.\"\n \nOne point was awarded for publishing. Three points were awarded for filing a patent or four if the filing was deemed high value. For accruing 12 points, program participants would get a payout. \"Inventors reach an invention plateau for every 12 points they achieve -- which must include at least one file decision,\" the rules state. And for each plateau achieved, IBM would pay its inventors $1,200 in recognition of their efforts. No longer, it seems. IBM canceled the program at the end of 2023 and replaced it with a new one that uses a different, incompatible point system called BluePoints.\n \n\"The previous Invention Achievement Award Plan will be sunset at midnight (eastern time) on December 31st, 2023,\" company FAQs explain. \"Since Plateau awards are one of the items being sunset, plateau levels must be obtained on or before December 31, 2023 to be eligible for the award. Any existing plateau points that have not been applied will not be converted to BluePoints.\" We're told that IBM's invention review process could take months, meaning that employees just didn't have time between the announcement and the program sunset to pursue the next plateau and cash out. Those involved in the program evidently were none too pleased by the points grab. \"My opinion...the invention award program was buggered a long time [ago],\" said a former IBM employee. \"It rewarded words on a page instead of true innovation. [Former CEO] Ginni [Rometty] made it worse by advocating the program to fluff up young egos.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/18/2223216/ibm-scraps-rewards-program-for-staff-inventions-wipes-away-cash-points?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T23:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T23:00:00+00:00", + "title": "Google Is Rolling Out WebGPU For Next-Gen Gaming On Android", + "link": "https://tech.slashdot.org/story/24/01/18/2135244/google-is-rolling-out-webgpu-for-next-gen-gaming-on-android?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T23:00:00+00:00", + "content": "In a blog post today, Google announced that WebGPU is \"now enabled by default in Chrome 121 on devices running Android 12 and greater powered by Qualcomm and ARM GPUs,\" with support for more Android devices rolling out gradually. Previously, the API was only available on Windows PCs that support Direct3D 12, macOS, and ChromeOS devices that support Vulkan.\n \nGoogle says WebGPU \"offers significant benefits such as greatly reduced JavaScript workload for the same graphics and more than three times improvements in machine learning model inferences.\" With lower-level access to a device's GPU, developers are able to enable richer and more complex visual content in web applications. This will be especially apparent with games, as you can see in this demo.\n \nNext up: WebGPU for Chrome on Linux.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "In a blog post today, Google announced that WebGPU is \"now enabled by default in Chrome 121 on devices running Android 12 and greater powered by Qualcomm and ARM GPUs,\" with support for more Android devices rolling out gradually. Previously, the API was only available on Windows PCs that support Direct3D 12, macOS, and ChromeOS devices that support Vulkan.\n \nGoogle says WebGPU \"offers significant benefits such as greatly reduced JavaScript workload for the same graphics and more than three times improvements in machine learning model inferences.\" With lower-level access to a device's GPU, developers are able to enable richer and more complex visual content in web applications. This will be especially apparent with games, as you can see in this demo.\n \nNext up: WebGPU for Chrome on Linux.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/18/2135244/google-is-rolling-out-webgpu-for-next-gen-gaming-on-android?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T23:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T22:40:00+00:00", + "title": "Reddit Seeks To Launch IPO In March", + "link": "https://slashdot.org/story/24/01/18/2116233/reddit-seeks-to-launch-ipo-in-march?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T22:40:00+00:00", + "content": "According to Reuters, Reddit plans to launch its initial public offering (IPO) in March, \"moving forward with a listing it has been eyeing for more than three years.\" From the report: It would be the first IPO of a major social media company since Pinterest's, opens new tab debut in 2019, and would come as Reddit and its peers face stiff competition for advertising dollars from the likes of TikTok and Facebook. The offering would also test the willingness of some Reddit users to back the company's stock market debut.\n \nReddit, which filed confidentially for its IPO in December 2021, is planning to make its public filing in late February, launch its roadshow in early March, and complete the IPO by the end of March, two of the sources said. The San Francisco-based company, which was valued at about $10 billion in a funding round in 2021, is seeking to sell about 10% of its shares in the IPO, the sources added. It will decide on what IPO valuation it will pursue closer to the time of the listing, according to the sources.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "According to Reuters, Reddit plans to launch its initial public offering (IPO) in March, \"moving forward with a listing it has been eyeing for more than three years.\" From the report: It would be the first IPO of a major social media company since Pinterest's, opens new tab debut in 2019, and would come as Reddit and its peers face stiff competition for advertising dollars from the likes of TikTok and Facebook. The offering would also test the willingness of some Reddit users to back the company's stock market debut.\n \nReddit, which filed confidentially for its IPO in December 2021, is planning to make its public filing in late February, launch its roadshow in early March, and complete the IPO by the end of March, two of the sources said. The San Francisco-based company, which was valued at about $10 billion in a funding round in 2021, is seeking to sell about 10% of its shares in the IPO, the sources added. It will decide on what IPO valuation it will pursue closer to the time of the listing, according to the sources.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/18/2116233/reddit-seeks-to-launch-ipo-in-march?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T22:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-18T22:00:00+00:00", + "title": "'Stablecoins' Enabled $40 Billion In Crypto Crime Since 2022", + "link": "https://yro.slashdot.org/story/24/01/18/2112213/stablecoins-enabled-40-billion-in-crypto-crime-since-2022?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-18T22:00:00+00:00", + "content": "An anonymous reader quotes a report from Wired: Stablecoins, cryptocurrencies pegged to a stable value like the US dollar, were created with the promise of bringing the frictionless, border-crossing fluidity of Bitcoin to a form of digital money with far less volatility. That combination has proved to be wildly popular, rocketing the total value of stablecoin transactions since 2022 past even that of Bitcoin itself. It turns out, however, that as stablecoins have become popular among legitimate users over the past two years, they were even more popular among a different kind of user: those exploiting them for billions of dollars of international sanctions evasion and scams.\n \nAs part of itsannual crime report, cryptocurrency-tracing firm Chainalysis today released new numbers on the disproportionate use of stablecoins for both of those massive categories of illicit crypto transactions over the last year. By analyzing blockchains, Chainalysis determined that stablecoins were used in fully 70 percent of crypto scam transactions in 2023, 83 percent of crypto payments to sanctioned countries like Iran and Russia, and 84 percent of crypto payments to specifically sanctioned individuals and companies. Those numbers far outstrip stablecoins' growing overall use -- including for legitimate purposes -- which accounted for 59 percent of all cryptocurrency transaction volume in 2023.\n \nIn total, Chainalysis measured $40 billion in illicit stablecoin transactions in 2022 and 2023 combined. The largest single category of that stablecoin-enabled crime was sanctions evasion. In fact, across all cryptocurrencies, sanctions evasion accounted for more than half of the $24.2 billion in criminal transactions Chainalysis observed in 2023, with stablecoins representing the vast majority of those transactions. [...] Chainalysis concedes that the analysis in its report excludes some cryptocurrencies like Monero and Zcash that are designed to be harder or impossible to trace with blockchain analysis. It also says it based its numbers on the type of cryptocurrency sent directly to an illicit actor, which may leave out other currencies used in money laundering processes that repeatedly swap one type of cryptocurrency for another to make tracing more difficult. \"Whether it's an individual located in Iran or a bad guy trying to launder money -- either way, there's a benefit to the stability of the US dollar that people are looking to obtain,\" says Andrew Fierman, Chainalysis' head of sanctions strategy. \"If you're in a jurisdiction where you don't have access to the US dollar due to sanctions, stablecoins become an interesting play.\"\n \nFierman points to Nobitex, the largest cryptocurrency exchange operating in the sanctioned country of Iran, as well as Garantex, a notorious exchange based in Russia that has been specifically sanctioned for its widespread criminal use. According to Chainalysis, \"Stablecoin usage on Nobitex outstrips bitcoin by a 9:1 ratio, and on Garantex by a 5:1 ratio,\" reports Wired. \"That's a stark difference from the roughly 1:1 ratio between stablecoins and bitcoins on a few nonsanctioned mainstream exchanges that Chainalysis checked for comparison.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Wired: Stablecoins, cryptocurrencies pegged to a stable value like the US dollar, were created with the promise of bringing the frictionless, border-crossing fluidity of Bitcoin to a form of digital money with far less volatility. That combination has proved to be wildly popular, rocketing the total value of stablecoin transactions since 2022 past even that of Bitcoin itself. It turns out, however, that as stablecoins have become popular among legitimate users over the past two years, they were even more popular among a different kind of user: those exploiting them for billions of dollars of international sanctions evasion and scams.\n \nAs part of itsannual crime report, cryptocurrency-tracing firm Chainalysis today released new numbers on the disproportionate use of stablecoins for both of those massive categories of illicit crypto transactions over the last year. By analyzing blockchains, Chainalysis determined that stablecoins were used in fully 70 percent of crypto scam transactions in 2023, 83 percent of crypto payments to sanctioned countries like Iran and Russia, and 84 percent of crypto payments to specifically sanctioned individuals and companies. Those numbers far outstrip stablecoins' growing overall use -- including for legitimate purposes -- which accounted for 59 percent of all cryptocurrency transaction volume in 2023.\n \nIn total, Chainalysis measured $40 billion in illicit stablecoin transactions in 2022 and 2023 combined. The largest single category of that stablecoin-enabled crime was sanctions evasion. In fact, across all cryptocurrencies, sanctions evasion accounted for more than half of the $24.2 billion in criminal transactions Chainalysis observed in 2023, with stablecoins representing the vast majority of those transactions. [...] Chainalysis concedes that the analysis in its report excludes some cryptocurrencies like Monero and Zcash that are designed to be harder or impossible to trace with blockchain analysis. It also says it based its numbers on the type of cryptocurrency sent directly to an illicit actor, which may leave out other currencies used in money laundering processes that repeatedly swap one type of cryptocurrency for another to make tracing more difficult. \"Whether it's an individual located in Iran or a bad guy trying to launder money -- either way, there's a benefit to the stability of the US dollar that people are looking to obtain,\" says Andrew Fierman, Chainalysis' head of sanctions strategy. \"If you're in a jurisdiction where you don't have access to the US dollar due to sanctions, stablecoins become an interesting play.\"\n \nFierman points to Nobitex, the largest cryptocurrency exchange operating in the sanctioned country of Iran, as well as Garantex, a notorious exchange based in Russia that has been specifically sanctioned for its widespread criminal use. According to Chainalysis, \"Stablecoin usage on Nobitex outstrips bitcoin by a 9:1 ratio, and on Garantex by a 5:1 ratio,\" reports Wired. \"That's a stark difference from the roughly 1:1 ratio between stablecoins and bitcoins on a few nonsanctioned mainstream exchanges that Chainalysis checked for comparison.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/24/01/18/2112213/stablecoins-enabled-40-billion-in-crypto-crime-since-2022?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T22:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T21:20:00+00:00", + "title": "Coursera Saw Signups For AI Courses Every Minute in 2023", + "link": "https://tech.slashdot.org/story/24/01/18/1742232/coursera-saw-signups-for-ai-courses-every-minute-in-2023?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T21:20:00+00:00", + "content": "U.S. edutech platform Coursera added a new user every minute on average for its AI courses in 2023, CEO Jeff Maggioncalda said on Thursday, in a clear sign of people upskilling to tap a potential boom in generative AI. Reuters: The technology behind OpenAI's ChatGPT has taken the world by a storm and sparked a race among companies to roll out their own versions of the viral chatbot. \"I'd say the real hotspot is generative AI because it affects so many people,\" he told Reuters in an interview at the World Economic Forum in Davos. \n\nCoursera is looking to offer AI courses along with companies that are the frontrunners in the AI race, including OpenAI and Google's DeepMind, Maggioncalda said. Investors had earlier feared that apps based on generative AI might replace ed-tech firms, but on the contrary the technology has encouraged more people to upskill, benefiting companies such as Coursera. The company has more than 800 AI courses and saw more than 7.4 million enrollments last year. Every student on the platform gets access to a ChatGPT-like AI assistant called \"Coach\" that provides personalized tutoring.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "U.S. edutech platform Coursera added a new user every minute on average for its AI courses in 2023, CEO Jeff Maggioncalda said on Thursday, in a clear sign of people upskilling to tap a potential boom in generative AI. Reuters: The technology behind OpenAI's ChatGPT has taken the world by a storm and sparked a race among companies to roll out their own versions of the viral chatbot. \"I'd say the real hotspot is generative AI because it affects so many people,\" he told Reuters in an interview at the World Economic Forum in Davos. \n\nCoursera is looking to offer AI courses along with companies that are the frontrunners in the AI race, including OpenAI and Google's DeepMind, Maggioncalda said. Investors had earlier feared that apps based on generative AI might replace ed-tech firms, but on the contrary the technology has encouraged more people to upskill, benefiting companies such as Coursera. The company has more than 800 AI courses and saw more than 7.4 million enrollments last year. Every student on the platform gets access to a ChatGPT-like AI assistant called \"Coach\" that provides personalized tutoring.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/18/1742232/coursera-saw-signups-for-ai-courses-every-minute-in-2023?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T21:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T20:40:00+00:00", + "title": "Mark Zuckerberg's New Goal is Creating AGI", + "link": "https://tech.slashdot.org/story/24/01/18/1831244/mark-zuckerbergs-new-goal-is-creating-agi?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T20:40:00+00:00", + "content": "OpenAI's stated mission is to create the artificial general intelligence, or AGI. Demis Hassabis, the leader of Google's AI efforts, has the same goal. Now, Meta CEO Mark Zuckerberg is entering the race. From a report: While he doesn't have a timeline for when AGI will be reached, or even an exact definition for it, he wants to build it. At the same time, he's shaking things up by moving Meta's AI research group, FAIR, to the same part of the company as the team building generative AI products across Meta's apps. The goal is for Meta's AI breakthroughs to more directly reach its billions of users. \"We've come to this view that, in order to build the products that we want to build, we need to build for general intelligence,\" Zuckerberg tells me in an exclusive interview. \"I think that's important to convey because a lot of the best researchers want to work on the more ambitious problems.\" \n\n[...] No one working on AI, including Zuckerberg, seems to have a clear definition for AGI or an idea of when it will arrive. \"I don't have a one-sentence, pithy definition,\" he tells me. \"You can quibble about if general intelligence is akin to human level intelligence, or is it like human-plus, or is it some far-future super intelligence. But to me, the important part is actually the breadth of it, which is that intelligence has all these different capabilities where you have to be able to reason and have intuition.\" He sees its eventual arrival as being a gradual process, rather than a single moment. \"I'm not actually that sure that some specific threshold will feel that profound.\" As Zuckerberg explains it, Meta's new, broader focus on AGI was influenced by the release of Llama 2, its latest large language model, last year. The company didn't think that the ability for it to generate code made sense for how people would use a LLM in Meta's apps. But it's still an important skill to develop for building smarter AI, so Meta built it anyway. External research has pegged Meta's H100 shipments for 2023 at 150,000, a number that is tied only with Microsoft's shipments and at least three times larger than everyone else's. When its Nvidia A100s and other AI chips are accounted for, Meta will have a stockpile of almost 600,000 GPUs by the end of 2024, according to Zuckerberg.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "OpenAI's stated mission is to create the artificial general intelligence, or AGI. Demis Hassabis, the leader of Google's AI efforts, has the same goal. Now, Meta CEO Mark Zuckerberg is entering the race. From a report: While he doesn't have a timeline for when AGI will be reached, or even an exact definition for it, he wants to build it. At the same time, he's shaking things up by moving Meta's AI research group, FAIR, to the same part of the company as the team building generative AI products across Meta's apps. The goal is for Meta's AI breakthroughs to more directly reach its billions of users. \"We've come to this view that, in order to build the products that we want to build, we need to build for general intelligence,\" Zuckerberg tells me in an exclusive interview. \"I think that's important to convey because a lot of the best researchers want to work on the more ambitious problems.\" \n\n[...] No one working on AI, including Zuckerberg, seems to have a clear definition for AGI or an idea of when it will arrive. \"I don't have a one-sentence, pithy definition,\" he tells me. \"You can quibble about if general intelligence is akin to human level intelligence, or is it like human-plus, or is it some far-future super intelligence. But to me, the important part is actually the breadth of it, which is that intelligence has all these different capabilities where you have to be able to reason and have intuition.\" He sees its eventual arrival as being a gradual process, rather than a single moment. \"I'm not actually that sure that some specific threshold will feel that profound.\" As Zuckerberg explains it, Meta's new, broader focus on AGI was influenced by the release of Llama 2, its latest large language model, last year. The company didn't think that the ability for it to generate code made sense for how people would use a LLM in Meta's apps. But it's still an important skill to develop for building smarter AI, so Meta built it anyway. External research has pegged Meta's H100 shipments for 2023 at 150,000, a number that is tied only with Microsoft's shipments and at least three times larger than everyone else's. When its Nvidia A100s and other AI chips are accounted for, Meta will have a stockpile of almost 600,000 GPUs by the end of 2024, according to Zuckerberg.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/18/1831244/mark-zuckerbergs-new-goal-is-creating-agi?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T20:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T20:00:00+00:00", + "title": "Microsoft Makes Its AI-Powered Reading Tutor Free", + "link": "https://slashdot.org/story/24/01/18/1810200/microsoft-makes-its-ai-powered-reading-tutor-free?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T20:00:00+00:00", + "content": "Microsoft today made Reading Coach, its AI-powered tool that provides learners with personalized reading practice, available at no cost to anyone with a Microsoft account. From a report: As of this morning, Reading Coach is accessible on the web in preview -- a Windows app is forthcoming. And soon (in late spring), Reading Coach will integrate with learning management systems such as Canva, Microsoft says. Reading Coach builds on Reading Progress, a plug-in for the education-focused version of Microsoft Teams, Teams for Education, designed to help teachers foster reading fluency in their students. Inspired by the success of Reading Progress (evidently), Microsoft launched Reading Coach in 2022 as a part of Teams for Education and Immersive Reader, the company's cross-platform assistive service for language and reading comprehension.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Microsoft today made Reading Coach, its AI-powered tool that provides learners with personalized reading practice, available at no cost to anyone with a Microsoft account. From a report: As of this morning, Reading Coach is accessible on the web in preview -- a Windows app is forthcoming. And soon (in late spring), Reading Coach will integrate with learning management systems such as Canva, Microsoft says. Reading Coach builds on Reading Progress, a plug-in for the education-focused version of Microsoft Teams, Teams for Education, designed to help teachers foster reading fluency in their students. Inspired by the success of Reading Progress (evidently), Microsoft launched Reading Coach in 2022 as a part of Teams for Education and Immersive Reader, the company's cross-platform assistive service for language and reading comprehension.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/24/01/18/1810200/microsoft-makes-its-ai-powered-reading-tutor-free?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T20:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T19:20:00+00:00", + "title": "Coinbase Compares Buying Crypto To Collecting Beanie Babies", + "link": "https://tech.slashdot.org/story/24/01/18/1753211/coinbase-compares-buying-crypto-to-collecting-beanie-babies?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T19:20:00+00:00", + "content": "Coinbase said buying cryptocurrency on an exchange was more like collecting Beanie Babies than investing in a stock or bond. From a report: The biggest US crypto exchange made the comparison Wednesday in a New York federal court hearing. Coinbase was arguing for the dismissal of a Securities and Exchange Commission lawsuit accusing it of selling unregistered securities. William Savitt, a lawyer for Coinbase, told US District Judge Katherine Polk Failla that tokens trading on the exchange aren't securities subject to SEC jurisdiction because buyers don't gain any rights as a part of their purchases, as they do with stocks or bonds. \"It's the difference between buying Beanie Babies Inc and buying Beanie Babies,\" Savitt said. The question of whether digital tokens are securities has divided courts.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Coinbase said buying cryptocurrency on an exchange was more like collecting Beanie Babies than investing in a stock or bond. From a report: The biggest US crypto exchange made the comparison Wednesday in a New York federal court hearing. Coinbase was arguing for the dismissal of a Securities and Exchange Commission lawsuit accusing it of selling unregistered securities. William Savitt, a lawyer for Coinbase, told US District Judge Katherine Polk Failla that tokens trading on the exchange aren't securities subject to SEC jurisdiction because buyers don't gain any rights as a part of their purchases, as they do with stocks or bonds. \"It's the difference between buying Beanie Babies Inc and buying Beanie Babies,\" Savitt said. The question of whether digital tokens are securities has divided courts.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/18/1753211/coinbase-compares-buying-crypto-to-collecting-beanie-babies?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T19:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-18T18:40:00+00:00", + "title": "Hospitals Owned By Private Equity Are Harming Patients, Reports Find", + "link": "https://science.slashdot.org/story/24/01/18/1838259/hospitals-owned-by-private-equity-are-harming-patients-reports-find?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-18T18:40:00+00:00", + "content": "Private equity firms are increasingly buying hospitals across the US, and when they do, patients suffer, according to two separate reports. Specifically, the equity firms cut corners, slash services, lay off staff, lower quality of care, take on substantial debt, and reduce charity care, leading to lower ratings and more medical errors, the reports collectively find. ArsTechnica: Last week, the financial watchdog organization Private Equity Stakeholder Project (PESP) released a report delving into the state of two of the nation's largest hospital systems, Lifepoint and ScionHealth -- both owned by private equity firm Apollo Global Management. Through those two systems, Apollo runs 220 hospitals in 36 states, employing around 75,000 people. The report found that some of Apollo's hospitals were among the worst in their respective states, based on a ranking by The Lown Institute Hospital Index. The index ranks hospitals and health systems based on health equity, value, and outcomes, PESP notes. The hospitals also have dismal readmission rates and government rankings. \n\nThe Center for Medicare and Medicaid Services (CMS) ranks hospitals on a one- to five-star system, with the national average of 3.2 stars overall and about 30 percent of hospitals at two stars or below. Apollo's overall average is 2.8 stars, with nearly 40 percent of hospitals at two stars or below. The other report, a study published in JAMA late last month, found that the rate of serious medical errors and health complications increases among patients in the first few years after private equity firms take over. The study examined Medicare claims from 51 private equity-run hospitals and 259 matched control hospitals. Specifically, the study, led by researchers at Harvard University, found that patients admitted to private equity-owned hospitals had a 25 percent increase in developing hospital-acquired conditions compared with patients in the control hospitals. In private equity hospitals, patients experienced a 27 percent increase in falls, a 38 percent increase in central-line bloodstream infections (despite placing 16 percent fewer central lines than control hospitals), and surgical site infections doubled.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Private equity firms are increasingly buying hospitals across the US, and when they do, patients suffer, according to two separate reports. Specifically, the equity firms cut corners, slash services, lay off staff, lower quality of care, take on substantial debt, and reduce charity care, leading to lower ratings and more medical errors, the reports collectively find. ArsTechnica: Last week, the financial watchdog organization Private Equity Stakeholder Project (PESP) released a report delving into the state of two of the nation's largest hospital systems, Lifepoint and ScionHealth -- both owned by private equity firm Apollo Global Management. Through those two systems, Apollo runs 220 hospitals in 36 states, employing around 75,000 people. The report found that some of Apollo's hospitals were among the worst in their respective states, based on a ranking by The Lown Institute Hospital Index. The index ranks hospitals and health systems based on health equity, value, and outcomes, PESP notes. The hospitals also have dismal readmission rates and government rankings. \n\nThe Center for Medicare and Medicaid Services (CMS) ranks hospitals on a one- to five-star system, with the national average of 3.2 stars overall and about 30 percent of hospitals at two stars or below. Apollo's overall average is 2.8 stars, with nearly 40 percent of hospitals at two stars or below. The other report, a study published in JAMA late last month, found that the rate of serious medical errors and health complications increases among patients in the first few years after private equity firms take over. The study examined Medicare claims from 51 private equity-run hospitals and 259 matched control hospitals. Specifically, the study, led by researchers at Harvard University, found that patients admitted to private equity-owned hospitals had a 25 percent increase in developing hospital-acquired conditions compared with patients in the control hospitals. In private equity hospitals, patients experienced a 27 percent increase in falls, a 38 percent increase in central-line bloodstream infections (despite placing 16 percent fewer central lines than control hospitals), and surgical site infections doubled.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/18/1838259/hospitals-owned-by-private-equity-are-harming-patients-reports-find?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-18T18:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-19T10:00:00+00:00", + "title": "Physicists Design a Way to Detect Quantum Behavior in Large Objects, Like Us", + "link": "https://science.slashdot.org/story/24/01/18/2343236/physicists-design-a-way-to-detect-quantum-behavior-in-large-objects-like-us?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-19T10:00:00+00:00", + "content": "Researchers have developed a way to apply quantum measurement to something no matter its mass or energy. \"Our proposed experiment can test if an object is classical or quantum by seeing if an act of observation can lead to a change in its motion,\" says physicist Debarshi Das from UCL. ScienceAlert reports: Quantum physics describes a Universe where objects aren't defined by a single measurement, but as a range of possibilities. An electron can be spinning up and down, or have a high chance of existing in some areas more than others, for example. In theory, this isn't limited to tiny things. Your own body can in effect be described as having a very high probability of sitting in that chair and a very (very!) low probability of being on the Moon. There is just one fundamental truth to remember -- you touch it, you've bought it. Observing an object's quantum state, whether an electron, or a person sitting in a chair, requires interactions with a measuring system, forcing it to have a single measurement. There are ways to catch objects with their quantum pants still down, but they require keeping the object in a ground state -- super-cold, super-still, completely cut off from its environment. That's tricky to do with individual particles, and it gets a lot more challenging as the size of the scale goes up.\n \nThe new proposal uses an entirely novel approach, one that uses a combination of assertions known as Leggett-Garg Inequalities and No-Signaling in Time conditions. In effect, these two concepts describe a familiar Universe, where a person on a chair is sitting there even if the room is dark and you can't see them. Switching on the light won't suddenly reveal they're actually under the bed. Should an experiment find evidence that somehow conflicts with these assertions, we just might be catching a glimpse of quantum fuzziness on a larger scale.\n \nThe team proposes that objects can be observed as they oscillate on a pendulum, like a ball at the end of a piece of string. Light would then be flashed at the two halves of the experimental setup at different times -- counting as the observation -- and the results of the second flash would indicate if quantum behavior was happening, because the first flash would affect whatever was moving. We're still talking about a complex setup that would require some sophisticated equipment, and conditions akin to a ground state -- but through the use of motion and two measurements (light flashes), some of the restrictions on mass are removed. [...] \"The next step is to try this proposed setup in an actual experiment,\" concludes the reports. \"The mirrors at the Laser Interferometer Gravitational-Wave Observatory (LIGO) in the US have already been proposed as suitable candidates for examination.\"\n \n\"Those mirrors act as a single 10-kilogram (22-pound) object, quite a step up from the typical size of objects analyzed for quantum effects -- anything up to about a quintillionth of a gram.\"\n \nThe findings have been published in the journal Physical Review Letters.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Researchers have developed a way to apply quantum measurement to something no matter its mass or energy. \"Our proposed experiment can test if an object is classical or quantum by seeing if an act of observation can lead to a change in its motion,\" says physicist Debarshi Das from UCL. ScienceAlert reports: Quantum physics describes a Universe where objects aren't defined by a single measurement, but as a range of possibilities. An electron can be spinning up and down, or have a high chance of existing in some areas more than others, for example. In theory, this isn't limited to tiny things. Your own body can in effect be described as having a very high probability of sitting in that chair and a very (very!) low probability of being on the Moon. There is just one fundamental truth to remember -- you touch it, you've bought it. Observing an object's quantum state, whether an electron, or a person sitting in a chair, requires interactions with a measuring system, forcing it to have a single measurement. There are ways to catch objects with their quantum pants still down, but they require keeping the object in a ground state -- super-cold, super-still, completely cut off from its environment. That's tricky to do with individual particles, and it gets a lot more challenging as the size of the scale goes up.\n \nThe new proposal uses an entirely novel approach, one that uses a combination of assertions known as Leggett-Garg Inequalities and No-Signaling in Time conditions. In effect, these two concepts describe a familiar Universe, where a person on a chair is sitting there even if the room is dark and you can't see them. Switching on the light won't suddenly reveal they're actually under the bed. Should an experiment find evidence that somehow conflicts with these assertions, we just might be catching a glimpse of quantum fuzziness on a larger scale.\n \nThe team proposes that objects can be observed as they oscillate on a pendulum, like a ball at the end of a piece of string. Light would then be flashed at the two halves of the experimental setup at different times -- counting as the observation -- and the results of the second flash would indicate if quantum behavior was happening, because the first flash would affect whatever was moving. We're still talking about a complex setup that would require some sophisticated equipment, and conditions akin to a ground state -- but through the use of motion and two measurements (light flashes), some of the restrictions on mass are removed. [...] \"The next step is to try this proposed setup in an actual experiment,\" concludes the reports. \"The mirrors at the Laser Interferometer Gravitational-Wave Observatory (LIGO) in the US have already been proposed as suitable candidates for examination.\"\n \n\"Those mirrors act as a single 10-kilogram (22-pound) object, quite a step up from the typical size of objects analyzed for quantum effects -- anything up to about a quintillionth of a gram.\"\n \nThe findings have been published in the journal Physical Review Letters.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/24/01/18/2343236/physicists-design-a-way-to-detect-quantum-behavior-in-large-objects-like-us?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T10:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-19T11:03:00+00:00", + "title": "David Mills, an Internet Pioneer, Has Died", + "link": "https://news.slashdot.org/story/24/01/19/113203/david-mills-an-internet-pioneer-has-died?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-19T11:03:00+00:00", + "content": "David Mills, the man who invented NTP and wrote the implementation, has passed away. He also created the Fuzzballs and EGP, and helped make global-scale internetworking possible. Vint Cerf, in a mail group: His daughter, Leigh, just sent me the news that Dave passed away peacefully on January 17, 2024. He was such an iconic element of the early Internet. \n\nNetwork Time Protocol, the Fuzzball routers of the early NSFNET, INARG\ntaskforce lead, COMSAT Labs and University of Delaware and so much more. \n\nR.I.P.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "David Mills, the man who invented NTP and wrote the implementation, has passed away. He also created the Fuzzballs and EGP, and helped make global-scale internetworking possible. Vint Cerf, in a mail group: His daughter, Leigh, just sent me the news that Dave passed away peacefully on January 17, 2024. He was such an iconic element of the early Internet. \n\nNetwork Time Protocol, the Fuzzball routers of the early NSFNET, INARG\ntaskforce lead, COMSAT Labs and University of Delaware and so much more. \n\nR.I.P.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/19/113203/david-mills-an-internet-pioneer-has-died?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T11:03:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2024-01-19T13:00:00+00:00", + "title": "Sam Altman Says AI Depends On Energy Breakthrough", + "link": "https://hardware.slashdot.org/story/24/01/18/2352248/sam-altman-says-ai-depends-on-energy-breakthrough?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2024-01-19T13:00:00+00:00", + "content": "An anonymous reader quotes a report from Reuters: OpenAI's CEO Sam Altman on Tuesday said an energy breakthrough is necessary for future artificial intelligence, which will consume vastly more power than people have expected. Speaking at a Bloomberg event on the sidelines of the World Economic Forum's annual meeting in Davos, Altman said the silver lining is that more climate-friendly sources of energy, particularly nuclear fusion or cheaper solar power and storage, are the way forward for AI. \"There's no way to get there without a breakthrough,\" he said. \"It motivates us to go invest more in fusion.\"\n \nIn 2021, Altman personally provided $375 million to private U.S. nuclear fusion company Helion Energy, which since has signed a deal to provide energy to Microsoft in future years. Microsoft is OpenAI's biggest financial backer and provides it computing resources for AI. Altman said he wished the world would embrace nuclear fission as an energy source as well. Further reading: Microsoft Needs So Much Power to Train AI That It's Considering Small Nuclear Reactors

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Reuters: OpenAI's CEO Sam Altman on Tuesday said an energy breakthrough is necessary for future artificial intelligence, which will consume vastly more power than people have expected. Speaking at a Bloomberg event on the sidelines of the World Economic Forum's annual meeting in Davos, Altman said the silver lining is that more climate-friendly sources of energy, particularly nuclear fusion or cheaper solar power and storage, are the way forward for AI. \"There's no way to get there without a breakthrough,\" he said. \"It motivates us to go invest more in fusion.\"\n \nIn 2021, Altman personally provided $375 million to private U.S. nuclear fusion company Helion Energy, which since has signed a deal to provide energy to Microsoft in future years. Microsoft is OpenAI's biggest financial backer and provides it computing resources for AI. Altman said he wished the world would embrace nuclear fission as an energy source as well. Further reading: Microsoft Needs So Much Power to Train AI That It's Considering Small Nuclear Reactors\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://hardware.slashdot.org/story/24/01/18/2352248/sam-altman-says-ai-depends-on-energy-breakthrough?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T13:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-19T12:48:00+00:00", + "title": "Boeing Cargo Plane Makes Emergency Landing in Miami After 'Engine Malfunction'", + "link": "https://news.slashdot.org/story/24/01/19/1247247/boeing-cargo-plane-makes-emergency-landing-in-miami-after-engine-malfunction?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-19T12:48:00+00:00", + "content": "A Boeing cargo plane headed for Puerto Rico was diverted Thursday night after taking off from Miami International Airport because of engine trouble, according to an official and flight data. From a report: Atlas Air Flight 5Y095 landed safely after experiencing an \"engine malfunction\" shortly after departure, the airline said early Friday. It was unclear what kind of cargo the plane was carrying. Data collected by FlightAware, a flight tracking company, showed the aircraft was a Boeing 747-8 that left its gate at Miami International at 10:11 p.m. on Thursday and returned to the airport about 50 minutes later. The website also showed that the plane traveled 60 miles in total. Reuters adds: The Atlas Air Flight 5Y095 was on its way to San Juan, Puerto Rico from Miami International Airport on late Thursday evening. The pilot made a Mayday call around 0333 GMT to report an engine fire and requested to return back to the airport, according to multi-channel recordings of conversations between the air traffic control and the plane available on liveatc.net. \"We have a engine fire,\" one of the plane crew said, disclosing that there were five people on board.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "A Boeing cargo plane headed for Puerto Rico was diverted Thursday night after taking off from Miami International Airport because of engine trouble, according to an official and flight data. From a report: Atlas Air Flight 5Y095 landed safely after experiencing an \"engine malfunction\" shortly after departure, the airline said early Friday. It was unclear what kind of cargo the plane was carrying. Data collected by FlightAware, a flight tracking company, showed the aircraft was a Boeing 747-8 that left its gate at Miami International at 10:11 p.m. on Thursday and returned to the airport about 50 minutes later. The website also showed that the plane traveled 60 miles in total. Reuters adds: The Atlas Air Flight 5Y095 was on its way to San Juan, Puerto Rico from Miami International Airport on late Thursday evening. The pilot made a Mayday call around 0333 GMT to report an engine fire and requested to return back to the airport, according to multi-channel recordings of conversations between the air traffic control and the plane available on liveatc.net. \"We have a engine fire,\" one of the plane crew said, disclosing that there were five people on board.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/19/1247247/boeing-cargo-plane-makes-emergency-landing-in-miami-after-engine-malfunction?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T12:48:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-19T14:40:00+00:00", + "title": "Apple Offers To Open Mobile Payments To Third Parties Amid EU Antitrust Case", + "link": "https://apple.slashdot.org/story/24/01/19/1241221/apple-offers-to-open-mobile-payments-to-third-parties-amid-eu-antitrust-case?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-19T14:40:00+00:00", + "content": "Apple committed to address antitrust concerns posed by the European Commission surrounding its popular Apple Pay app, including allowing access to third-party mobile wallet and payment services. WSJ: The U.S. tech giant has agreed to allow companies' apps to make contactless payments on devices that use the iOS system, such as iPhones, for free without the need to use Apple Pay or Apple Wallet, the EU's executive arm said Friday.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Apple committed to address antitrust concerns posed by the European Commission surrounding its popular Apple Pay app, including allowing access to third-party mobile wallet and payment services. WSJ: The U.S. tech giant has agreed to allow companies' apps to make contactless payments on devices that use the iOS system, such as iPhones, for free without the need to use Apple Pay or Apple Wallet, the EU's executive arm said Friday.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://apple.slashdot.org/story/24/01/19/1241221/apple-offers-to-open-mobile-payments-to-third-parties-amid-eu-antitrust-case?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T14:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-19T14:00:00+00:00", + "title": "'Where Have All the Websites Gone?'", + "link": "https://tech.slashdot.org/story/24/01/19/0835245/where-have-all-the-websites-gone?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-19T14:00:00+00:00", + "content": "An anonymous reader shares an essay: No one clicks a webpage hoping to learn which cat can haz cheeseburger. Weirdos, maybe. Sickos. No, we get our content from a For You Page now -- algorithmically selected videos and images made by our favorite creators, produced explicitly for our preferred platform. Which platform doesn't matter much. So long as it's one of the big five. Creators churn out content for all of them. It's a technical marvel, that internet. Something so mindblowingly impressive that if you showed it to someone even thirty years ago, their face would melt the fuck off. So why does it feel like something's missing? Why are we all so collectively unhappy with the state of the web? \n\nA tweet went viral this Thanksgiving when a Twitter user posed a question to their followers. (The tweet said: \"It feels like there are no websites anymore. There used to be so many websites you could go on. Where did all the websites go?\") A peek at the comments, and I could only assume the tweet struck a nerve. Everyone had their own answer. Some comments blamed the app-ification of the web. \"Everything is an app now!,\" one user replied. Others point to the death of Adobe Flash and how so many sites and games died along with it. Everyone agrees that websites have indeed vanished, and we all miss the days we were free to visit them.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader shares an essay: No one clicks a webpage hoping to learn which cat can haz cheeseburger. Weirdos, maybe. Sickos. No, we get our content from a For You Page now -- algorithmically selected videos and images made by our favorite creators, produced explicitly for our preferred platform. Which platform doesn't matter much. So long as it's one of the big five. Creators churn out content for all of them. It's a technical marvel, that internet. Something so mindblowingly impressive that if you showed it to someone even thirty years ago, their face would melt the fuck off. So why does it feel like something's missing? Why are we all so collectively unhappy with the state of the web? \n\nA tweet went viral this Thanksgiving when a Twitter user posed a question to their followers. (The tweet said: \"It feels like there are no websites anymore. There used to be so many websites you could go on. Where did all the websites go?\") A peek at the comments, and I could only assume the tweet struck a nerve. Everyone had their own answer. Some comments blamed the app-ification of the web. \"Everything is an app now!,\" one user replied. Others point to the death of Adobe Flash and how so many sites and games died along with it. Everyone agrees that websites have indeed vanished, and we all miss the days we were free to visit them.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/24/01/19/0835245/where-have-all-the-websites-gone?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T14:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2024-01-19T15:20:00+00:00", + "title": "Airbus Is Pulling Ahead as Boeing's Troubles Mount", + "link": "https://news.slashdot.org/story/24/01/19/0857255/airbus-is-pulling-ahead-as-boeings-troubles-mount?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2024-01-19T15:20:00+00:00", + "content": "Airbus cemented its position last week as the world's biggest plane maker for the fifth straight year, announcing that it had delivered more aircraft and secured more orders than Boeing in 2023. At the same time, Boeing was trying to put out a huge public-relations and safety crisis caused by a harrowing near disaster involving its 737 Max line of airliners. In the long-running duel between the two aviation rivals, Airbus has pulled far ahead. The New York Times: \"What used to be a duopoly has become two-thirds Airbus, one-third Boeing,\" said Richard Aboulafia, the managing director of AeroDynamic Advisory in Washington, D.C. \"A lot of people, whether investors, financiers or customers, are looking at Airbus and seeing a company run by competent people,\" he said. \"The contrast with Boeing is fairly profound.\" \n\nThe incident involving the 737 Max 9, in which a hole blew open in the fuselage of an Alaska Airlines flight in midair, was the latest in a string of safety lapses in Boeing's workhorse aircraft -- including two fatal crashes in 2018 and 2019 -- that are indirectly helping propel the fortunes of the European aerospace giant. As the Federal Aviation Administration widens its scrutiny of Max 9 production, Airbus's edge is likely to sharpen. Airlines are embarking on massive expansions of their fleets to meet a postpandemic surge in the demand for global air travel, and are considering which company to turn to.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Airbus cemented its position last week as the world's biggest plane maker for the fifth straight year, announcing that it had delivered more aircraft and secured more orders than Boeing in 2023. At the same time, Boeing was trying to put out a huge public-relations and safety crisis caused by a harrowing near disaster involving its 737 Max line of airliners. In the long-running duel between the two aviation rivals, Airbus has pulled far ahead. The New York Times: \"What used to be a duopoly has become two-thirds Airbus, one-third Boeing,\" said Richard Aboulafia, the managing director of AeroDynamic Advisory in Washington, D.C. \"A lot of people, whether investors, financiers or customers, are looking at Airbus and seeing a company run by competent people,\" he said. \"The contrast with Boeing is fairly profound.\" \n\nThe incident involving the 737 Max 9, in which a hole blew open in the fuselage of an Alaska Airlines flight in midair, was the latest in a string of safety lapses in Boeing's workhorse aircraft -- including two fatal crashes in 2018 and 2019 -- that are indirectly helping propel the fortunes of the European aerospace giant. As the Federal Aviation Administration widens its scrutiny of Max 9 production, Airbus's edge is likely to sharpen. Airlines are embarking on massive expansions of their fleets to meet a postpandemic surge in the demand for global air travel, and are considering which company to turn to.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/24/01/19/0857255/airbus-is-pulling-ahead-as-boeings-troubles-mount?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2024-01-19T15:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-27T10:00:00+00:00", + "title": "Around 20 Minutes of Exercise a Day May Balance Out the Harms of Sitting, Study Finds", + "link": "https://science.slashdot.org/story/23/10/27/0024211/around-20-minutes-of-exercise-a-day-may-balance-out-the-harms-of-sitting-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-27T10:00:00+00:00", + "content": "A new study published in the British Journal of Sports Medicine finds that about 22 minutes a day of moderate to vigorous activity may combat the negative effects of prolonged sitting. Furthermore, they researchers found that as a person's activity level increases, the risk of dying prematurely from any cause goes down. NBC News reports: In the study, researchers looked at information from nearly 12,000 people ages 50 and older in four datasets from Norway, Sweden and the United States. In those datasets, the participants wore movement detection devices on their hips for 10 hours a day for at least four days. All of the individuals included in the new study were tracked for at least two years. In the new analysis, the researchers accounted for factors, including medical conditions, that could've affected risk of early death. About half of the participants spent 10 1/2 hours or more sedentary each day.\n \nWhen the researchers linked the participants' information with death registries in the different countries, they found that over an average of five years, 805 people, or 17%, had died. Of those who died, 357, or 6%, had spent less than 10 1/2 hours a day seated, while 448 averaged 10 1/2 hours or more sedentary. Sitting for more than 12 hours a day, the researchers found, was associated with a 38% increased risk of death as compared to eight hours, but only among those who managed to get less than 22 minutes of moderate to vigorous activity a day.\n \nThe risk of death went down with increasing amounts of physical activity. An extra 10 minutes a day translated into a 15% lower risk of death among those spending fewer than 10 1/2 hours seated and a 35% lower risk among those who spent more than 10 1/2 hours sedentary each day. Lower intensity activity only made a difference among participants who spent 12 or more hours sitting every day. The study's lead author, Edvard Sagelv, a researcher at The Arctic University of Norway, broke the findings down into manageable terms. \"Think of it: only 20 minutes of this a day is enough, meaning, a small stroll of 10 minutes twice a day -- like jumping off the bus one stop before your actual destination to work and then when taking the bus back home, jumping off one stop before.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "A new study published in the British Journal of Sports Medicine finds that about 22 minutes a day of moderate to vigorous activity may combat the negative effects of prolonged sitting. Furthermore, they researchers found that as a person's activity level increases, the risk of dying prematurely from any cause goes down. NBC News reports: In the study, researchers looked at information from nearly 12,000 people ages 50 and older in four datasets from Norway, Sweden and the United States. In those datasets, the participants wore movement detection devices on their hips for 10 hours a day for at least four days. All of the individuals included in the new study were tracked for at least two years. In the new analysis, the researchers accounted for factors, including medical conditions, that could've affected risk of early death. About half of the participants spent 10 1/2 hours or more sedentary each day.\n \nWhen the researchers linked the participants' information with death registries in the different countries, they found that over an average of five years, 805 people, or 17%, had died. Of those who died, 357, or 6%, had spent less than 10 1/2 hours a day seated, while 448 averaged 10 1/2 hours or more sedentary. Sitting for more than 12 hours a day, the researchers found, was associated with a 38% increased risk of death as compared to eight hours, but only among those who managed to get less than 22 minutes of moderate to vigorous activity a day.\n \nThe risk of death went down with increasing amounts of physical activity. An extra 10 minutes a day translated into a 15% lower risk of death among those spending fewer than 10 1/2 hours seated and a 35% lower risk among those who spent more than 10 1/2 hours sedentary each day. Lower intensity activity only made a difference among participants who spent 12 or more hours sitting every day. The study's lead author, Edvard Sagelv, a researcher at The Arctic University of Norway, broke the findings down into manageable terms. \"Think of it: only 20 minutes of this a day is enough, meaning, a small stroll of 10 minutes twice a day -- like jumping off the bus one stop before your actual destination to work and then when taking the bus back home, jumping off one stop before.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/10/27/0024211/around-20-minutes-of-exercise-a-day-may-balance-out-the-harms-of-sitting-study-finds?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T10:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-27T07:00:00+00:00", + "title": "Pigeons Problem-Solve Similarly To Artificial Intelligence, Research Shows", + "link": "https://science.slashdot.org/story/23/10/27/003230/pigeons-problem-solve-similarly-to-artificial-intelligence-research-shows?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-27T07:00:00+00:00", + "content": "According to a new study published in iScience, the way pigeons problem-solve matches artificial intelligence. The Guardian reports: In the study, 24 pigeons were given a variety of visual tasks, some of which they learned to categorize in a matter of days, and others in a matter of weeks. The researchers found evidence that the mechanism that pigeons used to make correct choices is similar to the method that AI models use to make the right predictions. \"Pigeon behavior suggests that nature has created an algorithm that is highly effective in learning very challenging tasks,\" said Edward Wasserman, study co-author and professor of experimental psychology at the University of Iowa. \"Not necessarily with the greatest speed, but with great consistency.\"\n \nOn a screen, pigeons were shown different stimuli, like lines of different width, placement and orientation, as well as sectioned and concentric rings. Each bird had to peck a button on the right or left to decide which category they belonged to. If they got it correct, they got food, in the form of a pellet; if they got it wrong, they got nothing. \"Pigeons don't need a rule,\" said Brandon Turner, lead author of the study and professor of psychology at Ohio State University. Instead they learn through trial and error. For example, when they were given a visual, say \"category A\", anything that looked close to that they also classified as \"category A\", tapping into their ability to identify similarities.\n \nOver the course of the experiments, pigeons improved their ability to make right choices from 55% to 95% of the time when it came to some of the simpler tasks. Presented with a more complex challenge, their accuracy went up from 55% to 68%. In an AI model, the main goal is to recognize patterns and make decisions. Pigeons, as research shows, can do the same. Learning from consequences, when not given a food pellet, pigeons have a remarkable ability to correct their errors. Similarity function is also at play for pigeons, by using their ability to find resemblance between two objects. \"With just those two mechanisms alone, you can define a neural network or an artificial intelligent machine to basically solve these categorization problems,\" said Turner. \"It stands to reason that the mechanisms that are present in the AI are also present in the pigeon.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "According to a new study published in iScience, the way pigeons problem-solve matches artificial intelligence. The Guardian reports: In the study, 24 pigeons were given a variety of visual tasks, some of which they learned to categorize in a matter of days, and others in a matter of weeks. The researchers found evidence that the mechanism that pigeons used to make correct choices is similar to the method that AI models use to make the right predictions. \"Pigeon behavior suggests that nature has created an algorithm that is highly effective in learning very challenging tasks,\" said Edward Wasserman, study co-author and professor of experimental psychology at the University of Iowa. \"Not necessarily with the greatest speed, but with great consistency.\"\n \nOn a screen, pigeons were shown different stimuli, like lines of different width, placement and orientation, as well as sectioned and concentric rings. Each bird had to peck a button on the right or left to decide which category they belonged to. If they got it correct, they got food, in the form of a pellet; if they got it wrong, they got nothing. \"Pigeons don't need a rule,\" said Brandon Turner, lead author of the study and professor of psychology at Ohio State University. Instead they learn through trial and error. For example, when they were given a visual, say \"category A\", anything that looked close to that they also classified as \"category A\", tapping into their ability to identify similarities.\n \nOver the course of the experiments, pigeons improved their ability to make right choices from 55% to 95% of the time when it came to some of the simpler tasks. Presented with a more complex challenge, their accuracy went up from 55% to 68%. In an AI model, the main goal is to recognize patterns and make decisions. Pigeons, as research shows, can do the same. Learning from consequences, when not given a food pellet, pigeons have a remarkable ability to correct their errors. Similarity function is also at play for pigeons, by using their ability to find resemblance between two objects. \"With just those two mechanisms alone, you can define a neural network or an artificial intelligent machine to basically solve these categorization problems,\" said Turner. \"It stands to reason that the mechanisms that are present in the AI are also present in the pigeon.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://science.slashdot.org/story/23/10/27/003230/pigeons-problem-solve-similarly-to-artificial-intelligence-research-shows?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T07:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-27T03:30:00+00:00", + "title": "Sam Bankman-Fried Testifies, Says He 'Skimmed Over' FTX Terms of Service", + "link": "https://yro.slashdot.org/story/23/10/26/2353238/sam-bankman-fried-testifies-says-he-skimmed-over-ftx-terms-of-service?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-27T03:30:00+00:00", + "content": "An anonymous reader quotes a report from Ars Technica: Sam Bankman-Fried took the stand in his criminal trial today in an attempt to avoid decades in prison for alleged fraud at cryptocurrency exchange FTX and its affiliate Alameda Research. [...] Some of the alleged fraud relates to how Alameda borrowed money from FTX. In testimony today, \"Bankman-Fried said he believed that under FTX's terms of service, sister firm Alameda was allowed in many circumstances to borrow funds from the exchange,\" the WSJ wrote. Bankman-Fried reportedly said the terms of service were written by FTX lawyers and that he only \"skimmed\" certain parts. \"I read parts in depth. Parts I skimmed over,\" Bankman-Fried reportedly said after [U.S. District Judge Lewis Kaplan] asked if he read the entire terms of service document.\n \nSassoon asked Bankman-Fried if he had \"any conversations with lawyers about Alameda spending customer money that was deposited into FTX bank accounts,\" according to Bloomberg's live coverage. \"I don't recall any conversations that were contemporaneous and phrased that way,\" Bankman-Fried answered. \"I had so many conversations with lawyers later when we were trying to reconcile things in November 2022,\" Bankman-Fried also said. \"There were conversations around Alameda being used as a payment processor, a payment agent for FTX. I frankly don't recall conversations with lawyers or otherwise about the usage of the funds or the North Dimension accounts.\" North Dimension was an Alameda subsidiary. The Securities and Exchange Commission has alleged that \"Bankman-Fried directed FTX to have customers send funds to North Dimension in an effort to hide the fact that the funds were being sent to an account controlled by Alameda.\" [...]\n \nIn an overview of the alleged crimes, the indictment said Bankman-Fried \"misappropriated and embezzled FTX customer deposits and used billions of dollars in stolen funds... to enrich himself; to support the operations of FTX; to fund speculative venture investments; to help fund over a hundred million dollars in campaign contributions to Democrats and Republicans to seek to influence cryptocurrency regulation; and to pay for Alameda's operating costs.\" He was also accused of making \"false and fraudulent statements and representations to FTX's investors and Alameda's lenders.\" SBF's legal team decided that he would take the stand in his own defense -- a risky decision by legal observers as he will have to face cross-examination from federal prosecutors. In a rather unusual move, Judge Kaplan sent the jury home for a day to conduct a hearing on whether certain parts of Bankman-Fried's testimony are admissible.\n \nDuring his testimony, Bankman-Fried discussed various aspects of the case, including FTX's terms of service, loans from Alameda to him and other executives, a hack into FTX, and his use of the encrypted messaging service Signal. Live paywall-free updates of the trial are available here.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from Ars Technica: Sam Bankman-Fried took the stand in his criminal trial today in an attempt to avoid decades in prison for alleged fraud at cryptocurrency exchange FTX and its affiliate Alameda Research. [...] Some of the alleged fraud relates to how Alameda borrowed money from FTX. In testimony today, \"Bankman-Fried said he believed that under FTX's terms of service, sister firm Alameda was allowed in many circumstances to borrow funds from the exchange,\" the WSJ wrote. Bankman-Fried reportedly said the terms of service were written by FTX lawyers and that he only \"skimmed\" certain parts. \"I read parts in depth. Parts I skimmed over,\" Bankman-Fried reportedly said after [U.S. District Judge Lewis Kaplan] asked if he read the entire terms of service document.\n \nSassoon asked Bankman-Fried if he had \"any conversations with lawyers about Alameda spending customer money that was deposited into FTX bank accounts,\" according to Bloomberg's live coverage. \"I don't recall any conversations that were contemporaneous and phrased that way,\" Bankman-Fried answered. \"I had so many conversations with lawyers later when we were trying to reconcile things in November 2022,\" Bankman-Fried also said. \"There were conversations around Alameda being used as a payment processor, a payment agent for FTX. I frankly don't recall conversations with lawyers or otherwise about the usage of the funds or the North Dimension accounts.\" North Dimension was an Alameda subsidiary. The Securities and Exchange Commission has alleged that \"Bankman-Fried directed FTX to have customers send funds to North Dimension in an effort to hide the fact that the funds were being sent to an account controlled by Alameda.\" [...]\n \nIn an overview of the alleged crimes, the indictment said Bankman-Fried \"misappropriated and embezzled FTX customer deposits and used billions of dollars in stolen funds... to enrich himself; to support the operations of FTX; to fund speculative venture investments; to help fund over a hundred million dollars in campaign contributions to Democrats and Republicans to seek to influence cryptocurrency regulation; and to pay for Alameda's operating costs.\" He was also accused of making \"false and fraudulent statements and representations to FTX's investors and Alameda's lenders.\" SBF's legal team decided that he would take the stand in his own defense -- a risky decision by legal observers as he will have to face cross-examination from federal prosecutors. In a rather unusual move, Judge Kaplan sent the jury home for a day to conduct a hearing on whether certain parts of Bankman-Fried's testimony are admissible.\n \nDuring his testimony, Bankman-Fried discussed various aspects of the case, including FTX's terms of service, loans from Alameda to him and other executives, a hack into FTX, and his use of the encrypted messaging service Signal. Live paywall-free updates of the trial are available here.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/10/26/2353238/sam-bankman-fried-testifies-says-he-skimmed-over-ftx-terms-of-service?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T03:30:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-27T02:02:00+00:00", + "title": "Barcode Leads To Arrest of Texas Litterbug Behind 200 Pounds of Dumped Trash", + "link": "https://yro.slashdot.org/story/23/10/26/2329213/barcode-leads-to-arrest-of-texas-litterbug-behind-200-pounds-of-dumped-trash?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-27T02:02:00+00:00", + "content": "\"Illegal dumping is way too common, and often leads to no consequences,\" writes Slashdot reader Tony Isaac. \"In some urban neighborhoods, people dump entire truckloads of waste in ditches along the streets. Maybe authorities have found a way to make a dent in this problem.\" Houston Chronicle reports: The Texas Game Wardens were recently able to track down and arrest a litterbug allegedly behind an illegal dumping of over 200 pounds of construction materials using a barcode left at the scene of the crime, according to a news release from the Texas Parks and Wildlife Department (TPWD). The pile of trash, which included sheetrock, housing trim, two-by-fours and various plastic items, was reportedly dumped along a bridge and creek on private land instead of being properly disposed of.\n \nHowever, hidden among the garbage was also a box containing a barcode that would help identify the person behind the heap. A Smith County Game Warden used the barcode to track down the materials to a local store, and ultimately the owner of the credit card that was used for the purchase, TPWD said. The game warden interviewed the home owner who had reportedly just finished remodeling his home. \"The homeowner explained that he paid someone familiar to the family who offered to haul off their used material and trash for a minimum fee,\" Texas Games Wardens said in a statement. \"Unfortunately, the suspect kept the money and dumped the trash onto private property.\"\n \nWorking with the game warden, Smith County Sheriff's Office environmental deputies eventually arrested the suspect on charges of felony commercial dumping. At the time of the arrest, the suspect's truck was reportedly found loaded with even more building materials and trash, TPWD said. The state agency did not identify the suspect or disclose when or where they were arrested.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "\"Illegal dumping is way too common, and often leads to no consequences,\" writes Slashdot reader Tony Isaac. \"In some urban neighborhoods, people dump entire truckloads of waste in ditches along the streets. Maybe authorities have found a way to make a dent in this problem.\" Houston Chronicle reports: The Texas Game Wardens were recently able to track down and arrest a litterbug allegedly behind an illegal dumping of over 200 pounds of construction materials using a barcode left at the scene of the crime, according to a news release from the Texas Parks and Wildlife Department (TPWD). The pile of trash, which included sheetrock, housing trim, two-by-fours and various plastic items, was reportedly dumped along a bridge and creek on private land instead of being properly disposed of.\n \nHowever, hidden among the garbage was also a box containing a barcode that would help identify the person behind the heap. A Smith County Game Warden used the barcode to track down the materials to a local store, and ultimately the owner of the credit card that was used for the purchase, TPWD said. The game warden interviewed the home owner who had reportedly just finished remodeling his home. \"The homeowner explained that he paid someone familiar to the family who offered to haul off their used material and trash for a minimum fee,\" Texas Games Wardens said in a statement. \"Unfortunately, the suspect kept the money and dumped the trash onto private property.\"\n \nWorking with the game warden, Smith County Sheriff's Office environmental deputies eventually arrested the suspect on charges of felony commercial dumping. At the time of the arrest, the suspect's truck was reportedly found loaded with even more building materials and trash, TPWD said. The state agency did not identify the suspect or disclose when or where they were arrested.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/10/26/2329213/barcode-leads-to-arrest-of-texas-litterbug-behind-200-pounds-of-dumped-trash?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T02:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-27T01:25:00+00:00", + "title": "iPhones Have Been Exposing Your Unique MAC Despite Apple's Promises Otherwise", + "link": "https://yro.slashdot.org/story/23/10/26/2337247/iphones-have-been-exposing-your-unique-mac-despite-apples-promises-otherwise?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-27T01:25:00+00:00", + "content": "Dan Goodin reports via Ars Technica: Three years ago, Apple introduced a privacy-enhancing feature that hid the Wi-Fi address of iPhones and iPads when they joined a network. On Wednesday, the world learned that the feature has never worked as advertised. Despite promises that this never-changing address would be hidden and replaced with a private one that was unique to each SSID, Apple devices have continued to display the real one, which in turn got broadcast to every other connected device on the network. [...]\n \nIn 2020, Apple released iOS 14 with a feature that, by default, hid Wi-Fi MACs when devices connected to a network. Instead, the device displayed what Apple called a \"private Wi-Fi address\" that was different for each SSID. Over time, Apple has enhanced the feature, for instance, by allowing users to assign a new private Wi-Fi address for a given SSID. On Wednesday, Apple released iOS 17.1. Among the various fixes was a patch for a vulnerability, tracked as CVE-2023-42846, which prevented the privacy feature from working. Tommy Mysk, one of the two security researchers Apple credited with discovering and reporting the vulnerability (Talal Haj Bakry was the other), told Ars that he tested all recent iOS releases and found the flaw dates back to version 14, released in September 2020. \"From the get-go, this feature was useless because of this bug,\" he said. \"We couldn't stop the devices from sending these discovery requests, even with a VPN. Even in the Lockdown Mode.\"\n \nWhen an iPhone or any other device joins a network, it triggers a multicast message that is sent to all other devices on the network. By necessity, this message must include a MAC. Beginning with iOS 14, this value was, by default, different for each SSID. To the casual observer, the feature appeared to work as advertised. The \"source\" listed in the request was the private Wi-Fi address. Digging in a little further, however, it became clear that the real, permanent MAC was still broadcast to all other connected devices, just in a different field of the request. Mysk published a short video showing a Mac using the Wireshark packet sniffer to monitor traffic on the local network the Mac is connected to. When an iPhone running iOS prior to version 17.1 joins, it shares its real Wi-Fi MAC on port 5353/UDP.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Dan Goodin reports via Ars Technica: Three years ago, Apple introduced a privacy-enhancing feature that hid the Wi-Fi address of iPhones and iPads when they joined a network. On Wednesday, the world learned that the feature has never worked as advertised. Despite promises that this never-changing address would be hidden and replaced with a private one that was unique to each SSID, Apple devices have continued to display the real one, which in turn got broadcast to every other connected device on the network. [...]\n \nIn 2020, Apple released iOS 14 with a feature that, by default, hid Wi-Fi MACs when devices connected to a network. Instead, the device displayed what Apple called a \"private Wi-Fi address\" that was different for each SSID. Over time, Apple has enhanced the feature, for instance, by allowing users to assign a new private Wi-Fi address for a given SSID. On Wednesday, Apple released iOS 17.1. Among the various fixes was a patch for a vulnerability, tracked as CVE-2023-42846, which prevented the privacy feature from working. Tommy Mysk, one of the two security researchers Apple credited with discovering and reporting the vulnerability (Talal Haj Bakry was the other), told Ars that he tested all recent iOS releases and found the flaw dates back to version 14, released in September 2020. \"From the get-go, this feature was useless because of this bug,\" he said. \"We couldn't stop the devices from sending these discovery requests, even with a VPN. Even in the Lockdown Mode.\"\n \nWhen an iPhone or any other device joins a network, it triggers a multicast message that is sent to all other devices on the network. By necessity, this message must include a MAC. Beginning with iOS 14, this value was, by default, different for each SSID. To the casual observer, the feature appeared to work as advertised. The \"source\" listed in the request was the private Wi-Fi address. Digging in a little further, however, it became clear that the real, permanent MAC was still broadcast to all other connected devices, just in a different field of the request. Mysk published a short video showing a Mac using the Wireshark packet sniffer to monitor traffic on the local network the Mac is connected to. When an iPhone running iOS prior to version 17.1 joins, it shares its real Wi-Fi MAC on port 5353/UDP.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/10/26/2337247/iphones-have-been-exposing-your-unique-mac-despite-apples-promises-otherwise?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T01:25:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-27T00:45:00+00:00", + "title": "Meta's Threads App Has 'Just Under' 100 Million Monthly Active Users, Says Zuckerberg", + "link": "https://tech.slashdot.org/story/23/10/26/2322238/metas-threads-app-has-just-under-100-million-monthly-active-users-says-zuckerberg?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-27T00:45:00+00:00", + "content": "\"Threads is officially a success,\" writes long-time Slashdot reader destinyland. 9to5Mac reports: During Meta's quarterly earnings call today, CEO Mark Zuckerberg offered an update on the Threads, saying that the service has \"just under\" 100 million monthly active users. When Threads launched in July, the app quickly rocketed to having 100 million users within just a few days. While that growth is believed to have slowed down, as expected when something takes off so quickly, Zuckerberg says the service is currently at almost 100 million active users. Note the difference in terms, too. Having 100 million \"users\" is one thing, while having 100 million monthly active users is quite different -- and more impressive.\n \nThe number is also impressive when you consider that Threads isn't available to the millions of people who live in the European Union. As noted by The Verge, Zuckerberg also reiterated today that Meta's goal is to turn Threads into a \"billion-person public conversations app\" that is \"a bit more positive\" than some of the competition. According to Zuckerberg, Threads is on the way to achieving that goal.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "\"Threads is officially a success,\" writes long-time Slashdot reader destinyland. 9to5Mac reports: During Meta's quarterly earnings call today, CEO Mark Zuckerberg offered an update on the Threads, saying that the service has \"just under\" 100 million monthly active users. When Threads launched in July, the app quickly rocketed to having 100 million users within just a few days. While that growth is believed to have slowed down, as expected when something takes off so quickly, Zuckerberg says the service is currently at almost 100 million active users. Note the difference in terms, too. Having 100 million \"users\" is one thing, while having 100 million monthly active users is quite different -- and more impressive.\n \nThe number is also impressive when you consider that Threads isn't available to the millions of people who live in the European Union. As noted by The Verge, Zuckerberg also reiterated today that Meta's goal is to turn Threads into a \"billion-person public conversations app\" that is \"a bit more positive\" than some of the competition. According to Zuckerberg, Threads is on the way to achieving that goal.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/10/26/2322238/metas-threads-app-has-just-under-100-million-monthly-active-users-says-zuckerberg?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T00:45:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-27T00:02:00+00:00", + "title": "T-Mobile Walks Back Forced Plan Migration, Won't Make People Switch Plans After All", + "link": "https://mobile.slashdot.org/story/23/10/26/2115214/t-mobile-walks-back-forced-plan-migration-wont-make-people-switch-plans-after-all?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-27T00:02:00+00:00", + "content": "An anonymous reader quotes a report from CNET: T-Mobile caused a bit of a stir earlier this month when a leak revealed it planned to move people from older, cheaper plans to pricier ones starting with their November bill cycle. On Wednesday, the carrier officially walked back the changes with CEO Mike Sievert confirming that they would not happen. \"We tend to do tests and pilots of things quite a bit to try to figure out what's the right answer,\" Sievert said on a company earnings call, in response to a question about industry pricing and how it could raise its average revenues per user, a key industry metric. \"In this case, we had a test sell to try to understand customer interest in, and acceptance of, migrating off old legacy rate plans to something that's higher value, for them and for us.\"\n \nSievert noted that the company was doing training around this test and said it wasn't planned to be a \"broad, national thing.\" In its statement confirming the leak, the company told CNET earlier this month that the notices it was sending out was going to \"a small number\" of its users, but the carrier never clarified what a \"small number\" actually meant and didn't respond to that question when asked. At the time, the carrier said that the switch would generally see customers pay \"an increase of approximately $10 per line\" per month.\n \nWith the \"plenty of feedback\" the company received following the leak, Sievert said that T-Mobile has learned that this \"particular test sell isn't something that our customers are going to love.\" He mentioned that no migrations of plans have actually rolled out. As for what will happen going forward, the carrier will continue to do tests and pilots for different changes, Mike Katz, T-Mobile's president of marketing, strategy and products, said on the call.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from CNET: T-Mobile caused a bit of a stir earlier this month when a leak revealed it planned to move people from older, cheaper plans to pricier ones starting with their November bill cycle. On Wednesday, the carrier officially walked back the changes with CEO Mike Sievert confirming that they would not happen. \"We tend to do tests and pilots of things quite a bit to try to figure out what's the right answer,\" Sievert said on a company earnings call, in response to a question about industry pricing and how it could raise its average revenues per user, a key industry metric. \"In this case, we had a test sell to try to understand customer interest in, and acceptance of, migrating off old legacy rate plans to something that's higher value, for them and for us.\"\n \nSievert noted that the company was doing training around this test and said it wasn't planned to be a \"broad, national thing.\" In its statement confirming the leak, the company told CNET earlier this month that the notices it was sending out was going to \"a small number\" of its users, but the carrier never clarified what a \"small number\" actually meant and didn't respond to that question when asked. At the time, the carrier said that the switch would generally see customers pay \"an increase of approximately $10 per line\" per month.\n \nWith the \"plenty of feedback\" the company received following the leak, Sievert said that T-Mobile has learned that this \"particular test sell isn't something that our customers are going to love.\" He mentioned that no migrations of plans have actually rolled out. As for what will happen going forward, the carrier will continue to do tests and pilots for different changes, Mike Katz, T-Mobile's president of marketing, strategy and products, said on the call.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://mobile.slashdot.org/story/23/10/26/2115214/t-mobile-walks-back-forced-plan-migration-wont-make-people-switch-plans-after-all?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T00:02:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-26T23:20:00+00:00", + "title": "Privacy Advocate Challenges YouTube's Ad Blocking Detection Scripts Under EU Law", + "link": "https://news.slashdot.org/story/23/10/26/2110227/privacy-advocate-challenges-youtubes-ad-blocking-detection-scripts-under-eu-law?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-26T23:20:00+00:00", + "content": "\"Privacy advocate Alexander Hanff has filed a complaint with the Irish Data Protection Commission (DPC) challenging YouTube's use of JavaScript code to detect the presence of ad blocking extensions in the browsers of website visitors,\" writes long-time Slashdot reader Dotnaught. \"He claims that under Europe's ePrivacy Directive, YouTube needs to ask permission to run its detection script because it's not technically necessary. If the DPC agrees, it would be a major win for user privacy.\" The Register reports: Asked how he hopes the Irish DPC will respond, Hanff replied via email, \"I would expect the DPC to investigate and issue an enforcement notice to YouTube requiring them to cease and desist these activities without first obtaining consent (as per [Europe's General Data Protection Regulation (GDPR)] standard) for the deployment of their -spyware- detection scripts; and further to order YouTube to unban any accounts which have been banned as a result of these detections and to delete any personal data processed unlawfully (see Article 5(1) of GDPR) since they first started to deploy their -spyware- detection scripts.\"\n \nHanff's use of strikethrough formatting to acknowledges the legal difficulty of using the term \"spyware\" to refer to YouTube's ad block detection code. The security industry's standard defamation defense terminology for such stuff is PUPs, or potentially unwanted programs. Hanff, who reports having a Masters in Law focused on data and privacy protection, added that the ePrivacy Directive is lex specialis to GPDR. That means where laws overlap, the specific one takes precedence over the more general one. Thus, he argues, personal data collected without consent is unlawful under Article 5(1) of GDPR and cannot be lawfully processed for any purpose.\n \nWith regard to YouTube's assertion that using an ad blocker violates the site's Terms of Service, Hanff argued, \"Any terms and conditions which restrict the legal rights and freedoms of an EU citizen (and the point of Article 5(3) of the ePrivacy Directive is specifically to protect the fundamental right to Privacy under Article 7 of the Charter of Fundamental Rights of the European Union) are void under EU law.\" Therefore, in essence, \"Any such terms which restrict the rights of EU persons to limit access to their terminal equipment would, as a result, be void and unenforceable,\" he added.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "\"Privacy advocate Alexander Hanff has filed a complaint with the Irish Data Protection Commission (DPC) challenging YouTube's use of JavaScript code to detect the presence of ad blocking extensions in the browsers of website visitors,\" writes long-time Slashdot reader Dotnaught. \"He claims that under Europe's ePrivacy Directive, YouTube needs to ask permission to run its detection script because it's not technically necessary. If the DPC agrees, it would be a major win for user privacy.\" The Register reports: Asked how he hopes the Irish DPC will respond, Hanff replied via email, \"I would expect the DPC to investigate and issue an enforcement notice to YouTube requiring them to cease and desist these activities without first obtaining consent (as per [Europe's General Data Protection Regulation (GDPR)] standard) for the deployment of their -spyware- detection scripts; and further to order YouTube to unban any accounts which have been banned as a result of these detections and to delete any personal data processed unlawfully (see Article 5(1) of GDPR) since they first started to deploy their -spyware- detection scripts.\"\n \nHanff's use of strikethrough formatting to acknowledges the legal difficulty of using the term \"spyware\" to refer to YouTube's ad block detection code. The security industry's standard defamation defense terminology for such stuff is PUPs, or potentially unwanted programs. Hanff, who reports having a Masters in Law focused on data and privacy protection, added that the ePrivacy Directive is lex specialis to GPDR. That means where laws overlap, the specific one takes precedence over the more general one. Thus, he argues, personal data collected without consent is unlawful under Article 5(1) of GDPR and cannot be lawfully processed for any purpose.\n \nWith regard to YouTube's assertion that using an ad blocker violates the site's Terms of Service, Hanff argued, \"Any terms and conditions which restrict the legal rights and freedoms of an EU citizen (and the point of Article 5(3) of the ePrivacy Directive is specifically to protect the fundamental right to Privacy under Article 7 of the Charter of Fundamental Rights of the European Union) are void under EU law.\" Therefore, in essence, \"Any such terms which restrict the rights of EU persons to limit access to their terminal equipment would, as a result, be void and unenforceable,\" he added.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/23/10/26/2110227/privacy-advocate-challenges-youtubes-ad-blocking-detection-scripts-under-eu-law?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-26T23:20:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-26T22:40:00+00:00", + "title": "Google Fiber Is Getting Outrageously Fast 20Gbps Service", + "link": "https://tech.slashdot.org/story/23/10/26/2055241/google-fiber-is-getting-outrageously-fast-20gbps-service?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-26T22:40:00+00:00", + "content": "Google Fiber plans to upgrade some users to 20Gbps service by the end of the year. Ars Technica reports: Google's Wednesday blog post calls this part of a \"GFiber Labs\" experiment and says the service \"will initially be available as an early access offering to a small group of GFiber customers in select areas.\" The 20Gbps service is made possible by new networking gear: Nokia's 25G PON (passive optical network) technology, which lets Internet service providers push more bandwidth over existing fiber lines. Google says it's \"one of the first\" ISPs to adopt the technology for consumers, though at least one other US ISP, the Tennessee provider \"EPB,\" has rolled out the technology. Customers will need new networking gear, too, and Google says you'll get a new fiber modem with built-in Wi-Fi 7.\n \nFierce Telecom spoke with Google's Nick Saporito, head of product at Google Fiber, who said, \"We definitely see a need\" for 20Gbps service. For now, Saporito says the service is \"a very early adopter product,\" but it will eventually roll out \"in most, if not all, of our markets.\" According to that Fierce report, Fiber is built on Nokia's \"Quillion\" Fiber platform, which is upgradable, so Google only needed to \"plug in a new optical module and replace the optical network terminal on the end-user side\" to take its 5 and 8Gbps infrastructure to 20Gbps.\n \nThere's no word yet on the price or which utopian Google Fiber cities will get access to the 20Gbps service, but Google has already run trials in Kansas City, Missouri. Currently, Google Fiber costs $70 for 1Gbps and $150 for 8Gbps. Interested customers can sign up for early access at this link.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google Fiber plans to upgrade some users to 20Gbps service by the end of the year. Ars Technica reports: Google's Wednesday blog post calls this part of a \"GFiber Labs\" experiment and says the service \"will initially be available as an early access offering to a small group of GFiber customers in select areas.\" The 20Gbps service is made possible by new networking gear: Nokia's 25G PON (passive optical network) technology, which lets Internet service providers push more bandwidth over existing fiber lines. Google says it's \"one of the first\" ISPs to adopt the technology for consumers, though at least one other US ISP, the Tennessee provider \"EPB,\" has rolled out the technology. Customers will need new networking gear, too, and Google says you'll get a new fiber modem with built-in Wi-Fi 7.\n \nFierce Telecom spoke with Google's Nick Saporito, head of product at Google Fiber, who said, \"We definitely see a need\" for 20Gbps service. For now, Saporito says the service is \"a very early adopter product,\" but it will eventually roll out \"in most, if not all, of our markets.\" According to that Fierce report, Fiber is built on Nokia's \"Quillion\" Fiber platform, which is upgradable, so Google only needed to \"plug in a new optical module and replace the optical network terminal on the end-user side\" to take its 5 and 8Gbps infrastructure to 20Gbps.\n \nThere's no word yet on the price or which utopian Google Fiber cities will get access to the 20Gbps service, but Google has already run trials in Kansas City, Missouri. Currently, Google Fiber costs $70 for 1Gbps and $150 for 8Gbps. Interested customers can sign up for early access at this link.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/10/26/2055241/google-fiber-is-getting-outrageously-fast-20gbps-service?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-26T22:40:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-26T22:00:00+00:00", + "title": "Humanity At Risk From AI 'Race To the Bottom,' Says MIT Tech Expert", + "link": "https://slashdot.org/story/23/10/26/2051223/humanity-at-risk-from-ai-race-to-the-bottom-says-mit-tech-expert?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-26T22:00:00+00:00", + "content": "An anonymous reader quotes a report from The Guardian: Max Tegmark, a professor of physics and AI researcher at the Massachusetts Institute of Technology, said the world was \"witnessing a race to the bottom that must be stopped.\" Tegmark organized an open letter published in April, signed by thousands of tech industry figures including Elon Musk and the Apple co-founder Steve Wozniak, that called for a six-month hiatus on giant AI experiments. \"We're witnessing a race to the bottom that must be stopped,\" Tegmark told the Guardian. \"We urgently need AI safety standards, so that this transforms into a race to the top. AI promises many incredible benefits, but the reckless and unchecked development of increasingly powerful systems, with no oversight, puts our economy, our society, and our lives at risk. Regulation is critical to safe innovation, so that a handful of AI corporations don't jeopardize our shared future.\"\n \nIn a policy document published this week, 23 AI experts, including two modern \"godfathers\" of the technology, said governments must be allowed to halt development of exceptionally powerful models. Gillian Hadfield, a co-author of the paper and the director of the Schwartz Reisman Institute for Technology and Society at the University of Toronto, said AI models were being built over the next 18 months that would be many times more powerful than those already in operation. \"There are companies planning to train models with 100x more computation than today's state of the art, within 18 months,\" she said. \"No one knows how powerful they will be. And there's essentially no regulation on what they'll be able to do with these models.\"\n \nThe paper, whose authors include Geoffrey Hinton and Yoshua Bengio -- two winners of the ACM Turing award, the \"Nobel prize for computing\" -- argues that powerful models must be licensed by governments and, if necessary, have their development halted. \"For exceptionally capable future models, eg models that could circumvent human control, governments must be prepared to license their development, pause development in response to worrying capabilities, mandate access controls, and require information security measures robust to state-level hackers, until adequate protections are ready.\" The unrestrained development of artificial general intelligence, the term for a system that can carry out a wide range of tasks at or above human levels of intelligence, is a key concern among those calling for tighter regulation. Further reading: AI Risk Must Be Treated As Seriously As Climate Crisis, Says Google DeepMind Chief

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from The Guardian: Max Tegmark, a professor of physics and AI researcher at the Massachusetts Institute of Technology, said the world was \"witnessing a race to the bottom that must be stopped.\" Tegmark organized an open letter published in April, signed by thousands of tech industry figures including Elon Musk and the Apple co-founder Steve Wozniak, that called for a six-month hiatus on giant AI experiments. \"We're witnessing a race to the bottom that must be stopped,\" Tegmark told the Guardian. \"We urgently need AI safety standards, so that this transforms into a race to the top. AI promises many incredible benefits, but the reckless and unchecked development of increasingly powerful systems, with no oversight, puts our economy, our society, and our lives at risk. Regulation is critical to safe innovation, so that a handful of AI corporations don't jeopardize our shared future.\"\n \nIn a policy document published this week, 23 AI experts, including two modern \"godfathers\" of the technology, said governments must be allowed to halt development of exceptionally powerful models. Gillian Hadfield, a co-author of the paper and the director of the Schwartz Reisman Institute for Technology and Society at the University of Toronto, said AI models were being built over the next 18 months that would be many times more powerful than those already in operation. \"There are companies planning to train models with 100x more computation than today's state of the art, within 18 months,\" she said. \"No one knows how powerful they will be. And there's essentially no regulation on what they'll be able to do with these models.\"\n \nThe paper, whose authors include Geoffrey Hinton and Yoshua Bengio -- two winners of the ACM Turing award, the \"Nobel prize for computing\" -- argues that powerful models must be licensed by governments and, if necessary, have their development halted. \"For exceptionally capable future models, eg models that could circumvent human control, governments must be prepared to license their development, pause development in response to worrying capabilities, mandate access controls, and require information security measures robust to state-level hackers, until adequate protections are ready.\" The unrestrained development of artificial general intelligence, the term for a system that can carry out a wide range of tasks at or above human levels of intelligence, is a key concern among those calling for tighter regulation. Further reading: AI Risk Must Be Treated As Seriously As Climate Crisis, Says Google DeepMind Chief\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/23/10/26/2051223/humanity-at-risk-from-ai-race-to-the-bottom-says-mit-tech-expert?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-26T22:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-10-26T21:20:00+00:00", + "title": "iFixit Now Sells Microsoft Surface Parts For Repair", + "link": "https://yro.slashdot.org/story/23/10/26/2021247/ifixit-now-sells-microsoft-surface-parts-for-repair?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-10-26T21:20:00+00:00", + "content": "iFixit has started selling genuine replacement parts for Microsoft Surface devices. From a report: The company now offers SSDs, batteries, screens, kickstands, and a whole bunch of other parts for 15 Surface products. Some of the devices on that list include the Surface Pro 9, Surface Laptop 5, Surface Go 4, Surface Studio 2 Plus, and others. You can check out the entire list of supported products and parts in this post on Microsoft's website. In addition to supplying replacement parts, iFixit also offers disassembly videos and guides for each product, as well as toolkits that include things like an opening tool, tweezers, drivers, and more.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "iFixit has started selling genuine replacement parts for Microsoft Surface devices. From a report: The company now offers SSDs, batteries, screens, kickstands, and a whole bunch of other parts for 15 Surface products. Some of the devices on that list include the Surface Pro 9, Surface Laptop 5, Surface Go 4, Surface Studio 2 Plus, and others. You can check out the entire list of supported products and parts in this post on Microsoft's website. In addition to supplying replacement parts, iFixit also offers disassembly videos and guides for each product, as well as toolkits that include things like an opening tool, tweezers, drivers, and more.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/10/26/2021247/ifixit-now-sells-microsoft-surface-parts-for-repair?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-26T21:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-10-26T20:40:00+00:00", + "title": " UK Regulator Trying To Block Release of Shell North Sea Documents", + "link": "https://news.slashdot.org/story/23/10/26/1933203/uk-regulator-trying-to-block-release-of-shell-north-sea-documents?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-10-26T20:40:00+00:00", + "content": "The UK's oil and gas regulator is coming under fire from environmental groups for using lawyers to try to prevent the publication of five key documents relating to the environmental impact of Shell's activities in the North Sea. From a report: At a hearing in December, a legal representative for the North Sea Transition Authority (NSTA) is expected to argue against the publication of documents that contain details about the risk of pollution as a result of decommissioning the Brent oilfield, which was operated by Shell for more than 40 years. It says it opposes publication \"on a matter of process basis.\" Shell has applied for an exemption from international rules that require all infrastructure to be removed from the field and the UK government is deciding whether it will allow the oil company to leave the 170-metre-high oil platform legs in place for the three platforms known as Bravo, Charlie and Delta. \n\nA total of 64 concrete storage cells are contained in the leg structures, 42 of which have previously been used for oil storage and separation. Most of the cells are the size of seven Olympic swimming pools, and collectively still contain an estimated 72,000 tonnes of contaminated sediment and 638,000 cubic metres of oily water. Environmental groups believe the documents held by the NSTA would reveal new information about long-term environmental dangers that is relevant to other North Sea oil developments, including Equinor's plans to develop Rosebank, the UK's largest untapped field.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The UK's oil and gas regulator is coming under fire from environmental groups for using lawyers to try to prevent the publication of five key documents relating to the environmental impact of Shell's activities in the North Sea. From a report: At a hearing in December, a legal representative for the North Sea Transition Authority (NSTA) is expected to argue against the publication of documents that contain details about the risk of pollution as a result of decommissioning the Brent oilfield, which was operated by Shell for more than 40 years. It says it opposes publication \"on a matter of process basis.\" Shell has applied for an exemption from international rules that require all infrastructure to be removed from the field and the UK government is deciding whether it will allow the oil company to leave the 170-metre-high oil platform legs in place for the three platforms known as Bravo, Charlie and Delta. \n\nA total of 64 concrete storage cells are contained in the leg structures, 42 of which have previously been used for oil storage and separation. Most of the cells are the size of seven Olympic swimming pools, and collectively still contain an estimated 72,000 tonnes of contaminated sediment and 638,000 cubic metres of oily water. Environmental groups believe the documents held by the NSTA would reveal new information about long-term environmental dangers that is relevant to other North Sea oil developments, including Equinor's plans to develop Rosebank, the UK's largest untapped field.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://news.slashdot.org/story/23/10/26/1933203/uk-regulator-trying-to-block-release-of-shell-north-sea-documents?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-26T20:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-10-26T20:00:00+00:00", + "title": "Google Adds Generative AI Threats To Its Bug Bounty Program", + "link": "https://tech.slashdot.org/story/23/10/26/196251/google-adds-generative-ai-threats-to-its-bug-bounty-program?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-10-26T20:00:00+00:00", + "content": "Google has expanded its vulnerability rewards program (VRP) to include attack scenarios specific to generative AI. From a report: In an announcement shared with TechCrunch ahead of publication, Google said: \"We believe expanding the VRP will incentivize research around AI safety and security and bring potential issues to light that will ultimately make AI safer for everyone.\" Google's vulnerability rewards program (or bug bounty) pays ethical hackers for finding and responsibly disclosing security flaws. \n\nGiven that generative AI brings to light new security issues, such as the potential for unfair bias or model manipulation, Google said it sought to rethink how bugs it receives should be categorized and reported. The tech giant says it's doing this by using findings from its newly formed AI Red Team, a group of hackers that simulate a variety of adversaries, ranging from nation-states and government-backed groups to hacktivists and malicious insiders to hunt down security weaknesses in technology. The team recently conducted an exercise to determine the biggest threats to the technology behind generative AI products like ChatGPT and Google Bard.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Google has expanded its vulnerability rewards program (VRP) to include attack scenarios specific to generative AI. From a report: In an announcement shared with TechCrunch ahead of publication, Google said: \"We believe expanding the VRP will incentivize research around AI safety and security and bring potential issues to light that will ultimately make AI safer for everyone.\" Google's vulnerability rewards program (or bug bounty) pays ethical hackers for finding and responsibly disclosing security flaws. \n\nGiven that generative AI brings to light new security issues, such as the potential for unfair bias or model manipulation, Google said it sought to rethink how bugs it receives should be categorized and reported. The tech giant says it's doing this by using findings from its newly formed AI Red Team, a group of hackers that simulate a variety of adversaries, ranging from nation-states and government-backed groups to hacktivists and malicious insiders to hunt down security weaknesses in technology. The team recently conducted an exercise to determine the biggest threats to the technology behind generative AI products like ChatGPT and Google Bard.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/10/26/196251/google-adds-generative-ai-threats-to-its-bug-bounty-program?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-26T20:00:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-10-26T19:20:00+00:00", + "title": "Hyundai To Hold Software-Upgrade Clinics Across the US For Vehicles Targeted By Thieves", + "link": "https://tech.slashdot.org/story/23/10/26/1849224/hyundai-to-hold-software-upgrade-clinics-across-the-us-for-vehicles-targeted-by-thieves?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-10-26T19:20:00+00:00", + "content": "Hyundai said this week that it will set up \"mobile clinics\" at five U.S. locations to provide anti-theft software upgrades for vehicles now regularly targeted by thieves using a technique popularized on TikTok and other social media platforms. From a report: The South Korean automaker will hold the clinics, which will run for two to three days on or adjacent to weekends, in New York City; Chicago; Minneapolis; St. Paul, Minnesota; and Rochester, New York. The clinics will take place between Oct. 28 and Nov. 18. Hyundai said it will also support single-day regional clinics run by dealerships before the end of 2023, although it didn't name locations or dates.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Hyundai said this week that it will set up \"mobile clinics\" at five U.S. locations to provide anti-theft software upgrades for vehicles now regularly targeted by thieves using a technique popularized on TikTok and other social media platforms. From a report: The South Korean automaker will hold the clinics, which will run for two to three days on or adjacent to weekends, in New York City; Chicago; Minneapolis; St. Paul, Minnesota; and Rochester, New York. The clinics will take place between Oct. 28 and Nov. 18. Hyundai said it will also support single-day regional clinics run by dealerships before the end of 2023, although it didn't name locations or dates.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/10/26/1849224/hyundai-to-hold-software-upgrade-clinics-across-the-us-for-vehicles-targeted-by-thieves?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-26T19:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-10-26T18:41:00+00:00", + "title": "OpenAI Forms Team To Study 'Catastrophic' AI Risks, Including Nuclear Threats", + "link": "https://tech.slashdot.org/story/23/10/26/1833234/openai-forms-team-to-study-catastrophic-ai-risks-including-nuclear-threats?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-10-26T18:41:00+00:00", + "content": "OpenAI today announced that it's created a new team to assess, evaluate and probe AI models to protect against what it describes as \"catastrophic risks.\" From a report: The team, called Preparedness, will be led by Aleksander Madry, the director of MIT's Center for Deployable Machine Learning. (Madry joined OpenAI in May as \"head of Preparedness,\" according to LinkedIn, ) Preparedness' chief responsibilities will be tracking, forecasting and protecting against the dangers of future AI systems, ranging from their ability to persuade and fool humans (like in phishing attacks) to their malicious code-generating capabilities. \n\nSome of the risk categories Preparedness is charged with studying seem more... far-fetched than others. For example, in a blog post, OpenAI lists \"chemical, biological, radiological and nuclear\" threats as areas of top concern where it pertains to AI models. OpenAI CEO Sam Altman is a noted AI doomsayer, often airing fears â\" whether for optics or out of personal conviction -- that AI \"may lead to human extinction.\" But telegraphing that OpenAI might actually devote resources to studying scenarios straight out of sci-fi dystopian novels is a step further than this writer expected, frankly.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "OpenAI today announced that it's created a new team to assess, evaluate and probe AI models to protect against what it describes as \"catastrophic risks.\" From a report: The team, called Preparedness, will be led by Aleksander Madry, the director of MIT's Center for Deployable Machine Learning. (Madry joined OpenAI in May as \"head of Preparedness,\" according to LinkedIn, ) Preparedness' chief responsibilities will be tracking, forecasting and protecting against the dangers of future AI systems, ranging from their ability to persuade and fool humans (like in phishing attacks) to their malicious code-generating capabilities. \n\nSome of the risk categories Preparedness is charged with studying seem more... far-fetched than others. For example, in a blog post, OpenAI lists \"chemical, biological, radiological and nuclear\" threats as areas of top concern where it pertains to AI models. OpenAI CEO Sam Altman is a noted AI doomsayer, often airing fears \u00e2\" whether for optics or out of personal conviction -- that AI \"may lead to human extinction.\" But telegraphing that OpenAI might actually devote resources to studying scenarios straight out of sci-fi dystopian novels is a step further than this writer expected, frankly.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/10/26/1833234/openai-forms-team-to-study-catastrophic-ai-risks-including-nuclear-threats?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-26T18:41:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-10-27T15:20:00+00:00", + "title": "The Restaurant Nearest Google", + "link": "https://tech.slashdot.org/story/23/10/27/108227/the-restaurant-nearest-google?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-10-27T15:20:00+00:00", + "content": "Thai Food Near Me, Dentist Near Me, Notary Near Me, Plumber Near Me -- businesses across the country picked names meant to outsmart Google Search. Does it actually work? From a report: Thai Food Near Me isn't the first business to think of the Google-first naming convention. There are reminders of Google's kingmaker status in online discoverability everywhere in cities across the country. Among the businesses I was able to find: a chain of half a dozen Affordable Dentist Near Me's in Texas; an Antiques Near Me two hours outside of New York City; seven Plumber Near Me businesses; a Phone Repair Near Me in Cape Cod, Massachusetts; a Psychic Near Me in Chicago; and more than 20 iterations of \"Notary Near Me\" across the US. Felix Silva decided on the name Barber Shop Near Me after considering more than 20 other options for his Coral Springs, Florida, store in 2019. The name is meant to be neutral and memorable -- another one in contention was \"The Barber Shop\" -- but Silva fully leaned into the Google joke: the logo is a red location pin resembling Google's own, with a blue, white, and red barber pole pattern in the middle. \n\n[...] As with Thai Food Near Me, the most powerful thing an SEO-driven name might be able to do is get customers in the door. From there, it's up to a business to give them a good experience, whether that's a great plate of pad see ew or the perfect haircut. Then, the cycle continues -- happy customers leave good reviews. Good reviews help the business's Google Maps profile rank higher. Silva uploads high-quality photos and videos to the page and shares updates, too. That's another SEO move; some experts say active profiles can improve a business's rankings. Still, the naming scheme has caught on: one acquaintance selling Christmas trees, for example, rebranded his business to be called Christmas Trees Near Me, Silva says. (Silva's is not the only Barber Shop Near Me, either -- there are also shops with the same name in Oak Park, Illinois; Queens, New York; and Muskogee, Oklahoma, according to Google Maps.)

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Thai Food Near Me, Dentist Near Me, Notary Near Me, Plumber Near Me -- businesses across the country picked names meant to outsmart Google Search. Does it actually work? From a report: Thai Food Near Me isn't the first business to think of the Google-first naming convention. There are reminders of Google's kingmaker status in online discoverability everywhere in cities across the country. Among the businesses I was able to find: a chain of half a dozen Affordable Dentist Near Me's in Texas; an Antiques Near Me two hours outside of New York City; seven Plumber Near Me businesses; a Phone Repair Near Me in Cape Cod, Massachusetts; a Psychic Near Me in Chicago; and more than 20 iterations of \"Notary Near Me\" across the US. Felix Silva decided on the name Barber Shop Near Me after considering more than 20 other options for his Coral Springs, Florida, store in 2019. The name is meant to be neutral and memorable -- another one in contention was \"The Barber Shop\" -- but Silva fully leaned into the Google joke: the logo is a red location pin resembling Google's own, with a blue, white, and red barber pole pattern in the middle. \n\n[...] As with Thai Food Near Me, the most powerful thing an SEO-driven name might be able to do is get customers in the door. From there, it's up to a business to give them a good experience, whether that's a great plate of pad see ew or the perfect haircut. Then, the cycle continues -- happy customers leave good reviews. Good reviews help the business's Google Maps profile rank higher. Silva uploads high-quality photos and videos to the page and shares updates, too. That's another SEO move; some experts say active profiles can improve a business's rankings. Still, the naming scheme has caught on: one acquaintance selling Christmas trees, for example, rebranded his business to be called Christmas Trees Near Me, Silva says. (Silva's is not the only Barber Shop Near Me, either -- there are also shops with the same name in Oak Park, Illinois; Queens, New York; and Muskogee, Oklahoma, according to Google Maps.)\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/10/27/108227/the-restaurant-nearest-google?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T15:20:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-10-27T14:40:00+00:00", + "title": "PIRG Petitions Microsoft To Extend the Life of Windows 10", + "link": "https://tech.slashdot.org/story/23/10/27/0910232/pirg-petitions-microsoft-to-extend-the-life-of-windows-10?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-10-27T14:40:00+00:00", + "content": "The Public Interest Research Group (PIRG) has delivered a petition to Microsoft calling on the company to rethink the impending abandonment of Windows 10 in the face of millions of PCs potentially being rendered eligible for landfill overnight. From a report: There are now less than two years until Microsoft is due to cut support for Windows 10, and at current estimates, 400 million PCs can't make the jump to Windows 11. The petition, addressed to Microsoft CEO Satya Nadella, criticizes its plans and states that customers expect their devices to last rather than be rendered obsolete by an arbitrary decision. PIRG warns that tipping that much hardware into landfills is somewhat at odds with the company's stance on the environment. \n\nThe petition reads: \"All software reaches a point at which it's no longer supported, but when the consequences to our environment are this large we shouldn't accept it.\" As a reminder, while Windows 10 was largely backwards-compatible with computers running older operating systems, Microsoft slapped hardware requirements on Windows 11 that rendered machines even just a few years old unable to upgrade -- the main issues center on the CPU and TPM requirements.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "The Public Interest Research Group (PIRG) has delivered a petition to Microsoft calling on the company to rethink the impending abandonment of Windows 10 in the face of millions of PCs potentially being rendered eligible for landfill overnight. From a report: There are now less than two years until Microsoft is due to cut support for Windows 10, and at current estimates, 400 million PCs can't make the jump to Windows 11. The petition, addressed to Microsoft CEO Satya Nadella, criticizes its plans and states that customers expect their devices to last rather than be rendered obsolete by an arbitrary decision. PIRG warns that tipping that much hardware into landfills is somewhat at odds with the company's stance on the environment. \n\nThe petition reads: \"All software reaches a point at which it's no longer supported, but when the consequences to our environment are this large we shouldn't accept it.\" As a reminder, while Windows 10 was largely backwards-compatible with computers running older operating systems, Microsoft slapped hardware requirements on Windows 11 that rendered machines even just a few years old unable to upgrade -- the main issues center on the CPU and TPM requirements.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://tech.slashdot.org/story/23/10/27/0910232/pirg-petitions-microsoft-to-extend-the-life-of-windows-10?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T14:40:00.000Z" + }, + { + "creator": "msmash", + "date": "2023-10-27T14:00:00+00:00", + "title": "Ticketmaster's Still Hiding Ticket Fees, Senator Says", + "link": "https://slashdot.org/story/23/10/27/096236/ticketmasters-still-hiding-ticket-fees-senator-says?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "msmash", + "dc:date": "2023-10-27T14:00:00+00:00", + "content": "Live Nation, the parent company of Ticketmaster, promised to scrap the hidden fees plaguing its ticketing service earlier this year. But one senator says the company's not doing nearly enough. From a report: In a letter to Live Nation CEO Michael Rapino Wednesday, Sen. Amy Klobuchar (D-MN) called on the company to turn on an \"all-in\" pricing filter that it added this year by default. Klobuchar said it's \"still too difficult\" for users to turn on the filter that's \"buried within a tab that gives no indication that it contains\" the option in the first place. \n\n\"Millions of Americans rely on your company for the chance to see their favorite artist, band, or sports team,\" Klobuchar wrote. \"In return for their business and trust, your customers expect a transparent and honest ticket buying process free from hidden fees.\" Back in June, Live Nation, along with AirBnB, SeatGeek, and DICE, pledged to disclose the full price of their tickets and services as part of an agreement with the White House to reduce \"junk fees.\" At the time, Live Nation said that these new rules would start applying to events in September.

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "Live Nation, the parent company of Ticketmaster, promised to scrap the hidden fees plaguing its ticketing service earlier this year. But one senator says the company's not doing nearly enough. From a report: In a letter to Live Nation CEO Michael Rapino Wednesday, Sen. Amy Klobuchar (D-MN) called on the company to turn on an \"all-in\" pricing filter that it added this year by default. Klobuchar said it's \"still too difficult\" for users to turn on the filter that's \"buried within a tab that gives no indication that it contains\" the option in the first place. \n\n\"Millions of Americans rely on your company for the chance to see their favorite artist, band, or sports team,\" Klobuchar wrote. \"In return for their business and trust, your customers expect a transparent and honest ticket buying process free from hidden fees.\" Back in June, Live Nation, along with AirBnB, SeatGeek, and DICE, pledged to disclose the full price of their tickets and services as part of an agreement with the White House to reduce \"junk fees.\" At the time, Live Nation said that these new rules would start applying to events in September.\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://slashdot.org/story/23/10/27/096236/ticketmasters-still-hiding-ticket-fees-senator-says?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T14:00:00.000Z" + }, + { + "creator": "BeauHD", + "date": "2023-10-27T13:00:00+00:00", + "title": "Record Labels Shut Down FileWarez, Brazil's Oldest Pirate Forum", + "link": "https://yro.slashdot.org/story/23/10/27/0035239/record-labels-shut-down-filewarez-brazils-oldest-pirate-forum?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "dc:creator": "BeauHD", + "dc:date": "2023-10-27T13:00:00+00:00", + "content": "An anonymous reader quotes a report from TorrentFreak: As far as we know, Brazil-based file-sharing forum FileWarez.com first appeared in August 2004, its domain name having been registered the previous month. The default language was naturally Portuguese and according to this image from the Wayback Machine, potential members needed a basic grip of the language to sign up. After all, Google Translate wouldn't exist for another two years. At some point in the years that followed, FileWarez shifted to a Netherlands .NL domain supported by filewarez.no-ip.biz, which may suggest a site regularly on the move. In 2008, unspecified problems saw the .NL domain dumped in favor of a new one. Riding out problems, various issues, and bouts of downtime, FileWarez.tv stayed in place for the next 15.5 years. Then two weeks ago, after establishing itself as Brazil's oldest file-sharing forum, FileWarez suddenly vanished.\n \nIn a press release Wednesday, global music industry group IFPI announced that \"prominent illegal file-sharing forum, FileWarez,\" was shut down following co-ordinated action by record companies, anti-piracy body APDIF, and local cybercrime unit, Cyber Gaeco. \"IFPI, the organization that represents the recorded music industry worldwide, alongside its Brazilian national group Pro-Musica, have welcomed the successful action against FileWarez.tv -- one of the most prominent illegal file sharing sites in Brazil -- by the Brazilian special cybercrime unit of prosecutor's office of Sao Paulo, Cyber Gaeco,\" the announcement reads. \"FileWarez was the most established illegal filesharing forum in Brazil, dedicated to sharing illegal music content. While active, the site had more than 118,000 registered users with at least 24,000 monthly active users.\"

\n\n\n\n\n\n

Read more of this story at Slashdot.

", + "contentSnippet": "An anonymous reader quotes a report from TorrentFreak: As far as we know, Brazil-based file-sharing forum FileWarez.com first appeared in August 2004, its domain name having been registered the previous month. The default language was naturally Portuguese and according to this image from the Wayback Machine, potential members needed a basic grip of the language to sign up. After all, Google Translate wouldn't exist for another two years. At some point in the years that followed, FileWarez shifted to a Netherlands .NL domain supported by filewarez.no-ip.biz, which may suggest a site regularly on the move. In 2008, unspecified problems saw the .NL domain dumped in favor of a new one. Riding out problems, various issues, and bouts of downtime, FileWarez.tv stayed in place for the next 15.5 years. Then two weeks ago, after establishing itself as Brazil's oldest file-sharing forum, FileWarez suddenly vanished.\n \nIn a press release Wednesday, global music industry group IFPI announced that \"prominent illegal file-sharing forum, FileWarez,\" was shut down following co-ordinated action by record companies, anti-piracy body APDIF, and local cybercrime unit, Cyber Gaeco. \"IFPI, the organization that represents the recorded music industry worldwide, alongside its Brazilian national group Pro-Musica, have welcomed the successful action against FileWarez.tv -- one of the most prominent illegal file sharing sites in Brazil -- by the Brazilian special cybercrime unit of prosecutor's office of Sao Paulo, Cyber Gaeco,\" the announcement reads. \"FileWarez was the most established illegal filesharing forum in Brazil, dedicated to sharing illegal music content. While active, the site had more than 118,000 registered users with at least 24,000 monthly active users.\"\n\n\n\n\n\n\n\nRead more of this story at Slashdot.", + "rdf:about": "https://yro.slashdot.org/story/23/10/27/0035239/record-labels-shut-down-filewarez-brazils-oldest-pirate-forum?utm_source=rss1.0mainlinkanon&utm_medium=feed", + "isoDate": "2023-10-27T13:00:00.000Z" + } +] diff --git a/intro to react/newData/oldNews/06510735eb5afa3d804c3473f24be0d8b250a6ec791c5b0ce58d08932e9647d1.json b/intro to react/newData/oldNews/06510735eb5afa3d804c3473f24be0d8b250a6ec791c5b0ce58d08932e9647d1.json index d1046e9..ace5466 100644 --- a/intro to react/newData/oldNews/06510735eb5afa3d804c3473f24be0d8b250a6ec791c5b0ce58d08932e9647d1.json +++ b/intro to react/newData/oldNews/06510735eb5afa3d804c3473f24be0d8b250a6ec791c5b0ce58d08932e9647d1.json @@ -1,1415 +1,1415 @@ [ - { - "title": "War has spread to a sixth domain: the private sector", - "link": "https://www.ft.com/content/b81047bc-c124-4ee3-bc92-752d54a3bd66", - "pubDate": "Thu, 30 Nov 2023 11:50:14 GMT", - "content": "The conflict in Ukraine highlights the need for governments and private companies to collaborate on national security", - "contentSnippet": "The conflict in Ukraine highlights the need for governments and private companies to collaborate on national security", - "guid": "b81047bc-c124-4ee3-bc92-752d54a3bd66", - "isoDate": "2023-11-30T11:50:14.000Z" - }, - { - "title": "Can financial engineering solve the dilemma over Russia\u2019s blocked reserves?", - "link": "https://www.ft.com/content/5dd03ae1-61b0-4038-bec9-2ec80e0d62b0", - "pubDate": "Thu, 30 Nov 2023 11:00:20 GMT", - "content": "Special purpose vehicles for victory", - "contentSnippet": "Special purpose vehicles for victory", - "guid": "5dd03ae1-61b0-4038-bec9-2ec80e0d62b0", - "isoDate": "2023-11-30T11:00:20.000Z" - }, - { - "title": "Why Blinken avoided meeting Lavrov at a fraught OSCE meeting", - "link": "https://www.ft.com/content/58db28b1-b4bf-41fc-a66d-61b752416904", - "pubDate": "Thu, 30 Nov 2023 06:00:20 GMT", - "content": "Also in this newsletter: How much money can the EU spare for climate compensation?", - "contentSnippet": "Also in this newsletter: How much money can the EU spare for climate compensation?", - "guid": "58db28b1-b4bf-41fc-a66d-61b752416904", - "isoDate": "2023-11-30T06:00:20.000Z" - }, - { - "title": "Belarus debtholders dispute frozen $800mn bond at Euroclear", - "link": "https://www.ft.com/content/64807c8a-f764-4620-a900-d22e83cb4920", - "pubDate": "Thu, 30 Nov 2023 05:00:21 GMT", - "content": "Securities depository holds up payments due to disagreement over debt status", - "contentSnippet": "Securities depository holds up payments due to disagreement over debt status", - "guid": "64807c8a-f764-4620-a900-d22e83cb4920", - "isoDate": "2023-11-30T05:00:21.000Z" - }, - { - "title": "Nato says don\u2019t underestimate Russia", - "link": "https://www.ft.com/content/199c5912-0c0f-4c5f-8d18-dfef5a183a5c", - "pubDate": "Thu, 30 Nov 2023 05:00:21 GMT", - "content": "Nato's secretary-general says Russia has been stockpiling missiles for a winter attack on Ukraine", - "contentSnippet": "Nato's secretary-general says Russia has been stockpiling missiles for a winter attack on Ukraine", - "guid": "199c5912-0c0f-4c5f-8d18-dfef5a183a5c", - "isoDate": "2023-11-30T05:00:21.000Z" - }, - { - "title": "Russia has stockpiled missiles for winter attack on Ukraine, says Nato", - "link": "https://www.ft.com/content/11be1c77-0cf3-404b-b49a-09c34e57f8f7", - "pubDate": "Wed, 29 Nov 2023 14:18:57 GMT", - "content": "Jens Stoltenberg urges allies not to \u2018underestimate\u2019 Moscow and its war economy", - "contentSnippet": "Jens Stoltenberg urges allies not to \u2018underestimate\u2019 Moscow and its war economy", - "guid": "11be1c77-0cf3-404b-b49a-09c34e57f8f7", - "isoDate": "2023-11-29T14:18:57.000Z" - }, - { - "title": "Why Nato\u2019s reassurances to Ukraine are starting to ring hollow", - "link": "https://www.ft.com/content/f2cfebb4-77c9-490a-ac99-8c16f3385373", - "pubDate": "Wed, 29 Nov 2023 06:01:52 GMT", - "content": "Also in this newsletter: Greece\u2019s \u2018universal\u2019 outrage over the Parthenon marbles", - "contentSnippet": "Also in this newsletter: Greece\u2019s \u2018universal\u2019 outrage over the Parthenon marbles", - "guid": "f2cfebb4-77c9-490a-ac99-8c16f3385373", - "isoDate": "2023-11-29T06:01:52.000Z" - }, - { - "title": "The crackdown on Ukraine\u2019s oligarchs", - "link": "https://www.ft.com/content/1f34138e-a1f1-43ca-85f6-63e6264a211e", - "pubDate": "Wed, 29 Nov 2023 05:00:55 GMT", - "content": "Volodymyr Zelenskyy\u2019s government is taking action against politically influential business figures. But will a new generation take their place?", - "contentSnippet": "Volodymyr Zelenskyy\u2019s government is taking action against politically influential business figures. But will a new generation take their place?", - "guid": "1f34138e-a1f1-43ca-85f6-63e6264a211e", - "isoDate": "2023-11-29T05:00:55.000Z" - }, - { - "title": "EU ports help sell on over 20% of LNG imports from Russia", - "link": "https://www.ft.com/content/aff34dec-9fbb-4158-9af8-7a7761b25893", - "pubDate": "Wed, 29 Nov 2023 05:00:54 GMT", - "content": "\u2018Transshipment\u2019 of liquefied natural gas, crucial for Moscow\u2019s Arctic fleet, is banned by UK and Netherlands", - "contentSnippet": "\u2018Transshipment\u2019 of liquefied natural gas, crucial for Moscow\u2019s Arctic fleet, is banned by UK and Netherlands", - "guid": "aff34dec-9fbb-4158-9af8-7a7761b25893", - "isoDate": "2023-11-29T05:00:54.000Z" - }, - { - "title": "Finland to close all land borders with Russia after migrant influx", - "link": "https://www.ft.com/content/1c195b60-b0ec-42a3-9efd-c4aced026e6f", - "pubDate": "Tue, 28 Nov 2023 18:09:29 GMT", - "content": "Helsinki says tactic by Moscow is deliberate and poses \u2018serious threat to national security\u2019", - "contentSnippet": "Helsinki says tactic by Moscow is deliberate and poses \u2018serious threat to national security\u2019", - "guid": "1c195b60-b0ec-42a3-9efd-c4aced026e6f", - "isoDate": "2023-11-28T18:09:29.000Z" - }, - { - "title": "Ukraine claims wife of country\u2019s military intelligence chief was poisoned", - "link": "https://www.ft.com/content/b41d57ad-a9f1-4e16-bd9d-cfe92d6cf5a4", - "pubDate": "Tue, 28 Nov 2023 15:51:55 GMT", - "content": "Several officers also undergoing medical treatment after contamination with heavy metal substances, say officers", - "contentSnippet": "Several officers also undergoing medical treatment after contamination with heavy metal substances, say officers", - "guid": "b41d57ad-a9f1-4e16-bd9d-cfe92d6cf5a4", - "isoDate": "2023-11-28T15:51:55.000Z" - }, - { - "title": "Turkey\u2019s exports of military-linked goods to Russia soar", - "link": "https://www.ft.com/content/1cef6628-32eb-49c9-a7f1-2aef9bce4239", - "pubDate": "Mon, 27 Nov 2023 15:02:01 GMT", - "content": "Growth in shipments of restricted parts fuels western suspicions that Turkish companies are conduit for Moscow", - "contentSnippet": "Growth in shipments of restricted parts fuels western suspicions that Turkish companies are conduit for Moscow", - "guid": "1cef6628-32eb-49c9-a7f1-2aef9bce4239", - "isoDate": "2023-11-27T15:02:01.000Z" - }, - { - "title": "Ukraine\u2019s long war \u2014 and how to win it", - "link": "https://www.ft.com/content/822e4e21-a631-496e-accd-1c9d6288573c", - "pubDate": "Mon, 27 Nov 2023 05:00:49 GMT", - "content": "Every conflict has periods of defeatism but there are no signs of it in Kyiv, which just needs the west to keep the faith ", - "contentSnippet": "Every conflict has periods of defeatism but there are no signs of it in Kyiv, which just needs the west to keep the faith", - "guid": "822e4e21-a631-496e-accd-1c9d6288573c", - "isoDate": "2023-11-27T05:00:49.000Z" - }, - { - "title": "Russia claims to repel Ukrainian drones after record air strikes on Kyiv", - "link": "https://www.ft.com/content/83c865c5-5ed7-4a9b-9fea-e3d1031bbf1f", - "pubDate": "Sun, 26 Nov 2023 15:40:42 GMT", - "content": "Ukraine fears start of Moscow winter campaign aimed at destroying energy infrastructure", - "contentSnippet": "Ukraine fears start of Moscow winter campaign aimed at destroying energy infrastructure", - "guid": "83c865c5-5ed7-4a9b-9fea-e3d1031bbf1f", - "isoDate": "2023-11-26T15:40:42.000Z" - }, - { - "title": "Manpower becomes Ukraine\u2019s latest challenge as it digs in for a long war", - "link": "https://www.ft.com/content/25711074-5e1a-494a-9d7c-ccb535f671d5", - "pubDate": "Sun, 26 Nov 2023 05:00:56 GMT", - "content": "Kyiv seeks to persuade younger recruits with better endurance and higher skills to join up", - "contentSnippet": "Kyiv seeks to persuade younger recruits with better endurance and higher skills to join up", - "guid": "25711074-5e1a-494a-9d7c-ccb535f671d5", - "isoDate": "2023-11-26T05:00:56.000Z" - }, - { - "title": "Russia launches largest drone attack since start of Ukraine war", - "link": "https://www.ft.com/content/a829cb8c-2337-4aa7-8f80-8292ef8203da", - "pubDate": "Sat, 25 Nov 2023 12:53:40 GMT", - "content": "Five people wounded in barrage that hit residential buildings and energy infrastructure", - "contentSnippet": "Five people wounded in barrage that hit residential buildings and energy infrastructure", - "guid": "a829cb8c-2337-4aa7-8f80-8292ef8203da", - "isoDate": "2023-11-25T12:53:40.000Z" - }, - { - "title": "Polish truckers extend Ukraine border blockade", - "link": "https://www.ft.com/content/8ce3b3b5-b2b1-4871-baec-394bc74e8911", - "pubDate": "Thu, 23 Nov 2023 14:17:09 GMT", - "content": "Protest spreads to main crossing with long queues forming as temperatures drop ", - "contentSnippet": "Protest spreads to main crossing with long queues forming as temperatures drop", - "guid": "8ce3b3b5-b2b1-4871-baec-394bc74e8911", - "isoDate": "2023-11-23T14:17:09.000Z" - }, - { - "title": "EU and Canada preparing show of friendship at joint summit", - "link": "https://www.ft.com/content/9f98261a-9900-4bef-b96a-e53e54256a24", - "pubDate": "Thu, 23 Nov 2023 06:00:54 GMT", - "content": "Also in this newsletter: Austria\u2019s foreign minister calls for elections in Ukraine", - "contentSnippet": "Also in this newsletter: Austria\u2019s foreign minister calls for elections in Ukraine", - "guid": "9f98261a-9900-4bef-b96a-e53e54256a24", - "isoDate": "2023-11-23T06:00:54.000Z" - }, - { - "title": "Treat Bosnia on par with Ukraine over accession talks, Austria tells EU", - "link": "https://www.ft.com/content/5270c7c9-5712-481a-ba5f-be7678ef0469", - "pubDate": "Thu, 23 Nov 2023 05:00:55 GMT", - "content": "Foreign minister warns Brussels not to look at Balkans \u2018with a magnifying glass\u2019 and at Kyiv \u2018with rose-tinted glasses\u2019 ", - "contentSnippet": "Foreign minister warns Brussels not to look at Balkans \u2018with a magnifying glass\u2019 and at Kyiv \u2018with rose-tinted glasses\u2019", - "guid": "5270c7c9-5712-481a-ba5f-be7678ef0469", - "isoDate": "2023-11-23T05:00:55.000Z" - }, - { - "title": "Ukraine: the new fissures in a society under strain", - "link": "https://www.ft.com/content/2b0c050f-f776-4292-8ce7-884beceef4be", - "pubDate": "Thu, 23 Nov 2023 05:00:55 GMT", - "content": "For all their stoical resistance Ukrainians are increasingly riven between those who stayed and those who left, those who fought and those who didn\u2019t ", - "contentSnippet": "For all their stoical resistance Ukrainians are increasingly riven between those who stayed and those who left, those who fought and those who didn\u2019t", - "guid": "2b0c050f-f776-4292-8ce7-884beceef4be", - "isoDate": "2023-11-23T05:00:55.000Z" - }, - { - "title": "Switzerland agrees sale of tanks to backfill Nato stocks ", - "link": "https://www.ft.com/content/cfb6c6c4-1ff7-4d3e-9ee5-d22623ce3fa2", - "pubDate": "Wed, 22 Nov 2023 14:33:18 GMT", - "content": "Germany will receive 25 decommissioned Leopard 2 tanks on condition it will not send them to Ukraine", - "contentSnippet": "Germany will receive 25 decommissioned Leopard 2 tanks on condition it will not send them to Ukraine", - "guid": "cfb6c6c4-1ff7-4d3e-9ee5-d22623ce3fa2", - "isoDate": "2023-11-22T14:33:18.000Z" - }, - { - "title": "Ukraine needs reassurance from its allies", - "link": "https://www.ft.com/content/ed11bbc1-24ed-497e-acfd-6c1b5ca966ac", - "pubDate": "Wed, 22 Nov 2023 11:44:39 GMT", - "content": "Kyiv worries that war fatigue is growing in the US and the EU", - "contentSnippet": "Kyiv worries that war fatigue is growing in the US and the EU", - "guid": "ed11bbc1-24ed-497e-acfd-6c1b5ca966ac", - "isoDate": "2023-11-22T11:44:39.000Z" - }, - { - "title": "US and Germany risk owning Ukraine\u2019s stalling war effort", - "link": "https://www.ft.com/content/b046e53e-d035-4f22-b9f9-92ab8a57b5a4", - "pubDate": "Tue, 21 Nov 2023 18:32:12 GMT", - "content": "The onus is on European allies to step up support and chart a path for Kyiv towards Nato and EU membership", - "contentSnippet": "The onus is on European allies to step up support and chart a path for Kyiv towards Nato and EU membership", - "guid": "b046e53e-d035-4f22-b9f9-92ab8a57b5a4", - "isoDate": "2023-11-21T18:32:12.000Z" - }, - { - "title": "How the Czech Republic wants to shut European borders to Russian agents", - "link": "https://www.ft.com/content/0ba5718e-8c70-42db-8263-b4cfcf1ca38e", - "pubDate": "Tue, 21 Nov 2023 06:00:07 GMT", - "content": "Also in this newsletter: bikes are back at Finland\u2019s border to Russia", - "contentSnippet": "Also in this newsletter: bikes are back at Finland\u2019s border to Russia", - "guid": "0ba5718e-8c70-42db-8263-b4cfcf1ca38e", - "isoDate": "2023-11-21T06:00:07.000Z" - }, - { - "title": "Zelenskyy fires head of Ukraine\u2019s medical forces as US defence chiefs visit Kyiv", - "link": "https://www.ft.com/content/bb5bda25-491b-4548-b1a1-91242c82b5e6", - "pubDate": "Mon, 20 Nov 2023 22:24:53 GMT", - "content": "Washington offers continued support in war against Russia", - "contentSnippet": "Washington offers continued support in war against Russia", - "guid": "bb5bda25-491b-4548-b1a1-91242c82b5e6", - "isoDate": "2023-11-20T22:24:53.000Z" - }, - { - "title": "Western business, Russia and the war", - "link": "https://www.ft.com/content/bbabbff9-8c66-4a55-8e91-86b4f36f77a6", - "pubDate": "Fri, 08 Dec 2023 08:30:41 GMT", - "content": "This collection of articles explores the fallout of the war in Ukraine on Western companies operating in Russia", - "contentSnippet": "This collection of articles explores the fallout of the war in Ukraine on Western companies operating in Russia", - "guid": "bbabbff9-8c66-4a55-8e91-86b4f36f77a6", - "isoDate": "2023-12-08T08:30:41.000Z" - }, - { - "title": "EU to give member states power to block Russian gas imports", - "link": "https://www.ft.com/content/d6a06e26-7256-4b97-92dd-7131fb676ad8", - "pubDate": "Fri, 08 Dec 2023 05:06:20 GMT", - "content": "Draft legal text to stop companies in Russia and Belarus from accessing European pipelines and LNG terminals", - "contentSnippet": "Draft legal text to stop companies in Russia and Belarus from accessing European pipelines and LNG terminals", - "guid": "d6a06e26-7256-4b97-92dd-7131fb676ad8", - "isoDate": "2023-12-08T05:06:20.000Z" - }, - { - "title": "Danone\u2019s Chechen takeover: inside a Russian expropriation", - "link": "https://www.ft.com/content/adb43967-06f8-4d60-a6c1-b5ed262f7dbf", - "pubDate": "Fri, 08 Dec 2023 05:00:24 GMT", - "content": "Business handed to warlord\u2019s nephew has retained much of the French dairy group\u2019s previous management", - "contentSnippet": "Business handed to warlord\u2019s nephew has retained much of the French dairy group\u2019s previous management", - "guid": "adb43967-06f8-4d60-a6c1-b5ed262f7dbf", - "isoDate": "2023-12-08T05:00:24.000Z" - }, - { - "title": "The humanitarian crisis worsens in Gaza ", - "link": "https://www.ft.com/content/bf73d76f-7bc5-4a5b-9738-e7b6df394859", - "pubDate": "Thu, 07 Dec 2023 05:00:12 GMT", - "content": "Shattered Israel-Hamas truce leaves Gaza\u2019s civilians with nowhere left to run", - "contentSnippet": "Shattered Israel-Hamas truce leaves Gaza\u2019s civilians with nowhere left to run", - "guid": "bf73d76f-7bc5-4a5b-9738-e7b6df394859", - "isoDate": "2023-12-07T05:00:12.000Z" - }, - { - "title": "What can Ukraine teach us about the future of war?", - "link": "https://www.ft.com/content/25bab4fc-b8b6-4319-9b4f-82397da1b458", - "pubDate": "Thu, 07 Dec 2023 05:00:05 GMT", - "content": "From leadership and logistics to robots and drones, two new books assess what matters in 21st-century warfare", - "contentSnippet": "From leadership and logistics to robots and drones, two new books assess what matters in 21st-century warfare", - "guid": "25bab4fc-b8b6-4319-9b4f-82397da1b458", - "isoDate": "2023-12-07T05:00:05.000Z" - }, - { - "title": "Why export controls are failing to cripple their targets", - "link": "https://www.ft.com/content/10f1f080-8eb3-44a0-b4c6-1106b457c915", - "pubDate": "Thu, 07 Dec 2023 05:00:05 GMT", - "content": "Diverse geopolitics, smart researchers and resourceful traders are undermining attempts to control critical products", - "contentSnippet": "Diverse geopolitics, smart researchers and resourceful traders are undermining attempts to control critical products", - "guid": "10f1f080-8eb3-44a0-b4c6-1106b457c915", - "isoDate": "2023-12-07T05:00:05.000Z" - }, - { - "title": "US Senate Republicans sink Ukraine aid bill in dispute over immigration", - "link": "https://www.ft.com/content/8393572d-d877-4000-bb92-f6d81104c7ca", - "pubDate": "Wed, 06 Dec 2023 23:20:46 GMT", - "content": "Joe Biden says failure to agree more funding for Kyiv amounts to a \u2018gift\u2019 for Vladimir Putin", - "contentSnippet": "Joe Biden says failure to agree more funding for Kyiv amounts to a \u2018gift\u2019 for Vladimir Putin", - "guid": "8393572d-d877-4000-bb92-f6d81104c7ca", - "isoDate": "2023-12-06T23:20:46.000Z" - }, - { - "title": "Ukrainian special forces killed former lawmaker near Moscow, officials say", - "link": "https://www.ft.com/content/834e90a5-6ae0-4839-b184-2c7c5e22ced0", - "pubDate": "Wed, 06 Dec 2023 18:19:58 GMT", - "content": "Ilya Kiva had been charged with treason by Kyiv after cheering on invasion and fleeing to Russia ", - "contentSnippet": "Ilya Kiva had been charged with treason by Kyiv after cheering on invasion and fleeing to Russia", - "guid": "834e90a5-6ae0-4839-b184-2c7c5e22ced0", - "isoDate": "2023-12-06T18:19:58.000Z" - }, - { - "title": "US brings war crimes charges against 4 Russian soldiers ", - "link": "https://www.ft.com/content/aa7609da-4b17-41ef-84c6-0ca21548bb2a", - "pubDate": "Wed, 06 Dec 2023 17:05:20 GMT", - "content": "First prosecution of its kind involves the alleged assault and abduction of an American national in Ukraine", - "contentSnippet": "First prosecution of its kind involves the alleged assault and abduction of an American national in Ukraine", - "guid": "aa7609da-4b17-41ef-84c6-0ca21548bb2a", - "isoDate": "2023-12-06T17:05:20.000Z" - }, - { - "title": "G7 to ban Russian diamond imports from January", - "link": "https://www.ft.com/content/cc636fc6-607c-41ce-8fd4-ade2337f24ba", - "pubDate": "Wed, 06 Dec 2023 14:13:58 GMT", - "content": "Precious gems have so far been exempted from western sanctions imposed in response to Ukraine war", - "contentSnippet": "Precious gems have so far been exempted from western sanctions imposed in response to Ukraine war", - "guid": "cc636fc6-607c-41ce-8fd4-ade2337f24ba", - "isoDate": "2023-12-06T14:13:58.000Z" - }, - { - "title": "Ukrainian truckers blocked in Poland: \u2018People forgot our war\u2019", - "link": "https://www.ft.com/content/fdb5a794-67fc-4125-8a74-687e0fe55f7b", - "pubDate": "Wed, 06 Dec 2023 05:00:43 GMT", - "content": "Month-long blockade by Polish hauliers comes as Kyiv struggles to secure western funding ", - "contentSnippet": "Month-long blockade by Polish hauliers comes as Kyiv struggles to secure western funding", - "guid": "fdb5a794-67fc-4125-8a74-687e0fe55f7b", - "isoDate": "2023-12-06T05:00:43.000Z" - }, - { - "title": "Republicans tell Biden US aid to Kyiv depends on immigration curbs", - "link": "https://www.ft.com/content/3827fcfd-7843-4d28-a1fd-967b4fb6d714", - "pubDate": "Tue, 05 Dec 2023 23:45:33 GMT", - "content": "Hardline stance could doom Senate vote on $60bn package to fund Ukraine\u2019s war effort against Russia ", - "contentSnippet": "Hardline stance could doom Senate vote on $60bn package to fund Ukraine\u2019s war effort against Russia", - "guid": "3827fcfd-7843-4d28-a1fd-967b4fb6d714", - "isoDate": "2023-12-05T23:45:33.000Z" - }, - { - "title": "Kyiv\u2019s political feuds cause cracks in Ukrainian unity", - "link": "https://www.ft.com/content/7b317559-795b-48c6-90ea-cec7ff936243", - "pubDate": "Tue, 05 Dec 2023 14:13:02 GMT", - "content": "Challenges to Volodymyr Zelenskyy\u2019s leadership by old rivals could end badly for country\u2019s war efforts, say analysts", - "contentSnippet": "Challenges to Volodymyr Zelenskyy\u2019s leadership by old rivals could end badly for country\u2019s war efforts, say analysts", - "guid": "7b317559-795b-48c6-90ea-cec7ff936243", - "isoDate": "2023-12-05T14:13:02.000Z" - }, - { - "title": "Has the G7 price cap worked?", - "link": "https://www.ft.com/content/512a30c8-382f-43d8-926c-41f35f2776fa", - "pubDate": "Tue, 05 Dec 2023 12:00:42 GMT", - "content": "Western sanctions on Russian crude exports are one year old but what have the measures achieved", - "contentSnippet": "Western sanctions on Russian crude exports are one year old but what have the measures achieved", - "guid": "512a30c8-382f-43d8-926c-41f35f2776fa", - "isoDate": "2023-12-05T12:00:42.000Z" - }, - { - "title": "Why Slovakia and the Czech Republic want to continue using Russian oil", - "link": "https://www.ft.com/content/b40e8a9d-6f2a-40cb-b134-2a732535e5e6", - "pubDate": "Tue, 05 Dec 2023 06:00:58 GMT", - "content": "Also in this newsletter: Italy impounds a German-funded migrant rescue ship", - "contentSnippet": "Also in this newsletter: Italy impounds a German-funded migrant rescue ship", - "guid": "b40e8a9d-6f2a-40cb-b134-2a732535e5e6", - "isoDate": "2023-12-05T06:00:58.000Z" - }, - { - "title": "America and a crumbling global order", - "link": "https://www.ft.com/content/b42c62f7-57e6-4899-affe-a376cc568d3d", - "pubDate": "Mon, 04 Dec 2023 11:45:33 GMT", - "content": "Political division and turmoil at home are undermining US leadership overseas", - "contentSnippet": "Political division and turmoil at home are undermining US leadership overseas", - "guid": "b42c62f7-57e6-4899-affe-a376cc568d3d", - "isoDate": "2023-12-04T11:45:33.000Z" - }, - { - "title": "US funding for Ukraine set to run out by end of the year, White House warns", - "link": "https://www.ft.com/content/ca16e42d-fda9-4c1d-b2c9-410d764745b7", - "pubDate": "Mon, 04 Dec 2023 10:01:14 GMT", - "content": "Budget official says failure by Congress to approve further aid will \u2018kneecap\u2019 Kyiv", - "contentSnippet": "Budget official says failure by Congress to approve further aid will \u2018kneecap\u2019 Kyiv", - "guid": "ca16e42d-fda9-4c1d-b2c9-410d764745b7", - "isoDate": "2023-12-04T10:01:14.000Z" - }, - { - "title": "Wealthy Argentines flock to Uruguay", - "link": "https://www.ft.com/content/a99c009c-319c-4a6e-87ee-649489a59df1", - "pubDate": "Mon, 04 Dec 2023 05:00:01 GMT", - "content": "Just an hour\u2019s boat ride away sits a haven from economic instability \u2014 with increasingly attractive tax breaks for foreigners", - "contentSnippet": "Just an hour\u2019s boat ride away sits a haven from economic instability \u2014 with increasingly attractive tax breaks for foreigners", - "guid": "a99c009c-319c-4a6e-87ee-649489a59df1", - "isoDate": "2023-12-04T05:00:01.000Z" - }, - { - "title": "EU budget dispute threatens \u20ac50bn war lifeline for Ukraine", - "link": "https://www.ft.com/content/6cd69168-aef4-4c8c-950c-62d7465fe5bb", - "pubDate": "Sun, 03 Dec 2023 21:00:34 GMT", - "content": "Bloc\u2019s leaders embroiled in financial row that risks leaving Kyiv empty-handed at crucial moment in conflict", - "contentSnippet": "Bloc\u2019s leaders embroiled in financial row that risks leaving Kyiv empty-handed at crucial moment in conflict", - "guid": "6cd69168-aef4-4c8c-950c-62d7465fe5bb", - "isoDate": "2023-12-03T21:00:34.000Z" - }, - { - "title": "Russian army snaps up Chinese off-road buggies popular in US", - "link": "https://www.ft.com/content/a1d6fd56-120c-4ce8-9684-738c1376e135", - "pubDate": "Sun, 03 Dec 2023 12:06:35 GMT", - "content": "Purchase of hundreds of all-terrain vehicles made by Shandong Odes could put exports to west at risk", - "contentSnippet": "Purchase of hundreds of all-terrain vehicles made by Shandong Odes could put exports to west at risk", - "guid": "a1d6fd56-120c-4ce8-9684-738c1376e135", - "isoDate": "2023-12-03T12:06:35.000Z" - }, - { - "title": "Russia struggles with a demographic crunch", - "link": "https://www.ft.com/content/95082ead-ea72-4af3-9270-10019e626633", - "pubDate": "Sat, 02 Dec 2023 11:00:40 GMT", - "content": "Efforts to raise birth rates and increase the population are making little headway", - "contentSnippet": "Efforts to raise birth rates and increase the population are making little headway", - "guid": "95082ead-ea72-4af3-9270-10019e626633", - "isoDate": "2023-12-02T11:00:40.000Z" - }, - { - "title": "Zelenskyy pushes to \u2018accelerate\u2019 defences on Ukraine frontline", - "link": "https://www.ft.com/content/f79901e9-f88d-4171-8725-cf297f9b76c8", - "pubDate": "Fri, 01 Dec 2023 17:29:14 GMT", - "content": "President\u2019s signal of strategic shift comes as he admits counteroffensive failed to achieve goals", - "contentSnippet": "President\u2019s signal of strategic shift comes as he admits counteroffensive failed to achieve goals", - "guid": "f79901e9-f88d-4171-8725-cf297f9b76c8", - "isoDate": "2023-12-01T17:29:14.000Z" - }, - { - "title": "US aims to halve Russia\u2019s energy revenues by 2030, says official", - "link": "https://www.ft.com/content/277c1f9c-3f0f-4562-b0f0-80b390012087", - "pubDate": "Fri, 01 Dec 2023 05:00:17 GMT", - "content": "Diplomat tells FT western sanctions will continue \u2018for years to come\u2019 to curb Moscow\u2019s war machine ", - "contentSnippet": "Diplomat tells FT western sanctions will continue \u2018for years to come\u2019 to curb Moscow\u2019s war machine", - "guid": "277c1f9c-3f0f-4562-b0f0-80b390012087", - "isoDate": "2023-12-01T05:00:17.000Z" - }, - { - "title": "The EU still has an Orb\u00e1n problem", - "link": "https://www.ft.com/content/157edfd2-8d63-4c41-8ccb-6e4ef691cfd1", - "pubDate": "Fri, 15 Dec 2023 15:12:15 GMT", - "content": "But defeat for the Hungarian premier on Ukraine\u2019s future membership shows his ability to disrupt could be waning", - "contentSnippet": "But defeat for the Hungarian premier on Ukraine\u2019s future membership shows his ability to disrupt could be waning", - "guid": "157edfd2-8d63-4c41-8ccb-6e4ef691cfd1", - "isoDate": "2023-12-15T15:12:15.000Z" - }, - { - "title": "EU seeks to reassure Ukraine on funding after Hungary veto", - "link": "https://www.ft.com/content/6e671a9d-19a6-449d-ada6-7997d663ed7e", - "pubDate": "Fri, 15 Dec 2023 14:23:03 GMT", - "content": "Leaders vow to find solution to support Kyiv financially even without Viktor Orb\u00e1n\u2019s approval of \u20ac50bn lifeline", - "contentSnippet": "Leaders vow to find solution to support Kyiv financially even without Viktor Orb\u00e1n\u2019s approval of \u20ac50bn lifeline", - "guid": "6e671a9d-19a6-449d-ada6-7997d663ed7e", - "isoDate": "2023-12-15T14:23:03.000Z" - }, - { - "title": "With Ukraine the EU is learning to be a strategic power", - "link": "https://www.ft.com/content/75c2ac2f-37cf-4b71-9135-d663e8235b80", - "pubDate": "Fri, 15 Dec 2023 10:33:13 GMT", - "content": "The green light to accession talks shows the bloc is learning to be a strategic power despite failure on aid", - "contentSnippet": "The green light to accession talks shows the bloc is learning to be a strategic power despite failure on aid", - "guid": "75c2ac2f-37cf-4b71-9135-d663e8235b80", - "isoDate": "2023-12-15T10:33:13.000Z" - }, - { - "title": "EU fails to agree \u20ac50bn funding for Ukraine", - "link": "https://www.ft.com/content/deb40df7-7832-4fee-a822-655ab0288c05", - "pubDate": "Fri, 15 Dec 2023 08:13:36 GMT", - "content": "Hungary\u2019s Viktor Orb\u00e1n vetoes financial aid after allowing bloc to start membership talks with Kyiv", - "contentSnippet": "Hungary\u2019s Viktor Orb\u00e1n vetoes financial aid after allowing bloc to start membership talks with Kyiv", - "guid": "deb40df7-7832-4fee-a822-655ab0288c05", - "isoDate": "2023-12-15T08:13:36.000Z" - }, - { - "title": "EU gives to Ukraine with one hand and takes with the other ", - "link": "https://www.ft.com/content/88f13a35-acd0-4021-84fd-c9cbca4c0d97", - "pubDate": "Fri, 15 Dec 2023 06:00:24 GMT", - "content": "Also in this newsletter: Why Elon Musk is attending a right-wing conference in Italy", - "contentSnippet": "Also in this newsletter: Why Elon Musk is attending a right-wing conference in Italy", - "guid": "88f13a35-acd0-4021-84fd-c9cbca4c0d97", - "isoDate": "2023-12-15T06:00:24.000Z" - }, - { - "title": "Ex-FBI agent who worked for Oleg Deripaska gets 4-year prison sentence", - "link": "https://www.ft.com/content/2909c01d-b526-45fd-8ad7-5348023fb562", - "pubDate": "Thu, 14 Dec 2023 20:41:42 GMT", - "content": "Charles McGonigal had pleaded guilty to violating US sanctions by helping the Russian oligarch spy on a rival", - "contentSnippet": "Charles McGonigal had pleaded guilty to violating US sanctions by helping the Russian oligarch spy on a rival", - "guid": "2909c01d-b526-45fd-8ad7-5348023fb562", - "isoDate": "2023-12-14T20:41:42.000Z" - }, - { - "title": "Ukraine needs a military-industrial complex of its own", - "link": "https://www.ft.com/content/1f9383b5-5cef-4e23-b7b1-c497727dc53c", - "pubDate": "Thu, 14 Dec 2023 16:31:10 GMT", - "content": "As the country waits for government aid, it is also courting business support for its defence innovation", - "contentSnippet": "As the country waits for government aid, it is also courting business support for its defence innovation", - "guid": "1f9383b5-5cef-4e23-b7b1-c497727dc53c", - "isoDate": "2023-12-14T16:31:10.000Z" - }, - { - "title": "Putin vows to fight until Ukraine \u2018goals are achieved\u2019", - "link": "https://www.ft.com/content/36cf15fd-e8c2-4074-a72c-3a3f7774d995", - "pubDate": "Thu, 14 Dec 2023 15:17:04 GMT", - "content": "Russian president fields questions at length for first time since ordering invasion", - "contentSnippet": "Russian president fields questions at length for first time since ordering invasion", - "guid": "36cf15fd-e8c2-4074-a72c-3a3f7774d995", - "isoDate": "2023-12-14T15:17:04.000Z" - }, - { - "title": "How the EU hopes to strong-arm Orb\u00e1n into supporting Ukraine", - "link": "https://www.ft.com/content/a974ef48-9823-40f3-a69f-3e0252b98a2e", - "pubDate": "Thu, 14 Dec 2023 06:00:41 GMT", - "content": "Also in this newsletter: Why EU officials are satisfied with the compromise outcome of COP28", - "contentSnippet": "Also in this newsletter: Why EU officials are satisfied with the compromise outcome of COP28", - "guid": "a974ef48-9823-40f3-a69f-3e0252b98a2e", - "isoDate": "2023-12-14T06:00:41.000Z" - }, - { - "title": "US says Ukraine war putting \u2018considerable strain\u2019 on Russia\u2019s economy", - "link": "https://www.ft.com/content/5e62c011-0c94-4a8d-8dae-29f8072e2a64", - "pubDate": "Thu, 14 Dec 2023 05:01:42 GMT", - "content": "Country\u2019s GDP would be more than 5% bigger if Moscow had not invaded its neighbour, Treasury department finds", - "contentSnippet": "Country\u2019s GDP would be more than 5% bigger if Moscow had not invaded its neighbour, Treasury department finds", - "guid": "5e62c011-0c94-4a8d-8dae-29f8072e2a64", - "isoDate": "2023-12-14T05:01:42.000Z" - }, - { - "title": "EU divisions over Ukraine send wrong signal to US, says Sweden", - "link": "https://www.ft.com/content/46f33e1e-40e8-407a-a856-c89651c0c7b7", - "pubDate": "Thu, 14 Dec 2023 05:00:11 GMT", - "content": "Prime Minister Ulf Kristersson concerned about crucial leaders\u2019 summit ending in acrimony", - "contentSnippet": "Prime Minister Ulf Kristersson concerned about crucial leaders\u2019 summit ending in acrimony", - "guid": "46f33e1e-40e8-407a-a856-c89651c0c7b7", - "isoDate": "2023-12-14T05:00:11.000Z" - }, - { - "title": "EU unblocks \u20ac10bn for Hungary ahead of Ukraine summit", - "link": "https://www.ft.com/content/da1f9924-be28-4ad5-a028-56d05735380d", - "pubDate": "Wed, 13 Dec 2023 16:48:54 GMT", - "content": "Viktor Orb\u00e1n signals willingness to strike \u2018financial deal\u2019 but still opposes accession talks with Kyiv", - "contentSnippet": "Viktor Orb\u00e1n signals willingness to strike \u2018financial deal\u2019 but still opposes accession talks with Kyiv", - "guid": "da1f9924-be28-4ad5-a028-56d05735380d", - "isoDate": "2023-12-13T16:48:54.000Z" - }, - { - "title": "Putin\u2019s good friends in America", - "link": "https://www.ft.com/content/2ad14344-6587-4eb4-b93d-35dc23ae2bbe", - "pubDate": "Wed, 13 Dec 2023 12:07:11 GMT", - "content": "Many Republicans resist aid to Ukraine on the basis that anything harmful to Biden must be right for their party", - "contentSnippet": "Many Republicans resist aid to Ukraine on the basis that anything harmful to Biden must be right for their party", - "guid": "2ad14344-6587-4eb4-b93d-35dc23ae2bbe", - "isoDate": "2023-12-13T12:07:11.000Z" - }, - { - "title": "How the EU is scrambling to strike a deal with Viktor Orb\u00e1n", - "link": "https://www.ft.com/content/bd5f4a85-f035-4b9e-8ea0-0417d0a531e5", - "pubDate": "Wed, 13 Dec 2023 06:00:49 GMT", - "content": "Also in this newsletter: Donald Tusk\u2019s big plans for his premiership", - "contentSnippet": "Also in this newsletter: Donald Tusk\u2019s big plans for his premiership", - "guid": "bd5f4a85-f035-4b9e-8ea0-0417d0a531e5", - "isoDate": "2023-12-13T06:00:49.000Z" - }, - { - "title": "Biden says US will back Ukraine \u2018as long as we can\u2019 ", - "link": "https://www.ft.com/content/c5b8a94f-4bf9-422f-b4de-db5dcfc7ca0a", - "pubDate": "Wed, 13 Dec 2023 00:23:19 GMT", - "content": "Zelenskyy visits Washington to appeal for further aid but meets Republican resistance", - "contentSnippet": "Zelenskyy visits Washington to appeal for further aid but meets Republican resistance", - "guid": "c5b8a94f-4bf9-422f-b4de-db5dcfc7ca0a", - "isoDate": "2023-12-13T00:23:19.000Z" - }, - { - "title": "Germany charges 27 for plotting armed coup with Russia links", - "link": "https://www.ft.com/content/0cef4e4f-de57-408f-972e-96c0b1b3c714", - "pubDate": "Tue, 12 Dec 2023 22:04:07 GMT", - "content": "Putsch attempt was uncovered last year and was centred on storming parliament in Berlin", - "contentSnippet": "Putsch attempt was uncovered last year and was centred on storming parliament in Berlin", - "guid": "0cef4e4f-de57-408f-972e-96c0b1b3c714", - "isoDate": "2023-12-12T22:04:07.000Z" - }, - { - "title": "US hits Turkish and Chinese companies over Russia trade", - "link": "https://www.ft.com/content/f34a0bc9-12a0-4a98-a42e-4e008430f824", - "pubDate": "Tue, 12 Dec 2023 18:45:30 GMT", - "content": "Latest sanctions package aims to stem flow of sensitive war-related goods to Moscow ", - "contentSnippet": "Latest sanctions package aims to stem flow of sensitive war-related goods to Moscow", - "guid": "f34a0bc9-12a0-4a98-a42e-4e008430f824", - "isoDate": "2023-12-12T18:45:30.000Z" - }, - { - "title": "EU explores emergency Ukraine funding outside bloc\u2019s shared budget", - "link": "https://www.ft.com/content/13ae7d1b-5d6c-4180-8e89-bccae8993276", - "pubDate": "Tue, 12 Dec 2023 05:00:26 GMT", - "content": "Technical proposals being discussed privately could get around a Hungarian threat to veto a critical financial package ", - "contentSnippet": "Technical proposals being discussed privately could get around a Hungarian threat to veto a critical financial package", - "guid": "13ae7d1b-5d6c-4180-8e89-bccae8993276", - "isoDate": "2023-12-12T05:00:26.000Z" - }, - { - "title": "Zelenskyy warns US halt in Ukraine aid would bolster dictatorships", - "link": "https://www.ft.com/content/52f38581-18e1-471e-ab74-4eb01f61a27e", - "pubDate": "Mon, 11 Dec 2023 21:55:10 GMT", - "content": "President visits Washington days after Republican senators voted against more money for Kyiv", - "contentSnippet": "President visits Washington days after Republican senators voted against more money for Kyiv", - "guid": "52f38581-18e1-471e-ab74-4eb01f61a27e", - "isoDate": "2023-12-11T21:55:10.000Z" - }, - { - "title": "EU seeks to raise \u20ac15bn for Ukraine from Russia\u2019s frozen assets", - "link": "https://www.ft.com/content/50e7dcd2-5dbf-4000-9914-b791e40f4a9d", - "pubDate": "Mon, 11 Dec 2023 18:51:31 GMT", - "content": "Plan to tap profits would need to be backed by all member states before money could be sent to Kyiv", - "contentSnippet": "Plan to tap profits would need to be backed by all member states before money could be sent to Kyiv", - "guid": "50e7dcd2-5dbf-4000-9914-b791e40f4a9d", - "isoDate": "2023-12-11T18:51:31.000Z" - }, - { - "title": "A crunch week for Ukraine", - "link": "https://www.ft.com/content/638e6d11-a444-4f48-90fd-b03cc7f62163", - "pubDate": "Mon, 11 Dec 2023 18:45:29 GMT", - "content": "Failure to unblock US and EU aid would imperil Kyiv\u2019s financial stability", - "contentSnippet": "Failure to unblock US and EU aid would imperil Kyiv\u2019s financial stability", - "guid": "638e6d11-a444-4f48-90fd-b03cc7f62163", - "isoDate": "2023-12-11T18:45:29.000Z" - }, - { - "title": "Can the EU uphold its promises to support Ukraine \u2018as long as it takes\u2019?", - "link": "https://www.ft.com/content/d5035b51-1a15-4093-938f-55a5e98fd69d", - "pubDate": "Mon, 11 Dec 2023 06:00:56 GMT", - "content": "Also in this newsletter: Why Santa Claus won\u2019t be visiting the European parliament due to Qatargate", - "contentSnippet": "Also in this newsletter: Why Santa Claus won\u2019t be visiting the European parliament due to Qatargate", - "guid": "d5035b51-1a15-4093-938f-55a5e98fd69d", - "isoDate": "2023-12-11T06:00:56.000Z" - }, - { - "title": "Ukraine\u2019s Shakhtar Donetsk seizes on European wins to boost overseas profile", - "link": "https://www.ft.com/content/1ad8efcf-3ac1-45ca-8d6d-2840b19e4e1e", - "pubDate": "Mon, 11 Dec 2023 05:00:57 GMT", - "content": "War means the country\u2019s top football team is reliant on income from competitions in Europe and player transfers", - "contentSnippet": "War means the country\u2019s top football team is reliant on income from competitions in Europe and player transfers", - "guid": "1ad8efcf-3ac1-45ca-8d6d-2840b19e4e1e", - "isoDate": "2023-12-11T05:00:57.000Z" - }, - { - "title": "Ukrainians question Volodymyr Zelenskyy\u2019s \u2018rose-tinted\u2019 speeches", - "link": "https://www.ft.com/content/7ec4e810-33e3-44ca-8744-e01cb9f82c28", - "pubDate": "Mon, 11 Dec 2023 05:00:56 GMT", - "content": "Former and current advisers say lack of realism in president\u2019s messaging is undermining confidence", - "contentSnippet": "Former and current advisers say lack of realism in president\u2019s messaging is undermining confidence", - "guid": "7ec4e810-33e3-44ca-8744-e01cb9f82c28", - "isoDate": "2023-12-11T05:00:56.000Z" - }, - { - "title": "Nearly half of US voters think Biden is spending too much on Ukraine aid", - "link": "https://www.ft.com/content/6e10d54c-9cee-4361-b85b-0bf57e80f16c", - "pubDate": "Sun, 10 Dec 2023 21:00:55 GMT", - "content": "FT-Michigan Ross survey shows obstacle to White House push for more support as Volodymyr Zelenskyy prepares to visit Washington", - "contentSnippet": "FT-Michigan Ross survey shows obstacle to White House push for more support as Volodymyr Zelenskyy prepares to visit Washington", - "guid": "6e10d54c-9cee-4361-b85b-0bf57e80f16c", - "isoDate": "2023-12-10T21:00:55.000Z" - }, - { - "title": "BAE to restart M777 howitzer production as Ukraine war ignites demand ", - "link": "https://www.ft.com/content/60dddcf2-8f0f-43c7-abe5-02f4223505fa", - "pubDate": "Thu, 04 Jan 2024 09:52:12 GMT", - "content": "UK\u2019s biggest defence contractor signs initial agreement with US Army for spare parts while interest from Europe, Asia and the Americas rises ", - "contentSnippet": "UK\u2019s biggest defence contractor signs initial agreement with US Army for spare parts while interest from Europe, Asia and the Americas rises", - "guid": "60dddcf2-8f0f-43c7-abe5-02f4223505fa", - "isoDate": "2024-01-04T09:52:12.000Z" - }, - { - "title": "\u2018I want to live\u2019: Russians defect to Ukraine by calling army hotline", - "link": "https://www.ft.com/content/d7f60a01-57e0-4b6a-b845-fcc420c2280f", - "pubDate": "Thu, 04 Jan 2024 05:00:35 GMT", - "content": "Hundreds of soldiers have handed themselves over to Kyiv after ringing dedicated number", - "contentSnippet": "Hundreds of soldiers have handed themselves over to Kyiv after ringing dedicated number", - "guid": "d7f60a01-57e0-4b6a-b845-fcc420c2280f", - "isoDate": "2024-01-04T05:00:35.000Z" - }, - { - "title": "The west would harm itself with rash seizures of frozen Russian assets", - "link": "https://www.ft.com/content/2c917ef5-60bd-4825-89e4-8b88dc9080a8", - "pubDate": "Thu, 04 Jan 2024 05:00:35 GMT", - "content": "A watertight legal basis for confiscations is lacking because the US and its allies are not openly at war with Moscow", - "contentSnippet": "A watertight legal basis for confiscations is lacking because the US and its allies are not openly at war with Moscow", - "guid": "2c917ef5-60bd-4825-89e4-8b88dc9080a8", - "isoDate": "2024-01-04T05:00:35.000Z" - }, - { - "title": "Polish truckers defy Donald Tusk on Ukraine border blockade", - "link": "https://www.ft.com/content/7887988a-e692-439e-821f-9c331448a761", - "pubDate": "Thu, 04 Jan 2024 05:00:35 GMT", - "content": "Farmers set to join hauliers on Thursday in broadening trade dispute ", - "contentSnippet": "Farmers set to join hauliers on Thursday in broadening trade dispute", - "guid": "7887988a-e692-439e-821f-9c331448a761", - "isoDate": "2024-01-04T05:00:35.000Z" - }, - { - "title": "Russia bombs its own village during air attack on Ukraine", - "link": "https://www.ft.com/content/401f1d27-8582-407d-9121-5a1d8cfd7b4b", - "pubDate": "Wed, 03 Jan 2024 17:58:11 GMT", - "content": "\u2018Abnormal discharge\u2019 over Voronezh region becomes latest friendly fire incident in border areas", - "contentSnippet": "\u2018Abnormal discharge\u2019 over Voronezh region becomes latest friendly fire incident in border areas", - "guid": "401f1d27-8582-407d-9121-5a1d8cfd7b4b", - "isoDate": "2024-01-03T17:58:11.000Z" - }, - { - "title": "EU adds Russia\u2019s largest diamond maker to sanctions list over Ukraine war ", - "link": "https://www.ft.com/content/7e4b3a7c-fe5c-42c9-a2ff-c270b6d1faae", - "pubDate": "Wed, 03 Jan 2024 12:28:36 GMT", - "content": "Alrosa\u2019s assets in the bloc will be frozen along with those of its chief, who will also be subject to a travel ban", - "contentSnippet": "Alrosa\u2019s assets in the bloc will be frozen along with those of its chief, who will also be subject to a travel ban", - "guid": "7e4b3a7c-fe5c-42c9-a2ff-c270b6d1faae", - "isoDate": "2024-01-03T12:28:36.000Z" - }, - { - "title": "The Russian murderers sent home as free men after fighting in Ukraine", - "link": "https://www.ft.com/content/9fdb5668-7e55-4b09-a6ca-6ba77999530b", - "pubDate": "Wed, 03 Jan 2024 05:00:28 GMT", - "content": "Victims\u2019 families watch in horror as those convicted of gruesome crimes are pardoned in exchange for military service", - "contentSnippet": "Victims\u2019 families watch in horror as those convicted of gruesome crimes are pardoned in exchange for military service", - "guid": "9fdb5668-7e55-4b09-a6ca-6ba77999530b", - "isoDate": "2024-01-03T05:00:28.000Z" - }, - { - "title": "Russia pounds Ukraine in new year\u2019s second massive air strike", - "link": "https://www.ft.com/content/1e5589f6-2f49-473e-9012-c638e547be64", - "pubDate": "Tue, 02 Jan 2024 17:29:10 GMT", - "content": "Volodymyr Zelenskyy urges western allies to send more financial and military aid to bolster depleting air defences", - "contentSnippet": "Volodymyr Zelenskyy urges western allies to send more financial and military aid to bolster depleting air defences", - "guid": "1e5589f6-2f49-473e-9012-c638e547be64", - "isoDate": "2024-01-02T17:29:10.000Z" - }, - { - "title": "Seizing Russian reserves is the right thing to do", - "link": "https://www.ft.com/content/b2446a0d-de0a-4cc0-a600-87dc1643f844", - "pubDate": "Tue, 02 Jan 2024 05:00:41 GMT", - "content": "Blatant violations of international laws require a response and reparations would be in line with historical precedent ", - "contentSnippet": "Blatant violations of international laws require a response and reparations would be in line with historical precedent", - "guid": "b2446a0d-de0a-4cc0-a600-87dc1643f844", - "isoDate": "2024-01-02T05:00:41.000Z" - }, - { - "title": "China\u2019s advanced machine tool exports to Russia soar after Ukraine invasion", - "link": "https://www.ft.com/content/d16c688d-9579-4f1d-a84f-ca29ca2f0bc0", - "pubDate": "Tue, 02 Jan 2024 05:00:41 GMT", - "content": "Chinese suppliers now dominate trade in \u2018computer numerical control\u2019 devices vital to Moscow\u2019s military industries", - "contentSnippet": "Chinese suppliers now dominate trade in \u2018computer numerical control\u2019 devices vital to Moscow\u2019s military industries", - "guid": "d16c688d-9579-4f1d-a84f-ca29ca2f0bc0", - "isoDate": "2024-01-02T05:00:41.000Z" - }, - { - "title": "Ukraine\u2019s gas storage helps Europe avert further energy crises", - "link": "https://www.ft.com/content/d02a5c8e-8406-40e5-91a4-a58fb4dd1565", - "pubDate": "Tue, 02 Jan 2024 05:00:41 GMT", - "content": "War-torn country\u2019s tanks enable continent to keep its own facilities close to capacity", - "contentSnippet": "War-torn country\u2019s tanks enable continent to keep its own facilities close to capacity", - "guid": "d02a5c8e-8406-40e5-91a4-a58fb4dd1565", - "isoDate": "2024-01-02T05:00:41.000Z" - }, - { - "title": "Russia launches \u2018record\u2019 wave of drones against Ukraine", - "link": "https://www.ft.com/content/a206f506-01ec-4a54-ab57-5051745b18ea", - "pubDate": "Mon, 01 Jan 2024 17:42:54 GMT", - "content": "Volodymyr Zelenskyy pledges retaliation for deadly air strikes that have killed or injured dozens", - "contentSnippet": "Volodymyr Zelenskyy pledges retaliation for deadly air strikes that have killed or injured dozens", - "guid": "a206f506-01ec-4a54-ab57-5051745b18ea", - "isoDate": "2024-01-01T17:42:54.000Z" - }, - { - "title": "Army conscription becomes toxic issue for Ukraine\u2019s leaders", - "link": "https://www.ft.com/content/3ce63abc-9a71-427b-8e11-ab5309288845", - "pubDate": "Mon, 01 Jan 2024 11:00:53 GMT", - "content": "Neither the Ukrainian president nor his top military commanders want to take responsibility for drafting reluctant fighters", - "contentSnippet": "Neither the Ukrainian president nor his top military commanders want to take responsibility for drafting reluctant fighters", - "guid": "3ce63abc-9a71-427b-8e11-ab5309288845", - "isoDate": "2024-01-01T11:00:53.000Z" - }, - { - "title": "Russia blames Ukraine for deadly attack on border city", - "link": "https://www.ft.com/content/974158d4-4d75-4771-94e3-820fc403754d", - "pubDate": "Sat, 30 Dec 2023 15:38:58 GMT", - "content": "Moscow says it shot down dozens of drones and missiles a day after launching strike that killed 39", - "contentSnippet": "Moscow says it shot down dozens of drones and missiles a day after launching strike that killed 39", - "guid": "974158d4-4d75-4771-94e3-820fc403754d", - "isoDate": "2023-12-30T15:38:58.000Z" - }, - { - "title": "Tracking Ukraine\u2019s counteroffensive against Russia in maps", - "link": "https://www.ft.com/content/4351d5b0-0888-4b47-9368-6bc4dfbccbf5", - "pubDate": "Fri, 29 Dec 2023 14:52:21 GMT", - "content": "A visual guide to the war", - "contentSnippet": "A visual guide to the war", - "guid": "4351d5b0-0888-4b47-9368-6bc4dfbccbf5", - "isoDate": "2023-12-29T14:52:21.000Z" - }, - { - "title": "Here are some leadership examples to inspire Zelenskyy in 2024", - "link": "https://www.ft.com/content/26ba8ca0-f5bc-419c-9556-ddbbf4e6c194", - "pubDate": "Fri, 29 Dec 2023 12:00:16 GMT", - "content": "Team spirit can sustain Ukraine\u2019s leader in his struggle against a ruthless foe", - "contentSnippet": "Team spirit can sustain Ukraine\u2019s leader in his struggle against a ruthless foe", - "guid": "26ba8ca0-f5bc-419c-9556-ddbbf4e6c194", - "isoDate": "2023-12-29T12:00:16.000Z" - }, - { - "title": "Year in a word: March to Moscow ", - "link": "https://www.ft.com/content/5dd2a36d-6dec-4930-80fd-f44a9fb7f278", - "pubDate": "Thu, 28 Dec 2023 05:00:11 GMT", - "content": "A catering magnate turned brutal mercenary stunned the world by staging the biggest insurrection of the Putin era", - "contentSnippet": "A catering magnate turned brutal mercenary stunned the world by staging the biggest insurrection of the Putin era", - "guid": "5dd2a36d-6dec-4930-80fd-f44a9fb7f278", - "isoDate": "2023-12-28T05:00:11.000Z" - }, - { - "title": "Washington puts forward G7 plan to confiscate $300bn in Russian assets", - "link": "https://www.ft.com/content/d206baa8-3ec9-42f0-b103-2c098d0486d9", - "pubDate": "Thu, 28 Dec 2023 05:00:11 GMT", - "content": "Proposal would accelerate preparations in time for a February summit to show solidarity with Ukraine ", - "contentSnippet": "Proposal would accelerate preparations in time for a February summit to show solidarity with Ukraine", - "guid": "d206baa8-3ec9-42f0-b103-2c098d0486d9", - "isoDate": "2023-12-28T05:00:11.000Z" - }, - { - "title": "Global defence orders surge as geopolitical tensions mount", - "link": "https://www.ft.com/content/001d2e1c-8e59-444b-a07b-9a62be620431", - "pubDate": "Wed, 27 Dec 2023 18:00:09 GMT", - "content": "Sustained state spending on weapons drives investor interest in sector", - "contentSnippet": "Sustained state spending on weapons drives investor interest in sector", - "guid": "001d2e1c-8e59-444b-a07b-9a62be620431", - "isoDate": "2023-12-27T18:00:09.000Z" - }, - { - "title": "The unwelcome resurgence of war", - "link": "https://www.ft.com/content/b3a9aaf2-f45d-4775-940d-9d70bc2f59a1", - "pubDate": "Wed, 27 Dec 2023 12:00:09 GMT", - "content": "Armed conflicts are increasing in number and in their impact on civilians", - "contentSnippet": "Armed conflicts are increasing in number and in their impact on civilians", - "guid": "b3a9aaf2-f45d-4775-940d-9d70bc2f59a1", - "isoDate": "2023-12-27T12:00:09.000Z" - }, - { - "title": "Ukraine warns of pension and salary delays without western aid", - "link": "https://www.ft.com/content/925d2d15-57bf-4a1b-b010-4e009be85f5a", - "pubDate": "Wed, 27 Dec 2023 11:00:08 GMT", - "content": "Shortfall in external aid would push a recovering economy back into survival mode, says deputy prime minister", - "contentSnippet": "Shortfall in external aid would push a recovering economy back into survival mode, says deputy prime minister", - "guid": "925d2d15-57bf-4a1b-b010-4e009be85f5a", - "isoDate": "2023-12-27T11:00:08.000Z" - }, - { - "title": "EU readies \u20ac20bn plan B to fund Ukraine", - "link": "https://www.ft.com/content/7ef39cca-262d-4c52-8b59-1ac008ca7f56", - "pubDate": "Tue, 26 Dec 2023 21:00:06 GMT", - "content": "Debt-based scheme would sidestep Hungary to quickly release money for Kyiv ", - "contentSnippet": "Debt-based scheme would sidestep Hungary to quickly release money for Kyiv", - "guid": "7ef39cca-262d-4c52-8b59-1ac008ca7f56", - "isoDate": "2023-12-26T21:00:06.000Z" - }, - { - "title": "Ukraine destroys Russian landing ship in further blow to Black Sea fleet", - "link": "https://www.ft.com/content/13c65bd4-59ad-4ada-bbc0-c5849fd9e656", - "pubDate": "Tue, 26 Dec 2023 11:51:59 GMT", - "content": "Campaign against military sites in Crimea has been a rare bright spot for Kyiv in the war", - "contentSnippet": "Campaign against military sites in Crimea has been a rare bright spot for Kyiv in the war", - "guid": "13c65bd4-59ad-4ada-bbc0-c5849fd9e656", - "isoDate": "2023-12-26T11:51:59.000Z" - }, - { - "title": "Ukrainian refugees plant seeds of a second life in our home", - "link": "https://www.ft.com/content/26f4adaa-8426-4a34-9403-08606cd8f0f2", - "pubDate": "Mon, 25 Dec 2023 05:00:35 GMT", - "content": "With war still raging in their native land, no one knows if this story will end in a safe return", - "contentSnippet": "With war still raging in their native land, no one knows if this story will end in a safe return", - "guid": "26f4adaa-8426-4a34-9403-08606cd8f0f2", - "isoDate": "2023-12-25T05:00:35.000Z" - }, - { - "title": "The US is ready to impose sanctions on foreign financial institutions when others don\u2019t ", - "link": "https://www.ft.com/content/f1fe5ece-323c-401f-870b-cd45c92bf84a", - "pubDate": "Fri, 22 Dec 2023 11:23:22 GMT", - "content": "Anyone helping Russia\u2019s military industrial complex will face severe consequences", - "contentSnippet": "Anyone helping Russia\u2019s military industrial complex will face severe consequences", - "guid": "f1fe5ece-323c-401f-870b-cd45c92bf84a", - "isoDate": "2023-12-22T11:23:22.000Z" - }, - { - "title": "Russian central bank reserves: the numbers", - "link": "https://www.ft.com/content/9529da2e-963e-4b46-956f-3d78548fa3be", - "pubDate": "Thu, 04 Jan 2024 11:00:35 GMT", - "content": "Getting the most we can out of available public sources", - "contentSnippet": "Getting the most we can out of available public sources", - "guid": "9529da2e-963e-4b46-956f-3d78548fa3be", - "isoDate": "2024-01-04T11:00:35.000Z" - }, - { - "title": "What western allies must do for Ukraine \u2014 and for themselves", - "link": "https://www.ft.com/content/5583c70d-64f3-4b8c-9da0-c921dbfc1310", - "pubDate": "Thu, 04 Jan 2024 15:08:56 GMT", - "content": "The choices made by the democracies supporting Kyiv will be decisive in the outcome of this ongoing war", - "contentSnippet": "The choices made by the democracies supporting Kyiv will be decisive in the outcome of this ongoing war", - "guid": "5583c70d-64f3-4b8c-9da0-c921dbfc1310", - "isoDate": "2024-01-04T15:08:56.000Z" - }, - { - "title": "The Russian bakery making killer drones to support Putin\u2019s war", - "link": "https://www.ft.com/content/426a82ec-9344-4700-9b22-181caeed8c3a", - "pubDate": "Fri, 05 Jan 2024 05:00:58 GMT", - "content": "Bread factory hit with US sanctions for assembling UAVs used in Ukraine invasion", - "contentSnippet": "Bread factory hit with US sanctions for assembling UAVs used in Ukraine invasion", - "guid": "426a82ec-9344-4700-9b22-181caeed8c3a", - "isoDate": "2024-01-05T05:00:58.000Z" - }, - { - "title": "Russia will not stop in Ukraine, warns Latvian foreign minister", - "link": "https://www.ft.com/content/7b94ec46-c761-4de3-8df7-055602ace279", - "pubDate": "Fri, 05 Jan 2024 05:00:58 GMT", - "content": "Kri\u0161j\u0101nis Kari\u0146\u0161 says Moscow will seek new targets after conflict with Kyiv ends", - "contentSnippet": "Kri\u0161j\u0101nis Kari\u0146\u0161 says Moscow will seek new targets after conflict with Kyiv ends", - "guid": "7b94ec46-c761-4de3-8df7-055602ace279", - "isoDate": "2024-01-05T05:00:58.000Z" - }, - { - "title": "EU drop in Russian gas imports raises hopes of energy independence", - "link": "https://www.ft.com/content/46d2f5a7-37ab-4196-bd00-754b9dfe7fb0", - "pubDate": "Fri, 05 Jan 2024 05:00:58 GMT", - "content": "Country\u2019s LNG exports to Europe decreased slightly in 2023 compared with previous year", - "contentSnippet": "Country\u2019s LNG exports to Europe decreased slightly in 2023 compared with previous year", - "guid": "46d2f5a7-37ab-4196-bd00-754b9dfe7fb0", - "isoDate": "2024-01-05T05:00:58.000Z" - }, - { - "title": "Pentagon failed to track Ukraine arms worth more than $1bn, says watchdog", - "link": "https://www.ft.com/content/fae4f99b-6187-448f-9b8d-2a76f112f2ce", - "pubDate": "Thu, 11 Jan 2024 18:05:42 GMT", - "content": "DoD report fuels concerns about possible diversion of some military aid away from Kyiv", - "contentSnippet": "DoD report fuels concerns about possible diversion of some military aid away from Kyiv", - "guid": "fae4f99b-6187-448f-9b8d-2a76f112f2ce", - "isoDate": "2024-01-11T18:05:42.000Z" - }, - { - "title": "Brussels prepares concessions to Orb\u00e1n over Ukraine aid", - "link": "https://www.ft.com/content/ab8c1524-6d79-45d3-8b87-cb0ff0b187f9", - "pubDate": "Thu, 11 Jan 2024 17:47:37 GMT", - "content": "Hungarian premier wants 2025 review of \u20ac50bn support package for Kyiv in exchange for dropping his veto ", - "contentSnippet": "Hungarian premier wants 2025 review of \u20ac50bn support package for Kyiv in exchange for dropping his veto", - "guid": "ab8c1524-6d79-45d3-8b87-cb0ff0b187f9", - "isoDate": "2024-01-11T17:47:37.000Z" - }, - { - "title": "Moscow imports a third of battlefield tech from western companies", - "link": "https://www.ft.com/content/96c4f3f8-bd7b-41a3-9e76-7280490a3dbb", - "pubDate": "Thu, 11 Jan 2024 14:00:19 GMT", - "content": "Ukrainian officials find US and European components in Russian equipment", - "contentSnippet": "Ukrainian officials find US and European components in Russian equipment", - "guid": "96c4f3f8-bd7b-41a3-9e76-7280490a3dbb", - "isoDate": "2024-01-11T14:00:19.000Z" - }, - { - "title": "Italy links Ukraine aid to \u2018negotiated settlement\u2019 efforts", - "link": "https://www.ft.com/content/e0c9a4bb-903a-48d9-b44c-f26b445499b0", - "pubDate": "Wed, 10 Jan 2024 17:35:16 GMT", - "content": "Italian defence minister Guido Crosetto says military support for Kyiv should be accompanied by more diplomacy", - "contentSnippet": "Italian defence minister Guido Crosetto says military support for Kyiv should be accompanied by more diplomacy", - "guid": "e0c9a4bb-903a-48d9-b44c-f26b445499b0", - "isoDate": "2024-01-10T17:35:16.000Z" - }, - { - "title": "Why EU efforts to use Russia\u2019s frozen assets are progressing at a snail\u2019s pace ", - "link": "https://www.ft.com/content/445a4b7f-a773-4ae6-af0d-355e73b5e7ae", - "pubDate": "Wed, 10 Jan 2024 06:00:06 GMT", - "content": "Also in this newsletter: How the EU is trying to soothe concerns of belligerent farmers", - "contentSnippet": "Also in this newsletter: How the EU is trying to soothe concerns of belligerent farmers", - "guid": "445a4b7f-a773-4ae6-af0d-355e73b5e7ae", - "isoDate": "2024-01-10T06:00:06.000Z" - }, - { - "title": "The revival of the defence industry", - "link": "https://www.ft.com/content/8d21287f-d4cc-4b72-9872-9e3d766d56de", - "pubDate": "Tue, 09 Jan 2024 18:35:26 GMT", - "content": "Western allies and manufacturers need to adapt to a new era of warfare", - "contentSnippet": "Western allies and manufacturers need to adapt to a new era of warfare", - "guid": "8d21287f-d4cc-4b72-9872-9e3d766d56de", - "isoDate": "2024-01-09T18:35:26.000Z" - }, - { - "title": "Russia batters Ukraine in biggest air strikes since new year barrage", - "link": "https://www.ft.com/content/e1e54f7a-246d-4dd7-8b5e-974705058e9b", - "pubDate": "Mon, 08 Jan 2024 11:27:37 GMT", - "content": "President Volodymyr Zelenskyy urges allies to help replenish depleting air defence stocks", - "contentSnippet": "President Volodymyr Zelenskyy urges allies to help replenish depleting air defence stocks", - "guid": "e1e54f7a-246d-4dd7-8b5e-974705058e9b", - "isoDate": "2024-01-08T11:27:37.000Z" - }, - { - "title": "How Charles Michel\u2019s parliament plan fires up the EU\u2019s top job battle", - "link": "https://www.ft.com/content/f8ede923-9e04-4ebf-9996-69cb8e8d5ab2", - "pubDate": "Mon, 08 Jan 2024 06:00:07 GMT", - "content": "Also in this newsletter: Brussels readies Plan B to agree Ukraine funding before February", - "contentSnippet": "Also in this newsletter: Brussels readies Plan B to agree Ukraine funding before February", - "guid": "f8ede923-9e04-4ebf-9996-69cb8e8d5ab2", - "isoDate": "2024-01-08T06:00:07.000Z" - }, - { - "title": "EU urges Big Tech to promote opposition media in Belarus", - "link": "https://www.ft.com/content/0b33b19f-6ded-4458-be0b-b335cdf31f17", - "pubDate": "Mon, 08 Jan 2024 05:00:07 GMT", - "content": "Journalists claim groups including Google and Meta are \u2018tools\u2019 of Minsk\u2019s totalitarian regime", - "contentSnippet": "Journalists claim groups including Google and Meta are \u2018tools\u2019 of Minsk\u2019s totalitarian regime", - "guid": "0b33b19f-6ded-4458-be0b-b335cdf31f17", - "isoDate": "2024-01-08T05:00:07.000Z" - }, - { - "title": "Military briefing: Russia has the upper hand in electronic warfare with Ukraine", - "link": "https://www.ft.com/content/a477d3f1-8c7e-4520-83b0-572ad674c28e", - "pubDate": "Sun, 07 Jan 2024 05:00:56 GMT", - "content": "Both Kyiv and Moscow seek to bolster drone jamming capabilities as attacks mount", - "contentSnippet": "Both Kyiv and Moscow seek to bolster drone jamming capabilities as attacks mount", - "guid": "a477d3f1-8c7e-4520-83b0-572ad674c28e", - "isoDate": "2024-01-07T05:00:56.000Z" - }, - { - "title": "G20 push for faster payments risks weakening Russia sanctions, experts warn", - "link": "https://www.ft.com/content/b84c4d12-0591-44c9-b49a-fe198373235a", - "pubDate": "Sun, 07 Jan 2024 05:00:56 GMT", - "content": "Speeding up digital systems makes them more vulnerable to criminal networks and money laundering", - "contentSnippet": "Speeding up digital systems makes them more vulnerable to criminal networks and money laundering", - "guid": "b84c4d12-0591-44c9-b49a-fe198373235a", - "isoDate": "2024-01-07T05:00:56.000Z" - }, - { - "title": "UK to increase Ukraine funding to \u00a32.5bn as Sunak visits Kyiv", - "link": "https://www.ft.com/content/8d55de91-8afc-4720-90f4-d38a78ae6648", - "pubDate": "Fri, 12 Jan 2024 09:31:03 GMT", - "content": "New security pact signals continued support from west as US and EU aim to finalise next aid packages", - "contentSnippet": "New security pact signals continued support from west as US and EU aim to finalise next aid packages", - "guid": "8d55de91-8afc-4720-90f4-d38a78ae6648", - "isoDate": "2024-01-12T09:31:03.000Z" - }, - { - "title": "How Brussels and Budapest can claim victory from a Ukraine aid compromise", - "link": "https://www.ft.com/content/4caf32f0-05f7-4327-8129-72f66beb47f2", - "pubDate": "Fri, 12 Jan 2024 06:00:20 GMT", - "content": "Also in this newsletter: Meloni\u2019s fascist salute headache", - "contentSnippet": "Also in this newsletter: Meloni\u2019s fascist salute headache", - "guid": "4caf32f0-05f7-4327-8129-72f66beb47f2", - "isoDate": "2024-01-12T06:00:20.000Z" - }, - { - "title": "The Russia risk around Chinese banks is rising", - "link": "https://www.ft.com/content/07075093-1bb5-4132-95d8-b44d80452409", - "pubDate": "Thu, 18 Jan 2024 10:58:51 GMT", - "content": "Penalties from US sanctions would far outweigh the sales boost for big lenders from Russian clients ", - "contentSnippet": "Penalties from US sanctions would far outweigh the sales boost for big lenders from Russian clients", - "guid": "07075093-1bb5-4132-95d8-b44d80452409", - "isoDate": "2024-01-18T10:58:51.000Z" - }, - { - "title": "Ukrainian media targeted by pro-Zelenskyy \u2018info army\u2019", - "link": "https://www.ft.com/content/ab63a4d1-8a30-44c3-990a-02abe4884238", - "pubDate": "Thu, 18 Jan 2024 05:00:59 GMT", - "content": "Online and physical attacks on journalists cast shadow on president\u2019s rule", - "contentSnippet": "Online and physical attacks on journalists cast shadow on president\u2019s rule", - "guid": "ab63a4d1-8a30-44c3-990a-02abe4884238", - "isoDate": "2024-01-18T05:00:59.000Z" - }, - { - "title": "EU lawmakers revolt against Brussels caving into Orb\u00e1n\u2019s \u2018blackmail\u2019", - "link": "https://www.ft.com/content/673c617d-b50e-4c5b-941f-a6118717985f", - "pubDate": "Wed, 17 Jan 2024 13:57:34 GMT", - "content": "European parliament threatens legal action over Ursula von der Leyen\u2019s decision to unfreeze \u20ac10bn for Budapest", - "contentSnippet": "European parliament threatens legal action over Ursula von der Leyen\u2019s decision to unfreeze \u20ac10bn for Budapest", - "guid": "673c617d-b50e-4c5b-941f-a6118717985f", - "isoDate": "2024-01-17T13:57:34.000Z" - }, - { - "title": "Von der Leyen\u2019s backers push for a rubber stamp on her second term", - "link": "https://www.ft.com/content/e704d0e6-3a92-4794-a155-6057d9a81173", - "pubDate": "Wed, 17 Jan 2024 06:00:42 GMT", - "content": "Also in this newsletter: Why Ukrainians fleeing the war could help Europe plug labour shortages", - "contentSnippet": "Also in this newsletter: Why Ukrainians fleeing the war could help Europe plug labour shortages", - "guid": "e704d0e6-3a92-4794-a155-6057d9a81173", - "isoDate": "2024-01-17T06:00:42.000Z" - }, - { - "title": "Ukraine funding critical for allies\u2019 own security, Zelenskyy warns", - "link": "https://www.ft.com/content/ea7771db-c832-4e6f-99be-7135b0f3000a", - "pubDate": "Tue, 16 Jan 2024 16:20:13 GMT", - "content": "President pleads for continued assistance at World Economic Forum in Davos", - "contentSnippet": "President pleads for continued assistance at World Economic Forum in Davos", - "guid": "ea7771db-c832-4e6f-99be-7135b0f3000a", - "isoDate": "2024-01-16T16:20:13.000Z" - }, - { - "title": "Polish truckers to lift border blockade with Ukraine", - "link": "https://www.ft.com/content/9e9bbb33-a383-481b-a4e4-3d1842ffde1d", - "pubDate": "Tue, 16 Jan 2024 13:13:28 GMT", - "content": "Breakthrough in hauliers\u2019 talks with Warsaw comes ahead of PM Donald Tusk\u2019s visit to Kyiv", - "contentSnippet": "Breakthrough in hauliers\u2019 talks with Warsaw comes ahead of PM Donald Tusk\u2019s visit to Kyiv", - "guid": "9e9bbb33-a383-481b-a4e4-3d1842ffde1d", - "isoDate": "2024-01-16T13:13:28.000Z" - }, - { - "title": "Why the EU\u2019s true support for Ukraine is being assessed", - "link": "https://www.ft.com/content/45b3fa4a-9724-4ae8-b956-ef3e51f8d63f", - "pubDate": "Tue, 16 Jan 2024 06:00:08 GMT", - "content": "Also in this newsletter: Does Brussels really think aeroplanes can be \u2018green\u2019?", - "contentSnippet": "Also in this newsletter: Does Brussels really think aeroplanes can be \u2018green\u2019?", - "guid": "45b3fa4a-9724-4ae8-b956-ef3e51f8d63f", - "isoDate": "2024-01-16T06:00:08.000Z" - }, - { - "title": "Brussels audits EU states\u2019 arms supplies to Ukraine", - "link": "https://www.ft.com/content/af95ad49-2529-48d4-9a2b-8e10dbc28eeb", - "pubDate": "Tue, 16 Jan 2024 05:00:08 GMT", - "content": "Assessment follows complaints that some countries are failing to send as many weapons as they could", - "contentSnippet": "Assessment follows complaints that some countries are failing to send as many weapons as they could", - "guid": "af95ad49-2529-48d4-9a2b-8e10dbc28eeb", - "isoDate": "2024-01-16T05:00:08.000Z" - }, - { - "title": "What a post-war future holds for Ukraine and Russia ", - "link": "https://www.ft.com/content/c11c5d1a-9329-4f49-b5fe-aa1ff1bdb8e4", - "pubDate": "Tue, 16 Jan 2024 05:00:08 GMT", - "content": "Four books look at the forging of a new Ukrainian national identity in the furnace of war \u2014 and a glimmer of light in the Russian exiles who have fled their homeland", - "contentSnippet": "Four books look at the forging of a new Ukrainian national identity in the furnace of war \u2014 and a glimmer of light in the Russian exiles who have fled their homeland", - "guid": "c11c5d1a-9329-4f49-b5fe-aa1ff1bdb8e4", - "isoDate": "2024-01-16T05:00:08.000Z" - }, - { - "title": "War in Ukraine: military strategies", - "link": "https://www.ft.com/content/7a67ae5c-774a-4e2f-9be0-38924f5557c2", - "pubDate": "Mon, 15 Jan 2024 20:45:17 GMT", - "content": "Key articles on Russia and Ukraine\u2019s battle tactics", - "contentSnippet": "Key articles on Russia and Ukraine\u2019s battle tactics", - "guid": "7a67ae5c-774a-4e2f-9be0-38924f5557c2", - "isoDate": "2024-01-15T20:45:17.000Z" - }, - { - "title": "Ukraine shoots down Russian spy plane", - "link": "https://www.ft.com/content/970c4502-808d-4fec-8f97-91f8bb84beea", - "pubDate": "Mon, 15 Jan 2024 14:21:48 GMT", - "content": "Kyiv deals significant blow to Moscow\u2019s aerial operations", - "contentSnippet": "Kyiv deals significant blow to Moscow\u2019s aerial operations", - "guid": "970c4502-808d-4fec-8f97-91f8bb84beea", - "isoDate": "2024-01-15T14:21:48.000Z" - }, - { - "title": "Taiwan can still avoid Ukraine\u2019s fate", - "link": "https://www.ft.com/content/d77ec25e-8d78-43d8-acc5-359dad4a158f", - "pubDate": "Mon, 15 Jan 2024 12:18:46 GMT", - "content": "The obstacles to a successful Chinese invasion of the island remain formidable", - "contentSnippet": "The obstacles to a successful Chinese invasion of the island remain formidable", - "guid": "d77ec25e-8d78-43d8-acc5-359dad4a158f", - "isoDate": "2024-01-15T12:18:46.000Z" - }, - { - "title": "Poland\u2019s Tusk keeps protectionist stance on Ukraine", - "link": "https://www.ft.com/content/734b12d4-d3c1-4009-9b4b-d30018588622", - "pubDate": "Mon, 15 Jan 2024 11:24:57 GMT", - "content": "Prime minister caught in a bind between pro-EU agenda and demands from farmers and hauliers", - "contentSnippet": "Prime minister caught in a bind between pro-EU agenda and demands from farmers and hauliers", - "guid": "734b12d4-d3c1-4009-9b4b-d30018588622", - "isoDate": "2024-01-15T11:24:57.000Z" - }, - { - "title": "Why Ukraine peace talks are more about talking than peace", - "link": "https://www.ft.com/content/196f5f8e-38cf-45b2-b45d-2e73596bab11", - "pubDate": "Mon, 15 Jan 2024 06:00:03 GMT", - "content": "Also in this newsletter: How the EU\u2019s carbon tariff is pushing countries to charge for CO\u2082 emissions", - "contentSnippet": "Also in this newsletter: How the EU\u2019s carbon tariff is pushing countries to charge for CO\u2082 emissions", - "guid": "196f5f8e-38cf-45b2-b45d-2e73596bab11", - "isoDate": "2024-01-15T06:00:03.000Z" - }, - { - "title": "Ukraine promotes peace plan at Davos meeting for 83 countries ", - "link": "https://www.ft.com/content/f18aa35d-6f07-4274-9f46-8583c9d6e82a", - "pubDate": "Sun, 14 Jan 2024 18:26:25 GMT", - "content": "Kyiv\u2019s initiative attracts more security officials from non-western states but China declines to attend", - "contentSnippet": "Kyiv\u2019s initiative attracts more security officials from non-western states but China declines to attend", - "guid": "f18aa35d-6f07-4274-9f46-8583c9d6e82a", - "isoDate": "2024-01-14T18:26:25.000Z" - }, - { - "title": "Missiles from Iran and North Korea boost Russia\u2019s onslaught on Ukraine", - "link": "https://www.ft.com/content/1d1eb1dd-4fa0-4693-9512-23a219de5d77", - "pubDate": "Sun, 14 Jan 2024 05:00:02 GMT", - "content": "Moscow changes tactics with unprecedented barrages aiming \u2018to crack the code\u2019 of Ukrainian air defences", - "contentSnippet": "Moscow changes tactics with unprecedented barrages aiming \u2018to crack the code\u2019 of Ukrainian air defences", - "guid": "1d1eb1dd-4fa0-4693-9512-23a219de5d77", - "isoDate": "2024-01-14T05:00:02.000Z" - }, - { - "title": "EU leaders back use of earnings from Russia\u2019s frozen assets for Ukraine", - "link": "https://www.ft.com/content/a25c5a77-74d4-4886-8fa1-70ad1b668a2f", - "pubDate": "Fri, 27 Oct 2023 12:20:35 GMT", - "content": "European Commission expected to put forward legal proposals in December ", - "contentSnippet": "European Commission expected to put forward legal proposals in December", - "guid": "a25c5a77-74d4-4886-8fa1-70ad1b668a2f", - "isoDate": "2023-10-27T12:20:35.000Z" - }, - { - "title": "Slovakia and Hungary threaten to break EU unity on Ukraine military aid", - "link": "https://www.ft.com/content/4dc3cea9-447d-488c-9b39-9f12356e6809", - "pubDate": "Thu, 26 Oct 2023 14:22:25 GMT", - "content": "Bloc\u2019s leaders meet in Brussels for summit on Middle East, Ukraine and funding issues", - "contentSnippet": "Bloc\u2019s leaders meet in Brussels for summit on Middle East, Ukraine and funding issues", - "guid": "4dc3cea9-447d-488c-9b39-9f12356e6809", - "isoDate": "2023-10-26T14:22:25.000Z" - }, - { - "title": "Euroclear earns \u20ac3bn from Russian assets frozen by west", - "link": "https://www.ft.com/content/88ff88c4-6efe-40b7-b635-80eb6bd73c2c", - "pubDate": "Thu, 26 Oct 2023 10:39:42 GMT", - "content": "Windfall for Belgian depository likely to raise pressure to channel proceeds to Ukraine", - "contentSnippet": "Windfall for Belgian depository likely to raise pressure to channel proceeds to Ukraine", - "guid": "88ff88c4-6efe-40b7-b635-80eb6bd73c2c", - "isoDate": "2023-10-26T10:39:42.000Z" - }, - { - "title": "The Schr\u00f6dinger\u2019s cat of Russian foreign reserves", - "link": "https://www.ft.com/content/8e95a94b-1791-48e1-93ac-a1b54da634ce", - "pubDate": "Thu, 26 Oct 2023 10:04:38 GMT", - "content": "Now you see them, now you don\u2019t", - "contentSnippet": "Now you see them, now you don\u2019t", - "guid": "8e95a94b-1791-48e1-93ac-a1b54da634ce", - "isoDate": "2023-10-26T10:04:38.000Z" - }, - { - "title": "The medics battling on Ukraine\u2019s \u2018second frontline\u2019", - "link": "https://www.ft.com/content/0f168ef9-d8a8-47c4-8883-017936cd0f2f", - "pubDate": "Thu, 26 Oct 2023 04:00:43 GMT", - "content": "Poor quality tourniquets and lack of medical training are costing soldiers\u2019 lives, say volunteer doctors", - "contentSnippet": "Poor quality tourniquets and lack of medical training are costing soldiers\u2019 lives, say volunteer doctors", - "guid": "0f168ef9-d8a8-47c4-8883-017936cd0f2f", - "isoDate": "2023-10-26T04:00:43.000Z" - }, - { - "title": "The Russians returning home from self-imposed exile", - "link": "https://www.ft.com/content/5e6bcce9-7bda-4b29-b1b7-f7df6e879fd9", - "pubDate": "Wed, 25 Oct 2023 04:00:11 GMT", - "content": "More than 800,000 people fled Russia after last year\u2019s invasion of Ukraine. Now, some have changed their minds", - "contentSnippet": "More than 800,000 people fled Russia after last year\u2019s invasion of Ukraine. Now, some have changed their minds", - "guid": "5e6bcce9-7bda-4b29-b1b7-f7df6e879fd9", - "isoDate": "2023-10-25T04:00:11.000Z" - }, - { - "title": "Why the EU is moving to endorse a \u2018humanitarian pause\u2019 in Gaza", - "link": "https://www.ft.com/content/df475405-8263-4dcb-a37d-c98a5765b200", - "pubDate": "Tue, 24 Oct 2023 05:00:05 GMT", - "content": "Also in this newsletter: How the bloc plans to step up defence of its clean tech sector", - "contentSnippet": "Also in this newsletter: How the bloc plans to step up defence of its clean tech sector", - "guid": "df475405-8263-4dcb-a37d-c98a5765b200", - "isoDate": "2023-10-24T05:00:05.000Z" - }, - { - "title": "Ukraine\u2019s race to build its own arms industry", - "link": "https://www.ft.com/content/69cf1288-0156-4b8f-a770-cacb05988596", - "pubDate": "Tue, 24 Oct 2023 04:00:05 GMT", - "content": "Kyiv is converting US missiles for new uses and prioritising joint ventures with western companies", - "contentSnippet": "Kyiv is converting US missiles for new uses and prioritising joint ventures with western companies", - "guid": "69cf1288-0156-4b8f-a770-cacb05988596", - "isoDate": "2023-10-24T04:00:05.000Z" - }, - { - "title": "Why the EU needs to join the dots between Israel and Ukraine", - "link": "https://www.ft.com/content/d4a5f131-dffe-494e-b1c9-13a3c69ad027", - "pubDate": "Mon, 23 Oct 2023 05:00:43 GMT", - "content": "Also in this newsletter: How the former head of Germany\u2019s hard-left party wants to woo far-right voters", - "contentSnippet": "Also in this newsletter: How the former head of Germany\u2019s hard-left party wants to woo far-right voters", - "guid": "d4a5f131-dffe-494e-b1c9-13a3c69ad027", - "isoDate": "2023-10-23T05:00:43.000Z" - }, - { - "title": "Ukrainians fear loss of support as global gaze shifts to Israel-Hamas war", - "link": "https://www.ft.com/content/d6145249-6589-45dd-bf8f-7ba7f3cb664b", - "pubDate": "Sun, 22 Oct 2023 04:00:44 GMT", - "content": "The world has forgotten Russia\u2019s war in Ukraine before. Ukrainians remember \u2014 and will not let it happen again", - "contentSnippet": "The world has forgotten Russia\u2019s war in Ukraine before. Ukrainians remember \u2014 and will not let it happen again", - "guid": "d6145249-6589-45dd-bf8f-7ba7f3cb664b", - "isoDate": "2023-10-22T04:00:44.000Z" - }, - { - "title": "We must ditch the \u2018stalemate\u2019 metaphor in Ukraine\u2019s war ", - "link": "https://www.ft.com/content/5791ec24-3aa0-4a98-a89f-f955c3abcde5", - "pubDate": "Fri, 20 Oct 2023 17:00:07 GMT", - "content": "Referring to the conflict as such only invites moral and strategic errors", - "contentSnippet": "Referring to the conflict as such only invites moral and strategic errors", - "guid": "5791ec24-3aa0-4a98-a89f-f955c3abcde5", - "isoDate": "2023-10-20T17:00:07.000Z" - }, - { - "title": "Biden asks divided Congress to pass $106bn in aid for Israel and Ukraine ", - "link": "https://www.ft.com/content/be2eeb38-0879-44f4-8929-c816f57864a7", - "pubDate": "Fri, 20 Oct 2023 16:22:20 GMT", - "content": "Call for $75.7bn in extra military support comes as Republicans fail once again to elect a Speaker of the House", - "contentSnippet": "Call for $75.7bn in extra military support comes as Republicans fail once again to elect a Speaker of the House", - "guid": "be2eeb38-0879-44f4-8929-c816f57864a7", - "isoDate": "2023-10-20T16:22:20.000Z" - }, - { - "title": "Why the EU-US summit won\u2019t yield any breakthroughs on trade", - "link": "https://www.ft.com/content/f75ad20b-e520-4c8f-a18d-d07952b0be30", - "pubDate": "Fri, 20 Oct 2023 05:00:47 GMT", - "content": "Also in this newsletter: Finland cracks down on Russians buying critical real estate", - "contentSnippet": "Also in this newsletter: Finland cracks down on Russians buying critical real estate", - "guid": "f75ad20b-e520-4c8f-a18d-d07952b0be30", - "isoDate": "2023-10-20T05:00:47.000Z" - }, - { - "title": "Biden urges Congress to provide new funds for Israel and Ukraine ", - "link": "https://www.ft.com/content/b203de84-7a1c-4e1b-844a-740742751c83", - "pubDate": "Fri, 20 Oct 2023 02:07:04 GMT", - "content": "US president\u2019s primetime address makes national security case for support expected to exceed $100bn", - "contentSnippet": "US president\u2019s primetime address makes national security case for support expected to exceed $100bn", - "guid": "b203de84-7a1c-4e1b-844a-740742751c83", - "isoDate": "2023-10-20T02:07:04.000Z" - }, - { - "title": "Moscow detains US journalist amid crackdown on independent reporting", - "link": "https://www.ft.com/content/d005114e-c155-4925-99d0-045e326d84f5", - "pubDate": "Thu, 19 Oct 2023 10:07:10 GMT", - "content": "Russian-US citizen Alsu Kurmasheva faces up to five years in jail if found guilty of charges", - "contentSnippet": "Russian-US citizen Alsu Kurmasheva faces up to five years in jail if found guilty of charges", - "guid": "d005114e-c155-4925-99d0-045e326d84f5", - "isoDate": "2023-10-19T10:07:10.000Z" - }, - { - "title": "The second battle for Kharkiv: city goes underground to defy Russian missiles", - "link": "https://www.ft.com/content/c1719b5c-c30f-4415-a2dd-dc0b4025886b", - "pubDate": "Thu, 19 Oct 2023 04:00:43 GMT", - "content": "A new subterranean school is part of a plan to entice exiles back to Ukraine\u2019s second-largest city", - "contentSnippet": "A new subterranean school is part of a plan to entice exiles back to Ukraine\u2019s second-largest city", - "guid": "c1719b5c-c30f-4415-a2dd-dc0b4025886b", - "isoDate": "2023-10-19T04:00:43.000Z" - }, - { - "title": "Xi hails \u2018deep friendship\u2019 with Putin as leaders meet in Beijing", - "link": "https://www.ft.com/content/fd028975-462e-4b70-912e-3e1e441517e5", - "pubDate": "Wed, 18 Oct 2023 15:13:20 GMT", - "content": "China\u2019s president says annual bilateral trade with Russia has reached a \u2018historic high\u2019 of nearly $200bn", - "contentSnippet": "China\u2019s president says annual bilateral trade with Russia has reached a \u2018historic high\u2019 of nearly $200bn", - "guid": "fd028975-462e-4b70-912e-3e1e441517e5", - "isoDate": "2023-10-18T15:13:20.000Z" - }, - { - "title": "In the pursuit of small pleasures, Kyiv residents exercise resistance ", - "link": "https://www.ft.com/content/73ee1453-ab48-4b77-b181-564d8604c5dd", - "pubDate": "Wed, 18 Oct 2023 10:47:51 GMT", - "content": "Vladimir Putin wants to trash the country, so the fact that daily life continues is a minor triumph", - "contentSnippet": "Vladimir Putin wants to trash the country, so the fact that daily life continues is a minor triumph", - "guid": "73ee1453-ab48-4b77-b181-564d8604c5dd", - "isoDate": "2023-10-18T10:47:51.000Z" - }, - { - "title": "Rush by west to back Israel erodes developing countries\u2019 support for Ukraine", - "link": "https://www.ft.com/content/e0b43918-7eaf-4a11-baaf-d6d7fb61a8a5", - "pubDate": "Wed, 18 Oct 2023 04:00:10 GMT", - "content": "Diplomats warn backing for Israeli assault on Gaza has poisoned efforts to build consensus against Russia\u2019s war", - "contentSnippet": "Diplomats warn backing for Israeli assault on Gaza has poisoned efforts to build consensus against Russia\u2019s war", - "guid": "e0b43918-7eaf-4a11-baaf-d6d7fb61a8a5", - "isoDate": "2023-10-18T04:00:10.000Z" - }, - { - "title": "Ukraine strikes Russian forces with US-made ATACMS for first time", - "link": "https://www.ft.com/content/ea2a4335-fa77-4ecb-8646-e1525ed09a0c", - "pubDate": "Tue, 17 Oct 2023 18:09:44 GMT", - "content": "Long-range guided missiles that were secretly shipped to Kyiv hit military assets in occupied regions ", - "contentSnippet": "Long-range guided missiles that were secretly shipped to Kyiv hit military assets in occupied regions", - "guid": "ea2a4335-fa77-4ecb-8646-e1525ed09a0c", - "isoDate": "2023-10-17T18:09:44.000Z" - }, - { - "title": "Orb\u00e1n meets Putin in bid to \u2018save everything possible\u2019 in bilateral relations", - "link": "https://www.ft.com/content/41fb0967-61b6-4244-973b-97b8f6e61a85", - "pubDate": "Tue, 17 Oct 2023 13:52:44 GMT", - "content": "European head is first western leader to meet Russian president since issue of war crimes warrant for his arrest", - "contentSnippet": "European head is first western leader to meet Russian president since issue of war crimes warrant for his arrest", - "guid": "41fb0967-61b6-4244-973b-97b8f6e61a85", - "isoDate": "2023-10-17T13:52:44.000Z" - }, - { - "title": "Fridman challenges UK sanctions to pay \u00a330,000-per-month London mansion costs", - "link": "https://www.ft.com/content/02289774-3b88-4b45-a4b0-c124f9b3ca55", - "pubDate": "Tue, 17 Oct 2023 12:46:30 GMT", - "content": "Russian businessman asks High Court to be allowed to cover London staff salaries, including for a driver", - "contentSnippet": "Russian businessman asks High Court to be allowed to cover London staff salaries, including for a driver", - "guid": "02289774-3b88-4b45-a4b0-c124f9b3ca55", - "isoDate": "2023-10-17T12:46:30.000Z" - }, - { - "title": "Putin visits Beijing for first time since Russia\u2019s invasion of Ukraine", - "link": "https://www.ft.com/content/c11d5b31-da3d-465a-ac1a-f503b4e07268", - "pubDate": "Tue, 17 Oct 2023 09:57:00 GMT", - "content": "Russian president met Chinese counterpart Xi Jinping on Tuesday ahead of summit tomorrow", - "contentSnippet": "Russian president met Chinese counterpart Xi Jinping on Tuesday ahead of summit tomorrow", - "guid": "c11d5b31-da3d-465a-ac1a-f503b4e07268", - "isoDate": "2023-10-17T09:57:00.000Z" - }, - { - "title": "Israel-Hamas war tests US defence sector already strained by conflict in Ukraine", - "link": "https://www.ft.com/content/ad8585de-a5c4-4d65-a213-596a10816aa8", - "pubDate": "Tue, 17 Oct 2023 04:00:12 GMT", - "content": "Washington vows to increase supplies of precision missiles and other munitions to allies", - "contentSnippet": "Washington vows to increase supplies of precision missiles and other munitions to allies", - "guid": "ad8585de-a5c4-4d65-a213-596a10816aa8", - "isoDate": "2023-10-17T04:00:12.000Z" - }, - { - "title": "Qatar brokers deal to return Ukrainian children taken by Russia", - "link": "https://www.ft.com/content/4739c7d1-d43d-4ec5-909d-9559ded0c662", - "pubDate": "Mon, 16 Oct 2023 06:16:21 GMT", - "content": "Four children to be reunited with families are first since international mediators began negotiating with Moscow", - "contentSnippet": "Four children to be reunited with families are first since international mediators began negotiating with Moscow", - "guid": "4739c7d1-d43d-4ec5-909d-9559ded0c662", - "isoDate": "2023-10-16T06:16:21.000Z" - } -] \ No newline at end of file + { + "title": "War has spread to a sixth domain: the private sector", + "link": "https://www.ft.com/content/b81047bc-c124-4ee3-bc92-752d54a3bd66", + "pubDate": "Thu, 30 Nov 2023 11:50:14 GMT", + "content": "The conflict in Ukraine highlights the need for governments and private companies to collaborate on national security", + "contentSnippet": "The conflict in Ukraine highlights the need for governments and private companies to collaborate on national security", + "guid": "b81047bc-c124-4ee3-bc92-752d54a3bd66", + "isoDate": "2023-11-30T11:50:14.000Z" + }, + { + "title": "Can financial engineering solve the dilemma over Russia\u2019s blocked reserves?", + "link": "https://www.ft.com/content/5dd03ae1-61b0-4038-bec9-2ec80e0d62b0", + "pubDate": "Thu, 30 Nov 2023 11:00:20 GMT", + "content": "Special purpose vehicles for victory", + "contentSnippet": "Special purpose vehicles for victory", + "guid": "5dd03ae1-61b0-4038-bec9-2ec80e0d62b0", + "isoDate": "2023-11-30T11:00:20.000Z" + }, + { + "title": "Why Blinken avoided meeting Lavrov at a fraught OSCE meeting", + "link": "https://www.ft.com/content/58db28b1-b4bf-41fc-a66d-61b752416904", + "pubDate": "Thu, 30 Nov 2023 06:00:20 GMT", + "content": "Also in this newsletter: How much money can the EU spare for climate compensation?", + "contentSnippet": "Also in this newsletter: How much money can the EU spare for climate compensation?", + "guid": "58db28b1-b4bf-41fc-a66d-61b752416904", + "isoDate": "2023-11-30T06:00:20.000Z" + }, + { + "title": "Belarus debtholders dispute frozen $800mn bond at Euroclear", + "link": "https://www.ft.com/content/64807c8a-f764-4620-a900-d22e83cb4920", + "pubDate": "Thu, 30 Nov 2023 05:00:21 GMT", + "content": "Securities depository holds up payments due to disagreement over debt status", + "contentSnippet": "Securities depository holds up payments due to disagreement over debt status", + "guid": "64807c8a-f764-4620-a900-d22e83cb4920", + "isoDate": "2023-11-30T05:00:21.000Z" + }, + { + "title": "Nato says don\u2019t underestimate Russia", + "link": "https://www.ft.com/content/199c5912-0c0f-4c5f-8d18-dfef5a183a5c", + "pubDate": "Thu, 30 Nov 2023 05:00:21 GMT", + "content": "Nato's secretary-general says Russia has been stockpiling missiles for a winter attack on Ukraine", + "contentSnippet": "Nato's secretary-general says Russia has been stockpiling missiles for a winter attack on Ukraine", + "guid": "199c5912-0c0f-4c5f-8d18-dfef5a183a5c", + "isoDate": "2023-11-30T05:00:21.000Z" + }, + { + "title": "Russia has stockpiled missiles for winter attack on Ukraine, says Nato", + "link": "https://www.ft.com/content/11be1c77-0cf3-404b-b49a-09c34e57f8f7", + "pubDate": "Wed, 29 Nov 2023 14:18:57 GMT", + "content": "Jens Stoltenberg urges allies not to \u2018underestimate\u2019 Moscow and its war economy", + "contentSnippet": "Jens Stoltenberg urges allies not to \u2018underestimate\u2019 Moscow and its war economy", + "guid": "11be1c77-0cf3-404b-b49a-09c34e57f8f7", + "isoDate": "2023-11-29T14:18:57.000Z" + }, + { + "title": "Why Nato\u2019s reassurances to Ukraine are starting to ring hollow", + "link": "https://www.ft.com/content/f2cfebb4-77c9-490a-ac99-8c16f3385373", + "pubDate": "Wed, 29 Nov 2023 06:01:52 GMT", + "content": "Also in this newsletter: Greece\u2019s \u2018universal\u2019 outrage over the Parthenon marbles", + "contentSnippet": "Also in this newsletter: Greece\u2019s \u2018universal\u2019 outrage over the Parthenon marbles", + "guid": "f2cfebb4-77c9-490a-ac99-8c16f3385373", + "isoDate": "2023-11-29T06:01:52.000Z" + }, + { + "title": "The crackdown on Ukraine\u2019s oligarchs", + "link": "https://www.ft.com/content/1f34138e-a1f1-43ca-85f6-63e6264a211e", + "pubDate": "Wed, 29 Nov 2023 05:00:55 GMT", + "content": "Volodymyr Zelenskyy\u2019s government is taking action against politically influential business figures. But will a new generation take their place?", + "contentSnippet": "Volodymyr Zelenskyy\u2019s government is taking action against politically influential business figures. But will a new generation take their place?", + "guid": "1f34138e-a1f1-43ca-85f6-63e6264a211e", + "isoDate": "2023-11-29T05:00:55.000Z" + }, + { + "title": "EU ports help sell on over 20% of LNG imports from Russia", + "link": "https://www.ft.com/content/aff34dec-9fbb-4158-9af8-7a7761b25893", + "pubDate": "Wed, 29 Nov 2023 05:00:54 GMT", + "content": "\u2018Transshipment\u2019 of liquefied natural gas, crucial for Moscow\u2019s Arctic fleet, is banned by UK and Netherlands", + "contentSnippet": "\u2018Transshipment\u2019 of liquefied natural gas, crucial for Moscow\u2019s Arctic fleet, is banned by UK and Netherlands", + "guid": "aff34dec-9fbb-4158-9af8-7a7761b25893", + "isoDate": "2023-11-29T05:00:54.000Z" + }, + { + "title": "Finland to close all land borders with Russia after migrant influx", + "link": "https://www.ft.com/content/1c195b60-b0ec-42a3-9efd-c4aced026e6f", + "pubDate": "Tue, 28 Nov 2023 18:09:29 GMT", + "content": "Helsinki says tactic by Moscow is deliberate and poses \u2018serious threat to national security\u2019", + "contentSnippet": "Helsinki says tactic by Moscow is deliberate and poses \u2018serious threat to national security\u2019", + "guid": "1c195b60-b0ec-42a3-9efd-c4aced026e6f", + "isoDate": "2023-11-28T18:09:29.000Z" + }, + { + "title": "Ukraine claims wife of country\u2019s military intelligence chief was poisoned", + "link": "https://www.ft.com/content/b41d57ad-a9f1-4e16-bd9d-cfe92d6cf5a4", + "pubDate": "Tue, 28 Nov 2023 15:51:55 GMT", + "content": "Several officers also undergoing medical treatment after contamination with heavy metal substances, say officers", + "contentSnippet": "Several officers also undergoing medical treatment after contamination with heavy metal substances, say officers", + "guid": "b41d57ad-a9f1-4e16-bd9d-cfe92d6cf5a4", + "isoDate": "2023-11-28T15:51:55.000Z" + }, + { + "title": "Turkey\u2019s exports of military-linked goods to Russia soar", + "link": "https://www.ft.com/content/1cef6628-32eb-49c9-a7f1-2aef9bce4239", + "pubDate": "Mon, 27 Nov 2023 15:02:01 GMT", + "content": "Growth in shipments of restricted parts fuels western suspicions that Turkish companies are conduit for Moscow", + "contentSnippet": "Growth in shipments of restricted parts fuels western suspicions that Turkish companies are conduit for Moscow", + "guid": "1cef6628-32eb-49c9-a7f1-2aef9bce4239", + "isoDate": "2023-11-27T15:02:01.000Z" + }, + { + "title": "Ukraine\u2019s long war \u2014 and how to win it", + "link": "https://www.ft.com/content/822e4e21-a631-496e-accd-1c9d6288573c", + "pubDate": "Mon, 27 Nov 2023 05:00:49 GMT", + "content": "Every conflict has periods of defeatism but there are no signs of it in Kyiv, which just needs the west to keep the faith ", + "contentSnippet": "Every conflict has periods of defeatism but there are no signs of it in Kyiv, which just needs the west to keep the faith", + "guid": "822e4e21-a631-496e-accd-1c9d6288573c", + "isoDate": "2023-11-27T05:00:49.000Z" + }, + { + "title": "Russia claims to repel Ukrainian drones after record air strikes on Kyiv", + "link": "https://www.ft.com/content/83c865c5-5ed7-4a9b-9fea-e3d1031bbf1f", + "pubDate": "Sun, 26 Nov 2023 15:40:42 GMT", + "content": "Ukraine fears start of Moscow winter campaign aimed at destroying energy infrastructure", + "contentSnippet": "Ukraine fears start of Moscow winter campaign aimed at destroying energy infrastructure", + "guid": "83c865c5-5ed7-4a9b-9fea-e3d1031bbf1f", + "isoDate": "2023-11-26T15:40:42.000Z" + }, + { + "title": "Manpower becomes Ukraine\u2019s latest challenge as it digs in for a long war", + "link": "https://www.ft.com/content/25711074-5e1a-494a-9d7c-ccb535f671d5", + "pubDate": "Sun, 26 Nov 2023 05:00:56 GMT", + "content": "Kyiv seeks to persuade younger recruits with better endurance and higher skills to join up", + "contentSnippet": "Kyiv seeks to persuade younger recruits with better endurance and higher skills to join up", + "guid": "25711074-5e1a-494a-9d7c-ccb535f671d5", + "isoDate": "2023-11-26T05:00:56.000Z" + }, + { + "title": "Russia launches largest drone attack since start of Ukraine war", + "link": "https://www.ft.com/content/a829cb8c-2337-4aa7-8f80-8292ef8203da", + "pubDate": "Sat, 25 Nov 2023 12:53:40 GMT", + "content": "Five people wounded in barrage that hit residential buildings and energy infrastructure", + "contentSnippet": "Five people wounded in barrage that hit residential buildings and energy infrastructure", + "guid": "a829cb8c-2337-4aa7-8f80-8292ef8203da", + "isoDate": "2023-11-25T12:53:40.000Z" + }, + { + "title": "Polish truckers extend Ukraine border blockade", + "link": "https://www.ft.com/content/8ce3b3b5-b2b1-4871-baec-394bc74e8911", + "pubDate": "Thu, 23 Nov 2023 14:17:09 GMT", + "content": "Protest spreads to main crossing with long queues forming as temperatures drop ", + "contentSnippet": "Protest spreads to main crossing with long queues forming as temperatures drop", + "guid": "8ce3b3b5-b2b1-4871-baec-394bc74e8911", + "isoDate": "2023-11-23T14:17:09.000Z" + }, + { + "title": "EU and Canada preparing show of friendship at joint summit", + "link": "https://www.ft.com/content/9f98261a-9900-4bef-b96a-e53e54256a24", + "pubDate": "Thu, 23 Nov 2023 06:00:54 GMT", + "content": "Also in this newsletter: Austria\u2019s foreign minister calls for elections in Ukraine", + "contentSnippet": "Also in this newsletter: Austria\u2019s foreign minister calls for elections in Ukraine", + "guid": "9f98261a-9900-4bef-b96a-e53e54256a24", + "isoDate": "2023-11-23T06:00:54.000Z" + }, + { + "title": "Treat Bosnia on par with Ukraine over accession talks, Austria tells EU", + "link": "https://www.ft.com/content/5270c7c9-5712-481a-ba5f-be7678ef0469", + "pubDate": "Thu, 23 Nov 2023 05:00:55 GMT", + "content": "Foreign minister warns Brussels not to look at Balkans \u2018with a magnifying glass\u2019 and at Kyiv \u2018with rose-tinted glasses\u2019 ", + "contentSnippet": "Foreign minister warns Brussels not to look at Balkans \u2018with a magnifying glass\u2019 and at Kyiv \u2018with rose-tinted glasses\u2019", + "guid": "5270c7c9-5712-481a-ba5f-be7678ef0469", + "isoDate": "2023-11-23T05:00:55.000Z" + }, + { + "title": "Ukraine: the new fissures in a society under strain", + "link": "https://www.ft.com/content/2b0c050f-f776-4292-8ce7-884beceef4be", + "pubDate": "Thu, 23 Nov 2023 05:00:55 GMT", + "content": "For all their stoical resistance Ukrainians are increasingly riven between those who stayed and those who left, those who fought and those who didn\u2019t ", + "contentSnippet": "For all their stoical resistance Ukrainians are increasingly riven between those who stayed and those who left, those who fought and those who didn\u2019t", + "guid": "2b0c050f-f776-4292-8ce7-884beceef4be", + "isoDate": "2023-11-23T05:00:55.000Z" + }, + { + "title": "Switzerland agrees sale of tanks to backfill Nato stocks ", + "link": "https://www.ft.com/content/cfb6c6c4-1ff7-4d3e-9ee5-d22623ce3fa2", + "pubDate": "Wed, 22 Nov 2023 14:33:18 GMT", + "content": "Germany will receive 25 decommissioned Leopard 2 tanks on condition it will not send them to Ukraine", + "contentSnippet": "Germany will receive 25 decommissioned Leopard 2 tanks on condition it will not send them to Ukraine", + "guid": "cfb6c6c4-1ff7-4d3e-9ee5-d22623ce3fa2", + "isoDate": "2023-11-22T14:33:18.000Z" + }, + { + "title": "Ukraine needs reassurance from its allies", + "link": "https://www.ft.com/content/ed11bbc1-24ed-497e-acfd-6c1b5ca966ac", + "pubDate": "Wed, 22 Nov 2023 11:44:39 GMT", + "content": "Kyiv worries that war fatigue is growing in the US and the EU", + "contentSnippet": "Kyiv worries that war fatigue is growing in the US and the EU", + "guid": "ed11bbc1-24ed-497e-acfd-6c1b5ca966ac", + "isoDate": "2023-11-22T11:44:39.000Z" + }, + { + "title": "US and Germany risk owning Ukraine\u2019s stalling war effort", + "link": "https://www.ft.com/content/b046e53e-d035-4f22-b9f9-92ab8a57b5a4", + "pubDate": "Tue, 21 Nov 2023 18:32:12 GMT", + "content": "The onus is on European allies to step up support and chart a path for Kyiv towards Nato and EU membership", + "contentSnippet": "The onus is on European allies to step up support and chart a path for Kyiv towards Nato and EU membership", + "guid": "b046e53e-d035-4f22-b9f9-92ab8a57b5a4", + "isoDate": "2023-11-21T18:32:12.000Z" + }, + { + "title": "How the Czech Republic wants to shut European borders to Russian agents", + "link": "https://www.ft.com/content/0ba5718e-8c70-42db-8263-b4cfcf1ca38e", + "pubDate": "Tue, 21 Nov 2023 06:00:07 GMT", + "content": "Also in this newsletter: bikes are back at Finland\u2019s border to Russia", + "contentSnippet": "Also in this newsletter: bikes are back at Finland\u2019s border to Russia", + "guid": "0ba5718e-8c70-42db-8263-b4cfcf1ca38e", + "isoDate": "2023-11-21T06:00:07.000Z" + }, + { + "title": "Zelenskyy fires head of Ukraine\u2019s medical forces as US defence chiefs visit Kyiv", + "link": "https://www.ft.com/content/bb5bda25-491b-4548-b1a1-91242c82b5e6", + "pubDate": "Mon, 20 Nov 2023 22:24:53 GMT", + "content": "Washington offers continued support in war against Russia", + "contentSnippet": "Washington offers continued support in war against Russia", + "guid": "bb5bda25-491b-4548-b1a1-91242c82b5e6", + "isoDate": "2023-11-20T22:24:53.000Z" + }, + { + "title": "Western business, Russia and the war", + "link": "https://www.ft.com/content/bbabbff9-8c66-4a55-8e91-86b4f36f77a6", + "pubDate": "Fri, 08 Dec 2023 08:30:41 GMT", + "content": "This collection of articles explores the fallout of the war in Ukraine on Western companies operating in Russia", + "contentSnippet": "This collection of articles explores the fallout of the war in Ukraine on Western companies operating in Russia", + "guid": "bbabbff9-8c66-4a55-8e91-86b4f36f77a6", + "isoDate": "2023-12-08T08:30:41.000Z" + }, + { + "title": "EU to give member states power to block Russian gas imports", + "link": "https://www.ft.com/content/d6a06e26-7256-4b97-92dd-7131fb676ad8", + "pubDate": "Fri, 08 Dec 2023 05:06:20 GMT", + "content": "Draft legal text to stop companies in Russia and Belarus from accessing European pipelines and LNG terminals", + "contentSnippet": "Draft legal text to stop companies in Russia and Belarus from accessing European pipelines and LNG terminals", + "guid": "d6a06e26-7256-4b97-92dd-7131fb676ad8", + "isoDate": "2023-12-08T05:06:20.000Z" + }, + { + "title": "Danone\u2019s Chechen takeover: inside a Russian expropriation", + "link": "https://www.ft.com/content/adb43967-06f8-4d60-a6c1-b5ed262f7dbf", + "pubDate": "Fri, 08 Dec 2023 05:00:24 GMT", + "content": "Business handed to warlord\u2019s nephew has retained much of the French dairy group\u2019s previous management", + "contentSnippet": "Business handed to warlord\u2019s nephew has retained much of the French dairy group\u2019s previous management", + "guid": "adb43967-06f8-4d60-a6c1-b5ed262f7dbf", + "isoDate": "2023-12-08T05:00:24.000Z" + }, + { + "title": "The humanitarian crisis worsens in Gaza ", + "link": "https://www.ft.com/content/bf73d76f-7bc5-4a5b-9738-e7b6df394859", + "pubDate": "Thu, 07 Dec 2023 05:00:12 GMT", + "content": "Shattered Israel-Hamas truce leaves Gaza\u2019s civilians with nowhere left to run", + "contentSnippet": "Shattered Israel-Hamas truce leaves Gaza\u2019s civilians with nowhere left to run", + "guid": "bf73d76f-7bc5-4a5b-9738-e7b6df394859", + "isoDate": "2023-12-07T05:00:12.000Z" + }, + { + "title": "What can Ukraine teach us about the future of war?", + "link": "https://www.ft.com/content/25bab4fc-b8b6-4319-9b4f-82397da1b458", + "pubDate": "Thu, 07 Dec 2023 05:00:05 GMT", + "content": "From leadership and logistics to robots and drones, two new books assess what matters in 21st-century warfare", + "contentSnippet": "From leadership and logistics to robots and drones, two new books assess what matters in 21st-century warfare", + "guid": "25bab4fc-b8b6-4319-9b4f-82397da1b458", + "isoDate": "2023-12-07T05:00:05.000Z" + }, + { + "title": "Why export controls are failing to cripple their targets", + "link": "https://www.ft.com/content/10f1f080-8eb3-44a0-b4c6-1106b457c915", + "pubDate": "Thu, 07 Dec 2023 05:00:05 GMT", + "content": "Diverse geopolitics, smart researchers and resourceful traders are undermining attempts to control critical products", + "contentSnippet": "Diverse geopolitics, smart researchers and resourceful traders are undermining attempts to control critical products", + "guid": "10f1f080-8eb3-44a0-b4c6-1106b457c915", + "isoDate": "2023-12-07T05:00:05.000Z" + }, + { + "title": "US Senate Republicans sink Ukraine aid bill in dispute over immigration", + "link": "https://www.ft.com/content/8393572d-d877-4000-bb92-f6d81104c7ca", + "pubDate": "Wed, 06 Dec 2023 23:20:46 GMT", + "content": "Joe Biden says failure to agree more funding for Kyiv amounts to a \u2018gift\u2019 for Vladimir Putin", + "contentSnippet": "Joe Biden says failure to agree more funding for Kyiv amounts to a \u2018gift\u2019 for Vladimir Putin", + "guid": "8393572d-d877-4000-bb92-f6d81104c7ca", + "isoDate": "2023-12-06T23:20:46.000Z" + }, + { + "title": "Ukrainian special forces killed former lawmaker near Moscow, officials say", + "link": "https://www.ft.com/content/834e90a5-6ae0-4839-b184-2c7c5e22ced0", + "pubDate": "Wed, 06 Dec 2023 18:19:58 GMT", + "content": "Ilya Kiva had been charged with treason by Kyiv after cheering on invasion and fleeing to Russia ", + "contentSnippet": "Ilya Kiva had been charged with treason by Kyiv after cheering on invasion and fleeing to Russia", + "guid": "834e90a5-6ae0-4839-b184-2c7c5e22ced0", + "isoDate": "2023-12-06T18:19:58.000Z" + }, + { + "title": "US brings war crimes charges against 4 Russian soldiers ", + "link": "https://www.ft.com/content/aa7609da-4b17-41ef-84c6-0ca21548bb2a", + "pubDate": "Wed, 06 Dec 2023 17:05:20 GMT", + "content": "First prosecution of its kind involves the alleged assault and abduction of an American national in Ukraine", + "contentSnippet": "First prosecution of its kind involves the alleged assault and abduction of an American national in Ukraine", + "guid": "aa7609da-4b17-41ef-84c6-0ca21548bb2a", + "isoDate": "2023-12-06T17:05:20.000Z" + }, + { + "title": "G7 to ban Russian diamond imports from January", + "link": "https://www.ft.com/content/cc636fc6-607c-41ce-8fd4-ade2337f24ba", + "pubDate": "Wed, 06 Dec 2023 14:13:58 GMT", + "content": "Precious gems have so far been exempted from western sanctions imposed in response to Ukraine war", + "contentSnippet": "Precious gems have so far been exempted from western sanctions imposed in response to Ukraine war", + "guid": "cc636fc6-607c-41ce-8fd4-ade2337f24ba", + "isoDate": "2023-12-06T14:13:58.000Z" + }, + { + "title": "Ukrainian truckers blocked in Poland: \u2018People forgot our war\u2019", + "link": "https://www.ft.com/content/fdb5a794-67fc-4125-8a74-687e0fe55f7b", + "pubDate": "Wed, 06 Dec 2023 05:00:43 GMT", + "content": "Month-long blockade by Polish hauliers comes as Kyiv struggles to secure western funding ", + "contentSnippet": "Month-long blockade by Polish hauliers comes as Kyiv struggles to secure western funding", + "guid": "fdb5a794-67fc-4125-8a74-687e0fe55f7b", + "isoDate": "2023-12-06T05:00:43.000Z" + }, + { + "title": "Republicans tell Biden US aid to Kyiv depends on immigration curbs", + "link": "https://www.ft.com/content/3827fcfd-7843-4d28-a1fd-967b4fb6d714", + "pubDate": "Tue, 05 Dec 2023 23:45:33 GMT", + "content": "Hardline stance could doom Senate vote on $60bn package to fund Ukraine\u2019s war effort against Russia ", + "contentSnippet": "Hardline stance could doom Senate vote on $60bn package to fund Ukraine\u2019s war effort against Russia", + "guid": "3827fcfd-7843-4d28-a1fd-967b4fb6d714", + "isoDate": "2023-12-05T23:45:33.000Z" + }, + { + "title": "Kyiv\u2019s political feuds cause cracks in Ukrainian unity", + "link": "https://www.ft.com/content/7b317559-795b-48c6-90ea-cec7ff936243", + "pubDate": "Tue, 05 Dec 2023 14:13:02 GMT", + "content": "Challenges to Volodymyr Zelenskyy\u2019s leadership by old rivals could end badly for country\u2019s war efforts, say analysts", + "contentSnippet": "Challenges to Volodymyr Zelenskyy\u2019s leadership by old rivals could end badly for country\u2019s war efforts, say analysts", + "guid": "7b317559-795b-48c6-90ea-cec7ff936243", + "isoDate": "2023-12-05T14:13:02.000Z" + }, + { + "title": "Has the G7 price cap worked?", + "link": "https://www.ft.com/content/512a30c8-382f-43d8-926c-41f35f2776fa", + "pubDate": "Tue, 05 Dec 2023 12:00:42 GMT", + "content": "Western sanctions on Russian crude exports are one year old but what have the measures achieved", + "contentSnippet": "Western sanctions on Russian crude exports are one year old but what have the measures achieved", + "guid": "512a30c8-382f-43d8-926c-41f35f2776fa", + "isoDate": "2023-12-05T12:00:42.000Z" + }, + { + "title": "Why Slovakia and the Czech Republic want to continue using Russian oil", + "link": "https://www.ft.com/content/b40e8a9d-6f2a-40cb-b134-2a732535e5e6", + "pubDate": "Tue, 05 Dec 2023 06:00:58 GMT", + "content": "Also in this newsletter: Italy impounds a German-funded migrant rescue ship", + "contentSnippet": "Also in this newsletter: Italy impounds a German-funded migrant rescue ship", + "guid": "b40e8a9d-6f2a-40cb-b134-2a732535e5e6", + "isoDate": "2023-12-05T06:00:58.000Z" + }, + { + "title": "America and a crumbling global order", + "link": "https://www.ft.com/content/b42c62f7-57e6-4899-affe-a376cc568d3d", + "pubDate": "Mon, 04 Dec 2023 11:45:33 GMT", + "content": "Political division and turmoil at home are undermining US leadership overseas", + "contentSnippet": "Political division and turmoil at home are undermining US leadership overseas", + "guid": "b42c62f7-57e6-4899-affe-a376cc568d3d", + "isoDate": "2023-12-04T11:45:33.000Z" + }, + { + "title": "US funding for Ukraine set to run out by end of the year, White House warns", + "link": "https://www.ft.com/content/ca16e42d-fda9-4c1d-b2c9-410d764745b7", + "pubDate": "Mon, 04 Dec 2023 10:01:14 GMT", + "content": "Budget official says failure by Congress to approve further aid will \u2018kneecap\u2019 Kyiv", + "contentSnippet": "Budget official says failure by Congress to approve further aid will \u2018kneecap\u2019 Kyiv", + "guid": "ca16e42d-fda9-4c1d-b2c9-410d764745b7", + "isoDate": "2023-12-04T10:01:14.000Z" + }, + { + "title": "Wealthy Argentines flock to Uruguay", + "link": "https://www.ft.com/content/a99c009c-319c-4a6e-87ee-649489a59df1", + "pubDate": "Mon, 04 Dec 2023 05:00:01 GMT", + "content": "Just an hour\u2019s boat ride away sits a haven from economic instability \u2014 with increasingly attractive tax breaks for foreigners", + "contentSnippet": "Just an hour\u2019s boat ride away sits a haven from economic instability \u2014 with increasingly attractive tax breaks for foreigners", + "guid": "a99c009c-319c-4a6e-87ee-649489a59df1", + "isoDate": "2023-12-04T05:00:01.000Z" + }, + { + "title": "EU budget dispute threatens \u20ac50bn war lifeline for Ukraine", + "link": "https://www.ft.com/content/6cd69168-aef4-4c8c-950c-62d7465fe5bb", + "pubDate": "Sun, 03 Dec 2023 21:00:34 GMT", + "content": "Bloc\u2019s leaders embroiled in financial row that risks leaving Kyiv empty-handed at crucial moment in conflict", + "contentSnippet": "Bloc\u2019s leaders embroiled in financial row that risks leaving Kyiv empty-handed at crucial moment in conflict", + "guid": "6cd69168-aef4-4c8c-950c-62d7465fe5bb", + "isoDate": "2023-12-03T21:00:34.000Z" + }, + { + "title": "Russian army snaps up Chinese off-road buggies popular in US", + "link": "https://www.ft.com/content/a1d6fd56-120c-4ce8-9684-738c1376e135", + "pubDate": "Sun, 03 Dec 2023 12:06:35 GMT", + "content": "Purchase of hundreds of all-terrain vehicles made by Shandong Odes could put exports to west at risk", + "contentSnippet": "Purchase of hundreds of all-terrain vehicles made by Shandong Odes could put exports to west at risk", + "guid": "a1d6fd56-120c-4ce8-9684-738c1376e135", + "isoDate": "2023-12-03T12:06:35.000Z" + }, + { + "title": "Russia struggles with a demographic crunch", + "link": "https://www.ft.com/content/95082ead-ea72-4af3-9270-10019e626633", + "pubDate": "Sat, 02 Dec 2023 11:00:40 GMT", + "content": "Efforts to raise birth rates and increase the population are making little headway", + "contentSnippet": "Efforts to raise birth rates and increase the population are making little headway", + "guid": "95082ead-ea72-4af3-9270-10019e626633", + "isoDate": "2023-12-02T11:00:40.000Z" + }, + { + "title": "Zelenskyy pushes to \u2018accelerate\u2019 defences on Ukraine frontline", + "link": "https://www.ft.com/content/f79901e9-f88d-4171-8725-cf297f9b76c8", + "pubDate": "Fri, 01 Dec 2023 17:29:14 GMT", + "content": "President\u2019s signal of strategic shift comes as he admits counteroffensive failed to achieve goals", + "contentSnippet": "President\u2019s signal of strategic shift comes as he admits counteroffensive failed to achieve goals", + "guid": "f79901e9-f88d-4171-8725-cf297f9b76c8", + "isoDate": "2023-12-01T17:29:14.000Z" + }, + { + "title": "US aims to halve Russia\u2019s energy revenues by 2030, says official", + "link": "https://www.ft.com/content/277c1f9c-3f0f-4562-b0f0-80b390012087", + "pubDate": "Fri, 01 Dec 2023 05:00:17 GMT", + "content": "Diplomat tells FT western sanctions will continue \u2018for years to come\u2019 to curb Moscow\u2019s war machine ", + "contentSnippet": "Diplomat tells FT western sanctions will continue \u2018for years to come\u2019 to curb Moscow\u2019s war machine", + "guid": "277c1f9c-3f0f-4562-b0f0-80b390012087", + "isoDate": "2023-12-01T05:00:17.000Z" + }, + { + "title": "The EU still has an Orb\u00e1n problem", + "link": "https://www.ft.com/content/157edfd2-8d63-4c41-8ccb-6e4ef691cfd1", + "pubDate": "Fri, 15 Dec 2023 15:12:15 GMT", + "content": "But defeat for the Hungarian premier on Ukraine\u2019s future membership shows his ability to disrupt could be waning", + "contentSnippet": "But defeat for the Hungarian premier on Ukraine\u2019s future membership shows his ability to disrupt could be waning", + "guid": "157edfd2-8d63-4c41-8ccb-6e4ef691cfd1", + "isoDate": "2023-12-15T15:12:15.000Z" + }, + { + "title": "EU seeks to reassure Ukraine on funding after Hungary veto", + "link": "https://www.ft.com/content/6e671a9d-19a6-449d-ada6-7997d663ed7e", + "pubDate": "Fri, 15 Dec 2023 14:23:03 GMT", + "content": "Leaders vow to find solution to support Kyiv financially even without Viktor Orb\u00e1n\u2019s approval of \u20ac50bn lifeline", + "contentSnippet": "Leaders vow to find solution to support Kyiv financially even without Viktor Orb\u00e1n\u2019s approval of \u20ac50bn lifeline", + "guid": "6e671a9d-19a6-449d-ada6-7997d663ed7e", + "isoDate": "2023-12-15T14:23:03.000Z" + }, + { + "title": "With Ukraine the EU is learning to be a strategic power", + "link": "https://www.ft.com/content/75c2ac2f-37cf-4b71-9135-d663e8235b80", + "pubDate": "Fri, 15 Dec 2023 10:33:13 GMT", + "content": "The green light to accession talks shows the bloc is learning to be a strategic power despite failure on aid", + "contentSnippet": "The green light to accession talks shows the bloc is learning to be a strategic power despite failure on aid", + "guid": "75c2ac2f-37cf-4b71-9135-d663e8235b80", + "isoDate": "2023-12-15T10:33:13.000Z" + }, + { + "title": "EU fails to agree \u20ac50bn funding for Ukraine", + "link": "https://www.ft.com/content/deb40df7-7832-4fee-a822-655ab0288c05", + "pubDate": "Fri, 15 Dec 2023 08:13:36 GMT", + "content": "Hungary\u2019s Viktor Orb\u00e1n vetoes financial aid after allowing bloc to start membership talks with Kyiv", + "contentSnippet": "Hungary\u2019s Viktor Orb\u00e1n vetoes financial aid after allowing bloc to start membership talks with Kyiv", + "guid": "deb40df7-7832-4fee-a822-655ab0288c05", + "isoDate": "2023-12-15T08:13:36.000Z" + }, + { + "title": "EU gives to Ukraine with one hand and takes with the other ", + "link": "https://www.ft.com/content/88f13a35-acd0-4021-84fd-c9cbca4c0d97", + "pubDate": "Fri, 15 Dec 2023 06:00:24 GMT", + "content": "Also in this newsletter: Why Elon Musk is attending a right-wing conference in Italy", + "contentSnippet": "Also in this newsletter: Why Elon Musk is attending a right-wing conference in Italy", + "guid": "88f13a35-acd0-4021-84fd-c9cbca4c0d97", + "isoDate": "2023-12-15T06:00:24.000Z" + }, + { + "title": "Ex-FBI agent who worked for Oleg Deripaska gets 4-year prison sentence", + "link": "https://www.ft.com/content/2909c01d-b526-45fd-8ad7-5348023fb562", + "pubDate": "Thu, 14 Dec 2023 20:41:42 GMT", + "content": "Charles McGonigal had pleaded guilty to violating US sanctions by helping the Russian oligarch spy on a rival", + "contentSnippet": "Charles McGonigal had pleaded guilty to violating US sanctions by helping the Russian oligarch spy on a rival", + "guid": "2909c01d-b526-45fd-8ad7-5348023fb562", + "isoDate": "2023-12-14T20:41:42.000Z" + }, + { + "title": "Ukraine needs a military-industrial complex of its own", + "link": "https://www.ft.com/content/1f9383b5-5cef-4e23-b7b1-c497727dc53c", + "pubDate": "Thu, 14 Dec 2023 16:31:10 GMT", + "content": "As the country waits for government aid, it is also courting business support for its defence innovation", + "contentSnippet": "As the country waits for government aid, it is also courting business support for its defence innovation", + "guid": "1f9383b5-5cef-4e23-b7b1-c497727dc53c", + "isoDate": "2023-12-14T16:31:10.000Z" + }, + { + "title": "Putin vows to fight until Ukraine \u2018goals are achieved\u2019", + "link": "https://www.ft.com/content/36cf15fd-e8c2-4074-a72c-3a3f7774d995", + "pubDate": "Thu, 14 Dec 2023 15:17:04 GMT", + "content": "Russian president fields questions at length for first time since ordering invasion", + "contentSnippet": "Russian president fields questions at length for first time since ordering invasion", + "guid": "36cf15fd-e8c2-4074-a72c-3a3f7774d995", + "isoDate": "2023-12-14T15:17:04.000Z" + }, + { + "title": "How the EU hopes to strong-arm Orb\u00e1n into supporting Ukraine", + "link": "https://www.ft.com/content/a974ef48-9823-40f3-a69f-3e0252b98a2e", + "pubDate": "Thu, 14 Dec 2023 06:00:41 GMT", + "content": "Also in this newsletter: Why EU officials are satisfied with the compromise outcome of COP28", + "contentSnippet": "Also in this newsletter: Why EU officials are satisfied with the compromise outcome of COP28", + "guid": "a974ef48-9823-40f3-a69f-3e0252b98a2e", + "isoDate": "2023-12-14T06:00:41.000Z" + }, + { + "title": "US says Ukraine war putting \u2018considerable strain\u2019 on Russia\u2019s economy", + "link": "https://www.ft.com/content/5e62c011-0c94-4a8d-8dae-29f8072e2a64", + "pubDate": "Thu, 14 Dec 2023 05:01:42 GMT", + "content": "Country\u2019s GDP would be more than 5% bigger if Moscow had not invaded its neighbour, Treasury department finds", + "contentSnippet": "Country\u2019s GDP would be more than 5% bigger if Moscow had not invaded its neighbour, Treasury department finds", + "guid": "5e62c011-0c94-4a8d-8dae-29f8072e2a64", + "isoDate": "2023-12-14T05:01:42.000Z" + }, + { + "title": "EU divisions over Ukraine send wrong signal to US, says Sweden", + "link": "https://www.ft.com/content/46f33e1e-40e8-407a-a856-c89651c0c7b7", + "pubDate": "Thu, 14 Dec 2023 05:00:11 GMT", + "content": "Prime Minister Ulf Kristersson concerned about crucial leaders\u2019 summit ending in acrimony", + "contentSnippet": "Prime Minister Ulf Kristersson concerned about crucial leaders\u2019 summit ending in acrimony", + "guid": "46f33e1e-40e8-407a-a856-c89651c0c7b7", + "isoDate": "2023-12-14T05:00:11.000Z" + }, + { + "title": "EU unblocks \u20ac10bn for Hungary ahead of Ukraine summit", + "link": "https://www.ft.com/content/da1f9924-be28-4ad5-a028-56d05735380d", + "pubDate": "Wed, 13 Dec 2023 16:48:54 GMT", + "content": "Viktor Orb\u00e1n signals willingness to strike \u2018financial deal\u2019 but still opposes accession talks with Kyiv", + "contentSnippet": "Viktor Orb\u00e1n signals willingness to strike \u2018financial deal\u2019 but still opposes accession talks with Kyiv", + "guid": "da1f9924-be28-4ad5-a028-56d05735380d", + "isoDate": "2023-12-13T16:48:54.000Z" + }, + { + "title": "Putin\u2019s good friends in America", + "link": "https://www.ft.com/content/2ad14344-6587-4eb4-b93d-35dc23ae2bbe", + "pubDate": "Wed, 13 Dec 2023 12:07:11 GMT", + "content": "Many Republicans resist aid to Ukraine on the basis that anything harmful to Biden must be right for their party", + "contentSnippet": "Many Republicans resist aid to Ukraine on the basis that anything harmful to Biden must be right for their party", + "guid": "2ad14344-6587-4eb4-b93d-35dc23ae2bbe", + "isoDate": "2023-12-13T12:07:11.000Z" + }, + { + "title": "How the EU is scrambling to strike a deal with Viktor Orb\u00e1n", + "link": "https://www.ft.com/content/bd5f4a85-f035-4b9e-8ea0-0417d0a531e5", + "pubDate": "Wed, 13 Dec 2023 06:00:49 GMT", + "content": "Also in this newsletter: Donald Tusk\u2019s big plans for his premiership", + "contentSnippet": "Also in this newsletter: Donald Tusk\u2019s big plans for his premiership", + "guid": "bd5f4a85-f035-4b9e-8ea0-0417d0a531e5", + "isoDate": "2023-12-13T06:00:49.000Z" + }, + { + "title": "Biden says US will back Ukraine \u2018as long as we can\u2019 ", + "link": "https://www.ft.com/content/c5b8a94f-4bf9-422f-b4de-db5dcfc7ca0a", + "pubDate": "Wed, 13 Dec 2023 00:23:19 GMT", + "content": "Zelenskyy visits Washington to appeal for further aid but meets Republican resistance", + "contentSnippet": "Zelenskyy visits Washington to appeal for further aid but meets Republican resistance", + "guid": "c5b8a94f-4bf9-422f-b4de-db5dcfc7ca0a", + "isoDate": "2023-12-13T00:23:19.000Z" + }, + { + "title": "Germany charges 27 for plotting armed coup with Russia links", + "link": "https://www.ft.com/content/0cef4e4f-de57-408f-972e-96c0b1b3c714", + "pubDate": "Tue, 12 Dec 2023 22:04:07 GMT", + "content": "Putsch attempt was uncovered last year and was centred on storming parliament in Berlin", + "contentSnippet": "Putsch attempt was uncovered last year and was centred on storming parliament in Berlin", + "guid": "0cef4e4f-de57-408f-972e-96c0b1b3c714", + "isoDate": "2023-12-12T22:04:07.000Z" + }, + { + "title": "US hits Turkish and Chinese companies over Russia trade", + "link": "https://www.ft.com/content/f34a0bc9-12a0-4a98-a42e-4e008430f824", + "pubDate": "Tue, 12 Dec 2023 18:45:30 GMT", + "content": "Latest sanctions package aims to stem flow of sensitive war-related goods to Moscow ", + "contentSnippet": "Latest sanctions package aims to stem flow of sensitive war-related goods to Moscow", + "guid": "f34a0bc9-12a0-4a98-a42e-4e008430f824", + "isoDate": "2023-12-12T18:45:30.000Z" + }, + { + "title": "EU explores emergency Ukraine funding outside bloc\u2019s shared budget", + "link": "https://www.ft.com/content/13ae7d1b-5d6c-4180-8e89-bccae8993276", + "pubDate": "Tue, 12 Dec 2023 05:00:26 GMT", + "content": "Technical proposals being discussed privately could get around a Hungarian threat to veto a critical financial package ", + "contentSnippet": "Technical proposals being discussed privately could get around a Hungarian threat to veto a critical financial package", + "guid": "13ae7d1b-5d6c-4180-8e89-bccae8993276", + "isoDate": "2023-12-12T05:00:26.000Z" + }, + { + "title": "Zelenskyy warns US halt in Ukraine aid would bolster dictatorships", + "link": "https://www.ft.com/content/52f38581-18e1-471e-ab74-4eb01f61a27e", + "pubDate": "Mon, 11 Dec 2023 21:55:10 GMT", + "content": "President visits Washington days after Republican senators voted against more money for Kyiv", + "contentSnippet": "President visits Washington days after Republican senators voted against more money for Kyiv", + "guid": "52f38581-18e1-471e-ab74-4eb01f61a27e", + "isoDate": "2023-12-11T21:55:10.000Z" + }, + { + "title": "EU seeks to raise \u20ac15bn for Ukraine from Russia\u2019s frozen assets", + "link": "https://www.ft.com/content/50e7dcd2-5dbf-4000-9914-b791e40f4a9d", + "pubDate": "Mon, 11 Dec 2023 18:51:31 GMT", + "content": "Plan to tap profits would need to be backed by all member states before money could be sent to Kyiv", + "contentSnippet": "Plan to tap profits would need to be backed by all member states before money could be sent to Kyiv", + "guid": "50e7dcd2-5dbf-4000-9914-b791e40f4a9d", + "isoDate": "2023-12-11T18:51:31.000Z" + }, + { + "title": "A crunch week for Ukraine", + "link": "https://www.ft.com/content/638e6d11-a444-4f48-90fd-b03cc7f62163", + "pubDate": "Mon, 11 Dec 2023 18:45:29 GMT", + "content": "Failure to unblock US and EU aid would imperil Kyiv\u2019s financial stability", + "contentSnippet": "Failure to unblock US and EU aid would imperil Kyiv\u2019s financial stability", + "guid": "638e6d11-a444-4f48-90fd-b03cc7f62163", + "isoDate": "2023-12-11T18:45:29.000Z" + }, + { + "title": "Can the EU uphold its promises to support Ukraine \u2018as long as it takes\u2019?", + "link": "https://www.ft.com/content/d5035b51-1a15-4093-938f-55a5e98fd69d", + "pubDate": "Mon, 11 Dec 2023 06:00:56 GMT", + "content": "Also in this newsletter: Why Santa Claus won\u2019t be visiting the European parliament due to Qatargate", + "contentSnippet": "Also in this newsletter: Why Santa Claus won\u2019t be visiting the European parliament due to Qatargate", + "guid": "d5035b51-1a15-4093-938f-55a5e98fd69d", + "isoDate": "2023-12-11T06:00:56.000Z" + }, + { + "title": "Ukraine\u2019s Shakhtar Donetsk seizes on European wins to boost overseas profile", + "link": "https://www.ft.com/content/1ad8efcf-3ac1-45ca-8d6d-2840b19e4e1e", + "pubDate": "Mon, 11 Dec 2023 05:00:57 GMT", + "content": "War means the country\u2019s top football team is reliant on income from competitions in Europe and player transfers", + "contentSnippet": "War means the country\u2019s top football team is reliant on income from competitions in Europe and player transfers", + "guid": "1ad8efcf-3ac1-45ca-8d6d-2840b19e4e1e", + "isoDate": "2023-12-11T05:00:57.000Z" + }, + { + "title": "Ukrainians question Volodymyr Zelenskyy\u2019s \u2018rose-tinted\u2019 speeches", + "link": "https://www.ft.com/content/7ec4e810-33e3-44ca-8744-e01cb9f82c28", + "pubDate": "Mon, 11 Dec 2023 05:00:56 GMT", + "content": "Former and current advisers say lack of realism in president\u2019s messaging is undermining confidence", + "contentSnippet": "Former and current advisers say lack of realism in president\u2019s messaging is undermining confidence", + "guid": "7ec4e810-33e3-44ca-8744-e01cb9f82c28", + "isoDate": "2023-12-11T05:00:56.000Z" + }, + { + "title": "Nearly half of US voters think Biden is spending too much on Ukraine aid", + "link": "https://www.ft.com/content/6e10d54c-9cee-4361-b85b-0bf57e80f16c", + "pubDate": "Sun, 10 Dec 2023 21:00:55 GMT", + "content": "FT-Michigan Ross survey shows obstacle to White House push for more support as Volodymyr Zelenskyy prepares to visit Washington", + "contentSnippet": "FT-Michigan Ross survey shows obstacle to White House push for more support as Volodymyr Zelenskyy prepares to visit Washington", + "guid": "6e10d54c-9cee-4361-b85b-0bf57e80f16c", + "isoDate": "2023-12-10T21:00:55.000Z" + }, + { + "title": "BAE to restart M777 howitzer production as Ukraine war ignites demand ", + "link": "https://www.ft.com/content/60dddcf2-8f0f-43c7-abe5-02f4223505fa", + "pubDate": "Thu, 04 Jan 2024 09:52:12 GMT", + "content": "UK\u2019s biggest defence contractor signs initial agreement with US Army for spare parts while interest from Europe, Asia and the Americas rises ", + "contentSnippet": "UK\u2019s biggest defence contractor signs initial agreement with US Army for spare parts while interest from Europe, Asia and the Americas rises", + "guid": "60dddcf2-8f0f-43c7-abe5-02f4223505fa", + "isoDate": "2024-01-04T09:52:12.000Z" + }, + { + "title": "\u2018I want to live\u2019: Russians defect to Ukraine by calling army hotline", + "link": "https://www.ft.com/content/d7f60a01-57e0-4b6a-b845-fcc420c2280f", + "pubDate": "Thu, 04 Jan 2024 05:00:35 GMT", + "content": "Hundreds of soldiers have handed themselves over to Kyiv after ringing dedicated number", + "contentSnippet": "Hundreds of soldiers have handed themselves over to Kyiv after ringing dedicated number", + "guid": "d7f60a01-57e0-4b6a-b845-fcc420c2280f", + "isoDate": "2024-01-04T05:00:35.000Z" + }, + { + "title": "The west would harm itself with rash seizures of frozen Russian assets", + "link": "https://www.ft.com/content/2c917ef5-60bd-4825-89e4-8b88dc9080a8", + "pubDate": "Thu, 04 Jan 2024 05:00:35 GMT", + "content": "A watertight legal basis for confiscations is lacking because the US and its allies are not openly at war with Moscow", + "contentSnippet": "A watertight legal basis for confiscations is lacking because the US and its allies are not openly at war with Moscow", + "guid": "2c917ef5-60bd-4825-89e4-8b88dc9080a8", + "isoDate": "2024-01-04T05:00:35.000Z" + }, + { + "title": "Polish truckers defy Donald Tusk on Ukraine border blockade", + "link": "https://www.ft.com/content/7887988a-e692-439e-821f-9c331448a761", + "pubDate": "Thu, 04 Jan 2024 05:00:35 GMT", + "content": "Farmers set to join hauliers on Thursday in broadening trade dispute ", + "contentSnippet": "Farmers set to join hauliers on Thursday in broadening trade dispute", + "guid": "7887988a-e692-439e-821f-9c331448a761", + "isoDate": "2024-01-04T05:00:35.000Z" + }, + { + "title": "Russia bombs its own village during air attack on Ukraine", + "link": "https://www.ft.com/content/401f1d27-8582-407d-9121-5a1d8cfd7b4b", + "pubDate": "Wed, 03 Jan 2024 17:58:11 GMT", + "content": "\u2018Abnormal discharge\u2019 over Voronezh region becomes latest friendly fire incident in border areas", + "contentSnippet": "\u2018Abnormal discharge\u2019 over Voronezh region becomes latest friendly fire incident in border areas", + "guid": "401f1d27-8582-407d-9121-5a1d8cfd7b4b", + "isoDate": "2024-01-03T17:58:11.000Z" + }, + { + "title": "EU adds Russia\u2019s largest diamond maker to sanctions list over Ukraine war ", + "link": "https://www.ft.com/content/7e4b3a7c-fe5c-42c9-a2ff-c270b6d1faae", + "pubDate": "Wed, 03 Jan 2024 12:28:36 GMT", + "content": "Alrosa\u2019s assets in the bloc will be frozen along with those of its chief, who will also be subject to a travel ban", + "contentSnippet": "Alrosa\u2019s assets in the bloc will be frozen along with those of its chief, who will also be subject to a travel ban", + "guid": "7e4b3a7c-fe5c-42c9-a2ff-c270b6d1faae", + "isoDate": "2024-01-03T12:28:36.000Z" + }, + { + "title": "The Russian murderers sent home as free men after fighting in Ukraine", + "link": "https://www.ft.com/content/9fdb5668-7e55-4b09-a6ca-6ba77999530b", + "pubDate": "Wed, 03 Jan 2024 05:00:28 GMT", + "content": "Victims\u2019 families watch in horror as those convicted of gruesome crimes are pardoned in exchange for military service", + "contentSnippet": "Victims\u2019 families watch in horror as those convicted of gruesome crimes are pardoned in exchange for military service", + "guid": "9fdb5668-7e55-4b09-a6ca-6ba77999530b", + "isoDate": "2024-01-03T05:00:28.000Z" + }, + { + "title": "Russia pounds Ukraine in new year\u2019s second massive air strike", + "link": "https://www.ft.com/content/1e5589f6-2f49-473e-9012-c638e547be64", + "pubDate": "Tue, 02 Jan 2024 17:29:10 GMT", + "content": "Volodymyr Zelenskyy urges western allies to send more financial and military aid to bolster depleting air defences", + "contentSnippet": "Volodymyr Zelenskyy urges western allies to send more financial and military aid to bolster depleting air defences", + "guid": "1e5589f6-2f49-473e-9012-c638e547be64", + "isoDate": "2024-01-02T17:29:10.000Z" + }, + { + "title": "Seizing Russian reserves is the right thing to do", + "link": "https://www.ft.com/content/b2446a0d-de0a-4cc0-a600-87dc1643f844", + "pubDate": "Tue, 02 Jan 2024 05:00:41 GMT", + "content": "Blatant violations of international laws require a response and reparations would be in line with historical precedent ", + "contentSnippet": "Blatant violations of international laws require a response and reparations would be in line with historical precedent", + "guid": "b2446a0d-de0a-4cc0-a600-87dc1643f844", + "isoDate": "2024-01-02T05:00:41.000Z" + }, + { + "title": "China\u2019s advanced machine tool exports to Russia soar after Ukraine invasion", + "link": "https://www.ft.com/content/d16c688d-9579-4f1d-a84f-ca29ca2f0bc0", + "pubDate": "Tue, 02 Jan 2024 05:00:41 GMT", + "content": "Chinese suppliers now dominate trade in \u2018computer numerical control\u2019 devices vital to Moscow\u2019s military industries", + "contentSnippet": "Chinese suppliers now dominate trade in \u2018computer numerical control\u2019 devices vital to Moscow\u2019s military industries", + "guid": "d16c688d-9579-4f1d-a84f-ca29ca2f0bc0", + "isoDate": "2024-01-02T05:00:41.000Z" + }, + { + "title": "Ukraine\u2019s gas storage helps Europe avert further energy crises", + "link": "https://www.ft.com/content/d02a5c8e-8406-40e5-91a4-a58fb4dd1565", + "pubDate": "Tue, 02 Jan 2024 05:00:41 GMT", + "content": "War-torn country\u2019s tanks enable continent to keep its own facilities close to capacity", + "contentSnippet": "War-torn country\u2019s tanks enable continent to keep its own facilities close to capacity", + "guid": "d02a5c8e-8406-40e5-91a4-a58fb4dd1565", + "isoDate": "2024-01-02T05:00:41.000Z" + }, + { + "title": "Russia launches \u2018record\u2019 wave of drones against Ukraine", + "link": "https://www.ft.com/content/a206f506-01ec-4a54-ab57-5051745b18ea", + "pubDate": "Mon, 01 Jan 2024 17:42:54 GMT", + "content": "Volodymyr Zelenskyy pledges retaliation for deadly air strikes that have killed or injured dozens", + "contentSnippet": "Volodymyr Zelenskyy pledges retaliation for deadly air strikes that have killed or injured dozens", + "guid": "a206f506-01ec-4a54-ab57-5051745b18ea", + "isoDate": "2024-01-01T17:42:54.000Z" + }, + { + "title": "Army conscription becomes toxic issue for Ukraine\u2019s leaders", + "link": "https://www.ft.com/content/3ce63abc-9a71-427b-8e11-ab5309288845", + "pubDate": "Mon, 01 Jan 2024 11:00:53 GMT", + "content": "Neither the Ukrainian president nor his top military commanders want to take responsibility for drafting reluctant fighters", + "contentSnippet": "Neither the Ukrainian president nor his top military commanders want to take responsibility for drafting reluctant fighters", + "guid": "3ce63abc-9a71-427b-8e11-ab5309288845", + "isoDate": "2024-01-01T11:00:53.000Z" + }, + { + "title": "Russia blames Ukraine for deadly attack on border city", + "link": "https://www.ft.com/content/974158d4-4d75-4771-94e3-820fc403754d", + "pubDate": "Sat, 30 Dec 2023 15:38:58 GMT", + "content": "Moscow says it shot down dozens of drones and missiles a day after launching strike that killed 39", + "contentSnippet": "Moscow says it shot down dozens of drones and missiles a day after launching strike that killed 39", + "guid": "974158d4-4d75-4771-94e3-820fc403754d", + "isoDate": "2023-12-30T15:38:58.000Z" + }, + { + "title": "Tracking Ukraine\u2019s counteroffensive against Russia in maps", + "link": "https://www.ft.com/content/4351d5b0-0888-4b47-9368-6bc4dfbccbf5", + "pubDate": "Fri, 29 Dec 2023 14:52:21 GMT", + "content": "A visual guide to the war", + "contentSnippet": "A visual guide to the war", + "guid": "4351d5b0-0888-4b47-9368-6bc4dfbccbf5", + "isoDate": "2023-12-29T14:52:21.000Z" + }, + { + "title": "Here are some leadership examples to inspire Zelenskyy in 2024", + "link": "https://www.ft.com/content/26ba8ca0-f5bc-419c-9556-ddbbf4e6c194", + "pubDate": "Fri, 29 Dec 2023 12:00:16 GMT", + "content": "Team spirit can sustain Ukraine\u2019s leader in his struggle against a ruthless foe", + "contentSnippet": "Team spirit can sustain Ukraine\u2019s leader in his struggle against a ruthless foe", + "guid": "26ba8ca0-f5bc-419c-9556-ddbbf4e6c194", + "isoDate": "2023-12-29T12:00:16.000Z" + }, + { + "title": "Year in a word: March to Moscow ", + "link": "https://www.ft.com/content/5dd2a36d-6dec-4930-80fd-f44a9fb7f278", + "pubDate": "Thu, 28 Dec 2023 05:00:11 GMT", + "content": "A catering magnate turned brutal mercenary stunned the world by staging the biggest insurrection of the Putin era", + "contentSnippet": "A catering magnate turned brutal mercenary stunned the world by staging the biggest insurrection of the Putin era", + "guid": "5dd2a36d-6dec-4930-80fd-f44a9fb7f278", + "isoDate": "2023-12-28T05:00:11.000Z" + }, + { + "title": "Washington puts forward G7 plan to confiscate $300bn in Russian assets", + "link": "https://www.ft.com/content/d206baa8-3ec9-42f0-b103-2c098d0486d9", + "pubDate": "Thu, 28 Dec 2023 05:00:11 GMT", + "content": "Proposal would accelerate preparations in time for a February summit to show solidarity with Ukraine ", + "contentSnippet": "Proposal would accelerate preparations in time for a February summit to show solidarity with Ukraine", + "guid": "d206baa8-3ec9-42f0-b103-2c098d0486d9", + "isoDate": "2023-12-28T05:00:11.000Z" + }, + { + "title": "Global defence orders surge as geopolitical tensions mount", + "link": "https://www.ft.com/content/001d2e1c-8e59-444b-a07b-9a62be620431", + "pubDate": "Wed, 27 Dec 2023 18:00:09 GMT", + "content": "Sustained state spending on weapons drives investor interest in sector", + "contentSnippet": "Sustained state spending on weapons drives investor interest in sector", + "guid": "001d2e1c-8e59-444b-a07b-9a62be620431", + "isoDate": "2023-12-27T18:00:09.000Z" + }, + { + "title": "The unwelcome resurgence of war", + "link": "https://www.ft.com/content/b3a9aaf2-f45d-4775-940d-9d70bc2f59a1", + "pubDate": "Wed, 27 Dec 2023 12:00:09 GMT", + "content": "Armed conflicts are increasing in number and in their impact on civilians", + "contentSnippet": "Armed conflicts are increasing in number and in their impact on civilians", + "guid": "b3a9aaf2-f45d-4775-940d-9d70bc2f59a1", + "isoDate": "2023-12-27T12:00:09.000Z" + }, + { + "title": "Ukraine warns of pension and salary delays without western aid", + "link": "https://www.ft.com/content/925d2d15-57bf-4a1b-b010-4e009be85f5a", + "pubDate": "Wed, 27 Dec 2023 11:00:08 GMT", + "content": "Shortfall in external aid would push a recovering economy back into survival mode, says deputy prime minister", + "contentSnippet": "Shortfall in external aid would push a recovering economy back into survival mode, says deputy prime minister", + "guid": "925d2d15-57bf-4a1b-b010-4e009be85f5a", + "isoDate": "2023-12-27T11:00:08.000Z" + }, + { + "title": "EU readies \u20ac20bn plan B to fund Ukraine", + "link": "https://www.ft.com/content/7ef39cca-262d-4c52-8b59-1ac008ca7f56", + "pubDate": "Tue, 26 Dec 2023 21:00:06 GMT", + "content": "Debt-based scheme would sidestep Hungary to quickly release money for Kyiv ", + "contentSnippet": "Debt-based scheme would sidestep Hungary to quickly release money for Kyiv", + "guid": "7ef39cca-262d-4c52-8b59-1ac008ca7f56", + "isoDate": "2023-12-26T21:00:06.000Z" + }, + { + "title": "Ukraine destroys Russian landing ship in further blow to Black Sea fleet", + "link": "https://www.ft.com/content/13c65bd4-59ad-4ada-bbc0-c5849fd9e656", + "pubDate": "Tue, 26 Dec 2023 11:51:59 GMT", + "content": "Campaign against military sites in Crimea has been a rare bright spot for Kyiv in the war", + "contentSnippet": "Campaign against military sites in Crimea has been a rare bright spot for Kyiv in the war", + "guid": "13c65bd4-59ad-4ada-bbc0-c5849fd9e656", + "isoDate": "2023-12-26T11:51:59.000Z" + }, + { + "title": "Ukrainian refugees plant seeds of a second life in our home", + "link": "https://www.ft.com/content/26f4adaa-8426-4a34-9403-08606cd8f0f2", + "pubDate": "Mon, 25 Dec 2023 05:00:35 GMT", + "content": "With war still raging in their native land, no one knows if this story will end in a safe return", + "contentSnippet": "With war still raging in their native land, no one knows if this story will end in a safe return", + "guid": "26f4adaa-8426-4a34-9403-08606cd8f0f2", + "isoDate": "2023-12-25T05:00:35.000Z" + }, + { + "title": "The US is ready to impose sanctions on foreign financial institutions when others don\u2019t ", + "link": "https://www.ft.com/content/f1fe5ece-323c-401f-870b-cd45c92bf84a", + "pubDate": "Fri, 22 Dec 2023 11:23:22 GMT", + "content": "Anyone helping Russia\u2019s military industrial complex will face severe consequences", + "contentSnippet": "Anyone helping Russia\u2019s military industrial complex will face severe consequences", + "guid": "f1fe5ece-323c-401f-870b-cd45c92bf84a", + "isoDate": "2023-12-22T11:23:22.000Z" + }, + { + "title": "Russian central bank reserves: the numbers", + "link": "https://www.ft.com/content/9529da2e-963e-4b46-956f-3d78548fa3be", + "pubDate": "Thu, 04 Jan 2024 11:00:35 GMT", + "content": "Getting the most we can out of available public sources", + "contentSnippet": "Getting the most we can out of available public sources", + "guid": "9529da2e-963e-4b46-956f-3d78548fa3be", + "isoDate": "2024-01-04T11:00:35.000Z" + }, + { + "title": "What western allies must do for Ukraine \u2014 and for themselves", + "link": "https://www.ft.com/content/5583c70d-64f3-4b8c-9da0-c921dbfc1310", + "pubDate": "Thu, 04 Jan 2024 15:08:56 GMT", + "content": "The choices made by the democracies supporting Kyiv will be decisive in the outcome of this ongoing war", + "contentSnippet": "The choices made by the democracies supporting Kyiv will be decisive in the outcome of this ongoing war", + "guid": "5583c70d-64f3-4b8c-9da0-c921dbfc1310", + "isoDate": "2024-01-04T15:08:56.000Z" + }, + { + "title": "The Russian bakery making killer drones to support Putin\u2019s war", + "link": "https://www.ft.com/content/426a82ec-9344-4700-9b22-181caeed8c3a", + "pubDate": "Fri, 05 Jan 2024 05:00:58 GMT", + "content": "Bread factory hit with US sanctions for assembling UAVs used in Ukraine invasion", + "contentSnippet": "Bread factory hit with US sanctions for assembling UAVs used in Ukraine invasion", + "guid": "426a82ec-9344-4700-9b22-181caeed8c3a", + "isoDate": "2024-01-05T05:00:58.000Z" + }, + { + "title": "Russia will not stop in Ukraine, warns Latvian foreign minister", + "link": "https://www.ft.com/content/7b94ec46-c761-4de3-8df7-055602ace279", + "pubDate": "Fri, 05 Jan 2024 05:00:58 GMT", + "content": "Kri\u0161j\u0101nis Kari\u0146\u0161 says Moscow will seek new targets after conflict with Kyiv ends", + "contentSnippet": "Kri\u0161j\u0101nis Kari\u0146\u0161 says Moscow will seek new targets after conflict with Kyiv ends", + "guid": "7b94ec46-c761-4de3-8df7-055602ace279", + "isoDate": "2024-01-05T05:00:58.000Z" + }, + { + "title": "EU drop in Russian gas imports raises hopes of energy independence", + "link": "https://www.ft.com/content/46d2f5a7-37ab-4196-bd00-754b9dfe7fb0", + "pubDate": "Fri, 05 Jan 2024 05:00:58 GMT", + "content": "Country\u2019s LNG exports to Europe decreased slightly in 2023 compared with previous year", + "contentSnippet": "Country\u2019s LNG exports to Europe decreased slightly in 2023 compared with previous year", + "guid": "46d2f5a7-37ab-4196-bd00-754b9dfe7fb0", + "isoDate": "2024-01-05T05:00:58.000Z" + }, + { + "title": "Pentagon failed to track Ukraine arms worth more than $1bn, says watchdog", + "link": "https://www.ft.com/content/fae4f99b-6187-448f-9b8d-2a76f112f2ce", + "pubDate": "Thu, 11 Jan 2024 18:05:42 GMT", + "content": "DoD report fuels concerns about possible diversion of some military aid away from Kyiv", + "contentSnippet": "DoD report fuels concerns about possible diversion of some military aid away from Kyiv", + "guid": "fae4f99b-6187-448f-9b8d-2a76f112f2ce", + "isoDate": "2024-01-11T18:05:42.000Z" + }, + { + "title": "Brussels prepares concessions to Orb\u00e1n over Ukraine aid", + "link": "https://www.ft.com/content/ab8c1524-6d79-45d3-8b87-cb0ff0b187f9", + "pubDate": "Thu, 11 Jan 2024 17:47:37 GMT", + "content": "Hungarian premier wants 2025 review of \u20ac50bn support package for Kyiv in exchange for dropping his veto ", + "contentSnippet": "Hungarian premier wants 2025 review of \u20ac50bn support package for Kyiv in exchange for dropping his veto", + "guid": "ab8c1524-6d79-45d3-8b87-cb0ff0b187f9", + "isoDate": "2024-01-11T17:47:37.000Z" + }, + { + "title": "Moscow imports a third of battlefield tech from western companies", + "link": "https://www.ft.com/content/96c4f3f8-bd7b-41a3-9e76-7280490a3dbb", + "pubDate": "Thu, 11 Jan 2024 14:00:19 GMT", + "content": "Ukrainian officials find US and European components in Russian equipment", + "contentSnippet": "Ukrainian officials find US and European components in Russian equipment", + "guid": "96c4f3f8-bd7b-41a3-9e76-7280490a3dbb", + "isoDate": "2024-01-11T14:00:19.000Z" + }, + { + "title": "Italy links Ukraine aid to \u2018negotiated settlement\u2019 efforts", + "link": "https://www.ft.com/content/e0c9a4bb-903a-48d9-b44c-f26b445499b0", + "pubDate": "Wed, 10 Jan 2024 17:35:16 GMT", + "content": "Italian defence minister Guido Crosetto says military support for Kyiv should be accompanied by more diplomacy", + "contentSnippet": "Italian defence minister Guido Crosetto says military support for Kyiv should be accompanied by more diplomacy", + "guid": "e0c9a4bb-903a-48d9-b44c-f26b445499b0", + "isoDate": "2024-01-10T17:35:16.000Z" + }, + { + "title": "Why EU efforts to use Russia\u2019s frozen assets are progressing at a snail\u2019s pace ", + "link": "https://www.ft.com/content/445a4b7f-a773-4ae6-af0d-355e73b5e7ae", + "pubDate": "Wed, 10 Jan 2024 06:00:06 GMT", + "content": "Also in this newsletter: How the EU is trying to soothe concerns of belligerent farmers", + "contentSnippet": "Also in this newsletter: How the EU is trying to soothe concerns of belligerent farmers", + "guid": "445a4b7f-a773-4ae6-af0d-355e73b5e7ae", + "isoDate": "2024-01-10T06:00:06.000Z" + }, + { + "title": "The revival of the defence industry", + "link": "https://www.ft.com/content/8d21287f-d4cc-4b72-9872-9e3d766d56de", + "pubDate": "Tue, 09 Jan 2024 18:35:26 GMT", + "content": "Western allies and manufacturers need to adapt to a new era of warfare", + "contentSnippet": "Western allies and manufacturers need to adapt to a new era of warfare", + "guid": "8d21287f-d4cc-4b72-9872-9e3d766d56de", + "isoDate": "2024-01-09T18:35:26.000Z" + }, + { + "title": "Russia batters Ukraine in biggest air strikes since new year barrage", + "link": "https://www.ft.com/content/e1e54f7a-246d-4dd7-8b5e-974705058e9b", + "pubDate": "Mon, 08 Jan 2024 11:27:37 GMT", + "content": "President Volodymyr Zelenskyy urges allies to help replenish depleting air defence stocks", + "contentSnippet": "President Volodymyr Zelenskyy urges allies to help replenish depleting air defence stocks", + "guid": "e1e54f7a-246d-4dd7-8b5e-974705058e9b", + "isoDate": "2024-01-08T11:27:37.000Z" + }, + { + "title": "How Charles Michel\u2019s parliament plan fires up the EU\u2019s top job battle", + "link": "https://www.ft.com/content/f8ede923-9e04-4ebf-9996-69cb8e8d5ab2", + "pubDate": "Mon, 08 Jan 2024 06:00:07 GMT", + "content": "Also in this newsletter: Brussels readies Plan B to agree Ukraine funding before February", + "contentSnippet": "Also in this newsletter: Brussels readies Plan B to agree Ukraine funding before February", + "guid": "f8ede923-9e04-4ebf-9996-69cb8e8d5ab2", + "isoDate": "2024-01-08T06:00:07.000Z" + }, + { + "title": "EU urges Big Tech to promote opposition media in Belarus", + "link": "https://www.ft.com/content/0b33b19f-6ded-4458-be0b-b335cdf31f17", + "pubDate": "Mon, 08 Jan 2024 05:00:07 GMT", + "content": "Journalists claim groups including Google and Meta are \u2018tools\u2019 of Minsk\u2019s totalitarian regime", + "contentSnippet": "Journalists claim groups including Google and Meta are \u2018tools\u2019 of Minsk\u2019s totalitarian regime", + "guid": "0b33b19f-6ded-4458-be0b-b335cdf31f17", + "isoDate": "2024-01-08T05:00:07.000Z" + }, + { + "title": "Military briefing: Russia has the upper hand in electronic warfare with Ukraine", + "link": "https://www.ft.com/content/a477d3f1-8c7e-4520-83b0-572ad674c28e", + "pubDate": "Sun, 07 Jan 2024 05:00:56 GMT", + "content": "Both Kyiv and Moscow seek to bolster drone jamming capabilities as attacks mount", + "contentSnippet": "Both Kyiv and Moscow seek to bolster drone jamming capabilities as attacks mount", + "guid": "a477d3f1-8c7e-4520-83b0-572ad674c28e", + "isoDate": "2024-01-07T05:00:56.000Z" + }, + { + "title": "G20 push for faster payments risks weakening Russia sanctions, experts warn", + "link": "https://www.ft.com/content/b84c4d12-0591-44c9-b49a-fe198373235a", + "pubDate": "Sun, 07 Jan 2024 05:00:56 GMT", + "content": "Speeding up digital systems makes them more vulnerable to criminal networks and money laundering", + "contentSnippet": "Speeding up digital systems makes them more vulnerable to criminal networks and money laundering", + "guid": "b84c4d12-0591-44c9-b49a-fe198373235a", + "isoDate": "2024-01-07T05:00:56.000Z" + }, + { + "title": "UK to increase Ukraine funding to \u00a32.5bn as Sunak visits Kyiv", + "link": "https://www.ft.com/content/8d55de91-8afc-4720-90f4-d38a78ae6648", + "pubDate": "Fri, 12 Jan 2024 09:31:03 GMT", + "content": "New security pact signals continued support from west as US and EU aim to finalise next aid packages", + "contentSnippet": "New security pact signals continued support from west as US and EU aim to finalise next aid packages", + "guid": "8d55de91-8afc-4720-90f4-d38a78ae6648", + "isoDate": "2024-01-12T09:31:03.000Z" + }, + { + "title": "How Brussels and Budapest can claim victory from a Ukraine aid compromise", + "link": "https://www.ft.com/content/4caf32f0-05f7-4327-8129-72f66beb47f2", + "pubDate": "Fri, 12 Jan 2024 06:00:20 GMT", + "content": "Also in this newsletter: Meloni\u2019s fascist salute headache", + "contentSnippet": "Also in this newsletter: Meloni\u2019s fascist salute headache", + "guid": "4caf32f0-05f7-4327-8129-72f66beb47f2", + "isoDate": "2024-01-12T06:00:20.000Z" + }, + { + "title": "The Russia risk around Chinese banks is rising", + "link": "https://www.ft.com/content/07075093-1bb5-4132-95d8-b44d80452409", + "pubDate": "Thu, 18 Jan 2024 10:58:51 GMT", + "content": "Penalties from US sanctions would far outweigh the sales boost for big lenders from Russian clients ", + "contentSnippet": "Penalties from US sanctions would far outweigh the sales boost for big lenders from Russian clients", + "guid": "07075093-1bb5-4132-95d8-b44d80452409", + "isoDate": "2024-01-18T10:58:51.000Z" + }, + { + "title": "Ukrainian media targeted by pro-Zelenskyy \u2018info army\u2019", + "link": "https://www.ft.com/content/ab63a4d1-8a30-44c3-990a-02abe4884238", + "pubDate": "Thu, 18 Jan 2024 05:00:59 GMT", + "content": "Online and physical attacks on journalists cast shadow on president\u2019s rule", + "contentSnippet": "Online and physical attacks on journalists cast shadow on president\u2019s rule", + "guid": "ab63a4d1-8a30-44c3-990a-02abe4884238", + "isoDate": "2024-01-18T05:00:59.000Z" + }, + { + "title": "EU lawmakers revolt against Brussels caving into Orb\u00e1n\u2019s \u2018blackmail\u2019", + "link": "https://www.ft.com/content/673c617d-b50e-4c5b-941f-a6118717985f", + "pubDate": "Wed, 17 Jan 2024 13:57:34 GMT", + "content": "European parliament threatens legal action over Ursula von der Leyen\u2019s decision to unfreeze \u20ac10bn for Budapest", + "contentSnippet": "European parliament threatens legal action over Ursula von der Leyen\u2019s decision to unfreeze \u20ac10bn for Budapest", + "guid": "673c617d-b50e-4c5b-941f-a6118717985f", + "isoDate": "2024-01-17T13:57:34.000Z" + }, + { + "title": "Von der Leyen\u2019s backers push for a rubber stamp on her second term", + "link": "https://www.ft.com/content/e704d0e6-3a92-4794-a155-6057d9a81173", + "pubDate": "Wed, 17 Jan 2024 06:00:42 GMT", + "content": "Also in this newsletter: Why Ukrainians fleeing the war could help Europe plug labour shortages", + "contentSnippet": "Also in this newsletter: Why Ukrainians fleeing the war could help Europe plug labour shortages", + "guid": "e704d0e6-3a92-4794-a155-6057d9a81173", + "isoDate": "2024-01-17T06:00:42.000Z" + }, + { + "title": "Ukraine funding critical for allies\u2019 own security, Zelenskyy warns", + "link": "https://www.ft.com/content/ea7771db-c832-4e6f-99be-7135b0f3000a", + "pubDate": "Tue, 16 Jan 2024 16:20:13 GMT", + "content": "President pleads for continued assistance at World Economic Forum in Davos", + "contentSnippet": "President pleads for continued assistance at World Economic Forum in Davos", + "guid": "ea7771db-c832-4e6f-99be-7135b0f3000a", + "isoDate": "2024-01-16T16:20:13.000Z" + }, + { + "title": "Polish truckers to lift border blockade with Ukraine", + "link": "https://www.ft.com/content/9e9bbb33-a383-481b-a4e4-3d1842ffde1d", + "pubDate": "Tue, 16 Jan 2024 13:13:28 GMT", + "content": "Breakthrough in hauliers\u2019 talks with Warsaw comes ahead of PM Donald Tusk\u2019s visit to Kyiv", + "contentSnippet": "Breakthrough in hauliers\u2019 talks with Warsaw comes ahead of PM Donald Tusk\u2019s visit to Kyiv", + "guid": "9e9bbb33-a383-481b-a4e4-3d1842ffde1d", + "isoDate": "2024-01-16T13:13:28.000Z" + }, + { + "title": "Why the EU\u2019s true support for Ukraine is being assessed", + "link": "https://www.ft.com/content/45b3fa4a-9724-4ae8-b956-ef3e51f8d63f", + "pubDate": "Tue, 16 Jan 2024 06:00:08 GMT", + "content": "Also in this newsletter: Does Brussels really think aeroplanes can be \u2018green\u2019?", + "contentSnippet": "Also in this newsletter: Does Brussels really think aeroplanes can be \u2018green\u2019?", + "guid": "45b3fa4a-9724-4ae8-b956-ef3e51f8d63f", + "isoDate": "2024-01-16T06:00:08.000Z" + }, + { + "title": "Brussels audits EU states\u2019 arms supplies to Ukraine", + "link": "https://www.ft.com/content/af95ad49-2529-48d4-9a2b-8e10dbc28eeb", + "pubDate": "Tue, 16 Jan 2024 05:00:08 GMT", + "content": "Assessment follows complaints that some countries are failing to send as many weapons as they could", + "contentSnippet": "Assessment follows complaints that some countries are failing to send as many weapons as they could", + "guid": "af95ad49-2529-48d4-9a2b-8e10dbc28eeb", + "isoDate": "2024-01-16T05:00:08.000Z" + }, + { + "title": "What a post-war future holds for Ukraine and Russia ", + "link": "https://www.ft.com/content/c11c5d1a-9329-4f49-b5fe-aa1ff1bdb8e4", + "pubDate": "Tue, 16 Jan 2024 05:00:08 GMT", + "content": "Four books look at the forging of a new Ukrainian national identity in the furnace of war \u2014 and a glimmer of light in the Russian exiles who have fled their homeland", + "contentSnippet": "Four books look at the forging of a new Ukrainian national identity in the furnace of war \u2014 and a glimmer of light in the Russian exiles who have fled their homeland", + "guid": "c11c5d1a-9329-4f49-b5fe-aa1ff1bdb8e4", + "isoDate": "2024-01-16T05:00:08.000Z" + }, + { + "title": "War in Ukraine: military strategies", + "link": "https://www.ft.com/content/7a67ae5c-774a-4e2f-9be0-38924f5557c2", + "pubDate": "Mon, 15 Jan 2024 20:45:17 GMT", + "content": "Key articles on Russia and Ukraine\u2019s battle tactics", + "contentSnippet": "Key articles on Russia and Ukraine\u2019s battle tactics", + "guid": "7a67ae5c-774a-4e2f-9be0-38924f5557c2", + "isoDate": "2024-01-15T20:45:17.000Z" + }, + { + "title": "Ukraine shoots down Russian spy plane", + "link": "https://www.ft.com/content/970c4502-808d-4fec-8f97-91f8bb84beea", + "pubDate": "Mon, 15 Jan 2024 14:21:48 GMT", + "content": "Kyiv deals significant blow to Moscow\u2019s aerial operations", + "contentSnippet": "Kyiv deals significant blow to Moscow\u2019s aerial operations", + "guid": "970c4502-808d-4fec-8f97-91f8bb84beea", + "isoDate": "2024-01-15T14:21:48.000Z" + }, + { + "title": "Taiwan can still avoid Ukraine\u2019s fate", + "link": "https://www.ft.com/content/d77ec25e-8d78-43d8-acc5-359dad4a158f", + "pubDate": "Mon, 15 Jan 2024 12:18:46 GMT", + "content": "The obstacles to a successful Chinese invasion of the island remain formidable", + "contentSnippet": "The obstacles to a successful Chinese invasion of the island remain formidable", + "guid": "d77ec25e-8d78-43d8-acc5-359dad4a158f", + "isoDate": "2024-01-15T12:18:46.000Z" + }, + { + "title": "Poland\u2019s Tusk keeps protectionist stance on Ukraine", + "link": "https://www.ft.com/content/734b12d4-d3c1-4009-9b4b-d30018588622", + "pubDate": "Mon, 15 Jan 2024 11:24:57 GMT", + "content": "Prime minister caught in a bind between pro-EU agenda and demands from farmers and hauliers", + "contentSnippet": "Prime minister caught in a bind between pro-EU agenda and demands from farmers and hauliers", + "guid": "734b12d4-d3c1-4009-9b4b-d30018588622", + "isoDate": "2024-01-15T11:24:57.000Z" + }, + { + "title": "Why Ukraine peace talks are more about talking than peace", + "link": "https://www.ft.com/content/196f5f8e-38cf-45b2-b45d-2e73596bab11", + "pubDate": "Mon, 15 Jan 2024 06:00:03 GMT", + "content": "Also in this newsletter: How the EU\u2019s carbon tariff is pushing countries to charge for CO\u2082 emissions", + "contentSnippet": "Also in this newsletter: How the EU\u2019s carbon tariff is pushing countries to charge for CO\u2082 emissions", + "guid": "196f5f8e-38cf-45b2-b45d-2e73596bab11", + "isoDate": "2024-01-15T06:00:03.000Z" + }, + { + "title": "Ukraine promotes peace plan at Davos meeting for 83 countries ", + "link": "https://www.ft.com/content/f18aa35d-6f07-4274-9f46-8583c9d6e82a", + "pubDate": "Sun, 14 Jan 2024 18:26:25 GMT", + "content": "Kyiv\u2019s initiative attracts more security officials from non-western states but China declines to attend", + "contentSnippet": "Kyiv\u2019s initiative attracts more security officials from non-western states but China declines to attend", + "guid": "f18aa35d-6f07-4274-9f46-8583c9d6e82a", + "isoDate": "2024-01-14T18:26:25.000Z" + }, + { + "title": "Missiles from Iran and North Korea boost Russia\u2019s onslaught on Ukraine", + "link": "https://www.ft.com/content/1d1eb1dd-4fa0-4693-9512-23a219de5d77", + "pubDate": "Sun, 14 Jan 2024 05:00:02 GMT", + "content": "Moscow changes tactics with unprecedented barrages aiming \u2018to crack the code\u2019 of Ukrainian air defences", + "contentSnippet": "Moscow changes tactics with unprecedented barrages aiming \u2018to crack the code\u2019 of Ukrainian air defences", + "guid": "1d1eb1dd-4fa0-4693-9512-23a219de5d77", + "isoDate": "2024-01-14T05:00:02.000Z" + }, + { + "title": "EU leaders back use of earnings from Russia\u2019s frozen assets for Ukraine", + "link": "https://www.ft.com/content/a25c5a77-74d4-4886-8fa1-70ad1b668a2f", + "pubDate": "Fri, 27 Oct 2023 12:20:35 GMT", + "content": "European Commission expected to put forward legal proposals in December ", + "contentSnippet": "European Commission expected to put forward legal proposals in December", + "guid": "a25c5a77-74d4-4886-8fa1-70ad1b668a2f", + "isoDate": "2023-10-27T12:20:35.000Z" + }, + { + "title": "Slovakia and Hungary threaten to break EU unity on Ukraine military aid", + "link": "https://www.ft.com/content/4dc3cea9-447d-488c-9b39-9f12356e6809", + "pubDate": "Thu, 26 Oct 2023 14:22:25 GMT", + "content": "Bloc\u2019s leaders meet in Brussels for summit on Middle East, Ukraine and funding issues", + "contentSnippet": "Bloc\u2019s leaders meet in Brussels for summit on Middle East, Ukraine and funding issues", + "guid": "4dc3cea9-447d-488c-9b39-9f12356e6809", + "isoDate": "2023-10-26T14:22:25.000Z" + }, + { + "title": "Euroclear earns \u20ac3bn from Russian assets frozen by west", + "link": "https://www.ft.com/content/88ff88c4-6efe-40b7-b635-80eb6bd73c2c", + "pubDate": "Thu, 26 Oct 2023 10:39:42 GMT", + "content": "Windfall for Belgian depository likely to raise pressure to channel proceeds to Ukraine", + "contentSnippet": "Windfall for Belgian depository likely to raise pressure to channel proceeds to Ukraine", + "guid": "88ff88c4-6efe-40b7-b635-80eb6bd73c2c", + "isoDate": "2023-10-26T10:39:42.000Z" + }, + { + "title": "The Schr\u00f6dinger\u2019s cat of Russian foreign reserves", + "link": "https://www.ft.com/content/8e95a94b-1791-48e1-93ac-a1b54da634ce", + "pubDate": "Thu, 26 Oct 2023 10:04:38 GMT", + "content": "Now you see them, now you don\u2019t", + "contentSnippet": "Now you see them, now you don\u2019t", + "guid": "8e95a94b-1791-48e1-93ac-a1b54da634ce", + "isoDate": "2023-10-26T10:04:38.000Z" + }, + { + "title": "The medics battling on Ukraine\u2019s \u2018second frontline\u2019", + "link": "https://www.ft.com/content/0f168ef9-d8a8-47c4-8883-017936cd0f2f", + "pubDate": "Thu, 26 Oct 2023 04:00:43 GMT", + "content": "Poor quality tourniquets and lack of medical training are costing soldiers\u2019 lives, say volunteer doctors", + "contentSnippet": "Poor quality tourniquets and lack of medical training are costing soldiers\u2019 lives, say volunteer doctors", + "guid": "0f168ef9-d8a8-47c4-8883-017936cd0f2f", + "isoDate": "2023-10-26T04:00:43.000Z" + }, + { + "title": "The Russians returning home from self-imposed exile", + "link": "https://www.ft.com/content/5e6bcce9-7bda-4b29-b1b7-f7df6e879fd9", + "pubDate": "Wed, 25 Oct 2023 04:00:11 GMT", + "content": "More than 800,000 people fled Russia after last year\u2019s invasion of Ukraine. Now, some have changed their minds", + "contentSnippet": "More than 800,000 people fled Russia after last year\u2019s invasion of Ukraine. Now, some have changed their minds", + "guid": "5e6bcce9-7bda-4b29-b1b7-f7df6e879fd9", + "isoDate": "2023-10-25T04:00:11.000Z" + }, + { + "title": "Why the EU is moving to endorse a \u2018humanitarian pause\u2019 in Gaza", + "link": "https://www.ft.com/content/df475405-8263-4dcb-a37d-c98a5765b200", + "pubDate": "Tue, 24 Oct 2023 05:00:05 GMT", + "content": "Also in this newsletter: How the bloc plans to step up defence of its clean tech sector", + "contentSnippet": "Also in this newsletter: How the bloc plans to step up defence of its clean tech sector", + "guid": "df475405-8263-4dcb-a37d-c98a5765b200", + "isoDate": "2023-10-24T05:00:05.000Z" + }, + { + "title": "Ukraine\u2019s race to build its own arms industry", + "link": "https://www.ft.com/content/69cf1288-0156-4b8f-a770-cacb05988596", + "pubDate": "Tue, 24 Oct 2023 04:00:05 GMT", + "content": "Kyiv is converting US missiles for new uses and prioritising joint ventures with western companies", + "contentSnippet": "Kyiv is converting US missiles for new uses and prioritising joint ventures with western companies", + "guid": "69cf1288-0156-4b8f-a770-cacb05988596", + "isoDate": "2023-10-24T04:00:05.000Z" + }, + { + "title": "Why the EU needs to join the dots between Israel and Ukraine", + "link": "https://www.ft.com/content/d4a5f131-dffe-494e-b1c9-13a3c69ad027", + "pubDate": "Mon, 23 Oct 2023 05:00:43 GMT", + "content": "Also in this newsletter: How the former head of Germany\u2019s hard-left party wants to woo far-right voters", + "contentSnippet": "Also in this newsletter: How the former head of Germany\u2019s hard-left party wants to woo far-right voters", + "guid": "d4a5f131-dffe-494e-b1c9-13a3c69ad027", + "isoDate": "2023-10-23T05:00:43.000Z" + }, + { + "title": "Ukrainians fear loss of support as global gaze shifts to Israel-Hamas war", + "link": "https://www.ft.com/content/d6145249-6589-45dd-bf8f-7ba7f3cb664b", + "pubDate": "Sun, 22 Oct 2023 04:00:44 GMT", + "content": "The world has forgotten Russia\u2019s war in Ukraine before. Ukrainians remember \u2014 and will not let it happen again", + "contentSnippet": "The world has forgotten Russia\u2019s war in Ukraine before. Ukrainians remember \u2014 and will not let it happen again", + "guid": "d6145249-6589-45dd-bf8f-7ba7f3cb664b", + "isoDate": "2023-10-22T04:00:44.000Z" + }, + { + "title": "We must ditch the \u2018stalemate\u2019 metaphor in Ukraine\u2019s war ", + "link": "https://www.ft.com/content/5791ec24-3aa0-4a98-a89f-f955c3abcde5", + "pubDate": "Fri, 20 Oct 2023 17:00:07 GMT", + "content": "Referring to the conflict as such only invites moral and strategic errors", + "contentSnippet": "Referring to the conflict as such only invites moral and strategic errors", + "guid": "5791ec24-3aa0-4a98-a89f-f955c3abcde5", + "isoDate": "2023-10-20T17:00:07.000Z" + }, + { + "title": "Biden asks divided Congress to pass $106bn in aid for Israel and Ukraine ", + "link": "https://www.ft.com/content/be2eeb38-0879-44f4-8929-c816f57864a7", + "pubDate": "Fri, 20 Oct 2023 16:22:20 GMT", + "content": "Call for $75.7bn in extra military support comes as Republicans fail once again to elect a Speaker of the House", + "contentSnippet": "Call for $75.7bn in extra military support comes as Republicans fail once again to elect a Speaker of the House", + "guid": "be2eeb38-0879-44f4-8929-c816f57864a7", + "isoDate": "2023-10-20T16:22:20.000Z" + }, + { + "title": "Why the EU-US summit won\u2019t yield any breakthroughs on trade", + "link": "https://www.ft.com/content/f75ad20b-e520-4c8f-a18d-d07952b0be30", + "pubDate": "Fri, 20 Oct 2023 05:00:47 GMT", + "content": "Also in this newsletter: Finland cracks down on Russians buying critical real estate", + "contentSnippet": "Also in this newsletter: Finland cracks down on Russians buying critical real estate", + "guid": "f75ad20b-e520-4c8f-a18d-d07952b0be30", + "isoDate": "2023-10-20T05:00:47.000Z" + }, + { + "title": "Biden urges Congress to provide new funds for Israel and Ukraine ", + "link": "https://www.ft.com/content/b203de84-7a1c-4e1b-844a-740742751c83", + "pubDate": "Fri, 20 Oct 2023 02:07:04 GMT", + "content": "US president\u2019s primetime address makes national security case for support expected to exceed $100bn", + "contentSnippet": "US president\u2019s primetime address makes national security case for support expected to exceed $100bn", + "guid": "b203de84-7a1c-4e1b-844a-740742751c83", + "isoDate": "2023-10-20T02:07:04.000Z" + }, + { + "title": "Moscow detains US journalist amid crackdown on independent reporting", + "link": "https://www.ft.com/content/d005114e-c155-4925-99d0-045e326d84f5", + "pubDate": "Thu, 19 Oct 2023 10:07:10 GMT", + "content": "Russian-US citizen Alsu Kurmasheva faces up to five years in jail if found guilty of charges", + "contentSnippet": "Russian-US citizen Alsu Kurmasheva faces up to five years in jail if found guilty of charges", + "guid": "d005114e-c155-4925-99d0-045e326d84f5", + "isoDate": "2023-10-19T10:07:10.000Z" + }, + { + "title": "The second battle for Kharkiv: city goes underground to defy Russian missiles", + "link": "https://www.ft.com/content/c1719b5c-c30f-4415-a2dd-dc0b4025886b", + "pubDate": "Thu, 19 Oct 2023 04:00:43 GMT", + "content": "A new subterranean school is part of a plan to entice exiles back to Ukraine\u2019s second-largest city", + "contentSnippet": "A new subterranean school is part of a plan to entice exiles back to Ukraine\u2019s second-largest city", + "guid": "c1719b5c-c30f-4415-a2dd-dc0b4025886b", + "isoDate": "2023-10-19T04:00:43.000Z" + }, + { + "title": "Xi hails \u2018deep friendship\u2019 with Putin as leaders meet in Beijing", + "link": "https://www.ft.com/content/fd028975-462e-4b70-912e-3e1e441517e5", + "pubDate": "Wed, 18 Oct 2023 15:13:20 GMT", + "content": "China\u2019s president says annual bilateral trade with Russia has reached a \u2018historic high\u2019 of nearly $200bn", + "contentSnippet": "China\u2019s president says annual bilateral trade with Russia has reached a \u2018historic high\u2019 of nearly $200bn", + "guid": "fd028975-462e-4b70-912e-3e1e441517e5", + "isoDate": "2023-10-18T15:13:20.000Z" + }, + { + "title": "In the pursuit of small pleasures, Kyiv residents exercise resistance ", + "link": "https://www.ft.com/content/73ee1453-ab48-4b77-b181-564d8604c5dd", + "pubDate": "Wed, 18 Oct 2023 10:47:51 GMT", + "content": "Vladimir Putin wants to trash the country, so the fact that daily life continues is a minor triumph", + "contentSnippet": "Vladimir Putin wants to trash the country, so the fact that daily life continues is a minor triumph", + "guid": "73ee1453-ab48-4b77-b181-564d8604c5dd", + "isoDate": "2023-10-18T10:47:51.000Z" + }, + { + "title": "Rush by west to back Israel erodes developing countries\u2019 support for Ukraine", + "link": "https://www.ft.com/content/e0b43918-7eaf-4a11-baaf-d6d7fb61a8a5", + "pubDate": "Wed, 18 Oct 2023 04:00:10 GMT", + "content": "Diplomats warn backing for Israeli assault on Gaza has poisoned efforts to build consensus against Russia\u2019s war", + "contentSnippet": "Diplomats warn backing for Israeli assault on Gaza has poisoned efforts to build consensus against Russia\u2019s war", + "guid": "e0b43918-7eaf-4a11-baaf-d6d7fb61a8a5", + "isoDate": "2023-10-18T04:00:10.000Z" + }, + { + "title": "Ukraine strikes Russian forces with US-made ATACMS for first time", + "link": "https://www.ft.com/content/ea2a4335-fa77-4ecb-8646-e1525ed09a0c", + "pubDate": "Tue, 17 Oct 2023 18:09:44 GMT", + "content": "Long-range guided missiles that were secretly shipped to Kyiv hit military assets in occupied regions ", + "contentSnippet": "Long-range guided missiles that were secretly shipped to Kyiv hit military assets in occupied regions", + "guid": "ea2a4335-fa77-4ecb-8646-e1525ed09a0c", + "isoDate": "2023-10-17T18:09:44.000Z" + }, + { + "title": "Orb\u00e1n meets Putin in bid to \u2018save everything possible\u2019 in bilateral relations", + "link": "https://www.ft.com/content/41fb0967-61b6-4244-973b-97b8f6e61a85", + "pubDate": "Tue, 17 Oct 2023 13:52:44 GMT", + "content": "European head is first western leader to meet Russian president since issue of war crimes warrant for his arrest", + "contentSnippet": "European head is first western leader to meet Russian president since issue of war crimes warrant for his arrest", + "guid": "41fb0967-61b6-4244-973b-97b8f6e61a85", + "isoDate": "2023-10-17T13:52:44.000Z" + }, + { + "title": "Fridman challenges UK sanctions to pay \u00a330,000-per-month London mansion costs", + "link": "https://www.ft.com/content/02289774-3b88-4b45-a4b0-c124f9b3ca55", + "pubDate": "Tue, 17 Oct 2023 12:46:30 GMT", + "content": "Russian businessman asks High Court to be allowed to cover London staff salaries, including for a driver", + "contentSnippet": "Russian businessman asks High Court to be allowed to cover London staff salaries, including for a driver", + "guid": "02289774-3b88-4b45-a4b0-c124f9b3ca55", + "isoDate": "2023-10-17T12:46:30.000Z" + }, + { + "title": "Putin visits Beijing for first time since Russia\u2019s invasion of Ukraine", + "link": "https://www.ft.com/content/c11d5b31-da3d-465a-ac1a-f503b4e07268", + "pubDate": "Tue, 17 Oct 2023 09:57:00 GMT", + "content": "Russian president met Chinese counterpart Xi Jinping on Tuesday ahead of summit tomorrow", + "contentSnippet": "Russian president met Chinese counterpart Xi Jinping on Tuesday ahead of summit tomorrow", + "guid": "c11d5b31-da3d-465a-ac1a-f503b4e07268", + "isoDate": "2023-10-17T09:57:00.000Z" + }, + { + "title": "Israel-Hamas war tests US defence sector already strained by conflict in Ukraine", + "link": "https://www.ft.com/content/ad8585de-a5c4-4d65-a213-596a10816aa8", + "pubDate": "Tue, 17 Oct 2023 04:00:12 GMT", + "content": "Washington vows to increase supplies of precision missiles and other munitions to allies", + "contentSnippet": "Washington vows to increase supplies of precision missiles and other munitions to allies", + "guid": "ad8585de-a5c4-4d65-a213-596a10816aa8", + "isoDate": "2023-10-17T04:00:12.000Z" + }, + { + "title": "Qatar brokers deal to return Ukrainian children taken by Russia", + "link": "https://www.ft.com/content/4739c7d1-d43d-4ec5-909d-9559ded0c662", + "pubDate": "Mon, 16 Oct 2023 06:16:21 GMT", + "content": "Four children to be reunited with families are first since international mediators began negotiating with Moscow", + "contentSnippet": "Four children to be reunited with families are first since international mediators began negotiating with Moscow", + "guid": "4739c7d1-d43d-4ec5-909d-9559ded0c662", + "isoDate": "2023-10-16T06:16:21.000Z" + } +] diff --git a/intro to react/newData/oldNews/269e190f0b3b66f9f54470fa9ac231a0aad43bf4454481976ca431c2af5453e4.json b/intro to react/newData/oldNews/269e190f0b3b66f9f54470fa9ac231a0aad43bf4454481976ca431c2af5453e4.json index 33d038a..67f7bfa 100644 --- a/intro to react/newData/oldNews/269e190f0b3b66f9f54470fa9ac231a0aad43bf4454481976ca431c2af5453e4.json +++ b/intro to react/newData/oldNews/269e190f0b3b66f9f54470fa9ac231a0aad43bf4454481976ca431c2af5453e4.json @@ -1,3210 +1,3210 @@ [ - { - "title": "Who will partner with Apple Card now and what does this shakeup mean for its users?", - "link": "https://www.reddit.com/r/technology/comments/187tn8b/who_will_partner_with_apple_card_now_and_what/", - "pubDate": "2023-11-30T21:26:19.000Z", - "author": "/u/CrankyBear", - "content": "
\"Who submitted by /u/CrankyBear
[link] [comments]
", - "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", - "id": "t3_187tn8b", - "isoDate": "2023-11-30T21:26:19.000Z" - }, - { - "title": "Meta sues FTC to block new restrictions on monetizing kids\u2019 data / It also seeks to prevent the agency from revisiting the $5 billion privacy settlement from 2020", - "link": "https://www.reddit.com/r/technology/comments/187q5si/meta_sues_ftc_to_block_new_restrictions_on/", - "pubDate": "2023-11-30T19:00:33.000Z", - "author": "/u/Sorin61", - "content": "
\"Meta submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_187q5si", - "isoDate": "2023-11-30T19:00:33.000Z" - }, - { - "title": "The LAPD Is Using Controversial Mass Surveillance Tracking Software", - "link": "https://www.reddit.com/r/technology/comments/187ow3b/the_lapd_is_using_controversial_mass_surveillance/", - "pubDate": "2023-11-30T18:05:59.000Z", - "author": "/u/Sorin61", - "content": "
\"The submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_187ow3b", - "isoDate": "2023-11-30T18:05:59.000Z" - }, - { - "title": "Canada says Google will pay $74 million annually to Canadian news industry under new online law", - "link": "https://www.reddit.com/r/technology/comments/187n08i/canada_says_google_will_pay_74_million_annually/", - "pubDate": "2023-11-30T16:46:00.000Z", - "author": "/u/Happy_Escape861", - "content": "
\"Canada submitted by /u/Happy_Escape861
[link] [comments]
", - "contentSnippet": "submitted by /u/Happy_Escape861 \n [link] [comments]", - "id": "t3_187n08i", - "isoDate": "2023-11-30T16:46:00.000Z" - }, - { - "title": "Fake HDMI cable crackdown - Taiwanese police raid suppliers of counterfeit HDMI cables, seize $2.6 million in knockoffs in a single day", - "link": "https://www.reddit.com/r/technology/comments/187mg97/fake_hdmi_cable_crackdown_taiwanese_police_raid/", - "pubDate": "2023-11-30T16:22:50.000Z", - "author": "/u/chrisdh79", - "content": "
\"Fake submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_187mg97", - "isoDate": "2023-11-30T16:22:50.000Z" - }, - { - "title": "The US government is no longer briefing Meta about foreign influence campaigns", - "link": "https://www.reddit.com/r/technology/comments/187m7og/the_us_government_is_no_longer_briefing_meta/", - "pubDate": "2023-11-30T16:12:53.000Z", - "author": "/u/Sorin61", - "content": "
\"The submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_187m7og", - "isoDate": "2023-11-30T16:12:53.000Z" - }, - { - "title": "US military says national security depends on \u2018forever chemicals\u2019 / PFAS can be found in everything from weapons to uniforms, but the Department of Defense is pushing back on health concerns raised by regulators", - "link": "https://www.reddit.com/r/technology/comments/187jdeu/us_military_says_national_security_depends_on/", - "pubDate": "2023-11-30T14:08:45.000Z", - "author": "/u/Sorin61", - "content": "
\"US submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_187jdeu", - "isoDate": "2023-11-30T14:08:45.000Z" - }, - { - "title": "Apple and Google avoid naming ChatGPT as their 'app of the year,' picking AllTrails and Imprint instead", - "link": "https://www.reddit.com/r/technology/comments/187izgh/apple_and_google_avoid_naming_chatgpt_as_their/", - "pubDate": "2023-11-30T13:50:47.000Z", - "author": "/u/Doener23", - "content": "
\"Apple submitted by /u/Doener23
[link] [comments]
", - "contentSnippet": "submitted by /u/Doener23 \n [link] [comments]", - "id": "t3_187izgh", - "isoDate": "2023-11-30T13:50:47.000Z" - }, - { - "title": "Nvidia boss says achieving US chip independence could take up to 20 years", - "link": "https://www.reddit.com/r/technology/comments/187ig9g/nvidia_boss_says_achieving_us_chip_independence/", - "pubDate": "2023-11-30T13:24:38.000Z", - "author": "/u/Sorin61", - "content": "
\"Nvidia submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_187ig9g", - "isoDate": "2023-11-30T13:24:38.000Z" - }, - { - "title": "Some electric vehicles can charge while they drive thanks to special coils installed under a street in Detroit / This is a pilot program for the technology, which could be installed in other countries as well", - "link": "https://www.reddit.com/r/technology/comments/187htza/some_electric_vehicles_can_charge_while_they/", - "pubDate": "2023-11-30T12:52:20.000Z", - "author": "/u/Sorin61", - "content": " submitted by /u/Sorin61
[link] [comments]", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_187htza", - "isoDate": "2023-11-30T12:52:20.000Z" - }, - { - "title": "Meta\u2019s latest threats report shows risk of Chinese influence campaigns ahead of elections", - "link": "https://www.reddit.com/r/technology/comments/187hgla/metas_latest_threats_report_shows_risk_of_chinese/", - "pubDate": "2023-11-30T12:31:37.000Z", - "author": "/u/skuggic", - "content": "
\"Meta\u2019s submitted by /u/skuggic
[link] [comments]
", - "contentSnippet": "submitted by /u/skuggic \n [link] [comments]", - "id": "t3_187hgla", - "isoDate": "2023-11-30T12:31:37.000Z" - }, - { - "title": "Dollar Tree hit by third-party data breach impacting 2 million people", - "link": "https://www.reddit.com/r/technology/comments/187gnb8/dollar_tree_hit_by_thirdparty_data_breach/", - "pubDate": "2023-11-30T11:43:43.000Z", - "author": "/u/chrisdh79", - "content": "
\"Dollar submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_187gnb8", - "isoDate": "2023-11-30T11:43:43.000Z" - }, - { - "title": "Detroit's newest road can charge electric cars as they travel on it", - "link": "https://www.reddit.com/r/technology/comments/187g991/detroits_newest_road_can_charge_electric_cars_as/", - "pubDate": "2023-11-30T11:19:29.000Z", - "author": "/u/Dcm210", - "content": "
\"Detroit's submitted by /u/Dcm210
[link] [comments]
", - "contentSnippet": "submitted by /u/Dcm210 \n [link] [comments]", - "id": "t3_187g991", - "isoDate": "2023-11-30T11:19:29.000Z" - }, - { - "title": "Google Will Delete Millions of Gmail Accounts Starting Tomorrow", - "link": "https://www.reddit.com/r/technology/comments/187fczg/google_will_delete_millions_of_gmail_accounts/", - "pubDate": "2023-11-30T10:19:40.000Z", - "author": "/u/Cubezzzzz", - "content": " submitted by /u/Cubezzzzz
[link] [comments]", - "contentSnippet": "submitted by /u/Cubezzzzz \n [link] [comments]", - "id": "t3_187fczg", - "isoDate": "2023-11-30T10:19:40.000Z" - }, - { - "title": "Today is the last day to save your unused Gmail account!", - "link": "https://www.reddit.com/r/technology/comments/187f2j4/today_is_the_last_day_to_save_your_unused_gmail/", - "pubDate": "2023-11-30T09:59:30.000Z", - "author": "/u/thegravity98ms2", - "content": "
\"Today submitted by /u/thegravity98ms2
[link] [comments]
", - "contentSnippet": "submitted by /u/thegravity98ms2 \n [link] [comments]", - "id": "t3_187f2j4", - "isoDate": "2023-11-30T09:59:30.000Z" - }, - { - "title": "World told energy transition will require $13.5 trillion commitment", - "link": "https://www.reddit.com/r/technology/comments/187f1nj/world_told_energy_transition_will_require_135/", - "pubDate": "2023-11-30T09:57:37.000Z", - "author": "/u/Wagamaga", - "content": "
\"World submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_187f1nj", - "isoDate": "2023-11-30T09:57:37.000Z" - }, - { - "title": "Apple M1 Pro beats M3 Pro with Ableton, Logic and Pro Tools", - "link": "https://www.reddit.com/r/technology/comments/187ef7j/apple_m1_pro_beats_m3_pro_with_ableton_logic_and/", - "pubDate": "2023-11-30T09:13:43.000Z", - "author": "/u/Doener23", - "content": "
\"Apple submitted by /u/Doener23
[link] [comments]
", - "contentSnippet": "submitted by /u/Doener23 \n [link] [comments]", - "id": "t3_187ef7j", - "isoDate": "2023-11-30T09:13:43.000Z" - }, - { - "title": "Google agrees to pay publishers in Canada and drops plans for blocking news", - "link": "https://www.reddit.com/r/technology/comments/187cxw0/google_agrees_to_pay_publishers_in_canada_and/", - "pubDate": "2023-11-30T07:33:47.000Z", - "author": "/u/911_reddit", - "content": "
\"Google submitted by /u/911_reddit
[link] [comments]
", - "contentSnippet": "submitted by /u/911_reddit \n [link] [comments]", - "id": "t3_187cxw0", - "isoDate": "2023-11-30T07:33:47.000Z" - }, - { - "title": "'Your Turn': United Auto Workers Launches Campaign to Unionize Tesla", - "link": "https://www.reddit.com/r/technology/comments/187br4y/your_turn_united_auto_workers_launches_campaign/", - "pubDate": "2023-11-30T06:18:10.000Z", - "author": "/u/Sorin61", - "content": "
\"'Your submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_187br4y", - "isoDate": "2023-11-30T06:18:10.000Z" - }, - { - "title": "The CEOs of Meta, X, TikTok, Snap, and Discord will testify before the US Senate on child safety", - "link": "https://www.reddit.com/r/technology/comments/187a0by/the_ceos_of_meta_x_tiktok_snap_and_discord_will/", - "pubDate": "2023-11-30T04:41:35.000Z", - "author": "/u/dapperlemon", - "content": "
\"The submitted by /u/dapperlemon
[link] [comments]
", - "contentSnippet": "submitted by /u/dapperlemon \n [link] [comments]", - "id": "t3_187a0by", - "isoDate": "2023-11-30T04:41:35.000Z" - }, - { - "title": "Experts revive ancient techniques to make concrete more sustainable", - "link": "https://www.reddit.com/r/technology/comments/1877mpl/experts_revive_ancient_techniques_to_make/", - "pubDate": "2023-11-30T02:41:45.000Z", - "author": "/u/Ssider69", - "content": "
\"Experts submitted by /u/Ssider69
[link] [comments]
", - "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", - "id": "t3_1877mpl", - "isoDate": "2023-11-30T02:41:45.000Z" - }, - { - "title": "Microsoft joins OpenAI\u2019s board with Sam Altman officially back as CEO", - "link": "https://www.reddit.com/r/technology/comments/18776ee/microsoft_joins_openais_board_with_sam_altman/", - "pubDate": "2023-11-30T02:20:39.000Z", - "author": "/u/Intensiti", - "content": "
\"Microsoft submitted by /u/Intensiti
[link] [comments]
", - "contentSnippet": "submitted by /u/Intensiti \n [link] [comments]", - "id": "t3_18776ee", - "isoDate": "2023-11-30T02:20:39.000Z" - }, - { - "title": "Microsoft wants its subscriptions on every screen, including PlayStation and Nintendo hardware", - "link": "https://www.reddit.com/r/technology/comments/18767rm/microsoft_wants_its_subscriptions_on_every_screen/", - "pubDate": "2023-11-30T01:36:48.000Z", - "author": "/u/chrisdh79", - "content": "
\"Microsoft submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18767rm", - "isoDate": "2023-11-30T01:36:48.000Z" - }, - { - "title": "Sam Altman returns as CEO, OpenAI has a new initial board", - "link": "https://www.reddit.com/r/technology/comments/1875jmi/sam_altman_returns_as_ceo_openai_has_a_new/", - "pubDate": "2023-11-30T01:04:55.000Z", - "author": "/u/Georgeika", - "content": " submitted by /u/Georgeika
[link] [comments]", - "contentSnippet": "submitted by /u/Georgeika \n [link] [comments]", - "id": "t3_1875jmi", - "isoDate": "2023-11-30T01:04:55.000Z" - }, - { - "title": "Leaked email shows the top executives leading VMware's edge unit after Broadcom's $69 billion acquisition", - "link": "https://www.reddit.com/r/technology/comments/1875ano/leaked_email_shows_the_top_executives_leading/", - "pubDate": "2023-11-30T00:53:13.000Z", - "author": "/u/Embarrassed-Gap-2835", - "content": "
\"Leaked submitted by /u/Embarrassed-Gap-2835
[link] [comments]
", - "contentSnippet": "submitted by /u/Embarrassed-Gap-2835 \n [link] [comments]", - "id": "t3_1875ano", - "isoDate": "2023-11-30T00:53:13.000Z" - }, - { - "title": "Meta takes down China-based network of thousands of fake accounts", - "link": "https://www.reddit.com/r/technology/comments/187rr3a/meta_takes_down_chinabased_network_of_thousands/", - "pubDate": "2023-11-30T20:07:37.000Z", - "author": "/u/GennyCD", - "content": "
\"Meta submitted by /u/GennyCD
[link] [comments]
", - "contentSnippet": "submitted by /u/GennyCD \n [link] [comments]", - "id": "t3_187rr3a", - "isoDate": "2023-11-30T20:07:37.000Z" - }, - { - "title": "Michigan to join state-level effort to regulate AI political ads as federal legislation is pending", - "link": "https://www.reddit.com/r/technology/comments/187r0ps/michigan_to_join_statelevel_effort_to_regulate_ai/", - "pubDate": "2023-11-30T19:36:53.000Z", - "author": "/u/Wagamaga", - "content": " submitted by /u/Wagamaga
[link] [comments]", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_187r0ps", - "isoDate": "2023-11-30T19:36:53.000Z" - }, - { - "title": "World\u2019s first AI minister likens risk of overregulation to calligraphers that kept the printing press out of the Middle East for nearly 200 years", - "link": "https://www.reddit.com/r/technology/comments/187qfal/worlds_first_ai_minister_likens_risk_of/", - "pubDate": "2023-11-30T19:11:46.000Z", - "author": "/u/cromethus", - "content": " submitted by /u/cromethus
[link] [comments]", - "contentSnippet": "submitted by /u/cromethus \n [link] [comments]", - "id": "t3_187qfal", - "isoDate": "2023-11-30T19:11:46.000Z" - }, - { - "title": "\u2018Nudify\u2019 Apps That Use AI to \u2018Undress\u2019 Women in Photos Are Soaring in Popularity", - "link": "https://www.reddit.com/r/technology/comments/18dhgft/nudify_apps_that_use_ai_to_undress_women_in/", - "pubDate": "2023-12-08T07:22:05.000Z", - "author": "/u/galaxystars1", - "content": "
\"\u2018Nudify\u2019 submitted by /u/galaxystars1
[link] [comments]
", - "contentSnippet": "submitted by /u/galaxystars1 \n [link] [comments]", - "id": "t3_18dhgft", - "isoDate": "2023-12-08T07:22:05.000Z" - }, - { - "title": "Google calls Drive data loss \u201cfixed,\u201d locks forum threads saying otherwise", - "link": "https://www.reddit.com/r/technology/comments/18da8h6/google_calls_drive_data_loss_fixed_locks_forum/", - "pubDate": "2023-12-08T00:38:02.000Z", - "author": "/u/ardi62", - "content": "
\"Google submitted by /u/ardi62
[link] [comments]
", - "contentSnippet": "submitted by /u/ardi62 \n [link] [comments]", - "id": "t3_18da8h6", - "isoDate": "2023-12-08T00:38:02.000Z" - }, - { - "title": "Drones Deliver Defibrillators Faster Than Ambulances", - "link": "https://www.reddit.com/r/technology/comments/18d9r13/drones_deliver_defibrillators_faster_than/", - "pubDate": "2023-12-08T00:13:32.000Z", - "author": "/u/Ssider69", - "content": "
\"Drones submitted by /u/Ssider69
[link] [comments]
", - "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", - "id": "t3_18d9r13", - "isoDate": "2023-12-08T00:13:32.000Z" - }, - { - "title": "HP misreads room, awkwardly brags about its \u201cless hated\u201d printers | Opinion: HP's printer business practices have infuriated users for years.", - "link": "https://www.reddit.com/r/technology/comments/18d9g13/hp_misreads_room_awkwardly_brags_about_its_less/", - "pubDate": "2023-12-07T23:58:58.000Z", - "author": "/u/chrisdh79", - "content": "
\"HP submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18d9g13", - "isoDate": "2023-12-07T23:58:58.000Z" - }, - { - "title": "Reversal of content policies at Alphabet, Meta and X threaten democracy, warn experts. Media watchdog says layoffs at top social media firms affecting moderation create \u2018toxic environment\u2019 as 2024 elections approach.", - "link": "https://www.reddit.com/r/technology/comments/18d8rot/reversal_of_content_policies_at_alphabet_meta_and/", - "pubDate": "2023-12-07T23:26:35.000Z", - "author": "/u/Sariel007", - "content": "
\"Reversal submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_18d8rot", - "isoDate": "2023-12-07T23:26:35.000Z" - }, - { - "title": "Why the 23andMe Data Breach Is Such a Disaster | The consumer DNA harvesting king exposed 6.9 million people\u2019s data. We\u2019ll never know exactly what goes wrong from here", - "link": "https://www.reddit.com/r/technology/comments/18d84jr/why_the_23andme_data_breach_is_such_a_disaster/", - "pubDate": "2023-12-07T22:57:06.000Z", - "author": "/u/Hrmbee", - "content": "
\"Why submitted by /u/Hrmbee
[link] [comments]
", - "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", - "id": "t3_18d84jr", - "isoDate": "2023-12-07T22:57:06.000Z" - }, - { - "title": "DoorDash, delivery apps remove tipping prompt at checkout in NYC", - "link": "https://www.reddit.com/r/technology/comments/18d7vzh/doordash_delivery_apps_remove_tipping_prompt_at/", - "pubDate": "2023-12-07T22:45:51.000Z", - "author": "/u/esporx", - "content": "
\"DoorDash, submitted by /u/esporx
[link] [comments]
", - "contentSnippet": "submitted by /u/esporx \n [link] [comments]", - "id": "t3_18d7vzh", - "isoDate": "2023-12-07T22:45:51.000Z" - }, - { - "title": "Facebook and Instagram are steering child predators to kids, New Mexico AG alleges", - "link": "https://www.reddit.com/r/technology/comments/18d7anz/facebook_and_instagram_are_steering_child/", - "pubDate": "2023-12-07T22:19:24.000Z", - "author": "/u/Far_Nature_8527", - "content": "
\"Facebook submitted by /u/Far_Nature_8527
[link] [comments]
", - "contentSnippet": "submitted by /u/Far_Nature_8527 \n [link] [comments]", - "id": "t3_18d7anz", - "isoDate": "2023-12-07T22:19:24.000Z" - }, - { - "title": "Discord users are cancelling their Nitro after new mobile layout update", - "link": "https://www.reddit.com/r/technology/comments/18d6vzu/discord_users_are_cancelling_their_nitro_after/", - "pubDate": "2023-12-07T22:01:25.000Z", - "author": "/u/oopsispilledthebeans", - "content": "
\"Discord submitted by /u/oopsispilledthebeans
[link] [comments]
", - "contentSnippet": "submitted by /u/oopsispilledthebeans \n [link] [comments]", - "id": "t3_18d6vzu", - "isoDate": "2023-12-07T22:01:25.000Z" - }, - { - "title": "Driverless cars were the future but now the truth is out: they\u2019re on the road to nowhere", - "link": "https://www.reddit.com/r/technology/comments/18d64z3/driverless_cars_were_the_future_but_now_the_truth/", - "pubDate": "2023-12-07T21:28:39.000Z", - "author": "/u/TransitBuff", - "content": "
\"Driverless submitted by /u/TransitBuff
[link] [comments]
", - "contentSnippet": "submitted by /u/TransitBuff \n [link] [comments]", - "id": "t3_18d64z3", - "isoDate": "2023-12-07T21:28:39.000Z" - }, - { - "title": "Amazon's humanoid warehouse robots will eventually cost only $3 per hour to operate. That won't calm workers' fears of being replaced.", - "link": "https://www.reddit.com/r/technology/comments/18d45bj/amazons_humanoid_warehouse_robots_will_eventually/", - "pubDate": "2023-12-07T20:02:55.000Z", - "author": "/u/Lakerlion", - "content": "
\"Amazon's submitted by /u/Lakerlion
[link] [comments]
", - "contentSnippet": "submitted by /u/Lakerlion \n [link] [comments]", - "id": "t3_18d45bj", - "isoDate": "2023-12-07T20:02:55.000Z" - }, - { - "title": "Apple just discreetly launched a raft of new machine learning tools, and they\u2019re free", - "link": "https://www.reddit.com/r/technology/comments/18d3m66/apple_just_discreetly_launched_a_raft_of_new/", - "pubDate": "2023-12-07T19:39:38.000Z", - "author": "/u/Franco1875", - "content": "
\"Apple submitted by /u/Franco1875
[link] [comments]
", - "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", - "id": "t3_18d3m66", - "isoDate": "2023-12-07T19:39:38.000Z" - }, - { - "title": "California Will Soon Mandate Electric School Buses", - "link": "https://www.reddit.com/r/technology/comments/18d2g7z/california_will_soon_mandate_electric_school_buses/", - "pubDate": "2023-12-07T18:48:43.000Z", - "author": "/u/Sorin61", - "content": "
\"California submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18d2g7z", - "isoDate": "2023-12-07T18:48:43.000Z" - }, - { - "title": "White House threatens to veto anti-EV bill just passed by US House", - "link": "https://www.reddit.com/r/technology/comments/18d15ff/white_house_threatens_to_veto_antiev_bill_just/", - "pubDate": "2023-12-07T17:49:44.000Z", - "author": "/u/Sorin61", - "content": "
\"White submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18d15ff", - "isoDate": "2023-12-07T17:49:44.000Z" - }, - { - "title": "An AI herding effect could drive markets 'off an inadvertent cliff', SEC chief Gary Gensler says", - "link": "https://www.reddit.com/r/technology/comments/18czzpp/an_ai_herding_effect_could_drive_markets_off_an/", - "pubDate": "2023-12-07T16:57:19.000Z", - "author": "/u/Zleecah", - "content": "
\"An submitted by /u/Zleecah
[link] [comments]
", - "contentSnippet": "submitted by /u/Zleecah \n [link] [comments]", - "id": "t3_18czzpp", - "isoDate": "2023-12-07T16:57:19.000Z" - }, - { - "title": "Why 2023 was the year of the e-bike and not the self-driving car", - "link": "https://www.reddit.com/r/technology/comments/18cypxr/why_2023_was_the_year_of_the_ebike_and_not_the/", - "pubDate": "2023-12-07T15:59:50.000Z", - "author": "/u/Helicase21", - "content": " submitted by /u/Helicase21
[link] [comments]", - "contentSnippet": "submitted by /u/Helicase21 \n [link] [comments]", - "id": "t3_18cypxr", - "isoDate": "2023-12-07T15:59:50.000Z" - }, - { - "title": "The race to 5G is over \u2014 now it\u2019s time to pay the bill | Networks spent years telling us that 5G would change everything. But the flashiest use cases are nowhere to be found \u2014 and the race to deploy the tech was costly in more ways than one.", - "link": "https://www.reddit.com/r/technology/comments/18cxatz/the_race_to_5g_is_over_now_its_time_to_pay_the/", - "pubDate": "2023-12-07T14:54:13.000Z", - "author": "/u/chrisdh79", - "content": "
\"The submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18cxatz", - "isoDate": "2023-12-07T14:54:13.000Z" - }, - { - "title": "Disinformation is rampant on social media \u2013 a social psychologist explains the tactics used against you", - "link": "https://www.reddit.com/r/technology/comments/18cwqr7/disinformation_is_rampant_on_social_media_a/", - "pubDate": "2023-12-07T14:27:16.000Z", - "author": "/u/Wagamaga", - "content": "
\"Disinformation submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_18cwqr7", - "isoDate": "2023-12-07T14:27:16.000Z" - }, - { - "title": "Rolls Royce plans '120-inch-long' mini nuclear reactor for Moon outpost", - "link": "https://www.reddit.com/r/technology/comments/18cwdo1/rolls_royce_plans_120inchlong_mini_nuclear/", - "pubDate": "2023-12-07T14:09:14.000Z", - "author": "/u/Sorin61", - "content": "
\"Rolls submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18cwdo1", - "isoDate": "2023-12-07T14:09:14.000Z" - }, - { - "title": "Sony Debuts First PS5 Controller For Disabled Gamers", - "link": "https://www.reddit.com/r/technology/comments/18cwahn/sony_debuts_first_ps5_controller_for_disabled/", - "pubDate": "2023-12-07T14:04:51.000Z", - "content": "
\"Sony
[link] [comments]
", - "contentSnippet": "[link] [comments]", - "id": "t3_18cwahn", - "isoDate": "2023-12-07T14:04:51.000Z" - }, - { - "title": "Meta\u2019s new AI image generator was trained on 1.1 billion Instagram and Facebook photos", - "link": "https://www.reddit.com/r/technology/comments/18cus1p/metas_new_ai_image_generator_was_trained_on_11/", - "pubDate": "2023-12-07T12:42:23.000Z", - "author": "/u/thegravity98ms2", - "content": "
\"Meta\u2019s submitted by /u/thegravity98ms2
[link] [comments]
", - "contentSnippet": "submitted by /u/thegravity98ms2 \n [link] [comments]", - "id": "t3_18cus1p", - "isoDate": "2023-12-07T12:42:23.000Z" - }, - { - "title": "Salesforce Signals the Golden Age of Cushy Tech Jobs Is Over", - "link": "https://www.reddit.com/r/technology/comments/18cuaec/salesforce_signals_the_golden_age_of_cushy_tech/", - "pubDate": "2023-12-07T12:12:02.000Z", - "author": "/u/McFatty7", - "content": " submitted by /u/McFatty7
[link] [comments]", - "contentSnippet": "submitted by /u/McFatty7 \n [link] [comments]", - "id": "t3_18cuaec", - "isoDate": "2023-12-07T12:12:02.000Z" - }, - { - "title": "McDonald\u2019s will use Google AI to make sure your fries are fresh, or something", - "link": "https://www.reddit.com/r/technology/comments/18ctoig/mcdonalds_will_use_google_ai_to_make_sure_your/", - "pubDate": "2023-12-07T11:32:53.000Z", - "author": "/u/Upbeat-Interaction13", - "content": "
\"McDonald\u2019s submitted by /u/Upbeat-Interaction13
[link] [comments]
", - "contentSnippet": "submitted by /u/Upbeat-Interaction13 \n [link] [comments]", - "id": "t3_18ctoig", - "isoDate": "2023-12-07T11:32:53.000Z" - }, - { - "title": "Apple co-founder Steve Wozniak to receive Serbian passport, president says", - "link": "https://www.reddit.com/r/technology/comments/18cstew/apple_cofounder_steve_wozniak_to_receive_serbian/", - "pubDate": "2023-12-07T10:33:53.000Z", - "author": "/u/Luka77GOATic", - "content": "
\"Apple submitted by /u/Luka77GOATic
[link] [comments]
", - "contentSnippet": "submitted by /u/Luka77GOATic \n [link] [comments]", - "id": "t3_18cstew", - "isoDate": "2023-12-07T10:33:53.000Z" - }, - { - "title": "Lawsuit says Meta exposes children to exploitation", - "link": "https://www.reddit.com/r/technology/comments/18cscia/lawsuit_says_meta_exposes_children_to_exploitation/", - "pubDate": "2023-12-07T09:59:31.000Z", - "author": "/u/Sorin61", - "content": "
\"Lawsuit submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18cscia", - "isoDate": "2023-12-07T09:59:31.000Z" - }, - { - "title": "Ex-Apple lawyer sentenced to probation for insider trading", - "link": "https://www.reddit.com/r/technology/comments/18dchou/exapple_lawyer_sentenced_to_probation_for_insider/", - "pubDate": "2023-12-08T02:33:58.000Z", - "author": "/u/911_reddit", - "content": " submitted by /u/911_reddit
[link] [comments]", - "contentSnippet": "submitted by /u/911_reddit \n [link] [comments]", - "id": "t3_18dchou", - "isoDate": "2023-12-08T02:33:58.000Z" - }, - { - "title": "UAE\u2019s top AI group vows to phase out Chinese hardware to appease US", - "link": "https://www.reddit.com/r/technology/comments/18cyptl/uaes_top_ai_group_vows_to_phase_out_chinese/", - "pubDate": "2023-12-07T15:59:41.000Z", - "author": "/u/PeteWenzel", - "content": "
\"UAE\u2019s submitted by /u/PeteWenzel
[link] [comments]
", - "contentSnippet": "submitted by /u/PeteWenzel \n [link] [comments]", - "id": "t3_18cyptl", - "isoDate": "2023-12-07T15:59:41.000Z" - }, - { - "title": "Apple has gotten so big it's almost overtaken France's entire stock market", - "link": "https://www.reddit.com/r/technology/comments/18i97vv/apple_has_gotten_so_big_its_almost_overtaken/", - "pubDate": "2023-12-14T13:59:42.000Z", - "author": "/u/Sorin61", - "content": "
\"Apple submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18i97vv", - "isoDate": "2023-12-14T13:59:42.000Z" - }, - { - "title": "800 fake Facebook users amplify Taiwan election interference TikToker", - "link": "https://www.reddit.com/r/technology/comments/18i765q/800_fake_facebook_users_amplify_taiwan_election/", - "pubDate": "2023-12-14T12:03:04.000Z", - "author": "/u/Wagamaga", - "content": "
\"800 submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_18i765q", - "isoDate": "2023-12-14T12:03:04.000Z" - }, - { - "title": "Raytheon to create DARPA's airborne \"wireless internet for energy\"", - "link": "https://www.reddit.com/r/technology/comments/18i6rce/raytheon_to_create_darpas_airborne_wireless/", - "pubDate": "2023-12-14T11:37:25.000Z", - "author": "/u/chrisdh79", - "content": "
\"Raytheon submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18i6rce", - "isoDate": "2023-12-14T11:37:25.000Z" - }, - { - "title": "Mazda to Switch Electricity Fuel to Ammonia", - "link": "https://www.reddit.com/r/technology/comments/18i6h4d/mazda_to_switch_electricity_fuel_to_ammonia/", - "pubDate": "2023-12-14T11:19:22.000Z", - "author": "/u/BurstYourBubbles", - "content": "
\"Mazda submitted by /u/BurstYourBubbles
[link] [comments]
", - "contentSnippet": "submitted by /u/BurstYourBubbles \n [link] [comments]", - "id": "t3_18i6h4d", - "isoDate": "2023-12-14T11:19:22.000Z" - }, - { - "title": "Europe inches closer to insisting gig workers are treated as employees / If it looks like a job, and is supervised like a job, it'll be classified as a job", - "link": "https://www.reddit.com/r/technology/comments/18i4lg9/europe_inches_closer_to_insisting_gig_workers_are/", - "pubDate": "2023-12-14T09:06:22.000Z", - "author": "/u/Sorin61", - "content": "
\"Europe submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18i4lg9", - "isoDate": "2023-12-14T09:06:22.000Z" - }, - { - "title": "Facebook and Instagram Steer Predators to Children, New Mexico Attorney General Alleges in Lawsuit", - "link": "https://www.reddit.com/r/technology/comments/18i40m7/facebook_and_instagram_steer_predators_to/", - "pubDate": "2023-12-14T08:22:15.000Z", - "author": "/u/quil1", - "content": "
\"Facebook submitted by /u/quil1
[link] [comments]
", - "contentSnippet": "submitted by /u/quil1 \n [link] [comments]", - "id": "t3_18i40m7", - "isoDate": "2023-12-14T08:22:15.000Z" - }, - { - "title": "Humana also using AI tool with 90% error rate to deny care, lawsuit claims", - "link": "https://www.reddit.com/r/technology/comments/18i3k2f/humana_also_using_ai_tool_with_90_error_rate_to/", - "pubDate": "2023-12-14T07:49:45.000Z", - "author": "/u/Sorin61", - "content": "
\"Humana submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18i3k2f", - "isoDate": "2023-12-14T07:49:45.000Z" - }, - { - "title": "Etsy is laying off 225 of its workers after 2 years of 'essentially flat' merchandise sales", - "link": "https://www.reddit.com/r/technology/comments/18i0k6o/etsy_is_laying_off_225_of_its_workers_after_2/", - "pubDate": "2023-12-14T04:38:32.000Z", - "author": "/u/XXmynameisNeganXX", - "content": "
\"Etsy submitted by /u/XXmynameisNeganXX
[link] [comments]
", - "contentSnippet": "submitted by /u/XXmynameisNeganXX \n [link] [comments]", - "id": "t3_18i0k6o", - "isoDate": "2023-12-14T04:38:32.000Z" - }, - { - "title": "Trains were designed to break down after third-party repairs, hackers find", - "link": "https://www.reddit.com/r/technology/comments/18i04r1/trains_were_designed_to_break_down_after/", - "pubDate": "2023-12-14T04:13:43.000Z", - "author": "/u/Sorin61", - "content": "
\"Trains submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18i04r1", - "isoDate": "2023-12-14T04:13:43.000Z" - }, - { - "title": "Huge First: Physicists 'Entangle' Individual Molecules With Staggering Precision", - "link": "https://www.reddit.com/r/technology/comments/18hymx2/huge_first_physicists_entangle_individual/", - "pubDate": "2023-12-14T02:52:50.000Z", - "author": "/u/Ssider69", - "content": "
\"Huge submitted by /u/Ssider69
[link] [comments]
", - "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", - "id": "t3_18hymx2", - "isoDate": "2023-12-14T02:52:50.000Z" - }, - { - "title": "Tesla recalls 2 million vehicles to limit use of Autopilot feature after nearly 1,000 crashes", - "link": "https://www.reddit.com/r/technology/comments/18hxiej/tesla_recalls_2_million_vehicles_to_limit_use_of/", - "pubDate": "2023-12-14T01:54:57.000Z", - "author": "/u/OvertimeWr", - "content": "
\"Tesla submitted by /u/OvertimeWr
[link] [comments]
", - "contentSnippet": "submitted by /u/OvertimeWr \n [link] [comments]", - "id": "t3_18hxiej", - "isoDate": "2023-12-14T01:54:57.000Z" - }, - { - "title": "Etsy lays off 225 workers after \u2018essentially flat\u2019 sales, says CEO | Business", - "link": "https://www.reddit.com/r/technology/comments/18hw5mm/etsy_lays_off_225_workers_after_essentially_flat/", - "pubDate": "2023-12-14T00:47:35.000Z", - "author": "/u/Embarrassed-Gap-2835", - "content": "
\"Etsy submitted by /u/Embarrassed-Gap-2835
[link] [comments]
", - "contentSnippet": "submitted by /u/Embarrassed-Gap-2835 \n [link] [comments]", - "id": "t3_18hw5mm", - "isoDate": "2023-12-14T00:47:35.000Z" - }, - { - "title": "Tesla\u2019s trash won\u2019t get picked up as union actions in Sweden escalate", - "link": "https://www.reddit.com/r/technology/comments/18hs55m/teslas_trash_wont_get_picked_up_as_union_actions/", - "pubDate": "2023-12-13T21:48:08.000Z", - "author": "/u/World_of_Warshipgirl", - "content": "
\"Tesla\u2019s submitted by /u/World_of_Warshipgirl
[link] [comments]
", - "contentSnippet": "submitted by /u/World_of_Warshipgirl \n [link] [comments]", - "id": "t3_18hs55m", - "isoDate": "2023-12-13T21:48:08.000Z" - }, - { - "title": "Dropbox spooks users by sending data to OpenAI for AI search features", - "link": "https://www.reddit.com/r/technology/comments/18hqwye/dropbox_spooks_users_by_sending_data_to_openai/", - "pubDate": "2023-12-13T20:54:36.000Z", - "author": "/u/Thalesian", - "content": "
\"Dropbox submitted by /u/Thalesian
[link] [comments]
", - "contentSnippet": "submitted by /u/Thalesian \n [link] [comments]", - "id": "t3_18hqwye", - "isoDate": "2023-12-13T20:54:36.000Z" - }, - { - "title": "Twitch updates sexual content guidelines amid \u2018topless\u2019 meta backlash", - "link": "https://www.reddit.com/r/technology/comments/18hqqy3/twitch_updates_sexual_content_guidelines_amid/", - "pubDate": "2023-12-13T20:47:22.000Z", - "author": "/u/Chicano_Ducky", - "content": "
\"Twitch submitted by /u/Chicano_Ducky
[link] [comments]
", - "contentSnippet": "submitted by /u/Chicano_Ducky \n [link] [comments]", - "id": "t3_18hqqy3", - "isoDate": "2023-12-13T20:47:22.000Z" - }, - { - "title": "FCC votes to ban termination fees for cable and satellite services", - "link": "https://www.reddit.com/r/technology/comments/18hqoi6/fcc_votes_to_ban_termination_fees_for_cable_and/", - "pubDate": "2023-12-13T20:44:29.000Z", - "author": "/u/McFatty7", - "content": "
\"FCC submitted by /u/McFatty7
[link] [comments]
", - "contentSnippet": "submitted by /u/McFatty7 \n [link] [comments]", - "id": "t3_18hqoi6", - "isoDate": "2023-12-13T20:44:29.000Z" - }, - { - "title": "X ad revenue reportedly fell $1.5B this year amid boycotts", - "link": "https://www.reddit.com/r/technology/comments/18hqb66/x_ad_revenue_reportedly_fell_15b_this_year_amid/", - "pubDate": "2023-12-13T20:28:14.000Z", - "author": "/u/marketrent", - "content": "
\"X submitted by /u/marketrent
[link] [comments]
", - "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", - "id": "t3_18hqb66", - "isoDate": "2023-12-13T20:28:14.000Z" - }, - { - "title": "Tesla recalls more than 2 million cars over autopilot safety concerns", - "link": "https://www.reddit.com/r/technology/comments/18hp70b/tesla_recalls_more_than_2_million_cars_over/", - "pubDate": "2023-12-13T19:40:19.000Z", - "author": "/u/justin_quinnn", - "content": "
\"Tesla submitted by /u/justin_quinnn
[link] [comments]
", - "contentSnippet": "submitted by /u/justin_quinnn \n [link] [comments]", - "id": "t3_18hp70b", - "isoDate": "2023-12-13T19:40:19.000Z" - }, - { - "title": "X outage breaks all outgoing links, again", - "link": "https://www.reddit.com/r/technology/comments/18hoewz/x_outage_breaks_all_outgoing_links_again/", - "pubDate": "2023-12-13T19:06:40.000Z", - "author": "/u/lordatlas", - "content": "
\"X submitted by /u/lordatlas
[link] [comments]
", - "contentSnippet": "submitted by /u/lordatlas \n [link] [comments]", - "id": "t3_18hoewz", - "isoDate": "2023-12-13T19:06:40.000Z" - }, - { - "title": "Elon Musk\u2019s New Monkey Death Claims Spur Fresh Demands for an SEC Investigation", - "link": "https://www.reddit.com/r/technology/comments/18hmtnw/elon_musks_new_monkey_death_claims_spur_fresh/", - "pubDate": "2023-12-13T17:59:21.000Z", - "author": "/u/OldSamSays", - "content": "
\"Elon submitted by /u/OldSamSays
[link] [comments]
", - "contentSnippet": "submitted by /u/OldSamSays \n [link] [comments]", - "id": "t3_18hmtnw", - "isoDate": "2023-12-13T17:59:21.000Z" - }, - { - "title": "Bell Media, Angus Reid and other Canadian brands halt ads on X amid extremism concerns", - "link": "https://www.reddit.com/r/technology/comments/18hmpya/bell_media_angus_reid_and_other_canadian_brands/", - "pubDate": "2023-12-13T17:54:57.000Z", - "author": "/u/LeBoulu777", - "content": "
\"Bell submitted by /u/LeBoulu777
[link] [comments]
", - "contentSnippet": "submitted by /u/LeBoulu777 \n [link] [comments]", - "id": "t3_18hmpya", - "isoDate": "2023-12-13T17:54:57.000Z" - }, - { - "title": "Polish Hackers Repaired Trains the Manufacturer Artificially Bricked. Now The Train Company Is Threatening Them", - "link": "https://www.reddit.com/r/technology/comments/18hm90c/polish_hackers_repaired_trains_the_manufacturer/", - "pubDate": "2023-12-13T17:35:18.000Z", - "author": "/u/NoPriorThreat", - "content": "
\"Polish submitted by /u/NoPriorThreat
[link] [comments]
", - "contentSnippet": "submitted by /u/NoPriorThreat \n [link] [comments]", - "id": "t3_18hm90c", - "isoDate": "2023-12-13T17:35:18.000Z" - }, - { - "title": "Ford's CEO says he definitely didn't pay for that viral video of a stuck Cybertruck needing a rescue on a snowy hill", - "link": "https://www.reddit.com/r/technology/comments/18hlsm0/fords_ceo_says_he_definitely_didnt_pay_for_that/", - "pubDate": "2023-12-13T17:16:31.000Z", - "author": "/u/Sorin61", - "content": " submitted by /u/Sorin61
[link] [comments]", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18hlsm0", - "isoDate": "2023-12-13T17:16:31.000Z" - }, - { - "title": "Threads is getting its own fact-checkers to combat misinformation", - "link": "https://www.reddit.com/r/technology/comments/18hlk32/threads_is_getting_its_own_factcheckers_to_combat/", - "pubDate": "2023-12-13T17:06:37.000Z", - "author": "/u/Wagamaga", - "content": "
\"Threads submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_18hlk32", - "isoDate": "2023-12-13T17:06:37.000Z" - }, - { - "title": "NASA's Voyager probe stopped communicating. There's no quick fix.", - "link": "https://www.reddit.com/r/technology/comments/18hkruy/nasas_voyager_probe_stopped_communicating_theres/", - "pubDate": "2023-12-13T16:34:06.000Z", - "author": "/u/alexsms111", - "content": "
\"NASA's submitted by /u/alexsms111
[link] [comments]
", - "contentSnippet": "submitted by /u/alexsms111 \n [link] [comments]", - "id": "t3_18hkruy", - "isoDate": "2023-12-13T16:34:06.000Z" - }, - { - "title": "YouTube Video Recommendations Lead to More Extremist Content for Right-Leaning Users, Researchers Suggest", - "link": "https://www.reddit.com/r/technology/comments/18iytvs/youtube_video_recommendations_lead_to_more/", - "pubDate": "2023-12-15T12:19:27.000Z", - "author": "/u/chrisdh79", - "content": "
\"YouTube submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18iytvs", - "isoDate": "2023-12-15T12:19:27.000Z" - }, - { - "title": "Nvidia's success is making some now-wealthy employees complacent | Why work hard when you're sitting on a fortune in stock?", - "link": "https://www.reddit.com/r/technology/comments/18iypv0/nvidias_success_is_making_some_nowwealthy/", - "pubDate": "2023-12-15T12:12:18.000Z", - "author": "/u/chrisdh79", - "content": "
\"Nvidia's submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18iypv0", - "isoDate": "2023-12-15T12:12:18.000Z" - }, - { - "title": "Nvidia's employees are suddenly so rich and happy that the company's got a 'semi retirement' problem, insiders say", - "link": "https://www.reddit.com/r/technology/comments/18iww2e/nvidias_employees_are_suddenly_so_rich_and_happy/", - "pubDate": "2023-12-15T10:12:59.000Z", - "author": "/u/Sorin61", - "content": " submitted by /u/Sorin61
[link] [comments]", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18iww2e", - "isoDate": "2023-12-15T10:12:59.000Z" - }, - { - "title": "Suspects can refuse to provide phone passcodes to police, court rules", - "link": "https://www.reddit.com/r/technology/comments/18ivj1k/suspects_can_refuse_to_provide_phone_passcodes_to/", - "pubDate": "2023-12-15T08:31:50.000Z", - "author": "/u/Sorin61", - "content": "
\"Suspects submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18ivj1k", - "isoDate": "2023-12-15T08:31:50.000Z" - }, - { - "title": "Proton Mail founder vows to fight Australia\u2019s eSafety regulator in court rather than spy on users", - "link": "https://www.reddit.com/r/technology/comments/18iri11/proton_mail_founder_vows_to_fight_australias/", - "pubDate": "2023-12-15T04:13:57.000Z", - "author": "/u/Bob_Spud", - "content": "
\"Proton submitted by /u/Bob_Spud
[link] [comments]
", - "contentSnippet": "submitted by /u/Bob_Spud \n [link] [comments]", - "id": "t3_18iri11", - "isoDate": "2023-12-15T04:13:57.000Z" - }, - { - "title": "Carriers told that customer data needs to be protected", - "link": "https://www.reddit.com/r/technology/comments/18ipou4/carriers_told_that_customer_data_needs_to_be/", - "pubDate": "2023-12-15T02:36:52.000Z", - "author": "/u/barweis", - "content": "
\"Carriers submitted by /u/barweis
[link] [comments]
", - "contentSnippet": "submitted by /u/barweis \n [link] [comments]", - "id": "t3_18ipou4", - "isoDate": "2023-12-15T02:36:52.000Z" - }, - { - "title": "Pirate Site Blocking Demands Intensify as U.S. Lawmakers Get Fmovies Walkthrough", - "link": "https://www.reddit.com/r/technology/comments/18ipew7/pirate_site_blocking_demands_intensify_as_us/", - "pubDate": "2023-12-15T02:22:08.000Z", - "author": "/u/Nugundam446", - "content": " submitted by /u/Nugundam446
[link] [comments]", - "contentSnippet": "submitted by /u/Nugundam446 \n [link] [comments]", - "id": "t3_18ipew7", - "isoDate": "2023-12-15T02:22:08.000Z" - }, - { - "title": "FBI gets at least four more months of Section 702 snooping | Congress renews warrantless spying tool scribbled on back of huge check for the Pentagon", - "link": "https://www.reddit.com/r/technology/comments/18ino52/fbi_gets_at_least_four_more_months_of_section_702/", - "pubDate": "2023-12-15T00:52:42.000Z", - "author": "/u/chrisdh79", - "content": "
\"FBI submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ino52", - "isoDate": "2023-12-15T00:52:42.000Z" - }, - { - "title": "Twitch allowing more nudity after disproportionately banning female streamers | Twitch confirmed its policy banning nudity was sexist.", - "link": "https://www.reddit.com/r/technology/comments/18in33h/twitch_allowing_more_nudity_after/", - "pubDate": "2023-12-15T00:23:57.000Z", - "author": "/u/chrisdh79", - "content": "
\"Twitch submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18in33h", - "isoDate": "2023-12-15T00:23:57.000Z" - }, - { - "title": "Voyager 1 stops communicating with Earth due to computer issue", - "link": "https://www.reddit.com/r/technology/comments/18iljf5/voyager_1_stops_communicating_with_earth_due_to/", - "pubDate": "2023-12-14T23:11:24.000Z", - "author": "/u/aceraspire8920", - "content": "
\"Voyager submitted by /u/aceraspire8920
[link] [comments]
", - "contentSnippet": "submitted by /u/aceraspire8920 \n [link] [comments]", - "id": "t3_18iljf5", - "isoDate": "2023-12-14T23:11:24.000Z" - }, - { - "title": "SpaceX blasts FCC as it refuses to reinstate Starlink\u2019s $886 million grant", - "link": "https://www.reddit.com/r/technology/comments/18ilesi/spacex_blasts_fcc_as_it_refuses_to_reinstate/", - "pubDate": "2023-12-14T23:05:32.000Z", - "author": "/u/Sapere_aude75", - "content": "
\"SpaceX submitted by /u/Sapere_aude75
[link] [comments]
", - "contentSnippet": "submitted by /u/Sapere_aude75 \n [link] [comments]", - "id": "t3_18ilesi", - "isoDate": "2023-12-14T23:05:32.000Z" - }, - { - "title": "Apple\u2019s MacBook Pro memory problem is worse than ever", - "link": "https://www.reddit.com/r/technology/comments/18il5kp/apples_macbook_pro_memory_problem_is_worse_than/", - "pubDate": "2023-12-14T22:54:42.000Z", - "author": "/u/aacool", - "content": "
\"Apple\u2019s submitted by /u/aacool
[link] [comments]
", - "contentSnippet": "submitted by /u/aacool \n [link] [comments]", - "id": "t3_18il5kp", - "isoDate": "2023-12-14T22:54:42.000Z" - }, - { - "title": "ChatGPT did not increase cheating in high schools, Stanford researchers find", - "link": "https://www.reddit.com/r/technology/comments/18ik4ib/chatgpt_did_not_increase_cheating_in_high_schools/", - "pubDate": "2023-12-14T22:09:48.000Z", - "author": "/u/ubcstaffer123", - "content": "
\"ChatGPT submitted by /u/ubcstaffer123
[link] [comments]
", - "contentSnippet": "submitted by /u/ubcstaffer123 \n [link] [comments]", - "id": "t3_18ik4ib", - "isoDate": "2023-12-14T22:09:48.000Z" - }, - { - "title": "Four years after Apple, Google will finally kill third-party cookies in 2024", - "link": "https://www.reddit.com/r/technology/comments/18iizv5/four_years_after_apple_google_will_finally_kill/", - "pubDate": "2023-12-14T21:19:51.000Z", - "author": "/u/Stiltonrocks", - "content": "
\"Four submitted by /u/Stiltonrocks
[link] [comments]
", - "contentSnippet": "submitted by /u/Stiltonrocks \n [link] [comments]", - "id": "t3_18iizv5", - "isoDate": "2023-12-14T21:19:51.000Z" - }, - { - "title": "Tesla recalls nearly all US vehicles over autopilot system defects", - "link": "https://www.reddit.com/r/technology/comments/18igf72/tesla_recalls_nearly_all_us_vehicles_over/", - "pubDate": "2023-12-14T19:25:06.000Z", - "author": "/u/tyw7", - "content": "
\"Tesla submitted by /u/tyw7
[link] [comments]
", - "contentSnippet": "submitted by /u/tyw7 \n [link] [comments]", - "id": "t3_18igf72", - "isoDate": "2023-12-14T19:25:06.000Z" - }, - { - "title": "Google Will Turn Off Cookies for 30 Million People on January 4", - "link": "https://www.reddit.com/r/technology/comments/18ig57b/google_will_turn_off_cookies_for_30_million/", - "pubDate": "2023-12-14T19:12:41.000Z", - "author": "/u/l30", - "content": "
\"Google submitted by /u/l30
[link] [comments]
", - "contentSnippet": "submitted by /u/l30 \n [link] [comments]", - "id": "t3_18ig57b", - "isoDate": "2023-12-14T19:12:41.000Z" - }, - { - "title": "Cable lobby and Republicans fight proposed ban on early termination fees / Customers should be allowed to cancel cable TV without penalty, Democrats say", - "link": "https://www.reddit.com/r/technology/comments/18ierbm/cable_lobby_and_republicans_fight_proposed_ban_on/", - "pubDate": "2023-12-14T18:10:52.000Z", - "author": "/u/Sorin61", - "content": "
\"Cable submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18ierbm", - "isoDate": "2023-12-14T18:10:52.000Z" - }, - { - "title": "The Most Dangerous Canadian Internet Bill You\u2019ve Never Heard Of Is a Step Closer to Becoming Law", - "link": "https://www.reddit.com/r/technology/comments/18iehtd/the_most_dangerous_canadian_internet_bill_youve/", - "pubDate": "2023-12-14T18:00:00.000Z", - "content": "
\"The
[link] [comments]
", - "contentSnippet": "[link] [comments]", - "id": "t3_18iehtd", - "isoDate": "2023-12-14T18:00:00.000Z" - }, - { - "title": "Adobe warns it may face massive fines for subscription rules", - "link": "https://www.reddit.com/r/technology/comments/18ickq4/adobe_warns_it_may_face_massive_fines_for/", - "pubDate": "2023-12-14T16:35:34.000Z", - "author": "/u/giuliomagnifico", - "content": "
\"Adobe submitted by /u/giuliomagnifico
[link] [comments]
", - "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", - "id": "t3_18ickq4", - "isoDate": "2023-12-14T16:35:34.000Z" - }, - { - "title": "YouTube will have fewer ad breaks on TV \u2014 but the ads are getting longer | You\u2019re going to start seeing ads in between Shorts on TV, too.", - "link": "https://www.reddit.com/r/technology/comments/18ibzfb/youtube_will_have_fewer_ad_breaks_on_tv_but_the/", - "pubDate": "2023-12-14T16:08:56.000Z", - "author": "/u/chrisdh79", - "content": "
\"YouTube submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ibzfb", - "isoDate": "2023-12-14T16:08:56.000Z" - }, - { - "title": "Verizon fell for fake \u201csearch warrant,\u201d gave victim\u2019s phone data to stalker", - "link": "https://www.reddit.com/r/technology/comments/18ibxqi/verizon_fell_for_fake_search_warrant_gave_victims/", - "pubDate": "2023-12-14T16:06:46.000Z", - "author": "/u/AgentBlue62", - "content": "
\"Verizon submitted by /u/AgentBlue62
[link] [comments]
", - "contentSnippet": "submitted by /u/AgentBlue62 \n [link] [comments]", - "id": "t3_18ibxqi", - "isoDate": "2023-12-14T16:06:46.000Z" - }, - { - "title": "Adobe faces big fines from FTC over difficult subscription cancellation", - "link": "https://www.reddit.com/r/technology/comments/18ibe5m/adobe_faces_big_fines_from_ftc_over_difficult/", - "pubDate": "2023-12-14T15:41:41.000Z", - "author": "/u/chrisdh79", - "content": "
\"Adobe submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ibe5m", - "isoDate": "2023-12-14T15:41:41.000Z" - }, - { - "title": "San Fran tech founder is accused of forcing his assistant into a 'slave contract' that called him 'Master' before trafficking her for sex around the world", - "link": "https://www.reddit.com/r/technology/comments/18ia74v/san_fran_tech_founder_is_accused_of_forcing_his/", - "pubDate": "2023-12-14T14:46:10.000Z", - "author": "/u/seekingpolaris", - "content": "
\"San submitted by /u/seekingpolaris
[link] [comments]
", - "contentSnippet": "submitted by /u/seekingpolaris \n [link] [comments]", - "id": "t3_18ia74v", - "isoDate": "2023-12-14T14:46:10.000Z" - }, - { - "title": "Dropbox spooks users with new AI features that send data to OpenAI when used", - "link": "https://www.reddit.com/r/technology/comments/18ia4cu/dropbox_spooks_users_with_new_ai_features_that/", - "pubDate": "2023-12-14T14:42:22.000Z", - "author": "/u/ourlifeintoronto", - "content": "
\"Dropbox submitted by /u/ourlifeintoronto
[link] [comments]
", - "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", - "id": "t3_18ia4cu", - "isoDate": "2023-12-14T14:42:22.000Z" - }, - { - "title": "Pope, once a victim of AI-generated imagery, calls for treaty to regulate artificial intelligence", - "link": "https://www.reddit.com/r/technology/comments/18i9ovc/pope_once_a_victim_of_aigenerated_imagery_calls/", - "pubDate": "2023-12-14T14:22:36.000Z", - "author": "/u/ethereal3xp", - "content": "
\"Pope, submitted by /u/ethereal3xp
[link] [comments]
", - "contentSnippet": "submitted by /u/ethereal3xp \n [link] [comments]", - "id": "t3_18i9ovc", - "isoDate": "2023-12-14T14:22:36.000Z" - }, - { - "title": "Microsoft\u2019s AI Chatbot Replies to Election Questions With Conspiracies, Fake Scandals, and Lies", - "link": "https://www.reddit.com/r/technology/comments/18iz5cl/microsofts_ai_chatbot_replies_to_election/", - "pubDate": "2023-12-15T12:38:10.000Z", - "author": "/u/Chobeat", - "content": "
\"Microsoft\u2019s submitted by /u/Chobeat
[link] [comments]
", - "contentSnippet": "submitted by /u/Chobeat \n [link] [comments]", - "id": "t3_18iz5cl", - "isoDate": "2023-12-15T12:38:10.000Z" - }, - { - "title": "GM to lay off 1,300 Michigan workers as vehicles end production", - "link": "https://www.reddit.com/r/technology/comments/18iz46g/gm_to_lay_off_1300_michigan_workers_as_vehicles/", - "pubDate": "2023-12-15T12:36:16.000Z", - "author": "/u/craywelp", - "content": "
\"GM submitted by /u/craywelp
[link] [comments]
", - "contentSnippet": "submitted by /u/craywelp \n [link] [comments]", - "id": "t3_18iz46g", - "isoDate": "2023-12-15T12:36:16.000Z" - }, - { - "title": "The Contentious Surveillance Law Making Waves in Washington: Why a regulation created to help U.S. intelligence agencies fight terror has become a political football", - "link": "https://www.reddit.com/r/technology/comments/18ib6re/the_contentious_surveillance_law_making_waves_in/", - "pubDate": "2023-12-14T15:31:52.000Z", - "author": "/u/E-Gaming", - "content": "
\"The submitted by /u/E-Gaming
[link] [comments]
", - "contentSnippet": "submitted by /u/E-Gaming \n [link] [comments]", - "id": "t3_18ib6re", - "isoDate": "2023-12-14T15:31:52.000Z" - }, - { - "title": "Jeff Bezos plays down AI dangers and says a trillion humans could live in huge cylindrical space stations", - "link": "https://www.reddit.com/r/technology/comments/18j0oli/jeff_bezos_plays_down_ai_dangers_and_says_a/", - "pubDate": "2023-12-15T13:57:21.000Z", - "author": "/u/Sorin61", - "content": "
\"Jeff submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18j0oli", - "isoDate": "2023-12-15T13:57:21.000Z" - }, - { - "title": "Meta ad policy allowing 2020 election denial followed warning of political backlash, sources say", - "link": "https://www.reddit.com/r/technology/comments/18iji6j/meta_ad_policy_allowing_2020_election_denial/", - "pubDate": "2023-12-14T21:42:36.000Z", - "author": "/u/esporx", - "content": "
\"Meta submitted by /u/esporx
[link] [comments]
", - "contentSnippet": "submitted by /u/esporx \n [link] [comments]", - "id": "t3_18iji6j", - "isoDate": "2023-12-14T21:42:36.000Z" - }, - { - "title": "What\u2019s Left Of Cable TV Is Slowly Going To Hell", - "link": "https://www.reddit.com/r/technology/comments/18j1y65/whats_left_of_cable_tv_is_slowly_going_to_hell/", - "pubDate": "2023-12-15T14:57:19.000Z", - "author": "/u/Sorin61", - "content": "
\"What\u2019s submitted by /u/Sorin61
[link] [comments]
", - "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", - "id": "t3_18j1y65", - "isoDate": "2023-12-15T14:57:19.000Z" - }, - { - "title": "Amazon tests space laser to transmit internet, aims 3,236 satellite web | Project Kuiper seeks to deploy a swarm of small satellites into low Earth orbit (LEO) to enhance global broadband access, particularly to remote locations of the planet.", - "link": "https://www.reddit.com/r/technology/comments/18iye14/amazon_tests_space_laser_to_transmit_internet/", - "pubDate": "2023-12-15T11:51:55.000Z", - "author": "/u/chrisdh79", - "content": "
\"Amazon submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18iye14", - "isoDate": "2023-12-15T11:51:55.000Z" - }, - { - "title": "Marketing Company Claims That It Actually Is Listening to Your Phone and Smart Speakers to Target Ads", - "link": "https://www.reddit.com/r/technology/comments/18ipc6f/marketing_company_claims_that_it_actually_is/", - "pubDate": "2023-12-15T02:18:14.000Z", - "author": "/u/457655676", - "content": "
\"Marketing submitted by /u/457655676
[link] [comments]
", - "contentSnippet": "submitted by /u/457655676 \n [link] [comments]", - "id": "t3_18ipc6f", - "isoDate": "2023-12-15T02:18:14.000Z" - }, - { - "title": "How Lab-Grown Chicken Became Another Expensive Silicon Valley Mess", - "link": "https://www.reddit.com/r/technology/comments/18iek71/how_labgrown_chicken_became_another_expensive/", - "pubDate": "2023-12-14T18:02:25.000Z", - "author": "/u/Fun-Mail5667", - "content": "
\"How submitted by /u/Fun-Mail5667
[link] [comments]
", - "contentSnippet": "submitted by /u/Fun-Mail5667 \n [link] [comments]", - "id": "t3_18iek71", - "isoDate": "2023-12-14T18:02:25.000Z" - }, - { - "title": "Twitch immediately rescinds its artistic nudity policy", - "link": "https://www.reddit.com/r/technology/comments/18j4ncp/twitch_immediately_rescinds_its_artistic_nudity/", - "pubDate": "2023-12-15T16:57:42.000Z", - "author": "/u/Thelk641", - "content": "
\"Twitch submitted by /u/Thelk641
[link] [comments]
", - "contentSnippet": "submitted by /u/Thelk641 \n [link] [comments]", - "id": "t3_18j4ncp", - "isoDate": "2023-12-15T16:57:42.000Z" - }, - { - "title": "Ubisoft delists The Crew, with servers shutting next year | Due to infrastructure and licensing constraints.", - "link": "https://www.reddit.com/r/technology/comments/18iza5a/ubisoft_delists_the_crew_with_servers_shutting/", - "pubDate": "2023-12-15T12:45:40.000Z", - "author": "/u/chrisdh79", - "content": "
\"Ubisoft submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18iza5a", - "isoDate": "2023-12-15T12:45:40.000Z" - }, - { - "title": "Starbucks accused of rigging payments in app for nearly $900 million gain over 5 years by consumer watchdog group", - "link": "https://www.reddit.com/r/technology/comments/18y4fm2/starbucks_accused_of_rigging_payments_in_app_for/", - "pubDate": "2024-01-04T04:39:55.000Z", - "author": "/u/habichuelacondulce", - "content": "
\"Starbucks submitted by /u/habichuelacondulce
[link] [comments]
", - "contentSnippet": "submitted by /u/habichuelacondulce \n [link] [comments]", - "id": "t3_18y4fm2", - "isoDate": "2024-01-04T04:39:55.000Z" - }, - { - "title": "SpaceX accused of unlawfully firing staff critical of CEO", - "link": "https://www.reddit.com/r/technology/comments/18y29f0/spacex_accused_of_unlawfully_firing_staff/", - "pubDate": "2024-01-04T02:51:53.000Z", - "author": "/u/etfvpu", - "content": "
\"SpaceX submitted by /u/etfvpu
[link] [comments]
", - "contentSnippet": "submitted by /u/etfvpu \n [link] [comments]", - "id": "t3_18y29f0", - "isoDate": "2024-01-04T02:51:53.000Z" - }, - { - "title": "New AI model can predict human lifespan, researchers say. They want to make sure it's used for good", - "link": "https://www.reddit.com/r/technology/comments/18xyu6e/new_ai_model_can_predict_human_lifespan/", - "pubDate": "2024-01-04T00:19:09.000Z", - "author": "/u/rchaudhary", - "content": "
\"New submitted by /u/rchaudhary
[link] [comments]
", - "contentSnippet": "submitted by /u/rchaudhary \n [link] [comments]", - "id": "t3_18xyu6e", - "isoDate": "2024-01-04T00:19:09.000Z" - }, - { - "title": "Amazon marketplace crackdown has sellers searching for legal help | Clean-up drive has led to some small businesses having their accounts suspended", - "link": "https://www.reddit.com/r/technology/comments/18xv2kl/amazon_marketplace_crackdown_has_sellers/", - "pubDate": "2024-01-03T21:45:44.000Z", - "author": "/u/Hrmbee", - "content": "
\"Amazon submitted by /u/Hrmbee
[link] [comments]
", - "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", - "id": "t3_18xv2kl", - "isoDate": "2024-01-03T21:45:44.000Z" - }, - { - "title": "Cox Distances Itself From Claim It Spies On Users Via Phones, Cable Box Mics", - "link": "https://www.reddit.com/r/technology/comments/18xukw0/cox_distances_itself_from_claim_it_spies_on_users/", - "pubDate": "2024-01-03T21:25:47.000Z", - "author": "/u/TommyAdagio", - "content": "
\"Cox submitted by /u/TommyAdagio
[link] [comments]
", - "contentSnippet": "submitted by /u/TommyAdagio \n [link] [comments]", - "id": "t3_18xukw0", - "isoDate": "2024-01-03T21:25:47.000Z" - }, - { - "title": "Data breach at healthcare tech firm impacts 4.5 million patients", - "link": "https://www.reddit.com/r/technology/comments/18xuksj/data_breach_at_healthcare_tech_firm_impacts_45/", - "pubDate": "2024-01-03T21:25:40.000Z", - "author": "/u/Hrmbee", - "content": "
\"Data submitted by /u/Hrmbee
[link] [comments]
", - "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", - "id": "t3_18xuksj", - "isoDate": "2024-01-03T21:25:40.000Z" - }, - { - "title": "Republicans Trying To Kill Program That Brings Affordable Broadband To The Poor", - "link": "https://www.reddit.com/r/technology/comments/18xubez/republicans_trying_to_kill_program_that_brings/", - "pubDate": "2024-01-03T21:15:17.000Z", - "author": "/u/audiomuse1", - "content": "
\"Republicans submitted by /u/audiomuse1
[link] [comments]
", - "contentSnippet": "submitted by /u/audiomuse1 \n [link] [comments]", - "id": "t3_18xubez", - "isoDate": "2024-01-03T21:15:17.000Z" - }, - { - "title": "Pornhub boycotts markets in 2 more states over age verification laws", - "link": "https://www.reddit.com/r/technology/comments/18xshjo/pornhub_boycotts_markets_in_2_more_states_over/", - "pubDate": "2024-01-03T20:00:55.000Z", - "author": "/u/BurstYourBubbles", - "content": "
\"Pornhub submitted by /u/BurstYourBubbles
[link] [comments]
", - "contentSnippet": "submitted by /u/BurstYourBubbles \n [link] [comments]", - "id": "t3_18xshjo", - "isoDate": "2024-01-03T20:00:55.000Z" - }, - { - "title": "Facebook\u2019s New Privacy Nightmare: \u2018Link History\u2019", - "link": "https://www.reddit.com/r/technology/comments/18xsdum/facebooks_new_privacy_nightmare_link_history/", - "pubDate": "2024-01-03T19:56:54.000Z", - "author": "/u/CrankyBear", - "content": "
\"Facebook\u2019s submitted by /u/CrankyBear
[link] [comments]
", - "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", - "id": "t3_18xsdum", - "isoDate": "2024-01-03T19:56:54.000Z" - }, - { - "title": "What's next for Mozilla?", - "link": "https://www.reddit.com/r/technology/comments/18xs7b7/whats_next_for_mozilla/", - "pubDate": "2024-01-03T19:49:35.000Z", - "author": "/u/CrankyBear", - "content": "
\"What's submitted by /u/CrankyBear
[link] [comments]
", - "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", - "id": "t3_18xs7b7", - "isoDate": "2024-01-03T19:49:35.000Z" - }, - { - "title": "Superconductors: Possible Meissner effect near room temperature in copper-substituted lead apatite", - "link": "https://www.reddit.com/r/technology/comments/18xrz5q/superconductors_possible_meissner_effect_near/", - "pubDate": "2024-01-03T19:40:37.000Z", - "author": "/u/smurfkill12", - "content": " submitted by /u/smurfkill12
[link] [comments]", - "contentSnippet": "submitted by /u/smurfkill12 \n [link] [comments]", - "id": "t3_18xrz5q", - "isoDate": "2024-01-03T19:40:37.000Z" - }, - { - "title": "Everyone is on their phones. But is it really phone addiction we\u2019re experiencing?", - "link": "https://www.reddit.com/r/technology/comments/18xqc2y/everyone_is_on_their_phones_but_is_it_really/", - "pubDate": "2024-01-03T18:36:19.000Z", - "author": "/u/Wagamaga", - "content": "
\"Everyone submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_18xqc2y", - "isoDate": "2024-01-03T18:36:19.000Z" - }, - { - "title": "23andMe tells victims it's their fault that their data was breached", - "link": "https://www.reddit.com/r/technology/comments/18xq5a0/23andme_tells_victims_its_their_fault_that_their/", - "pubDate": "2024-01-03T18:28:40.000Z", - "author": "/u/kendumez", - "content": "
\"23andMe submitted by /u/kendumez
[link] [comments]
", - "contentSnippet": "submitted by /u/kendumez \n [link] [comments]", - "id": "t3_18xq5a0", - "isoDate": "2024-01-03T18:28:40.000Z" - }, - { - "title": "Kids Online Safety Shouldn\u2019t Require Massive Online Censorship and Surveillance: 2023 Year in Review.", - "link": "https://www.reddit.com/r/technology/comments/18xp4p0/kids_online_safety_shouldnt_require_massive/", - "pubDate": "2024-01-03T17:47:58.000Z", - "author": "/u/EmptySpaceForAHeart", - "content": "
\"Kids submitted by /u/EmptySpaceForAHeart
[link] [comments]
", - "contentSnippet": "submitted by /u/EmptySpaceForAHeart \n [link] [comments]", - "id": "t3_18xp4p0", - "isoDate": "2024-01-03T17:47:58.000Z" - }, - { - "title": "Amazon Video Ad Push Seen Generating Extra $5 Billion in Revenue", - "link": "https://www.reddit.com/r/technology/comments/18xoxsp/amazon_video_ad_push_seen_generating_extra_5/", - "pubDate": "2024-01-03T17:40:16.000Z", - "author": "/u/giuliomagnifico", - "content": "
\"Amazon submitted by /u/giuliomagnifico
[link] [comments]
", - "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", - "id": "t3_18xoxsp", - "isoDate": "2024-01-03T17:40:16.000Z" - }, - { - "title": "Notorious Airbnb Host Charged with Allegedly Running $8.5M Nationwide Scam | Shray Goel is charged with running an Airbnb scam across 100 U.S. properties.", - "link": "https://www.reddit.com/r/technology/comments/18xo3e7/notorious_airbnb_host_charged_with_allegedly/", - "pubDate": "2024-01-03T17:04:00.000Z", - "author": "/u/chrisdh79", - "content": "
\"Notorious submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18xo3e7", - "isoDate": "2024-01-03T17:04:00.000Z" - }, - { - "title": "Big carmakers lobbied UK to weaken or delay electric car rules", - "link": "https://www.reddit.com/r/technology/comments/18xmunm/big_carmakers_lobbied_uk_to_weaken_or_delay/", - "pubDate": "2024-01-03T16:05:23.000Z", - "author": "/u/Wagamaga", - "content": "
\"Big submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_18xmunm", - "isoDate": "2024-01-03T16:05:23.000Z" - }, - { - "title": "Ex-Samsung employee indicted for alleged chip tech leak to Chinese firm", - "link": "https://www.reddit.com/r/technology/comments/18xks0y/exsamsung_employee_indicted_for_alleged_chip_tech/", - "pubDate": "2024-01-03T14:33:34.000Z", - "author": "/u/Saltedline", - "content": "
\"Ex-Samsung submitted by /u/Saltedline
[link] [comments]
", - "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", - "id": "t3_18xks0y", - "isoDate": "2024-01-03T14:33:34.000Z" - }, - { - "title": "Fidelity marks down X valuation by 71.5%", - "link": "https://www.reddit.com/r/technology/comments/18xkotx/fidelity_marks_down_x_valuation_by_715/", - "pubDate": "2024-01-03T14:29:40.000Z", - "author": "/u/marketrent", - "content": "
\"Fidelity submitted by /u/marketrent
[link] [comments]
", - "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", - "id": "t3_18xkotx", - "isoDate": "2024-01-03T14:29:40.000Z" - }, - { - "title": "Social media companies made $11 billion in US ad revenue from minors, Harvard study finds", - "link": "https://www.reddit.com/r/technology/comments/18xkeh5/social_media_companies_made_11_billion_in_us_ad/", - "pubDate": "2024-01-03T14:16:26.000Z", - "author": "/u/outerworldLV", - "content": "
\"Social submitted by /u/outerworldLV
[link] [comments]
", - "contentSnippet": "submitted by /u/outerworldLV \n [link] [comments]", - "id": "t3_18xkeh5", - "isoDate": "2024-01-03T14:16:26.000Z" - }, - { - "title": "Vizio settles for $3M after saying 60 Hz TVs had 120 Hz \u201ceffective refresh rate\u201d | Vizio claimed backlight scanning made refresh rates seem twice as high.", - "link": "https://www.reddit.com/r/technology/comments/18xk0xk/vizio_settles_for_3m_after_saying_60_hz_tvs_had/", - "pubDate": "2024-01-03T13:58:59.000Z", - "author": "/u/chrisdh79", - "content": "
\"Vizio submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18xk0xk", - "isoDate": "2024-01-03T13:58:59.000Z" - }, - { - "title": "William Wallace: The Tesla recall tells us we can't trust the company", - "link": "https://www.reddit.com/r/technology/comments/18xjm93/william_wallace_the_tesla_recall_tells_us_we_cant/", - "pubDate": "2024-01-03T13:39:15.000Z", - "author": "/u/andricx", - "content": "
\"William submitted by /u/andricx
[link] [comments]
", - "contentSnippet": "submitted by /u/andricx \n [link] [comments]", - "id": "t3_18xjm93", - "isoDate": "2024-01-03T13:39:15.000Z" - }, - { - "title": "A New Year\u2019s resolution for tech companies: knock it off with the CAPTCHAs", - "link": "https://www.reddit.com/r/technology/comments/18xig0y/a_new_years_resolution_for_tech_companies_knock/", - "pubDate": "2024-01-03T12:37:30.000Z", - "author": "/u/Franco1875", - "content": "
\"A submitted by /u/Franco1875
[link] [comments]
", - "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", - "id": "t3_18xig0y", - "isoDate": "2024-01-03T12:37:30.000Z" - }, - { - "title": "Pornhub blocks Montana and North Carolina as their age verification laws take effect | The website says the states' ID requirement would put users' privacy at risk", - "link": "https://www.reddit.com/r/technology/comments/18xhfm1/pornhub_blocks_montana_and_north_carolina_as/", - "pubDate": "2024-01-03T11:39:28.000Z", - "author": "/u/chrisdh79", - "content": "
\"Pornhub submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18xhfm1", - "isoDate": "2024-01-03T11:39:28.000Z" - }, - { - "title": "A 13-year-old is the first human to beat Tetris | Numerous theoretical milestones remain", - "link": "https://www.reddit.com/r/technology/comments/18xhbt2/a_13yearold_is_the_first_human_to_beat_tetris/", - "pubDate": "2024-01-03T11:32:42.000Z", - "author": "/u/chrisdh79", - "content": "
\"A submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18xhbt2", - "isoDate": "2024-01-03T11:32:42.000Z" - }, - { - "title": "Microsoft is adding a new key to PC keyboards for the first time since 1994", - "link": "https://www.reddit.com/r/technology/comments/18y9jki/microsoft_is_adding_a_new_key_to_pc_keyboards_for/", - "pubDate": "2024-01-04T09:57:09.000Z", - "author": "/u/ardi62", - "content": "
\"Microsoft submitted by /u/ardi62
[link] [comments]
", - "contentSnippet": "submitted by /u/ardi62 \n [link] [comments]", - "id": "t3_18y9jki", - "isoDate": "2024-01-04T09:57:09.000Z" - }, - { - "title": "Can a Pill Prevent Death from Venomous Snake Bites?", - "link": "https://www.reddit.com/r/technology/comments/18xl387/can_a_pill_prevent_death_from_venomous_snake_bites/", - "pubDate": "2024-01-03T14:48:06.000Z", - "author": "/u/waozen", - "content": "
\"Can submitted by /u/waozen
[link] [comments]
", - "contentSnippet": "submitted by /u/waozen \n [link] [comments]", - "id": "t3_18xl387", - "isoDate": "2024-01-03T14:48:06.000Z" - }, - { - "title": "Lacking information, Oregon residents guess at future of offshore wind", - "link": "https://www.reddit.com/r/technology/comments/18xku3v/lacking_information_oregon_residents_guess_at/", - "pubDate": "2024-01-03T14:36:21.000Z", - "author": "/u/OregonTripleBeam", - "content": "
\"Lacking submitted by /u/OregonTripleBeam
[link] [comments]
", - "contentSnippet": "submitted by /u/OregonTripleBeam \n [link] [comments]", - "id": "t3_18xku3v", - "isoDate": "2024-01-03T14:36:21.000Z" - }, - { - "title": "New cars bought in the UK must be zero emission by 2035 \u2013 it's the law", - "link": "https://www.reddit.com/r/technology/comments/18yckh1/new_cars_bought_in_the_uk_must_be_zero_emission/", - "pubDate": "2024-01-04T12:57:35.000Z", - "author": "/u/Loki-L", - "content": "
\"New submitted by /u/Loki-L
[link] [comments]
", - "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", - "id": "t3_18yckh1", - "isoDate": "2024-01-04T12:57:35.000Z" - }, - { - "title": "ChatGPT bombs test on diagnosing kids\u2019 medical cases with 83% error rate | It was bad at recognizing relationships and needs selective training, researchers say.", - "link": "https://www.reddit.com/r/technology/comments/18ybn1g/chatgpt_bombs_test_on_diagnosing_kids_medical/", - "pubDate": "2024-01-04T12:07:29.000Z", - "author": "/u/chrisdh79", - "content": "
\"ChatGPT submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ybn1g", - "isoDate": "2024-01-04T12:07:29.000Z" - }, - { - "title": "In a breakthrough, diabetics\u2019 damaged cells regenerated to produce insulin", - "link": "https://www.reddit.com/r/technology/comments/18yc3rx/in_a_breakthrough_diabetics_damaged_cells/", - "pubDate": "2024-01-04T12:33:02.000Z", - "author": "/u/chrisdh79", - "content": "
\"In submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18yc3rx", - "isoDate": "2024-01-04T12:33:02.000Z" - }, - { - "title": "Samsung said to be planning human-free, fully automated fabs within six years", - "link": "https://www.reddit.com/r/technology/comments/18ybxom/samsung_said_to_be_planning_humanfree_fully/", - "pubDate": "2024-01-04T12:23:54.000Z", - "author": "/u/chrisdh79", - "content": "
\"Samsung submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ybxom", - "isoDate": "2024-01-04T12:23:54.000Z" - }, - { - "title": "Intel spins out AI software firm with backing from DigitalBridge", - "link": "https://www.reddit.com/r/technology/comments/18y1doe/intel_spins_out_ai_software_firm_with_backing/", - "pubDate": "2024-01-04T02:10:50.000Z", - "author": "/u/GetEdgeful", - "content": " submitted by /u/GetEdgeful
[link] [comments]", - "contentSnippet": "submitted by /u/GetEdgeful \n [link] [comments]", - "id": "t3_18y1doe", - "isoDate": "2024-01-04T02:10:50.000Z" - }, - { - "title": "Artificial Intelligence\u2019s Threat to Democracy", - "link": "https://www.reddit.com/r/technology/comments/18xtzv7/artificial_intelligences_threat_to_democracy/", - "pubDate": "2024-01-03T21:02:14.000Z", - "author": "/u/Wagamaga", - "content": "
\"Artificial submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_18xtzv7", - "isoDate": "2024-01-03T21:02:14.000Z" - }, - { - "title": "India widens regulatory grip over tech firms", - "link": "https://www.reddit.com/r/technology/comments/18xn6vz/india_widens_regulatory_grip_over_tech_firms/", - "pubDate": "2024-01-03T16:19:42.000Z", - "author": "/u/asteriskspace", - "content": "
\"India submitted by /u/asteriskspace
[link] [comments]
", - "contentSnippet": "submitted by /u/asteriskspace \n [link] [comments]", - "id": "t3_18xn6vz", - "isoDate": "2024-01-03T16:19:42.000Z" - }, - { - "title": "Apple's share price drop around 5% -- equal $162 billion lost for investors", - "link": "https://www.reddit.com/r/technology/comments/18z47fr/apples_share_price_drop_around_5_equal_162/", - "pubDate": "2024-01-05T10:54:36.000Z", - "author": "/u/Head-Produce-1931", - "content": "
\"Apple's submitted by /u/Head-Produce-1931
[link] [comments]
", - "contentSnippet": "submitted by /u/Head-Produce-1931 \n [link] [comments]", - "id": "t3_18z47fr", - "isoDate": "2024-01-05T10:54:36.000Z" - }, - { - "title": "Inspired by Isaac Asimov\u2019s Three Laws of Robotics, Google wrote a \u2018Robot Constitution\u2019 to make sure its new AI droids won\u2019t kill us", - "link": "https://www.reddit.com/r/technology/comments/18z3m8g/inspired_by_isaac_asimovs_three_laws_of_robotics/", - "pubDate": "2024-01-05T10:15:16.000Z", - "author": "/u/marketrent", - "content": "
\"Inspired submitted by /u/marketrent
[link] [comments]
", - "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", - "id": "t3_18z3m8g", - "isoDate": "2024-01-05T10:15:16.000Z" - }, - { - "title": "DARPA's air-steered X-65 jet heads into production with goal of flying by 2025", - "link": "https://www.reddit.com/r/technology/comments/18z1xxl/darpas_airsteered_x65_jet_heads_into_production/", - "pubDate": "2024-01-05T08:21:29.000Z", - "author": "/u/Loki-L", - "content": "
\"DARPA's submitted by /u/Loki-L
[link] [comments]
", - "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", - "id": "t3_18z1xxl", - "isoDate": "2024-01-05T08:21:29.000Z" - }, - { - "title": "Google broke labor laws when it refused to bargain with YouTube Music contract workers | The NLRB ruled that Google\u2019s refusal to negotiate with a group of Austin-based contractors is illegal.", - "link": "https://www.reddit.com/r/technology/comments/18yvcro/google_broke_labor_laws_when_it_refused_to/", - "pubDate": "2024-01-05T02:20:47.000Z", - "author": "/u/chrisdh79", - "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18yvcro", - "isoDate": "2024-01-05T02:20:47.000Z" - }, - { - "title": "Australian woman used her BYD electric car to power her son's dialysis machine during a blackout", - "link": "https://www.reddit.com/r/technology/comments/18yu02d/australian_woman_used_her_byd_electric_car_to/", - "pubDate": "2024-01-05T01:17:55.000Z", - "author": "/u/tommos", - "content": "
\"Australian submitted by /u/tommos
[link] [comments]
", - "contentSnippet": "submitted by /u/tommos \n [link] [comments]", - "id": "t3_18yu02d", - "isoDate": "2024-01-05T01:17:55.000Z" - }, - { - "title": "First functional graphene semiconductor paves the path to post-silicon chips \u2014 Georgia Tech researchers' material can be used with standard chipmaking methods", - "link": "https://www.reddit.com/r/technology/comments/18yrpu2/first_functional_graphene_semiconductor_paves_the/", - "pubDate": "2024-01-04T23:39:31.000Z", - "author": "/u/ZapActions-dower", - "content": "
\"First submitted by /u/ZapActions-dower
[link] [comments]
", - "contentSnippet": "submitted by /u/ZapActions-dower \n [link] [comments]", - "id": "t3_18yrpu2", - "isoDate": "2024-01-04T23:39:31.000Z" - }, - { - "title": "There Was Never Such a Thing as \u2018Open\u2019 AI | Transparency isn\u2019t enough to democratize the technology", - "link": "https://www.reddit.com/r/technology/comments/18yqlf2/there_was_never_such_a_thing_as_open_ai/", - "pubDate": "2024-01-04T22:52:30.000Z", - "author": "/u/Hrmbee", - "content": "
\"There submitted by /u/Hrmbee
[link] [comments]
", - "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", - "id": "t3_18yqlf2", - "isoDate": "2024-01-04T22:52:30.000Z" - }, - { - "title": "US pay-TV subscriber base eroding at record pace", - "link": "https://www.reddit.com/r/technology/comments/18yomsc/us_paytv_subscriber_base_eroding_at_record_pace/", - "pubDate": "2024-01-04T21:34:48.000Z", - "author": "/u/rit56", - "content": "
\"US submitted by /u/rit56
[link] [comments]
", - "contentSnippet": "submitted by /u/rit56 \n [link] [comments]", - "id": "t3_18yomsc", - "isoDate": "2024-01-04T21:34:48.000Z" - }, - { - "title": "Parents selling videos of their kids for $50 in Google-backed study", - "link": "https://www.reddit.com/r/technology/comments/18yoi3e/parents_selling_videos_of_their_kids_for_50_in/", - "pubDate": "2024-01-04T21:29:31.000Z", - "author": "/u/SheeshMcneesh", - "content": "
\"Parents submitted by /u/SheeshMcneesh
[link] [comments]
", - "contentSnippet": "submitted by /u/SheeshMcneesh \n [link] [comments]", - "id": "t3_18yoi3e", - "isoDate": "2024-01-04T21:29:31.000Z" - }, - { - "title": "Law firm that handles data breaches was hit by data breach", - "link": "https://www.reddit.com/r/technology/comments/18yn9t6/law_firm_that_handles_data_breaches_was_hit_by/", - "pubDate": "2024-01-04T20:38:41.000Z", - "author": "/u/ourlifeintoronto", - "content": "
\"Law submitted by /u/ourlifeintoronto
[link] [comments]
", - "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", - "id": "t3_18yn9t6", - "isoDate": "2024-01-04T20:38:41.000Z" - }, - { - "title": "SpaceX Sues US Labor Board Over Fired Employees Case", - "link": "https://www.reddit.com/r/technology/comments/18yn0i6/spacex_sues_us_labor_board_over_fired_employees/", - "pubDate": "2024-01-04T20:27:44.000Z", - "author": "/u/Zhukov-74", - "content": "
\"SpaceX submitted by /u/Zhukov-74
[link] [comments]
", - "contentSnippet": "submitted by /u/Zhukov-74 \n [link] [comments]", - "id": "t3_18yn0i6", - "isoDate": "2024-01-04T20:27:44.000Z" - }, - { - "title": "World's first partial heart transplant grows valves and arteries | This method can 'potentially double the number of hearts that are used for the benefit of children with heart disease.'", - "link": "https://www.reddit.com/r/technology/comments/18ymimm/worlds_first_partial_heart_transplant_grows/", - "pubDate": "2024-01-04T20:06:55.000Z", - "author": "/u/chrisdh79", - "content": "
\"World's submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ymimm", - "isoDate": "2024-01-04T20:06:55.000Z" - }, - { - "title": "23andMe told victims of data breach that suing is futile, letter shows | Victims are still arguing that 23andMe's security measures were inadequate.", - "link": "https://www.reddit.com/r/technology/comments/18ymfp8/23andme_told_victims_of_data_breach_that_suing_is/", - "pubDate": "2024-01-04T20:03:33.000Z", - "author": "/u/chrisdh79", - "content": "
\"23andMe submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ymfp8", - "isoDate": "2024-01-04T20:03:33.000Z" - }, - { - "title": "Microsoft unveils \u2018Copilot\u2019 key, its biggest update to Windows keyboard in 30 years", - "link": "https://www.reddit.com/r/technology/comments/18ym2n7/microsoft_unveils_copilot_key_its_biggest_update/", - "pubDate": "2024-01-04T19:49:27.000Z", - "author": "/u/OddNugget", - "content": "
\"Microsoft submitted by /u/OddNugget
[link] [comments]
", - "contentSnippet": "submitted by /u/OddNugget \n [link] [comments]", - "id": "t3_18ym2n7", - "isoDate": "2024-01-04T19:49:27.000Z" - }, - { - "title": "California Judge Says Because Snapchat Has Disappearing Messages, Section 230 Doesn\u2019t Apply To Lawsuits Over Snapchat Content", - "link": "https://www.reddit.com/r/technology/comments/18yknhh/california_judge_says_because_snapchat_has/", - "pubDate": "2024-01-04T18:51:35.000Z", - "author": "/u/ourlifeintoronto", - "content": "
\"California submitted by /u/ourlifeintoronto
[link] [comments]
", - "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", - "id": "t3_18yknhh", - "isoDate": "2024-01-04T18:51:35.000Z" - }, - { - "title": "Scientists hail new antibiotic that can kill drug-resistant bacteria", - "link": "https://www.reddit.com/r/technology/comments/18yklu9/scientists_hail_new_antibiotic_that_can_kill/", - "pubDate": "2024-01-04T18:49:53.000Z", - "author": "/u/ourlifeintoronto", - "content": "
\"Scientists submitted by /u/ourlifeintoronto
[link] [comments]
", - "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", - "id": "t3_18yklu9", - "isoDate": "2024-01-04T18:49:53.000Z" - }, - { - "title": "The Tech Billionaires Soft-Launching Secession in California \u2014 If these Silicon Valley plutocrats have their way, a swath of Solano County will be transformed into their own nation-state", - "link": "https://www.reddit.com/r/technology/comments/18yk2ld/the_tech_billionaires_softlaunching_secession_in/", - "pubDate": "2024-01-04T18:28:25.000Z", - "author": "/u/BlankVerse", - "content": "
\"The submitted by /u/BlankVerse
[link] [comments]
", - "contentSnippet": "submitted by /u/BlankVerse \n [link] [comments]", - "id": "t3_18yk2ld", - "isoDate": "2024-01-04T18:28:25.000Z" - }, - { - "title": "The final frontier? How humans could live underwater in 'ocean stations'", - "link": "https://www.reddit.com/r/technology/comments/18yjezj/the_final_frontier_how_humans_could_live/", - "pubDate": "2024-01-04T18:01:53.000Z", - "author": "/u/fchung", - "content": "
\"The submitted by /u/fchung
[link] [comments]
", - "contentSnippet": "submitted by /u/fchung \n [link] [comments]", - "id": "t3_18yjezj", - "isoDate": "2024-01-04T18:01:53.000Z" - }, - { - "title": "Google Just Disabled Cookies for 30 Million Chrome Users. Here\u2019s How to Tell If You\u2019re One of Them | It\u2019s the beginning of the end in Google\u2019s plan to kill cookies forever", - "link": "https://www.reddit.com/r/technology/comments/18yi459/google_just_disabled_cookies_for_30_million/", - "pubDate": "2024-01-04T17:08:16.000Z", - "author": "/u/Hrmbee", - "content": "
\"Google submitted by /u/Hrmbee
[link] [comments]
", - "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", - "id": "t3_18yi459", - "isoDate": "2024-01-04T17:08:16.000Z" - }, - { - "title": "HyperVerse hedge fund CEO may not exist \u2014 Investigation finds no record of identity after collapse causing an estimated $1.3 billion in customer losses", - "link": "https://www.reddit.com/r/technology/comments/18yg66f/hyperverse_hedge_fund_ceo_may_not_exist/", - "pubDate": "2024-01-04T15:46:44.000Z", - "author": "/u/marketrent", - "content": "
\"HyperVerse submitted by /u/marketrent
[link] [comments]
", - "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", - "id": "t3_18yg66f", - "isoDate": "2024-01-04T15:46:44.000Z" - }, - { - "title": "Google is preparing a paid version of Bard", - "link": "https://www.reddit.com/r/technology/comments/18yftmu/google_is_preparing_a_paid_version_of_bard/", - "pubDate": "2024-01-04T15:31:15.000Z", - "author": "/u/liberal_senator", - "content": "
\"Google submitted by /u/liberal_senator
[link] [comments]
", - "contentSnippet": "submitted by /u/liberal_senator \n [link] [comments]", - "id": "t3_18yftmu", - "isoDate": "2024-01-04T15:31:15.000Z" - }, - { - "title": "Google OAuth secrets exposed as account-hijacking MultiLogin vulnerability discovered", - "link": "https://www.reddit.com/r/technology/comments/18yf3yw/google_oauth_secrets_exposed_as_accounthijacking/", - "pubDate": "2024-01-04T14:59:22.000Z", - "author": "/u/Ok-Purpose-3855", - "content": "
\"Google submitted by /u/Ok-Purpose-3855
[link] [comments]
", - "contentSnippet": "submitted by /u/Ok-Purpose-3855 \n [link] [comments]", - "id": "t3_18yf3yw", - "isoDate": "2024-01-04T14:59:22.000Z" - }, - { - "title": "Technical headaches put the brakes on GM\u2019s big EV push", - "link": "https://www.reddit.com/r/technology/comments/18yf0um/technical_headaches_put_the_brakes_on_gms_big_ev/", - "pubDate": "2024-01-04T14:55:16.000Z", - "author": "/u/RAISEStheQuestion", - "content": "
\"Technical submitted by /u/RAISEStheQuestion
[link] [comments]
", - "contentSnippet": "submitted by /u/RAISEStheQuestion \n [link] [comments]", - "id": "t3_18yf0um", - "isoDate": "2024-01-04T14:55:16.000Z" - }, - { - "title": "The Xbox Series S toaster is real", - "link": "https://www.reddit.com/r/technology/comments/18yeil2/the_xbox_series_s_toaster_is_real/", - "pubDate": "2024-01-04T14:31:39.000Z", - "author": "/u/TheMawgu", - "content": "
\"The submitted by /u/TheMawgu
[link] [comments]
", - "contentSnippet": "submitted by /u/TheMawgu \n [link] [comments]", - "id": "t3_18yeil2", - "isoDate": "2024-01-04T14:31:39.000Z" - }, - { - "title": "Hearing aids may boost longevity, study finds. But only if used regularly.", - "link": "https://www.reddit.com/r/technology/comments/18ydvse/hearing_aids_may_boost_longevity_study_finds_but/", - "pubDate": "2024-01-04T14:02:25.000Z", - "author": "/u/Sariel007", - "content": "
\"Hearing submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_18ydvse", - "isoDate": "2024-01-04T14:02:25.000Z" - }, - { - "title": "Nvidia teases RTX 40 Super series launch at CES \u2014 here's all of the leaked specs", - "link": "https://www.reddit.com/r/technology/comments/18z5z3s/nvidia_teases_rtx_40_super_series_launch_at_ces/", - "pubDate": "2024-01-05T12:40:30.000Z", - "author": "/u/MoparFX", - "content": "
\"Nvidia submitted by /u/MoparFX
[link] [comments]
", - "contentSnippet": "submitted by /u/MoparFX \n [link] [comments]", - "id": "t3_18z5z3s", - "isoDate": "2024-01-05T12:40:30.000Z" - }, - { - "title": "Arizona's first all-electric fire truck pumps 750 gallons per min | Mesa unveils Arizona's inaugural all-electric fire truck, prioritizing firefighter safety and environmental sustainability, aligning with the city's Climate Action Plan.", - "link": "https://www.reddit.com/r/technology/comments/18z93i6/arizonas_first_allelectric_fire_truck_pumps_750/", - "pubDate": "2024-01-05T15:11:33.000Z", - "author": "/u/chrisdh79", - "content": "
\"Arizona's submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18z93i6", - "isoDate": "2024-01-05T15:11:33.000Z" - }, - { - "title": "Huawei Teardown Shows 5nm Laptop Chip Made in Taiwan, Not China", - "link": "https://www.reddit.com/r/technology/comments/18z7ikl/huawei_teardown_shows_5nm_laptop_chip_made_in/", - "pubDate": "2024-01-05T13:59:38.000Z", - "author": "/u/benh999", - "content": "
\"Huawei submitted by /u/benh999
[link] [comments]
", - "contentSnippet": "submitted by /u/benh999 \n [link] [comments]", - "id": "t3_18z7ikl", - "isoDate": "2024-01-05T13:59:38.000Z" - }, - { - "title": "Tesla lowers Model Y, S, and X range estimations following exaggeration complaints | Several popular models are now showing lower range estimates in the US. The move comes after the DOJ opened a probe into inflated claims, but Tesla doesn\u2019t give a reason.", - "link": "https://www.reddit.com/r/technology/comments/18z6sai/tesla_lowers_model_y_s_and_x_range_estimations/", - "pubDate": "2024-01-05T13:23:35.000Z", - "author": "/u/chrisdh79", - "content": "
\"Tesla submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18z6sai", - "isoDate": "2024-01-05T13:23:35.000Z" - }, - { - "title": "Researchers Create First Functional Semiconductor Made From Graphene", - "link": "https://www.reddit.com/r/technology/comments/18z57x5/researchers_create_first_functional_semiconductor/", - "pubDate": "2024-01-05T11:56:58.000Z", - "author": "/u/giuliomagnifico", - "content": " submitted by /u/giuliomagnifico
[link] [comments]", - "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", - "id": "t3_18z57x5", - "isoDate": "2024-01-05T11:56:58.000Z" - }, - { - "title": "Beware the \u2018botshit\u2019: why generative AI is such a real and imminent threat to the way we live", - "link": "https://www.reddit.com/r/technology/comments/18z3w36/beware_the_botshit_why_generative_ai_is_such_a/", - "pubDate": "2024-01-05T10:33:47.000Z", - "author": "/u/zsreport", - "content": "
\"Beware submitted by /u/zsreport
[link] [comments]
", - "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", - "id": "t3_18z3w36", - "isoDate": "2024-01-05T10:33:47.000Z" - }, - { - "title": "China unveils new artificial intelligence guidelines for scientists and bans use in funding applications", - "link": "https://www.reddit.com/r/technology/comments/18z2tsk/china_unveils_new_artificial_intelligence/", - "pubDate": "2024-01-05T09:21:34.000Z", - "author": "/u/Saltedline", - "content": "
\"China submitted by /u/Saltedline
[link] [comments]
", - "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", - "id": "t3_18z2tsk", - "isoDate": "2024-01-05T09:21:34.000Z" - }, - { - "title": "Discord is laying off 17 percent of employees", - "link": "https://www.reddit.com/r/technology/comments/194991v/discord_is_laying_off_17_percent_of_employees/", - "pubDate": "2024-01-11T18:52:09.000Z", - "author": "/u/ClusterFugazi", - "content": "
\"Discord submitted by /u/ClusterFugazi
[link] [comments]
", - "contentSnippet": "submitted by /u/ClusterFugazi \n [link] [comments]", - "id": "t3_194991v", - "isoDate": "2024-01-11T18:52:09.000Z" - }, - { - "title": "Hertz Is Selling 20,000 Used EVs Due To High Repair Costs", - "link": "https://www.reddit.com/r/technology/comments/1945jdx/hertz_is_selling_20000_used_evs_due_to_high/", - "pubDate": "2024-01-11T16:21:22.000Z", - "author": "/u/Geno0wl", - "content": "
\"Hertz submitted by /u/Geno0wl
[link] [comments]
", - "contentSnippet": "submitted by /u/Geno0wl \n [link] [comments]", - "id": "t3_1945jdx", - "isoDate": "2024-01-11T16:21:22.000Z" - }, - { - "title": "Microsoft Overtakes Apple as World's Most Valuable Company", - "link": "https://www.reddit.com/r/technology/comments/1944dqs/microsoft_overtakes_apple_as_worlds_most_valuable/", - "pubDate": "2024-01-11T15:31:24.000Z", - "author": "/u/Avieshek", - "content": "
\"Microsoft submitted by /u/Avieshek
[link] [comments]
", - "contentSnippet": "submitted by /u/Avieshek \n [link] [comments]", - "id": "t3_1944dqs", - "isoDate": "2024-01-11T15:31:24.000Z" - }, - { - "title": "Microsoft overtakes Apple as world's most valuable company", - "link": "https://www.reddit.com/r/technology/comments/1943k2e/microsoft_overtakes_apple_as_worlds_most_valuable/", - "pubDate": "2024-01-11T14:54:50.000Z", - "author": "/u/PAO_RT_IN_THE_KISSER", - "content": " submitted by /u/PAO_RT_IN_THE_KISSER
[link] [comments]", - "contentSnippet": "submitted by /u/PAO_RT_IN_THE_KISSER \n [link] [comments]", - "id": "t3_1943k2e", - "isoDate": "2024-01-11T14:54:50.000Z" - }, - { - "title": "Israeli Group Claims It Uses Big Tech Back Channels to Take Down Content", - "link": "https://www.reddit.com/r/technology/comments/19438z5/israeli_group_claims_it_uses_big_tech_back/", - "pubDate": "2024-01-11T14:40:44.000Z", - "author": "/u/Pilast", - "content": "
\"Israeli submitted by /u/Pilast
[link] [comments]
", - "contentSnippet": "submitted by /u/Pilast \n [link] [comments]", - "id": "t3_19438z5", - "isoDate": "2024-01-11T14:40:44.000Z" - }, - { - "title": "Broadcom ditches VMware Cloud Service Providers - 'How can they cancel a major program affecting hundreds, perhaps thousands of customers, with zero notice?'", - "link": "https://www.reddit.com/r/technology/comments/1941km2/broadcom_ditches_vmware_cloud_service_providers/", - "pubDate": "2024-01-11T13:21:37.000Z", - "author": "/u/Loki-L", - "content": "
\"Broadcom submitted by /u/Loki-L
[link] [comments]
", - "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", - "id": "t3_1941km2", - "isoDate": "2024-01-11T13:21:37.000Z" - }, - { - "title": "White House unveils $623m in funding to boost electric vehicle charging points", - "link": "https://www.reddit.com/r/technology/comments/1941h88/white_house_unveils_623m_in_funding_to_boost/", - "pubDate": "2024-01-11T13:16:47.000Z", - "author": "/u/zsreport", - "content": "
\"White submitted by /u/zsreport
[link] [comments]
", - "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", - "id": "t3_1941h88", - "isoDate": "2024-01-11T13:16:47.000Z" - }, - { - "title": "A Chinese professor used AI to write a science fiction novel. Then it was a winner in a national competition", - "link": "https://www.reddit.com/r/technology/comments/1940q66/a_chinese_professor_used_ai_to_write_a_science/", - "pubDate": "2024-01-11T12:36:41.000Z", - "author": "/u/Maxie445", - "content": "
\"A submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_1940q66", - "isoDate": "2024-01-11T12:36:41.000Z" - }, - { - "title": "The largest US dam-removal effort to date has begun", - "link": "https://www.reddit.com/r/technology/comments/1940bkv/the_largest_us_damremoval_effort_to_date_has_begun/", - "pubDate": "2024-01-11T12:14:11.000Z", - "author": "/u/porkchop_d_clown", - "content": "
\"The submitted by /u/porkchop_d_clown
[link] [comments]
", - "contentSnippet": "submitted by /u/porkchop_d_clown \n [link] [comments]", - "id": "t3_1940bkv", - "isoDate": "2024-01-11T12:14:11.000Z" - }, - { - "title": "AI-Generated George Carlin Drops Comedy Special That Daughter Speaks Out Against: \u2018No Machine Will Ever Replace His Genius\u2019", - "link": "https://www.reddit.com/r/technology/comments/19406yg/aigenerated_george_carlin_drops_comedy_special/", - "pubDate": "2024-01-11T12:06:46.000Z", - "author": "/u/chrisdh79", - "content": "
\"AI-Generated submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_19406yg", - "isoDate": "2024-01-11T12:06:46.000Z" - }, - { - "title": "EFF Asks Court to Uphold Federal Law That Protects Online Video Viewers\u2019 Privacy and Free Expression", - "link": "https://www.reddit.com/r/technology/comments/193xxs9/eff_asks_court_to_uphold_federal_law_that/", - "pubDate": "2024-01-11T09:44:03.000Z", - "author": "/u/waozen", - "content": "
\"EFF submitted by /u/waozen
[link] [comments]
", - "contentSnippet": "submitted by /u/waozen \n [link] [comments]", - "id": "t3_193xxs9", - "isoDate": "2024-01-11T09:44:03.000Z" - }, - { - "title": "SAG-AFTRA Approves AI Voice Actors, Enrages the VA Community", - "link": "https://www.reddit.com/r/technology/comments/193xucu/sagaftra_approves_ai_voice_actors_enrages_the_va/", - "pubDate": "2024-01-11T09:37:30.000Z", - "author": "/u/Maxie445", - "content": "
\"SAG-AFTRA submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_193xucu", - "isoDate": "2024-01-11T09:37:30.000Z" - }, - { - "title": "Google lays off hundreds in Assistant, hardware, engineering teams", - "link": "https://www.reddit.com/r/technology/comments/193vo3w/google_lays_off_hundreds_in_assistant_hardware/", - "pubDate": "2024-01-11T07:06:19.000Z", - "author": "/u/Derpy_Snout", - "content": " submitted by /u/Derpy_Snout
[link] [comments]", - "contentSnippet": "submitted by /u/Derpy_Snout \n [link] [comments]", - "id": "t3_193vo3w", - "isoDate": "2024-01-11T07:06:19.000Z" - }, - { - "title": "Kia crashes CES with modular electric vehicle concept", - "link": "https://www.reddit.com/r/technology/comments/193vkpw/kia_crashes_ces_with_modular_electric_vehicle/", - "pubDate": "2024-01-11T07:00:34.000Z", - "author": "/u/Loki-L", - "content": "
\"Kia submitted by /u/Loki-L
[link] [comments]
", - "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", - "id": "t3_193vkpw", - "isoDate": "2024-01-11T07:00:34.000Z" - }, - { - "title": "Video Piracy Visits Rose to 141 Billion in 2023, Report Shows", - "link": "https://www.reddit.com/r/technology/comments/193t2u2/video_piracy_visits_rose_to_141_billion_in_2023/", - "pubDate": "2024-01-11T04:35:30.000Z", - "author": "/u/thinkB4WeSpeak", - "content": " submitted by /u/thinkB4WeSpeak
[link] [comments]", - "contentSnippet": "submitted by /u/thinkB4WeSpeak \n [link] [comments]", - "id": "t3_193t2u2", - "isoDate": "2024-01-11T04:35:30.000Z" - }, - { - "title": "Public Citizen Calls for Investigation of OpenAI's Nonprofit Status -- Redmondmag.com", - "link": "https://www.reddit.com/r/technology/comments/193svbb/public_citizen_calls_for_investigation_of_openais/", - "pubDate": "2024-01-11T04:24:26.000Z", - "author": "/u/aacool", - "content": "
\"Public submitted by /u/aacool
[link] [comments]
", - "contentSnippet": "submitted by /u/aacool \n [link] [comments]", - "id": "t3_193svbb", - "isoDate": "2024-01-11T04:24:26.000Z" - }, - { - "title": "A huge battery has replaced Hawaii's last coal plant", - "link": "https://www.reddit.com/r/technology/comments/193sc56/a_huge_battery_has_replaced_hawaiis_last_coal/", - "pubDate": "2024-01-11T03:56:37.000Z", - "author": "/u/StockJellyfish671", - "content": "
\"A submitted by /u/StockJellyfish671
[link] [comments]
", - "contentSnippet": "submitted by /u/StockJellyfish671 \n [link] [comments]", - "id": "t3_193sc56", - "isoDate": "2024-01-11T03:56:37.000Z" - }, - { - "title": "\u2018Impossible\u2019 to create AI tools like ChatGPT without copyrighted material, OpenAI says", - "link": "https://www.reddit.com/r/technology/comments/193rtap/impossible_to_create_ai_tools_like_chatgpt/", - "pubDate": "2024-01-11T03:29:43.000Z", - "author": "/u/aacool", - "content": "
\"\u2018Impossible\u2019 submitted by /u/aacool
[link] [comments]
", - "contentSnippet": "submitted by /u/aacool \n [link] [comments]", - "id": "t3_193rtap", - "isoDate": "2024-01-11T03:29:43.000Z" - }, - { - "title": "Pennsylvanians, your government workers are now powered by ChatGPT", - "link": "https://www.reddit.com/r/technology/comments/193q92x/pennsylvanians_your_government_workers_are_now/", - "pubDate": "2024-01-11T02:13:20.000Z", - "author": "/u/chrisdh79", - "content": "
\"Pennsylvanians, submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_193q92x", - "isoDate": "2024-01-11T02:13:20.000Z" - }, - { - "title": "Capcom caught adding Enigma DRM to older titles, for no good reason | Patch for Resident Evil Revelations adds anti-tamper executable, negatively impacts performance", - "link": "https://www.reddit.com/r/technology/comments/193q6b2/capcom_caught_adding_enigma_drm_to_older_titles/", - "pubDate": "2024-01-11T02:09:42.000Z", - "author": "/u/chrisdh79", - "content": "
\"Capcom submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_193q6b2", - "isoDate": "2024-01-11T02:09:42.000Z" - }, - { - "title": "US to hospitals: Meet security standards or no federal money", - "link": "https://www.reddit.com/r/technology/comments/193pkv7/us_to_hospitals_meet_security_standards_or_no/", - "pubDate": "2024-01-11T01:41:15.000Z", - "author": "/u/barweis", - "content": "
\"US submitted by /u/barweis
[link] [comments]
", - "contentSnippet": "submitted by /u/barweis \n [link] [comments]", - "id": "t3_193pkv7", - "isoDate": "2024-01-11T01:41:15.000Z" - }, - { - "title": "Groundbreaking Superconducting \u201cMiracle\u201d Receives $2.96 Million Boost", - "link": "https://www.reddit.com/r/technology/comments/193nwpw/groundbreaking_superconducting_miracle_receives/", - "pubDate": "2024-01-11T00:23:47.000Z", - "author": "/u/machinade89", - "content": "
\"Groundbreaking submitted by /u/machinade89
[link] [comments]
", - "contentSnippet": "submitted by /u/machinade89 \n [link] [comments]", - "id": "t3_193nwpw", - "isoDate": "2024-01-11T00:23:47.000Z" - }, - { - "title": "China\u2019s 450km/h high-speed CR450 train to be tested this year, set to enter service by 2025", - "link": "https://www.reddit.com/r/technology/comments/193mzur/chinas_450kmh_highspeed_cr450_train_to_be_tested/", - "pubDate": "2024-01-10T23:44:03.000Z", - "author": "/u/Saltedline", - "content": "
\"China\u2019s submitted by /u/Saltedline
[link] [comments]
", - "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", - "id": "t3_193mzur", - "isoDate": "2024-01-10T23:44:03.000Z" - }, - { - "title": "Congress Wants Tech Companies to Pay Up for AI Training Data \u2014 WIRED", - "link": "https://www.reddit.com/r/technology/comments/193mc7o/congress_wants_tech_companies_to_pay_up_for_ai/", - "pubDate": "2024-01-10T23:15:17.000Z", - "author": "/u/CKReauxSavonte", - "content": "
\"Congress submitted by /u/CKReauxSavonte
[link] [comments]
", - "contentSnippet": "submitted by /u/CKReauxSavonte \n [link] [comments]", - "id": "t3_193mc7o", - "isoDate": "2024-01-10T23:15:17.000Z" - }, - { - "title": "Walmart says it will use AI to restock customers' fridges", - "link": "https://www.reddit.com/r/technology/comments/193jdfe/walmart_says_it_will_use_ai_to_restock_customers/", - "pubDate": "2024-01-10T21:14:20.000Z", - "author": "/u/StyleSerenity", - "content": "
\"Walmart submitted by /u/StyleSerenity
[link] [comments]
", - "contentSnippet": "submitted by /u/StyleSerenity \n [link] [comments]", - "id": "t3_193jdfe", - "isoDate": "2024-01-10T21:14:20.000Z" - }, - { - "title": "Linux devices are under attack by a never-before-seen worm", - "link": "https://www.reddit.com/r/technology/comments/19473ox/linux_devices_are_under_attack_by_a/", - "pubDate": "2024-01-11T17:25:37.000Z", - "author": "/u/thebelsnickle1991", - "content": "
\"Linux submitted by /u/thebelsnickle1991
[link] [comments]
", - "contentSnippet": "submitted by /u/thebelsnickle1991 \n [link] [comments]", - "id": "t3_19473ox", - "isoDate": "2024-01-11T17:25:37.000Z" - }, - { - "title": "E-Nose Sniffs Out Coffee Varieties Nearly Perfectly", - "link": "https://www.reddit.com/r/technology/comments/194t9g1/enose_sniffs_out_coffee_varieties_nearly_perfectly/", - "pubDate": "2024-01-12T11:51:44.000Z", - "author": "/u/Ssider69", - "content": "
\"E-Nose submitted by /u/Ssider69
[link] [comments]
", - "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", - "id": "t3_194t9g1", - "isoDate": "2024-01-12T11:51:44.000Z" - }, - { - "title": "Lawmakers declare war on deepfakes that threaten to upend this year\u2019s presidential election", - "link": "https://www.reddit.com/r/technology/comments/194s2m1/lawmakers_declare_war_on_deepfakes_that_threaten/", - "pubDate": "2024-01-12T10:36:07.000Z", - "author": "/u/Maxie445", - "content": "
\"Lawmakers submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_194s2m1", - "isoDate": "2024-01-12T10:36:07.000Z" - }, - { - "title": "TIL Apple\u2019s Find My app has an item limit (it\u2019s 32).", - "link": "https://www.reddit.com/r/technology/comments/194rias/til_apples_find_my_app_has_an_item_limit_its_32/", - "pubDate": "2024-01-12T09:58:26.000Z", - "author": "/u/TheForsakenGlamour", - "content": "
\"TIL submitted by /u/TheForsakenGlamour
[link] [comments]
", - "contentSnippet": "submitted by /u/TheForsakenGlamour \n [link] [comments]", - "id": "t3_194rias", - "isoDate": "2024-01-12T09:58:26.000Z" - }, - { - "title": "AI-powered misinformation is the world's biggest short-term threat, Davos report says", - "link": "https://www.reddit.com/r/technology/comments/194r1e0/aipowered_misinformation_is_the_worlds_biggest/", - "pubDate": "2024-01-12T09:25:22.000Z", - "author": "/u/PsychoComet", - "content": "
\"AI-powered submitted by /u/PsychoComet
[link] [comments]
", - "contentSnippet": "submitted by /u/PsychoComet \n [link] [comments]", - "id": "t3_194r1e0", - "isoDate": "2024-01-12T09:25:22.000Z" - }, - { - "title": "UK's antitrust agency is going to put the screws to US big tech in 2024", - "link": "https://www.reddit.com/r/technology/comments/194omx3/uks_antitrust_agency_is_going_to_put_the_screws/", - "pubDate": "2024-01-12T06:44:57.000Z", - "author": "/u/FollowingFeisty5321", - "content": "
\"UK's submitted by /u/FollowingFeisty5321
[link] [comments]
", - "contentSnippet": "submitted by /u/FollowingFeisty5321 \n [link] [comments]", - "id": "t3_194omx3", - "isoDate": "2024-01-12T06:44:57.000Z" - }, - { - "title": "Discord lays off 170 people, blames growing too quickly | TechCrunch", - "link": "https://www.reddit.com/r/technology/comments/194nre4/discord_lays_off_170_people_blames_growing_too/", - "pubDate": "2024-01-12T05:53:29.000Z", - "author": "/u/Abhi_mech007", - "content": "
\"Discord submitted by /u/Abhi_mech007
[link] [comments]
", - "contentSnippet": "submitted by /u/Abhi_mech007 \n [link] [comments]", - "id": "t3_194nre4", - "isoDate": "2024-01-12T05:53:29.000Z" - }, - { - "title": "X Announces Peer-To-Peer Payment Service Will Launch In 2024", - "link": "https://www.reddit.com/r/technology/comments/194m9hn/x_announces_peertopeer_payment_service_will/", - "pubDate": "2024-01-12T04:31:16.000Z", - "author": "/u/ardi62", - "content": "
\"X submitted by /u/ardi62
[link] [comments]
", - "contentSnippet": "submitted by /u/ardi62 \n [link] [comments]", - "id": "t3_194m9hn", - "isoDate": "2024-01-12T04:31:16.000Z" - }, - { - "title": "Microsoft's AI found a new material to replace li-ion batteries | Will machine learning algorithms revolutionize scientific research on battery materials?", - "link": "https://www.reddit.com/r/technology/comments/194ht35/microsofts_ai_found_a_new_material_to_replace/", - "pubDate": "2024-01-12T00:50:38.000Z", - "author": "/u/chrisdh79", - "content": "
\"Microsoft's submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_194ht35", - "isoDate": "2024-01-12T00:50:38.000Z" - }, - { - "title": "As Disney pushes towards streaming profitability, Pixar to undergo layoffs in 2024", - "link": "https://www.reddit.com/r/technology/comments/194hre6/as_disney_pushes_towards_streaming_profitability/", - "pubDate": "2024-01-12T00:48:34.000Z", - "author": "/u/chrisdh79", - "content": "
\"As submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_194hre6", - "isoDate": "2024-01-12T00:48:34.000Z" - }, - { - "title": "Apple CEO Tim Cook's total pay drops to $63 million for 2023.", - "link": "https://www.reddit.com/r/technology/comments/194gx15/apple_ceo_tim_cooks_total_pay_drops_to_63_million/", - "pubDate": "2024-01-12T00:10:13.000Z", - "author": "/u/SUPRVLLAN", - "content": "
\"Apple submitted by /u/SUPRVLLAN
[link] [comments]
", - "contentSnippet": "submitted by /u/SUPRVLLAN \n [link] [comments]", - "id": "t3_194gx15", - "isoDate": "2024-01-12T00:10:13.000Z" - }, - { - "title": "US judge blocks Ohio Republicans\u2019 \u201ctroublingly vague\u201d social media law", - "link": "https://www.reddit.com/r/technology/comments/194fjt4/us_judge_blocks_ohio_republicans_troublingly/", - "pubDate": "2024-01-11T23:11:46.000Z", - "author": "/u/barweis", - "content": "
\"US submitted by /u/barweis
[link] [comments]
", - "contentSnippet": "submitted by /u/barweis \n [link] [comments]", - "id": "t3_194fjt4", - "isoDate": "2024-01-11T23:11:46.000Z" - }, - { - "title": "Meta offers Canadian Facebook users $51M to settle suit in 4 provinces", - "link": "https://www.reddit.com/r/technology/comments/194edkh/meta_offers_canadian_facebook_users_51m_to_settle/", - "pubDate": "2024-01-11T22:23:31.000Z", - "author": "/u/lamdefinitelynotadog", - "content": "
\"Meta submitted by /u/lamdefinitelynotadog
[link] [comments]
", - "contentSnippet": "submitted by /u/lamdefinitelynotadog \n [link] [comments]", - "id": "t3_194edkh", - "isoDate": "2024-01-11T22:23:31.000Z" - }, - { - "title": "CES 2024: The weirdest tech, gadgets and AI claims from Las Vegas", - "link": "https://www.reddit.com/r/technology/comments/194dcdb/ces_2024_the_weirdest_tech_gadgets_and_ai_claims/", - "pubDate": "2024-01-11T21:41:40.000Z", - "author": "/u/CrankyBear", - "content": "
\"CES submitted by /u/CrankyBear
[link] [comments]
", - "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", - "id": "t3_194dcdb", - "isoDate": "2024-01-11T21:41:40.000Z" - }, - { - "title": "The US is investigating if Boeing ensured a part that blew off a jet was made to design standards", - "link": "https://www.reddit.com/r/technology/comments/194bke8/the_us_is_investigating_if_boeing_ensured_a_part/", - "pubDate": "2024-01-11T20:28:28.000Z", - "author": "/u/esporx", - "content": "
\"The submitted by /u/esporx
[link] [comments]
", - "contentSnippet": "submitted by /u/esporx \n [link] [comments]", - "id": "t3_194bke8", - "isoDate": "2024-01-11T20:28:28.000Z" - }, - { - "title": "Tesla boosts pay for U.S. factory workers as UAW momentum builds", - "link": "https://www.reddit.com/r/technology/comments/194b7n5/tesla_boosts_pay_for_us_factory_workers_as_uaw/", - "pubDate": "2024-01-11T20:13:39.000Z", - "author": "/u/jondoev", - "content": "
\"Tesla submitted by /u/jondoev
[link] [comments]
", - "contentSnippet": "submitted by /u/jondoev \n [link] [comments]", - "id": "t3_194b7n5", - "isoDate": "2024-01-11T20:13:39.000Z" - }, - { - "title": "Amazon cuts 5% of Audible division's workforce", - "link": "https://www.reddit.com/r/technology/comments/1949nwz/amazon_cuts_5_of_audible_divisions_workforce/", - "pubDate": "2024-01-11T19:09:25.000Z", - "author": "/u/joe4942", - "content": " submitted by /u/joe4942
[link] [comments]", - "contentSnippet": "submitted by /u/joe4942 \n [link] [comments]", - "id": "t3_1949nwz", - "isoDate": "2024-01-11T19:09:25.000Z" - }, - { - "title": "Windows 10 KB5034441 security update fails with 0x80070643 errors", - "link": "https://www.reddit.com/r/technology/comments/1947we0/windows_10_kb5034441_security_update_fails_with/", - "pubDate": "2024-01-11T17:57:12.000Z", - "author": "/u/Hrmbee", - "content": "
\"Windows submitted by /u/Hrmbee
[link] [comments]
", - "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", - "id": "t3_1947we0", - "isoDate": "2024-01-11T17:57:12.000Z" - }, - { - "title": "PS5 V2 DualSense Controller With Improvements Leaked Via Online Retailer", - "link": "https://www.reddit.com/r/technology/comments/19423bq/ps5_v2_dualsense_controller_with_improvements/", - "pubDate": "2024-01-11T13:46:58.000Z", - "author": "/u/IHateMyselfButNotYou", - "content": "
\"PS5 submitted by /u/IHateMyselfButNotYou
[link] [comments]
", - "contentSnippet": "submitted by /u/IHateMyselfButNotYou \n [link] [comments]", - "id": "t3_19423bq", - "isoDate": "2024-01-11T13:46:58.000Z" - }, - { - "title": "Computer chip maker announces furloughs at Oregon factory days after landing $72M from feds", - "link": "https://www.reddit.com/r/technology/comments/194v1m3/computer_chip_maker_announces_furloughs_at_oregon/", - "pubDate": "2024-01-12T13:27:50.000Z", - "author": "/u/Projectrage", - "content": "
\"Computer submitted by /u/Projectrage
[link] [comments]
", - "contentSnippet": "submitted by /u/Projectrage \n [link] [comments]", - "id": "t3_194v1m3", - "isoDate": "2024-01-12T13:27:50.000Z" - }, - { - "title": "Scientists Unveil Radical Plan to Drill Into a Volcano For Near-Unlimited Energy", - "link": "https://www.reddit.com/r/technology/comments/194u7zg/scientists_unveil_radical_plan_to_drill_into_a/", - "pubDate": "2024-01-12T12:46:16.000Z", - "author": "/u/machinade89", - "content": "
\"Scientists submitted by /u/machinade89
[link] [comments]
", - "contentSnippet": "submitted by /u/machinade89 \n [link] [comments]", - "id": "t3_194u7zg", - "isoDate": "2024-01-12T12:46:16.000Z" - }, - { - "title": "China flooding social media with disinformation about Taiwan president", - "link": "https://www.reddit.com/r/technology/comments/194u7dl/china_flooding_social_media_with_disinformation/", - "pubDate": "2024-01-12T12:45:20.000Z", - "author": "/u/Wagamaga", - "content": "
\"China submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_194u7dl", - "isoDate": "2024-01-12T12:45:20.000Z" - }, - { - "title": "Data regulator fines HelloFresh \u00a3140k for sending 80M+ spams | Messaging menace used text and email to bombard people", - "link": "https://www.reddit.com/r/technology/comments/194tyjs/data_regulator_fines_hellofresh_140k_for_sending/", - "pubDate": "2024-01-12T12:31:46.000Z", - "author": "/u/chrisdh79", - "content": "
\"Data submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_194tyjs", - "isoDate": "2024-01-12T12:31:46.000Z" - }, - { - "title": "Do robot snowplows have a future in Canada?", - "link": "https://www.reddit.com/r/technology/comments/194sadl/do_robot_snowplows_have_a_future_in_canada/", - "pubDate": "2024-01-12T10:50:51.000Z", - "author": "/u/yimmy51", - "content": "
\"Do submitted by /u/yimmy51
[link] [comments]
", - "contentSnippet": "submitted by /u/yimmy51 \n [link] [comments]", - "id": "t3_194sadl", - "isoDate": "2024-01-12T10:50:51.000Z" - }, - { - "title": "Google DeepMind co-founder Mustafa Suleyman warns AI is a \u2018fundamentally labor replacing\u2019 tool over the long term", - "link": "https://www.reddit.com/r/technology/comments/199jdqf/google_deepmind_cofounder_mustafa_suleyman_warns/", - "pubDate": "2024-01-18T06:12:34.000Z", - "author": "/u/Maxie445", - "content": "
\"Google submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_199jdqf", - "isoDate": "2024-01-18T06:12:34.000Z" - }, - { - "title": "1 in 4 CEOs planning to replace workers with AI this year, according to recent poll", - "link": "https://www.reddit.com/r/technology/comments/199iksw/1_in_4_ceos_planning_to_replace_workers_with_ai/", - "pubDate": "2024-01-18T05:26:21.000Z", - "author": "/u/letsmunch", - "content": "
\"1 submitted by /u/letsmunch
[link] [comments]
", - "contentSnippet": "submitted by /u/letsmunch \n [link] [comments]", - "id": "t3_199iksw", - "isoDate": "2024-01-18T05:26:21.000Z" - }, - { - "title": "AI can change the world but not if we leave people behind", - "link": "https://www.reddit.com/r/technology/comments/199gqp9/ai_can_change_the_world_but_not_if_we_leave/", - "pubDate": "2024-01-18T03:48:10.000Z", - "author": "/u/MauriceMouse", - "content": "
\"AI submitted by /u/MauriceMouse
[link] [comments]
", - "contentSnippet": "submitted by /u/MauriceMouse \n [link] [comments]", - "id": "t3_199gqp9", - "isoDate": "2024-01-18T03:48:10.000Z" - }, - { - "title": "Google CEO tells employees to expect more job cuts this year.", - "link": "https://www.reddit.com/r/technology/comments/199eybs/google_ceo_tells_employees_to_expect_more_job/", - "pubDate": "2024-01-18T02:19:25.000Z", - "author": "/u/SUPRVLLAN", - "content": "
\"Google submitted by /u/SUPRVLLAN
[link] [comments]
", - "contentSnippet": "submitted by /u/SUPRVLLAN \n [link] [comments]", - "id": "t3_199eybs", - "isoDate": "2024-01-18T02:19:25.000Z" - }, - { - "title": "Apple will avoid ban by selling latest Apple Watches without blood oxygen feature", - "link": "https://www.reddit.com/r/technology/comments/199emzc/apple_will_avoid_ban_by_selling_latest_apple/", - "pubDate": "2024-01-18T02:04:21.000Z", - "author": "/u/Georgeika", - "content": "
\"Apple submitted by /u/Georgeika
[link] [comments]
", - "contentSnippet": "submitted by /u/Georgeika \n [link] [comments]", - "id": "t3_199emzc", - "isoDate": "2024-01-18T02:04:21.000Z" - }, - { - "title": "48,000 companies sent Facebook data on a single person | A Consumer Reports study found that thousands of companies contribute to Facebook\u2019s data stores on each person.", - "link": "https://www.reddit.com/r/technology/comments/199d8o4/48000_companies_sent_facebook_data_on_a_single/", - "pubDate": "2024-01-18T00:58:56.000Z", - "author": "/u/chrisdh79", - "content": "
\"48,000 submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_199d8o4", - "isoDate": "2024-01-18T00:58:56.000Z" - }, - { - "title": "IBM scraps rewards program for staff inventions, wipes away cash points | Big Blue staffers aren\u2019t pleased to lose out on potential bonuses", - "link": "https://www.reddit.com/r/technology/comments/199d3dv/ibm_scraps_rewards_program_for_staff_inventions/", - "pubDate": "2024-01-18T00:51:58.000Z", - "author": "/u/chrisdh79", - "content": "
\"IBM submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_199d3dv", - "isoDate": "2024-01-18T00:51:58.000Z" - }, - { - "title": "Apple Watches with blood oxygen tech are banned again", - "link": "https://www.reddit.com/r/technology/comments/199c3ld/apple_watches_with_blood_oxygen_tech_are_banned/", - "pubDate": "2024-01-18T00:07:33.000Z", - "author": "/u/Deshes011", - "content": "
\"Apple submitted by /u/Deshes011
[link] [comments]
", - "contentSnippet": "submitted by /u/Deshes011 \n [link] [comments]", - "id": "t3_199c3ld", - "isoDate": "2024-01-18T00:07:33.000Z" - }, - { - "title": "Google promised to delete location data on abortion clinic visits. It didn\u2019t, study says", - "link": "https://www.reddit.com/r/technology/comments/199b90d/google_promised_to_delete_location_data_on/", - "pubDate": "2024-01-17T23:30:45.000Z", - "author": "/u/davster39", - "content": "
\"Google submitted by /u/davster39
[link] [comments]
", - "contentSnippet": "submitted by /u/davster39 \n [link] [comments]", - "id": "t3_199b90d", - "isoDate": "2024-01-17T23:30:45.000Z" - }, - { - "title": "OpenAI must defend ChatGPT fabrications after failing to defeat libe'l suit", - "link": "https://www.reddit.com/r/technology/comments/199b742/openai_must_defend_chatgpt_fabrications_after/", - "pubDate": "2024-01-17T23:28:28.000Z", - "author": "/u/aacool", - "content": "
\"OpenAI submitted by /u/aacool
[link] [comments]
", - "contentSnippet": "submitted by /u/aacool \n [link] [comments]", - "id": "t3_199b742", - "isoDate": "2024-01-17T23:28:28.000Z" - }, - { - "title": "Cable firms to FTC: We shouldn\u2019t have to let users cancel service with a click \u2014 Customers may \u201cmisunderstand the consequences of canceling,\u201d say lobbyists", - "link": "https://www.reddit.com/r/technology/comments/199aamc/cable_firms_to_ftc_we_shouldnt_have_to_let_users/", - "pubDate": "2024-01-17T22:50:17.000Z", - "author": "/u/marketrent", - "content": "
\"Cable submitted by /u/marketrent
[link] [comments]
", - "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", - "id": "t3_199aamc", - "isoDate": "2024-01-17T22:50:17.000Z" - }, - { - "title": "Tech Employee Who Went Viral for Filming Her Firing Has No Regrets", - "link": "https://www.reddit.com/r/technology/comments/1997fbp/tech_employee_who_went_viral_for_filming_her/", - "pubDate": "2024-01-17T20:53:20.000Z", - "author": "/u/bootlickaaa", - "content": " submitted by /u/bootlickaaa
[link] [comments]", - "contentSnippet": "submitted by /u/bootlickaaa \n [link] [comments]", - "id": "t3_1997fbp", - "isoDate": "2024-01-17T20:53:20.000Z" - }, - { - "title": "You're Not Imagining It: Google Search Results Are Getting Worse, Study Finds", - "link": "https://www.reddit.com/r/technology/comments/1995srs/youre_not_imagining_it_google_search_results_are/", - "pubDate": "2024-01-17T19:49:07.000Z", - "author": "/u/TheUtopianCat", - "content": "
\"You're submitted by /u/TheUtopianCat
[link] [comments]
", - "contentSnippet": "submitted by /u/TheUtopianCat \n [link] [comments]", - "id": "t3_1995srs", - "isoDate": "2024-01-17T19:49:07.000Z" - }, - { - "title": "JPMorgan Says Hacker Attempts Have Increased This Year", - "link": "https://www.reddit.com/r/technology/comments/1995en8/jpmorgan_says_hacker_attempts_have_increased_this/", - "pubDate": "2024-01-17T19:33:34.000Z", - "author": "/u/lurker_bee", - "content": "
\"JPMorgan submitted by /u/lurker_bee
[link] [comments]
", - "contentSnippet": "submitted by /u/lurker_bee \n [link] [comments]", - "id": "t3_1995en8", - "isoDate": "2024-01-17T19:33:34.000Z" - }, - { - "title": "A \u2018Shocking\u2019 Amount of the Web Is Already AI-Translated Trash, Scientists Determine", - "link": "https://www.reddit.com/r/technology/comments/19954i5/a_shocking_amount_of_the_web_is_already/", - "pubDate": "2024-01-17T19:22:11.000Z", - "author": "/u/chrisdh79", - "content": "
\"A submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_19954i5", - "isoDate": "2024-01-17T19:22:11.000Z" - }, - { - "title": "Sharing deepfake porn could lead to lengthy prison time under proposed law", - "link": "https://www.reddit.com/r/technology/comments/1992wp9/sharing_deepfake_porn_could_lead_to_lengthy/", - "pubDate": "2024-01-17T17:54:57.000Z", - "author": "/u/giuliomagnifico", - "content": "
\"Sharing submitted by /u/giuliomagnifico
[link] [comments]
", - "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", - "id": "t3_1992wp9", - "isoDate": "2024-01-17T17:54:57.000Z" - }, - { - "title": "Big Oil Launches Propaganda Campaign to Thwart US Energy Transition", - "link": "https://www.reddit.com/r/technology/comments/1992abw/big_oil_launches_propaganda_campaign_to_thwart_us/", - "pubDate": "2024-01-17T17:30:41.000Z", - "author": "/u/Wagamaga", - "content": "
\"Big submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_1992abw", - "isoDate": "2024-01-17T17:30:41.000Z" - }, - { - "title": "Chrome updates Incognito warning to admit Google tracks users in \u201cprivate\u201d mode", - "link": "https://www.reddit.com/r/technology/comments/19907uf/chrome_updates_incognito_warning_to_admit_google/", - "pubDate": "2024-01-17T16:11:59.000Z", - "author": "/u/Dismal-Dealer4298", - "content": "
\"Chrome submitted by /u/Dismal-Dealer4298
[link] [comments]
", - "contentSnippet": "submitted by /u/Dismal-Dealer4298 \n [link] [comments]", - "id": "t3_19907uf", - "isoDate": "2024-01-17T16:11:59.000Z" - }, - { - "title": "EIA: Solar and wind to lead growth of US power generation for the next two years", - "link": "https://www.reddit.com/r/technology/comments/198zla7/eia_solar_and_wind_to_lead_growth_of_us_power/", - "pubDate": "2024-01-17T15:46:17.000Z", - "author": "/u/Wagamaga", - "content": "
\"EIA: submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_198zla7", - "isoDate": "2024-01-17T15:46:17.000Z" - }, - { - "title": "The Rise of \u2018New Denial\u2019: How YouTube Enables Climate Misinformation", - "link": "https://www.reddit.com/r/technology/comments/198x5u2/the_rise_of_new_denial_how_youtube_enables/", - "pubDate": "2024-01-17T13:59:05.000Z", - "author": "/u/Wagamaga", - "content": " submitted by /u/Wagamaga
[link] [comments]", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_198x5u2", - "isoDate": "2024-01-17T13:59:05.000Z" - }, - { - "title": "A year long study shows what you've suspected: Google Search is getting worse.", - "link": "https://www.reddit.com/r/technology/comments/198wuzt/a_year_long_study_shows_what_youve_suspected/", - "pubDate": "2024-01-17T13:44:21.000Z", - "author": "/u/porkchop_d_clown", - "content": "
\"A submitted by /u/porkchop_d_clown
[link] [comments]
", - "contentSnippet": "submitted by /u/porkchop_d_clown \n [link] [comments]", - "id": "t3_198wuzt", - "isoDate": "2024-01-17T13:44:21.000Z" - }, - { - "title": "New UEFI vulnerabilities send firmware devs across an entire ecosystem scrambling \u2014 PixieFail is a huge deal for cloud and data centers. For the rest, less so.", - "link": "https://www.reddit.com/r/technology/comments/198vfat/new_uefi_vulnerabilities_send_firmware_devs/", - "pubDate": "2024-01-17T12:27:44.000Z", - "author": "/u/swingadmin", - "content": "
\"New submitted by /u/swingadmin
[link] [comments]
", - "contentSnippet": "submitted by /u/swingadmin \n [link] [comments]", - "id": "t3_198vfat", - "isoDate": "2024-01-17T12:27:44.000Z" - }, - { - "title": "Google says YouTube's latest slowdown isn't linked to ad blockers | Update: AdBlock and AdBlock Plus have been updated to resolve the slowdown issue.", - "link": "https://www.reddit.com/r/technology/comments/198vc1e/google_says_youtubes_latest_slowdown_isnt_linked/", - "pubDate": "2024-01-17T12:22:38.000Z", - "author": "/u/chrisdh79", - "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_198vc1e", - "isoDate": "2024-01-17T12:22:38.000Z" - }, - { - "title": "Google now admits it could collect data in Chrome's Incognito mode | The company updated its disclaimer after settling a lawsuit accusing it of tracking Incognito users.", - "link": "https://www.reddit.com/r/technology/comments/198v2up/google_now_admits_it_could_collect_data_in/", - "pubDate": "2024-01-17T12:08:00.000Z", - "author": "/u/chrisdh79", - "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_198v2up", - "isoDate": "2024-01-17T12:08:00.000Z" - }, - { - "title": "Big tech firms recklessly pursuing profits from AI, says UN head: International community has no strategy to deal with risks, Ant\u00f3nio Guterres tells Davos meeting", - "link": "https://www.reddit.com/r/technology/comments/198v20r/big_tech_firms_recklessly_pursuing_profits_from/", - "pubDate": "2024-01-17T12:06:34.000Z", - "author": "/u/Maxie445", - "content": "
\"Big submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_198v20r", - "isoDate": "2024-01-17T12:06:34.000Z" - }, - { - "title": "Delivery workers won a mandated raise from NYC. Now they say the apps figured out a way to undermine it", - "link": "https://www.reddit.com/r/technology/comments/199tcos/delivery_workers_won_a_mandated_raise_from_nyc/", - "pubDate": "2024-01-18T15:57:52.000Z", - "author": "/u/habichuelacondulce", - "content": " submitted by /u/habichuelacondulce
[link] [comments]", - "contentSnippet": "submitted by /u/habichuelacondulce \n [link] [comments]", - "id": "t3_199tcos", - "isoDate": "2024-01-18T15:57:52.000Z" - }, - { - "title": "JPMorgan Chase fights off 45 billion hacking attempts each day", - "link": "https://www.reddit.com/r/technology/comments/199rcej/jpmorgan_chase_fights_off_45_billion_hacking/", - "pubDate": "2024-01-18T14:27:03.000Z", - "author": "/u/waozen", - "content": " submitted by /u/waozen
[link] [comments]", - "contentSnippet": "submitted by /u/waozen \n [link] [comments]", - "id": "t3_199rcej", - "isoDate": "2024-01-18T14:27:03.000Z" - }, - { - "title": "Google boss warns staff to expect further job cuts this year", - "link": "https://www.reddit.com/r/technology/comments/199q3l4/google_boss_warns_staff_to_expect_further_job/", - "pubDate": "2024-01-18T13:26:15.000Z", - "author": "/u/davster39", - "content": "
\"Google submitted by /u/davster39
[link] [comments]
", - "contentSnippet": "submitted by /u/davster39 \n [link] [comments]", - "id": "t3_199q3l4", - "isoDate": "2024-01-18T13:26:15.000Z" - }, - { - "title": "Agrivoltaics In Action: Evidence Shows Solar Panels Nurture Habitats And Farms, Too", - "link": "https://www.reddit.com/r/technology/comments/199oyfy/agrivoltaics_in_action_evidence_shows_solar/", - "pubDate": "2024-01-18T12:22:52.000Z", - "author": "/u/chrisdh79", - "content": "
\"Agrivoltaics submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_199oyfy", - "isoDate": "2024-01-18T12:22:52.000Z" - }, - { - "title": "PipeWire is a project that aims to greatly improve handling of audio and video under Linux", - "link": "https://www.reddit.com/r/technology/comments/199nilz/pipewire_is_a_project_that_aims_to_greatly/", - "pubDate": "2024-01-18T10:54:44.000Z", - "author": "/u/Doener23", - "content": "
\"PipeWire submitted by /u/Doener23
[link] [comments]
", - "contentSnippet": "submitted by /u/Doener23 \n [link] [comments]", - "id": "t3_199nilz", - "isoDate": "2024-01-18T10:54:44.000Z" - }, - { - "title": "Russia to require Internet providers to share users\u2019 address locations in effort to draw \u2018digital border\u2019 around country", - "link": "https://www.reddit.com/r/technology/comments/199m16b/russia_to_require_internet_providers_to_share/", - "pubDate": "2024-01-18T09:12:07.000Z", - "author": "/u/Saltedline", - "content": "
\"Russia submitted by /u/Saltedline
[link] [comments]
", - "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", - "id": "t3_199m16b", - "isoDate": "2024-01-18T09:12:07.000Z" - }, - { - "title": "Search engine results are getting worse, research confirms", - "link": "https://www.reddit.com/r/technology/comments/199lcxd/search_engine_results_are_getting_worse_research/", - "pubDate": "2024-01-18T08:23:16.000Z", - "author": "/u/edfosho1", - "content": "
\"Search submitted by /u/edfosho1
[link] [comments]
", - "contentSnippet": "submitted by /u/edfosho1 \n [link] [comments]", - "id": "t3_199lcxd", - "isoDate": "2024-01-18T08:23:16.000Z" - }, - { - "title": "Sheryl Sandberg to step down from Meta board", - "link": "https://www.reddit.com/r/technology/comments/199i7yi/sheryl_sandberg_to_step_down_from_meta_board/", - "pubDate": "2024-01-18T05:06:43.000Z", - "author": "/u/nosotros_road_sodium", - "content": "
\"Sheryl submitted by /u/nosotros_road_sodium
[link] [comments]
", - "contentSnippet": "submitted by /u/nosotros_road_sodium \n [link] [comments]", - "id": "t3_199i7yi", - "isoDate": "2024-01-18T05:06:43.000Z" - }, - { - "title": "1 in 4 CEOs planning to replace workers with AI this year, according to recent poll", - "link": "https://www.reddit.com/r/technology/comments/19abo03/1_in_4_ceos_planning_to_replace_workers_with_ai/", - "pubDate": "2024-01-19T05:31:30.000Z", - "author": "/u/PsychoComet", - "content": "
\"1 submitted by /u/PsychoComet
[link] [comments]
", - "contentSnippet": "submitted by /u/PsychoComet \n [link] [comments]", - "id": "t3_19abo03", - "isoDate": "2024-01-19T05:31:30.000Z" - }, - { - "title": "Knockoff Iranian Drone Sold on Alibaba Was Meant for War, Documents Show", - "link": "https://www.reddit.com/r/technology/comments/19a86jo/knockoff_iranian_drone_sold_on_alibaba_was_meant/", - "pubDate": "2024-01-19T02:29:00.000Z", - "author": "/u/chrisdh79", - "content": "
\"Knockoff submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_19a86jo", - "isoDate": "2024-01-19T02:29:00.000Z" - }, - { - "title": "US government to rein in face recognition? Yeah, right", - "link": "https://www.reddit.com/r/technology/comments/19a5fjn/us_government_to_rein_in_face_recognition_yeah/", - "pubDate": "2024-01-19T00:19:08.000Z", - "author": "/u/barweis", - "content": "
\"US submitted by /u/barweis
[link] [comments]
", - "contentSnippet": "submitted by /u/barweis \n [link] [comments]", - "id": "t3_19a5fjn", - "isoDate": "2024-01-19T00:19:08.000Z" - }, - { - "title": "Solar power from space is possible but not yet viable", - "link": "https://www.reddit.com/r/technology/comments/19a41pk/solar_power_from_space_is_possible_but_not_yet/", - "pubDate": "2024-01-18T23:18:29.000Z", - "author": "/u/barweis", - "content": "
\"Solar submitted by /u/barweis
[link] [comments]
", - "contentSnippet": "submitted by /u/barweis \n [link] [comments]", - "id": "t3_19a41pk", - "isoDate": "2024-01-18T23:18:29.000Z" - }, - { - "title": "Experts call for US Cyber Safety Review Board rethink", - "link": "https://www.reddit.com/r/technology/comments/19a3uqq/experts_call_for_us_cyber_safety_review_board/", - "pubDate": "2024-01-18T23:10:13.000Z", - "author": "/u/barweis", - "content": "
\"Experts submitted by /u/barweis
[link] [comments]
", - "contentSnippet": "submitted by /u/barweis \n [link] [comments]", - "id": "t3_19a3uqq", - "isoDate": "2024-01-18T23:10:13.000Z" - }, - { - "title": "Supermarket responds after Reddit user\u2019s warning about self-checkout overcharge \u2014 \u2018Was annoyed that the total amount due on my supermarket purchase did not equate to the individual items I purchased.\u2019", - "link": "https://www.reddit.com/r/technology/comments/19a3tuc/supermarket_responds_after_reddit_users_warning/", - "pubDate": "2024-01-18T23:09:08.000Z", - "author": "/u/marketrent", - "content": "
\"Supermarket submitted by /u/marketrent
[link] [comments]
", - "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", - "id": "t3_19a3tuc", - "isoDate": "2024-01-18T23:09:08.000Z" - }, - { - "title": "Google lays off 100 at YouTube; CEO says more layoffs are coming", - "link": "https://www.reddit.com/r/technology/comments/19a0vhx/google_lays_off_100_at_youtube_ceo_says_more/", - "pubDate": "2024-01-18T21:07:05.000Z", - "author": "/u/thegravity98ms2", - "content": "
\"Google submitted by /u/thegravity98ms2
[link] [comments]
", - "contentSnippet": "submitted by /u/thegravity98ms2 \n [link] [comments]", - "id": "t3_19a0vhx", - "isoDate": "2024-01-18T21:07:05.000Z" - }, - { - "title": "40 years since Elite became the most fun you could have with 22 kilobytes", - "link": "https://www.reddit.com/r/technology/comments/19a07g9/40_years_since_elite_became_the_most_fun_you/", - "pubDate": "2024-01-18T20:40:35.000Z", - "author": "/u/penguinopusredux", - "content": "
\"40 submitted by /u/penguinopusredux
[link] [comments]
", - "contentSnippet": "submitted by /u/penguinopusredux \n [link] [comments]", - "id": "t3_19a07g9", - "isoDate": "2024-01-18T20:40:35.000Z" - }, - { - "title": "European Union set to revise cookie law, admits cookie banners are annoying", - "link": "https://www.reddit.com/r/technology/comments/199zpry/european_union_set_to_revise_cookie_law_admits/", - "pubDate": "2024-01-18T20:20:31.000Z", - "author": "/u/CrankyBear", - "content": "
\"European submitted by /u/CrankyBear
[link] [comments]
", - "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", - "id": "t3_199zpry", - "isoDate": "2024-01-18T20:20:31.000Z" - }, - { - "title": "Amazon's latest layoffs hit its Buy with Prime unit", - "link": "https://www.reddit.com/r/technology/comments/199yubu/amazons_latest_layoffs_hit_its_buy_with_prime_unit/", - "pubDate": "2024-01-18T19:44:54.000Z", - "author": "/u/nimfrank", - "content": "
\"Amazon's submitted by /u/nimfrank
[link] [comments]
", - "contentSnippet": "submitted by /u/nimfrank \n [link] [comments]", - "id": "t3_199yubu", - "isoDate": "2024-01-18T19:44:54.000Z" - }, - { - "title": "Ultraviolet light can kill almost all the viruses in a room. Why isn\u2019t it everywhere?", - "link": "https://www.reddit.com/r/technology/comments/199xz7r/ultraviolet_light_can_kill_almost_all_the_viruses/", - "pubDate": "2024-01-18T19:09:22.000Z", - "author": "/u/FieldVoid", - "content": "
\"Ultraviolet submitted by /u/FieldVoid
[link] [comments]
", - "contentSnippet": "submitted by /u/FieldVoid \n [link] [comments]", - "id": "t3_199xz7r", - "isoDate": "2024-01-18T19:09:22.000Z" - }, - { - "title": "EU says music streaming platforms must pay artists more.", - "link": "https://www.reddit.com/r/technology/comments/199xh33/eu_says_music_streaming_platforms_must_pay/", - "pubDate": "2024-01-18T18:49:02.000Z", - "author": "/u/SUPRVLLAN", - "content": "
\"EU submitted by /u/SUPRVLLAN
[link] [comments]
", - "contentSnippet": "submitted by /u/SUPRVLLAN \n [link] [comments]", - "id": "t3_199xh33", - "isoDate": "2024-01-18T18:49:02.000Z" - }, - { - "title": "Reddit seeks to launch IPO in March", - "link": "https://www.reddit.com/r/technology/comments/199wrcd/reddit_seeks_to_launch_ipo_in_march/", - "pubDate": "2024-01-18T18:19:51.000Z", - "author": "/u/Sariel007", - "content": " submitted by /u/Sariel007
[link] [comments]", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_199wrcd", - "isoDate": "2024-01-18T18:19:51.000Z" - }, - { - "title": "Coinbase tells judge that buying crypto is just like collecting Beanie Babies", - "link": "https://www.reddit.com/r/technology/comments/199w4oe/coinbase_tells_judge_that_buying_crypto_is_just/", - "pubDate": "2024-01-18T17:54:07.000Z", - "author": "/u/asteriskspace", - "content": "
\"Coinbase submitted by /u/asteriskspace
[link] [comments]
", - "contentSnippet": "submitted by /u/asteriskspace \n [link] [comments]", - "id": "t3_199w4oe", - "isoDate": "2024-01-18T17:54:07.000Z" - }, - { - "title": "\"AI made us do it\" is Big Tech's new layoff rationale", - "link": "https://www.reddit.com/r/technology/comments/199vhol/ai_made_us_do_it_is_big_techs_new_layoff_rationale/", - "pubDate": "2024-01-18T17:27:40.000Z", - "author": "/u/joe4942", - "content": "
\""AI submitted by /u/joe4942
[link] [comments]
", - "contentSnippet": "submitted by /u/joe4942 \n [link] [comments]", - "id": "t3_199vhol", - "isoDate": "2024-01-18T17:27:40.000Z" - }, - { - "title": "ChatGPT's new AI store is struggling to keep a lid on all the AI girlfriends", - "link": "https://www.reddit.com/r/technology/comments/199uoyw/chatgpts_new_ai_store_is_struggling_to_keep_a_lid/", - "pubDate": "2024-01-18T16:54:53.000Z", - "author": "/u/BigOldCar", - "content": "
\"ChatGPT's submitted by /u/BigOldCar
[link] [comments]
", - "contentSnippet": "submitted by /u/BigOldCar \n [link] [comments]", - "id": "t3_199uoyw", - "isoDate": "2024-01-18T16:54:53.000Z" - }, - { - "title": "For truckers driving EVs, there\u2019s no going back", - "link": "https://www.reddit.com/r/technology/comments/199t7cf/for_truckers_driving_evs_theres_no_going_back/", - "pubDate": "2024-01-18T15:51:22.000Z", - "author": "/u/ZestyGene", - "content": "
\"For submitted by /u/ZestyGene
[link] [comments]
", - "contentSnippet": "submitted by /u/ZestyGene \n [link] [comments]", - "id": "t3_199t7cf", - "isoDate": "2024-01-18T15:51:22.000Z" - }, - { - "title": "Meta faces lawsuit over facial recognition in Texas", - "link": "https://www.reddit.com/r/technology/comments/199sv3v/meta_faces_lawsuit_over_facial_recognition_in/", - "pubDate": "2024-01-18T15:35:52.000Z", - "author": "/u/_katykakes", - "content": "
\"Meta submitted by /u/_katykakes
[link] [comments]
", - "contentSnippet": "submitted by /u/_katykakes \n [link] [comments]", - "id": "t3_199sv3v", - "isoDate": "2024-01-18T15:35:52.000Z" - }, - { - "title": "Iowa sues TikTok for setting its App Store age rating too low", - "link": "https://www.reddit.com/r/technology/comments/199socd/iowa_sues_tiktok_for_setting_its_app_store_age/", - "pubDate": "2024-01-18T15:27:50.000Z", - "author": "/u/Wanderlustwizard3518", - "content": "
\"Iowa submitted by /u/Wanderlustwizard3518
[link] [comments]
", - "contentSnippet": "submitted by /u/Wanderlustwizard3518 \n [link] [comments]", - "id": "t3_199socd", - "isoDate": "2024-01-18T15:27:50.000Z" - }, - { - "title": "Google News Is Boosting Garbage AI-Generated Articles", - "link": "https://www.reddit.com/r/technology/comments/199roiz/google_news_is_boosting_garbage_aigenerated/", - "pubDate": "2024-01-18T14:42:40.000Z", - "author": "/u/NeoIsJohnWick", - "content": "
\"Google submitted by /u/NeoIsJohnWick
[link] [comments]
", - "contentSnippet": "submitted by /u/NeoIsJohnWick \n [link] [comments]", - "id": "t3_199roiz", - "isoDate": "2024-01-18T14:42:40.000Z" - }, - { - "title": "Pope calls for treaty regulating AI, warning of potential for \u2018technological dictatorship\u2019", - "link": "https://www.reddit.com/r/technology/comments/19aeeyb/pope_calls_for_treaty_regulating_ai_warning_of/", - "pubDate": "2024-01-19T08:28:58.000Z", - "author": "/u/Maxie445", - "content": "
\"Pope submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_19aeeyb", - "isoDate": "2024-01-19T08:28:58.000Z" - }, - { - "title": "Samsung\u2019s $1,300 phone might someday have fees for AI usage", - "link": "https://www.reddit.com/r/technology/comments/19ae0q9/samsungs_1300_phone_might_someday_have_fees_for/", - "pubDate": "2024-01-19T08:01:13.000Z", - "author": "/u/Loki-L", - "content": "
\"Samsung\u2019s submitted by /u/Loki-L
[link] [comments]
", - "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", - "id": "t3_19ae0q9", - "isoDate": "2024-01-19T08:01:13.000Z" - }, - { - "title": "Each Facebook User Is Monitored by Thousands of Companies - Consumer Reports", - "link": "https://www.reddit.com/r/technology/comments/19agmrb/each_facebook_user_is_monitored_by_thousands_of/", - "pubDate": "2024-01-19T11:04:42.000Z", - "author": "/u/fattyfoods", - "content": "
\"Each submitted by /u/fattyfoods
[link] [comments]
", - "contentSnippet": "submitted by /u/fattyfoods \n [link] [comments]", - "id": "t3_19agmrb", - "isoDate": "2024-01-19T11:04:42.000Z" - }, - { - "title": "What happens when a school bans smartphones? A complete transformation | US education | The Guardian", - "link": "https://www.reddit.com/r/technology/comments/19aij1t/what_happens_when_a_school_bans_smartphones_a/", - "pubDate": "2024-01-19T12:59:32.000Z", - "author": "/u/benderunit9000", - "content": "
\"What submitted by /u/benderunit9000
[link] [comments]
", - "contentSnippet": "submitted by /u/benderunit9000 \n [link] [comments]", - "id": "t3_19aij1t", - "isoDate": "2024-01-19T12:59:32.000Z" - }, - { - "title": "A New York Times copyright lawsuit could kill OpenAI", - "link": "https://www.reddit.com/r/technology/comments/19ahg9y/a_new_york_times_copyright_lawsuit_could_kill/", - "pubDate": "2024-01-19T11:56:35.000Z", - "author": "/u/10MinsForUsername", - "content": "
\"A submitted by /u/10MinsForUsername
[link] [comments]
", - "contentSnippet": "submitted by /u/10MinsForUsername \n [link] [comments]", - "id": "t3_19ahg9y", - "isoDate": "2024-01-19T11:56:35.000Z" - }, - { - "title": "Meta decides to Just Say No to Oversight Board requests and allow paid posts for ketamine - Because says nothing like quality medical care like an ad for the 'magical entry into another dimension'", - "link": "https://www.reddit.com/r/technology/comments/17hh8dg/meta_decides_to_just_say_no_to_oversight_board/", - "pubDate": "2023-10-27T06:26:18.000Z", - "author": "/u/Loki-L", - "content": "
\"Meta submitted by /u/Loki-L
[link] [comments]
", - "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", - "id": "t3_17hh8dg", - "isoDate": "2023-10-27T06:26:18.000Z" - }, - { - "title": "GM Cruise unit suspends all driverless operations after California ban", - "link": "https://www.reddit.com/r/technology/comments/17hh1xt/gm_cruise_unit_suspends_all_driverless_operations/", - "pubDate": "2023-10-27T06:13:17.000Z", - "author": "/u/Kooky_Attention5969", - "content": "
\"GM submitted by /u/Kooky_Attention5969
[link] [comments]
", - "contentSnippet": "submitted by /u/Kooky_Attention5969 \n [link] [comments]", - "id": "t3_17hh1xt", - "isoDate": "2023-10-27T06:13:17.000Z" - }, - { - "title": "Too many products are easier to throw away than fix\u2014consumers deserve a 'right to repair'", - "link": "https://www.reddit.com/r/technology/comments/17hd0k2/too_many_products_are_easier_to_throw_away_than/", - "pubDate": "2023-10-27T02:09:59.000Z", - "author": "/u/Ssider69", - "content": "
\"Too submitted by /u/Ssider69
[link] [comments]
", - "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", - "id": "t3_17hd0k2", - "isoDate": "2023-10-27T02:09:59.000Z" - }, - { - "title": "Even Google CEO Sundar Pichai doesn\u2019t understand Google\u2019s privacy controls", - "link": "https://www.reddit.com/r/technology/comments/17hcwgq/even_google_ceo_sundar_pichai_doesnt_understand/", - "pubDate": "2023-10-27T02:03:56.000Z", - "author": "/u/barweis", - "content": "
\"Even submitted by /u/barweis
[link] [comments]
", - "contentSnippet": "submitted by /u/barweis \n [link] [comments]", - "id": "t3_17hcwgq", - "isoDate": "2023-10-27T02:03:56.000Z" - }, - { - "title": "Linux vs Windows tested in 10 games - Linux 17% faster on Average", - "link": "https://www.reddit.com/r/technology/comments/17hcrg6/linux_vs_windows_tested_in_10_games_linux_17/", - "pubDate": "2023-10-27T01:56:50.000Z", - "author": "/u/PickleJesus123", - "content": "
\"Linux submitted by /u/PickleJesus123
[link] [comments]
", - "contentSnippet": "submitted by /u/PickleJesus123 \n [link] [comments]", - "id": "t3_17hcrg6", - "isoDate": "2023-10-27T01:56:50.000Z" - }, - { - "title": "Google Fiber is getting outrageously fast 20Gbps service", - "link": "https://www.reddit.com/r/technology/comments/17hclia/google_fiber_is_getting_outrageously_fast_20gbps/", - "pubDate": "2023-10-27T01:48:08.000Z", - "author": "/u/barweis", - "content": "
\"Google submitted by /u/barweis
[link] [comments]
", - "contentSnippet": "submitted by /u/barweis \n [link] [comments]", - "id": "t3_17hclia", - "isoDate": "2023-10-27T01:48:08.000Z" - }, - { - "title": "BP buys $100 million worth of Tesla chargers", - "link": "https://www.reddit.com/r/technology/comments/17hbc32/bp_buys_100_million_worth_of_tesla_chargers/", - "pubDate": "2023-10-27T00:43:08.000Z", - "author": "/u/GeneReddit123", - "content": "
\"BP submitted by /u/GeneReddit123
[link] [comments]
", - "contentSnippet": "submitted by /u/GeneReddit123 \n [link] [comments]", - "id": "t3_17hbc32", - "isoDate": "2023-10-27T00:43:08.000Z" - }, - { - "title": "The smart home tech inside your home is less secure than you think, research finds", - "link": "https://www.reddit.com/r/technology/comments/17had83/the_smart_home_tech_inside_your_home_is_less/", - "pubDate": "2023-10-26T23:53:48.000Z", - "author": "/u/Ssider69", - "content": "
\"The submitted by /u/Ssider69
[link] [comments]
", - "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", - "id": "t3_17had83", - "isoDate": "2023-10-26T23:53:48.000Z" - }, - { - "title": "Bay Area tech CEO worth $35 billion says \u2018suffering\u2019 wasn't worth it", - "link": "https://www.reddit.com/r/technology/comments/17ha5rl/bay_area_tech_ceo_worth_35_billion_says_suffering/", - "pubDate": "2023-10-26T23:43:26.000Z", - "author": "/u/marketrent", - "content": "
\"Bay submitted by /u/marketrent
[link] [comments]
", - "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", - "id": "t3_17ha5rl", - "isoDate": "2023-10-26T23:43:26.000Z" - }, - { - "title": "Sam Bankman-Fried testifies, says he \u201cskimmed over\u201d FTX terms of service | SBF said he thought loans were legal but didn't fully read FTX terms of service.", - "link": "https://www.reddit.com/r/technology/comments/17h9tp9/sam_bankmanfried_testifies_says_he_skimmed_over/", - "pubDate": "2023-10-26T23:27:28.000Z", - "author": "/u/chrisdh79", - "content": "
\"Sam submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17h9tp9", - "isoDate": "2023-10-26T23:27:28.000Z" - }, - { - "title": "iPhones have been exposing your unique MAC despite Apple\u2019s promises otherwise \u2014 \u201cFrom the get-go, this feature was useless,\u201d researcher says of feature put into iOS 14", - "link": "https://www.reddit.com/r/technology/comments/17h959s/iphones_have_been_exposing_your_unique_mac/", - "pubDate": "2023-10-26T22:55:24.000Z", - "author": "/u/swingadmin", - "content": "
\"iPhones submitted by /u/swingadmin
[link] [comments]
", - "contentSnippet": "submitted by /u/swingadmin \n [link] [comments]", - "id": "t3_17h959s", - "isoDate": "2023-10-26T22:55:24.000Z" - }, - { - "title": "Three people were gene-edited in an effort to cure their HIV. The result is unknown.", - "link": "https://www.reddit.com/r/technology/comments/17h8lbl/three_people_were_geneedited_in_an_effort_to_cure/", - "pubDate": "2023-10-26T22:30:01.000Z", - "author": "/u/SharpCartographer831", - "content": "
\"Three submitted by /u/SharpCartographer831
[link] [comments]
", - "contentSnippet": "submitted by /u/SharpCartographer831 \n [link] [comments]", - "id": "t3_17h8lbl", - "isoDate": "2023-10-26T22:30:01.000Z" - }, - { - "title": "Forget the outside hacker, the bigger threat is inside by the coffee machine", - "link": "https://www.reddit.com/r/technology/comments/17h6n7y/forget_the_outside_hacker_the_bigger_threat_is/", - "pubDate": "2023-10-26T21:05:14.000Z", - "author": "/u/penguinopusredux", - "content": "
\"Forget submitted by /u/penguinopusredux
[link] [comments]
", - "contentSnippet": "submitted by /u/penguinopusredux \n [link] [comments]", - "id": "t3_17h6n7y", - "isoDate": "2023-10-26T21:05:14.000Z" - }, - { - "title": "CEO of rocket-maker ULA makes a sales pitch\u2014for the whole company", - "link": "https://www.reddit.com/r/technology/comments/17h2e6i/ceo_of_rocketmaker_ula_makes_a_sales_pitchfor_the/", - "pubDate": "2023-10-26T17:58:21.000Z", - "author": "/u/getBusyChild", - "content": "
\"CEO submitted by /u/getBusyChild
[link] [comments]
", - "contentSnippet": "submitted by /u/getBusyChild \n [link] [comments]", - "id": "t3_17h2e6i", - "isoDate": "2023-10-26T17:58:21.000Z" - }, - { - "title": "Humanity at risk from AI \u2018race to the bottom\u2019, says tech expert | MIT professor behind influential letter says unchecked development is allowing a few AI firms to jeopardise society\u2019s future", - "link": "https://www.reddit.com/r/technology/comments/17h0nsv/humanity_at_risk_from_ai_race_to_the_bottom_says/", - "pubDate": "2023-10-26T16:39:34.000Z", - "author": "/u/Hrmbee", - "content": "
\"Humanity submitted by /u/Hrmbee
[link] [comments]
", - "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", - "id": "t3_17h0nsv", - "isoDate": "2023-10-26T16:39:34.000Z" - }, - { - "title": "Nestron\u2019s Plug-and-Play Prefabs Start at $40K and Don\u2019t Require a Foundation", - "link": "https://www.reddit.com/r/technology/comments/17gzymo/nestrons_plugandplay_prefabs_start_at_40k_and/", - "pubDate": "2023-10-26T16:08:58.000Z", - "author": "/u/digital-didgeridoo", - "content": "
\"Nestron\u2019s submitted by /u/digital-didgeridoo
[link] [comments]
", - "contentSnippet": "submitted by /u/digital-didgeridoo \n [link] [comments]", - "id": "t3_17gzymo", - "isoDate": "2023-10-26T16:08:58.000Z" - }, - { - "title": "Boston Dynamics turned its robot dog into a talking tour guide with ChatGPT", - "link": "https://www.reddit.com/r/technology/comments/17gzqz6/boston_dynamics_turned_its_robot_dog_into_a/", - "pubDate": "2023-10-26T15:59:36.000Z", - "author": "/u/tahalive", - "content": "
\"Boston submitted by /u/tahalive
[link] [comments]
", - "contentSnippet": "submitted by /u/tahalive \n [link] [comments]", - "id": "t3_17gzqz6", - "isoDate": "2023-10-26T15:59:36.000Z" - }, - { - "title": "Colorado counties take steps to safeguard elections processes in the face of misinformation and threats", - "link": "https://www.reddit.com/r/technology/comments/17gzmti/colorado_counties_take_steps_to_safeguard/", - "pubDate": "2023-10-26T15:54:17.000Z", - "author": "/u/Wagamaga", - "content": "
\"Colorado submitted by /u/Wagamaga
[link] [comments]
", - "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", - "id": "t3_17gzmti", - "isoDate": "2023-10-26T15:54:17.000Z" - }, - { - "title": "Nintendo's updated social media guidelines target modified games, leaks from data mining | Nintendo constantly finds new ways to annoy people", - "link": "https://www.reddit.com/r/technology/comments/17gyl08/nintendos_updated_social_media_guidelines_target/", - "pubDate": "2023-10-26T15:05:25.000Z", - "author": "/u/chrisdh79", - "content": "
\"Nintendo's submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17gyl08", - "isoDate": "2023-10-26T15:05:25.000Z" - }, - { - "title": "Say (an encrypted) hello to a more private internet", - "link": "https://www.reddit.com/r/technology/comments/17gyih6/say_an_encrypted_hello_to_a_more_private_internet/", - "pubDate": "2023-10-26T15:02:07.000Z", - "author": "/u/phints", - "content": "
\"Say submitted by /u/phints
[link] [comments]
", - "contentSnippet": "submitted by /u/phints \n [link] [comments]", - "id": "t3_17gyih6", - "isoDate": "2023-10-26T15:02:07.000Z" - }, - { - "title": "In the end, the FTX trial was about the friends screwed along the way", - "link": "https://www.reddit.com/r/technology/comments/17gxyho/in_the_end_the_ftx_trial_was_about_the_friends/", - "pubDate": "2023-10-26T14:36:04.000Z", - "author": "/u/explowaker", - "content": "
\"In submitted by /u/explowaker
[link] [comments]
", - "contentSnippet": "submitted by /u/explowaker \n [link] [comments]", - "id": "t3_17gxyho", - "isoDate": "2023-10-26T14:36:04.000Z" - }, - { - "title": "Ticketmaster\u2019s still hiding ticket fees, senator says", - "link": "https://www.reddit.com/r/technology/comments/17gxwup/ticketmasters_still_hiding_ticket_fees_senator/", - "pubDate": "2023-10-26T14:34:00.000Z", - "author": "/u/explowaker", - "content": "
\"Ticketmaster\u2019s submitted by /u/explowaker
[link] [comments]
", - "contentSnippet": "submitted by /u/explowaker \n [link] [comments]", - "id": "t3_17gxwup", - "isoDate": "2023-10-26T14:34:00.000Z" - }, - { - "title": "Flipper Zero can now spam Android, Windows users with Bluetooth alerts", - "link": "https://www.reddit.com/r/technology/comments/17gxvqa/flipper_zero_can_now_spam_android_windows_users/", - "pubDate": "2023-10-26T14:32:36.000Z", - "author": "/u/lurker_bee", - "content": "
\"Flipper submitted by /u/lurker_bee
[link] [comments]
", - "contentSnippet": "submitted by /u/lurker_bee \n [link] [comments]", - "id": "t3_17gxvqa", - "isoDate": "2023-10-26T14:32:36.000Z" - }, - { - "title": "The UK\u2019s controversial Online Safety Bill finally becomes law | The bill, which aims to make the UK \u2018the safest place in the world to be online,\u2019 received royal assent today. But its contents have been contentious, especially because of their potential impact on encrypted messaging.", - "link": "https://www.reddit.com/r/technology/comments/17gx9tk/the_uks_controversial_online_safety_bill_finally/", - "pubDate": "2023-10-26T14:03:30.000Z", - "author": "/u/chrisdh79", - "content": "
\"The submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17gx9tk", - "isoDate": "2023-10-26T14:03:30.000Z" - }, - { - "title": "Privacy advocate challenges YouTube's ad blocking detection", - "link": "https://www.reddit.com/r/technology/comments/17gwrkt/privacy_advocate_challenges_youtubes_ad_blocking/", - "pubDate": "2023-10-26T13:39:23.000Z", - "author": "/u/waozen", - "content": "
\"Privacy submitted by /u/waozen
[link] [comments]
", - "contentSnippet": "submitted by /u/waozen \n [link] [comments]", - "id": "t3_17gwrkt", - "isoDate": "2023-10-26T13:39:23.000Z" - }, - { - "title": "Sony says PS5 supply chain issues have ended after three years, expects record holiday season sales | Pour one out for PS5 scalpers", - "link": "https://www.reddit.com/r/technology/comments/17hnmrs/sony_says_ps5_supply_chain_issues_have_ended/", - "pubDate": "2023-10-27T13:31:30.000Z", - "author": "/u/chrisdh79", - "content": "
\"Sony submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17hnmrs", - "isoDate": "2023-10-27T13:31:30.000Z" - }, - { - "title": "This electric plane\u2019s 2,000-mile journey is over. Now its Air Force tests begin.", - "link": "https://www.reddit.com/r/technology/comments/17hlwm8/this_electric_planes_2000mile_journey_is_over_now/", - "pubDate": "2023-10-27T11:58:13.000Z", - "author": "/u/ourlifeintoronto", - "content": "
\"This submitted by /u/ourlifeintoronto
[link] [comments]
", - "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", - "id": "t3_17hlwm8", - "isoDate": "2023-10-27T11:58:13.000Z" - }, - { - "title": "Apple Watch faces potential import ban in the US | The International Trade Commission has found Apple in violation of a bloody oxygen tracking patent owned by Masimo.", - "link": "https://www.reddit.com/r/technology/comments/17hkwo8/apple_watch_faces_potential_import_ban_in_the_us/", - "pubDate": "2023-10-27T10:56:09.000Z", - "author": "/u/chrisdh79", - "content": "
\"Apple submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17hkwo8", - "isoDate": "2023-10-27T10:56:09.000Z" - }, - { - "title": "US immigration enforcement used an AI-powered tool to scan social media posts \"derogatory\" to the US | \"The government should not be using algorithms to scrutinize our social media posts\"", - "link": "https://www.reddit.com/r/technology/comments/17hkkjm/us_immigration_enforcement_used_an_aipowered_tool/", - "pubDate": "2023-10-27T10:33:40.000Z", - "author": "/u/chrisdh79", - "content": "
\"US submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17hkkjm", - "isoDate": "2023-10-27T10:33:40.000Z" - }, - { - "title": "Testing 1.2 gigabits/sec IR data links from space. The ISS gets a fancy Laser data demonstrator.", - "link": "https://www.reddit.com/r/technology/comments/17hjhic/testing_12_gigabitssec_ir_data_links_from_space/", - "pubDate": "2023-10-27T09:15:07.000Z", - "author": "/u/JimBean", - "content": "
\"Testing submitted by /u/JimBean
[link] [comments]
", - "contentSnippet": "submitted by /u/JimBean \n [link] [comments]", - "id": "t3_17hjhic", - "isoDate": "2023-10-27T09:15:07.000Z" - }, - { - "title": "Pope Francis encourages more children to code, especially in Catholic countries", - "link": "https://www.reddit.com/r/technology/comments/17hhali/pope_francis_encourages_more_children_to_code/", - "pubDate": "2023-10-27T06:30:48.000Z", - "author": "/u/Loki-L", - "content": "
\"Pope submitted by /u/Loki-L
[link] [comments]
", - "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", - "id": "t3_17hhali", - "isoDate": "2023-10-27T06:30:48.000Z" - } -] \ No newline at end of file + { + "title": "Who will partner with Apple Card now and what does this shakeup mean for its users?", + "link": "https://www.reddit.com/r/technology/comments/187tn8b/who_will_partner_with_apple_card_now_and_what/", + "pubDate": "2023-11-30T21:26:19.000Z", + "author": "/u/CrankyBear", + "content": "
\"Who submitted by /u/CrankyBear
[link] [comments]
", + "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", + "id": "t3_187tn8b", + "isoDate": "2023-11-30T21:26:19.000Z" + }, + { + "title": "Meta sues FTC to block new restrictions on monetizing kids\u2019 data / It also seeks to prevent the agency from revisiting the $5 billion privacy settlement from 2020", + "link": "https://www.reddit.com/r/technology/comments/187q5si/meta_sues_ftc_to_block_new_restrictions_on/", + "pubDate": "2023-11-30T19:00:33.000Z", + "author": "/u/Sorin61", + "content": "
\"Meta submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_187q5si", + "isoDate": "2023-11-30T19:00:33.000Z" + }, + { + "title": "The LAPD Is Using Controversial Mass Surveillance Tracking Software", + "link": "https://www.reddit.com/r/technology/comments/187ow3b/the_lapd_is_using_controversial_mass_surveillance/", + "pubDate": "2023-11-30T18:05:59.000Z", + "author": "/u/Sorin61", + "content": "
\"The submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_187ow3b", + "isoDate": "2023-11-30T18:05:59.000Z" + }, + { + "title": "Canada says Google will pay $74 million annually to Canadian news industry under new online law", + "link": "https://www.reddit.com/r/technology/comments/187n08i/canada_says_google_will_pay_74_million_annually/", + "pubDate": "2023-11-30T16:46:00.000Z", + "author": "/u/Happy_Escape861", + "content": "
\"Canada submitted by /u/Happy_Escape861
[link] [comments]
", + "contentSnippet": "submitted by /u/Happy_Escape861 \n [link] [comments]", + "id": "t3_187n08i", + "isoDate": "2023-11-30T16:46:00.000Z" + }, + { + "title": "Fake HDMI cable crackdown - Taiwanese police raid suppliers of counterfeit HDMI cables, seize $2.6 million in knockoffs in a single day", + "link": "https://www.reddit.com/r/technology/comments/187mg97/fake_hdmi_cable_crackdown_taiwanese_police_raid/", + "pubDate": "2023-11-30T16:22:50.000Z", + "author": "/u/chrisdh79", + "content": "
\"Fake submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_187mg97", + "isoDate": "2023-11-30T16:22:50.000Z" + }, + { + "title": "The US government is no longer briefing Meta about foreign influence campaigns", + "link": "https://www.reddit.com/r/technology/comments/187m7og/the_us_government_is_no_longer_briefing_meta/", + "pubDate": "2023-11-30T16:12:53.000Z", + "author": "/u/Sorin61", + "content": "
\"The submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_187m7og", + "isoDate": "2023-11-30T16:12:53.000Z" + }, + { + "title": "US military says national security depends on \u2018forever chemicals\u2019 / PFAS can be found in everything from weapons to uniforms, but the Department of Defense is pushing back on health concerns raised by regulators", + "link": "https://www.reddit.com/r/technology/comments/187jdeu/us_military_says_national_security_depends_on/", + "pubDate": "2023-11-30T14:08:45.000Z", + "author": "/u/Sorin61", + "content": "
\"US submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_187jdeu", + "isoDate": "2023-11-30T14:08:45.000Z" + }, + { + "title": "Apple and Google avoid naming ChatGPT as their 'app of the year,' picking AllTrails and Imprint instead", + "link": "https://www.reddit.com/r/technology/comments/187izgh/apple_and_google_avoid_naming_chatgpt_as_their/", + "pubDate": "2023-11-30T13:50:47.000Z", + "author": "/u/Doener23", + "content": "
\"Apple submitted by /u/Doener23
[link] [comments]
", + "contentSnippet": "submitted by /u/Doener23 \n [link] [comments]", + "id": "t3_187izgh", + "isoDate": "2023-11-30T13:50:47.000Z" + }, + { + "title": "Nvidia boss says achieving US chip independence could take up to 20 years", + "link": "https://www.reddit.com/r/technology/comments/187ig9g/nvidia_boss_says_achieving_us_chip_independence/", + "pubDate": "2023-11-30T13:24:38.000Z", + "author": "/u/Sorin61", + "content": "
\"Nvidia submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_187ig9g", + "isoDate": "2023-11-30T13:24:38.000Z" + }, + { + "title": "Some electric vehicles can charge while they drive thanks to special coils installed under a street in Detroit / This is a pilot program for the technology, which could be installed in other countries as well", + "link": "https://www.reddit.com/r/technology/comments/187htza/some_electric_vehicles_can_charge_while_they/", + "pubDate": "2023-11-30T12:52:20.000Z", + "author": "/u/Sorin61", + "content": " submitted by /u/Sorin61
[link] [comments]", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_187htza", + "isoDate": "2023-11-30T12:52:20.000Z" + }, + { + "title": "Meta\u2019s latest threats report shows risk of Chinese influence campaigns ahead of elections", + "link": "https://www.reddit.com/r/technology/comments/187hgla/metas_latest_threats_report_shows_risk_of_chinese/", + "pubDate": "2023-11-30T12:31:37.000Z", + "author": "/u/skuggic", + "content": "
\"Meta\u2019s submitted by /u/skuggic
[link] [comments]
", + "contentSnippet": "submitted by /u/skuggic \n [link] [comments]", + "id": "t3_187hgla", + "isoDate": "2023-11-30T12:31:37.000Z" + }, + { + "title": "Dollar Tree hit by third-party data breach impacting 2 million people", + "link": "https://www.reddit.com/r/technology/comments/187gnb8/dollar_tree_hit_by_thirdparty_data_breach/", + "pubDate": "2023-11-30T11:43:43.000Z", + "author": "/u/chrisdh79", + "content": "
\"Dollar submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_187gnb8", + "isoDate": "2023-11-30T11:43:43.000Z" + }, + { + "title": "Detroit's newest road can charge electric cars as they travel on it", + "link": "https://www.reddit.com/r/technology/comments/187g991/detroits_newest_road_can_charge_electric_cars_as/", + "pubDate": "2023-11-30T11:19:29.000Z", + "author": "/u/Dcm210", + "content": "
\"Detroit's submitted by /u/Dcm210
[link] [comments]
", + "contentSnippet": "submitted by /u/Dcm210 \n [link] [comments]", + "id": "t3_187g991", + "isoDate": "2023-11-30T11:19:29.000Z" + }, + { + "title": "Google Will Delete Millions of Gmail Accounts Starting Tomorrow", + "link": "https://www.reddit.com/r/technology/comments/187fczg/google_will_delete_millions_of_gmail_accounts/", + "pubDate": "2023-11-30T10:19:40.000Z", + "author": "/u/Cubezzzzz", + "content": " submitted by /u/Cubezzzzz
[link] [comments]", + "contentSnippet": "submitted by /u/Cubezzzzz \n [link] [comments]", + "id": "t3_187fczg", + "isoDate": "2023-11-30T10:19:40.000Z" + }, + { + "title": "Today is the last day to save your unused Gmail account!", + "link": "https://www.reddit.com/r/technology/comments/187f2j4/today_is_the_last_day_to_save_your_unused_gmail/", + "pubDate": "2023-11-30T09:59:30.000Z", + "author": "/u/thegravity98ms2", + "content": "
\"Today submitted by /u/thegravity98ms2
[link] [comments]
", + "contentSnippet": "submitted by /u/thegravity98ms2 \n [link] [comments]", + "id": "t3_187f2j4", + "isoDate": "2023-11-30T09:59:30.000Z" + }, + { + "title": "World told energy transition will require $13.5 trillion commitment", + "link": "https://www.reddit.com/r/technology/comments/187f1nj/world_told_energy_transition_will_require_135/", + "pubDate": "2023-11-30T09:57:37.000Z", + "author": "/u/Wagamaga", + "content": "
\"World submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_187f1nj", + "isoDate": "2023-11-30T09:57:37.000Z" + }, + { + "title": "Apple M1 Pro beats M3 Pro with Ableton, Logic and Pro Tools", + "link": "https://www.reddit.com/r/technology/comments/187ef7j/apple_m1_pro_beats_m3_pro_with_ableton_logic_and/", + "pubDate": "2023-11-30T09:13:43.000Z", + "author": "/u/Doener23", + "content": "
\"Apple submitted by /u/Doener23
[link] [comments]
", + "contentSnippet": "submitted by /u/Doener23 \n [link] [comments]", + "id": "t3_187ef7j", + "isoDate": "2023-11-30T09:13:43.000Z" + }, + { + "title": "Google agrees to pay publishers in Canada and drops plans for blocking news", + "link": "https://www.reddit.com/r/technology/comments/187cxw0/google_agrees_to_pay_publishers_in_canada_and/", + "pubDate": "2023-11-30T07:33:47.000Z", + "author": "/u/911_reddit", + "content": "
\"Google submitted by /u/911_reddit
[link] [comments]
", + "contentSnippet": "submitted by /u/911_reddit \n [link] [comments]", + "id": "t3_187cxw0", + "isoDate": "2023-11-30T07:33:47.000Z" + }, + { + "title": "'Your Turn': United Auto Workers Launches Campaign to Unionize Tesla", + "link": "https://www.reddit.com/r/technology/comments/187br4y/your_turn_united_auto_workers_launches_campaign/", + "pubDate": "2023-11-30T06:18:10.000Z", + "author": "/u/Sorin61", + "content": "
\"'Your submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_187br4y", + "isoDate": "2023-11-30T06:18:10.000Z" + }, + { + "title": "The CEOs of Meta, X, TikTok, Snap, and Discord will testify before the US Senate on child safety", + "link": "https://www.reddit.com/r/technology/comments/187a0by/the_ceos_of_meta_x_tiktok_snap_and_discord_will/", + "pubDate": "2023-11-30T04:41:35.000Z", + "author": "/u/dapperlemon", + "content": "
\"The submitted by /u/dapperlemon
[link] [comments]
", + "contentSnippet": "submitted by /u/dapperlemon \n [link] [comments]", + "id": "t3_187a0by", + "isoDate": "2023-11-30T04:41:35.000Z" + }, + { + "title": "Experts revive ancient techniques to make concrete more sustainable", + "link": "https://www.reddit.com/r/technology/comments/1877mpl/experts_revive_ancient_techniques_to_make/", + "pubDate": "2023-11-30T02:41:45.000Z", + "author": "/u/Ssider69", + "content": "
\"Experts submitted by /u/Ssider69
[link] [comments]
", + "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", + "id": "t3_1877mpl", + "isoDate": "2023-11-30T02:41:45.000Z" + }, + { + "title": "Microsoft joins OpenAI\u2019s board with Sam Altman officially back as CEO", + "link": "https://www.reddit.com/r/technology/comments/18776ee/microsoft_joins_openais_board_with_sam_altman/", + "pubDate": "2023-11-30T02:20:39.000Z", + "author": "/u/Intensiti", + "content": "
\"Microsoft submitted by /u/Intensiti
[link] [comments]
", + "contentSnippet": "submitted by /u/Intensiti \n [link] [comments]", + "id": "t3_18776ee", + "isoDate": "2023-11-30T02:20:39.000Z" + }, + { + "title": "Microsoft wants its subscriptions on every screen, including PlayStation and Nintendo hardware", + "link": "https://www.reddit.com/r/technology/comments/18767rm/microsoft_wants_its_subscriptions_on_every_screen/", + "pubDate": "2023-11-30T01:36:48.000Z", + "author": "/u/chrisdh79", + "content": "
\"Microsoft submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18767rm", + "isoDate": "2023-11-30T01:36:48.000Z" + }, + { + "title": "Sam Altman returns as CEO, OpenAI has a new initial board", + "link": "https://www.reddit.com/r/technology/comments/1875jmi/sam_altman_returns_as_ceo_openai_has_a_new/", + "pubDate": "2023-11-30T01:04:55.000Z", + "author": "/u/Georgeika", + "content": " submitted by /u/Georgeika
[link] [comments]", + "contentSnippet": "submitted by /u/Georgeika \n [link] [comments]", + "id": "t3_1875jmi", + "isoDate": "2023-11-30T01:04:55.000Z" + }, + { + "title": "Leaked email shows the top executives leading VMware's edge unit after Broadcom's $69 billion acquisition", + "link": "https://www.reddit.com/r/technology/comments/1875ano/leaked_email_shows_the_top_executives_leading/", + "pubDate": "2023-11-30T00:53:13.000Z", + "author": "/u/Embarrassed-Gap-2835", + "content": "
\"Leaked submitted by /u/Embarrassed-Gap-2835
[link] [comments]
", + "contentSnippet": "submitted by /u/Embarrassed-Gap-2835 \n [link] [comments]", + "id": "t3_1875ano", + "isoDate": "2023-11-30T00:53:13.000Z" + }, + { + "title": "Meta takes down China-based network of thousands of fake accounts", + "link": "https://www.reddit.com/r/technology/comments/187rr3a/meta_takes_down_chinabased_network_of_thousands/", + "pubDate": "2023-11-30T20:07:37.000Z", + "author": "/u/GennyCD", + "content": "
\"Meta submitted by /u/GennyCD
[link] [comments]
", + "contentSnippet": "submitted by /u/GennyCD \n [link] [comments]", + "id": "t3_187rr3a", + "isoDate": "2023-11-30T20:07:37.000Z" + }, + { + "title": "Michigan to join state-level effort to regulate AI political ads as federal legislation is pending", + "link": "https://www.reddit.com/r/technology/comments/187r0ps/michigan_to_join_statelevel_effort_to_regulate_ai/", + "pubDate": "2023-11-30T19:36:53.000Z", + "author": "/u/Wagamaga", + "content": " submitted by /u/Wagamaga
[link] [comments]", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_187r0ps", + "isoDate": "2023-11-30T19:36:53.000Z" + }, + { + "title": "World\u2019s first AI minister likens risk of overregulation to calligraphers that kept the printing press out of the Middle East for nearly 200 years", + "link": "https://www.reddit.com/r/technology/comments/187qfal/worlds_first_ai_minister_likens_risk_of/", + "pubDate": "2023-11-30T19:11:46.000Z", + "author": "/u/cromethus", + "content": " submitted by /u/cromethus
[link] [comments]", + "contentSnippet": "submitted by /u/cromethus \n [link] [comments]", + "id": "t3_187qfal", + "isoDate": "2023-11-30T19:11:46.000Z" + }, + { + "title": "\u2018Nudify\u2019 Apps That Use AI to \u2018Undress\u2019 Women in Photos Are Soaring in Popularity", + "link": "https://www.reddit.com/r/technology/comments/18dhgft/nudify_apps_that_use_ai_to_undress_women_in/", + "pubDate": "2023-12-08T07:22:05.000Z", + "author": "/u/galaxystars1", + "content": "
\"\u2018Nudify\u2019 submitted by /u/galaxystars1
[link] [comments]
", + "contentSnippet": "submitted by /u/galaxystars1 \n [link] [comments]", + "id": "t3_18dhgft", + "isoDate": "2023-12-08T07:22:05.000Z" + }, + { + "title": "Google calls Drive data loss \u201cfixed,\u201d locks forum threads saying otherwise", + "link": "https://www.reddit.com/r/technology/comments/18da8h6/google_calls_drive_data_loss_fixed_locks_forum/", + "pubDate": "2023-12-08T00:38:02.000Z", + "author": "/u/ardi62", + "content": "
\"Google submitted by /u/ardi62
[link] [comments]
", + "contentSnippet": "submitted by /u/ardi62 \n [link] [comments]", + "id": "t3_18da8h6", + "isoDate": "2023-12-08T00:38:02.000Z" + }, + { + "title": "Drones Deliver Defibrillators Faster Than Ambulances", + "link": "https://www.reddit.com/r/technology/comments/18d9r13/drones_deliver_defibrillators_faster_than/", + "pubDate": "2023-12-08T00:13:32.000Z", + "author": "/u/Ssider69", + "content": "
\"Drones submitted by /u/Ssider69
[link] [comments]
", + "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", + "id": "t3_18d9r13", + "isoDate": "2023-12-08T00:13:32.000Z" + }, + { + "title": "HP misreads room, awkwardly brags about its \u201cless hated\u201d printers | Opinion: HP's printer business practices have infuriated users for years.", + "link": "https://www.reddit.com/r/technology/comments/18d9g13/hp_misreads_room_awkwardly_brags_about_its_less/", + "pubDate": "2023-12-07T23:58:58.000Z", + "author": "/u/chrisdh79", + "content": "
\"HP submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18d9g13", + "isoDate": "2023-12-07T23:58:58.000Z" + }, + { + "title": "Reversal of content policies at Alphabet, Meta and X threaten democracy, warn experts. Media watchdog says layoffs at top social media firms affecting moderation create \u2018toxic environment\u2019 as 2024 elections approach.", + "link": "https://www.reddit.com/r/technology/comments/18d8rot/reversal_of_content_policies_at_alphabet_meta_and/", + "pubDate": "2023-12-07T23:26:35.000Z", + "author": "/u/Sariel007", + "content": "
\"Reversal submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_18d8rot", + "isoDate": "2023-12-07T23:26:35.000Z" + }, + { + "title": "Why the 23andMe Data Breach Is Such a Disaster | The consumer DNA harvesting king exposed 6.9 million people\u2019s data. We\u2019ll never know exactly what goes wrong from here", + "link": "https://www.reddit.com/r/technology/comments/18d84jr/why_the_23andme_data_breach_is_such_a_disaster/", + "pubDate": "2023-12-07T22:57:06.000Z", + "author": "/u/Hrmbee", + "content": "
\"Why submitted by /u/Hrmbee
[link] [comments]
", + "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", + "id": "t3_18d84jr", + "isoDate": "2023-12-07T22:57:06.000Z" + }, + { + "title": "DoorDash, delivery apps remove tipping prompt at checkout in NYC", + "link": "https://www.reddit.com/r/technology/comments/18d7vzh/doordash_delivery_apps_remove_tipping_prompt_at/", + "pubDate": "2023-12-07T22:45:51.000Z", + "author": "/u/esporx", + "content": "
\"DoorDash, submitted by /u/esporx
[link] [comments]
", + "contentSnippet": "submitted by /u/esporx \n [link] [comments]", + "id": "t3_18d7vzh", + "isoDate": "2023-12-07T22:45:51.000Z" + }, + { + "title": "Facebook and Instagram are steering child predators to kids, New Mexico AG alleges", + "link": "https://www.reddit.com/r/technology/comments/18d7anz/facebook_and_instagram_are_steering_child/", + "pubDate": "2023-12-07T22:19:24.000Z", + "author": "/u/Far_Nature_8527", + "content": "
\"Facebook submitted by /u/Far_Nature_8527
[link] [comments]
", + "contentSnippet": "submitted by /u/Far_Nature_8527 \n [link] [comments]", + "id": "t3_18d7anz", + "isoDate": "2023-12-07T22:19:24.000Z" + }, + { + "title": "Discord users are cancelling their Nitro after new mobile layout update", + "link": "https://www.reddit.com/r/technology/comments/18d6vzu/discord_users_are_cancelling_their_nitro_after/", + "pubDate": "2023-12-07T22:01:25.000Z", + "author": "/u/oopsispilledthebeans", + "content": "
\"Discord submitted by /u/oopsispilledthebeans
[link] [comments]
", + "contentSnippet": "submitted by /u/oopsispilledthebeans \n [link] [comments]", + "id": "t3_18d6vzu", + "isoDate": "2023-12-07T22:01:25.000Z" + }, + { + "title": "Driverless cars were the future but now the truth is out: they\u2019re on the road to nowhere", + "link": "https://www.reddit.com/r/technology/comments/18d64z3/driverless_cars_were_the_future_but_now_the_truth/", + "pubDate": "2023-12-07T21:28:39.000Z", + "author": "/u/TransitBuff", + "content": "
\"Driverless submitted by /u/TransitBuff
[link] [comments]
", + "contentSnippet": "submitted by /u/TransitBuff \n [link] [comments]", + "id": "t3_18d64z3", + "isoDate": "2023-12-07T21:28:39.000Z" + }, + { + "title": "Amazon's humanoid warehouse robots will eventually cost only $3 per hour to operate. That won't calm workers' fears of being replaced.", + "link": "https://www.reddit.com/r/technology/comments/18d45bj/amazons_humanoid_warehouse_robots_will_eventually/", + "pubDate": "2023-12-07T20:02:55.000Z", + "author": "/u/Lakerlion", + "content": "
\"Amazon's submitted by /u/Lakerlion
[link] [comments]
", + "contentSnippet": "submitted by /u/Lakerlion \n [link] [comments]", + "id": "t3_18d45bj", + "isoDate": "2023-12-07T20:02:55.000Z" + }, + { + "title": "Apple just discreetly launched a raft of new machine learning tools, and they\u2019re free", + "link": "https://www.reddit.com/r/technology/comments/18d3m66/apple_just_discreetly_launched_a_raft_of_new/", + "pubDate": "2023-12-07T19:39:38.000Z", + "author": "/u/Franco1875", + "content": "
\"Apple submitted by /u/Franco1875
[link] [comments]
", + "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", + "id": "t3_18d3m66", + "isoDate": "2023-12-07T19:39:38.000Z" + }, + { + "title": "California Will Soon Mandate Electric School Buses", + "link": "https://www.reddit.com/r/technology/comments/18d2g7z/california_will_soon_mandate_electric_school_buses/", + "pubDate": "2023-12-07T18:48:43.000Z", + "author": "/u/Sorin61", + "content": "
\"California submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18d2g7z", + "isoDate": "2023-12-07T18:48:43.000Z" + }, + { + "title": "White House threatens to veto anti-EV bill just passed by US House", + "link": "https://www.reddit.com/r/technology/comments/18d15ff/white_house_threatens_to_veto_antiev_bill_just/", + "pubDate": "2023-12-07T17:49:44.000Z", + "author": "/u/Sorin61", + "content": "
\"White submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18d15ff", + "isoDate": "2023-12-07T17:49:44.000Z" + }, + { + "title": "An AI herding effect could drive markets 'off an inadvertent cliff', SEC chief Gary Gensler says", + "link": "https://www.reddit.com/r/technology/comments/18czzpp/an_ai_herding_effect_could_drive_markets_off_an/", + "pubDate": "2023-12-07T16:57:19.000Z", + "author": "/u/Zleecah", + "content": "
\"An submitted by /u/Zleecah
[link] [comments]
", + "contentSnippet": "submitted by /u/Zleecah \n [link] [comments]", + "id": "t3_18czzpp", + "isoDate": "2023-12-07T16:57:19.000Z" + }, + { + "title": "Why 2023 was the year of the e-bike and not the self-driving car", + "link": "https://www.reddit.com/r/technology/comments/18cypxr/why_2023_was_the_year_of_the_ebike_and_not_the/", + "pubDate": "2023-12-07T15:59:50.000Z", + "author": "/u/Helicase21", + "content": " submitted by /u/Helicase21
[link] [comments]", + "contentSnippet": "submitted by /u/Helicase21 \n [link] [comments]", + "id": "t3_18cypxr", + "isoDate": "2023-12-07T15:59:50.000Z" + }, + { + "title": "The race to 5G is over \u2014 now it\u2019s time to pay the bill | Networks spent years telling us that 5G would change everything. But the flashiest use cases are nowhere to be found \u2014 and the race to deploy the tech was costly in more ways than one.", + "link": "https://www.reddit.com/r/technology/comments/18cxatz/the_race_to_5g_is_over_now_its_time_to_pay_the/", + "pubDate": "2023-12-07T14:54:13.000Z", + "author": "/u/chrisdh79", + "content": "
\"The submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18cxatz", + "isoDate": "2023-12-07T14:54:13.000Z" + }, + { + "title": "Disinformation is rampant on social media \u2013 a social psychologist explains the tactics used against you", + "link": "https://www.reddit.com/r/technology/comments/18cwqr7/disinformation_is_rampant_on_social_media_a/", + "pubDate": "2023-12-07T14:27:16.000Z", + "author": "/u/Wagamaga", + "content": "
\"Disinformation submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_18cwqr7", + "isoDate": "2023-12-07T14:27:16.000Z" + }, + { + "title": "Rolls Royce plans '120-inch-long' mini nuclear reactor for Moon outpost", + "link": "https://www.reddit.com/r/technology/comments/18cwdo1/rolls_royce_plans_120inchlong_mini_nuclear/", + "pubDate": "2023-12-07T14:09:14.000Z", + "author": "/u/Sorin61", + "content": "
\"Rolls submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18cwdo1", + "isoDate": "2023-12-07T14:09:14.000Z" + }, + { + "title": "Sony Debuts First PS5 Controller For Disabled Gamers", + "link": "https://www.reddit.com/r/technology/comments/18cwahn/sony_debuts_first_ps5_controller_for_disabled/", + "pubDate": "2023-12-07T14:04:51.000Z", + "content": "
\"Sony
[link] [comments]
", + "contentSnippet": "[link] [comments]", + "id": "t3_18cwahn", + "isoDate": "2023-12-07T14:04:51.000Z" + }, + { + "title": "Meta\u2019s new AI image generator was trained on 1.1 billion Instagram and Facebook photos", + "link": "https://www.reddit.com/r/technology/comments/18cus1p/metas_new_ai_image_generator_was_trained_on_11/", + "pubDate": "2023-12-07T12:42:23.000Z", + "author": "/u/thegravity98ms2", + "content": "
\"Meta\u2019s submitted by /u/thegravity98ms2
[link] [comments]
", + "contentSnippet": "submitted by /u/thegravity98ms2 \n [link] [comments]", + "id": "t3_18cus1p", + "isoDate": "2023-12-07T12:42:23.000Z" + }, + { + "title": "Salesforce Signals the Golden Age of Cushy Tech Jobs Is Over", + "link": "https://www.reddit.com/r/technology/comments/18cuaec/salesforce_signals_the_golden_age_of_cushy_tech/", + "pubDate": "2023-12-07T12:12:02.000Z", + "author": "/u/McFatty7", + "content": " submitted by /u/McFatty7
[link] [comments]", + "contentSnippet": "submitted by /u/McFatty7 \n [link] [comments]", + "id": "t3_18cuaec", + "isoDate": "2023-12-07T12:12:02.000Z" + }, + { + "title": "McDonald\u2019s will use Google AI to make sure your fries are fresh, or something", + "link": "https://www.reddit.com/r/technology/comments/18ctoig/mcdonalds_will_use_google_ai_to_make_sure_your/", + "pubDate": "2023-12-07T11:32:53.000Z", + "author": "/u/Upbeat-Interaction13", + "content": "
\"McDonald\u2019s submitted by /u/Upbeat-Interaction13
[link] [comments]
", + "contentSnippet": "submitted by /u/Upbeat-Interaction13 \n [link] [comments]", + "id": "t3_18ctoig", + "isoDate": "2023-12-07T11:32:53.000Z" + }, + { + "title": "Apple co-founder Steve Wozniak to receive Serbian passport, president says", + "link": "https://www.reddit.com/r/technology/comments/18cstew/apple_cofounder_steve_wozniak_to_receive_serbian/", + "pubDate": "2023-12-07T10:33:53.000Z", + "author": "/u/Luka77GOATic", + "content": "
\"Apple submitted by /u/Luka77GOATic
[link] [comments]
", + "contentSnippet": "submitted by /u/Luka77GOATic \n [link] [comments]", + "id": "t3_18cstew", + "isoDate": "2023-12-07T10:33:53.000Z" + }, + { + "title": "Lawsuit says Meta exposes children to exploitation", + "link": "https://www.reddit.com/r/technology/comments/18cscia/lawsuit_says_meta_exposes_children_to_exploitation/", + "pubDate": "2023-12-07T09:59:31.000Z", + "author": "/u/Sorin61", + "content": "
\"Lawsuit submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18cscia", + "isoDate": "2023-12-07T09:59:31.000Z" + }, + { + "title": "Ex-Apple lawyer sentenced to probation for insider trading", + "link": "https://www.reddit.com/r/technology/comments/18dchou/exapple_lawyer_sentenced_to_probation_for_insider/", + "pubDate": "2023-12-08T02:33:58.000Z", + "author": "/u/911_reddit", + "content": " submitted by /u/911_reddit
[link] [comments]", + "contentSnippet": "submitted by /u/911_reddit \n [link] [comments]", + "id": "t3_18dchou", + "isoDate": "2023-12-08T02:33:58.000Z" + }, + { + "title": "UAE\u2019s top AI group vows to phase out Chinese hardware to appease US", + "link": "https://www.reddit.com/r/technology/comments/18cyptl/uaes_top_ai_group_vows_to_phase_out_chinese/", + "pubDate": "2023-12-07T15:59:41.000Z", + "author": "/u/PeteWenzel", + "content": "
\"UAE\u2019s submitted by /u/PeteWenzel
[link] [comments]
", + "contentSnippet": "submitted by /u/PeteWenzel \n [link] [comments]", + "id": "t3_18cyptl", + "isoDate": "2023-12-07T15:59:41.000Z" + }, + { + "title": "Apple has gotten so big it's almost overtaken France's entire stock market", + "link": "https://www.reddit.com/r/technology/comments/18i97vv/apple_has_gotten_so_big_its_almost_overtaken/", + "pubDate": "2023-12-14T13:59:42.000Z", + "author": "/u/Sorin61", + "content": "
\"Apple submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18i97vv", + "isoDate": "2023-12-14T13:59:42.000Z" + }, + { + "title": "800 fake Facebook users amplify Taiwan election interference TikToker", + "link": "https://www.reddit.com/r/technology/comments/18i765q/800_fake_facebook_users_amplify_taiwan_election/", + "pubDate": "2023-12-14T12:03:04.000Z", + "author": "/u/Wagamaga", + "content": "
\"800 submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_18i765q", + "isoDate": "2023-12-14T12:03:04.000Z" + }, + { + "title": "Raytheon to create DARPA's airborne \"wireless internet for energy\"", + "link": "https://www.reddit.com/r/technology/comments/18i6rce/raytheon_to_create_darpas_airborne_wireless/", + "pubDate": "2023-12-14T11:37:25.000Z", + "author": "/u/chrisdh79", + "content": "
\"Raytheon submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18i6rce", + "isoDate": "2023-12-14T11:37:25.000Z" + }, + { + "title": "Mazda to Switch Electricity Fuel to Ammonia", + "link": "https://www.reddit.com/r/technology/comments/18i6h4d/mazda_to_switch_electricity_fuel_to_ammonia/", + "pubDate": "2023-12-14T11:19:22.000Z", + "author": "/u/BurstYourBubbles", + "content": "
\"Mazda submitted by /u/BurstYourBubbles
[link] [comments]
", + "contentSnippet": "submitted by /u/BurstYourBubbles \n [link] [comments]", + "id": "t3_18i6h4d", + "isoDate": "2023-12-14T11:19:22.000Z" + }, + { + "title": "Europe inches closer to insisting gig workers are treated as employees / If it looks like a job, and is supervised like a job, it'll be classified as a job", + "link": "https://www.reddit.com/r/technology/comments/18i4lg9/europe_inches_closer_to_insisting_gig_workers_are/", + "pubDate": "2023-12-14T09:06:22.000Z", + "author": "/u/Sorin61", + "content": "
\"Europe submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18i4lg9", + "isoDate": "2023-12-14T09:06:22.000Z" + }, + { + "title": "Facebook and Instagram Steer Predators to Children, New Mexico Attorney General Alleges in Lawsuit", + "link": "https://www.reddit.com/r/technology/comments/18i40m7/facebook_and_instagram_steer_predators_to/", + "pubDate": "2023-12-14T08:22:15.000Z", + "author": "/u/quil1", + "content": "
\"Facebook submitted by /u/quil1
[link] [comments]
", + "contentSnippet": "submitted by /u/quil1 \n [link] [comments]", + "id": "t3_18i40m7", + "isoDate": "2023-12-14T08:22:15.000Z" + }, + { + "title": "Humana also using AI tool with 90% error rate to deny care, lawsuit claims", + "link": "https://www.reddit.com/r/technology/comments/18i3k2f/humana_also_using_ai_tool_with_90_error_rate_to/", + "pubDate": "2023-12-14T07:49:45.000Z", + "author": "/u/Sorin61", + "content": "
\"Humana submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18i3k2f", + "isoDate": "2023-12-14T07:49:45.000Z" + }, + { + "title": "Etsy is laying off 225 of its workers after 2 years of 'essentially flat' merchandise sales", + "link": "https://www.reddit.com/r/technology/comments/18i0k6o/etsy_is_laying_off_225_of_its_workers_after_2/", + "pubDate": "2023-12-14T04:38:32.000Z", + "author": "/u/XXmynameisNeganXX", + "content": "
\"Etsy submitted by /u/XXmynameisNeganXX
[link] [comments]
", + "contentSnippet": "submitted by /u/XXmynameisNeganXX \n [link] [comments]", + "id": "t3_18i0k6o", + "isoDate": "2023-12-14T04:38:32.000Z" + }, + { + "title": "Trains were designed to break down after third-party repairs, hackers find", + "link": "https://www.reddit.com/r/technology/comments/18i04r1/trains_were_designed_to_break_down_after/", + "pubDate": "2023-12-14T04:13:43.000Z", + "author": "/u/Sorin61", + "content": "
\"Trains submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18i04r1", + "isoDate": "2023-12-14T04:13:43.000Z" + }, + { + "title": "Huge First: Physicists 'Entangle' Individual Molecules With Staggering Precision", + "link": "https://www.reddit.com/r/technology/comments/18hymx2/huge_first_physicists_entangle_individual/", + "pubDate": "2023-12-14T02:52:50.000Z", + "author": "/u/Ssider69", + "content": "
\"Huge submitted by /u/Ssider69
[link] [comments]
", + "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", + "id": "t3_18hymx2", + "isoDate": "2023-12-14T02:52:50.000Z" + }, + { + "title": "Tesla recalls 2 million vehicles to limit use of Autopilot feature after nearly 1,000 crashes", + "link": "https://www.reddit.com/r/technology/comments/18hxiej/tesla_recalls_2_million_vehicles_to_limit_use_of/", + "pubDate": "2023-12-14T01:54:57.000Z", + "author": "/u/OvertimeWr", + "content": "
\"Tesla submitted by /u/OvertimeWr
[link] [comments]
", + "contentSnippet": "submitted by /u/OvertimeWr \n [link] [comments]", + "id": "t3_18hxiej", + "isoDate": "2023-12-14T01:54:57.000Z" + }, + { + "title": "Etsy lays off 225 workers after \u2018essentially flat\u2019 sales, says CEO | Business", + "link": "https://www.reddit.com/r/technology/comments/18hw5mm/etsy_lays_off_225_workers_after_essentially_flat/", + "pubDate": "2023-12-14T00:47:35.000Z", + "author": "/u/Embarrassed-Gap-2835", + "content": "
\"Etsy submitted by /u/Embarrassed-Gap-2835
[link] [comments]
", + "contentSnippet": "submitted by /u/Embarrassed-Gap-2835 \n [link] [comments]", + "id": "t3_18hw5mm", + "isoDate": "2023-12-14T00:47:35.000Z" + }, + { + "title": "Tesla\u2019s trash won\u2019t get picked up as union actions in Sweden escalate", + "link": "https://www.reddit.com/r/technology/comments/18hs55m/teslas_trash_wont_get_picked_up_as_union_actions/", + "pubDate": "2023-12-13T21:48:08.000Z", + "author": "/u/World_of_Warshipgirl", + "content": "
\"Tesla\u2019s submitted by /u/World_of_Warshipgirl
[link] [comments]
", + "contentSnippet": "submitted by /u/World_of_Warshipgirl \n [link] [comments]", + "id": "t3_18hs55m", + "isoDate": "2023-12-13T21:48:08.000Z" + }, + { + "title": "Dropbox spooks users by sending data to OpenAI for AI search features", + "link": "https://www.reddit.com/r/technology/comments/18hqwye/dropbox_spooks_users_by_sending_data_to_openai/", + "pubDate": "2023-12-13T20:54:36.000Z", + "author": "/u/Thalesian", + "content": "
\"Dropbox submitted by /u/Thalesian
[link] [comments]
", + "contentSnippet": "submitted by /u/Thalesian \n [link] [comments]", + "id": "t3_18hqwye", + "isoDate": "2023-12-13T20:54:36.000Z" + }, + { + "title": "Twitch updates sexual content guidelines amid \u2018topless\u2019 meta backlash", + "link": "https://www.reddit.com/r/technology/comments/18hqqy3/twitch_updates_sexual_content_guidelines_amid/", + "pubDate": "2023-12-13T20:47:22.000Z", + "author": "/u/Chicano_Ducky", + "content": "
\"Twitch submitted by /u/Chicano_Ducky
[link] [comments]
", + "contentSnippet": "submitted by /u/Chicano_Ducky \n [link] [comments]", + "id": "t3_18hqqy3", + "isoDate": "2023-12-13T20:47:22.000Z" + }, + { + "title": "FCC votes to ban termination fees for cable and satellite services", + "link": "https://www.reddit.com/r/technology/comments/18hqoi6/fcc_votes_to_ban_termination_fees_for_cable_and/", + "pubDate": "2023-12-13T20:44:29.000Z", + "author": "/u/McFatty7", + "content": "
\"FCC submitted by /u/McFatty7
[link] [comments]
", + "contentSnippet": "submitted by /u/McFatty7 \n [link] [comments]", + "id": "t3_18hqoi6", + "isoDate": "2023-12-13T20:44:29.000Z" + }, + { + "title": "X ad revenue reportedly fell $1.5B this year amid boycotts", + "link": "https://www.reddit.com/r/technology/comments/18hqb66/x_ad_revenue_reportedly_fell_15b_this_year_amid/", + "pubDate": "2023-12-13T20:28:14.000Z", + "author": "/u/marketrent", + "content": "
\"X submitted by /u/marketrent
[link] [comments]
", + "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", + "id": "t3_18hqb66", + "isoDate": "2023-12-13T20:28:14.000Z" + }, + { + "title": "Tesla recalls more than 2 million cars over autopilot safety concerns", + "link": "https://www.reddit.com/r/technology/comments/18hp70b/tesla_recalls_more_than_2_million_cars_over/", + "pubDate": "2023-12-13T19:40:19.000Z", + "author": "/u/justin_quinnn", + "content": "
\"Tesla submitted by /u/justin_quinnn
[link] [comments]
", + "contentSnippet": "submitted by /u/justin_quinnn \n [link] [comments]", + "id": "t3_18hp70b", + "isoDate": "2023-12-13T19:40:19.000Z" + }, + { + "title": "X outage breaks all outgoing links, again", + "link": "https://www.reddit.com/r/technology/comments/18hoewz/x_outage_breaks_all_outgoing_links_again/", + "pubDate": "2023-12-13T19:06:40.000Z", + "author": "/u/lordatlas", + "content": "
\"X submitted by /u/lordatlas
[link] [comments]
", + "contentSnippet": "submitted by /u/lordatlas \n [link] [comments]", + "id": "t3_18hoewz", + "isoDate": "2023-12-13T19:06:40.000Z" + }, + { + "title": "Elon Musk\u2019s New Monkey Death Claims Spur Fresh Demands for an SEC Investigation", + "link": "https://www.reddit.com/r/technology/comments/18hmtnw/elon_musks_new_monkey_death_claims_spur_fresh/", + "pubDate": "2023-12-13T17:59:21.000Z", + "author": "/u/OldSamSays", + "content": "
\"Elon submitted by /u/OldSamSays
[link] [comments]
", + "contentSnippet": "submitted by /u/OldSamSays \n [link] [comments]", + "id": "t3_18hmtnw", + "isoDate": "2023-12-13T17:59:21.000Z" + }, + { + "title": "Bell Media, Angus Reid and other Canadian brands halt ads on X amid extremism concerns", + "link": "https://www.reddit.com/r/technology/comments/18hmpya/bell_media_angus_reid_and_other_canadian_brands/", + "pubDate": "2023-12-13T17:54:57.000Z", + "author": "/u/LeBoulu777", + "content": "
\"Bell submitted by /u/LeBoulu777
[link] [comments]
", + "contentSnippet": "submitted by /u/LeBoulu777 \n [link] [comments]", + "id": "t3_18hmpya", + "isoDate": "2023-12-13T17:54:57.000Z" + }, + { + "title": "Polish Hackers Repaired Trains the Manufacturer Artificially Bricked. Now The Train Company Is Threatening Them", + "link": "https://www.reddit.com/r/technology/comments/18hm90c/polish_hackers_repaired_trains_the_manufacturer/", + "pubDate": "2023-12-13T17:35:18.000Z", + "author": "/u/NoPriorThreat", + "content": "
\"Polish submitted by /u/NoPriorThreat
[link] [comments]
", + "contentSnippet": "submitted by /u/NoPriorThreat \n [link] [comments]", + "id": "t3_18hm90c", + "isoDate": "2023-12-13T17:35:18.000Z" + }, + { + "title": "Ford's CEO says he definitely didn't pay for that viral video of a stuck Cybertruck needing a rescue on a snowy hill", + "link": "https://www.reddit.com/r/technology/comments/18hlsm0/fords_ceo_says_he_definitely_didnt_pay_for_that/", + "pubDate": "2023-12-13T17:16:31.000Z", + "author": "/u/Sorin61", + "content": " submitted by /u/Sorin61
[link] [comments]", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18hlsm0", + "isoDate": "2023-12-13T17:16:31.000Z" + }, + { + "title": "Threads is getting its own fact-checkers to combat misinformation", + "link": "https://www.reddit.com/r/technology/comments/18hlk32/threads_is_getting_its_own_factcheckers_to_combat/", + "pubDate": "2023-12-13T17:06:37.000Z", + "author": "/u/Wagamaga", + "content": "
\"Threads submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_18hlk32", + "isoDate": "2023-12-13T17:06:37.000Z" + }, + { + "title": "NASA's Voyager probe stopped communicating. There's no quick fix.", + "link": "https://www.reddit.com/r/technology/comments/18hkruy/nasas_voyager_probe_stopped_communicating_theres/", + "pubDate": "2023-12-13T16:34:06.000Z", + "author": "/u/alexsms111", + "content": "
\"NASA's submitted by /u/alexsms111
[link] [comments]
", + "contentSnippet": "submitted by /u/alexsms111 \n [link] [comments]", + "id": "t3_18hkruy", + "isoDate": "2023-12-13T16:34:06.000Z" + }, + { + "title": "YouTube Video Recommendations Lead to More Extremist Content for Right-Leaning Users, Researchers Suggest", + "link": "https://www.reddit.com/r/technology/comments/18iytvs/youtube_video_recommendations_lead_to_more/", + "pubDate": "2023-12-15T12:19:27.000Z", + "author": "/u/chrisdh79", + "content": "
\"YouTube submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18iytvs", + "isoDate": "2023-12-15T12:19:27.000Z" + }, + { + "title": "Nvidia's success is making some now-wealthy employees complacent | Why work hard when you're sitting on a fortune in stock?", + "link": "https://www.reddit.com/r/technology/comments/18iypv0/nvidias_success_is_making_some_nowwealthy/", + "pubDate": "2023-12-15T12:12:18.000Z", + "author": "/u/chrisdh79", + "content": "
\"Nvidia's submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18iypv0", + "isoDate": "2023-12-15T12:12:18.000Z" + }, + { + "title": "Nvidia's employees are suddenly so rich and happy that the company's got a 'semi retirement' problem, insiders say", + "link": "https://www.reddit.com/r/technology/comments/18iww2e/nvidias_employees_are_suddenly_so_rich_and_happy/", + "pubDate": "2023-12-15T10:12:59.000Z", + "author": "/u/Sorin61", + "content": " submitted by /u/Sorin61
[link] [comments]", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18iww2e", + "isoDate": "2023-12-15T10:12:59.000Z" + }, + { + "title": "Suspects can refuse to provide phone passcodes to police, court rules", + "link": "https://www.reddit.com/r/technology/comments/18ivj1k/suspects_can_refuse_to_provide_phone_passcodes_to/", + "pubDate": "2023-12-15T08:31:50.000Z", + "author": "/u/Sorin61", + "content": "
\"Suspects submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18ivj1k", + "isoDate": "2023-12-15T08:31:50.000Z" + }, + { + "title": "Proton Mail founder vows to fight Australia\u2019s eSafety regulator in court rather than spy on users", + "link": "https://www.reddit.com/r/technology/comments/18iri11/proton_mail_founder_vows_to_fight_australias/", + "pubDate": "2023-12-15T04:13:57.000Z", + "author": "/u/Bob_Spud", + "content": "
\"Proton submitted by /u/Bob_Spud
[link] [comments]
", + "contentSnippet": "submitted by /u/Bob_Spud \n [link] [comments]", + "id": "t3_18iri11", + "isoDate": "2023-12-15T04:13:57.000Z" + }, + { + "title": "Carriers told that customer data needs to be protected", + "link": "https://www.reddit.com/r/technology/comments/18ipou4/carriers_told_that_customer_data_needs_to_be/", + "pubDate": "2023-12-15T02:36:52.000Z", + "author": "/u/barweis", + "content": "
\"Carriers submitted by /u/barweis
[link] [comments]
", + "contentSnippet": "submitted by /u/barweis \n [link] [comments]", + "id": "t3_18ipou4", + "isoDate": "2023-12-15T02:36:52.000Z" + }, + { + "title": "Pirate Site Blocking Demands Intensify as U.S. Lawmakers Get Fmovies Walkthrough", + "link": "https://www.reddit.com/r/technology/comments/18ipew7/pirate_site_blocking_demands_intensify_as_us/", + "pubDate": "2023-12-15T02:22:08.000Z", + "author": "/u/Nugundam446", + "content": " submitted by /u/Nugundam446
[link] [comments]", + "contentSnippet": "submitted by /u/Nugundam446 \n [link] [comments]", + "id": "t3_18ipew7", + "isoDate": "2023-12-15T02:22:08.000Z" + }, + { + "title": "FBI gets at least four more months of Section 702 snooping | Congress renews warrantless spying tool scribbled on back of huge check for the Pentagon", + "link": "https://www.reddit.com/r/technology/comments/18ino52/fbi_gets_at_least_four_more_months_of_section_702/", + "pubDate": "2023-12-15T00:52:42.000Z", + "author": "/u/chrisdh79", + "content": "
\"FBI submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ino52", + "isoDate": "2023-12-15T00:52:42.000Z" + }, + { + "title": "Twitch allowing more nudity after disproportionately banning female streamers | Twitch confirmed its policy banning nudity was sexist.", + "link": "https://www.reddit.com/r/technology/comments/18in33h/twitch_allowing_more_nudity_after/", + "pubDate": "2023-12-15T00:23:57.000Z", + "author": "/u/chrisdh79", + "content": "
\"Twitch submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18in33h", + "isoDate": "2023-12-15T00:23:57.000Z" + }, + { + "title": "Voyager 1 stops communicating with Earth due to computer issue", + "link": "https://www.reddit.com/r/technology/comments/18iljf5/voyager_1_stops_communicating_with_earth_due_to/", + "pubDate": "2023-12-14T23:11:24.000Z", + "author": "/u/aceraspire8920", + "content": "
\"Voyager submitted by /u/aceraspire8920
[link] [comments]
", + "contentSnippet": "submitted by /u/aceraspire8920 \n [link] [comments]", + "id": "t3_18iljf5", + "isoDate": "2023-12-14T23:11:24.000Z" + }, + { + "title": "SpaceX blasts FCC as it refuses to reinstate Starlink\u2019s $886 million grant", + "link": "https://www.reddit.com/r/technology/comments/18ilesi/spacex_blasts_fcc_as_it_refuses_to_reinstate/", + "pubDate": "2023-12-14T23:05:32.000Z", + "author": "/u/Sapere_aude75", + "content": "
\"SpaceX submitted by /u/Sapere_aude75
[link] [comments]
", + "contentSnippet": "submitted by /u/Sapere_aude75 \n [link] [comments]", + "id": "t3_18ilesi", + "isoDate": "2023-12-14T23:05:32.000Z" + }, + { + "title": "Apple\u2019s MacBook Pro memory problem is worse than ever", + "link": "https://www.reddit.com/r/technology/comments/18il5kp/apples_macbook_pro_memory_problem_is_worse_than/", + "pubDate": "2023-12-14T22:54:42.000Z", + "author": "/u/aacool", + "content": "
\"Apple\u2019s submitted by /u/aacool
[link] [comments]
", + "contentSnippet": "submitted by /u/aacool \n [link] [comments]", + "id": "t3_18il5kp", + "isoDate": "2023-12-14T22:54:42.000Z" + }, + { + "title": "ChatGPT did not increase cheating in high schools, Stanford researchers find", + "link": "https://www.reddit.com/r/technology/comments/18ik4ib/chatgpt_did_not_increase_cheating_in_high_schools/", + "pubDate": "2023-12-14T22:09:48.000Z", + "author": "/u/ubcstaffer123", + "content": "
\"ChatGPT submitted by /u/ubcstaffer123
[link] [comments]
", + "contentSnippet": "submitted by /u/ubcstaffer123 \n [link] [comments]", + "id": "t3_18ik4ib", + "isoDate": "2023-12-14T22:09:48.000Z" + }, + { + "title": "Four years after Apple, Google will finally kill third-party cookies in 2024", + "link": "https://www.reddit.com/r/technology/comments/18iizv5/four_years_after_apple_google_will_finally_kill/", + "pubDate": "2023-12-14T21:19:51.000Z", + "author": "/u/Stiltonrocks", + "content": "
\"Four submitted by /u/Stiltonrocks
[link] [comments]
", + "contentSnippet": "submitted by /u/Stiltonrocks \n [link] [comments]", + "id": "t3_18iizv5", + "isoDate": "2023-12-14T21:19:51.000Z" + }, + { + "title": "Tesla recalls nearly all US vehicles over autopilot system defects", + "link": "https://www.reddit.com/r/technology/comments/18igf72/tesla_recalls_nearly_all_us_vehicles_over/", + "pubDate": "2023-12-14T19:25:06.000Z", + "author": "/u/tyw7", + "content": "
\"Tesla submitted by /u/tyw7
[link] [comments]
", + "contentSnippet": "submitted by /u/tyw7 \n [link] [comments]", + "id": "t3_18igf72", + "isoDate": "2023-12-14T19:25:06.000Z" + }, + { + "title": "Google Will Turn Off Cookies for 30 Million People on January 4", + "link": "https://www.reddit.com/r/technology/comments/18ig57b/google_will_turn_off_cookies_for_30_million/", + "pubDate": "2023-12-14T19:12:41.000Z", + "author": "/u/l30", + "content": "
\"Google submitted by /u/l30
[link] [comments]
", + "contentSnippet": "submitted by /u/l30 \n [link] [comments]", + "id": "t3_18ig57b", + "isoDate": "2023-12-14T19:12:41.000Z" + }, + { + "title": "Cable lobby and Republicans fight proposed ban on early termination fees / Customers should be allowed to cancel cable TV without penalty, Democrats say", + "link": "https://www.reddit.com/r/technology/comments/18ierbm/cable_lobby_and_republicans_fight_proposed_ban_on/", + "pubDate": "2023-12-14T18:10:52.000Z", + "author": "/u/Sorin61", + "content": "
\"Cable submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18ierbm", + "isoDate": "2023-12-14T18:10:52.000Z" + }, + { + "title": "The Most Dangerous Canadian Internet Bill You\u2019ve Never Heard Of Is a Step Closer to Becoming Law", + "link": "https://www.reddit.com/r/technology/comments/18iehtd/the_most_dangerous_canadian_internet_bill_youve/", + "pubDate": "2023-12-14T18:00:00.000Z", + "content": "
\"The
[link] [comments]
", + "contentSnippet": "[link] [comments]", + "id": "t3_18iehtd", + "isoDate": "2023-12-14T18:00:00.000Z" + }, + { + "title": "Adobe warns it may face massive fines for subscription rules", + "link": "https://www.reddit.com/r/technology/comments/18ickq4/adobe_warns_it_may_face_massive_fines_for/", + "pubDate": "2023-12-14T16:35:34.000Z", + "author": "/u/giuliomagnifico", + "content": "
\"Adobe submitted by /u/giuliomagnifico
[link] [comments]
", + "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", + "id": "t3_18ickq4", + "isoDate": "2023-12-14T16:35:34.000Z" + }, + { + "title": "YouTube will have fewer ad breaks on TV \u2014 but the ads are getting longer | You\u2019re going to start seeing ads in between Shorts on TV, too.", + "link": "https://www.reddit.com/r/technology/comments/18ibzfb/youtube_will_have_fewer_ad_breaks_on_tv_but_the/", + "pubDate": "2023-12-14T16:08:56.000Z", + "author": "/u/chrisdh79", + "content": "
\"YouTube submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ibzfb", + "isoDate": "2023-12-14T16:08:56.000Z" + }, + { + "title": "Verizon fell for fake \u201csearch warrant,\u201d gave victim\u2019s phone data to stalker", + "link": "https://www.reddit.com/r/technology/comments/18ibxqi/verizon_fell_for_fake_search_warrant_gave_victims/", + "pubDate": "2023-12-14T16:06:46.000Z", + "author": "/u/AgentBlue62", + "content": "
\"Verizon submitted by /u/AgentBlue62
[link] [comments]
", + "contentSnippet": "submitted by /u/AgentBlue62 \n [link] [comments]", + "id": "t3_18ibxqi", + "isoDate": "2023-12-14T16:06:46.000Z" + }, + { + "title": "Adobe faces big fines from FTC over difficult subscription cancellation", + "link": "https://www.reddit.com/r/technology/comments/18ibe5m/adobe_faces_big_fines_from_ftc_over_difficult/", + "pubDate": "2023-12-14T15:41:41.000Z", + "author": "/u/chrisdh79", + "content": "
\"Adobe submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ibe5m", + "isoDate": "2023-12-14T15:41:41.000Z" + }, + { + "title": "San Fran tech founder is accused of forcing his assistant into a 'slave contract' that called him 'Master' before trafficking her for sex around the world", + "link": "https://www.reddit.com/r/technology/comments/18ia74v/san_fran_tech_founder_is_accused_of_forcing_his/", + "pubDate": "2023-12-14T14:46:10.000Z", + "author": "/u/seekingpolaris", + "content": "
\"San submitted by /u/seekingpolaris
[link] [comments]
", + "contentSnippet": "submitted by /u/seekingpolaris \n [link] [comments]", + "id": "t3_18ia74v", + "isoDate": "2023-12-14T14:46:10.000Z" + }, + { + "title": "Dropbox spooks users with new AI features that send data to OpenAI when used", + "link": "https://www.reddit.com/r/technology/comments/18ia4cu/dropbox_spooks_users_with_new_ai_features_that/", + "pubDate": "2023-12-14T14:42:22.000Z", + "author": "/u/ourlifeintoronto", + "content": "
\"Dropbox submitted by /u/ourlifeintoronto
[link] [comments]
", + "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", + "id": "t3_18ia4cu", + "isoDate": "2023-12-14T14:42:22.000Z" + }, + { + "title": "Pope, once a victim of AI-generated imagery, calls for treaty to regulate artificial intelligence", + "link": "https://www.reddit.com/r/technology/comments/18i9ovc/pope_once_a_victim_of_aigenerated_imagery_calls/", + "pubDate": "2023-12-14T14:22:36.000Z", + "author": "/u/ethereal3xp", + "content": "
\"Pope, submitted by /u/ethereal3xp
[link] [comments]
", + "contentSnippet": "submitted by /u/ethereal3xp \n [link] [comments]", + "id": "t3_18i9ovc", + "isoDate": "2023-12-14T14:22:36.000Z" + }, + { + "title": "Microsoft\u2019s AI Chatbot Replies to Election Questions With Conspiracies, Fake Scandals, and Lies", + "link": "https://www.reddit.com/r/technology/comments/18iz5cl/microsofts_ai_chatbot_replies_to_election/", + "pubDate": "2023-12-15T12:38:10.000Z", + "author": "/u/Chobeat", + "content": "
\"Microsoft\u2019s submitted by /u/Chobeat
[link] [comments]
", + "contentSnippet": "submitted by /u/Chobeat \n [link] [comments]", + "id": "t3_18iz5cl", + "isoDate": "2023-12-15T12:38:10.000Z" + }, + { + "title": "GM to lay off 1,300 Michigan workers as vehicles end production", + "link": "https://www.reddit.com/r/technology/comments/18iz46g/gm_to_lay_off_1300_michigan_workers_as_vehicles/", + "pubDate": "2023-12-15T12:36:16.000Z", + "author": "/u/craywelp", + "content": "
\"GM submitted by /u/craywelp
[link] [comments]
", + "contentSnippet": "submitted by /u/craywelp \n [link] [comments]", + "id": "t3_18iz46g", + "isoDate": "2023-12-15T12:36:16.000Z" + }, + { + "title": "The Contentious Surveillance Law Making Waves in Washington: Why a regulation created to help U.S. intelligence agencies fight terror has become a political football", + "link": "https://www.reddit.com/r/technology/comments/18ib6re/the_contentious_surveillance_law_making_waves_in/", + "pubDate": "2023-12-14T15:31:52.000Z", + "author": "/u/E-Gaming", + "content": "
\"The submitted by /u/E-Gaming
[link] [comments]
", + "contentSnippet": "submitted by /u/E-Gaming \n [link] [comments]", + "id": "t3_18ib6re", + "isoDate": "2023-12-14T15:31:52.000Z" + }, + { + "title": "Jeff Bezos plays down AI dangers and says a trillion humans could live in huge cylindrical space stations", + "link": "https://www.reddit.com/r/technology/comments/18j0oli/jeff_bezos_plays_down_ai_dangers_and_says_a/", + "pubDate": "2023-12-15T13:57:21.000Z", + "author": "/u/Sorin61", + "content": "
\"Jeff submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18j0oli", + "isoDate": "2023-12-15T13:57:21.000Z" + }, + { + "title": "Meta ad policy allowing 2020 election denial followed warning of political backlash, sources say", + "link": "https://www.reddit.com/r/technology/comments/18iji6j/meta_ad_policy_allowing_2020_election_denial/", + "pubDate": "2023-12-14T21:42:36.000Z", + "author": "/u/esporx", + "content": "
\"Meta submitted by /u/esporx
[link] [comments]
", + "contentSnippet": "submitted by /u/esporx \n [link] [comments]", + "id": "t3_18iji6j", + "isoDate": "2023-12-14T21:42:36.000Z" + }, + { + "title": "What\u2019s Left Of Cable TV Is Slowly Going To Hell", + "link": "https://www.reddit.com/r/technology/comments/18j1y65/whats_left_of_cable_tv_is_slowly_going_to_hell/", + "pubDate": "2023-12-15T14:57:19.000Z", + "author": "/u/Sorin61", + "content": "
\"What\u2019s submitted by /u/Sorin61
[link] [comments]
", + "contentSnippet": "submitted by /u/Sorin61 \n [link] [comments]", + "id": "t3_18j1y65", + "isoDate": "2023-12-15T14:57:19.000Z" + }, + { + "title": "Amazon tests space laser to transmit internet, aims 3,236 satellite web | Project Kuiper seeks to deploy a swarm of small satellites into low Earth orbit (LEO) to enhance global broadband access, particularly to remote locations of the planet.", + "link": "https://www.reddit.com/r/technology/comments/18iye14/amazon_tests_space_laser_to_transmit_internet/", + "pubDate": "2023-12-15T11:51:55.000Z", + "author": "/u/chrisdh79", + "content": "
\"Amazon submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18iye14", + "isoDate": "2023-12-15T11:51:55.000Z" + }, + { + "title": "Marketing Company Claims That It Actually Is Listening to Your Phone and Smart Speakers to Target Ads", + "link": "https://www.reddit.com/r/technology/comments/18ipc6f/marketing_company_claims_that_it_actually_is/", + "pubDate": "2023-12-15T02:18:14.000Z", + "author": "/u/457655676", + "content": "
\"Marketing submitted by /u/457655676
[link] [comments]
", + "contentSnippet": "submitted by /u/457655676 \n [link] [comments]", + "id": "t3_18ipc6f", + "isoDate": "2023-12-15T02:18:14.000Z" + }, + { + "title": "How Lab-Grown Chicken Became Another Expensive Silicon Valley Mess", + "link": "https://www.reddit.com/r/technology/comments/18iek71/how_labgrown_chicken_became_another_expensive/", + "pubDate": "2023-12-14T18:02:25.000Z", + "author": "/u/Fun-Mail5667", + "content": "
\"How submitted by /u/Fun-Mail5667
[link] [comments]
", + "contentSnippet": "submitted by /u/Fun-Mail5667 \n [link] [comments]", + "id": "t3_18iek71", + "isoDate": "2023-12-14T18:02:25.000Z" + }, + { + "title": "Twitch immediately rescinds its artistic nudity policy", + "link": "https://www.reddit.com/r/technology/comments/18j4ncp/twitch_immediately_rescinds_its_artistic_nudity/", + "pubDate": "2023-12-15T16:57:42.000Z", + "author": "/u/Thelk641", + "content": "
\"Twitch submitted by /u/Thelk641
[link] [comments]
", + "contentSnippet": "submitted by /u/Thelk641 \n [link] [comments]", + "id": "t3_18j4ncp", + "isoDate": "2023-12-15T16:57:42.000Z" + }, + { + "title": "Ubisoft delists The Crew, with servers shutting next year | Due to infrastructure and licensing constraints.", + "link": "https://www.reddit.com/r/technology/comments/18iza5a/ubisoft_delists_the_crew_with_servers_shutting/", + "pubDate": "2023-12-15T12:45:40.000Z", + "author": "/u/chrisdh79", + "content": "
\"Ubisoft submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18iza5a", + "isoDate": "2023-12-15T12:45:40.000Z" + }, + { + "title": "Starbucks accused of rigging payments in app for nearly $900 million gain over 5 years by consumer watchdog group", + "link": "https://www.reddit.com/r/technology/comments/18y4fm2/starbucks_accused_of_rigging_payments_in_app_for/", + "pubDate": "2024-01-04T04:39:55.000Z", + "author": "/u/habichuelacondulce", + "content": "
\"Starbucks submitted by /u/habichuelacondulce
[link] [comments]
", + "contentSnippet": "submitted by /u/habichuelacondulce \n [link] [comments]", + "id": "t3_18y4fm2", + "isoDate": "2024-01-04T04:39:55.000Z" + }, + { + "title": "SpaceX accused of unlawfully firing staff critical of CEO", + "link": "https://www.reddit.com/r/technology/comments/18y29f0/spacex_accused_of_unlawfully_firing_staff/", + "pubDate": "2024-01-04T02:51:53.000Z", + "author": "/u/etfvpu", + "content": "
\"SpaceX submitted by /u/etfvpu
[link] [comments]
", + "contentSnippet": "submitted by /u/etfvpu \n [link] [comments]", + "id": "t3_18y29f0", + "isoDate": "2024-01-04T02:51:53.000Z" + }, + { + "title": "New AI model can predict human lifespan, researchers say. They want to make sure it's used for good", + "link": "https://www.reddit.com/r/technology/comments/18xyu6e/new_ai_model_can_predict_human_lifespan/", + "pubDate": "2024-01-04T00:19:09.000Z", + "author": "/u/rchaudhary", + "content": "
\"New submitted by /u/rchaudhary
[link] [comments]
", + "contentSnippet": "submitted by /u/rchaudhary \n [link] [comments]", + "id": "t3_18xyu6e", + "isoDate": "2024-01-04T00:19:09.000Z" + }, + { + "title": "Amazon marketplace crackdown has sellers searching for legal help | Clean-up drive has led to some small businesses having their accounts suspended", + "link": "https://www.reddit.com/r/technology/comments/18xv2kl/amazon_marketplace_crackdown_has_sellers/", + "pubDate": "2024-01-03T21:45:44.000Z", + "author": "/u/Hrmbee", + "content": "
\"Amazon submitted by /u/Hrmbee
[link] [comments]
", + "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", + "id": "t3_18xv2kl", + "isoDate": "2024-01-03T21:45:44.000Z" + }, + { + "title": "Cox Distances Itself From Claim It Spies On Users Via Phones, Cable Box Mics", + "link": "https://www.reddit.com/r/technology/comments/18xukw0/cox_distances_itself_from_claim_it_spies_on_users/", + "pubDate": "2024-01-03T21:25:47.000Z", + "author": "/u/TommyAdagio", + "content": "
\"Cox submitted by /u/TommyAdagio
[link] [comments]
", + "contentSnippet": "submitted by /u/TommyAdagio \n [link] [comments]", + "id": "t3_18xukw0", + "isoDate": "2024-01-03T21:25:47.000Z" + }, + { + "title": "Data breach at healthcare tech firm impacts 4.5 million patients", + "link": "https://www.reddit.com/r/technology/comments/18xuksj/data_breach_at_healthcare_tech_firm_impacts_45/", + "pubDate": "2024-01-03T21:25:40.000Z", + "author": "/u/Hrmbee", + "content": "
\"Data submitted by /u/Hrmbee
[link] [comments]
", + "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", + "id": "t3_18xuksj", + "isoDate": "2024-01-03T21:25:40.000Z" + }, + { + "title": "Republicans Trying To Kill Program That Brings Affordable Broadband To The Poor", + "link": "https://www.reddit.com/r/technology/comments/18xubez/republicans_trying_to_kill_program_that_brings/", + "pubDate": "2024-01-03T21:15:17.000Z", + "author": "/u/audiomuse1", + "content": "
\"Republicans submitted by /u/audiomuse1
[link] [comments]
", + "contentSnippet": "submitted by /u/audiomuse1 \n [link] [comments]", + "id": "t3_18xubez", + "isoDate": "2024-01-03T21:15:17.000Z" + }, + { + "title": "Pornhub boycotts markets in 2 more states over age verification laws", + "link": "https://www.reddit.com/r/technology/comments/18xshjo/pornhub_boycotts_markets_in_2_more_states_over/", + "pubDate": "2024-01-03T20:00:55.000Z", + "author": "/u/BurstYourBubbles", + "content": "
\"Pornhub submitted by /u/BurstYourBubbles
[link] [comments]
", + "contentSnippet": "submitted by /u/BurstYourBubbles \n [link] [comments]", + "id": "t3_18xshjo", + "isoDate": "2024-01-03T20:00:55.000Z" + }, + { + "title": "Facebook\u2019s New Privacy Nightmare: \u2018Link History\u2019", + "link": "https://www.reddit.com/r/technology/comments/18xsdum/facebooks_new_privacy_nightmare_link_history/", + "pubDate": "2024-01-03T19:56:54.000Z", + "author": "/u/CrankyBear", + "content": "
\"Facebook\u2019s submitted by /u/CrankyBear
[link] [comments]
", + "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", + "id": "t3_18xsdum", + "isoDate": "2024-01-03T19:56:54.000Z" + }, + { + "title": "What's next for Mozilla?", + "link": "https://www.reddit.com/r/technology/comments/18xs7b7/whats_next_for_mozilla/", + "pubDate": "2024-01-03T19:49:35.000Z", + "author": "/u/CrankyBear", + "content": "
\"What's submitted by /u/CrankyBear
[link] [comments]
", + "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", + "id": "t3_18xs7b7", + "isoDate": "2024-01-03T19:49:35.000Z" + }, + { + "title": "Superconductors: Possible Meissner effect near room temperature in copper-substituted lead apatite", + "link": "https://www.reddit.com/r/technology/comments/18xrz5q/superconductors_possible_meissner_effect_near/", + "pubDate": "2024-01-03T19:40:37.000Z", + "author": "/u/smurfkill12", + "content": " submitted by /u/smurfkill12
[link] [comments]", + "contentSnippet": "submitted by /u/smurfkill12 \n [link] [comments]", + "id": "t3_18xrz5q", + "isoDate": "2024-01-03T19:40:37.000Z" + }, + { + "title": "Everyone is on their phones. But is it really phone addiction we\u2019re experiencing?", + "link": "https://www.reddit.com/r/technology/comments/18xqc2y/everyone_is_on_their_phones_but_is_it_really/", + "pubDate": "2024-01-03T18:36:19.000Z", + "author": "/u/Wagamaga", + "content": "
\"Everyone submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_18xqc2y", + "isoDate": "2024-01-03T18:36:19.000Z" + }, + { + "title": "23andMe tells victims it's their fault that their data was breached", + "link": "https://www.reddit.com/r/technology/comments/18xq5a0/23andme_tells_victims_its_their_fault_that_their/", + "pubDate": "2024-01-03T18:28:40.000Z", + "author": "/u/kendumez", + "content": "
\"23andMe submitted by /u/kendumez
[link] [comments]
", + "contentSnippet": "submitted by /u/kendumez \n [link] [comments]", + "id": "t3_18xq5a0", + "isoDate": "2024-01-03T18:28:40.000Z" + }, + { + "title": "Kids Online Safety Shouldn\u2019t Require Massive Online Censorship and Surveillance: 2023 Year in Review.", + "link": "https://www.reddit.com/r/technology/comments/18xp4p0/kids_online_safety_shouldnt_require_massive/", + "pubDate": "2024-01-03T17:47:58.000Z", + "author": "/u/EmptySpaceForAHeart", + "content": "
\"Kids submitted by /u/EmptySpaceForAHeart
[link] [comments]
", + "contentSnippet": "submitted by /u/EmptySpaceForAHeart \n [link] [comments]", + "id": "t3_18xp4p0", + "isoDate": "2024-01-03T17:47:58.000Z" + }, + { + "title": "Amazon Video Ad Push Seen Generating Extra $5 Billion in Revenue", + "link": "https://www.reddit.com/r/technology/comments/18xoxsp/amazon_video_ad_push_seen_generating_extra_5/", + "pubDate": "2024-01-03T17:40:16.000Z", + "author": "/u/giuliomagnifico", + "content": "
\"Amazon submitted by /u/giuliomagnifico
[link] [comments]
", + "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", + "id": "t3_18xoxsp", + "isoDate": "2024-01-03T17:40:16.000Z" + }, + { + "title": "Notorious Airbnb Host Charged with Allegedly Running $8.5M Nationwide Scam | Shray Goel is charged with running an Airbnb scam across 100 U.S. properties.", + "link": "https://www.reddit.com/r/technology/comments/18xo3e7/notorious_airbnb_host_charged_with_allegedly/", + "pubDate": "2024-01-03T17:04:00.000Z", + "author": "/u/chrisdh79", + "content": "
\"Notorious submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18xo3e7", + "isoDate": "2024-01-03T17:04:00.000Z" + }, + { + "title": "Big carmakers lobbied UK to weaken or delay electric car rules", + "link": "https://www.reddit.com/r/technology/comments/18xmunm/big_carmakers_lobbied_uk_to_weaken_or_delay/", + "pubDate": "2024-01-03T16:05:23.000Z", + "author": "/u/Wagamaga", + "content": "
\"Big submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_18xmunm", + "isoDate": "2024-01-03T16:05:23.000Z" + }, + { + "title": "Ex-Samsung employee indicted for alleged chip tech leak to Chinese firm", + "link": "https://www.reddit.com/r/technology/comments/18xks0y/exsamsung_employee_indicted_for_alleged_chip_tech/", + "pubDate": "2024-01-03T14:33:34.000Z", + "author": "/u/Saltedline", + "content": "
\"Ex-Samsung submitted by /u/Saltedline
[link] [comments]
", + "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", + "id": "t3_18xks0y", + "isoDate": "2024-01-03T14:33:34.000Z" + }, + { + "title": "Fidelity marks down X valuation by 71.5%", + "link": "https://www.reddit.com/r/technology/comments/18xkotx/fidelity_marks_down_x_valuation_by_715/", + "pubDate": "2024-01-03T14:29:40.000Z", + "author": "/u/marketrent", + "content": "
\"Fidelity submitted by /u/marketrent
[link] [comments]
", + "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", + "id": "t3_18xkotx", + "isoDate": "2024-01-03T14:29:40.000Z" + }, + { + "title": "Social media companies made $11 billion in US ad revenue from minors, Harvard study finds", + "link": "https://www.reddit.com/r/technology/comments/18xkeh5/social_media_companies_made_11_billion_in_us_ad/", + "pubDate": "2024-01-03T14:16:26.000Z", + "author": "/u/outerworldLV", + "content": "
\"Social submitted by /u/outerworldLV
[link] [comments]
", + "contentSnippet": "submitted by /u/outerworldLV \n [link] [comments]", + "id": "t3_18xkeh5", + "isoDate": "2024-01-03T14:16:26.000Z" + }, + { + "title": "Vizio settles for $3M after saying 60 Hz TVs had 120 Hz \u201ceffective refresh rate\u201d | Vizio claimed backlight scanning made refresh rates seem twice as high.", + "link": "https://www.reddit.com/r/technology/comments/18xk0xk/vizio_settles_for_3m_after_saying_60_hz_tvs_had/", + "pubDate": "2024-01-03T13:58:59.000Z", + "author": "/u/chrisdh79", + "content": "
\"Vizio submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18xk0xk", + "isoDate": "2024-01-03T13:58:59.000Z" + }, + { + "title": "William Wallace: The Tesla recall tells us we can't trust the company", + "link": "https://www.reddit.com/r/technology/comments/18xjm93/william_wallace_the_tesla_recall_tells_us_we_cant/", + "pubDate": "2024-01-03T13:39:15.000Z", + "author": "/u/andricx", + "content": "
\"William submitted by /u/andricx
[link] [comments]
", + "contentSnippet": "submitted by /u/andricx \n [link] [comments]", + "id": "t3_18xjm93", + "isoDate": "2024-01-03T13:39:15.000Z" + }, + { + "title": "A New Year\u2019s resolution for tech companies: knock it off with the CAPTCHAs", + "link": "https://www.reddit.com/r/technology/comments/18xig0y/a_new_years_resolution_for_tech_companies_knock/", + "pubDate": "2024-01-03T12:37:30.000Z", + "author": "/u/Franco1875", + "content": "
\"A submitted by /u/Franco1875
[link] [comments]
", + "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", + "id": "t3_18xig0y", + "isoDate": "2024-01-03T12:37:30.000Z" + }, + { + "title": "Pornhub blocks Montana and North Carolina as their age verification laws take effect | The website says the states' ID requirement would put users' privacy at risk", + "link": "https://www.reddit.com/r/technology/comments/18xhfm1/pornhub_blocks_montana_and_north_carolina_as/", + "pubDate": "2024-01-03T11:39:28.000Z", + "author": "/u/chrisdh79", + "content": "
\"Pornhub submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18xhfm1", + "isoDate": "2024-01-03T11:39:28.000Z" + }, + { + "title": "A 13-year-old is the first human to beat Tetris | Numerous theoretical milestones remain", + "link": "https://www.reddit.com/r/technology/comments/18xhbt2/a_13yearold_is_the_first_human_to_beat_tetris/", + "pubDate": "2024-01-03T11:32:42.000Z", + "author": "/u/chrisdh79", + "content": "
\"A submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18xhbt2", + "isoDate": "2024-01-03T11:32:42.000Z" + }, + { + "title": "Microsoft is adding a new key to PC keyboards for the first time since 1994", + "link": "https://www.reddit.com/r/technology/comments/18y9jki/microsoft_is_adding_a_new_key_to_pc_keyboards_for/", + "pubDate": "2024-01-04T09:57:09.000Z", + "author": "/u/ardi62", + "content": "
\"Microsoft submitted by /u/ardi62
[link] [comments]
", + "contentSnippet": "submitted by /u/ardi62 \n [link] [comments]", + "id": "t3_18y9jki", + "isoDate": "2024-01-04T09:57:09.000Z" + }, + { + "title": "Can a Pill Prevent Death from Venomous Snake Bites?", + "link": "https://www.reddit.com/r/technology/comments/18xl387/can_a_pill_prevent_death_from_venomous_snake_bites/", + "pubDate": "2024-01-03T14:48:06.000Z", + "author": "/u/waozen", + "content": "
\"Can submitted by /u/waozen
[link] [comments]
", + "contentSnippet": "submitted by /u/waozen \n [link] [comments]", + "id": "t3_18xl387", + "isoDate": "2024-01-03T14:48:06.000Z" + }, + { + "title": "Lacking information, Oregon residents guess at future of offshore wind", + "link": "https://www.reddit.com/r/technology/comments/18xku3v/lacking_information_oregon_residents_guess_at/", + "pubDate": "2024-01-03T14:36:21.000Z", + "author": "/u/OregonTripleBeam", + "content": "
\"Lacking submitted by /u/OregonTripleBeam
[link] [comments]
", + "contentSnippet": "submitted by /u/OregonTripleBeam \n [link] [comments]", + "id": "t3_18xku3v", + "isoDate": "2024-01-03T14:36:21.000Z" + }, + { + "title": "New cars bought in the UK must be zero emission by 2035 \u2013 it's the law", + "link": "https://www.reddit.com/r/technology/comments/18yckh1/new_cars_bought_in_the_uk_must_be_zero_emission/", + "pubDate": "2024-01-04T12:57:35.000Z", + "author": "/u/Loki-L", + "content": "
\"New submitted by /u/Loki-L
[link] [comments]
", + "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", + "id": "t3_18yckh1", + "isoDate": "2024-01-04T12:57:35.000Z" + }, + { + "title": "ChatGPT bombs test on diagnosing kids\u2019 medical cases with 83% error rate | It was bad at recognizing relationships and needs selective training, researchers say.", + "link": "https://www.reddit.com/r/technology/comments/18ybn1g/chatgpt_bombs_test_on_diagnosing_kids_medical/", + "pubDate": "2024-01-04T12:07:29.000Z", + "author": "/u/chrisdh79", + "content": "
\"ChatGPT submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ybn1g", + "isoDate": "2024-01-04T12:07:29.000Z" + }, + { + "title": "In a breakthrough, diabetics\u2019 damaged cells regenerated to produce insulin", + "link": "https://www.reddit.com/r/technology/comments/18yc3rx/in_a_breakthrough_diabetics_damaged_cells/", + "pubDate": "2024-01-04T12:33:02.000Z", + "author": "/u/chrisdh79", + "content": "
\"In submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18yc3rx", + "isoDate": "2024-01-04T12:33:02.000Z" + }, + { + "title": "Samsung said to be planning human-free, fully automated fabs within six years", + "link": "https://www.reddit.com/r/technology/comments/18ybxom/samsung_said_to_be_planning_humanfree_fully/", + "pubDate": "2024-01-04T12:23:54.000Z", + "author": "/u/chrisdh79", + "content": "
\"Samsung submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ybxom", + "isoDate": "2024-01-04T12:23:54.000Z" + }, + { + "title": "Intel spins out AI software firm with backing from DigitalBridge", + "link": "https://www.reddit.com/r/technology/comments/18y1doe/intel_spins_out_ai_software_firm_with_backing/", + "pubDate": "2024-01-04T02:10:50.000Z", + "author": "/u/GetEdgeful", + "content": " submitted by /u/GetEdgeful
[link] [comments]", + "contentSnippet": "submitted by /u/GetEdgeful \n [link] [comments]", + "id": "t3_18y1doe", + "isoDate": "2024-01-04T02:10:50.000Z" + }, + { + "title": "Artificial Intelligence\u2019s Threat to Democracy", + "link": "https://www.reddit.com/r/technology/comments/18xtzv7/artificial_intelligences_threat_to_democracy/", + "pubDate": "2024-01-03T21:02:14.000Z", + "author": "/u/Wagamaga", + "content": "
\"Artificial submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_18xtzv7", + "isoDate": "2024-01-03T21:02:14.000Z" + }, + { + "title": "India widens regulatory grip over tech firms", + "link": "https://www.reddit.com/r/technology/comments/18xn6vz/india_widens_regulatory_grip_over_tech_firms/", + "pubDate": "2024-01-03T16:19:42.000Z", + "author": "/u/asteriskspace", + "content": "
\"India submitted by /u/asteriskspace
[link] [comments]
", + "contentSnippet": "submitted by /u/asteriskspace \n [link] [comments]", + "id": "t3_18xn6vz", + "isoDate": "2024-01-03T16:19:42.000Z" + }, + { + "title": "Apple's share price drop around 5% -- equal $162 billion lost for investors", + "link": "https://www.reddit.com/r/technology/comments/18z47fr/apples_share_price_drop_around_5_equal_162/", + "pubDate": "2024-01-05T10:54:36.000Z", + "author": "/u/Head-Produce-1931", + "content": "
\"Apple's submitted by /u/Head-Produce-1931
[link] [comments]
", + "contentSnippet": "submitted by /u/Head-Produce-1931 \n [link] [comments]", + "id": "t3_18z47fr", + "isoDate": "2024-01-05T10:54:36.000Z" + }, + { + "title": "Inspired by Isaac Asimov\u2019s Three Laws of Robotics, Google wrote a \u2018Robot Constitution\u2019 to make sure its new AI droids won\u2019t kill us", + "link": "https://www.reddit.com/r/technology/comments/18z3m8g/inspired_by_isaac_asimovs_three_laws_of_robotics/", + "pubDate": "2024-01-05T10:15:16.000Z", + "author": "/u/marketrent", + "content": "
\"Inspired submitted by /u/marketrent
[link] [comments]
", + "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", + "id": "t3_18z3m8g", + "isoDate": "2024-01-05T10:15:16.000Z" + }, + { + "title": "DARPA's air-steered X-65 jet heads into production with goal of flying by 2025", + "link": "https://www.reddit.com/r/technology/comments/18z1xxl/darpas_airsteered_x65_jet_heads_into_production/", + "pubDate": "2024-01-05T08:21:29.000Z", + "author": "/u/Loki-L", + "content": "
\"DARPA's submitted by /u/Loki-L
[link] [comments]
", + "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", + "id": "t3_18z1xxl", + "isoDate": "2024-01-05T08:21:29.000Z" + }, + { + "title": "Google broke labor laws when it refused to bargain with YouTube Music contract workers | The NLRB ruled that Google\u2019s refusal to negotiate with a group of Austin-based contractors is illegal.", + "link": "https://www.reddit.com/r/technology/comments/18yvcro/google_broke_labor_laws_when_it_refused_to/", + "pubDate": "2024-01-05T02:20:47.000Z", + "author": "/u/chrisdh79", + "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18yvcro", + "isoDate": "2024-01-05T02:20:47.000Z" + }, + { + "title": "Australian woman used her BYD electric car to power her son's dialysis machine during a blackout", + "link": "https://www.reddit.com/r/technology/comments/18yu02d/australian_woman_used_her_byd_electric_car_to/", + "pubDate": "2024-01-05T01:17:55.000Z", + "author": "/u/tommos", + "content": "
\"Australian submitted by /u/tommos
[link] [comments]
", + "contentSnippet": "submitted by /u/tommos \n [link] [comments]", + "id": "t3_18yu02d", + "isoDate": "2024-01-05T01:17:55.000Z" + }, + { + "title": "First functional graphene semiconductor paves the path to post-silicon chips \u2014 Georgia Tech researchers' material can be used with standard chipmaking methods", + "link": "https://www.reddit.com/r/technology/comments/18yrpu2/first_functional_graphene_semiconductor_paves_the/", + "pubDate": "2024-01-04T23:39:31.000Z", + "author": "/u/ZapActions-dower", + "content": "
\"First submitted by /u/ZapActions-dower
[link] [comments]
", + "contentSnippet": "submitted by /u/ZapActions-dower \n [link] [comments]", + "id": "t3_18yrpu2", + "isoDate": "2024-01-04T23:39:31.000Z" + }, + { + "title": "There Was Never Such a Thing as \u2018Open\u2019 AI | Transparency isn\u2019t enough to democratize the technology", + "link": "https://www.reddit.com/r/technology/comments/18yqlf2/there_was_never_such_a_thing_as_open_ai/", + "pubDate": "2024-01-04T22:52:30.000Z", + "author": "/u/Hrmbee", + "content": "
\"There submitted by /u/Hrmbee
[link] [comments]
", + "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", + "id": "t3_18yqlf2", + "isoDate": "2024-01-04T22:52:30.000Z" + }, + { + "title": "US pay-TV subscriber base eroding at record pace", + "link": "https://www.reddit.com/r/technology/comments/18yomsc/us_paytv_subscriber_base_eroding_at_record_pace/", + "pubDate": "2024-01-04T21:34:48.000Z", + "author": "/u/rit56", + "content": "
\"US submitted by /u/rit56
[link] [comments]
", + "contentSnippet": "submitted by /u/rit56 \n [link] [comments]", + "id": "t3_18yomsc", + "isoDate": "2024-01-04T21:34:48.000Z" + }, + { + "title": "Parents selling videos of their kids for $50 in Google-backed study", + "link": "https://www.reddit.com/r/technology/comments/18yoi3e/parents_selling_videos_of_their_kids_for_50_in/", + "pubDate": "2024-01-04T21:29:31.000Z", + "author": "/u/SheeshMcneesh", + "content": "
\"Parents submitted by /u/SheeshMcneesh
[link] [comments]
", + "contentSnippet": "submitted by /u/SheeshMcneesh \n [link] [comments]", + "id": "t3_18yoi3e", + "isoDate": "2024-01-04T21:29:31.000Z" + }, + { + "title": "Law firm that handles data breaches was hit by data breach", + "link": "https://www.reddit.com/r/technology/comments/18yn9t6/law_firm_that_handles_data_breaches_was_hit_by/", + "pubDate": "2024-01-04T20:38:41.000Z", + "author": "/u/ourlifeintoronto", + "content": "
\"Law submitted by /u/ourlifeintoronto
[link] [comments]
", + "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", + "id": "t3_18yn9t6", + "isoDate": "2024-01-04T20:38:41.000Z" + }, + { + "title": "SpaceX Sues US Labor Board Over Fired Employees Case", + "link": "https://www.reddit.com/r/technology/comments/18yn0i6/spacex_sues_us_labor_board_over_fired_employees/", + "pubDate": "2024-01-04T20:27:44.000Z", + "author": "/u/Zhukov-74", + "content": "
\"SpaceX submitted by /u/Zhukov-74
[link] [comments]
", + "contentSnippet": "submitted by /u/Zhukov-74 \n [link] [comments]", + "id": "t3_18yn0i6", + "isoDate": "2024-01-04T20:27:44.000Z" + }, + { + "title": "World's first partial heart transplant grows valves and arteries | This method can 'potentially double the number of hearts that are used for the benefit of children with heart disease.'", + "link": "https://www.reddit.com/r/technology/comments/18ymimm/worlds_first_partial_heart_transplant_grows/", + "pubDate": "2024-01-04T20:06:55.000Z", + "author": "/u/chrisdh79", + "content": "
\"World's submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ymimm", + "isoDate": "2024-01-04T20:06:55.000Z" + }, + { + "title": "23andMe told victims of data breach that suing is futile, letter shows | Victims are still arguing that 23andMe's security measures were inadequate.", + "link": "https://www.reddit.com/r/technology/comments/18ymfp8/23andme_told_victims_of_data_breach_that_suing_is/", + "pubDate": "2024-01-04T20:03:33.000Z", + "author": "/u/chrisdh79", + "content": "
\"23andMe submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ymfp8", + "isoDate": "2024-01-04T20:03:33.000Z" + }, + { + "title": "Microsoft unveils \u2018Copilot\u2019 key, its biggest update to Windows keyboard in 30 years", + "link": "https://www.reddit.com/r/technology/comments/18ym2n7/microsoft_unveils_copilot_key_its_biggest_update/", + "pubDate": "2024-01-04T19:49:27.000Z", + "author": "/u/OddNugget", + "content": "
\"Microsoft submitted by /u/OddNugget
[link] [comments]
", + "contentSnippet": "submitted by /u/OddNugget \n [link] [comments]", + "id": "t3_18ym2n7", + "isoDate": "2024-01-04T19:49:27.000Z" + }, + { + "title": "California Judge Says Because Snapchat Has Disappearing Messages, Section 230 Doesn\u2019t Apply To Lawsuits Over Snapchat Content", + "link": "https://www.reddit.com/r/technology/comments/18yknhh/california_judge_says_because_snapchat_has/", + "pubDate": "2024-01-04T18:51:35.000Z", + "author": "/u/ourlifeintoronto", + "content": "
\"California submitted by /u/ourlifeintoronto
[link] [comments]
", + "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", + "id": "t3_18yknhh", + "isoDate": "2024-01-04T18:51:35.000Z" + }, + { + "title": "Scientists hail new antibiotic that can kill drug-resistant bacteria", + "link": "https://www.reddit.com/r/technology/comments/18yklu9/scientists_hail_new_antibiotic_that_can_kill/", + "pubDate": "2024-01-04T18:49:53.000Z", + "author": "/u/ourlifeintoronto", + "content": "
\"Scientists submitted by /u/ourlifeintoronto
[link] [comments]
", + "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", + "id": "t3_18yklu9", + "isoDate": "2024-01-04T18:49:53.000Z" + }, + { + "title": "The Tech Billionaires Soft-Launching Secession in California \u2014 If these Silicon Valley plutocrats have their way, a swath of Solano County will be transformed into their own nation-state", + "link": "https://www.reddit.com/r/technology/comments/18yk2ld/the_tech_billionaires_softlaunching_secession_in/", + "pubDate": "2024-01-04T18:28:25.000Z", + "author": "/u/BlankVerse", + "content": "
\"The submitted by /u/BlankVerse
[link] [comments]
", + "contentSnippet": "submitted by /u/BlankVerse \n [link] [comments]", + "id": "t3_18yk2ld", + "isoDate": "2024-01-04T18:28:25.000Z" + }, + { + "title": "The final frontier? How humans could live underwater in 'ocean stations'", + "link": "https://www.reddit.com/r/technology/comments/18yjezj/the_final_frontier_how_humans_could_live/", + "pubDate": "2024-01-04T18:01:53.000Z", + "author": "/u/fchung", + "content": "
\"The submitted by /u/fchung
[link] [comments]
", + "contentSnippet": "submitted by /u/fchung \n [link] [comments]", + "id": "t3_18yjezj", + "isoDate": "2024-01-04T18:01:53.000Z" + }, + { + "title": "Google Just Disabled Cookies for 30 Million Chrome Users. Here\u2019s How to Tell If You\u2019re One of Them | It\u2019s the beginning of the end in Google\u2019s plan to kill cookies forever", + "link": "https://www.reddit.com/r/technology/comments/18yi459/google_just_disabled_cookies_for_30_million/", + "pubDate": "2024-01-04T17:08:16.000Z", + "author": "/u/Hrmbee", + "content": "
\"Google submitted by /u/Hrmbee
[link] [comments]
", + "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", + "id": "t3_18yi459", + "isoDate": "2024-01-04T17:08:16.000Z" + }, + { + "title": "HyperVerse hedge fund CEO may not exist \u2014 Investigation finds no record of identity after collapse causing an estimated $1.3 billion in customer losses", + "link": "https://www.reddit.com/r/technology/comments/18yg66f/hyperverse_hedge_fund_ceo_may_not_exist/", + "pubDate": "2024-01-04T15:46:44.000Z", + "author": "/u/marketrent", + "content": "
\"HyperVerse submitted by /u/marketrent
[link] [comments]
", + "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", + "id": "t3_18yg66f", + "isoDate": "2024-01-04T15:46:44.000Z" + }, + { + "title": "Google is preparing a paid version of Bard", + "link": "https://www.reddit.com/r/technology/comments/18yftmu/google_is_preparing_a_paid_version_of_bard/", + "pubDate": "2024-01-04T15:31:15.000Z", + "author": "/u/liberal_senator", + "content": "
\"Google submitted by /u/liberal_senator
[link] [comments]
", + "contentSnippet": "submitted by /u/liberal_senator \n [link] [comments]", + "id": "t3_18yftmu", + "isoDate": "2024-01-04T15:31:15.000Z" + }, + { + "title": "Google OAuth secrets exposed as account-hijacking MultiLogin vulnerability discovered", + "link": "https://www.reddit.com/r/technology/comments/18yf3yw/google_oauth_secrets_exposed_as_accounthijacking/", + "pubDate": "2024-01-04T14:59:22.000Z", + "author": "/u/Ok-Purpose-3855", + "content": "
\"Google submitted by /u/Ok-Purpose-3855
[link] [comments]
", + "contentSnippet": "submitted by /u/Ok-Purpose-3855 \n [link] [comments]", + "id": "t3_18yf3yw", + "isoDate": "2024-01-04T14:59:22.000Z" + }, + { + "title": "Technical headaches put the brakes on GM\u2019s big EV push", + "link": "https://www.reddit.com/r/technology/comments/18yf0um/technical_headaches_put_the_brakes_on_gms_big_ev/", + "pubDate": "2024-01-04T14:55:16.000Z", + "author": "/u/RAISEStheQuestion", + "content": "
\"Technical submitted by /u/RAISEStheQuestion
[link] [comments]
", + "contentSnippet": "submitted by /u/RAISEStheQuestion \n [link] [comments]", + "id": "t3_18yf0um", + "isoDate": "2024-01-04T14:55:16.000Z" + }, + { + "title": "The Xbox Series S toaster is real", + "link": "https://www.reddit.com/r/technology/comments/18yeil2/the_xbox_series_s_toaster_is_real/", + "pubDate": "2024-01-04T14:31:39.000Z", + "author": "/u/TheMawgu", + "content": "
\"The submitted by /u/TheMawgu
[link] [comments]
", + "contentSnippet": "submitted by /u/TheMawgu \n [link] [comments]", + "id": "t3_18yeil2", + "isoDate": "2024-01-04T14:31:39.000Z" + }, + { + "title": "Hearing aids may boost longevity, study finds. But only if used regularly.", + "link": "https://www.reddit.com/r/technology/comments/18ydvse/hearing_aids_may_boost_longevity_study_finds_but/", + "pubDate": "2024-01-04T14:02:25.000Z", + "author": "/u/Sariel007", + "content": "
\"Hearing submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_18ydvse", + "isoDate": "2024-01-04T14:02:25.000Z" + }, + { + "title": "Nvidia teases RTX 40 Super series launch at CES \u2014 here's all of the leaked specs", + "link": "https://www.reddit.com/r/technology/comments/18z5z3s/nvidia_teases_rtx_40_super_series_launch_at_ces/", + "pubDate": "2024-01-05T12:40:30.000Z", + "author": "/u/MoparFX", + "content": "
\"Nvidia submitted by /u/MoparFX
[link] [comments]
", + "contentSnippet": "submitted by /u/MoparFX \n [link] [comments]", + "id": "t3_18z5z3s", + "isoDate": "2024-01-05T12:40:30.000Z" + }, + { + "title": "Arizona's first all-electric fire truck pumps 750 gallons per min | Mesa unveils Arizona's inaugural all-electric fire truck, prioritizing firefighter safety and environmental sustainability, aligning with the city's Climate Action Plan.", + "link": "https://www.reddit.com/r/technology/comments/18z93i6/arizonas_first_allelectric_fire_truck_pumps_750/", + "pubDate": "2024-01-05T15:11:33.000Z", + "author": "/u/chrisdh79", + "content": "
\"Arizona's submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18z93i6", + "isoDate": "2024-01-05T15:11:33.000Z" + }, + { + "title": "Huawei Teardown Shows 5nm Laptop Chip Made in Taiwan, Not China", + "link": "https://www.reddit.com/r/technology/comments/18z7ikl/huawei_teardown_shows_5nm_laptop_chip_made_in/", + "pubDate": "2024-01-05T13:59:38.000Z", + "author": "/u/benh999", + "content": "
\"Huawei submitted by /u/benh999
[link] [comments]
", + "contentSnippet": "submitted by /u/benh999 \n [link] [comments]", + "id": "t3_18z7ikl", + "isoDate": "2024-01-05T13:59:38.000Z" + }, + { + "title": "Tesla lowers Model Y, S, and X range estimations following exaggeration complaints | Several popular models are now showing lower range estimates in the US. The move comes after the DOJ opened a probe into inflated claims, but Tesla doesn\u2019t give a reason.", + "link": "https://www.reddit.com/r/technology/comments/18z6sai/tesla_lowers_model_y_s_and_x_range_estimations/", + "pubDate": "2024-01-05T13:23:35.000Z", + "author": "/u/chrisdh79", + "content": "
\"Tesla submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18z6sai", + "isoDate": "2024-01-05T13:23:35.000Z" + }, + { + "title": "Researchers Create First Functional Semiconductor Made From Graphene", + "link": "https://www.reddit.com/r/technology/comments/18z57x5/researchers_create_first_functional_semiconductor/", + "pubDate": "2024-01-05T11:56:58.000Z", + "author": "/u/giuliomagnifico", + "content": " submitted by /u/giuliomagnifico
[link] [comments]", + "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", + "id": "t3_18z57x5", + "isoDate": "2024-01-05T11:56:58.000Z" + }, + { + "title": "Beware the \u2018botshit\u2019: why generative AI is such a real and imminent threat to the way we live", + "link": "https://www.reddit.com/r/technology/comments/18z3w36/beware_the_botshit_why_generative_ai_is_such_a/", + "pubDate": "2024-01-05T10:33:47.000Z", + "author": "/u/zsreport", + "content": "
\"Beware submitted by /u/zsreport
[link] [comments]
", + "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", + "id": "t3_18z3w36", + "isoDate": "2024-01-05T10:33:47.000Z" + }, + { + "title": "China unveils new artificial intelligence guidelines for scientists and bans use in funding applications", + "link": "https://www.reddit.com/r/technology/comments/18z2tsk/china_unveils_new_artificial_intelligence/", + "pubDate": "2024-01-05T09:21:34.000Z", + "author": "/u/Saltedline", + "content": "
\"China submitted by /u/Saltedline
[link] [comments]
", + "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", + "id": "t3_18z2tsk", + "isoDate": "2024-01-05T09:21:34.000Z" + }, + { + "title": "Discord is laying off 17 percent of employees", + "link": "https://www.reddit.com/r/technology/comments/194991v/discord_is_laying_off_17_percent_of_employees/", + "pubDate": "2024-01-11T18:52:09.000Z", + "author": "/u/ClusterFugazi", + "content": "
\"Discord submitted by /u/ClusterFugazi
[link] [comments]
", + "contentSnippet": "submitted by /u/ClusterFugazi \n [link] [comments]", + "id": "t3_194991v", + "isoDate": "2024-01-11T18:52:09.000Z" + }, + { + "title": "Hertz Is Selling 20,000 Used EVs Due To High Repair Costs", + "link": "https://www.reddit.com/r/technology/comments/1945jdx/hertz_is_selling_20000_used_evs_due_to_high/", + "pubDate": "2024-01-11T16:21:22.000Z", + "author": "/u/Geno0wl", + "content": "
\"Hertz submitted by /u/Geno0wl
[link] [comments]
", + "contentSnippet": "submitted by /u/Geno0wl \n [link] [comments]", + "id": "t3_1945jdx", + "isoDate": "2024-01-11T16:21:22.000Z" + }, + { + "title": "Microsoft Overtakes Apple as World's Most Valuable Company", + "link": "https://www.reddit.com/r/technology/comments/1944dqs/microsoft_overtakes_apple_as_worlds_most_valuable/", + "pubDate": "2024-01-11T15:31:24.000Z", + "author": "/u/Avieshek", + "content": "
\"Microsoft submitted by /u/Avieshek
[link] [comments]
", + "contentSnippet": "submitted by /u/Avieshek \n [link] [comments]", + "id": "t3_1944dqs", + "isoDate": "2024-01-11T15:31:24.000Z" + }, + { + "title": "Microsoft overtakes Apple as world's most valuable company", + "link": "https://www.reddit.com/r/technology/comments/1943k2e/microsoft_overtakes_apple_as_worlds_most_valuable/", + "pubDate": "2024-01-11T14:54:50.000Z", + "author": "/u/PAO_RT_IN_THE_KISSER", + "content": " submitted by /u/PAO_RT_IN_THE_KISSER
[link] [comments]", + "contentSnippet": "submitted by /u/PAO_RT_IN_THE_KISSER \n [link] [comments]", + "id": "t3_1943k2e", + "isoDate": "2024-01-11T14:54:50.000Z" + }, + { + "title": "Israeli Group Claims It Uses Big Tech Back Channels to Take Down Content", + "link": "https://www.reddit.com/r/technology/comments/19438z5/israeli_group_claims_it_uses_big_tech_back/", + "pubDate": "2024-01-11T14:40:44.000Z", + "author": "/u/Pilast", + "content": "
\"Israeli submitted by /u/Pilast
[link] [comments]
", + "contentSnippet": "submitted by /u/Pilast \n [link] [comments]", + "id": "t3_19438z5", + "isoDate": "2024-01-11T14:40:44.000Z" + }, + { + "title": "Broadcom ditches VMware Cloud Service Providers - 'How can they cancel a major program affecting hundreds, perhaps thousands of customers, with zero notice?'", + "link": "https://www.reddit.com/r/technology/comments/1941km2/broadcom_ditches_vmware_cloud_service_providers/", + "pubDate": "2024-01-11T13:21:37.000Z", + "author": "/u/Loki-L", + "content": "
\"Broadcom submitted by /u/Loki-L
[link] [comments]
", + "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", + "id": "t3_1941km2", + "isoDate": "2024-01-11T13:21:37.000Z" + }, + { + "title": "White House unveils $623m in funding to boost electric vehicle charging points", + "link": "https://www.reddit.com/r/technology/comments/1941h88/white_house_unveils_623m_in_funding_to_boost/", + "pubDate": "2024-01-11T13:16:47.000Z", + "author": "/u/zsreport", + "content": "
\"White submitted by /u/zsreport
[link] [comments]
", + "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", + "id": "t3_1941h88", + "isoDate": "2024-01-11T13:16:47.000Z" + }, + { + "title": "A Chinese professor used AI to write a science fiction novel. Then it was a winner in a national competition", + "link": "https://www.reddit.com/r/technology/comments/1940q66/a_chinese_professor_used_ai_to_write_a_science/", + "pubDate": "2024-01-11T12:36:41.000Z", + "author": "/u/Maxie445", + "content": "
\"A submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_1940q66", + "isoDate": "2024-01-11T12:36:41.000Z" + }, + { + "title": "The largest US dam-removal effort to date has begun", + "link": "https://www.reddit.com/r/technology/comments/1940bkv/the_largest_us_damremoval_effort_to_date_has_begun/", + "pubDate": "2024-01-11T12:14:11.000Z", + "author": "/u/porkchop_d_clown", + "content": "
\"The submitted by /u/porkchop_d_clown
[link] [comments]
", + "contentSnippet": "submitted by /u/porkchop_d_clown \n [link] [comments]", + "id": "t3_1940bkv", + "isoDate": "2024-01-11T12:14:11.000Z" + }, + { + "title": "AI-Generated George Carlin Drops Comedy Special That Daughter Speaks Out Against: \u2018No Machine Will Ever Replace His Genius\u2019", + "link": "https://www.reddit.com/r/technology/comments/19406yg/aigenerated_george_carlin_drops_comedy_special/", + "pubDate": "2024-01-11T12:06:46.000Z", + "author": "/u/chrisdh79", + "content": "
\"AI-Generated submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_19406yg", + "isoDate": "2024-01-11T12:06:46.000Z" + }, + { + "title": "EFF Asks Court to Uphold Federal Law That Protects Online Video Viewers\u2019 Privacy and Free Expression", + "link": "https://www.reddit.com/r/technology/comments/193xxs9/eff_asks_court_to_uphold_federal_law_that/", + "pubDate": "2024-01-11T09:44:03.000Z", + "author": "/u/waozen", + "content": "
\"EFF submitted by /u/waozen
[link] [comments]
", + "contentSnippet": "submitted by /u/waozen \n [link] [comments]", + "id": "t3_193xxs9", + "isoDate": "2024-01-11T09:44:03.000Z" + }, + { + "title": "SAG-AFTRA Approves AI Voice Actors, Enrages the VA Community", + "link": "https://www.reddit.com/r/technology/comments/193xucu/sagaftra_approves_ai_voice_actors_enrages_the_va/", + "pubDate": "2024-01-11T09:37:30.000Z", + "author": "/u/Maxie445", + "content": "
\"SAG-AFTRA submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_193xucu", + "isoDate": "2024-01-11T09:37:30.000Z" + }, + { + "title": "Google lays off hundreds in Assistant, hardware, engineering teams", + "link": "https://www.reddit.com/r/technology/comments/193vo3w/google_lays_off_hundreds_in_assistant_hardware/", + "pubDate": "2024-01-11T07:06:19.000Z", + "author": "/u/Derpy_Snout", + "content": " submitted by /u/Derpy_Snout
[link] [comments]", + "contentSnippet": "submitted by /u/Derpy_Snout \n [link] [comments]", + "id": "t3_193vo3w", + "isoDate": "2024-01-11T07:06:19.000Z" + }, + { + "title": "Kia crashes CES with modular electric vehicle concept", + "link": "https://www.reddit.com/r/technology/comments/193vkpw/kia_crashes_ces_with_modular_electric_vehicle/", + "pubDate": "2024-01-11T07:00:34.000Z", + "author": "/u/Loki-L", + "content": "
\"Kia submitted by /u/Loki-L
[link] [comments]
", + "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", + "id": "t3_193vkpw", + "isoDate": "2024-01-11T07:00:34.000Z" + }, + { + "title": "Video Piracy Visits Rose to 141 Billion in 2023, Report Shows", + "link": "https://www.reddit.com/r/technology/comments/193t2u2/video_piracy_visits_rose_to_141_billion_in_2023/", + "pubDate": "2024-01-11T04:35:30.000Z", + "author": "/u/thinkB4WeSpeak", + "content": " submitted by /u/thinkB4WeSpeak
[link] [comments]", + "contentSnippet": "submitted by /u/thinkB4WeSpeak \n [link] [comments]", + "id": "t3_193t2u2", + "isoDate": "2024-01-11T04:35:30.000Z" + }, + { + "title": "Public Citizen Calls for Investigation of OpenAI's Nonprofit Status -- Redmondmag.com", + "link": "https://www.reddit.com/r/technology/comments/193svbb/public_citizen_calls_for_investigation_of_openais/", + "pubDate": "2024-01-11T04:24:26.000Z", + "author": "/u/aacool", + "content": "
\"Public submitted by /u/aacool
[link] [comments]
", + "contentSnippet": "submitted by /u/aacool \n [link] [comments]", + "id": "t3_193svbb", + "isoDate": "2024-01-11T04:24:26.000Z" + }, + { + "title": "A huge battery has replaced Hawaii's last coal plant", + "link": "https://www.reddit.com/r/technology/comments/193sc56/a_huge_battery_has_replaced_hawaiis_last_coal/", + "pubDate": "2024-01-11T03:56:37.000Z", + "author": "/u/StockJellyfish671", + "content": "
\"A submitted by /u/StockJellyfish671
[link] [comments]
", + "contentSnippet": "submitted by /u/StockJellyfish671 \n [link] [comments]", + "id": "t3_193sc56", + "isoDate": "2024-01-11T03:56:37.000Z" + }, + { + "title": "\u2018Impossible\u2019 to create AI tools like ChatGPT without copyrighted material, OpenAI says", + "link": "https://www.reddit.com/r/technology/comments/193rtap/impossible_to_create_ai_tools_like_chatgpt/", + "pubDate": "2024-01-11T03:29:43.000Z", + "author": "/u/aacool", + "content": "
\"\u2018Impossible\u2019 submitted by /u/aacool
[link] [comments]
", + "contentSnippet": "submitted by /u/aacool \n [link] [comments]", + "id": "t3_193rtap", + "isoDate": "2024-01-11T03:29:43.000Z" + }, + { + "title": "Pennsylvanians, your government workers are now powered by ChatGPT", + "link": "https://www.reddit.com/r/technology/comments/193q92x/pennsylvanians_your_government_workers_are_now/", + "pubDate": "2024-01-11T02:13:20.000Z", + "author": "/u/chrisdh79", + "content": "
\"Pennsylvanians, submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_193q92x", + "isoDate": "2024-01-11T02:13:20.000Z" + }, + { + "title": "Capcom caught adding Enigma DRM to older titles, for no good reason | Patch for Resident Evil Revelations adds anti-tamper executable, negatively impacts performance", + "link": "https://www.reddit.com/r/technology/comments/193q6b2/capcom_caught_adding_enigma_drm_to_older_titles/", + "pubDate": "2024-01-11T02:09:42.000Z", + "author": "/u/chrisdh79", + "content": "
\"Capcom submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_193q6b2", + "isoDate": "2024-01-11T02:09:42.000Z" + }, + { + "title": "US to hospitals: Meet security standards or no federal money", + "link": "https://www.reddit.com/r/technology/comments/193pkv7/us_to_hospitals_meet_security_standards_or_no/", + "pubDate": "2024-01-11T01:41:15.000Z", + "author": "/u/barweis", + "content": "
\"US submitted by /u/barweis
[link] [comments]
", + "contentSnippet": "submitted by /u/barweis \n [link] [comments]", + "id": "t3_193pkv7", + "isoDate": "2024-01-11T01:41:15.000Z" + }, + { + "title": "Groundbreaking Superconducting \u201cMiracle\u201d Receives $2.96 Million Boost", + "link": "https://www.reddit.com/r/technology/comments/193nwpw/groundbreaking_superconducting_miracle_receives/", + "pubDate": "2024-01-11T00:23:47.000Z", + "author": "/u/machinade89", + "content": "
\"Groundbreaking submitted by /u/machinade89
[link] [comments]
", + "contentSnippet": "submitted by /u/machinade89 \n [link] [comments]", + "id": "t3_193nwpw", + "isoDate": "2024-01-11T00:23:47.000Z" + }, + { + "title": "China\u2019s 450km/h high-speed CR450 train to be tested this year, set to enter service by 2025", + "link": "https://www.reddit.com/r/technology/comments/193mzur/chinas_450kmh_highspeed_cr450_train_to_be_tested/", + "pubDate": "2024-01-10T23:44:03.000Z", + "author": "/u/Saltedline", + "content": "
\"China\u2019s submitted by /u/Saltedline
[link] [comments]
", + "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", + "id": "t3_193mzur", + "isoDate": "2024-01-10T23:44:03.000Z" + }, + { + "title": "Congress Wants Tech Companies to Pay Up for AI Training Data \u2014 WIRED", + "link": "https://www.reddit.com/r/technology/comments/193mc7o/congress_wants_tech_companies_to_pay_up_for_ai/", + "pubDate": "2024-01-10T23:15:17.000Z", + "author": "/u/CKReauxSavonte", + "content": "
\"Congress submitted by /u/CKReauxSavonte
[link] [comments]
", + "contentSnippet": "submitted by /u/CKReauxSavonte \n [link] [comments]", + "id": "t3_193mc7o", + "isoDate": "2024-01-10T23:15:17.000Z" + }, + { + "title": "Walmart says it will use AI to restock customers' fridges", + "link": "https://www.reddit.com/r/technology/comments/193jdfe/walmart_says_it_will_use_ai_to_restock_customers/", + "pubDate": "2024-01-10T21:14:20.000Z", + "author": "/u/StyleSerenity", + "content": "
\"Walmart submitted by /u/StyleSerenity
[link] [comments]
", + "contentSnippet": "submitted by /u/StyleSerenity \n [link] [comments]", + "id": "t3_193jdfe", + "isoDate": "2024-01-10T21:14:20.000Z" + }, + { + "title": "Linux devices are under attack by a never-before-seen worm", + "link": "https://www.reddit.com/r/technology/comments/19473ox/linux_devices_are_under_attack_by_a/", + "pubDate": "2024-01-11T17:25:37.000Z", + "author": "/u/thebelsnickle1991", + "content": "
\"Linux submitted by /u/thebelsnickle1991
[link] [comments]
", + "contentSnippet": "submitted by /u/thebelsnickle1991 \n [link] [comments]", + "id": "t3_19473ox", + "isoDate": "2024-01-11T17:25:37.000Z" + }, + { + "title": "E-Nose Sniffs Out Coffee Varieties Nearly Perfectly", + "link": "https://www.reddit.com/r/technology/comments/194t9g1/enose_sniffs_out_coffee_varieties_nearly_perfectly/", + "pubDate": "2024-01-12T11:51:44.000Z", + "author": "/u/Ssider69", + "content": "
\"E-Nose submitted by /u/Ssider69
[link] [comments]
", + "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", + "id": "t3_194t9g1", + "isoDate": "2024-01-12T11:51:44.000Z" + }, + { + "title": "Lawmakers declare war on deepfakes that threaten to upend this year\u2019s presidential election", + "link": "https://www.reddit.com/r/technology/comments/194s2m1/lawmakers_declare_war_on_deepfakes_that_threaten/", + "pubDate": "2024-01-12T10:36:07.000Z", + "author": "/u/Maxie445", + "content": "
\"Lawmakers submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_194s2m1", + "isoDate": "2024-01-12T10:36:07.000Z" + }, + { + "title": "TIL Apple\u2019s Find My app has an item limit (it\u2019s 32).", + "link": "https://www.reddit.com/r/technology/comments/194rias/til_apples_find_my_app_has_an_item_limit_its_32/", + "pubDate": "2024-01-12T09:58:26.000Z", + "author": "/u/TheForsakenGlamour", + "content": "
\"TIL submitted by /u/TheForsakenGlamour
[link] [comments]
", + "contentSnippet": "submitted by /u/TheForsakenGlamour \n [link] [comments]", + "id": "t3_194rias", + "isoDate": "2024-01-12T09:58:26.000Z" + }, + { + "title": "AI-powered misinformation is the world's biggest short-term threat, Davos report says", + "link": "https://www.reddit.com/r/technology/comments/194r1e0/aipowered_misinformation_is_the_worlds_biggest/", + "pubDate": "2024-01-12T09:25:22.000Z", + "author": "/u/PsychoComet", + "content": "
\"AI-powered submitted by /u/PsychoComet
[link] [comments]
", + "contentSnippet": "submitted by /u/PsychoComet \n [link] [comments]", + "id": "t3_194r1e0", + "isoDate": "2024-01-12T09:25:22.000Z" + }, + { + "title": "UK's antitrust agency is going to put the screws to US big tech in 2024", + "link": "https://www.reddit.com/r/technology/comments/194omx3/uks_antitrust_agency_is_going_to_put_the_screws/", + "pubDate": "2024-01-12T06:44:57.000Z", + "author": "/u/FollowingFeisty5321", + "content": "
\"UK's submitted by /u/FollowingFeisty5321
[link] [comments]
", + "contentSnippet": "submitted by /u/FollowingFeisty5321 \n [link] [comments]", + "id": "t3_194omx3", + "isoDate": "2024-01-12T06:44:57.000Z" + }, + { + "title": "Discord lays off 170 people, blames growing too quickly | TechCrunch", + "link": "https://www.reddit.com/r/technology/comments/194nre4/discord_lays_off_170_people_blames_growing_too/", + "pubDate": "2024-01-12T05:53:29.000Z", + "author": "/u/Abhi_mech007", + "content": "
\"Discord submitted by /u/Abhi_mech007
[link] [comments]
", + "contentSnippet": "submitted by /u/Abhi_mech007 \n [link] [comments]", + "id": "t3_194nre4", + "isoDate": "2024-01-12T05:53:29.000Z" + }, + { + "title": "X Announces Peer-To-Peer Payment Service Will Launch In 2024", + "link": "https://www.reddit.com/r/technology/comments/194m9hn/x_announces_peertopeer_payment_service_will/", + "pubDate": "2024-01-12T04:31:16.000Z", + "author": "/u/ardi62", + "content": "
\"X submitted by /u/ardi62
[link] [comments]
", + "contentSnippet": "submitted by /u/ardi62 \n [link] [comments]", + "id": "t3_194m9hn", + "isoDate": "2024-01-12T04:31:16.000Z" + }, + { + "title": "Microsoft's AI found a new material to replace li-ion batteries | Will machine learning algorithms revolutionize scientific research on battery materials?", + "link": "https://www.reddit.com/r/technology/comments/194ht35/microsofts_ai_found_a_new_material_to_replace/", + "pubDate": "2024-01-12T00:50:38.000Z", + "author": "/u/chrisdh79", + "content": "
\"Microsoft's submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_194ht35", + "isoDate": "2024-01-12T00:50:38.000Z" + }, + { + "title": "As Disney pushes towards streaming profitability, Pixar to undergo layoffs in 2024", + "link": "https://www.reddit.com/r/technology/comments/194hre6/as_disney_pushes_towards_streaming_profitability/", + "pubDate": "2024-01-12T00:48:34.000Z", + "author": "/u/chrisdh79", + "content": "
\"As submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_194hre6", + "isoDate": "2024-01-12T00:48:34.000Z" + }, + { + "title": "Apple CEO Tim Cook's total pay drops to $63 million for 2023.", + "link": "https://www.reddit.com/r/technology/comments/194gx15/apple_ceo_tim_cooks_total_pay_drops_to_63_million/", + "pubDate": "2024-01-12T00:10:13.000Z", + "author": "/u/SUPRVLLAN", + "content": "
\"Apple submitted by /u/SUPRVLLAN
[link] [comments]
", + "contentSnippet": "submitted by /u/SUPRVLLAN \n [link] [comments]", + "id": "t3_194gx15", + "isoDate": "2024-01-12T00:10:13.000Z" + }, + { + "title": "US judge blocks Ohio Republicans\u2019 \u201ctroublingly vague\u201d social media law", + "link": "https://www.reddit.com/r/technology/comments/194fjt4/us_judge_blocks_ohio_republicans_troublingly/", + "pubDate": "2024-01-11T23:11:46.000Z", + "author": "/u/barweis", + "content": "
\"US submitted by /u/barweis
[link] [comments]
", + "contentSnippet": "submitted by /u/barweis \n [link] [comments]", + "id": "t3_194fjt4", + "isoDate": "2024-01-11T23:11:46.000Z" + }, + { + "title": "Meta offers Canadian Facebook users $51M to settle suit in 4 provinces", + "link": "https://www.reddit.com/r/technology/comments/194edkh/meta_offers_canadian_facebook_users_51m_to_settle/", + "pubDate": "2024-01-11T22:23:31.000Z", + "author": "/u/lamdefinitelynotadog", + "content": "
\"Meta submitted by /u/lamdefinitelynotadog
[link] [comments]
", + "contentSnippet": "submitted by /u/lamdefinitelynotadog \n [link] [comments]", + "id": "t3_194edkh", + "isoDate": "2024-01-11T22:23:31.000Z" + }, + { + "title": "CES 2024: The weirdest tech, gadgets and AI claims from Las Vegas", + "link": "https://www.reddit.com/r/technology/comments/194dcdb/ces_2024_the_weirdest_tech_gadgets_and_ai_claims/", + "pubDate": "2024-01-11T21:41:40.000Z", + "author": "/u/CrankyBear", + "content": "
\"CES submitted by /u/CrankyBear
[link] [comments]
", + "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", + "id": "t3_194dcdb", + "isoDate": "2024-01-11T21:41:40.000Z" + }, + { + "title": "The US is investigating if Boeing ensured a part that blew off a jet was made to design standards", + "link": "https://www.reddit.com/r/technology/comments/194bke8/the_us_is_investigating_if_boeing_ensured_a_part/", + "pubDate": "2024-01-11T20:28:28.000Z", + "author": "/u/esporx", + "content": "
\"The submitted by /u/esporx
[link] [comments]
", + "contentSnippet": "submitted by /u/esporx \n [link] [comments]", + "id": "t3_194bke8", + "isoDate": "2024-01-11T20:28:28.000Z" + }, + { + "title": "Tesla boosts pay for U.S. factory workers as UAW momentum builds", + "link": "https://www.reddit.com/r/technology/comments/194b7n5/tesla_boosts_pay_for_us_factory_workers_as_uaw/", + "pubDate": "2024-01-11T20:13:39.000Z", + "author": "/u/jondoev", + "content": "
\"Tesla submitted by /u/jondoev
[link] [comments]
", + "contentSnippet": "submitted by /u/jondoev \n [link] [comments]", + "id": "t3_194b7n5", + "isoDate": "2024-01-11T20:13:39.000Z" + }, + { + "title": "Amazon cuts 5% of Audible division's workforce", + "link": "https://www.reddit.com/r/technology/comments/1949nwz/amazon_cuts_5_of_audible_divisions_workforce/", + "pubDate": "2024-01-11T19:09:25.000Z", + "author": "/u/joe4942", + "content": " submitted by /u/joe4942
[link] [comments]", + "contentSnippet": "submitted by /u/joe4942 \n [link] [comments]", + "id": "t3_1949nwz", + "isoDate": "2024-01-11T19:09:25.000Z" + }, + { + "title": "Windows 10 KB5034441 security update fails with 0x80070643 errors", + "link": "https://www.reddit.com/r/technology/comments/1947we0/windows_10_kb5034441_security_update_fails_with/", + "pubDate": "2024-01-11T17:57:12.000Z", + "author": "/u/Hrmbee", + "content": "
\"Windows submitted by /u/Hrmbee
[link] [comments]
", + "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", + "id": "t3_1947we0", + "isoDate": "2024-01-11T17:57:12.000Z" + }, + { + "title": "PS5 V2 DualSense Controller With Improvements Leaked Via Online Retailer", + "link": "https://www.reddit.com/r/technology/comments/19423bq/ps5_v2_dualsense_controller_with_improvements/", + "pubDate": "2024-01-11T13:46:58.000Z", + "author": "/u/IHateMyselfButNotYou", + "content": "
\"PS5 submitted by /u/IHateMyselfButNotYou
[link] [comments]
", + "contentSnippet": "submitted by /u/IHateMyselfButNotYou \n [link] [comments]", + "id": "t3_19423bq", + "isoDate": "2024-01-11T13:46:58.000Z" + }, + { + "title": "Computer chip maker announces furloughs at Oregon factory days after landing $72M from feds", + "link": "https://www.reddit.com/r/technology/comments/194v1m3/computer_chip_maker_announces_furloughs_at_oregon/", + "pubDate": "2024-01-12T13:27:50.000Z", + "author": "/u/Projectrage", + "content": "
\"Computer submitted by /u/Projectrage
[link] [comments]
", + "contentSnippet": "submitted by /u/Projectrage \n [link] [comments]", + "id": "t3_194v1m3", + "isoDate": "2024-01-12T13:27:50.000Z" + }, + { + "title": "Scientists Unveil Radical Plan to Drill Into a Volcano For Near-Unlimited Energy", + "link": "https://www.reddit.com/r/technology/comments/194u7zg/scientists_unveil_radical_plan_to_drill_into_a/", + "pubDate": "2024-01-12T12:46:16.000Z", + "author": "/u/machinade89", + "content": "
\"Scientists submitted by /u/machinade89
[link] [comments]
", + "contentSnippet": "submitted by /u/machinade89 \n [link] [comments]", + "id": "t3_194u7zg", + "isoDate": "2024-01-12T12:46:16.000Z" + }, + { + "title": "China flooding social media with disinformation about Taiwan president", + "link": "https://www.reddit.com/r/technology/comments/194u7dl/china_flooding_social_media_with_disinformation/", + "pubDate": "2024-01-12T12:45:20.000Z", + "author": "/u/Wagamaga", + "content": "
\"China submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_194u7dl", + "isoDate": "2024-01-12T12:45:20.000Z" + }, + { + "title": "Data regulator fines HelloFresh \u00a3140k for sending 80M+ spams | Messaging menace used text and email to bombard people", + "link": "https://www.reddit.com/r/technology/comments/194tyjs/data_regulator_fines_hellofresh_140k_for_sending/", + "pubDate": "2024-01-12T12:31:46.000Z", + "author": "/u/chrisdh79", + "content": "
\"Data submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_194tyjs", + "isoDate": "2024-01-12T12:31:46.000Z" + }, + { + "title": "Do robot snowplows have a future in Canada?", + "link": "https://www.reddit.com/r/technology/comments/194sadl/do_robot_snowplows_have_a_future_in_canada/", + "pubDate": "2024-01-12T10:50:51.000Z", + "author": "/u/yimmy51", + "content": "
\"Do submitted by /u/yimmy51
[link] [comments]
", + "contentSnippet": "submitted by /u/yimmy51 \n [link] [comments]", + "id": "t3_194sadl", + "isoDate": "2024-01-12T10:50:51.000Z" + }, + { + "title": "Google DeepMind co-founder Mustafa Suleyman warns AI is a \u2018fundamentally labor replacing\u2019 tool over the long term", + "link": "https://www.reddit.com/r/technology/comments/199jdqf/google_deepmind_cofounder_mustafa_suleyman_warns/", + "pubDate": "2024-01-18T06:12:34.000Z", + "author": "/u/Maxie445", + "content": "
\"Google submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_199jdqf", + "isoDate": "2024-01-18T06:12:34.000Z" + }, + { + "title": "1 in 4 CEOs planning to replace workers with AI this year, according to recent poll", + "link": "https://www.reddit.com/r/technology/comments/199iksw/1_in_4_ceos_planning_to_replace_workers_with_ai/", + "pubDate": "2024-01-18T05:26:21.000Z", + "author": "/u/letsmunch", + "content": "
\"1 submitted by /u/letsmunch
[link] [comments]
", + "contentSnippet": "submitted by /u/letsmunch \n [link] [comments]", + "id": "t3_199iksw", + "isoDate": "2024-01-18T05:26:21.000Z" + }, + { + "title": "AI can change the world but not if we leave people behind", + "link": "https://www.reddit.com/r/technology/comments/199gqp9/ai_can_change_the_world_but_not_if_we_leave/", + "pubDate": "2024-01-18T03:48:10.000Z", + "author": "/u/MauriceMouse", + "content": "
\"AI submitted by /u/MauriceMouse
[link] [comments]
", + "contentSnippet": "submitted by /u/MauriceMouse \n [link] [comments]", + "id": "t3_199gqp9", + "isoDate": "2024-01-18T03:48:10.000Z" + }, + { + "title": "Google CEO tells employees to expect more job cuts this year.", + "link": "https://www.reddit.com/r/technology/comments/199eybs/google_ceo_tells_employees_to_expect_more_job/", + "pubDate": "2024-01-18T02:19:25.000Z", + "author": "/u/SUPRVLLAN", + "content": "
\"Google submitted by /u/SUPRVLLAN
[link] [comments]
", + "contentSnippet": "submitted by /u/SUPRVLLAN \n [link] [comments]", + "id": "t3_199eybs", + "isoDate": "2024-01-18T02:19:25.000Z" + }, + { + "title": "Apple will avoid ban by selling latest Apple Watches without blood oxygen feature", + "link": "https://www.reddit.com/r/technology/comments/199emzc/apple_will_avoid_ban_by_selling_latest_apple/", + "pubDate": "2024-01-18T02:04:21.000Z", + "author": "/u/Georgeika", + "content": "
\"Apple submitted by /u/Georgeika
[link] [comments]
", + "contentSnippet": "submitted by /u/Georgeika \n [link] [comments]", + "id": "t3_199emzc", + "isoDate": "2024-01-18T02:04:21.000Z" + }, + { + "title": "48,000 companies sent Facebook data on a single person | A Consumer Reports study found that thousands of companies contribute to Facebook\u2019s data stores on each person.", + "link": "https://www.reddit.com/r/technology/comments/199d8o4/48000_companies_sent_facebook_data_on_a_single/", + "pubDate": "2024-01-18T00:58:56.000Z", + "author": "/u/chrisdh79", + "content": "
\"48,000 submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_199d8o4", + "isoDate": "2024-01-18T00:58:56.000Z" + }, + { + "title": "IBM scraps rewards program for staff inventions, wipes away cash points | Big Blue staffers aren\u2019t pleased to lose out on potential bonuses", + "link": "https://www.reddit.com/r/technology/comments/199d3dv/ibm_scraps_rewards_program_for_staff_inventions/", + "pubDate": "2024-01-18T00:51:58.000Z", + "author": "/u/chrisdh79", + "content": "
\"IBM submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_199d3dv", + "isoDate": "2024-01-18T00:51:58.000Z" + }, + { + "title": "Apple Watches with blood oxygen tech are banned again", + "link": "https://www.reddit.com/r/technology/comments/199c3ld/apple_watches_with_blood_oxygen_tech_are_banned/", + "pubDate": "2024-01-18T00:07:33.000Z", + "author": "/u/Deshes011", + "content": "
\"Apple submitted by /u/Deshes011
[link] [comments]
", + "contentSnippet": "submitted by /u/Deshes011 \n [link] [comments]", + "id": "t3_199c3ld", + "isoDate": "2024-01-18T00:07:33.000Z" + }, + { + "title": "Google promised to delete location data on abortion clinic visits. It didn\u2019t, study says", + "link": "https://www.reddit.com/r/technology/comments/199b90d/google_promised_to_delete_location_data_on/", + "pubDate": "2024-01-17T23:30:45.000Z", + "author": "/u/davster39", + "content": "
\"Google submitted by /u/davster39
[link] [comments]
", + "contentSnippet": "submitted by /u/davster39 \n [link] [comments]", + "id": "t3_199b90d", + "isoDate": "2024-01-17T23:30:45.000Z" + }, + { + "title": "OpenAI must defend ChatGPT fabrications after failing to defeat libe'l suit", + "link": "https://www.reddit.com/r/technology/comments/199b742/openai_must_defend_chatgpt_fabrications_after/", + "pubDate": "2024-01-17T23:28:28.000Z", + "author": "/u/aacool", + "content": "
\"OpenAI submitted by /u/aacool
[link] [comments]
", + "contentSnippet": "submitted by /u/aacool \n [link] [comments]", + "id": "t3_199b742", + "isoDate": "2024-01-17T23:28:28.000Z" + }, + { + "title": "Cable firms to FTC: We shouldn\u2019t have to let users cancel service with a click \u2014 Customers may \u201cmisunderstand the consequences of canceling,\u201d say lobbyists", + "link": "https://www.reddit.com/r/technology/comments/199aamc/cable_firms_to_ftc_we_shouldnt_have_to_let_users/", + "pubDate": "2024-01-17T22:50:17.000Z", + "author": "/u/marketrent", + "content": "
\"Cable submitted by /u/marketrent
[link] [comments]
", + "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", + "id": "t3_199aamc", + "isoDate": "2024-01-17T22:50:17.000Z" + }, + { + "title": "Tech Employee Who Went Viral for Filming Her Firing Has No Regrets", + "link": "https://www.reddit.com/r/technology/comments/1997fbp/tech_employee_who_went_viral_for_filming_her/", + "pubDate": "2024-01-17T20:53:20.000Z", + "author": "/u/bootlickaaa", + "content": " submitted by /u/bootlickaaa
[link] [comments]", + "contentSnippet": "submitted by /u/bootlickaaa \n [link] [comments]", + "id": "t3_1997fbp", + "isoDate": "2024-01-17T20:53:20.000Z" + }, + { + "title": "You're Not Imagining It: Google Search Results Are Getting Worse, Study Finds", + "link": "https://www.reddit.com/r/technology/comments/1995srs/youre_not_imagining_it_google_search_results_are/", + "pubDate": "2024-01-17T19:49:07.000Z", + "author": "/u/TheUtopianCat", + "content": "
\"You're submitted by /u/TheUtopianCat
[link] [comments]
", + "contentSnippet": "submitted by /u/TheUtopianCat \n [link] [comments]", + "id": "t3_1995srs", + "isoDate": "2024-01-17T19:49:07.000Z" + }, + { + "title": "JPMorgan Says Hacker Attempts Have Increased This Year", + "link": "https://www.reddit.com/r/technology/comments/1995en8/jpmorgan_says_hacker_attempts_have_increased_this/", + "pubDate": "2024-01-17T19:33:34.000Z", + "author": "/u/lurker_bee", + "content": "
\"JPMorgan submitted by /u/lurker_bee
[link] [comments]
", + "contentSnippet": "submitted by /u/lurker_bee \n [link] [comments]", + "id": "t3_1995en8", + "isoDate": "2024-01-17T19:33:34.000Z" + }, + { + "title": "A \u2018Shocking\u2019 Amount of the Web Is Already AI-Translated Trash, Scientists Determine", + "link": "https://www.reddit.com/r/technology/comments/19954i5/a_shocking_amount_of_the_web_is_already/", + "pubDate": "2024-01-17T19:22:11.000Z", + "author": "/u/chrisdh79", + "content": "
\"A submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_19954i5", + "isoDate": "2024-01-17T19:22:11.000Z" + }, + { + "title": "Sharing deepfake porn could lead to lengthy prison time under proposed law", + "link": "https://www.reddit.com/r/technology/comments/1992wp9/sharing_deepfake_porn_could_lead_to_lengthy/", + "pubDate": "2024-01-17T17:54:57.000Z", + "author": "/u/giuliomagnifico", + "content": "
\"Sharing submitted by /u/giuliomagnifico
[link] [comments]
", + "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", + "id": "t3_1992wp9", + "isoDate": "2024-01-17T17:54:57.000Z" + }, + { + "title": "Big Oil Launches Propaganda Campaign to Thwart US Energy Transition", + "link": "https://www.reddit.com/r/technology/comments/1992abw/big_oil_launches_propaganda_campaign_to_thwart_us/", + "pubDate": "2024-01-17T17:30:41.000Z", + "author": "/u/Wagamaga", + "content": "
\"Big submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_1992abw", + "isoDate": "2024-01-17T17:30:41.000Z" + }, + { + "title": "Chrome updates Incognito warning to admit Google tracks users in \u201cprivate\u201d mode", + "link": "https://www.reddit.com/r/technology/comments/19907uf/chrome_updates_incognito_warning_to_admit_google/", + "pubDate": "2024-01-17T16:11:59.000Z", + "author": "/u/Dismal-Dealer4298", + "content": "
\"Chrome submitted by /u/Dismal-Dealer4298
[link] [comments]
", + "contentSnippet": "submitted by /u/Dismal-Dealer4298 \n [link] [comments]", + "id": "t3_19907uf", + "isoDate": "2024-01-17T16:11:59.000Z" + }, + { + "title": "EIA: Solar and wind to lead growth of US power generation for the next two years", + "link": "https://www.reddit.com/r/technology/comments/198zla7/eia_solar_and_wind_to_lead_growth_of_us_power/", + "pubDate": "2024-01-17T15:46:17.000Z", + "author": "/u/Wagamaga", + "content": "
\"EIA: submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_198zla7", + "isoDate": "2024-01-17T15:46:17.000Z" + }, + { + "title": "The Rise of \u2018New Denial\u2019: How YouTube Enables Climate Misinformation", + "link": "https://www.reddit.com/r/technology/comments/198x5u2/the_rise_of_new_denial_how_youtube_enables/", + "pubDate": "2024-01-17T13:59:05.000Z", + "author": "/u/Wagamaga", + "content": " submitted by /u/Wagamaga
[link] [comments]", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_198x5u2", + "isoDate": "2024-01-17T13:59:05.000Z" + }, + { + "title": "A year long study shows what you've suspected: Google Search is getting worse.", + "link": "https://www.reddit.com/r/technology/comments/198wuzt/a_year_long_study_shows_what_youve_suspected/", + "pubDate": "2024-01-17T13:44:21.000Z", + "author": "/u/porkchop_d_clown", + "content": "
\"A submitted by /u/porkchop_d_clown
[link] [comments]
", + "contentSnippet": "submitted by /u/porkchop_d_clown \n [link] [comments]", + "id": "t3_198wuzt", + "isoDate": "2024-01-17T13:44:21.000Z" + }, + { + "title": "New UEFI vulnerabilities send firmware devs across an entire ecosystem scrambling \u2014 PixieFail is a huge deal for cloud and data centers. For the rest, less so.", + "link": "https://www.reddit.com/r/technology/comments/198vfat/new_uefi_vulnerabilities_send_firmware_devs/", + "pubDate": "2024-01-17T12:27:44.000Z", + "author": "/u/swingadmin", + "content": "
\"New submitted by /u/swingadmin
[link] [comments]
", + "contentSnippet": "submitted by /u/swingadmin \n [link] [comments]", + "id": "t3_198vfat", + "isoDate": "2024-01-17T12:27:44.000Z" + }, + { + "title": "Google says YouTube's latest slowdown isn't linked to ad blockers | Update: AdBlock and AdBlock Plus have been updated to resolve the slowdown issue.", + "link": "https://www.reddit.com/r/technology/comments/198vc1e/google_says_youtubes_latest_slowdown_isnt_linked/", + "pubDate": "2024-01-17T12:22:38.000Z", + "author": "/u/chrisdh79", + "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_198vc1e", + "isoDate": "2024-01-17T12:22:38.000Z" + }, + { + "title": "Google now admits it could collect data in Chrome's Incognito mode | The company updated its disclaimer after settling a lawsuit accusing it of tracking Incognito users.", + "link": "https://www.reddit.com/r/technology/comments/198v2up/google_now_admits_it_could_collect_data_in/", + "pubDate": "2024-01-17T12:08:00.000Z", + "author": "/u/chrisdh79", + "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_198v2up", + "isoDate": "2024-01-17T12:08:00.000Z" + }, + { + "title": "Big tech firms recklessly pursuing profits from AI, says UN head: International community has no strategy to deal with risks, Ant\u00f3nio Guterres tells Davos meeting", + "link": "https://www.reddit.com/r/technology/comments/198v20r/big_tech_firms_recklessly_pursuing_profits_from/", + "pubDate": "2024-01-17T12:06:34.000Z", + "author": "/u/Maxie445", + "content": "
\"Big submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_198v20r", + "isoDate": "2024-01-17T12:06:34.000Z" + }, + { + "title": "Delivery workers won a mandated raise from NYC. Now they say the apps figured out a way to undermine it", + "link": "https://www.reddit.com/r/technology/comments/199tcos/delivery_workers_won_a_mandated_raise_from_nyc/", + "pubDate": "2024-01-18T15:57:52.000Z", + "author": "/u/habichuelacondulce", + "content": " submitted by /u/habichuelacondulce
[link] [comments]", + "contentSnippet": "submitted by /u/habichuelacondulce \n [link] [comments]", + "id": "t3_199tcos", + "isoDate": "2024-01-18T15:57:52.000Z" + }, + { + "title": "JPMorgan Chase fights off 45 billion hacking attempts each day", + "link": "https://www.reddit.com/r/technology/comments/199rcej/jpmorgan_chase_fights_off_45_billion_hacking/", + "pubDate": "2024-01-18T14:27:03.000Z", + "author": "/u/waozen", + "content": " submitted by /u/waozen
[link] [comments]", + "contentSnippet": "submitted by /u/waozen \n [link] [comments]", + "id": "t3_199rcej", + "isoDate": "2024-01-18T14:27:03.000Z" + }, + { + "title": "Google boss warns staff to expect further job cuts this year", + "link": "https://www.reddit.com/r/technology/comments/199q3l4/google_boss_warns_staff_to_expect_further_job/", + "pubDate": "2024-01-18T13:26:15.000Z", + "author": "/u/davster39", + "content": "
\"Google submitted by /u/davster39
[link] [comments]
", + "contentSnippet": "submitted by /u/davster39 \n [link] [comments]", + "id": "t3_199q3l4", + "isoDate": "2024-01-18T13:26:15.000Z" + }, + { + "title": "Agrivoltaics In Action: Evidence Shows Solar Panels Nurture Habitats And Farms, Too", + "link": "https://www.reddit.com/r/technology/comments/199oyfy/agrivoltaics_in_action_evidence_shows_solar/", + "pubDate": "2024-01-18T12:22:52.000Z", + "author": "/u/chrisdh79", + "content": "
\"Agrivoltaics submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_199oyfy", + "isoDate": "2024-01-18T12:22:52.000Z" + }, + { + "title": "PipeWire is a project that aims to greatly improve handling of audio and video under Linux", + "link": "https://www.reddit.com/r/technology/comments/199nilz/pipewire_is_a_project_that_aims_to_greatly/", + "pubDate": "2024-01-18T10:54:44.000Z", + "author": "/u/Doener23", + "content": "
\"PipeWire submitted by /u/Doener23
[link] [comments]
", + "contentSnippet": "submitted by /u/Doener23 \n [link] [comments]", + "id": "t3_199nilz", + "isoDate": "2024-01-18T10:54:44.000Z" + }, + { + "title": "Russia to require Internet providers to share users\u2019 address locations in effort to draw \u2018digital border\u2019 around country", + "link": "https://www.reddit.com/r/technology/comments/199m16b/russia_to_require_internet_providers_to_share/", + "pubDate": "2024-01-18T09:12:07.000Z", + "author": "/u/Saltedline", + "content": "
\"Russia submitted by /u/Saltedline
[link] [comments]
", + "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", + "id": "t3_199m16b", + "isoDate": "2024-01-18T09:12:07.000Z" + }, + { + "title": "Search engine results are getting worse, research confirms", + "link": "https://www.reddit.com/r/technology/comments/199lcxd/search_engine_results_are_getting_worse_research/", + "pubDate": "2024-01-18T08:23:16.000Z", + "author": "/u/edfosho1", + "content": "
\"Search submitted by /u/edfosho1
[link] [comments]
", + "contentSnippet": "submitted by /u/edfosho1 \n [link] [comments]", + "id": "t3_199lcxd", + "isoDate": "2024-01-18T08:23:16.000Z" + }, + { + "title": "Sheryl Sandberg to step down from Meta board", + "link": "https://www.reddit.com/r/technology/comments/199i7yi/sheryl_sandberg_to_step_down_from_meta_board/", + "pubDate": "2024-01-18T05:06:43.000Z", + "author": "/u/nosotros_road_sodium", + "content": "
\"Sheryl submitted by /u/nosotros_road_sodium
[link] [comments]
", + "contentSnippet": "submitted by /u/nosotros_road_sodium \n [link] [comments]", + "id": "t3_199i7yi", + "isoDate": "2024-01-18T05:06:43.000Z" + }, + { + "title": "1 in 4 CEOs planning to replace workers with AI this year, according to recent poll", + "link": "https://www.reddit.com/r/technology/comments/19abo03/1_in_4_ceos_planning_to_replace_workers_with_ai/", + "pubDate": "2024-01-19T05:31:30.000Z", + "author": "/u/PsychoComet", + "content": "
\"1 submitted by /u/PsychoComet
[link] [comments]
", + "contentSnippet": "submitted by /u/PsychoComet \n [link] [comments]", + "id": "t3_19abo03", + "isoDate": "2024-01-19T05:31:30.000Z" + }, + { + "title": "Knockoff Iranian Drone Sold on Alibaba Was Meant for War, Documents Show", + "link": "https://www.reddit.com/r/technology/comments/19a86jo/knockoff_iranian_drone_sold_on_alibaba_was_meant/", + "pubDate": "2024-01-19T02:29:00.000Z", + "author": "/u/chrisdh79", + "content": "
\"Knockoff submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_19a86jo", + "isoDate": "2024-01-19T02:29:00.000Z" + }, + { + "title": "US government to rein in face recognition? Yeah, right", + "link": "https://www.reddit.com/r/technology/comments/19a5fjn/us_government_to_rein_in_face_recognition_yeah/", + "pubDate": "2024-01-19T00:19:08.000Z", + "author": "/u/barweis", + "content": "
\"US submitted by /u/barweis
[link] [comments]
", + "contentSnippet": "submitted by /u/barweis \n [link] [comments]", + "id": "t3_19a5fjn", + "isoDate": "2024-01-19T00:19:08.000Z" + }, + { + "title": "Solar power from space is possible but not yet viable", + "link": "https://www.reddit.com/r/technology/comments/19a41pk/solar_power_from_space_is_possible_but_not_yet/", + "pubDate": "2024-01-18T23:18:29.000Z", + "author": "/u/barweis", + "content": "
\"Solar submitted by /u/barweis
[link] [comments]
", + "contentSnippet": "submitted by /u/barweis \n [link] [comments]", + "id": "t3_19a41pk", + "isoDate": "2024-01-18T23:18:29.000Z" + }, + { + "title": "Experts call for US Cyber Safety Review Board rethink", + "link": "https://www.reddit.com/r/technology/comments/19a3uqq/experts_call_for_us_cyber_safety_review_board/", + "pubDate": "2024-01-18T23:10:13.000Z", + "author": "/u/barweis", + "content": "
\"Experts submitted by /u/barweis
[link] [comments]
", + "contentSnippet": "submitted by /u/barweis \n [link] [comments]", + "id": "t3_19a3uqq", + "isoDate": "2024-01-18T23:10:13.000Z" + }, + { + "title": "Supermarket responds after Reddit user\u2019s warning about self-checkout overcharge \u2014 \u2018Was annoyed that the total amount due on my supermarket purchase did not equate to the individual items I purchased.\u2019", + "link": "https://www.reddit.com/r/technology/comments/19a3tuc/supermarket_responds_after_reddit_users_warning/", + "pubDate": "2024-01-18T23:09:08.000Z", + "author": "/u/marketrent", + "content": "
\"Supermarket submitted by /u/marketrent
[link] [comments]
", + "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", + "id": "t3_19a3tuc", + "isoDate": "2024-01-18T23:09:08.000Z" + }, + { + "title": "Google lays off 100 at YouTube; CEO says more layoffs are coming", + "link": "https://www.reddit.com/r/technology/comments/19a0vhx/google_lays_off_100_at_youtube_ceo_says_more/", + "pubDate": "2024-01-18T21:07:05.000Z", + "author": "/u/thegravity98ms2", + "content": "
\"Google submitted by /u/thegravity98ms2
[link] [comments]
", + "contentSnippet": "submitted by /u/thegravity98ms2 \n [link] [comments]", + "id": "t3_19a0vhx", + "isoDate": "2024-01-18T21:07:05.000Z" + }, + { + "title": "40 years since Elite became the most fun you could have with 22 kilobytes", + "link": "https://www.reddit.com/r/technology/comments/19a07g9/40_years_since_elite_became_the_most_fun_you/", + "pubDate": "2024-01-18T20:40:35.000Z", + "author": "/u/penguinopusredux", + "content": "
\"40 submitted by /u/penguinopusredux
[link] [comments]
", + "contentSnippet": "submitted by /u/penguinopusredux \n [link] [comments]", + "id": "t3_19a07g9", + "isoDate": "2024-01-18T20:40:35.000Z" + }, + { + "title": "European Union set to revise cookie law, admits cookie banners are annoying", + "link": "https://www.reddit.com/r/technology/comments/199zpry/european_union_set_to_revise_cookie_law_admits/", + "pubDate": "2024-01-18T20:20:31.000Z", + "author": "/u/CrankyBear", + "content": "
\"European submitted by /u/CrankyBear
[link] [comments]
", + "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", + "id": "t3_199zpry", + "isoDate": "2024-01-18T20:20:31.000Z" + }, + { + "title": "Amazon's latest layoffs hit its Buy with Prime unit", + "link": "https://www.reddit.com/r/technology/comments/199yubu/amazons_latest_layoffs_hit_its_buy_with_prime_unit/", + "pubDate": "2024-01-18T19:44:54.000Z", + "author": "/u/nimfrank", + "content": "
\"Amazon's submitted by /u/nimfrank
[link] [comments]
", + "contentSnippet": "submitted by /u/nimfrank \n [link] [comments]", + "id": "t3_199yubu", + "isoDate": "2024-01-18T19:44:54.000Z" + }, + { + "title": "Ultraviolet light can kill almost all the viruses in a room. Why isn\u2019t it everywhere?", + "link": "https://www.reddit.com/r/technology/comments/199xz7r/ultraviolet_light_can_kill_almost_all_the_viruses/", + "pubDate": "2024-01-18T19:09:22.000Z", + "author": "/u/FieldVoid", + "content": "
\"Ultraviolet submitted by /u/FieldVoid
[link] [comments]
", + "contentSnippet": "submitted by /u/FieldVoid \n [link] [comments]", + "id": "t3_199xz7r", + "isoDate": "2024-01-18T19:09:22.000Z" + }, + { + "title": "EU says music streaming platforms must pay artists more.", + "link": "https://www.reddit.com/r/technology/comments/199xh33/eu_says_music_streaming_platforms_must_pay/", + "pubDate": "2024-01-18T18:49:02.000Z", + "author": "/u/SUPRVLLAN", + "content": "
\"EU submitted by /u/SUPRVLLAN
[link] [comments]
", + "contentSnippet": "submitted by /u/SUPRVLLAN \n [link] [comments]", + "id": "t3_199xh33", + "isoDate": "2024-01-18T18:49:02.000Z" + }, + { + "title": "Reddit seeks to launch IPO in March", + "link": "https://www.reddit.com/r/technology/comments/199wrcd/reddit_seeks_to_launch_ipo_in_march/", + "pubDate": "2024-01-18T18:19:51.000Z", + "author": "/u/Sariel007", + "content": " submitted by /u/Sariel007
[link] [comments]", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_199wrcd", + "isoDate": "2024-01-18T18:19:51.000Z" + }, + { + "title": "Coinbase tells judge that buying crypto is just like collecting Beanie Babies", + "link": "https://www.reddit.com/r/technology/comments/199w4oe/coinbase_tells_judge_that_buying_crypto_is_just/", + "pubDate": "2024-01-18T17:54:07.000Z", + "author": "/u/asteriskspace", + "content": "
\"Coinbase submitted by /u/asteriskspace
[link] [comments]
", + "contentSnippet": "submitted by /u/asteriskspace \n [link] [comments]", + "id": "t3_199w4oe", + "isoDate": "2024-01-18T17:54:07.000Z" + }, + { + "title": "\"AI made us do it\" is Big Tech's new layoff rationale", + "link": "https://www.reddit.com/r/technology/comments/199vhol/ai_made_us_do_it_is_big_techs_new_layoff_rationale/", + "pubDate": "2024-01-18T17:27:40.000Z", + "author": "/u/joe4942", + "content": "
\""AI submitted by /u/joe4942
[link] [comments]
", + "contentSnippet": "submitted by /u/joe4942 \n [link] [comments]", + "id": "t3_199vhol", + "isoDate": "2024-01-18T17:27:40.000Z" + }, + { + "title": "ChatGPT's new AI store is struggling to keep a lid on all the AI girlfriends", + "link": "https://www.reddit.com/r/technology/comments/199uoyw/chatgpts_new_ai_store_is_struggling_to_keep_a_lid/", + "pubDate": "2024-01-18T16:54:53.000Z", + "author": "/u/BigOldCar", + "content": "
\"ChatGPT's submitted by /u/BigOldCar
[link] [comments]
", + "contentSnippet": "submitted by /u/BigOldCar \n [link] [comments]", + "id": "t3_199uoyw", + "isoDate": "2024-01-18T16:54:53.000Z" + }, + { + "title": "For truckers driving EVs, there\u2019s no going back", + "link": "https://www.reddit.com/r/technology/comments/199t7cf/for_truckers_driving_evs_theres_no_going_back/", + "pubDate": "2024-01-18T15:51:22.000Z", + "author": "/u/ZestyGene", + "content": "
\"For submitted by /u/ZestyGene
[link] [comments]
", + "contentSnippet": "submitted by /u/ZestyGene \n [link] [comments]", + "id": "t3_199t7cf", + "isoDate": "2024-01-18T15:51:22.000Z" + }, + { + "title": "Meta faces lawsuit over facial recognition in Texas", + "link": "https://www.reddit.com/r/technology/comments/199sv3v/meta_faces_lawsuit_over_facial_recognition_in/", + "pubDate": "2024-01-18T15:35:52.000Z", + "author": "/u/_katykakes", + "content": "
\"Meta submitted by /u/_katykakes
[link] [comments]
", + "contentSnippet": "submitted by /u/_katykakes \n [link] [comments]", + "id": "t3_199sv3v", + "isoDate": "2024-01-18T15:35:52.000Z" + }, + { + "title": "Iowa sues TikTok for setting its App Store age rating too low", + "link": "https://www.reddit.com/r/technology/comments/199socd/iowa_sues_tiktok_for_setting_its_app_store_age/", + "pubDate": "2024-01-18T15:27:50.000Z", + "author": "/u/Wanderlustwizard3518", + "content": "
\"Iowa submitted by /u/Wanderlustwizard3518
[link] [comments]
", + "contentSnippet": "submitted by /u/Wanderlustwizard3518 \n [link] [comments]", + "id": "t3_199socd", + "isoDate": "2024-01-18T15:27:50.000Z" + }, + { + "title": "Google News Is Boosting Garbage AI-Generated Articles", + "link": "https://www.reddit.com/r/technology/comments/199roiz/google_news_is_boosting_garbage_aigenerated/", + "pubDate": "2024-01-18T14:42:40.000Z", + "author": "/u/NeoIsJohnWick", + "content": "
\"Google submitted by /u/NeoIsJohnWick
[link] [comments]
", + "contentSnippet": "submitted by /u/NeoIsJohnWick \n [link] [comments]", + "id": "t3_199roiz", + "isoDate": "2024-01-18T14:42:40.000Z" + }, + { + "title": "Pope calls for treaty regulating AI, warning of potential for \u2018technological dictatorship\u2019", + "link": "https://www.reddit.com/r/technology/comments/19aeeyb/pope_calls_for_treaty_regulating_ai_warning_of/", + "pubDate": "2024-01-19T08:28:58.000Z", + "author": "/u/Maxie445", + "content": "
\"Pope submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_19aeeyb", + "isoDate": "2024-01-19T08:28:58.000Z" + }, + { + "title": "Samsung\u2019s $1,300 phone might someday have fees for AI usage", + "link": "https://www.reddit.com/r/technology/comments/19ae0q9/samsungs_1300_phone_might_someday_have_fees_for/", + "pubDate": "2024-01-19T08:01:13.000Z", + "author": "/u/Loki-L", + "content": "
\"Samsung\u2019s submitted by /u/Loki-L
[link] [comments]
", + "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", + "id": "t3_19ae0q9", + "isoDate": "2024-01-19T08:01:13.000Z" + }, + { + "title": "Each Facebook User Is Monitored by Thousands of Companies - Consumer Reports", + "link": "https://www.reddit.com/r/technology/comments/19agmrb/each_facebook_user_is_monitored_by_thousands_of/", + "pubDate": "2024-01-19T11:04:42.000Z", + "author": "/u/fattyfoods", + "content": "
\"Each submitted by /u/fattyfoods
[link] [comments]
", + "contentSnippet": "submitted by /u/fattyfoods \n [link] [comments]", + "id": "t3_19agmrb", + "isoDate": "2024-01-19T11:04:42.000Z" + }, + { + "title": "What happens when a school bans smartphones? A complete transformation | US education | The Guardian", + "link": "https://www.reddit.com/r/technology/comments/19aij1t/what_happens_when_a_school_bans_smartphones_a/", + "pubDate": "2024-01-19T12:59:32.000Z", + "author": "/u/benderunit9000", + "content": "
\"What submitted by /u/benderunit9000
[link] [comments]
", + "contentSnippet": "submitted by /u/benderunit9000 \n [link] [comments]", + "id": "t3_19aij1t", + "isoDate": "2024-01-19T12:59:32.000Z" + }, + { + "title": "A New York Times copyright lawsuit could kill OpenAI", + "link": "https://www.reddit.com/r/technology/comments/19ahg9y/a_new_york_times_copyright_lawsuit_could_kill/", + "pubDate": "2024-01-19T11:56:35.000Z", + "author": "/u/10MinsForUsername", + "content": "
\"A submitted by /u/10MinsForUsername
[link] [comments]
", + "contentSnippet": "submitted by /u/10MinsForUsername \n [link] [comments]", + "id": "t3_19ahg9y", + "isoDate": "2024-01-19T11:56:35.000Z" + }, + { + "title": "Meta decides to Just Say No to Oversight Board requests and allow paid posts for ketamine - Because says nothing like quality medical care like an ad for the 'magical entry into another dimension'", + "link": "https://www.reddit.com/r/technology/comments/17hh8dg/meta_decides_to_just_say_no_to_oversight_board/", + "pubDate": "2023-10-27T06:26:18.000Z", + "author": "/u/Loki-L", + "content": "
\"Meta submitted by /u/Loki-L
[link] [comments]
", + "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", + "id": "t3_17hh8dg", + "isoDate": "2023-10-27T06:26:18.000Z" + }, + { + "title": "GM Cruise unit suspends all driverless operations after California ban", + "link": "https://www.reddit.com/r/technology/comments/17hh1xt/gm_cruise_unit_suspends_all_driverless_operations/", + "pubDate": "2023-10-27T06:13:17.000Z", + "author": "/u/Kooky_Attention5969", + "content": "
\"GM submitted by /u/Kooky_Attention5969
[link] [comments]
", + "contentSnippet": "submitted by /u/Kooky_Attention5969 \n [link] [comments]", + "id": "t3_17hh1xt", + "isoDate": "2023-10-27T06:13:17.000Z" + }, + { + "title": "Too many products are easier to throw away than fix\u2014consumers deserve a 'right to repair'", + "link": "https://www.reddit.com/r/technology/comments/17hd0k2/too_many_products_are_easier_to_throw_away_than/", + "pubDate": "2023-10-27T02:09:59.000Z", + "author": "/u/Ssider69", + "content": "
\"Too submitted by /u/Ssider69
[link] [comments]
", + "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", + "id": "t3_17hd0k2", + "isoDate": "2023-10-27T02:09:59.000Z" + }, + { + "title": "Even Google CEO Sundar Pichai doesn\u2019t understand Google\u2019s privacy controls", + "link": "https://www.reddit.com/r/technology/comments/17hcwgq/even_google_ceo_sundar_pichai_doesnt_understand/", + "pubDate": "2023-10-27T02:03:56.000Z", + "author": "/u/barweis", + "content": "
\"Even submitted by /u/barweis
[link] [comments]
", + "contentSnippet": "submitted by /u/barweis \n [link] [comments]", + "id": "t3_17hcwgq", + "isoDate": "2023-10-27T02:03:56.000Z" + }, + { + "title": "Linux vs Windows tested in 10 games - Linux 17% faster on Average", + "link": "https://www.reddit.com/r/technology/comments/17hcrg6/linux_vs_windows_tested_in_10_games_linux_17/", + "pubDate": "2023-10-27T01:56:50.000Z", + "author": "/u/PickleJesus123", + "content": "
\"Linux submitted by /u/PickleJesus123
[link] [comments]
", + "contentSnippet": "submitted by /u/PickleJesus123 \n [link] [comments]", + "id": "t3_17hcrg6", + "isoDate": "2023-10-27T01:56:50.000Z" + }, + { + "title": "Google Fiber is getting outrageously fast 20Gbps service", + "link": "https://www.reddit.com/r/technology/comments/17hclia/google_fiber_is_getting_outrageously_fast_20gbps/", + "pubDate": "2023-10-27T01:48:08.000Z", + "author": "/u/barweis", + "content": "
\"Google submitted by /u/barweis
[link] [comments]
", + "contentSnippet": "submitted by /u/barweis \n [link] [comments]", + "id": "t3_17hclia", + "isoDate": "2023-10-27T01:48:08.000Z" + }, + { + "title": "BP buys $100 million worth of Tesla chargers", + "link": "https://www.reddit.com/r/technology/comments/17hbc32/bp_buys_100_million_worth_of_tesla_chargers/", + "pubDate": "2023-10-27T00:43:08.000Z", + "author": "/u/GeneReddit123", + "content": "
\"BP submitted by /u/GeneReddit123
[link] [comments]
", + "contentSnippet": "submitted by /u/GeneReddit123 \n [link] [comments]", + "id": "t3_17hbc32", + "isoDate": "2023-10-27T00:43:08.000Z" + }, + { + "title": "The smart home tech inside your home is less secure than you think, research finds", + "link": "https://www.reddit.com/r/technology/comments/17had83/the_smart_home_tech_inside_your_home_is_less/", + "pubDate": "2023-10-26T23:53:48.000Z", + "author": "/u/Ssider69", + "content": "
\"The submitted by /u/Ssider69
[link] [comments]
", + "contentSnippet": "submitted by /u/Ssider69 \n [link] [comments]", + "id": "t3_17had83", + "isoDate": "2023-10-26T23:53:48.000Z" + }, + { + "title": "Bay Area tech CEO worth $35 billion says \u2018suffering\u2019 wasn't worth it", + "link": "https://www.reddit.com/r/technology/comments/17ha5rl/bay_area_tech_ceo_worth_35_billion_says_suffering/", + "pubDate": "2023-10-26T23:43:26.000Z", + "author": "/u/marketrent", + "content": "
\"Bay submitted by /u/marketrent
[link] [comments]
", + "contentSnippet": "submitted by /u/marketrent \n [link] [comments]", + "id": "t3_17ha5rl", + "isoDate": "2023-10-26T23:43:26.000Z" + }, + { + "title": "Sam Bankman-Fried testifies, says he \u201cskimmed over\u201d FTX terms of service | SBF said he thought loans were legal but didn't fully read FTX terms of service.", + "link": "https://www.reddit.com/r/technology/comments/17h9tp9/sam_bankmanfried_testifies_says_he_skimmed_over/", + "pubDate": "2023-10-26T23:27:28.000Z", + "author": "/u/chrisdh79", + "content": "
\"Sam submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17h9tp9", + "isoDate": "2023-10-26T23:27:28.000Z" + }, + { + "title": "iPhones have been exposing your unique MAC despite Apple\u2019s promises otherwise \u2014 \u201cFrom the get-go, this feature was useless,\u201d researcher says of feature put into iOS 14", + "link": "https://www.reddit.com/r/technology/comments/17h959s/iphones_have_been_exposing_your_unique_mac/", + "pubDate": "2023-10-26T22:55:24.000Z", + "author": "/u/swingadmin", + "content": "
\"iPhones submitted by /u/swingadmin
[link] [comments]
", + "contentSnippet": "submitted by /u/swingadmin \n [link] [comments]", + "id": "t3_17h959s", + "isoDate": "2023-10-26T22:55:24.000Z" + }, + { + "title": "Three people were gene-edited in an effort to cure their HIV. The result is unknown.", + "link": "https://www.reddit.com/r/technology/comments/17h8lbl/three_people_were_geneedited_in_an_effort_to_cure/", + "pubDate": "2023-10-26T22:30:01.000Z", + "author": "/u/SharpCartographer831", + "content": "
\"Three submitted by /u/SharpCartographer831
[link] [comments]
", + "contentSnippet": "submitted by /u/SharpCartographer831 \n [link] [comments]", + "id": "t3_17h8lbl", + "isoDate": "2023-10-26T22:30:01.000Z" + }, + { + "title": "Forget the outside hacker, the bigger threat is inside by the coffee machine", + "link": "https://www.reddit.com/r/technology/comments/17h6n7y/forget_the_outside_hacker_the_bigger_threat_is/", + "pubDate": "2023-10-26T21:05:14.000Z", + "author": "/u/penguinopusredux", + "content": "
\"Forget submitted by /u/penguinopusredux
[link] [comments]
", + "contentSnippet": "submitted by /u/penguinopusredux \n [link] [comments]", + "id": "t3_17h6n7y", + "isoDate": "2023-10-26T21:05:14.000Z" + }, + { + "title": "CEO of rocket-maker ULA makes a sales pitch\u2014for the whole company", + "link": "https://www.reddit.com/r/technology/comments/17h2e6i/ceo_of_rocketmaker_ula_makes_a_sales_pitchfor_the/", + "pubDate": "2023-10-26T17:58:21.000Z", + "author": "/u/getBusyChild", + "content": "
\"CEO submitted by /u/getBusyChild
[link] [comments]
", + "contentSnippet": "submitted by /u/getBusyChild \n [link] [comments]", + "id": "t3_17h2e6i", + "isoDate": "2023-10-26T17:58:21.000Z" + }, + { + "title": "Humanity at risk from AI \u2018race to the bottom\u2019, says tech expert | MIT professor behind influential letter says unchecked development is allowing a few AI firms to jeopardise society\u2019s future", + "link": "https://www.reddit.com/r/technology/comments/17h0nsv/humanity_at_risk_from_ai_race_to_the_bottom_says/", + "pubDate": "2023-10-26T16:39:34.000Z", + "author": "/u/Hrmbee", + "content": "
\"Humanity submitted by /u/Hrmbee
[link] [comments]
", + "contentSnippet": "submitted by /u/Hrmbee \n [link] [comments]", + "id": "t3_17h0nsv", + "isoDate": "2023-10-26T16:39:34.000Z" + }, + { + "title": "Nestron\u2019s Plug-and-Play Prefabs Start at $40K and Don\u2019t Require a Foundation", + "link": "https://www.reddit.com/r/technology/comments/17gzymo/nestrons_plugandplay_prefabs_start_at_40k_and/", + "pubDate": "2023-10-26T16:08:58.000Z", + "author": "/u/digital-didgeridoo", + "content": "
\"Nestron\u2019s submitted by /u/digital-didgeridoo
[link] [comments]
", + "contentSnippet": "submitted by /u/digital-didgeridoo \n [link] [comments]", + "id": "t3_17gzymo", + "isoDate": "2023-10-26T16:08:58.000Z" + }, + { + "title": "Boston Dynamics turned its robot dog into a talking tour guide with ChatGPT", + "link": "https://www.reddit.com/r/technology/comments/17gzqz6/boston_dynamics_turned_its_robot_dog_into_a/", + "pubDate": "2023-10-26T15:59:36.000Z", + "author": "/u/tahalive", + "content": "
\"Boston submitted by /u/tahalive
[link] [comments]
", + "contentSnippet": "submitted by /u/tahalive \n [link] [comments]", + "id": "t3_17gzqz6", + "isoDate": "2023-10-26T15:59:36.000Z" + }, + { + "title": "Colorado counties take steps to safeguard elections processes in the face of misinformation and threats", + "link": "https://www.reddit.com/r/technology/comments/17gzmti/colorado_counties_take_steps_to_safeguard/", + "pubDate": "2023-10-26T15:54:17.000Z", + "author": "/u/Wagamaga", + "content": "
\"Colorado submitted by /u/Wagamaga
[link] [comments]
", + "contentSnippet": "submitted by /u/Wagamaga \n [link] [comments]", + "id": "t3_17gzmti", + "isoDate": "2023-10-26T15:54:17.000Z" + }, + { + "title": "Nintendo's updated social media guidelines target modified games, leaks from data mining | Nintendo constantly finds new ways to annoy people", + "link": "https://www.reddit.com/r/technology/comments/17gyl08/nintendos_updated_social_media_guidelines_target/", + "pubDate": "2023-10-26T15:05:25.000Z", + "author": "/u/chrisdh79", + "content": "
\"Nintendo's submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17gyl08", + "isoDate": "2023-10-26T15:05:25.000Z" + }, + { + "title": "Say (an encrypted) hello to a more private internet", + "link": "https://www.reddit.com/r/technology/comments/17gyih6/say_an_encrypted_hello_to_a_more_private_internet/", + "pubDate": "2023-10-26T15:02:07.000Z", + "author": "/u/phints", + "content": "
\"Say submitted by /u/phints
[link] [comments]
", + "contentSnippet": "submitted by /u/phints \n [link] [comments]", + "id": "t3_17gyih6", + "isoDate": "2023-10-26T15:02:07.000Z" + }, + { + "title": "In the end, the FTX trial was about the friends screwed along the way", + "link": "https://www.reddit.com/r/technology/comments/17gxyho/in_the_end_the_ftx_trial_was_about_the_friends/", + "pubDate": "2023-10-26T14:36:04.000Z", + "author": "/u/explowaker", + "content": "
\"In submitted by /u/explowaker
[link] [comments]
", + "contentSnippet": "submitted by /u/explowaker \n [link] [comments]", + "id": "t3_17gxyho", + "isoDate": "2023-10-26T14:36:04.000Z" + }, + { + "title": "Ticketmaster\u2019s still hiding ticket fees, senator says", + "link": "https://www.reddit.com/r/technology/comments/17gxwup/ticketmasters_still_hiding_ticket_fees_senator/", + "pubDate": "2023-10-26T14:34:00.000Z", + "author": "/u/explowaker", + "content": "
\"Ticketmaster\u2019s submitted by /u/explowaker
[link] [comments]
", + "contentSnippet": "submitted by /u/explowaker \n [link] [comments]", + "id": "t3_17gxwup", + "isoDate": "2023-10-26T14:34:00.000Z" + }, + { + "title": "Flipper Zero can now spam Android, Windows users with Bluetooth alerts", + "link": "https://www.reddit.com/r/technology/comments/17gxvqa/flipper_zero_can_now_spam_android_windows_users/", + "pubDate": "2023-10-26T14:32:36.000Z", + "author": "/u/lurker_bee", + "content": "
\"Flipper submitted by /u/lurker_bee
[link] [comments]
", + "contentSnippet": "submitted by /u/lurker_bee \n [link] [comments]", + "id": "t3_17gxvqa", + "isoDate": "2023-10-26T14:32:36.000Z" + }, + { + "title": "The UK\u2019s controversial Online Safety Bill finally becomes law | The bill, which aims to make the UK \u2018the safest place in the world to be online,\u2019 received royal assent today. But its contents have been contentious, especially because of their potential impact on encrypted messaging.", + "link": "https://www.reddit.com/r/technology/comments/17gx9tk/the_uks_controversial_online_safety_bill_finally/", + "pubDate": "2023-10-26T14:03:30.000Z", + "author": "/u/chrisdh79", + "content": "
\"The submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17gx9tk", + "isoDate": "2023-10-26T14:03:30.000Z" + }, + { + "title": "Privacy advocate challenges YouTube's ad blocking detection", + "link": "https://www.reddit.com/r/technology/comments/17gwrkt/privacy_advocate_challenges_youtubes_ad_blocking/", + "pubDate": "2023-10-26T13:39:23.000Z", + "author": "/u/waozen", + "content": "
\"Privacy submitted by /u/waozen
[link] [comments]
", + "contentSnippet": "submitted by /u/waozen \n [link] [comments]", + "id": "t3_17gwrkt", + "isoDate": "2023-10-26T13:39:23.000Z" + }, + { + "title": "Sony says PS5 supply chain issues have ended after three years, expects record holiday season sales | Pour one out for PS5 scalpers", + "link": "https://www.reddit.com/r/technology/comments/17hnmrs/sony_says_ps5_supply_chain_issues_have_ended/", + "pubDate": "2023-10-27T13:31:30.000Z", + "author": "/u/chrisdh79", + "content": "
\"Sony submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17hnmrs", + "isoDate": "2023-10-27T13:31:30.000Z" + }, + { + "title": "This electric plane\u2019s 2,000-mile journey is over. Now its Air Force tests begin.", + "link": "https://www.reddit.com/r/technology/comments/17hlwm8/this_electric_planes_2000mile_journey_is_over_now/", + "pubDate": "2023-10-27T11:58:13.000Z", + "author": "/u/ourlifeintoronto", + "content": "
\"This submitted by /u/ourlifeintoronto
[link] [comments]
", + "contentSnippet": "submitted by /u/ourlifeintoronto \n [link] [comments]", + "id": "t3_17hlwm8", + "isoDate": "2023-10-27T11:58:13.000Z" + }, + { + "title": "Apple Watch faces potential import ban in the US | The International Trade Commission has found Apple in violation of a bloody oxygen tracking patent owned by Masimo.", + "link": "https://www.reddit.com/r/technology/comments/17hkwo8/apple_watch_faces_potential_import_ban_in_the_us/", + "pubDate": "2023-10-27T10:56:09.000Z", + "author": "/u/chrisdh79", + "content": "
\"Apple submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17hkwo8", + "isoDate": "2023-10-27T10:56:09.000Z" + }, + { + "title": "US immigration enforcement used an AI-powered tool to scan social media posts \"derogatory\" to the US | \"The government should not be using algorithms to scrutinize our social media posts\"", + "link": "https://www.reddit.com/r/technology/comments/17hkkjm/us_immigration_enforcement_used_an_aipowered_tool/", + "pubDate": "2023-10-27T10:33:40.000Z", + "author": "/u/chrisdh79", + "content": "
\"US submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17hkkjm", + "isoDate": "2023-10-27T10:33:40.000Z" + }, + { + "title": "Testing 1.2 gigabits/sec IR data links from space. The ISS gets a fancy Laser data demonstrator.", + "link": "https://www.reddit.com/r/technology/comments/17hjhic/testing_12_gigabitssec_ir_data_links_from_space/", + "pubDate": "2023-10-27T09:15:07.000Z", + "author": "/u/JimBean", + "content": "
\"Testing submitted by /u/JimBean
[link] [comments]
", + "contentSnippet": "submitted by /u/JimBean \n [link] [comments]", + "id": "t3_17hjhic", + "isoDate": "2023-10-27T09:15:07.000Z" + }, + { + "title": "Pope Francis encourages more children to code, especially in Catholic countries", + "link": "https://www.reddit.com/r/technology/comments/17hhali/pope_francis_encourages_more_children_to_code/", + "pubDate": "2023-10-27T06:30:48.000Z", + "author": "/u/Loki-L", + "content": "
\"Pope submitted by /u/Loki-L
[link] [comments]
", + "contentSnippet": "submitted by /u/Loki-L \n [link] [comments]", + "id": "t3_17hhali", + "isoDate": "2023-10-27T06:30:48.000Z" + } +] diff --git a/intro to react/newData/oldNews/2b5c22c5adefd25740ae909375edc93e07550d31e803cdaad5e29041b2eee3b1.json b/intro to react/newData/oldNews/2b5c22c5adefd25740ae909375edc93e07550d31e803cdaad5e29041b2eee3b1.json index 357aa1e..b850a9a 100644 --- a/intro to react/newData/oldNews/2b5c22c5adefd25740ae909375edc93e07550d31e803cdaad5e29041b2eee3b1.json +++ b/intro to react/newData/oldNews/2b5c22c5adefd25740ae909375edc93e07550d31e803cdaad5e29041b2eee3b1.json @@ -1,46802 +1,46802 @@ [ - { - "creator": "Telegraph Sport", - "title": "Aberdeen match halted after HJK Helsinki goalkeeper pelted with snowballs", - "link": "https://www.telegraph.co.uk/football/2023/11/30/watch-hjk-helsinki-goalkeeper-aberdeen-snowballs-europa/", - "pubDate": "Thu, 30 Nov 2023 22:40:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000358453187_17013836813360_trans_NvBQzQNjv4BqD3d2dmOlWYuQkR76XZjLQP4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Sport", - "guid": "0448c43a-ad52-3efc-a8e1-a7af070ea69d", - "categories": [ - { - "_": "topics:organisations/aberdeen-fc", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T22:40:10.000Z" - }, - { - "creator": "Chris Bascombe", - "title": "Jurgen Klopp\u2019s Liverpool 2.0 are already a formidable proposition", - "link": "https://www.telegraph.co.uk/football/2023/11/30/liverpool-vs-lask-live-score-updates-europa-league/", - "pubDate": "Thu, 30 Nov 2023 22:30:03 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000358467891_17013815815700_trans_NvBQzQNjv4BqeK8ehqBZJSTiVTgumtathQRSGxdwZZ3YY7Uv4oTmABQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Bascombe", - "guid": "95c04084-ce43-3e30-88f6-b7c3876a60d7", - "categories": [ - { - "_": "topics:organisations/liverpool-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/europa-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T22:30:03.000Z" - }, - { - "creator": "Victoria Ward", - "title": "Names of \u2018royal racists\u2019 spread across globe as Palace considers legal action", - "link": "https://www.telegraph.co.uk/royal-family/2023/11/30/royal-racism-row-names-palace-legal-endgame-scobie/", - "pubDate": "Thu, 30 Nov 2023 22:15:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/11/30/TELEMMGLPICT000358408035_17013798245500_trans_NvBQzQNjv4Bq3LWUGqiHWvaGajKvH-vRlIXaRtyZZnZHPV1DIv-iJII.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Victoria Ward", - "guid": "66f0e4b5-a379-3971-bd87-58d7f428b2b9", - "categories": [ - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/omid-scobie", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/king-charles-iii", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/duchess-of-sussex", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/princess-of-wales", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/prince-william", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T22:15:02.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Israel-Hamas war: Hamas hands over six more hostages, says IDF", - "link": "https://www.telegraph.co.uk/world-news/2023/11/30/israel-hamas-war-latest-news-ceasefire-extended/", - "pubDate": "Thu, 30 Nov 2023 22:02:20 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/30/TELEMMGLPICT000358465648_17013805119940_trans_NvBQzQNjv4Bqbn2ATzBiARAqd_xwp3eU00LnQDzFnRh1AGiIwiMS-qY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "guid": "78bb1d3d-2ef2-3855-a8ca-3236d31bafb1", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T22:02:20.000Z" - }, - { - "creator": "Graham Hill", - "title": "Aston Villa accuse Legia Warsaw of stoking fan violence", - "link": "https://www.telegraph.co.uk/football/2023/11/30/police-injured-aston-villa-vs-legia-warsaw-fan-clashes/", - "pubDate": "Thu, 30 Nov 2023 21:49:09 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000358451504_17013756412020_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Graham Hill", - "guid": "e8dd63f0-05dd-32bd-be0c-5554de2ab4fc", - "categories": [ - { - "_": "topics:organisations/aston-villa-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/europa-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T21:49:09.000Z" - }, - { - "creator": "Matthew Robinson", - "title": "South-east England sees earliest winter snow in 15 years", - "link": "https://www.telegraph.co.uk/news/2023/11/30/uk-weather-news-latest-snow-ice-live/", - "pubDate": "Thu, 30 Nov 2023 19:16:20 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/30/TELEMMGLPICT000358402316_17013708499740_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Matthew Robinson", - "guid": "f652168b-04ea-334a-b84d-48a574936310", - "categories": [ - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/snow", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T19:16:20.000Z" - }, - { - "creator": "Tim Wigmore", - "title": "England vs West Indies, ODI and T20 tour: Full schedule and fixtures", - "link": "https://www.telegraph.co.uk/cricket/0/england-vs-west-indies-odi-t20-tour-full-schedule-fixtures/", - "pubDate": "Thu, 30 Nov 2023 18:51:58 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/11/30/TELEMMGLPICT000350877074_17013695319730_trans_NvBQzQNjv4BqP11JIz1p9IOWu4bU6XcffIX55UGE1-QmdhXTcMmlCx4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Wigmore", - "guid": "322a4f41-0da2-38af-a077-001f6871c6b0", - "categories": [ - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/west-indies-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T18:51:58.000Z" - }, - { - "creator": "Simon Johnson", - "title": "Former Labour chancellor Alistair Darling dies aged 70", - "link": "https://www.telegraph.co.uk/news/2023/11/30/alistair-darling-dead-former-chancellor-labour-aged-70/", - "pubDate": "Thu, 30 Nov 2023 18:49:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/30/TELEMMGLPICT000001507042_17013484138230_trans_NvBQzQNjv4Bqc-V1DFfeRCNQNlVdhv8OIW3L199Wx6GgMA67qyz0s2M.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Johnson", - "guid": "cc30da28-7063-3428-9985-dd64c424078d", - "categories": [ - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/hm-treasury", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/tony-blair", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/gordon-brown", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/scotland", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T18:49:27.000Z" - }, - { - "creator": "Chris Price", - "title": "Oil price falls after Saudi-led cartel surprises market", - "link": "https://www.telegraph.co.uk/business/2023/11/30/ftse-100-markets-news-latest-unemployment-ons-opec/", - "pubDate": "Thu, 30 Nov 2023 18:17:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/11/30/TELEMMGLPICT000287178643_17013544890760_trans_NvBQzQNjv4BqLoH7NlioJUgvNGxc7kNJh7QhCpsJmCWlSWt_yfzANGk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "guid": "22733ff9-d2ad-3349-8adf-5952f6ab1d43", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T18:17:57.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Thursday evening news briefing: Palace considers legal action after Morgan names \u2018royal racists\u2019", - "link": "https://www.telegraph.co.uk/news/2023/11/30/thursday-evening-news-briefing-palace-royal-racist/", - "pubDate": "Thu, 30 Nov 2023 17:55:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "guid": "e6523606-ff8f-31b6-8194-4e7bf3059b3e", - "categories": [ - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T17:55:44.000Z" - }, - { - "creator": "Verity Bowman", - "title": "Three dead after Hamas gunmen open fire at Jerusalem bus stop", - "link": "https://www.telegraph.co.uk/world-news/2023/11/30/jerusalem-shooting-attack-one-dead-several-injured/", - "pubDate": "Thu, 30 Nov 2023 17:19:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/30/TELEMMGLPICT000358383410_17013295716700_trans_NvBQzQNjv4Bq2GeyommrMNVwqkZdyIaJg8HPBPpSipxqgFv7FS4gYFI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Verity Bowman", - "guid": "a5db08d2-7791-36d4-aab3-a6a322501c6a", - "categories": [ - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/jerusalem", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T17:19:55.000Z" - }, - { - "creator": "Neil Johnston", - "title": "Covid Inquiry: \u2018Protective ring\u2019 around care homes wasn\u2019t \u2018unbroken circle\u2019, admits Matt Hancock", - "link": "https://www.telegraph.co.uk/news/2023/11/30/covid-inquiry-news-latest-matt-hancock-evidence-live/", - "pubDate": "Thu, 30 Nov 2023 17:13:04 GMT", - "dc:creator": "Neil Johnston", - "guid": "ce2a2897-f7b4-3193-8dae-b740c38c7c49", - "categories": [ - { - "_": "topics:in-the-news/covid-inquiry", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/coronavirus", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/matt-hancock", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/care-homes", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/department-of-health", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T17:13:04.000Z" - }, - { - "creator": "Anna Tyzack", - "title": "These women solve Hollywood\u2019s gift dilemmas \u2013 but can they cope with British Christmas conundrums?", - "link": "https://www.telegraph.co.uk/christmas/2023/11/30/christmas-gift-dilemmas-carnaby-vine-jen-cooper-bex-norris/", - "pubDate": "Thu, 30 Nov 2023 17:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/30/TELEMMGLPICT000355972950_17013524567840_trans_NvBQzQNjv4Bqar0_b0Fdh2MXu5WnanCWxLqOUegY8xEXVRKsNnEs-TY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Anna Tyzack", - "guid": "3a775b47-9c51-33ab-8b55-f22d8a1d8241", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/james-corden", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T17:00:00.000Z" - }, - { - "creator": "Dominic Nicholls", - "title": "Ukraine: The Latest - Putin pays tribute to \u2018farsighted statesman\u2019 Henry Kissinger", - "link": "https://www.telegraph.co.uk/world-news/2023/11/30/putin-pays-tribute-to-farsighted-statesman-henry-kissinger/", - "pubDate": "Thu, 30 Nov 2023 16:51:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/30/TELEMMGLPICT000358429051_17013628657670_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Nicholls", - "guid": "da8c4356-9125-3b7c-b17c-d6838e669017", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T16:51:18.000Z" - }, - { - "creator": "Ben Farmer", - "title": "Scientists aim to predict weather\u2019s impact on heart disease patients", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/cop-28-climate-change-summit-dubai-public-health/", - "pubDate": "Thu, 30 Nov 2023 16:49:33 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/30/TELEMMGLPICT000357623239_17013602810060_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Farmer", - "guid": "769c352a-759e-3617-88c4-0a6da7b667e8", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/heart-disease", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pollution", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/heatwave", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/cop28", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:environment", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T16:49:33.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "What\u2019s on TV tonight: Obliterated, My Teacher the Abuser: Fighting for Justice and more", - "link": "https://www.telegraph.co.uk/tv/0/tv-guide-tv-television-tonight/", - "pubDate": "Thu, 30 Nov 2023 16:08:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tv/2023/11/24/TELEMMGLPICT000356664652_17008321302680_trans_NvBQzQNjv4Bq_2WwsQGciJHbwB_EulIANf4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "guid": "06b4bdb8-de13-3e88-8461-2ed233991f17", - "categories": [ - { - "_": "topics:organisations/itv", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/channel-4", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bbc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/sky", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/netflix", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/amazon-prime-video", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture/culture-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:on-demand", - "$": { - "domain": "" - } - }, - { - "_": "structure:television/television-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:television", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T16:08:57.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Sunak blames former Tory PMs for record net migration numbers", - "link": "https://www.telegraph.co.uk/politics/2023/11/30/rishi-sunak-latest-news-tories-labour-keir-starmer-live/", - "pubDate": "Thu, 30 Nov 2023 16:00:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/11/30/TELEMMGLPICT000358403241_17013464169690_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "guid": "f09ff9f0-8422-3a5e-8a14-21cb4bbf125e", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T16:00:14.000Z" - }, - { - "creator": "Marlborough", - "title": "Marlborough racing tips and best bets for today\u2019s races", - "link": "https://www.telegraph.co.uk/racing/0/marlborough-racing-tips-best-bets-todays-races/", - "pubDate": "Thu, 30 Nov 2023 15:50:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/racing/2021/03/26/260321_JH_RACING_PORTAL_4_trans_NvBQzQNjv4Bq0xCxaHs0uU-ytAiMd-7XpGcvlwE7VKNo06j5r2t05AQ.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Marlborough", - "guid": "8a6067c8-0eca-3b53-8b7f-7d89f40c5d02", - "categories": [ - { - "_": "structure:racing", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/racing-tips", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T15:50:25.000Z" - }, - { - "creator": "Ben Rumsby", - "title": "Two new victims come forward against Premier League footballer accused of rape", - "link": "https://www.telegraph.co.uk/football/2023/11/30/two-new-victims-premier-league-rape-accused-footballer/", - "pubDate": "Thu, 30 Nov 2023 15:24:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000278987686_17013500500840_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Rumsby", - "guid": "722c575f-ab5c-3c41-97ba-63c104eb90ed", - "categories": [ - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T15:24:19.000Z" - }, - { - "creator": "James Crisp", - "title": "Shane MacGowan, frontman of the Pogues, dies aged 65", - "link": "https://www.telegraph.co.uk/news/2023/11/30/shane-macgowan-the-pogues-lead-singer-dies-65/", - "pubDate": "Thu, 30 Nov 2023 15:15:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/30/TELEMMGLPICT000358411188_17013462395140_trans_NvBQzQNjv4BqQM3rjVtAqPt4faM6F0jDQFXVwEOABAI30WlhGnTN0VY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "James Crisp", - "guid": "c66d3588-5d2c-3918-9e1c-3b1c7fb1f141", - "categories": [ - { - "_": "topics:things/death", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/rock-music", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ireland", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T15:15:35.000Z" - }, - { - "creator": "Ed McConnell", - "title": "Ukraine-Russia war: Rescuers dig for survivors after Donetsk bombardment", - "link": "https://www.telegraph.co.uk/world-news/2023/11/30/ukraine-russia-war-latest-news-putin-bakhmut-live/", - "pubDate": "Thu, 30 Nov 2023 15:11:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/30/TELEMMGLPICT000358398599_17013398167640_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4Cq4KazV9AxotcTKJxweDov0.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ed McConnell", - "guid": "2b4f2740-ca1f-3960-b1a3-5d5d83e7dfe7", - "categories": [ - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T15:11:37.000Z" - }, - { - "creator": "Sarah Newey", - "title": "\u2018The cracks are getting bigger and there are still aftershocks \u2013 we fear our house may collapse\u2019", - "link": "https://www.telegraph.co.uk/global-health/climate-and-people/afghanistan-earthquake-herat-aftershocks-tremors/", - "pubDate": "Thu, 30 Nov 2023 14:50:47 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/30/TELEMMGLPICT000352545872_17013544402820_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "guid": "09a53b16-1892-35a0-8ac5-00e887f12a04", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/earthquake", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/afghanistan", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "structure:climate-and-people", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T14:50:47.000Z" - }, - { - "creator": "Charles Richardson", - "title": "'Narrative' around Owen Farrell is unfair, says Mark McCall", - "link": "https://www.telegraph.co.uk/rugby-union/2023/11/30/saracens-press-conference-live-mark-mccall-owen-farrell/", - "pubDate": "Thu, 30 Nov 2023 14:33:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/11/30/TELEMMGLPICT000292210220_17013405740710_trans_NvBQzQNjv4Bqdy_Qk976bea-8Wp8YFBgLV-SP8-K2OZE1eOuRKbfTvY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Richardson", - "guid": "ba751b50-770f-3d5e-8b1a-76fcdf9cbd3c", - "categories": [ - { - "_": "topics:organisations/saracens-rugby", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/rfu", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/owen-farrell", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mental-health", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T14:33:59.000Z" - }, - { - "creator": "Diana Henry", - "title": "Meringue wreath with mango, passion fruit and pistachios recipe", - "link": "https://www.telegraph.co.uk/recipes/0/meringue-wreath-with-mango-passion-fruit-recipe/", - "pubDate": "Thu, 30 Nov 2023 13:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/11/28/TELEMMGLPICT000358150814_17011809213400_trans_NvBQzQNjv4BqeUX5lUnlbKgfWN6OUJaM4_P6xiRVbwMaBwsH_Glk25w.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "guid": "e4be09cd-1f7a-3d7b-ad0f-7c5cb97a6dad", - "categories": [ - { - "_": "topics:things/dessert-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-magazine", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fruit-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T13:00:00.000Z" - }, - { - "creator": "Diana Henry", - "title": "Bitter chocolate cake with boozy cranberry compote and port cream recipe", - "link": "https://www.telegraph.co.uk/recipes/0/bitter-chocolate-cake-with-boozy-cranberry-compote-recipe/", - "pubDate": "Thu, 30 Nov 2023 13:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/11/28/TELEMMGLPICT000358150802_17011802543410_trans_NvBQzQNjv4BqbLRfbHmhcXKTerWi-l8lG-5JWqlndEYdDSWz-0PF7Ew.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "guid": "8aa05df5-6e10-3611-abb2-5a0964082b69", - "categories": [ - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dessert-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chocolate-cake-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chocolate-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-magazine", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T13:00:00.000Z" - }, - { - "creator": "Diana Henry", - "title": "Sauternes custards recipe", - "link": "https://www.telegraph.co.uk/recipes/0/sauternes-custards-recipe/", - "pubDate": "Thu, 30 Nov 2023 13:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/11/28/TELEMMGLPICT000358150821_17011806197490_trans_NvBQzQNjv4Bqkjv_5xph6laDizdH61U1MD3fdGcr8fMpYWHI7AiDu4E.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "guid": "612e78c7-fb64-3fdd-b457-efeace9645df", - "categories": [ - { - "_": "topics:things/dessert-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-magazine", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/french-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T13:00:00.000Z" - }, - { - "creator": "Jason Burt", - "title": "Andre Onana howlers so bad only one Man Utd team-mate went to console him", - "link": "https://www.telegraph.co.uk/football/2023/11/29/galatasaray-vs-man-utd-live-champions-league-weather-latest/", - "pubDate": "Thu, 30 Nov 2023 12:43:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000358352383_17013479381460_trans_NvBQzQNjv4BqnjmIHptgl1Xq0zyp305djjxNYSeuHkgpj3Bz0LQpNzE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jason Burt", - "guid": "8f9a4ae7-aa0d-388a-b249-44bc1beaadba", - "categories": [ - { - "_": "topics:organisations/manchester-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/galatasaray-sk", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/erik-ten-hag", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T12:43:51.000Z" - }, - { - "creator": "Tim Robey", - "title": "Fallen Leaves: a particularly fine, poetic romance from a modern master", - "link": "https://www.telegraph.co.uk/films/0/fallen-leaves-review-aki-kaurismaki/", - "pubDate": "Thu, 30 Nov 2023 12:39:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2023/11/30/TELEMMGLPICT000356953340_17013476545870_trans_NvBQzQNjv4BqwMpl-Jpdv5EMZZkofEupHHOhRTQmhcLyf2hPZPxeZDA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Robey", - "guid": "412be3ca-bc77-306f-8066-118e0e75a155", - "categories": [ - { - "_": "topics:places/finland", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "editors:tim-robey", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T12:39:55.000Z" - }, - { - "creator": "Robbie Collin", - "title": "Genie: Richard Curtis serves up a suitably syrupy Christmas confection", - "link": "https://www.telegraph.co.uk/films/0/genie-review-richard-curtis/", - "pubDate": "Thu, 30 Nov 2023 12:06:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2023/11/30/TELEMMGLPICT000356774976_17013453593200_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Robbie Collin", - "guid": "3df78a0c-19f0-3aa6-823b-21765ccbaafd", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/new-york", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "editors:robbie-collin", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T12:06:59.000Z" - }, - { - "creator": "Paul McAnulty", - "title": "Telegraph Fantasy Football tips: Game Week 14", - "link": "https://www.telegraph.co.uk/fantasy-sports/fantasy-football/telegraph-fantasy-football-tips/", - "pubDate": "Thu, 30 Nov 2023 11:02:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Fantasy-football/kane-paqueta-soucek-ff-2.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Paul McAnulty", - "guid": "7262c82a-db3a-30b9-a345-3e88700eff16", - "categories": [ - { - "_": "commercial:fantasy-sports/fantasy-football", - "$": { - "domain": "" - } - }, - { - "_": "commercial:apple-news-include", - "$": { - "domain": "" - } - }, - { - "_": "commercial:fantasy-sports/fantasy-football/fantasy-football-selection-tips", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T11:02:00.000Z" - }, - { - "creator": "Tim Robey", - "title": "Eileen, review: Anne Hathaway flirts with danger \u2013 but where\u2019s the sexual tension?", - "link": "https://www.telegraph.co.uk/films/0/eileen-review-anne-hathaway-thomasin-mckenzie/", - "pubDate": "Thu, 30 Nov 2023 10:52:42 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2023/10/06/TELEMMGLPICT000351942031_16966039665750_trans_NvBQzQNjv4Bq90JsMauqkzRhOnTEP_rlOrxlL4JJZFr6G2BGlsAngeI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Robey", - "guid": "f01518d2-1a9b-3e26-9da4-e845895ed02e", - "categories": [ - { - "_": "topics:people/anne-hathaway", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/london-film-festival", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "editors:tim-robey", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture/culture-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-30T10:52:42.000Z" - }, - { - "creator": "Kieran Crichard", - "title": "Arsenal turn on the style in six-goal rout of Lens", - "link": "https://www.telegraph.co.uk/football/2023/11/29/arsenal-vs-lens-live-score-updates-champions-league/", - "pubDate": "Wed, 29 Nov 2023 22:40:45 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/29/TELEMMGLPICT000358337839_17012938176010_trans_NvBQzQNjv4BqNJE-uyjvb3OSR4bmogoB0aOthl_wMxfPPu_UgzsYnSM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Kieran Crichard", - "guid": "2ae7fe84-c4a5-3012-a48b-2bab610b4ebc", - "categories": [ - { - "_": "topics:organisations/arsenal-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T22:40:45.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Israel-Hamas war: Hamas hands over 14 hostages after 'logistical' delay", - "link": "https://www.telegraph.co.uk/world-news/2023/11/29/israel-hamas-war-ceasefire-hostages-latest-news/", - "pubDate": "Wed, 29 Nov 2023 22:10:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/29/TELEMMGLPICT000358340818_17012937504180_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "guid": "df1338c7-a479-3edd-aa0e-44275c46418f", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T22:10:37.000Z" - }, - { - "creator": "Daniel Schofield", - "title": "Owen Farrell to stop playing for England after being booed by fans", - "link": "https://www.telegraph.co.uk/rugby-union/2023/11/29/owen-farrell-live-england-international-break-mental-health/", - "pubDate": "Wed, 29 Nov 2023 21:21:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/11/29/TELEMMGLPICT000345628065_17012705567340_trans_NvBQzQNjv4Bq-lc5VlyuGXUsD747WoysfsKTQGIrNIUzeuXkbJaJW8o.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Daniel Schofield", - "guid": "3e19c980-47fd-3a7c-ad51-c6518bbd3cf6", - "categories": [ - { - "_": "topics:people/owen-farrell", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/saracens-rugby", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T21:21:43.000Z" - }, - { - "creator": "Chris Price", - "title": "Biden spending binge triggers fastest US growth in two years", - "link": "https://www.telegraph.co.uk/business/2023/11/29/ftse-100-markets-news-saudi-arabia-pif-stakeholder-heathrow/", - "pubDate": "Wed, 29 Nov 2023 18:24:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/11/29/TELEMMGLPICT000356956412_17012664141830_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "guid": "5de25c49-7e50-3cd5-87cb-9219cd4d8027", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T18:24:02.000Z" - }, - { - "creator": "Helen Chandler-Wilde", - "title": "The best \u2018natural\u2019 cold remedies you should buy now", - "link": "https://www.telegraph.co.uk/health-fitness/conditions/cold-flu/how-to-treat-cold-best-natural-remedies-cures-supplements-2022/", - "pubDate": "Wed, 29 Nov 2023 17:50:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2021/11/02/TELEMMGLPICT000273099721_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Helen Chandler-Wilde", - "guid": "40784d5c-8456-3f41-9816-9f3e4011ab45", - "categories": [ - { - "_": "topics:things/zinc", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vitamins", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/supplements", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vitamin-d", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/viruses", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-guide", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T17:50:25.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Wednesday evening news briefing: Snow could reach London as Khan declares 'severe weather emergency'", - "link": "https://www.telegraph.co.uk/news/2023/11/29/wednesday-evening-news-briefing-snow-london-khan-emergency/", - "pubDate": "Wed, 29 Nov 2023 17:46:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "guid": "5c41079a-1212-3341-b26b-e2055b9c281d", - "categories": [ - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T17:46:43.000Z" - }, - { - "creator": "Ed Cumming", - "title": "\u2018A German bomber hit the house opposite me \u2013 I joined the RAF to see if I could catch that bloke\u2019", - "link": "https://www.telegraph.co.uk/christmas/2023/11/29/raf-benevolent-fund-colin-bell-world-war-two-armed-forces/", - "pubDate": "Wed, 29 Nov 2023 17:40:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/29/TELEMMGLPICT000356017292_17012768172140_trans_NvBQzQNjv4BqZ7P499NBrqUlQwtY1pe3j9HmZAADo6ozrtwBtm1mAK4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ed Cumming", - "guid": "f8908352-659e-31cf-9bde-680fd3a18b47", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/raf-benevolent-fund", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/second-world-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/world-war-two", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T17:40:00.000Z" - }, - { - "creator": "Ben Farmer", - "title": "Anthrax confirmed as \u2018mystery\u2019 disease behind deaths in Uganda", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/anthrax-confirmed-in-uganda-africa-deaths-infections/", - "pubDate": "Wed, 29 Nov 2023 17:25:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/29/TELEMMGLPICT000312674924_17012774743350_trans_NvBQzQNjv4BqCndPCyOv9gW5X20QLMNyLVHmPOpeFd0SyQx9dn7kM_w.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Farmer", - "guid": "439af794-2b96-389a-9dfc-4ca07141bfcb", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/anthrax", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/uganda", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/africa", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T17:25:51.000Z" - }, - { - "creator": "Alex Barton", - "title": "Boris Johnson wasn't Cummings' puppet, Raab says", - "link": "https://www.telegraph.co.uk/news/2023/11/29/covid-inquiry-uk-news-latest-dr-harries-raab-sajid-javid0/", - "pubDate": "Wed, 29 Nov 2023 17:00:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/29/TELEMMGLPICT000358293802_17012812797790_trans_NvBQzQNjv4Bq8juO8C_Vdx2cT20LARTibnFLfv0ucAwTrkjYdq767p4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alex Barton", - "guid": "a76cbc94-b35f-388e-b3cf-9757c4a74003", - "categories": [ - { - "_": "topics:people/jacob-rees-mogg", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/covid-inquiry", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/sadiq-khan", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/coronavirus", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T17:00:44.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Russia bombards Avdiivka and live from a NATO meeting", - "link": "https://www.telegraph.co.uk/world-news/2023/11/29/russia-bombards-avdiivka-and-live-from-a-nato-meeting/", - "pubDate": "Wed, 29 Nov 2023 16:30:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/29/TELEMMGLPICT000358258998_17012752915670_trans_NvBQzQNjv4BqjArgU8GmB4hL1r1YSukYjUgVPwdufeeucebiXkh7vYA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "guid": "ff6347e5-75dd-3d5a-b6eb-f731c4c1cdfe", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T16:30:00.000Z" - }, - { - "creator": "Jessica Doyle", - "title": "The best home Christmas gifts of 2023, selected by The Telegraph's interior decoration expert", - "link": "https://www.telegraph.co.uk/christmas/0/best-home-christmas-gifts/", - "pubDate": "Wed, 29 Nov 2023 16:29:08 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2022/11/28/TELEMMGLPICT000317822123_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jessica Doyle", - "guid": "e5cca538-78eb-3d06-9b89-27851fa52361", - "categories": [ - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T16:29:08.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: No 10 hits back at Ursula von der Leyen over Brexit remarks", - "link": "https://www.telegraph.co.uk/politics/2023/11/29/rishi-sunak-latest-news-kwarteng-braverman-migration/", - "pubDate": "Wed, 29 Nov 2023 16:00:21 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/11/29/TELEMMGLPICT000358283832_17012660062010_trans_NvBQzQNjv4BqxKkYrBbBWaRu3my4RQIxJP0eQTsAC_M066Kngl9FFL0.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "guid": "8cb955d3-7d76-337c-9462-d845db6bf24d", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T16:00:21.000Z" - }, - { - "creator": "Cameron Henderson", - "title": "Six Nations 2024: When is it and how to watch in UK and US", - "link": "https://www.telegraph.co.uk/rugby-union/0/six-nations-championship-2024-when-how-to-watch/", - "pubDate": "Wed, 29 Nov 2023 15:58:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/11/29/TELEMMGLPICT000354466229_17012734408130_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwWGUoDseFNqJElbWj8lWIVU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Cameron Henderson", - "guid": "54e79ca1-a0a7-3a19-b7dd-7fb5cdcd8a30", - "categories": [ - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/scotland-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/france-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/six-nations", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/wales-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ireland-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T15:58:27.000Z" - }, - { - "creator": "Mike McGrath", - "title": "Euro 2024 draw: What time is it and which teams could England face?", - "link": "https://www.telegraph.co.uk/football/0/euro-2024-draw-what-time-england-teams-germany-tv/", - "pubDate": "Wed, 29 Nov 2023 15:47:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/28/TELEMMGLPICT000358159939_17011886180160_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mike McGrath", - "guid": "3c7c6ca6-abec-3eae-8cce-720cc4ad85ff", - "categories": [ - { - "_": "topics:events/euro-2024", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-football-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/germany-football-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/gareth-southgate", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/harry-kane", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T15:47:27.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Ukraine-Russia war: Russian general blown up by landmine on front line", - "link": "https://www.telegraph.co.uk/world-news/2023/11/29/ukraine-russia-war-latest-news/", - "pubDate": "Wed, 29 Nov 2023 15:24:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/29/TELEMMGLPICT000358300665_17012712483350_trans_NvBQzQNjv4Bq92hKO6jAtmPrz4xYdDrmek9yDqRy7ybewBDNlekZncA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "guid": "78128228-b565-373e-a7b1-05716bc21779", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T15:24:17.000Z" - }, - { - "creator": "Marianka Swain", - "title": "London theatre: the best family shows to book now", - "link": "https://www.telegraph.co.uk/theatre/what-to-see/best-london-theatre-shows-musicals-plays-tickets-family/", - "pubDate": "Wed, 29 Nov 2023 14:43:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/theatre/2023/05/14/TELEMMGLPICT000335580363_trans_NvBQzQNjv4BqMLW7lEyShFmnn4OBvNoy7JiYM9EOdf5fBDOax-kKt4A.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Marianka Swain", - "guid": "624d0d5a-a010-315d-b1bc-7e7b2c230e1c", - "categories": [ - { - "_": "topics:places/west-end", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/disney", - "$": { - "domain": "" - } - }, - { - "_": "structure:theatre", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T14:43:59.000Z" - }, - { - "creator": "Marianka Swain", - "title": "London theatre: the best musicals and plays to book now", - "link": "https://www.telegraph.co.uk/theatre/what-to-see/best-theatre-shows-plays-book-tickets-london-uk-performances/", - "pubDate": "Wed, 29 Nov 2023 14:42:48 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/theatre/2023/05/14/TELEMMGLPICT000335580359_trans_NvBQzQNjv4BqRRSmT6cvkmeECxVzj5L_rITPD5foJ9o3wuqP2tL5Yek.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Marianka Swain", - "guid": "811a3c58-bbba-3a4d-abd2-33115941e716", - "categories": [ - { - "_": "topics:places/west-end", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/national-theatre", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/almeida-theatre", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/old-vic", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/donmar-warehouse", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/abba", - "$": { - "domain": "" - } - }, - { - "_": "structure:dance", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:theatre", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T14:42:48.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "\u2018I\u2019ve tried and tried, and I can\u2019t get rid of it\u2019: The women living with drug-resistant infections", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/amr-antimicrobial-resistance-superbugs-infections-pandemic/", - "pubDate": "Wed, 29 Nov 2023 12:03:33 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/29/TELEMMGLPICT000357417943_17012580743180_trans_NvBQzQNjv4Bq688n9x0pLg7wrhjlfnO5m9kM9MM8VM3G1BxlGUO4L8Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "guid": "0c560ddf-a31c-331a-85c6-a275f58db07a", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/superbugs-antibiotic-resistance", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/antibiotics", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T12:03:33.000Z" - }, - { - "creator": "Telegraph Video", - "title": "Iranian drone films US aircraft carrier entering Persian Gulf", - "link": "https://www.telegraph.co.uk/world-news/2023/11/29/uss-dwight-d-eisenhower-persian-gulf-fifth-fleet/", - "pubDate": "Wed, 29 Nov 2023 11:45:33 GMT", - "dc:creator": "Telegraph Video", - "guid": "98ad705e-2dba-366f-b2c4-80881c11c87d", - "categories": [ - { - "_": "topics:places/iran", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/usa", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/us-navy", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-arab-emirates", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T11:45:33.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Four teenagers drowned when car crashed into Snowdonia stream, inquest hears", - "link": "https://www.telegraph.co.uk/news/2023/11/29/four-teenagers-north-wales-snowdonia-drowned-death-inquest/", - "pubDate": "Wed, 29 Nov 2023 11:44:01 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/29/TELEMMGLPICT000357464956_17012549742030_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "guid": "a0c63fae-b91e-33e7-8aed-065165c2f29c", - "categories": [ - { - "_": "topics:places/snowdonia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/wales", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T11:44:01.000Z" - }, - { - "creator": "Olivia Acland", - "title": "UAE to lease millions of hectares of land in Africa to generate carbon credits", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/uae-leases-african-land-to-generate-carbon-credits/", - "pubDate": "Wed, 29 Nov 2023 10:16:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/28/TELEMMGLPICT000299657801_17011698145320_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfFMCdzn0ov5UrDuPlZv8pI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Olivia Acland", - "guid": "be7e129d-5e41-3d2a-a9c6-65fe7ff29ec6", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-arab-emirates", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/zambia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/tanzania", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/liberia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/zimbabwe", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T10:16:36.000Z" - }, - { - "creator": "Charles Hymas", - "title": "Rishi Sunak under pressure from Tory Right for cap on migration", - "link": "https://www.telegraph.co.uk/politics/2023/11/28/rishi-sunak-latest-news-rees-mogg-tory-general-election/", - "pubDate": "Wed, 29 Nov 2023 06:17:06 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/11/28/TELEMMGLPICT000358151804_17011929421630_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Hymas", - "guid": "7acbdec2-e0d2-3879-8b3d-7f5b69e7e2a7", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T06:17:06.000Z" - }, - { - "creator": "Michael Searles", - "title": "Patients at risk from virtual GP appointments", - "link": "https://www.telegraph.co.uk/news/2023/11/29/patients-at-risk-from-virtual-gp-appointments/", - "pubDate": "Wed, 29 Nov 2023 00:15:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/28/TELEMMGLPICT000358187855_17012052192390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Michael Searles", - "guid": "7a61852a-ac34-32ed-8cc0-e489f8e4272b", - "categories": [ - { - "_": "topics:organisations/nhs", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/elder-health", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T00:15:00.000Z" - }, - { - "creator": "Rishi Sunak", - "title": "The anger over the Sycamore Gap tree shows us why we must halt decline in nature", - "link": "https://www.telegraph.co.uk/politics/2023/11/29/rishi-sunak-unveils-new-powers-to-protect-local-trees-in-wa/", - "pubDate": "Wed, 29 Nov 2023 00:01:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/11/28/TELEMMGLPICT000030111301_17012056635220_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rishi Sunak", - "guid": "caf3c497-ea5d-39c2-b244-e1705bb84e1c", - "categories": [ - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/trees-and-forests", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/nature", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:comment", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-29T00:01:00.000Z" - }, - { - "creator": "Sam Wallace", - "title": "Newcastle denied by Var as Champions League hopes left in tatters in Paris", - "link": "https://www.telegraph.co.uk/football/2023/11/28/psg-vs-newcastle-live-score-updates-champions-league/", - "pubDate": "Tue, 28 Nov 2023 23:58:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/28/TELEMMGLPICT000358208608_17012088936870_trans_NvBQzQNjv4BqGbwdhRpK4odrfvcIWPpCV2WsKMkrERncZgwbFtDvKUk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Wallace", - "guid": "ee0a3911-fc98-3e95-a0cb-7e58ae345eb2", - "categories": [ - { - "_": "topics:organisations/newcastle-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/psg", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T23:58:05.000Z" - }, - { - "creator": "Mike McGrath", - "title": "Julian Alvarez and Jeremy Doku should be automatic starters for Manchester City", - "link": "https://www.telegraph.co.uk/football/2023/11/28/man-city-vs-rb-leipzig-live-score-updates-champions-league/", - "pubDate": "Tue, 28 Nov 2023 22:50:03 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/28/TELEMMGLPICT000358208158_17012090165980_trans_NvBQzQNjv4BqvxCgWT2yYhouigw5Jlk4dcbAbHJZ6kkc8mWiNaUXxro.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mike McGrath", - "guid": "24f18eef-cbcd-356b-ab4d-db9bdc46b7f7", - "categories": [ - { - "_": "topics:organisations/rb-leipzig", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/manchester-city-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/champions-league-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T22:50:03.000Z" - }, - { - "creator": "Abbie Cheeseman", - "title": "Palestinian Islamic Jihad armed wing hands over Israeli hostages", - "link": "https://www.telegraph.co.uk/world-news/2023/11/28/israel-hamas-gaza-hostage-release-ceasefire-latest-news/", - "pubDate": "Tue, 28 Nov 2023 22:01:49 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000358179815_17012028839870_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abbie Cheeseman", - "guid": "3f212799-c85e-3634-8e81-bd63ee143bdf", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T22:01:49.000Z" - }, - { - "creator": "Rob Bagchi", - "title": "Celtic crash out of Europe as Ciro Immobile seals Lazio victory", - "link": "https://www.telegraph.co.uk/football/2023/11/28/lazio-vs-celtic-live-score-updates-champions-league/", - "pubDate": "Tue, 28 Nov 2023 20:07:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/28/TELEMMGLPICT000358181082_17011997905380_trans_NvBQzQNjv4BqVoN5nQkKSYgl33k9fED3AQpkYVnSZEHt6-ir__DTAH4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rob Bagchi", - "guid": "7924ba50-570c-3a98-b594-57b89cc79c07", - "categories": [ - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/celtic-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ss-lazio", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T20:07:25.000Z" - }, - { - "creator": "Will Bolton", - "title": "Killer posted tribute to 'amazing friend' Brianna Ghey after her death, court hears", - "link": "https://www.telegraph.co.uk/news/2023/11/28/brianna-ghey-murder-trial-latest-live-updates/", - "pubDate": "Tue, 28 Nov 2023 19:53:58 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/28/TELEMMGLPICT000358064270_17011702903410_trans_NvBQzQNjv4BqmjvgPpFxm00IlCEpu3_UucwEsps1dmalTJGSbd8tfTk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Will Bolton", - "guid": "ae4cffa3-e44c-3a17-963c-9511f5bcd09a", - "categories": [ - { - "_": "topics:in-the-news/knife-crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/greater-manchester-police", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/cheshire-constabulary", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T19:53:58.000Z" - }, - { - "creator": "Chris Price", - "title": "National Grid to pay people to use less energy amid cold snap", - "link": "https://www.telegraph.co.uk/business/2023/11/28/ftse-100-markets-news-live-food-inflation-supermarkets/", - "pubDate": "Tue, 28 Nov 2023 18:17:33 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/11/28/TELEMMGLPICT000327054501_17011782146620_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "guid": "b43b9174-08bb-3623-b0c4-cac64462524c", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T18:17:33.000Z" - }, - { - "creator": "Samaan Lateef", - "title": "All 41 trapped workers rescued from Indian tunnel after 17 days underground", - "link": "https://www.telegraph.co.uk/world-news/2023/11/28/indian-tunnel-collapse-rescuers-break-through-uttarakhand/", - "pubDate": "Tue, 28 Nov 2023 18:16:11 GMT", - "dc:creator": "Samaan Lateef", - "guid": "9952c9ec-d4eb-3003-892f-86cdf60a5b7c", - "categories": [ - { - "_": "topics:places/india", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T18:16:11.000Z" - }, - { - "creator": "Alex Barton", - "title": "We didn\u2019t lock down early enough, says Gove", - "link": "https://www.telegraph.co.uk/news/2023/11/28/covid-inquiry-uk-news-latest-michael-grove-dr-jenny-harries/", - "pubDate": "Tue, 28 Nov 2023 17:58:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/28/TELEMMGLPICT000358166624_17011922335310_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwVSYfRx-a0rm-wOQ3-QTCoU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alex Barton", - "guid": "8f5df5ef-7926-337f-8062-fdb1c7cebb1e", - "categories": [ - { - "_": "topics:in-the-news/covid-inquiry", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/coronavirus", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/michael-gove", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T17:58:18.000Z" - }, - { - "creator": "Sophia Yan", - "title": "Battle Lines: 'Europe and the Middle East, if one sneezes the other catches a cold'", - "link": "https://www.telegraph.co.uk/world-news/2023/11/28/europe-middle-east-israel-usa/", - "pubDate": "Tue, 28 Nov 2023 17:50:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000358011445_17011937115310_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sophia Yan", - "guid": "d0c30853-2401-3584-bf04-ccd62d13bcd9", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/battle-lines", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T17:50:14.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Tuesday evening news briefing: Covid could be \u2018man-made\u2019, says Gove", - "link": "https://www.telegraph.co.uk/news/2023/11/28/tuesday-evening-news-briefing-covid-could-be-man-made-gove/", - "pubDate": "Tue, 28 Nov 2023 17:46:07 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "guid": "7034ce78-5377-3753-bd80-8fa44506553c", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andrew-bailey", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T17:46:07.000Z" - }, - { - "creator": "Rosa Silverman", - "title": "Only Fools and Horses' Sue Holderness: \u2018Politically correct people want a lot of comedy banned\u2019", - "link": "https://www.telegraph.co.uk/christmas/2023/11/28/sue-holderness-only-fools-interview-comedy/", - "pubDate": "Tue, 28 Nov 2023 16:59:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/28/TELEMMGLPICT000357489861_17011892312740_trans_NvBQzQNjv4Bqx1N6mzreoM9UEkoOCiuTNmQnZJIETfWB_fUbKb77n0w.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rosa Silverman", - "guid": "15611e48-0814-341d-8fa3-603a0751c40f", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/raf-benevolent-fund", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T16:59:50.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Russia\u2019s Black Sea fleet forced back by \u2018storm of the century\u2019", - "link": "https://www.telegraph.co.uk/world-news/2023/11/28/russias-black-sea-fleet-forced-back-by-storm-of-the-century/", - "pubDate": "Tue, 28 Nov 2023 16:37:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000358078803_17011893836790_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "guid": "b3dc66fa-54b3-3ae1-9adf-d84cb867f55f", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T16:37:35.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "Covid-19 vaccines may have prevented thousands of premature births, study suggests", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/covid-vaccines-may-prevent-premature-births-study-suggests/", - "pubDate": "Tue, 28 Nov 2023 16:17:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/28/TELEMMGLPICT000255372747_17011876094570_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9f4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "guid": "080f2fb8-f6a2-384c-995a-5b2b6af07bdf", - "categories": [ - { - "_": "topics:in-the-news/coronavirus", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pregnancy", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vaccines", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/booster-vaccines", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/women's-health", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T16:17:24.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The 26 best advent calendars of 2023, from chocolate to Lego", - "link": "https://www.telegraph.co.uk/christmas/best-advent-calendars/", - "pubDate": "Tue, 28 Nov 2023 15:56:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/23/TELEMMGLPICT000354149987_16980750699600_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "guid": "453db5dc-f90d-34aa-8741-4f020343be21", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/advent-calendars", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T15:56:18.000Z" - }, - { - "creator": "Fiona Tomas", - "title": "Paris to double price of Metro tickets during Olympics to cash in on fans", - "link": "https://www.telegraph.co.uk/olympics/2023/11/28/paris-olympics-2024-metro-tickets-double-prices/", - "pubDate": "Tue, 28 Nov 2023 15:12:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/olympics/2023/11/28/TELEMMGLPICT000356617370_17011833832250_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Fiona Tomas", - "guid": "0033260d-a8bc-33e0-aec1-2a17745a933c", - "categories": [ - { - "_": "topics:events/paris-olympics-2024", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/paris", - "$": { - "domain": "" - } - }, - { - "_": "structure:olympics", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T15:12:04.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Ukraine-Russia war: Finland closes entire border with Russia", - "link": "https://www.telegraph.co.uk/world-news/2023/11/28/russia-ukraine-war-latest-black-sea-fleet-crimea-missiles/", - "pubDate": "Tue, 28 Nov 2023 15:10:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000357809665_17011841735440_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "guid": "139cf3c4-a5c4-3458-9b94-d2694f33dd0c", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T15:10:55.000Z" - }, - { - "creator": "Sarah Newey", - "title": "Asian neighbours \u2018put guard up\u2019 amid fears China\u2019s wave of disease will spread", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/asian-countries-guard-against-china-mystery-disease-spread/", - "pubDate": "Tue, 28 Nov 2023 14:40:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/28/TELEMMGLPICT000357710232_17011707284670_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "guid": "6bb1b635-57a8-32c6-8a08-b6ac64ec046f", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/china", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/india", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/thailand", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/south-korea", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T14:40:44.000Z" - }, - { - "creator": "Sarah Raven", - "title": "Sarah Raven's best Christmas gifts for gardeners in 2023, from tools to seed kits", - "link": "https://www.telegraph.co.uk/christmas/best-christmas-gifts-gardeners/", - "pubDate": "Tue, 28 Nov 2023 13:40:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2022/11/25/TELEMMGLPICT000317522245_trans_NvBQzQNjv4BqoHFBPgG5JS7XdVlLQy3_s_SsAIeVWg5VsMggdZY7tkY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Raven", - "guid": "af7b49b1-aeab-3747-9517-a1118daae754", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-gifts", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T13:40:53.000Z" - }, - { - "creator": "Jack Rear", - "title": "Anyone for cow cuddling? Meet the new breed of \u2018therapy animals\u2019", - "link": "https://www.telegraph.co.uk/christmas/2023/11/28/anyone-for-cow-cuddling-meet-new-breed-of-therapy-animals/", - "pubDate": "Tue, 28 Nov 2023 13:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/28/TELEMMGLPICT000357807238_17011733226570_trans_NvBQzQNjv4BqGQR7TMwEvfaYG0TH6J-Ry06Usa8KZCn8ZaDf3fwLU6E.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Rear", - "guid": "ca142d77-2ceb-3f8a-ac65-06e93abddc8d", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/go-beyond", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/farming", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dairy-industry", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/therapy", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T13:00:00.000Z" - }, - { - "creator": "Will Bolton", - "title": "Killers wanted to know if Brianna Ghey would scream like a girl, court hears", - "link": "https://www.telegraph.co.uk/news/2023/11/27/brianna-ghey-murder-trial-trans-teenager-latest/", - "pubDate": "Tue, 28 Nov 2023 11:53:38 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/27/TELEMMGLPICT000358064270_17011145395970_trans_NvBQzQNjv4BqfO4ozwYUaochnYSIBpptlDbf1VVsdVt6rQF5x0Q0Qio.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Will Bolton", - "guid": "820eb3a7-74b9-3711-8e0d-fb43e1be5267", - "categories": [ - { - "_": "topics:things/murder", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/court-cases", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/cheshire", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/cheshire-constabulary", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/brianna-ghey", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T11:53:38.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Golden eagle\u2019s disappearance being treated as suspicious", - "link": "https://www.telegraph.co.uk/news/2023/11/28/merrick-golden-eagle-treated-suspicious-police-scotland/", - "pubDate": "Tue, 28 Nov 2023 10:06:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/28/TELEMMGLPICT000358079583_17011594317390_trans_NvBQzQNjv4BqFOgdDOZBSSpUpWf9Rnp5s6Aezwuvexs_ues-aCB_TCg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "guid": "20f7fb9f-0d36-3bac-bcd4-4249852134a8", - "categories": [ - { - "_": "topics:places/scotland", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/golden-eagle", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/eagles", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/birds", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/birds-of-prey", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/animals", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T10:06:30.000Z" - }, - { - "creator": "Mark Hix", - "title": "Roast turkey crown with thyme-stuffed legs recipe", - "link": "https://www.telegraph.co.uk/recipes/0/roast-turkey-crown-thyme-stuffed-legs-christmas-dinner/", - "pubDate": "Tue, 28 Nov 2023 10:03:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2021/11/22/CarolSachs_Telegraph_Hix_Christmas_DSCF0615_HiRes_trans_NvBQzQNjv4Bq1esb5GZ9cCPU4D75BzQPGvxt7nh5BNZRiXHx7igOTgc.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mark Hix", - "guid": "a4c39bcd-9e7f-3576-ad26-62dae03f8cfc", - "categories": [ - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/roast-dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-party-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/party-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/turkey-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "editors:mark-hix", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T10:03:12.000Z" - }, - { - "creator": "Calum Weill", - "title": "Telegraph Fantasy Football: Team of the Week Game Week 13", - "link": "https://www.telegraph.co.uk/fantasy-sports/fantasy-football/telegraph-fantasy-football-team-of-the-week/", - "pubDate": "Tue, 28 Nov 2023 09:30:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Fantasy-football/TOTW-GW13-23-24.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Calum Weill", - "guid": "7c5b26a7-dd3f-35c7-8766-f307c240efc2", - "categories": [ - { - "_": "commercial:fantasy-sports/fantasy-football", - "$": { - "domain": "" - } - }, - { - "_": "commercial:apple-news-include", - "$": { - "domain": "" - } - }, - { - "_": "commercial:fantasy-sports/fantasy-football/fantasy-football-selection-tips", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T09:30:00.000Z" - }, - { - "creator": "Tony Diver ", - "title": "Liz Truss calls for Reaganite leadership", - "link": "https://www.telegraph.co.uk/world-news/2023/11/28/liz-truss-republicans-ukraine-reagan-thatcher-leadership/", - "pubDate": "Tue, 28 Nov 2023 00:39:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000331895590_17011305189080_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tony Diver ", - "guid": "e43aca13-43b0-3312-995e-ae42c8bdfb8b", - "categories": [ - { - "_": "topics:people/elizabeth-truss", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/republicans", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/margaret-thatcher", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/us-politics", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/donald-trump", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-28T00:39:50.000Z" - }, - { - "creator": "Jim White", - "title": "Gary O\u2019Neil fumes as Wolves suffer Var drama again at Fulham", - "link": "https://www.telegraph.co.uk/football/2023/11/27/fulham-vs-wolves-result-var-injury-time-penalty-decision/", - "pubDate": "Mon, 27 Nov 2023 22:32:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/27/TELEMMGLPICT000358099165_17011293274940_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jim White", - "guid": "161df54f-6d85-3f34-bba7-35e7fc5f79d5", - "categories": [ - { - "_": "topics:organisations/fulham-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/wolverhampton-wanderers-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/var", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T22:32:40.000Z" - }, - { - "creator": "Abbie Cheeseman", - "title": "Three year old twins released by Hamas in latest hostage exchange", - "link": "https://www.telegraph.co.uk/world-news/2023/11/27/israel-hamas-palestine-ceasefire-hostages-latest-news-live/", - "pubDate": "Mon, 27 Nov 2023 22:00:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/27/TELEMMGLPICT000358094556_17011220820540_trans_NvBQzQNjv4BqLf6XVudQ0d-fF3pHUPFzENzToNs4KPGiwgfzbiiWmHA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abbie Cheeseman", - "guid": "abe19120-0a76-3d8c-ab72-62f9307362cc", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T22:00:24.000Z" - }, - { - "creator": "Joe Pinkstone", - "title": "Swine flu H1N2: What we know so far as first human case detected in UK", - "link": "https://www.telegraph.co.uk/news/2023/11/27/swine-flu-h1n2-what-is-it-causes-symptoms-how-dangerous/", - "pubDate": "Mon, 27 Nov 2023 21:54:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/27/TELEMMGLPICT000234087070_17011216174870_trans_NvBQzQNjv4BqY0XMnE4berkpvWhc-fw2CCqhhN_cpmLU5aSU4P3rJlg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joe Pinkstone", - "guid": "9e30198e-8c20-3ab7-af19-ffde13a317a1", - "categories": [ - { - "_": "topics:things/flu", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T21:54:44.000Z" - }, - { - "creator": "Catherine Lough", - "title": "David Walliams settles lawsuit with Britain's Got Talent producers Fremantle", - "link": "https://www.telegraph.co.uk/news/2023/11/27/david-walliams-settles-lawsuit-fremantle-britain-got-talent/", - "pubDate": "Mon, 27 Nov 2023 21:21:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/27/TELEMMGLPICT000337133468_17011090624310_trans_NvBQzQNjv4Bqek9vKm18v_rkIPH9w2GMNpPHkRvugymKLtqq96r_VP8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Catherine Lough", - "guid": "c4c031b8-9dcf-3bd2-983f-4a006f00c291", - "categories": [ - { - "_": "topics:things/britains-got-talent", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T21:21:46.000Z" - }, - { - "creator": "Lilia Sebouai", - "title": "\u2018I performed six amputations in one night\u2019: London doctor recalls war horrors after 43 days in Gaza", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/gaza-hospital-surgeon-ghassan-abu-sittah-child-amputations/", - "pubDate": "Mon, 27 Nov 2023 19:03:21 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/27/TELEMMGLPICT000358067748_17011107693990_trans_NvBQzQNjv4BqZ7P499NBrqUlQwtY1pe3j_19dqzR9BBP8ILk73-WPTs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lilia Sebouai", - "guid": "562a7258-af3e-3ee7-b228-f99490b634bb", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T19:03:21.000Z" - }, - { - "creator": "Chris Price", - "title": "Tesla sues Sweden in bid to avoid hit from strikes", - "link": "https://www.telegraph.co.uk/business/2023/11/27/ftse-100-markets-news-live-gold-price-interest-rates/", - "pubDate": "Mon, 27 Nov 2023 18:37:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/11/27/TELEMMGLPICT000357605121_17010960596610_trans_NvBQzQNjv4BqwMJYxftKZExwjop9hyNEmQEwTyzLMKRxDe4NUIzb66I.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "guid": "8a94324c-30f1-3734-ad2c-212b81403233", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T18:37:36.000Z" - }, - { - "creator": "Tom Ward", - "title": "Cascade of fireworks halts Boca Juniors match in Argentine Primera Division", - "link": "https://www.telegraph.co.uk/football/2023/11/27/boca-juniors-match-godoy-cruz-fireworks-argentina-primera/", - "pubDate": "Mon, 27 Nov 2023 18:32:49 GMT", - "dc:creator": "Tom Ward", - "guid": "8b8a348d-3c03-38b4-8905-e82e5875e01f", - "categories": [ - { - "_": "topics:organisations/argentina-football-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T18:32:49.000Z" - }, - { - "creator": "Alexa Phillips", - "title": "The beginner\u2019s guide to Isas: how to invest and save, tax-free", - "link": "https://www.telegraph.co.uk/money/investing/isas/isa-beginners-guide-cash-stocks-shares/", - "pubDate": "Mon, 27 Nov 2023 18:06:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/investing/2023/05/05/TELEMMGLPICT000334508366_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alexa Phillips", - "guid": "122034fd-bf55-3ae7-9869-62ab00949c61", - "categories": [ - { - "_": "topics:things/isas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/banks-and-finance", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/share-prices", - "$": { - "domain": "" - } - }, - { - "_": "structure:money", - "$": { - "domain": "" - } - }, - { - "_": "structure:money/money-hub", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-superguide", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:money/tax", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "migration:moneyhub", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T18:06:46.000Z" - }, - { - "creator": "Ben Farmer", - "title": "Fears grow over mystery illness that has killed at least 14 people in Uganda", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/mystery-disease-kills-14-people-in-uganda-africa/", - "pubDate": "Mon, 27 Nov 2023 18:00:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/27/TELEMMGLPICT000310495417_17011064470170_trans_NvBQzQNjv4BqAblP_nApRBgTXVGqwDG3Fv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Farmer", - "guid": "5ac4fe3f-2906-34c9-981c-e6cade116078", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/uganda", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/africa", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T18:00:17.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Monday evening news briefing: Growth outlook is \u2018worst I've ever seen\u2019, says Bailey", - "link": "https://www.telegraph.co.uk/news/2023/11/27/monday-evening-news-briefing-growth-outlook-worst-ever-seen/", - "pubDate": "Mon, 27 Nov 2023 17:44:47 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "guid": "8e3c794d-5459-3115-b545-dddf182abeca", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andrew-bailey", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T17:44:47.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The 14 best pillows of 2023, tried and tested long term at home", - "link": "https://www.telegraph.co.uk/recommended/home/best-pillows-luxurious-nights-sleep/", - "pubDate": "Mon, 27 Nov 2023 16:27:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/20/TELEMMGLPICT000322700557_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "guid": "1c44f93a-7470-3c3b-8eef-36edc23f4651", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/body", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T16:27:53.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best electric toothbrushes of 2023 tried and tested, including Philips, Oral B and Spotlight", - "link": "https://www.telegraph.co.uk/recommended/tech/best-electric-toothbrushes/", - "pubDate": "Mon, 27 Nov 2023 16:16:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/18/TELEMMGLPICT000322429860_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "guid": "ded7f2ed-d04a-3dfc-acc2-46f373098113", - "categories": [ - { - "_": "topics:things/dental-health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tooth-decay", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/more-telegraph-recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T16:16:12.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "Best cordless vacuum cleaners of 2023, from Dyson to Shark, Vax and Henry", - "link": "https://www.telegraph.co.uk/recommended/home/best-cordless-vacuums/", - "pubDate": "Mon, 27 Nov 2023 16:02:56 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/11/15/TELEMMGLPICT000316297063_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "guid": "ae9bcac5-af10-3911-a2fc-d38de82b7004", - "categories": [ - { - "_": "topics:organisations/dyson", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vacuum-cleaners", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/amazon", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/john-lewis", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/black-friday", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T16:02:56.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Tommy Robinson charged after attending anti-Semitism march", - "link": "https://www.telegraph.co.uk/news/2023/11/27/tommy-robinson-charged-after-anti-semitism-march-appearance/", - "pubDate": "Mon, 27 Nov 2023 16:00:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/27/TELEMMGLPICT000357958887_17011025589100_trans_NvBQzQNjv4Bq_NJ62v2ZFDvrR1Z2dUS5zOil7a1KV2STY3xRqqFt_No.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "guid": "6df744b3-c345-3575-97cf-339296fd2d2c", - "categories": [ - { - "_": "topics:places/london", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/tommy-robinson", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T16:00:41.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: All options under review to curb legal migration, says Jenrick", - "link": "https://www.telegraph.co.uk/politics/2023/11/27/rishi-sunak-latest-news-general-election-james-cleverly/", - "pubDate": "Mon, 27 Nov 2023 16:00:25 GMT", - "dc:creator": "Jack Maidment", - "guid": "afd96d86-49ee-3358-90f8-a1f1e8d83d5f", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T16:00:25.000Z" - }, - { - "creator": "Madeleine Howell", - "title": "The best heated clothes airers to save money and energy when drying laundry this winter", - "link": "https://www.telegraph.co.uk/recommended/home/best-heated-clothes-airer/", - "pubDate": "Mon, 27 Nov 2023 15:55:09 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/20/TELEMMGLPICT000329652304_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Madeleine Howell", - "guid": "4eb698a1-9932-36db-8fb5-9584c227b2c3", - "categories": [ - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/clothes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-save-money", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T15:55:09.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Horrendous Winter weather strikes the region", - "link": "https://www.telegraph.co.uk/world-news/2023/11/27/horrendous-winter-weather-strikes-the-region/", - "pubDate": "Mon, 27 Nov 2023 15:54:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/27/TELEMMGLPICT000358060608_17011003933250_trans_NvBQzQNjv4BqIbTDq2tM-BCxND-etb_WlK_JuvlXy3Xq7MATOpSMYWc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "guid": "a3922e70-7ed9-3ba5-8671-1cd66b9ad86f", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T15:54:55.000Z" - }, - { - "creator": "Gavin Newsham", - "title": "The 10 best dehumidifiers of 2023, tried and tested to prevent mould and damp", - "link": "https://www.telegraph.co.uk/recommended/home/best-dehumidifiers/", - "pubDate": "Mon, 27 Nov 2023 15:42:32 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/09/23/TELEMMGLPICT000310359721_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Gavin Newsham", - "guid": "21818c90-2d60-3694-bc05-5482da2d0072", - "categories": [ - { - "_": "topics:things/allergies", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T15:42:32.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best beauty advent calendars of 2023, including 17 that haven't yet sold out", - "link": "https://www.telegraph.co.uk/beauty/make-up/best-beauty-advent-calendar/", - "pubDate": "Mon, 27 Nov 2023 15:10:52 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/beauty/2023/08/25/TELEMMGLPICT000346747147_16929575467850_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "guid": "9c8e4bbf-0f27-3e10-a809-9cb23e801643", - "categories": [ - { - "_": "topics:things/advent-calendars", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/make-up", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/skincare", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty/make-up", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T15:10:52.000Z" - }, - { - "creator": "Debbie McQuoid", - "title": "How to help when your child can\u2019t make friends", - "link": "https://www.telegraph.co.uk/christmas/2023/11/27/eight-ways-help-child-make-friends/", - "pubDate": "Mon, 27 Nov 2023 13:49:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/27/TELEMMGLPICT000354573300_17010847826380_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Debbie McQuoid", - "guid": "8334cb59-d19d-33b9-9ada-11ed3b29c338", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/go-beyond", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/parenthood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/children", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/friendship", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/childrens-health", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T13:49:40.000Z" - }, - { - "creator": "Fleur Britten", - "title": "\u2018I helped decorate the Savoy for Christmas \u2013 here are the insider tips I learnt\u2019", - "link": "https://www.telegraph.co.uk/christmas/2023/11/27/i-decorated-the-savoy-christmas-insider-tips/", - "pubDate": "Mon, 27 Nov 2023 13:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/24/TELEMMGLPICT000357256551_17008478246020_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Fleur Britten", - "guid": "dad92775-fd3d-3d03-a7a5-31c07546a0f2", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-decorations", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-27T13:00:00.000Z" - }, - { - "creator": "Dominic Penna", - "title": "Politics latest news: We're right to spend \u00a3290m on Rwanda plan, insists migration minister", - "link": "https://www.telegraph.co.uk/politics/2023/12/08/politics-latest-news-rishi-sunak-tories-rwanda-immigration/", - "pubDate": "Fri, 08 Dec 2023 09:30:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/08/TELEMMGLPICT000359247739_17019981583370_trans_NvBQzQNjv4Bqek9vKm18v_rkIPH9w2GMNpPHkRvugymKLtqq96r_VP8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Penna", - "content": "The \u00a3290 million that the Government plans to spend on the Rwanda scheme is \u201cthe right investment\u201d, one of Rishi Sunak\u2019s new immigration ministers has insisted.

]]>", - "contentSnippet": "", - "guid": "802887ce-e5be-344c-b411-1102bb35da65", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-08T09:30:36.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Israel battling 700 Hamas fighters in Shujaiya - follow latest", - "link": "https://www.telegraph.co.uk/world-news/2023/12/08/israel-hamas-war-latest-news-updates-gaza-day-63-live/", - "pubDate": "Fri, 08 Dec 2023 09:22:06 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/08/TELEMMGLPICT000359239159_17020245368570_trans_NvBQzQNjv4Bqp3bfLdJNMSwegfRYwhJWmOT1JygM6oG9OUAd4hX6XqQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "content": "Israel is facing growing resistance from Hamas fighters in Shujaiya. 

]]>", - "contentSnippet": "", - "guid": "efca0184-92f9-3d6d-9659-fe607cfd9786", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-08T09:22:06.000Z" - }, - { - "creator": "Michael Murphy", - "title": "Blocking Ukraine aid a 'Christmas present' for Putin, Lord Cameron tells US - follow live", - "link": "https://www.telegraph.co.uk/world-news/2023/12/08/ukraine-russia-war-latest-news-putin-us-aid-live/", - "pubDate": "Fri, 08 Dec 2023 09:16:23 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/08/TELEMMGLPICT000359268855_17019988094390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwekapBZ1c_8650LP5YH00zA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Michael Murphy", - "content": "David Cameron, the Foreign Secretary, on Thursday urged US lawmakers to approve fresh aid for Ukraine to help fund Kyiv\u2019s battle against Russian forces.

]]>", - "contentSnippet": "", - "guid": "d4498c82-8ebd-3743-a9dd-2562034a94a7", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-08T09:16:23.000Z" - }, - { - "creator": "Luke Edwards", - "title": "Everton punish Kieran Trippier howlers to climb out of drop zone", - "link": "https://www.telegraph.co.uk/football/2023/12/07/everton-vs-newcastle-live-score-premier-league/", - "pubDate": "Fri, 08 Dec 2023 08:30:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/07/TELEMMGLPICT000359262662_17019852951170_trans_NvBQzQNjv4Bql3LHfhUdDxmC6Xx98mlgJiOwwQH1iiegFd5INOxSjBk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Luke Edwards", - "content": "If you did not already believe Everton were good enough to get out of relegation trouble, this performance and result surely proves it.

]]>", - "contentSnippet": "", - "guid": "946df15d-0e40-351b-9321-20914244e20d", - "categories": [ - { - "_": "topics:organisations/everton-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/newcastle-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-08T08:30:15.000Z" - }, - { - "creator": "Robbie Collin", - "title": "Leave the World Behind: Julia Roberts has her best role in years in this enthralling thriller", - "link": "https://www.telegraph.co.uk/films/0/leave-the-world-behind-review-julia-roberts-ethan-hawke/", - "pubDate": "Fri, 08 Dec 2023 08:03:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2023/11/23/TELEMMGLPICT000357406825_17007482808890_trans_NvBQzQNjv4Bqdw-cK3ajvcoXavMZovuTFMkGnw7cUULUwT3K78zuxaA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Robbie Collin", - "content": "", - "contentSnippet": "", - "guid": "55727ef8-4532-3b55-97d1-1e3d1c19cb0e", - "categories": [ - { - "_": "topics:people/julia-roberts", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/netflix", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/thriller-movies", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "editors:robbie-collin", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-08T08:03:02.000Z" - }, - { - "creator": "Dominic Nicholls", - "title": "Will Russia-backed Venezuela start a war in South America? | Defence in Depth", - "link": "https://www.telegraph.co.uk/world-news/2023/12/08/venezuela-guyana-russia-south-america-usa-geopolitics-war/", - "pubDate": "Fri, 08 Dec 2023 08:00:00 GMT", - "dc:creator": "Dominic Nicholls", - "content": "", - "contentSnippet": "", - "guid": "cd4af133-1a22-3ea0-b7c7-55152aea3f29", - "categories": [ - { - "_": "topics:things/defence-in-depth", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/guyana", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/venezuela", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/usa", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/south-america", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-08T08:00:00.000Z" - }, - { - "creator": "Chris Price", - "title": "Oil price heading for longest downturn since 2018 in fuel boost - latest updates", - "link": "https://www.telegraph.co.uk/business/2023/12/08/ftse-100-markets-news-latest-oil-prices-us-employment-live/", - "pubDate": "Fri, 08 Dec 2023 06:59:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/08/TELEMMGLPICT000287210182_17020197937930_trans_NvBQzQNjv4BqwMJYxftKZExwjop9hyNEmQEwTyzLMKRxDe4NUIzb66I.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "The price of oil is on track for its worst downturn in five years in a potential boost for drivers.

]]>", - "contentSnippet": "", - "guid": "4370fd45-5407-3d4d-9264-d23d3eb17852", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-08T06:59:19.000Z" - }, - { - "creator": "Matt Law", - "title": "Son Heung-min slams \u2018soft\u2019 Spurs for defeat to West Ham", - "link": "https://www.telegraph.co.uk/football/2023/12/07/heung-min-son-blames-soft-spurs-for-defeat-to-west-ham/", - "pubDate": "Fri, 08 Dec 2023 06:30:49 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/07/TELEMMGLPICT000359265413_17019910527360_trans_NvBQzQNjv4Bq-GPP7dpMg0Or0h28QgpC4lEjQHUO__-8zbNeNKW41UE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Matt Law", - "content": "", - "contentSnippet": "", - "guid": "415e9094-07d4-3b7b-89ef-f4de84fefde1", - "categories": [ - { - "_": "topics:organisations/tottenham-hotspur-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/west-ham-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/ange-postecoglou", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/son-heung-min", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-08T06:30:49.000Z" - }, - { - "creator": "Oliver Brown", - "title": "Suella Braverman among 70 MPs demanding FA ban on transgender players", - "link": "https://www.telegraph.co.uk/football/2023/12/08/mps-demand-fa-ban-transgender-footballers/", - "pubDate": "Fri, 08 Dec 2023 00:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/07/TELEMMGLPICT000351798604_17019836632560_trans_NvBQzQNjv4BqrfzZskasdHxLRTTh7do0m47e1lkwS0JKUaHflh0HnsI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Oliver Brown", - "content": "", - "contentSnippet": "", - "guid": "fb0ffff0-e725-3505-961d-f4278057277a", - "categories": [ - { - "_": "topics:people/suella-braverman", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Transgender", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-football", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-08T00:00:00.000Z" - }, - { - "creator": "Nataliya Vasilyeva", - "title": "Israel \u2018must behave differently\u2019 in southern Gaza, says Cameron", - "link": "https://www.telegraph.co.uk/world-news/2023/12/07/israel-hamas-palestine-news-latest-idf-raid-hq-yahya-sinwar/", - "pubDate": "Thu, 07 Dec 2023 23:50:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/07/TELEMMGLPICT000359113255_17019383930250_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Nataliya Vasilyeva", - "content": "Israel must \u201cbehave differently\u201d in the south of Gaza to how it did in its full-frontal campaign in the north, Lord Cameron warned on Thursday.

]]>", - "contentSnippet": "its full-frontal campaign in the north, Lord Cameron warned on Thursday.\n]]>", - "guid": "a07adf25-706d-3349-b5bc-7e3510adb577", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T23:50:04.000Z" - }, - { - "creator": "Sam Wallace", - "title": "Horrific Destiny Udogie back-pass gifts West Ham their winner at Spurs", - "link": "https://www.telegraph.co.uk/football/2023/12/07/tottenham-vs-west-ham-live-score-premier-league/", - "pubDate": "Thu, 07 Dec 2023 23:42:39 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/07/TELEMMGLPICT000359264500_17019872091120_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf4yt3BU7yimAYJ8YD28sfCE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Wallace", - "content": "The Ange Postecoglou revolution was always destined to be a wild ride, although the fifth consecutive lead thrown away in the Premier League has come to suggest a pattern of surrender that is threatening to define these fragile early months.

]]>", - "contentSnippet": "", - "guid": "a0e3480e-1864-385a-90f6-c47082d576cd", - "categories": [ - { - "_": "topics:organisations/tottenham-hotspur-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/west-ham-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T23:42:39.000Z" - }, - { - "creator": "Chris Price", - "title": "Tesla loses legal challenge against Swedish strikes", - "link": "https://www.telegraph.co.uk/business/2023/12/07/ftse-100-markets-latest-news-uk-house-price-index-halifax/", - "pubDate": "Thu, 07 Dec 2023 18:42:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/07/TELEMMGLPICT000359148899_17019609195930_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "Tesla has lost a legal battle with Sweden\u2019s postal service as its fight with Scandinavian trade unions escalates.

]]>", - "contentSnippet": "", - "guid": "8e7924ff-01be-382c-b49e-38859a59c98d", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T18:42:14.000Z" - }, - { - "creator": "Fleur Britten", - "title": "What to do with a less-than-perfect Christmas tree", - "link": "https://www.telegraph.co.uk/interiors/home/how-to-improve-bare-christmas-tree-trafalgar-square/", - "pubDate": "Thu, 07 Dec 2023 18:07:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/interiors/2023/12/07/TELEMMGLPICT000359241285_17019718770830_trans_NvBQzQNjv4BqgCXocDQF5kP7s3jSjli3eCH0-jRUT4rHK8EgtaGoQwQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Fleur Britten", - "content": "", - "contentSnippet": "", - "guid": "39bd3cd2-ed2c-3e3d-9c12-d33b0005795c", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-trees", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-decorations", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/trafalgar-square", - "$": { - "domain": "" - } - }, - { - "_": "structure:interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T18:07:53.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Thursday evening news briefing: Switching PM now would be 'insanity', Tory chairman says", - "link": "https://www.telegraph.co.uk/news/2023/12/07/thursday-evening-news-briefing-switching-pm-now-insanity/", - "pubDate": "Thu, 07 Dec 2023 17:37:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "8e35ed73-655d-31b2-ac6d-03b8b0bb20ef", - "categories": [ - { - "_": "topics:places/rwanda", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bbc", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T17:37:24.000Z" - }, - { - "creator": "Jamie Bullen", - "title": "Covid Inquiry: Emotional Boris Johnson insists 'I do care' in defence of premiership", - "link": "https://www.telegraph.co.uk/news/2023/12/07/covid-inquiry-latest-news-boris-johnson-evidence-live-day-2/", - "pubDate": "Thu, 07 Dec 2023 16:55:16 GMT", - "dc:creator": "Jamie Bullen", - "content": "Boris Johnson has launched an emotional defence of his leadership during the Covid pandemic, saying it was \u201csimply not right\u201d to say he didn\u2019t care about people\u2019s suffering.

]]>", - "contentSnippet": "", - "guid": "184d1cb6-72f0-393b-93f9-8fe9f44c702a", - "categories": [ - { - "_": "topics:people/boris-johnson", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/covid-inquiry", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T16:55:16.000Z" - }, - { - "creator": "Rozina Sabur", - "title": "Fourth Republican primary debate: Haley tells rivals 'you're just jealous' as she rises in polls", - "link": "https://www.telegraph.co.uk/us/politics/2023/12/07/fourth-gop-debate-2023-live-alabama-trump-desantis-haley/", - "pubDate": "Thu, 07 Dec 2023 16:51:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/politics/2023/12/07/TELEMMGLPICT000359167036_17019373090310_trans_NvBQzQNjv4BqDPfUJJJzp2bObtoYsJdDTv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rozina Sabur", - "content": "Nikki Haley said her rivals were jealous of Democrat donations to her campaign as polls show she had risen to become Donald Trump\u2019s closest rival.

]]>", - "contentSnippet": "", - "guid": "296d67fd-fc86-3934-bbaa-31911a1fb008", - "categories": [ - { - "_": "topics:organisations/republicans", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/ron-desantis", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/nikki-haley", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vivek-ramaswamy", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/donald-trump", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/alabama", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T16:51:41.000Z" - }, - { - "creator": "Samuel Lovett", - "title": "World Bank urged to review funding of hospital chain linked to \u2018cash for kidneys\u2019 racket", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/world-bank-review-funding-of-hospital-chain-kidney-donors/", - "pubDate": "Thu, 07 Dec 2023 16:43:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/07/TELEMMGLPICT000358042846_17019543728170_trans_NvBQzQNjv4BqAblP_nApRBgTXVGqwDG3FsMRoe_y3J6QXlaIdPP2zuo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Samuel Lovett", - "content": "", - "contentSnippet": "", - "guid": "f2d37513-81df-34f5-8c2a-72a40d264f83", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/human-trafficking", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/myanmar", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/india", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/organ-donation", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T16:43:55.000Z" - }, - { - "creator": "Dominic Nicholls", - "title": "Ukraine: The Latest - Russia attacks port & live from the UAE as Putin visits Middle-Eastern ally", - "link": "https://www.telegraph.co.uk/world-news/2023/12/07/russia-attacks-port-live-from-the-uae-as-putin-visits/", - "pubDate": "Thu, 07 Dec 2023 16:25:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/07/TELEMMGLPICT000359229449_17019660571260_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Nicholls", - "content": "", - "contentSnippet": "", - "guid": "648b5a14-88ac-3b19-8d60-dac58b1d4570", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T16:25:24.000Z" - }, - { - "creator": "Dominic Penna", - "title": "Rishi Sunak can no longer claim to represent stability, says George Osborne", - "link": "https://www.telegraph.co.uk/politics/2023/12/07/rishi-sunak-latest-news-tories-rwanda-jenrick-resignation/", - "pubDate": "Thu, 07 Dec 2023 16:02:16 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/07/TELEMMGLPICT000359213957_17019629519450_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Penna", - "content": "Rishi Sunak can no longer claim he has \u201cstabilised things\u201d, George Osborne has warned amid growing disquiet over his Rwanda plan.

]]>", - "contentSnippet": "", - "guid": "6f38f96a-c4c7-3d4c-b5e7-218709915abd", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/immigration", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/migration", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T16:02:16.000Z" - }, - { - "creator": "Rosa Silverman", - "title": "If in doubt, blame Royal Mail: the ultimate guide to Christmas card etiquette", - "link": "https://www.telegraph.co.uk/christmas/2023/12/07/christmas-card-etiquette-royal-mail-send-date/", - "pubDate": "Thu, 07 Dec 2023 16:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/07/TELEMMGLPICT000359218430_17019538815530_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rosa Silverman", - "content": "", - "contentSnippet": "", - "guid": "f2a70901-e397-3dd0-bf91-486bfc274e58", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-cards", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T16:00:00.000Z" - }, - { - "creator": "Michael Murphy", - "title": "Russian attack causes toxic gas leak at Ukraine factory", - "link": "https://www.telegraph.co.uk/world-news/2023/12/07/ukraine-russia-war-news-live-sbu-assasinate-illya-kyva-puti/", - "pubDate": "Thu, 07 Dec 2023 15:21:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/07/TELEMMGLPICT000343970463_17019528821320_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Michael Murphy", - "content": "A Russian attack in Ukraine\u2019s southern city of Kherson has caused an ammonia leak at a factory, according to local authorities.

]]>", - "contentSnippet": "", - "guid": "ef7ecd13-1222-3319-b20d-99ef43c41cba", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T15:21:12.000Z" - }, - { - "creator": "Rozina Sabur", - "title": "All the Republican and Democrat candidates in the 2024 US election", - "link": "https://www.telegraph.co.uk/world-news/0/us-republican-democrat-candidates-running-2024-election/", - "pubDate": "Thu, 07 Dec 2023 15:16:39 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/02/02/TELEMMGLPICT000324052437_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rozina Sabur", - "content": "", - "contentSnippet": "", - "guid": "2e31d700-bc5d-3ce1-ae8c-afd28bb2375e", - "categories": [ - { - "_": "topics:places/usa", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/republicans", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/us-politics", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/donald-trump", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/nikki-haley", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/ron-desantis", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T15:16:39.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best beauty gifts for Christmas, recommended by a beauty editor", - "link": "https://www.telegraph.co.uk/beauty/make-up/best-christmas-beauty-gifts/", - "pubDate": "Thu, 07 Dec 2023 14:05:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/beauty/2023/12/06/TELEMMGLPICT000359088577_17018781532390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "fefbc6fd-1312-3573-b1fc-526b78f241c9", - "categories": [ - { - "_": "topics:things/beauty-guide", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/make-up", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/skincare", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/hair", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty/make-up", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T14:05:14.000Z" - }, - { - "creator": "Uche Amako", - "title": "Australian Open 2024: When is it, how to watch in UK and will Emma Raducanu play?", - "link": "https://www.telegraph.co.uk/tennis/2023/12/07/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", - "pubDate": "Thu, 07 Dec 2023 13:50:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2023/10/12/TELEMMGLPICT000352780667_16971158042650_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Uche Amako", - "content": "", - "contentSnippet": "", - "guid": "dd51d5bb-7565-35e6-b283-424e1cbd459a", - "categories": [ - { - "_": "topics:people/novak-djokovic", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/carlos-alcaraz", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/us-open-tennis", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andy-murray", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T13:50:14.000Z" - }, - { - "creator": "Ben Rumsby", - "title": "Euro 2024: When and where is it taking place and who are in England\u2019s group?", - "link": "https://www.telegraph.co.uk/football/0/euro-2024-germany-when-where-england-scotland-groups/", - "pubDate": "Thu, 07 Dec 2023 11:18:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/03/TELEMMGLPICT000358765867_17016260630620_trans_NvBQzQNjv4BqFOgdDOZBSSpUpWf9Rnp5s5gojZYlP8f0i9h2tPqCNsM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Rumsby", - "content": "", - "contentSnippet": "", - "guid": "c9a877b1-3e09-3441-8b9a-078ce192ee42", - "categories": [ - { - "_": "topics:events/euro-2024", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-football-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/scotland-football-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/wales-football-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T11:18:40.000Z" - }, - { - "creator": "Sarah Newey", - "title": "Inside the world\u2019s largest rabies control drive \u2013 set up by British retirees", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/inside-worlds-largest-rabies-control-drive-british-retirees/", - "pubDate": "Thu, 07 Dec 2023 10:59:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000359053497_17018788648290_trans_NvBQzQNjv4BqjJeHvIwLm2xPr27m7LF8mUYMapKPjdhyLnv9ax6_too.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "content": "", - "contentSnippet": "", - "guid": "3a812cff-17dc-3c24-9c9d-4555c2a0ce9e", - "categories": [ - { - "_": "topics:places/thailand", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dogs", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/neglected-tropical-diseases", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T10:59:25.000Z" - }, - { - "creator": "Tim Wigmore", - "title": "England vs West Indies, ODI and T20 tour: Full schedule and fixtures", - "link": "https://www.telegraph.co.uk/cricket/0/england-vs-west-indies-odi-t20-tour-full-fixtures-schedule/", - "pubDate": "Thu, 07 Dec 2023 10:24:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/07/TELEMMGLPICT000359157402_17019438740660_trans_NvBQzQNjv4BqwOBTQkzhgerMbLhahgNyhF5NUcTKNHKqy85KLqtvPLE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Wigmore", - "content": "", - "contentSnippet": "", - "guid": "cb20d7b2-e90a-337f-bd46-7024205a832e", - "categories": [ - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/west-indies-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T10:24:51.000Z" - }, - { - "creator": "Robbie Collin", - "title": "Theater Camp, review: this joyous mockumentary is the funniest film in years", - "link": "https://www.telegraph.co.uk/films/0/theater-camp-review-funniest-comedy-in-years/", - "pubDate": "Thu, 07 Dec 2023 10:16:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2023/08/23/TELEMMGLPICT000346484836_16927927351860_trans_NvBQzQNjv4Bq7U6quo0FusjSszcGmlCCOHGTJFJS74MYhNY6w3GNbO8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Robbie Collin", - "content": "", - "contentSnippet": "", - "guid": "6c356b5b-805b-3338-bd70-0cd8af83b60d", - "categories": [ - { - "_": "topics:things/comedy-movies", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/musicals", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/disney-plus", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:film/film-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "editors:robbie-collin", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T10:16:41.000Z" - }, - { - "creator": "Samuel Lovett", - "title": "Shimano bike parts \u2018made by modern slaves\u2019 sold to commuters", - "link": "https://www.telegraph.co.uk/global-health/climate-and-people/shimano-cycling-parts-made-by-modern-slaves-in-malaysia/", - "pubDate": "Thu, 07 Dec 2023 07:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000359113268_17018837120900_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Samuel Lovett", - "content": "", - "contentSnippet": "", - "guid": "bd76e62d-397d-33d0-8cb0-141171f75666", - "categories": [ - { - "_": "topics:things/road-cycling", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/malaysia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/nepal", - "$": { - "domain": "" - } - }, - { - "_": "structure:climate-and-people", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T07:00:00.000Z" - }, - { - "creator": "Tim Wigmore", - "title": "Jos Buttler\u2019s half-century gives England\u2019s new era lift off in win over West Indies", - "link": "https://www.telegraph.co.uk/cricket/2023/12/06/west-indies-vs-england-live-second-odi-score-latest-updates/", - "pubDate": "Thu, 07 Dec 2023 00:11:33 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/06/TELEMMGLPICT000359156157_17019044643610_trans_NvBQzQNjv4Bq9PIG5Nf-pok86REDZVBOY1ZB6ZlIZLJbOUKG6YRq9eg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Wigmore", - "content": "Jos Buttler launched Oshane Thomas down the ground, and then thrashed the next ball through midwicket for four to level the scores. Finally, here was a little of England\u2019s misplaced swagger.

]]>", - "contentSnippet": "", - "guid": "c0db7a0f-6ea0-3d04-9086-f007493c803b", - "categories": [ - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/west-indies-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-07T00:11:33.000Z" - }, - { - "creator": "James Ducker", - "title": "Erik ten Hag\u2019s bravest call yet rewarded with crucial victory over Chelsea", - "link": "https://www.telegraph.co.uk/football/2023/12/06/man-utd-vs-chelsea-live-score-updates-premier-league/", - "pubDate": "Wed, 06 Dec 2023 23:58:09 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359151507_17019008538980_trans_NvBQzQNjv4Bq3JyIgzC4lYYvg_3BgkFYPdDOYUIBKwcAsg37H0ToOxQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "James Ducker", - "content": "This was a night when one academy graduate was dropped but two others stood up to deliver a huge win for their manager. Erik ten Hag\u2019s brave decision to omit Marcus Rashford was rewarded with a performance of bold attacking intent from Manchester United and two star turns from Scott McTominay and Alejandro Garnacho.

]]>", - "contentSnippet": "", - "guid": "9029008e-58b0-37b7-99d8-f0358f74f44c", - "categories": [ - { - "_": "topics:organisations/manchester-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/chelsea-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/erik-ten-hag", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/mauricio-pochettino", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T23:58:09.000Z" - }, - { - "creator": "Jim White", - "title": "Superb Aston Villa took the fight to Man City \u2013 and utterly dominated", - "link": "https://www.telegraph.co.uk/football/2023/12/06/aston-villa-vs-manchester-city-unai-emery-rodri-missing/", - "pubDate": "Wed, 06 Dec 2023 23:48:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359148789_17019011004480_trans_NvBQzQNjv4BqIfUuG_JpxhApNCDqGtg_Au2YvCax7SCx68LTENTVmSg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jim White", - "content": "", - "contentSnippet": "", - "guid": "a221318d-31f8-343b-acf8-5b076872f8f1", - "categories": [ - { - "_": "topics:organisations/aston-villa-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/manchester-city-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/villa-park", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T23:48:46.000Z" - }, - { - "creator": "Nick Szczepanik", - "title": "Jack Hinshelwood announces himself as Brighton\u2019s latest academy star in win over Brentford", - "link": "https://www.telegraph.co.uk/football/2023/12/06/brighton-hove-albion-vs-brentford-jack-hinshelwood/", - "pubDate": "Wed, 06 Dec 2023 23:29:09 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359139787_17019004239650_trans_NvBQzQNjv4BqVUptBHHx0SkMPNyDu1INX4CwmzOYgo-fpxHlGNXp1hY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Nick Szczepanik", - "content": "", - "contentSnippet": "", - "guid": "fc5e3eb2-c20f-36f8-b548-c52400eb3104", - "categories": [ - { - "_": "topics:organisations/brighton-and-hove-albion-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/brentford-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T23:29:09.000Z" - }, - { - "creator": "John Aizlewood", - "title": "Steve Cooper on thin ice as Nottingham Forest owner storms out of 5-0 defeat", - "link": "https://www.telegraph.co.uk/football/2023/12/06/fulham-vs-nottingham-forest-steve-cooper-fan-support/", - "pubDate": "Wed, 06 Dec 2023 23:22:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359145427_17018986988420_trans_NvBQzQNjv4BqFe6QPTx-FvOrqrz8zF3FqvNpc9t_6yQ2bw0E0DWIoME.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "John Aizlewood", - "content": "", - "contentSnippet": "", - "guid": "9b00c5f3-f5fc-3c89-b631-d8b4c0f8ea85", - "categories": [ - { - "_": "topics:organisations/fulham-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/nottingham-forest-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/craven-cottage", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T23:22:41.000Z" - }, - { - "creator": "Mike McGrath", - "title": "Jurgen Klopp rows with \u2018ignorant\u2019 TV presenter after win at Sheffield United", - "link": "https://www.telegraph.co.uk/football/2023/12/06/sheff-utd-vs-liverpool-live-score-premier-league/", - "pubDate": "Wed, 06 Dec 2023 23:00:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359143395_17019033999490_trans_NvBQzQNjv4BqblfQEZyU_QRdrEcU-fy3zJAGOCjDAZw3LVPamifXETI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mike McGrath", - "content": "J\u00fcrgen Klopp was involved in an incredible television bust-up after this victory, accusing a presenter of being \u201cignorant\u201d after a joke was made about Liverpool playing at Saturday lunchtime this weekend. His team had just ensured there was no fairy-tale return for Chris Wilder at Sheffield United.  

]]>", - "contentSnippet": "", - "guid": "7a4d539a-828c-3574-9e61-268fd5b5786b", - "categories": [ - { - "_": "topics:organisations/sheffield-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/liverpool-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/premier-league-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:football/football-live-blog", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T23:00:41.000Z" - }, - { - "creator": "Diana Henry", - "title": "Adobo paste recipe", - "link": "https://www.telegraph.co.uk/recipes/0/adobo-paste-recipe/", - "pubDate": "Wed, 06 Dec 2023 22:32:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/06/TELEMMGLPICT000332404496_17019018573910_trans_NvBQzQNjv4BqOW9TGG0n5r3Z_LfXm_n-PdjA2OnYH7QCps9yitwRh9A.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "d14b8aba-9c62-3f11-babd-e36e73821a32", - "categories": [ - { - "_": "topics:things/chillies", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/spicy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sauce-chutney-condiment-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T22:32:19.000Z" - }, - { - "creator": "Ivan Speck", - "title": "Object thrown at Roy Hodgson as Selhurst Park turns sour after Bournemouth defeat", - "link": "https://www.telegraph.co.uk/football/2023/12/06/crystal-palace-vs-bournemouth/", - "pubDate": "Wed, 06 Dec 2023 21:49:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359152739_17019057222330_trans_NvBQzQNjv4BqAX4MG9WbmrLWMybTj7bo3-hYHO75Ra6hFopIFSHGYrQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ivan Speck", - "content": "", - "contentSnippet": "", - "guid": "297bcc8d-8b01-388d-b18a-7aa50de75187", - "categories": [ - { - "_": "topics:organisations/crystal-palace-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/afc-bournemouth", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/selhurst-park", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T21:49:43.000Z" - }, - { - "creator": "Siham Shamalakh", - "title": "Battle Lines: 'A nightmare I hope we can wake up from'", - "link": "https://www.telegraph.co.uk/world-news/2023/12/06/battle-lines-gaza-nightmare-wake-up/", - "pubDate": "Wed, 06 Dec 2023 19:13:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/06/TELEMMGLPICT000359115988_17018899203310_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Siham Shamalakh", - "content": "", - "contentSnippet": "", - "guid": "f282f8e1-d84c-3226-9e6c-9d5cc24d7a16", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/battle-lines", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T19:13:50.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Wednesday evening news briefing: Johnson fights back tears during Covid Inquiry", - "link": "https://www.telegraph.co.uk/news/2023/12/06/wednesday-evening-news-briefing-johnson-fights-back-tears/", - "pubDate": "Wed, 06 Dec 2023 17:41:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "dbd8bb46-8e1c-395c-a345-a31ed779a4ef", - "categories": [ - { - "_": "topics:people/boris-johnson", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/covid-inquiry", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/rwanda", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bbc", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T17:41:41.000Z" - }, - { - "creator": "Dominic Nicholls", - "title": "Ukraine: The Latest - Vladimir Putin's war against Russia: interview with Evgenia Kara-Murza", - "link": "https://www.telegraph.co.uk/world-news/2023/12/06/vladimir-putins-war-against-russia-interview-with-evgenia-k/", - "pubDate": "Wed, 06 Dec 2023 17:18:31 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/06/TELEMMGLPICT000358534467_17018830453870_trans_NvBQzQNjv4BqH8g0IxmZhOOFzRvM6k8ERpnDQzwgRmiqFHqV_gtIbpc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Nicholls", - "content": "", - "contentSnippet": "", - "guid": "ceb4261f-5c2d-379c-88ca-00e865efa678", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T17:18:31.000Z" - }, - { - "creator": "Charles Richardson", - "title": "Stuart Lancaster: 'I convinced Henry Arundell that Racing 92 would improve him'", - "link": "https://www.telegraph.co.uk/rugby-union/2023/12/06/stuart-lancaster-henry-arundell-racing-92/", - "pubDate": "Wed, 06 Dec 2023 17:04:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/12/06/TELEMMGLPICT000345943771_17018820518230_trans_NvBQzQNjv4BqwkeXLJnMKMBXoGlrFP6JQ9vKiN91tnf4XclTSJDx_OM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Richardson", - "content": "", - "contentSnippet": "", - "guid": "50bde452-e418-313c-9339-52d67de49ab9", - "categories": [ - { - "_": "topics:people/stuart-lancaster", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/racing-92", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/top-14", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T17:04:36.000Z" - }, - { - "creator": "Benedict Smith", - "title": "Politics latest news: Suella Braverman says Tories face electoral oblivion if they fail on Rwanda plan", - "link": "https://www.telegraph.co.uk/politics/2023/12/06/rishi-sunak-latest-news-tories-labour-starmer-live/", - "pubDate": "Wed, 06 Dec 2023 16:50:26 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/06/TELEMMGLPICT000359106989_17018812023820_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Benedict Smith", - "content": "Suella Braverman said the Tories face \u201celectoral oblivion\u201d if they fail to implement their Rwanda plan.

The former home secretary, making a resignation statement in the Commons, said Rishi Sunak will lead his party to a disastrous defeat if he introduces emergency legislation on Rwanda which is \u201cdestined to fail\u201d.

She revealed she had told the Prime Minister he should scrap the bill and replace it with more robust legislation excluding asylum claims from international and human rights laws. 

Ms Braverman told MPs: \u201cIt is now or never. The Conservative Party faces electoral oblivion in a matter of months if we introduce yet another Bill destined to fail. 

\u201cDo we fight for sovereignty or let our party die? I refuse to sit by and allow the trust that millions of people have put in us be discarded like an inconvenient detail.\u201d

]]>", - "contentSnippet": "The former home secretary, making a resignation statement in the Commons, said Rishi Sunak will lead his party to a disastrous defeat if he introduces emergency legislation on Rwanda which is \u201cdestined to fail\u201d.\nShe revealed she had told the Prime Minister he should scrap the bill and replace it with more robust legislation excluding asylum claims from international and human rights laws.\u00a0\nMs Braverman told MPs: \u201cIt is now or never. The Conservative Party faces electoral oblivion in a matter of months if we introduce yet another Bill destined to fail.\u00a0\n\u201cDo we fight for sovereignty or let our party die? I refuse to sit by and allow the trust that millions of people have put in us be discarded like an inconvenient detail.\u201d\n]]>", - "guid": "01f81162-f77d-355b-98d5-327a787f5aa7", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T16:50:26.000Z" - }, - { - "creator": "Verity Bowman", - "title": "Health hazard looms as billions of flies engulf one of Sudan\u2019s biggest cities", - "link": "https://www.telegraph.co.uk/global-health/climate-and-people/fly-infestation-port-sudan-city-plague-africa-insects/", - "pubDate": "Wed, 06 Dec 2023 16:34:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000358976134_17018792130950_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Verity Bowman", - "content": "", - "contentSnippet": "", - "guid": "dc44ac75-0098-3438-acc5-74b8148ad986", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/flies", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pests", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/viruses", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/bacteria", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/sudan", - "$": { - "domain": "" - } - }, - { - "_": "structure:climate-and-people", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T16:34:10.000Z" - }, - { - "creator": "Diana Henry", - "title": "Kamut, chickpea and aubergine salad with saffron yogurt recipe", - "link": "https://www.telegraph.co.uk/recipes/0/kamut-chickpea-aubergine-salad-saffron-yogurt-recipe/", - "pubDate": "Wed, 06 Dec 2023 16:29:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/06/TELEMMGLPICT000359102726_17018774417440_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "075850af-edf1-31c7-8193-e8127979e1f8", - "categories": [ - { - "_": "topics:things/salad-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/aubergine-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chickpea-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/side-dish-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T16:29:05.000Z" - }, - { - "creator": "Verity Bowman", - "title": "Israel setting up seawater pumps to flood Hamas tunnels", - "link": "https://www.telegraph.co.uk/world-news/2023/12/06/israel-hamas-war-hostages-latest-news/", - "pubDate": "Wed, 06 Dec 2023 16:03:47 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/06/TELEMMGLPICT000359078019_17018618840250_trans_NvBQzQNjv4BqrWYeUU_H0zBKyvljOo6zlm8nGi5dnbzU1Uvp1fqu20E.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Verity Bowman", - "content": "Israeli troops have been pictured setting up pumps to flood Hamas tunnels with water. 

]]>", - "contentSnippet": "", - "guid": "05adb46f-90f9-3494-921c-89d4c22d7f7c", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T16:03:47.000Z" - }, - { - "creator": "Chris Price", - "title": "Pound hits three-month high against the euro as German economy struggles - latest updates", - "link": "https://www.telegraph.co.uk/business/2023/12/06/ftse-100-markets-latest-news-boe-sustainability-report-live/", - "pubDate": "Wed, 06 Dec 2023 15:40:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/06/TELEMMGLPICT000359083630_17018635651050_trans_NvBQzQNjv4BqC_LLCXkS_z-CZqgOMP7Be4NJOW97-4gC-TIHNP2xpBw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "The pound has hit its strongest level against the euro in three months after Germany\u2019s construction and manufacturing sectors slumped.

]]>", - "contentSnippet": "", - "guid": "d876550d-8a05-38c6-b32a-0af55c17b0db", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T15:40:05.000Z" - }, - { - "creator": "Dominic Penna", - "title": "Covid Inquiry latest: First lockdown built on 'uncertain foundation', Boris Johnson admits", - "link": "https://www.telegraph.co.uk/news/2023/12/06/covid-inquiry-latest-news-boris-johnson-live/", - "pubDate": "Wed, 06 Dec 2023 15:27:10 GMT", - "dc:creator": "Dominic Penna", - "content": "The first national lockdown was built on an \u201cuncertain foundation\u201d, Boris Johnson has admitted.

]]>", - "contentSnippet": "", - "guid": "7017d5de-abf1-357d-8d4b-fb7111ab3d7e", - "categories": [ - { - "_": "topics:in-the-news/covid-inquiry", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/boris-johnson", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T15:27:10.000Z" - }, - { - "creator": "Telegraph Sport", - "title": "BBC Sports Personality of the Year Award 2023: When is it and who are the nominees?", - "link": "https://www.telegraph.co.uk/sport/0/bbc-sports-personality-of-the-year-2023-when-nominees-odds/", - "pubDate": "Wed, 06 Dec 2023 15:22:48 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/sport/2023/11/27/TELEMMGLPICT000320342681_17010771664720_trans_NvBQzQNjv4BqmvDsehfjg0AN6-v5Cj0_Vtf11FLKtqwYaxK652uKeQE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Sport", - "content": "", - "contentSnippet": "", - "guid": "8f7705a7-7b26-364b-8499-59e6aefdf063", - "categories": [ - { - "_": "topics:organisations/bbc", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/katarina-johnson-thompson", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/mary-earps", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/stuart-broad", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/the-races", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jude-bellingham", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T15:22:48.000Z" - }, - { - "creator": "Diana Henry", - "title": "Spiced citrus shortbread recipe", - "link": "https://www.telegraph.co.uk/recipes/0/spiced-citrus-shortbread-recipe/", - "pubDate": "Wed, 06 Dec 2023 15:06:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/06/TELEMMGLPICT000359099370_17018751025630_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "31873e5c-037b-38a1-9655-ad071592cde6", - "categories": [ - { - "_": "topics:things/shortbread-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/biscuit-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/baking-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/afternoon-tea-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T15:06:04.000Z" - }, - { - "creator": "Diana Henry", - "title": "Christmas brownies recipe", - "link": "https://www.telegraph.co.uk/recipes/0/christmas-brownies-recipe/", - "pubDate": "Wed, 06 Dec 2023 15:00:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/05/TELEMMGLPICT000358958261_17017759690100_trans_NvBQzQNjv4BqVXJkSNH0kOL36rJzg8U_TzPzU30KSEuxHqrJ3I8USWY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "2748c6a0-7b15-3400-8341-641315fa0137", - "categories": [ - { - "_": "topics:things/brownie-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/baking-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chocolate-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/afternoon-tea-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T15:00:04.000Z" - }, - { - "creator": "Diana Henry", - "title": "Apple and cinnamon scones recipe", - "link": "https://www.telegraph.co.uk/recipes/0/apple-and-cinnamon-scones-recipe/", - "pubDate": "Wed, 06 Dec 2023 14:55:42 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/05/TELEMMGLPICT000358958279_17017746829610_trans_NvBQzQNjv4Bq7lG0yBZ95AfEKn6gkKKQYSladG7Ff3b37LuAcfF1y_0.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "4cec6a1c-dc88-3b39-a6cf-00a0a9ef19e0", - "categories": [ - { - "_": "topics:things/scone-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/baking-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/afternoon-tea-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/party-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T14:55:42.000Z" - }, - { - "creator": "Diana Henry", - "title": "Christmas sandwiches recipe", - "link": "https://www.telegraph.co.uk/recipes/0/christmas-sandwiches-recipe/", - "pubDate": "Wed, 06 Dec 2023 14:53:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/05/TELEMMGLPICT000358958295_17017730375020_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "3e7968c7-884a-3e20-9d2a-81982887934f", - "categories": [ - { - "_": "topics:things/sandwich-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chicken-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lunch-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/party-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T14:53:11.000Z" - }, - { - "creator": "Jean Kaseya", - "title": "Africa must take control of its vaccine manufacturing to protect against a new pandemic", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/vaccine-manufacturing-africa-pandemic-preparedness/", - "pubDate": "Wed, 06 Dec 2023 14:17:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000357705934_17018700251220_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jean Kaseya", - "content": "", - "contentSnippet": "", - "guid": "96e4dc05-f6aa-388e-9f4d-bd3fd6be5284", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vaccines", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/africa", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:opinion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:comment", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T14:17:43.000Z" - }, - { - "creator": "Ella Nunn", - "title": "Seventeen people killed in Philippines 'killer curve' bus accident", - "link": "https://www.telegraph.co.uk/world-news/2023/12/06/philippines-asia-killer-curve-bus-accident-watch/", - "pubDate": "Wed, 06 Dec 2023 13:29:22 GMT", - "dc:creator": "Ella Nunn", - "content": "", - "contentSnippet": "", - "guid": "ac6caac1-ff1d-359a-9840-e205af733176", - "categories": [ - { - "_": "topics:places/philippines", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/road-accident", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T13:29:22.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Ukraine-Russia war latest: Russian bomber shot down over Snake Island", - "link": "https://www.telegraph.co.uk/world-news/2023/12/06/ukraine-russia-war-news-live-putin-us-aid-latest/", - "pubDate": "Wed, 06 Dec 2023 12:51:21 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/06/TELEMMGLPICT000358991965_17018476998420_trans_NvBQzQNjv4BqxXCI9Wh-V1PVtkHuRtXNlOgacLhbgytlmherpj3DRfI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "content": "A Russian bomber was shot down over Snake Island as Kyiv was bombarded with drones overnight.

]]>", - "contentSnippet": "", - "guid": "ce40e9c6-26a2-311e-9862-59a198439f0a", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T12:51:21.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Samir Shah set to be announced as new BBC chairman, sources claim", - "link": "https://www.telegraph.co.uk/news/2023/12/06/samir-shah-announced-new-bbc-chairman/", - "pubDate": "Wed, 06 Dec 2023 12:15:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/06/TELEMMGLPICT000359070326_17018555001050_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "content": "", - "contentSnippet": "", - "guid": "543d2403-1f04-3f31-915d-05801b47258f", - "categories": [ - { - "_": "topics:organisations/bbc", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/media-outlets", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T12:15:00.000Z" - }, - { - "creator": "Lilia Sebouai", - "title": "UK expanding mosquito surveillance to counter growing threat of dengue", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/uk-expanding-mosquito-surveillance-counter-spread-dengue/", - "pubDate": "Wed, 06 Dec 2023 11:19:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000340257476_17018576056540_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lilia Sebouai", - "content": "", - "contentSnippet": "", - "guid": "044b0005-3289-3556-81f1-30dcdc697a24", - "categories": [ - { - "_": "topics:things/Dengue-fever", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ukhsa", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mosquitos", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T11:19:37.000Z" - }, - { - "creator": "Cara McGoogan", - "title": "\u2018I lost both my sons in the infected blood scandal \u2013 whatever compensation will be a complete insult\u2019", - "link": "https://www.telegraph.co.uk/news/2023/12/06/james-peach-infected-blood-hiv-sons-compensation-insult/", - "pubDate": "Wed, 06 Dec 2023 09:27:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/05/TELEMMGLPICT000358992401_17018028930410_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Cara McGoogan", - "content": "", - "contentSnippet": "", - "guid": "443e677e-978a-3a80-a706-4a94e3216774", - "categories": [ - { - "_": "topics:things/hiv", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/blood", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/house-of-commons", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T09:27:27.000Z" - }, - { - "creator": "Sam Dean", - "title": "Declan Rice has become Arsenal\u2019s \u00a3105m game-winning machine after seizing occasion at Luton", - "link": "https://www.telegraph.co.uk/football/2023/12/05/luton-town-vs-arsenal-live-score-updates-premier-league/", - "pubDate": "Wed, 06 Dec 2023 00:01:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/05/TELEMMGLPICT000359027689_17018150210580_trans_NvBQzQNjv4BqaHd6X3lW3lGv45Ug3tlONZ3XVdg1rRzimPdm_Jg3Voo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Dean", - "content": "Arsenal did not pay \u00a3105 million for Declan Rice so he could score last-minute winners. They bought him to mould games, rather than win them. But such is the midfielder\u2019s sheer force of personality, and such is his taste for match-defining moments, that it seems there can be no stopping him when he decides to seize the occasion for his own.

]]>", - "contentSnippet": "", - "guid": "6264f6b9-e129-38a6-a149-90771de18e33", - "categories": [ - { - "_": "topics:organisations/luton-town-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/arsenal-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T00:01:24.000Z" - }, - { - "creator": "Tom Garry", - "title": "Heartbreak for Lionesses as Olympic dream dies despite 6-0 win over Scotland", - "link": "https://www.telegraph.co.uk/football/2023/12/05/england-lionesses-vs-scotland-live-womens-nations-league/", - "pubDate": "Tue, 05 Dec 2023 23:34:22 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/05/TELEMMGLPICT000359024884_17018136940930_trans_NvBQzQNjv4BqopsWLtjmnv0AMAROXgzTrStKdqyxPHHffahTyrI-qJE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom Garry", - "content": "England\u2019s dreams of qualifying for the Olympics on behalf of Team GB were shattered by two late Netherlands goals scored 600 miles away, as they missed out on topping their group on goal-difference despite hammering Scotland 6-0 at Hampden Park.

]]>", - "contentSnippet": "", - "guid": "48902bd6-b75d-337f-9f76-186e169e1209", - "categories": [ - { - "_": "topics:organisations/england-womens-football-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/uefa-nations-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/scotland-football-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-football", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T23:34:22.000Z" - }, - { - "creator": "Charles Hymas", - "title": "Ministers threaten to quit over Rwanda flights law", - "link": "https://www.telegraph.co.uk/politics/2023/12/05/ministers-threaten-to-quit-over-rwanda-flights-law/", - "pubDate": "Tue, 05 Dec 2023 21:55:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/05/TELEMMGLPICT000356824428_17018110829030_trans_NvBQzQNjv4BqS8LvVGaCov9_zEWH2d7j7ZgojZYlP8f0i9h2tPqCNsM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Hymas", - "content": "", - "contentSnippet": "", - "guid": "294a1c20-cec6-3f20-90f5-e312d05b77d7", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/rwanda", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/migration", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/robert-jenrick", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/suella-braverman", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T21:55:24.000Z" - }, - { - "creator": "India McTaggart", - "title": "The Crown cast bid farewell at premiere of final episode", - "link": "https://www.telegraph.co.uk/royal-family/2023/12/05/the-crown-cast-bid-farewell-premiere-final-episode/", - "pubDate": "Tue, 05 Dec 2023 19:16:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/05/TELEMMGLPICT000359005686_17018049289740_trans_NvBQzQNjv4BqxxryREYCtPII-ztC-Q60ECQMGpiNPd9mPPQuBwSCB0s.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "India McTaggart", - "content": "", - "contentSnippet": "", - "guid": "787c8d03-2b25-38b9-897d-149678e41927", - "categories": [ - { - "_": "topics:things/the-crown", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/netflix", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/princess-diana", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/queen-elizabeth-ii", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/king-charles-iii", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/art", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T19:16:55.000Z" - }, - { - "creator": "Charles Richardson", - "title": "Six Nations 2024 referees announced: Who will referee England\u2019s matches?", - "link": "https://www.telegraph.co.uk/rugby-union/2023/12/05/six-nations-championship-2024-referees-announced-matches/", - "pubDate": "Tue, 05 Dec 2023 18:54:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/12/05/TELEMMGLPICT000335494231_17017999708200_trans_NvBQzQNjv4Bqu9d2miJrqdy0WHkNnywGGHSAMUWbLP57EYvvneETxPE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Richardson", - "content": "", - "contentSnippet": "", - "guid": "855d1646-8b8a-31f6-b7a5-040e5507152f", - "categories": [ - { - "_": "topics:events/six-nations", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/scotland-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/france-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/wales-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/italy-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T18:54:12.000Z" - }, - { - "creator": "Dominic Nicholls", - "title": "Ukraine: The Latest - Nato 'has three years to prepare for Russian attack'", - "link": "https://www.telegraph.co.uk/world-news/2023/12/05/nato-has-three-years-to-prepare-for-russian-attack/", - "pubDate": "Tue, 05 Dec 2023 18:49:29 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/04/TELEMMGLPICT000358562517_17017077414910_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Nicholls", - "content": "", - "contentSnippet": "", - "guid": "2d9a7254-4c23-343f-a35d-1d3bb71d75f7", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T18:49:29.000Z" - }, - { - "creator": "Chris Price", - "title": "EU mulls dropping punitive tariff on UK-made electric cars", - "link": "https://www.telegraph.co.uk/business/2023/12/05/ftse-100-markets-news-live-thames-water-us-jobs/", - "pubDate": "Tue, 05 Dec 2023 18:31:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/05/TELEMMGLPICT000309032928_17017924560020_trans_NvBQzQNjv4BqdbdK7XKIbOqTZJ8EaUsLx-9hg0Y37QvHYjcZPVg1zsA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "The European Commission is set to recommend postponing a controversial tariff on electric cars traded between the UK and Europe by three years, according to a Bloomberg report.

]]>", - "contentSnippet": "", - "guid": "94f4105a-3ab7-3f34-8fe4-7228f2d18b91", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T18:31:30.000Z" - }, - { - "creator": "Will Bolton", - "title": "Man arrested after pregnant woman stabbed in Aberfan", - "link": "https://www.telegraph.co.uk/news/2023/12/05/aberfan-stabbing-live-pregnant-woman-manhunt-wales-latest/", - "pubDate": "Tue, 05 Dec 2023 18:11:29 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/05/TELEMMGLPICT000358981587_17018026697950_trans_NvBQzQNjv4BqES0WhgMsErmg72C9l09YW3gaYALc1dyeRw6ZdGqh5go.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Will Bolton", - "content": "Armed police have arrested a 28-year-old man after a pregnant mother-of-two was stabbed repeatedly while dropping her children at school in a village in Wales on Tuesday.

]]>", - "contentSnippet": "", - "guid": "4bd30b35-773b-3269-ab83-90c26da67682", - "categories": [ - { - "_": "topics:places/wales", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/knife-crime", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T18:11:29.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Tuesday evening news briefing: More 2019 Tory voters will back Reform than Labour at next election", - "link": "https://www.telegraph.co.uk/news/2023/12/05/tuesday-evening-news-briefing-more-2019-tory-voters-reform/", - "pubDate": "Tue, 05 Dec 2023 17:38:38 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "213345e5-345a-32d2-bd2d-8d9e50b30cc8", - "categories": [ - { - "_": "topics:people/prince-harry", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/reform-uk", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T17:38:38.000Z" - }, - { - "creator": "Olivia Andrews", - "title": "Slow cooker pork, apple and cider pie recipe", - "link": "https://www.telegraph.co.uk/recipes/0/slow-cooker-recipes-pork-apple-cider-pie/", - "pubDate": "Tue, 05 Dec 2023 16:24:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2019/03/08/TELEMMGLPICT000190368134_trans_NvBQzQNjv4BqbmMp-zB-xhWZu9W8GGg6WGuVQ2xSTrrDgpZPZTrFNHM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Olivia Andrews", - "content": "", - "contentSnippet": "", - "guid": "0638a421-517e-359c-ae1c-e0dd98a41e9c", - "categories": [ - { - "_": "topics:things/slow-cooker-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/apple-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pork-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pie-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/savoury-pie-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink/food-and-drink-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T16:24:10.000Z" - }, - { - "creator": "Dominic Penna", - "title": "Rwanda latest news: Cleverly says migrant flights must 'move quickly' after striking new deal", - "link": "https://www.telegraph.co.uk/politics/2023/12/05/rishi-sunak-news-latest-rwanda-flights-immigration-jenrick/", - "pubDate": "Tue, 05 Dec 2023 16:01:25 GMT", - "dc:creator": "Dominic Penna", - "content": "James Cleverly has said Britain must now be able to \u201cmove quickly\u201d to start Rwanda deportation migrant flights after a new treaty was agreed with the African nation.

]]>", - "contentSnippet": "", - "guid": "10e06d45-8c55-31c7-8ef0-54dac850e5d3", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T16:01:25.000Z" - }, - { - "creator": "Nataliya Vasilyeva", - "title": "Gaza fighting \u2018most intense\u2019 since war began as IDF enters Khan Younis", - "link": "https://www.telegraph.co.uk/world-news/2023/12/05/israel-hamas-palestine-news-latest-idf-raids-headquarters/", - "pubDate": "Tue, 05 Dec 2023 16:00:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/05/TELEMMGLPICT000358952213_17018027067630_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9TWU-KwRaHvlaJXY1texVLQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Nataliya Vasilyeva", - "content": "The Israeli army has had its \u201cmost intense day\u201d of war in Gaza so far, commanders said, as tanks entered the southern city of Khan Younis for the first time while surrounding the strip\u2019s largest refugee camp in the north.

]]>", - "contentSnippet": "war in Gaza so far, commanders said, as tanks entered the southern city of Khan Younis for the first time while surrounding the strip\u2019s largest refugee camp in the north.\n]]>", - "guid": "8e412ed0-afef-376a-9a0c-f3a97543dc96", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T16:00:19.000Z" - }, - { - "creator": "Donal Skehan", - "title": "One-pan 'roast' chicken with potatoes, kale and thyme recipe\u00a0\u00a0", - "link": "https://www.telegraph.co.uk/recipes/0/one-pan-roast-chicken-potatoes-kale-thyme-recipe/", - "pubDate": "Tue, 05 Dec 2023 15:47:45 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2019/11/01/chickendonal_trans_NvBQzQNjv4BqRRSmT6cvkmeECxVzj5L_rO0XE_qwLiP6-oxi2lfTk2E.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Donal Skehan", - "content": "", - "contentSnippet": "", - "guid": "1a20fc22-fc3b-34a1-b822-30e00b241aa2", - "categories": [ - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/one-pot-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chicken-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink/food-and-drink-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/quick-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T15:47:45.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Ukraine-Russia war: Putin snubs British ambassador as he keeps distance 'for sanitary reasons'", - "link": "https://www.telegraph.co.uk/world-news/2023/12/05/ukraine-russia-war-news-live-nato-poland-putin-zelensky/", - "pubDate": "Tue, 05 Dec 2023 15:07:06 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/05/TELEMMGLPICT000358984098_17017885475800_trans_NvBQzQNjv4Bqm2LUNC0Q0toWAKO9iKM9CFLaN9eYSx2Gg9IZjJxTT94.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "content": "Vladimir Putin snubbed the new British ambassador to Moscow as he kept his distance from a gathering of foreign diplomats \u201cfor sanitary reasons\u201d.

]]>", - "contentSnippet": "", - "guid": "d55b09e6-2ea1-397b-8b0d-6e3de5bd4674", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T15:07:06.000Z" - }, - { - "creator": "Al Morgan", - "title": "The best ski jackets of 2023 reviewed by a ski expert", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-ski-jackets/", - "pubDate": "Tue, 05 Dec 2023 14:59:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/12/01/TELEMMGLPICT000358558877_17014453107560_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Al Morgan", - "content": "", - "contentSnippet": "", - "guid": "3da7b78b-fa5a-3481-add3-75c17404b555", - "categories": [ - { - "_": "topics:things/alpine-skiing", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cross-country-skiing", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/freestyle-skiing", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/snow", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Snowboard", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:skiing", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T14:59:44.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The 14 best mattresses of 2023 tried and tested at home, including hybrid mattresses", - "link": "https://www.telegraph.co.uk/health-fitness/mind/best-mattress/", - "pubDate": "Tue, 05 Dec 2023 12:36:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/06/16/TELEMMGLPICT000339540092_16869168700310_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "4a69557b-b5a5-360c-8db2-2cdc81bed2ed", - "categories": [ - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T12:36:55.000Z" - }, - { - "creator": "Tim Wigmore", - "title": "England hit new low as brutal West Indies and Shai Hope tear into Sam Curran", - "link": "https://www.telegraph.co.uk/cricket/2023/12/03/west-indies-vs-england-live-first-odi-score-latest-updates/", - "pubDate": "Tue, 05 Dec 2023 12:31:06 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/05/TELEMMGLPICT000358793339_17017791189850_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Wigmore", - "content": "Losing six games in the World Cup was bad enough. Now, England\u2019s one-day international side have added an unwanted encore: defeat to a side who did not even qualify. West Indies, vanquished by Zimbabwe, Netherlands and Scotland in the World Cup qualifiers five months ago, added to the turmoil facing England by chasing down 326 at Sir Vivian Richards Stadium.

]]>", - "contentSnippet": "", - "guid": "46a283ce-6460-3d5a-8f96-e2ba04c59370", - "categories": [ - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/west-indies-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/matthew-mott", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jos-buttler", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T12:31:06.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best Christmas gifts 2023: your guide to the 23 top presents on everyone's wish list this year", - "link": "https://www.telegraph.co.uk/christmas/best-christmas-gifts-ideas-presents-wishlist/", - "pubDate": "Tue, 05 Dec 2023 12:30:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2022/11/29/TELEMMGLPICT000317870055_trans_NvBQzQNjv4Bqbe775R1SNzm4sSSdJaF7PFKgqRD8QjI0RaZmbYcesHw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "ffe75cf1-3609-3ec5-8454-86c719575181", - "categories": [ - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/father-christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T12:30:10.000Z" - }, - { - "creator": "Jack Rear", - "title": "\u2018Andy had this sudden excruciating headache \u2013 then went blind\u2019", - "link": "https://www.telegraph.co.uk/christmas/2023/12/05/brain-haemorrhage-medical-discharge-raf-benevolent-fund/", - "pubDate": "Tue, 05 Dec 2023 10:22:32 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/04/TELEMMGLPICT000358401816_17016968860810_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Rear", - "content": "", - "contentSnippet": "", - "guid": "d1cbda51-fb50-3ba5-9591-76b640ed87ec", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/raf-benevolent-fund", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T10:22:32.000Z" - }, - { - "creator": "Will Macpherson", - "title": "Mitchell Johnson\u2019s attack on David Warner was sparked by a text message", - "link": "https://www.telegraph.co.uk/cricket/2023/12/05/mitchell-johnson-vs-david-warner-sparked-by-text-message/", - "pubDate": "Tue, 05 Dec 2023 09:12:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/05/TELEMMGLPICT000358870803_17017670338330_trans_NvBQzQNjv4Bq0fwJ57jCeZfxOoV9E2WRemaIITNODXNq__2rJZjxWpQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Will Macpherson", - "content": "", - "contentSnippet": "", - "guid": "dd2e1813-3a3c-3e66-b8fe-872c0a917797", - "categories": [ - { - "_": "topics:people/david-warner", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/australia-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T09:12:35.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "Watch: Massive explosion blows up house near US capital", - "link": "https://www.telegraph.co.uk/us/news/2023/12/05/arlington-explosion-house-virginia-dc-suspect-flare/", - "pubDate": "Tue, 05 Dec 2023 05:19:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/12/05/TELEMMGLPICT000358931694_17017457972460_trans_NvBQzQNjv4BqUqSNHYGcObKf-KUxsZkxG0Wy_sGK6oioMu5BzggyGUY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "content": "", - "contentSnippet": "", - "guid": "2f8ff587-4837-3458-9a1b-532f340647eb", - "categories": [ - { - "_": "topics:things/fire", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T05:19:14.000Z" - }, - { - "creator": "Roger Maynard", - "title": "King and Queen plan to visit Australia in 2024", - "link": "https://www.telegraph.co.uk/royal-family/2023/12/05/king-charles-queen-camilla-plan-to-visit-australia-nz/", - "pubDate": "Tue, 05 Dec 2023 00:28:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/04/TELEMMGLPICT000358127664_17017338856230_trans_NvBQzQNjv4Bq3GpLWECzklI-njwuIQUgrSThyOqAj-Q6qyYzl0KSl0Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Roger Maynard", - "content": "", - "contentSnippet": "", - "guid": "ef31a5f0-9601-3ce1-a5ba-d4a8fd12c029", - "categories": [ - { - "_": "topics:people/king-charles-iii", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/camilla-queen-consort", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/australia", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-05T00:28:41.000Z" - }, - { - "creator": "Charles Hymas", - "title": "Cleverly pledges to deliver biggest ever reduction in net migration", - "link": "https://www.telegraph.co.uk/politics/2023/12/04/new-measures-slash-net-migration-300000-james-cleverly/", - "pubDate": "Mon, 04 Dec 2023 21:15:04 GMT", - "dc:creator": "Charles Hymas", - "content": "", - "contentSnippet": "", - "guid": "b86adcd4-cfec-3fec-8ef4-4918c12cebbe", - "categories": [ - { - "_": "topics:things/immigration", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/migration", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/james-cleverly", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/suella-braverman", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T21:15:04.000Z" - }, - { - "creator": "Samuel Montgomery", - "title": "UK weather: More than 150 flood alerts as heavy rain to batter Britain", - "link": "https://www.telegraph.co.uk/news/2023/12/04/uk-weather-news-latest-flood-warnings-heavy-rain-live/", - "pubDate": "Mon, 04 Dec 2023 21:02:56 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/04/TELEMMGLPICT000358864260_17016958625400_trans_NvBQzQNjv4BqhasgUMiR-rxiRxu9qBoVLdUcsNjZWwQQAqx2KspIOLE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Samuel Montgomery", - "content": "More than 150 flood alerts have been issued across the country as the Met Office warned of heavy rain and ice.

]]>", - "contentSnippet": "", - "guid": "d1013d22-533c-34eb-a303-52095e6e92b0", - "categories": [ - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/met-office", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/flooding", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T21:02:56.000Z" - }, - { - "creator": "Chris Price", - "title": "Pension fund ownership of UK stocks hits record low", - "link": "https://www.telegraph.co.uk/business/2023/12/04/ftse-100-markets-news-live-gold-price-high-interest-rates/", - "pubDate": "Mon, 04 Dec 2023 18:22:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/04/TELEMMGLPICT000358504821_17017020839190_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "Pension fund\u2019s share of Britain\u2019s stock markets has fallen to a record low, official figures show, as they seek more profitable returns overseas.

]]>", - "contentSnippet": "", - "guid": "0f0f83a5-82fd-36b7-9adf-baa2812f1b07", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T18:22:10.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Monday evening news briefing: New measures will slash migration arrivals by 300,000, says Cleverly", - "link": "https://www.telegraph.co.uk/news/2023/12/04/monday-evening-news-briefing-new-measure-cleverly-migration/", - "pubDate": "Mon, 04 Dec 2023 17:44:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "8249dabb-b56b-3678-a0d9-8e58ea888e32", - "categories": [ - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/james-cleverly", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/migration", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T17:44:27.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "Child pneumonia cases emerge in Europe as China battles wave of respiratory illness", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/child-pneumonia-europe-france-ireland-denmark-netherlands/", - "pubDate": "Mon, 04 Dec 2023 17:23:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/04/TELEMMGLPICT000357627030_17017101644630_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "17877c5b-d9f8-309a-8c61-a2ed858b4458", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pandemics-epidemics", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/china", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/europe", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T17:23:50.000Z" - }, - { - "creator": "Dominic Penna", - "title": "As it happened: James Cleverly rejects calls to put a cap on migrant numbers", - "link": "https://www.telegraph.co.uk/politics/2023/12/04/rishi-sunak-news-latest-bbc-tv-licence-fee-keir-starmer/", - "pubDate": "Mon, 04 Dec 2023 17:14:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/04/TELEMMGLPICT000358881480_17017099803230_trans_NvBQzQNjv4BqUa2thMnvKQadTDM5oFKzfIBaZKwVQaCcGMe8NJ-Iq1g.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Penna", - "content": "James Cleverly rejected Tory calls to put a cap on the number of migrants coming to Britain every year as he set out a new five-point plan designed to reduce arrivals.

]]>", - "contentSnippet": "as he set out a new five-point plan designed to reduce arrivals.\n]]>", - "guid": "e394edbd-ffeb-34dd-a147-ba3520ebb74d", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T17:14:43.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Main road in Gaza a 'battlefield'", - "link": "https://www.telegraph.co.uk/world-news/2023/12/04/israel-hamas-palestine-south-gaza-war-ceasefire-news-latest/", - "pubDate": "Mon, 04 Dec 2023 16:53:26 GMT", - "dc:creator": "Maighna Nanu", - "content": "Gaza\u2019s main road is a \u201cbattlefield,\u201d the Israel Defense Forces has said, as it claimed it was opening a new humanitarian corridor for civilians to evacuate.

]]>", - "contentSnippet": "", - "guid": "cc34be3d-f282-375c-aa11-90dfa5087107", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T16:53:26.000Z" - }, - { - "creator": "Dominic Nicholls", - "title": "Ukraine: The Latest - US aid to Ukraine will run out 'by end of month'", - "link": "https://www.telegraph.co.uk/world-news/2023/12/04/us-aid-to-ukraine-will-run-out-by-end-of-month/", - "pubDate": "Mon, 04 Dec 2023 16:36:20 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/04/TELEMMGLPICT000358562517_17017077414910_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Nicholls", - "content": "", - "contentSnippet": "", - "guid": "031b02af-bdc7-3886-94dd-c48c4351c4cb", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T16:36:20.000Z" - }, - { - "creator": "Jessica Salter", - "title": "The 26 best Christmas crackers of 2023, from luxury crackers to traditional choices", - "link": "https://www.telegraph.co.uk/christmas/best-christmas-crackers/", - "pubDate": "Mon, 04 Dec 2023 15:36:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/27/TELEMMGLPICT000354563213_16983977417550_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jessica Salter", - "content": "", - "contentSnippet": "", - "guid": "cdb2f9db-4f45-39d7-9eb7-e5ef72e032e5", - "categories": [ - { - "_": "topics:things/christmas-crackers", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-dinner", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T15:36:34.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "Hand-held sequencing device may help track resistant-malaria in African hotspots", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/hand-held-sequencing-device-track-resistant-malaria-hotspot/", - "pubDate": "Mon, 04 Dec 2023 15:05:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/04/TELEMMGLPICT000162950048_17017008406700_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "fd87dfad-1c80-3465-bad0-ccde017afbaa", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/malaria", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mosquitos", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T15:05:55.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Ukraine-Russia war: Russian casualties in Ukraine 'top 320,000'", - "link": "https://www.telegraph.co.uk/world-news/2023/12/04/russia-ukraine-war-news-latest-putin-zelensky-surrender/", - "pubDate": "Mon, 04 Dec 2023 15:05:28 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/04/TELEMMGLPICT000358734111_17016875300490_trans_NvBQzQNjv4BqywFt80tUnoDwkX1erFXhtlHmPOpeFd0SyQx9dn7kM_w.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "content": "Russia may have suffered more than 320,000 casualties in Ukraine, the British Ministry of Defence (MoD) has said.

]]>", - "contentSnippet": "", - "guid": "50562004-bece-3987-b931-22448d29e4ce", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T15:05:28.000Z" - }, - { - "creator": "Sarah Newey", - "title": "World\u2019s first \u2018dengue dashboard\u2019 could predict outbreaks months before they happen", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/dengue-dashboard-climate-change-mosquitoes-dieases-viruses/", - "pubDate": "Mon, 04 Dec 2023 13:34:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/04/TELEMMGLPICT000356638456_17016963076460_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "content": "", - "contentSnippet": "", - "guid": "178464b7-2c63-3f3c-97db-3034bc8de259", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Dengue-fever", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mosquitos", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/climate-change", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/viruses", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-04T13:34:24.000Z" - }, - { - "creator": "Jamie Bullen", - "title": "Prince Harry phone hacking: Duke 'on mission to trash monarchy', says Piers Morgan", - "link": "https://www.telegraph.co.uk/royal-family/2023/12/15/prince-harry-daily-mirror-hacking-claim-live/", - "pubDate": "Fri, 15 Dec 2023 15:30:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/15/TELEMMGLPICT000360108382_17026541070540_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jamie Bullen", - "content": "Piers Morgan has accused Prince Harry of attempting to trash the monarchy in his \u201creal mission\u201d as he responded to a High Court ruling that found the Duke was a victim of phone hacking.

]]>", - "contentSnippet": "", - "guid": "5f496d6d-2f3d-3092-bdc1-4955cc974484", - "categories": [ - { - "_": "topics:people/prince-harry", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/newspapers", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/high-court", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T15:30:53.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The 31 best Christmas hampers of 2023, from Fortnum and Mason to Marks and Spencer", - "link": "https://www.telegraph.co.uk/christmas/best-christmas-hampers/", - "pubDate": "Fri, 15 Dec 2023 15:29:48 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/16/TELEMMGLPICT000353315320_16974498644990_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "fafd6a29-ee22-37cb-8f20-b0fcdacd1fe3", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-hampers", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/party-food", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T15:29:48.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Israel-Hamas war live: Israeli border opens to Gaza aid for first time", - "link": "https://www.telegraph.co.uk/world-news/2023/12/15/israel-hamas-war-latest-news-updates-gaza-day-69-live/", - "pubDate": "Fri, 15 Dec 2023 15:15:32 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/15/TELEMMGLPICT000360066104_17026271190220_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "content": "Israel will allow aid to cross its border into Gaza for the first time, Benjamin Netanyahu has announced.

]]>", - "contentSnippet": "", - "guid": "b52bf7ec-4b78-3009-b76e-9c3bafb87d8d", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T15:15:32.000Z" - }, - { - "creator": "Samuel Montgomery", - "title": "Ukraine-Russia war live: 26 injured after Ukrainian councillor detonates grenades at meeting", - "link": "https://www.telegraph.co.uk/world-news/2023/12/15/ukraine-russia-war-news-latest-councillor-grenade-keretsky/", - "pubDate": "Fri, 15 Dec 2023 15:08:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/15/TELEMMGLPICT000360095136_17026444869900_trans_NvBQzQNjv4BqFZ2mKB99NyfWHs4BvtAqLn4ihL9D5G77hk2Gx25ScXg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Samuel Montgomery", - "content": "A Ukrainian local councillor detonated grenades at a village meeting, leaving at least 26 people injured.

]]>", - "contentSnippet": "", - "guid": "bfa2172c-cf24-386b-bd24-533bcbcc1b5c", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T15:08:34.000Z" - }, - { - "creator": "James Ducker", - "title": "Erik ten Hag: I don't fear the sack \u2013 even if Man Utd lose to Liverpool", - "link": "https://www.telegraph.co.uk/football/2023/12/15/erik-ten-hag-job-safe-manchester-united-liverpool/", - "pubDate": "Fri, 15 Dec 2023 14:49:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/15/TELEMMGLPICT000359806294_17026515559180_trans_NvBQzQNjv4Bq_mHiDEG16rE8WJnnB5wUR92WfFKv9icEus7KKlx7_s8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "James Ducker", - "content": "", - "contentSnippet": "", - "guid": "b5a006f9-f116-3522-a88a-438b7f9a9520", - "categories": [ - { - "_": "topics:organisations/manchester-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/liverpool-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/erik-ten-hag", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T14:49:27.000Z" - }, - { - "creator": "James Warrington", - "title": "UK economy bounces back as business activity hits six-month high - latest updates", - "link": "https://www.telegraph.co.uk/business/2023/12/15/ftse-100-markets-gas-gazprom-russia-sanctions-uk/", - "pubDate": "Fri, 15 Dec 2023 14:16:07 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/15/TELEMMGLPICT000358879077_17026480666400_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdGLvJF5WfpqnBZShRL_tOZw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "James Warrington", - "content": "Britain\u2019s economy bounced back at the end of the year as activity rose to a six-month high amid \u201ctentative signs\u201d of a revival in demand, a closely-watched survey showed.

]]>", - "contentSnippet": "", - "guid": "7267e393-7a28-3ab9-8208-ec9fa2f0363b", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T14:16:07.000Z" - }, - { - "creator": "Nataliya Vasilyeva", - "title": "Battle Lines: 'If there is one Hamas guy without a right arm, but with his left hand makes a victory sign \u2013 we lost'", - "link": "https://www.telegraph.co.uk/world-news/2023/12/15/battle-lines-hamas-idf-bethlehem/", - "pubDate": "Fri, 15 Dec 2023 13:03:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/14/TELEMMGLPICT000359672782_17025746452400_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9TWU-KwRaHvlaJXY1texVLQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Nataliya Vasilyeva", - "content": "", - "contentSnippet": "", - "guid": "0265040e-f549-3e4e-ba73-2724609ff341", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/battle-lines", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T13:03:44.000Z" - }, - { - "creator": "Alice Barraclough", - "title": "The best fitness trackers in 2023 to help you stay active", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-fitness-trackers-watches/", - "pubDate": "Fri, 15 Dec 2023 13:03:13 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/11/TELEMMGLPICT000321696243_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alice Barraclough", - "content": "", - "contentSnippet": "", - "guid": "7f18a13c-42b6-3672-aa08-b8ae5dea9287", - "categories": [ - { - "_": "topics:things/exercise", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/apple-watch", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/smartwatches", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep-hygiene", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/more-telegraph-recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T13:03:13.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Channel migrant death 'stark reminder' of small boats danger, says No10", - "link": "https://www.telegraph.co.uk/politics/2023/12/15/rishi-sunak-news-latest-rwanda-tories-george-osborne/", - "pubDate": "Fri, 15 Dec 2023 12:42:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/15/TELEMMGLPICT000338321953_17026438851820_trans_NvBQzQNjv4Bq7geLMoG17vYWpU6PNwRUHVFx7oZS3G0ps1JcMwBJxFI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "content": "A small boat incident in the Channel that resulted in the death of a migrant serves as a \u201cstark reminder\u201d of the danger of the crossings and of the need to stop the journeys, Downing Street said. 

]]>", - "contentSnippet": "", - "guid": "25705ad9-9f16-3806-a01e-77b88b24d989", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T12:42:57.000Z" - }, - { - "creator": "Victoria Ward", - "title": "Queen Camilla to release literary podcast", - "link": "https://www.telegraph.co.uk/royal-family/2023/12/15/queen-reading-room-podcast-camilla-charity-joanna-lumley/", - "pubDate": "Fri, 15 Dec 2023 12:27:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/15/TELEMMGLPICT000360073774_17026412947690_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Victoria Ward", - "content": "", - "contentSnippet": "", - "guid": "4e7d7106-07d1-35b2-b0d7-e381698468f1", - "categories": [ - { - "_": "topics:people/camilla-queen-consort", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/joanna-lumley", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/podcast-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T12:27:37.000Z" - }, - { - "creator": "Lilia Sebouai", - "title": "Scientists spooked by \u2018unusual\u2019 surge in anthrax cases across Africa", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/anthrax-cases-surge-across-african-countries-infections/", - "pubDate": "Fri, 15 Dec 2023 12:08:31 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/14/TELEMMGLPICT000359693151_17025760788660_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lilia Sebouai", - "content": "", - "contentSnippet": "", - "guid": "57214b59-e290-3179-a154-d511643429ed", - "categories": [ - { - "_": "topics:things/anthrax", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/kenya", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/uganda", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/zambia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/zimbabwe", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/africa", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T12:08:31.000Z" - }, - { - "creator": "Victoria Ward", - "title": "Prince Harry was victim of phone hacking by Mirror newspapers, judge rules", - "link": "https://www.telegraph.co.uk/royal-family/2023/12/15/extensive-hacking-mirror-newspapers-prince-harry/", - "pubDate": "Fri, 15 Dec 2023 11:57:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/15/TELEMMGLPICT000330335115_17026410006080_trans_NvBQzQNjv4BqYMKUW9Qu9n7-0PNEPWU6N_9hv29CmyFCD-uy3oC1n2c.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Victoria Ward", - "content": "", - "contentSnippet": "", - "guid": "ac47c248-d9e5-35b7-a74a-21dfcfb43d91", - "categories": [ - { - "_": "topics:people/prince-harry", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/high-court", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/newspapers", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T11:57:19.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best fridge freezers in 2023, recommended by experts - from integrated to American-style", - "link": "https://www.telegraph.co.uk/interiors/home/best-fridge-freezers/", - "pubDate": "Fri, 15 Dec 2023 11:55:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/interiors/2023/12/14/TELEMMGLPICT000360003517_17025708270720_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "97340dfd-06c8-364d-825f-1cac95612f47", - "categories": [ - { - "_": "topics:things/kitchen-equipment", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fruit-and-vegetables", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tomatoes", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T11:55:25.000Z" - }, - { - "creator": "Stephen Harris", - "title": "The perfect stuffing blueprint recipe", - "link": "https://www.telegraph.co.uk/recipes/0/perfect-stuffing-blueprint-recipe/", - "pubDate": "Fri, 15 Dec 2023 11:52:38 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2020/12/10/TELEMMGLPICT000245808558_trans_NvBQzQNjv4Bqod34IAFs8Kd6ENjUhND5WlVse9JsN00kzbUr3IXHaGo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Stephen Harris", - "content": "The idea of this recipe is to give you an interchangeable recipe for stuffing that will allow you to adapt it to your situation. This means you can change the fruit, nuts or herbs without having to find a new recipe. Interestingly, I even ran out of breadcrumbs for one batch and just used blitzed-up Weetabix \u2013 you couldn\u2019t tell the difference.

]]>", - "contentSnippet": "", - "guid": "33158d06-6900-3aeb-8b30-f30283f0e24b", - "categories": [ - { - "_": "topics:things/roast-dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pork-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/side-dish-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/turkey-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:stephen-harris", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T11:52:38.000Z" - }, - { - "creator": "Eleanor Steafel", - "title": "Brothy aubergine and chickpea pasta with feta recipe", - "link": "https://www.telegraph.co.uk/recipes/0/brothy-aubergine-and-chickpea-pasta-with-feta-recipe/", - "pubDate": "Fri, 15 Dec 2023 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/14/TELEMMGLPICT000359975454_17025665451810_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Eleanor Steafel", - "content": "", - "contentSnippet": "", - "guid": "c60c5bf1-7114-3d36-8ce1-ec707553f875", - "categories": [ - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pasta-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T11:00:00.000Z" - }, - { - "creator": "Dominic Nicholls", - "title": "\u2018Resistance is calling\u2019: Does the West want Ukraine to win or just not to lose? | Defence in Depth", - "link": "https://www.telegraph.co.uk/world-news/2023/12/15/russia-ukraine-war-2024-west-resistance-explained-defence/", - "pubDate": "Fri, 15 Dec 2023 08:00:00 GMT", - "dc:creator": "Dominic Nicholls", - "content": "", - "contentSnippet": "", - "guid": "93224fee-fb76-3ef1-9044-15f5c0bbdbab", - "categories": [ - { - "_": "topics:things/defence-in-depth", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/russion-invasion", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/explained-ukraine-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion/Premium-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T08:00:00.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "Hungary blocks \u20ac50bn EU aid package for Ukraine", - "link": "https://www.telegraph.co.uk/world-news/2023/12/15/hungary-viktor-orban-blocks-aid-ukraine-war/", - "pubDate": "Fri, 15 Dec 2023 03:49:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/15/TELEMMGLPICT000360005844_17026115489240_trans_NvBQzQNjv4Bq8au60oU1QkgHWpyU7hPMD-slRO2e6rkpibrYDxDW61I.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "content": "", - "contentSnippet": "", - "guid": "4450cdff-a3ec-3fa9-b5eb-1357384d4415", - "categories": [ - { - "_": "topics:places/hungary", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/viktor-orban", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-15T03:49:05.000Z" - }, - { - "creator": "Press Association", - "title": "Disgraced club president who punched referee handed lifetime ban by Turkish FA", - "link": "https://www.telegraph.co.uk/football/2023/12/14/faruk-koca-banned-life-president-punching-referee-turkish/", - "pubDate": "Thu, 14 Dec 2023 23:41:14 GMT", - "dc:creator": "Press Association", - "content": "", - "contentSnippet": "", - "guid": "04f55090-22a4-360f-81c6-6c7820e40d0a", - "categories": [ - { - "_": "topics:places/turkey", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T23:41:14.000Z" - }, - { - "creator": "Press Association", - "title": "Rangers into Europa League last 16 after famous Real Betis win", - "link": "https://www.telegraph.co.uk/football/2023/12/14/real-betis-vs-rangers-europa-league-live-score-updates/", - "pubDate": "Thu, 14 Dec 2023 22:37:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360039225_17025930910250_trans_NvBQzQNjv4BqjIwIjDXBmcU79gdGK1cNfuil7a1KV2STY3xRqqFt_No.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Press Association", - "content": "Kemar Roofe\u2019s late goal earned Rangers a memorable 3-2 win against Real Betis to send the Scottish side into the Europa League knockout stages.

]]>", - "contentSnippet": "", - "guid": "dfe88504-736c-339a-b22e-bf3e10e1638b", - "categories": [ - { - "_": "topics:organisations/rangers-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/real-betis", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/europa-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T22:37:17.000Z" - }, - { - "creator": "Nick Szczepanik", - "title": "Joao Pedro continues to pay back his record fee as Brighton take top spot", - "link": "https://www.telegraph.co.uk/football/2023/12/14/brighton-vs-marseille-result-joao-pedro-winner-top-group/", - "pubDate": "Thu, 14 Dec 2023 22:28:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360041506_17025927067400_trans_NvBQzQNjv4Bqc8zxOHHUUslDhQm6vb81qPUJn57ATPrZB76tyckjLYM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Nick Szczepanik", - "content": "", - "contentSnippet": "", - "guid": "09dfa368-877e-39b4-91db-b8e954ff32f9", - "categories": [ - { - "_": "topics:organisations/brighton-and-hove-albion-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/olympique-marseille", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/europa-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T22:28:02.000Z" - }, - { - "creator": "Fiona Tomas", - "title": "Chelsea drop precious points in Champions League draw with BK Hacken", - "link": "https://www.telegraph.co.uk/football/2023/12/14/chelsea-frustrated-goalless-champions-league-draw-bk-hacken/", - "pubDate": "Thu, 14 Dec 2023 22:27:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360036980_17025923024730_trans_NvBQzQNjv4BqYO7_xiyF6r3HKBKXSTLIcZPFruVp4RhabY5IM9oKnWI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Fiona Tomas", - "content": "", - "contentSnippet": "", - "guid": "5143c1a3-b2ba-397b-8c91-28d0fe46d2dd", - "categories": [ - { - "_": "topics:organisations/chelsea-women", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T22:27:24.000Z" - }, - { - "creator": "Chris Bascombe", - "title": "All thoughts on Man Utd after Liverpool youngsters come up short in Europa League", - "link": "https://www.telegraph.co.uk/football/2023/12/14/union-saint-gilloise-vs-liverpool-europa-league-live-score/", - "pubDate": "Thu, 14 Dec 2023 21:52:38 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360022555_17025865256170_trans_NvBQzQNjv4Bq3RpaBaWJNrs0G7lEcm1B9uI9F-hLs3tNHhVCenTmFqY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Bascombe", - "content": "There was a nod to the future as Liverpool suffered a successive European away defeat; three days into the future, to be precise.

]]>", - "contentSnippet": "", - "guid": "b1781a2b-a692-3fa3-bd7a-56589c504cbb", - "categories": [ - { - "_": "topics:organisations/liverpool-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/europa-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T21:52:38.000Z" - }, - { - "creator": "Rob Smyth", - "title": "Sam Curran concedes 30 from one over in England's latest defeat by West Indies", - "link": "https://www.telegraph.co.uk/cricket/2023/12/14/west-indies-vs-england-live-second-t20-latest-updates/", - "pubDate": "Thu, 14 Dec 2023 21:49:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/15/TELEMMGLPICT000359813514_17026357144180_trans_NvBQzQNjv4BqxvYj55BnqfNs_9vjydJAGXQkaJhbZZszza9BpIpi36g.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rob Smyth", - "content": "Twenty-one months ago, England\u2019s 10-wicket defeat in the spice island, which took the Test side\u2019s run to one victory in 17 games, deepened the team\u2019s malaise. It also proved the catalyst for the remarkable changes that have followed.

]]>", - "contentSnippet": "", - "guid": "4f5192e7-d471-321b-a974-488d402e0542", - "categories": [ - { - "_": "topics:organisations/west-indies-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-and-wales-cricket-board", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T21:49:12.000Z" - }, - { - "creator": "John Percy", - "title": "Aston Villa can focus on Premier League title race with break from Europe", - "link": "https://www.telegraph.co.uk/football/2023/12/14/zrinjski-vs-aston-villa-result-unai-emery-nicolo-zaniolo/", - "pubDate": "Thu, 14 Dec 2023 20:57:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360025436_17025869972880_trans_NvBQzQNjv4Bqo7uk9bl_VoYwz3727EYI82f2uuNjS-P7rfeDr73qFa4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "John Percy", - "content": "", - "contentSnippet": "", - "guid": "3df0f45a-7bc0-3d01-9e51-ff181b4bc715", - "categories": [ - { - "_": "topics:organisations/aston-villa-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/europa-conference-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T20:57:19.000Z" - }, - { - "creator": "Judith Woods", - "title": "\u2018For these children, this is the only Christmas they will know; the only chance of a stocking\u2019", - "link": "https://www.telegraph.co.uk/christmas/2023/12/14/christmas-2023-telegraph-christmas-charity-appeal-go-beyond/", - "pubDate": "Thu, 14 Dec 2023 20:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/12/TELEMMGLPICT000359316701_17024019434050_trans_NvBQzQNjv4BqrpfQw2hJyG_yckwxPAr0gmyy-GsNrhPQbLesooHneHs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Judith Woods", - "content": "", - "contentSnippet": "", - "guid": "e8c7653d-f8f5-3d27-8495-4ff9625f7b58", - "categories": [ - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/go-beyond", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T20:00:00.000Z" - }, - { - "creator": "Poppie Platt", - "title": "Strictly Come Dancing 2023: how each pair fared in the competition", - "link": "https://www.telegraph.co.uk/tv/0/strictly-come-dancing-2023-line-up-contestants/", - "pubDate": "Thu, 14 Dec 2023 19:25:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tv/2023/09/18/TELEMMGLPICT000349591801_16950581844180_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Poppie Platt", - "content": "", - "contentSnippet": "", - "guid": "27cdf54e-813f-3e5d-8f47-80c2799a7ccf", - "categories": [ - { - "_": "topics:things/strictly-come-dancing", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bbc", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/tess-daly", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/claudia-winkleman", - "$": { - "domain": "" - } - }, - { - "_": "structure:television", - "$": { - "domain": "" - } - }, - { - "_": "structure:television/television-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/entertainment", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T19:25:19.000Z" - }, - { - "creator": "Matt Oliver", - "title": "Pound jumps as Bank of England warns no interest rate cuts coming soon", - "link": "https://www.telegraph.co.uk/business/2023/12/14/ftse-100-markets-news-interest-rate-decision-bank-england/", - "pubDate": "Thu, 14 Dec 2023 18:45:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/14/TELEMMGLPICT000359912611_17025446734460_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Matt Oliver", - "content": "The pound has leapt higher after Bank of England held interest rates at their current 15-year high and signalled cuts were not coming soon. 

]]>", - "contentSnippet": "", - "guid": "21b1babf-9e96-364c-80d6-dc04bd6b2c26", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T18:45:37.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Thursday evening news briefing: New CCTV footage of Gaynor Lord released", - "link": "https://www.telegraph.co.uk/news/2023/12/14/thursday-evening-news-briefing-new-cctv-footage-gaynor-lord/", - "pubDate": "Thu, 14 Dec 2023 17:48:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "b38b52b8-c508-3876-a9eb-ecd739f0c582", - "categories": [ - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/norwich", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T17:48:10.000Z" - }, - { - "creator": "Simon Lewis", - "title": "47 of the best Christmas gifts for men in 2023, including last minute present ideas from under \u00a320", - "link": "https://www.telegraph.co.uk/family/relationships/best-gifts-present-ideas-men-last-minute/", - "pubDate": "Thu, 14 Dec 2023 17:04:39 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/family/2023/01/26/TELEMMGLPICT000323349903_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "63865bcb-af51-325b-8d31-ef8702cc2469", - "categories": [ - { - "_": "topics:things/luxury-mens-style", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:family", - "$": { - "domain": "" - } - }, - { - "_": "structure:family/relationships", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T17:04:39.000Z" - }, - { - "creator": "Sarah Rodrigues", - "title": "How gardening helps to burn calories in winter", - "link": "https://www.telegraph.co.uk/gardening/problem-solving/how-gardening-helps-burn-calories-winter-exercise-uk-2022/", - "pubDate": "Thu, 14 Dec 2023 16:46:26 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2022/01/19/GettyImages-1336297418_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Rodrigues", - "content": "", - "contentSnippet": "", - "guid": "b2a059e7-a395-3d2e-a927-acdb2da2a908", - "categories": [ - { - "_": "topics:things/exercise", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T16:46:26.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Ukraine fends off missile attack amid Putin's marathon phone-in", - "link": "https://www.telegraph.co.uk/world-news/2023/12/14/ukraine-fends-off-missile-attack-amid-putins-marathon/", - "pubDate": "Thu, 14 Dec 2023 16:07:26 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/14/TELEMMGLPICT000359995025_17025699545400_trans_NvBQzQNjv4BqrpfQw2hJyG_yckwxPAr0gmyy-GsNrhPQbLesooHneHs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "fa565ae5-e980-3666-9954-bb874ac0e529", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T16:07:26.000Z" - }, - { - "creator": "Ben Farmer", - "title": "West Africa grapples with a wave of diphtheria as vaccine coverage slips", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/west-africa-diphtheria-infections-outbreak-vaccine-gaps/", - "pubDate": "Thu, 14 Dec 2023 16:04:49 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/14/TELEMMGLPICT000357678632_17025686052740_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Farmer", - "content": "", - "contentSnippet": "", - "guid": "59269649-6788-3ed4-8aa5-2dfd7af45932", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vaccines", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pandemics-epidemics", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/west-africa", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/africa", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T16:04:49.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Labour extend poll lead over Tories to 17 points as Reform UK support climbs", - "link": "https://www.telegraph.co.uk/politics/2023/12/14/rishi-sunak-news-latest-rwanda-vote-farage-damian-hinds/", - "pubDate": "Thu, 14 Dec 2023 16:00:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/14/TELEMMGLPICT000359967052_17025508088850_trans_NvBQzQNjv4Bq4SCt4BtKuPgBxV2nxOKGfbQBMGlqc4ZbUgb735iCRYE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "content": "Labour hold a 17 point poll lead over the Tories and support for Reform UK has increased, according to a new survey published today by Savanta. 

]]>", - "contentSnippet": "", - "guid": "c02ea87d-eb05-3a01-8577-4ac9f27aad2c", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T16:00:44.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Ukraine-Russia war: Russia fires hypersonic missiles at Kyiv in rare daytime attack", - "link": "https://www.telegraph.co.uk/world-news/2023/12/14/ukraine-russia-war-news-latest-moscow-drones-putin-address/", - "pubDate": "Thu, 14 Dec 2023 15:12:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/14/TELEMMGLPICT000359991530_17025647319000_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "content": "Russia appears to have fired a salvo of hypersonic missiles on Kyiv in a rare daytime attack.

]]>", - "contentSnippet": "", - "guid": "f9637435-8175-3f53-94d8-df97f0f0054e", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T15:12:34.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "50 best Christmas gifts for her in 2023, from The White Company, John Lewis and more", - "link": "https://www.telegraph.co.uk/women/life/best-gifts-present-ideas-birthday-women/", - "pubDate": "Thu, 14 Dec 2023 14:33:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/women/2023/10/25/TELEMMGLPICT000354236157_16982232242390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "6b6e7d03-fef4-3025-b126-22bc85ff6070", - "categories": [ - { - "_": "topics:things/perfume", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/affordable-jewellery", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:women/life", - "$": { - "domain": "" - } - }, - { - "_": "structure:women", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T14:33:24.000Z" - }, - { - "creator": "Connor James Ibbetson", - "title": "The Telegraph\u2019s Family Christmas Quiz 2023", - "link": "https://www.telegraph.co.uk/christmas/2023/12/14/play-telegraph-christmas-family-quiz-2023/", - "pubDate": "Thu, 14 Dec 2023 12:54:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/14/TELEMMGLPICT000359978836_17025582069820_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Connor James Ibbetson", - "guid": "d7e78a17-1eff-3f81-ae80-58fe39f4890b", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/quizzes", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T12:54:02.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "The cure for snake bite may already be out there, research suggests", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/new-drugs-prevent-snake-bite-injury-cure/", - "pubDate": "Thu, 14 Dec 2023 12:42:16 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/14/TELEMMGLPICT000197070122_17025550849270_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "cb74aac9-d653-3ed8-9556-3d6d33babc57", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/snake-bite", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/snakes", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/liverpool-school-of-tropical-medicine", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/scientific-research", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T12:42:16.000Z" - }, - { - "creator": "Suzy Walker", - "title": "What to say \u2013 and not say \u2013 to a friend who\u2019s bereaved", - "link": "https://www.telegraph.co.uk/christmas/0/what-to-say-and-not-say-to-a-friend-whos-bereaved/", - "pubDate": "Thu, 14 Dec 2023 10:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/13/TELEMMGLPICT000359885540_17024882329650_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Suzy Walker", - "content": "", - "contentSnippet": "", - "guid": "b08a475b-6ad2-36e5-88e8-f65018971c25", - "categories": [ - { - "_": "topics:things/marie-curie", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/grief", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T10:00:00.000Z" - }, - { - "creator": "Mike McGrath", - "title": "From Man City ball boy to star debutant: Micah Hamilton announces himself in style", - "link": "https://www.telegraph.co.uk/football/2023/12/13/red-star-v-man-city-live-score-updates-champions-league/", - "pubDate": "Thu, 14 Dec 2023 07:51:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000359893136_17025013722360_trans_NvBQzQNjv4BqfmWw8ZtkYoKgUQYLfpqhYj1IRcKDl8eLTW931jeFUeU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mike McGrath", - "content": "Pep Guardiola may not remember the moment he stood on the Etihad touchline with his arm around Micah Hamilton\u2019s shoulders, telling the 13-year-old ballboy to work quicker. But he will not be forgetting his senior debut in a hurry, with the forward announcing himself as Manchester City\u2019s latest young talent ready for the first team.

]]>", - "contentSnippet": "", - "guid": "a1b4cf73-2605-3d18-a66c-f54514d0570d", - "categories": [ - { - "_": "topics:organisations/manchester-city-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T07:51:18.000Z" - }, - { - "creator": "Jason Burt", - "title": "Naive Newcastle gamble for glory against AC Milan \u2013 and leave Europe with nothing", - "link": "https://www.telegraph.co.uk/football/2023/12/13/newcastle-vs-ac-milan-live-score-updates-champions-league/", - "pubDate": "Thu, 14 Dec 2023 07:43:52 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000359916762_17025052652800_trans_NvBQzQNjv4BqYsomVK_5AfAmMW7o3DHCB7Ise6ugvcnLjVqQYK-tsLY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jason Burt", - "content": "With 31 minutes to go, Newcastle were in the last-16 of the Champions League. By the final whistle they were out of Europe completely and could have conceded three or four goals to an AC Milan side who consigned them to last place in their group. Football can be cruel. Football can change in a heartbeat. Football can be heart-breaking.

]]>", - "contentSnippet": "", - "guid": "19325371-ca79-3742-8870-f0abfc412f7a", - "categories": [ - { - "_": "topics:organisations/newcastle-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ac-milan", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/champions-league-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:football/football-live-blog", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T07:43:52.000Z" - }, - { - "creator": "Sarah Newey", - "title": "Parents \u2018misled and deceived\u2019 over sugary baby food, says Unicef", - "link": "https://www.telegraph.co.uk/global-health/climate-and-people/baby-food-south-east-asia-children-unhealthy-unicef-report/", - "pubDate": "Thu, 14 Dec 2023 07:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/13/TELEMMGLPICT000177894545_17024917897590_trans_NvBQzQNjv4Bq_NJ62v2ZFDvrR1Z2dUS5zP4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "content": "", - "contentSnippet": "", - "guid": "2b0a03c5-27c0-3e4e-8150-11534d9d52c7", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/ultra-processed-foods", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sugar", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/obesity", - "$": { - "domain": "" - } - }, - { - "_": "structure:climate-and-people", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T07:00:00.000Z" - }, - { - "creator": "Danielle Sheridan", - "title": "Britain to build next-generation fighter jets under historic deal", - "link": "https://www.telegraph.co.uk/news/2023/12/14/britain-supersonic-fighter-jets-deal-japan-italy/", - "pubDate": "Thu, 14 Dec 2023 04:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/13/TELEMMGLPICT000343931512_17024974309300_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Danielle Sheridan", - "content": "", - "contentSnippet": "", - "guid": "3169e86a-6a42-33c0-a601-39820415cd8a", - "categories": [ - { - "_": "topics:people/grant-shapps", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ministry-of-defence", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/typhoon-jets", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/japan", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/italy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T04:00:00.000Z" - }, - { - "creator": "Tony Diver ", - "title": "US House votes to open Biden impeachment inquiry", - "link": "https://www.telegraph.co.uk/world-news/2023/12/13/hunter-biden-us-capitol-statement/", - "pubDate": "Thu, 14 Dec 2023 00:49:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359923948_17025094153780_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tony Diver ", - "content": "", - "contentSnippet": "", - "guid": "2ced949a-ebf5-3514-b6df-c57d2f602b54", - "categories": [ - { - "_": "topics:people/hunter-biden", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/joe-biden", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/donald-trump", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/north-america", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/washington", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/republicans", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-14T00:49:18.000Z" - }, - { - "creator": "Mike McGrath", - "title": "Champions League 2024: How next season\u2019s new \u2018Swiss Model\u2019 format works", - "link": "https://www.telegraph.co.uk/football/0/champions-league-2024-swiss-model-new-format-explained/", - "pubDate": "Wed, 13 Dec 2023 22:32:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000345123713_17024845873840_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mike McGrath", - "content": "", - "contentSnippet": "", - "guid": "7d20023e-a532-3b56-8cd7-38cf73198ba4", - "categories": [ - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/uefa", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T22:32:14.000Z" - }, - { - "creator": "Luke Slater", - "title": "Gustaf Lagerbielke earns Celtic first Champions League home win in a decade", - "link": "https://www.telegraph.co.uk/football/2023/12/13/celtic-vs-feyenoord-live-score-updates-champions-league/", - "pubDate": "Wed, 13 Dec 2023 22:25:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000359915917_17025048731680_trans_NvBQzQNjv4BqyILZCJqFaBEpuz3ivC4GSua2WqtbvckMzOgCgwHEyIE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Luke Slater", - "content": "Gustaf Lagerbielke was the unlikely hero as Celtic finally ended their long wait for a Champions League win amid late drama in their dead rubber against Feyenoord at Parkhead.

]]>", - "contentSnippet": "", - "guid": "78e3d422-e5a0-3de0-88d8-60f1374c86d4", - "categories": [ - { - "_": "topics:organisations/celtic-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T22:25:17.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "British Museum deputy director to leave his post following theft inquiry", - "link": "https://www.telegraph.co.uk/news/2023/12/13/british-museum-deputy-director-jonathan-williams-to-leave/", - "pubDate": "Wed, 13 Dec 2023 22:24:16 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/13/TELEMMGLPICT000346082226_17025053559660_trans_NvBQzQNjv4BqT2xJ7tkgk1II-iWDHlDH9wQeqCAg1t52tBioCzmpjw4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "content": "", - "contentSnippet": "", - "guid": "9b821851-88ee-3f57-9665-88096e98d760", - "categories": [ - { - "_": "topics:places/british-museum", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T22:24:16.000Z" - }, - { - "creator": "Josh Burrows", - "title": "All 16 Champions League 2023-24 knockout teams ranked, plus when the draw happens", - "link": "https://www.telegraph.co.uk/football/0/champions-league-knockout-draw-2023-2024-when-tv-team-rank/", - "pubDate": "Wed, 13 Dec 2023 22:03:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000359813116_17024654738050_trans_NvBQzQNjv4BqCDHiROgop-O61LVMHiEGzcFkLFwB-0Q2cnJYFFt9vys.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Josh Burrows", - "content": "", - "contentSnippet": "", - "guid": "1454ea5a-4cfc-3706-a0d6-2af2ef2dd2f4", - "categories": [ - { - "_": "topics:organisations/arsenal-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/manchester-city-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/real-madrid-cf", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/fc-barcelona", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/fc-bayern-munich", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T22:03:40.000Z" - }, - { - "creator": "Chris Price", - "title": "Interest rates to fall by 1 percentage point within 12 months, City predicts", - "link": "https://www.telegraph.co.uk/business/2023/12/13/ftse-100-markets-latest-news-gdp-us-interest-rates-live/", - "pubDate": "Wed, 13 Dec 2023 20:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/13/TELEMMGLPICT000355328338_17024887981850_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf-0Jyi0jPPD6Zx1hiwTPhlc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "Money markets are predicting the Bank of England will reduce interest rates by a whole percentage point to 4.25pc next year.

]]>", - "contentSnippet": "", - "guid": "9a2b9af6-0f64-37af-b0be-930579c7fade", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T20:00:00.000Z" - }, - { - "creator": "Guy Kelly", - "title": "18 ways the middle classes have ruined Christmas", - "link": "https://www.telegraph.co.uk/christmas/2023/12/13/how-the-middle-classes-ruined-christmas/", - "pubDate": "Wed, 13 Dec 2023 18:36:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/13/TELEMMGLPICT000359890824_17024924211650_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Guy Kelly", - "content": "", - "contentSnippet": "", - "guid": "bbf162db-40ad-33ea-b4ed-d188d9fb0773", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T18:36:15.000Z" - }, - { - "creator": "Paul Nuki", - "title": "\u2018Nothing will stop us\u2019 \u2013 Netanyahu says war against Hamas will continue despite global pressure", - "link": "https://www.telegraph.co.uk/world-news/2023/12/13/israel-war-hamas-western-allies-joe-biden-gaza/", - "pubDate": "Wed, 13 Dec 2023 18:28:31 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359672246_17025007417610_trans_NvBQzQNjv4BqoBoyx_R5Fm8icbD09kIPev4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Paul Nuki", - "content": "", - "contentSnippet": "", - "guid": "c7dfa3d2-c520-3f6d-81aa-697dc636f49e", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/usa", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/joe-biden", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/us-election", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T18:28:31.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Wednesday evening news briefing: Lineker tweets 'probably broke BBC guidelines'", - "link": "https://www.telegraph.co.uk/news/2023/12/13/wednesday-evening-news-briefing-lineker-tweet-bbc-guideline/", - "pubDate": "Wed, 13 Dec 2023 17:44:52 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "dab9e523-c947-3433-b5b6-35e33e915938", - "categories": [ - { - "_": "topics:people/gary-linekar", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/wales", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/sir-patrick-vallance", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T17:44:52.000Z" - }, - { - "creator": "Rozina Sabur", - "title": "2024 US election: Your complete guide", - "link": "https://www.telegraph.co.uk/news/0/us-presidential-election-2024-when-dates-candidates-voting/", - "pubDate": "Wed, 13 Dec 2023 17:41:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/08/TELEMMGLPICT000237936068_17020674565320_trans_NvBQzQNjv4BqOkklezvl6plKk2JrOAyHeUgkbiPAMGYa0jZKn-IKTQw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rozina Sabur", - "content": "", - "contentSnippet": "", - "guid": "9fc77557-471e-3b07-a30f-b1a8badd19f6", - "categories": [ - { - "_": "topics:events/us-election", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/us-politics", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/donald-trump", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/joe-biden", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/usa", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/white-house", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T17:41:36.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best vacuum cleaners in 2023, plus everything you need to know before you buy", - "link": "https://www.telegraph.co.uk/recommended/home/best-vacuum-cleaner/", - "pubDate": "Wed, 13 Dec 2023 17:34:54 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/18/TELEMMGLPICT000336105635_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "2a0aa18d-1419-3e57-a91c-855a122d74ae", - "categories": [ - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vacuum-cleaners", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T17:34:54.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Hamas 'unresponsive' to attempts to restart hostage talks with Israel", - "link": "https://www.telegraph.co.uk/world-news/2023/12/13/israel-hamas-war-latest-news-updates-gaza-day-68-live/", - "pubDate": "Wed, 13 Dec 2023 16:14:32 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359878575_17024850532360_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "content": "Hamas is not replying to requests to revive hostage negotiations, US sources say.

]]>", - "contentSnippet": "", - "guid": "5144bdd3-ce6a-3b02-9c77-b868c4241aff", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T16:14:32.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Rishi Sunak latest: Starmer claims Tories in 'meltdown' over Rwanda Bill", - "link": "https://www.telegraph.co.uk/politics/2023/12/13/rishi-sunak-latest-news-rwanda-bill-tories-live/", - "pubDate": "Wed, 13 Dec 2023 16:00:12 GMT", - "dc:creator": "Jack Maidment", - "content": "Sir Keir Starmer claimed the Conservative Party was in \u201cmeltdown\u201d over the Rwanda Bill as he attempted to take advantage of Tory divisions. 

]]>", - "contentSnippet": "", - "guid": "7c0fc088-ccde-3e79-b200-89768b12f213", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T16:00:12.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Ukraine-Russia war: We will fight with or without the West, says Zelensky", - "link": "https://www.telegraph.co.uk/world-news/2023/12/13/ukraine-russia-war-news-latest-missile-strike-kyiv-live/", - "pubDate": "Wed, 13 Dec 2023 15:05:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359860612_17024798399330_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "content": "Volodymyr Zelensky has vowed Ukraine will fight on against Russia with or without Western support.

]]>", - "contentSnippet": "", - "guid": "343d1f86-2a2a-39d2-8de1-ab0ffce5f6ac", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T15:05:35.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - 90% of Russian invasion force \u2018dead or wounded\u2019", - "link": "https://www.telegraph.co.uk/world-news/2023/12/13/90-of-russian-invasion-force-dead-or-wounded/", - "pubDate": "Wed, 13 Dec 2023 15:03:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/12/TELEMMGLPICT000359765906_17024001615460_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "bb0e1c9e-0cc0-3684-b941-7b0781fceb73", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T15:03:15.000Z" - }, - { - "creator": "Gareth A Davies", - "title": "Tyson Fury vs Oleksandr Usyk: When is the fight, how to watch and the undercard line-up", - "link": "https://www.telegraph.co.uk/boxing/0/tyson-fury-vs-oleksandr-usyk-when-date-tv-undercard/", - "pubDate": "Wed, 13 Dec 2023 14:56:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/boxing/2023/11/16/TELEMMGLPICT000354817954_17001448694440_trans_NvBQzQNjv4BqMI1LvyrVLfIFrd7O2yQz27LZhoUJXRy_slhDUzUzVKo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Gareth A Davies", - "content": "", - "contentSnippet": "", - "guid": "53c5ba1a-f848-34d4-8437-a731f8234f4e", - "categories": [ - { - "_": "topics:people/tyson-fury", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/oleksandr-usyk", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/saudi-arabia", - "$": { - "domain": "" - } - }, - { - "_": "structure:boxing", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T14:56:10.000Z" - }, - { - "creator": "Daniel Zeqiri", - "title": "Anthony Joshua vs Wallin, Deontay Wilder vs Parker: When is it and how to watch", - "link": "https://www.telegraph.co.uk/boxing/0/anthony-joshua-vs-wallin-wilder-vs-parker-when-how-watch/", - "pubDate": "Wed, 13 Dec 2023 14:39:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/boxing/2023/11/23/TELEMMGLPICT000356836155_17007433521810_trans_NvBQzQNjv4Bq_MBhvjUqhIfRd2_dxg_gJ5gojZYlP8f0i9h2tPqCNsM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Daniel Zeqiri", - "content": "", - "contentSnippet": "", - "guid": "875430de-e378-32b6-bec0-23b508ad7005", - "categories": [ - { - "_": "topics:events/anthony-joshua-vs-deontay-wilder", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/anthony-joshua", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/deontay-wilder", - "$": { - "domain": "" - } - }, - { - "_": "structure:boxing", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T14:39:17.000Z" - }, - { - "creator": "Tom Parry", - "title": "The British surgeon bringing hope to generations of children with birth defects", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/iraq-cleft-palate-operations-surgery-birth-defects/", - "pubDate": "Wed, 13 Dec 2023 14:14:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/13/TELEMMGLPICT000359759721_17024685566610_trans_NvBQzQNjv4Bqn2n2hk5qKEJ--A9z8HbLAj7qDM1k-FXUpc9UWB6g6Ho.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom Parry", - "content": "", - "contentSnippet": "", - "guid": "37de1286-066c-3afb-887d-e5d5cf611b2d", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/childbirth", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cosmetic-surgery", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/iraq", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T14:14:19.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "\u2018Rape is cheaper than bullets\u2019: The psychology behind sexual violence in war", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/rape-sexual-violence-weapon-of-war-hamas-israel/", - "pubDate": "Wed, 13 Dec 2023 13:13:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/13/TELEMMGLPICT000358070555_17024706686250_trans_NvBQzQNjv4BqyBQSM7W3TfwBviL2F2h2i1HmPOpeFd0SyQx9dn7kM_w.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "cf3f1fc4-00b9-36a9-901f-30591974da18", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/rape", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/sexual-assault", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Conflict", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T13:13:34.000Z" - }, - { - "creator": "Jack Rear", - "title": "\u2018We got married six months after Roy was diagnosed with dementia \u2013 I didn\u2019t want to hang around\u2019 ", - "link": "https://www.telegraph.co.uk/christmas/2023/12/13/we-got-married-six-months-after-roy-was-diagnosed-dementia/", - "pubDate": "Wed, 13 Dec 2023 12:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/12/TELEMMGLPICT000359734552_17023895419070_trans_NvBQzQNjv4BqGGPdpMrnFG8P-EeX9eqH-4lgJj0ORT7sXzmd0O8KNSA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Rear", - "content": "", - "contentSnippet": "", - "guid": "0700a475-39d7-3f6e-8dff-08973ef6c0d5", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/race-against-dementia", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T12:00:00.000Z" - }, - { - "creator": "Emma Gatten", - "title": "Cop28 agrees historic deal to shift away from fossil fuels", - "link": "https://www.telegraph.co.uk/news/2023/12/13/cop28-summit-landmark-deal-transition-away-fossil-fuels/", - "pubDate": "Wed, 13 Dec 2023 10:30:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/13/TELEMMGLPICT000359836864_17024593207610_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emma Gatten", - "content": "", - "contentSnippet": "", - "guid": "faba803e-a0df-3189-8121-de412863cbe8", - "categories": [ - { - "_": "topics:events/cop28", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/climate-change", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/dubai", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-arab-emirates", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/oil", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T10:30:24.000Z" - }, - { - "creator": "Tim Wigmore", - "title": "West Indies rain down sixes on England in Barbados T20 drubbing", - "link": "https://www.telegraph.co.uk/cricket/2023/12/12/west-indies-v-england-first-t20-live-score-latest-updates/", - "pubDate": "Wed, 13 Dec 2023 07:06:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/13/TELEMMGLPICT000359816899_17024552696110_trans_NvBQzQNjv4BqhYSm7MpWY_LY3R3uB5kFLQmhchOEM8HUA63nVw5KCOw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Wigmore", - "content": "The power; the poise; the sheer audacity to see a fielder on the boundary ropes as no encumbrance at all. England were braced for what to expect from West Indies\u2019 phalanx of six-hitters at a heaving Kensington Oval.

]]>", - "contentSnippet": "", - "guid": "fe3fdb06-15a8-39cc-81b4-ba2932509cce", - "categories": [ - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/west-indies-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jos-buttler", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T07:06:05.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "Brooklyn Nine-Nine actor Andre Braugher dies aged 61", - "link": "https://www.telegraph.co.uk/world-news/2023/12/13/actor-andre-braugher-dies-aged-61/", - "pubDate": "Wed, 13 Dec 2023 05:13:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359816845_17024376502620_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "content": "", - "contentSnippet": "", - "guid": "97618d61-ff6a-38e1-9cdb-01d78d82c201", - "categories": [ - { - "_": "topics:things/celebrity-news", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hollywood", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T05:13:27.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "New draft of Cop28 deal calls for 'transitioning away' from fossil fuels", - "link": "https://www.telegraph.co.uk/world-news/2023/12/13/cop28-draft-deal-calls-for-transition-away-fossil-fuels/", - "pubDate": "Wed, 13 Dec 2023 04:49:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359781104_17024420528580_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "content": "", - "contentSnippet": "", - "guid": "c10d9539-27ae-389e-a402-0c735c42e8c3", - "categories": [ - { - "_": "topics:things/climate-change", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/cop28", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/oil", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gas", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T04:49:51.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "Bodies of two hostages recovered in Gaza, says Israel", - "link": "https://www.telegraph.co.uk/world-news/2023/12/13/bodies-two-hostages-eden-zakaria-ziv-dado-recovered/", - "pubDate": "Wed, 13 Dec 2023 02:24:33 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359778870_17024334132440_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwVVuduJKBIVmdsWxwOVYZQY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "content": "", - "contentSnippet": "", - "guid": "2c08b01c-43f4-3314-8316-9d9aef8868f1", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T02:24:33.000Z" - }, - { - "creator": "Will Bolton", - "title": "Three teenagers killed in Wales crash are named", - "link": "https://www.telegraph.co.uk/news/2023/12/12/teenagers-dead-bus-car-crash-wales/", - "pubDate": "Tue, 12 Dec 2023 22:38:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/12/TELEMMGLPICT000359805939_17024207013490_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Will Bolton", - "content": "", - "contentSnippet": "", - "guid": "16dfb0f7-c27a-3331-bab5-0f645042cd52", - "categories": [ - { - "_": "topics:places/wales", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/road-accident", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T22:38:40.000Z" - }, - { - "creator": "Sam Dean", - "title": "Mikel Arteta hails Declan Rice experiment as Arsenal plan for the worst", - "link": "https://www.telegraph.co.uk/football/2023/12/12/psv-eindhoven-v-arsenal-live-score-updates-champions-league/", - "pubDate": "Tue, 12 Dec 2023 21:25:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/12/TELEMMGLPICT000359782126_17024156927570_trans_NvBQzQNjv4BqfZf_3eswfJk7x5I0-C2ncoR5O6D1FN5DaQMRXt215jY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Dean", - "content": "It is a measure of Arsenal\u2019s success in this season\u2019s Champions League that their trip to Eindhoven was such a strange one. Mikel Arteta\u2019s side required only five games to guarantee top spot in Group B, which meant that their sixth was little more than a chance for the Arsenal manager to experiment with his side.

]]>", - "contentSnippet": "", - "guid": "a9fefc1c-7b2c-3587-b6e0-97d0e47fff1f", - "categories": [ - { - "_": "topics:organisations/psv-eindhoven", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/arsenal-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/champions-league-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T21:25:53.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Rishi Sunak wins Rwanda Bill vote despite Tory rebellion fears", - "link": "https://www.telegraph.co.uk/politics/2023/12/12/rishi-sunak-latest-news-tories-labour-starmer-live/", - "pubDate": "Tue, 12 Dec 2023 21:19:20 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/12/TELEMMGLPICT000359783856_17024153915490_trans_NvBQzQNjv4BqI_nWroZV2Kj5BLP-0LLaCIHfEAEFhL-u0ty4swBHXHA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "content": "Rishi Sunak\u2019s Rwanda Bill has passed its first hurdle in the House of Commons despite fears of a Tory rebellion, by 313 votes to 269.

]]>", - "contentSnippet": "", - "guid": "1894a6c6-583e-3b16-a5b3-b5792c26b196", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T21:19:20.000Z" - }, - { - "creator": "Sam Green", - "title": "Team GB at Paris Olympics: Who are the British athletes to watch at the 2024 Games?", - "link": "https://www.telegraph.co.uk/olympics/2023/12/12/team-gb-paris-olympics-2024-who-british-athletes-uk/", - "pubDate": "Tue, 12 Dec 2023 18:31:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/olympics/2023/12/07/TELEMMGLPICT000356815679_17019734880590_trans_NvBQzQNjv4BqohsGFk6lowxuVmfrTuwcJT9ASLmGjYcg7PvUxmdwfLM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Green", - "content": "", - "contentSnippet": "", - "guid": "134182bc-150c-34f1-a025-92b861befd12", - "categories": [ - { - "_": "topics:organisations/team-gb", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/paris-olympics-2024", - "$": { - "domain": "" - } - }, - { - "_": "structure:olympics", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-climbing", - "$": { - "domain": "" - } - }, - { - "_": "structure:triathlon", - "$": { - "domain": "" - } - }, - { - "_": "structure:sailing", - "$": { - "domain": "" - } - }, - { - "_": "structure:canoeing", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T18:31:10.000Z" - }, - { - "creator": "James Warrington", - "title": "Thames Water doesn't have enough money to pay back debt, admits boss", - "link": "https://www.telegraph.co.uk/business/2023/12/12/ftse-100-markets-latest-ons-interest-rates-live/", - "pubDate": "Tue, 12 Dec 2023 18:24:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/12/TELEMMGLPICT000340988784_17023986604750_trans_NvBQzQNjv4BqaHd6X3lW3lGv45Ug3tlONV5NUcTKNHKqy85KLqtvPLE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "James Warrington", - "content": "Thames Water does not have enough money to pay back its debt ahead of a looming deadline, the boss of the struggling utility company has admitted.

]]>", - "contentSnippet": "", - "guid": "487b0c81-3745-3d87-9bbe-0bad47c9de23", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T18:24:30.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Tuesday evening news briefing: Sunak was in 'stroppy teenager mode' in meeting with Tory MPs", - "link": "https://www.telegraph.co.uk/news/2023/12/12/tuesday-evening-news-briefing-sunak-stroppy-teenager-mode/", - "pubDate": "Tue, 12 Dec 2023 17:40:47 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "c6f493aa-a4be-3cfb-ad2b-5b6f93a8eb76", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/nigel-farage", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/migration", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T17:40:47.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Zelensky to make last-ditch plea for war funds in Washington", - "link": "https://www.telegraph.co.uk/world-news/2023/12/12/zelensky-to-make-last-ditch-plea-for-war-funds-in-washingto/", - "pubDate": "Tue, 12 Dec 2023 16:56:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/12/TELEMMGLPICT000359765906_17024001615460_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "8c9bb029-b6c6-3081-bb8a-eb6432b12585", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T16:56:43.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Israel-Hamas war: Israel and US at odds over Gaza future, says Netanyahu", - "link": "https://www.telegraph.co.uk/world-news/2023/12/12/israel-hamas-gaza-war-latest-news/", - "pubDate": "Tue, 12 Dec 2023 16:01:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/12/TELEMMGLPICT000359755021_17023917917080_trans_NvBQzQNjv4Bqy66hu0TpIy4d7oO0NBM5NTQnC5DCw90YHLKHXFlQeAE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "content": "Israel and the US are at odds over how Gaza will be governed after the war, Benjamin Netanyahu has admitted.

]]>", - "contentSnippet": "", - "guid": "75a1dd4b-fb43-3424-b133-77de5316a46f", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T16:01:10.000Z" - }, - { - "creator": "Nicola Smith", - "title": "How Taiwan\u2019s disease detectives are keeping tabs on China", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/how-taiwans-disease-detectives-are-keeping-tabs-on-china/", - "pubDate": "Tue, 12 Dec 2023 14:48:54 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/12/TELEMMGLPICT000258910420_17023902438700_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Nicola Smith", - "content": "", - "contentSnippet": "", - "guid": "db21d3e7-894e-37ff-943d-22bdf4a0713a", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pandemics-epidemics", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/taiwan", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/china", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T14:48:54.000Z" - }, - { - "creator": "Jeremy Wilson", - "title": "Paris 2024 Olympics: When will the next Summer Games take place?", - "link": "https://www.telegraph.co.uk/olympics/0/paris-2024-olympics-when-next-games-event-date-start/", - "pubDate": "Tue, 12 Dec 2023 13:23:56 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/olympics/2023/06/20/TELEMMGLPICT000339966766_16872749685070_trans_NvBQzQNjv4BqhQelLrTDvVmMF_2MRiRVvaAezwuvexs_ues-aCB_TCg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jeremy Wilson", - "content": "", - "contentSnippet": "", - "guid": "37b5e70a-b943-3abe-a175-1fa34959b502", - "categories": [ - { - "_": "topics:events/tokyo-olympics-2020", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/france", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/paris", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:olympics", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T13:23:56.000Z" - }, - { - "creator": "Sarah Newey", - "title": "Myanmar overtakes Afghanistan as world\u2019s largest producer of opium", - "link": "https://www.telegraph.co.uk/global-health/climate-and-people/myanmar-afghanistan-opium-producer-un-health/", - "pubDate": "Tue, 12 Dec 2023 12:20:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/12/TELEMMGLPICT000359713355_17023807057680_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "content": "", - "contentSnippet": "", - "guid": "b1b11a3d-a5f0-3776-b37d-e4f238c8a739", - "categories": [ - { - "_": "topics:places/myanmar", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/afghanistan", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/drugs", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/taliban", - "$": { - "domain": "" - } - }, - { - "_": "structure:climate-and-people", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T12:20:53.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "Britain\u2019s largest nursing body calls on Foreign Secretary to up UK aid spending", - "link": "https://www.telegraph.co.uk/global-health/climate-and-people/royal-college-of-nursing-aid-spending-letter-david-cameron/", - "pubDate": "Tue, 12 Dec 2023 12:19:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/12/TELEMMGLPICT000357710112_17023833119950_trans_NvBQzQNjv4Bq3dDXxxrv_FBe_bxVyxLkOI-BmsTVKaCg_eFiTMLOQoc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "8783e191-c5af-36ab-9e60-2901905ab309", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/royal-college-of-nursing", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/david-cameron", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/foreign-aid", - "$": { - "domain": "" - } - }, - { - "_": "structure:climate-and-people", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T12:19:50.000Z" - }, - { - "creator": "Diana Henry", - "title": "Roast cauliflower, Lancashire cheese and nutmeg tart recipe", - "link": "https://www.telegraph.co.uk/recipes/0/cauliflower-cheese-nutmeg-tart-diana-henry-recipe/", - "pubDate": "Tue, 12 Dec 2023 11:54:49 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/11/TELEMMGLPICT000359655611_17023062805090_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "201cc87e-bf5d-3ea6-92a4-c4afe0c2a651", - "categories": [ - { - "_": "topics:things/cheese-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cauliflower-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tart-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-party-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/roast-dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T11:54:49.000Z" - }, - { - "creator": "Diana Henry", - "title": "Aubergine, pumpkin and rice \u2018cake\u2019 with saffron butter and harissa yoghurt recipe", - "link": "https://www.telegraph.co.uk/recipes/0/aubergine-pumpkin-rice-cake-diana-henry-recipe/", - "pubDate": "Tue, 12 Dec 2023 11:52:01 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/11/TELEMMGLPICT000359655622_17023071881440_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "b157c035-4607-3e00-9f38-050e280617ea", - "categories": [ - { - "_": "topics:things/pumpkin-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/aubergine-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/rice-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-party-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T11:52:01.000Z" - }, - { - "creator": "Diana Henry", - "title": "Upside-down parsnip nut roast recipe", - "link": "https://www.telegraph.co.uk/recipes/0/upside-down-parsnip-nut-roast-recipe/", - "pubDate": "Tue, 12 Dec 2023 11:39:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/11/TELEMMGLPICT000359655630_17023055082050_trans_NvBQzQNjv4Bqn51i3BMdqqmX25mZfhwCXYnsfHmkTN8kfZYRzPAd8Ww.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "e3832a84-f9cb-30bc-b0e7-e7fecdb6fa86", - "categories": [ - { - "_": "topics:things/christmas-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/parsnip-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/roast-dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T11:39:35.000Z" - }, - { - "creator": "Samuel Lovett", - "title": "WHO convoy hit by bullets while driving through Gaza, says agency chief", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/who-medical-convoy-hit-by-bullets-in-gaza-israel-hamas-war/", - "pubDate": "Tue, 12 Dec 2023 11:01:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/12/TELEMMGLPICT000359734198_17023777599630_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Samuel Lovett", - "content": "", - "contentSnippet": "", - "guid": "571f1ae3-fe51-3af6-9ec5-5d6ee67752b6", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/world-health-organisation", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T11:01:36.000Z" - }, - { - "creator": "Jeremy Wilson", - "title": "Mary Earps and Stuart Broad on BBC Sports Personality of the Year shortlist", - "link": "https://www.telegraph.co.uk/sport/2023/12/12/earps-broad-sports-personality-of-the-year-shortlist-spoty/", - "pubDate": "Tue, 12 Dec 2023 09:46:26 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/sport/2023/12/12/TELEMMGLPICT000344543884_17023672137420_trans_NvBQzQNjv4BqyhWmxPhzrNF0kSlsvXmHZKXa43EfX41rWID_y1qQkyA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jeremy Wilson", - "content": "", - "contentSnippet": "", - "guid": "43cf3ca0-b4b7-3a52-b7ad-dc278eb1d270", - "categories": [ - { - "_": "topics:people/stuart-broad", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/rory-mcilroy", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/katarina-johnson-thompson", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/sports-personality-year", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-football", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:golf", - "$": { - "domain": "" - } - }, - { - "_": "structure:racing", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:athletics", - "$": { - "domain": "" - } - }, - { - "_": "structure:paralympic-sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-12T09:46:26.000Z" - }, - { - "creator": "Rozina Sabur", - "title": "Supreme Court asked to rule on Trump's claim of immunity from prosecution", - "link": "https://www.telegraph.co.uk/us/news/2023/12/11/supreme-court-donald-trump-claim-immunity-prosecution/", - "pubDate": "Mon, 11 Dec 2023 23:48:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/12/11/TELEMMGLPICT000359698851_17023380100150_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rozina Sabur", - "content": "", - "contentSnippet": "", - "guid": "6bb0e7d8-bf27-3dee-b4b4-97851723b5dc", - "categories": [ - { - "_": "topics:people/donald-trump", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/us-politics", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/supreme-court", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/republicans", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/court-cases", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-11T23:48:37.000Z" - }, - { - "creator": "Andrew Buncombe", - "title": "Texas Supreme Court rules against woman seeking abortion as she is forced to leave state", - "link": "https://www.telegraph.co.uk/us/news/2023/12/11/texas-abortion-roe-v-wade-court-kate-cox-left-state/", - "pubDate": "Mon, 11 Dec 2023 23:46:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/12/11/TELEMMGLPICT000359000220_17023379715320_trans_NvBQzQNjv4Bq_PtQT7ty_KMq6NH7BEfuKlgBppMzJwJjygWmpcJlrmg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Andrew Buncombe", - "content": "", - "contentSnippet": "", - "guid": "048755e7-7d36-33af-b919-1e6b1604286b", - "categories": [ - { - "_": "topics:things/abortion", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/texas", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/roe-v-wade", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-11T23:46:41.000Z" - }, - { - "creator": "Fiona Tomas", - "title": "Women's Rugby World Cup 2025: When and where is it taking place?", - "link": "https://www.telegraph.co.uk/rugby-union/0/womens-rugby-world-cup-2025-when-where-tickets-tv/", - "pubDate": "Mon, 11 Dec 2023 22:36:31 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/12/11/TELEMMGLPICT000359668686_17023338526150_trans_NvBQzQNjv4BqLfZdHPP_Jms68Nei_IBhrsdqT5H2z40LP8eYFpXRgTw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Fiona Tomas", - "content": "", - "contentSnippet": "", - "guid": "6f780266-5399-363e-9754-75f9adb5a345", - "categories": [ - { - "_": "topics:events/womens-rugby-world-cup", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-womens-rugby-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-11T22:36:31.000Z" - }, - { - "creator": "Thea Jourdan", - "title": "\u2018One minute I was enjoying an RAF training exercise, the next I was facing extinction\u2019", - "link": "https://www.telegraph.co.uk/christmas/2023/12/11/may-day-then-plane-crash-land-raf-benevolent-fund/", - "pubDate": "Mon, 11 Dec 2023 20:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/11/TELEMMGLPICT000358406972_17023150992440_trans_NvBQzQNjv4BqBsmvZk2mZ1fwwYfVv4Mu4U9uxGTFA7snVluzIJwlrX4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Thea Jourdan", - "content": "", - "contentSnippet": "", - "guid": "bbb443c2-99c7-3c64-9039-8d5e83d505d9", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/raf-benevolent-fund", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/aviation", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-11T20:00:00.000Z" - }, - { - "creator": "Riya Makwana", - "title": "US banking giant urges investors to stop betting against British property stocks", - "link": "https://www.telegraph.co.uk/business/2023/12/11/ftse-100-markets-news-twitter-alex-jones-uk-economy-latest/", - "pubDate": "Mon, 11 Dec 2023 18:11:03 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/11/TELEMMGLPICT000095192331_17023001773290_trans_NvBQzQNjv4BqW59J98bm5rsKMnvsEp3MChPeq37iFuZzBK9IYul7UJ8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Riya Makwana", - "content": "Goldman Sachs has urged investors to stop betting against UK property stocks as the market shows signs of recovery.

]]>", - "contentSnippet": "", - "guid": "a6bf899e-f441-392c-92bb-8bf22ad11f92", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-11T18:11:03.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Monday evening news briefing: Farage hints at potential return to the Tories", - "link": "https://www.telegraph.co.uk/news/2023/12/11/monday-evening-news-briefing-farage-hints-at-return-tories/", - "pubDate": "Mon, 11 Dec 2023 17:43:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "044a33e5-f732-3999-af3e-af9f737e3ec0", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/nigel-farage", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/gary-linekar", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-11T17:43:57.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Keir Starmer speech: Tory credit rating is zero, claims Labour leader - watch live", - "link": "https://www.telegraph.co.uk/politics/2024/01/04/rishi-sunak-latest-news-anderson-reform-starmer-live/", - "pubDate": "Thu, 04 Jan 2024 10:41:52 GMT", - "dc:creator": "Jack Maidment", - "content": "Sir Keir Starmer claimed the Tories\u2019 credit rating was now at \u201czero\u201d as he insisted Labour would welcome fighting the next general election on the economy. 

]]>", - "contentSnippet": "", - "guid": "598c7fd7-441b-3f97-ba43-52d2a5426b7e", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T10:41:52.000Z" - }, - { - "creator": "Gavin Newsham", - "title": "The best air purifiers of 2024 for filtering dust, germs, smoke and allergens at home", - "link": "https://www.telegraph.co.uk/recommended/home/best-air-purifiers/", - "pubDate": "Thu, 04 Jan 2024 10:34:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/10/26/TELEMMGLPICT000314053792_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Gavin Newsham", - "content": "", - "contentSnippet": "", - "guid": "943abdc8-819c-3cb2-bb80-4352d8d13ad2", - "categories": [ - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dyson", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pollution", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/bacteria", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/viruses", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T10:34:55.000Z" - }, - { - "creator": "Uche Amako", - "title": "Australian Open 2024: When is it, how to watch in UK and will Emma Raducanu play?", - "link": "https://www.telegraph.co.uk/tennis/2024/01/04/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", - "pubDate": "Thu, 04 Jan 2024 09:54:54 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/04/TELEMMGLPICT000361472773_17043614523580_trans_NvBQzQNjv4Bqf31hxWNT7i64oktrHVICFv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Uche Amako", - "content": "", - "contentSnippet": "", - "guid": "5c1402a8-6733-334d-a6ed-9b5b4bdc1d74", - "categories": [ - { - "_": "topics:people/novak-djokovic", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/carlos-alcaraz", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andy-murray", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/emma-raducanu", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T09:54:54.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Israel-Hamas war latest: Funeral of senior Hamas leader due to take place today", - "link": "https://www.telegraph.co.uk/world-news/2024/01/04/israel-hamas-gaza-palestine-war-latest-news/", - "pubDate": "Thu, 04 Jan 2024 09:54:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/04/TELEMMGLPICT000361512049_17043581278020_trans_NvBQzQNjv4BqqiUuvBizZT2q34Osm0tNw9LO529jWexQu7u975-F90g.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "content": "The funeral of a senior Hamas leader assassinated by Israel is due to take place in Lebanon today amid heightened fears of a regional escalation.

]]>", - "contentSnippet": "Hamas leader assassinated by Israel is due to take place in Lebanon today amid heightened fears of a regional escalation.\n]]>", - "guid": "94bdc7cd-1ead-3a4e-a842-6020635e2999", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T09:54:10.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best lawnmowers in 2024, plus everything you need to know before you buy", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-lawnmowers-everything-need-know-buy/", - "pubDate": "Thu, 04 Jan 2024 09:51:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/04/18/TELEMMGLPICT000332489995_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "e34be1e9-57fb-3c4d-9faa-920bcfe2c7a8", - "categories": [ - { - "_": "topics:things/lawnmowers", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lawns", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T09:51:17.000Z" - }, - { - "creator": "Jack Rear", - "title": "\u2018My fianc\u00e9 was given just days to live from terminal cancer \u2013 we arranged our wedding in 72 hours\u2019", - "link": "https://www.telegraph.co.uk/christmas/2024/01/04/terminal-cancer-wedding-relationship-marie-curie-hospice/", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/02/TELEMMGLPICT000361421023_17042021848170_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Rear", - "content": "", - "contentSnippet": "", - "guid": "6e233183-31f9-359c-a984-6c6c4662f8f4", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/marie-curie", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/relationships", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cancer", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/marriage", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "Chris Price", - "title": "Goldman Sachs predicts faster interest rate cuts - latest updates", - "link": "https://www.telegraph.co.uk/business/2024/01/04/ftse-100-markets-news-latest-next-zero-inflation-space-x/", - "pubDate": "Thu, 04 Jan 2024 08:29:52 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/04/TELEMMGLPICT000352101482_17043586471630_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "The Bank of England will begin cutting interest rates from May, Goldman Sachs has predicted, in a move it says will save households \u00a311bn by the end of next year.

]]>", - "contentSnippet": "", - "guid": "003c05a6-14d6-33c9-8b59-0a5b3441402e", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T08:29:52.000Z" - }, - { - "creator": "Susie Coen", - "title": "Trump, Michael Jackson and a \u2018well-known PM\u2019 named in Epstein court files", - "link": "https://www.telegraph.co.uk/us/news/2024/01/03/jeffrey-epstein-court-files-unveiled-associates-list-latest/", - "pubDate": "Thu, 04 Jan 2024 07:02:29 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2024/01/04/TELEMMGLPICT000322943452_17043318769050_trans_NvBQzQNjv4BqgGkfkDQxy4meE2pwF2fWRLd6utTwIsRl1bpljMX6vR4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Susie Coen", - "content": "Prince Andrew, Bill Clinton, Michael Jackson and Stephen Hawking are among the names identified in newly released court filings related to convicted paedophile Jeffrey Epstein.

]]>", - "contentSnippet": "", - "guid": "0be6e00a-e18a-3251-8503-71e615cfafe0", - "categories": [ - { - "_": "topics:people/jeffrey-epstein", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/ghislaine-maxwell", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/prince-andrew", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/new-york", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/virginia-roberts-giuffre", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T07:02:29.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Man arrested in Liverpool after reports of shots fired at cinema", - "link": "https://www.telegraph.co.uk/news/2024/01/04/liverpool-showcase-cinema-gun-threat-police-search/", - "pubDate": "Thu, 04 Jan 2024 06:44:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/04/TELEMMGLPICT000361534113_17043555096030_trans_NvBQzQNjv4BqP509U-hNBRDgbEmbBtxV6K17zuUDFlwyNwA8GM4rC5o.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "content": "", - "contentSnippet": "", - "guid": "9b4996c0-9c74-34e6-b261-146fcd59196a", - "categories": [ - { - "_": "topics:places/liverpool", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/gun-violence", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T06:44:55.000Z" - }, - { - "creator": "Daniel Zeqiri", - "title": "Luke Littler's dream dies in defeat by Luke Humphries in sensational world darts final", - "link": "https://www.telegraph.co.uk/darts/2024/01/03/luke-littler-vs-humphries-live-score-updates-world-final/", - "pubDate": "Thu, 04 Jan 2024 00:06:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/darts/2024/01/03/TELEMMGLPICT000361515109_17043194753720_trans_NvBQzQNjv4BqLMGRUzrWVFJugz-ekQrRIInkenXoZfFW0KI3an4enY4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Daniel Zeqiri", - "content": "The nation\u2019s heart might have favoured Luke Littler but, in the sporting bearpit that is Alexandra Palace, cold-headed logic would ultimately prevail.

]]>", - "contentSnippet": "", - "guid": "d0455acd-537a-39c8-bbf3-a56d161a2711", - "categories": [ - { - "_": "topics:events/world-darts-championship", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/luke-littler", - "$": { - "domain": "" - } - }, - { - "_": "structure:darts", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T00:06:35.000Z" - }, - { - "creator": "Joe Barnes", - "title": "Iran split over whether to blame Israel as bombs kill at least 95 at grave of terrorist chief", - "link": "https://www.telegraph.co.uk/world-news/2024/01/03/israel-hamas-war-gaza-palestine-lebanon-latest-news/", - "pubDate": "Wed, 03 Jan 2024 22:18:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/03/TELEMMGLPICT000361490488_17043163332570_trans_NvBQzQNjv4BqZjHC1CawyhCYfmdoGgKrwAd7J34iU-cIItsnWCiFKlE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joe Barnes", - "content": "At least 95 people were killed on Wednesday when two bombs detonated by remote control tore through a crowd at the grave of Qassim Soleimani, the figurehead of Iran\u2019s global terrorist operations.

]]>", - "contentSnippet": "", - "guid": "307db728-fda7-35e3-9102-507683d49e8d", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T22:18:05.000Z" - }, - { - "creator": "Robert Mendick", - "title": "Johnson condemns Met Police investigation into Israel \u2018war crimes\u2019", - "link": "https://www.telegraph.co.uk/news/2024/01/03/boris-johnson-condemns-police-investigation-israel-gaza/", - "pubDate": "Wed, 03 Jan 2024 22:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/03/TELEMMGLPICT000361510156_17043169780210_trans_NvBQzQNjv4BqtGQB12KHxxQCrwnTZkX0nwgWqwm85JEWpGVhFb46TTg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Robert Mendick", - "content": "", - "contentSnippet": "", - "guid": "c45aa871-ab86-34a5-b4f9-ccf579d8694b", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/international-criminal-court", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/boris-johnson", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/iran", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T22:00:00.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "Four children and litter of puppies killed in Connecticut house fire", - "link": "https://www.telegraph.co.uk/us/news/2024/01/03/connecticut-fire-somers-children-puppies-killed-latest-news/", - "pubDate": "Wed, 03 Jan 2024 21:26:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2024/01/03/TELEMMGLPICT000361502089_17043163760090_trans_NvBQzQNjv4Bq8juO8C_Vdx2cT20LARTibnFLfv0ucAwTrkjYdq767p4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "content": "", - "contentSnippet": "", - "guid": "89b41821-0dbb-39bb-bef4-f080e459ed40", - "categories": [ - { - "_": "topics:things/fire", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T21:26:24.000Z" - }, - { - "creator": "Laura Fowler", - "title": "The best family hotels in the Mediterranean for a summer family holiday", - "link": "https://www.telegraph.co.uk/travel/destinations/europe/articles/best-family-friendly-hotels-in-the-mediterranean/", - "pubDate": "Wed, 03 Jan 2024 20:30:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/2021/May/dune-le-sabine-hotel-sardinia-pr-2-p.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Laura Fowler", - "content": "", - "contentSnippet": "", - "guid": "41864160-9d06-37f9-a12f-0e4ce2b3edc4", - "categories": [ - { - "_": "topics:places/europe", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/france", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/korcula", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/corfu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/italy", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/family-holidays", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hvar", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/mykonos", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/majorca", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/spain", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ibiza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/catalonia", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/greece", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/menorca", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/costa-brava", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/costa-del-sol", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/puglia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/rhodes", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/sardinia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/greek-islands", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/hotels", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/dubrovnik", - "$": { - "domain": "" - } - }, - { - "_": "structure:hotel-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/amalfi-coast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/sicily", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/skiathos", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/crete", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/cyclades", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/croatia", - "$": { - "domain": "" - } - }, - { - "_": "default:eg_general", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T20:30:00.000Z" - }, - { - "creator": "Chris Price", - "title": "Putin ships record gas supplies to China to prop up war economy", - "link": "https://www.telegraph.co.uk/business/2024/01/03/ftse-100-markets-latest-news-uk-interest-rates-bank-england/", - "pubDate": "Wed, 03 Jan 2024 18:41:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/03/TELEMMGLPICT000361345756_17042946064910_trans_NvBQzQNjv4Bq41ARBwgMvd1zOb2ypA9Bgcw6-9Wqr-sUXFTDR9QLrrM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "Russian energy giant Gazprom has announced a new daily record for the amount of gas supplied to China as Vladimir Putin seeks to prop up his war economy.

]]>", - "contentSnippet": "", - "guid": "69409abd-c550-3ece-8e54-9b56451233c8", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T18:41:27.000Z" - }, - { - "creator": "Telegraph Sport Reporters", - "title": "Video: Luke Littler playing darts while still in nappies", - "link": "https://www.telegraph.co.uk/darts/2024/01/03/video-luke-littler-playing-darts-in-nappies-watch/", - "pubDate": "Wed, 03 Jan 2024 18:28:05 GMT", - "dc:creator": "Telegraph Sport Reporters", - "content": "", - "contentSnippet": "", - "guid": "afd2616e-339f-3e3b-9625-4f690424b695", - "categories": [ - { - "_": "topics:people/luke-littler", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/world-darts-championship", - "$": { - "domain": "" - } - }, - { - "_": "structure:darts", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T18:28:05.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Wednesday evening news briefing: Reform UK rules out election pact with Tories", - "link": "https://www.telegraph.co.uk/news/2024/01/03/wednesday-evening-news-briefing-reform-tories-pact/", - "pubDate": "Wed, 03 Jan 2024 17:49:42 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "4f402a22-dc32-3a8b-b4d0-d1a852cfdeae", - "categories": [ - { - "_": "topics:organisations/reform-uk", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T17:49:42.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Ukraine strikes back at occupied Crimea & Zelensky\u2019s strategy for 2024", - "link": "https://www.telegraph.co.uk/world-news/2024/01/03/ukraine-strikes-back-at-occupied-crimea-zelenskys-strategy/", - "pubDate": "Wed, 03 Jan 2024 17:06:49 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/03/TELEMMGLPICT000361159590_17043015680130_trans_NvBQzQNjv4BqsIaSMRR4Q3jy0GquOD5ATQp9FIZ59CLYVhGJRZ4jq4c.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "fabf9035-cf28-3c84-9751-c7567787f1a1", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T17:06:49.000Z" - }, - { - "creator": "Hattie Garlick", - "title": "The best steam mops and steam cleaners of 2024 for spotless kitchen, bathroom and laminate floors", - "link": "https://www.telegraph.co.uk/recommended/home/best-steam-mops-steam-cleaners/", - "pubDate": "Wed, 03 Jan 2024 17:05:21 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/17/TELEMMGLPICT000335948204_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Hattie Garlick", - "content": "", - "contentSnippet": "", - "guid": "a2f5ae52-9464-3ce5-8091-2b5a9a935c7b", - "categories": [ - { - "_": "topics:things/steam-cleaners", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T17:05:21.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best cordless drills for wood, walls, metal and other DIY jobs", - "link": "https://www.telegraph.co.uk/recommended/home/best-cordless-drills/", - "pubDate": "Wed, 03 Jan 2024 16:55:58 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/28/TELEMMGLPICT000333663833_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "d930234c-bf26-328b-96b0-2f7796c4d4cc", - "categories": [ - { - "_": "topics:things/diy", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T16:55:58.000Z" - }, - { - "creator": "Annabel Fenwick-Elliott", - "title": "The best baby monitors of 2024, tried and tested by a new mother", - "link": "https://www.telegraph.co.uk/recommended/kids/best-baby-monitor/", - "pubDate": "Wed, 03 Jan 2024 16:32:47 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/09/29/TELEMMGLPICT000351291564_16959897711350_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Annabel Fenwick-Elliott", - "content": "", - "contentSnippet": "", - "guid": "210d68a0-89d9-3680-88c2-09be40a0dc5b", - "categories": [ - { - "_": "topics:things/motherhood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/parenthood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fatherhood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/childcare", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/kids", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T16:32:47.000Z" - }, - { - "creator": "Emily Peck", - "title": "The best hair dryers for 2024, tried and tested with expert advice from an A-list stylist", - "link": "https://www.telegraph.co.uk/beauty/hair/best-hair-dryers/", - "pubDate": "Wed, 03 Jan 2024 16:08:06 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/beauty/2022/09/09/TELEMMGLPICT000308605278_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emily Peck", - "content": "", - "contentSnippet": "", - "guid": "5c4e76f8-e631-3760-b710-73f0ca307b25", - "categories": [ - { - "_": "topics:organisations/dyson", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/hair", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty/hair", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T16:08:06.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Reform UK rules out election pact with Tories", - "link": "https://www.telegraph.co.uk/politics/2024/01/03/rishi-sunak-latest-news-farage-small-boats-uk-doctor-strike/", - "pubDate": "Wed, 03 Jan 2024 16:00:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/03/TELEMMGLPICT000361479708_17042824994540_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "content": "Reform UK has categorically ruled out striking a general election pact with the Conservative Party. 

]]>", - "contentSnippet": "", - "guid": "850b6d7d-0ff0-3e12-936f-c810d70ea1e9", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T16:00:12.000Z" - }, - { - "creator": "Madeleine Howell", - "title": "The best steam irons, including cordless models, for wrinkle-free clothes in 2024", - "link": "https://www.telegraph.co.uk/recommended/home/best-steam-irons/", - "pubDate": "Wed, 03 Jan 2024 15:49:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2019/06/26/Best-steam-iron-review_trans_NvBQzQNjv4Bq1lrzfM3_d_uwZxWWjssqOsvWxaP6USzKnksvEDJmBF8.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Madeleine Howell", - "content": "", - "contentSnippet": "", - "guid": "ad9c0625-bdc7-3414-bfef-75e21c5e3018", - "categories": [ - { - "_": "topics:things/first-home", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T15:49:57.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best memory foam mattresses of 2024 for relieving pressure while you sleep", - "link": "https://www.telegraph.co.uk/recommended/home/best-memory-foam-mattress/", - "pubDate": "Wed, 03 Jan 2024 15:43:48 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/15/TELEMMGLPICT000335692311_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "de092979-8f8c-30bc-90cd-c5247a6ecf83", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/back-pain", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleeping-disorders", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T15:43:48.000Z" - }, - { - "creator": "Rob Waugh", - "title": "The best wireless earbuds of 2024 tried and tested, from Apple Airpods to Beats Fit Pro", - "link": "https://www.telegraph.co.uk/recommended/tech/best-wireless-headphones/", - "pubDate": "Wed, 03 Jan 2024 15:34:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/11/11/TELEMMGLPICT000315873203_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rob Waugh", - "content": "", - "contentSnippet": "", - "guid": "02a9e60e-7cee-3003-b8ea-1ad64842794b", - "categories": [ - { - "_": "topics:things/gadgets-products", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/headphones", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/beats-by-dre", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/iphone", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/apple-airpods", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/samsung-galaxy", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/more-telegraph-recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T15:34:18.000Z" - }, - { - "creator": "Al Morgan", - "title": "The 10 best ski boots of 2024 for men and women, tested by an expert", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-ski-boots/", - "pubDate": "Wed, 03 Jan 2024 15:11:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/12/07/TELEMMGLPICT000359104576_17019479694030_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Al Morgan", - "content": "", - "contentSnippet": "", - "guid": "6dcbb865-a49d-34a1-b762-71a8e92dbf6a", - "categories": [ - { - "_": "topics:things/Snowboard", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/snow", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cross-country-skiing", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/alpine-skiing", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/freestyle-skiing", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:skiing", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T15:11:25.000Z" - }, - { - "creator": "Rob Waugh", - "title": "The best smartphones of 2024, tried and tested \u2013 but are they worth the upgrade?", - "link": "https://www.telegraph.co.uk/recommended/tech/best-smartphones/", - "pubDate": "Wed, 03 Jan 2024 13:16:32 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/22/TELEMMGLPICT000346467642_16927036397480_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rob Waugh", - "content": "", - "contentSnippet": "", - "guid": "ab785231-badf-3e5a-ade0-bb8b299bee90", - "categories": [ - { - "_": "topics:things/samsung-galaxy", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/android", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mobile-phones", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/iphone", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/samsung", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T13:16:32.000Z" - }, - { - "creator": "Jack Rear", - "title": "As a dementia nurse, this is what I wish everyone knew about the illness", - "link": "https://www.telegraph.co.uk/christmas/2024/01/03/nurse-this-is-what-i-wish-everyone-knew-about-dementia/", - "pubDate": "Wed, 03 Jan 2024 13:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/02/TELEMMGLPICT000358530053_17042050303170_trans_NvBQzQNjv4BqLe9xjT2uZbwM_a0D_nEc5FGbOsWDt2mGEn2XMwx-jCU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Rear", - "content": "", - "contentSnippet": "", - "guid": "3cd4d0ba-7a22-32ad-9d20-0ae5ddfa30c3", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/race-against-dementia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dementia", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T13:00:00.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best water filter jugs of 2024, tried and tested by an expert", - "link": "https://www.telegraph.co.uk/recommended/home/best-water-filter-jug-tested-experts/", - "pubDate": "Wed, 03 Jan 2024 12:44:31 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/02/TELEMMGLPICT000344635982_16909748014750_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "99d76d27-c507-329d-b838-ac83ea6498b8", - "categories": [ - { - "_": "topics:things/kitchen-equipment", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T12:44:31.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best reusable coffee cups and travel mugs of 2024, to keep your drinks warmer for longer", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-reusable-coffee-cup/", - "pubDate": "Wed, 03 Jan 2024 12:43:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/09/TELEMMGLPICT000345268356_16915956977920_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "f65debe4-d0fc-3eea-9fc6-7f8738765c9e", - "categories": [ - { - "_": "topics:things/coffee", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tea", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/recycling", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T12:43:11.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best inflatable hot tubs for cooling off in the garden this summer", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-inflatable-hot-tubs/", - "pubDate": "Wed, 03 Jan 2024 12:30:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/06/01/TELEMMGLPICT000337891784_16856316285640_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "c831f317-4581-3beb-af45-8f6c3f03b1a5", - "categories": [ - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/heatwave", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T12:30:53.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best sunrise alarm clocks of 2024, to help you wake up as naturally as the dawn", - "link": "https://www.telegraph.co.uk/recommended/home/best-wake-light-alarm-clocks/", - "pubDate": "Wed, 03 Jan 2024 12:22:22 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/10/03/TELEMMGLPICT000311476643_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "62a6830b-5048-3ddb-931c-c45336d5028c", - "categories": [ - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep-hygiene", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T12:22:22.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best running shoes for women in 2024, tried and tested with expert advice", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-running-shoes-women/", - "pubDate": "Wed, 03 Jan 2024 12:04:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/03/TELEMMGLPICT000331096701_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "743e5fb8-7ccd-3732-878d-b831a418e345", - "categories": [ - { - "_": "topics:things/running", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/marathon", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T12:04:59.000Z" - }, - { - "creator": "Mini Smith", - "title": "The best fitness trampolines of 2024 for home exercise, tried and tested on the bounce", - "link": "https://www.telegraph.co.uk/health-fitness/body/best-fitness-trampoline/", - "pubDate": "Wed, 03 Jan 2024 11:45:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/04/11/TELEMMGLPICT000331783736_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mini Smith", - "content": "", - "contentSnippet": "", - "guid": "9d5e7a8b-f42a-3b67-98e7-b3bedb5b55b9", - "categories": [ - { - "_": "topics:things/at-home-fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/womens-fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/exercise", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gym-exercises", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/body", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T11:45:34.000Z" - }, - { - "creator": "Catherine Hufton", - "title": "The best running buggies of 2024, tried and tested (with the help of a giggling two year-old)", - "link": "https://www.telegraph.co.uk/recommended/kids/best-running-buggy/", - "pubDate": "Wed, 03 Jan 2024 11:36:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/08/TELEMMGLPICT000328173661_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Catherine Hufton", - "content": "", - "contentSnippet": "", - "guid": "38dd3436-c72b-3314-9487-af187b5c994e", - "categories": [ - { - "_": "topics:things/children", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/motherhood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/parenthood", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/kids", - "$": { - "domain": "" - } - }, - { - "_": "structure:family/parenting/young-children", - "$": { - "domain": "" - } - }, - { - "_": "structure:family/parenting", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T11:36:35.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best recipe boxes and meal delivery kits \u2013 from healthy options to indulgent weekend dinners", - "link": "https://www.telegraph.co.uk/recommended/home/best-recipe-boxes-meal-delivery-kits/", - "pubDate": "Wed, 03 Jan 2024 11:20:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/01/13/FoodSpread_8_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "c3e268c3-c73d-306a-b055-059e2d24bbf5", - "categories": [ - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-food", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T11:20:57.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best duvets tried and tested at home, including all-season duvets", - "link": "https://www.telegraph.co.uk/interiors/home/the-best-duvets-for-a-good-nights-sleep/", - "pubDate": "Wed, 03 Jan 2024 11:05:56 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/interiors/2022/05/18/best-Duvet_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "3c83c214-c0ef-39fa-b0d5-1410733778a7", - "categories": [ - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T11:05:56.000Z" - }, - { - "creator": "Nicola Cutcher", - "title": "The 10 best reusable nappies of 2024, tried and tested \u2013 from cloth nappies to reusable swim nappies", - "link": "https://www.telegraph.co.uk/recommended/kids/best-reusable-nappies-tried-tested/", - "pubDate": "Wed, 03 Jan 2024 10:46:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/16/best-Lead-image-Best-reusable-nappies-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Nicola Cutcher", - "content": "", - "contentSnippet": "", - "guid": "9539cdc1-611c-3e49-99cf-f73e5be9377e", - "categories": [ - { - "_": "topics:things/plastic", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/motherhood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/parenthood", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/kids", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T10:46:46.000Z" - }, - { - "creator": "Phoebe Smith", - "title": "Best camping chairs 2024, tried and tested by an expert adventurer", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/the-best-camping-chairs/", - "pubDate": "Wed, 03 Jan 2024 10:37:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/04/12/TELEMMGLPICT000331870358_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Phoebe Smith", - "content": "", - "contentSnippet": "", - "guid": "d4db7052-738a-3791-a09f-16fbdf4ec414", - "categories": [ - { - "_": "topics:things/tents", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/picnics", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-accessories", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T10:37:19.000Z" - }, - { - "creator": "Kulwinder Rai", - "title": "The 12 best portable air conditioners for 2024 to cool your house", - "link": "https://www.telegraph.co.uk/interiors/home/best-portable-air-conditioners/", - "pubDate": "Wed, 03 Jan 2024 10:23:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/interiors/2023/04/17/TELEMMGLPICT000332402598_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Kulwinder Rai", - "content": "", - "contentSnippet": "", - "guid": "152a4a78-ab23-360c-80fd-4d55368fa315", - "categories": [ - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/energy", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/heatwave", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T10:23:36.000Z" - }, - { - "creator": "Tom Morgan", - "title": "Luke Littler becomes youngest player to reach World Darts Championship final", - "link": "https://www.telegraph.co.uk/darts/2024/01/02/luke-littler-vs-rob-cross-live-score-updates-pdc-semi-final/", - "pubDate": "Wed, 03 Jan 2024 10:14:20 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/darts/2024/01/02/TELEMMGLPICT000361448522_17042320226030_trans_NvBQzQNjv4Bq1LVUk0WFFvOzZq93y3eEPvmJDQle8zhAnRj3nA8oxTY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom Morgan", - "content": "Luke Littler\u2019s remarkable run at the World Darts Championship continued as the 16-year-old beat Rob Cross 6-2 to set up a final against new world No 1 Luke Humphries who swatted Scott Williams aside 6-0. 

]]>", - "contentSnippet": "", - "guid": "12c5a3e2-c269-383b-b74a-24368cc4fb83", - "categories": [ - { - "_": "topics:events/world-darts-championship", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/luke-littler", - "$": { - "domain": "" - } - }, - { - "_": "structure:darts", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T10:14:20.000Z" - }, - { - "creator": "Jeremy Wilson", - "title": "Luke Littler, 16, storms into World Darts Championship semi-final with 5-1 victory", - "link": "https://www.telegraph.co.uk/darts/2024/01/01/luke-littler-vs-brendan-dolan-live-score-updates-pdc-world/", - "pubDate": "Wed, 03 Jan 2024 09:48:09 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/darts/2024/01/01/TELEMMGLPICT000361359663_17041266090790_trans_NvBQzQNjv4Bqovza2kCDJqeCpxy1F5nm7faE_F5EwzAROXc2-iXeUa4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jeremy Wilson", - "content": "Luke \u2018The Nuke\u2019 Littler would need barely an hour to reduce Brendan Dolan to darting rubble but the match was actually only five minutes old when we again saw the X-Factor that makes him the most talked about 16-year-old in the country.

]]>", - "contentSnippet": "", - "guid": "ea35cf67-78aa-3296-a2c0-67fff2e434e6", - "categories": [ - { - "_": "topics:events/world-darts-championship", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/luke-littler", - "$": { - "domain": "" - } - }, - { - "_": "structure:darts", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:48:09.000Z" - }, - { - "creator": "Ben Rumsby", - "title": "Luke Littler to get \u00a350,000 prize money after trouncing Raymond van Barneveld", - "link": "https://www.telegraph.co.uk/darts/2023/12/30/raymond-van-barneveld-vs-luke-littler-live-score-pdc-world/", - "pubDate": "Wed, 03 Jan 2024 09:47:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/darts/2023/12/30/TELEMMGLPICT000361252855_17039756820050_trans_NvBQzQNjv4Bqghw_e8Qw6IFUhOIONifCLy0nJqLtMndipGxX-mKr7Ig.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Rumsby", - "content": "Luke Littler, the 16-year-old darts prodigy, is just three matches away from one of sport\u2019s greatest triumphs after blitzing the legendary Raymond van Barneveld to reach the quarter-finals of the World Championships.

]]>", - "contentSnippet": "the 16-year-old darts prodigy, is just three matches away from one of sport\u2019s greatest triumphs after blitzing the legendary Raymond van Barneveld to reach the quarter-finals of the World Championships.\n]]>", - "guid": "161e5948-ff0f-3378-ad9d-360d47ef12c7", - "categories": [ - { - "_": "topics:events/world-darts-championship", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/luke-littler", - "$": { - "domain": "" - } - }, - { - "_": "structure:darts", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:47:41.000Z" - }, - { - "creator": "Jeremy Wilson", - "title": "Luke Littler, 16, continues \u00a335,000 dream run at Darts World Championship", - "link": "https://www.telegraph.co.uk/darts/2023/12/27/matt-campbell-vs-luke-littler-live-score-world-championship/", - "pubDate": "Wed, 03 Jan 2024 09:47:23 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/darts/2023/12/27/TELEMMGLPICT000361051151_17037087836880_trans_NvBQzQNjv4Bqmo4DOQypPN9Wjil0txFIBpATjli7WiFDWIDRpA9c_3s.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jeremy Wilson", - "content": "By Jeremy Wilson

]]>", - "contentSnippet": "By Jeremy Wilson\n]]>", - "guid": "5d2896b3-e837-348b-8a4b-709aef03476f", - "categories": [ - { - "_": "topics:events/world-darts-championship", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/luke-littler", - "$": { - "domain": "" - } - }, - { - "_": "structure:darts", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:47:23.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "Kindle vs Kobo: which is the best eReader of 2024 for reading on the go?", - "link": "https://www.telegraph.co.uk/recommended/tech/best-ereader-kindle-vs-kobo/", - "pubDate": "Wed, 03 Jan 2024 09:46:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/09/13/TELEMMGLPICT000349144283_16946117224070_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "20ee87cb-e1f0-36d2-9dfe-db1a7e53802c", - "categories": [ - { - "_": "topics:things/kindle", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:technology", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:46:51.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best clothes steamers of 2024, tried and tested for quickly removing creases from clothes", - "link": "https://www.telegraph.co.uk/recommended/home/best-clothes-steamer/", - "pubDate": "Wed, 03 Jan 2024 09:43:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/17/TELEMMGLPICT000329301663_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "a26ccf9d-0a50-350a-8343-06a95590d909", - "categories": [ - { - "_": "topics:things/sustainable-fashion", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fashion-advice", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/clothes", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:43:51.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best suitcases (including children's luggage) for your holidays in 2024", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-suitcases/", - "pubDate": "Wed, 03 Jan 2024 09:42:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/20/TELEMMGLPICT000322695782_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "d24f5bc4-4901-327c-a050-32484e35bef3", - "categories": [ - { - "_": "topics:things/luggage", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/school-holidays", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:42:30.000Z" - }, - { - "creator": "Annabel Fenwick-Elliott", - "title": "The best car seats of 2024, tried and tested for newborns and infants", - "link": "https://www.telegraph.co.uk/recommended/kids/best-car-seat/", - "pubDate": "Wed, 03 Jan 2024 09:41:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/07/06/TELEMMGLPICT000341741771_16886449952060_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Annabel Fenwick-Elliott", - "content": "", - "contentSnippet": "", - "guid": "43465c88-9802-3cc2-b31f-ed3e7873c3e7", - "categories": [ - { - "_": "topics:things/parenthood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fatherhood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/motherhood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/childcare", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/children", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/kids", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:41:50.000Z" - }, - { - "creator": "Tom\u00e9 Morrissy Swan", - "title": "The best food processors of 2024 tried and tested, from Ninja to KitchenAid", - "link": "https://www.telegraph.co.uk/food-and-drink/equipment/the-best-food-processors/", - "pubDate": "Wed, 03 Jan 2024 09:40:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2023/06/14/TELEMMGLPICT000339329398_16867553281490_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom\u00e9 Morrissy Swan", - "content": "", - "contentSnippet": "", - "guid": "159ba82f-9d9e-32fe-957f-5a6aefa38f97", - "categories": [ - { - "_": "topics:things/kitchen-equipment", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-food", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:40:02.000Z" - }, - { - "creator": "Phoebe Smith", - "title": "The best sleeping bags for cosy camping, tried and tested by an expert on cold nights", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-sleeping-bags/", - "pubDate": "Wed, 03 Jan 2024 09:38:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/26/TELEMMGLPICT000306865704_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Phoebe Smith", - "content": "", - "contentSnippet": "", - "guid": "82066e15-2729-3bcf-81b7-08833c186078", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tents", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:38:50.000Z" - }, - { - "creator": "Rob Waugh", - "title": "The best broadband providers in the UK 2024, recommended by Telegraph readers", - "link": "https://www.telegraph.co.uk/recommended/tech/best-broadband/", - "pubDate": "Wed, 03 Jan 2024 09:38:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/03/best-Lead-image-Best-broadband-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Rob Waugh", - "content": "", - "contentSnippet": "", - "guid": "738f330e-953d-3ed1-8d67-07a0a0d5732b", - "categories": [ - { - "_": "topics:things/better-broadband", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/laptops", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:38:05.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The 10 best 4K TVs of 2024, tried and tested with expert advice on how to choose", - "link": "https://www.telegraph.co.uk/recommended/tech/best-4k-ultra-hd-tvs/", - "pubDate": "Wed, 03 Jan 2024 09:35:58 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/14/TELEMMGLPICT000345775115_16920257146020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "212d4f79-5a40-37e9-88e2-27e543468abc", - "categories": [ - { - "_": "topics:organisations/lg", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/sony", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/samsung", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tvs", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:35:58.000Z" - }, - { - "creator": "Emily Peck", - "title": "The best air beds of 2024 for guests staying overnight", - "link": "https://www.telegraph.co.uk/recommended/home/best-inflatable-mattress-guests-staying-night/", - "pubDate": "Wed, 03 Jan 2024 09:35:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/17/TELEMMGLPICT000329341181_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emily Peck", - "content": "", - "contentSnippet": "", - "guid": "95dc62fb-7deb-38ce-a230-e8b7c6a96dd3", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/world-sleep-day", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T09:35:15.000Z" - }, - { - "creator": "Laura Donnelly", - "title": "Junior doctors \u2018not hellbent\u2019 on strikes but prepared to walk out again", - "link": "https://www.telegraph.co.uk/news/2024/01/03/junior-doctors-strike-affect-operation-waiting-lists-nhs/", - "pubDate": "Wed, 03 Jan 2024 08:09:52 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/03/TELEMMGLPICT000361463147_17042689848920_trans_NvBQzQNjv4Bq-K_0X8rprco9mSoDo9AENQ3GhiocG9SiQMQPY9d0KXw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Laura Donnelly", - "content": "", - "contentSnippet": "", - "guid": "c982f875-daf8-3ac8-a15a-441f6c1a75d1", - "categories": [ - { - "_": "topics:in-the-news/nhs-strikes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/nhs-waiting-lists", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/nhs", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/junior-doctors-strike", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/british-medical-association", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-03T08:09:52.000Z" - }, - { - "creator": "Sam Wallace", - "title": "David Moyes\u2019 conservatism returns as West Ham play out goalless draw with Brighton", - "link": "https://www.telegraph.co.uk/football/2024/01/02/david-moyes-conservatism-returns-as-west-ham-draw-brighton/", - "pubDate": "Tue, 02 Jan 2024 21:48:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/02/TELEMMGLPICT000361447823_17042318436720_trans_NvBQzQNjv4Bql-N0aylfBBnEAeXmqfI9xmTr6t4tk3Jf2hxYeDlyQlI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Wallace", - "content": "", - "contentSnippet": "", - "guid": "266de92d-b9e8-306a-bb23-b4b5d1870e0a", - "categories": [ - { - "_": "topics:organisations/west-ham-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/brighton-and-hove-albion-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T21:48:46.000Z" - }, - { - "creator": "Lizzie Porter", - "title": "Israel assassinates senior Hamas leader in Beirut", - "link": "https://www.telegraph.co.uk/world-news/2024/01/02/israel-assassinate-senior-hamas-saleh-al-arouri-beirut/", - "pubDate": "Tue, 02 Jan 2024 21:29:20 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/03/TELEMMGLPICT000361444048_17042671313140_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lizzie Porter", - "content": "", - "contentSnippet": "", - "guid": "698538e0-426a-305b-aa5e-53f172c8f9ee", - "categories": [ - { - "_": "topics:places/lebanon", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hamas", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/beirut", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T21:29:20.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Lebanon PM condemns Israel for Beirut strike", - "link": "https://www.telegraph.co.uk/world-news/2024/01/02/israel-hamas-war-latest-news-updates-gaza-day-88-live/", - "pubDate": "Tue, 02 Jan 2024 20:33:28 GMT", - "dc:creator": "Maighna Nanu", - "content": "Lebanon\u2019s prime minister has condemned Israel for the explosion in Beirut which killed Hamas deputy leader Saleh al-Arouri and six others.

]]>", - "contentSnippet": "", - "guid": "50c8d513-3943-3f0a-b115-8674f1a01a37", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T20:33:28.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Feared Russian hypersonic missile shot down over Kyiv", - "link": "https://www.telegraph.co.uk/world-news/2024/01/02/ukraine-russia-war-news-latest-putin-air-stikes-belgorod/", - "pubDate": "Tue, 02 Jan 2024 18:57:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/02/TELEMMGLPICT000361407378_17041898694540_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "content": "The US-supplied Patriot air defence system shot down a \u2018record\u2019 ten hypersonic missiles fired at Ukraine from Russia on Tuesday morning.

]]>", - "contentSnippet": "", - "guid": "b7a667e9-52c3-3298-bf19-7b643781d24f", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T18:57:18.000Z" - }, - { - "creator": "Chris Price", - "title": "Apple downgraded over 'lacklustre' iPhone sales", - "link": "https://www.telegraph.co.uk/business/2024/01/02/ftse-100-markets-latest-brent-crude-oil-prices-china-stock/", - "pubDate": "Tue, 02 Jan 2024 18:36:08 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/02/TELEMMGLPICT000338385881_17042156201610_trans_NvBQzQNjv4BqFZ2mKB99NyfWHs4BvtAqLh_k7ZsagzP-7JFb_VvIr2o.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "Apple shares slumped by as much as 3.3pc after its stock was downgraded by analysts expecting \u201clacklustre\u201d sales of iPhones.

]]>", - "contentSnippet": "", - "guid": "67f1078c-3213-3d2b-a8f1-3306e0bb93fe", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T18:36:08.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Tuesday evening news briefing: More than 33,000 migrants face deportation to Rwanda if flights start", - "link": "https://www.telegraph.co.uk/news/2024/01/02/tuesday-evening-news-briefing-33000-migrants-deportation/", - "pubDate": "Tue, 02 Jan 2024 17:52:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "f6f84ed8-c091-3d98-b430-df054abdc8a7", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/nhs", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/junior-doctors-strike", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T17:52:02.000Z" - }, - { - "creator": "Lilia Sebouai", - "title": "Unicef delivers half a million vaccines into Gaza to prevent spread of childhood disease", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/unicef-delivers-vaccines-for-childhood-diseases-to-gaza/", - "pubDate": "Tue, 02 Jan 2024 17:15:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/02/TELEMMGLPICT000361424082_17042149703890_trans_NvBQzQNjv4Bq8VAndPZ2Bz0AY_iRYVPZ5P4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lilia Sebouai", - "content": "", - "contentSnippet": "", - "guid": "3c958903-6b69-3a16-b13b-4d0b2317ae46", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vaccines", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/childrens-health", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T17:15:41.000Z" - }, - { - "creator": "Catherine Hufton", - "title": "The best travel cots of 2024 tried and tested, including lightweight and playpen options", - "link": "https://www.telegraph.co.uk/recommended/kids/best-travel-cots-young-children/", - "pubDate": "Tue, 02 Jan 2024 16:52:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/15/TELEMMGLPICT000329084251_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Catherine Hufton", - "content": "", - "contentSnippet": "", - "guid": "9d89da3c-d0a4-306c-b2e6-2e338b059fd2", - "categories": [ - { - "_": "topics:things/children", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/childcare", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/motherhood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/parenthood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fatherhood", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/kids", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T16:52:05.000Z" - }, - { - "creator": "Issy von Simson", - "title": "The best UK spa hotels for a weekend of winter wellness", - "link": "https://www.telegraph.co.uk/travel/destinations/europe/united-kingdom/articles/the-best-hotels-for-spa-breaks-in-the-uk/", - "pubDate": "Tue, 02 Jan 2024 16:48:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/2023/december/the-grove-hotel-spa.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Issy von Simson", - "content": "", - "contentSnippet": "", - "guid": "fac3f341-fda8-38d6-bfc5-68bd9edb88c3", - "categories": [ - { - "_": "topics:places/europe", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/spas", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/hotels", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "structure:hotel-guides", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/england", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T16:48:00.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best rattan garden furniture for 2024 and where to buy it online: the expert guide", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/where-buy-best-rattan-garden-furniture/", - "pubDate": "Tue, 02 Jan 2024 16:35:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/03/03/TELEMMGLPICT000327532732_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "2a909b54-e9ec-3971-b3ee-ae60d20aa8ff", - "categories": [ - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/john-lewis", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/summer-bank-holiday", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/garden-furniture", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-accessories", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T16:35:57.000Z" - }, - { - "creator": "Madeleine Howell", - "title": "The best bathroom scales and smart body monitors to track your health, tried and tested", - "link": "https://www.telegraph.co.uk/recommended/home/best-bathroom-weighing-scales-weight-smart-body-monitors-heart/", - "pubDate": "Tue, 02 Jan 2024 16:24:52 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2021/11/29/bestbathroomscales_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Madeleine Howell", - "content": "", - "contentSnippet": "", - "guid": "e4a0f9f5-34a8-3448-b86d-57748517e87a", - "categories": [ - { - "_": "topics:things/body-mass-index", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weight-loss", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T16:24:52.000Z" - }, - { - "creator": "Sarah Newey", - "title": "At least \u00a3550 million of Covid drugs wasted in the UK", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/at-least-550-million-of-covid-drugs-wasted-in-the-uk/", - "pubDate": "Tue, 02 Jan 2024 16:14:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/02/TELEMMGLPICT000281507464_17042113764280_trans_NvBQzQNjv4Bq15XUfPwoY7svuJOpueeorfglp-O-0tXy4cPh95DZ_mE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "content": "", - "contentSnippet": "", - "guid": "fd261738-9ea3-3a38-89e3-db976a46e756", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/coronavirus", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pandemics-epidemics", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Pharmaceuticals", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T16:14:24.000Z" - }, - { - "creator": "Kulwinder Rai", - "title": "The best carpet cleaners for removing stains in 2024, tried and tested at home with expert advice", - "link": "https://www.telegraph.co.uk/recommended/home/best-carpet-cleaners/", - "pubDate": "Tue, 02 Jan 2024 16:05:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/12/08/TELEMMGLPICT000359318287_17020372638700_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Kulwinder Rai", - "content": "", - "contentSnippet": "", - "guid": "c795cd7a-b306-3573-ba59-689efa064f27", - "categories": [ - { - "_": "topics:things/vacuum-cleaners", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/steam-cleaners", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T16:05:27.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Number of asylum seekers removed from UK drops by half", - "link": "https://www.telegraph.co.uk/politics/2024/01/02/rishi-sunak-latest-news-james-cleverly-asylum-small-boats/", - "pubDate": "Tue, 02 Jan 2024 16:00:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/02/TELEMMGLPICT000338326638_17042041181760_trans_NvBQzQNjv4BqQM3rjVtAqPt4faM6F0jDQC82-ivqc6avWefomlBmWCs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "content": "The number of rejected asylum seekers and foreign offenders being removed from the UK has nearly halved in seven years, Home Office figures show.

]]>", - "contentSnippet": "", - "guid": "0b54e5cb-e923-3acc-a7c5-4d064f535bfa", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T16:00:18.000Z" - }, - { - "creator": "Madeleine Howell", - "title": "The best pizza ovens for perfect toppings and crispy crusts in 2024", - "link": "https://www.telegraph.co.uk/recommended/home/the-best-pizza-ovens/", - "pubDate": "Tue, 02 Jan 2024 15:56:09 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/19/TELEMMGLPICT000336249501_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Madeleine Howell", - "content": "", - "contentSnippet": "", - "guid": "8a0fa649-f3f1-3d9a-a6bc-96bf8d76c8d4", - "categories": [ - { - "_": "topics:things/kitchen-equipment", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/italian-food", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T15:56:09.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Massive missile and drone strikes across Ukraine while scandal sweeps Russia", - "link": "https://www.telegraph.co.uk/world-news/2024/01/02/massive-missile-and-drone-strikes-across-ukraine/", - "pubDate": "Tue, 02 Jan 2024 15:49:31 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/02/TELEMMGLPICT000361427379_17042105459020_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "4aca6bda-8b55-3e86-99d4-77b54cfc35d7", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T15:49:31.000Z" - }, - { - "creator": "Pete Wedderburn", - "title": "The 15 best pet insurance providers in 2024 \u2013 and how to find the right cover for you", - "link": "https://www.telegraph.co.uk/pets/news-features/best-pet-insurance/", - "pubDate": "Tue, 02 Jan 2024 15:45:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/pets/2023/03/14/TELEMMGLPICT000328971564_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Pete Wedderburn", - "content": "", - "contentSnippet": "", - "guid": "e207e54e-793b-3ef4-954d-46722faefdf7", - "categories": [ - { - "_": "topics:things/dogs", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cats", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T15:45:27.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best travel pillows for long flights and commuting in 2024, tried and tested", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-travel-pillow/", - "pubDate": "Tue, 02 Jan 2024 15:39:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/19/TELEMMGLPICT000333226582_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "b57976f2-8f30-3b78-86fb-17c8bcb91c2b", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/solo-travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T15:39:55.000Z" - }, - { - "creator": "Saidu Bah", - "title": "Inside the \u2018zombie\u2019 drug epidemic sweeping West Africa", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/kush-synthetic-drug-addiction-epidemic-west-africa/", - "pubDate": "Tue, 02 Jan 2024 15:35:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/02/TELEMMGLPICT000361413082_17042055426450_trans_NvBQzQNjv4Bqo6V3cvctqdfs7HwV5UCM93wSCF1R0VweJ7DS2UnVMSQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Saidu Bah", - "content": "", - "contentSnippet": "", - "guid": "e84b5db8-3e1a-30e3-a692-4a57f524f01f", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/drugs", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/addiction", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/sierra-leone", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/west-africa", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/africa", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T15:35:50.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best electric blankets in 2024, to keep you warm on cold nights", - "link": "https://www.telegraph.co.uk/recommended/home/best-electric-blankets-keep-warm-winter/", - "pubDate": "Tue, 02 Jan 2024 15:23:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/10/13/TELEMMGLPICT000312581465_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "a916fe4e-7546-311f-877a-50f7fa3076b7", - "categories": [ - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/energy-price-cap", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T15:23:46.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "13 best air fryers of 2024, to save money and energy (with some tasty results)", - "link": "https://www.telegraph.co.uk/recommended/home/best-air-fryers-healthy-home-cooking/", - "pubDate": "Tue, 02 Jan 2024 15:08:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/06/28/TELEMMGLPICT000340875317_16879444599140_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "1d87eb9b-10c8-3de0-9895-66c69b97ce12", - "categories": [ - { - "_": "topics:things/kitchen-equipment", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink/food-and-drink-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T15:08:10.000Z" - }, - { - "creator": "Madeleine Howell", - "title": "The best mini fridges for cool drinks and small spaces, including mini fridge freezers", - "link": "https://www.telegraph.co.uk/food-and-drink/equipment/the-best-mini-fridges/", - "pubDate": "Tue, 02 Jan 2024 14:46:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2022/06/13/best-mini-fridge-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Madeleine Howell", - "content": "", - "contentSnippet": "", - "guid": "bfd9890f-1833-32b0-8998-5dc9a712db7c", - "categories": [ - { - "_": "topics:things/kitchen-equipment", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T14:46:27.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Russian poets jailed for anti-war reading", - "link": "https://www.telegraph.co.uk/world-news/2023/12/28/ukraine-russia-war-live-kuleba-europe-not-know-fight-latest/", - "pubDate": "Tue, 02 Jan 2024 14:32:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/28/TELEMMGLPICT000361038002_17037251378900_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "content": "Two Russian men have been jailed for reciting anti-war poems at a public reading in central Moscow.

]]>", - "contentSnippet": "", - "guid": "dc45c15c-76fb-304a-ae08-3879904730c2", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T14:32:15.000Z" - }, - { - "creator": "Kulwinder Rai", - "title": "The best soundbars of 2024 for improving your TV audio, tried and tested at home", - "link": "https://www.telegraph.co.uk/recommended/tech/best-soundbar/", - "pubDate": "Tue, 02 Jan 2024 14:28:54 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/09/06/TELEMMGLPICT000348198167_16940097181830_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Kulwinder Rai", - "content": "", - "contentSnippet": "", - "guid": "89fe92ec-0760-3620-9206-76d168d45d37", - "categories": [ - { - "_": "topics:things/tvs", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/sonos", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bose", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/sony", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T14:28:54.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best hedge trimmers for 2024, including cordless, petrol and extendable models", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/the-best-hedge-trimmers/", - "pubDate": "Tue, 02 Jan 2024 14:25:08 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/02/06/TELEMMGLPICT000324507841_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "52272d6d-f683-3787-9348-e3433b282ea8", - "categories": [ - { - "_": "topics:things/garden-sheds", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-accessories", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T14:25:08.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best duvet covers and bedding sets for a better night's sleep, tried and tested", - "link": "https://www.telegraph.co.uk/interiors/home/best-duvet-covers-bedding-sets-stylish-bedroom-update/", - "pubDate": "Tue, 02 Jan 2024 14:23:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/interiors/2022/03/15/best-duvet-covers-bedding-sets_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "279a30f2-bd1f-3512-9d3a-637f3cca77c4", - "categories": [ - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/world-sleep-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep-hygiene", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T14:23:25.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best treadmills for walking, running and cardio workouts in 2024, recommended by experts", - "link": "https://www.telegraph.co.uk/health-fitness/body/best-treadmill/", - "pubDate": "Tue, 02 Jan 2024 14:21:49 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2022/12/21/TELEMMGLPICT000320305130_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "0644d1d0-b9a6-31dd-a267-2e77abf0da47", - "categories": [ - { - "_": "topics:things/exercise", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gym-exercises", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/running", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/body", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T14:21:49.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best exercise bikes for 2024, tried and tested", - "link": "https://www.telegraph.co.uk/health-fitness/fitness/cycling/best-exercise-bikes-indoor-cycling-effective-way-lose-weight/", - "pubDate": "Tue, 02 Jan 2024 14:19:09 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2022/03/04/best-Exercise-Bikes_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "3f9a9167-39d8-3d87-91c4-e8389feb7239", - "categories": [ - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/home-workout", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cardio-workouts", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/road-cycling", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/peloton", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/heart-health", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/body", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/fitness/cycling", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-guide", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T14:19:09.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best cylinder vacuum cleaners for deep cleaning your home", - "link": "https://www.telegraph.co.uk/recommended/home/best-cylinder-vacuum-cleaner/", - "pubDate": "Tue, 02 Jan 2024 13:06:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/03/28/best-Cylinder-Vacuum-Cleaner_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "b2698e6d-5f58-3a02-b969-e787d70c6823", - "categories": [ - { - "_": "topics:things/vacuum-cleaners", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dyson", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T13:06:15.000Z" - }, - { - "creator": "Simon Briggs", - "title": "Rafael Nadal delivers emphatic victory over Dominic Thiem on return from injury", - "link": "https://www.telegraph.co.uk/tennis/2024/01/02/rafael-nadal-wins-dominic-thiem-brisbane-international/", - "pubDate": "Tue, 02 Jan 2024 12:55:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/02/TELEMMGLPICT000361415367_17041997551490_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Briggs", - "content": "", - "contentSnippet": "", - "guid": "41456405-0db8-3f34-bb5b-8c1d2e65f083", - "categories": [ - { - "_": "topics:people/rafael-nadal", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/dominic-thiem", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T12:55:00.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best pressure washers of 2024 for cleaning cars, decking and patios", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-pressure-washers/", - "pubDate": "Tue, 02 Jan 2024 12:23:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/02/13/TELEMMGLPICT000325293730_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "d8cca231-4d0f-3fd5-953f-eaec02cdc44a", - "categories": [ - { - "_": "topics:things/pressure-washers", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cars-3", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/garden-furniture", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-accessories", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T12:23:46.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best sofa beds in 2024 for sitting and sleeping", - "link": "https://www.telegraph.co.uk/recommended/home/best-sofa-beds-sitting-sleeping/", - "pubDate": "Tue, 02 Jan 2024 12:08:33 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/30/TELEMMGLPICT000323745354_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "27304de4-579b-39ce-83e3-a6e66401d2ae", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T12:08:33.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The 15 best diffusers for keeping your home smelling fresh, including electric and reed diffusers", - "link": "https://www.telegraph.co.uk/recommended/home/best-diffusers/", - "pubDate": "Tue, 02 Jan 2024 12:07:42 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/07/21/TELEMMGLPICT000343408407_16899413843210_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "014a5a0a-9cbf-3ea3-ae90-d2648d664c3b", - "categories": [ - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T12:07:42.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best mattress toppers of 2024 for a more comfortable sleep, including for side sleepers", - "link": "https://www.telegraph.co.uk/recommended/home/best-mattress-toppers/", - "pubDate": "Tue, 02 Jan 2024 12:06:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/12/22/TELEMMGLPICT000320378949_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "bd618e12-30b8-35eb-8fe9-d37de4e8195b", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T12:06:34.000Z" - }, - { - "creator": "Kirsty Bosley", - "title": "The best white noise machines, tried and tested with advice from a neuroscientist", - "link": "https://www.telegraph.co.uk/recommended/tech/best-white-noise-machine/", - "pubDate": "Tue, 02 Jan 2024 12:05:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/31/TELEMMGLPICT000347452357_16934934556880_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Kirsty Bosley", - "content": "", - "contentSnippet": "", - "guid": "0f765296-b44a-3661-97da-03bce2885a89", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleeping-disorders", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T12:05:00.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best anti-snore pillows of 2024 for easier breathing and better sleep", - "link": "https://www.telegraph.co.uk/recommended/home/best-anti-snore-pillow/", - "pubDate": "Tue, 02 Jan 2024 12:04:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/09/TELEMMGLPICT000335025368_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "fdfdc1d1-f990-308e-93d7-1bc393e1d37f", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleeping-disorders", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T12:04:15.000Z" - }, - { - "creator": "Jack Rear", - "title": "The 14 best backpacks of 2024 for travel and work, tried and tested", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-backpacks/", - "pubDate": "Tue, 02 Jan 2024 12:02:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/07/26/TELEMMGLPICT000343933247_16903836569190_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Rear", - "content": "", - "contentSnippet": "", - "guid": "e0c8f06f-73d9-3928-ad6a-6171bbf4181a", - "categories": [ - { - "_": "topics:things/luxury-travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/luggage", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/solo-travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T12:02:43.000Z" - }, - { - "creator": "Phoebe Smith", - "title": "The 10 best tents for family camping trips in 2024", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-tents/", - "pubDate": "Tue, 02 Jan 2024 12:00:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/07/TELEMMGLPICT000345143690_16914195889380_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Phoebe Smith", - "content": "", - "contentSnippet": "", - "guid": "2f6ac9ee-4f7a-312f-a098-5f9ba1687b31", - "categories": [ - { - "_": "topics:things/tents", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/school-holidays", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/summer-bank-holiday", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T12:00:50.000Z" - }, - { - "creator": "Madeleine Howell", - "title": "The best inflatable paddle boards of 2024, tried and tested on rivers, lakes and sea", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-inflatable-stand-up-paddle-boards/", - "pubDate": "Tue, 02 Jan 2024 11:59:32 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/01/best-Lead-image-Best-inflatable-paddle-boards-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Madeleine Howell", - "content": "", - "contentSnippet": "", - "guid": "136842ee-546c-3c0e-86f9-f8f60a46b1e0", - "categories": [ - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/womens-fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/canals-waterways", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T11:59:32.000Z" - }, - { - "creator": "Lettice Bromovsky", - "title": "UK weather latest: Residents evacuated as major incident declared over flooding", - "link": "https://www.telegraph.co.uk/news/2024/01/04/uk-weather-live-flooding-risk-heavy-rain-storm-henk-latest/", - "pubDate": "Thu, 04 Jan 2024 16:53:06 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/04/TELEMMGLPICT000361563622_17043799137990_trans_NvBQzQNjv4Bqqak5QxipGUxSaCmYiTkvk4-YqJpuh24YizWnVbthlIM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lettice Bromovsky", - "content": "Residents are being evacuated from areas of Nottinghamshire and Gloucestershire as heavy rainfall and flooding continues across the country.

]]>", - "contentSnippet": "", - "guid": "31cd692f-6531-3e6c-86c7-18a94beb79f2", - "categories": [ - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/flooding", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/met-office", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T16:53:06.000Z" - }, - { - "creator": "Tom\u00e9 Morrissy Swan", - "title": "Tried and tested: the best blenders of 2024 for making smoothies, soups, dips and desserts at home", - "link": "https://www.telegraph.co.uk/recommended/home/best-blenders/", - "pubDate": "Thu, 04 Jan 2024 16:13:32 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/02/16/TELEMMGLPICT000325620770_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom\u00e9 Morrissy Swan", - "content": "", - "contentSnippet": "", - "guid": "9a022c3a-072b-3585-8d60-385ce9440c69", - "categories": [ - { - "_": "topics:things/baking", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/juices-and-smoothies", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/soup", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/smoothie-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-food", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T16:13:32.000Z" - }, - { - "creator": "Emily Peck", - "title": "The best microwaves of 2024 for home cooking, including multi-function combi models", - "link": "https://www.telegraph.co.uk/recommended/home/best-microwaves/", - "pubDate": "Thu, 04 Jan 2024 16:01:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/11/13/TELEMMGLPICT000356609864_16998979452850_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emily Peck", - "content": "", - "contentSnippet": "", - "guid": "eda3cb8f-2b36-3834-9dfa-2db5bbd27823", - "categories": [ - { - "_": "topics:things/ready-meals", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/kitchen-equipment", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T16:01:59.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Is the war really in stalemate?", - "link": "https://www.telegraph.co.uk/world-news/2024/01/04/is-the-war-really-in-stalemate/", - "pubDate": "Thu, 04 Jan 2024 15:49:01 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/04/TELEMMGLPICT000361557098_17043832972750_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "fc872faa-685e-3c50-b279-78179af0a9c2", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T15:49:01.000Z" - }, - { - "creator": "Catherine Hufton", - "title": "The best high chairs of 2024, for mealtimes with your baby and (much) older children", - "link": "https://www.telegraph.co.uk/recommended/kids/best-high-chairs/", - "pubDate": "Thu, 04 Jan 2024 15:29:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/09/16/TELEMMGLPICT000309520230_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Catherine Hufton", - "content": "", - "contentSnippet": "", - "guid": "6b29433b-a416-3668-ac85-b1fdb01e9439", - "categories": [ - { - "_": "topics:things/children", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/parenthood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/childcare", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/motherhood", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/kids", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T15:29:14.000Z" - }, - { - "creator": "Emily Peck", - "title": "Best hair straighteners of 2024 reviewed, with expert advice from a celebrity hair stylist", - "link": "https://www.telegraph.co.uk/beauty/hair/best-hair-straighteners/", - "pubDate": "Thu, 04 Jan 2024 15:17:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/beauty/2022/10/07/TELEMMGLPICT000311921468_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emily Peck", - "content": "", - "contentSnippet": "", - "guid": "d5396a39-baad-3fab-b8f8-e48a8bdd9bae", - "categories": [ - { - "_": "topics:things/beauty-guide", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/hair", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/hairstyles", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty/hair", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T15:17:25.000Z" - }, - { - "creator": "Harriet Barber", - "title": "Latin America\u2019s health systems are falling behind the rest of the world, WHO warns", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/latin-america-health-systems-world-health-organization/", - "pubDate": "Thu, 04 Jan 2024 15:12:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/04/TELEMMGLPICT000253773085_17043757555710_trans_NvBQzQNjv4Bq3Z7i_2nUjuO-XXgVmfiyhMbHf4DfgeegiUIPq8ZyLgk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Harriet Barber", - "content": "", - "contentSnippet": "", - "guid": "f52d9665-7daf-3a76-ace1-dee5e1b5657e", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/latin-america", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/south-america", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/coronavirus", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pandemics-epidemics", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T15:12:44.000Z" - }, - { - "creator": "Rob Waugh", - "title": "The best antivirus software of 2024, tried and tested to keep your family\u2019s devices protected", - "link": "https://www.telegraph.co.uk/recommended/tech/best-antivirus-software/", - "pubDate": "Thu, 04 Jan 2024 14:17:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/02/14/Best-antivirus-software-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Rob Waugh", - "content": "", - "contentSnippet": "", - "guid": "8896c0e2-248b-3c0b-9e47-4f8cd6b412f3", - "categories": [ - { - "_": "topics:things/phishing", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tablets", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cyber-attacks", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cyber-crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cyber-defence", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T14:17:14.000Z" - }, - { - "creator": "Catherine Hufton", - "title": "The best pregnancy pillows of 2024 for comfort and support", - "link": "https://www.telegraph.co.uk/recommended/home/best-pregnancy-pillows/", - "pubDate": "Thu, 04 Jan 2024 14:12:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/17/TELEMMGLPICT000329291082_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Catherine Hufton", - "content": "", - "contentSnippet": "", - "guid": "dd46b59b-f2df-3c95-8888-7a98678ca5b0", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/back-pain", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pregnancy", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/maternity", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T14:12:14.000Z" - }, - { - "creator": "Fiona Duncan", - "title": "The best country house hotels in Britain", - "link": "https://www.telegraph.co.uk/travel/destinations/europe/united-kingdom/england/articles/the-best-country-house-hotels-in-britain/", - "pubDate": "Thu, 04 Jan 2024 13:39:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/hotels-with-history-stock-images/Cliveden---Interior-Shot---Great-Hall-with-Waiter.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Fiona Duncan", - "content": "", - "contentSnippet": "", - "guid": "a3273c0f-d6fc-3828-9c4b-b6ce2ae707d7", - "categories": [ - { - "_": "topics:places/europe", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/hotels", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "structure:hotel-guides", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T13:39:00.000Z" - }, - { - "creator": "Chas Newkey-Burden", - "title": "The best fire pits of 2024 for cold nights, tried and tested", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-fire-pit/", - "pubDate": "Thu, 04 Jan 2024 12:59:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/07/04/TELEMMGLPICT000341495045_16884738404200_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chas Newkey-Burden", - "content": "", - "contentSnippet": "", - "guid": "4275f006-634d-3dc7-9aed-9adfb6af594d", - "categories": [ - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/barbecue", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/garden-furniture", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-accessories", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:59:25.000Z" - }, - { - "creator": "Rob Waugh", - "title": "The best noise cancelling headphones 2024 tried and tested for music, travel and sleep", - "link": "https://www.telegraph.co.uk/recommended/tech/best-noise-cancelling-headphones/", - "pubDate": "Thu, 04 Jan 2024 12:50:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/12/08/TELEMMGLPICT000319062129_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rob Waugh", - "content": "", - "contentSnippet": "", - "guid": "7e998df3-2b1c-3244-8021-009906e8bd9e", - "categories": [ - { - "_": "topics:things/headphones", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/sony", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/beats-by-dre", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bose", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/more-telegraph-recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:50:00.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best scented candles for a cosy home this winter, tried and tested", - "link": "https://www.telegraph.co.uk/interiors/home/best-scented-candles/", - "pubDate": "Thu, 04 Jan 2024 12:31:28 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/interiors/2023/11/01/TELEMMGLPICT000355170126_16988436597480_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "ee96d317-e6f3-329e-95dd-d145f427a465", - "categories": [ - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:31:28.000Z" - }, - { - "creator": "Emily Peck", - "title": "The best solar garden lights of 2024 with advice from Gardener\u2019s Question Time expert Matthew Wilson", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-solar-garden-lights1/", - "pubDate": "Thu, 04 Jan 2024 12:10:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2022/08/05/1-My-garden-by-night_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emily Peck", - "content": "", - "contentSnippet": "", - "guid": "0faa32c2-194a-39a1-812f-cbedcb35ff36", - "categories": [ - { - "_": "topics:things/spring-summer-trends", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:10:36.000Z" - }, - { - "creator": "Sam Rice", - "title": "Vietnamese-style chicken salad recipe ", - "link": "https://www.telegraph.co.uk/recipes/0/vietnamese-style-chicken-salad-recipe/", - "pubDate": "Thu, 04 Jan 2024 12:10:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361549835_17043686075860_trans_NvBQzQNjv4BqdcMIfi3HfSGJsLRwA4pGsdkM9MM8VM3G1BxlGUO4L8Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "871ef0f3-fb2f-3e79-a661-a9072144536e", - "categories": [ - { - "_": "topics:things/quick-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chicken-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/salad-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vietnamese-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:10:35.000Z" - }, - { - "creator": "Sam Rice", - "title": "Puy lentil, tomato and goat\u2019s cheese salad recipe", - "link": "https://www.telegraph.co.uk/recipes/0/puy-lentil-tomato-and-goats-cheese-salad-recipe/", - "pubDate": "Thu, 04 Jan 2024 12:09:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361550248_17043658088840_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "1fcdccb8-8cad-3a4e-89dd-7de29f33f043", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/quick-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/salad-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lentil-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cheese-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:09:30.000Z" - }, - { - "creator": "Sam Rice", - "title": "King prawn and pea baked biryani recipe ", - "link": "https://www.telegraph.co.uk/recipes/0/king-prawn-and-pea-baked-biryani-recipe/", - "pubDate": "Thu, 04 Jan 2024 12:08:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361547184_17043650560060_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "5ca58f61-e316-3b2c-925a-d04700418157", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fish-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/rice-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/prawn-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:08:27.000Z" - }, - { - "creator": "Sam Rice", - "title": "Baked salmon with tangy kiwi salsa recipe", - "link": "https://www.telegraph.co.uk/recipes/0/baked-salmon-with-tangy-kiwi-salsa-recipe/", - "pubDate": "Thu, 04 Jan 2024 12:06:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361547291_17043642484730_trans_NvBQzQNjv4BqZd4u6tt26KB__IERsdI8UNkM9MM8VM3G1BxlGUO4L8Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "1e9730fc-521d-3d92-967d-7242848beb6e", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/quick-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fish-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/salmon-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:06:55.000Z" - }, - { - "creator": "Sam Rice", - "title": "Pan-fried rainbow trout with mushrooms and chard recipe", - "link": "https://www.telegraph.co.uk/recipes/0/pan-fried-rainbow-trout-with-mushrooms-and-chard-recipe/", - "pubDate": "Thu, 04 Jan 2024 12:05:52 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361547144_17043637428500_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "b2d3152d-ddd1-39f9-b3e9-350d1b1fc8eb", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/quick-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fish-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mushroom-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:05:52.000Z" - }, - { - "creator": "Sam Rice", - "title": "Smoked-mackerel p\u00e2t\u00e9 on toast with watercress and a fried egg recipe", - "link": "https://www.telegraph.co.uk/recipes/0/healthy-smoked-mackerel-pate-on-toast-watercress-recipe/", - "pubDate": "Thu, 04 Jan 2024 12:04:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361543808_17043619066650_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "d8a1d7d0-61eb-3d9d-95c5-95ac2354c7b4", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/quick-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fish-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/brunch-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lunch-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:04:25.000Z" - }, - { - "creator": "Sam Rice", - "title": "Flaky curried cod with yogurt flatbreads recipe", - "link": "https://www.telegraph.co.uk/recipes/0/flaky-curried-cod-with-yogurt-flatbreads-recipe/", - "pubDate": "Thu, 04 Jan 2024 12:02:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361486768_17043010034120_trans_NvBQzQNjv4Bqv3hxuICTza90rxjOncu1SEikPYR0xYwuEBLwP9UFqPg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "0dd1994e-48ee-34f6-abaf-e75dd32e7e70", - "categories": [ - { - "_": "topics:things/quick-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fish-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cod-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/curry-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:02:59.000Z" - }, - { - "creator": "Sam Rice", - "title": "Sweet and sour pork tenderloin with braised cabbage recipe ", - "link": "https://www.telegraph.co.uk/recipes/0/sweet-and-sour-pork-tenderloin-with-braised-cabbage-recipe/", - "pubDate": "Thu, 04 Jan 2024 12:01:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485613_17042989702990_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "a20b57f0-108f-3e35-8e1a-2ccd45fdf7f1", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pork-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cabbage-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/roast-dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:01:17.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The perfect ski holiday in Zermatt", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/zermatt/zermatt-ski-holiday-guide/", - "pubDate": "Thu, 04 Jan 2024 12:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/zermatt-village-view.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "3b75ad58-2b03-37b4-ac9b-72617ebb845b", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/zermatt", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best accommodation in Zermatt", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/zermatt/best-accommodation-zermatt/", - "pubDate": "Thu, 04 Jan 2024 12:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/2020/September/cervo-mountain-resort-zermatt-switzerland-3-p.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "f5ffbabe-9d27-3ce2-8015-4cb1d39dfba8", - "categories": [ - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/zermatt", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T12:00:00.000Z" - }, - { - "creator": "Sam Rice", - "title": "Broccoli, bacon and cheddar burgers recipe", - "link": "https://www.telegraph.co.uk/recipes/0/broccoli-bacon-and-cheddar-burgers-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:59:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485795_17042983697320_trans_NvBQzQNjv4BqdcMIfi3HfSGJsLRwA4pGsdkM9MM8VM3G1BxlGUO4L8Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "5ae880e4-8e28-3b50-9e48-332a90447721", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/broccoli-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/bacon-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/burger-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cheese-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:59:37.000Z" - }, - { - "creator": "Sam Rice", - "title": "Spicy lamb meatballs recipe ", - "link": "https://www.telegraph.co.uk/recipes/0/spicy-lamb-meatballs-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:57:09 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485416_17042973281970_trans_NvBQzQNjv4BqFEEiND-iVAHWLoyxZQxve9kM9MM8VM3G1BxlGUO4L8Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "680216ba-396f-3068-a225-06462eb93e76", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/meatball-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lamb-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/spicy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:57:09.000Z" - }, - { - "creator": "Sam Rice", - "title": "Sriracha and lemon chicken traybake recipe", - "link": "https://www.telegraph.co.uk/recipes/2024/01/04/sriracha-and-lemon-chicken-traybake-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:56:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485428_17042969822110_trans_NvBQzQNjv4BqMTYrrGk2rIg_dUQOjEMTeXr4H2HV05DHwH9R380xnfo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "8bde364e-f2ff-3e4e-90ed-02ca10e968b4", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chicken-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/spicy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lemon-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/roast-chicken-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:56:11.000Z" - }, - { - "creator": "Sam Rice", - "title": "Roasted purple sprouting broccoli with grilled halloumi, orange and almonds recipe", - "link": "https://www.telegraph.co.uk/recipes/0/healthy-roasted-purple-sprouting-broccoli-with-grilled-hall/", - "pubDate": "Thu, 04 Jan 2024 11:54:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361487282_17042964910940_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "02ed8614-2150-3ac0-a0b6-156b7dd6f2dd", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cheese-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/orange-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/broccoli-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:54:27.000Z" - }, - { - "creator": "Sam Rice", - "title": "Family-friendly black bean chilli recipe", - "link": "https://www.telegraph.co.uk/recipes/0/healthy-family-friendly-black-bean-chilli-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:52:54 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361487070_17042952935340_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "6949edd9-aabf-3614-bca6-1434e3dba27d", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/stew-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mexican-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vegan-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:52:54.000Z" - }, - { - "creator": "Sam Rice", - "title": "Beans Proven\u00e7al recipe", - "link": "https://www.telegraph.co.uk/recipes/0/healthy-beans-provencal-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:51:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361486769_17042947590010_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "36f4741d-b2e0-33fc-bdec-2eb037de62fc", - "categories": [ - { - "_": "topics:things/vegan-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/bean-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/stew-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:51:40.000Z" - }, - { - "creator": "Sam Rice", - "title": "Spinach and cheese crustless quiche recipe", - "link": "https://www.telegraph.co.uk/recipes/0/healthy-spinach-and-cheese-crustless-quiche-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:50:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361487164_17042942655550_trans_NvBQzQNjv4BqF17Eb5QVe68VMN2NfamVAEikPYR0xYwuEBLwP9UFqPg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "92575ce8-f679-33c6-95e9-f5a82c198ef8", - "categories": [ - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/quiche-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/egg-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/spinach-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:50:37.000Z" - }, - { - "creator": "Sam Rice", - "title": "Spinach and chickpea curry recipe", - "link": "https://www.telegraph.co.uk/recipes/2024/01/04/healthy-spinach-and-chickpea-curry-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:48:08 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361486993_17042930411880_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "5899eac6-deea-373e-a887-b5287a477535", - "categories": [ - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/curry-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chickpea-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vegan-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:48:08.000Z" - }, - { - "creator": "Sam Rice", - "title": "Spinach, squash, red onion and halloumi salad with sweet chilli dressing recipe", - "link": "https://www.telegraph.co.uk/recipes/0/spinach-squash-red-onion-and-halloumi-salad-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:43:49 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361544279_17043623648710_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "1759e0a8-ce72-3df2-bf13-5baad9c358a1", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/salad-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pumpkin-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cheese-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/spinach-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:43:49.000Z" - }, - { - "creator": "Sam Rice", - "title": "Spaghetti with broccoli, peas and hot-smoked salmon recipe", - "link": "https://www.telegraph.co.uk/recipes/0/spaghetti-with-broccoli-peas-and-hot-smoked-salmon-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:42:06 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485299_17043016685570_trans_NvBQzQNjv4Bq90JsMauqkzRhOnTEP_rlOkikPYR0xYwuEBLwP9UFqPg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "eb683342-042a-30a8-8b19-6deb34c030be", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/quick-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pasta-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/salmon-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/broccoli-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:42:06.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best low-alcohol and non-alcoholic beers of 2024, tried and tested", - "link": "https://www.telegraph.co.uk/food-and-drink/beer/best-low-alcohol-non-alcoholic-beers-alcohol-free/", - "pubDate": "Thu, 04 Jan 2024 11:41:54 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2022/02/07/best-Harveys-Sussex-Best-Best-low-alcohol-beers_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "8c25535c-acfb-3fba-a9ac-7f0190f6a2aa", - "categories": [ - { - "_": "topics:things/beer", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/alcohol", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/dry-january", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weight-loss", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/sober-october", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:41:54.000Z" - }, - { - "creator": "Sam Rice", - "title": "Roast chicken with herby harissa lentils recipe", - "link": "https://www.telegraph.co.uk/recipes/2024/01/04/roast-chicken-with-herby-harissa-lentils-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:41:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361500457_17043004717940_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "e2320120-3570-3f7c-b649-c29f3506eadd", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chicken-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lentil-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/roast-chicken-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:41:04.000Z" - }, - { - "creator": "Sam Rice", - "title": "Simple beef and chickpea tagine recipe", - "link": "https://www.telegraph.co.uk/recipes/0/simple-beef-and-chickpea-tagine-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:39:23 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485399_17042993936870_trans_NvBQzQNjv4BqVLa3QPVTMHf7Wtw837j9bUikPYR0xYwuEBLwP9UFqPg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "ad403b0d-13fd-3430-ac4f-789515abc462", - "categories": [ - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/beef-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/stew-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tagine-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:39:23.000Z" - }, - { - "creator": "Sam Rice", - "title": "Mushroom and lentil masala recipe", - "link": "https://www.telegraph.co.uk/recipes/0/healthy-mushroom-and-lentil-masala-recipe/", - "pubDate": "Thu, 04 Jan 2024 11:37:08 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361486894_17042957638820_trans_NvBQzQNjv4BqmPAcVC8mgxEnW3XOYQwuStkM9MM8VM3G1BxlGUO4L8Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Rice", - "content": "", - "contentSnippet": "", - "guid": "dcb8e7c1-c711-38f5-80d2-780e1831f379", - "categories": [ - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/curry-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mushroom-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lentil-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:37:08.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best vacuums for pet hair 2024, tried and tested in dog and cat-owners' houses", - "link": "https://www.telegraph.co.uk/recommended/home/best-vacuum-pet-hair/", - "pubDate": "Thu, 04 Jan 2024 11:18:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/02/27/TELEMMGLPICT000327044340_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "f187d646-9bd5-3dca-abd7-3b817e200a34", - "categories": [ - { - "_": "topics:things/vacuum-cleaners", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dogs", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cats", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:18:37.000Z" - }, - { - "creator": "Catherine Davison", - "title": "India\u2019s new homegrown vaccine offers hope in fight against cervical cancer", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/indias-new-homegrown-vaccine-for-cervical-cancer/", - "pubDate": "Thu, 04 Jan 2024 11:13:56 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/04/TELEMMGLPICT000361485617_17043653266690_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Catherine Davison", - "content": "", - "contentSnippet": "", - "guid": "d72cce50-aacd-3a3c-87fc-7b7a5c04503c", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cervical-cancer", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vaccines", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/india", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T11:13:56.000Z" - }, - { - "creator": "Victoria Ward", - "title": "Princess Beatrice visits Prince Andrew after Epstein court files release", - "link": "https://www.telegraph.co.uk/royal-family/2024/01/05/princess-beatrice-visits-prince-andrew-epstein-files/", - "pubDate": "Fri, 05 Jan 2024 13:42:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/royal-family/2024/01/05/TELEMMGLPICT000361640260_17044610554810_trans_NvBQzQNjv4BqENh0amqpuv8Z5e8_LKlob_RHlEWgcACQH02ls8s96XU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Victoria Ward", - "content": "", - "contentSnippet": "", - "guid": "5b82129c-3470-3641-8cd5-777783421524", - "categories": [ - { - "_": "topics:people/prince-andrew", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/princess-beatrice", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeffrey-epstein", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/ghislaine-maxwell", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T13:42:17.000Z" - }, - { - "creator": "Debbie McQuoid", - "title": "\u2018There was abuse in my home, but it went under the radar\u2019", - "link": "https://www.telegraph.co.uk/christmas/2024/01/05/abuse-go-beyond-charity-young-carers-domestic-violence/", - "pubDate": "Fri, 05 Jan 2024 13:34:39 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/03/TELEMMGLPICT000360654599_17043032447430_trans_NvBQzQNjv4Bqek9vKm18v_rkIPH9w2GMNpPHkRvugymKLtqq96r_VP8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Debbie McQuoid", - "content": "", - "contentSnippet": "", - "guid": "b1372a68-7fe0-3822-84bf-693e908c5451", - "categories": [ - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/domestic-violence", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/children", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/go-beyond", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T13:34:39.000Z" - }, - { - "creator": "Joe Wright", - "title": "Free cash for parents: how to save \u00a36,500 on nursery fees with new scheme", - "link": "https://www.telegraph.co.uk/money/consumer-affairs/free-childcare-15-hours-how-apply/", - "pubDate": "Fri, 05 Jan 2024 13:28:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/money/2024/01/04/TELEMMGLPICT000361570408_17043911690900_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joe Wright", - "content": "", - "contentSnippet": "", - "guid": "48fbb92f-a038-3165-ba2e-3e19a918d2cb", - "categories": [ - { - "_": "topics:things/consumer-affairs", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/parenthood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/children", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/childcare", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:money", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-guide", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T13:28:14.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "Polar bear dies from bird flu, in first recorded case", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/bird-flu-kills-polar-bear-for-first-time-on-record/", - "pubDate": "Fri, 05 Jan 2024 13:21:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/05/TELEMMGLPICT000225403222_17044594795240_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "fcef8547-8fca-3745-b2ad-7b362554e704", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/bird-flu", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pandemics-epidemics", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/viruses", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/alaska", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/arctic", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T13:21:18.000Z" - }, - { - "creator": "Chanel Zagon", - "title": "UK flooding latest: Henley homes under water as River Thames overflows", - "link": "https://www.telegraph.co.uk/news/2024/01/05/storm-henk-latest-news-flooding-london/", - "pubDate": "Fri, 05 Jan 2024 13:16:50 GMT", - "dc:creator": "Chanel Zagon", - "content": "Riverside houses in Henley-on-Thames are under water as flooding causes chaos across England, with more than 1,000 properties evacuated.

]]>", - "contentSnippet": "", - "guid": "66de5ee7-dd1c-3e3e-bc8d-5af5471c27a3", - "categories": [ - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/met-office", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T13:16:50.000Z" - }, - { - "creator": "Pete Wedderburn", - "title": "The best cat food of 2024, recommended by a vet \u2013 including new online cat food delivery services", - "link": "https://www.telegraph.co.uk/pets/news-features/best-cat-food/", - "pubDate": "Fri, 05 Jan 2024 12:55:42 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/pets/2023/03/22/TELEMMGLPICT000329819598_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Pete Wedderburn", - "content": "", - "contentSnippet": "", - "guid": "8ad7fd9b-65ec-373a-abda-c210ee580f74", - "categories": [ - { - "_": "topics:things/cats", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T12:55:42.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Farage claims Tory MPs believe they have \u2018God-given right to their jobs\u2019", - "link": "https://www.telegraph.co.uk/politics/2024/01/05/rishi-sunak-latest-news-keir-starmer-election-updates/", - "pubDate": "Fri, 05 Jan 2024 12:45:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/05/TELEMMGLPICT000349259506_17044585720020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwZ-noePaJta23NuHfKFFEj8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "content": "Nigel Farage claimed Tory MPs believe they have a \u201cGod-given entitled right to their jobs\u201d amid rising tensions between Reform UK and the Conservative Party. 

]]>", - "contentSnippet": "", - "guid": "3dcbf924-67d3-3f95-abba-75b45501688b", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T12:45:10.000Z" - }, - { - "creator": "Annabel Fenwick-Elliott", - "title": "The best prams, pushchairs and buggies of 2024 tried and tested by new mothers (and their babies)", - "link": "https://www.telegraph.co.uk/recommended/kids/best-prams-pushchairs-buggies/", - "pubDate": "Fri, 05 Jan 2024 12:43:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/31/TELEMMGLPICT000330745664_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Annabel Fenwick-Elliott", - "content": "", - "contentSnippet": "", - "guid": "4e93229a-236b-393e-b4ab-636d8d6a7db8", - "categories": [ - { - "_": "topics:things/children", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/parenthood", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/childbirth", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/motherhood", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/kids", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T12:43:00.000Z" - }, - { - "creator": "Richard Madden", - "title": "Best waterproof jackets for men and women, tried and tested by hiking experts", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-waterproof-jackets/", - "pubDate": "Fri, 05 Jan 2024 12:24:26 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/10/05/TELEMMGLPICT000352061001_16964959600680_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Richard Madden", - "content": "", - "contentSnippet": "", - "guid": "c1a4b279-0d0f-34de-99dd-73ded21226bc", - "categories": [ - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/hiking", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/clothes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mens-fashion", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/workwear", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T12:24:26.000Z" - }, - { - "creator": "Chris Price", - "title": "Shipping giant warns companies of 'significant disruption' from Red Sea attacks - latest updates", - "link": "https://www.telegraph.co.uk/business/2024/01/05/ftse-100-markets-news-halifax-house-prices-us-jobs-latest/", - "pubDate": "Fri, 05 Jan 2024 12:13:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/05/TELEMMGLPICT000361271812_17044551995540_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "Shipping giant Maersk has confirmed it will avoid the vital Red Sea \u201cfor the foreseeable future\u201d in a move which could potentially derail the slowdown in inflation.

]]>", - "contentSnippet": "", - "guid": "c0cc4b18-f850-3c4e-885d-c3070b966ab6", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T12:13:17.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "Best running headphones and wireless earbuds including Beats, Bose and Jaybird, tried and tested", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-running-headphones/", - "pubDate": "Fri, 05 Jan 2024 12:07:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/17/TELEMMGLPICT000322199730_1_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "b0fb2329-3997-370d-8bc1-9496471ba2e1", - "categories": [ - { - "_": "topics:things/running", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health-fitness-faqs", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/apple", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/beats-by-dre", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bose", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T12:07:27.000Z" - }, - { - "creator": "Verity Bowman", - "title": "Israel-Hamas war live: Survivors return to site of Hamas festival massacre", - "link": "https://www.telegraph.co.uk/world-news/2024/01/05/israel-hamas-palestine-gaza-war-latest-news/", - "pubDate": "Fri, 05 Jan 2024 11:43:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/05/TELEMMGLPICT000361624494_17044540998350_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Verity Bowman", - "content": "Survivors have returned to the site of the Supernova music festival in southern Israel, where Hamas massacred hundreds of people and kidnapped others on October 7. 

]]>", - "contentSnippet": "Supernova music festival in southern Israel, where Hamas massacred hundreds of people and kidnapped others on October 7.\u00a0\n]]>", - "guid": "f3d6f13f-b333-3023-9df2-6ac1335b0a07", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T11:43:30.000Z" - }, - { - "creator": "Pete Wedderburn", - "title": "The best dog food: How to choose the right food for your pet", - "link": "https://www.telegraph.co.uk/pets/news-features/best-dog-food-choose-right-food-pet/", - "pubDate": "Fri, 05 Jan 2024 11:29:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/pets/2019/04/17/TELEMMGLPICT000111987623_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQfyf2A9a6I9YchsjMeADBa08.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Pete Wedderburn", - "content": "", - "contentSnippet": "", - "guid": "e8260f38-9634-367c-8c25-a5e75338cdd3", - "categories": [ - { - "_": "topics:things/animals", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dogs", - "$": { - "domain": "" - } - }, - { - "_": "structure:pets", - "$": { - "domain": "" - } - }, - { - "_": "structure:family/pets", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T11:29:34.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The perfect ski holiday in Whistler", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/canada/whistler/whistler-ski-holiday-guide/", - "pubDate": "Fri, 05 Jan 2024 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/whistler-skiers-Tourism-Whistler-Guy-Fattal.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "0ec2a522-6d5c-36c1-8abf-3a8e6f10c5dd", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/whistler", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/canada", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T11:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best accommodation in Whistler", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/canada/whistler/whistler-accommodation/", - "pubDate": "Fri, 05 Jan 2024 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/first-time-canada-whistler-crystal.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "86e97d0e-74f5-3438-b904-625cde683384", - "categories": [ - { - "_": "topics:places/whistler", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/canada", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T11:00:00.000Z" - }, - { - "creator": "Harriet Barber", - "title": "They searched for Argentina\u2019s \u2018disappeared\u2019 \u2013 now they are helping to find Ukraine\u2019s dead", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/they-searched-for-argentinas-disappeared-now-they-are-help/", - "pubDate": "Fri, 05 Jan 2024 10:54:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/04/TELEMMGLPICT000360728434_17043821992590_trans_NvBQzQNjv4BqA7a2BP2KFPtZUOepzpZgXHwSCF1R0VweJ7DS2UnVMSQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Harriet Barber", - "content": "", - "contentSnippet": "", - "guid": "6f95a0ba-8922-38b4-abd0-281e513beac3", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/argentina", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/south-america", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/europe", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T10:54:27.000Z" - }, - { - "creator": "Rob Waugh", - "title": "The best Bluetooth speakers of 2024, recommended by experts and tested at home and outdoors", - "link": "https://www.telegraph.co.uk/recommended/tech/best-bluetooth-speakers/", - "pubDate": "Fri, 05 Jan 2024 10:39:33 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/10/11/TELEMMGLPICT000312343049_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rob Waugh", - "content": "", - "contentSnippet": "", - "guid": "1a1d7cbe-e296-3e1b-baf0-ffa12e027bbc", - "categories": [ - { - "_": "topics:things/gadgets-products", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bose", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bang-and-olufsen", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/sony", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mobile-phones", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:technology/technology-gadgets", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T10:39:33.000Z" - }, - { - "creator": "Jack Rear", - "title": "The best strimmers in 2024 for a neat and tidy garden, reviewed by experts", - "link": "https://www.telegraph.co.uk/recommended/home/best-strimmer/", - "pubDate": "Fri, 05 Jan 2024 10:03:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/02/20/TELEMMGLPICT000326178734_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Rear", - "content": "", - "contentSnippet": "", - "guid": "dfc38d42-282e-33ac-bf34-11a56d5d787e", - "categories": [ - { - "_": "topics:things/lawnmowers", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lawns", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T10:03:04.000Z" - }, - { - "creator": "Jamie Bullen", - "title": "Harry Pitman: Teenagers arrested on suspicion of murder", - "link": "https://www.telegraph.co.uk/news/2024/01/05/harry-pitman-two-boys-arrested-murder-stabbing-new-years/", - "pubDate": "Fri, 05 Jan 2024 09:47:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/05/TELEMMGLPICT000361363018_17044462789670_trans_NvBQzQNjv4BqwR9CmnucIcqQaI247kVHKaRG59k-tizdcoEWRmJ8o-E.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jamie Bullen", - "content": "", - "contentSnippet": "", - "guid": "4bf72d5d-20c4-32ca-a290-03c93c946892", - "categories": [ - { - "_": "topics:in-the-news/knife-crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/london", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T09:47:14.000Z" - }, - { - "creator": "Kulwinder Rai", - "title": "The best gaming chairs of 2024, tried and tested", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-gaming-chair/", - "pubDate": "Fri, 05 Jan 2024 09:41:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/28/TELEMMGLPICT000333690741_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Kulwinder Rai", - "content": "", - "contentSnippet": "", - "guid": "ab9e6ec5-ff6c-314e-8bd5-734a7e8fc631", - "categories": [ - { - "_": "topics:things/gaming", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/back-pain", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:gaming", - "$": { - "domain": "" - } - }, - { - "_": "structure:gaming/pc-gaming", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T09:41:11.000Z" - }, - { - "creator": "Lauren Almeida", - "title": "State pension triple lock confirmed \u2013 this is how much you\u2019ll get", - "link": "https://www.telegraph.co.uk/money/pensions/state-pensions/triple-lock-state-pension-increase-amount/", - "pubDate": "Fri, 05 Jan 2024 05:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/money/2023/11/22/TELEMMGLPICT000357579660_17006644712560_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lauren Almeida", - "content": "", - "contentSnippet": "", - "guid": "4c2c20cd-85dd-3894-a6c2-c0cca7716d9e", - "categories": [ - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/retirement", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/inflation", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/hm-treasury", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/state-pension", - "$": { - "domain": "" - } - }, - { - "_": "structure:money", - "$": { - "domain": "" - } - }, - { - "_": "structure:money/pensions", - "$": { - "domain": "" - } - }, - { - "_": "structure:money/money-hub", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-guide", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "migration:moneyhub", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-05T05:00:00.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "London party boat sinks in Thames after heavy rainfall from Storm Henk", - "link": "https://www.telegraph.co.uk/news/2024/01/04/london-boat-sinks-thames-rain-storm-henk/", - "pubDate": "Thu, 04 Jan 2024 23:23:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/04/TELEMMGLPICT000361584438_17044089165470_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "content": "", - "contentSnippet": "", - "guid": "27d9faf5-eb7c-3efc-971c-b735a7796bfe", - "categories": [ - { - "_": "topics:things/flooding", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/london", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/river-thames", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T23:23:37.000Z" - }, - { - "creator": "Sam Dean", - "title": "'The last thing that either of us wanted' \u2013 Palace and Everton head for replay after stalemate", - "link": "https://www.telegraph.co.uk/football/2024/01/04/crystal-palace-v-everton-fa-cup-third-round-live-latest/", - "pubDate": "Thu, 04 Jan 2024 23:22:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/04/TELEMMGLPICT000361584282_17044045972960_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Dean", - "content": "For Premier League teams in the midst of a relegation dogfight, the FA Cup is usually either a brief distraction or an opportunity to lift spirits. The one thing it should never be is a genuine hindrance, and yet that is the reality Everton were suddenly facing on a dreary and potentially damaging night in south London. 

]]>", - "contentSnippet": "", - "guid": "13efbcf2-693d-3087-b3c8-7b0f28383759", - "categories": [ - { - "_": "topics:organisations/crystal-palace-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/everton-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/fa-cup", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T23:22:27.000Z" - }, - { - "creator": "Luke Edwards", - "title": "Sunderland \u2018insulted fans like never before\u2019 with Newcastle branding at Stadium of Light", - "link": "https://www.telegraph.co.uk/football/2024/01/04/sunderland-stadium-newcastle-branding-u-turn-insult-fa-cup/", - "pubDate": "Thu, 04 Jan 2024 19:17:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/04/TELEMMGLPICT000361569330_17043955480530_trans_NvBQzQNjv4BqQ_mpMv2TBj6JfCZRMkFZ9xCjY_Hmrrl30SXqntmzjTE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Luke Edwards", - "content": "", - "contentSnippet": "", - "guid": "828fe5bd-8250-3983-b998-dd4af1dc62fc", - "categories": [ - { - "_": "topics:organisations/sunderland-afc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/newcastle-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/fa-cup", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T19:17:00.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Thursday evening news briefing: Starmer accuses Sunak of \u2018squatting\u2019 in No10", - "link": "https://www.telegraph.co.uk/news/2024/01/04/thursday-evening-news-briefing-starmer-sunak-squatting/", - "pubDate": "Thu, 04 Jan 2024 17:41:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "898118af-ddf0-3e75-8dc9-ac17bcf33bda", - "categories": [ - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeffrey-epstein", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T17:41:05.000Z" - }, - { - "creator": "Uche Amako", - "title": "Australian Open 2024: When is it, how to watch in UK and will Emma Raducanu play?", - "link": "https://www.telegraph.co.uk/tennis/2024/01/05/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", - "pubDate": "Thu, 04 Jan 2024 17:13:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/04/TELEMMGLPICT000361472773_17043614523580_trans_NvBQzQNjv4Bqf31hxWNT7i64oktrHVICFv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Uche Amako", - "content": "", - "contentSnippet": "", - "guid": "eb0bff4a-f2c7-354c-975d-f4fa6cc81589", - "categories": [ - { - "_": "topics:people/novak-djokovic", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/carlos-alcaraz", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andy-murray", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/emma-raducanu", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T17:13:44.000Z" - }, - { - "creator": "Sophia Yan", - "title": "Iranian masked gunmen seize oil tanker that US previously detained", - "link": "https://www.telegraph.co.uk/world-news/2024/01/11/israel-hamas-war-latest-news-updates-gaza-palestine-day-97/", - "pubDate": "Thu, 11 Jan 2024 20:25:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/11/TELEMMGLPICT000362249864_17049832463580_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXEikPYR0xYwuEBLwP9UFqPg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sophia Yan", - "content": "The Iranian navy have seized an oil tanker off Oman in a retaliatory move against the United States that raised fears for shipping in the Middle East.

]]>", - "contentSnippet": "", - "guid": "7f7a4e0e-c899-39ea-be3f-488a585d6e8f", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/red-sea", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T20:25:43.000Z" - }, - { - "creator": "Daniel Martin", - "title": "Britain and US prepare to strike Houthi rebels in Yemen", - "link": "https://www.telegraph.co.uk/news/2024/01/11/britain-set-to-strike-houthi-rebels-red-sea-yemen/", - "pubDate": "Thu, 11 Jan 2024 20:00:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/11/TELEMMGLPICT000362155498_17049980165400_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Daniel Martin", - "content": "", - "contentSnippet": "", - "guid": "50baa7bf-e444-382a-a723-f89781cf48e6", - "categories": [ - { - "_": "topics:organisations/ministry-of-defence", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/yemen", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/houthis", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T20:00:37.000Z" - }, - { - "creator": "Matthew Field", - "title": "Microsoft and Apple neck and neck in race to be world\u2019s most valuable company", - "link": "https://www.telegraph.co.uk/business/2024/01/11/ftse-100-markets-latest-news-tesco-marks-spencer-inflation/", - "pubDate": "Thu, 11 Jan 2024 18:52:01 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/11/TELEMMGLPICT000275856377_17049866082420_trans_NvBQzQNjv4Bq1F9N6pUIu4QWFka9jlJHP6-lyVrTqf614gQh-rT66PU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Matthew Field", - "content": "Microsoft briefly overtook Apple as the world\u2019s most valuable company on Thursday as its bets on artificial intelligence (AI) begin to pay off.

]]>", - "contentSnippet": "", - "guid": "837be20d-a288-3cd1-9b0a-e53e800d3b7c", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T18:52:01.000Z" - }, - { - "creator": "Jamie Bullen", - "title": "Post Office fraud investigator 'forced disabled postmistress to use parcel lift'", - "link": "https://www.telegraph.co.uk/news/2024/01/11/post-office-scandal-latest-horizon/", - "pubDate": "Thu, 11 Jan 2024 18:15:23 GMT", - "dc:creator": "Jamie Bullen", - "content": "Post Office fraud investigator Stephen Bradshaw has been accused of forcing a disabled postmaster to use a parcel lift ahead of an interview, the inquiry heard.

]]>", - "contentSnippet": "", - "guid": "2e1d9f53-2abd-3049-b2da-a508a9d8c378", - "categories": [ - { - "_": "topics:places/post-office", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T18:15:23.000Z" - }, - { - "creator": "Charlie Morgan", - "title": "\u2018It\u2019s beyond words\u2019: Andy Farrell named British & Irish Lions coach for 2025 tour of Australia", - "link": "https://www.telegraph.co.uk/rugby-union/2024/01/11/british-irish-lions-latest-andy-farrell-head-coach/", - "pubDate": "Thu, 11 Jan 2024 18:07:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/11/TELEMMGLPICT000362257351_17049744718150_trans_NvBQzQNjv4BqbTL0CjLZBYYAtIfCfQMy21HwtdpQwyNje2OyIL7x97s.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charlie Morgan", - "content": "Andy Farrell declared it a \u201ctremendous honour and privilege\u201d to be unveiled as the new British and Irish Lions head coach for the invitational side\u2019s tour of Australia in 2025.

]]>", - "contentSnippet": "", - "guid": "2f7ebee5-b712-34cb-aa95-e7b3faaaca2c", - "categories": [ - { - "_": "topics:people/andy-farrell", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/british-and-irish-lions", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T18:07:59.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Thursday evening news briefing: \u00a31bn of taxpayer money set aside for Post Office scandal compensation", - "link": "https://www.telegraph.co.uk/news/2024/01/11/thursday-evening-news-briefing-1bn-tax-money-post-office/", - "pubDate": "Thu, 11 Jan 2024 17:56:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "a9e9de73-82d8-3620-86b4-29a7957d54c9", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/post-office", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T17:56:10.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - The stark realities of life for frontline volunteer soldiers", - "link": "https://www.telegraph.co.uk/world-news/2024/01/11/ukraine-the-latest-the-stark-realities-of-frontline/", - "pubDate": "Thu, 11 Jan 2024 16:12:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/11/TELEMMGLPICT000362230772_17049858607710_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "14b1eb49-b057-3105-80f2-eb925b1c6554", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T16:12:11.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: \u00a31bn of taxpayer money set aside for Post Office scandal compensation", - "link": "https://www.telegraph.co.uk/politics/2024/01/11/rishi-sunak-latest-post-office-rwanda/", - "pubDate": "Thu, 11 Jan 2024 16:00:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/11/TELEMMGLPICT000362177574_17049765637880_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "content": "Ministers have set aside more than \u00a31billion of taxpayers\u2019 money to pay for Post Office scandal compensation. 

]]>", - "contentSnippet": "", - "guid": "8c8ad54b-f4dd-3344-9397-2804cec5c2db", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T16:00:17.000Z" - }, - { - "creator": "Sarah Newey", - "title": "Authoritarian nations are \u2018weaponising\u2019 the West\u2019s weak stance on human rights abuses, report warns", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/human-rights-abuse-authoritarian-nations-emboldened/", - "pubDate": "Thu, 11 Jan 2024 15:42:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/11/TELEMMGLPICT000360728434_17049832341970_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "content": "", - "contentSnippet": "", - "guid": "d35262d2-bbac-3d59-a359-688bf742ca79", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Conflict", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/human-rights-act", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/war-crimes", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T15:42:53.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best gym leggings: squat-proof styles for running, yoga and gym workouts in 2024", - "link": "https://www.telegraph.co.uk/health-fitness/fitness/workouts/best-gym-leggings/", - "pubDate": "Thu, 11 Jan 2024 11:25:28 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/02/01/TELEMMGLPICT000323950482_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "0a3e5640-906c-3e23-90d4-75d71a4bb4e5", - "categories": [ - { - "_": "topics:things/exercise", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/womens-fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/clothes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/yoga", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/body", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/fitness/workouts", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-guide", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T11:25:28.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best massage guns of 2024 for sore muscles and back pain, tried and tested", - "link": "https://www.telegraph.co.uk/health-fitness/body/best-massage-guns-tried-tested/", - "pubDate": "Thu, 11 Jan 2024 11:20:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2022/12/01/TELEMMGLPICT000318209252_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "8ca3c150-e2c1-3b72-90c0-a9d22fce37db", - "categories": [ - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T11:20:00.000Z" - }, - { - "creator": "Tim Robey", - "title": "The Boys in the Boat: George Clooney catches a crab with this ruthlessly shallow rowing drama", - "link": "https://www.telegraph.co.uk/films/0/the-boys-in-the-boat-review-george-clooney/", - "pubDate": "Thu, 11 Jan 2024 10:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2023/12/15/TELEMMGLPICT000359848701_17026456403360_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Robey", - "content": "", - "contentSnippet": "", - "guid": "16b638a5-ffe3-3e51-9dd8-52318291174f", - "categories": [ - { - "_": "topics:people/george-clooney", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "editors:tim-robey", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T10:00:00.000Z" - }, - { - "creator": "Uche Amako", - "title": "Australian Open 2024: The draw, how to watch and is Emma Raducanu playing", - "link": "https://www.telegraph.co.uk/tennis/2024/01/11/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", - "pubDate": "Thu, 11 Jan 2024 09:50:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/07/TELEMMGLPICT000361403457_17046230192180_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Uche Amako", - "content": "", - "contentSnippet": "", - "guid": "fb68ef16-4c6c-3401-92a4-74fe7775c723", - "categories": [ - { - "_": "topics:people/novak-djokovic", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/carlos-alcaraz", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andy-murray", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/emma-raducanu", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/naomi-osaka", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T09:50:43.000Z" - }, - { - "creator": "Tim Robey", - "title": "The Kitchen: Daniel Kaluuya\u2019s dystopian drama fizzes with style \u2013 but where\u2019s its drive?", - "link": "https://www.telegraph.co.uk/films/0/the-kitchen-review-daniel-kaluuya-london-film-festival/", - "pubDate": "Thu, 11 Jan 2024 09:30:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2023/10/15/TELEMMGLPICT000352994072_16973719137370_trans_NvBQzQNjv4BqBe6O56qrl4zbRlMQqI7UBFHwtdpQwyNje2OyIL7x97s.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Robey", - "content": "", - "contentSnippet": "", - "guid": "2e7ea40d-003d-371b-aa8e-27a7c9af50e7", - "categories": [ - { - "_": "topics:events/london-film-festival", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/netflix", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "editors:tim-robey", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T09:30:00.000Z" - }, - { - "creator": "Robbie Collin", - "title": "Poor Things, review: Emma Stone\u2019s raunchy gothic comedy is unlike anything you\u2019ve seen in years", - "link": "https://www.telegraph.co.uk/films/0/poor-things-review-emma-stone-yorgos-lanthimos/", - "pubDate": "Thu, 11 Jan 2024 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2024/01/10/TELEMMGLPICT000347811105_17049175965780_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Robbie Collin", - "content": "", - "contentSnippet": "", - "guid": "76b351d2-963d-3d1b-9fb9-f6b3834ea3e8", - "categories": [ - { - "_": "topics:events/venice-film-festival", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/comedy-movies", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "structure:film/film-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "editors:robbie-collin", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T09:00:00.000Z" - }, - { - "creator": "Sarah Newey", - "title": "Zika cases surge by almost 300pc in Thailand", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/zika-cases-surge-by-almost-300-per-cent-in-thailand/", - "pubDate": "Thu, 11 Jan 2024 08:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/10/TELEMMGLPICT000286411992_17048972444260_trans_NvBQzQNjv4Bqcb15D5j-aIE0rvtZU-Gw0f4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "content": "", - "contentSnippet": "", - "guid": "0470d2d0-6748-3785-895b-551e8c43157f", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/zika-virus", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mosquitos", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/thailand", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T08:00:00.000Z" - }, - { - "creator": "Andrea Hamblin", - "title": "Man killed in avalanche at Lake Tahoe ski resort", - "link": "https://www.telegraph.co.uk/us/news/2024/01/11/lake-tahoe-palisades-resort-california-avalanche-death/", - "pubDate": "Thu, 11 Jan 2024 04:59:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2024/01/11/TELEMMGLPICT000362208601_17049364369670_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Andrea Hamblin", - "content": "", - "contentSnippet": "", - "guid": "4d1bf872-41bb-31d6-84bf-85f3709c758f", - "categories": [ - { - "_": "topics:places/california", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/alpine-skiing", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/avalanche", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cross-country-skiing", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-11T04:59:19.000Z" - }, - { - "creator": "Chris Bascombe", - "title": "Jurgen Klopp\u2019s changes turn the tide for Liverpool after Fulham let them off the hook", - "link": "https://www.telegraph.co.uk/football/2024/01/10/liverpool-fulham-live-score-updates-carabao-cup-semi/", - "pubDate": "Wed, 10 Jan 2024 22:54:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/10/TELEMMGLPICT000362200246_17049269125080_trans_NvBQzQNjv4Bql0ESzSgmr2JmlmzSGWdBfuil7a1KV2STY3xRqqFt_No.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Bascombe", - "content": "Marco Silva must be getting sick of this particular Anfield movie. For the second successive month, two quickfire goals turned what would have been a famous Fulham victory into Kop elation. 

]]>", - "contentSnippet": "", - "guid": "850caaf5-f33b-3155-b619-2351cc3fd3fd", - "categories": [ - { - "_": "topics:organisations/liverpool-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/fulham-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/capital-one-cup", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:football/football-live-blog", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T22:54:40.000Z" - }, - { - "creator": "Chris Price", - "title": "Inflation to fall below 2pc by spring, say economists", - "link": "https://www.telegraph.co.uk/business/2024/01/10/ftse-100-markets-latest-news-water-pennon-deal-sewage/", - "pubDate": "Wed, 10 Jan 2024 18:28:38 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/10/TELEMMGLPICT000362167767_17048973368250_trans_NvBQzQNjv4BqgDdZKWENzQplGY0DJg4d4zQBrSWEga8isPdlQ67Jalg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "Inflation will fall below 2pc by April or May this year, economists have said, in a boost to mortgage holders hoping for interest rates to fall.

]]>", - "contentSnippet": "", - "guid": "8d76d5de-58f9-3caa-9fcd-c27df0792f5c", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T18:28:38.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Wednesday evening news briefing: Boeing boss admits mid-air plane blowout was \u2018our mistake\u2019", - "link": "https://www.telegraph.co.uk/news/2024/01/10/wednesday-evening-news-briefing-boeing-boss-admits-mistake/", - "pubDate": "Wed, 10 Jan 2024 17:36:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "53bf64b2-a4c5-309a-be90-7297f2702003", - "categories": [ - { - "_": "topics:organisations/boeing", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/post-office", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T17:36:17.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Germany pressures EU allies to commit more support for Ukraine", - "link": "https://www.telegraph.co.uk/world-news/2024/01/10/germany-pressures-eu-allies-to-commit-more-support/", - "pubDate": "Wed, 10 Jan 2024 17:13:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/10/TELEMMGLPICT000361747844_17049067942590_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwekapBZ1c_8650LP5YH00zA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "77e57d34-3f08-3600-b744-9c67ebd13bdb", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T17:13:55.000Z" - }, - { - "creator": "Paul Nuki", - "title": "Q&A: Will Israel be charged with genocide at The Hague?", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/gaza-genocide-international-court-of-justice-the-hague/", - "pubDate": "Wed, 10 Jan 2024 16:26:13 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/10/TELEMMGLPICT000359226455_17049073112850_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Paul Nuki", - "content": "", - "contentSnippet": "", - "guid": "6a5e824a-ad44-3056-902c-1b324c0567e0", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/south-africa", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T16:26:13.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Israel-Hamas war: IDF denies deliberately driving over Palestinian's dead body", - "link": "https://www.telegraph.co.uk/world-news/2024/01/10/israel-hamas-war-latest-news-updates-gaza-palestine-day-96/", - "pubDate": "Wed, 10 Jan 2024 16:00:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/10/TELEMMGLPICT000362166289_17049008302420_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "content": "Israel\u2019s military has denied allegations its troops deliberately ran over the dead body of a Palestinian fighter killed in a West Bank gun battle, saying the incident was \u201cunintentional\u201d.

]]>", - "contentSnippet": "West Bank gun battle, saying the incident was \u201cunintentional\u201d.\n]]>", - "guid": "0a489a3f-48c6-3c68-ab74-830c6cf3d78c", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T16:00:43.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Sunak 'taken hostage' by Tory MPs over Rwanda plan, claims Starmer", - "link": "https://www.telegraph.co.uk/politics/2024/01/10/rishi-sunak-latest-news-post-office-hollinrake-horizon/", - "pubDate": "Wed, 10 Jan 2024 16:00:12 GMT", - "dc:creator": "Jack Maidment", - "content": "Sir Keir Starmer claimed Rishi Sunak had been \u201ctaken hostage\u201d by Tory MPs over his flagship Rwanda plan. 

]]>", - "contentSnippet": "", - "guid": "edcae492-da07-3230-b732-c010ecb9163f", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T16:00:12.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "Medical support charity intervenes at notorious UK asylum centre", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/medicines-sans-frontieres-wethersfield-essex-asylum-seekers/", - "pubDate": "Wed, 10 Jan 2024 15:57:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/10/TELEMMGLPICT000362164938_17049015915440_trans_NvBQzQNjv4BqLgh7iYB6BmgO3j6FNL9Qb_YlYh7-uISR8OtYL90SczM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "1f3495c1-520e-32b3-9a50-bd61a02e3ef3", - "categories": [ - { - "_": "topics:things/migrants", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/refugee-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mental-health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mental-health-emergency", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T15:57:11.000Z" - }, - { - "creator": "Katie Russell", - "title": "The 26 best dating sites and apps if you're looking for love", - "link": "https://www.telegraph.co.uk/women/sex/the-26-best-online-dating-websites-apps/", - "pubDate": "Wed, 10 Jan 2024 15:54:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/women/2022/09/09/TELEMMGLPICT000304752796_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Katie Russell", - "content": "", - "contentSnippet": "", - "guid": "1a740385-28df-34f7-a9e7-1a5205c053af", - "categories": [ - { - "_": "topics:things/sex", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dating-advice", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/apps", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/love-&-friendship", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T15:54:51.000Z" - }, - { - "creator": "Sam Green", - "title": "Team GB at Paris Olympics: Who are the British athletes to watch at the 2024 Games?", - "link": "https://www.telegraph.co.uk/olympics/0/team-gb-paris-olympics-2024-who-british-athletes-uk/", - "pubDate": "Wed, 10 Jan 2024 14:53:56 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/olympics/2023/12/07/TELEMMGLPICT000356815679_17019734880590_trans_NvBQzQNjv4BqohsGFk6lowxuVmfrTuwcJT9ASLmGjYcg7PvUxmdwfLM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Green", - "content": "", - "contentSnippet": "", - "guid": "a94bbe13-14f9-3c75-a422-fbd91622314b", - "categories": [ - { - "_": "topics:organisations/team-gb", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/paris-olympics-2024", - "$": { - "domain": "" - } - }, - { - "_": "structure:olympics", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-climbing", - "$": { - "domain": "" - } - }, - { - "_": "structure:triathlon", - "$": { - "domain": "" - } - }, - { - "_": "structure:sailing", - "$": { - "domain": "" - } - }, - { - "_": "structure:canoeing", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T14:53:56.000Z" - }, - { - "creator": "Verity Bowman", - "title": "Sexual violence in Sudan conflict becomes as commonplace as the fighting", - "link": "https://www.telegraph.co.uk/global-health/women-and-girls/sexual-violence-war-sudan-darfur-rapid-support-forces/", - "pubDate": "Wed, 10 Jan 2024 14:11:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/10/TELEMMGLPICT000356824531_17048938773050_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Verity Bowman", - "content": "", - "contentSnippet": "", - "guid": "c4483d5d-7260-3f36-96a6-0b62946fe150", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Conflict", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/sexual-assault", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/rape", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/sudan", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/africa", - "$": { - "domain": "" - } - }, - { - "_": "structure:women-and-girls", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T14:11:24.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best robot vacuum cleaners, tried and tested at home", - "link": "https://www.telegraph.co.uk/recommended/home/best-robot-vacuum-cleaners-tried-tested/", - "pubDate": "Wed, 10 Jan 2024 12:56:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/06/30/TELEMMGLPICT000341099901_16881250056140_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "4cf7c7ac-99de-33fb-94e6-4b2905df8fea", - "categories": [ - { - "_": "topics:things/robotics", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vacuum-cleaners", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T12:56:12.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Police officer investigated after pensioner killed on pedestrian crossing", - "link": "https://www.telegraph.co.uk/news/2024/01/10/police-officer-investigated-pensioner-killed-nottingham/", - "pubDate": "Wed, 10 Jan 2024 12:50:26 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/10/TELEMMGLPICT000360674556_17048909879370_trans_NvBQzQNjv4BqQHQXnx-CaC46TsrII-_W3JCEqrhVke6n9wG2UhkSWPs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "content": "", - "contentSnippet": "", - "guid": "d3423d2f-e34a-3c60-8ae9-a3b64e3bd45b", - "categories": [ - { - "_": "topics:organisations/nottinghamshire-police", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/nottingham", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/police", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T12:50:26.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "Three people killed in US storms as 900,000 without power", - "link": "https://www.telegraph.co.uk/us/news/2024/01/10/us-storm-weather-new-york-new-jersey-pennsylvania-power/", - "pubDate": "Wed, 10 Jan 2024 09:10:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2024/01/10/TELEMMGLPICT000362118058_17048765769330_trans_NvBQzQNjv4Bq3VPGG0kT-UwTbOOqgA0Jd_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "content": "", - "contentSnippet": "", - "guid": "834d3eae-3d75-3da2-a94d-0c531e0f7181", - "categories": [ - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/new-york", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/snow", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/flooding", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/florida", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T09:10:14.000Z" - }, - { - "creator": "Jack Rear", - "title": "My wife was diagnosed with Alzheimer\u2019s at 61 \u2013 here\u2019s what I wish I\u2019d known", - "link": "https://www.telegraph.co.uk/christmas/2024/01/10/alzheimers-dementia-wife-carer-support-memory-charity/", - "pubDate": "Wed, 10 Jan 2024 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/09/TELEMMGLPICT000362082451_17048152632490_trans_NvBQzQNjv4BqbDukEpMqms9Vdjy67BdVVfLJTvBH1uMlde-z_5VjwK8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Rear", - "content": "", - "contentSnippet": "", - "guid": "7d16a402-47b7-3886-967d-d8fdf479da8a", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dementia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/race-against-dementia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/alzheimers-disease", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/memory", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:daily-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:other-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-10T09:00:00.000Z" - }, - { - "creator": "Mike McGrath", - "title": "Middlesbrough rattle wobbly Chelsea as Mauricio Pochettino faces up to another defeat", - "link": "https://www.telegraph.co.uk/football/2024/01/09/middlesbrough-chelsea-live-score-updates-carabao-cup-semi/", - "pubDate": "Tue, 09 Jan 2024 23:35:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/09/TELEMMGLPICT000362102721_17048334447050_trans_NvBQzQNjv4BqjJeHvIwLm2xPr27m7LF8mamM7PGrmz_msLjgavdLCgA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mike McGrath", - "content": "Taxi for Mauricio Pochettino. Chelsea\u2019s hopes of silverware to paper over their cracks this season were being driven away in a Hackney carriage on another disappointing evening at the Riverside Stadium.

]]>", - "contentSnippet": "", - "guid": "fee46deb-0568-39d8-9610-2762d1ce5be7", - "categories": [ - { - "_": "topics:organisations/middlesbrough-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/chelsea-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/capital-one-cup", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:football/football-live-blog", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T23:35:55.000Z" - }, - { - "creator": "Charlotte Eggleston-Johnstone", - "title": "15 amazing UK castles you can actually stay in", - "link": "https://www.telegraph.co.uk/travel/destinations/europe/united-kingdom/articles/best-castle-hotels-in-britain/", - "pubDate": "Tue, 09 Jan 2024 21:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/articles/castle-hotels/hever-castle-bedroom.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charlotte Eggleston-Johnstone", - "content": "", - "contentSnippet": "", - "guid": "43215fee-354c-399b-ada7-b5b18d595fae", - "categories": [ - { - "_": "topics:places/europe", - "$": { - "domain": "" - } - }, - { - "_": "travel-entity:article", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/hotels", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ireland", - "$": { - "domain": "" - } - }, - { - "_": "structure:hotel-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/england", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/scotland", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T21:00:00.000Z" - }, - { - "creator": "Niamh Robinson", - "title": "Pictured: Anthony Joshua takes on liger in tug-of-war battle", - "link": "https://www.telegraph.co.uk/news/2024/01/09/anthony-joshua-liger-tug-of-war-dubai-zoo-loses-fight/", - "pubDate": "Tue, 09 Jan 2024 18:57:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/09/TELEMMGLPICT000362072920_17048201802140_trans_NvBQzQNjv4Bqu6sInUPBspMzi5yaiPhRW52JsrVGGG_o5NfzRS6PrV0.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Niamh Robinson", - "content": "", - "contentSnippet": "", - "guid": "246a800d-7d97-32e6-96c0-cf8cb6807df4", - "categories": [ - { - "_": "topics:people/anthony-joshua", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/dubai", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tigers", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lions", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/animals", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T18:57:04.000Z" - }, - { - "creator": "Chris Price", - "title": "We didn't mean to rip people off at the pump, say Asda owners", - "link": "https://www.telegraph.co.uk/business/2024/01/09/ftse-100-markets-latest-news-christmas-cost-of-living/", - "pubDate": "Tue, 09 Jan 2024 18:42:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/09/TELEMMGLPICT000342542969_17048136072850_trans_NvBQzQNjv4Bq1-a9hIoAslRQBYTyQ1m8SOaN-yeXFfKDgM3A_FjAYYY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "The co-owners of Asda have insisted the grocery chain did not intend to make a bigger profit on fuel prices, after an investigation last year found it had bumped up fuel margins during the cost-of-living crisis.

]]>", - "contentSnippet": "", - "guid": "b0700de4-3503-3963-8a1a-84f689a14af1", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T18:42:10.000Z" - }, - { - "creator": "Benedict Smith", - "title": "Trump warns 'there will be bedlam' if Jan 6 prosecution goes ahead", - "link": "https://www.telegraph.co.uk/us/politics/2024/01/09/trump-presidential-immunity-appeal-hearing-dc-circuit-court/", - "pubDate": "Tue, 09 Jan 2024 18:09:58 GMT", - "dc:creator": "Benedict Smith", - "content": "Donald Trump has warned there will be \u201cbedlam\u201d if the justice department is allowed to prosecute him on election interference claims, accusing Joe Biden of attempting to push him off the ballot.

]]>", - "contentSnippet": "", - "guid": "a03db7c6-b943-37b6-bb50-f5602b7e54ce", - "categories": [ - { - "_": "topics:people/donald-trump", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/us-politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T18:09:58.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Post Office latest news: Paula Vennells returning CBE 'obviously the right decision', says No10", - "link": "https://www.telegraph.co.uk/politics/2024/01/09/rishi-sunak-latest-news-stride-post-office-cameron/", - "pubDate": "Tue, 09 Jan 2024 18:06:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/09/TELEMMGLPICT000361981238_17048077191180_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "content": "Former Post Office boss Paula Vennells handing back her CBE is \u201cobviously the right decision\u201d, Downing Street has said.

]]>", - "contentSnippet": "", - "guid": "8dc5a0e9-059d-3dcd-a96a-5cde2523b33f", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T18:06:02.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Tuesday evening news briefing: Ed Davey faces growing calls to quit over role in Post Office scandal", - "link": "https://www.telegraph.co.uk/news/2024/01/09/tuesday-evening-news-briefing-ed-davey-post-office-quit/", - "pubDate": "Tue, 09 Jan 2024 17:27:31 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "1729b384-4610-3cdd-98b6-45296fc8cc42", - "categories": [ - { - "_": "topics:people/ed-davey", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/post-office", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/david-cameron", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T17:27:31.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - West not pressuring Ukraine to surrender, Kyiv insists", - "link": "https://www.telegraph.co.uk/world-news/2024/01/09/west-not-pressuring-ukraine-to-surrender-kyiv-insists/", - "pubDate": "Tue, 09 Jan 2024 16:23:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/09/TELEMMGLPICT000362087423_17048175926520_trans_NvBQzQNjv4Bqv3hxuICTza90rxjOncu1SDDAfwB3lrD912jpbltkVmM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "9678ea2a-a2d1-3b77-83c8-a7e9aa79b2a5", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T16:23:30.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Israel-Hamas war: Cameron says Israel may have broken international law", - "link": "https://www.telegraph.co.uk/world-news/2024/01/09/israel-hamas-war-latest-updates-gaza-palestine-day-95-live/", - "pubDate": "Tue, 09 Jan 2024 16:02:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/09/TELEMMGLPICT000362083451_17048160461390_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "content": "Israel may have broken international law in Gaza, Lord Cameron has said, as he called for a humanitarian pause covering the enclave.

]]>", - "contentSnippet": "", - "guid": "bd8f23f5-1f3c-385c-a847-3e898054e683", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T16:02:57.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best accommodation in Alpe d'Huez", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/alpe-dhuez/alpe-dhuez-hotels-and-chalets/", - "pubDate": "Tue, 09 Jan 2024 16:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/2020/Aout/club-med-alpe-dhuez-france-2-p.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "7be5f5a9-00e8-3f3b-8901-9d6e3a247adf", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T16:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "An expert guide to ski holidays in Alpe d'Huez", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/alpe-dhuez/alpe-dhuez-ski-holiday-guide/", - "pubDate": "Tue, 09 Jan 2024 16:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/piste-Alpe d'Huez - Benjamin Valette.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "e0454f6d-2ce4-329c-a812-d231a55b31d4", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T16:00:00.000Z" - }, - { - "creator": "Emma Gatten", - "title": "UK weather latest: Homes in Berkshire evacuated as River Thames floods", - "link": "https://www.telegraph.co.uk/news/2024/01/09/berkshire-flooding-wraysbury-evacuation-river-thames/", - "pubDate": "Tue, 09 Jan 2024 15:45:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/09/TELEMMGLPICT000362058087_17047999454380_trans_NvBQzQNjv4BqjbG32Blm9FY3rhpGt7ciwIX55UGE1-QmdhXTcMmlCx4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emma Gatten", - "content": "", - "contentSnippet": "", - "guid": "05ce4ad4-a797-3292-95e6-63348b8e5253", - "categories": [ - { - "_": "topics:places/river-thames", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/flooding", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/berkshire", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T15:45:43.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Harry Pitman stabbed with hunting knife after New Year\u2019s Eve fight, court hears", - "link": "https://www.telegraph.co.uk/news/2024/01/09/harry-pitman-stabbed-with-hunting-knife-new-years/", - "pubDate": "Tue, 09 Jan 2024 15:07:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/09/TELEMMGLPICT000361714351_17048116211990_trans_NvBQzQNjv4BqO65TkrT7BriBrd3fK6VEgzRD3vWcyS41OHqZ-GGYMKw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "content": "", - "contentSnippet": "", - "guid": "35bf1001-fe3d-3076-b4f3-a91bb2f97753", - "categories": [ - { - "_": "topics:in-the-news/knife-crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/london", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T15:07:05.000Z" - }, - { - "creator": "Telegraph Sport", - "title": "January transfer deadline day 2024: All you need to know", - "link": "https://www.telegraph.co.uk/football/0/january-transfer-deadline-day-when-watch-guide/", - "pubDate": "Tue, 09 Jan 2024 14:18:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/09/TELEMMGLPICT000361768944_17048097888020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwWyaKjL1CatlwZEbgNRqSgg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Sport", - "content": "", - "contentSnippet": "", - "guid": "abdcc6c8-7547-34cd-bc27-dad9c3fbcdba", - "categories": [ - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/football-transfers", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T14:18:36.000Z" - }, - { - "creator": "Tom Ward", - "title": "NFL Super Bowl 2024 Guide: When is it, how to watch, half-time show and latest odds", - "link": "https://www.telegraph.co.uk/american-football/2024/01/09/nfl-super-bowl-guide-when-date-winners-uk-tv-channel/", - "pubDate": "Tue, 09 Jan 2024 13:52:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/american-football/2024/01/09/TELEMMGLPICT000325263717_17048012517520_trans_NvBQzQNjv4BqnFWrKBYEBGn6ARPcMRQYjS82-ivqc6avWefomlBmWCs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom Ward", - "content": "", - "contentSnippet": "", - "guid": "077e22c8-7abf-326c-b425-597bd27547c5", - "categories": [ - { - "_": "topics:organisations/nfl", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/super-bowl", - "$": { - "domain": "" - } - }, - { - "_": "structure:american-football", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T13:52:17.000Z" - }, - { - "creator": "Jamie Bullen", - "title": "Four arrested after man stabbed to death at Strawberry Hill station", - "link": "https://www.telegraph.co.uk/news/2024/01/09/man-stabbed-death-strawberry-hill-station-london/", - "pubDate": "Tue, 09 Jan 2024 13:52:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/09/TELEMMGLPICT000362065837_17048002482290_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jamie Bullen", - "content": "", - "contentSnippet": "", - "guid": "7f11608d-f2fc-3f49-b1f6-8ac2168170a6", - "categories": [ - { - "_": "topics:in-the-news/knife-crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/london", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/british-transport-police", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T13:52:11.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "New drug offers promising breakthrough for endometriosis patients", - "link": "https://www.telegraph.co.uk/global-health/women-and-girls/endometriosis-treatment-dca-trial-breakthrough/", - "pubDate": "Tue, 09 Jan 2024 12:08:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/09/TELEMMGLPICT000154418917_17048008570230_trans_NvBQzQNjv4BqXAI13NdOqfkC5AL3Xcik1pBBlUc4_N9fXDpxOJCVcuw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "9110db38-1b1d-325c-854d-23f9a4814db3", - "categories": [ - { - "_": "topics:things/endometriosis", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/women's-health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/medicines", - "$": { - "domain": "" - } - }, - { - "_": "structure:women-and-girls", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T12:08:05.000Z" - }, - { - "creator": "Luke Slater", - "title": "England vs India, Test series and tour: Full schedule and fixtures", - "link": "https://www.telegraph.co.uk/cricket/0/england-vs-india-test-tour-2024-full-schedule-and-fixtures/", - "pubDate": "Tue, 09 Jan 2024 12:02:01 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2024/01/09/TELEMMGLPICT000361024498_17048016311440_trans_NvBQzQNjv4BqG_mptpChRHij4fwYXW1nLNSg9kdm7XGDZagULvp4PAs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Luke Slater", - "content": "", - "contentSnippet": "", - "guid": "ab2cbca9-ba41-3573-b1e9-a4c1532ac213", - "categories": [ - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/india-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T12:02:01.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "Britons spending thousands on controversial therapy to tackle antibiotic-resistant infections", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/phage-therapy-antibiotic-resistance-amr/", - "pubDate": "Tue, 09 Jan 2024 10:19:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/08/TELEMMGLPICT000338320355_17047310278610_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "d3fc751e-2c2e-31f7-b4d0-bd1bd647d50a", - "categories": [ - { - "_": "topics:things/superbugs-antibiotic-resistance", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/georgia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/antibiotics", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/scientific-research", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T10:19:30.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best pocket sprung mattresses of 2024 for complete body support, tried and tested", - "link": "https://www.telegraph.co.uk/recommended/home/best-pocket-sprung-mattress/", - "pubDate": "Tue, 09 Jan 2024 10:17:23 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/26/TELEMMGLPICT000337090097_16850934292980_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "d8330fc0-3791-37e4-b1bd-b9905d9ade20", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep-hygiene", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T10:17:23.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "South Korea bans dog meat industry", - "link": "https://www.telegraph.co.uk/world-news/2024/01/09/south-korea-bans-dog-meat-trade/", - "pubDate": "Tue, 09 Jan 2024 08:26:58 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/09/TELEMMGLPICT000278791581_17047877312910_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "content": "", - "contentSnippet": "", - "guid": "b976eff8-3bd9-379c-abfb-bbf78d367ced", - "categories": [ - { - "_": "topics:places/south-korea", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dogs", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T08:26:58.000Z" - }, - { - "creator": "Mattie Brignal", - "title": "Britain is plagued by potholes \u2013 here\u2019s how to get the council to pay for damage to your car", - "link": "https://www.telegraph.co.uk/money/consumer-affairs/how-fight-local-council-pothole-car-damage/", - "pubDate": "Tue, 09 Jan 2024 08:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/money/2023/01/10/TELEMMGLPICT000321579804_trans_NvBQzQNjv4BqD19gJsrS5dVDZFTjDrjdaDcN4i_xBuyPzE6BS-X5tZc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mattie Brignal", - "content": "", - "contentSnippet": "", - "guid": "641bdc6e-d6a1-3753-9489-f6d2b95a163c", - "categories": [ - { - "_": "topics:things/consumer-affairs", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/road-safety", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/roads", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/local-councils", - "$": { - "domain": "" - } - }, - { - "_": "structure:money", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-guide", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-09T08:00:00.000Z" - }, - { - "creator": "Jason Burt", - "title": "Profligate Man Utd into FA Cup fourth round as Ineos chiefs watch from Wigan stands", - "link": "https://www.telegraph.co.uk/football/2024/01/08/wigan-v-man-utd-live-score-updates-fa-cup-draw-results/", - "pubDate": "Mon, 08 Jan 2024 23:46:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/08/TELEMMGLPICT000362018303_17047508755600_trans_NvBQzQNjv4Bq1KIXErYLU_ys0btMQgkTCL4IRjEKs1dXpT9nFhZBmMw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jason Burt", - "content": "Every fixture must feel like a trial for Erik ten Hag at present and an icy night in Wigan for an FA Cup tie felt like one where Manchester United might just slip up.

]]>", - "contentSnippet": "", - "guid": "ed631aa3-8f08-3353-aaec-d545610a9558", - "categories": [ - { - "_": "topics:organisations/manchester-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/wigan-athletic-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/fa-cup", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/fa-cup-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T23:46:02.000Z" - }, - { - "creator": "Ben Riley-Smith", - "title": "Sunak would \u2018strongly support\u2019 review of former Post Office boss\u2019s CBE", - "link": "https://www.telegraph.co.uk/politics/2024/01/08/rishi-sunak-latest-news-sharma-north-sea-post-office-live/", - "pubDate": "Mon, 08 Jan 2024 21:15:26 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/08/TELEMMGLPICT000361966611_17047486012470_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Riley-Smith", - "content": "Rishi Sunak intervened in the Post Office honours row by saying he would \u201cstrongly support\u201d a review into whether Paula Vennells should be stripped of her CBE.

]]>", - "contentSnippet": "Rishi Sunak intervened in the Post Office honours row by saying he would \u201cstrongly support\u201d a review into whether Paula Vennells should be stripped of her CBE.\n]]>", - "guid": "cf9bd0a8-c6aa-30f7-ba43-e6896b66c362", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/post-office", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T21:15:26.000Z" - }, - { - "creator": "Michael Bow", - "title": "Barclays sheds 5,000 jobs amid cost-cutting drive", - "link": "https://www.telegraph.co.uk/business/2024/01/08/ftse-100-markets-news-live-channel-4-job-cuts-latest/", - "pubDate": "Mon, 08 Jan 2024 19:18:42 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/08/TELEMMGLPICT000348982968_17047381321620_trans_NvBQzQNjv4BqNKqRESvbksstVAhHMOFtR6yp700tt5EFlbbqAAy35S8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Michael Bow", - "content": "Barclays cut its workforce by around 5,000 last year as part of an ongoing push to strip costs from the lender.

]]>", - "contentSnippet": "", - "guid": "7e8d3322-e28f-3f5e-a1e8-611af784d70e", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T19:18:42.000Z" - }, - { - "creator": "Alex Bolot", - "title": "Monday evening news briefing: Sunak would 'strongly support' review into revoking CBE of ex-Post Office boss", - "link": "https://www.telegraph.co.uk/news/2024/01/08/monday-evening-news-briefing-sunak-post-office-review/", - "pubDate": "Mon, 08 Jan 2024 17:45:42 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alex Bolot", - "content": "", - "contentSnippet": "", - "guid": "489adbb2-632e-32e9-a2a1-a9658ef37d44", - "categories": [ - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/alok-sharma", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T17:45:42.000Z" - }, - { - "creator": "Rob Waugh", - "title": "The best laptops for students in 2024, from MacBooks to Chromebooks, plus the best student discounts", - "link": "https://www.telegraph.co.uk/recommended/tech/best-laptops-students/", - "pubDate": "Mon, 08 Jan 2024 17:38:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/26/TELEMMGLPICT000306902510_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rob Waugh", - "content": "", - "contentSnippet": "", - "guid": "b64376e5-ca7c-312e-ae8f-aa7d23d49057", - "categories": [ - { - "_": "topics:things/university-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tech-faqs", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/laptops", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/university-education", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tablets", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T17:38:46.000Z" - }, - { - "creator": "Chas Newkey-Burden", - "title": "The best beard trimmers of 2024, tried and tested for precision and styling versatility", - "link": "https://www.telegraph.co.uk/recommended/home/best-beard-trimmers/", - "pubDate": "Mon, 08 Jan 2024 16:59:39 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/26/TELEMMGLPICT000333394608_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chas Newkey-Burden", - "content": "", - "contentSnippet": "", - "guid": "b1b8453d-14bd-35d6-b963-5f91329a341b", - "categories": [ - { - "_": "topics:things/mens-fashion", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/skin", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mens-grooming", - "$": { - "domain": "" - } - }, - { - "_": "structure:men", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:59:39.000Z" - }, - { - "creator": "Kulwinder Rai", - "title": "The best standing desks for working at home, tried and tested \u2013 do they really relieve back pain?", - "link": "https://www.telegraph.co.uk/recommended/home/best-standing-desk/", - "pubDate": "Mon, 08 Jan 2024 16:58:03 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/04/TELEMMGLPICT000331186180_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Kulwinder Rai", - "content": "", - "contentSnippet": "", - "guid": "5a6ecfd2-3774-3221-91ef-0b9d656c8180", - "categories": [ - { - "_": "topics:things/working-from-home", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/back-pain", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:58:03.000Z" - }, - { - "creator": "Tom\u00e9 Morrissy Swan", - "title": "The best portable BBQs of 2024 for grilling on the go", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-portable-bbqs-grilling-go/", - "pubDate": "Mon, 08 Jan 2024 16:49:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/07/05/TELEMMGLPICT000341596103_16885588240350_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom\u00e9 Morrissy Swan", - "content": "", - "contentSnippet": "", - "guid": "1bfc618b-5267-3cb3-a141-fd70c35d5dc6", - "categories": [ - { - "_": "topics:things/barbecue", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/bbq-barbecue-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/summer-bank-holiday", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink", - "$": { - "domain": "" - } - }, - { - "_": "structure:food-and-drink/food-and-drink-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:49:43.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Russian drones 'spying' on Ukrainian troops in Germany", - "link": "https://www.telegraph.co.uk/world-news/2024/01/08/russian-drones-spying-on-ukrainian-troops-in-germany/", - "pubDate": "Mon, 08 Jan 2024 16:48:06 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/08/TELEMMGLPICT000359982554_17047316367420_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "56c26995-b325-3765-b1c2-2a51fc9962ee", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:48:06.000Z" - }, - { - "creator": "Helen Pickles", - "title": "The best spa hotels in the north of England", - "link": "https://www.telegraph.co.uk/travel/destinations/europe/united-kingdom/england/articles/the-best-spa-hotels-in-the-north-of-england/", - "pubDate": "Mon, 08 Jan 2024 16:43:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/2018/September/gilpin-spa-lodge.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Helen Pickles", - "content": "", - "contentSnippet": "", - "guid": "104947eb-81c8-3457-b332-6edae177e34e", - "categories": [ - { - "_": "topics:places/europe", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/york", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/spas", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/yorkshire", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/hotels", - "$": { - "domain": "" - } - }, - { - "_": "structure:hotel-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/england", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/cotswolds", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/county-durham", - "$": { - "domain": "" - } - }, - { - "_": "travel-entity:article", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/lake-district", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/top-10", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/top-10-hotels", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:43:00.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best water bottles in 2024 including insulated, gym and sustainable options", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-water-bottles/", - "pubDate": "Mon, 08 Jan 2024 16:42:29 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/03/TELEMMGLPICT000327511074_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "4f55096f-957e-35f5-af57-0903433246e6", - "categories": [ - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/recycling", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/at-home-fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/womens-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:wellbeing/health", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty/fitness", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:42:29.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best carry-on luggage to fit all airlines in 2024, tried and tested", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-carry-on-luggage/", - "pubDate": "Mon, 08 Jan 2024 16:28:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/06/12/TELEMMGLPICT000338622417_16865602448900_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "3a2d0f54-4323-3c92-a161-50bf372bf99e", - "categories": [ - { - "_": "topics:things/luggage", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/luxury-travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/solo-travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/british-airways", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/airline-industry", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:28:57.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best yoga mats of 2024: non-slip exercise mats tried and tested, from Lululemon to Sweaty Betty", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-yoga-mats/", - "pubDate": "Mon, 08 Jan 2024 16:25:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/12/16/TELEMMGLPICT000319883355_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "25c0c7fc-13d6-38d1-b26e-8c950446a2c8", - "categories": [ - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/yoga", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:25:43.000Z" - }, - { - "creator": "Ruby Deevoy", - "title": "The best dog beds of 2024, tried and tested by canine experts", - "link": "https://www.telegraph.co.uk/recommended/home/best-dog-beds/", - "pubDate": "Mon, 08 Jan 2024 16:15:20 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/09/11/TELEMMGLPICT000348875774_16944257861300_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ruby Deevoy", - "content": "", - "contentSnippet": "", - "guid": "348f7cc2-bf28-37ea-b2ed-799683ceae73", - "categories": [ - { - "_": "topics:things/dogs", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/animals", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:15:20.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Israel says it is scaling down Gaza war", - "link": "https://www.telegraph.co.uk/world-news/2024/01/08/israel-hamas-war-latest-updates-gaza-palestine-day-94-live/", - "pubDate": "Mon, 08 Jan 2024 16:00:38 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/08/TELEMMGLPICT000361867465_17047261429450_trans_NvBQzQNjv4Bq_yinDx4FRR66WmBAJxdJbFHmPOpeFd0SyQx9dn7kM_w.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "content": "Israel says it has begun a new, less intense phase of the war, admitting publicly for the first time that the conflict has \u201cshifted\u201d.

]]>", - "contentSnippet": "the conflict has \u201cshifted\u201d.\n]]>", - "guid": "29bfdc72-ca91-3b33-a667-7021db955cbe", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:00:38.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The best fans to keep you cool at home or in the office in 2024, tried and tested", - "link": "https://www.telegraph.co.uk/recommended/home/best-fans/", - "pubDate": "Mon, 08 Jan 2024 16:00:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/13/TELEMMGLPICT000331987965_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "e909b9fd-67c7-3d9c-bd98-895ef38eba54", - "categories": [ - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/energy", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/heatwave", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T16:00:02.000Z" - }, - { - "creator": "Ben Farmer", - "title": "Taliban bomb kills six in Pakistan polio vaccination mission", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/taliban-bomb-pakistan-kills-police-polio/", - "pubDate": "Mon, 08 Jan 2024 15:34:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/08/TELEMMGLPICT000361965005_17047278354920_trans_NvBQzQNjv4BqRMPdAQh26qjv-IIr3xDRU5LMlSxDITJSyZXG_22hUos.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Farmer", - "content": "", - "contentSnippet": "", - "guid": "59881fd0-d4ff-365b-9ece-0a3a93306845", - "categories": [ - { - "_": "topics:places/pakistan", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/polio", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/taliban", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/terrorism", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vaccines", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T15:34:51.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The 9 best patio heaters for 2024 to warm up any garden or outdoor space, chosen by experts", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/the-best-garden-heaters/", - "pubDate": "Mon, 08 Jan 2024 15:33:01 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/03/29/TELEMMGLPICT000330514972_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "6135198c-65f4-354a-b1c4-436798d24eda", - "categories": [ - { - "_": "topics:things/barbecue", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/summer-bank-holiday", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/heatwave", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/garden-furniture", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-accessories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T15:33:01.000Z" - }, - { - "creator": "Simon Lewis", - "title": "Best electric heaters for cold nights at home, from electric radiators to portable ceramic options", - "link": "https://www.telegraph.co.uk/recommended/home/best-electric-heater-portable-use-around-house/", - "pubDate": "Mon, 08 Jan 2024 15:04:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/02/22/TELEMMGLPICT000326367787_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "content": "", - "contentSnippet": "", - "guid": "c9fa90a9-595e-343a-8bc8-a80ddc2888dd", - "categories": [ - { - "_": "topics:organisations/dyson", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/energy", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gas", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T15:04:17.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best protein bars in 2024 (that actually taste good) for a nutritious snack", - "link": "https://www.telegraph.co.uk/health-fitness/nutrition/best-protein-bars/", - "pubDate": "Mon, 08 Jan 2024 14:52:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/02/03/TELEMMGLPICT000324132745_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "f1fbc8cd-0937-3dc1-9e1d-3bc948d1b139", - "categories": [ - { - "_": "topics:things/exercise", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/nutrition", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/nutrition-and-dieting", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T14:52:30.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best water flossers for whiter and healthier teeth, with advice from a dentist", - "link": "https://www.telegraph.co.uk/recommended/tech/best-water-flosser/", - "pubDate": "Mon, 08 Jan 2024 14:04:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/11/16/TELEMMGLPICT000356953897_17001492167670_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "66656718-f39f-365c-a514-79a88ef0c0b1", - "categories": [ - { - "_": "topics:things/dental-health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tooth-decay", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T14:04:25.000Z" - }, - { - "creator": "Tom\u00e9 Morrissy Swan", - "title": "The best leaf blowers for clearing your garden or pathway, tried and tested (as quietly as we could)", - "link": "https://www.telegraph.co.uk/recommended/home/best-leaf-blowers-clearing-garden-pathway/", - "pubDate": "Mon, 08 Jan 2024 13:04:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/01/TELEMMGLPICT000327247140_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom\u00e9 Morrissy Swan", - "content": "", - "contentSnippet": "", - "guid": "4c99713e-bb99-3f6c-ab24-6b2c99e73dfb", - "categories": [ - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/garden-sheds", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/clearing", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-accessories", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T13:04:24.000Z" - }, - { - "creator": "Jack Rear", - "title": "\u2018I plan to keep fundraising for as long as I can \u2013 I love doing it\u2019", - "link": "https://www.telegraph.co.uk/christmas/2024/01/08/volunteering-marie-curie-new-lease-of-life/", - "pubDate": "Mon, 08 Jan 2024 13:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/07/TELEMMGLPICT000361429694_17046244344960_trans_NvBQzQNjv4BqMibTIb194NSX_akRMjH3yEWy_sGK6oioMu5BzggyGUY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Rear", - "content": "", - "contentSnippet": "", - "guid": "aabc46d6-3c37-3ef8-b0a6-b8d38a06092c", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/marie-curie", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/care-homes", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T13:00:00.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The 7 best pillows for side sleepers in 2024, tested for support and comfort", - "link": "https://www.telegraph.co.uk/recommended/home/best-pillows-side-sleepers/", - "pubDate": "Mon, 08 Jan 2024 12:40:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/14/TELEMMGLPICT000328981809_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "3f4a2198-db9c-378a-a743-fde5ae47deb7", - "categories": [ - { - "_": "topics:events/world-sleep-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep-hygiene", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/back-pain", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T12:40:00.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best coffee machines of 2024, tried and tested, from pod espresso makers to bean-to-cup machines", - "link": "https://www.telegraph.co.uk/recommended/home/best-coffee-machines-reviews-tried-tested/", - "pubDate": "Mon, 08 Jan 2024 12:21:07 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/28/TELEMMGLPICT000333672936_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "ab2faf08-006f-3615-828c-3fb0ea8926c1", - "categories": [ - { - "_": "topics:things/coffee", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T12:21:07.000Z" - }, - { - "creator": "Emily Peck", - "title": "The best garden hoses of 2024, tried and tested with expert advice", - "link": "https://www.telegraph.co.uk/recommended/home/best-garden-hose/", - "pubDate": "Mon, 08 Jan 2024 11:59:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/06/23/TELEMMGLPICT000340393203_16875322633330_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emily Peck", - "content": "", - "contentSnippet": "", - "guid": "200144b2-9c4b-3f86-aefa-414fd615afdf", - "categories": [ - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/plants", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/flowers", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/lawns", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-accessories", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T11:59:57.000Z" - }, - { - "creator": "Lilia Sebouai", - "title": "Rising hunger in Gaza \u2018turning children into skeletons\u2019", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/children-skeletons-rising-hunger-gaza-famine/", - "pubDate": "Mon, 08 Jan 2024 11:48:16 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/08/TELEMMGLPICT000361619869_17047055095630_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lilia Sebouai", - "content": "", - "contentSnippet": "", - "guid": "ee7385af-c92c-3661-9665-40266a414af1", - "categories": [ - { - "_": "topics:things/famine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/malnutrition", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T11:48:16.000Z" - }, - { - "creator": "Tom\u00e9 Morrissy Swan", - "title": "The best juicers of 2024 for juicing fresh fruits and vegetables, tried and tested at home", - "link": "https://www.telegraph.co.uk/recommended/home/best-juicers/", - "pubDate": "Mon, 08 Jan 2024 11:47:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/12/08/TELEMMGLPICT000359332328_17020489997570_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom\u00e9 Morrissy Swan", - "content": "", - "contentSnippet": "", - "guid": "01200c28-47ca-3e0b-b967-9bf3f9456573", - "categories": [ - { - "_": "topics:things/kitchen-equipment", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-food", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fruit-and-vegetables", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T11:47:53.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best online homeware and interiors shops in the UK, from H&M to Next and John Lewis", - "link": "https://www.telegraph.co.uk/interiors/home/best-online-homeware-interiors-shops/", - "pubDate": "Mon, 08 Jan 2024 11:23:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/interiors/2022/05/12/wicklewood-best-online-homeware-and-interior-shops_1_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", - "length": "99", - "type": "image/png" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "121803b6-3c9d-345c-9709-f8fbff5d934d", - "categories": [ - { - "_": "topics:things/interiors", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/new-home", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/first-home", - "$": { - "domain": "" - } - }, - { - "_": "structure:interiors", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T11:23:11.000Z" - }, - { - "creator": "Emily Peck", - "title": "The best pillows for neck pain in 2024, tried and tested at home by neck pain sufferers", - "link": "https://www.telegraph.co.uk/recommended/home/best-pillow-for-neck-pain/", - "pubDate": "Mon, 08 Jan 2024 10:58:47 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/13/TELEMMGLPICT000331979348_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emily Peck", - "content": "", - "contentSnippet": "", - "guid": "36bff3bb-7777-3151-abfe-20425e42232f", - "categories": [ - { - "_": "topics:things/back-pain", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/science-sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep-hygiene", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:wellbeing/health", - "$": { - "domain": "" - } - }, - { - "_": "structure:women/health", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/sleep", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T10:58:47.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "The best rowing machines to keep fit in 2024, recommended by elite rowers", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-rowing-machine/", - "pubDate": "Mon, 08 Jan 2024 10:24:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2024/01/05/TELEMMGLPICT000319085097_17044732364330_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "content": "", - "contentSnippet": "", - "guid": "ffcfbf5f-f6d9-3130-ae7e-a29e208b4f54", - "categories": [ - { - "_": "topics:things/exercise", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/home-workouts", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/body", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-08T10:24:51.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Pictured: King's 'surreal' encounter with miniature Land Rover", - "link": "https://www.telegraph.co.uk/royal-family/2024/01/07/king-charles-miniature-land-rover/", - "pubDate": "Sun, 07 Jan 2024 21:53:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/royal-family/2024/01/07/TELEMMGLPICT000361835506_17046636568440_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "content": "", - "contentSnippet": "", - "guid": "681c2e52-72c8-3c2d-b8be-c3a01fcb04b6", - "categories": [ - { - "_": "topics:people/king-charles-iii", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/land-rover", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-07T21:53:15.000Z" - }, - { - "creator": "Jason Burt", - "title": "Liverpool the latest rivals to land bruising blow on wasteful Arsenal", - "link": "https://www.telegraph.co.uk/football/2024/01/07/arsenal-vs-liverpool-live-score-updates-fa-cup-latest/", - "pubDate": "Sun, 07 Jan 2024 20:25:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/07/TELEMMGLPICT000361876462_17046524619460_trans_NvBQzQNjv4BqNTT8cd-mcMQMfttMcDU2Buil7a1KV2STY3xRqqFt_No.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jason Burt", - "content": "The importance of this win for Liverpool may not be felt until May. Not necessarily in the FA Cup but in the context of a tautly contested Premier League title race when every set-back or advantage, and whatever the context, feels extremely significant.

]]>", - "contentSnippet": "", - "guid": "afee383a-3473-3c83-a853-5e3999718a63", - "categories": [ - { - "_": "topics:organisations/arsenal-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/liverpool-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/fa-cup", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/fa-cup-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-07T20:25:04.000Z" - }, - { - "creator": "Charles Richardson", - "title": "Tom de Glanville stakes England claim as Bath consign Gloucester to worst league run", - "link": "https://www.telegraph.co.uk/rugby-union/2024/01/07/bath-v-gloucester-result-tom-de-glanville-steve-borthwick/", - "pubDate": "Sun, 07 Jan 2024 18:36:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/07/TELEMMGLPICT000361875655_17046514658540_trans_NvBQzQNjv4BqPAUvyU03bKqpoSLf_byUp28u_NKS89v-aPshwVAqFO0.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Richardson", - "content": "", - "contentSnippet": "", - "guid": "af6cb558-1cb4-34d1-b31d-9b0d3e669292", - "categories": [ - { - "_": "topics:organisations/bath-rugby", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/gloucester-rugby", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/gallagher-premiership", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-07T18:36:43.000Z" - }, - { - "creator": "Fiona Tomas", - "title": "Weakened Exeter Women overcome squad turnover to ease past Ealing", - "link": "https://www.telegraph.co.uk/rugby-union/2024/01/07/exeter-women-v-ealing-trailfinders-result-katie-buchanan/", - "pubDate": "Sun, 07 Jan 2024 18:02:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/07/TELEMMGLPICT000361846831_17046418714990_trans_NvBQzQNjv4BqP4pV-m6laGcMQMbuKYgJGbeHsZFrEmHQDi0eQN40zhg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Fiona Tomas", - "content": "", - "contentSnippet": "", - "guid": "d6a1dc9e-1044-3508-8f54-44b7ea777286", - "categories": [ - { - "_": "topics:organisations/exeter-chiefs", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/premiership-womens-rugby", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-07T18:02:35.000Z" - }, - { - "creator": "Lilia Sebouai", - "title": "Why the women\u2019s health gap is costing the global economy \u00a3790bn", - "link": "https://www.telegraph.co.uk/global-health/women-and-girls/790-billion-pound-global-cost-of-women-health-gap/", - "pubDate": "Thu, 18 Jan 2024 12:25:22 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/18/TELEMMGLPICT000342524465_17055775221400_trans_NvBQzQNjv4BqDiDrV97xgDFjc_F6AHtCzf4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lilia Sebouai", - "content": "", - "contentSnippet": "", - "guid": "67d6d1cb-0ec1-3d2d-bcbd-52bbd64f88f2", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/women's-health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Gender-equality", - "$": { - "domain": "" - } - }, - { - "_": "structure:women-and-girls", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T12:25:22.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Do the right thing and pass Rwanda Bill, Sunak tells House of Lords", - "link": "https://www.telegraph.co.uk/politics/2024/01/18/rishi-sunak-latest-news-rwanda-bill-philp/", - "pubDate": "Thu, 18 Jan 2024 12:12:11 GMT", - "dc:creator": "Jack Maidment", - "content": "Rishi Sunak has urged the House of Lords to \u201cdo the right thing\u201d and pass his flagship Rwanda Bill as quickly as possible after it cleared the House of Commons last night. 

]]>", - "contentSnippet": "", - "guid": "0777dd75-40f4-3cd1-bdb9-52e290839504", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T12:12:11.000Z" - }, - { - "creator": "Simon Briggs", - "title": "Emma Raducanu struggles with sickness in three-set Australian Open defeat by Yafan Wang", - "link": "https://www.telegraph.co.uk/tennis/2024/01/18/emma-raducanu-vs-yafan-wang-live-australian-open-updates/", - "pubDate": "Thu, 18 Jan 2024 12:00:03 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/18/TELEMMGLPICT000363136305_17055731583370_trans_NvBQzQNjv4Bq9PikuTrmQO3f57XLkA28TG8HY4ZFrniSXaLtLcTAUTE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Briggs", - "content": "Emma Raducanu\u2019s Australian Open ended in an exhausting battle and a bout of sickness, but no lack of drama. She has a knack for intriguing scripts.

]]>", - "contentSnippet": "", - "guid": "5a5d2e6c-82d9-349c-a5d1-250f2a950b4f", - "categories": [ - { - "_": "topics:people/emma-raducanu", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T12:00:03.000Z" - }, - { - "creator": "Chris Moss", - "title": "10 tips and tricks for saving money on UK rail fares", - "link": "https://www.telegraph.co.uk/travel/advice/how-to-save-money-uk-train-tickets/", - "pubDate": "Thu, 18 Jan 2024 11:44:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/travel/2023/04/11/TELEMMGLPICT000331774476_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Moss", - "content": "", - "contentSnippet": "", - "guid": "74dbb81c-b421-3d70-b4b7-601ed24a7be5", - "categories": [ - { - "_": "topics:things/rail", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/rail-prices", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/advice", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/rail-journeys", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T11:44:51.000Z" - }, - { - "creator": "Benedict Smith", - "title": "Israel-Hamas war live: First images of Houthi drone strike on Red Sea ship", - "link": "https://www.telegraph.co.uk/world-news/2024/01/18/israel-hamas-war-latest-news-updates-gaza-day-104/", - "pubDate": "Thu, 18 Jan 2024 11:09:54 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/18/TELEMMGLPICT000363122472_17055761177370_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdGLvJF5WfpqnBZShRL_tOZw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Benedict Smith", - "content": "India\u2019s navy has released images of a Houthi drone strike on a US-owned ship near the Red Sea.

]]>", - "contentSnippet": "", - "guid": "f57cd9c4-4255-3e3c-8ca4-a3157b83f79b", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T11:09:54.000Z" - }, - { - "creator": "Chris Price", - "title": "Oil demand to take hit this year in blow to Putin and Saudi Arabia - latest updates", - "link": "https://www.telegraph.co.uk/business/2024/01/18/ftse-100-markets-latest-news-housing-market-mortgages-davos/", - "pubDate": "Thu, 18 Jan 2024 10:37:47 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/18/TELEMMGLPICT000363047159_17055740948900_trans_NvBQzQNjv4Bqyntj27Do1A_uEF6jNSG5NjQ2fQls62HNhIwsSqb17Zk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Price", - "content": "Demand for oil this year will rise by half the pace seen in 2023, an official report has said, delivering a blow to Vladimir Putin\u2019s war economy and the world\u2019s largest producer Saudi Arabia.

]]>", - "contentSnippet": "", - "guid": "711177d8-6c8e-3473-bc77-bea7526e355f", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T10:37:47.000Z" - }, - { - "creator": "Tim Robey", - "title": "The End We Start From: Jodie Comer is tremendous in a post-flood survival drama", - "link": "https://www.telegraph.co.uk/films/0/the-end-we-start-from-review-jodie-comer/", - "pubDate": "Thu, 18 Jan 2024 10:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2023/10/13/TELEMMGLPICT000351971526_16971972254890_trans_NvBQzQNjv4BqNUHzxaamNmHDqK-YksWRz2o-yMLyYquKCawpyDOW254.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Robey", - "content": "", - "contentSnippet": "", - "guid": "0796130d-9afb-31f0-91f7-f27d969684a7", - "categories": [ - { - "_": "topics:events/london-film-festival", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jodie-comer", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/killing-eve", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "editors:tim-robey", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:film/film-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T10:00:00.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Ukraine-Russia war live: Ukraine attacks oil terminal in rare St Petersburg drone strike", - "link": "https://www.telegraph.co.uk/world-news/2024/01/18/ukraine-russia-war-live-st-petersburg-drone-strike/", - "pubDate": "Thu, 18 Jan 2024 09:50:08 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/18/TELEMMGLPICT000362404255_17055633652710_trans_NvBQzQNjv4BqP5cCLU3tGUKNTdPSRn7mul5NUcTKNHKqy85KLqtvPLE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "content": "A Ukrainian drone was shot down over a St Petersburg oil terminal in the early hours in one of Kyiv\u2019s northernmost attacks of the war so far.

]]>", - "contentSnippet": "", - "guid": "0b04c675-8f95-34f7-8416-209757248813", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T09:50:08.000Z" - }, - { - "creator": "Diana Henry", - "title": "Mushroom stroganoff baked potatoes recipe", - "link": "https://www.telegraph.co.uk/recipes/0/mushroom-stroganoff-baked-potatoes-recipe/", - "pubDate": "Thu, 18 Jan 2024 09:37:08 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/17/TELEMMGLPICT000363034950_17054943083800_trans_NvBQzQNjv4BqnA9-16aLB235wrV1zAnDutkM9MM8VM3G1BxlGUO4L8Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "7062f02c-7017-3b0a-991f-697bc91cca17", - "categories": [ - { - "_": "topics:things/potato-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/mushroom-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/spinach-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T09:37:08.000Z" - }, - { - "creator": "Diana Henry", - "title": "Cauliflower cheese baked potatoes recipe", - "link": "https://www.telegraph.co.uk/recipes/0/cauliflower-cheese-baked-potatoes-recipe/", - "pubDate": "Thu, 18 Jan 2024 09:33:58 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/17/TELEMMGLPICT000363034952_17054959423060_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "1e005a72-1609-3346-bf61-deb249cd3bfc", - "categories": [ - { - "_": "topics:things/potato-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cheese-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cauliflower-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/meal-ideas-for-kids", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T09:33:58.000Z" - }, - { - "creator": "Diana Henry", - "title": "Baked sweet potatoes with honey-roast feta, olives, beetroot and mint recipe", - "link": "https://www.telegraph.co.uk/recipes/0/baked-sweet-potatoes-honey-roast-feta-olives-beetroot-recip/", - "pubDate": "Thu, 18 Jan 2024 09:30:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/17/TELEMMGLPICT000363034955_17054967427500_trans_NvBQzQNjv4BqQv8PhuGzYBWYEozZmXWUMEikPYR0xYwuEBLwP9UFqPg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "58e3ab77-895f-3099-94c0-237df697a63f", - "categories": [ - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/potato-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cheese-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/beetroot-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/easy-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T09:30:50.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "An expert guide to ski holidays in Davos", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/davos/davos-ski-holiday-guide/", - "pubDate": "Thu, 18 Jan 2024 08:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/davos-klosters-lead.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "c2346b98-48f3-3c0f-aae1-c618171b685f", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/davos", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T08:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best accommodation in Davos", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/davos/davos-hotels-and-chalets/", - "pubDate": "Thu, 18 Jan 2024 08:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/tivoli-lounge.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "77192bc0-6d30-31b7-bbfe-5a40130a9d0e", - "categories": [ - { - "_": "topics:places/davos", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T08:00:00.000Z" - }, - { - "creator": "Molly McElwee", - "title": "Novak Djokovic in spat with fan before sealing place in Australian Open third round", - "link": "https://www.telegraph.co.uk/tennis/2024/01/17/australian-open-djokovic-vs-popyrin-live-updates-scores/", - "pubDate": "Thu, 18 Jan 2024 06:25:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/17/TELEMMGLPICT000363076534_17055212238320_trans_NvBQzQNjv4BqDbmdHSB_6I1E7U24Q_F-nxIKfVh-7d4P7T72fkl6uGw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Molly McElwee", - "content": "Novak Djokovic pushed through physical issues, a snotty nose and a spat with a fan to beat the spirited efforts of home hero Alexei Popyrin at the Australian Open.

]]>", - "contentSnippet": "", - "guid": "32b688cf-a1a6-3085-8939-6c15a4b90ed5", - "categories": [ - { - "_": "topics:people/novak-djokovic", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T06:25:15.000Z" - }, - { - "creator": "Uche Amako", - "title": "Australian Open 2024 order of play: Today's matches, full schedule and how to watch on TV", - "link": "https://www.telegraph.co.uk/tennis/2024/01/17/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", - "pubDate": "Thu, 18 Jan 2024 06:23:56 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/17/TELEMMGLPICT000362905836_17055070246460_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Uche Amako", - "content": "", - "contentSnippet": "", - "guid": "b1d2b840-8e48-3c7b-8ff9-33a938d57c1a", - "categories": [ - { - "_": "topics:people/novak-djokovic", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/carlos-alcaraz", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andy-murray", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/emma-raducanu", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/naomi-osaka", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T06:23:56.000Z" - }, - { - "creator": "Simon Heffer", - "title": "Forget The Crown\u2019s lies \u2013 this glorious book reveals the real Charles III", - "link": "https://www.telegraph.co.uk/books/non-fiction/review-robert-hardman-charles-iii/", - "pubDate": "Thu, 18 Jan 2024 00:01:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/books/2024/01/15/TELEMMGLPICT000352916370_17053384003920_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdGLvJF5WfpqnBZShRL_tOZw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Heffer", - "content": "", - "contentSnippet": "", - "guid": "3b60330e-a75b-392c-91c0-cf416fae0174", - "categories": [ - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/king-charles-iii", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/prince-harry-meghan-markle", - "$": { - "domain": "" - } - }, - { - "_": "structure:books/non-fiction", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture/culture-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:books", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T00:01:00.000Z" - }, - { - "creator": "Telegraph Sport", - "title": "January transfer deadline day 2024: All you need to know", - "link": "https://www.telegraph.co.uk/football/2024/01/17/january-transfer-deadline-day-when-watch-guide/", - "pubDate": "Wed, 17 Jan 2024 23:27:09 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/09/TELEMMGLPICT000361768944_17048097888020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwWyaKjL1CatlwZEbgNRqSgg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Sport", - "content": "", - "contentSnippet": "", - "guid": "6db25127-c29f-3a96-90fc-d0a48c0c312e", - "categories": [ - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/football-transfers", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T23:27:09.000Z" - }, - { - "creator": "Cameron Henderson", - "title": "Six Nations 2024: Fixtures, squads, how to get tickets and more", - "link": "https://www.telegraph.co.uk/rugby-union/2024/01/16/six-nations-championship-2024-when-how-to-watch/", - "pubDate": "Wed, 17 Jan 2024 23:12:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/17/TELEMMGLPICT000363040728_17055041141120_trans_NvBQzQNjv4BqJGdLpwOZ4ig0u7Q-LAYH6gZ38HhLZhPhjjFirMf2bnM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Cameron Henderson", - "content": "", - "contentSnippet": "", - "guid": "777a8c04-d4ff-3585-82c3-42305137b3b1", - "categories": [ - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/scotland-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/france-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/six-nations", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/wales-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ireland-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T23:12:50.000Z" - }, - { - "creator": "Charles Hymas", - "title": "Rwanda Bill passes as only 11 Tory MPs rebel", - "link": "https://www.telegraph.co.uk/politics/2024/01/17/rishi-sunak-latest-news-rwanda-rees-mogg-farage/", - "pubDate": "Wed, 17 Jan 2024 22:30:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/17/TELEMMGLPICT000363086868_17055280396100_trans_NvBQzQNjv4Bqe0Ui9PSieXevNSKSwxF5X1XWBklAC8LL8aQqQGFf2jY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Hymas", - "content": "Rishi Sunak secured victory on Wednesday as his flagship Rwanda Bill passed the House of Commons after just 11 Tory MPs rebelled by voting against it.

]]>", - "contentSnippet": "passed the House of Commons after just 11 Tory MPs rebelled by voting against it.\n]]>", - "guid": "8b7dad5c-afff-3b5f-af85-8ddad67e5a12", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/rwanda", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T22:30:17.000Z" - }, - { - "creator": "Chris Bascombe", - "title": "Andre Gomes fires Everton into FA Cup fourth round as Palace fans turn on Roy Hodgson", - "link": "https://www.telegraph.co.uk/football/2024/01/17/everton-vs-crystal-palace-fa-cup-replay-result-andre-gomes/", - "pubDate": "Wed, 17 Jan 2024 22:01:14 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/17/TELEMMGLPICT000363082151_17055282233750_trans_NvBQzQNjv4BqGS8M2x6GHm2l7bXwoEPe7Rzx-3UiFxQ4BG24WoSjOow.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Bascombe", - "content": "", - "contentSnippet": "", - "guid": "0bdc67e7-8ca0-3860-8609-302bb8d6ca2f", - "categories": [ - { - "_": "topics:organisations/everton-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/crystal-palace-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/fa-cup", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T22:01:14.000Z" - }, - { - "creator": "Victoria Ward", - "title": "King to have prostate treatment as Princess of Wales goes to hospital", - "link": "https://www.telegraph.co.uk/royal-family/2024/01/17/princess-of-wales-surgery/", - "pubDate": "Wed, 17 Jan 2024 21:48:52 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/royal-family/2024/01/17/TELEMMGLPICT000363084014_17055265519690_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Victoria Ward", - "content": "Buckingham Palace announced  on Wednesday that the King required treatment for an enlarged prostate, just 90 minutes after Kensington Palace revealed that the Princess of Wales had undergone abdominal surgery.

]]>", - "contentSnippet": "required treatment for an enlarged prostate, just 90 minutes after Kensington Palace revealed that the Princess of Wales had undergone abdominal surgery.\n]]>", - "guid": "1ef946c1-7d56-365a-a75b-54d6c5397a6d", - "categories": [ - { - "_": "topics:people/princess-of-wales", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/the-royal-family", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/king-charles-iii", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/prince-william", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:royal-family", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T21:48:52.000Z" - }, - { - "creator": "Tim Wallace", - "title": "FTSE 100 suffers sharpest fall in 5 months after shock rise in inflation", - "link": "https://www.telegraph.co.uk/business/2024/01/17/ftse-100-markets-latest-news-inflation-interest-rates/", - "pubDate": "Wed, 17 Jan 2024 19:08:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/17/TELEMMGLPICT000344669264_17055067579230_trans_NvBQzQNjv4BqyKbbTIvVbvqvypOgwykjr15NUcTKNHKqy85KLqtvPLE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Wallace", - "content": "The FTSE 100 suffered its worst day since August as a surprise jump in inflation raised fears the Bank of England will be forced to keep interest rates higher for longer.

]]>", - "contentSnippet": "", - "guid": "aea298f8-57a1-3400-b350-5d3d56425e9d", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T19:08:12.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - 'Unknown' partisans wreck Russian railways", - "link": "https://www.telegraph.co.uk/world-news/2024/01/17/partisans-russia-bombs-ukraine-strikes/", - "pubDate": "Wed, 17 Jan 2024 17:51:23 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/17/TELEMMGLPICT000363046400_17055138365230_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "736acb43-5dde-3871-ace7-c161e37d8637", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T17:51:23.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Wednesday evening news briefing: King to have prostate treatment as Princess of Wales undergoes surgery", - "link": "https://www.telegraph.co.uk/news/2024/01/17/wednesday-evening-news-briefing-king-princess-surgery/", - "pubDate": "Wed, 17 Jan 2024 17:44:53 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "bb30ea7a-5406-363f-a837-c8ac9498beeb", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/king-charles-iii", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/princess-of-wales", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T17:44:53.000Z" - }, - { - "creator": "Ben Farmer", - "title": "Adult smoking declines globally \u2013 but child vaping stokes concern", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/adult-smokers-decline-globally-child-vaping-fears/", - "pubDate": "Wed, 17 Jan 2024 17:10:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/17/TELEMMGLPICT000219552225_17055096107380_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Ben Farmer", - "content": "", - "contentSnippet": "", - "guid": "ae26a139-4c9b-3bce-a672-f3c5d0e113be", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/smoking", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/world-health-organisation", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/non-communicable-diseases", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T17:10:11.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best accommodation in Mayrhofen", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/austria/mayrhofen/mayrhofen-hotels-and-chalets/", - "pubDate": "Wed, 17 Jan 2024 17:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/2020/Aout/hotel-elisabeth-mayrhofen-3-p.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "a1130adf-869c-3cc1-971a-1b9def1a8882", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/austria", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T17:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "An expert guide to ski holidays in Mayrhofen", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/austria/mayrhofen/mayrhofen-ski-holiday-guide/", - "pubDate": "Wed, 17 Jan 2024 17:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/Mayrhofen.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "1f909ac8-7d67-3fe3-ba6a-30eb3616bf46", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/austria", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T17:00:00.000Z" - }, - { - "creator": "Luke Slater", - "title": "England vs India, Test series and tour: Full schedule and fixtures", - "link": "https://www.telegraph.co.uk/cricket/2024/01/17/england-vs-india-test-tour-2024-full-schedule-and-fixtures/", - "pubDate": "Wed, 17 Jan 2024 16:10:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2024/01/09/TELEMMGLPICT000361024498_17048016311440_trans_NvBQzQNjv4BqG_mptpChRHij4fwYXW1nLNSg9kdm7XGDZagULvp4PAs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Luke Slater", - "content": "", - "contentSnippet": "", - "guid": "20f15cfa-4dc4-3345-85fc-ea7ab341e8c1", - "categories": [ - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/india-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T16:10:55.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Israel-Hamas war: Israel discovers tunnel \u2018wide enough for Hamas leader to drive his car down\u2019", - "link": "https://www.telegraph.co.uk/world-news/2024/01/17/israel-hamas-war-latest-news-updates-aid-day-103-live/", - "pubDate": "Wed, 17 Jan 2024 16:07:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/17/TELEMMGLPICT000363037446_17054988724880_trans_NvBQzQNjv4Bq7IPsDfcnTKqeaUJoamuaw3hQ5CEdXUBuA9zgd9qAx_E.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "content": "A tunnel wide enough for a Hamas leader to drive his car underneath Gaza has reportedly been discovered by Israeli forces. 

]]>", - "contentSnippet": "", - "guid": "ab69727b-3af5-3b58-9f3c-d7b62515946e", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T16:07:35.000Z" - }, - { - "creator": "Jamie Bullen", - "title": "Post Office scandal latest: Fujitsu data was 'manipulated', inquiry hears - watch live", - "link": "https://www.telegraph.co.uk/news/2024/01/17/post-office-scandal-live-inquiry-fujitsu-horizon/", - "pubDate": "Wed, 17 Jan 2024 15:44:11 GMT", - "dc:creator": "Jamie Bullen", - "content": "Data extracted by Fujitsu before being presented to the Post Office was \u201cmanipulated from its original source\u201d, the public inquiry into the Horizon scandal has heard.

]]>", - "contentSnippet": "", - "guid": "04046a1e-8914-3342-9b06-9109422ad6b3", - "categories": [ - { - "_": "topics:in-the-news/post-office-scandal", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/post-office", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T15:44:11.000Z" - }, - { - "creator": "Timothy Sigsworth", - "title": "Ukraine-Russia war: Nato military chief demands 'warfighting transition'", - "link": "https://www.telegraph.co.uk/world-news/2024/01/17/ukraine-russia-war-live-eu-germany-aid/", - "pubDate": "Wed, 17 Jan 2024 15:10:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/17/TELEMMGLPICT000362957666_17054830685560_trans_NvBQzQNjv4BqzccoJS-E8Wb-wOXrdJto2w4knLjPM_M0R3xiLV8rua4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Timothy Sigsworth", - "content": "Nato\u2019s top military official has demanded countries in the alliance undertake a \u2018warfighting transition\u2019. 

]]>", - "contentSnippet": "", - "guid": "945b8ac8-a88f-36d8-877b-b32c3b56bd7b", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T15:10:37.000Z" - }, - { - "creator": "Hattie Garlick", - "title": "The 10 foods that could reduce your risk of dementia", - "link": "https://www.telegraph.co.uk/health-fitness/conditions/dementia/the-10-foods-that-could-reduce-your-risk-of-dementia/", - "pubDate": "Wed, 17 Jan 2024 13:41:25 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/05/17/TELEMMGLPICT000335932798_trans_NvBQzQNjv4BqZ2Y11QTQUceJmvil26UNU5e2cSej23e-p14I7FSjAIE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Hattie Garlick", - "content": "", - "contentSnippet": "", - "guid": "5605f344-0193-36e7-90c4-c3fe1b3aeba4", - "categories": [ - { - "_": "topics:things/dementia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/brain-health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/healthy-food", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/brain-disease", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-christmas-charity-appeal-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/race-against-dementia", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/mind", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/conditions", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness/conditions/dementia", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-guide", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T13:41:25.000Z" - }, - { - "creator": "Tom Ward", - "title": "Who is in the England 2024 Six Nations squad?", - "link": "https://www.telegraph.co.uk/rugby-union/2024/01/16/six-nations-england-squad-tickets-fixtures-times/", - "pubDate": "Wed, 17 Jan 2024 11:39:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/16/TELEMMGLPICT000362906658_17053998046090_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom Ward", - "content": "", - "contentSnippet": "", - "guid": "6a0c2d6d-b700-388f-ab01-2584eaf54666", - "categories": [ - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/six-nations", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/steve-borthwick", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T11:39:18.000Z" - }, - { - "creator": "Charles Richardson", - "title": "Jamie George made England captain after Pep Guardiola-style player vote", - "link": "https://www.telegraph.co.uk/rugby-union/2024/01/17/england-six-nations-squad-announcement-live-slade-borthwick/", - "pubDate": "Wed, 17 Jan 2024 11:28:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/17/TELEMMGLPICT000313198554_17055129357850_trans_NvBQzQNjv4BqCamL6CQfqsxM6e6TnRwDxlEf6b4n5GgZPvs1cKg10Fk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Richardson", - "content": "England head coach Steve Borthwick has told Jamie George to stamp his personality on a new-look squad and insists the hooker can be more than a stopgap captain.

]]>", - "contentSnippet": "", - "guid": "92d416a1-e234-32a3-9677-e5ca490acc76", - "categories": [ - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/six-nations", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jamie-george", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T11:28:12.000Z" - }, - { - "creator": "Sarah Newey", - "title": "Leprosy creeps back in Myanmar as health system falters", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/leprosy-creeps-back-in-myanmar-as-health-system-falters/", - "pubDate": "Wed, 17 Jan 2024 11:18:44 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/17/TELEMMGLPICT000362899820_17054886320480_trans_NvBQzQNjv4Bqf31hxWNT7i64oktrHVICFv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "content": "", - "contentSnippet": "", - "guid": "c942b7a6-bbac-3cfd-8e13-5a52b96f4780", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/myanmar", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Conflict", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T11:18:44.000Z" - }, - { - "creator": "Charles Richardson", - "title": "Six Nations 2024 referees announced: Who will referee England\u2019s matches?", - "link": "https://www.telegraph.co.uk/rugby-union/2024/01/17/six-nations-championship-2024-referees-announced-matches/", - "pubDate": "Wed, 17 Jan 2024 10:37:28 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/12/05/TELEMMGLPICT000335494231_17017999708200_trans_NvBQzQNjv4Bqu9d2miJrqdy0WHkNnywGGHSAMUWbLP57EYvvneETxPE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Richardson", - "content": "", - "contentSnippet": "", - "guid": "94680700-1363-37a1-8f10-77f9c6dde225", - "categories": [ - { - "_": "topics:events/six-nations", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/scotland-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/france-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/wales-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/italy-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T10:37:28.000Z" - }, - { - "creator": "Tom Ward", - "title": "NFL Super Bowl 2024 Guide: When is it, how to watch, half-time show and latest odds", - "link": "https://www.telegraph.co.uk/american-football/2024/01/17/nfl-super-bowl-guide-when-date-winners-uk-tv-channel/", - "pubDate": "Wed, 17 Jan 2024 10:36:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/american-football/2024/01/09/TELEMMGLPICT000325263717_17048012517520_trans_NvBQzQNjv4BqnFWrKBYEBGn6ARPcMRQYjS82-ivqc6avWefomlBmWCs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom Ward", - "content": "", - "contentSnippet": "", - "guid": "92498424-1065-30a3-a5f4-075d314178aa", - "categories": [ - { - "_": "topics:organisations/nfl", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/super-bowl", - "$": { - "domain": "" - } - }, - { - "_": "structure:american-football", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T10:36:02.000Z" - }, - { - "creator": "Gareth A Davies", - "title": "Tyson Fury vs Oleksandr Usyk: When is the fight, how to watch and the undercard line-up", - "link": "https://www.telegraph.co.uk/boxing/2024/01/17/tyson-fury-vs-oleksandr-usyk-when-date-tv-undercard/", - "pubDate": "Wed, 17 Jan 2024 10:35:56 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/boxing/2023/11/16/TELEMMGLPICT000354817954_17001448694440_trans_NvBQzQNjv4BqMI1LvyrVLfIFrd7O2yQz27LZhoUJXRy_slhDUzUzVKo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Gareth A Davies", - "content": "", - "contentSnippet": "", - "guid": "9e7bd8e5-4110-3435-9b8b-8125ef31983d", - "categories": [ - { - "_": "topics:people/tyson-fury", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/oleksandr-usyk", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/saudi-arabia", - "$": { - "domain": "" - } - }, - { - "_": "structure:boxing", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T10:35:56.000Z" - }, - { - "creator": "Simon Briggs", - "title": "Emma Raducanu demolishes Shelby Rogers to cruise into Australian Open second round", - "link": "https://www.telegraph.co.uk/tennis/2024/01/16/emma-raducanu-vs-shelby-rogers-live-updates-australian-open/", - "pubDate": "Wed, 17 Jan 2024 08:59:05 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/16/TELEMMGLPICT000362906241_17054004291420_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Briggs", - "content": "Of all the things we expected from Emma Raducanu\u2019s return to grand slam competition, a smooth and drama-free evening wouldn\u2019t have been top of the bill. Her narrative has been far too twisty for that.

]]>", - "contentSnippet": "", - "guid": "bdab9871-88c8-30ab-9415-0a5f4f074f49", - "categories": [ - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/emma-raducanu", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T08:59:05.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "An expert guide to ski holidays in Les Menuires ", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/les-menuires/les-menuires-ski-holiday-guide/", - "pubDate": "Wed, 17 Jan 2024 08:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/les-menuires-lead.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "5502ea5e-83fa-3e3e-91d8-5362ca874c2b", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/french-alps", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/les-menuires", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T08:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best accommodation in Les Menuires", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/les-menuires/les-menuires-hotels-and-chalets/", - "pubDate": "Wed, 17 Jan 2024 08:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/2020/September/chalet-kaya-les-menuires-france-1-p.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "77680adb-5e39-3e45-b3cb-62120a5425d5", - "categories": [ - { - "_": "topics:places/les-menuires", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-17T08:00:00.000Z" - }, - { - "creator": "John Percy", - "title": "Matheus Cunha gives Wolves fans exactly what they want \u2013 a derby with West Brom", - "link": "https://www.telegraph.co.uk/football/2024/01/16/wolves-brentford-fa-cup-third-round-replay-result/", - "pubDate": "Tue, 16 Jan 2024 22:33:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/16/TELEMMGLPICT000362983661_17054442619690_trans_NvBQzQNjv4BqkjTqN4q_QOMdsQB6negVQq1UDbDdk-JPjedL466dDsg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "John Percy", - "content": "", - "contentSnippet": "", - "guid": "f034e998-7d27-35d1-b305-7604205141ec", - "categories": [ - { - "_": "topics:events/fa-cup", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/wolverhampton-wanderers-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/brentford-fc", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T22:33:35.000Z" - }, - { - "creator": "Hannah Meltzer ", - "title": "The best boutique hotels in Paris", - "link": "https://www.telegraph.co.uk/travel/destinations/europe/france/paris/articles/the-best-boutique-hotels-in-paris/", - "pubDate": "Tue, 16 Jan 2024 21:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/2024/january/hotel-particulier-paris.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Hannah Meltzer ", - "content": "", - "contentSnippet": "", - "guid": "d5c543b5-060d-37f4-8018-8701c0d2b718", - "categories": [ - { - "_": "topics:places/europe", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/hotels", - "$": { - "domain": "" - } - }, - { - "_": "structure:hotel-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/paris", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T21:00:00.000Z" - }, - { - "creator": "Jamie Bullen", - "title": "Fujitsu boss admits \u2018moral obligation\u2019 to compensate Horizon victims", - "link": "https://www.telegraph.co.uk/news/2024/01/16/post-office-scandal-latest-alan-bates-before-mps-watch/", - "pubDate": "Tue, 16 Jan 2024 20:57:28 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/16/TELEMMGLPICT000362930566_17054380047730_trans_NvBQzQNjv4Bqf31hxWNT7i64oktrHVICFv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jamie Bullen", - "content": "Fujitsu has a \u201cmoral obligation\u201d to compensate victims of the Post Office scandal, a senior executive admitted on Tuesday as he apologised for the firm\u2019s role in the \u201cappalling miscarriage of justice\u201d.

]]>", - "contentSnippet": "appalling miscarriage of justice\u201d.\n]]>", - "guid": "c750e067-52c6-33f8-9014-23907b402fe4", - "categories": [ - { - "_": "topics:in-the-news/post-office-scandal", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/post-office", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/department-for-business-innovation-skills", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T20:57:28.000Z" - }, - { - "creator": "Matthew Field", - "title": "Fortnite maker Epic loses US legal battle with Apple over App Store", - "link": "https://www.telegraph.co.uk/business/2024/01/16/ftse-100-markets-news-latest-wages-lower-interest-rates/", - "pubDate": "Tue, 16 Jan 2024 18:07:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/16/TELEMMGLPICT000362934214_17054248755680_trans_NvBQzQNjv4BqDQVK81QMLSkr-IuGRMUJHGvDvFx0Cg3DCvbfeQnAAfs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Matthew Field", - "content": "The US Supreme Court has rejected a bid by the developer of video game Fortnite to challenge Apple over its App Store rules.

]]>", - "contentSnippet": "", - "guid": "6d3f7b95-7a82-3260-b2f7-3d4f7a63db61", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T18:07:02.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The 10 best resorts for apr\u00e8s-ski", - "link": "https://www.telegraph.co.uk/travel/ski/articles/Best-ski-resorts-for-apres-ski/", - "pubDate": "Tue, 16 Jan 2024 18:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/folie-douce-apres lead.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "content": "", - "contentSnippet": "", - "guid": "0402151b-a94a-3709-a04c-04db30cf3e75", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/zermatt", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/st-anton", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ischgl", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/french-alps", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T18:00:00.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Tuesday evening news briefing: Fujitsu boss apologises for Horizon scandal", - "link": "https://www.telegraph.co.uk/news/2024/01/16/tuesday-evening-news-briefing-fujitsu-boss-apologises/", - "pubDate": "Tue, 16 Jan 2024 17:37:51 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "00f2b5a8-0805-3270-b36b-a63c6c89c268", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/post-office-scandal", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/civil-service", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T17:37:51.000Z" - }, - { - "creator": "Lilia Sebouai", - "title": "Covid-19 vaccines saved 1.4 million lives across Europe, study finds", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/covid-19-vaccines-saved-million-european-lives-coronavirus/", - "pubDate": "Tue, 16 Jan 2024 17:34:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/16/TELEMMGLPICT000348448117_17054261296500_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lilia Sebouai", - "content": "", - "contentSnippet": "", - "guid": "343dca6b-c7a1-3d56-bf9b-507385018e99", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/coronavirus", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pandemics-epidemics", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vaccines", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T17:34:19.000Z" - }, - { - "creator": "Mini Smith", - "title": "The 11 best protein powders in 2024 to gain muscle and boost fitness, tried and tested", - "link": "https://www.telegraph.co.uk/recommended/leisure/best-protein-powders/", - "pubDate": "Tue, 16 Jan 2024 16:36:39 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/31/TELEMMGLPICT000323822868_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mini Smith", - "content": "", - "contentSnippet": "", - "guid": "2b4955f0-8735-39fd-9c12-4a9506ed82e9", - "categories": [ - { - "_": "topics:things/fitness", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/nutrition", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dieting", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/leisure", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T16:36:39.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Russian city declares state of emergency after drone attack", - "link": "https://www.telegraph.co.uk/world-news/2024/01/16/russian-city-declares-state-of-emergency-after-drone-attack/", - "pubDate": "Tue, 16 Jan 2024 16:09:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/16/TELEMMGLPICT000362935374_17054212930440_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "03d7995c-6d7e-3c52-850f-2ec639810e4c", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T16:09:04.000Z" - }, - { - "creator": "James Rothwell", - "title": "Greek ship hit by Houthi rocket as US seizes Iranian missiles headed for Yemen", - "link": "https://www.telegraph.co.uk/world-news/2024/01/16/israel-hamas-war-latest-updates-gaza-yemen-day-102-live/", - "pubDate": "Tue, 16 Jan 2024 16:00:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/16/TELEMMGLPICT000362658207_17054077495510_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "James Rothwell", - "content": "By James Rothwell

]]>", - "contentSnippet": "By James Rothwell\n]]>", - "guid": "820123dd-4aba-3a89-bd74-1ffb1389985d", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T16:00:34.000Z" - }, - { - "creator": "David Knowles", - "title": "Battle Lines: Blow to Beijing as Taiwan chooses candidate Xi fears the most", - "link": "https://www.telegraph.co.uk/world-news/2024/01/16/battle-lines-podcast-taiwan-elections-blow-to-beijing/", - "pubDate": "Tue, 16 Jan 2024 15:57:01 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/16/TELEMMGLPICT000362496406_17054203772010_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf-0Jyi0jPPD6Zx1hiwTPhlc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "e810a736-6e93-3521-8852-38b42ff101d8", - "categories": [ - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/battle-lines", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/taiwan", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/xi-jinping", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T15:57:01.000Z" - }, - { - "creator": "Maeve Cullinan", - "title": "Inside California\u2019s secret sterilisation programme \u2013 and its antivax legacy", - "link": "https://www.telegraph.co.uk/global-health/women-and-girls/california-sterilisation-scandal-compensation-hysterectomy/", - "pubDate": "Tue, 16 Jan 2024 12:13:38 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/16/TELEMMGLPICT000362380144_17054027834680_trans_NvBQzQNjv4BqQ99bcywK3ovn70OLmYu7RgLJs3miTDbR5_wtxIY_ZhE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maeve Cullinan", - "content": "", - "contentSnippet": "", - "guid": "0b279178-6601-3a8b-a7eb-90fceca1726c", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/fertility", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/prisons", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/california", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:women-and-girls", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T12:13:38.000Z" - }, - { - "creator": "Gareth A Davies", - "title": "Anthony Joshua vs Francis Ngannou: When is the fight, how to watch and undercard line-up", - "link": "https://www.telegraph.co.uk/boxing/0/anthony-joshua-vs-francis-ngannou-when-date-tv-undercard/", - "pubDate": "Tue, 16 Jan 2024 12:03:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/boxing/2024/01/15/TELEMMGLPICT000362825810_17053489444230_trans_NvBQzQNjv4BqWc_GXpexIn1kzHCUUNQlnv9PaJXLEMYuNE2t_PPYpUk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Gareth A Davies", - "content": "", - "contentSnippet": "", - "guid": "60459850-a1f0-329c-bccc-24024950bb50", - "categories": [ - { - "_": "topics:people/anthony-joshua", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/saudi-arabia", - "$": { - "domain": "" - } - }, - { - "_": "structure:boxing", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T12:03:35.000Z" - }, - { - "creator": "Alex Robbins", - "title": "The five best used family SUVs to buy in 2024 for less than \u00a35,000 \u2013 and the one to avoid", - "link": "https://www.telegraph.co.uk/cars/advice/best-used-family-cars-suvs-buy-second-hand-uk-2024/", - "pubDate": "Tue, 16 Jan 2024 11:51:38 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cars/2024/01/16/TELEMMGLPICT000001300889_17054050560150_trans_NvBQzQNjv4BqYRJO2PVwCERswigjHg0Yr7ZhnCh_gE_o9cDAPCwIUBI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alex Robbins", - "content": "", - "contentSnippet": "", - "guid": "5510aca9-e663-3918-bcda-18ad09e751dd", - "categories": [ - { - "_": "topics:things/used-cars", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/volkswagen", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/honda", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/nissan", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/hyundai", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dodge", - "$": { - "domain": "" - } - }, - { - "_": "structure:cars/cars-advice", - "$": { - "domain": "" - } - }, - { - "_": "structure:cars", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "editors:alex-robbins", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T11:51:38.000Z" - }, - { - "creator": "Eir Nolsoe", - "title": "Britain\u2019s final coal power plant ramps up power as cold snap hits", - "link": "https://www.telegraph.co.uk/business/2024/01/15/ftse-100-markets-latest-news-house-price-rise-live-updates/", - "pubDate": "Tue, 16 Jan 2024 07:15:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/15/TELEMMGLPICT000362182596_17053461810510_trans_NvBQzQNjv4BqM37qcIWR9CtrqmiMdQVx7FnvyE7jAF_iVIvgxZhCues.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Eir Nolsoe", - "content": "Britain is leaning on its final coal power plant for increased electricity supply as an Arctic blast hits the country.

]]>", - "contentSnippet": "", - "guid": "b0c61bea-523a-3211-8c80-a843b01b536c", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-16T07:15:19.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Israel-Hamas war: Sunak warns Houthis after fresh missile attack", - "link": "https://www.telegraph.co.uk/world-news/2024/01/15/israel-hamas-war-latest-updates-gaza-yemen-day-101-live/", - "pubDate": "Mon, 15 Jan 2024 21:41:12 GMT", - "dc:creator": "Maighna Nanu", - "content": "Rishi Sunak has warned the Houthis of further Western airstrikes, after a missile from the rebel group hit a US-owned ship near Yemen.

]]>", - "contentSnippet": "", - "guid": "6919ec89-6b52-32c8-9e8a-9940da104243", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-15T21:41:12.000Z" - }, - { - "creator": "Narina Exelby", - "title": "The best Bali resorts for a winter sun retreat", - "link": "https://www.telegraph.co.uk/travel/destinations/asia/indonesia/bali/articles/best-bali-resorts/", - "pubDate": "Mon, 15 Jan 2024 20:30:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/2023/october/como-shambala-fountain.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Narina Exelby", - "content": "", - "contentSnippet": "", - "guid": "7ca7e1f8-a3d0-3251-8600-310a0ae24113", - "categories": [ - { - "_": "structure:travel/hotels", - "$": { - "domain": "" - } - }, - { - "_": "structure:hotel-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/bali", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-15T20:30:00.000Z" - }, - { - "creator": "Alex Bolot", - "title": "Monday evening news briefing: Sunak warns Houthis after fresh missile attack", - "link": "https://www.telegraph.co.uk/news/2024/01/15/monday-evening-briefing-sunak-warns-houthis/", - "pubDate": "Mon, 15 Jan 2024 17:31:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alex Bolot", - "content": "", - "contentSnippet": "", - "guid": "60ab4884-c66e-38da-9ed3-d3700074feb7", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/houthis", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-15T17:31:36.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Police failings left girls at mercy of Rochdale grooming gangs, report finds", - "link": "https://www.telegraph.co.uk/news/2024/01/15/police-failings-rochdale-grooming-gangs-girls-child-abuse/", - "pubDate": "Mon, 15 Jan 2024 17:08:27 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/15/TELEMMGLPICT000362749022_17053116237080_trans_NvBQzQNjv4Bqp4nom5PPwQnKhwNgNemGnQNFR5Buk_RKYRxf2eE3H7Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "content": "", - "contentSnippet": "", - "guid": "67ba7b5f-c6be-3535-a2ee-1b9620c07aaa", - "categories": [ - { - "_": "topics:places/rochdale", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/greater-manchester-police", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andy-burnham", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-15T17:08:27.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Ukraine shoots down \u00a3274m Russian spy plane", - "link": "https://www.telegraph.co.uk/world-news/2024/01/15/ukraine-shoots-down-274m-russian-spy-plane/", - "pubDate": "Mon, 15 Jan 2024 16:50:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/15/TELEMMGLPICT000362766740_17053393023430_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "2f58cb54-8d27-3f2c-9ebc-cf39faf687d4", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-15T16:50:59.000Z" - }, - { - "creator": "Simon Briggs", - "title": "Andy Murray concedes Australian Open career could be over after first-round, straight sets defeat", - "link": "https://www.telegraph.co.uk/tennis/2024/01/15/andy-murray-vs-etcheverry-live-score-australian-open-2024/", - "pubDate": "Mon, 15 Jan 2024 16:44:06 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/15/TELEMMGLPICT000362759833_17053211511140_trans_NvBQzQNjv4BqbNf4iwvVsECu0UDXGG9i8RP2LB-kXAeVO_GHOsLnhuU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Briggs", - "content": "Andy Murray gave a strong indication that he has made his final appearance at the Australian Open \u2013 the event where he reached five finals during the 2010s \u2013 after suffering a one-sided loss to Tomas Martin Etcheverry.

]]>", - "contentSnippet": "", - "guid": "1566de5b-d42d-3b42-8f20-136828b6ca16", - "categories": [ - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andy-murray", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-15T16:44:06.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Stick with my plan - it's working, insists Sunak after dire poll results", - "link": "https://www.telegraph.co.uk/politics/2024/01/15/rishi-sunak-latest-news-election-tory-wipeout-shapps-live/", - "pubDate": "Mon, 15 Jan 2024 16:01:10 GMT", - "dc:creator": "Jack Maidment", - "content": "Rishi Sunak has dismissed the significance of a new YouGov survey that suggested the Conservatives could be heading for a 1997-style wipeout, as he argued the only poll that matters \u201cis the one when the general election comes\u201d. 

]]>", - "contentSnippet": "Rishi Sunak has dismissed the significance of a new YouGov survey that suggested the Conservatives could be heading for a 1997-style wipeout, as he argued the only poll that matters \u201cis the one when the general election comes\u201d.\u00a0\n]]>", - "guid": "540bc6b1-8737-3714-98b4-53caae65c407", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/downing-street", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/jeremy-hunt", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-15T16:01:10.000Z" - }, - { - "creator": "Abigail Buchanan", - "title": "The 6 best office chairs in 2024 for remote working in comfort", - "link": "https://www.telegraph.co.uk/education-and-careers/0/best-ergonomic-office-chair/", - "pubDate": "Mon, 15 Jan 2024 12:39:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/education-and-careers/2023/03/30/TELEMMGLPICT000330623506_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Abigail Buchanan", - "content": "", - "contentSnippet": "", - "guid": "efd50a9a-d929-3a38-a153-2deabbdd3b0b", - "categories": [ - { - "_": "topics:things/workplace", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/working-from-home", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/back-pain", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-15T12:39:30.000Z" - }, - { - "creator": "Sarah Newey", - "title": "Inside the clinic hunting for the next pandemic in pets", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/animal-viruses-why-your-pets-could-kill-you/", - "pubDate": "Mon, 15 Jan 2024 11:09:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/12/TELEMMGLPICT000362371687_17050648771970_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Newey", - "content": "", - "contentSnippet": "", - "guid": "48fe5dec-e269-32b5-8caa-ccb3fe618f6b", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/viruses", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/animals", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pandemics-epidemics", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/thailand", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-15T11:09:19.000Z" - }, - { - "creator": "Nicola Williams", - "title": "50 of the most family-friendly hotels in France", - "link": "https://www.telegraph.co.uk/travel/destinations/europe/france/articles/best-family-hotels-france/", - "pubDate": "Sun, 14 Jan 2024 21:30:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/europe/france/paris/the-peninsula-paris-france-1-p.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Nicola Williams", - "content": "", - "contentSnippet": "", - "guid": "c7ed2562-83a0-32b3-abc4-b06be85d1600", - "categories": [ - { - "_": "structure:travel/family-holidays", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/france", - "$": { - "domain": "" - } - }, - { - "_": "structure:hotel-guides", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-14T21:30:00.000Z" - }, - { - "creator": "Jason Burt", - "title": "Tottenham were better organised and better coached than Man Utd \u2013 and that is a huge worry", - "link": "https://www.telegraph.co.uk/football/2024/01/14/manchester-united-vs-tottenham-hotspur-live-score-updates/", - "pubDate": "Sun, 14 Jan 2024 20:31:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/14/TELEMMGLPICT000362654177_17052546306940_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jason Burt", - "content": "Manchester United\u2019s original motto, taken from the one used by the city, is \u201cConcilio et Labore\u201d (\u201cwisdom and effort\u201d). After attending this draw against Tottenham, Sir Jim Ratcliffe may reflect on another Latin phrase \u2013 \u201cCaveat emptor\u201d or \u201cLet the buyer beware\u201d.

]]>", - "contentSnippet": "Tottenham, Sir Jim Ratcliffe may reflect on another Latin phrase \u2013 \u201cCaveat emptor\u201d or \u201cLet the buyer beware\u201d.\n]]>", - "guid": "862ca73f-e046-3dfa-b252-deee1b02fa2b", - "categories": [ - { - "_": "topics:organisations/manchester-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/tottenham-hotspur-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/premier-league-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-14T20:31:24.000Z" - }, - { - "creator": "Chris Bascombe", - "title": "VAR takes centre stage in Aston Villa draw at Everton as Watkins and Calvert-Lewin fire blanks", - "link": "https://www.telegraph.co.uk/football/2024/01/14/everton-vs-aston-villa-live-score-updates-premier-league/", - "pubDate": "Sun, 14 Jan 2024 18:18:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/14/TELEMMGLPICT000362636863_17052506736450_trans_NvBQzQNjv4BqimEc2V6hvkJ2ji11lCPJYZrNiboJHYgluerDsNA7mAw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Bascombe", - "content": "Sean Dyche has worked wonders to ensure Dominic Calvert-Lewin is playing regular football again. His next task is to get the striker\u2019s goal radar fully operational.

]]>", - "contentSnippet": "", - "guid": "2d648cc0-b8f8-35cb-8082-d988007077fa", - "categories": [ - { - "_": "topics:organisations/everton-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/aston-villa-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/premier-league-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-14T18:18:18.000Z" - }, - { - "creator": "Harriet Barber", - "title": "UK and US deny hitting Yemen with fresh airstrikes", - "link": "https://www.telegraph.co.uk/world-news/2024/01/14/israel-hamas-war-latest-news1/", - "pubDate": "Sun, 14 Jan 2024 18:07:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/14/TELEMMGLPICT000362615295_17052374215820_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Harriet Barber", - "content": "The US and UK have denied carrying out fresh airstrikes on rebel-held parts of Western Yemen after Houthi officials claimed the port city of Hodeida had been hit. 

]]>", - "contentSnippet": "", - "guid": "e195eb8d-1a38-3a5b-b18d-a5cf7938ee63", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/yemen", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-14T18:07:10.000Z" - }, - { - "creator": "Uche Amako", - "title": "Australian Open: Novak Djokovic survives longest first-round match of his grand slam career", - "link": "https://www.telegraph.co.uk/tennis/2024/01/14/novak-djokovic-vs-dino-prizmic-live-updates-australian-open/", - "pubDate": "Sun, 14 Jan 2024 12:45:47 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/14/TELEMMGLPICT000362610999_17052330695230_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Uche Amako", - "content": "Novak Djokovic was given a scare by Croatian teenager Dino Prizmic in the longest first-round match of his grand slam career.

]]>", - "contentSnippet": "", - "guid": "3255104f-b96f-34e8-8000-76f1f0ce45a1", - "categories": [ - { - "_": "topics:people/novak-djokovic", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/australian-open", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-14T12:45:47.000Z" - }, - { - "creator": "Diana Henry", - "title": "Pumpkin and bean soup with parsley pesto bread recipe", - "link": "https://www.telegraph.co.uk/recipes/0/pumpkin-and-bean-soup-with-parsley-pesto-bread-recipe/", - "pubDate": "Sun, 14 Jan 2024 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/08/TELEMMGLPICT000361988013_17047285586180_trans_NvBQzQNjv4BqFm5YzcYky3uVL0BsQWkP3dkM9MM8VM3G1BxlGUO4L8Q.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "a6b983a4-167d-329b-ba84-49110af31c8c", - "categories": [ - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pumpkin-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/bean-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/soup-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/bread-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-magazine", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-14T09:00:00.000Z" - }, - { - "creator": "Diana Henry", - "title": "Lamb shank pie with pickled red cabbage recipe", - "link": "https://www.telegraph.co.uk/recipes/0/lamb-shank-pie-with-pickled-red-cabbage-recipe/", - "pubDate": "Sun, 14 Jan 2024 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/08/TELEMMGLPICT000361986177_17047276478640_trans_NvBQzQNjv4BqdQ8YrSsR88w3pzEpBtW9VkikPYR0xYwuEBLwP9UFqPg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "6a41b447-e316-3092-a54e-4e93b4be2bad", - "categories": [ - { - "_": "topics:things/lamb-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cabbage-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-magazine", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-14T09:00:00.000Z" - }, - { - "creator": "Diana Henry", - "title": "Sticky toffee pudding cake recipe", - "link": "https://www.telegraph.co.uk/recipes/0/sticky-toffee-pudding-cake-recipe/", - "pubDate": "Sun, 14 Jan 2024 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/08/TELEMMGLPICT000361991618_17047299032920_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Diana Henry", - "content": "", - "contentSnippet": "", - "guid": "a87d085c-89b2-3e25-ab8c-e94d293340da", - "categories": [ - { - "_": "topics:things/cake-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dessert-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-magazine", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:diana-henry", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-14T09:00:00.000Z" - }, - { - "creator": "Lauren Almeida", - "title": "The best pensions for 2024", - "link": "https://www.telegraph.co.uk/money/pensions/best-private-pension-schemes-providers/", - "pubDate": "Sun, 14 Jan 2024 05:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/money/2023/09/08/TELEMMGLPICT000348488775_16941858835840_trans_NvBQzQNjv4BqJp4oNrwLK4YrGS-S5oWeIIEl2prv7DQYjmy_kHYUKRA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lauren Almeida", - "content": "", - "contentSnippet": "", - "guid": "3922c038-f30a-31c2-915e-e732007ce631", - "categories": [ - { - "_": "topics:things/state-pension", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/private-pensions", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/financial-planning-for-retirement", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/retirement", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/tax-in-retirement", - "$": { - "domain": "" - } - }, - { - "_": "structure:money/pensions", - "$": { - "domain": "" - } - }, - { - "_": "structure:money", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-superguide", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:better-life/better-life-evergreen", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-14T05:00:00.000Z" - }, - { - "creator": "Luke Edwards", - "title": "Kevin De Bruyne is Man City\u2019s hero at Newcastle \u2013 and shows why they are title favourites", - "link": "https://www.telegraph.co.uk/football/2024/01/13/newcastle-vs-man-city-live-score-updates-premier-league/", - "pubDate": "Sat, 13 Jan 2024 21:54:49 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/13/TELEMMGLPICT000362508192_17051732643900_trans_NvBQzQNjv4BqNr7buqbkV04AEATLFYLNjAsIcagKWDTsYii0WZbrxoU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Luke Edwards", - "content": "Kevin De Bruyne has got a new look, an injury lay off fashion makeover, but some things never change: his ability to rescue Manchester City when they need a hero.

]]>", - "contentSnippet": "", - "guid": "4bcdb5ed-8ffc-3457-a809-871c2bc26c0d", - "categories": [ - { - "_": "topics:organisations/newcastle-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/manchester-city-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/premier-league-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-13T21:54:49.000Z" - }, - { - "creator": "Gary Fitzgerald", - "title": "Pat Lam laments front row absentees as Bristol get brutal lesson from Bulls", - "link": "https://www.telegraph.co.uk/rugby-union/2024/01/13/bristol-bears-v-bulls-live-scores-updates-champions-cup/", - "pubDate": "Sat, 13 Jan 2024 18:36:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/13/TELEMMGLPICT000362493409_17051721247040_trans_NvBQzQNjv4BqnY32puTRmJBD0IQz1kt_ZZgojZYlP8f0i9h2tPqCNsM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Gary Fitzgerald", - "content": "By Gary Fitzgerald, at Ashton Gate 

]]>", - "contentSnippet": "By Gary Fitzgerald, at Ashton Gate\u00a0\n]]>", - "guid": "ba57a468-5fc8-3955-9324-cb99ee32a040", - "categories": [ - { - "_": "topics:organisations/bristol-rugby", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/european-rugby-champions-cup", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-13T18:36:12.000Z" - }, - { - "creator": "Sam Wallace", - "title": "Raheem Sterling's penalty record, VAR angst and a movie stunt: Just another normal day at Chelsea", - "link": "https://www.telegraph.co.uk/football/2024/01/13/chelsea-vs-fulham-live-score-updates-premier-league/", - "pubDate": "Sat, 13 Jan 2024 17:27:29 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/13/TELEMMGLPICT000362469263_17051651310090_trans_NvBQzQNjv4BqX4nCz5BFCeS9VxlVLBdClGjhtXSOE0qmL0_T5Vv0axo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Wallace", - "content": "No player in the Premier League era has won more penalties than Raheem Sterling and although he no longer takes them for Chelsea, the 26th earned over the course of his career was just as vital to the Mauricio Pochettino era.

]]>", - "contentSnippet": "", - "guid": "b0621f39-2867-3320-a94b-e0a04e5c71e4", - "categories": [ - { - "_": "topics:organisations/chelsea-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/fulham-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/premier-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/premier-league-live", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-13T17:27:29.000Z" - }, - { - "creator": "Daniel Hardaker", - "title": "UK and US airstrikes will not stop Red Sea attacks, Houthis say", - "link": "https://www.telegraph.co.uk/world-news/2024/01/13/israel-hamas-war-latest-updates-gaza-palestine-day-99-live/", - "pubDate": "Sat, 13 Jan 2024 17:01:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/13/TELEMMGLPICT000362443866_17051397557720_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Daniel Hardaker", - "content": "US and UK strikes on Yemen have had no significant impact on the Houthis\u2019 ability to attack vessels passing through the Red Sea, the rebels have claimed.

]]>", - "contentSnippet": "", - "guid": "6883008f-58f1-3a31-a356-602405e154bc", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/red-sea", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/houthis", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-13T17:01:55.000Z" - }, - { - "creator": "Mark Hix", - "title": "Thai hanger steak salad recipe", - "link": "https://www.telegraph.co.uk/recipes/0/thai-hanger-steak-salad-recipe/", - "pubDate": "Sat, 13 Jan 2024 07:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/08/TELEMMGLPICT000361997799_17047334518230_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mark Hix", - "content": "", - "contentSnippet": "", - "guid": "0fd89d8f-3878-3638-adb5-4076c71ecc98", - "categories": [ - { - "_": "topics:things/beef-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/steak-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/salad-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:mark-hix", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-13T07:00:00.000Z" - }, - { - "creator": "Mark Hix", - "title": "Beef flank, ale and oyster pies recipe", - "link": "https://www.telegraph.co.uk/recipes/0/beef-flank-ale-and-oyster-pies-recipe/", - "pubDate": "Sat, 13 Jan 2024 07:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/11/TELEMMGLPICT000362273755_17049887717170_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8Rf4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mark Hix", - "content": "", - "contentSnippet": "", - "guid": "57d3a5b1-df2a-319e-b5ef-c0a915ec4d1f", - "categories": [ - { - "_": "topics:things/beef-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pie-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/oysters", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-magazine", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:mark-hix", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-13T07:00:00.000Z" - }, - { - "creator": "Mark Hix", - "title": "Polenta on the table with beef ragu recipe", - "link": "https://www.telegraph.co.uk/recipes/0/polenta-on-the-table-with-beef-ragu-recipe/", - "pubDate": "Sat, 13 Jan 2024 07:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/12/TELEMMGLPICT000362386268_17050734231410_trans_NvBQzQNjv4BqofaNcI6PJQ5Uax8G0cYOhyt3CxY9CEAdbLTbCjZ8SJc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mark Hix", - "content": "", - "contentSnippet": "", - "guid": "7a598034-b279-34be-aaf3-283329bd9132", - "categories": [ - { - "_": "topics:things/beef-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/italian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-party-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:mark-hix", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-13T07:00:00.000Z" - }, - { - "creator": "Mark Hix", - "title": "Ox cheek hotpot with ginger recipe", - "link": "https://www.telegraph.co.uk/recipes/0/ox-cheek-hotpot-with-ginger-recipe/", - "pubDate": "Sat, 13 Jan 2024 07:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/11/TELEMMGLPICT000362278492_17049894253700_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Mark Hix", - "content": "", - "contentSnippet": "", - "guid": "aaea4d4d-71f4-3e4e-a5c6-fd3e616a3498", - "categories": [ - { - "_": "topics:things/beef-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/dinner-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-magazine", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "editors:mark-hix", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-13T07:00:00.000Z" - }, - { - "creator": "Robert Jenrick", - "title": "Adopt my amendments to Rwanda Bill or face an illegal migration catastrophe", - "link": "https://www.telegraph.co.uk/news/2024/01/12/jenrick-migration-bill-rwanda-illegal-migration-catastrophe/", - "pubDate": "Fri, 12 Jan 2024 20:07:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/12/TELEMMGLPICT000357647220_17050863656530_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Robert Jenrick", - "content": "", - "contentSnippet": "", - "guid": "c3124f29-2f1b-3337-92b8-eea6501eb520", - "categories": [ - { - "_": "topics:things/immigration", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/migration", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/migrant-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/migrants", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/robert-jenrick", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:opinion", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:comment", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-12T20:07:36.000Z" - }, - { - "creator": "Benedict Smith", - "title": "Abandoning Ukraine will embolden Iran, Sunak warns", - "link": "https://www.telegraph.co.uk/world-news/2024/01/12/ukraine-russia-war-news-live-sunak-visit-kyiv-military-aid/", - "pubDate": "Fri, 12 Jan 2024 18:52:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/12/TELEMMGLPICT000362354836_17050951091150_trans_NvBQzQNjv4Bq9aNTvXzstCq-uTFvGElDImVy0nsVrxikmV0usH_KLRk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Benedict Smith", - "content": "Abandoning Ukraine will only embolden Vladimir Putin\u2019s allies such as Iran and North Korea, Rishi Sunak warned on Friday.

]]>", - "contentSnippet": "", - "guid": "fb6e7e6a-7fa7-3d01-bfce-4a0fdb1f7c4c", - "categories": [ - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-12T18:52:40.000Z" - }, - { - "creator": "Michael Bow", - "title": "Citi to cut 20,000 jobs", - "link": "https://www.telegraph.co.uk/business/2024/01/12/ftse-100-market-news-live-economic-growth-boost-gdp-latest/", - "pubDate": "Fri, 12 Jan 2024 18:18:03 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/12/TELEMMGLPICT000283918522_17050671685860_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Michael Bow", - "content": "Citigroup is to cut 20,000 jobs after the Wall Street bank suffered its worst quarterly loss since the financial crisis. 

]]>", - "contentSnippet": "", - "guid": "417183f3-1c92-33a8-a9f9-116c2447189b", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-12T18:18:03.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Friday evening news briefing: British air strikes send message to Iran, says Cameron", - "link": "https://www.telegraph.co.uk/news/2024/01/12/friday-evening-news-briefing-british-strikes-iran-cameron/", - "pubDate": "Fri, 12 Jan 2024 17:41:55 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "content": "", - "contentSnippet": "", - "guid": "902ab454-8865-3400-80ed-7ba15143c3d0", - "categories": [ - { - "_": "topics:organisations/houthis", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/david-cameron", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/yemen", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-12T17:41:55.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - 'We're not going anywhere', Sunak tells Putin", - "link": "https://www.telegraph.co.uk/world-news/2024/01/12/were-not-going-anywhere-sunak-tells-putin/", - "pubDate": "Fri, 12 Jan 2024 16:41:13 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/12/TELEMMGLPICT000362381878_17050701578950_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "content": "", - "contentSnippet": "", - "guid": "38584542-7db6-3cd3-b97e-e261bf8b98e4", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-12T16:41:13.000Z" - }, - { - "creator": "Jamie Bullen", - "title": "Paula Vennells claimed Horizon wasn't discussed on WhatsApp, Post Office inquiry hears", - "link": "https://www.telegraph.co.uk/news/2024/01/12/horizon-post-office-scandal-fraud-investigation-latest/", - "pubDate": "Fri, 12 Jan 2024 16:08:23 GMT", - "dc:creator": "Jamie Bullen", - "content": "Paula Vennells and fellow Post Office executives did not provide WhatsApps to the public inquiry into the Horizon scandal after telling lawyers the faulty software was not discussed, it has emerged.

]]>", - "contentSnippet": "Vennells and fellow Post Office executives did not provide WhatsApps to the public inquiry into the Horizon scandal after telling lawyers the faulty software was not discussed, it has emerged.\n]]>", - "guid": "5299a070-ee4c-3fd0-ab28-8fa7f6e016db", - "categories": [ - { - "_": "topics:places/post-office", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/post-office-scandal", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-12T16:08:23.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Scottish Labour leader joins calls for Israel-Gaza ceasefire as pressure builds on Starmer", - "link": "https://www.telegraph.co.uk/politics/2023/10/27/rishi-sunak-latest-news-poll-iain-duncan-smith-china-ai/", - "pubDate": "Fri, 27 Oct 2023 12:38:21 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/27/TELEMMGLPICT000352603762_16984099252770_trans_NvBQzQNjv4BqnoUwCwXVn4LwErZ6GGyzhoX55UGE1-QmdhXTcMmlCx4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "guid": "01c948e4-1a23-3bfd-8b80-0f0f758d9067", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T12:38:21.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "What\u2019s on TV tonight: The Enfield Poltergeist, Ghosts and more", - "link": "https://www.telegraph.co.uk/tv/0/tv-guide-tv-television-tonight/", - "pubDate": "Fri, 27 Oct 2023 12:27:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tv/2023/10/20/TELEMMGLPICT000352981343_16978075187530_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "guid": "06b4bdb8-de13-3e88-8461-2ed233991f17", - "categories": [ - { - "_": "topics:organisations/itv", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/channel-4", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bbc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/sky", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/netflix", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/amazon-prime-video", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture/culture-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:on-demand", - "$": { - "domain": "" - } - }, - { - "_": "structure:television/television-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:television", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T12:27:04.000Z" - }, - { - "creator": "David Knowles", - "title": "Battle Lines: Unedited footage of Hamas atrocities, on the ground in the West Bank, and China's wave of anti-semitism", - "link": "https://www.telegraph.co.uk/world-news/2023/10/27/battle-lines-israel-gaza-west-bank-hamas-footage/", - "pubDate": "Fri, 27 Oct 2023 12:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354191820_16984029276710_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "guid": "21e8322c-e5e4-34f5-8cc4-f2bd618e1279", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/battle-lines", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T12:00:00.000Z" - }, - { - "creator": "Rebecca Astill", - "title": "35 best Christmas gifts for her in 2023, from The White Company, John Lewis and more", - "link": "https://www.telegraph.co.uk/women/life/best-gifts-present-ideas-birthday-women/", - "pubDate": "Fri, 27 Oct 2023 11:56:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/women/2023/10/25/TELEMMGLPICT000354236157_16982232242390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rebecca Astill", - "guid": "6b6e7d03-fef4-3025-b126-22bc85ff6070", - "categories": [ - { - "_": "topics:things/perfume", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/affordable-jewellery", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:women/life", - "$": { - "domain": "" - } - }, - { - "_": "structure:women", - "$": { - "domain": "" - } - }, - { - "_": "structure:lifestyle", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T11:56:57.000Z" - }, - { - "creator": "Verity Bowman", - "title": "Israel-Gaza latest news: IDF deploys fighter jets and drones to strike 'terror targets' in Gaza", - "link": "https://www.telegraph.co.uk/world-news/2023/10/27/israel-gaza-latest-news-updates-hamas-palestine-day-21-live/", - "pubDate": "Fri, 27 Oct 2023 11:49:39 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354568217_16984073612890_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Verity Bowman", - "guid": "364bf701-6290-3e2b-bf3e-44b7724b7fbb", - "categories": [ - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hamas", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T11:49:39.000Z" - }, - { - "creator": "James Warrington", - "title": "Russia hikes interest rates to 15pc in fight against inflation - latest updates", - "link": "https://www.telegraph.co.uk/business/2023/10/27/ftse-100-markets-news-live-property-landlords-renting/", - "pubDate": "Fri, 27 Oct 2023 11:07:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/10/27/TELEMMGLPICT000354542957_16984048163850_trans_NvBQzQNjv4BqS8LvVGaCov9_zEWH2d7j7YO2JF_w593QGlWaWVZxraI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "James Warrington", - "guid": "4dd01fa4-c00b-3796-9e9e-f65d405cfb38", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T11:07:50.000Z" - }, - { - "creator": "Jessica Salter", - "title": "The 25 best Christmas crackers of 2023, from luxury crackers to traditional choices", - "link": "https://www.telegraph.co.uk/christmas/best-christmas-crackers/", - "pubDate": "Fri, 27 Oct 2023 10:22:08 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/27/TELEMMGLPICT000354563213_16983977417550_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jessica Salter", - "guid": "cdb2f9db-4f45-39d7-9eb7-e5ef72e032e5", - "categories": [ - { - "_": "topics:things/christmas-crackers", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-dinner", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:christmas-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T10:22:08.000Z" - }, - { - "creator": "Chas Newkey-Burden", - "title": "The best fire pits of 2023 for cold nights, tried and tested", - "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-fire-pit/", - "pubDate": "Fri, 27 Oct 2023 09:36:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/07/04/TELEMMGLPICT000341495045_16884738404200_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chas Newkey-Burden", - "guid": "4275f006-634d-3dc7-9aed-9adfb6af594d", - "categories": [ - { - "_": "topics:things/gardens", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/barbecue", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-tools", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/garden-furniture", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/gardening-accessories", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T09:36:59.000Z" - }, - { - "creator": "Claire Thomson", - "title": "Liquorice, beetroot and chocolate cake recipe", - "link": "https://www.telegraph.co.uk/recipes/0/liquorice-beetroot-and-chocolate-cake-recipe/", - "pubDate": "Fri, 27 Oct 2023 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/10/23/TELEMMGLPICT000354130658_16980652242430_trans_NvBQzQNjv4BqNDldSA4PgKIB5KTAa-dc6WQnZJIETfWB_fUbKb77n0w.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Claire Thomson", - "guid": "d5cfa46c-e8be-3c00-a425-83cb4adbef34", - "categories": [ - { - "_": "topics:things/chocolate-cake-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/chocolate-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/halloween-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/beetroot-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/party-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/cake-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T09:00:00.000Z" - }, - { - "creator": "Claire Thomson", - "title": "Black bean burgers with quick ketchup and gherkin \u2018fingers\u2019 recipe", - "link": "https://www.telegraph.co.uk/recipes/0/black-bean-burgers-with-quick-ketchup-and-gherkin-fingers/", - "pubDate": "Fri, 27 Oct 2023 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/10/23/TELEMMGLPICT000354130668_16980607022270_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Claire Thomson", - "guid": "0a95041d-6a75-3648-8845-01ae8f03fa09", - "categories": [ - { - "_": "topics:things/burger-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/vegetarian-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/halloween-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T09:00:00.000Z" - }, - { - "creator": "Claire Thomson", - "title": "Cherry cocktails with lychee \u2018eyeball\u2019 skewers recipe", - "link": "https://www.telegraph.co.uk/recipes/0/cherry-cocktails-with-lychee-eyeball-skewers-recipe/", - "pubDate": "Fri, 27 Oct 2023 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/10/27/TELEMMGLPICT000354564333_16983986772020_trans_NvBQzQNjv4Bqq6GZV2TOCTHAqKdXYOVHJGQnZJIETfWB_fUbKb77n0w.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Claire Thomson", - "guid": "9632801b-0a0f-3874-a2a2-cf3a87fbd32f", - "categories": [ - { - "_": "topics:events/halloween", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/non-alcoholic-cocktail-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/party-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/halloween-recipes", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/drinks-recipes", - "$": { - "domain": "" - } - }, - { - "_": "structure:cookbook", - "$": { - "domain": "" - } - }, - { - "_": "storytype:recipe", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T09:00:00.000Z" - }, - { - "creator": "Gareth A Davies", - "title": "Tyson Fury vs Francis Ngannou: When is the fight, how to watch on TV and undercard line-up", - "link": "https://www.telegraph.co.uk/boxing/2023/10/27/tyson-fury-vs-francis-ngannou-when-date-tv-undercard/", - "pubDate": "Fri, 27 Oct 2023 08:50:23 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/boxing/2023/10/26/TELEMMGLPICT000354383069_16983312300700_trans_NvBQzQNjv4BqhpL9wIsx6QnAoaHzcNRkTtpo_ECDpFELYnB1SrAlgVo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Gareth A Davies", - "guid": "94aa34ad-3aab-3925-a10f-357c51d8b1b7", - "categories": [ - { - "_": "topics:people/tyson-fury", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/ufc", - "$": { - "domain": "" - } - }, - { - "_": "structure:boxing", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T08:50:23.000Z" - }, - { - "creator": "Telegraph Sport", - "title": "England v Argentina: When is the 2023 Rugby World Cup third-place play-off?", - "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/argentina-v-england-rugby-world-cup-2023-third-place-when/", - "pubDate": "Fri, 27 Oct 2023 08:40:58 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/25/TELEMMGLPICT000352998515_16982402978740_trans_NvBQzQNjv4Bqeplg35TCJilGYsiqO1Zg5zXaG_3FkRG2WH2SGzlVXbs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Sport", - "guid": "525e7bec-d054-3ce2-9a1e-1a46d14f6728", - "categories": [ - { - "_": "topics:events/rwc-france-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/argentina-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T08:40:58.000Z" - }, - { - "creator": "Tom Ward", - "title": "New Zealand v South Africa: When is the 2023 Rugby World Cup final and how to watch", - "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/new-zealand-v-south-africa-rugby-world-cup-2023-final-when/", - "pubDate": "Fri, 27 Oct 2023 08:39:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/24/TELEMMGLPICT000258203767_16981533093800_trans_NvBQzQNjv4BqpvhYCxZ1zyEMRa-WSVMKo-yoE_6FjezOloCMpdPDZFE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tom Ward", - "guid": "bc765393-a033-3348-be7f-7384b8fe45c3", - "categories": [ - { - "_": "topics:events/rwc-france-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/new-zealand-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/south-africa-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T08:39:35.000Z" - }, - { - "creator": "Charlie Morgan", - "title": "South Africa\u2019s World Cup 2023 fixtures and how to watch on TV", - "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/south-africa-world-cup-2023-fixtures-and-how-to-watch-on-tv/", - "pubDate": "Fri, 27 Oct 2023 08:37:31 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/24/TELEMMGLPICT000354143443_16981540410200_trans_NvBQzQNjv4BqDo1PhbPPiB1HBZscUHLBE15NUcTKNHKqy85KLqtvPLE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charlie Morgan", - "guid": "cccf1425-3ac9-3678-bc77-64ea140091db", - "categories": [ - { - "_": "topics:organisations/south-africa-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/rwc-france-2023", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T08:37:31.000Z" - }, - { - "creator": "Josh Burrows", - "title": "Cricket World Cup 2023: Dates, schedule, fixtures and latest odds for the ODI tournament", - "link": "https://www.telegraph.co.uk/cricket/0/cricket-world-cup-2023-dates-schedule-fixtures-latest-odds-odi/", - "pubDate": "Fri, 27 Oct 2023 08:35:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/10/26/TELEMMGLPICT000354472967_16983562538300_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Josh Burrows", - "guid": "e7862d4f-ef0a-3d7e-a08c-8e6a51d7fa59", - "categories": [ - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/india-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/australia-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/pakistan-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/cricket-world-cup", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T08:35:35.000Z" - }, - { - "creator": "Will Macpherson", - "title": "Men's Cricket World Cup 2023 fantasy game: the cheat sheet you need", - "link": "https://www.telegraph.co.uk/cricket/2023/10/27/mens-cricket-world-cup-fantasy-2023-the-cheat-sheet-tips/", - "pubDate": "Fri, 27 Oct 2023 08:35:26 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/10/03/TELEMMGLPICT000351309152_16963473459000_trans_NvBQzQNjv4BqD3d2dmOlWYuQkR76XZjLQP4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Will Macpherson", - "guid": "86bf3624-5693-3065-a5ba-eada6db74a5c", - "categories": [ - { - "_": "topics:events/cricket-world-cup", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T08:35:26.000Z" - }, - { - "creator": "Charlie Morgan", - "title": "Rugby has a fantasy World Cup game \u2013 here is the cheat sheet you need", - "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/rugby-world-cup-fantasy-2023-cheat-sheet-tips/", - "pubDate": "Fri, 27 Oct 2023 08:34:56 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/18/TELEMMGLPICT000353432012_16976199809460_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charlie Morgan", - "guid": "3ebc7e47-3582-3cb6-bc60-aa1b88c78f51", - "categories": [ - { - "_": "topics:events/rwc-france-2023", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T08:34:56.000Z" - }, - { - "creator": "Daniel Schofield", - "title": "Rugby World Cup 2023: Final and bronze final fixture, full schedule and TV guide", - "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/rugby-world-cup-2023-dates-schedule-how-watch-tv-odds/", - "pubDate": "Fri, 27 Oct 2023 08:34:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/21/TELEMMGLPICT000353767407_16979242831060_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Daniel Schofield", - "guid": "1be713af-a9ca-39fe-b554-44f542bf8af3", - "categories": [ - { - "_": "topics:events/rwc-france-2023", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/wales-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/scotland-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/irfu", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/rfu", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T08:34:46.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Russia \u2018executing disobedient soldiers\u2019, says White House", - "link": "https://www.telegraph.co.uk/world-news/2023/10/27/ukraine-russia-war-live-kupiansk-putin-zelensky-latest/", - "pubDate": "Fri, 27 Oct 2023 08:09:58 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354498467_16983941059240_trans_NvBQzQNjv4Bqn7tMRpXaL8LZxuDeTaFS4V5NUcTKNHKqy85KLqtvPLE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "guid": "9d94c166-80e7-3c06-8f1d-8178ac5d7ea5", - "categories": [ - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T08:09:58.000Z" - }, - { - "creator": "Josh White", - "title": "Watch: Dutch far-Right leader attacked with umbrella", - "link": "https://www.telegraph.co.uk/world-news/2023/10/26/thierry-baudet-dutch-far-right-leader-hit-umbrella-ghent/", - "pubDate": "Fri, 27 Oct 2023 07:39:50 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354522398_16983923467820_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Josh White", - "guid": "5aa198eb-4b44-3ecb-96c5-80fc684c7735", - "categories": [ - { - "_": "topics:places/netherlands", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/europe", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/belgium", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T07:39:50.000Z" - }, - { - "creator": "Daniel Hardaker", - "title": "Belarus: Putin\u2019s \u2018closest ally\u2019 explained | Defence in Depth", - "link": "https://www.telegraph.co.uk/world-news/2023/10/27/belarus-putin-lukashenko-closest-ally-ukraine-explained-war/", - "pubDate": "Fri, 27 Oct 2023 07:00:00 GMT", - "dc:creator": "Daniel Hardaker", - "guid": "ee08ec07-02de-3bcc-afcc-d23144c2a5bb", - "categories": [ - { - "_": "topics:places/belarus", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/lukashenko", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/russion-invasion", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/explained-ukraine-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/defence-in-depth", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T07:00:00.000Z" - }, - { - "creator": "Lilia Sebouai", - "title": "\u2018There is no safe place\u2019: Newborns share incubators as supplies run low at Gaza\u2019s swamped hospitals", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/gaza-hospitals-overcrowding-disease-israel-hamas-war/", - "pubDate": "Fri, 27 Oct 2023 06:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/26/TELEMMGLPICT000354161165_16983400281730_trans_NvBQzQNjv4BqFmdtdovgxskirSSG45rbt_4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lilia Sebouai", - "guid": "c05f4251-6018-393b-b024-15db9afd0885", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hamas", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Conflict", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T06:00:00.000Z" - }, - { - "creator": "Andrea Hamblin", - "title": "US strikes Iran-linked sites in Syria in retaliation for attacks on American troops", - "link": "https://www.telegraph.co.uk/world-news/2023/10/27/us-defence-strikes-iran-linked-sites-syria-retaliation/", - "pubDate": "Fri, 27 Oct 2023 03:00:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000351778870_16983765974480_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Andrea Hamblin", - "guid": "9d634fb6-4651-3ae3-ba34-edd8a4c90766", - "categories": [ - { - "_": "topics:places/syria", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/iran", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/joe-biden", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/the-pentagon", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T03:00:40.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "Li Keqiang, former Chinese premier, dies aged 68", - "link": "https://www.telegraph.co.uk/world-news/2023/10/27/li-keqiang-china-death-age-xi-jinping-latest-news/", - "pubDate": "Fri, 27 Oct 2023 00:34:21 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354537446_16983662060390_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "guid": "71c30fda-81f2-32e3-9dfa-1fc057f789f9", - "categories": [ - { - "_": "topics:places/china", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/chinese-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/xi-jinping", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/asia", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T00:34:21.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Maine shooting suspect still at large as officials admit \u2018we don\u2019t know his location\u2019", - "link": "https://www.telegraph.co.uk/us/news/2023/10/26/maine-mass-shootings-latest-news-multiple-dead-injured/", - "pubDate": "Thu, 26 Oct 2023 23:03:34 GMT", - "dc:creator": "Maighna Nanu", - "guid": "656d0b21-c72f-3726-aa37-11511f22180e", - "categories": [ - { - "_": "topics:things/guns-in-the-usa", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/maine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/joe-biden", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T23:03:34.000Z" - }, - { - "creator": "Alex Barton", - "title": "Israel says Gaza offensive will happen 'when conditions are right", - "link": "https://www.telegraph.co.uk/world-news/2023/10/26/israel-gaza-latest-news-updates-hamas-palestine-day-20-live/", - "pubDate": "Thu, 26 Oct 2023 22:02:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/26/TELEMMGLPICT000354454705_16983240459380_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alex Barton", - "guid": "a6f04f64-0e6f-3e22-8980-f34652156955", - "categories": [ - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hamas", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T22:02:40.000Z" - }, - { - "creator": "Chris Bascombe", - "title": "Ryan Gravenberch's classy contributions make Darwin Nunez's miss academic for Liverpool", - "link": "https://www.telegraph.co.uk/football/2023/10/26/liverpool-vs-toulouse-live-score-europa-league-updates/", - "pubDate": "Thu, 26 Oct 2023 21:43:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/26/TELEMMGLPICT000354518928_16983526736380_trans_NvBQzQNjv4BqPNWwDyPbFwP-inmmdjUPH8RERdCilWm4TK0cx62pGGA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Chris Bascombe", - "guid": "4f07c07d-51e4-38c7-8b91-a206a25cd96d", - "categories": [ - { - "_": "topics:organisations/liverpool-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/toulouse-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/europa-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T21:43:59.000Z" - }, - { - "creator": "Tim Wigmore", - "title": "England battling to avoid wooden spoon with World Cup defence all but over", - "link": "https://www.telegraph.co.uk/cricket/2023/10/26/england-vs-sri-lanka-cricket-world-cup-live-score-latest/", - "pubDate": "Thu, 26 Oct 2023 19:43:22 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/10/26/TELEMMGLPICT000354472435_16983288796420_trans_NvBQzQNjv4BqNCia7BkDsl5uc5DkbIK1rXAYqToWwsEdDfRGUIggV2U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Wigmore", - "guid": "79aff79f-2381-3d19-a7bd-d5d1ce61c486", - "categories": [ - { - "_": "topics:organisations/england-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/sri-lanka-cricket-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/cricket-world-cup", - "$": { - "domain": "" - } - }, - { - "_": "structure:cricket", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T19:43:22.000Z" - }, - { - "creator": "Daniel Zeqiri", - "title": "West Ham's 17-game unbeaten European run ends with limp defeat at Olympiacos", - "link": "https://www.telegraph.co.uk/football/2023/10/26/olympiacos-vs-west-ham-live-score-europa-league-updates/", - "pubDate": "Thu, 26 Oct 2023 19:06:24 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/26/TELEMMGLPICT000354493117_16983412323170_trans_NvBQzQNjv4BqQgMjXxrLtZ-jB6DDRs5yt6m7WIFPD0eU3LfOcxNlODs.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Daniel Zeqiri", - "guid": "d1801859-3d0d-3810-84d3-06a0c377d281", - "categories": [ - { - "_": "topics:organisations/west-ham-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/europa-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/olympiakos-fc", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T19:06:24.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "TikTok prankster Mizzy banned from posting on social media", - "link": "https://www.telegraph.co.uk/news/2023/10/26/mizzy-tiktok-prankster-arrested-perverting-course-justice/", - "pubDate": "Thu, 26 Oct 2023 18:36:16 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/26/TELEMMGLPICT000354454931_16983181542540_trans_NvBQzQNjv4BqxTgV-VEbjByvRp9E0Pb-y1fJF0EM4dK0APHdPHIua_0.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "guid": "2fcff07a-b0f0-3e6a-b4fb-f9c60319c51b", - "categories": [ - { - "_": "topics:organisations/tiktok", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T18:36:16.000Z" - }, - { - "creator": "Catherine Lough", - "title": "Ex-teacher turned model, 60, harassed neighbour after being evicted from beach hut", - "link": "https://www.telegraph.co.uk/news/2023/10/26/glamorous-model-60-harassment-neighbour-beach-hut-worthing/", - "pubDate": "Thu, 26 Oct 2023 17:14:38 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/26/TELEMMGLPICT000354438724_16983395554160_trans_NvBQzQNjv4BqMvGa6jnbg4vLWQZ_2wrWZ4gBPLcblNbARPTd0CfKgTo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Catherine Lough", - "guid": "5ab9ebb2-c332-3c86-aa09-310d79b63b88", - "categories": [ - { - "_": "topics:places/worthing", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/west-sussex", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/court-cases", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T17:14:38.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Thursday evening news briefing: 18 killed and 13 injured in Maine shooting", - "link": "https://www.telegraph.co.uk/news/2023/10/26/thursday-evening-news-briefing-18-killed-13-injured-maine/", - "pubDate": "Thu, 26 Oct 2023 16:38:16 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "guid": "a2ce0a52-dfbf-3714-8b22-263eecc9f21e", - "categories": [ - { - "_": "topics:people/rachel-reeves", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/maine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T16:38:16.000Z" - }, - { - "creator": "Tim Wallace", - "title": "Christine Lagarde warns over impact of Israel-Hamas war on energy prices", - "link": "https://www.telegraph.co.uk/business/2023/10/26/ftse-100-markets-news-latest-ford-uaw-eu-interest-rates/", - "pubDate": "Thu, 26 Oct 2023 16:01:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/10/26/TELEMMGLPICT000354474411_16983359791450_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwVVuduJKBIVmdsWxwOVYZQY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Wallace", - "guid": "178648ba-4f70-3d63-996c-cbada199af17", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T16:01:40.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Is France scheming to use Ukrainian aid to bolster EU independence?", - "link": "https://www.telegraph.co.uk/world-news/2023/10/26/is-france-scheming-to-use-ukrainian-aid-to-bolster-eu/", - "pubDate": "Thu, 26 Oct 2023 15:40:01 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/26/TELEMMGLPICT000354412146_16983320230750_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "guid": "be9090fc-838e-3699-9d4c-0db4a584af2a", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T15:40:01.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Liz Truss urges Rishi Sunak to rescind China's invite to AI summit", - "link": "https://www.telegraph.co.uk/politics/2023/10/26/rishi-sunak-latest-news-oliver-dowden-ai-speech-israel/", - "pubDate": "Thu, 26 Oct 2023 15:00:18 GMT", - "dc:creator": "Jack Maidment", - "guid": "91474bb6-3e40-348f-9a86-457861c1af37", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T15:00:18.000Z" - }, - { - "creator": "Marlborough", - "title": "Marlborough racing tips and best bets for today\u2019s races", - "link": "https://www.telegraph.co.uk/racing/0/marlborough-racing-tips-best-bets-todays-races/", - "pubDate": "Thu, 26 Oct 2023 14:28:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/racing/2021/03/26/260321_JH_RACING_PORTAL_4_trans_NvBQzQNjv4Bq0xCxaHs0uU-ytAiMd-7XpGcvlwE7VKNo06j5r2t05AQ.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Marlborough", - "guid": "8a6067c8-0eca-3b53-8b7f-7d89f40c5d02", - "categories": [ - { - "_": "structure:racing", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/racing-tips", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T14:28:18.000Z" - }, - { - "creator": "Samuel Lovett", - "title": "WHO urges Hamas to provide \u2018proof of life\u2019 for hostages", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/who-urges-hamas-to-provide-proof-of-life-for-hostages/", - "pubDate": "Thu, 26 Oct 2023 12:52:42 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/26/TELEMMGLPICT000354458232_16983215109910_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Samuel Lovett", - "guid": "05aacb24-e565-3513-b4a9-c5084032ecda", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hamas", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestinian-territories", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T12:52:42.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Ukraine-Russia war: Russian generals 'sacrificing own men' in eastern assault on Avdiivka", - "link": "https://www.telegraph.co.uk/world-news/2023/10/26/ukraine-russia-war-live-avdiivka-putin-zelensky-latest/", - "pubDate": "Thu, 26 Oct 2023 10:17:48 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/26/TELEMMGLPICT000354432471_16983022780070_trans_NvBQzQNjv4BqX9BUfzDCvOjQOugpI-mZsIX55UGE1-QmdhXTcMmlCx4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Maighna Nanu", - "guid": "99edc146-65c7-3d00-84cd-df6766b393f2", - "categories": [ - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T10:17:48.000Z" - }, - { - "creator": "Lia Leendertz", - "title": "November gardening checklist: what to plant and tidy in your garden this month", - "link": "https://www.telegraph.co.uk/gardening/how-to-grow/gardening-november-things-do-what-plant-garden-month-2021/", - "pubDate": "Thu, 26 Oct 2023 10:05:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/gardening/2021/01/14/TELEMMGLPICT000248155804_trans_NvBQzQNjv4BqkqyH5s0gOgKHebXF_9ggGGQnZJIETfWB_fUbKb77n0w.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lia Leendertz", - "guid": "e73dcda0-2139-3f29-9544-a935f520667f", - "categories": [ - { - "_": "topics:things/animals", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/nature", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/allotments", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/flowers", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/wildflowers", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening/how-to-grow", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:gardening", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/wildlife", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T10:05:19.000Z" - }, - { - "creator": "Thomas W Hodgkinson", - "title": "Love scribbling in notebooks? You might be a genius", - "link": "https://www.telegraph.co.uk/books/what-to-read/notebook-roland-allen-review/", - "pubDate": "Thu, 26 Oct 2023 09:50:11 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/books/2023/10/25/TELEMMGLPICT000354212466_16982387659310_trans_NvBQzQNjv4Bqmf2BsMXC7pU7Tl6blboAOlOZgXky5jWZAzYy_iULiGo.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Thomas W Hodgkinson", - "guid": "60512409-7b71-3a3f-9f3a-fe21ea01c675", - "categories": [ - { - "_": "topics:things/history", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/history-books", - "$": { - "domain": "" - } - }, - { - "_": "structure:books", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T09:50:11.000Z" - }, - { - "creator": "Emma Gatten", - "title": "Remembrance Poppy gets plastic-free makeover", - "link": "https://www.telegraph.co.uk/news/2023/10/26/remembrance-poppy-eco-friendly-revamp-paper-stick-on/", - "pubDate": "Thu, 26 Oct 2023 09:30:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/26/TELEMMGLPICT000354311686_16983111113170_trans_NvBQzQNjv4BqnXAGUbMUzAspFDYJhbQykoSTR_Gqbh7-uYj7leHoqKQ.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Emma Gatten", - "guid": "46b2f15a-3a3e-32a3-b0d5-1374307a1ead", - "categories": [ - { - "_": "topics:events/remembrance-sunday", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/poppy-appeal", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T09:30:17.000Z" - }, - { - "creator": "Tedros Adhanom Ghebreyesus", - "title": "Climate change is one of our biggest health threats \u2013 humanity faces a staggering toll unless we act", - "link": "https://www.telegraph.co.uk/global-health/climate-and-people/climate-change-is-the-biggest-health-threat-of-all/", - "pubDate": "Thu, 26 Oct 2023 09:30:13 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/26/TELEMMGLPICT000344203676_16983115329860_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tedros Adhanom Ghebreyesus", - "guid": "fe3a0ead-0638-3438-bc29-42fd4f460071", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/climate-change", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/united-nations", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/cop28", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/world-health-organisation", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-warming", - "$": { - "domain": "" - } - }, - { - "_": "structure:climate-and-people", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:opinion", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:comment", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T09:30:13.000Z" - }, - { - "creator": "Lynn Barber", - "title": "Does Richard Burton\u2019s secret shame explain his wild life with Elizabeth Taylor?", - "link": "https://www.telegraph.co.uk/books/what-to-read/erotic-vagrancy-review-roger-lewis-taylor-burton/", - "pubDate": "Thu, 26 Oct 2023 09:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/books/2023/10/25/TELEMMGLPICT000085456793_16982369759730_trans_NvBQzQNjv4BqHHOzzpWNpXmNHoYXoGV_nbKbVLcqFQBFojLAMvjI5Gw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Lynn Barber", - "guid": "a743750e-fb85-3c9a-9fa3-4a71862e16d2", - "categories": [ - { - "_": "topics:things/screen-secrets", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/biographies", - "$": { - "domain": "" - } - }, - { - "_": "structure:books", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "structure:film/film-features", - "$": { - "domain": "" - } - }, - { - "_": "structure:film/film-top-stories", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T09:00:00.000Z" - }, - { - "creator": "Craig Simpson", - "title": "BBC Radio 4 loses hundreds of thousands of listeners", - "link": "https://www.telegraph.co.uk/news/2023/10/26/bbc-radio-4-loses-thousands-listeners-slump-today-programme/", - "pubDate": "Thu, 26 Oct 2023 07:27:21 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/26/TELEMMGLPICT000350168915_16983039324420_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Craig Simpson", - "guid": "060ffbe9-4591-3a2f-898d-94d5839cde49", - "categories": [ - { - "_": "topics:organisations/bbc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/radio-4", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/today-programme", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T07:27:21.000Z" - }, - { - "creator": "Molly McElwee", - "title": "WTA Finals 2023: When is it, where is it taking place and who is playing?", - "link": "https://www.telegraph.co.uk/tennis/2023/10/19/wta-finals-2023-when-is-it-how-to-watch-prize-money-players/", - "pubDate": "Thu, 26 Oct 2023 05:49:28 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tennis/2023/10/19/TELEMMGLPICT000353653902_16977276847390_trans_NvBQzQNjv4BqN7kF8Fb6ID_G1m99xXXMy0R8YSybYNWDTYrGStsI8ko.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Molly McElwee", - "guid": "153c2768-6457-3317-bb21-69b09cb9d127", - "categories": [ - { - "_": "topics:people/novak-djokovic", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/carlos-alcaraz", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/us-open-tennis", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/andy-murray", - "$": { - "domain": "" - } - }, - { - "_": "structure:tennis", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T05:49:28.000Z" - }, - { - "creator": "Tony Diver ", - "title": "Maine mass shooting: At least 16 dead with gunman on the loose", - "link": "https://www.telegraph.co.uk/us/news/2023/10/26/mass-shootings-maine-multiple-dead-injured/", - "pubDate": "Thu, 26 Oct 2023 04:54:29 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/26/TELEMMGLPICT000354419386_16982867757190_trans_NvBQzQNjv4BqSN7aKfZtGRKgUpZRK8xiCnuqFFkW70PKKitnWUGuSbY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tony Diver ", - "guid": "2dfc6a7e-afed-3cf1-9071-b3b248ea0f71", - "categories": [ - { - "_": "topics:things/guns-in-the-usa", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/maine", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-26T04:54:29.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "Hundreds rally outside Scotland Yard as police accused of being 'invisible' at hate crime protest", - "link": "https://www.telegraph.co.uk/news/2023/10/25/anger-protests-israel-hamas-war-london-scotland-yard/", - "pubDate": "Wed, 25 Oct 2023 22:45:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354366486_16982724081760_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "guid": "35b76521-e22d-3ac4-b2ef-82dd8f7208ba", - "categories": [ - { - "_": "topics:things/protests", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/metropolitan-police-service", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/london", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T22:45:59.000Z" - }, - { - "creator": "Jason Burt", - "title": "Newcastle suffer reality check as Borussia Dortmund hold on for win in Champions League", - "link": "https://www.telegraph.co.uk/football/2023/10/25/newcastle-vs-dortmund-champions-league-live-score-updates/", - "pubDate": "Wed, 25 Oct 2023 22:07:15 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/25/TELEMMGLPICT000354398908_16982714572780_trans_NvBQzQNjv4BquxxajMMmGLiD6bNfEZ-ZIWu4Jimrkub6bXhq2qPreFU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jason Burt", - "guid": "c3bf6a86-3fed-3876-89f0-81e32ce59959", - "categories": [ - { - "_": "topics:organisations/newcastle-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/eddie-howe", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/uefa", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/borussia-dortmund", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T22:07:15.000Z" - }, - { - "creator": "Daniel Zeqiri", - "title": "Celtic and Atletico Madrid produce entertaining draw after home fans wave Palestine flags", - "link": "https://www.telegraph.co.uk/football/2023/10/25/celtic-vs-atletico-madrid-champions-league-live-score/", - "pubDate": "Wed, 25 Oct 2023 21:55:36 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/25/TELEMMGLPICT000354378043_16982701205880_trans_NvBQzQNjv4Bq-ayPyDIFkRmcmHVmPD-v21x4rCqpdUIWTeh-etGfXsA.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Daniel Zeqiri", - "guid": "7cfabd4e-706d-31fe-a067-00c1fa773fbc", - "categories": [ - { - "_": "topics:organisations/celtic-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/atletico-madrid", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T21:55:36.000Z" - }, - { - "creator": "James Ducker", - "title": "Man City hand lesson in ruthless efficiency to Young Boys before focus switches to Man Utd", - "link": "https://www.telegraph.co.uk/football/2023/10/25/manchester-city-beat-young-boys-3-1-champions-league/", - "pubDate": "Wed, 25 Oct 2023 21:11:52 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/25/TELEMMGLPICT000354395270_16982680630250_trans_NvBQzQNjv4BqymlFxGHe8i_ijqtqoew5HLwgSP1AC-3mvL6X6qUbCes.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "James Ducker", - "guid": "e255e748-10fa-3910-ab69-46502c37a7df", - "categories": [ - { - "_": "topics:organisations/manchester-city-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T21:11:52.000Z" - }, - { - "creator": "Max Stephens", - "title": "Protect innocent Gaza civilians, Biden tells Israel", - "link": "https://www.telegraph.co.uk/world-news/2023/10/25/israel-gaza-latest-news-updates-hamas-palestine-day-19-live/", - "pubDate": "Wed, 25 Oct 2023 21:00:18 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/25/TELEMMGLPICT000354364693_16982669429780_trans_NvBQzQNjv4BqDhV2K8uQsCbKQWf5axWl7oBj75DBKCPNxMKpPUzduMI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Max Stephens", - "guid": "822985bb-a769-3fca-9b62-936d580b9d75", - "categories": [ - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hamas", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T21:00:18.000Z" - }, - { - "creator": "Telegraph Video", - "title": "Watch: Police struck with bicycle while trying to make arrest", - "link": "https://www.telegraph.co.uk/news/2023/10/25/police-birmingham-bike-police-hit-arrest/", - "pubDate": "Wed, 25 Oct 2023 20:10:41 GMT", - "dc:creator": "Telegraph Video", - "guid": "964453f2-8d4a-313c-bc65-a522aebbff8f", - "categories": [ - { - "_": "topics:organisations/west-midlands-police", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/birmingham", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "source:wirecopy", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T20:10:41.000Z" - }, - { - "creator": "Szu Ping Chan", - "title": "World must 'buckle up' for higher interest rates, warns IMF boss", - "link": "https://www.telegraph.co.uk/business/2023/10/25/ftse-100-markets-news-latest-china-stocks-asos-lloyds/", - "pubDate": "Wed, 25 Oct 2023 18:27:49 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/10/25/TELEMMGLPICT000353301014_16982259531410_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Szu Ping Chan", - "guid": "52c7c7db-a686-3880-880b-5993c52db7d3", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T18:27:49.000Z" - }, - { - "creator": "Daniel Martin", - "title": "Sunak at risk of more by-election misery as Peter Bone suspended for six weeks", - "link": "https://www.telegraph.co.uk/politics/2023/10/25/rishi-sunak-latest-news-year-anniversary-pm-hands-jenrick/", - "pubDate": "Wed, 25 Oct 2023 18:06:37 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/25/TELEMMGLPICT000354310348_16982555906460_trans_NvBQzQNjv4BqD3d2dmOlWYuQkR76XZjLQKOylOV7i1cNNz18XOj47vE.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Daniel Martin", - "guid": "c0dfb3f1-8f0c-390a-91db-6f0eaaed4645", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T18:06:37.000Z" - }, - { - "creator": "Will Bolton", - "title": "Police officer unmasked as \u2018UK\u2019s most prolific online paedophile\u2019", - "link": "https://www.telegraph.co.uk/news/2023/10/25/police-officer-lewis-edwards-paedophile-life-sentence/", - "pubDate": "Wed, 25 Oct 2023 17:50:54 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354324985_16982553644020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Will Bolton", - "guid": "843d0306-9df6-3d00-a738-31e5c1c19177", - "categories": [ - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/sexual-assault", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/internet", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T17:50:54.000Z" - }, - { - "creator": "Charles Richardson", - "title": "Marcus Smith and Owen Farrell start for England as Borthwick makes eight changes for Argentina clash", - "link": "https://www.telegraph.co.uk/rugby-union/2023/10/25/england-team-announcement-argentina-rugby-world-cup-live/", - "pubDate": "Wed, 25 Oct 2023 17:39:33 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/25/TELEMMGLPICT000354328054_16982373495830_trans_NvBQzQNjv4Bqwq7djBgxVFYKr3upoHVESHMWfKSb9e2Ss0Azj0L1JX4.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Charles Richardson", - "guid": "3cbd2d26-8659-3788-9bc7-1730a1ee779a", - "categories": [ - { - "_": "topics:organisations/england-rugby-union-team", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/rwc-france-2023", - "$": { - "domain": "" - } - }, - { - "_": "structure:rugby-union", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T17:39:33.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Wednesday evening news briefing: Starmer accused of bringing Islamic centre into \u2018disrepute\u2019", - "link": "https://www.telegraph.co.uk/news/2023/10/25/wednesday-evening-news-briefing-starmer-accused-disrepute/", - "pubDate": "Wed, 25 Oct 2023 16:40:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "guid": "3711a78b-a55f-3675-b6a0-5a950b7739ee", - "categories": [ - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/qatar", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T16:40:02.000Z" - }, - { - "creator": "Will Bolton", - "title": "Yousef Makki was unlawfully killed when stabbed in heart by friend, new inquest finds", - "link": "https://www.telegraph.co.uk/news/2023/10/25/yousef-makki-17-unlawfully-killed-coroner-concludes/", - "pubDate": "Wed, 25 Oct 2023 16:27:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354310492_16982329847320_trans_NvBQzQNjv4Bqk4bAwqv5afUjcOnA6CDEvKRG59k-tizdcoEWRmJ8o-E.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Will Bolton", - "guid": "7bc6622b-7d10-38e1-ba6d-e3f0c6306f44", - "categories": [ - { - "_": "topics:in-the-news/breaking-news", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/greater-manchester", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T16:27:46.000Z" - }, - { - "creator": "Tim Robey", - "title": "Five Nights at Freddy\u2019s, review: video-game spin-off that promises chills but delivers yawns", - "link": "https://www.telegraph.co.uk/films/0/five-nights-at-freddys-review/", - "pubDate": "Wed, 25 Oct 2023 14:37:12 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/films/2023/10/25/TELEMMGLPICT000353328603_16982348138080_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tim Robey", - "guid": "632c156a-ffa3-338d-b8d1-6eebaad9daae", - "categories": [ - { - "_": "topics:things/horror-films", - "$": { - "domain": "" - } - }, - { - "_": "structure:film", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T14:37:12.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Russia deploys homegrown drones", - "link": "https://www.telegraph.co.uk/world-news/2023/10/25/russia-deploys-homegrown-drones/", - "pubDate": "Wed, 25 Oct 2023 14:27:23 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/25/TELEMMGLPICT000353443661_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "guid": "1fc1ad1c-df47-3b5f-be39-50a5574bf3da", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T14:27:23.000Z" - }, - { - "creator": "Marianka Swain", - "title": "London theatre: the best musicals and plays to book now", - "link": "https://www.telegraph.co.uk/theatre/what-to-see/best-theatre-shows-plays-book-tickets-london-uk-performances/", - "pubDate": "Wed, 25 Oct 2023 14:17:02 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/theatre/2023/05/14/TELEMMGLPICT000335580359_trans_NvBQzQNjv4BqRRSmT6cvkmeECxVzj5L_rITPD5foJ9o3wuqP2tL5Yek.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Marianka Swain", - "guid": "811a3c58-bbba-3a4d-abd2-33115941e716", - "categories": [ - { - "_": "topics:places/west-end", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/national-theatre", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/almeida-theatre", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/old-vic", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/donmar-warehouse", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/abba", - "$": { - "domain": "" - } - }, - { - "_": "structure:dance", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:theatre", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T14:17:02.000Z" - }, - { - "creator": "Andrea Hamblin", - "title": "UK weather: Travel chaos as dense fog reduces visibility on roads to less than 100m", - "link": "https://www.telegraph.co.uk/news/2023/10/25/uk-weather-latest-heavy-rain-flood-warnings/", - "pubDate": "Wed, 25 Oct 2023 14:16:10 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354331277_16982430762770_trans_NvBQzQNjv4BqoVHpc64Dw_9TYL9Y5RROLVfJF0EM4dK0APHdPHIua_0.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Andrea Hamblin", - "guid": "0db507e2-64a4-36de-8870-20ec039c2b16", - "categories": [ - { - "_": "topics:things/uk-weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/flooding", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/flash-flood", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T14:16:10.000Z" - }, - { - "creator": "Maighna Nanu", - "title": "Russian drones 'explode near Ukrainian nuclear plant'", - "link": "https://www.telegraph.co.uk/world-news/2023/10/25/ukraine-russia-war-live-avdiivka-putin-zelensky-latest/", - "pubDate": "Wed, 25 Oct 2023 14:01:45 GMT", - "dc:creator": "Maighna Nanu", - "guid": "17908fe4-7d54-360b-b119-cd70791d4cc1", - "categories": [ - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T14:01:45.000Z" - }, - { - "creator": "Alex Barton", - "title": "Metropolitan Police's stop and search of British sprinter amounted to gross misconducted, panel rules", - "link": "https://www.telegraph.co.uk/news/2023/10/25/met-police-jonathan-clapham-sam-franks-gross-misconduct/", - "pubDate": "Wed, 25 Oct 2023 12:08:35 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354328593_16982355979620_trans_NvBQzQNjv4BqYrOuIV-teFJsey141IDT4VFx7oZS3G0ps1JcMwBJxFI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alex Barton", - "guid": "4f7be97d-2232-3b60-9476-c6ac703248d0", - "categories": [ - { - "_": "topics:in-the-news/breaking-news", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/metropolitan-police-service", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T12:08:35.000Z" - }, - { - "creator": "Sarah Green", - "title": "Gender inequality fuelling \u2018Great Resignation\u2019 of women health workers across the world", - "link": "https://www.telegraph.co.uk/global-health/women-and-girls/gender-inequality-great-resignation-of-women-health-workers/", - "pubDate": "Wed, 25 Oct 2023 11:07:07 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/25/TELEMMGLPICT000342524465_16982303748120_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sarah Green", - "guid": "42954076-c8df-323f-b70c-cf05ef6db706", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/Gender-equality", - "$": { - "domain": "" - } - }, - { - "_": "structure:women-and-girls", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T11:07:07.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best accommodation in St Moritz", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/st-moritz/best-accommodation-st-moritz/", - "pubDate": "Wed, 25 Oct 2023 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/st moritz-credit-Paul Thuysbaert (12).jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "guid": "0baeba61-d609-3491-a8f2-a1274a8888b7", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/st-moritz", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T11:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The perfect ski holiday in St Moritz", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/st-moritz/st-moritz-ski-holiday-guide/", - "pubDate": "Wed, 25 Oct 2023 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/st-moritz-lead.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "guid": "b7dfff1c-52dc-3a30-ab30-2dcda8b7f78a", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/st-moritz", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/switzerland", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T11:00:00.000Z" - }, - { - "creator": "Annabel Fenwick-Elliott", - "title": "The best epilators of 2023 for hair removal, including Philips Lumea", - "link": "https://www.telegraph.co.uk/recommended/tech/best-epilator/", - "pubDate": "Wed, 25 Oct 2023 10:47:16 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/10/24/TELEMMGLPICT000354228437_16981581426990_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Annabel Fenwick-Elliott", - "guid": "d64f0b4e-a3ae-3a75-999b-a9b368825a80", - "categories": [ - { - "_": "topics:things/diy-beauty", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/body", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/skincare", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/hair", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/technology", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty", - "$": { - "domain": "" - } - }, - { - "_": "structure:beauty/beauty-products", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T10:47:16.000Z" - }, - { - "creator": "Dominic Penna", - "title": "Starmer accused of bringing Islamic centre into \u2018disrepute\u2019 after visit", - "link": "https://www.telegraph.co.uk/politics/2023/10/24/keir-starmer-labour-meeting-muslims-wales-misrepresented/", - "pubDate": "Wed, 25 Oct 2023 10:21:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/25/TELEMMGLPICT000354304763_16982214431120_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Penna", - "guid": "ba9b672e-131c-3318-b3c8-c566289d9b17", - "categories": [ - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/wales", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T10:21:57.000Z" - }, - { - "creator": "Calum Weill", - "title": "Telegraph Fantasy Football: Team of the Week Game Week 9", - "link": "https://www.telegraph.co.uk/fantasy-sports/fantasy-football/telegraph-fantasy-football-team-of-the-week/", - "pubDate": "Wed, 25 Oct 2023 08:30:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Fantasy-football/TOTW-GW9-23-24.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Calum Weill", - "guid": "7c5b26a7-dd3f-35c7-8766-f307c240efc2", - "categories": [ - { - "_": "commercial:fantasy-sports/fantasy-football", - "$": { - "domain": "" - } - }, - { - "_": "commercial:apple-news-include", - "$": { - "domain": "" - } - }, - { - "_": "commercial:fantasy-sports/fantasy-football/fantasy-football-selection-tips", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T08:30:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The perfect ski holiday in Verbier", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/verbier/verbier-holiday-guide/", - "pubDate": "Wed, 25 Oct 2023 07:30:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/ski-verbier-town.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "guid": "4219fa59-a013-3ed8-87ac-3af2664d70f3", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/verbier", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/switzerland", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T07:30:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best hotels and ski chalets in Verbier", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/verbier/verbier-hotels-and-chalets/", - "pubDate": "Wed, 25 Oct 2023 07:30:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/galleries/travel/snowandski/picture-galleries/Luxury-chalet-of-the-week-Chouqui-Verbier/outside-better_3518241a.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "guid": "aa3aac47-5971-3d77-955c-90c89ecf67a6", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/verbier", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/switzerland", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T07:30:00.000Z" - }, - { - "creator": "Jason Burt", - "title": "Redemption for Harry Maguire and Andre Onana as Manchester United grasp Champions League lifeline", - "link": "https://www.telegraph.co.uk/football/2023/10/24/man-utd-vs-copenhagen-champions-league-live-score-charlton/", - "pubDate": "Tue, 24 Oct 2023 23:09:45 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/24/TELEMMGLPICT000354273383_16981816211020_trans_NvBQzQNjv4Bq0wFa1ufc1Xj_Gp0yh9QKSJoHcEemjJAzZ07ELqgxC_U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jason Burt", - "guid": "9013c9f1-8daf-3462-abcc-3c2a78deeee4", - "categories": [ - { - "_": "topics:organisations/manchester-united-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/sir-bobby-charlton", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/fc-copenhagen", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T23:09:45.000Z" - }, - { - "creator": "Sam Dean", - "title": "Brilliance of Gabriel Jesus proves decisive as Arsenal hold off Sevilla fightback in Champions League", - "link": "https://www.telegraph.co.uk/football/2023/10/24/sevilla-vs-arsenal-champions-league-live-score-updates/", - "pubDate": "Tue, 24 Oct 2023 22:47:59 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/24/TELEMMGLPICT000354268757_16981814416760_trans_NvBQzQNjv4BqtfWqpLeLodzBHWFhE2XSW0WYCTEH1R7unsi18-1FPzw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Sam Dean", - "guid": "54e27d94-014f-3472-b11b-042767aeec96", - "categories": [ - { - "_": "topics:organisations/sevilla-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/arsenal-fc", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/champions-league", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T22:47:59.000Z" - }, - { - "creator": "Alex Barton", - "title": "IDF 'won't forget' Hamas terror despite hostage releases", - "link": "https://www.telegraph.co.uk/world-news/2023/10/24/israel-gaza-latest-news-updates-hamas-palestine-day-18-live/", - "pubDate": "Tue, 24 Oct 2023 21:56:07 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/24/TELEMMGLPICT000354209830_16981802386480_trans_NvBQzQNjv4BqfomibfiECf3r_FyzyHF01OFG2jSR6q_BFADOdRomMN8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Alex Barton", - "guid": "86853a80-23e0-3c55-a783-9d6e9c1f96df", - "categories": [ - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hamas", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/benjamin-netanyahu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T21:56:07.000Z" - }, - { - "creator": "Adam Mawardi", - "title": "Remote employees don\u2019t \u2018work as hard\u2019, says billionaire private equity baron", - "link": "https://www.telegraph.co.uk/business/2023/10/24/ftse-100-markets-news-latest-jobs-interest-rates-uk-economy/", - "pubDate": "Tue, 24 Oct 2023 19:11:03 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/business/2023/10/24/TELEMMGLPICT000211874466_16981624527320_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Adam Mawardi", - "guid": "a6472c16-e913-35c5-bba4-2d71beca5af1", - "categories": [ - { - "_": "topics:things/uk-economy", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/ftse-100", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pound", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/dow-jones-industrial-average", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/cost-of-living", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/global-economy", - "$": { - "domain": "" - } - }, - { - "_": "structure:business", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T19:11:03.000Z" - }, - { - "creator": "Jamie Bullen", - "title": "Sailor dies and four people missing after British cargo ship sinks in North Sea", - "link": "https://www.telegraph.co.uk/news/2023/10/24/british-cargo-ship-verity-sinks-north-sea-germany/", - "pubDate": "Tue, 24 Oct 2023 17:48:29 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/24/TELEMMGLPICT000354201837_16981359004100_trans_NvBQzQNjv4BqyCn3iCgjHkWrx6suGFXdfTk-xY-yNtVoiqVN0Pjn5-M.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jamie Bullen", - "guid": "780f7f56-2328-3fa7-9e88-a0e41eee5bf1", - "categories": [ - { - "_": "topics:places/north-sea", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/germany", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T17:48:29.000Z" - }, - { - "creator": "Joshua Hughes", - "title": "Tuesday evening news briefing: Teenagers arrested after trying to burn Union flags", - "link": "https://www.telegraph.co.uk/news/2023/10/24/tuesday-evening-news-briefing-teenagers-arrested-burn-flag/", - "pubDate": "Tue, 24 Oct 2023 16:39:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Joshua Hughes", - "guid": "76d2ce8c-c9a0-3a8e-80db-8c2078610a0c", - "categories": [ - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/eric-pickles", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T16:39:40.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Volodymyr Zelensky's vision for Ukraine in the EU", - "link": "https://www.telegraph.co.uk/world-news/2023/10/24/zelensky-eu-application-hungary-corruption-oligarchs/", - "pubDate": "Tue, 24 Oct 2023 16:14:04 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/24/TELEMMGLPICT000354207089_16981567374560_trans_NvBQzQNjv4Bqbp882ZYJlBFxnyQgxUcRsxrNyLJG0HyXpVXN1H1KVWw.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "guid": "19ef6c22-dc7e-3794-925e-dffb2ede9cc9", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T16:14:04.000Z" - }, - { - "creator": "Craig Simpson", - "title": "West End producer and Everton chairman Bill Kenwright dies aged 78", - "link": "https://www.telegraph.co.uk/news/2023/10/24/bill-kenwright-dead-everton-chairman-theatre-film-producer/", - "pubDate": "Tue, 24 Oct 2023 16:04:40 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/24/TELEMMGLPICT000354240765_16981681821270_trans_NvBQzQNjv4Bqm6YLxf-F7YOX5t7y89wp0yzeOtVjUsHsT-3KAf_9ItY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Craig Simpson", - "guid": "f0f00591-482a-33bc-b5d2-df2ea0716fe3", - "categories": [ - { - "_": "topics:places/west-end", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/everton-fc", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T16:04:40.000Z" - }, - { - "creator": "Rozina Sabur", - "title": "All the Republican and Democrat candidates in the 2024 US election", - "link": "https://www.telegraph.co.uk/world-news/0/us-republican-democrat-candidates-running-2024-election/", - "pubDate": "Tue, 24 Oct 2023 15:56:46 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/02/02/TELEMMGLPICT000324052437_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Rozina Sabur", - "guid": "2e31d700-bc5d-3ce1-ae8c-afd28bb2375e", - "categories": [ - { - "_": "topics:places/usa", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/republicans", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/us-politics", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/donald-trump", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/nikki-haley", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/ron-desantis", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T15:56:46.000Z" - }, - { - "creator": "Jack Maidment", - "title": "Politics latest news: Rishi Sunak backed to lead Tories to 'Lazarus' election victory", - "link": "https://www.telegraph.co.uk/politics/2023/10/24/rishi-sunak-latest-tories-atkins-tax-rises-autumn-statement/", - "pubDate": "Tue, 24 Oct 2023 15:00:19 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/24/TELEMMGLPICT000354156794_16981491394130_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Jack Maidment", - "guid": "5c7c8035-19a2-33ee-8256-548b58d96789", - "categories": [ - { - "_": "topics:people/rishi-sunak", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/keir-starmer", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/conservative-party", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/labour-party", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T15:00:19.000Z" - }, - { - "creator": "Michael Murphy", - "title": "Russian fighter jets intercept US bombers", - "link": "https://www.telegraph.co.uk/world-news/2023/10/24/russia-destroys-ukraine-boats-crimea-black-sea-sevastopol/", - "pubDate": "Tue, 24 Oct 2023 14:23:17 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/24/TELEMMGLPICT000354109414_16981287353670_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Michael Murphy", - "guid": "01c92f93-e2e3-3ad1-89ff-ab1e977b46a4", - "categories": [ - { - "_": "topics:in-the-news/ukraine-crisis", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/russia", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/volodymyr-zelenskyy", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T14:23:17.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "Pictured: Ancient rock carvings of human faces revealed in Amazon after record drought", - "link": "https://www.telegraph.co.uk/world-news/2023/10/24/ancient-rock-carvings-on-amazon-river-after-drought/", - "pubDate": "Tue, 24 Oct 2023 12:21:45 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/24/TELEMMGLPICT000354184241_16981462794660_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "guid": "bb70b272-ed7b-3c62-8bbd-db3c10565b62", - "categories": [ - { - "_": "topics:things/ancient-history", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/amazon-river", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/the-amazon", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/brazil", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/climate-change", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T12:21:45.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The best earplugs for sleeping, 2023: here's how to block out noisy neighbours and snoring spouses", - "link": "https://www.telegraph.co.uk/recommended/home/best-earplugs-restful-nights-sleep/", - "pubDate": "Tue, 24 Oct 2023 11:13:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/07/TELEMMGLPICT000328060700_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "guid": "47e08022-c53b-3166-a6cc-d5653944d356", - "categories": [ - { - "_": "topics:things/sleep", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health-hacks", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/health", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleep-hygiene", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/world-sleep-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/sleeping-disorders", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended/home", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:special-exclusion", - "$": { - "domain": "" - } - }, - { - "_": "structure:wellbeing/health", - "$": { - "domain": "" - } - }, - { - "_": "structure:health-fitness", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T11:13:43.000Z" - }, - { - "creator": "Richard Madden", - "title": "The best rainy day activities for half term in the UK", - "link": "https://www.telegraph.co.uk/travel/family-holidays/best-february-half-term-children-activities-rainy-day-uk-2022/", - "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/travel/2022/02/10/TELEMMGLPICT000285336900_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Richard Madden", - "guid": "ffe74a21-2a0f-31fa-81a7-5f4c669d5cf0", - "categories": [ - { - "_": "topics:places/london", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/snowdonia", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/edinburgh", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/united-kingdom", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/manchester", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/school-holidays", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/family-holidays", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T11:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The perfect ski holiday in M\u00e9ribel", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/meribel/meribel-ski-holiday-guide/", - "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/meribel-piste-Sylvain Aymoz28032373.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "guid": "a17f11cd-18cb-37f9-a3d6-59b063324afd", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T11:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best hotels and ski chalets in M\u00e9ribel", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/meribel/meribel-hotels-and-chalets/", - "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/romantic-ski-hotels-Refuge-de-la-Traye-(18).jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "guid": "ff28138c-b378-33fd-97a0-775f73e3b780", - "categories": [ - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T11:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The perfect ski holiday in Courchevel", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/courchevel/courchevel-ski-holiday-guide/", - "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/courchevel-overview.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "guid": "35d6cadb-ae35-35ae-a90a-448aa2cd97a8", - "categories": [ - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/courchevel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/france", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T11:00:00.000Z" - }, - { - "creator": "Telegraph Ski & Snowboard", - "title": "The best accommodation in Courchevel", - "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/courchevel/best-accommodation-courchevel/", - "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/hotel-wishlist/l-apogee-courchevel-exterior.jpg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph Ski & Snowboard", - "guid": "a6d99796-a4e2-319a-a97d-f04af43642ee", - "categories": [ - { - "_": "topics:places/courchevel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel", - "$": { - "domain": "" - } - }, - { - "_": "structure:travel/ski/resort-guides", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/france", - "$": { - "domain": "" - } - }, - { - "_": "structure:eg-general", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T11:00:00.000Z" - }, - { - "creator": "Harriet Barber", - "title": "Bird flu detected in Antarctica for first time as fears grow of mass wipe-outs", - "link": "https://www.telegraph.co.uk/global-health/science-and-disease/bird-flu-antarctica-infection-influenza-latest/", - "pubDate": "Tue, 24 Oct 2023 09:23:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/24/TELEMMGLPICT000176501850_16981359157190_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Harriet Barber", - "guid": "719bebe6-0682-38ff-8f67-49cb43968738", - "categories": [ - { - "_": "topics:things/bird-flu", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/antarctica", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:science-and-disease", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T09:23:34.000Z" - }, - { - "creator": "Tony Diver ", - "title": "Biden accidentally calls for Israel-Hamas ceasefire", - "link": "https://www.telegraph.co.uk/us/news/2023/10/24/israel-hamas-war-gaza-joe-biden-ceasefire-hostages/", - "pubDate": "Tue, 24 Oct 2023 09:11:28 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/24/TELEMMGLPICT000354172597_16981119454400_trans_NvBQzQNjv4BqW7F28K1sji8Xsyy3RH3LRtZXMMRCRxm4CNdRD5oMwKg.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tony Diver ", - "guid": "85129a9a-bf13-38f7-aafc-557f880caf9f", - "categories": [ - { - "_": "topics:people/joe-biden", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hamas", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T09:11:28.000Z" - }, - { - "creator": "Simon Lewis", - "title": "The 25 best advent calendars of 2023, from chocolate to Lego", - "link": "https://www.telegraph.co.uk/christmas/best-advent-calendars/", - "pubDate": "Tue, 24 Oct 2023 08:34:58 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/23/TELEMMGLPICT000354149987_16980750699600_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Simon Lewis", - "guid": "453db5dc-f90d-34aa-8741-4f020343be21", - "categories": [ - { - "_": "topics:events/christmas", - "$": { - "domain": "" - } - }, - { - "_": "topics:events/christmas-day", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/christmas-gift-guides", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/how-to-have-perfect-christmas", - "$": { - "domain": "" - } - }, - { - "_": "structure:recommended", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - }, - { - "_": "commercial:telegraph-reviews", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T08:34:58.000Z" - }, - { - "creator": "Poppie Platt", - "title": "Strictly Come Dancing 2023 line-up: all the contestants and their professional pairings", - "link": "https://www.telegraph.co.uk/tv/0/strictly-come-dancing-2023-line-up-contestants/", - "pubDate": "Tue, 24 Oct 2023 08:11:31 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/tv/2023/09/18/TELEMMGLPICT000349591801_16950581844180_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Poppie Platt", - "guid": "27cdf54e-813f-3e5d-8f47-80c2799a7ccf", - "categories": [ - { - "_": "topics:things/strictly-come-dancing", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/bbc", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/tess-daly", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/claudia-winkleman", - "$": { - "domain": "" - } - }, - { - "_": "structure:television", - "$": { - "domain": "" - } - }, - { - "_": "structure:television/television-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/entertainment", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T08:11:31.000Z" - }, - { - "creator": "Thom Gibbs", - "title": "Zara Musker: I was given flak for not being deaf enough \u2013 now I\u2019m Deaf Sport Personality of Year", - "link": "https://www.telegraph.co.uk/football/2023/10/24/zara-musker-england-futsal-team-deaf-sport-personality-year/", - "pubDate": "Tue, 24 Oct 2023 08:00:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/17/TELEMMGLPICT000352792771_16975557914620_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Thom Gibbs", - "guid": "5be86b09-2140-3a02-96ea-1567666e2bac", - "categories": [ - { - "_": "topics:organisations/the-football-association", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/deafness-and-hearing-impairment", - "$": { - "domain": "" - } - }, - { - "_": "structure:sport", - "$": { - "domain": "" - } - }, - { - "_": "structure:football", - "$": { - "domain": "" - } - }, - { - "_": "structure:womens-sport", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T08:00:00.000Z" - }, - { - "creator": "Tony Diver ", - "title": "'Super fog' causes deadly 158-car pile-up in Louisiana", - "link": "https://www.telegraph.co.uk/us/news/2023/10/24/louisiana-highway-interstate-55-fog-car-crash/", - "pubDate": "Tue, 24 Oct 2023 07:09:43 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/24/TELEMMGLPICT000354193086_16981223141780_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tony Diver ", - "guid": "015259bc-3afd-369e-a195-6b5d61333aee", - "categories": [ - { - "_": "topics:places/louisiana", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/road-safety", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/weather", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T07:09:43.000Z" - }, - { - "creator": "Tony Diver ", - "title": "Fears Iran-backed groups are escalating attacks on US forces", - "link": "https://www.telegraph.co.uk/us/news/2023/10/24/israel-hamas-syria-drone-iran-backed-attacks-americans/", - "pubDate": "Tue, 24 Oct 2023 02:36:41 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/24/TELEMMGLPICT000351977180_16981134748310_trans_NvBQzQNjv4Bq3480UNUU8UfSxDSaY1n7MBMSxGIR1rd_-iNIxL4YeIk.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Tony Diver ", - "guid": "99272a9f-2b0e-3164-ab6e-a9b2ee4f8cca", - "categories": [ - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/iran", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/washington-dc", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/syria", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/hamas", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-24T02:36:41.000Z" - }, - { - "creator": "Neil McCormick", - "title": "Britney Spears\u2019s memoir is the most sickening tale in modern pop", - "link": "https://www.telegraph.co.uk/books/non-fiction/review-britney-spears-the-woman-in-me/", - "pubDate": "Mon, 23 Oct 2023 23:01:00 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/books/2023/10/23/TELEMMGLPICT000000470317_16980782572240_trans_NvBQzQNjv4BqQND5f8Baj_ohaXY2gUOFsL6Xj2WECU5tGTp4vDMBGsY.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Neil McCormick", - "guid": "e629fc36-d4f0-3c70-ba25-5d2223444a4a", - "categories": [ - { - "_": "topics:people/britney-spears", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/pop-music", - "$": { - "domain": "" - } - }, - { - "_": "structure:books/non-fiction", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture", - "$": { - "domain": "" - } - }, - { - "_": "structure:culture/culture-editors-choice", - "$": { - "domain": "" - } - }, - { - "_": "structure:music", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/entertainment", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:review", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-23T23:01:00.000Z" - }, - { - "creator": "Our Foreign Staff", - "title": "Off-duty Alaska Airlines pilot charged with attempted murder after trying to disable engines", - "link": "https://www.telegraph.co.uk/us/news/2023/10/23/off-duty-alaska-airlines-pilot-charged-attempted-murder/", - "pubDate": "Mon, 23 Oct 2023 22:59:57 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/25/TELEMMGLPICT000354281287_16982147468200_trans_NvBQzQNjv4Bq41ARBwgMvd1zOb2ypA9Bgcw6-9Wqr-sUXFTDR9QLrrM.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Our Foreign Staff", - "guid": "9785c800-4a36-374c-83ee-c60ae878b38d", - "categories": [ - { - "_": "topics:places/alaska", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/aviation", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/usa", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-23T22:59:57.000Z" - }, - { - "creator": "David Knowles", - "title": "Ukraine: The Latest - Hamas visit Moscow as Putin makes a 'cold-blooded calculation'", - "link": "https://www.telegraph.co.uk/world-news/2023/10/27/hamas-moscow-russia-iran-geopolitics/", - "pubDate": "Fri, 27 Oct 2023 15:15:42 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354299689_16984196691620_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "David Knowles", - "guid": "97600f32-d408-341a-b991-00cce7f81e9f", - "categories": [ - { - "_": "topics:things/ukraine-the-latest-podcast", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/ukraine", - "$": { - "domain": "" - } - }, - { - "_": "topics:people/vladimir-putin", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/russia-ukraine-invasion-live", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/telegraph-podcasts", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/world-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T15:15:42.000Z" - }, - { - "creator": "Dominic Penna", - "title": "Boris Johnson joins GB News as presenter and commentator", - "link": "https://www.telegraph.co.uk/politics/2023/10/27/boris-johnson-joins-gb-news-presenter-commentator/", - "pubDate": "Fri, 27 Oct 2023 14:59:13 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/27/TELEMMGLPICT000354599880_16984176927000_trans_NvBQzQNjv4BqRpEJ8qDUmB4Zrzr5A7vy2h9o7IYJZ5WOAJavXqk41VI.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Dominic Penna", - "guid": "0af5077c-3705-35c2-88c9-e1dbbe1985ba", - "categories": [ - { - "_": "topics:people/boris-johnson", - "$": { - "domain": "" - } - }, - { - "_": "topics:organisations/gb-news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:politics", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T14:59:13.000Z" - }, - { - "creator": "Kevin Watkins", - "title": "The children of Israel and Gaza are crying out for help \u2013 the world should listen", - "link": "https://www.telegraph.co.uk/global-health/terror-and-security/the-children-of-israel-and-gaza-are-crying-are-out-for-help/", - "pubDate": "Fri, 27 Oct 2023 14:53:30 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/27/TELEMMGLPICT000354389661_16984153763590_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Kevin Watkins", - "guid": "ea2057f8-0918-33b7-8481-078c959ae024", - "categories": [ - { - "_": "topics:in-the-news/global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "topics:in-the-news/israel-hamas-war", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/israel", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/gaza", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/palestinian-territories", - "$": { - "domain": "" - } - }, - { - "_": "topics:places/middle-east", - "$": { - "domain": "" - } - }, - { - "_": "structure:global-health-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:terror-and-security", - "$": { - "domain": "" - } - }, - { - "_": "structure:opinion", - "$": { - "domain": "" - } - }, - { - "_": "structure:us-content", - "$": { - "domain": "" - } - }, - { - "_": "storytype:comment", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T14:53:30.000Z" - }, - { - "creator": "Telegraph reporters", - "title": "'Somerset Gimp' found guilty after he told police 'I am not a gimp'", - "link": "https://www.telegraph.co.uk/news/2023/10/27/somerset-gimp-guilty-scaring-female-drivers-trial-bristol/", - "pubDate": "Fri, 27 Oct 2023 13:58:34 GMT", - "enclosure": { - "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/27/TELEMMGLPICT000203854805_16984150298090_trans_NvBQzQNjv4BqY1pDbA9t2TcEbSModODvKXGTJFJS74MYhNY6w3GNbO8.jpeg", - "length": "99", - "type": "image/jpeg" - }, - "dc:creator": "Telegraph reporters", - "guid": "9e363cee-0e0d-3371-bdad-322d331454b1", - "categories": [ - { - "_": "topics:places/somerset", - "$": { - "domain": "" - } - }, - { - "_": "topics:things/crime", - "$": { - "domain": "" - } - }, - { - "_": "structure:news", - "$": { - "domain": "" - } - }, - { - "_": "structure:news/uk-news", - "$": { - "domain": "" - } - }, - { - "_": "storytype:standard", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-27T13:58:34.000Z" - } -] \ No newline at end of file + { + "creator": "Telegraph Sport", + "title": "Aberdeen match halted after HJK Helsinki goalkeeper pelted with snowballs", + "link": "https://www.telegraph.co.uk/football/2023/11/30/watch-hjk-helsinki-goalkeeper-aberdeen-snowballs-europa/", + "pubDate": "Thu, 30 Nov 2023 22:40:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000358453187_17013836813360_trans_NvBQzQNjv4BqD3d2dmOlWYuQkR76XZjLQP4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Sport", + "guid": "0448c43a-ad52-3efc-a8e1-a7af070ea69d", + "categories": [ + { + "_": "topics:organisations/aberdeen-fc", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T22:40:10.000Z" + }, + { + "creator": "Chris Bascombe", + "title": "Jurgen Klopp\u2019s Liverpool 2.0 are already a formidable proposition", + "link": "https://www.telegraph.co.uk/football/2023/11/30/liverpool-vs-lask-live-score-updates-europa-league/", + "pubDate": "Thu, 30 Nov 2023 22:30:03 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000358467891_17013815815700_trans_NvBQzQNjv4BqeK8ehqBZJSTiVTgumtathQRSGxdwZZ3YY7Uv4oTmABQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Bascombe", + "guid": "95c04084-ce43-3e30-88f6-b7c3876a60d7", + "categories": [ + { + "_": "topics:organisations/liverpool-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/europa-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T22:30:03.000Z" + }, + { + "creator": "Victoria Ward", + "title": "Names of \u2018royal racists\u2019 spread across globe as Palace considers legal action", + "link": "https://www.telegraph.co.uk/royal-family/2023/11/30/royal-racism-row-names-palace-legal-endgame-scobie/", + "pubDate": "Thu, 30 Nov 2023 22:15:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/11/30/TELEMMGLPICT000358408035_17013798245500_trans_NvBQzQNjv4Bq3LWUGqiHWvaGajKvH-vRlIXaRtyZZnZHPV1DIv-iJII.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Victoria Ward", + "guid": "66f0e4b5-a379-3971-bd87-58d7f428b2b9", + "categories": [ + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/omid-scobie", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/king-charles-iii", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/duchess-of-sussex", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/princess-of-wales", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/prince-william", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T22:15:02.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Israel-Hamas war: Hamas hands over six more hostages, says IDF", + "link": "https://www.telegraph.co.uk/world-news/2023/11/30/israel-hamas-war-latest-news-ceasefire-extended/", + "pubDate": "Thu, 30 Nov 2023 22:02:20 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/30/TELEMMGLPICT000358465648_17013805119940_trans_NvBQzQNjv4Bqbn2ATzBiARAqd_xwp3eU00LnQDzFnRh1AGiIwiMS-qY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "guid": "78bb1d3d-2ef2-3855-a8ca-3236d31bafb1", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T22:02:20.000Z" + }, + { + "creator": "Graham Hill", + "title": "Aston Villa accuse Legia Warsaw of stoking fan violence", + "link": "https://www.telegraph.co.uk/football/2023/11/30/police-injured-aston-villa-vs-legia-warsaw-fan-clashes/", + "pubDate": "Thu, 30 Nov 2023 21:49:09 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000358451504_17013756412020_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Graham Hill", + "guid": "e8dd63f0-05dd-32bd-be0c-5554de2ab4fc", + "categories": [ + { + "_": "topics:organisations/aston-villa-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/europa-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T21:49:09.000Z" + }, + { + "creator": "Matthew Robinson", + "title": "South-east England sees earliest winter snow in 15 years", + "link": "https://www.telegraph.co.uk/news/2023/11/30/uk-weather-news-latest-snow-ice-live/", + "pubDate": "Thu, 30 Nov 2023 19:16:20 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/30/TELEMMGLPICT000358402316_17013708499740_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Matthew Robinson", + "guid": "f652168b-04ea-334a-b84d-48a574936310", + "categories": [ + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/snow", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T19:16:20.000Z" + }, + { + "creator": "Tim Wigmore", + "title": "England vs West Indies, ODI and T20 tour: Full schedule and fixtures", + "link": "https://www.telegraph.co.uk/cricket/0/england-vs-west-indies-odi-t20-tour-full-schedule-fixtures/", + "pubDate": "Thu, 30 Nov 2023 18:51:58 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/11/30/TELEMMGLPICT000350877074_17013695319730_trans_NvBQzQNjv4BqP11JIz1p9IOWu4bU6XcffIX55UGE1-QmdhXTcMmlCx4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Wigmore", + "guid": "322a4f41-0da2-38af-a077-001f6871c6b0", + "categories": [ + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/west-indies-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T18:51:58.000Z" + }, + { + "creator": "Simon Johnson", + "title": "Former Labour chancellor Alistair Darling dies aged 70", + "link": "https://www.telegraph.co.uk/news/2023/11/30/alistair-darling-dead-former-chancellor-labour-aged-70/", + "pubDate": "Thu, 30 Nov 2023 18:49:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/30/TELEMMGLPICT000001507042_17013484138230_trans_NvBQzQNjv4Bqc-V1DFfeRCNQNlVdhv8OIW3L199Wx6GgMA67qyz0s2M.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Johnson", + "guid": "cc30da28-7063-3428-9985-dd64c424078d", + "categories": [ + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/hm-treasury", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/tony-blair", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/gordon-brown", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/scotland", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T18:49:27.000Z" + }, + { + "creator": "Chris Price", + "title": "Oil price falls after Saudi-led cartel surprises market", + "link": "https://www.telegraph.co.uk/business/2023/11/30/ftse-100-markets-news-latest-unemployment-ons-opec/", + "pubDate": "Thu, 30 Nov 2023 18:17:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/11/30/TELEMMGLPICT000287178643_17013544890760_trans_NvBQzQNjv4BqLoH7NlioJUgvNGxc7kNJh7QhCpsJmCWlSWt_yfzANGk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "guid": "22733ff9-d2ad-3349-8adf-5952f6ab1d43", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T18:17:57.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Thursday evening news briefing: Palace considers legal action after Morgan names \u2018royal racists\u2019", + "link": "https://www.telegraph.co.uk/news/2023/11/30/thursday-evening-news-briefing-palace-royal-racist/", + "pubDate": "Thu, 30 Nov 2023 17:55:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "guid": "e6523606-ff8f-31b6-8194-4e7bf3059b3e", + "categories": [ + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T17:55:44.000Z" + }, + { + "creator": "Verity Bowman", + "title": "Three dead after Hamas gunmen open fire at Jerusalem bus stop", + "link": "https://www.telegraph.co.uk/world-news/2023/11/30/jerusalem-shooting-attack-one-dead-several-injured/", + "pubDate": "Thu, 30 Nov 2023 17:19:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/30/TELEMMGLPICT000358383410_17013295716700_trans_NvBQzQNjv4Bq2GeyommrMNVwqkZdyIaJg8HPBPpSipxqgFv7FS4gYFI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Verity Bowman", + "guid": "a5db08d2-7791-36d4-aab3-a6a322501c6a", + "categories": [ + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/jerusalem", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T17:19:55.000Z" + }, + { + "creator": "Neil Johnston", + "title": "Covid Inquiry: \u2018Protective ring\u2019 around care homes wasn\u2019t \u2018unbroken circle\u2019, admits Matt Hancock", + "link": "https://www.telegraph.co.uk/news/2023/11/30/covid-inquiry-news-latest-matt-hancock-evidence-live/", + "pubDate": "Thu, 30 Nov 2023 17:13:04 GMT", + "dc:creator": "Neil Johnston", + "guid": "ce2a2897-f7b4-3193-8dae-b740c38c7c49", + "categories": [ + { + "_": "topics:in-the-news/covid-inquiry", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/coronavirus", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/matt-hancock", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/care-homes", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/department-of-health", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T17:13:04.000Z" + }, + { + "creator": "Anna Tyzack", + "title": "These women solve Hollywood\u2019s gift dilemmas \u2013 but can they cope with British Christmas conundrums?", + "link": "https://www.telegraph.co.uk/christmas/2023/11/30/christmas-gift-dilemmas-carnaby-vine-jen-cooper-bex-norris/", + "pubDate": "Thu, 30 Nov 2023 17:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/30/TELEMMGLPICT000355972950_17013524567840_trans_NvBQzQNjv4Bqar0_b0Fdh2MXu5WnanCWxLqOUegY8xEXVRKsNnEs-TY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Anna Tyzack", + "guid": "3a775b47-9c51-33ab-8b55-f22d8a1d8241", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/james-corden", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T17:00:00.000Z" + }, + { + "creator": "Dominic Nicholls", + "title": "Ukraine: The Latest - Putin pays tribute to \u2018farsighted statesman\u2019 Henry Kissinger", + "link": "https://www.telegraph.co.uk/world-news/2023/11/30/putin-pays-tribute-to-farsighted-statesman-henry-kissinger/", + "pubDate": "Thu, 30 Nov 2023 16:51:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/30/TELEMMGLPICT000358429051_17013628657670_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Nicholls", + "guid": "da8c4356-9125-3b7c-b17c-d6838e669017", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T16:51:18.000Z" + }, + { + "creator": "Ben Farmer", + "title": "Scientists aim to predict weather\u2019s impact on heart disease patients", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/cop-28-climate-change-summit-dubai-public-health/", + "pubDate": "Thu, 30 Nov 2023 16:49:33 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/30/TELEMMGLPICT000357623239_17013602810060_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Farmer", + "guid": "769c352a-759e-3617-88c4-0a6da7b667e8", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/heart-disease", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pollution", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/heatwave", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/cop28", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:environment", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T16:49:33.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "What\u2019s on TV tonight: Obliterated, My Teacher the Abuser: Fighting for Justice and more", + "link": "https://www.telegraph.co.uk/tv/0/tv-guide-tv-television-tonight/", + "pubDate": "Thu, 30 Nov 2023 16:08:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tv/2023/11/24/TELEMMGLPICT000356664652_17008321302680_trans_NvBQzQNjv4Bq_2WwsQGciJHbwB_EulIANf4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "guid": "06b4bdb8-de13-3e88-8461-2ed233991f17", + "categories": [ + { + "_": "topics:organisations/itv", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/channel-4", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bbc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/sky", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/netflix", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/amazon-prime-video", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture/culture-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:on-demand", + "$": { + "domain": "" + } + }, + { + "_": "structure:television/television-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:television", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T16:08:57.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Sunak blames former Tory PMs for record net migration numbers", + "link": "https://www.telegraph.co.uk/politics/2023/11/30/rishi-sunak-latest-news-tories-labour-keir-starmer-live/", + "pubDate": "Thu, 30 Nov 2023 16:00:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/11/30/TELEMMGLPICT000358403241_17013464169690_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "guid": "f09ff9f0-8422-3a5e-8a14-21cb4bbf125e", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T16:00:14.000Z" + }, + { + "creator": "Marlborough", + "title": "Marlborough racing tips and best bets for today\u2019s races", + "link": "https://www.telegraph.co.uk/racing/0/marlborough-racing-tips-best-bets-todays-races/", + "pubDate": "Thu, 30 Nov 2023 15:50:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/racing/2021/03/26/260321_JH_RACING_PORTAL_4_trans_NvBQzQNjv4Bq0xCxaHs0uU-ytAiMd-7XpGcvlwE7VKNo06j5r2t05AQ.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Marlborough", + "guid": "8a6067c8-0eca-3b53-8b7f-7d89f40c5d02", + "categories": [ + { + "_": "structure:racing", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/racing-tips", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T15:50:25.000Z" + }, + { + "creator": "Ben Rumsby", + "title": "Two new victims come forward against Premier League footballer accused of rape", + "link": "https://www.telegraph.co.uk/football/2023/11/30/two-new-victims-premier-league-rape-accused-footballer/", + "pubDate": "Thu, 30 Nov 2023 15:24:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000278987686_17013500500840_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Rumsby", + "guid": "722c575f-ab5c-3c41-97ba-63c104eb90ed", + "categories": [ + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T15:24:19.000Z" + }, + { + "creator": "James Crisp", + "title": "Shane MacGowan, frontman of the Pogues, dies aged 65", + "link": "https://www.telegraph.co.uk/news/2023/11/30/shane-macgowan-the-pogues-lead-singer-dies-65/", + "pubDate": "Thu, 30 Nov 2023 15:15:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/30/TELEMMGLPICT000358411188_17013462395140_trans_NvBQzQNjv4BqQM3rjVtAqPt4faM6F0jDQFXVwEOABAI30WlhGnTN0VY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "James Crisp", + "guid": "c66d3588-5d2c-3918-9e1c-3b1c7fb1f141", + "categories": [ + { + "_": "topics:things/death", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/rock-music", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ireland", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T15:15:35.000Z" + }, + { + "creator": "Ed McConnell", + "title": "Ukraine-Russia war: Rescuers dig for survivors after Donetsk bombardment", + "link": "https://www.telegraph.co.uk/world-news/2023/11/30/ukraine-russia-war-latest-news-putin-bakhmut-live/", + "pubDate": "Thu, 30 Nov 2023 15:11:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/30/TELEMMGLPICT000358398599_17013398167640_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4Cq4KazV9AxotcTKJxweDov0.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ed McConnell", + "guid": "2b4f2740-ca1f-3960-b1a3-5d5d83e7dfe7", + "categories": [ + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T15:11:37.000Z" + }, + { + "creator": "Sarah Newey", + "title": "\u2018The cracks are getting bigger and there are still aftershocks \u2013 we fear our house may collapse\u2019", + "link": "https://www.telegraph.co.uk/global-health/climate-and-people/afghanistan-earthquake-herat-aftershocks-tremors/", + "pubDate": "Thu, 30 Nov 2023 14:50:47 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/30/TELEMMGLPICT000352545872_17013544402820_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "guid": "09a53b16-1892-35a0-8ac5-00e887f12a04", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/earthquake", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/afghanistan", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "structure:climate-and-people", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T14:50:47.000Z" + }, + { + "creator": "Charles Richardson", + "title": "'Narrative' around Owen Farrell is unfair, says Mark McCall", + "link": "https://www.telegraph.co.uk/rugby-union/2023/11/30/saracens-press-conference-live-mark-mccall-owen-farrell/", + "pubDate": "Thu, 30 Nov 2023 14:33:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/11/30/TELEMMGLPICT000292210220_17013405740710_trans_NvBQzQNjv4Bqdy_Qk976bea-8Wp8YFBgLV-SP8-K2OZE1eOuRKbfTvY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Richardson", + "guid": "ba751b50-770f-3d5e-8b1a-76fcdf9cbd3c", + "categories": [ + { + "_": "topics:organisations/saracens-rugby", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/rfu", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/owen-farrell", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mental-health", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T14:33:59.000Z" + }, + { + "creator": "Diana Henry", + "title": "Meringue wreath with mango, passion fruit and pistachios recipe", + "link": "https://www.telegraph.co.uk/recipes/0/meringue-wreath-with-mango-passion-fruit-recipe/", + "pubDate": "Thu, 30 Nov 2023 13:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/11/28/TELEMMGLPICT000358150814_17011809213400_trans_NvBQzQNjv4BqeUX5lUnlbKgfWN6OUJaM4_P6xiRVbwMaBwsH_Glk25w.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "guid": "e4be09cd-1f7a-3d7b-ad0f-7c5cb97a6dad", + "categories": [ + { + "_": "topics:things/dessert-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-magazine", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fruit-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T13:00:00.000Z" + }, + { + "creator": "Diana Henry", + "title": "Bitter chocolate cake with boozy cranberry compote and port cream recipe", + "link": "https://www.telegraph.co.uk/recipes/0/bitter-chocolate-cake-with-boozy-cranberry-compote-recipe/", + "pubDate": "Thu, 30 Nov 2023 13:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/11/28/TELEMMGLPICT000358150802_17011802543410_trans_NvBQzQNjv4BqbLRfbHmhcXKTerWi-l8lG-5JWqlndEYdDSWz-0PF7Ew.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "guid": "8aa05df5-6e10-3611-abb2-5a0964082b69", + "categories": [ + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dessert-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chocolate-cake-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chocolate-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-magazine", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T13:00:00.000Z" + }, + { + "creator": "Diana Henry", + "title": "Sauternes custards recipe", + "link": "https://www.telegraph.co.uk/recipes/0/sauternes-custards-recipe/", + "pubDate": "Thu, 30 Nov 2023 13:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/11/28/TELEMMGLPICT000358150821_17011806197490_trans_NvBQzQNjv4Bqkjv_5xph6laDizdH61U1MD3fdGcr8fMpYWHI7AiDu4E.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "guid": "612e78c7-fb64-3fdd-b457-efeace9645df", + "categories": [ + { + "_": "topics:things/dessert-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-magazine", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/french-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T13:00:00.000Z" + }, + { + "creator": "Jason Burt", + "title": "Andre Onana howlers so bad only one Man Utd team-mate went to console him", + "link": "https://www.telegraph.co.uk/football/2023/11/29/galatasaray-vs-man-utd-live-champions-league-weather-latest/", + "pubDate": "Thu, 30 Nov 2023 12:43:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/30/TELEMMGLPICT000358352383_17013479381460_trans_NvBQzQNjv4BqnjmIHptgl1Xq0zyp305djjxNYSeuHkgpj3Bz0LQpNzE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jason Burt", + "guid": "8f9a4ae7-aa0d-388a-b249-44bc1beaadba", + "categories": [ + { + "_": "topics:organisations/manchester-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/galatasaray-sk", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/erik-ten-hag", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T12:43:51.000Z" + }, + { + "creator": "Tim Robey", + "title": "Fallen Leaves: a particularly fine, poetic romance from a modern master", + "link": "https://www.telegraph.co.uk/films/0/fallen-leaves-review-aki-kaurismaki/", + "pubDate": "Thu, 30 Nov 2023 12:39:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2023/11/30/TELEMMGLPICT000356953340_17013476545870_trans_NvBQzQNjv4BqwMpl-Jpdv5EMZZkofEupHHOhRTQmhcLyf2hPZPxeZDA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Robey", + "guid": "412be3ca-bc77-306f-8066-118e0e75a155", + "categories": [ + { + "_": "topics:places/finland", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "editors:tim-robey", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T12:39:55.000Z" + }, + { + "creator": "Robbie Collin", + "title": "Genie: Richard Curtis serves up a suitably syrupy Christmas confection", + "link": "https://www.telegraph.co.uk/films/0/genie-review-richard-curtis/", + "pubDate": "Thu, 30 Nov 2023 12:06:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2023/11/30/TELEMMGLPICT000356774976_17013453593200_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Robbie Collin", + "guid": "3df78a0c-19f0-3aa6-823b-21765ccbaafd", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/new-york", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "editors:robbie-collin", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T12:06:59.000Z" + }, + { + "creator": "Paul McAnulty", + "title": "Telegraph Fantasy Football tips: Game Week 14", + "link": "https://www.telegraph.co.uk/fantasy-sports/fantasy-football/telegraph-fantasy-football-tips/", + "pubDate": "Thu, 30 Nov 2023 11:02:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Fantasy-football/kane-paqueta-soucek-ff-2.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Paul McAnulty", + "guid": "7262c82a-db3a-30b9-a345-3e88700eff16", + "categories": [ + { + "_": "commercial:fantasy-sports/fantasy-football", + "$": { + "domain": "" + } + }, + { + "_": "commercial:apple-news-include", + "$": { + "domain": "" + } + }, + { + "_": "commercial:fantasy-sports/fantasy-football/fantasy-football-selection-tips", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T11:02:00.000Z" + }, + { + "creator": "Tim Robey", + "title": "Eileen, review: Anne Hathaway flirts with danger \u2013 but where\u2019s the sexual tension?", + "link": "https://www.telegraph.co.uk/films/0/eileen-review-anne-hathaway-thomasin-mckenzie/", + "pubDate": "Thu, 30 Nov 2023 10:52:42 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2023/10/06/TELEMMGLPICT000351942031_16966039665750_trans_NvBQzQNjv4Bq90JsMauqkzRhOnTEP_rlOrxlL4JJZFr6G2BGlsAngeI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Robey", + "guid": "f01518d2-1a9b-3e26-9da4-e845895ed02e", + "categories": [ + { + "_": "topics:people/anne-hathaway", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/london-film-festival", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "editors:tim-robey", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture/culture-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-30T10:52:42.000Z" + }, + { + "creator": "Kieran Crichard", + "title": "Arsenal turn on the style in six-goal rout of Lens", + "link": "https://www.telegraph.co.uk/football/2023/11/29/arsenal-vs-lens-live-score-updates-champions-league/", + "pubDate": "Wed, 29 Nov 2023 22:40:45 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/29/TELEMMGLPICT000358337839_17012938176010_trans_NvBQzQNjv4BqNJE-uyjvb3OSR4bmogoB0aOthl_wMxfPPu_UgzsYnSM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Kieran Crichard", + "guid": "2ae7fe84-c4a5-3012-a48b-2bab610b4ebc", + "categories": [ + { + "_": "topics:organisations/arsenal-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T22:40:45.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Israel-Hamas war: Hamas hands over 14 hostages after 'logistical' delay", + "link": "https://www.telegraph.co.uk/world-news/2023/11/29/israel-hamas-war-ceasefire-hostages-latest-news/", + "pubDate": "Wed, 29 Nov 2023 22:10:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/29/TELEMMGLPICT000358340818_17012937504180_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "guid": "df1338c7-a479-3edd-aa0e-44275c46418f", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T22:10:37.000Z" + }, + { + "creator": "Daniel Schofield", + "title": "Owen Farrell to stop playing for England after being booed by fans", + "link": "https://www.telegraph.co.uk/rugby-union/2023/11/29/owen-farrell-live-england-international-break-mental-health/", + "pubDate": "Wed, 29 Nov 2023 21:21:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/11/29/TELEMMGLPICT000345628065_17012705567340_trans_NvBQzQNjv4Bq-lc5VlyuGXUsD747WoysfsKTQGIrNIUzeuXkbJaJW8o.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Daniel Schofield", + "guid": "3e19c980-47fd-3a7c-ad51-c6518bbd3cf6", + "categories": [ + { + "_": "topics:people/owen-farrell", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/saracens-rugby", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T21:21:43.000Z" + }, + { + "creator": "Chris Price", + "title": "Biden spending binge triggers fastest US growth in two years", + "link": "https://www.telegraph.co.uk/business/2023/11/29/ftse-100-markets-news-saudi-arabia-pif-stakeholder-heathrow/", + "pubDate": "Wed, 29 Nov 2023 18:24:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/11/29/TELEMMGLPICT000356956412_17012664141830_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "guid": "5de25c49-7e50-3cd5-87cb-9219cd4d8027", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T18:24:02.000Z" + }, + { + "creator": "Helen Chandler-Wilde", + "title": "The best \u2018natural\u2019 cold remedies you should buy now", + "link": "https://www.telegraph.co.uk/health-fitness/conditions/cold-flu/how-to-treat-cold-best-natural-remedies-cures-supplements-2022/", + "pubDate": "Wed, 29 Nov 2023 17:50:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2021/11/02/TELEMMGLPICT000273099721_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Helen Chandler-Wilde", + "guid": "40784d5c-8456-3f41-9816-9f3e4011ab45", + "categories": [ + { + "_": "topics:things/zinc", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vitamins", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/supplements", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vitamin-d", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/viruses", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-guide", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T17:50:25.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Wednesday evening news briefing: Snow could reach London as Khan declares 'severe weather emergency'", + "link": "https://www.telegraph.co.uk/news/2023/11/29/wednesday-evening-news-briefing-snow-london-khan-emergency/", + "pubDate": "Wed, 29 Nov 2023 17:46:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "guid": "5c41079a-1212-3341-b26b-e2055b9c281d", + "categories": [ + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T17:46:43.000Z" + }, + { + "creator": "Ed Cumming", + "title": "\u2018A German bomber hit the house opposite me \u2013 I joined the RAF to see if I could catch that bloke\u2019", + "link": "https://www.telegraph.co.uk/christmas/2023/11/29/raf-benevolent-fund-colin-bell-world-war-two-armed-forces/", + "pubDate": "Wed, 29 Nov 2023 17:40:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/29/TELEMMGLPICT000356017292_17012768172140_trans_NvBQzQNjv4BqZ7P499NBrqUlQwtY1pe3j9HmZAADo6ozrtwBtm1mAK4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ed Cumming", + "guid": "f8908352-659e-31cf-9bde-680fd3a18b47", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/raf-benevolent-fund", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/second-world-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/world-war-two", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T17:40:00.000Z" + }, + { + "creator": "Ben Farmer", + "title": "Anthrax confirmed as \u2018mystery\u2019 disease behind deaths in Uganda", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/anthrax-confirmed-in-uganda-africa-deaths-infections/", + "pubDate": "Wed, 29 Nov 2023 17:25:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/29/TELEMMGLPICT000312674924_17012774743350_trans_NvBQzQNjv4BqCndPCyOv9gW5X20QLMNyLVHmPOpeFd0SyQx9dn7kM_w.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Farmer", + "guid": "439af794-2b96-389a-9dfc-4ca07141bfcb", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/anthrax", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/uganda", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/africa", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T17:25:51.000Z" + }, + { + "creator": "Alex Barton", + "title": "Boris Johnson wasn't Cummings' puppet, Raab says", + "link": "https://www.telegraph.co.uk/news/2023/11/29/covid-inquiry-uk-news-latest-dr-harries-raab-sajid-javid0/", + "pubDate": "Wed, 29 Nov 2023 17:00:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/29/TELEMMGLPICT000358293802_17012812797790_trans_NvBQzQNjv4Bq8juO8C_Vdx2cT20LARTibnFLfv0ucAwTrkjYdq767p4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alex Barton", + "guid": "a76cbc94-b35f-388e-b3cf-9757c4a74003", + "categories": [ + { + "_": "topics:people/jacob-rees-mogg", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/covid-inquiry", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/sadiq-khan", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/coronavirus", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T17:00:44.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Russia bombards Avdiivka and live from a NATO meeting", + "link": "https://www.telegraph.co.uk/world-news/2023/11/29/russia-bombards-avdiivka-and-live-from-a-nato-meeting/", + "pubDate": "Wed, 29 Nov 2023 16:30:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/29/TELEMMGLPICT000358258998_17012752915670_trans_NvBQzQNjv4BqjArgU8GmB4hL1r1YSukYjUgVPwdufeeucebiXkh7vYA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "guid": "ff6347e5-75dd-3d5a-b6eb-f731c4c1cdfe", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T16:30:00.000Z" + }, + { + "creator": "Jessica Doyle", + "title": "The best home Christmas gifts of 2023, selected by The Telegraph's interior decoration expert", + "link": "https://www.telegraph.co.uk/christmas/0/best-home-christmas-gifts/", + "pubDate": "Wed, 29 Nov 2023 16:29:08 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2022/11/28/TELEMMGLPICT000317822123_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jessica Doyle", + "guid": "e5cca538-78eb-3d06-9b89-27851fa52361", + "categories": [ + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T16:29:08.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: No 10 hits back at Ursula von der Leyen over Brexit remarks", + "link": "https://www.telegraph.co.uk/politics/2023/11/29/rishi-sunak-latest-news-kwarteng-braverman-migration/", + "pubDate": "Wed, 29 Nov 2023 16:00:21 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/11/29/TELEMMGLPICT000358283832_17012660062010_trans_NvBQzQNjv4BqxKkYrBbBWaRu3my4RQIxJP0eQTsAC_M066Kngl9FFL0.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "guid": "8cb955d3-7d76-337c-9462-d845db6bf24d", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T16:00:21.000Z" + }, + { + "creator": "Cameron Henderson", + "title": "Six Nations 2024: When is it and how to watch in UK and US", + "link": "https://www.telegraph.co.uk/rugby-union/0/six-nations-championship-2024-when-how-to-watch/", + "pubDate": "Wed, 29 Nov 2023 15:58:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/11/29/TELEMMGLPICT000354466229_17012734408130_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwWGUoDseFNqJElbWj8lWIVU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Cameron Henderson", + "guid": "54e79ca1-a0a7-3a19-b7dd-7fb5cdcd8a30", + "categories": [ + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/scotland-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/france-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/six-nations", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/wales-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ireland-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T15:58:27.000Z" + }, + { + "creator": "Mike McGrath", + "title": "Euro 2024 draw: What time is it and which teams could England face?", + "link": "https://www.telegraph.co.uk/football/0/euro-2024-draw-what-time-england-teams-germany-tv/", + "pubDate": "Wed, 29 Nov 2023 15:47:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/28/TELEMMGLPICT000358159939_17011886180160_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mike McGrath", + "guid": "3c7c6ca6-abec-3eae-8cce-720cc4ad85ff", + "categories": [ + { + "_": "topics:events/euro-2024", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-football-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/germany-football-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/gareth-southgate", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/harry-kane", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T15:47:27.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Ukraine-Russia war: Russian general blown up by landmine on front line", + "link": "https://www.telegraph.co.uk/world-news/2023/11/29/ukraine-russia-war-latest-news/", + "pubDate": "Wed, 29 Nov 2023 15:24:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/29/TELEMMGLPICT000358300665_17012712483350_trans_NvBQzQNjv4Bq92hKO6jAtmPrz4xYdDrmek9yDqRy7ybewBDNlekZncA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "guid": "78128228-b565-373e-a7b1-05716bc21779", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T15:24:17.000Z" + }, + { + "creator": "Marianka Swain", + "title": "London theatre: the best family shows to book now", + "link": "https://www.telegraph.co.uk/theatre/what-to-see/best-london-theatre-shows-musicals-plays-tickets-family/", + "pubDate": "Wed, 29 Nov 2023 14:43:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/theatre/2023/05/14/TELEMMGLPICT000335580363_trans_NvBQzQNjv4BqMLW7lEyShFmnn4OBvNoy7JiYM9EOdf5fBDOax-kKt4A.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Marianka Swain", + "guid": "624d0d5a-a010-315d-b1bc-7e7b2c230e1c", + "categories": [ + { + "_": "topics:places/west-end", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/disney", + "$": { + "domain": "" + } + }, + { + "_": "structure:theatre", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T14:43:59.000Z" + }, + { + "creator": "Marianka Swain", + "title": "London theatre: the best musicals and plays to book now", + "link": "https://www.telegraph.co.uk/theatre/what-to-see/best-theatre-shows-plays-book-tickets-london-uk-performances/", + "pubDate": "Wed, 29 Nov 2023 14:42:48 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/theatre/2023/05/14/TELEMMGLPICT000335580359_trans_NvBQzQNjv4BqRRSmT6cvkmeECxVzj5L_rITPD5foJ9o3wuqP2tL5Yek.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Marianka Swain", + "guid": "811a3c58-bbba-3a4d-abd2-33115941e716", + "categories": [ + { + "_": "topics:places/west-end", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/national-theatre", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/almeida-theatre", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/old-vic", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/donmar-warehouse", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/abba", + "$": { + "domain": "" + } + }, + { + "_": "structure:dance", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:theatre", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T14:42:48.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "\u2018I\u2019ve tried and tried, and I can\u2019t get rid of it\u2019: The women living with drug-resistant infections", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/amr-antimicrobial-resistance-superbugs-infections-pandemic/", + "pubDate": "Wed, 29 Nov 2023 12:03:33 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/29/TELEMMGLPICT000357417943_17012580743180_trans_NvBQzQNjv4Bq688n9x0pLg7wrhjlfnO5m9kM9MM8VM3G1BxlGUO4L8Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "guid": "0c560ddf-a31c-331a-85c6-a275f58db07a", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/superbugs-antibiotic-resistance", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/antibiotics", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T12:03:33.000Z" + }, + { + "creator": "Telegraph Video", + "title": "Iranian drone films US aircraft carrier entering Persian Gulf", + "link": "https://www.telegraph.co.uk/world-news/2023/11/29/uss-dwight-d-eisenhower-persian-gulf-fifth-fleet/", + "pubDate": "Wed, 29 Nov 2023 11:45:33 GMT", + "dc:creator": "Telegraph Video", + "guid": "98ad705e-2dba-366f-b2c4-80881c11c87d", + "categories": [ + { + "_": "topics:places/iran", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/usa", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/us-navy", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-arab-emirates", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T11:45:33.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Four teenagers drowned when car crashed into Snowdonia stream, inquest hears", + "link": "https://www.telegraph.co.uk/news/2023/11/29/four-teenagers-north-wales-snowdonia-drowned-death-inquest/", + "pubDate": "Wed, 29 Nov 2023 11:44:01 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/29/TELEMMGLPICT000357464956_17012549742030_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "guid": "a0c63fae-b91e-33e7-8aed-065165c2f29c", + "categories": [ + { + "_": "topics:places/snowdonia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/wales", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T11:44:01.000Z" + }, + { + "creator": "Olivia Acland", + "title": "UAE to lease millions of hectares of land in Africa to generate carbon credits", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/uae-leases-african-land-to-generate-carbon-credits/", + "pubDate": "Wed, 29 Nov 2023 10:16:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/28/TELEMMGLPICT000299657801_17011698145320_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfFMCdzn0ov5UrDuPlZv8pI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Olivia Acland", + "guid": "be7e129d-5e41-3d2a-a9c6-65fe7ff29ec6", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-arab-emirates", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/zambia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/tanzania", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/liberia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/zimbabwe", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T10:16:36.000Z" + }, + { + "creator": "Charles Hymas", + "title": "Rishi Sunak under pressure from Tory Right for cap on migration", + "link": "https://www.telegraph.co.uk/politics/2023/11/28/rishi-sunak-latest-news-rees-mogg-tory-general-election/", + "pubDate": "Wed, 29 Nov 2023 06:17:06 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/11/28/TELEMMGLPICT000358151804_17011929421630_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Hymas", + "guid": "7acbdec2-e0d2-3879-8b3d-7f5b69e7e2a7", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T06:17:06.000Z" + }, + { + "creator": "Michael Searles", + "title": "Patients at risk from virtual GP appointments", + "link": "https://www.telegraph.co.uk/news/2023/11/29/patients-at-risk-from-virtual-gp-appointments/", + "pubDate": "Wed, 29 Nov 2023 00:15:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/28/TELEMMGLPICT000358187855_17012052192390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Michael Searles", + "guid": "7a61852a-ac34-32ed-8cc0-e489f8e4272b", + "categories": [ + { + "_": "topics:organisations/nhs", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/elder-health", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T00:15:00.000Z" + }, + { + "creator": "Rishi Sunak", + "title": "The anger over the Sycamore Gap tree shows us why we must halt decline in nature", + "link": "https://www.telegraph.co.uk/politics/2023/11/29/rishi-sunak-unveils-new-powers-to-protect-local-trees-in-wa/", + "pubDate": "Wed, 29 Nov 2023 00:01:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/11/28/TELEMMGLPICT000030111301_17012056635220_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rishi Sunak", + "guid": "caf3c497-ea5d-39c2-b244-e1705bb84e1c", + "categories": [ + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/trees-and-forests", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/nature", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:comment", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-29T00:01:00.000Z" + }, + { + "creator": "Sam Wallace", + "title": "Newcastle denied by Var as Champions League hopes left in tatters in Paris", + "link": "https://www.telegraph.co.uk/football/2023/11/28/psg-vs-newcastle-live-score-updates-champions-league/", + "pubDate": "Tue, 28 Nov 2023 23:58:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/28/TELEMMGLPICT000358208608_17012088936870_trans_NvBQzQNjv4BqGbwdhRpK4odrfvcIWPpCV2WsKMkrERncZgwbFtDvKUk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Wallace", + "guid": "ee0a3911-fc98-3e95-a0cb-7e58ae345eb2", + "categories": [ + { + "_": "topics:organisations/newcastle-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/psg", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T23:58:05.000Z" + }, + { + "creator": "Mike McGrath", + "title": "Julian Alvarez and Jeremy Doku should be automatic starters for Manchester City", + "link": "https://www.telegraph.co.uk/football/2023/11/28/man-city-vs-rb-leipzig-live-score-updates-champions-league/", + "pubDate": "Tue, 28 Nov 2023 22:50:03 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/28/TELEMMGLPICT000358208158_17012090165980_trans_NvBQzQNjv4BqvxCgWT2yYhouigw5Jlk4dcbAbHJZ6kkc8mWiNaUXxro.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mike McGrath", + "guid": "24f18eef-cbcd-356b-ab4d-db9bdc46b7f7", + "categories": [ + { + "_": "topics:organisations/rb-leipzig", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/manchester-city-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/champions-league-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T22:50:03.000Z" + }, + { + "creator": "Abbie Cheeseman", + "title": "Palestinian Islamic Jihad armed wing hands over Israeli hostages", + "link": "https://www.telegraph.co.uk/world-news/2023/11/28/israel-hamas-gaza-hostage-release-ceasefire-latest-news/", + "pubDate": "Tue, 28 Nov 2023 22:01:49 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000358179815_17012028839870_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abbie Cheeseman", + "guid": "3f212799-c85e-3634-8e81-bd63ee143bdf", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T22:01:49.000Z" + }, + { + "creator": "Rob Bagchi", + "title": "Celtic crash out of Europe as Ciro Immobile seals Lazio victory", + "link": "https://www.telegraph.co.uk/football/2023/11/28/lazio-vs-celtic-live-score-updates-champions-league/", + "pubDate": "Tue, 28 Nov 2023 20:07:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/28/TELEMMGLPICT000358181082_17011997905380_trans_NvBQzQNjv4BqVoN5nQkKSYgl33k9fED3AQpkYVnSZEHt6-ir__DTAH4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rob Bagchi", + "guid": "7924ba50-570c-3a98-b594-57b89cc79c07", + "categories": [ + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/celtic-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ss-lazio", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T20:07:25.000Z" + }, + { + "creator": "Will Bolton", + "title": "Killer posted tribute to 'amazing friend' Brianna Ghey after her death, court hears", + "link": "https://www.telegraph.co.uk/news/2023/11/28/brianna-ghey-murder-trial-latest-live-updates/", + "pubDate": "Tue, 28 Nov 2023 19:53:58 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/28/TELEMMGLPICT000358064270_17011702903410_trans_NvBQzQNjv4BqmjvgPpFxm00IlCEpu3_UucwEsps1dmalTJGSbd8tfTk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Will Bolton", + "guid": "ae4cffa3-e44c-3a17-963c-9511f5bcd09a", + "categories": [ + { + "_": "topics:in-the-news/knife-crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/greater-manchester-police", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/cheshire-constabulary", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T19:53:58.000Z" + }, + { + "creator": "Chris Price", + "title": "National Grid to pay people to use less energy amid cold snap", + "link": "https://www.telegraph.co.uk/business/2023/11/28/ftse-100-markets-news-live-food-inflation-supermarkets/", + "pubDate": "Tue, 28 Nov 2023 18:17:33 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/11/28/TELEMMGLPICT000327054501_17011782146620_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "guid": "b43b9174-08bb-3623-b0c4-cac64462524c", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T18:17:33.000Z" + }, + { + "creator": "Samaan Lateef", + "title": "All 41 trapped workers rescued from Indian tunnel after 17 days underground", + "link": "https://www.telegraph.co.uk/world-news/2023/11/28/indian-tunnel-collapse-rescuers-break-through-uttarakhand/", + "pubDate": "Tue, 28 Nov 2023 18:16:11 GMT", + "dc:creator": "Samaan Lateef", + "guid": "9952c9ec-d4eb-3003-892f-86cdf60a5b7c", + "categories": [ + { + "_": "topics:places/india", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T18:16:11.000Z" + }, + { + "creator": "Alex Barton", + "title": "We didn\u2019t lock down early enough, says Gove", + "link": "https://www.telegraph.co.uk/news/2023/11/28/covid-inquiry-uk-news-latest-michael-grove-dr-jenny-harries/", + "pubDate": "Tue, 28 Nov 2023 17:58:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/28/TELEMMGLPICT000358166624_17011922335310_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwVSYfRx-a0rm-wOQ3-QTCoU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alex Barton", + "guid": "8f5df5ef-7926-337f-8062-fdb1c7cebb1e", + "categories": [ + { + "_": "topics:in-the-news/covid-inquiry", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/coronavirus", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/michael-gove", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T17:58:18.000Z" + }, + { + "creator": "Sophia Yan", + "title": "Battle Lines: 'Europe and the Middle East, if one sneezes the other catches a cold'", + "link": "https://www.telegraph.co.uk/world-news/2023/11/28/europe-middle-east-israel-usa/", + "pubDate": "Tue, 28 Nov 2023 17:50:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000358011445_17011937115310_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sophia Yan", + "guid": "d0c30853-2401-3584-bf04-ccd62d13bcd9", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/battle-lines", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T17:50:14.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Tuesday evening news briefing: Covid could be \u2018man-made\u2019, says Gove", + "link": "https://www.telegraph.co.uk/news/2023/11/28/tuesday-evening-news-briefing-covid-could-be-man-made-gove/", + "pubDate": "Tue, 28 Nov 2023 17:46:07 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "guid": "7034ce78-5377-3753-bd80-8fa44506553c", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andrew-bailey", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T17:46:07.000Z" + }, + { + "creator": "Rosa Silverman", + "title": "Only Fools and Horses' Sue Holderness: \u2018Politically correct people want a lot of comedy banned\u2019", + "link": "https://www.telegraph.co.uk/christmas/2023/11/28/sue-holderness-only-fools-interview-comedy/", + "pubDate": "Tue, 28 Nov 2023 16:59:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/28/TELEMMGLPICT000357489861_17011892312740_trans_NvBQzQNjv4Bqx1N6mzreoM9UEkoOCiuTNmQnZJIETfWB_fUbKb77n0w.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rosa Silverman", + "guid": "15611e48-0814-341d-8fa3-603a0751c40f", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/raf-benevolent-fund", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T16:59:50.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Russia\u2019s Black Sea fleet forced back by \u2018storm of the century\u2019", + "link": "https://www.telegraph.co.uk/world-news/2023/11/28/russias-black-sea-fleet-forced-back-by-storm-of-the-century/", + "pubDate": "Tue, 28 Nov 2023 16:37:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000358078803_17011893836790_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "guid": "b3dc66fa-54b3-3ae1-9adf-d84cb867f55f", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T16:37:35.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "Covid-19 vaccines may have prevented thousands of premature births, study suggests", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/covid-vaccines-may-prevent-premature-births-study-suggests/", + "pubDate": "Tue, 28 Nov 2023 16:17:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/28/TELEMMGLPICT000255372747_17011876094570_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9f4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "guid": "080f2fb8-f6a2-384c-995a-5b2b6af07bdf", + "categories": [ + { + "_": "topics:in-the-news/coronavirus", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pregnancy", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vaccines", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/booster-vaccines", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/women's-health", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T16:17:24.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The 26 best advent calendars of 2023, from chocolate to Lego", + "link": "https://www.telegraph.co.uk/christmas/best-advent-calendars/", + "pubDate": "Tue, 28 Nov 2023 15:56:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/23/TELEMMGLPICT000354149987_16980750699600_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "guid": "453db5dc-f90d-34aa-8741-4f020343be21", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/advent-calendars", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T15:56:18.000Z" + }, + { + "creator": "Fiona Tomas", + "title": "Paris to double price of Metro tickets during Olympics to cash in on fans", + "link": "https://www.telegraph.co.uk/olympics/2023/11/28/paris-olympics-2024-metro-tickets-double-prices/", + "pubDate": "Tue, 28 Nov 2023 15:12:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/olympics/2023/11/28/TELEMMGLPICT000356617370_17011833832250_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Fiona Tomas", + "guid": "0033260d-a8bc-33e0-aec1-2a17745a933c", + "categories": [ + { + "_": "topics:events/paris-olympics-2024", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/paris", + "$": { + "domain": "" + } + }, + { + "_": "structure:olympics", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T15:12:04.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Ukraine-Russia war: Finland closes entire border with Russia", + "link": "https://www.telegraph.co.uk/world-news/2023/11/28/russia-ukraine-war-latest-black-sea-fleet-crimea-missiles/", + "pubDate": "Tue, 28 Nov 2023 15:10:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000357809665_17011841735440_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "guid": "139cf3c4-a5c4-3458-9b94-d2694f33dd0c", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T15:10:55.000Z" + }, + { + "creator": "Sarah Newey", + "title": "Asian neighbours \u2018put guard up\u2019 amid fears China\u2019s wave of disease will spread", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/asian-countries-guard-against-china-mystery-disease-spread/", + "pubDate": "Tue, 28 Nov 2023 14:40:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/28/TELEMMGLPICT000357710232_17011707284670_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "guid": "6bb1b635-57a8-32c6-8a08-b6ac64ec046f", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/china", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/india", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/thailand", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/south-korea", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T14:40:44.000Z" + }, + { + "creator": "Sarah Raven", + "title": "Sarah Raven's best Christmas gifts for gardeners in 2023, from tools to seed kits", + "link": "https://www.telegraph.co.uk/christmas/best-christmas-gifts-gardeners/", + "pubDate": "Tue, 28 Nov 2023 13:40:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2022/11/25/TELEMMGLPICT000317522245_trans_NvBQzQNjv4BqoHFBPgG5JS7XdVlLQy3_s_SsAIeVWg5VsMggdZY7tkY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Raven", + "guid": "af7b49b1-aeab-3747-9517-a1118daae754", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-gifts", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T13:40:53.000Z" + }, + { + "creator": "Jack Rear", + "title": "Anyone for cow cuddling? Meet the new breed of \u2018therapy animals\u2019", + "link": "https://www.telegraph.co.uk/christmas/2023/11/28/anyone-for-cow-cuddling-meet-new-breed-of-therapy-animals/", + "pubDate": "Tue, 28 Nov 2023 13:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/28/TELEMMGLPICT000357807238_17011733226570_trans_NvBQzQNjv4BqGQR7TMwEvfaYG0TH6J-Ry06Usa8KZCn8ZaDf3fwLU6E.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Rear", + "guid": "ca142d77-2ceb-3f8a-ac65-06e93abddc8d", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/go-beyond", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/farming", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dairy-industry", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/therapy", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T13:00:00.000Z" + }, + { + "creator": "Will Bolton", + "title": "Killers wanted to know if Brianna Ghey would scream like a girl, court hears", + "link": "https://www.telegraph.co.uk/news/2023/11/27/brianna-ghey-murder-trial-trans-teenager-latest/", + "pubDate": "Tue, 28 Nov 2023 11:53:38 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/27/TELEMMGLPICT000358064270_17011145395970_trans_NvBQzQNjv4BqfO4ozwYUaochnYSIBpptlDbf1VVsdVt6rQF5x0Q0Qio.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Will Bolton", + "guid": "820eb3a7-74b9-3711-8e0d-fb43e1be5267", + "categories": [ + { + "_": "topics:things/murder", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/court-cases", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/cheshire", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/cheshire-constabulary", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/brianna-ghey", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T11:53:38.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Golden eagle\u2019s disappearance being treated as suspicious", + "link": "https://www.telegraph.co.uk/news/2023/11/28/merrick-golden-eagle-treated-suspicious-police-scotland/", + "pubDate": "Tue, 28 Nov 2023 10:06:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/28/TELEMMGLPICT000358079583_17011594317390_trans_NvBQzQNjv4BqFOgdDOZBSSpUpWf9Rnp5s6Aezwuvexs_ues-aCB_TCg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "guid": "20f7fb9f-0d36-3bac-bcd4-4249852134a8", + "categories": [ + { + "_": "topics:places/scotland", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/golden-eagle", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/eagles", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/birds", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/birds-of-prey", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/animals", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T10:06:30.000Z" + }, + { + "creator": "Mark Hix", + "title": "Roast turkey crown with thyme-stuffed legs recipe", + "link": "https://www.telegraph.co.uk/recipes/0/roast-turkey-crown-thyme-stuffed-legs-christmas-dinner/", + "pubDate": "Tue, 28 Nov 2023 10:03:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2021/11/22/CarolSachs_Telegraph_Hix_Christmas_DSCF0615_HiRes_trans_NvBQzQNjv4Bq1esb5GZ9cCPU4D75BzQPGvxt7nh5BNZRiXHx7igOTgc.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mark Hix", + "guid": "a4c39bcd-9e7f-3576-ad26-62dae03f8cfc", + "categories": [ + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/roast-dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-party-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/party-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/turkey-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "editors:mark-hix", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T10:03:12.000Z" + }, + { + "creator": "Calum Weill", + "title": "Telegraph Fantasy Football: Team of the Week Game Week 13", + "link": "https://www.telegraph.co.uk/fantasy-sports/fantasy-football/telegraph-fantasy-football-team-of-the-week/", + "pubDate": "Tue, 28 Nov 2023 09:30:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Fantasy-football/TOTW-GW13-23-24.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Calum Weill", + "guid": "7c5b26a7-dd3f-35c7-8766-f307c240efc2", + "categories": [ + { + "_": "commercial:fantasy-sports/fantasy-football", + "$": { + "domain": "" + } + }, + { + "_": "commercial:apple-news-include", + "$": { + "domain": "" + } + }, + { + "_": "commercial:fantasy-sports/fantasy-football/fantasy-football-selection-tips", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T09:30:00.000Z" + }, + { + "creator": "Tony Diver ", + "title": "Liz Truss calls for Reaganite leadership", + "link": "https://www.telegraph.co.uk/world-news/2023/11/28/liz-truss-republicans-ukraine-reagan-thatcher-leadership/", + "pubDate": "Tue, 28 Nov 2023 00:39:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/28/TELEMMGLPICT000331895590_17011305189080_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tony Diver ", + "guid": "e43aca13-43b0-3312-995e-ae42c8bdfb8b", + "categories": [ + { + "_": "topics:people/elizabeth-truss", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/republicans", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/margaret-thatcher", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/us-politics", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/donald-trump", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-28T00:39:50.000Z" + }, + { + "creator": "Jim White", + "title": "Gary O\u2019Neil fumes as Wolves suffer Var drama again at Fulham", + "link": "https://www.telegraph.co.uk/football/2023/11/27/fulham-vs-wolves-result-var-injury-time-penalty-decision/", + "pubDate": "Mon, 27 Nov 2023 22:32:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/11/27/TELEMMGLPICT000358099165_17011293274940_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jim White", + "guid": "161df54f-6d85-3f34-bba7-35e7fc5f79d5", + "categories": [ + { + "_": "topics:organisations/fulham-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/wolverhampton-wanderers-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/var", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T22:32:40.000Z" + }, + { + "creator": "Abbie Cheeseman", + "title": "Three year old twins released by Hamas in latest hostage exchange", + "link": "https://www.telegraph.co.uk/world-news/2023/11/27/israel-hamas-palestine-ceasefire-hostages-latest-news-live/", + "pubDate": "Mon, 27 Nov 2023 22:00:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/27/TELEMMGLPICT000358094556_17011220820540_trans_NvBQzQNjv4BqLf6XVudQ0d-fF3pHUPFzENzToNs4KPGiwgfzbiiWmHA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abbie Cheeseman", + "guid": "abe19120-0a76-3d8c-ab72-62f9307362cc", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T22:00:24.000Z" + }, + { + "creator": "Joe Pinkstone", + "title": "Swine flu H1N2: What we know so far as first human case detected in UK", + "link": "https://www.telegraph.co.uk/news/2023/11/27/swine-flu-h1n2-what-is-it-causes-symptoms-how-dangerous/", + "pubDate": "Mon, 27 Nov 2023 21:54:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/27/TELEMMGLPICT000234087070_17011216174870_trans_NvBQzQNjv4BqY0XMnE4berkpvWhc-fw2CCqhhN_cpmLU5aSU4P3rJlg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joe Pinkstone", + "guid": "9e30198e-8c20-3ab7-af19-ffde13a317a1", + "categories": [ + { + "_": "topics:things/flu", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T21:54:44.000Z" + }, + { + "creator": "Catherine Lough", + "title": "David Walliams settles lawsuit with Britain's Got Talent producers Fremantle", + "link": "https://www.telegraph.co.uk/news/2023/11/27/david-walliams-settles-lawsuit-fremantle-britain-got-talent/", + "pubDate": "Mon, 27 Nov 2023 21:21:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/27/TELEMMGLPICT000337133468_17011090624310_trans_NvBQzQNjv4Bqek9vKm18v_rkIPH9w2GMNpPHkRvugymKLtqq96r_VP8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Catherine Lough", + "guid": "c4c031b8-9dcf-3bd2-983f-4a006f00c291", + "categories": [ + { + "_": "topics:things/britains-got-talent", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T21:21:46.000Z" + }, + { + "creator": "Lilia Sebouai", + "title": "\u2018I performed six amputations in one night\u2019: London doctor recalls war horrors after 43 days in Gaza", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/gaza-hospital-surgeon-ghassan-abu-sittah-child-amputations/", + "pubDate": "Mon, 27 Nov 2023 19:03:21 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/27/TELEMMGLPICT000358067748_17011107693990_trans_NvBQzQNjv4BqZ7P499NBrqUlQwtY1pe3j_19dqzR9BBP8ILk73-WPTs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lilia Sebouai", + "guid": "562a7258-af3e-3ee7-b228-f99490b634bb", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T19:03:21.000Z" + }, + { + "creator": "Chris Price", + "title": "Tesla sues Sweden in bid to avoid hit from strikes", + "link": "https://www.telegraph.co.uk/business/2023/11/27/ftse-100-markets-news-live-gold-price-interest-rates/", + "pubDate": "Mon, 27 Nov 2023 18:37:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/11/27/TELEMMGLPICT000357605121_17010960596610_trans_NvBQzQNjv4BqwMJYxftKZExwjop9hyNEmQEwTyzLMKRxDe4NUIzb66I.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "guid": "8a94324c-30f1-3734-ad2c-212b81403233", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T18:37:36.000Z" + }, + { + "creator": "Tom Ward", + "title": "Cascade of fireworks halts Boca Juniors match in Argentine Primera Division", + "link": "https://www.telegraph.co.uk/football/2023/11/27/boca-juniors-match-godoy-cruz-fireworks-argentina-primera/", + "pubDate": "Mon, 27 Nov 2023 18:32:49 GMT", + "dc:creator": "Tom Ward", + "guid": "8b8a348d-3c03-38b4-8905-e82e5875e01f", + "categories": [ + { + "_": "topics:organisations/argentina-football-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T18:32:49.000Z" + }, + { + "creator": "Alexa Phillips", + "title": "The beginner\u2019s guide to Isas: how to invest and save, tax-free", + "link": "https://www.telegraph.co.uk/money/investing/isas/isa-beginners-guide-cash-stocks-shares/", + "pubDate": "Mon, 27 Nov 2023 18:06:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/investing/2023/05/05/TELEMMGLPICT000334508366_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alexa Phillips", + "guid": "122034fd-bf55-3ae7-9869-62ab00949c61", + "categories": [ + { + "_": "topics:things/isas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/banks-and-finance", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/share-prices", + "$": { + "domain": "" + } + }, + { + "_": "structure:money", + "$": { + "domain": "" + } + }, + { + "_": "structure:money/money-hub", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-superguide", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:money/tax", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "migration:moneyhub", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T18:06:46.000Z" + }, + { + "creator": "Ben Farmer", + "title": "Fears grow over mystery illness that has killed at least 14 people in Uganda", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/mystery-disease-kills-14-people-in-uganda-africa/", + "pubDate": "Mon, 27 Nov 2023 18:00:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/11/27/TELEMMGLPICT000310495417_17011064470170_trans_NvBQzQNjv4BqAblP_nApRBgTXVGqwDG3Fv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Farmer", + "guid": "5ac4fe3f-2906-34c9-981c-e6cade116078", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/uganda", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/africa", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T18:00:17.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Monday evening news briefing: Growth outlook is \u2018worst I've ever seen\u2019, says Bailey", + "link": "https://www.telegraph.co.uk/news/2023/11/27/monday-evening-news-briefing-growth-outlook-worst-ever-seen/", + "pubDate": "Mon, 27 Nov 2023 17:44:47 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "guid": "8e3c794d-5459-3115-b545-dddf182abeca", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andrew-bailey", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T17:44:47.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The 14 best pillows of 2023, tried and tested long term at home", + "link": "https://www.telegraph.co.uk/recommended/home/best-pillows-luxurious-nights-sleep/", + "pubDate": "Mon, 27 Nov 2023 16:27:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/20/TELEMMGLPICT000322700557_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "guid": "1c44f93a-7470-3c3b-8eef-36edc23f4651", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/body", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T16:27:53.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best electric toothbrushes of 2023 tried and tested, including Philips, Oral B and Spotlight", + "link": "https://www.telegraph.co.uk/recommended/tech/best-electric-toothbrushes/", + "pubDate": "Mon, 27 Nov 2023 16:16:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/18/TELEMMGLPICT000322429860_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "guid": "ded7f2ed-d04a-3dfc-acc2-46f373098113", + "categories": [ + { + "_": "topics:things/dental-health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tooth-decay", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/more-telegraph-recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T16:16:12.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "Best cordless vacuum cleaners of 2023, from Dyson to Shark, Vax and Henry", + "link": "https://www.telegraph.co.uk/recommended/home/best-cordless-vacuums/", + "pubDate": "Mon, 27 Nov 2023 16:02:56 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/11/15/TELEMMGLPICT000316297063_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "guid": "ae9bcac5-af10-3911-a2fc-d38de82b7004", + "categories": [ + { + "_": "topics:organisations/dyson", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vacuum-cleaners", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/amazon", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/john-lewis", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/black-friday", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T16:02:56.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Tommy Robinson charged after attending anti-Semitism march", + "link": "https://www.telegraph.co.uk/news/2023/11/27/tommy-robinson-charged-after-anti-semitism-march-appearance/", + "pubDate": "Mon, 27 Nov 2023 16:00:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/11/27/TELEMMGLPICT000357958887_17011025589100_trans_NvBQzQNjv4Bq_NJ62v2ZFDvrR1Z2dUS5zOil7a1KV2STY3xRqqFt_No.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "guid": "6df744b3-c345-3575-97cf-339296fd2d2c", + "categories": [ + { + "_": "topics:places/london", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/tommy-robinson", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T16:00:41.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: All options under review to curb legal migration, says Jenrick", + "link": "https://www.telegraph.co.uk/politics/2023/11/27/rishi-sunak-latest-news-general-election-james-cleverly/", + "pubDate": "Mon, 27 Nov 2023 16:00:25 GMT", + "dc:creator": "Jack Maidment", + "guid": "afd96d86-49ee-3358-90f8-a1f1e8d83d5f", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T16:00:25.000Z" + }, + { + "creator": "Madeleine Howell", + "title": "The best heated clothes airers to save money and energy when drying laundry this winter", + "link": "https://www.telegraph.co.uk/recommended/home/best-heated-clothes-airer/", + "pubDate": "Mon, 27 Nov 2023 15:55:09 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/20/TELEMMGLPICT000329652304_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Madeleine Howell", + "guid": "4eb698a1-9932-36db-8fb5-9584c227b2c3", + "categories": [ + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/clothes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-save-money", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T15:55:09.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Horrendous Winter weather strikes the region", + "link": "https://www.telegraph.co.uk/world-news/2023/11/27/horrendous-winter-weather-strikes-the-region/", + "pubDate": "Mon, 27 Nov 2023 15:54:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/11/27/TELEMMGLPICT000358060608_17011003933250_trans_NvBQzQNjv4BqIbTDq2tM-BCxND-etb_WlK_JuvlXy3Xq7MATOpSMYWc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "guid": "a3922e70-7ed9-3ba5-8671-1cd66b9ad86f", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T15:54:55.000Z" + }, + { + "creator": "Gavin Newsham", + "title": "The 10 best dehumidifiers of 2023, tried and tested to prevent mould and damp", + "link": "https://www.telegraph.co.uk/recommended/home/best-dehumidifiers/", + "pubDate": "Mon, 27 Nov 2023 15:42:32 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/09/23/TELEMMGLPICT000310359721_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Gavin Newsham", + "guid": "21818c90-2d60-3694-bc05-5482da2d0072", + "categories": [ + { + "_": "topics:things/allergies", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T15:42:32.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best beauty advent calendars of 2023, including 17 that haven't yet sold out", + "link": "https://www.telegraph.co.uk/beauty/make-up/best-beauty-advent-calendar/", + "pubDate": "Mon, 27 Nov 2023 15:10:52 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/beauty/2023/08/25/TELEMMGLPICT000346747147_16929575467850_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "guid": "9c8e4bbf-0f27-3e10-a809-9cb23e801643", + "categories": [ + { + "_": "topics:things/advent-calendars", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/make-up", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/skincare", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty/make-up", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T15:10:52.000Z" + }, + { + "creator": "Debbie McQuoid", + "title": "How to help when your child can\u2019t make friends", + "link": "https://www.telegraph.co.uk/christmas/2023/11/27/eight-ways-help-child-make-friends/", + "pubDate": "Mon, 27 Nov 2023 13:49:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/27/TELEMMGLPICT000354573300_17010847826380_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Debbie McQuoid", + "guid": "8334cb59-d19d-33b9-9ada-11ed3b29c338", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/go-beyond", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/parenthood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/children", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/friendship", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/childrens-health", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T13:49:40.000Z" + }, + { + "creator": "Fleur Britten", + "title": "\u2018I helped decorate the Savoy for Christmas \u2013 here are the insider tips I learnt\u2019", + "link": "https://www.telegraph.co.uk/christmas/2023/11/27/i-decorated-the-savoy-christmas-insider-tips/", + "pubDate": "Mon, 27 Nov 2023 13:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/11/24/TELEMMGLPICT000357256551_17008478246020_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Fleur Britten", + "guid": "dad92775-fd3d-3d03-a7a5-31c07546a0f2", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-decorations", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-27T13:00:00.000Z" + }, + { + "creator": "Dominic Penna", + "title": "Politics latest news: We're right to spend \u00a3290m on Rwanda plan, insists migration minister", + "link": "https://www.telegraph.co.uk/politics/2023/12/08/politics-latest-news-rishi-sunak-tories-rwanda-immigration/", + "pubDate": "Fri, 08 Dec 2023 09:30:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/08/TELEMMGLPICT000359247739_17019981583370_trans_NvBQzQNjv4Bqek9vKm18v_rkIPH9w2GMNpPHkRvugymKLtqq96r_VP8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Penna", + "content": "The \u00a3290 million that the Government plans to spend on the Rwanda scheme is \u201cthe right investment\u201d, one of Rishi Sunak\u2019s new immigration ministers has insisted.

]]>", + "contentSnippet": "", + "guid": "802887ce-e5be-344c-b411-1102bb35da65", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-08T09:30:36.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Israel battling 700 Hamas fighters in Shujaiya - follow latest", + "link": "https://www.telegraph.co.uk/world-news/2023/12/08/israel-hamas-war-latest-news-updates-gaza-day-63-live/", + "pubDate": "Fri, 08 Dec 2023 09:22:06 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/08/TELEMMGLPICT000359239159_17020245368570_trans_NvBQzQNjv4Bqp3bfLdJNMSwegfRYwhJWmOT1JygM6oG9OUAd4hX6XqQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "content": "Israel is facing growing resistance from Hamas fighters in Shujaiya. 

]]>", + "contentSnippet": "", + "guid": "efca0184-92f9-3d6d-9659-fe607cfd9786", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-08T09:22:06.000Z" + }, + { + "creator": "Michael Murphy", + "title": "Blocking Ukraine aid a 'Christmas present' for Putin, Lord Cameron tells US - follow live", + "link": "https://www.telegraph.co.uk/world-news/2023/12/08/ukraine-russia-war-latest-news-putin-us-aid-live/", + "pubDate": "Fri, 08 Dec 2023 09:16:23 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/08/TELEMMGLPICT000359268855_17019988094390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwekapBZ1c_8650LP5YH00zA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Michael Murphy", + "content": "David Cameron, the Foreign Secretary, on Thursday urged US lawmakers to approve fresh aid for Ukraine to help fund Kyiv\u2019s battle against Russian forces.

]]>", + "contentSnippet": "", + "guid": "d4498c82-8ebd-3743-a9dd-2562034a94a7", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-08T09:16:23.000Z" + }, + { + "creator": "Luke Edwards", + "title": "Everton punish Kieran Trippier howlers to climb out of drop zone", + "link": "https://www.telegraph.co.uk/football/2023/12/07/everton-vs-newcastle-live-score-premier-league/", + "pubDate": "Fri, 08 Dec 2023 08:30:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/07/TELEMMGLPICT000359262662_17019852951170_trans_NvBQzQNjv4Bql3LHfhUdDxmC6Xx98mlgJiOwwQH1iiegFd5INOxSjBk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Luke Edwards", + "content": "If you did not already believe Everton were good enough to get out of relegation trouble, this performance and result surely proves it.

]]>", + "contentSnippet": "", + "guid": "946df15d-0e40-351b-9321-20914244e20d", + "categories": [ + { + "_": "topics:organisations/everton-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/newcastle-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-08T08:30:15.000Z" + }, + { + "creator": "Robbie Collin", + "title": "Leave the World Behind: Julia Roberts has her best role in years in this enthralling thriller", + "link": "https://www.telegraph.co.uk/films/0/leave-the-world-behind-review-julia-roberts-ethan-hawke/", + "pubDate": "Fri, 08 Dec 2023 08:03:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2023/11/23/TELEMMGLPICT000357406825_17007482808890_trans_NvBQzQNjv4Bqdw-cK3ajvcoXavMZovuTFMkGnw7cUULUwT3K78zuxaA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Robbie Collin", + "content": "", + "contentSnippet": "", + "guid": "55727ef8-4532-3b55-97d1-1e3d1c19cb0e", + "categories": [ + { + "_": "topics:people/julia-roberts", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/netflix", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/thriller-movies", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "editors:robbie-collin", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-08T08:03:02.000Z" + }, + { + "creator": "Dominic Nicholls", + "title": "Will Russia-backed Venezuela start a war in South America? | Defence in Depth", + "link": "https://www.telegraph.co.uk/world-news/2023/12/08/venezuela-guyana-russia-south-america-usa-geopolitics-war/", + "pubDate": "Fri, 08 Dec 2023 08:00:00 GMT", + "dc:creator": "Dominic Nicholls", + "content": "", + "contentSnippet": "", + "guid": "cd4af133-1a22-3ea0-b7c7-55152aea3f29", + "categories": [ + { + "_": "topics:things/defence-in-depth", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/guyana", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/venezuela", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/usa", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/south-america", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-08T08:00:00.000Z" + }, + { + "creator": "Chris Price", + "title": "Oil price heading for longest downturn since 2018 in fuel boost - latest updates", + "link": "https://www.telegraph.co.uk/business/2023/12/08/ftse-100-markets-news-latest-oil-prices-us-employment-live/", + "pubDate": "Fri, 08 Dec 2023 06:59:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/08/TELEMMGLPICT000287210182_17020197937930_trans_NvBQzQNjv4BqwMJYxftKZExwjop9hyNEmQEwTyzLMKRxDe4NUIzb66I.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "The price of oil is on track for its worst downturn in five years in a potential boost for drivers.

]]>", + "contentSnippet": "", + "guid": "4370fd45-5407-3d4d-9264-d23d3eb17852", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-08T06:59:19.000Z" + }, + { + "creator": "Matt Law", + "title": "Son Heung-min slams \u2018soft\u2019 Spurs for defeat to West Ham", + "link": "https://www.telegraph.co.uk/football/2023/12/07/heung-min-son-blames-soft-spurs-for-defeat-to-west-ham/", + "pubDate": "Fri, 08 Dec 2023 06:30:49 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/07/TELEMMGLPICT000359265413_17019910527360_trans_NvBQzQNjv4Bq-GPP7dpMg0Or0h28QgpC4lEjQHUO__-8zbNeNKW41UE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Matt Law", + "content": "", + "contentSnippet": "", + "guid": "415e9094-07d4-3b7b-89ef-f4de84fefde1", + "categories": [ + { + "_": "topics:organisations/tottenham-hotspur-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/west-ham-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/ange-postecoglou", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/son-heung-min", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-08T06:30:49.000Z" + }, + { + "creator": "Oliver Brown", + "title": "Suella Braverman among 70 MPs demanding FA ban on transgender players", + "link": "https://www.telegraph.co.uk/football/2023/12/08/mps-demand-fa-ban-transgender-footballers/", + "pubDate": "Fri, 08 Dec 2023 00:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/07/TELEMMGLPICT000351798604_17019836632560_trans_NvBQzQNjv4BqrfzZskasdHxLRTTh7do0m47e1lkwS0JKUaHflh0HnsI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Oliver Brown", + "content": "", + "contentSnippet": "", + "guid": "fb0ffff0-e725-3505-961d-f4278057277a", + "categories": [ + { + "_": "topics:people/suella-braverman", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Transgender", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-football", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-08T00:00:00.000Z" + }, + { + "creator": "Nataliya Vasilyeva", + "title": "Israel \u2018must behave differently\u2019 in southern Gaza, says Cameron", + "link": "https://www.telegraph.co.uk/world-news/2023/12/07/israel-hamas-palestine-news-latest-idf-raid-hq-yahya-sinwar/", + "pubDate": "Thu, 07 Dec 2023 23:50:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/07/TELEMMGLPICT000359113255_17019383930250_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Nataliya Vasilyeva", + "content": "Israel must \u201cbehave differently\u201d in the south of Gaza to how it did in its full-frontal campaign in the north, Lord Cameron warned on Thursday.

]]>", + "contentSnippet": "its full-frontal campaign in the north, Lord Cameron warned on Thursday.\n]]>", + "guid": "a07adf25-706d-3349-b5bc-7e3510adb577", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T23:50:04.000Z" + }, + { + "creator": "Sam Wallace", + "title": "Horrific Destiny Udogie back-pass gifts West Ham their winner at Spurs", + "link": "https://www.telegraph.co.uk/football/2023/12/07/tottenham-vs-west-ham-live-score-premier-league/", + "pubDate": "Thu, 07 Dec 2023 23:42:39 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/07/TELEMMGLPICT000359264500_17019872091120_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf4yt3BU7yimAYJ8YD28sfCE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Wallace", + "content": "The Ange Postecoglou revolution was always destined to be a wild ride, although the fifth consecutive lead thrown away in the Premier League has come to suggest a pattern of surrender that is threatening to define these fragile early months.

]]>", + "contentSnippet": "", + "guid": "a0e3480e-1864-385a-90f6-c47082d576cd", + "categories": [ + { + "_": "topics:organisations/tottenham-hotspur-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/west-ham-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T23:42:39.000Z" + }, + { + "creator": "Chris Price", + "title": "Tesla loses legal challenge against Swedish strikes", + "link": "https://www.telegraph.co.uk/business/2023/12/07/ftse-100-markets-latest-news-uk-house-price-index-halifax/", + "pubDate": "Thu, 07 Dec 2023 18:42:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/07/TELEMMGLPICT000359148899_17019609195930_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "Tesla has lost a legal battle with Sweden\u2019s postal service as its fight with Scandinavian trade unions escalates.

]]>", + "contentSnippet": "", + "guid": "8e7924ff-01be-382c-b49e-38859a59c98d", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T18:42:14.000Z" + }, + { + "creator": "Fleur Britten", + "title": "What to do with a less-than-perfect Christmas tree", + "link": "https://www.telegraph.co.uk/interiors/home/how-to-improve-bare-christmas-tree-trafalgar-square/", + "pubDate": "Thu, 07 Dec 2023 18:07:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/interiors/2023/12/07/TELEMMGLPICT000359241285_17019718770830_trans_NvBQzQNjv4BqgCXocDQF5kP7s3jSjli3eCH0-jRUT4rHK8EgtaGoQwQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Fleur Britten", + "content": "", + "contentSnippet": "", + "guid": "39bd3cd2-ed2c-3e3d-9c12-d33b0005795c", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-trees", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-decorations", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/trafalgar-square", + "$": { + "domain": "" + } + }, + { + "_": "structure:interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T18:07:53.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Thursday evening news briefing: Switching PM now would be 'insanity', Tory chairman says", + "link": "https://www.telegraph.co.uk/news/2023/12/07/thursday-evening-news-briefing-switching-pm-now-insanity/", + "pubDate": "Thu, 07 Dec 2023 17:37:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "8e35ed73-655d-31b2-ac6d-03b8b0bb20ef", + "categories": [ + { + "_": "topics:places/rwanda", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bbc", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T17:37:24.000Z" + }, + { + "creator": "Jamie Bullen", + "title": "Covid Inquiry: Emotional Boris Johnson insists 'I do care' in defence of premiership", + "link": "https://www.telegraph.co.uk/news/2023/12/07/covid-inquiry-latest-news-boris-johnson-evidence-live-day-2/", + "pubDate": "Thu, 07 Dec 2023 16:55:16 GMT", + "dc:creator": "Jamie Bullen", + "content": "Boris Johnson has launched an emotional defence of his leadership during the Covid pandemic, saying it was \u201csimply not right\u201d to say he didn\u2019t care about people\u2019s suffering.

]]>", + "contentSnippet": "", + "guid": "184d1cb6-72f0-393b-93f9-8fe9f44c702a", + "categories": [ + { + "_": "topics:people/boris-johnson", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/covid-inquiry", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T16:55:16.000Z" + }, + { + "creator": "Rozina Sabur", + "title": "Fourth Republican primary debate: Haley tells rivals 'you're just jealous' as she rises in polls", + "link": "https://www.telegraph.co.uk/us/politics/2023/12/07/fourth-gop-debate-2023-live-alabama-trump-desantis-haley/", + "pubDate": "Thu, 07 Dec 2023 16:51:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/politics/2023/12/07/TELEMMGLPICT000359167036_17019373090310_trans_NvBQzQNjv4BqDPfUJJJzp2bObtoYsJdDTv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rozina Sabur", + "content": "Nikki Haley said her rivals were jealous of Democrat donations to her campaign as polls show she had risen to become Donald Trump\u2019s closest rival.

]]>", + "contentSnippet": "", + "guid": "296d67fd-fc86-3934-bbaa-31911a1fb008", + "categories": [ + { + "_": "topics:organisations/republicans", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/ron-desantis", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/nikki-haley", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vivek-ramaswamy", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/donald-trump", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/alabama", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T16:51:41.000Z" + }, + { + "creator": "Samuel Lovett", + "title": "World Bank urged to review funding of hospital chain linked to \u2018cash for kidneys\u2019 racket", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/world-bank-review-funding-of-hospital-chain-kidney-donors/", + "pubDate": "Thu, 07 Dec 2023 16:43:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/07/TELEMMGLPICT000358042846_17019543728170_trans_NvBQzQNjv4BqAblP_nApRBgTXVGqwDG3FsMRoe_y3J6QXlaIdPP2zuo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Samuel Lovett", + "content": "", + "contentSnippet": "", + "guid": "f2d37513-81df-34f5-8c2a-72a40d264f83", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/human-trafficking", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/myanmar", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/india", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/organ-donation", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T16:43:55.000Z" + }, + { + "creator": "Dominic Nicholls", + "title": "Ukraine: The Latest - Russia attacks port & live from the UAE as Putin visits Middle-Eastern ally", + "link": "https://www.telegraph.co.uk/world-news/2023/12/07/russia-attacks-port-live-from-the-uae-as-putin-visits/", + "pubDate": "Thu, 07 Dec 2023 16:25:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/07/TELEMMGLPICT000359229449_17019660571260_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Nicholls", + "content": "", + "contentSnippet": "", + "guid": "648b5a14-88ac-3b19-8d60-dac58b1d4570", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T16:25:24.000Z" + }, + { + "creator": "Dominic Penna", + "title": "Rishi Sunak can no longer claim to represent stability, says George Osborne", + "link": "https://www.telegraph.co.uk/politics/2023/12/07/rishi-sunak-latest-news-tories-rwanda-jenrick-resignation/", + "pubDate": "Thu, 07 Dec 2023 16:02:16 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/07/TELEMMGLPICT000359213957_17019629519450_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Penna", + "content": "Rishi Sunak can no longer claim he has \u201cstabilised things\u201d, George Osborne has warned amid growing disquiet over his Rwanda plan.

]]>", + "contentSnippet": "", + "guid": "6f38f96a-c4c7-3d4c-b5e7-218709915abd", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/immigration", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/migration", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T16:02:16.000Z" + }, + { + "creator": "Rosa Silverman", + "title": "If in doubt, blame Royal Mail: the ultimate guide to Christmas card etiquette", + "link": "https://www.telegraph.co.uk/christmas/2023/12/07/christmas-card-etiquette-royal-mail-send-date/", + "pubDate": "Thu, 07 Dec 2023 16:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/07/TELEMMGLPICT000359218430_17019538815530_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rosa Silverman", + "content": "", + "contentSnippet": "", + "guid": "f2a70901-e397-3dd0-bf91-486bfc274e58", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-cards", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T16:00:00.000Z" + }, + { + "creator": "Michael Murphy", + "title": "Russian attack causes toxic gas leak at Ukraine factory", + "link": "https://www.telegraph.co.uk/world-news/2023/12/07/ukraine-russia-war-news-live-sbu-assasinate-illya-kyva-puti/", + "pubDate": "Thu, 07 Dec 2023 15:21:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/07/TELEMMGLPICT000343970463_17019528821320_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Michael Murphy", + "content": "A Russian attack in Ukraine\u2019s southern city of Kherson has caused an ammonia leak at a factory, according to local authorities.

]]>", + "contentSnippet": "", + "guid": "ef7ecd13-1222-3319-b20d-99ef43c41cba", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T15:21:12.000Z" + }, + { + "creator": "Rozina Sabur", + "title": "All the Republican and Democrat candidates in the 2024 US election", + "link": "https://www.telegraph.co.uk/world-news/0/us-republican-democrat-candidates-running-2024-election/", + "pubDate": "Thu, 07 Dec 2023 15:16:39 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/02/02/TELEMMGLPICT000324052437_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rozina Sabur", + "content": "", + "contentSnippet": "", + "guid": "2e31d700-bc5d-3ce1-ae8c-afd28bb2375e", + "categories": [ + { + "_": "topics:places/usa", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/republicans", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/us-politics", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/donald-trump", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/nikki-haley", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/ron-desantis", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T15:16:39.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best beauty gifts for Christmas, recommended by a beauty editor", + "link": "https://www.telegraph.co.uk/beauty/make-up/best-christmas-beauty-gifts/", + "pubDate": "Thu, 07 Dec 2023 14:05:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/beauty/2023/12/06/TELEMMGLPICT000359088577_17018781532390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "fefbc6fd-1312-3573-b1fc-526b78f241c9", + "categories": [ + { + "_": "topics:things/beauty-guide", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/make-up", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/skincare", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/hair", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty/make-up", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T14:05:14.000Z" + }, + { + "creator": "Uche Amako", + "title": "Australian Open 2024: When is it, how to watch in UK and will Emma Raducanu play?", + "link": "https://www.telegraph.co.uk/tennis/2023/12/07/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", + "pubDate": "Thu, 07 Dec 2023 13:50:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2023/10/12/TELEMMGLPICT000352780667_16971158042650_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Uche Amako", + "content": "", + "contentSnippet": "", + "guid": "dd51d5bb-7565-35e6-b283-424e1cbd459a", + "categories": [ + { + "_": "topics:people/novak-djokovic", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/carlos-alcaraz", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/us-open-tennis", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andy-murray", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T13:50:14.000Z" + }, + { + "creator": "Ben Rumsby", + "title": "Euro 2024: When and where is it taking place and who are in England\u2019s group?", + "link": "https://www.telegraph.co.uk/football/0/euro-2024-germany-when-where-england-scotland-groups/", + "pubDate": "Thu, 07 Dec 2023 11:18:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/03/TELEMMGLPICT000358765867_17016260630620_trans_NvBQzQNjv4BqFOgdDOZBSSpUpWf9Rnp5s5gojZYlP8f0i9h2tPqCNsM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Rumsby", + "content": "", + "contentSnippet": "", + "guid": "c9a877b1-3e09-3441-8b9a-078ce192ee42", + "categories": [ + { + "_": "topics:events/euro-2024", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-football-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/scotland-football-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/wales-football-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T11:18:40.000Z" + }, + { + "creator": "Sarah Newey", + "title": "Inside the world\u2019s largest rabies control drive \u2013 set up by British retirees", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/inside-worlds-largest-rabies-control-drive-british-retirees/", + "pubDate": "Thu, 07 Dec 2023 10:59:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000359053497_17018788648290_trans_NvBQzQNjv4BqjJeHvIwLm2xPr27m7LF8mUYMapKPjdhyLnv9ax6_too.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "content": "", + "contentSnippet": "", + "guid": "3a812cff-17dc-3c24-9c9d-4555c2a0ce9e", + "categories": [ + { + "_": "topics:places/thailand", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dogs", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/neglected-tropical-diseases", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T10:59:25.000Z" + }, + { + "creator": "Tim Wigmore", + "title": "England vs West Indies, ODI and T20 tour: Full schedule and fixtures", + "link": "https://www.telegraph.co.uk/cricket/0/england-vs-west-indies-odi-t20-tour-full-fixtures-schedule/", + "pubDate": "Thu, 07 Dec 2023 10:24:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/07/TELEMMGLPICT000359157402_17019438740660_trans_NvBQzQNjv4BqwOBTQkzhgerMbLhahgNyhF5NUcTKNHKqy85KLqtvPLE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Wigmore", + "content": "", + "contentSnippet": "", + "guid": "cb20d7b2-e90a-337f-bd46-7024205a832e", + "categories": [ + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/west-indies-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T10:24:51.000Z" + }, + { + "creator": "Robbie Collin", + "title": "Theater Camp, review: this joyous mockumentary is the funniest film in years", + "link": "https://www.telegraph.co.uk/films/0/theater-camp-review-funniest-comedy-in-years/", + "pubDate": "Thu, 07 Dec 2023 10:16:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2023/08/23/TELEMMGLPICT000346484836_16927927351860_trans_NvBQzQNjv4Bq7U6quo0FusjSszcGmlCCOHGTJFJS74MYhNY6w3GNbO8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Robbie Collin", + "content": "", + "contentSnippet": "", + "guid": "6c356b5b-805b-3338-bd70-0cd8af83b60d", + "categories": [ + { + "_": "topics:things/comedy-movies", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/musicals", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/disney-plus", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:film/film-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "editors:robbie-collin", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T10:16:41.000Z" + }, + { + "creator": "Samuel Lovett", + "title": "Shimano bike parts \u2018made by modern slaves\u2019 sold to commuters", + "link": "https://www.telegraph.co.uk/global-health/climate-and-people/shimano-cycling-parts-made-by-modern-slaves-in-malaysia/", + "pubDate": "Thu, 07 Dec 2023 07:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000359113268_17018837120900_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Samuel Lovett", + "content": "", + "contentSnippet": "", + "guid": "bd76e62d-397d-33d0-8cb0-141171f75666", + "categories": [ + { + "_": "topics:things/road-cycling", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/malaysia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/nepal", + "$": { + "domain": "" + } + }, + { + "_": "structure:climate-and-people", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T07:00:00.000Z" + }, + { + "creator": "Tim Wigmore", + "title": "Jos Buttler\u2019s half-century gives England\u2019s new era lift off in win over West Indies", + "link": "https://www.telegraph.co.uk/cricket/2023/12/06/west-indies-vs-england-live-second-odi-score-latest-updates/", + "pubDate": "Thu, 07 Dec 2023 00:11:33 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/06/TELEMMGLPICT000359156157_17019044643610_trans_NvBQzQNjv4Bq9PIG5Nf-pok86REDZVBOY1ZB6ZlIZLJbOUKG6YRq9eg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Wigmore", + "content": "Jos Buttler launched Oshane Thomas down the ground, and then thrashed the next ball through midwicket for four to level the scores. Finally, here was a little of England\u2019s misplaced swagger.

]]>", + "contentSnippet": "", + "guid": "c0db7a0f-6ea0-3d04-9086-f007493c803b", + "categories": [ + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/west-indies-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-07T00:11:33.000Z" + }, + { + "creator": "James Ducker", + "title": "Erik ten Hag\u2019s bravest call yet rewarded with crucial victory over Chelsea", + "link": "https://www.telegraph.co.uk/football/2023/12/06/man-utd-vs-chelsea-live-score-updates-premier-league/", + "pubDate": "Wed, 06 Dec 2023 23:58:09 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359151507_17019008538980_trans_NvBQzQNjv4Bq3JyIgzC4lYYvg_3BgkFYPdDOYUIBKwcAsg37H0ToOxQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "James Ducker", + "content": "This was a night when one academy graduate was dropped but two others stood up to deliver a huge win for their manager. Erik ten Hag\u2019s brave decision to omit Marcus Rashford was rewarded with a performance of bold attacking intent from Manchester United and two star turns from Scott McTominay and Alejandro Garnacho.

]]>", + "contentSnippet": "", + "guid": "9029008e-58b0-37b7-99d8-f0358f74f44c", + "categories": [ + { + "_": "topics:organisations/manchester-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/chelsea-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/erik-ten-hag", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/mauricio-pochettino", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T23:58:09.000Z" + }, + { + "creator": "Jim White", + "title": "Superb Aston Villa took the fight to Man City \u2013 and utterly dominated", + "link": "https://www.telegraph.co.uk/football/2023/12/06/aston-villa-vs-manchester-city-unai-emery-rodri-missing/", + "pubDate": "Wed, 06 Dec 2023 23:48:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359148789_17019011004480_trans_NvBQzQNjv4BqIfUuG_JpxhApNCDqGtg_Au2YvCax7SCx68LTENTVmSg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jim White", + "content": "", + "contentSnippet": "", + "guid": "a221318d-31f8-343b-acf8-5b076872f8f1", + "categories": [ + { + "_": "topics:organisations/aston-villa-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/manchester-city-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/villa-park", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T23:48:46.000Z" + }, + { + "creator": "Nick Szczepanik", + "title": "Jack Hinshelwood announces himself as Brighton\u2019s latest academy star in win over Brentford", + "link": "https://www.telegraph.co.uk/football/2023/12/06/brighton-hove-albion-vs-brentford-jack-hinshelwood/", + "pubDate": "Wed, 06 Dec 2023 23:29:09 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359139787_17019004239650_trans_NvBQzQNjv4BqVUptBHHx0SkMPNyDu1INX4CwmzOYgo-fpxHlGNXp1hY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Nick Szczepanik", + "content": "", + "contentSnippet": "", + "guid": "fc5e3eb2-c20f-36f8-b548-c52400eb3104", + "categories": [ + { + "_": "topics:organisations/brighton-and-hove-albion-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/brentford-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T23:29:09.000Z" + }, + { + "creator": "John Aizlewood", + "title": "Steve Cooper on thin ice as Nottingham Forest owner storms out of 5-0 defeat", + "link": "https://www.telegraph.co.uk/football/2023/12/06/fulham-vs-nottingham-forest-steve-cooper-fan-support/", + "pubDate": "Wed, 06 Dec 2023 23:22:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359145427_17018986988420_trans_NvBQzQNjv4BqFe6QPTx-FvOrqrz8zF3FqvNpc9t_6yQ2bw0E0DWIoME.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "John Aizlewood", + "content": "", + "contentSnippet": "", + "guid": "9b00c5f3-f5fc-3c89-b631-d8b4c0f8ea85", + "categories": [ + { + "_": "topics:organisations/fulham-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/nottingham-forest-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/craven-cottage", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T23:22:41.000Z" + }, + { + "creator": "Mike McGrath", + "title": "Jurgen Klopp rows with \u2018ignorant\u2019 TV presenter after win at Sheffield United", + "link": "https://www.telegraph.co.uk/football/2023/12/06/sheff-utd-vs-liverpool-live-score-premier-league/", + "pubDate": "Wed, 06 Dec 2023 23:00:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359143395_17019033999490_trans_NvBQzQNjv4BqblfQEZyU_QRdrEcU-fy3zJAGOCjDAZw3LVPamifXETI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mike McGrath", + "content": "J\u00fcrgen Klopp was involved in an incredible television bust-up after this victory, accusing a presenter of being \u201cignorant\u201d after a joke was made about Liverpool playing at Saturday lunchtime this weekend. His team had just ensured there was no fairy-tale return for Chris Wilder at Sheffield United.  

]]>", + "contentSnippet": "", + "guid": "7a4d539a-828c-3574-9e61-268fd5b5786b", + "categories": [ + { + "_": "topics:organisations/sheffield-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/liverpool-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/premier-league-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:football/football-live-blog", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T23:00:41.000Z" + }, + { + "creator": "Diana Henry", + "title": "Adobo paste recipe", + "link": "https://www.telegraph.co.uk/recipes/0/adobo-paste-recipe/", + "pubDate": "Wed, 06 Dec 2023 22:32:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/06/TELEMMGLPICT000332404496_17019018573910_trans_NvBQzQNjv4BqOW9TGG0n5r3Z_LfXm_n-PdjA2OnYH7QCps9yitwRh9A.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "d14b8aba-9c62-3f11-babd-e36e73821a32", + "categories": [ + { + "_": "topics:things/chillies", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/spicy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sauce-chutney-condiment-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T22:32:19.000Z" + }, + { + "creator": "Ivan Speck", + "title": "Object thrown at Roy Hodgson as Selhurst Park turns sour after Bournemouth defeat", + "link": "https://www.telegraph.co.uk/football/2023/12/06/crystal-palace-vs-bournemouth/", + "pubDate": "Wed, 06 Dec 2023 21:49:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/06/TELEMMGLPICT000359152739_17019057222330_trans_NvBQzQNjv4BqAX4MG9WbmrLWMybTj7bo3-hYHO75Ra6hFopIFSHGYrQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ivan Speck", + "content": "", + "contentSnippet": "", + "guid": "297bcc8d-8b01-388d-b18a-7aa50de75187", + "categories": [ + { + "_": "topics:organisations/crystal-palace-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/afc-bournemouth", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/selhurst-park", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T21:49:43.000Z" + }, + { + "creator": "Siham Shamalakh", + "title": "Battle Lines: 'A nightmare I hope we can wake up from'", + "link": "https://www.telegraph.co.uk/world-news/2023/12/06/battle-lines-gaza-nightmare-wake-up/", + "pubDate": "Wed, 06 Dec 2023 19:13:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/06/TELEMMGLPICT000359115988_17018899203310_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Siham Shamalakh", + "content": "", + "contentSnippet": "", + "guid": "f282f8e1-d84c-3226-9e6c-9d5cc24d7a16", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/battle-lines", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T19:13:50.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Wednesday evening news briefing: Johnson fights back tears during Covid Inquiry", + "link": "https://www.telegraph.co.uk/news/2023/12/06/wednesday-evening-news-briefing-johnson-fights-back-tears/", + "pubDate": "Wed, 06 Dec 2023 17:41:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "dbd8bb46-8e1c-395c-a345-a31ed779a4ef", + "categories": [ + { + "_": "topics:people/boris-johnson", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/covid-inquiry", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/rwanda", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bbc", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T17:41:41.000Z" + }, + { + "creator": "Dominic Nicholls", + "title": "Ukraine: The Latest - Vladimir Putin's war against Russia: interview with Evgenia Kara-Murza", + "link": "https://www.telegraph.co.uk/world-news/2023/12/06/vladimir-putins-war-against-russia-interview-with-evgenia-k/", + "pubDate": "Wed, 06 Dec 2023 17:18:31 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/06/TELEMMGLPICT000358534467_17018830453870_trans_NvBQzQNjv4BqH8g0IxmZhOOFzRvM6k8ERpnDQzwgRmiqFHqV_gtIbpc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Nicholls", + "content": "", + "contentSnippet": "", + "guid": "ceb4261f-5c2d-379c-88ca-00e865efa678", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T17:18:31.000Z" + }, + { + "creator": "Charles Richardson", + "title": "Stuart Lancaster: 'I convinced Henry Arundell that Racing 92 would improve him'", + "link": "https://www.telegraph.co.uk/rugby-union/2023/12/06/stuart-lancaster-henry-arundell-racing-92/", + "pubDate": "Wed, 06 Dec 2023 17:04:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/12/06/TELEMMGLPICT000345943771_17018820518230_trans_NvBQzQNjv4BqwkeXLJnMKMBXoGlrFP6JQ9vKiN91tnf4XclTSJDx_OM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Richardson", + "content": "", + "contentSnippet": "", + "guid": "50bde452-e418-313c-9339-52d67de49ab9", + "categories": [ + { + "_": "topics:people/stuart-lancaster", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/racing-92", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/top-14", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T17:04:36.000Z" + }, + { + "creator": "Benedict Smith", + "title": "Politics latest news: Suella Braverman says Tories face electoral oblivion if they fail on Rwanda plan", + "link": "https://www.telegraph.co.uk/politics/2023/12/06/rishi-sunak-latest-news-tories-labour-starmer-live/", + "pubDate": "Wed, 06 Dec 2023 16:50:26 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/06/TELEMMGLPICT000359106989_17018812023820_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Benedict Smith", + "content": "Suella Braverman said the Tories face \u201celectoral oblivion\u201d if they fail to implement their Rwanda plan.

The former home secretary, making a resignation statement in the Commons, said Rishi Sunak will lead his party to a disastrous defeat if he introduces emergency legislation on Rwanda which is \u201cdestined to fail\u201d.

She revealed she had told the Prime Minister he should scrap the bill and replace it with more robust legislation excluding asylum claims from international and human rights laws. 

Ms Braverman told MPs: \u201cIt is now or never. The Conservative Party faces electoral oblivion in a matter of months if we introduce yet another Bill destined to fail. 

\u201cDo we fight for sovereignty or let our party die? I refuse to sit by and allow the trust that millions of people have put in us be discarded like an inconvenient detail.\u201d

]]>", + "contentSnippet": "The former home secretary, making a resignation statement in the Commons, said Rishi Sunak will lead his party to a disastrous defeat if he introduces emergency legislation on Rwanda which is \u201cdestined to fail\u201d.\nShe revealed she had told the Prime Minister he should scrap the bill and replace it with more robust legislation excluding asylum claims from international and human rights laws.\u00a0\nMs Braverman told MPs: \u201cIt is now or never. The Conservative Party faces electoral oblivion in a matter of months if we introduce yet another Bill destined to fail.\u00a0\n\u201cDo we fight for sovereignty or let our party die? I refuse to sit by and allow the trust that millions of people have put in us be discarded like an inconvenient detail.\u201d\n]]>", + "guid": "01f81162-f77d-355b-98d5-327a787f5aa7", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T16:50:26.000Z" + }, + { + "creator": "Verity Bowman", + "title": "Health hazard looms as billions of flies engulf one of Sudan\u2019s biggest cities", + "link": "https://www.telegraph.co.uk/global-health/climate-and-people/fly-infestation-port-sudan-city-plague-africa-insects/", + "pubDate": "Wed, 06 Dec 2023 16:34:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000358976134_17018792130950_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Verity Bowman", + "content": "", + "contentSnippet": "", + "guid": "dc44ac75-0098-3438-acc5-74b8148ad986", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/flies", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pests", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/viruses", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/bacteria", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/sudan", + "$": { + "domain": "" + } + }, + { + "_": "structure:climate-and-people", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T16:34:10.000Z" + }, + { + "creator": "Diana Henry", + "title": "Kamut, chickpea and aubergine salad with saffron yogurt recipe", + "link": "https://www.telegraph.co.uk/recipes/0/kamut-chickpea-aubergine-salad-saffron-yogurt-recipe/", + "pubDate": "Wed, 06 Dec 2023 16:29:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/06/TELEMMGLPICT000359102726_17018774417440_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "075850af-edf1-31c7-8193-e8127979e1f8", + "categories": [ + { + "_": "topics:things/salad-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/aubergine-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chickpea-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/side-dish-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T16:29:05.000Z" + }, + { + "creator": "Verity Bowman", + "title": "Israel setting up seawater pumps to flood Hamas tunnels", + "link": "https://www.telegraph.co.uk/world-news/2023/12/06/israel-hamas-war-hostages-latest-news/", + "pubDate": "Wed, 06 Dec 2023 16:03:47 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/06/TELEMMGLPICT000359078019_17018618840250_trans_NvBQzQNjv4BqrWYeUU_H0zBKyvljOo6zlm8nGi5dnbzU1Uvp1fqu20E.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Verity Bowman", + "content": "Israeli troops have been pictured setting up pumps to flood Hamas tunnels with water. 

]]>", + "contentSnippet": "", + "guid": "05adb46f-90f9-3494-921c-89d4c22d7f7c", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T16:03:47.000Z" + }, + { + "creator": "Chris Price", + "title": "Pound hits three-month high against the euro as German economy struggles - latest updates", + "link": "https://www.telegraph.co.uk/business/2023/12/06/ftse-100-markets-latest-news-boe-sustainability-report-live/", + "pubDate": "Wed, 06 Dec 2023 15:40:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/06/TELEMMGLPICT000359083630_17018635651050_trans_NvBQzQNjv4BqC_LLCXkS_z-CZqgOMP7Be4NJOW97-4gC-TIHNP2xpBw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "The pound has hit its strongest level against the euro in three months after Germany\u2019s construction and manufacturing sectors slumped.

]]>", + "contentSnippet": "", + "guid": "d876550d-8a05-38c6-b32a-0af55c17b0db", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T15:40:05.000Z" + }, + { + "creator": "Dominic Penna", + "title": "Covid Inquiry latest: First lockdown built on 'uncertain foundation', Boris Johnson admits", + "link": "https://www.telegraph.co.uk/news/2023/12/06/covid-inquiry-latest-news-boris-johnson-live/", + "pubDate": "Wed, 06 Dec 2023 15:27:10 GMT", + "dc:creator": "Dominic Penna", + "content": "The first national lockdown was built on an \u201cuncertain foundation\u201d, Boris Johnson has admitted.

]]>", + "contentSnippet": "", + "guid": "7017d5de-abf1-357d-8d4b-fb7111ab3d7e", + "categories": [ + { + "_": "topics:in-the-news/covid-inquiry", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/boris-johnson", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T15:27:10.000Z" + }, + { + "creator": "Telegraph Sport", + "title": "BBC Sports Personality of the Year Award 2023: When is it and who are the nominees?", + "link": "https://www.telegraph.co.uk/sport/0/bbc-sports-personality-of-the-year-2023-when-nominees-odds/", + "pubDate": "Wed, 06 Dec 2023 15:22:48 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/sport/2023/11/27/TELEMMGLPICT000320342681_17010771664720_trans_NvBQzQNjv4BqmvDsehfjg0AN6-v5Cj0_Vtf11FLKtqwYaxK652uKeQE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Sport", + "content": "", + "contentSnippet": "", + "guid": "8f7705a7-7b26-364b-8499-59e6aefdf063", + "categories": [ + { + "_": "topics:organisations/bbc", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/katarina-johnson-thompson", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/mary-earps", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/stuart-broad", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/the-races", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jude-bellingham", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T15:22:48.000Z" + }, + { + "creator": "Diana Henry", + "title": "Spiced citrus shortbread recipe", + "link": "https://www.telegraph.co.uk/recipes/0/spiced-citrus-shortbread-recipe/", + "pubDate": "Wed, 06 Dec 2023 15:06:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/06/TELEMMGLPICT000359099370_17018751025630_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "31873e5c-037b-38a1-9655-ad071592cde6", + "categories": [ + { + "_": "topics:things/shortbread-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/biscuit-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/baking-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/afternoon-tea-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T15:06:04.000Z" + }, + { + "creator": "Diana Henry", + "title": "Christmas brownies recipe", + "link": "https://www.telegraph.co.uk/recipes/0/christmas-brownies-recipe/", + "pubDate": "Wed, 06 Dec 2023 15:00:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/05/TELEMMGLPICT000358958261_17017759690100_trans_NvBQzQNjv4BqVXJkSNH0kOL36rJzg8U_TzPzU30KSEuxHqrJ3I8USWY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "2748c6a0-7b15-3400-8341-641315fa0137", + "categories": [ + { + "_": "topics:things/brownie-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/baking-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chocolate-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/afternoon-tea-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T15:00:04.000Z" + }, + { + "creator": "Diana Henry", + "title": "Apple and cinnamon scones recipe", + "link": "https://www.telegraph.co.uk/recipes/0/apple-and-cinnamon-scones-recipe/", + "pubDate": "Wed, 06 Dec 2023 14:55:42 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/05/TELEMMGLPICT000358958279_17017746829610_trans_NvBQzQNjv4Bq7lG0yBZ95AfEKn6gkKKQYSladG7Ff3b37LuAcfF1y_0.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "4cec6a1c-dc88-3b39-a6cf-00a0a9ef19e0", + "categories": [ + { + "_": "topics:things/scone-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/baking-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/afternoon-tea-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/party-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T14:55:42.000Z" + }, + { + "creator": "Diana Henry", + "title": "Christmas sandwiches recipe", + "link": "https://www.telegraph.co.uk/recipes/0/christmas-sandwiches-recipe/", + "pubDate": "Wed, 06 Dec 2023 14:53:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/05/TELEMMGLPICT000358958295_17017730375020_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "3e7968c7-884a-3e20-9d2a-81982887934f", + "categories": [ + { + "_": "topics:things/sandwich-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chicken-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lunch-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/party-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T14:53:11.000Z" + }, + { + "creator": "Jean Kaseya", + "title": "Africa must take control of its vaccine manufacturing to protect against a new pandemic", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/vaccine-manufacturing-africa-pandemic-preparedness/", + "pubDate": "Wed, 06 Dec 2023 14:17:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000357705934_17018700251220_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jean Kaseya", + "content": "", + "contentSnippet": "", + "guid": "96e4dc05-f6aa-388e-9f4d-bd3fd6be5284", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vaccines", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/africa", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:opinion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:comment", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T14:17:43.000Z" + }, + { + "creator": "Ella Nunn", + "title": "Seventeen people killed in Philippines 'killer curve' bus accident", + "link": "https://www.telegraph.co.uk/world-news/2023/12/06/philippines-asia-killer-curve-bus-accident-watch/", + "pubDate": "Wed, 06 Dec 2023 13:29:22 GMT", + "dc:creator": "Ella Nunn", + "content": "", + "contentSnippet": "", + "guid": "ac6caac1-ff1d-359a-9840-e205af733176", + "categories": [ + { + "_": "topics:places/philippines", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/road-accident", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T13:29:22.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Ukraine-Russia war latest: Russian bomber shot down over Snake Island", + "link": "https://www.telegraph.co.uk/world-news/2023/12/06/ukraine-russia-war-news-live-putin-us-aid-latest/", + "pubDate": "Wed, 06 Dec 2023 12:51:21 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/06/TELEMMGLPICT000358991965_17018476998420_trans_NvBQzQNjv4BqxXCI9Wh-V1PVtkHuRtXNlOgacLhbgytlmherpj3DRfI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "content": "A Russian bomber was shot down over Snake Island as Kyiv was bombarded with drones overnight.

]]>", + "contentSnippet": "", + "guid": "ce40e9c6-26a2-311e-9862-59a198439f0a", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T12:51:21.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Samir Shah set to be announced as new BBC chairman, sources claim", + "link": "https://www.telegraph.co.uk/news/2023/12/06/samir-shah-announced-new-bbc-chairman/", + "pubDate": "Wed, 06 Dec 2023 12:15:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/06/TELEMMGLPICT000359070326_17018555001050_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "content": "", + "contentSnippet": "", + "guid": "543d2403-1f04-3f31-915d-05801b47258f", + "categories": [ + { + "_": "topics:organisations/bbc", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/media-outlets", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T12:15:00.000Z" + }, + { + "creator": "Lilia Sebouai", + "title": "UK expanding mosquito surveillance to counter growing threat of dengue", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/uk-expanding-mosquito-surveillance-counter-spread-dengue/", + "pubDate": "Wed, 06 Dec 2023 11:19:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/06/TELEMMGLPICT000340257476_17018576056540_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lilia Sebouai", + "content": "", + "contentSnippet": "", + "guid": "044b0005-3289-3556-81f1-30dcdc697a24", + "categories": [ + { + "_": "topics:things/Dengue-fever", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ukhsa", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mosquitos", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T11:19:37.000Z" + }, + { + "creator": "Cara McGoogan", + "title": "\u2018I lost both my sons in the infected blood scandal \u2013 whatever compensation will be a complete insult\u2019", + "link": "https://www.telegraph.co.uk/news/2023/12/06/james-peach-infected-blood-hiv-sons-compensation-insult/", + "pubDate": "Wed, 06 Dec 2023 09:27:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/05/TELEMMGLPICT000358992401_17018028930410_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Cara McGoogan", + "content": "", + "contentSnippet": "", + "guid": "443e677e-978a-3a80-a706-4a94e3216774", + "categories": [ + { + "_": "topics:things/hiv", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/blood", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/house-of-commons", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T09:27:27.000Z" + }, + { + "creator": "Sam Dean", + "title": "Declan Rice has become Arsenal\u2019s \u00a3105m game-winning machine after seizing occasion at Luton", + "link": "https://www.telegraph.co.uk/football/2023/12/05/luton-town-vs-arsenal-live-score-updates-premier-league/", + "pubDate": "Wed, 06 Dec 2023 00:01:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/05/TELEMMGLPICT000359027689_17018150210580_trans_NvBQzQNjv4BqaHd6X3lW3lGv45Ug3tlONZ3XVdg1rRzimPdm_Jg3Voo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Dean", + "content": "Arsenal did not pay \u00a3105 million for Declan Rice so he could score last-minute winners. They bought him to mould games, rather than win them. But such is the midfielder\u2019s sheer force of personality, and such is his taste for match-defining moments, that it seems there can be no stopping him when he decides to seize the occasion for his own.

]]>", + "contentSnippet": "", + "guid": "6264f6b9-e129-38a6-a149-90771de18e33", + "categories": [ + { + "_": "topics:organisations/luton-town-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/arsenal-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T00:01:24.000Z" + }, + { + "creator": "Tom Garry", + "title": "Heartbreak for Lionesses as Olympic dream dies despite 6-0 win over Scotland", + "link": "https://www.telegraph.co.uk/football/2023/12/05/england-lionesses-vs-scotland-live-womens-nations-league/", + "pubDate": "Tue, 05 Dec 2023 23:34:22 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/05/TELEMMGLPICT000359024884_17018136940930_trans_NvBQzQNjv4BqopsWLtjmnv0AMAROXgzTrStKdqyxPHHffahTyrI-qJE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom Garry", + "content": "England\u2019s dreams of qualifying for the Olympics on behalf of Team GB were shattered by two late Netherlands goals scored 600 miles away, as they missed out on topping their group on goal-difference despite hammering Scotland 6-0 at Hampden Park.

]]>", + "contentSnippet": "", + "guid": "48902bd6-b75d-337f-9f76-186e169e1209", + "categories": [ + { + "_": "topics:organisations/england-womens-football-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/uefa-nations-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/scotland-football-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-football", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T23:34:22.000Z" + }, + { + "creator": "Charles Hymas", + "title": "Ministers threaten to quit over Rwanda flights law", + "link": "https://www.telegraph.co.uk/politics/2023/12/05/ministers-threaten-to-quit-over-rwanda-flights-law/", + "pubDate": "Tue, 05 Dec 2023 21:55:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/05/TELEMMGLPICT000356824428_17018110829030_trans_NvBQzQNjv4BqS8LvVGaCov9_zEWH2d7j7ZgojZYlP8f0i9h2tPqCNsM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Hymas", + "content": "", + "contentSnippet": "", + "guid": "294a1c20-cec6-3f20-90f5-e312d05b77d7", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/rwanda", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/migration", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/robert-jenrick", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/suella-braverman", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T21:55:24.000Z" + }, + { + "creator": "India McTaggart", + "title": "The Crown cast bid farewell at premiere of final episode", + "link": "https://www.telegraph.co.uk/royal-family/2023/12/05/the-crown-cast-bid-farewell-premiere-final-episode/", + "pubDate": "Tue, 05 Dec 2023 19:16:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/05/TELEMMGLPICT000359005686_17018049289740_trans_NvBQzQNjv4BqxxryREYCtPII-ztC-Q60ECQMGpiNPd9mPPQuBwSCB0s.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "India McTaggart", + "content": "", + "contentSnippet": "", + "guid": "787c8d03-2b25-38b9-897d-149678e41927", + "categories": [ + { + "_": "topics:things/the-crown", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/netflix", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/princess-diana", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/queen-elizabeth-ii", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/king-charles-iii", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/art", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T19:16:55.000Z" + }, + { + "creator": "Charles Richardson", + "title": "Six Nations 2024 referees announced: Who will referee England\u2019s matches?", + "link": "https://www.telegraph.co.uk/rugby-union/2023/12/05/six-nations-championship-2024-referees-announced-matches/", + "pubDate": "Tue, 05 Dec 2023 18:54:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/12/05/TELEMMGLPICT000335494231_17017999708200_trans_NvBQzQNjv4Bqu9d2miJrqdy0WHkNnywGGHSAMUWbLP57EYvvneETxPE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Richardson", + "content": "", + "contentSnippet": "", + "guid": "855d1646-8b8a-31f6-b7a5-040e5507152f", + "categories": [ + { + "_": "topics:events/six-nations", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/scotland-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/france-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/wales-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/italy-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T18:54:12.000Z" + }, + { + "creator": "Dominic Nicholls", + "title": "Ukraine: The Latest - Nato 'has three years to prepare for Russian attack'", + "link": "https://www.telegraph.co.uk/world-news/2023/12/05/nato-has-three-years-to-prepare-for-russian-attack/", + "pubDate": "Tue, 05 Dec 2023 18:49:29 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/04/TELEMMGLPICT000358562517_17017077414910_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Nicholls", + "content": "", + "contentSnippet": "", + "guid": "2d9a7254-4c23-343f-a35d-1d3bb71d75f7", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T18:49:29.000Z" + }, + { + "creator": "Chris Price", + "title": "EU mulls dropping punitive tariff on UK-made electric cars", + "link": "https://www.telegraph.co.uk/business/2023/12/05/ftse-100-markets-news-live-thames-water-us-jobs/", + "pubDate": "Tue, 05 Dec 2023 18:31:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/05/TELEMMGLPICT000309032928_17017924560020_trans_NvBQzQNjv4BqdbdK7XKIbOqTZJ8EaUsLx-9hg0Y37QvHYjcZPVg1zsA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "The European Commission is set to recommend postponing a controversial tariff on electric cars traded between the UK and Europe by three years, according to a Bloomberg report.

]]>", + "contentSnippet": "", + "guid": "94f4105a-3ab7-3f34-8fe4-7228f2d18b91", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T18:31:30.000Z" + }, + { + "creator": "Will Bolton", + "title": "Man arrested after pregnant woman stabbed in Aberfan", + "link": "https://www.telegraph.co.uk/news/2023/12/05/aberfan-stabbing-live-pregnant-woman-manhunt-wales-latest/", + "pubDate": "Tue, 05 Dec 2023 18:11:29 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/05/TELEMMGLPICT000358981587_17018026697950_trans_NvBQzQNjv4BqES0WhgMsErmg72C9l09YW3gaYALc1dyeRw6ZdGqh5go.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Will Bolton", + "content": "Armed police have arrested a 28-year-old man after a pregnant mother-of-two was stabbed repeatedly while dropping her children at school in a village in Wales on Tuesday.

]]>", + "contentSnippet": "", + "guid": "4bd30b35-773b-3269-ab83-90c26da67682", + "categories": [ + { + "_": "topics:places/wales", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/knife-crime", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T18:11:29.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Tuesday evening news briefing: More 2019 Tory voters will back Reform than Labour at next election", + "link": "https://www.telegraph.co.uk/news/2023/12/05/tuesday-evening-news-briefing-more-2019-tory-voters-reform/", + "pubDate": "Tue, 05 Dec 2023 17:38:38 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "213345e5-345a-32d2-bd2d-8d9e50b30cc8", + "categories": [ + { + "_": "topics:people/prince-harry", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/reform-uk", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T17:38:38.000Z" + }, + { + "creator": "Olivia Andrews", + "title": "Slow cooker pork, apple and cider pie recipe", + "link": "https://www.telegraph.co.uk/recipes/0/slow-cooker-recipes-pork-apple-cider-pie/", + "pubDate": "Tue, 05 Dec 2023 16:24:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2019/03/08/TELEMMGLPICT000190368134_trans_NvBQzQNjv4BqbmMp-zB-xhWZu9W8GGg6WGuVQ2xSTrrDgpZPZTrFNHM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Olivia Andrews", + "content": "", + "contentSnippet": "", + "guid": "0638a421-517e-359c-ae1c-e0dd98a41e9c", + "categories": [ + { + "_": "topics:things/slow-cooker-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/apple-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pork-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pie-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/savoury-pie-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink/food-and-drink-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T16:24:10.000Z" + }, + { + "creator": "Dominic Penna", + "title": "Rwanda latest news: Cleverly says migrant flights must 'move quickly' after striking new deal", + "link": "https://www.telegraph.co.uk/politics/2023/12/05/rishi-sunak-news-latest-rwanda-flights-immigration-jenrick/", + "pubDate": "Tue, 05 Dec 2023 16:01:25 GMT", + "dc:creator": "Dominic Penna", + "content": "James Cleverly has said Britain must now be able to \u201cmove quickly\u201d to start Rwanda deportation migrant flights after a new treaty was agreed with the African nation.

]]>", + "contentSnippet": "", + "guid": "10e06d45-8c55-31c7-8ef0-54dac850e5d3", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T16:01:25.000Z" + }, + { + "creator": "Nataliya Vasilyeva", + "title": "Gaza fighting \u2018most intense\u2019 since war began as IDF enters Khan Younis", + "link": "https://www.telegraph.co.uk/world-news/2023/12/05/israel-hamas-palestine-news-latest-idf-raids-headquarters/", + "pubDate": "Tue, 05 Dec 2023 16:00:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/05/TELEMMGLPICT000358952213_17018027067630_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9TWU-KwRaHvlaJXY1texVLQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Nataliya Vasilyeva", + "content": "The Israeli army has had its \u201cmost intense day\u201d of war in Gaza so far, commanders said, as tanks entered the southern city of Khan Younis for the first time while surrounding the strip\u2019s largest refugee camp in the north.

]]>", + "contentSnippet": "war in Gaza so far, commanders said, as tanks entered the southern city of Khan Younis for the first time while surrounding the strip\u2019s largest refugee camp in the north.\n]]>", + "guid": "8e412ed0-afef-376a-9a0c-f3a97543dc96", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T16:00:19.000Z" + }, + { + "creator": "Donal Skehan", + "title": "One-pan 'roast' chicken with potatoes, kale and thyme recipe\u00a0\u00a0", + "link": "https://www.telegraph.co.uk/recipes/0/one-pan-roast-chicken-potatoes-kale-thyme-recipe/", + "pubDate": "Tue, 05 Dec 2023 15:47:45 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2019/11/01/chickendonal_trans_NvBQzQNjv4BqRRSmT6cvkmeECxVzj5L_rO0XE_qwLiP6-oxi2lfTk2E.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Donal Skehan", + "content": "", + "contentSnippet": "", + "guid": "1a20fc22-fc3b-34a1-b822-30e00b241aa2", + "categories": [ + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/one-pot-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chicken-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink/food-and-drink-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/quick-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T15:47:45.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Ukraine-Russia war: Putin snubs British ambassador as he keeps distance 'for sanitary reasons'", + "link": "https://www.telegraph.co.uk/world-news/2023/12/05/ukraine-russia-war-news-live-nato-poland-putin-zelensky/", + "pubDate": "Tue, 05 Dec 2023 15:07:06 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/05/TELEMMGLPICT000358984098_17017885475800_trans_NvBQzQNjv4Bqm2LUNC0Q0toWAKO9iKM9CFLaN9eYSx2Gg9IZjJxTT94.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "content": "Vladimir Putin snubbed the new British ambassador to Moscow as he kept his distance from a gathering of foreign diplomats \u201cfor sanitary reasons\u201d.

]]>", + "contentSnippet": "", + "guid": "d55b09e6-2ea1-397b-8b0d-6e3de5bd4674", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T15:07:06.000Z" + }, + { + "creator": "Al Morgan", + "title": "The best ski jackets of 2023 reviewed by a ski expert", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-ski-jackets/", + "pubDate": "Tue, 05 Dec 2023 14:59:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/12/01/TELEMMGLPICT000358558877_17014453107560_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Al Morgan", + "content": "", + "contentSnippet": "", + "guid": "3da7b78b-fa5a-3481-add3-75c17404b555", + "categories": [ + { + "_": "topics:things/alpine-skiing", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cross-country-skiing", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/freestyle-skiing", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/snow", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Snowboard", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:skiing", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T14:59:44.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The 14 best mattresses of 2023 tried and tested at home, including hybrid mattresses", + "link": "https://www.telegraph.co.uk/health-fitness/mind/best-mattress/", + "pubDate": "Tue, 05 Dec 2023 12:36:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/06/16/TELEMMGLPICT000339540092_16869168700310_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "4a69557b-b5a5-360c-8db2-2cdc81bed2ed", + "categories": [ + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T12:36:55.000Z" + }, + { + "creator": "Tim Wigmore", + "title": "England hit new low as brutal West Indies and Shai Hope tear into Sam Curran", + "link": "https://www.telegraph.co.uk/cricket/2023/12/03/west-indies-vs-england-live-first-odi-score-latest-updates/", + "pubDate": "Tue, 05 Dec 2023 12:31:06 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/05/TELEMMGLPICT000358793339_17017791189850_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Wigmore", + "content": "Losing six games in the World Cup was bad enough. Now, England\u2019s one-day international side have added an unwanted encore: defeat to a side who did not even qualify. West Indies, vanquished by Zimbabwe, Netherlands and Scotland in the World Cup qualifiers five months ago, added to the turmoil facing England by chasing down 326 at Sir Vivian Richards Stadium.

]]>", + "contentSnippet": "", + "guid": "46a283ce-6460-3d5a-8f96-e2ba04c59370", + "categories": [ + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/west-indies-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/matthew-mott", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jos-buttler", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T12:31:06.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best Christmas gifts 2023: your guide to the 23 top presents on everyone's wish list this year", + "link": "https://www.telegraph.co.uk/christmas/best-christmas-gifts-ideas-presents-wishlist/", + "pubDate": "Tue, 05 Dec 2023 12:30:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2022/11/29/TELEMMGLPICT000317870055_trans_NvBQzQNjv4Bqbe775R1SNzm4sSSdJaF7PFKgqRD8QjI0RaZmbYcesHw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "ffe75cf1-3609-3ec5-8454-86c719575181", + "categories": [ + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/father-christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T12:30:10.000Z" + }, + { + "creator": "Jack Rear", + "title": "\u2018Andy had this sudden excruciating headache \u2013 then went blind\u2019", + "link": "https://www.telegraph.co.uk/christmas/2023/12/05/brain-haemorrhage-medical-discharge-raf-benevolent-fund/", + "pubDate": "Tue, 05 Dec 2023 10:22:32 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/04/TELEMMGLPICT000358401816_17016968860810_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Rear", + "content": "", + "contentSnippet": "", + "guid": "d1cbda51-fb50-3ba5-9591-76b640ed87ec", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/raf-benevolent-fund", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T10:22:32.000Z" + }, + { + "creator": "Will Macpherson", + "title": "Mitchell Johnson\u2019s attack on David Warner was sparked by a text message", + "link": "https://www.telegraph.co.uk/cricket/2023/12/05/mitchell-johnson-vs-david-warner-sparked-by-text-message/", + "pubDate": "Tue, 05 Dec 2023 09:12:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/05/TELEMMGLPICT000358870803_17017670338330_trans_NvBQzQNjv4Bq0fwJ57jCeZfxOoV9E2WRemaIITNODXNq__2rJZjxWpQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Will Macpherson", + "content": "", + "contentSnippet": "", + "guid": "dd2e1813-3a3c-3e66-b8fe-872c0a917797", + "categories": [ + { + "_": "topics:people/david-warner", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/australia-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T09:12:35.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "Watch: Massive explosion blows up house near US capital", + "link": "https://www.telegraph.co.uk/us/news/2023/12/05/arlington-explosion-house-virginia-dc-suspect-flare/", + "pubDate": "Tue, 05 Dec 2023 05:19:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/12/05/TELEMMGLPICT000358931694_17017457972460_trans_NvBQzQNjv4BqUqSNHYGcObKf-KUxsZkxG0Wy_sGK6oioMu5BzggyGUY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "content": "", + "contentSnippet": "", + "guid": "2f8ff587-4837-3458-9a1b-532f340647eb", + "categories": [ + { + "_": "topics:things/fire", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T05:19:14.000Z" + }, + { + "creator": "Roger Maynard", + "title": "King and Queen plan to visit Australia in 2024", + "link": "https://www.telegraph.co.uk/royal-family/2023/12/05/king-charles-queen-camilla-plan-to-visit-australia-nz/", + "pubDate": "Tue, 05 Dec 2023 00:28:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/04/TELEMMGLPICT000358127664_17017338856230_trans_NvBQzQNjv4Bq3GpLWECzklI-njwuIQUgrSThyOqAj-Q6qyYzl0KSl0Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Roger Maynard", + "content": "", + "contentSnippet": "", + "guid": "ef31a5f0-9601-3ce1-a5ba-d4a8fd12c029", + "categories": [ + { + "_": "topics:people/king-charles-iii", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/camilla-queen-consort", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/australia", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-05T00:28:41.000Z" + }, + { + "creator": "Charles Hymas", + "title": "Cleverly pledges to deliver biggest ever reduction in net migration", + "link": "https://www.telegraph.co.uk/politics/2023/12/04/new-measures-slash-net-migration-300000-james-cleverly/", + "pubDate": "Mon, 04 Dec 2023 21:15:04 GMT", + "dc:creator": "Charles Hymas", + "content": "", + "contentSnippet": "", + "guid": "b86adcd4-cfec-3fec-8ef4-4918c12cebbe", + "categories": [ + { + "_": "topics:things/immigration", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/migration", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/james-cleverly", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/suella-braverman", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T21:15:04.000Z" + }, + { + "creator": "Samuel Montgomery", + "title": "UK weather: More than 150 flood alerts as heavy rain to batter Britain", + "link": "https://www.telegraph.co.uk/news/2023/12/04/uk-weather-news-latest-flood-warnings-heavy-rain-live/", + "pubDate": "Mon, 04 Dec 2023 21:02:56 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/04/TELEMMGLPICT000358864260_17016958625400_trans_NvBQzQNjv4BqhasgUMiR-rxiRxu9qBoVLdUcsNjZWwQQAqx2KspIOLE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Samuel Montgomery", + "content": "More than 150 flood alerts have been issued across the country as the Met Office warned of heavy rain and ice.

]]>", + "contentSnippet": "", + "guid": "d1013d22-533c-34eb-a303-52095e6e92b0", + "categories": [ + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/met-office", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/flooding", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T21:02:56.000Z" + }, + { + "creator": "Chris Price", + "title": "Pension fund ownership of UK stocks hits record low", + "link": "https://www.telegraph.co.uk/business/2023/12/04/ftse-100-markets-news-live-gold-price-high-interest-rates/", + "pubDate": "Mon, 04 Dec 2023 18:22:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/04/TELEMMGLPICT000358504821_17017020839190_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "Pension fund\u2019s share of Britain\u2019s stock markets has fallen to a record low, official figures show, as they seek more profitable returns overseas.

]]>", + "contentSnippet": "", + "guid": "0f0f83a5-82fd-36b7-9adf-baa2812f1b07", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T18:22:10.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Monday evening news briefing: New measures will slash migration arrivals by 300,000, says Cleverly", + "link": "https://www.telegraph.co.uk/news/2023/12/04/monday-evening-news-briefing-new-measure-cleverly-migration/", + "pubDate": "Mon, 04 Dec 2023 17:44:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "8249dabb-b56b-3678-a0d9-8e58ea888e32", + "categories": [ + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/james-cleverly", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/migration", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T17:44:27.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "Child pneumonia cases emerge in Europe as China battles wave of respiratory illness", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/child-pneumonia-europe-france-ireland-denmark-netherlands/", + "pubDate": "Mon, 04 Dec 2023 17:23:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/04/TELEMMGLPICT000357627030_17017101644630_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "17877c5b-d9f8-309a-8c61-a2ed858b4458", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pandemics-epidemics", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/china", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/europe", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T17:23:50.000Z" + }, + { + "creator": "Dominic Penna", + "title": "As it happened: James Cleverly rejects calls to put a cap on migrant numbers", + "link": "https://www.telegraph.co.uk/politics/2023/12/04/rishi-sunak-news-latest-bbc-tv-licence-fee-keir-starmer/", + "pubDate": "Mon, 04 Dec 2023 17:14:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/04/TELEMMGLPICT000358881480_17017099803230_trans_NvBQzQNjv4BqUa2thMnvKQadTDM5oFKzfIBaZKwVQaCcGMe8NJ-Iq1g.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Penna", + "content": "James Cleverly rejected Tory calls to put a cap on the number of migrants coming to Britain every year as he set out a new five-point plan designed to reduce arrivals.

]]>", + "contentSnippet": "as he set out a new five-point plan designed to reduce arrivals.\n]]>", + "guid": "e394edbd-ffeb-34dd-a147-ba3520ebb74d", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T17:14:43.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Main road in Gaza a 'battlefield'", + "link": "https://www.telegraph.co.uk/world-news/2023/12/04/israel-hamas-palestine-south-gaza-war-ceasefire-news-latest/", + "pubDate": "Mon, 04 Dec 2023 16:53:26 GMT", + "dc:creator": "Maighna Nanu", + "content": "Gaza\u2019s main road is a \u201cbattlefield,\u201d the Israel Defense Forces has said, as it claimed it was opening a new humanitarian corridor for civilians to evacuate.

]]>", + "contentSnippet": "", + "guid": "cc34be3d-f282-375c-aa11-90dfa5087107", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T16:53:26.000Z" + }, + { + "creator": "Dominic Nicholls", + "title": "Ukraine: The Latest - US aid to Ukraine will run out 'by end of month'", + "link": "https://www.telegraph.co.uk/world-news/2023/12/04/us-aid-to-ukraine-will-run-out-by-end-of-month/", + "pubDate": "Mon, 04 Dec 2023 16:36:20 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/04/TELEMMGLPICT000358562517_17017077414910_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Nicholls", + "content": "", + "contentSnippet": "", + "guid": "031b02af-bdc7-3886-94dd-c48c4351c4cb", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T16:36:20.000Z" + }, + { + "creator": "Jessica Salter", + "title": "The 26 best Christmas crackers of 2023, from luxury crackers to traditional choices", + "link": "https://www.telegraph.co.uk/christmas/best-christmas-crackers/", + "pubDate": "Mon, 04 Dec 2023 15:36:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/27/TELEMMGLPICT000354563213_16983977417550_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jessica Salter", + "content": "", + "contentSnippet": "", + "guid": "cdb2f9db-4f45-39d7-9eb7-e5ef72e032e5", + "categories": [ + { + "_": "topics:things/christmas-crackers", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-dinner", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T15:36:34.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "Hand-held sequencing device may help track resistant-malaria in African hotspots", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/hand-held-sequencing-device-track-resistant-malaria-hotspot/", + "pubDate": "Mon, 04 Dec 2023 15:05:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/04/TELEMMGLPICT000162950048_17017008406700_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "fd87dfad-1c80-3465-bad0-ccde017afbaa", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/malaria", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mosquitos", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T15:05:55.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Ukraine-Russia war: Russian casualties in Ukraine 'top 320,000'", + "link": "https://www.telegraph.co.uk/world-news/2023/12/04/russia-ukraine-war-news-latest-putin-zelensky-surrender/", + "pubDate": "Mon, 04 Dec 2023 15:05:28 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/04/TELEMMGLPICT000358734111_17016875300490_trans_NvBQzQNjv4BqywFt80tUnoDwkX1erFXhtlHmPOpeFd0SyQx9dn7kM_w.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "content": "Russia may have suffered more than 320,000 casualties in Ukraine, the British Ministry of Defence (MoD) has said.

]]>", + "contentSnippet": "", + "guid": "50562004-bece-3987-b931-22448d29e4ce", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T15:05:28.000Z" + }, + { + "creator": "Sarah Newey", + "title": "World\u2019s first \u2018dengue dashboard\u2019 could predict outbreaks months before they happen", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/dengue-dashboard-climate-change-mosquitoes-dieases-viruses/", + "pubDate": "Mon, 04 Dec 2023 13:34:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/04/TELEMMGLPICT000356638456_17016963076460_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "content": "", + "contentSnippet": "", + "guid": "178464b7-2c63-3f3c-97db-3034bc8de259", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Dengue-fever", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mosquitos", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/climate-change", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/viruses", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-04T13:34:24.000Z" + }, + { + "creator": "Jamie Bullen", + "title": "Prince Harry phone hacking: Duke 'on mission to trash monarchy', says Piers Morgan", + "link": "https://www.telegraph.co.uk/royal-family/2023/12/15/prince-harry-daily-mirror-hacking-claim-live/", + "pubDate": "Fri, 15 Dec 2023 15:30:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/15/TELEMMGLPICT000360108382_17026541070540_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jamie Bullen", + "content": "Piers Morgan has accused Prince Harry of attempting to trash the monarchy in his \u201creal mission\u201d as he responded to a High Court ruling that found the Duke was a victim of phone hacking.

]]>", + "contentSnippet": "", + "guid": "5f496d6d-2f3d-3092-bdc1-4955cc974484", + "categories": [ + { + "_": "topics:people/prince-harry", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/newspapers", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/high-court", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T15:30:53.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The 31 best Christmas hampers of 2023, from Fortnum and Mason to Marks and Spencer", + "link": "https://www.telegraph.co.uk/christmas/best-christmas-hampers/", + "pubDate": "Fri, 15 Dec 2023 15:29:48 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/16/TELEMMGLPICT000353315320_16974498644990_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "fafd6a29-ee22-37cb-8f20-b0fcdacd1fe3", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-hampers", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/party-food", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T15:29:48.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Israel-Hamas war live: Israeli border opens to Gaza aid for first time", + "link": "https://www.telegraph.co.uk/world-news/2023/12/15/israel-hamas-war-latest-news-updates-gaza-day-69-live/", + "pubDate": "Fri, 15 Dec 2023 15:15:32 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/15/TELEMMGLPICT000360066104_17026271190220_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "content": "Israel will allow aid to cross its border into Gaza for the first time, Benjamin Netanyahu has announced.

]]>", + "contentSnippet": "", + "guid": "b52bf7ec-4b78-3009-b76e-9c3bafb87d8d", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T15:15:32.000Z" + }, + { + "creator": "Samuel Montgomery", + "title": "Ukraine-Russia war live: 26 injured after Ukrainian councillor detonates grenades at meeting", + "link": "https://www.telegraph.co.uk/world-news/2023/12/15/ukraine-russia-war-news-latest-councillor-grenade-keretsky/", + "pubDate": "Fri, 15 Dec 2023 15:08:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/15/TELEMMGLPICT000360095136_17026444869900_trans_NvBQzQNjv4BqFZ2mKB99NyfWHs4BvtAqLn4ihL9D5G77hk2Gx25ScXg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Samuel Montgomery", + "content": "A Ukrainian local councillor detonated grenades at a village meeting, leaving at least 26 people injured.

]]>", + "contentSnippet": "", + "guid": "bfa2172c-cf24-386b-bd24-533bcbcc1b5c", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T15:08:34.000Z" + }, + { + "creator": "James Ducker", + "title": "Erik ten Hag: I don't fear the sack \u2013 even if Man Utd lose to Liverpool", + "link": "https://www.telegraph.co.uk/football/2023/12/15/erik-ten-hag-job-safe-manchester-united-liverpool/", + "pubDate": "Fri, 15 Dec 2023 14:49:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/15/TELEMMGLPICT000359806294_17026515559180_trans_NvBQzQNjv4Bq_mHiDEG16rE8WJnnB5wUR92WfFKv9icEus7KKlx7_s8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "James Ducker", + "content": "", + "contentSnippet": "", + "guid": "b5a006f9-f116-3522-a88a-438b7f9a9520", + "categories": [ + { + "_": "topics:organisations/manchester-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/liverpool-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/erik-ten-hag", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T14:49:27.000Z" + }, + { + "creator": "James Warrington", + "title": "UK economy bounces back as business activity hits six-month high - latest updates", + "link": "https://www.telegraph.co.uk/business/2023/12/15/ftse-100-markets-gas-gazprom-russia-sanctions-uk/", + "pubDate": "Fri, 15 Dec 2023 14:16:07 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/15/TELEMMGLPICT000358879077_17026480666400_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdGLvJF5WfpqnBZShRL_tOZw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "James Warrington", + "content": "Britain\u2019s economy bounced back at the end of the year as activity rose to a six-month high amid \u201ctentative signs\u201d of a revival in demand, a closely-watched survey showed.

]]>", + "contentSnippet": "", + "guid": "7267e393-7a28-3ab9-8208-ec9fa2f0363b", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T14:16:07.000Z" + }, + { + "creator": "Nataliya Vasilyeva", + "title": "Battle Lines: 'If there is one Hamas guy without a right arm, but with his left hand makes a victory sign \u2013 we lost'", + "link": "https://www.telegraph.co.uk/world-news/2023/12/15/battle-lines-hamas-idf-bethlehem/", + "pubDate": "Fri, 15 Dec 2023 13:03:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/14/TELEMMGLPICT000359672782_17025746452400_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9TWU-KwRaHvlaJXY1texVLQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Nataliya Vasilyeva", + "content": "", + "contentSnippet": "", + "guid": "0265040e-f549-3e4e-ba73-2724609ff341", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/battle-lines", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T13:03:44.000Z" + }, + { + "creator": "Alice Barraclough", + "title": "The best fitness trackers in 2023 to help you stay active", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-fitness-trackers-watches/", + "pubDate": "Fri, 15 Dec 2023 13:03:13 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/11/TELEMMGLPICT000321696243_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alice Barraclough", + "content": "", + "contentSnippet": "", + "guid": "7f18a13c-42b6-3672-aa08-b8ae5dea9287", + "categories": [ + { + "_": "topics:things/exercise", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/apple-watch", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/smartwatches", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep-hygiene", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/more-telegraph-recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T13:03:13.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Channel migrant death 'stark reminder' of small boats danger, says No10", + "link": "https://www.telegraph.co.uk/politics/2023/12/15/rishi-sunak-news-latest-rwanda-tories-george-osborne/", + "pubDate": "Fri, 15 Dec 2023 12:42:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/15/TELEMMGLPICT000338321953_17026438851820_trans_NvBQzQNjv4Bq7geLMoG17vYWpU6PNwRUHVFx7oZS3G0ps1JcMwBJxFI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "content": "A small boat incident in the Channel that resulted in the death of a migrant serves as a \u201cstark reminder\u201d of the danger of the crossings and of the need to stop the journeys, Downing Street said. 

]]>", + "contentSnippet": "", + "guid": "25705ad9-9f16-3806-a01e-77b88b24d989", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T12:42:57.000Z" + }, + { + "creator": "Victoria Ward", + "title": "Queen Camilla to release literary podcast", + "link": "https://www.telegraph.co.uk/royal-family/2023/12/15/queen-reading-room-podcast-camilla-charity-joanna-lumley/", + "pubDate": "Fri, 15 Dec 2023 12:27:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/15/TELEMMGLPICT000360073774_17026412947690_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Victoria Ward", + "content": "", + "contentSnippet": "", + "guid": "4e7d7106-07d1-35b2-b0d7-e381698468f1", + "categories": [ + { + "_": "topics:people/camilla-queen-consort", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/joanna-lumley", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/podcast-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T12:27:37.000Z" + }, + { + "creator": "Lilia Sebouai", + "title": "Scientists spooked by \u2018unusual\u2019 surge in anthrax cases across Africa", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/anthrax-cases-surge-across-african-countries-infections/", + "pubDate": "Fri, 15 Dec 2023 12:08:31 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/14/TELEMMGLPICT000359693151_17025760788660_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lilia Sebouai", + "content": "", + "contentSnippet": "", + "guid": "57214b59-e290-3179-a154-d511643429ed", + "categories": [ + { + "_": "topics:things/anthrax", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/kenya", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/uganda", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/zambia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/zimbabwe", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/africa", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T12:08:31.000Z" + }, + { + "creator": "Victoria Ward", + "title": "Prince Harry was victim of phone hacking by Mirror newspapers, judge rules", + "link": "https://www.telegraph.co.uk/royal-family/2023/12/15/extensive-hacking-mirror-newspapers-prince-harry/", + "pubDate": "Fri, 15 Dec 2023 11:57:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/royal-family/2023/12/15/TELEMMGLPICT000330335115_17026410006080_trans_NvBQzQNjv4BqYMKUW9Qu9n7-0PNEPWU6N_9hv29CmyFCD-uy3oC1n2c.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Victoria Ward", + "content": "", + "contentSnippet": "", + "guid": "ac47c248-d9e5-35b7-a74a-21dfcfb43d91", + "categories": [ + { + "_": "topics:people/prince-harry", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/high-court", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/newspapers", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T11:57:19.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best fridge freezers in 2023, recommended by experts - from integrated to American-style", + "link": "https://www.telegraph.co.uk/interiors/home/best-fridge-freezers/", + "pubDate": "Fri, 15 Dec 2023 11:55:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/interiors/2023/12/14/TELEMMGLPICT000360003517_17025708270720_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "97340dfd-06c8-364d-825f-1cac95612f47", + "categories": [ + { + "_": "topics:things/kitchen-equipment", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fruit-and-vegetables", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tomatoes", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T11:55:25.000Z" + }, + { + "creator": "Stephen Harris", + "title": "The perfect stuffing blueprint recipe", + "link": "https://www.telegraph.co.uk/recipes/0/perfect-stuffing-blueprint-recipe/", + "pubDate": "Fri, 15 Dec 2023 11:52:38 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2020/12/10/TELEMMGLPICT000245808558_trans_NvBQzQNjv4Bqod34IAFs8Kd6ENjUhND5WlVse9JsN00kzbUr3IXHaGo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Stephen Harris", + "content": "The idea of this recipe is to give you an interchangeable recipe for stuffing that will allow you to adapt it to your situation. This means you can change the fruit, nuts or herbs without having to find a new recipe. Interestingly, I even ran out of breadcrumbs for one batch and just used blitzed-up Weetabix \u2013 you couldn\u2019t tell the difference.

]]>", + "contentSnippet": "", + "guid": "33158d06-6900-3aeb-8b30-f30283f0e24b", + "categories": [ + { + "_": "topics:things/roast-dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pork-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/side-dish-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/turkey-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:stephen-harris", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T11:52:38.000Z" + }, + { + "creator": "Eleanor Steafel", + "title": "Brothy aubergine and chickpea pasta with feta recipe", + "link": "https://www.telegraph.co.uk/recipes/0/brothy-aubergine-and-chickpea-pasta-with-feta-recipe/", + "pubDate": "Fri, 15 Dec 2023 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/14/TELEMMGLPICT000359975454_17025665451810_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Eleanor Steafel", + "content": "", + "contentSnippet": "", + "guid": "c60c5bf1-7114-3d36-8ce1-ec707553f875", + "categories": [ + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pasta-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T11:00:00.000Z" + }, + { + "creator": "Dominic Nicholls", + "title": "\u2018Resistance is calling\u2019: Does the West want Ukraine to win or just not to lose? | Defence in Depth", + "link": "https://www.telegraph.co.uk/world-news/2023/12/15/russia-ukraine-war-2024-west-resistance-explained-defence/", + "pubDate": "Fri, 15 Dec 2023 08:00:00 GMT", + "dc:creator": "Dominic Nicholls", + "content": "", + "contentSnippet": "", + "guid": "93224fee-fb76-3ef1-9044-15f5c0bbdbab", + "categories": [ + { + "_": "topics:things/defence-in-depth", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/russion-invasion", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/explained-ukraine-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion/Premium-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T08:00:00.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "Hungary blocks \u20ac50bn EU aid package for Ukraine", + "link": "https://www.telegraph.co.uk/world-news/2023/12/15/hungary-viktor-orban-blocks-aid-ukraine-war/", + "pubDate": "Fri, 15 Dec 2023 03:49:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/15/TELEMMGLPICT000360005844_17026115489240_trans_NvBQzQNjv4Bq8au60oU1QkgHWpyU7hPMD-slRO2e6rkpibrYDxDW61I.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "content": "", + "contentSnippet": "", + "guid": "4450cdff-a3ec-3fa9-b5eb-1357384d4415", + "categories": [ + { + "_": "topics:places/hungary", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/viktor-orban", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-15T03:49:05.000Z" + }, + { + "creator": "Press Association", + "title": "Disgraced club president who punched referee handed lifetime ban by Turkish FA", + "link": "https://www.telegraph.co.uk/football/2023/12/14/faruk-koca-banned-life-president-punching-referee-turkish/", + "pubDate": "Thu, 14 Dec 2023 23:41:14 GMT", + "dc:creator": "Press Association", + "content": "", + "contentSnippet": "", + "guid": "04f55090-22a4-360f-81c6-6c7820e40d0a", + "categories": [ + { + "_": "topics:places/turkey", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T23:41:14.000Z" + }, + { + "creator": "Press Association", + "title": "Rangers into Europa League last 16 after famous Real Betis win", + "link": "https://www.telegraph.co.uk/football/2023/12/14/real-betis-vs-rangers-europa-league-live-score-updates/", + "pubDate": "Thu, 14 Dec 2023 22:37:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360039225_17025930910250_trans_NvBQzQNjv4BqjIwIjDXBmcU79gdGK1cNfuil7a1KV2STY3xRqqFt_No.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Press Association", + "content": "Kemar Roofe\u2019s late goal earned Rangers a memorable 3-2 win against Real Betis to send the Scottish side into the Europa League knockout stages.

]]>", + "contentSnippet": "", + "guid": "dfe88504-736c-339a-b22e-bf3e10e1638b", + "categories": [ + { + "_": "topics:organisations/rangers-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/real-betis", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/europa-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T22:37:17.000Z" + }, + { + "creator": "Nick Szczepanik", + "title": "Joao Pedro continues to pay back his record fee as Brighton take top spot", + "link": "https://www.telegraph.co.uk/football/2023/12/14/brighton-vs-marseille-result-joao-pedro-winner-top-group/", + "pubDate": "Thu, 14 Dec 2023 22:28:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360041506_17025927067400_trans_NvBQzQNjv4Bqc8zxOHHUUslDhQm6vb81qPUJn57ATPrZB76tyckjLYM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Nick Szczepanik", + "content": "", + "contentSnippet": "", + "guid": "09dfa368-877e-39b4-91db-b8e954ff32f9", + "categories": [ + { + "_": "topics:organisations/brighton-and-hove-albion-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/olympique-marseille", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/europa-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T22:28:02.000Z" + }, + { + "creator": "Fiona Tomas", + "title": "Chelsea drop precious points in Champions League draw with BK Hacken", + "link": "https://www.telegraph.co.uk/football/2023/12/14/chelsea-frustrated-goalless-champions-league-draw-bk-hacken/", + "pubDate": "Thu, 14 Dec 2023 22:27:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360036980_17025923024730_trans_NvBQzQNjv4BqYO7_xiyF6r3HKBKXSTLIcZPFruVp4RhabY5IM9oKnWI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Fiona Tomas", + "content": "", + "contentSnippet": "", + "guid": "5143c1a3-b2ba-397b-8c91-28d0fe46d2dd", + "categories": [ + { + "_": "topics:organisations/chelsea-women", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T22:27:24.000Z" + }, + { + "creator": "Chris Bascombe", + "title": "All thoughts on Man Utd after Liverpool youngsters come up short in Europa League", + "link": "https://www.telegraph.co.uk/football/2023/12/14/union-saint-gilloise-vs-liverpool-europa-league-live-score/", + "pubDate": "Thu, 14 Dec 2023 21:52:38 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360022555_17025865256170_trans_NvBQzQNjv4Bq3RpaBaWJNrs0G7lEcm1B9uI9F-hLs3tNHhVCenTmFqY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Bascombe", + "content": "There was a nod to the future as Liverpool suffered a successive European away defeat; three days into the future, to be precise.

]]>", + "contentSnippet": "", + "guid": "b1781a2b-a692-3fa3-bd7a-56589c504cbb", + "categories": [ + { + "_": "topics:organisations/liverpool-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/europa-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T21:52:38.000Z" + }, + { + "creator": "Rob Smyth", + "title": "Sam Curran concedes 30 from one over in England's latest defeat by West Indies", + "link": "https://www.telegraph.co.uk/cricket/2023/12/14/west-indies-vs-england-live-second-t20-latest-updates/", + "pubDate": "Thu, 14 Dec 2023 21:49:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/15/TELEMMGLPICT000359813514_17026357144180_trans_NvBQzQNjv4BqxvYj55BnqfNs_9vjydJAGXQkaJhbZZszza9BpIpi36g.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rob Smyth", + "content": "Twenty-one months ago, England\u2019s 10-wicket defeat in the spice island, which took the Test side\u2019s run to one victory in 17 games, deepened the team\u2019s malaise. It also proved the catalyst for the remarkable changes that have followed.

]]>", + "contentSnippet": "", + "guid": "4f5192e7-d471-321b-a974-488d402e0542", + "categories": [ + { + "_": "topics:organisations/west-indies-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-and-wales-cricket-board", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T21:49:12.000Z" + }, + { + "creator": "John Percy", + "title": "Aston Villa can focus on Premier League title race with break from Europe", + "link": "https://www.telegraph.co.uk/football/2023/12/14/zrinjski-vs-aston-villa-result-unai-emery-nicolo-zaniolo/", + "pubDate": "Thu, 14 Dec 2023 20:57:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/14/TELEMMGLPICT000360025436_17025869972880_trans_NvBQzQNjv4Bqo7uk9bl_VoYwz3727EYI82f2uuNjS-P7rfeDr73qFa4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "John Percy", + "content": "", + "contentSnippet": "", + "guid": "3df0f45a-7bc0-3d01-9e51-ff181b4bc715", + "categories": [ + { + "_": "topics:organisations/aston-villa-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/europa-conference-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T20:57:19.000Z" + }, + { + "creator": "Judith Woods", + "title": "\u2018For these children, this is the only Christmas they will know; the only chance of a stocking\u2019", + "link": "https://www.telegraph.co.uk/christmas/2023/12/14/christmas-2023-telegraph-christmas-charity-appeal-go-beyond/", + "pubDate": "Thu, 14 Dec 2023 20:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/12/TELEMMGLPICT000359316701_17024019434050_trans_NvBQzQNjv4BqrpfQw2hJyG_yckwxPAr0gmyy-GsNrhPQbLesooHneHs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Judith Woods", + "content": "", + "contentSnippet": "", + "guid": "e8c7653d-f8f5-3d27-8495-4ff9625f7b58", + "categories": [ + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/go-beyond", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T20:00:00.000Z" + }, + { + "creator": "Poppie Platt", + "title": "Strictly Come Dancing 2023: how each pair fared in the competition", + "link": "https://www.telegraph.co.uk/tv/0/strictly-come-dancing-2023-line-up-contestants/", + "pubDate": "Thu, 14 Dec 2023 19:25:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tv/2023/09/18/TELEMMGLPICT000349591801_16950581844180_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Poppie Platt", + "content": "", + "contentSnippet": "", + "guid": "27cdf54e-813f-3e5d-8f47-80c2799a7ccf", + "categories": [ + { + "_": "topics:things/strictly-come-dancing", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bbc", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/tess-daly", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/claudia-winkleman", + "$": { + "domain": "" + } + }, + { + "_": "structure:television", + "$": { + "domain": "" + } + }, + { + "_": "structure:television/television-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/entertainment", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T19:25:19.000Z" + }, + { + "creator": "Matt Oliver", + "title": "Pound jumps as Bank of England warns no interest rate cuts coming soon", + "link": "https://www.telegraph.co.uk/business/2023/12/14/ftse-100-markets-news-interest-rate-decision-bank-england/", + "pubDate": "Thu, 14 Dec 2023 18:45:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/14/TELEMMGLPICT000359912611_17025446734460_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Matt Oliver", + "content": "The pound has leapt higher after Bank of England held interest rates at their current 15-year high and signalled cuts were not coming soon. 

]]>", + "contentSnippet": "", + "guid": "21b1babf-9e96-364c-80d6-dc04bd6b2c26", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T18:45:37.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Thursday evening news briefing: New CCTV footage of Gaynor Lord released", + "link": "https://www.telegraph.co.uk/news/2023/12/14/thursday-evening-news-briefing-new-cctv-footage-gaynor-lord/", + "pubDate": "Thu, 14 Dec 2023 17:48:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "b38b52b8-c508-3876-a9eb-ecd739f0c582", + "categories": [ + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/norwich", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T17:48:10.000Z" + }, + { + "creator": "Simon Lewis", + "title": "47 of the best Christmas gifts for men in 2023, including last minute present ideas from under \u00a320", + "link": "https://www.telegraph.co.uk/family/relationships/best-gifts-present-ideas-men-last-minute/", + "pubDate": "Thu, 14 Dec 2023 17:04:39 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/family/2023/01/26/TELEMMGLPICT000323349903_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "63865bcb-af51-325b-8d31-ef8702cc2469", + "categories": [ + { + "_": "topics:things/luxury-mens-style", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:family", + "$": { + "domain": "" + } + }, + { + "_": "structure:family/relationships", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T17:04:39.000Z" + }, + { + "creator": "Sarah Rodrigues", + "title": "How gardening helps to burn calories in winter", + "link": "https://www.telegraph.co.uk/gardening/problem-solving/how-gardening-helps-burn-calories-winter-exercise-uk-2022/", + "pubDate": "Thu, 14 Dec 2023 16:46:26 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2022/01/19/GettyImages-1336297418_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Rodrigues", + "content": "", + "contentSnippet": "", + "guid": "b2a059e7-a395-3d2e-a927-acdb2da2a908", + "categories": [ + { + "_": "topics:things/exercise", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T16:46:26.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Ukraine fends off missile attack amid Putin's marathon phone-in", + "link": "https://www.telegraph.co.uk/world-news/2023/12/14/ukraine-fends-off-missile-attack-amid-putins-marathon/", + "pubDate": "Thu, 14 Dec 2023 16:07:26 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/14/TELEMMGLPICT000359995025_17025699545400_trans_NvBQzQNjv4BqrpfQw2hJyG_yckwxPAr0gmyy-GsNrhPQbLesooHneHs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "fa565ae5-e980-3666-9954-bb874ac0e529", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T16:07:26.000Z" + }, + { + "creator": "Ben Farmer", + "title": "West Africa grapples with a wave of diphtheria as vaccine coverage slips", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/west-africa-diphtheria-infections-outbreak-vaccine-gaps/", + "pubDate": "Thu, 14 Dec 2023 16:04:49 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/14/TELEMMGLPICT000357678632_17025686052740_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Farmer", + "content": "", + "contentSnippet": "", + "guid": "59269649-6788-3ed4-8aa5-2dfd7af45932", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vaccines", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pandemics-epidemics", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/west-africa", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/africa", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T16:04:49.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Labour extend poll lead over Tories to 17 points as Reform UK support climbs", + "link": "https://www.telegraph.co.uk/politics/2023/12/14/rishi-sunak-news-latest-rwanda-vote-farage-damian-hinds/", + "pubDate": "Thu, 14 Dec 2023 16:00:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/14/TELEMMGLPICT000359967052_17025508088850_trans_NvBQzQNjv4Bq4SCt4BtKuPgBxV2nxOKGfbQBMGlqc4ZbUgb735iCRYE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "content": "Labour hold a 17 point poll lead over the Tories and support for Reform UK has increased, according to a new survey published today by Savanta. 

]]>", + "contentSnippet": "", + "guid": "c02ea87d-eb05-3a01-8577-4ac9f27aad2c", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T16:00:44.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Ukraine-Russia war: Russia fires hypersonic missiles at Kyiv in rare daytime attack", + "link": "https://www.telegraph.co.uk/world-news/2023/12/14/ukraine-russia-war-news-latest-moscow-drones-putin-address/", + "pubDate": "Thu, 14 Dec 2023 15:12:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/14/TELEMMGLPICT000359991530_17025647319000_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "content": "Russia appears to have fired a salvo of hypersonic missiles on Kyiv in a rare daytime attack.

]]>", + "contentSnippet": "", + "guid": "f9637435-8175-3f53-94d8-df97f0f0054e", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T15:12:34.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "50 best Christmas gifts for her in 2023, from The White Company, John Lewis and more", + "link": "https://www.telegraph.co.uk/women/life/best-gifts-present-ideas-birthday-women/", + "pubDate": "Thu, 14 Dec 2023 14:33:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/women/2023/10/25/TELEMMGLPICT000354236157_16982232242390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "6b6e7d03-fef4-3025-b126-22bc85ff6070", + "categories": [ + { + "_": "topics:things/perfume", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/affordable-jewellery", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:women/life", + "$": { + "domain": "" + } + }, + { + "_": "structure:women", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T14:33:24.000Z" + }, + { + "creator": "Connor James Ibbetson", + "title": "The Telegraph\u2019s Family Christmas Quiz 2023", + "link": "https://www.telegraph.co.uk/christmas/2023/12/14/play-telegraph-christmas-family-quiz-2023/", + "pubDate": "Thu, 14 Dec 2023 12:54:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/14/TELEMMGLPICT000359978836_17025582069820_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Connor James Ibbetson", + "guid": "d7e78a17-1eff-3f81-ae80-58fe39f4890b", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/quizzes", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T12:54:02.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "The cure for snake bite may already be out there, research suggests", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/new-drugs-prevent-snake-bite-injury-cure/", + "pubDate": "Thu, 14 Dec 2023 12:42:16 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/14/TELEMMGLPICT000197070122_17025550849270_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "cb74aac9-d653-3ed8-9556-3d6d33babc57", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/snake-bite", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/snakes", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/liverpool-school-of-tropical-medicine", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/scientific-research", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T12:42:16.000Z" + }, + { + "creator": "Suzy Walker", + "title": "What to say \u2013 and not say \u2013 to a friend who\u2019s bereaved", + "link": "https://www.telegraph.co.uk/christmas/0/what-to-say-and-not-say-to-a-friend-whos-bereaved/", + "pubDate": "Thu, 14 Dec 2023 10:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/13/TELEMMGLPICT000359885540_17024882329650_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Suzy Walker", + "content": "", + "contentSnippet": "", + "guid": "b08a475b-6ad2-36e5-88e8-f65018971c25", + "categories": [ + { + "_": "topics:things/marie-curie", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/grief", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T10:00:00.000Z" + }, + { + "creator": "Mike McGrath", + "title": "From Man City ball boy to star debutant: Micah Hamilton announces himself in style", + "link": "https://www.telegraph.co.uk/football/2023/12/13/red-star-v-man-city-live-score-updates-champions-league/", + "pubDate": "Thu, 14 Dec 2023 07:51:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000359893136_17025013722360_trans_NvBQzQNjv4BqfmWw8ZtkYoKgUQYLfpqhYj1IRcKDl8eLTW931jeFUeU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mike McGrath", + "content": "Pep Guardiola may not remember the moment he stood on the Etihad touchline with his arm around Micah Hamilton\u2019s shoulders, telling the 13-year-old ballboy to work quicker. But he will not be forgetting his senior debut in a hurry, with the forward announcing himself as Manchester City\u2019s latest young talent ready for the first team.

]]>", + "contentSnippet": "", + "guid": "a1b4cf73-2605-3d18-a66c-f54514d0570d", + "categories": [ + { + "_": "topics:organisations/manchester-city-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T07:51:18.000Z" + }, + { + "creator": "Jason Burt", + "title": "Naive Newcastle gamble for glory against AC Milan \u2013 and leave Europe with nothing", + "link": "https://www.telegraph.co.uk/football/2023/12/13/newcastle-vs-ac-milan-live-score-updates-champions-league/", + "pubDate": "Thu, 14 Dec 2023 07:43:52 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000359916762_17025052652800_trans_NvBQzQNjv4BqYsomVK_5AfAmMW7o3DHCB7Ise6ugvcnLjVqQYK-tsLY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jason Burt", + "content": "With 31 minutes to go, Newcastle were in the last-16 of the Champions League. By the final whistle they were out of Europe completely and could have conceded three or four goals to an AC Milan side who consigned them to last place in their group. Football can be cruel. Football can change in a heartbeat. Football can be heart-breaking.

]]>", + "contentSnippet": "", + "guid": "19325371-ca79-3742-8870-f0abfc412f7a", + "categories": [ + { + "_": "topics:organisations/newcastle-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ac-milan", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/champions-league-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:football/football-live-blog", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T07:43:52.000Z" + }, + { + "creator": "Sarah Newey", + "title": "Parents \u2018misled and deceived\u2019 over sugary baby food, says Unicef", + "link": "https://www.telegraph.co.uk/global-health/climate-and-people/baby-food-south-east-asia-children-unhealthy-unicef-report/", + "pubDate": "Thu, 14 Dec 2023 07:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/13/TELEMMGLPICT000177894545_17024917897590_trans_NvBQzQNjv4Bq_NJ62v2ZFDvrR1Z2dUS5zP4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "content": "", + "contentSnippet": "", + "guid": "2b0a03c5-27c0-3e4e-8150-11534d9d52c7", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/ultra-processed-foods", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sugar", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/obesity", + "$": { + "domain": "" + } + }, + { + "_": "structure:climate-and-people", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T07:00:00.000Z" + }, + { + "creator": "Danielle Sheridan", + "title": "Britain to build next-generation fighter jets under historic deal", + "link": "https://www.telegraph.co.uk/news/2023/12/14/britain-supersonic-fighter-jets-deal-japan-italy/", + "pubDate": "Thu, 14 Dec 2023 04:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/13/TELEMMGLPICT000343931512_17024974309300_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Danielle Sheridan", + "content": "", + "contentSnippet": "", + "guid": "3169e86a-6a42-33c0-a601-39820415cd8a", + "categories": [ + { + "_": "topics:people/grant-shapps", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ministry-of-defence", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/typhoon-jets", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/japan", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/italy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T04:00:00.000Z" + }, + { + "creator": "Tony Diver ", + "title": "US House votes to open Biden impeachment inquiry", + "link": "https://www.telegraph.co.uk/world-news/2023/12/13/hunter-biden-us-capitol-statement/", + "pubDate": "Thu, 14 Dec 2023 00:49:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359923948_17025094153780_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tony Diver ", + "content": "", + "contentSnippet": "", + "guid": "2ced949a-ebf5-3514-b6df-c57d2f602b54", + "categories": [ + { + "_": "topics:people/hunter-biden", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/joe-biden", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/donald-trump", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/north-america", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/washington", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/republicans", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-14T00:49:18.000Z" + }, + { + "creator": "Mike McGrath", + "title": "Champions League 2024: How next season\u2019s new \u2018Swiss Model\u2019 format works", + "link": "https://www.telegraph.co.uk/football/0/champions-league-2024-swiss-model-new-format-explained/", + "pubDate": "Wed, 13 Dec 2023 22:32:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000345123713_17024845873840_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mike McGrath", + "content": "", + "contentSnippet": "", + "guid": "7d20023e-a532-3b56-8cd7-38cf73198ba4", + "categories": [ + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/uefa", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T22:32:14.000Z" + }, + { + "creator": "Luke Slater", + "title": "Gustaf Lagerbielke earns Celtic first Champions League home win in a decade", + "link": "https://www.telegraph.co.uk/football/2023/12/13/celtic-vs-feyenoord-live-score-updates-champions-league/", + "pubDate": "Wed, 13 Dec 2023 22:25:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000359915917_17025048731680_trans_NvBQzQNjv4BqyILZCJqFaBEpuz3ivC4GSua2WqtbvckMzOgCgwHEyIE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Luke Slater", + "content": "Gustaf Lagerbielke was the unlikely hero as Celtic finally ended their long wait for a Champions League win amid late drama in their dead rubber against Feyenoord at Parkhead.

]]>", + "contentSnippet": "", + "guid": "78e3d422-e5a0-3de0-88d8-60f1374c86d4", + "categories": [ + { + "_": "topics:organisations/celtic-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T22:25:17.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "British Museum deputy director to leave his post following theft inquiry", + "link": "https://www.telegraph.co.uk/news/2023/12/13/british-museum-deputy-director-jonathan-williams-to-leave/", + "pubDate": "Wed, 13 Dec 2023 22:24:16 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/13/TELEMMGLPICT000346082226_17025053559660_trans_NvBQzQNjv4BqT2xJ7tkgk1II-iWDHlDH9wQeqCAg1t52tBioCzmpjw4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "content": "", + "contentSnippet": "", + "guid": "9b821851-88ee-3f57-9665-88096e98d760", + "categories": [ + { + "_": "topics:places/british-museum", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T22:24:16.000Z" + }, + { + "creator": "Josh Burrows", + "title": "All 16 Champions League 2023-24 knockout teams ranked, plus when the draw happens", + "link": "https://www.telegraph.co.uk/football/0/champions-league-knockout-draw-2023-2024-when-tv-team-rank/", + "pubDate": "Wed, 13 Dec 2023 22:03:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/13/TELEMMGLPICT000359813116_17024654738050_trans_NvBQzQNjv4BqCDHiROgop-O61LVMHiEGzcFkLFwB-0Q2cnJYFFt9vys.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Josh Burrows", + "content": "", + "contentSnippet": "", + "guid": "1454ea5a-4cfc-3706-a0d6-2af2ef2dd2f4", + "categories": [ + { + "_": "topics:organisations/arsenal-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/manchester-city-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/real-madrid-cf", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/fc-barcelona", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/fc-bayern-munich", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T22:03:40.000Z" + }, + { + "creator": "Chris Price", + "title": "Interest rates to fall by 1 percentage point within 12 months, City predicts", + "link": "https://www.telegraph.co.uk/business/2023/12/13/ftse-100-markets-latest-news-gdp-us-interest-rates-live/", + "pubDate": "Wed, 13 Dec 2023 20:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/13/TELEMMGLPICT000355328338_17024887981850_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf-0Jyi0jPPD6Zx1hiwTPhlc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "Money markets are predicting the Bank of England will reduce interest rates by a whole percentage point to 4.25pc next year.

]]>", + "contentSnippet": "", + "guid": "9a2b9af6-0f64-37af-b0be-930579c7fade", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T20:00:00.000Z" + }, + { + "creator": "Guy Kelly", + "title": "18 ways the middle classes have ruined Christmas", + "link": "https://www.telegraph.co.uk/christmas/2023/12/13/how-the-middle-classes-ruined-christmas/", + "pubDate": "Wed, 13 Dec 2023 18:36:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/13/TELEMMGLPICT000359890824_17024924211650_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Guy Kelly", + "content": "", + "contentSnippet": "", + "guid": "bbf162db-40ad-33ea-b4ed-d188d9fb0773", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T18:36:15.000Z" + }, + { + "creator": "Paul Nuki", + "title": "\u2018Nothing will stop us\u2019 \u2013 Netanyahu says war against Hamas will continue despite global pressure", + "link": "https://www.telegraph.co.uk/world-news/2023/12/13/israel-war-hamas-western-allies-joe-biden-gaza/", + "pubDate": "Wed, 13 Dec 2023 18:28:31 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359672246_17025007417610_trans_NvBQzQNjv4BqoBoyx_R5Fm8icbD09kIPev4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Paul Nuki", + "content": "", + "contentSnippet": "", + "guid": "c7dfa3d2-c520-3f6d-81aa-697dc636f49e", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/usa", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/joe-biden", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/us-election", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T18:28:31.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Wednesday evening news briefing: Lineker tweets 'probably broke BBC guidelines'", + "link": "https://www.telegraph.co.uk/news/2023/12/13/wednesday-evening-news-briefing-lineker-tweet-bbc-guideline/", + "pubDate": "Wed, 13 Dec 2023 17:44:52 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "dab9e523-c947-3433-b5b6-35e33e915938", + "categories": [ + { + "_": "topics:people/gary-linekar", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/wales", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/sir-patrick-vallance", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T17:44:52.000Z" + }, + { + "creator": "Rozina Sabur", + "title": "2024 US election: Your complete guide", + "link": "https://www.telegraph.co.uk/news/0/us-presidential-election-2024-when-dates-candidates-voting/", + "pubDate": "Wed, 13 Dec 2023 17:41:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/08/TELEMMGLPICT000237936068_17020674565320_trans_NvBQzQNjv4BqOkklezvl6plKk2JrOAyHeUgkbiPAMGYa0jZKn-IKTQw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rozina Sabur", + "content": "", + "contentSnippet": "", + "guid": "9fc77557-471e-3b07-a30f-b1a8badd19f6", + "categories": [ + { + "_": "topics:events/us-election", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/us-politics", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/donald-trump", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/joe-biden", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/usa", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/white-house", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T17:41:36.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best vacuum cleaners in 2023, plus everything you need to know before you buy", + "link": "https://www.telegraph.co.uk/recommended/home/best-vacuum-cleaner/", + "pubDate": "Wed, 13 Dec 2023 17:34:54 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/18/TELEMMGLPICT000336105635_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "2a0aa18d-1419-3e57-a91c-855a122d74ae", + "categories": [ + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vacuum-cleaners", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T17:34:54.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Hamas 'unresponsive' to attempts to restart hostage talks with Israel", + "link": "https://www.telegraph.co.uk/world-news/2023/12/13/israel-hamas-war-latest-news-updates-gaza-day-68-live/", + "pubDate": "Wed, 13 Dec 2023 16:14:32 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359878575_17024850532360_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "content": "Hamas is not replying to requests to revive hostage negotiations, US sources say.

]]>", + "contentSnippet": "", + "guid": "5144bdd3-ce6a-3b02-9c77-b868c4241aff", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T16:14:32.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Rishi Sunak latest: Starmer claims Tories in 'meltdown' over Rwanda Bill", + "link": "https://www.telegraph.co.uk/politics/2023/12/13/rishi-sunak-latest-news-rwanda-bill-tories-live/", + "pubDate": "Wed, 13 Dec 2023 16:00:12 GMT", + "dc:creator": "Jack Maidment", + "content": "Sir Keir Starmer claimed the Conservative Party was in \u201cmeltdown\u201d over the Rwanda Bill as he attempted to take advantage of Tory divisions. 

]]>", + "contentSnippet": "", + "guid": "7c0fc088-ccde-3e79-b200-89768b12f213", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T16:00:12.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Ukraine-Russia war: We will fight with or without the West, says Zelensky", + "link": "https://www.telegraph.co.uk/world-news/2023/12/13/ukraine-russia-war-news-latest-missile-strike-kyiv-live/", + "pubDate": "Wed, 13 Dec 2023 15:05:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359860612_17024798399330_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "content": "Volodymyr Zelensky has vowed Ukraine will fight on against Russia with or without Western support.

]]>", + "contentSnippet": "", + "guid": "343d1f86-2a2a-39d2-8de1-ab0ffce5f6ac", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T15:05:35.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - 90% of Russian invasion force \u2018dead or wounded\u2019", + "link": "https://www.telegraph.co.uk/world-news/2023/12/13/90-of-russian-invasion-force-dead-or-wounded/", + "pubDate": "Wed, 13 Dec 2023 15:03:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/12/TELEMMGLPICT000359765906_17024001615460_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "bb0e1c9e-0cc0-3684-b941-7b0781fceb73", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T15:03:15.000Z" + }, + { + "creator": "Gareth A Davies", + "title": "Tyson Fury vs Oleksandr Usyk: When is the fight, how to watch and the undercard line-up", + "link": "https://www.telegraph.co.uk/boxing/0/tyson-fury-vs-oleksandr-usyk-when-date-tv-undercard/", + "pubDate": "Wed, 13 Dec 2023 14:56:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/boxing/2023/11/16/TELEMMGLPICT000354817954_17001448694440_trans_NvBQzQNjv4BqMI1LvyrVLfIFrd7O2yQz27LZhoUJXRy_slhDUzUzVKo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Gareth A Davies", + "content": "", + "contentSnippet": "", + "guid": "53c5ba1a-f848-34d4-8437-a731f8234f4e", + "categories": [ + { + "_": "topics:people/tyson-fury", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/oleksandr-usyk", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/saudi-arabia", + "$": { + "domain": "" + } + }, + { + "_": "structure:boxing", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T14:56:10.000Z" + }, + { + "creator": "Daniel Zeqiri", + "title": "Anthony Joshua vs Wallin, Deontay Wilder vs Parker: When is it and how to watch", + "link": "https://www.telegraph.co.uk/boxing/0/anthony-joshua-vs-wallin-wilder-vs-parker-when-how-watch/", + "pubDate": "Wed, 13 Dec 2023 14:39:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/boxing/2023/11/23/TELEMMGLPICT000356836155_17007433521810_trans_NvBQzQNjv4Bq_MBhvjUqhIfRd2_dxg_gJ5gojZYlP8f0i9h2tPqCNsM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Daniel Zeqiri", + "content": "", + "contentSnippet": "", + "guid": "875430de-e378-32b6-bec0-23b508ad7005", + "categories": [ + { + "_": "topics:events/anthony-joshua-vs-deontay-wilder", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/anthony-joshua", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/deontay-wilder", + "$": { + "domain": "" + } + }, + { + "_": "structure:boxing", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T14:39:17.000Z" + }, + { + "creator": "Tom Parry", + "title": "The British surgeon bringing hope to generations of children with birth defects", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/iraq-cleft-palate-operations-surgery-birth-defects/", + "pubDate": "Wed, 13 Dec 2023 14:14:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/13/TELEMMGLPICT000359759721_17024685566610_trans_NvBQzQNjv4Bqn2n2hk5qKEJ--A9z8HbLAj7qDM1k-FXUpc9UWB6g6Ho.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom Parry", + "content": "", + "contentSnippet": "", + "guid": "37de1286-066c-3afb-887d-e5d5cf611b2d", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/childbirth", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cosmetic-surgery", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/iraq", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T14:14:19.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "\u2018Rape is cheaper than bullets\u2019: The psychology behind sexual violence in war", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/rape-sexual-violence-weapon-of-war-hamas-israel/", + "pubDate": "Wed, 13 Dec 2023 13:13:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/13/TELEMMGLPICT000358070555_17024706686250_trans_NvBQzQNjv4BqyBQSM7W3TfwBviL2F2h2i1HmPOpeFd0SyQx9dn7kM_w.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "cf3f1fc4-00b9-36a9-901f-30591974da18", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/rape", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/sexual-assault", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Conflict", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T13:13:34.000Z" + }, + { + "creator": "Jack Rear", + "title": "\u2018We got married six months after Roy was diagnosed with dementia \u2013 I didn\u2019t want to hang around\u2019 ", + "link": "https://www.telegraph.co.uk/christmas/2023/12/13/we-got-married-six-months-after-roy-was-diagnosed-dementia/", + "pubDate": "Wed, 13 Dec 2023 12:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/12/TELEMMGLPICT000359734552_17023895419070_trans_NvBQzQNjv4BqGGPdpMrnFG8P-EeX9eqH-4lgJj0ORT7sXzmd0O8KNSA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Rear", + "content": "", + "contentSnippet": "", + "guid": "0700a475-39d7-3f6e-8dff-08973ef6c0d5", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/race-against-dementia", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T12:00:00.000Z" + }, + { + "creator": "Emma Gatten", + "title": "Cop28 agrees historic deal to shift away from fossil fuels", + "link": "https://www.telegraph.co.uk/news/2023/12/13/cop28-summit-landmark-deal-transition-away-fossil-fuels/", + "pubDate": "Wed, 13 Dec 2023 10:30:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/13/TELEMMGLPICT000359836864_17024593207610_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emma Gatten", + "content": "", + "contentSnippet": "", + "guid": "faba803e-a0df-3189-8121-de412863cbe8", + "categories": [ + { + "_": "topics:events/cop28", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/climate-change", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/dubai", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-arab-emirates", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/oil", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T10:30:24.000Z" + }, + { + "creator": "Tim Wigmore", + "title": "West Indies rain down sixes on England in Barbados T20 drubbing", + "link": "https://www.telegraph.co.uk/cricket/2023/12/12/west-indies-v-england-first-t20-live-score-latest-updates/", + "pubDate": "Wed, 13 Dec 2023 07:06:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/12/13/TELEMMGLPICT000359816899_17024552696110_trans_NvBQzQNjv4BqhYSm7MpWY_LY3R3uB5kFLQmhchOEM8HUA63nVw5KCOw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Wigmore", + "content": "The power; the poise; the sheer audacity to see a fielder on the boundary ropes as no encumbrance at all. England were braced for what to expect from West Indies\u2019 phalanx of six-hitters at a heaving Kensington Oval.

]]>", + "contentSnippet": "", + "guid": "fe3fdb06-15a8-39cc-81b4-ba2932509cce", + "categories": [ + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/west-indies-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jos-buttler", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T07:06:05.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "Brooklyn Nine-Nine actor Andre Braugher dies aged 61", + "link": "https://www.telegraph.co.uk/world-news/2023/12/13/actor-andre-braugher-dies-aged-61/", + "pubDate": "Wed, 13 Dec 2023 05:13:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359816845_17024376502620_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "content": "", + "contentSnippet": "", + "guid": "97618d61-ff6a-38e1-9cdb-01d78d82c201", + "categories": [ + { + "_": "topics:things/celebrity-news", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hollywood", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T05:13:27.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "New draft of Cop28 deal calls for 'transitioning away' from fossil fuels", + "link": "https://www.telegraph.co.uk/world-news/2023/12/13/cop28-draft-deal-calls-for-transition-away-fossil-fuels/", + "pubDate": "Wed, 13 Dec 2023 04:49:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359781104_17024420528580_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "content": "", + "contentSnippet": "", + "guid": "c10d9539-27ae-389e-a402-0c735c42e8c3", + "categories": [ + { + "_": "topics:things/climate-change", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/cop28", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/oil", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gas", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T04:49:51.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "Bodies of two hostages recovered in Gaza, says Israel", + "link": "https://www.telegraph.co.uk/world-news/2023/12/13/bodies-two-hostages-eden-zakaria-ziv-dado-recovered/", + "pubDate": "Wed, 13 Dec 2023 02:24:33 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/13/TELEMMGLPICT000359778870_17024334132440_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwVVuduJKBIVmdsWxwOVYZQY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "content": "", + "contentSnippet": "", + "guid": "2c08b01c-43f4-3314-8316-9d9aef8868f1", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T02:24:33.000Z" + }, + { + "creator": "Will Bolton", + "title": "Three teenagers killed in Wales crash are named", + "link": "https://www.telegraph.co.uk/news/2023/12/12/teenagers-dead-bus-car-crash-wales/", + "pubDate": "Tue, 12 Dec 2023 22:38:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/12/12/TELEMMGLPICT000359805939_17024207013490_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Will Bolton", + "content": "", + "contentSnippet": "", + "guid": "16dfb0f7-c27a-3331-bab5-0f645042cd52", + "categories": [ + { + "_": "topics:places/wales", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/road-accident", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T22:38:40.000Z" + }, + { + "creator": "Sam Dean", + "title": "Mikel Arteta hails Declan Rice experiment as Arsenal plan for the worst", + "link": "https://www.telegraph.co.uk/football/2023/12/12/psv-eindhoven-v-arsenal-live-score-updates-champions-league/", + "pubDate": "Tue, 12 Dec 2023 21:25:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/12/12/TELEMMGLPICT000359782126_17024156927570_trans_NvBQzQNjv4BqfZf_3eswfJk7x5I0-C2ncoR5O6D1FN5DaQMRXt215jY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Dean", + "content": "It is a measure of Arsenal\u2019s success in this season\u2019s Champions League that their trip to Eindhoven was such a strange one. Mikel Arteta\u2019s side required only five games to guarantee top spot in Group B, which meant that their sixth was little more than a chance for the Arsenal manager to experiment with his side.

]]>", + "contentSnippet": "", + "guid": "a9fefc1c-7b2c-3587-b6e0-97d0e47fff1f", + "categories": [ + { + "_": "topics:organisations/psv-eindhoven", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/arsenal-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/champions-league-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T21:25:53.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Rishi Sunak wins Rwanda Bill vote despite Tory rebellion fears", + "link": "https://www.telegraph.co.uk/politics/2023/12/12/rishi-sunak-latest-news-tories-labour-starmer-live/", + "pubDate": "Tue, 12 Dec 2023 21:19:20 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/12/12/TELEMMGLPICT000359783856_17024153915490_trans_NvBQzQNjv4BqI_nWroZV2Kj5BLP-0LLaCIHfEAEFhL-u0ty4swBHXHA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "content": "Rishi Sunak\u2019s Rwanda Bill has passed its first hurdle in the House of Commons despite fears of a Tory rebellion, by 313 votes to 269.

]]>", + "contentSnippet": "", + "guid": "1894a6c6-583e-3b16-a5b3-b5792c26b196", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T21:19:20.000Z" + }, + { + "creator": "Sam Green", + "title": "Team GB at Paris Olympics: Who are the British athletes to watch at the 2024 Games?", + "link": "https://www.telegraph.co.uk/olympics/2023/12/12/team-gb-paris-olympics-2024-who-british-athletes-uk/", + "pubDate": "Tue, 12 Dec 2023 18:31:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/olympics/2023/12/07/TELEMMGLPICT000356815679_17019734880590_trans_NvBQzQNjv4BqohsGFk6lowxuVmfrTuwcJT9ASLmGjYcg7PvUxmdwfLM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Green", + "content": "", + "contentSnippet": "", + "guid": "134182bc-150c-34f1-a025-92b861befd12", + "categories": [ + { + "_": "topics:organisations/team-gb", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/paris-olympics-2024", + "$": { + "domain": "" + } + }, + { + "_": "structure:olympics", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-climbing", + "$": { + "domain": "" + } + }, + { + "_": "structure:triathlon", + "$": { + "domain": "" + } + }, + { + "_": "structure:sailing", + "$": { + "domain": "" + } + }, + { + "_": "structure:canoeing", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T18:31:10.000Z" + }, + { + "creator": "James Warrington", + "title": "Thames Water doesn't have enough money to pay back debt, admits boss", + "link": "https://www.telegraph.co.uk/business/2023/12/12/ftse-100-markets-latest-ons-interest-rates-live/", + "pubDate": "Tue, 12 Dec 2023 18:24:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/12/TELEMMGLPICT000340988784_17023986604750_trans_NvBQzQNjv4BqaHd6X3lW3lGv45Ug3tlONV5NUcTKNHKqy85KLqtvPLE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "James Warrington", + "content": "Thames Water does not have enough money to pay back its debt ahead of a looming deadline, the boss of the struggling utility company has admitted.

]]>", + "contentSnippet": "", + "guid": "487b0c81-3745-3d87-9bbe-0bad47c9de23", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T18:24:30.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Tuesday evening news briefing: Sunak was in 'stroppy teenager mode' in meeting with Tory MPs", + "link": "https://www.telegraph.co.uk/news/2023/12/12/tuesday-evening-news-briefing-sunak-stroppy-teenager-mode/", + "pubDate": "Tue, 12 Dec 2023 17:40:47 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "c6f493aa-a4be-3cfb-ad2b-5b6f93a8eb76", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/nigel-farage", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/migration", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T17:40:47.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Zelensky to make last-ditch plea for war funds in Washington", + "link": "https://www.telegraph.co.uk/world-news/2023/12/12/zelensky-to-make-last-ditch-plea-for-war-funds-in-washingto/", + "pubDate": "Tue, 12 Dec 2023 16:56:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/12/TELEMMGLPICT000359765906_17024001615460_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "8c9bb029-b6c6-3081-bb8a-eb6432b12585", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T16:56:43.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Israel-Hamas war: Israel and US at odds over Gaza future, says Netanyahu", + "link": "https://www.telegraph.co.uk/world-news/2023/12/12/israel-hamas-gaza-war-latest-news/", + "pubDate": "Tue, 12 Dec 2023 16:01:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/12/TELEMMGLPICT000359755021_17023917917080_trans_NvBQzQNjv4Bqy66hu0TpIy4d7oO0NBM5NTQnC5DCw90YHLKHXFlQeAE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "content": "Israel and the US are at odds over how Gaza will be governed after the war, Benjamin Netanyahu has admitted.

]]>", + "contentSnippet": "", + "guid": "75a1dd4b-fb43-3424-b133-77de5316a46f", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T16:01:10.000Z" + }, + { + "creator": "Nicola Smith", + "title": "How Taiwan\u2019s disease detectives are keeping tabs on China", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/how-taiwans-disease-detectives-are-keeping-tabs-on-china/", + "pubDate": "Tue, 12 Dec 2023 14:48:54 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/12/TELEMMGLPICT000258910420_17023902438700_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Nicola Smith", + "content": "", + "contentSnippet": "", + "guid": "db21d3e7-894e-37ff-943d-22bdf4a0713a", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pandemics-epidemics", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/taiwan", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/china", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T14:48:54.000Z" + }, + { + "creator": "Jeremy Wilson", + "title": "Paris 2024 Olympics: When will the next Summer Games take place?", + "link": "https://www.telegraph.co.uk/olympics/0/paris-2024-olympics-when-next-games-event-date-start/", + "pubDate": "Tue, 12 Dec 2023 13:23:56 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/olympics/2023/06/20/TELEMMGLPICT000339966766_16872749685070_trans_NvBQzQNjv4BqhQelLrTDvVmMF_2MRiRVvaAezwuvexs_ues-aCB_TCg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jeremy Wilson", + "content": "", + "contentSnippet": "", + "guid": "37b5e70a-b943-3abe-a175-1fa34959b502", + "categories": [ + { + "_": "topics:events/tokyo-olympics-2020", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/france", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/paris", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:olympics", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T13:23:56.000Z" + }, + { + "creator": "Sarah Newey", + "title": "Myanmar overtakes Afghanistan as world\u2019s largest producer of opium", + "link": "https://www.telegraph.co.uk/global-health/climate-and-people/myanmar-afghanistan-opium-producer-un-health/", + "pubDate": "Tue, 12 Dec 2023 12:20:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/12/TELEMMGLPICT000359713355_17023807057680_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "content": "", + "contentSnippet": "", + "guid": "b1b11a3d-a5f0-3776-b37d-e4f238c8a739", + "categories": [ + { + "_": "topics:places/myanmar", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/afghanistan", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/drugs", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/taliban", + "$": { + "domain": "" + } + }, + { + "_": "structure:climate-and-people", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T12:20:53.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "Britain\u2019s largest nursing body calls on Foreign Secretary to up UK aid spending", + "link": "https://www.telegraph.co.uk/global-health/climate-and-people/royal-college-of-nursing-aid-spending-letter-david-cameron/", + "pubDate": "Tue, 12 Dec 2023 12:19:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/12/TELEMMGLPICT000357710112_17023833119950_trans_NvBQzQNjv4Bq3dDXxxrv_FBe_bxVyxLkOI-BmsTVKaCg_eFiTMLOQoc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "8783e191-c5af-36ab-9e60-2901905ab309", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/royal-college-of-nursing", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/david-cameron", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/foreign-aid", + "$": { + "domain": "" + } + }, + { + "_": "structure:climate-and-people", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T12:19:50.000Z" + }, + { + "creator": "Diana Henry", + "title": "Roast cauliflower, Lancashire cheese and nutmeg tart recipe", + "link": "https://www.telegraph.co.uk/recipes/0/cauliflower-cheese-nutmeg-tart-diana-henry-recipe/", + "pubDate": "Tue, 12 Dec 2023 11:54:49 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/11/TELEMMGLPICT000359655611_17023062805090_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "201cc87e-bf5d-3ea6-92a4-c4afe0c2a651", + "categories": [ + { + "_": "topics:things/cheese-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cauliflower-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tart-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-party-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/roast-dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T11:54:49.000Z" + }, + { + "creator": "Diana Henry", + "title": "Aubergine, pumpkin and rice \u2018cake\u2019 with saffron butter and harissa yoghurt recipe", + "link": "https://www.telegraph.co.uk/recipes/0/aubergine-pumpkin-rice-cake-diana-henry-recipe/", + "pubDate": "Tue, 12 Dec 2023 11:52:01 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/11/TELEMMGLPICT000359655622_17023071881440_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "b157c035-4607-3e00-9f38-050e280617ea", + "categories": [ + { + "_": "topics:things/pumpkin-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/aubergine-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/rice-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-party-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T11:52:01.000Z" + }, + { + "creator": "Diana Henry", + "title": "Upside-down parsnip nut roast recipe", + "link": "https://www.telegraph.co.uk/recipes/0/upside-down-parsnip-nut-roast-recipe/", + "pubDate": "Tue, 12 Dec 2023 11:39:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/12/11/TELEMMGLPICT000359655630_17023055082050_trans_NvBQzQNjv4Bqn51i3BMdqqmX25mZfhwCXYnsfHmkTN8kfZYRzPAd8Ww.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "e3832a84-f9cb-30bc-b0e7-e7fecdb6fa86", + "categories": [ + { + "_": "topics:things/christmas-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/parsnip-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/roast-dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T11:39:35.000Z" + }, + { + "creator": "Samuel Lovett", + "title": "WHO convoy hit by bullets while driving through Gaza, says agency chief", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/who-medical-convoy-hit-by-bullets-in-gaza-israel-hamas-war/", + "pubDate": "Tue, 12 Dec 2023 11:01:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/12/12/TELEMMGLPICT000359734198_17023777599630_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Samuel Lovett", + "content": "", + "contentSnippet": "", + "guid": "571f1ae3-fe51-3af6-9ec5-5d6ee67752b6", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/world-health-organisation", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T11:01:36.000Z" + }, + { + "creator": "Jeremy Wilson", + "title": "Mary Earps and Stuart Broad on BBC Sports Personality of the Year shortlist", + "link": "https://www.telegraph.co.uk/sport/2023/12/12/earps-broad-sports-personality-of-the-year-shortlist-spoty/", + "pubDate": "Tue, 12 Dec 2023 09:46:26 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/sport/2023/12/12/TELEMMGLPICT000344543884_17023672137420_trans_NvBQzQNjv4BqyhWmxPhzrNF0kSlsvXmHZKXa43EfX41rWID_y1qQkyA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jeremy Wilson", + "content": "", + "contentSnippet": "", + "guid": "43cf3ca0-b4b7-3a52-b7ad-dc278eb1d270", + "categories": [ + { + "_": "topics:people/stuart-broad", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/rory-mcilroy", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/katarina-johnson-thompson", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/sports-personality-year", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-football", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:golf", + "$": { + "domain": "" + } + }, + { + "_": "structure:racing", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:athletics", + "$": { + "domain": "" + } + }, + { + "_": "structure:paralympic-sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-12T09:46:26.000Z" + }, + { + "creator": "Rozina Sabur", + "title": "Supreme Court asked to rule on Trump's claim of immunity from prosecution", + "link": "https://www.telegraph.co.uk/us/news/2023/12/11/supreme-court-donald-trump-claim-immunity-prosecution/", + "pubDate": "Mon, 11 Dec 2023 23:48:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/12/11/TELEMMGLPICT000359698851_17023380100150_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rozina Sabur", + "content": "", + "contentSnippet": "", + "guid": "6bb0e7d8-bf27-3dee-b4b4-97851723b5dc", + "categories": [ + { + "_": "topics:people/donald-trump", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/us-politics", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/supreme-court", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/republicans", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/court-cases", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-11T23:48:37.000Z" + }, + { + "creator": "Andrew Buncombe", + "title": "Texas Supreme Court rules against woman seeking abortion as she is forced to leave state", + "link": "https://www.telegraph.co.uk/us/news/2023/12/11/texas-abortion-roe-v-wade-court-kate-cox-left-state/", + "pubDate": "Mon, 11 Dec 2023 23:46:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/12/11/TELEMMGLPICT000359000220_17023379715320_trans_NvBQzQNjv4Bq_PtQT7ty_KMq6NH7BEfuKlgBppMzJwJjygWmpcJlrmg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Andrew Buncombe", + "content": "", + "contentSnippet": "", + "guid": "048755e7-7d36-33af-b919-1e6b1604286b", + "categories": [ + { + "_": "topics:things/abortion", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/texas", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/roe-v-wade", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-11T23:46:41.000Z" + }, + { + "creator": "Fiona Tomas", + "title": "Women's Rugby World Cup 2025: When and where is it taking place?", + "link": "https://www.telegraph.co.uk/rugby-union/0/womens-rugby-world-cup-2025-when-where-tickets-tv/", + "pubDate": "Mon, 11 Dec 2023 22:36:31 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/12/11/TELEMMGLPICT000359668686_17023338526150_trans_NvBQzQNjv4BqLfZdHPP_Jms68Nei_IBhrsdqT5H2z40LP8eYFpXRgTw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Fiona Tomas", + "content": "", + "contentSnippet": "", + "guid": "6f780266-5399-363e-9754-75f9adb5a345", + "categories": [ + { + "_": "topics:events/womens-rugby-world-cup", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-womens-rugby-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-11T22:36:31.000Z" + }, + { + "creator": "Thea Jourdan", + "title": "\u2018One minute I was enjoying an RAF training exercise, the next I was facing extinction\u2019", + "link": "https://www.telegraph.co.uk/christmas/2023/12/11/may-day-then-plane-crash-land-raf-benevolent-fund/", + "pubDate": "Mon, 11 Dec 2023 20:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/12/11/TELEMMGLPICT000358406972_17023150992440_trans_NvBQzQNjv4BqBsmvZk2mZ1fwwYfVv4Mu4U9uxGTFA7snVluzIJwlrX4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Thea Jourdan", + "content": "", + "contentSnippet": "", + "guid": "bbb443c2-99c7-3c64-9039-8d5e83d505d9", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/raf-benevolent-fund", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/aviation", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-11T20:00:00.000Z" + }, + { + "creator": "Riya Makwana", + "title": "US banking giant urges investors to stop betting against British property stocks", + "link": "https://www.telegraph.co.uk/business/2023/12/11/ftse-100-markets-news-twitter-alex-jones-uk-economy-latest/", + "pubDate": "Mon, 11 Dec 2023 18:11:03 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/12/11/TELEMMGLPICT000095192331_17023001773290_trans_NvBQzQNjv4BqW59J98bm5rsKMnvsEp3MChPeq37iFuZzBK9IYul7UJ8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Riya Makwana", + "content": "Goldman Sachs has urged investors to stop betting against UK property stocks as the market shows signs of recovery.

]]>", + "contentSnippet": "", + "guid": "a6bf899e-f441-392c-92bb-8bf22ad11f92", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-11T18:11:03.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Monday evening news briefing: Farage hints at potential return to the Tories", + "link": "https://www.telegraph.co.uk/news/2023/12/11/monday-evening-news-briefing-farage-hints-at-return-tories/", + "pubDate": "Mon, 11 Dec 2023 17:43:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "044a33e5-f732-3999-af3e-af9f737e3ec0", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/nigel-farage", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/gary-linekar", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-11T17:43:57.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Keir Starmer speech: Tory credit rating is zero, claims Labour leader - watch live", + "link": "https://www.telegraph.co.uk/politics/2024/01/04/rishi-sunak-latest-news-anderson-reform-starmer-live/", + "pubDate": "Thu, 04 Jan 2024 10:41:52 GMT", + "dc:creator": "Jack Maidment", + "content": "Sir Keir Starmer claimed the Tories\u2019 credit rating was now at \u201czero\u201d as he insisted Labour would welcome fighting the next general election on the economy. 

]]>", + "contentSnippet": "", + "guid": "598c7fd7-441b-3f97-ba43-52d2a5426b7e", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T10:41:52.000Z" + }, + { + "creator": "Gavin Newsham", + "title": "The best air purifiers of 2024 for filtering dust, germs, smoke and allergens at home", + "link": "https://www.telegraph.co.uk/recommended/home/best-air-purifiers/", + "pubDate": "Thu, 04 Jan 2024 10:34:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/10/26/TELEMMGLPICT000314053792_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Gavin Newsham", + "content": "", + "contentSnippet": "", + "guid": "943abdc8-819c-3cb2-bb80-4352d8d13ad2", + "categories": [ + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dyson", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pollution", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/bacteria", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/viruses", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T10:34:55.000Z" + }, + { + "creator": "Uche Amako", + "title": "Australian Open 2024: When is it, how to watch in UK and will Emma Raducanu play?", + "link": "https://www.telegraph.co.uk/tennis/2024/01/04/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", + "pubDate": "Thu, 04 Jan 2024 09:54:54 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/04/TELEMMGLPICT000361472773_17043614523580_trans_NvBQzQNjv4Bqf31hxWNT7i64oktrHVICFv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Uche Amako", + "content": "", + "contentSnippet": "", + "guid": "5c1402a8-6733-334d-a6ed-9b5b4bdc1d74", + "categories": [ + { + "_": "topics:people/novak-djokovic", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/carlos-alcaraz", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andy-murray", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/emma-raducanu", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T09:54:54.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Israel-Hamas war latest: Funeral of senior Hamas leader due to take place today", + "link": "https://www.telegraph.co.uk/world-news/2024/01/04/israel-hamas-gaza-palestine-war-latest-news/", + "pubDate": "Thu, 04 Jan 2024 09:54:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/04/TELEMMGLPICT000361512049_17043581278020_trans_NvBQzQNjv4BqqiUuvBizZT2q34Osm0tNw9LO529jWexQu7u975-F90g.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "content": "The funeral of a senior Hamas leader assassinated by Israel is due to take place in Lebanon today amid heightened fears of a regional escalation.

]]>", + "contentSnippet": "Hamas leader assassinated by Israel is due to take place in Lebanon today amid heightened fears of a regional escalation.\n]]>", + "guid": "94bdc7cd-1ead-3a4e-a842-6020635e2999", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T09:54:10.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best lawnmowers in 2024, plus everything you need to know before you buy", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-lawnmowers-everything-need-know-buy/", + "pubDate": "Thu, 04 Jan 2024 09:51:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/04/18/TELEMMGLPICT000332489995_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "e34be1e9-57fb-3c4d-9faa-920bcfe2c7a8", + "categories": [ + { + "_": "topics:things/lawnmowers", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lawns", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T09:51:17.000Z" + }, + { + "creator": "Jack Rear", + "title": "\u2018My fianc\u00e9 was given just days to live from terminal cancer \u2013 we arranged our wedding in 72 hours\u2019", + "link": "https://www.telegraph.co.uk/christmas/2024/01/04/terminal-cancer-wedding-relationship-marie-curie-hospice/", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/02/TELEMMGLPICT000361421023_17042021848170_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Rear", + "content": "", + "contentSnippet": "", + "guid": "6e233183-31f9-359c-a984-6c6c4662f8f4", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/marie-curie", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/relationships", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cancer", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/marriage", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "Chris Price", + "title": "Goldman Sachs predicts faster interest rate cuts - latest updates", + "link": "https://www.telegraph.co.uk/business/2024/01/04/ftse-100-markets-news-latest-next-zero-inflation-space-x/", + "pubDate": "Thu, 04 Jan 2024 08:29:52 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/04/TELEMMGLPICT000352101482_17043586471630_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "The Bank of England will begin cutting interest rates from May, Goldman Sachs has predicted, in a move it says will save households \u00a311bn by the end of next year.

]]>", + "contentSnippet": "", + "guid": "003c05a6-14d6-33c9-8b59-0a5b3441402e", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T08:29:52.000Z" + }, + { + "creator": "Susie Coen", + "title": "Trump, Michael Jackson and a \u2018well-known PM\u2019 named in Epstein court files", + "link": "https://www.telegraph.co.uk/us/news/2024/01/03/jeffrey-epstein-court-files-unveiled-associates-list-latest/", + "pubDate": "Thu, 04 Jan 2024 07:02:29 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2024/01/04/TELEMMGLPICT000322943452_17043318769050_trans_NvBQzQNjv4BqgGkfkDQxy4meE2pwF2fWRLd6utTwIsRl1bpljMX6vR4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Susie Coen", + "content": "Prince Andrew, Bill Clinton, Michael Jackson and Stephen Hawking are among the names identified in newly released court filings related to convicted paedophile Jeffrey Epstein.

]]>", + "contentSnippet": "", + "guid": "0be6e00a-e18a-3251-8503-71e615cfafe0", + "categories": [ + { + "_": "topics:people/jeffrey-epstein", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/ghislaine-maxwell", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/prince-andrew", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/new-york", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/virginia-roberts-giuffre", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T07:02:29.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Man arrested in Liverpool after reports of shots fired at cinema", + "link": "https://www.telegraph.co.uk/news/2024/01/04/liverpool-showcase-cinema-gun-threat-police-search/", + "pubDate": "Thu, 04 Jan 2024 06:44:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/04/TELEMMGLPICT000361534113_17043555096030_trans_NvBQzQNjv4BqP509U-hNBRDgbEmbBtxV6K17zuUDFlwyNwA8GM4rC5o.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "content": "", + "contentSnippet": "", + "guid": "9b4996c0-9c74-34e6-b261-146fcd59196a", + "categories": [ + { + "_": "topics:places/liverpool", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/gun-violence", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T06:44:55.000Z" + }, + { + "creator": "Daniel Zeqiri", + "title": "Luke Littler's dream dies in defeat by Luke Humphries in sensational world darts final", + "link": "https://www.telegraph.co.uk/darts/2024/01/03/luke-littler-vs-humphries-live-score-updates-world-final/", + "pubDate": "Thu, 04 Jan 2024 00:06:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/darts/2024/01/03/TELEMMGLPICT000361515109_17043194753720_trans_NvBQzQNjv4BqLMGRUzrWVFJugz-ekQrRIInkenXoZfFW0KI3an4enY4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Daniel Zeqiri", + "content": "The nation\u2019s heart might have favoured Luke Littler but, in the sporting bearpit that is Alexandra Palace, cold-headed logic would ultimately prevail.

]]>", + "contentSnippet": "", + "guid": "d0455acd-537a-39c8-bbf3-a56d161a2711", + "categories": [ + { + "_": "topics:events/world-darts-championship", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/luke-littler", + "$": { + "domain": "" + } + }, + { + "_": "structure:darts", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T00:06:35.000Z" + }, + { + "creator": "Joe Barnes", + "title": "Iran split over whether to blame Israel as bombs kill at least 95 at grave of terrorist chief", + "link": "https://www.telegraph.co.uk/world-news/2024/01/03/israel-hamas-war-gaza-palestine-lebanon-latest-news/", + "pubDate": "Wed, 03 Jan 2024 22:18:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/03/TELEMMGLPICT000361490488_17043163332570_trans_NvBQzQNjv4BqZjHC1CawyhCYfmdoGgKrwAd7J34iU-cIItsnWCiFKlE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joe Barnes", + "content": "At least 95 people were killed on Wednesday when two bombs detonated by remote control tore through a crowd at the grave of Qassim Soleimani, the figurehead of Iran\u2019s global terrorist operations.

]]>", + "contentSnippet": "", + "guid": "307db728-fda7-35e3-9102-507683d49e8d", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T22:18:05.000Z" + }, + { + "creator": "Robert Mendick", + "title": "Johnson condemns Met Police investigation into Israel \u2018war crimes\u2019", + "link": "https://www.telegraph.co.uk/news/2024/01/03/boris-johnson-condemns-police-investigation-israel-gaza/", + "pubDate": "Wed, 03 Jan 2024 22:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/03/TELEMMGLPICT000361510156_17043169780210_trans_NvBQzQNjv4BqtGQB12KHxxQCrwnTZkX0nwgWqwm85JEWpGVhFb46TTg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Robert Mendick", + "content": "", + "contentSnippet": "", + "guid": "c45aa871-ab86-34a5-b4f9-ccf579d8694b", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/international-criminal-court", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/boris-johnson", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/iran", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T22:00:00.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "Four children and litter of puppies killed in Connecticut house fire", + "link": "https://www.telegraph.co.uk/us/news/2024/01/03/connecticut-fire-somers-children-puppies-killed-latest-news/", + "pubDate": "Wed, 03 Jan 2024 21:26:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2024/01/03/TELEMMGLPICT000361502089_17043163760090_trans_NvBQzQNjv4Bq8juO8C_Vdx2cT20LARTibnFLfv0ucAwTrkjYdq767p4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "content": "", + "contentSnippet": "", + "guid": "89b41821-0dbb-39bb-bef4-f080e459ed40", + "categories": [ + { + "_": "topics:things/fire", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T21:26:24.000Z" + }, + { + "creator": "Laura Fowler", + "title": "The best family hotels in the Mediterranean for a summer family holiday", + "link": "https://www.telegraph.co.uk/travel/destinations/europe/articles/best-family-friendly-hotels-in-the-mediterranean/", + "pubDate": "Wed, 03 Jan 2024 20:30:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/2021/May/dune-le-sabine-hotel-sardinia-pr-2-p.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Laura Fowler", + "content": "", + "contentSnippet": "", + "guid": "41864160-9d06-37f9-a12f-0e4ce2b3edc4", + "categories": [ + { + "_": "topics:places/europe", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/france", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/korcula", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/corfu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/italy", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/family-holidays", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hvar", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/mykonos", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/majorca", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/spain", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ibiza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/catalonia", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/greece", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/menorca", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/costa-brava", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/costa-del-sol", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/puglia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/rhodes", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/sardinia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/greek-islands", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/hotels", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/dubrovnik", + "$": { + "domain": "" + } + }, + { + "_": "structure:hotel-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/amalfi-coast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/sicily", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/skiathos", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/crete", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/cyclades", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/croatia", + "$": { + "domain": "" + } + }, + { + "_": "default:eg_general", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T20:30:00.000Z" + }, + { + "creator": "Chris Price", + "title": "Putin ships record gas supplies to China to prop up war economy", + "link": "https://www.telegraph.co.uk/business/2024/01/03/ftse-100-markets-latest-news-uk-interest-rates-bank-england/", + "pubDate": "Wed, 03 Jan 2024 18:41:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/03/TELEMMGLPICT000361345756_17042946064910_trans_NvBQzQNjv4Bq41ARBwgMvd1zOb2ypA9Bgcw6-9Wqr-sUXFTDR9QLrrM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "Russian energy giant Gazprom has announced a new daily record for the amount of gas supplied to China as Vladimir Putin seeks to prop up his war economy.

]]>", + "contentSnippet": "", + "guid": "69409abd-c550-3ece-8e54-9b56451233c8", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T18:41:27.000Z" + }, + { + "creator": "Telegraph Sport Reporters", + "title": "Video: Luke Littler playing darts while still in nappies", + "link": "https://www.telegraph.co.uk/darts/2024/01/03/video-luke-littler-playing-darts-in-nappies-watch/", + "pubDate": "Wed, 03 Jan 2024 18:28:05 GMT", + "dc:creator": "Telegraph Sport Reporters", + "content": "", + "contentSnippet": "", + "guid": "afd2616e-339f-3e3b-9625-4f690424b695", + "categories": [ + { + "_": "topics:people/luke-littler", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/world-darts-championship", + "$": { + "domain": "" + } + }, + { + "_": "structure:darts", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T18:28:05.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Wednesday evening news briefing: Reform UK rules out election pact with Tories", + "link": "https://www.telegraph.co.uk/news/2024/01/03/wednesday-evening-news-briefing-reform-tories-pact/", + "pubDate": "Wed, 03 Jan 2024 17:49:42 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "4f402a22-dc32-3a8b-b4d0-d1a852cfdeae", + "categories": [ + { + "_": "topics:organisations/reform-uk", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T17:49:42.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Ukraine strikes back at occupied Crimea & Zelensky\u2019s strategy for 2024", + "link": "https://www.telegraph.co.uk/world-news/2024/01/03/ukraine-strikes-back-at-occupied-crimea-zelenskys-strategy/", + "pubDate": "Wed, 03 Jan 2024 17:06:49 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/03/TELEMMGLPICT000361159590_17043015680130_trans_NvBQzQNjv4BqsIaSMRR4Q3jy0GquOD5ATQp9FIZ59CLYVhGJRZ4jq4c.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "fabf9035-cf28-3c84-9751-c7567787f1a1", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T17:06:49.000Z" + }, + { + "creator": "Hattie Garlick", + "title": "The best steam mops and steam cleaners of 2024 for spotless kitchen, bathroom and laminate floors", + "link": "https://www.telegraph.co.uk/recommended/home/best-steam-mops-steam-cleaners/", + "pubDate": "Wed, 03 Jan 2024 17:05:21 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/17/TELEMMGLPICT000335948204_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Hattie Garlick", + "content": "", + "contentSnippet": "", + "guid": "a2f5ae52-9464-3ce5-8091-2b5a9a935c7b", + "categories": [ + { + "_": "topics:things/steam-cleaners", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T17:05:21.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best cordless drills for wood, walls, metal and other DIY jobs", + "link": "https://www.telegraph.co.uk/recommended/home/best-cordless-drills/", + "pubDate": "Wed, 03 Jan 2024 16:55:58 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/28/TELEMMGLPICT000333663833_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "d930234c-bf26-328b-96b0-2f7796c4d4cc", + "categories": [ + { + "_": "topics:things/diy", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T16:55:58.000Z" + }, + { + "creator": "Annabel Fenwick-Elliott", + "title": "The best baby monitors of 2024, tried and tested by a new mother", + "link": "https://www.telegraph.co.uk/recommended/kids/best-baby-monitor/", + "pubDate": "Wed, 03 Jan 2024 16:32:47 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/09/29/TELEMMGLPICT000351291564_16959897711350_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Annabel Fenwick-Elliott", + "content": "", + "contentSnippet": "", + "guid": "210d68a0-89d9-3680-88c2-09be40a0dc5b", + "categories": [ + { + "_": "topics:things/motherhood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/parenthood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fatherhood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/childcare", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/kids", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T16:32:47.000Z" + }, + { + "creator": "Emily Peck", + "title": "The best hair dryers for 2024, tried and tested with expert advice from an A-list stylist", + "link": "https://www.telegraph.co.uk/beauty/hair/best-hair-dryers/", + "pubDate": "Wed, 03 Jan 2024 16:08:06 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/beauty/2022/09/09/TELEMMGLPICT000308605278_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emily Peck", + "content": "", + "contentSnippet": "", + "guid": "5c4e76f8-e631-3760-b710-73f0ca307b25", + "categories": [ + { + "_": "topics:organisations/dyson", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/hair", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty/hair", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T16:08:06.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Reform UK rules out election pact with Tories", + "link": "https://www.telegraph.co.uk/politics/2024/01/03/rishi-sunak-latest-news-farage-small-boats-uk-doctor-strike/", + "pubDate": "Wed, 03 Jan 2024 16:00:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/03/TELEMMGLPICT000361479708_17042824994540_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "content": "Reform UK has categorically ruled out striking a general election pact with the Conservative Party. 

]]>", + "contentSnippet": "", + "guid": "850b6d7d-0ff0-3e12-936f-c810d70ea1e9", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T16:00:12.000Z" + }, + { + "creator": "Madeleine Howell", + "title": "The best steam irons, including cordless models, for wrinkle-free clothes in 2024", + "link": "https://www.telegraph.co.uk/recommended/home/best-steam-irons/", + "pubDate": "Wed, 03 Jan 2024 15:49:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2019/06/26/Best-steam-iron-review_trans_NvBQzQNjv4Bq1lrzfM3_d_uwZxWWjssqOsvWxaP6USzKnksvEDJmBF8.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Madeleine Howell", + "content": "", + "contentSnippet": "", + "guid": "ad9c0625-bdc7-3414-bfef-75e21c5e3018", + "categories": [ + { + "_": "topics:things/first-home", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T15:49:57.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best memory foam mattresses of 2024 for relieving pressure while you sleep", + "link": "https://www.telegraph.co.uk/recommended/home/best-memory-foam-mattress/", + "pubDate": "Wed, 03 Jan 2024 15:43:48 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/15/TELEMMGLPICT000335692311_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "de092979-8f8c-30bc-90cd-c5247a6ecf83", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/back-pain", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleeping-disorders", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T15:43:48.000Z" + }, + { + "creator": "Rob Waugh", + "title": "The best wireless earbuds of 2024 tried and tested, from Apple Airpods to Beats Fit Pro", + "link": "https://www.telegraph.co.uk/recommended/tech/best-wireless-headphones/", + "pubDate": "Wed, 03 Jan 2024 15:34:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/11/11/TELEMMGLPICT000315873203_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rob Waugh", + "content": "", + "contentSnippet": "", + "guid": "02a9e60e-7cee-3003-b8ea-1ad64842794b", + "categories": [ + { + "_": "topics:things/gadgets-products", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/headphones", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/beats-by-dre", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/iphone", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/apple-airpods", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/samsung-galaxy", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/more-telegraph-recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T15:34:18.000Z" + }, + { + "creator": "Al Morgan", + "title": "The 10 best ski boots of 2024 for men and women, tested by an expert", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-ski-boots/", + "pubDate": "Wed, 03 Jan 2024 15:11:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/12/07/TELEMMGLPICT000359104576_17019479694030_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Al Morgan", + "content": "", + "contentSnippet": "", + "guid": "6dcbb865-a49d-34a1-b762-71a8e92dbf6a", + "categories": [ + { + "_": "topics:things/Snowboard", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/snow", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cross-country-skiing", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/alpine-skiing", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/freestyle-skiing", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:skiing", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T15:11:25.000Z" + }, + { + "creator": "Rob Waugh", + "title": "The best smartphones of 2024, tried and tested \u2013 but are they worth the upgrade?", + "link": "https://www.telegraph.co.uk/recommended/tech/best-smartphones/", + "pubDate": "Wed, 03 Jan 2024 13:16:32 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/22/TELEMMGLPICT000346467642_16927036397480_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rob Waugh", + "content": "", + "contentSnippet": "", + "guid": "ab785231-badf-3e5a-ade0-bb8b299bee90", + "categories": [ + { + "_": "topics:things/samsung-galaxy", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/android", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mobile-phones", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/iphone", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/samsung", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T13:16:32.000Z" + }, + { + "creator": "Jack Rear", + "title": "As a dementia nurse, this is what I wish everyone knew about the illness", + "link": "https://www.telegraph.co.uk/christmas/2024/01/03/nurse-this-is-what-i-wish-everyone-knew-about-dementia/", + "pubDate": "Wed, 03 Jan 2024 13:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/02/TELEMMGLPICT000358530053_17042050303170_trans_NvBQzQNjv4BqLe9xjT2uZbwM_a0D_nEc5FGbOsWDt2mGEn2XMwx-jCU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Rear", + "content": "", + "contentSnippet": "", + "guid": "3cd4d0ba-7a22-32ad-9d20-0ae5ddfa30c3", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/race-against-dementia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dementia", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T13:00:00.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best water filter jugs of 2024, tried and tested by an expert", + "link": "https://www.telegraph.co.uk/recommended/home/best-water-filter-jug-tested-experts/", + "pubDate": "Wed, 03 Jan 2024 12:44:31 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/02/TELEMMGLPICT000344635982_16909748014750_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "99d76d27-c507-329d-b838-ac83ea6498b8", + "categories": [ + { + "_": "topics:things/kitchen-equipment", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T12:44:31.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best reusable coffee cups and travel mugs of 2024, to keep your drinks warmer for longer", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-reusable-coffee-cup/", + "pubDate": "Wed, 03 Jan 2024 12:43:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/09/TELEMMGLPICT000345268356_16915956977920_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "f65debe4-d0fc-3eea-9fc6-7f8738765c9e", + "categories": [ + { + "_": "topics:things/coffee", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tea", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/recycling", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T12:43:11.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best inflatable hot tubs for cooling off in the garden this summer", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-inflatable-hot-tubs/", + "pubDate": "Wed, 03 Jan 2024 12:30:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/06/01/TELEMMGLPICT000337891784_16856316285640_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "c831f317-4581-3beb-af45-8f6c3f03b1a5", + "categories": [ + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/heatwave", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T12:30:53.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best sunrise alarm clocks of 2024, to help you wake up as naturally as the dawn", + "link": "https://www.telegraph.co.uk/recommended/home/best-wake-light-alarm-clocks/", + "pubDate": "Wed, 03 Jan 2024 12:22:22 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/10/03/TELEMMGLPICT000311476643_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "62a6830b-5048-3ddb-931c-c45336d5028c", + "categories": [ + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep-hygiene", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T12:22:22.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best running shoes for women in 2024, tried and tested with expert advice", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-running-shoes-women/", + "pubDate": "Wed, 03 Jan 2024 12:04:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/03/TELEMMGLPICT000331096701_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "743e5fb8-7ccd-3732-878d-b831a418e345", + "categories": [ + { + "_": "topics:things/running", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/marathon", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T12:04:59.000Z" + }, + { + "creator": "Mini Smith", + "title": "The best fitness trampolines of 2024 for home exercise, tried and tested on the bounce", + "link": "https://www.telegraph.co.uk/health-fitness/body/best-fitness-trampoline/", + "pubDate": "Wed, 03 Jan 2024 11:45:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/04/11/TELEMMGLPICT000331783736_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mini Smith", + "content": "", + "contentSnippet": "", + "guid": "9d5e7a8b-f42a-3b67-98e7-b3bedb5b55b9", + "categories": [ + { + "_": "topics:things/at-home-fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/womens-fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/exercise", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gym-exercises", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/body", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T11:45:34.000Z" + }, + { + "creator": "Catherine Hufton", + "title": "The best running buggies of 2024, tried and tested (with the help of a giggling two year-old)", + "link": "https://www.telegraph.co.uk/recommended/kids/best-running-buggy/", + "pubDate": "Wed, 03 Jan 2024 11:36:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/08/TELEMMGLPICT000328173661_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Catherine Hufton", + "content": "", + "contentSnippet": "", + "guid": "38dd3436-c72b-3314-9487-af187b5c994e", + "categories": [ + { + "_": "topics:things/children", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/motherhood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/parenthood", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/kids", + "$": { + "domain": "" + } + }, + { + "_": "structure:family/parenting/young-children", + "$": { + "domain": "" + } + }, + { + "_": "structure:family/parenting", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T11:36:35.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best recipe boxes and meal delivery kits \u2013 from healthy options to indulgent weekend dinners", + "link": "https://www.telegraph.co.uk/recommended/home/best-recipe-boxes-meal-delivery-kits/", + "pubDate": "Wed, 03 Jan 2024 11:20:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/01/13/FoodSpread_8_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "c3e268c3-c73d-306a-b055-059e2d24bbf5", + "categories": [ + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-food", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T11:20:57.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best duvets tried and tested at home, including all-season duvets", + "link": "https://www.telegraph.co.uk/interiors/home/the-best-duvets-for-a-good-nights-sleep/", + "pubDate": "Wed, 03 Jan 2024 11:05:56 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/interiors/2022/05/18/best-Duvet_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "3c83c214-c0ef-39fa-b0d5-1410733778a7", + "categories": [ + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T11:05:56.000Z" + }, + { + "creator": "Nicola Cutcher", + "title": "The 10 best reusable nappies of 2024, tried and tested \u2013 from cloth nappies to reusable swim nappies", + "link": "https://www.telegraph.co.uk/recommended/kids/best-reusable-nappies-tried-tested/", + "pubDate": "Wed, 03 Jan 2024 10:46:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/16/best-Lead-image-Best-reusable-nappies-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Nicola Cutcher", + "content": "", + "contentSnippet": "", + "guid": "9539cdc1-611c-3e49-99cf-f73e5be9377e", + "categories": [ + { + "_": "topics:things/plastic", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/motherhood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/parenthood", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/kids", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T10:46:46.000Z" + }, + { + "creator": "Phoebe Smith", + "title": "Best camping chairs 2024, tried and tested by an expert adventurer", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/the-best-camping-chairs/", + "pubDate": "Wed, 03 Jan 2024 10:37:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/04/12/TELEMMGLPICT000331870358_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Phoebe Smith", + "content": "", + "contentSnippet": "", + "guid": "d4db7052-738a-3791-a09f-16fbdf4ec414", + "categories": [ + { + "_": "topics:things/tents", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/picnics", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-accessories", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T10:37:19.000Z" + }, + { + "creator": "Kulwinder Rai", + "title": "The 12 best portable air conditioners for 2024 to cool your house", + "link": "https://www.telegraph.co.uk/interiors/home/best-portable-air-conditioners/", + "pubDate": "Wed, 03 Jan 2024 10:23:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/interiors/2023/04/17/TELEMMGLPICT000332402598_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Kulwinder Rai", + "content": "", + "contentSnippet": "", + "guid": "152a4a78-ab23-360c-80fd-4d55368fa315", + "categories": [ + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/energy", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/heatwave", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T10:23:36.000Z" + }, + { + "creator": "Tom Morgan", + "title": "Luke Littler becomes youngest player to reach World Darts Championship final", + "link": "https://www.telegraph.co.uk/darts/2024/01/02/luke-littler-vs-rob-cross-live-score-updates-pdc-semi-final/", + "pubDate": "Wed, 03 Jan 2024 10:14:20 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/darts/2024/01/02/TELEMMGLPICT000361448522_17042320226030_trans_NvBQzQNjv4Bq1LVUk0WFFvOzZq93y3eEPvmJDQle8zhAnRj3nA8oxTY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom Morgan", + "content": "Luke Littler\u2019s remarkable run at the World Darts Championship continued as the 16-year-old beat Rob Cross 6-2 to set up a final against new world No 1 Luke Humphries who swatted Scott Williams aside 6-0. 

]]>", + "contentSnippet": "", + "guid": "12c5a3e2-c269-383b-b74a-24368cc4fb83", + "categories": [ + { + "_": "topics:events/world-darts-championship", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/luke-littler", + "$": { + "domain": "" + } + }, + { + "_": "structure:darts", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T10:14:20.000Z" + }, + { + "creator": "Jeremy Wilson", + "title": "Luke Littler, 16, storms into World Darts Championship semi-final with 5-1 victory", + "link": "https://www.telegraph.co.uk/darts/2024/01/01/luke-littler-vs-brendan-dolan-live-score-updates-pdc-world/", + "pubDate": "Wed, 03 Jan 2024 09:48:09 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/darts/2024/01/01/TELEMMGLPICT000361359663_17041266090790_trans_NvBQzQNjv4Bqovza2kCDJqeCpxy1F5nm7faE_F5EwzAROXc2-iXeUa4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jeremy Wilson", + "content": "Luke \u2018The Nuke\u2019 Littler would need barely an hour to reduce Brendan Dolan to darting rubble but the match was actually only five minutes old when we again saw the X-Factor that makes him the most talked about 16-year-old in the country.

]]>", + "contentSnippet": "", + "guid": "ea35cf67-78aa-3296-a2c0-67fff2e434e6", + "categories": [ + { + "_": "topics:events/world-darts-championship", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/luke-littler", + "$": { + "domain": "" + } + }, + { + "_": "structure:darts", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:48:09.000Z" + }, + { + "creator": "Ben Rumsby", + "title": "Luke Littler to get \u00a350,000 prize money after trouncing Raymond van Barneveld", + "link": "https://www.telegraph.co.uk/darts/2023/12/30/raymond-van-barneveld-vs-luke-littler-live-score-pdc-world/", + "pubDate": "Wed, 03 Jan 2024 09:47:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/darts/2023/12/30/TELEMMGLPICT000361252855_17039756820050_trans_NvBQzQNjv4Bqghw_e8Qw6IFUhOIONifCLy0nJqLtMndipGxX-mKr7Ig.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Rumsby", + "content": "Luke Littler, the 16-year-old darts prodigy, is just three matches away from one of sport\u2019s greatest triumphs after blitzing the legendary Raymond van Barneveld to reach the quarter-finals of the World Championships.

]]>", + "contentSnippet": "the 16-year-old darts prodigy, is just three matches away from one of sport\u2019s greatest triumphs after blitzing the legendary Raymond van Barneveld to reach the quarter-finals of the World Championships.\n]]>", + "guid": "161e5948-ff0f-3378-ad9d-360d47ef12c7", + "categories": [ + { + "_": "topics:events/world-darts-championship", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/luke-littler", + "$": { + "domain": "" + } + }, + { + "_": "structure:darts", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:47:41.000Z" + }, + { + "creator": "Jeremy Wilson", + "title": "Luke Littler, 16, continues \u00a335,000 dream run at Darts World Championship", + "link": "https://www.telegraph.co.uk/darts/2023/12/27/matt-campbell-vs-luke-littler-live-score-world-championship/", + "pubDate": "Wed, 03 Jan 2024 09:47:23 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/darts/2023/12/27/TELEMMGLPICT000361051151_17037087836880_trans_NvBQzQNjv4Bqmo4DOQypPN9Wjil0txFIBpATjli7WiFDWIDRpA9c_3s.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jeremy Wilson", + "content": "By Jeremy Wilson

]]>", + "contentSnippet": "By Jeremy Wilson\n]]>", + "guid": "5d2896b3-e837-348b-8a4b-709aef03476f", + "categories": [ + { + "_": "topics:events/world-darts-championship", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/luke-littler", + "$": { + "domain": "" + } + }, + { + "_": "structure:darts", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:47:23.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "Kindle vs Kobo: which is the best eReader of 2024 for reading on the go?", + "link": "https://www.telegraph.co.uk/recommended/tech/best-ereader-kindle-vs-kobo/", + "pubDate": "Wed, 03 Jan 2024 09:46:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/09/13/TELEMMGLPICT000349144283_16946117224070_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "20ee87cb-e1f0-36d2-9dfe-db1a7e53802c", + "categories": [ + { + "_": "topics:things/kindle", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:technology", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:46:51.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best clothes steamers of 2024, tried and tested for quickly removing creases from clothes", + "link": "https://www.telegraph.co.uk/recommended/home/best-clothes-steamer/", + "pubDate": "Wed, 03 Jan 2024 09:43:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/17/TELEMMGLPICT000329301663_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "a26ccf9d-0a50-350a-8343-06a95590d909", + "categories": [ + { + "_": "topics:things/sustainable-fashion", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fashion-advice", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/clothes", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:43:51.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best suitcases (including children's luggage) for your holidays in 2024", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-suitcases/", + "pubDate": "Wed, 03 Jan 2024 09:42:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/20/TELEMMGLPICT000322695782_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "d24f5bc4-4901-327c-a050-32484e35bef3", + "categories": [ + { + "_": "topics:things/luggage", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/school-holidays", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:42:30.000Z" + }, + { + "creator": "Annabel Fenwick-Elliott", + "title": "The best car seats of 2024, tried and tested for newborns and infants", + "link": "https://www.telegraph.co.uk/recommended/kids/best-car-seat/", + "pubDate": "Wed, 03 Jan 2024 09:41:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/07/06/TELEMMGLPICT000341741771_16886449952060_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Annabel Fenwick-Elliott", + "content": "", + "contentSnippet": "", + "guid": "43465c88-9802-3cc2-b31f-ed3e7873c3e7", + "categories": [ + { + "_": "topics:things/parenthood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fatherhood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/motherhood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/childcare", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/children", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/kids", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:41:50.000Z" + }, + { + "creator": "Tom\u00e9 Morrissy Swan", + "title": "The best food processors of 2024 tried and tested, from Ninja to KitchenAid", + "link": "https://www.telegraph.co.uk/food-and-drink/equipment/the-best-food-processors/", + "pubDate": "Wed, 03 Jan 2024 09:40:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2023/06/14/TELEMMGLPICT000339329398_16867553281490_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom\u00e9 Morrissy Swan", + "content": "", + "contentSnippet": "", + "guid": "159ba82f-9d9e-32fe-957f-5a6aefa38f97", + "categories": [ + { + "_": "topics:things/kitchen-equipment", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-food", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:40:02.000Z" + }, + { + "creator": "Phoebe Smith", + "title": "The best sleeping bags for cosy camping, tried and tested by an expert on cold nights", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-sleeping-bags/", + "pubDate": "Wed, 03 Jan 2024 09:38:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/26/TELEMMGLPICT000306865704_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Phoebe Smith", + "content": "", + "contentSnippet": "", + "guid": "82066e15-2729-3bcf-81b7-08833c186078", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tents", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:38:50.000Z" + }, + { + "creator": "Rob Waugh", + "title": "The best broadband providers in the UK 2024, recommended by Telegraph readers", + "link": "https://www.telegraph.co.uk/recommended/tech/best-broadband/", + "pubDate": "Wed, 03 Jan 2024 09:38:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/03/best-Lead-image-Best-broadband-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Rob Waugh", + "content": "", + "contentSnippet": "", + "guid": "738f330e-953d-3ed1-8d67-07a0a0d5732b", + "categories": [ + { + "_": "topics:things/better-broadband", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/laptops", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:38:05.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The 10 best 4K TVs of 2024, tried and tested with expert advice on how to choose", + "link": "https://www.telegraph.co.uk/recommended/tech/best-4k-ultra-hd-tvs/", + "pubDate": "Wed, 03 Jan 2024 09:35:58 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/14/TELEMMGLPICT000345775115_16920257146020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "212d4f79-5a40-37e9-88e2-27e543468abc", + "categories": [ + { + "_": "topics:organisations/lg", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/sony", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/samsung", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tvs", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:35:58.000Z" + }, + { + "creator": "Emily Peck", + "title": "The best air beds of 2024 for guests staying overnight", + "link": "https://www.telegraph.co.uk/recommended/home/best-inflatable-mattress-guests-staying-night/", + "pubDate": "Wed, 03 Jan 2024 09:35:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/17/TELEMMGLPICT000329341181_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emily Peck", + "content": "", + "contentSnippet": "", + "guid": "95dc62fb-7deb-38ce-a230-e8b7c6a96dd3", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/world-sleep-day", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T09:35:15.000Z" + }, + { + "creator": "Laura Donnelly", + "title": "Junior doctors \u2018not hellbent\u2019 on strikes but prepared to walk out again", + "link": "https://www.telegraph.co.uk/news/2024/01/03/junior-doctors-strike-affect-operation-waiting-lists-nhs/", + "pubDate": "Wed, 03 Jan 2024 08:09:52 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/03/TELEMMGLPICT000361463147_17042689848920_trans_NvBQzQNjv4Bq-K_0X8rprco9mSoDo9AENQ3GhiocG9SiQMQPY9d0KXw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Laura Donnelly", + "content": "", + "contentSnippet": "", + "guid": "c982f875-daf8-3ac8-a15a-441f6c1a75d1", + "categories": [ + { + "_": "topics:in-the-news/nhs-strikes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/nhs-waiting-lists", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/nhs", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/junior-doctors-strike", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/british-medical-association", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-03T08:09:52.000Z" + }, + { + "creator": "Sam Wallace", + "title": "David Moyes\u2019 conservatism returns as West Ham play out goalless draw with Brighton", + "link": "https://www.telegraph.co.uk/football/2024/01/02/david-moyes-conservatism-returns-as-west-ham-draw-brighton/", + "pubDate": "Tue, 02 Jan 2024 21:48:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/02/TELEMMGLPICT000361447823_17042318436720_trans_NvBQzQNjv4Bql-N0aylfBBnEAeXmqfI9xmTr6t4tk3Jf2hxYeDlyQlI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Wallace", + "content": "", + "contentSnippet": "", + "guid": "266de92d-b9e8-306a-bb23-b4b5d1870e0a", + "categories": [ + { + "_": "topics:organisations/west-ham-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/brighton-and-hove-albion-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T21:48:46.000Z" + }, + { + "creator": "Lizzie Porter", + "title": "Israel assassinates senior Hamas leader in Beirut", + "link": "https://www.telegraph.co.uk/world-news/2024/01/02/israel-assassinate-senior-hamas-saleh-al-arouri-beirut/", + "pubDate": "Tue, 02 Jan 2024 21:29:20 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/03/TELEMMGLPICT000361444048_17042671313140_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lizzie Porter", + "content": "", + "contentSnippet": "", + "guid": "698538e0-426a-305b-aa5e-53f172c8f9ee", + "categories": [ + { + "_": "topics:places/lebanon", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hamas", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/beirut", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T21:29:20.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Lebanon PM condemns Israel for Beirut strike", + "link": "https://www.telegraph.co.uk/world-news/2024/01/02/israel-hamas-war-latest-news-updates-gaza-day-88-live/", + "pubDate": "Tue, 02 Jan 2024 20:33:28 GMT", + "dc:creator": "Maighna Nanu", + "content": "Lebanon\u2019s prime minister has condemned Israel for the explosion in Beirut which killed Hamas deputy leader Saleh al-Arouri and six others.

]]>", + "contentSnippet": "", + "guid": "50c8d513-3943-3f0a-b115-8674f1a01a37", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T20:33:28.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Feared Russian hypersonic missile shot down over Kyiv", + "link": "https://www.telegraph.co.uk/world-news/2024/01/02/ukraine-russia-war-news-latest-putin-air-stikes-belgorod/", + "pubDate": "Tue, 02 Jan 2024 18:57:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/02/TELEMMGLPICT000361407378_17041898694540_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "content": "The US-supplied Patriot air defence system shot down a \u2018record\u2019 ten hypersonic missiles fired at Ukraine from Russia on Tuesday morning.

]]>", + "contentSnippet": "", + "guid": "b7a667e9-52c3-3298-bf19-7b643781d24f", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T18:57:18.000Z" + }, + { + "creator": "Chris Price", + "title": "Apple downgraded over 'lacklustre' iPhone sales", + "link": "https://www.telegraph.co.uk/business/2024/01/02/ftse-100-markets-latest-brent-crude-oil-prices-china-stock/", + "pubDate": "Tue, 02 Jan 2024 18:36:08 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/02/TELEMMGLPICT000338385881_17042156201610_trans_NvBQzQNjv4BqFZ2mKB99NyfWHs4BvtAqLh_k7ZsagzP-7JFb_VvIr2o.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "Apple shares slumped by as much as 3.3pc after its stock was downgraded by analysts expecting \u201clacklustre\u201d sales of iPhones.

]]>", + "contentSnippet": "", + "guid": "67f1078c-3213-3d2b-a8f1-3306e0bb93fe", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T18:36:08.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Tuesday evening news briefing: More than 33,000 migrants face deportation to Rwanda if flights start", + "link": "https://www.telegraph.co.uk/news/2024/01/02/tuesday-evening-news-briefing-33000-migrants-deportation/", + "pubDate": "Tue, 02 Jan 2024 17:52:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "f6f84ed8-c091-3d98-b430-df054abdc8a7", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/nhs", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/junior-doctors-strike", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T17:52:02.000Z" + }, + { + "creator": "Lilia Sebouai", + "title": "Unicef delivers half a million vaccines into Gaza to prevent spread of childhood disease", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/unicef-delivers-vaccines-for-childhood-diseases-to-gaza/", + "pubDate": "Tue, 02 Jan 2024 17:15:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/02/TELEMMGLPICT000361424082_17042149703890_trans_NvBQzQNjv4Bq8VAndPZ2Bz0AY_iRYVPZ5P4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lilia Sebouai", + "content": "", + "contentSnippet": "", + "guid": "3c958903-6b69-3a16-b13b-4d0b2317ae46", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vaccines", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/childrens-health", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T17:15:41.000Z" + }, + { + "creator": "Catherine Hufton", + "title": "The best travel cots of 2024 tried and tested, including lightweight and playpen options", + "link": "https://www.telegraph.co.uk/recommended/kids/best-travel-cots-young-children/", + "pubDate": "Tue, 02 Jan 2024 16:52:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/15/TELEMMGLPICT000329084251_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Catherine Hufton", + "content": "", + "contentSnippet": "", + "guid": "9d89da3c-d0a4-306c-b2e6-2e338b059fd2", + "categories": [ + { + "_": "topics:things/children", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/childcare", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/motherhood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/parenthood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fatherhood", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/kids", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T16:52:05.000Z" + }, + { + "creator": "Issy von Simson", + "title": "The best UK spa hotels for a weekend of winter wellness", + "link": "https://www.telegraph.co.uk/travel/destinations/europe/united-kingdom/articles/the-best-hotels-for-spa-breaks-in-the-uk/", + "pubDate": "Tue, 02 Jan 2024 16:48:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/2023/december/the-grove-hotel-spa.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Issy von Simson", + "content": "", + "contentSnippet": "", + "guid": "fac3f341-fda8-38d6-bfc5-68bd9edb88c3", + "categories": [ + { + "_": "topics:places/europe", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/spas", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/hotels", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "structure:hotel-guides", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/england", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T16:48:00.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best rattan garden furniture for 2024 and where to buy it online: the expert guide", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/where-buy-best-rattan-garden-furniture/", + "pubDate": "Tue, 02 Jan 2024 16:35:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/03/03/TELEMMGLPICT000327532732_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "2a909b54-e9ec-3971-b3ee-ae60d20aa8ff", + "categories": [ + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/john-lewis", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/summer-bank-holiday", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/garden-furniture", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-accessories", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T16:35:57.000Z" + }, + { + "creator": "Madeleine Howell", + "title": "The best bathroom scales and smart body monitors to track your health, tried and tested", + "link": "https://www.telegraph.co.uk/recommended/home/best-bathroom-weighing-scales-weight-smart-body-monitors-heart/", + "pubDate": "Tue, 02 Jan 2024 16:24:52 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2021/11/29/bestbathroomscales_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Madeleine Howell", + "content": "", + "contentSnippet": "", + "guid": "e4a0f9f5-34a8-3448-b86d-57748517e87a", + "categories": [ + { + "_": "topics:things/body-mass-index", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weight-loss", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T16:24:52.000Z" + }, + { + "creator": "Sarah Newey", + "title": "At least \u00a3550 million of Covid drugs wasted in the UK", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/at-least-550-million-of-covid-drugs-wasted-in-the-uk/", + "pubDate": "Tue, 02 Jan 2024 16:14:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/02/TELEMMGLPICT000281507464_17042113764280_trans_NvBQzQNjv4Bq15XUfPwoY7svuJOpueeorfglp-O-0tXy4cPh95DZ_mE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "content": "", + "contentSnippet": "", + "guid": "fd261738-9ea3-3a38-89e3-db976a46e756", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/coronavirus", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pandemics-epidemics", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Pharmaceuticals", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T16:14:24.000Z" + }, + { + "creator": "Kulwinder Rai", + "title": "The best carpet cleaners for removing stains in 2024, tried and tested at home with expert advice", + "link": "https://www.telegraph.co.uk/recommended/home/best-carpet-cleaners/", + "pubDate": "Tue, 02 Jan 2024 16:05:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/12/08/TELEMMGLPICT000359318287_17020372638700_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Kulwinder Rai", + "content": "", + "contentSnippet": "", + "guid": "c795cd7a-b306-3573-ba59-689efa064f27", + "categories": [ + { + "_": "topics:things/vacuum-cleaners", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/steam-cleaners", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T16:05:27.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Number of asylum seekers removed from UK drops by half", + "link": "https://www.telegraph.co.uk/politics/2024/01/02/rishi-sunak-latest-news-james-cleverly-asylum-small-boats/", + "pubDate": "Tue, 02 Jan 2024 16:00:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/02/TELEMMGLPICT000338326638_17042041181760_trans_NvBQzQNjv4BqQM3rjVtAqPt4faM6F0jDQC82-ivqc6avWefomlBmWCs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "content": "The number of rejected asylum seekers and foreign offenders being removed from the UK has nearly halved in seven years, Home Office figures show.

]]>", + "contentSnippet": "", + "guid": "0b54e5cb-e923-3acc-a7c5-4d064f535bfa", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T16:00:18.000Z" + }, + { + "creator": "Madeleine Howell", + "title": "The best pizza ovens for perfect toppings and crispy crusts in 2024", + "link": "https://www.telegraph.co.uk/recommended/home/the-best-pizza-ovens/", + "pubDate": "Tue, 02 Jan 2024 15:56:09 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/19/TELEMMGLPICT000336249501_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Madeleine Howell", + "content": "", + "contentSnippet": "", + "guid": "8a0fa649-f3f1-3d9a-a6bc-96bf8d76c8d4", + "categories": [ + { + "_": "topics:things/kitchen-equipment", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/italian-food", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T15:56:09.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Massive missile and drone strikes across Ukraine while scandal sweeps Russia", + "link": "https://www.telegraph.co.uk/world-news/2024/01/02/massive-missile-and-drone-strikes-across-ukraine/", + "pubDate": "Tue, 02 Jan 2024 15:49:31 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/02/TELEMMGLPICT000361427379_17042105459020_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "4aca6bda-8b55-3e86-99d4-77b54cfc35d7", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T15:49:31.000Z" + }, + { + "creator": "Pete Wedderburn", + "title": "The 15 best pet insurance providers in 2024 \u2013 and how to find the right cover for you", + "link": "https://www.telegraph.co.uk/pets/news-features/best-pet-insurance/", + "pubDate": "Tue, 02 Jan 2024 15:45:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/pets/2023/03/14/TELEMMGLPICT000328971564_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Pete Wedderburn", + "content": "", + "contentSnippet": "", + "guid": "e207e54e-793b-3ef4-954d-46722faefdf7", + "categories": [ + { + "_": "topics:things/dogs", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cats", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T15:45:27.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best travel pillows for long flights and commuting in 2024, tried and tested", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-travel-pillow/", + "pubDate": "Tue, 02 Jan 2024 15:39:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/19/TELEMMGLPICT000333226582_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "b57976f2-8f30-3b78-86fb-17c8bcb91c2b", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/solo-travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T15:39:55.000Z" + }, + { + "creator": "Saidu Bah", + "title": "Inside the \u2018zombie\u2019 drug epidemic sweeping West Africa", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/kush-synthetic-drug-addiction-epidemic-west-africa/", + "pubDate": "Tue, 02 Jan 2024 15:35:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/02/TELEMMGLPICT000361413082_17042055426450_trans_NvBQzQNjv4Bqo6V3cvctqdfs7HwV5UCM93wSCF1R0VweJ7DS2UnVMSQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Saidu Bah", + "content": "", + "contentSnippet": "", + "guid": "e84b5db8-3e1a-30e3-a692-4a57f524f01f", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/drugs", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/addiction", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/sierra-leone", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/west-africa", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/africa", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T15:35:50.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best electric blankets in 2024, to keep you warm on cold nights", + "link": "https://www.telegraph.co.uk/recommended/home/best-electric-blankets-keep-warm-winter/", + "pubDate": "Tue, 02 Jan 2024 15:23:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/10/13/TELEMMGLPICT000312581465_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "a916fe4e-7546-311f-877a-50f7fa3076b7", + "categories": [ + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/energy-price-cap", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T15:23:46.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "13 best air fryers of 2024, to save money and energy (with some tasty results)", + "link": "https://www.telegraph.co.uk/recommended/home/best-air-fryers-healthy-home-cooking/", + "pubDate": "Tue, 02 Jan 2024 15:08:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/06/28/TELEMMGLPICT000340875317_16879444599140_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "1d87eb9b-10c8-3de0-9895-66c69b97ce12", + "categories": [ + { + "_": "topics:things/kitchen-equipment", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink/food-and-drink-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T15:08:10.000Z" + }, + { + "creator": "Madeleine Howell", + "title": "The best mini fridges for cool drinks and small spaces, including mini fridge freezers", + "link": "https://www.telegraph.co.uk/food-and-drink/equipment/the-best-mini-fridges/", + "pubDate": "Tue, 02 Jan 2024 14:46:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2022/06/13/best-mini-fridge-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Madeleine Howell", + "content": "", + "contentSnippet": "", + "guid": "bfd9890f-1833-32b0-8998-5dc9a712db7c", + "categories": [ + { + "_": "topics:things/kitchen-equipment", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T14:46:27.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Russian poets jailed for anti-war reading", + "link": "https://www.telegraph.co.uk/world-news/2023/12/28/ukraine-russia-war-live-kuleba-europe-not-know-fight-latest/", + "pubDate": "Tue, 02 Jan 2024 14:32:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/12/28/TELEMMGLPICT000361038002_17037251378900_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "content": "Two Russian men have been jailed for reciting anti-war poems at a public reading in central Moscow.

]]>", + "contentSnippet": "", + "guid": "dc45c15c-76fb-304a-ae08-3879904730c2", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T14:32:15.000Z" + }, + { + "creator": "Kulwinder Rai", + "title": "The best soundbars of 2024 for improving your TV audio, tried and tested at home", + "link": "https://www.telegraph.co.uk/recommended/tech/best-soundbar/", + "pubDate": "Tue, 02 Jan 2024 14:28:54 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/09/06/TELEMMGLPICT000348198167_16940097181830_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Kulwinder Rai", + "content": "", + "contentSnippet": "", + "guid": "89fe92ec-0760-3620-9206-76d168d45d37", + "categories": [ + { + "_": "topics:things/tvs", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/sonos", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bose", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/sony", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T14:28:54.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best hedge trimmers for 2024, including cordless, petrol and extendable models", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/the-best-hedge-trimmers/", + "pubDate": "Tue, 02 Jan 2024 14:25:08 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/02/06/TELEMMGLPICT000324507841_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "52272d6d-f683-3787-9348-e3433b282ea8", + "categories": [ + { + "_": "topics:things/garden-sheds", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-accessories", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T14:25:08.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best duvet covers and bedding sets for a better night's sleep, tried and tested", + "link": "https://www.telegraph.co.uk/interiors/home/best-duvet-covers-bedding-sets-stylish-bedroom-update/", + "pubDate": "Tue, 02 Jan 2024 14:23:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/interiors/2022/03/15/best-duvet-covers-bedding-sets_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "279a30f2-bd1f-3512-9d3a-637f3cca77c4", + "categories": [ + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/world-sleep-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep-hygiene", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T14:23:25.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best treadmills for walking, running and cardio workouts in 2024, recommended by experts", + "link": "https://www.telegraph.co.uk/health-fitness/body/best-treadmill/", + "pubDate": "Tue, 02 Jan 2024 14:21:49 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2022/12/21/TELEMMGLPICT000320305130_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "0644d1d0-b9a6-31dd-a267-2e77abf0da47", + "categories": [ + { + "_": "topics:things/exercise", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gym-exercises", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/running", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/body", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T14:21:49.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best exercise bikes for 2024, tried and tested", + "link": "https://www.telegraph.co.uk/health-fitness/fitness/cycling/best-exercise-bikes-indoor-cycling-effective-way-lose-weight/", + "pubDate": "Tue, 02 Jan 2024 14:19:09 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2022/03/04/best-Exercise-Bikes_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "3f9a9167-39d8-3d87-91c4-e8389feb7239", + "categories": [ + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/home-workout", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cardio-workouts", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/road-cycling", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/peloton", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/heart-health", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/body", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/fitness/cycling", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-guide", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T14:19:09.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best cylinder vacuum cleaners for deep cleaning your home", + "link": "https://www.telegraph.co.uk/recommended/home/best-cylinder-vacuum-cleaner/", + "pubDate": "Tue, 02 Jan 2024 13:06:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/03/28/best-Cylinder-Vacuum-Cleaner_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "b2698e6d-5f58-3a02-b969-e787d70c6823", + "categories": [ + { + "_": "topics:things/vacuum-cleaners", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dyson", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T13:06:15.000Z" + }, + { + "creator": "Simon Briggs", + "title": "Rafael Nadal delivers emphatic victory over Dominic Thiem on return from injury", + "link": "https://www.telegraph.co.uk/tennis/2024/01/02/rafael-nadal-wins-dominic-thiem-brisbane-international/", + "pubDate": "Tue, 02 Jan 2024 12:55:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/02/TELEMMGLPICT000361415367_17041997551490_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Briggs", + "content": "", + "contentSnippet": "", + "guid": "41456405-0db8-3f34-bb5b-8c1d2e65f083", + "categories": [ + { + "_": "topics:people/rafael-nadal", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/dominic-thiem", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T12:55:00.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best pressure washers of 2024 for cleaning cars, decking and patios", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-pressure-washers/", + "pubDate": "Tue, 02 Jan 2024 12:23:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/02/13/TELEMMGLPICT000325293730_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "d8cca231-4d0f-3fd5-953f-eaec02cdc44a", + "categories": [ + { + "_": "topics:things/pressure-washers", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cars-3", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/garden-furniture", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-accessories", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T12:23:46.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best sofa beds in 2024 for sitting and sleeping", + "link": "https://www.telegraph.co.uk/recommended/home/best-sofa-beds-sitting-sleeping/", + "pubDate": "Tue, 02 Jan 2024 12:08:33 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/30/TELEMMGLPICT000323745354_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "27304de4-579b-39ce-83e3-a6e66401d2ae", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T12:08:33.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The 15 best diffusers for keeping your home smelling fresh, including electric and reed diffusers", + "link": "https://www.telegraph.co.uk/recommended/home/best-diffusers/", + "pubDate": "Tue, 02 Jan 2024 12:07:42 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/07/21/TELEMMGLPICT000343408407_16899413843210_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "014a5a0a-9cbf-3ea3-ae90-d2648d664c3b", + "categories": [ + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T12:07:42.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best mattress toppers of 2024 for a more comfortable sleep, including for side sleepers", + "link": "https://www.telegraph.co.uk/recommended/home/best-mattress-toppers/", + "pubDate": "Tue, 02 Jan 2024 12:06:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/12/22/TELEMMGLPICT000320378949_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "bd618e12-30b8-35eb-8fe9-d37de4e8195b", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T12:06:34.000Z" + }, + { + "creator": "Kirsty Bosley", + "title": "The best white noise machines, tried and tested with advice from a neuroscientist", + "link": "https://www.telegraph.co.uk/recommended/tech/best-white-noise-machine/", + "pubDate": "Tue, 02 Jan 2024 12:05:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/31/TELEMMGLPICT000347452357_16934934556880_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Kirsty Bosley", + "content": "", + "contentSnippet": "", + "guid": "0f765296-b44a-3661-97da-03bce2885a89", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleeping-disorders", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T12:05:00.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best anti-snore pillows of 2024 for easier breathing and better sleep", + "link": "https://www.telegraph.co.uk/recommended/home/best-anti-snore-pillow/", + "pubDate": "Tue, 02 Jan 2024 12:04:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/09/TELEMMGLPICT000335025368_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "fdfdc1d1-f990-308e-93d7-1bc393e1d37f", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleeping-disorders", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T12:04:15.000Z" + }, + { + "creator": "Jack Rear", + "title": "The 14 best backpacks of 2024 for travel and work, tried and tested", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-backpacks/", + "pubDate": "Tue, 02 Jan 2024 12:02:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/07/26/TELEMMGLPICT000343933247_16903836569190_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Rear", + "content": "", + "contentSnippet": "", + "guid": "e0c8f06f-73d9-3928-ad6a-6171bbf4181a", + "categories": [ + { + "_": "topics:things/luxury-travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/luggage", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/solo-travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T12:02:43.000Z" + }, + { + "creator": "Phoebe Smith", + "title": "The 10 best tents for family camping trips in 2024", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-tents/", + "pubDate": "Tue, 02 Jan 2024 12:00:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/08/07/TELEMMGLPICT000345143690_16914195889380_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Phoebe Smith", + "content": "", + "contentSnippet": "", + "guid": "2f6ac9ee-4f7a-312f-a098-5f9ba1687b31", + "categories": [ + { + "_": "topics:things/tents", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/school-holidays", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/summer-bank-holiday", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T12:00:50.000Z" + }, + { + "creator": "Madeleine Howell", + "title": "The best inflatable paddle boards of 2024, tried and tested on rivers, lakes and sea", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-inflatable-stand-up-paddle-boards/", + "pubDate": "Tue, 02 Jan 2024 11:59:32 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/01/best-Lead-image-Best-inflatable-paddle-boards-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Madeleine Howell", + "content": "", + "contentSnippet": "", + "guid": "136842ee-546c-3c0e-86f9-f8f60a46b1e0", + "categories": [ + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/womens-fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/canals-waterways", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T11:59:32.000Z" + }, + { + "creator": "Lettice Bromovsky", + "title": "UK weather latest: Residents evacuated as major incident declared over flooding", + "link": "https://www.telegraph.co.uk/news/2024/01/04/uk-weather-live-flooding-risk-heavy-rain-storm-henk-latest/", + "pubDate": "Thu, 04 Jan 2024 16:53:06 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/04/TELEMMGLPICT000361563622_17043799137990_trans_NvBQzQNjv4Bqqak5QxipGUxSaCmYiTkvk4-YqJpuh24YizWnVbthlIM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lettice Bromovsky", + "content": "Residents are being evacuated from areas of Nottinghamshire and Gloucestershire as heavy rainfall and flooding continues across the country.

]]>", + "contentSnippet": "", + "guid": "31cd692f-6531-3e6c-86c7-18a94beb79f2", + "categories": [ + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/flooding", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/met-office", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T16:53:06.000Z" + }, + { + "creator": "Tom\u00e9 Morrissy Swan", + "title": "Tried and tested: the best blenders of 2024 for making smoothies, soups, dips and desserts at home", + "link": "https://www.telegraph.co.uk/recommended/home/best-blenders/", + "pubDate": "Thu, 04 Jan 2024 16:13:32 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/02/16/TELEMMGLPICT000325620770_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom\u00e9 Morrissy Swan", + "content": "", + "contentSnippet": "", + "guid": "9a022c3a-072b-3585-8d60-385ce9440c69", + "categories": [ + { + "_": "topics:things/baking", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/juices-and-smoothies", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/soup", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/smoothie-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-food", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T16:13:32.000Z" + }, + { + "creator": "Emily Peck", + "title": "The best microwaves of 2024 for home cooking, including multi-function combi models", + "link": "https://www.telegraph.co.uk/recommended/home/best-microwaves/", + "pubDate": "Thu, 04 Jan 2024 16:01:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/11/13/TELEMMGLPICT000356609864_16998979452850_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emily Peck", + "content": "", + "contentSnippet": "", + "guid": "eda3cb8f-2b36-3834-9dfa-2db5bbd27823", + "categories": [ + { + "_": "topics:things/ready-meals", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/kitchen-equipment", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T16:01:59.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Is the war really in stalemate?", + "link": "https://www.telegraph.co.uk/world-news/2024/01/04/is-the-war-really-in-stalemate/", + "pubDate": "Thu, 04 Jan 2024 15:49:01 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/04/TELEMMGLPICT000361557098_17043832972750_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "fc872faa-685e-3c50-b279-78179af0a9c2", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T15:49:01.000Z" + }, + { + "creator": "Catherine Hufton", + "title": "The best high chairs of 2024, for mealtimes with your baby and (much) older children", + "link": "https://www.telegraph.co.uk/recommended/kids/best-high-chairs/", + "pubDate": "Thu, 04 Jan 2024 15:29:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/09/16/TELEMMGLPICT000309520230_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Catherine Hufton", + "content": "", + "contentSnippet": "", + "guid": "6b29433b-a416-3668-ac85-b1fdb01e9439", + "categories": [ + { + "_": "topics:things/children", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/parenthood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/childcare", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/motherhood", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/kids", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T15:29:14.000Z" + }, + { + "creator": "Emily Peck", + "title": "Best hair straighteners of 2024 reviewed, with expert advice from a celebrity hair stylist", + "link": "https://www.telegraph.co.uk/beauty/hair/best-hair-straighteners/", + "pubDate": "Thu, 04 Jan 2024 15:17:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/beauty/2022/10/07/TELEMMGLPICT000311921468_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emily Peck", + "content": "", + "contentSnippet": "", + "guid": "d5396a39-baad-3fab-b8f8-e48a8bdd9bae", + "categories": [ + { + "_": "topics:things/beauty-guide", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/hair", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/hairstyles", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty/hair", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T15:17:25.000Z" + }, + { + "creator": "Harriet Barber", + "title": "Latin America\u2019s health systems are falling behind the rest of the world, WHO warns", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/latin-america-health-systems-world-health-organization/", + "pubDate": "Thu, 04 Jan 2024 15:12:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/04/TELEMMGLPICT000253773085_17043757555710_trans_NvBQzQNjv4Bq3Z7i_2nUjuO-XXgVmfiyhMbHf4DfgeegiUIPq8ZyLgk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Harriet Barber", + "content": "", + "contentSnippet": "", + "guid": "f52d9665-7daf-3a76-ace1-dee5e1b5657e", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/latin-america", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/south-america", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/coronavirus", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pandemics-epidemics", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T15:12:44.000Z" + }, + { + "creator": "Rob Waugh", + "title": "The best antivirus software of 2024, tried and tested to keep your family\u2019s devices protected", + "link": "https://www.telegraph.co.uk/recommended/tech/best-antivirus-software/", + "pubDate": "Thu, 04 Jan 2024 14:17:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/02/14/Best-antivirus-software-2022_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Rob Waugh", + "content": "", + "contentSnippet": "", + "guid": "8896c0e2-248b-3c0b-9e47-4f8cd6b412f3", + "categories": [ + { + "_": "topics:things/phishing", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tablets", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cyber-attacks", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cyber-crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cyber-defence", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T14:17:14.000Z" + }, + { + "creator": "Catherine Hufton", + "title": "The best pregnancy pillows of 2024 for comfort and support", + "link": "https://www.telegraph.co.uk/recommended/home/best-pregnancy-pillows/", + "pubDate": "Thu, 04 Jan 2024 14:12:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/17/TELEMMGLPICT000329291082_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Catherine Hufton", + "content": "", + "contentSnippet": "", + "guid": "dd46b59b-f2df-3c95-8888-7a98678ca5b0", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/back-pain", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pregnancy", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/maternity", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T14:12:14.000Z" + }, + { + "creator": "Fiona Duncan", + "title": "The best country house hotels in Britain", + "link": "https://www.telegraph.co.uk/travel/destinations/europe/united-kingdom/england/articles/the-best-country-house-hotels-in-britain/", + "pubDate": "Thu, 04 Jan 2024 13:39:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/hotels-with-history-stock-images/Cliveden---Interior-Shot---Great-Hall-with-Waiter.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Fiona Duncan", + "content": "", + "contentSnippet": "", + "guid": "a3273c0f-d6fc-3828-9c4b-b6ce2ae707d7", + "categories": [ + { + "_": "topics:places/europe", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/hotels", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "structure:hotel-guides", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T13:39:00.000Z" + }, + { + "creator": "Chas Newkey-Burden", + "title": "The best fire pits of 2024 for cold nights, tried and tested", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-fire-pit/", + "pubDate": "Thu, 04 Jan 2024 12:59:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/07/04/TELEMMGLPICT000341495045_16884738404200_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chas Newkey-Burden", + "content": "", + "contentSnippet": "", + "guid": "4275f006-634d-3dc7-9aed-9adfb6af594d", + "categories": [ + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/barbecue", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/garden-furniture", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-accessories", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:59:25.000Z" + }, + { + "creator": "Rob Waugh", + "title": "The best noise cancelling headphones 2024 tried and tested for music, travel and sleep", + "link": "https://www.telegraph.co.uk/recommended/tech/best-noise-cancelling-headphones/", + "pubDate": "Thu, 04 Jan 2024 12:50:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/12/08/TELEMMGLPICT000319062129_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rob Waugh", + "content": "", + "contentSnippet": "", + "guid": "7e998df3-2b1c-3244-8021-009906e8bd9e", + "categories": [ + { + "_": "topics:things/headphones", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/sony", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/beats-by-dre", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bose", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/more-telegraph-recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:50:00.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best scented candles for a cosy home this winter, tried and tested", + "link": "https://www.telegraph.co.uk/interiors/home/best-scented-candles/", + "pubDate": "Thu, 04 Jan 2024 12:31:28 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/interiors/2023/11/01/TELEMMGLPICT000355170126_16988436597480_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "ee96d317-e6f3-329e-95dd-d145f427a465", + "categories": [ + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:31:28.000Z" + }, + { + "creator": "Emily Peck", + "title": "The best solar garden lights of 2024 with advice from Gardener\u2019s Question Time expert Matthew Wilson", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-solar-garden-lights1/", + "pubDate": "Thu, 04 Jan 2024 12:10:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2022/08/05/1-My-garden-by-night_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emily Peck", + "content": "", + "contentSnippet": "", + "guid": "0faa32c2-194a-39a1-812f-cbedcb35ff36", + "categories": [ + { + "_": "topics:things/spring-summer-trends", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:10:36.000Z" + }, + { + "creator": "Sam Rice", + "title": "Vietnamese-style chicken salad recipe ", + "link": "https://www.telegraph.co.uk/recipes/0/vietnamese-style-chicken-salad-recipe/", + "pubDate": "Thu, 04 Jan 2024 12:10:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361549835_17043686075860_trans_NvBQzQNjv4BqdcMIfi3HfSGJsLRwA4pGsdkM9MM8VM3G1BxlGUO4L8Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "871ef0f3-fb2f-3e79-a661-a9072144536e", + "categories": [ + { + "_": "topics:things/quick-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chicken-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/salad-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vietnamese-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:10:35.000Z" + }, + { + "creator": "Sam Rice", + "title": "Puy lentil, tomato and goat\u2019s cheese salad recipe", + "link": "https://www.telegraph.co.uk/recipes/0/puy-lentil-tomato-and-goats-cheese-salad-recipe/", + "pubDate": "Thu, 04 Jan 2024 12:09:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361550248_17043658088840_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "1fcdccb8-8cad-3a4e-89dd-7de29f33f043", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/quick-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/salad-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lentil-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cheese-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:09:30.000Z" + }, + { + "creator": "Sam Rice", + "title": "King prawn and pea baked biryani recipe ", + "link": "https://www.telegraph.co.uk/recipes/0/king-prawn-and-pea-baked-biryani-recipe/", + "pubDate": "Thu, 04 Jan 2024 12:08:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361547184_17043650560060_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "5ca58f61-e316-3b2c-925a-d04700418157", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fish-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/rice-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/prawn-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:08:27.000Z" + }, + { + "creator": "Sam Rice", + "title": "Baked salmon with tangy kiwi salsa recipe", + "link": "https://www.telegraph.co.uk/recipes/0/baked-salmon-with-tangy-kiwi-salsa-recipe/", + "pubDate": "Thu, 04 Jan 2024 12:06:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361547291_17043642484730_trans_NvBQzQNjv4BqZd4u6tt26KB__IERsdI8UNkM9MM8VM3G1BxlGUO4L8Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "1e9730fc-521d-3d92-967d-7242848beb6e", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/quick-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fish-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/salmon-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:06:55.000Z" + }, + { + "creator": "Sam Rice", + "title": "Pan-fried rainbow trout with mushrooms and chard recipe", + "link": "https://www.telegraph.co.uk/recipes/0/pan-fried-rainbow-trout-with-mushrooms-and-chard-recipe/", + "pubDate": "Thu, 04 Jan 2024 12:05:52 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361547144_17043637428500_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "b2d3152d-ddd1-39f9-b3e9-350d1b1fc8eb", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/quick-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fish-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mushroom-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:05:52.000Z" + }, + { + "creator": "Sam Rice", + "title": "Smoked-mackerel p\u00e2t\u00e9 on toast with watercress and a fried egg recipe", + "link": "https://www.telegraph.co.uk/recipes/0/healthy-smoked-mackerel-pate-on-toast-watercress-recipe/", + "pubDate": "Thu, 04 Jan 2024 12:04:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361543808_17043619066650_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "d8a1d7d0-61eb-3d9d-95c5-95ac2354c7b4", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/quick-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fish-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/brunch-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lunch-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:04:25.000Z" + }, + { + "creator": "Sam Rice", + "title": "Flaky curried cod with yogurt flatbreads recipe", + "link": "https://www.telegraph.co.uk/recipes/0/flaky-curried-cod-with-yogurt-flatbreads-recipe/", + "pubDate": "Thu, 04 Jan 2024 12:02:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361486768_17043010034120_trans_NvBQzQNjv4Bqv3hxuICTza90rxjOncu1SEikPYR0xYwuEBLwP9UFqPg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "0dd1994e-48ee-34f6-abaf-e75dd32e7e70", + "categories": [ + { + "_": "topics:things/quick-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fish-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cod-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/curry-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:02:59.000Z" + }, + { + "creator": "Sam Rice", + "title": "Sweet and sour pork tenderloin with braised cabbage recipe ", + "link": "https://www.telegraph.co.uk/recipes/0/sweet-and-sour-pork-tenderloin-with-braised-cabbage-recipe/", + "pubDate": "Thu, 04 Jan 2024 12:01:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485613_17042989702990_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "a20b57f0-108f-3e35-8e1a-2ccd45fdf7f1", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pork-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cabbage-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/roast-dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:01:17.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The perfect ski holiday in Zermatt", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/zermatt/zermatt-ski-holiday-guide/", + "pubDate": "Thu, 04 Jan 2024 12:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/zermatt-village-view.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "3b75ad58-2b03-37b4-ac9b-72617ebb845b", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/zermatt", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best accommodation in Zermatt", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/zermatt/best-accommodation-zermatt/", + "pubDate": "Thu, 04 Jan 2024 12:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/2020/September/cervo-mountain-resort-zermatt-switzerland-3-p.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "f5ffbabe-9d27-3ce2-8015-4cb1d39dfba8", + "categories": [ + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/zermatt", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T12:00:00.000Z" + }, + { + "creator": "Sam Rice", + "title": "Broccoli, bacon and cheddar burgers recipe", + "link": "https://www.telegraph.co.uk/recipes/0/broccoli-bacon-and-cheddar-burgers-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:59:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485795_17042983697320_trans_NvBQzQNjv4BqdcMIfi3HfSGJsLRwA4pGsdkM9MM8VM3G1BxlGUO4L8Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "5ae880e4-8e28-3b50-9e48-332a90447721", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/broccoli-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/bacon-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/burger-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cheese-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:59:37.000Z" + }, + { + "creator": "Sam Rice", + "title": "Spicy lamb meatballs recipe ", + "link": "https://www.telegraph.co.uk/recipes/0/spicy-lamb-meatballs-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:57:09 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485416_17042973281970_trans_NvBQzQNjv4BqFEEiND-iVAHWLoyxZQxve9kM9MM8VM3G1BxlGUO4L8Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "680216ba-396f-3068-a225-06462eb93e76", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/meatball-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lamb-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/spicy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:57:09.000Z" + }, + { + "creator": "Sam Rice", + "title": "Sriracha and lemon chicken traybake recipe", + "link": "https://www.telegraph.co.uk/recipes/2024/01/04/sriracha-and-lemon-chicken-traybake-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:56:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485428_17042969822110_trans_NvBQzQNjv4BqMTYrrGk2rIg_dUQOjEMTeXr4H2HV05DHwH9R380xnfo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "8bde364e-f2ff-3e4e-90ed-02ca10e968b4", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chicken-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/spicy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lemon-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/roast-chicken-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:56:11.000Z" + }, + { + "creator": "Sam Rice", + "title": "Roasted purple sprouting broccoli with grilled halloumi, orange and almonds recipe", + "link": "https://www.telegraph.co.uk/recipes/0/healthy-roasted-purple-sprouting-broccoli-with-grilled-hall/", + "pubDate": "Thu, 04 Jan 2024 11:54:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361487282_17042964910940_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "02ed8614-2150-3ac0-a0b6-156b7dd6f2dd", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cheese-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/orange-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/broccoli-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:54:27.000Z" + }, + { + "creator": "Sam Rice", + "title": "Family-friendly black bean chilli recipe", + "link": "https://www.telegraph.co.uk/recipes/0/healthy-family-friendly-black-bean-chilli-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:52:54 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361487070_17042952935340_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "6949edd9-aabf-3614-bca6-1434e3dba27d", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/stew-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mexican-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vegan-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:52:54.000Z" + }, + { + "creator": "Sam Rice", + "title": "Beans Proven\u00e7al recipe", + "link": "https://www.telegraph.co.uk/recipes/0/healthy-beans-provencal-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:51:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361486769_17042947590010_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "36f4741d-b2e0-33fc-bdec-2eb037de62fc", + "categories": [ + { + "_": "topics:things/vegan-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/bean-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/stew-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:51:40.000Z" + }, + { + "creator": "Sam Rice", + "title": "Spinach and cheese crustless quiche recipe", + "link": "https://www.telegraph.co.uk/recipes/0/healthy-spinach-and-cheese-crustless-quiche-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:50:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361487164_17042942655550_trans_NvBQzQNjv4BqF17Eb5QVe68VMN2NfamVAEikPYR0xYwuEBLwP9UFqPg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "92575ce8-f679-33c6-95e9-f5a82c198ef8", + "categories": [ + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/quiche-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/egg-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/spinach-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:50:37.000Z" + }, + { + "creator": "Sam Rice", + "title": "Spinach and chickpea curry recipe", + "link": "https://www.telegraph.co.uk/recipes/2024/01/04/healthy-spinach-and-chickpea-curry-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:48:08 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361486993_17042930411880_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "5899eac6-deea-373e-a887-b5287a477535", + "categories": [ + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/curry-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chickpea-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vegan-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:48:08.000Z" + }, + { + "creator": "Sam Rice", + "title": "Spinach, squash, red onion and halloumi salad with sweet chilli dressing recipe", + "link": "https://www.telegraph.co.uk/recipes/0/spinach-squash-red-onion-and-halloumi-salad-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:43:49 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/04/TELEMMGLPICT000361544279_17043623648710_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "1759e0a8-ce72-3df2-bf13-5baad9c358a1", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/salad-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pumpkin-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cheese-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/spinach-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:43:49.000Z" + }, + { + "creator": "Sam Rice", + "title": "Spaghetti with broccoli, peas and hot-smoked salmon recipe", + "link": "https://www.telegraph.co.uk/recipes/0/spaghetti-with-broccoli-peas-and-hot-smoked-salmon-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:42:06 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485299_17043016685570_trans_NvBQzQNjv4Bq90JsMauqkzRhOnTEP_rlOkikPYR0xYwuEBLwP9UFqPg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "eb683342-042a-30a8-8b19-6deb34c030be", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/quick-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pasta-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/salmon-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/broccoli-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:42:06.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best low-alcohol and non-alcoholic beers of 2024, tried and tested", + "link": "https://www.telegraph.co.uk/food-and-drink/beer/best-low-alcohol-non-alcoholic-beers-alcohol-free/", + "pubDate": "Thu, 04 Jan 2024 11:41:54 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/food-and-drink/2022/02/07/best-Harveys-Sussex-Best-Best-low-alcohol-beers_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "8c25535c-acfb-3fba-a9ac-7f0190f6a2aa", + "categories": [ + { + "_": "topics:things/beer", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/alcohol", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/dry-january", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weight-loss", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/sober-october", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:41:54.000Z" + }, + { + "creator": "Sam Rice", + "title": "Roast chicken with herby harissa lentils recipe", + "link": "https://www.telegraph.co.uk/recipes/2024/01/04/roast-chicken-with-herby-harissa-lentils-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:41:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361500457_17043004717940_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "e2320120-3570-3f7c-b649-c29f3506eadd", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chicken-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lentil-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/roast-chicken-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:41:04.000Z" + }, + { + "creator": "Sam Rice", + "title": "Simple beef and chickpea tagine recipe", + "link": "https://www.telegraph.co.uk/recipes/0/simple-beef-and-chickpea-tagine-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:39:23 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361485399_17042993936870_trans_NvBQzQNjv4BqVLa3QPVTMHf7Wtw837j9bUikPYR0xYwuEBLwP9UFqPg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "ad403b0d-13fd-3430-ac4f-789515abc462", + "categories": [ + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/beef-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/stew-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tagine-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:39:23.000Z" + }, + { + "creator": "Sam Rice", + "title": "Mushroom and lentil masala recipe", + "link": "https://www.telegraph.co.uk/recipes/0/healthy-mushroom-and-lentil-masala-recipe/", + "pubDate": "Thu, 04 Jan 2024 11:37:08 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/03/TELEMMGLPICT000361486894_17042957638820_trans_NvBQzQNjv4BqmPAcVC8mgxEnW3XOYQwuStkM9MM8VM3G1BxlGUO4L8Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Rice", + "content": "", + "contentSnippet": "", + "guid": "dcb8e7c1-c711-38f5-80d2-780e1831f379", + "categories": [ + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/curry-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mushroom-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lentil-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:37:08.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best vacuums for pet hair 2024, tried and tested in dog and cat-owners' houses", + "link": "https://www.telegraph.co.uk/recommended/home/best-vacuum-pet-hair/", + "pubDate": "Thu, 04 Jan 2024 11:18:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/02/27/TELEMMGLPICT000327044340_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "f187d646-9bd5-3dca-abd7-3b817e200a34", + "categories": [ + { + "_": "topics:things/vacuum-cleaners", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dogs", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cats", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:18:37.000Z" + }, + { + "creator": "Catherine Davison", + "title": "India\u2019s new homegrown vaccine offers hope in fight against cervical cancer", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/indias-new-homegrown-vaccine-for-cervical-cancer/", + "pubDate": "Thu, 04 Jan 2024 11:13:56 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/04/TELEMMGLPICT000361485617_17043653266690_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Catherine Davison", + "content": "", + "contentSnippet": "", + "guid": "d72cce50-aacd-3a3c-87fc-7b7a5c04503c", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cervical-cancer", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vaccines", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/india", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T11:13:56.000Z" + }, + { + "creator": "Victoria Ward", + "title": "Princess Beatrice visits Prince Andrew after Epstein court files release", + "link": "https://www.telegraph.co.uk/royal-family/2024/01/05/princess-beatrice-visits-prince-andrew-epstein-files/", + "pubDate": "Fri, 05 Jan 2024 13:42:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/royal-family/2024/01/05/TELEMMGLPICT000361640260_17044610554810_trans_NvBQzQNjv4BqENh0amqpuv8Z5e8_LKlob_RHlEWgcACQH02ls8s96XU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Victoria Ward", + "content": "", + "contentSnippet": "", + "guid": "5b82129c-3470-3641-8cd5-777783421524", + "categories": [ + { + "_": "topics:people/prince-andrew", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/princess-beatrice", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeffrey-epstein", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/ghislaine-maxwell", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T13:42:17.000Z" + }, + { + "creator": "Debbie McQuoid", + "title": "\u2018There was abuse in my home, but it went under the radar\u2019", + "link": "https://www.telegraph.co.uk/christmas/2024/01/05/abuse-go-beyond-charity-young-carers-domestic-violence/", + "pubDate": "Fri, 05 Jan 2024 13:34:39 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/03/TELEMMGLPICT000360654599_17043032447430_trans_NvBQzQNjv4Bqek9vKm18v_rkIPH9w2GMNpPHkRvugymKLtqq96r_VP8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Debbie McQuoid", + "content": "", + "contentSnippet": "", + "guid": "b1372a68-7fe0-3822-84bf-693e908c5451", + "categories": [ + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/domestic-violence", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/children", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/go-beyond", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T13:34:39.000Z" + }, + { + "creator": "Joe Wright", + "title": "Free cash for parents: how to save \u00a36,500 on nursery fees with new scheme", + "link": "https://www.telegraph.co.uk/money/consumer-affairs/free-childcare-15-hours-how-apply/", + "pubDate": "Fri, 05 Jan 2024 13:28:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/money/2024/01/04/TELEMMGLPICT000361570408_17043911690900_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joe Wright", + "content": "", + "contentSnippet": "", + "guid": "48fbb92f-a038-3165-ba2e-3e19a918d2cb", + "categories": [ + { + "_": "topics:things/consumer-affairs", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/parenthood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/children", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/childcare", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:money", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-guide", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T13:28:14.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "Polar bear dies from bird flu, in first recorded case", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/bird-flu-kills-polar-bear-for-first-time-on-record/", + "pubDate": "Fri, 05 Jan 2024 13:21:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/05/TELEMMGLPICT000225403222_17044594795240_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "fcef8547-8fca-3745-b2ad-7b362554e704", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/bird-flu", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pandemics-epidemics", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/viruses", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/alaska", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/arctic", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T13:21:18.000Z" + }, + { + "creator": "Chanel Zagon", + "title": "UK flooding latest: Henley homes under water as River Thames overflows", + "link": "https://www.telegraph.co.uk/news/2024/01/05/storm-henk-latest-news-flooding-london/", + "pubDate": "Fri, 05 Jan 2024 13:16:50 GMT", + "dc:creator": "Chanel Zagon", + "content": "Riverside houses in Henley-on-Thames are under water as flooding causes chaos across England, with more than 1,000 properties evacuated.

]]>", + "contentSnippet": "", + "guid": "66de5ee7-dd1c-3e3e-bc8d-5af5471c27a3", + "categories": [ + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/met-office", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T13:16:50.000Z" + }, + { + "creator": "Pete Wedderburn", + "title": "The best cat food of 2024, recommended by a vet \u2013 including new online cat food delivery services", + "link": "https://www.telegraph.co.uk/pets/news-features/best-cat-food/", + "pubDate": "Fri, 05 Jan 2024 12:55:42 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/pets/2023/03/22/TELEMMGLPICT000329819598_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Pete Wedderburn", + "content": "", + "contentSnippet": "", + "guid": "8ad7fd9b-65ec-373a-abda-c210ee580f74", + "categories": [ + { + "_": "topics:things/cats", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T12:55:42.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Farage claims Tory MPs believe they have \u2018God-given right to their jobs\u2019", + "link": "https://www.telegraph.co.uk/politics/2024/01/05/rishi-sunak-latest-news-keir-starmer-election-updates/", + "pubDate": "Fri, 05 Jan 2024 12:45:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/05/TELEMMGLPICT000349259506_17044585720020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwZ-noePaJta23NuHfKFFEj8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "content": "Nigel Farage claimed Tory MPs believe they have a \u201cGod-given entitled right to their jobs\u201d amid rising tensions between Reform UK and the Conservative Party. 

]]>", + "contentSnippet": "", + "guid": "3dcbf924-67d3-3f95-abba-75b45501688b", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T12:45:10.000Z" + }, + { + "creator": "Annabel Fenwick-Elliott", + "title": "The best prams, pushchairs and buggies of 2024 tried and tested by new mothers (and their babies)", + "link": "https://www.telegraph.co.uk/recommended/kids/best-prams-pushchairs-buggies/", + "pubDate": "Fri, 05 Jan 2024 12:43:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/31/TELEMMGLPICT000330745664_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Annabel Fenwick-Elliott", + "content": "", + "contentSnippet": "", + "guid": "4e93229a-236b-393e-b4ab-636d8d6a7db8", + "categories": [ + { + "_": "topics:things/children", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/parenthood", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/childbirth", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/motherhood", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/kids", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T12:43:00.000Z" + }, + { + "creator": "Richard Madden", + "title": "Best waterproof jackets for men and women, tried and tested by hiking experts", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-waterproof-jackets/", + "pubDate": "Fri, 05 Jan 2024 12:24:26 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/10/05/TELEMMGLPICT000352061001_16964959600680_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Richard Madden", + "content": "", + "contentSnippet": "", + "guid": "c1a4b279-0d0f-34de-99dd-73ded21226bc", + "categories": [ + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/hiking", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/clothes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mens-fashion", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/workwear", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T12:24:26.000Z" + }, + { + "creator": "Chris Price", + "title": "Shipping giant warns companies of 'significant disruption' from Red Sea attacks - latest updates", + "link": "https://www.telegraph.co.uk/business/2024/01/05/ftse-100-markets-news-halifax-house-prices-us-jobs-latest/", + "pubDate": "Fri, 05 Jan 2024 12:13:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/05/TELEMMGLPICT000361271812_17044551995540_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "Shipping giant Maersk has confirmed it will avoid the vital Red Sea \u201cfor the foreseeable future\u201d in a move which could potentially derail the slowdown in inflation.

]]>", + "contentSnippet": "", + "guid": "c0cc4b18-f850-3c4e-885d-c3070b966ab6", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T12:13:17.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "Best running headphones and wireless earbuds including Beats, Bose and Jaybird, tried and tested", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-running-headphones/", + "pubDate": "Fri, 05 Jan 2024 12:07:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/17/TELEMMGLPICT000322199730_1_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "b0fb2329-3997-370d-8bc1-9496471ba2e1", + "categories": [ + { + "_": "topics:things/running", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health-fitness-faqs", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/apple", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/beats-by-dre", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bose", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T12:07:27.000Z" + }, + { + "creator": "Verity Bowman", + "title": "Israel-Hamas war live: Survivors return to site of Hamas festival massacre", + "link": "https://www.telegraph.co.uk/world-news/2024/01/05/israel-hamas-palestine-gaza-war-latest-news/", + "pubDate": "Fri, 05 Jan 2024 11:43:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/05/TELEMMGLPICT000361624494_17044540998350_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Verity Bowman", + "content": "Survivors have returned to the site of the Supernova music festival in southern Israel, where Hamas massacred hundreds of people and kidnapped others on October 7. 

]]>", + "contentSnippet": "Supernova music festival in southern Israel, where Hamas massacred hundreds of people and kidnapped others on October 7.\u00a0\n]]>", + "guid": "f3d6f13f-b333-3023-9df2-6ac1335b0a07", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T11:43:30.000Z" + }, + { + "creator": "Pete Wedderburn", + "title": "The best dog food: How to choose the right food for your pet", + "link": "https://www.telegraph.co.uk/pets/news-features/best-dog-food-choose-right-food-pet/", + "pubDate": "Fri, 05 Jan 2024 11:29:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/pets/2019/04/17/TELEMMGLPICT000111987623_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQfyf2A9a6I9YchsjMeADBa08.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Pete Wedderburn", + "content": "", + "contentSnippet": "", + "guid": "e8260f38-9634-367c-8c25-a5e75338cdd3", + "categories": [ + { + "_": "topics:things/animals", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dogs", + "$": { + "domain": "" + } + }, + { + "_": "structure:pets", + "$": { + "domain": "" + } + }, + { + "_": "structure:family/pets", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T11:29:34.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The perfect ski holiday in Whistler", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/canada/whistler/whistler-ski-holiday-guide/", + "pubDate": "Fri, 05 Jan 2024 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/whistler-skiers-Tourism-Whistler-Guy-Fattal.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "0ec2a522-6d5c-36c1-8abf-3a8e6f10c5dd", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/whistler", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/canada", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T11:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best accommodation in Whistler", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/canada/whistler/whistler-accommodation/", + "pubDate": "Fri, 05 Jan 2024 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/first-time-canada-whistler-crystal.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "86e97d0e-74f5-3438-b904-625cde683384", + "categories": [ + { + "_": "topics:places/whistler", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/canada", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T11:00:00.000Z" + }, + { + "creator": "Harriet Barber", + "title": "They searched for Argentina\u2019s \u2018disappeared\u2019 \u2013 now they are helping to find Ukraine\u2019s dead", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/they-searched-for-argentinas-disappeared-now-they-are-help/", + "pubDate": "Fri, 05 Jan 2024 10:54:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/04/TELEMMGLPICT000360728434_17043821992590_trans_NvBQzQNjv4BqA7a2BP2KFPtZUOepzpZgXHwSCF1R0VweJ7DS2UnVMSQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Harriet Barber", + "content": "", + "contentSnippet": "", + "guid": "6f95a0ba-8922-38b4-abd0-281e513beac3", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/argentina", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/south-america", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/europe", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T10:54:27.000Z" + }, + { + "creator": "Rob Waugh", + "title": "The best Bluetooth speakers of 2024, recommended by experts and tested at home and outdoors", + "link": "https://www.telegraph.co.uk/recommended/tech/best-bluetooth-speakers/", + "pubDate": "Fri, 05 Jan 2024 10:39:33 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/10/11/TELEMMGLPICT000312343049_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rob Waugh", + "content": "", + "contentSnippet": "", + "guid": "1a1d7cbe-e296-3e1b-baf0-ffa12e027bbc", + "categories": [ + { + "_": "topics:things/gadgets-products", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bose", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bang-and-olufsen", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/sony", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mobile-phones", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:technology/technology-gadgets", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T10:39:33.000Z" + }, + { + "creator": "Jack Rear", + "title": "The best strimmers in 2024 for a neat and tidy garden, reviewed by experts", + "link": "https://www.telegraph.co.uk/recommended/home/best-strimmer/", + "pubDate": "Fri, 05 Jan 2024 10:03:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/02/20/TELEMMGLPICT000326178734_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Rear", + "content": "", + "contentSnippet": "", + "guid": "dfc38d42-282e-33ac-bf34-11a56d5d787e", + "categories": [ + { + "_": "topics:things/lawnmowers", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lawns", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T10:03:04.000Z" + }, + { + "creator": "Jamie Bullen", + "title": "Harry Pitman: Teenagers arrested on suspicion of murder", + "link": "https://www.telegraph.co.uk/news/2024/01/05/harry-pitman-two-boys-arrested-murder-stabbing-new-years/", + "pubDate": "Fri, 05 Jan 2024 09:47:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/05/TELEMMGLPICT000361363018_17044462789670_trans_NvBQzQNjv4BqwR9CmnucIcqQaI247kVHKaRG59k-tizdcoEWRmJ8o-E.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jamie Bullen", + "content": "", + "contentSnippet": "", + "guid": "4bf72d5d-20c4-32ca-a290-03c93c946892", + "categories": [ + { + "_": "topics:in-the-news/knife-crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/london", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T09:47:14.000Z" + }, + { + "creator": "Kulwinder Rai", + "title": "The best gaming chairs of 2024, tried and tested", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-gaming-chair/", + "pubDate": "Fri, 05 Jan 2024 09:41:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/28/TELEMMGLPICT000333690741_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Kulwinder Rai", + "content": "", + "contentSnippet": "", + "guid": "ab9e6ec5-ff6c-314e-8bd5-734a7e8fc631", + "categories": [ + { + "_": "topics:things/gaming", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/back-pain", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:gaming", + "$": { + "domain": "" + } + }, + { + "_": "structure:gaming/pc-gaming", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T09:41:11.000Z" + }, + { + "creator": "Lauren Almeida", + "title": "State pension triple lock confirmed \u2013 this is how much you\u2019ll get", + "link": "https://www.telegraph.co.uk/money/pensions/state-pensions/triple-lock-state-pension-increase-amount/", + "pubDate": "Fri, 05 Jan 2024 05:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/money/2023/11/22/TELEMMGLPICT000357579660_17006644712560_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lauren Almeida", + "content": "", + "contentSnippet": "", + "guid": "4c2c20cd-85dd-3894-a6c2-c0cca7716d9e", + "categories": [ + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/retirement", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/inflation", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/hm-treasury", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/state-pension", + "$": { + "domain": "" + } + }, + { + "_": "structure:money", + "$": { + "domain": "" + } + }, + { + "_": "structure:money/pensions", + "$": { + "domain": "" + } + }, + { + "_": "structure:money/money-hub", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-guide", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "migration:moneyhub", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-05T05:00:00.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "London party boat sinks in Thames after heavy rainfall from Storm Henk", + "link": "https://www.telegraph.co.uk/news/2024/01/04/london-boat-sinks-thames-rain-storm-henk/", + "pubDate": "Thu, 04 Jan 2024 23:23:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/04/TELEMMGLPICT000361584438_17044089165470_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "content": "", + "contentSnippet": "", + "guid": "27d9faf5-eb7c-3efc-971c-b735a7796bfe", + "categories": [ + { + "_": "topics:things/flooding", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/london", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/river-thames", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T23:23:37.000Z" + }, + { + "creator": "Sam Dean", + "title": "'The last thing that either of us wanted' \u2013 Palace and Everton head for replay after stalemate", + "link": "https://www.telegraph.co.uk/football/2024/01/04/crystal-palace-v-everton-fa-cup-third-round-live-latest/", + "pubDate": "Thu, 04 Jan 2024 23:22:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/04/TELEMMGLPICT000361584282_17044045972960_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Dean", + "content": "For Premier League teams in the midst of a relegation dogfight, the FA Cup is usually either a brief distraction or an opportunity to lift spirits. The one thing it should never be is a genuine hindrance, and yet that is the reality Everton were suddenly facing on a dreary and potentially damaging night in south London. 

]]>", + "contentSnippet": "", + "guid": "13efbcf2-693d-3087-b3c8-7b0f28383759", + "categories": [ + { + "_": "topics:organisations/crystal-palace-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/everton-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/fa-cup", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T23:22:27.000Z" + }, + { + "creator": "Luke Edwards", + "title": "Sunderland \u2018insulted fans like never before\u2019 with Newcastle branding at Stadium of Light", + "link": "https://www.telegraph.co.uk/football/2024/01/04/sunderland-stadium-newcastle-branding-u-turn-insult-fa-cup/", + "pubDate": "Thu, 04 Jan 2024 19:17:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/04/TELEMMGLPICT000361569330_17043955480530_trans_NvBQzQNjv4BqQ_mpMv2TBj6JfCZRMkFZ9xCjY_Hmrrl30SXqntmzjTE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Luke Edwards", + "content": "", + "contentSnippet": "", + "guid": "828fe5bd-8250-3983-b998-dd4af1dc62fc", + "categories": [ + { + "_": "topics:organisations/sunderland-afc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/newcastle-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/fa-cup", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T19:17:00.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Thursday evening news briefing: Starmer accuses Sunak of \u2018squatting\u2019 in No10", + "link": "https://www.telegraph.co.uk/news/2024/01/04/thursday-evening-news-briefing-starmer-sunak-squatting/", + "pubDate": "Thu, 04 Jan 2024 17:41:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "898118af-ddf0-3e75-8dc9-ac17bcf33bda", + "categories": [ + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeffrey-epstein", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T17:41:05.000Z" + }, + { + "creator": "Uche Amako", + "title": "Australian Open 2024: When is it, how to watch in UK and will Emma Raducanu play?", + "link": "https://www.telegraph.co.uk/tennis/2024/01/05/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", + "pubDate": "Thu, 04 Jan 2024 17:13:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/04/TELEMMGLPICT000361472773_17043614523580_trans_NvBQzQNjv4Bqf31hxWNT7i64oktrHVICFv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Uche Amako", + "content": "", + "contentSnippet": "", + "guid": "eb0bff4a-f2c7-354c-975d-f4fa6cc81589", + "categories": [ + { + "_": "topics:people/novak-djokovic", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/carlos-alcaraz", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andy-murray", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/emma-raducanu", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T17:13:44.000Z" + }, + { + "creator": "Sophia Yan", + "title": "Iranian masked gunmen seize oil tanker that US previously detained", + "link": "https://www.telegraph.co.uk/world-news/2024/01/11/israel-hamas-war-latest-news-updates-gaza-palestine-day-97/", + "pubDate": "Thu, 11 Jan 2024 20:25:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/11/TELEMMGLPICT000362249864_17049832463580_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXEikPYR0xYwuEBLwP9UFqPg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sophia Yan", + "content": "The Iranian navy have seized an oil tanker off Oman in a retaliatory move against the United States that raised fears for shipping in the Middle East.

]]>", + "contentSnippet": "", + "guid": "7f7a4e0e-c899-39ea-be3f-488a585d6e8f", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/red-sea", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T20:25:43.000Z" + }, + { + "creator": "Daniel Martin", + "title": "Britain and US prepare to strike Houthi rebels in Yemen", + "link": "https://www.telegraph.co.uk/news/2024/01/11/britain-set-to-strike-houthi-rebels-red-sea-yemen/", + "pubDate": "Thu, 11 Jan 2024 20:00:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/11/TELEMMGLPICT000362155498_17049980165400_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Daniel Martin", + "content": "", + "contentSnippet": "", + "guid": "50baa7bf-e444-382a-a723-f89781cf48e6", + "categories": [ + { + "_": "topics:organisations/ministry-of-defence", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/yemen", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/houthis", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T20:00:37.000Z" + }, + { + "creator": "Matthew Field", + "title": "Microsoft and Apple neck and neck in race to be world\u2019s most valuable company", + "link": "https://www.telegraph.co.uk/business/2024/01/11/ftse-100-markets-latest-news-tesco-marks-spencer-inflation/", + "pubDate": "Thu, 11 Jan 2024 18:52:01 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/11/TELEMMGLPICT000275856377_17049866082420_trans_NvBQzQNjv4Bq1F9N6pUIu4QWFka9jlJHP6-lyVrTqf614gQh-rT66PU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Matthew Field", + "content": "Microsoft briefly overtook Apple as the world\u2019s most valuable company on Thursday as its bets on artificial intelligence (AI) begin to pay off.

]]>", + "contentSnippet": "", + "guid": "837be20d-a288-3cd1-9b0a-e53e800d3b7c", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T18:52:01.000Z" + }, + { + "creator": "Jamie Bullen", + "title": "Post Office fraud investigator 'forced disabled postmistress to use parcel lift'", + "link": "https://www.telegraph.co.uk/news/2024/01/11/post-office-scandal-latest-horizon/", + "pubDate": "Thu, 11 Jan 2024 18:15:23 GMT", + "dc:creator": "Jamie Bullen", + "content": "Post Office fraud investigator Stephen Bradshaw has been accused of forcing a disabled postmaster to use a parcel lift ahead of an interview, the inquiry heard.

]]>", + "contentSnippet": "", + "guid": "2e1d9f53-2abd-3049-b2da-a508a9d8c378", + "categories": [ + { + "_": "topics:places/post-office", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T18:15:23.000Z" + }, + { + "creator": "Charlie Morgan", + "title": "\u2018It\u2019s beyond words\u2019: Andy Farrell named British & Irish Lions coach for 2025 tour of Australia", + "link": "https://www.telegraph.co.uk/rugby-union/2024/01/11/british-irish-lions-latest-andy-farrell-head-coach/", + "pubDate": "Thu, 11 Jan 2024 18:07:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/11/TELEMMGLPICT000362257351_17049744718150_trans_NvBQzQNjv4BqbTL0CjLZBYYAtIfCfQMy21HwtdpQwyNje2OyIL7x97s.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charlie Morgan", + "content": "Andy Farrell declared it a \u201ctremendous honour and privilege\u201d to be unveiled as the new British and Irish Lions head coach for the invitational side\u2019s tour of Australia in 2025.

]]>", + "contentSnippet": "", + "guid": "2f7ebee5-b712-34cb-aa95-e7b3faaaca2c", + "categories": [ + { + "_": "topics:people/andy-farrell", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/british-and-irish-lions", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T18:07:59.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Thursday evening news briefing: \u00a31bn of taxpayer money set aside for Post Office scandal compensation", + "link": "https://www.telegraph.co.uk/news/2024/01/11/thursday-evening-news-briefing-1bn-tax-money-post-office/", + "pubDate": "Thu, 11 Jan 2024 17:56:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "a9e9de73-82d8-3620-86b4-29a7957d54c9", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/post-office", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T17:56:10.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - The stark realities of life for frontline volunteer soldiers", + "link": "https://www.telegraph.co.uk/world-news/2024/01/11/ukraine-the-latest-the-stark-realities-of-frontline/", + "pubDate": "Thu, 11 Jan 2024 16:12:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/11/TELEMMGLPICT000362230772_17049858607710_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "14b1eb49-b057-3105-80f2-eb925b1c6554", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T16:12:11.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: \u00a31bn of taxpayer money set aside for Post Office scandal compensation", + "link": "https://www.telegraph.co.uk/politics/2024/01/11/rishi-sunak-latest-post-office-rwanda/", + "pubDate": "Thu, 11 Jan 2024 16:00:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/11/TELEMMGLPICT000362177574_17049765637880_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "content": "Ministers have set aside more than \u00a31billion of taxpayers\u2019 money to pay for Post Office scandal compensation. 

]]>", + "contentSnippet": "", + "guid": "8c8ad54b-f4dd-3344-9397-2804cec5c2db", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T16:00:17.000Z" + }, + { + "creator": "Sarah Newey", + "title": "Authoritarian nations are \u2018weaponising\u2019 the West\u2019s weak stance on human rights abuses, report warns", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/human-rights-abuse-authoritarian-nations-emboldened/", + "pubDate": "Thu, 11 Jan 2024 15:42:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/11/TELEMMGLPICT000360728434_17049832341970_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "content": "", + "contentSnippet": "", + "guid": "d35262d2-bbac-3d59-a359-688bf742ca79", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Conflict", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/human-rights-act", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/war-crimes", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T15:42:53.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best gym leggings: squat-proof styles for running, yoga and gym workouts in 2024", + "link": "https://www.telegraph.co.uk/health-fitness/fitness/workouts/best-gym-leggings/", + "pubDate": "Thu, 11 Jan 2024 11:25:28 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/02/01/TELEMMGLPICT000323950482_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "0a3e5640-906c-3e23-90d4-75d71a4bb4e5", + "categories": [ + { + "_": "topics:things/exercise", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/womens-fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/clothes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/yoga", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/body", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/fitness/workouts", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-guide", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T11:25:28.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best massage guns of 2024 for sore muscles and back pain, tried and tested", + "link": "https://www.telegraph.co.uk/health-fitness/body/best-massage-guns-tried-tested/", + "pubDate": "Thu, 11 Jan 2024 11:20:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2022/12/01/TELEMMGLPICT000318209252_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "8ca3c150-e2c1-3b72-90c0-a9d22fce37db", + "categories": [ + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T11:20:00.000Z" + }, + { + "creator": "Tim Robey", + "title": "The Boys in the Boat: George Clooney catches a crab with this ruthlessly shallow rowing drama", + "link": "https://www.telegraph.co.uk/films/0/the-boys-in-the-boat-review-george-clooney/", + "pubDate": "Thu, 11 Jan 2024 10:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2023/12/15/TELEMMGLPICT000359848701_17026456403360_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Robey", + "content": "", + "contentSnippet": "", + "guid": "16b638a5-ffe3-3e51-9dd8-52318291174f", + "categories": [ + { + "_": "topics:people/george-clooney", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "editors:tim-robey", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T10:00:00.000Z" + }, + { + "creator": "Uche Amako", + "title": "Australian Open 2024: The draw, how to watch and is Emma Raducanu playing", + "link": "https://www.telegraph.co.uk/tennis/2024/01/11/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", + "pubDate": "Thu, 11 Jan 2024 09:50:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/07/TELEMMGLPICT000361403457_17046230192180_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Uche Amako", + "content": "", + "contentSnippet": "", + "guid": "fb68ef16-4c6c-3401-92a4-74fe7775c723", + "categories": [ + { + "_": "topics:people/novak-djokovic", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/carlos-alcaraz", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andy-murray", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/emma-raducanu", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/naomi-osaka", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T09:50:43.000Z" + }, + { + "creator": "Tim Robey", + "title": "The Kitchen: Daniel Kaluuya\u2019s dystopian drama fizzes with style \u2013 but where\u2019s its drive?", + "link": "https://www.telegraph.co.uk/films/0/the-kitchen-review-daniel-kaluuya-london-film-festival/", + "pubDate": "Thu, 11 Jan 2024 09:30:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2023/10/15/TELEMMGLPICT000352994072_16973719137370_trans_NvBQzQNjv4BqBe6O56qrl4zbRlMQqI7UBFHwtdpQwyNje2OyIL7x97s.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Robey", + "content": "", + "contentSnippet": "", + "guid": "2e7ea40d-003d-371b-aa8e-27a7c9af50e7", + "categories": [ + { + "_": "topics:events/london-film-festival", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/netflix", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "editors:tim-robey", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T09:30:00.000Z" + }, + { + "creator": "Robbie Collin", + "title": "Poor Things, review: Emma Stone\u2019s raunchy gothic comedy is unlike anything you\u2019ve seen in years", + "link": "https://www.telegraph.co.uk/films/0/poor-things-review-emma-stone-yorgos-lanthimos/", + "pubDate": "Thu, 11 Jan 2024 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2024/01/10/TELEMMGLPICT000347811105_17049175965780_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Robbie Collin", + "content": "", + "contentSnippet": "", + "guid": "76b351d2-963d-3d1b-9fb9-f6b3834ea3e8", + "categories": [ + { + "_": "topics:events/venice-film-festival", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/comedy-movies", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "structure:film/film-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "editors:robbie-collin", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T09:00:00.000Z" + }, + { + "creator": "Sarah Newey", + "title": "Zika cases surge by almost 300pc in Thailand", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/zika-cases-surge-by-almost-300-per-cent-in-thailand/", + "pubDate": "Thu, 11 Jan 2024 08:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/10/TELEMMGLPICT000286411992_17048972444260_trans_NvBQzQNjv4Bqcb15D5j-aIE0rvtZU-Gw0f4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "content": "", + "contentSnippet": "", + "guid": "0470d2d0-6748-3785-895b-551e8c43157f", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/zika-virus", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mosquitos", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/thailand", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T08:00:00.000Z" + }, + { + "creator": "Andrea Hamblin", + "title": "Man killed in avalanche at Lake Tahoe ski resort", + "link": "https://www.telegraph.co.uk/us/news/2024/01/11/lake-tahoe-palisades-resort-california-avalanche-death/", + "pubDate": "Thu, 11 Jan 2024 04:59:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2024/01/11/TELEMMGLPICT000362208601_17049364369670_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Andrea Hamblin", + "content": "", + "contentSnippet": "", + "guid": "4d1bf872-41bb-31d6-84bf-85f3709c758f", + "categories": [ + { + "_": "topics:places/california", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/alpine-skiing", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/avalanche", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cross-country-skiing", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-11T04:59:19.000Z" + }, + { + "creator": "Chris Bascombe", + "title": "Jurgen Klopp\u2019s changes turn the tide for Liverpool after Fulham let them off the hook", + "link": "https://www.telegraph.co.uk/football/2024/01/10/liverpool-fulham-live-score-updates-carabao-cup-semi/", + "pubDate": "Wed, 10 Jan 2024 22:54:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/10/TELEMMGLPICT000362200246_17049269125080_trans_NvBQzQNjv4Bql0ESzSgmr2JmlmzSGWdBfuil7a1KV2STY3xRqqFt_No.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Bascombe", + "content": "Marco Silva must be getting sick of this particular Anfield movie. For the second successive month, two quickfire goals turned what would have been a famous Fulham victory into Kop elation. 

]]>", + "contentSnippet": "", + "guid": "850caaf5-f33b-3155-b619-2351cc3fd3fd", + "categories": [ + { + "_": "topics:organisations/liverpool-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/fulham-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/capital-one-cup", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:football/football-live-blog", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T22:54:40.000Z" + }, + { + "creator": "Chris Price", + "title": "Inflation to fall below 2pc by spring, say economists", + "link": "https://www.telegraph.co.uk/business/2024/01/10/ftse-100-markets-latest-news-water-pennon-deal-sewage/", + "pubDate": "Wed, 10 Jan 2024 18:28:38 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/10/TELEMMGLPICT000362167767_17048973368250_trans_NvBQzQNjv4BqgDdZKWENzQplGY0DJg4d4zQBrSWEga8isPdlQ67Jalg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "Inflation will fall below 2pc by April or May this year, economists have said, in a boost to mortgage holders hoping for interest rates to fall.

]]>", + "contentSnippet": "", + "guid": "8d76d5de-58f9-3caa-9fcd-c27df0792f5c", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T18:28:38.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Wednesday evening news briefing: Boeing boss admits mid-air plane blowout was \u2018our mistake\u2019", + "link": "https://www.telegraph.co.uk/news/2024/01/10/wednesday-evening-news-briefing-boeing-boss-admits-mistake/", + "pubDate": "Wed, 10 Jan 2024 17:36:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "53bf64b2-a4c5-309a-be90-7297f2702003", + "categories": [ + { + "_": "topics:organisations/boeing", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/post-office", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T17:36:17.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Germany pressures EU allies to commit more support for Ukraine", + "link": "https://www.telegraph.co.uk/world-news/2024/01/10/germany-pressures-eu-allies-to-commit-more-support/", + "pubDate": "Wed, 10 Jan 2024 17:13:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/10/TELEMMGLPICT000361747844_17049067942590_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwekapBZ1c_8650LP5YH00zA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "77e57d34-3f08-3600-b744-9c67ebd13bdb", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T17:13:55.000Z" + }, + { + "creator": "Paul Nuki", + "title": "Q&A: Will Israel be charged with genocide at The Hague?", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/gaza-genocide-international-court-of-justice-the-hague/", + "pubDate": "Wed, 10 Jan 2024 16:26:13 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/10/TELEMMGLPICT000359226455_17049073112850_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Paul Nuki", + "content": "", + "contentSnippet": "", + "guid": "6a5e824a-ad44-3056-902c-1b324c0567e0", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/south-africa", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T16:26:13.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Israel-Hamas war: IDF denies deliberately driving over Palestinian's dead body", + "link": "https://www.telegraph.co.uk/world-news/2024/01/10/israel-hamas-war-latest-news-updates-gaza-palestine-day-96/", + "pubDate": "Wed, 10 Jan 2024 16:00:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/10/TELEMMGLPICT000362166289_17049008302420_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "content": "Israel\u2019s military has denied allegations its troops deliberately ran over the dead body of a Palestinian fighter killed in a West Bank gun battle, saying the incident was \u201cunintentional\u201d.

]]>", + "contentSnippet": "West Bank gun battle, saying the incident was \u201cunintentional\u201d.\n]]>", + "guid": "0a489a3f-48c6-3c68-ab74-830c6cf3d78c", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T16:00:43.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Sunak 'taken hostage' by Tory MPs over Rwanda plan, claims Starmer", + "link": "https://www.telegraph.co.uk/politics/2024/01/10/rishi-sunak-latest-news-post-office-hollinrake-horizon/", + "pubDate": "Wed, 10 Jan 2024 16:00:12 GMT", + "dc:creator": "Jack Maidment", + "content": "Sir Keir Starmer claimed Rishi Sunak had been \u201ctaken hostage\u201d by Tory MPs over his flagship Rwanda plan. 

]]>", + "contentSnippet": "", + "guid": "edcae492-da07-3230-b732-c010ecb9163f", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T16:00:12.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "Medical support charity intervenes at notorious UK asylum centre", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/medicines-sans-frontieres-wethersfield-essex-asylum-seekers/", + "pubDate": "Wed, 10 Jan 2024 15:57:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/10/TELEMMGLPICT000362164938_17049015915440_trans_NvBQzQNjv4BqLgh7iYB6BmgO3j6FNL9Qb_YlYh7-uISR8OtYL90SczM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "1f3495c1-520e-32b3-9a50-bd61a02e3ef3", + "categories": [ + { + "_": "topics:things/migrants", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/refugee-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mental-health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mental-health-emergency", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T15:57:11.000Z" + }, + { + "creator": "Katie Russell", + "title": "The 26 best dating sites and apps if you're looking for love", + "link": "https://www.telegraph.co.uk/women/sex/the-26-best-online-dating-websites-apps/", + "pubDate": "Wed, 10 Jan 2024 15:54:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/women/2022/09/09/TELEMMGLPICT000304752796_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Katie Russell", + "content": "", + "contentSnippet": "", + "guid": "1a740385-28df-34f7-a9e7-1a5205c053af", + "categories": [ + { + "_": "topics:things/sex", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dating-advice", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/apps", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/love-&-friendship", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T15:54:51.000Z" + }, + { + "creator": "Sam Green", + "title": "Team GB at Paris Olympics: Who are the British athletes to watch at the 2024 Games?", + "link": "https://www.telegraph.co.uk/olympics/0/team-gb-paris-olympics-2024-who-british-athletes-uk/", + "pubDate": "Wed, 10 Jan 2024 14:53:56 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/olympics/2023/12/07/TELEMMGLPICT000356815679_17019734880590_trans_NvBQzQNjv4BqohsGFk6lowxuVmfrTuwcJT9ASLmGjYcg7PvUxmdwfLM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Green", + "content": "", + "contentSnippet": "", + "guid": "a94bbe13-14f9-3c75-a422-fbd91622314b", + "categories": [ + { + "_": "topics:organisations/team-gb", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/paris-olympics-2024", + "$": { + "domain": "" + } + }, + { + "_": "structure:olympics", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-climbing", + "$": { + "domain": "" + } + }, + { + "_": "structure:triathlon", + "$": { + "domain": "" + } + }, + { + "_": "structure:sailing", + "$": { + "domain": "" + } + }, + { + "_": "structure:canoeing", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T14:53:56.000Z" + }, + { + "creator": "Verity Bowman", + "title": "Sexual violence in Sudan conflict becomes as commonplace as the fighting", + "link": "https://www.telegraph.co.uk/global-health/women-and-girls/sexual-violence-war-sudan-darfur-rapid-support-forces/", + "pubDate": "Wed, 10 Jan 2024 14:11:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/10/TELEMMGLPICT000356824531_17048938773050_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Verity Bowman", + "content": "", + "contentSnippet": "", + "guid": "c4483d5d-7260-3f36-96a6-0b62946fe150", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Conflict", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/sexual-assault", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/rape", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/sudan", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/africa", + "$": { + "domain": "" + } + }, + { + "_": "structure:women-and-girls", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T14:11:24.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best robot vacuum cleaners, tried and tested at home", + "link": "https://www.telegraph.co.uk/recommended/home/best-robot-vacuum-cleaners-tried-tested/", + "pubDate": "Wed, 10 Jan 2024 12:56:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/06/30/TELEMMGLPICT000341099901_16881250056140_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "4cf7c7ac-99de-33fb-94e6-4b2905df8fea", + "categories": [ + { + "_": "topics:things/robotics", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vacuum-cleaners", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T12:56:12.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Police officer investigated after pensioner killed on pedestrian crossing", + "link": "https://www.telegraph.co.uk/news/2024/01/10/police-officer-investigated-pensioner-killed-nottingham/", + "pubDate": "Wed, 10 Jan 2024 12:50:26 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/10/TELEMMGLPICT000360674556_17048909879370_trans_NvBQzQNjv4BqQHQXnx-CaC46TsrII-_W3JCEqrhVke6n9wG2UhkSWPs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "content": "", + "contentSnippet": "", + "guid": "d3423d2f-e34a-3c60-8ae9-a3b64e3bd45b", + "categories": [ + { + "_": "topics:organisations/nottinghamshire-police", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/nottingham", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/police", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T12:50:26.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "Three people killed in US storms as 900,000 without power", + "link": "https://www.telegraph.co.uk/us/news/2024/01/10/us-storm-weather-new-york-new-jersey-pennsylvania-power/", + "pubDate": "Wed, 10 Jan 2024 09:10:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2024/01/10/TELEMMGLPICT000362118058_17048765769330_trans_NvBQzQNjv4Bq3VPGG0kT-UwTbOOqgA0Jd_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "content": "", + "contentSnippet": "", + "guid": "834d3eae-3d75-3da2-a94d-0c531e0f7181", + "categories": [ + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/new-york", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/snow", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/flooding", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/florida", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T09:10:14.000Z" + }, + { + "creator": "Jack Rear", + "title": "My wife was diagnosed with Alzheimer\u2019s at 61 \u2013 here\u2019s what I wish I\u2019d known", + "link": "https://www.telegraph.co.uk/christmas/2024/01/10/alzheimers-dementia-wife-carer-support-memory-charity/", + "pubDate": "Wed, 10 Jan 2024 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/09/TELEMMGLPICT000362082451_17048152632490_trans_NvBQzQNjv4BqbDukEpMqms9Vdjy67BdVVfLJTvBH1uMlde-z_5VjwK8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Rear", + "content": "", + "contentSnippet": "", + "guid": "7d16a402-47b7-3886-967d-d8fdf479da8a", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dementia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/race-against-dementia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/alzheimers-disease", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/memory", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:daily-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:other-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-10T09:00:00.000Z" + }, + { + "creator": "Mike McGrath", + "title": "Middlesbrough rattle wobbly Chelsea as Mauricio Pochettino faces up to another defeat", + "link": "https://www.telegraph.co.uk/football/2024/01/09/middlesbrough-chelsea-live-score-updates-carabao-cup-semi/", + "pubDate": "Tue, 09 Jan 2024 23:35:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/09/TELEMMGLPICT000362102721_17048334447050_trans_NvBQzQNjv4BqjJeHvIwLm2xPr27m7LF8mamM7PGrmz_msLjgavdLCgA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mike McGrath", + "content": "Taxi for Mauricio Pochettino. Chelsea\u2019s hopes of silverware to paper over their cracks this season were being driven away in a Hackney carriage on another disappointing evening at the Riverside Stadium.

]]>", + "contentSnippet": "", + "guid": "fee46deb-0568-39d8-9610-2762d1ce5be7", + "categories": [ + { + "_": "topics:organisations/middlesbrough-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/chelsea-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/capital-one-cup", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:football/football-live-blog", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T23:35:55.000Z" + }, + { + "creator": "Charlotte Eggleston-Johnstone", + "title": "15 amazing UK castles you can actually stay in", + "link": "https://www.telegraph.co.uk/travel/destinations/europe/united-kingdom/articles/best-castle-hotels-in-britain/", + "pubDate": "Tue, 09 Jan 2024 21:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/articles/castle-hotels/hever-castle-bedroom.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charlotte Eggleston-Johnstone", + "content": "", + "contentSnippet": "", + "guid": "43215fee-354c-399b-ada7-b5b18d595fae", + "categories": [ + { + "_": "topics:places/europe", + "$": { + "domain": "" + } + }, + { + "_": "travel-entity:article", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/hotels", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ireland", + "$": { + "domain": "" + } + }, + { + "_": "structure:hotel-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/england", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/scotland", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T21:00:00.000Z" + }, + { + "creator": "Niamh Robinson", + "title": "Pictured: Anthony Joshua takes on liger in tug-of-war battle", + "link": "https://www.telegraph.co.uk/news/2024/01/09/anthony-joshua-liger-tug-of-war-dubai-zoo-loses-fight/", + "pubDate": "Tue, 09 Jan 2024 18:57:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/09/TELEMMGLPICT000362072920_17048201802140_trans_NvBQzQNjv4Bqu6sInUPBspMzi5yaiPhRW52JsrVGGG_o5NfzRS6PrV0.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Niamh Robinson", + "content": "", + "contentSnippet": "", + "guid": "246a800d-7d97-32e6-96c0-cf8cb6807df4", + "categories": [ + { + "_": "topics:people/anthony-joshua", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/dubai", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tigers", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lions", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/animals", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T18:57:04.000Z" + }, + { + "creator": "Chris Price", + "title": "We didn't mean to rip people off at the pump, say Asda owners", + "link": "https://www.telegraph.co.uk/business/2024/01/09/ftse-100-markets-latest-news-christmas-cost-of-living/", + "pubDate": "Tue, 09 Jan 2024 18:42:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/09/TELEMMGLPICT000342542969_17048136072850_trans_NvBQzQNjv4Bq1-a9hIoAslRQBYTyQ1m8SOaN-yeXFfKDgM3A_FjAYYY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "The co-owners of Asda have insisted the grocery chain did not intend to make a bigger profit on fuel prices, after an investigation last year found it had bumped up fuel margins during the cost-of-living crisis.

]]>", + "contentSnippet": "", + "guid": "b0700de4-3503-3963-8a1a-84f689a14af1", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T18:42:10.000Z" + }, + { + "creator": "Benedict Smith", + "title": "Trump warns 'there will be bedlam' if Jan 6 prosecution goes ahead", + "link": "https://www.telegraph.co.uk/us/politics/2024/01/09/trump-presidential-immunity-appeal-hearing-dc-circuit-court/", + "pubDate": "Tue, 09 Jan 2024 18:09:58 GMT", + "dc:creator": "Benedict Smith", + "content": "Donald Trump has warned there will be \u201cbedlam\u201d if the justice department is allowed to prosecute him on election interference claims, accusing Joe Biden of attempting to push him off the ballot.

]]>", + "contentSnippet": "", + "guid": "a03db7c6-b943-37b6-bb50-f5602b7e54ce", + "categories": [ + { + "_": "topics:people/donald-trump", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/us-politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T18:09:58.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Post Office latest news: Paula Vennells returning CBE 'obviously the right decision', says No10", + "link": "https://www.telegraph.co.uk/politics/2024/01/09/rishi-sunak-latest-news-stride-post-office-cameron/", + "pubDate": "Tue, 09 Jan 2024 18:06:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/09/TELEMMGLPICT000361981238_17048077191180_trans_NvBQzQNjv4BqNJjoeBT78QIaYdkJdEY4CnGTJFJS74MYhNY6w3GNbO8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "content": "Former Post Office boss Paula Vennells handing back her CBE is \u201cobviously the right decision\u201d, Downing Street has said.

]]>", + "contentSnippet": "", + "guid": "8dc5a0e9-059d-3dcd-a96a-5cde2523b33f", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T18:06:02.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Tuesday evening news briefing: Ed Davey faces growing calls to quit over role in Post Office scandal", + "link": "https://www.telegraph.co.uk/news/2024/01/09/tuesday-evening-news-briefing-ed-davey-post-office-quit/", + "pubDate": "Tue, 09 Jan 2024 17:27:31 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "1729b384-4610-3cdd-98b6-45296fc8cc42", + "categories": [ + { + "_": "topics:people/ed-davey", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/post-office", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/david-cameron", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T17:27:31.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - West not pressuring Ukraine to surrender, Kyiv insists", + "link": "https://www.telegraph.co.uk/world-news/2024/01/09/west-not-pressuring-ukraine-to-surrender-kyiv-insists/", + "pubDate": "Tue, 09 Jan 2024 16:23:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/09/TELEMMGLPICT000362087423_17048175926520_trans_NvBQzQNjv4Bqv3hxuICTza90rxjOncu1SDDAfwB3lrD912jpbltkVmM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "9678ea2a-a2d1-3b77-83c8-a7e9aa79b2a5", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T16:23:30.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Israel-Hamas war: Cameron says Israel may have broken international law", + "link": "https://www.telegraph.co.uk/world-news/2024/01/09/israel-hamas-war-latest-updates-gaza-palestine-day-95-live/", + "pubDate": "Tue, 09 Jan 2024 16:02:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/09/TELEMMGLPICT000362083451_17048160461390_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "content": "Israel may have broken international law in Gaza, Lord Cameron has said, as he called for a humanitarian pause covering the enclave.

]]>", + "contentSnippet": "", + "guid": "bd8f23f5-1f3c-385c-a847-3e898054e683", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T16:02:57.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best accommodation in Alpe d'Huez", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/alpe-dhuez/alpe-dhuez-hotels-and-chalets/", + "pubDate": "Tue, 09 Jan 2024 16:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/2020/Aout/club-med-alpe-dhuez-france-2-p.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "7be5f5a9-00e8-3f3b-8901-9d6e3a247adf", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T16:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "An expert guide to ski holidays in Alpe d'Huez", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/alpe-dhuez/alpe-dhuez-ski-holiday-guide/", + "pubDate": "Tue, 09 Jan 2024 16:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/piste-Alpe d'Huez - Benjamin Valette.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "e0454f6d-2ce4-329c-a812-d231a55b31d4", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T16:00:00.000Z" + }, + { + "creator": "Emma Gatten", + "title": "UK weather latest: Homes in Berkshire evacuated as River Thames floods", + "link": "https://www.telegraph.co.uk/news/2024/01/09/berkshire-flooding-wraysbury-evacuation-river-thames/", + "pubDate": "Tue, 09 Jan 2024 15:45:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/09/TELEMMGLPICT000362058087_17047999454380_trans_NvBQzQNjv4BqjbG32Blm9FY3rhpGt7ciwIX55UGE1-QmdhXTcMmlCx4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emma Gatten", + "content": "", + "contentSnippet": "", + "guid": "05ce4ad4-a797-3292-95e6-63348b8e5253", + "categories": [ + { + "_": "topics:places/river-thames", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/flooding", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/berkshire", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T15:45:43.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Harry Pitman stabbed with hunting knife after New Year\u2019s Eve fight, court hears", + "link": "https://www.telegraph.co.uk/news/2024/01/09/harry-pitman-stabbed-with-hunting-knife-new-years/", + "pubDate": "Tue, 09 Jan 2024 15:07:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/09/TELEMMGLPICT000361714351_17048116211990_trans_NvBQzQNjv4BqO65TkrT7BriBrd3fK6VEgzRD3vWcyS41OHqZ-GGYMKw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "content": "", + "contentSnippet": "", + "guid": "35bf1001-fe3d-3076-b4f3-a91bb2f97753", + "categories": [ + { + "_": "topics:in-the-news/knife-crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/london", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T15:07:05.000Z" + }, + { + "creator": "Telegraph Sport", + "title": "January transfer deadline day 2024: All you need to know", + "link": "https://www.telegraph.co.uk/football/0/january-transfer-deadline-day-when-watch-guide/", + "pubDate": "Tue, 09 Jan 2024 14:18:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/09/TELEMMGLPICT000361768944_17048097888020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwWyaKjL1CatlwZEbgNRqSgg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Sport", + "content": "", + "contentSnippet": "", + "guid": "abdcc6c8-7547-34cd-bc27-dad9c3fbcdba", + "categories": [ + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/football-transfers", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T14:18:36.000Z" + }, + { + "creator": "Tom Ward", + "title": "NFL Super Bowl 2024 Guide: When is it, how to watch, half-time show and latest odds", + "link": "https://www.telegraph.co.uk/american-football/2024/01/09/nfl-super-bowl-guide-when-date-winners-uk-tv-channel/", + "pubDate": "Tue, 09 Jan 2024 13:52:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/american-football/2024/01/09/TELEMMGLPICT000325263717_17048012517520_trans_NvBQzQNjv4BqnFWrKBYEBGn6ARPcMRQYjS82-ivqc6avWefomlBmWCs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom Ward", + "content": "", + "contentSnippet": "", + "guid": "077e22c8-7abf-326c-b425-597bd27547c5", + "categories": [ + { + "_": "topics:organisations/nfl", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/super-bowl", + "$": { + "domain": "" + } + }, + { + "_": "structure:american-football", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T13:52:17.000Z" + }, + { + "creator": "Jamie Bullen", + "title": "Four arrested after man stabbed to death at Strawberry Hill station", + "link": "https://www.telegraph.co.uk/news/2024/01/09/man-stabbed-death-strawberry-hill-station-london/", + "pubDate": "Tue, 09 Jan 2024 13:52:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/09/TELEMMGLPICT000362065837_17048002482290_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jamie Bullen", + "content": "", + "contentSnippet": "", + "guid": "7f11608d-f2fc-3f49-b1f6-8ac2168170a6", + "categories": [ + { + "_": "topics:in-the-news/knife-crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/london", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/british-transport-police", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T13:52:11.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "New drug offers promising breakthrough for endometriosis patients", + "link": "https://www.telegraph.co.uk/global-health/women-and-girls/endometriosis-treatment-dca-trial-breakthrough/", + "pubDate": "Tue, 09 Jan 2024 12:08:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/09/TELEMMGLPICT000154418917_17048008570230_trans_NvBQzQNjv4BqXAI13NdOqfkC5AL3Xcik1pBBlUc4_N9fXDpxOJCVcuw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "9110db38-1b1d-325c-854d-23f9a4814db3", + "categories": [ + { + "_": "topics:things/endometriosis", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/women's-health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/medicines", + "$": { + "domain": "" + } + }, + { + "_": "structure:women-and-girls", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T12:08:05.000Z" + }, + { + "creator": "Luke Slater", + "title": "England vs India, Test series and tour: Full schedule and fixtures", + "link": "https://www.telegraph.co.uk/cricket/0/england-vs-india-test-tour-2024-full-schedule-and-fixtures/", + "pubDate": "Tue, 09 Jan 2024 12:02:01 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2024/01/09/TELEMMGLPICT000361024498_17048016311440_trans_NvBQzQNjv4BqG_mptpChRHij4fwYXW1nLNSg9kdm7XGDZagULvp4PAs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Luke Slater", + "content": "", + "contentSnippet": "", + "guid": "ab2cbca9-ba41-3573-b1e9-a4c1532ac213", + "categories": [ + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/india-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T12:02:01.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "Britons spending thousands on controversial therapy to tackle antibiotic-resistant infections", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/phage-therapy-antibiotic-resistance-amr/", + "pubDate": "Tue, 09 Jan 2024 10:19:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/08/TELEMMGLPICT000338320355_17047310278610_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "d3fc751e-2c2e-31f7-b4d0-bd1bd647d50a", + "categories": [ + { + "_": "topics:things/superbugs-antibiotic-resistance", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/georgia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/antibiotics", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/scientific-research", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T10:19:30.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best pocket sprung mattresses of 2024 for complete body support, tried and tested", + "link": "https://www.telegraph.co.uk/recommended/home/best-pocket-sprung-mattress/", + "pubDate": "Tue, 09 Jan 2024 10:17:23 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/05/26/TELEMMGLPICT000337090097_16850934292980_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "d8330fc0-3791-37e4-b1bd-b9905d9ade20", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep-hygiene", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T10:17:23.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "South Korea bans dog meat industry", + "link": "https://www.telegraph.co.uk/world-news/2024/01/09/south-korea-bans-dog-meat-trade/", + "pubDate": "Tue, 09 Jan 2024 08:26:58 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/09/TELEMMGLPICT000278791581_17047877312910_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "content": "", + "contentSnippet": "", + "guid": "b976eff8-3bd9-379c-abfb-bbf78d367ced", + "categories": [ + { + "_": "topics:places/south-korea", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dogs", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T08:26:58.000Z" + }, + { + "creator": "Mattie Brignal", + "title": "Britain is plagued by potholes \u2013 here\u2019s how to get the council to pay for damage to your car", + "link": "https://www.telegraph.co.uk/money/consumer-affairs/how-fight-local-council-pothole-car-damage/", + "pubDate": "Tue, 09 Jan 2024 08:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/money/2023/01/10/TELEMMGLPICT000321579804_trans_NvBQzQNjv4BqD19gJsrS5dVDZFTjDrjdaDcN4i_xBuyPzE6BS-X5tZc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mattie Brignal", + "content": "", + "contentSnippet": "", + "guid": "641bdc6e-d6a1-3753-9489-f6d2b95a163c", + "categories": [ + { + "_": "topics:things/consumer-affairs", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/road-safety", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/roads", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/local-councils", + "$": { + "domain": "" + } + }, + { + "_": "structure:money", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-guide", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-09T08:00:00.000Z" + }, + { + "creator": "Jason Burt", + "title": "Profligate Man Utd into FA Cup fourth round as Ineos chiefs watch from Wigan stands", + "link": "https://www.telegraph.co.uk/football/2024/01/08/wigan-v-man-utd-live-score-updates-fa-cup-draw-results/", + "pubDate": "Mon, 08 Jan 2024 23:46:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/08/TELEMMGLPICT000362018303_17047508755600_trans_NvBQzQNjv4Bq1KIXErYLU_ys0btMQgkTCL4IRjEKs1dXpT9nFhZBmMw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jason Burt", + "content": "Every fixture must feel like a trial for Erik ten Hag at present and an icy night in Wigan for an FA Cup tie felt like one where Manchester United might just slip up.

]]>", + "contentSnippet": "", + "guid": "ed631aa3-8f08-3353-aaec-d545610a9558", + "categories": [ + { + "_": "topics:organisations/manchester-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/wigan-athletic-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/fa-cup", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/fa-cup-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T23:46:02.000Z" + }, + { + "creator": "Ben Riley-Smith", + "title": "Sunak would \u2018strongly support\u2019 review of former Post Office boss\u2019s CBE", + "link": "https://www.telegraph.co.uk/politics/2024/01/08/rishi-sunak-latest-news-sharma-north-sea-post-office-live/", + "pubDate": "Mon, 08 Jan 2024 21:15:26 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/08/TELEMMGLPICT000361966611_17047486012470_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Riley-Smith", + "content": "Rishi Sunak intervened in the Post Office honours row by saying he would \u201cstrongly support\u201d a review into whether Paula Vennells should be stripped of her CBE.

]]>", + "contentSnippet": "Rishi Sunak intervened in the Post Office honours row by saying he would \u201cstrongly support\u201d a review into whether Paula Vennells should be stripped of her CBE.\n]]>", + "guid": "cf9bd0a8-c6aa-30f7-ba43-e6896b66c362", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/post-office", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T21:15:26.000Z" + }, + { + "creator": "Michael Bow", + "title": "Barclays sheds 5,000 jobs amid cost-cutting drive", + "link": "https://www.telegraph.co.uk/business/2024/01/08/ftse-100-markets-news-live-channel-4-job-cuts-latest/", + "pubDate": "Mon, 08 Jan 2024 19:18:42 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/08/TELEMMGLPICT000348982968_17047381321620_trans_NvBQzQNjv4BqNKqRESvbksstVAhHMOFtR6yp700tt5EFlbbqAAy35S8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Michael Bow", + "content": "Barclays cut its workforce by around 5,000 last year as part of an ongoing push to strip costs from the lender.

]]>", + "contentSnippet": "", + "guid": "7e8d3322-e28f-3f5e-a1e8-611af784d70e", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T19:18:42.000Z" + }, + { + "creator": "Alex Bolot", + "title": "Monday evening news briefing: Sunak would 'strongly support' review into revoking CBE of ex-Post Office boss", + "link": "https://www.telegraph.co.uk/news/2024/01/08/monday-evening-news-briefing-sunak-post-office-review/", + "pubDate": "Mon, 08 Jan 2024 17:45:42 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alex Bolot", + "content": "", + "contentSnippet": "", + "guid": "489adbb2-632e-32e9-a2a1-a9658ef37d44", + "categories": [ + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/alok-sharma", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T17:45:42.000Z" + }, + { + "creator": "Rob Waugh", + "title": "The best laptops for students in 2024, from MacBooks to Chromebooks, plus the best student discounts", + "link": "https://www.telegraph.co.uk/recommended/tech/best-laptops-students/", + "pubDate": "Mon, 08 Jan 2024 17:38:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/08/26/TELEMMGLPICT000306902510_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rob Waugh", + "content": "", + "contentSnippet": "", + "guid": "b64376e5-ca7c-312e-ae8f-aa7d23d49057", + "categories": [ + { + "_": "topics:things/university-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tech-faqs", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/laptops", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/university-education", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tablets", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T17:38:46.000Z" + }, + { + "creator": "Chas Newkey-Burden", + "title": "The best beard trimmers of 2024, tried and tested for precision and styling versatility", + "link": "https://www.telegraph.co.uk/recommended/home/best-beard-trimmers/", + "pubDate": "Mon, 08 Jan 2024 16:59:39 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/26/TELEMMGLPICT000333394608_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chas Newkey-Burden", + "content": "", + "contentSnippet": "", + "guid": "b1b8453d-14bd-35d6-b963-5f91329a341b", + "categories": [ + { + "_": "topics:things/mens-fashion", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/skin", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mens-grooming", + "$": { + "domain": "" + } + }, + { + "_": "structure:men", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:59:39.000Z" + }, + { + "creator": "Kulwinder Rai", + "title": "The best standing desks for working at home, tried and tested \u2013 do they really relieve back pain?", + "link": "https://www.telegraph.co.uk/recommended/home/best-standing-desk/", + "pubDate": "Mon, 08 Jan 2024 16:58:03 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/04/TELEMMGLPICT000331186180_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Kulwinder Rai", + "content": "", + "contentSnippet": "", + "guid": "5a6ecfd2-3774-3221-91ef-0b9d656c8180", + "categories": [ + { + "_": "topics:things/working-from-home", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/back-pain", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:58:03.000Z" + }, + { + "creator": "Tom\u00e9 Morrissy Swan", + "title": "The best portable BBQs of 2024 for grilling on the go", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-portable-bbqs-grilling-go/", + "pubDate": "Mon, 08 Jan 2024 16:49:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/07/05/TELEMMGLPICT000341596103_16885588240350_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom\u00e9 Morrissy Swan", + "content": "", + "contentSnippet": "", + "guid": "1bfc618b-5267-3cb3-a141-fd70c35d5dc6", + "categories": [ + { + "_": "topics:things/barbecue", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/bbq-barbecue-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/summer-bank-holiday", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink", + "$": { + "domain": "" + } + }, + { + "_": "structure:food-and-drink/food-and-drink-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:49:43.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Russian drones 'spying' on Ukrainian troops in Germany", + "link": "https://www.telegraph.co.uk/world-news/2024/01/08/russian-drones-spying-on-ukrainian-troops-in-germany/", + "pubDate": "Mon, 08 Jan 2024 16:48:06 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/08/TELEMMGLPICT000359982554_17047316367420_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "56c26995-b325-3765-b1c2-2a51fc9962ee", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:48:06.000Z" + }, + { + "creator": "Helen Pickles", + "title": "The best spa hotels in the north of England", + "link": "https://www.telegraph.co.uk/travel/destinations/europe/united-kingdom/england/articles/the-best-spa-hotels-in-the-north-of-england/", + "pubDate": "Mon, 08 Jan 2024 16:43:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/2018/September/gilpin-spa-lodge.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Helen Pickles", + "content": "", + "contentSnippet": "", + "guid": "104947eb-81c8-3457-b332-6edae177e34e", + "categories": [ + { + "_": "topics:places/europe", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/york", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/spas", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/yorkshire", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/hotels", + "$": { + "domain": "" + } + }, + { + "_": "structure:hotel-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/england", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/cotswolds", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/county-durham", + "$": { + "domain": "" + } + }, + { + "_": "travel-entity:article", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/lake-district", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/top-10", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/top-10-hotels", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:43:00.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best water bottles in 2024 including insulated, gym and sustainable options", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-water-bottles/", + "pubDate": "Mon, 08 Jan 2024 16:42:29 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/03/TELEMMGLPICT000327511074_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "4f55096f-957e-35f5-af57-0903433246e6", + "categories": [ + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/recycling", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/at-home-fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/womens-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:wellbeing/health", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty/fitness", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:42:29.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best carry-on luggage to fit all airlines in 2024, tried and tested", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-carry-on-luggage/", + "pubDate": "Mon, 08 Jan 2024 16:28:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/06/12/TELEMMGLPICT000338622417_16865602448900_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "3a2d0f54-4323-3c92-a161-50bf372bf99e", + "categories": [ + { + "_": "topics:things/luggage", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/luxury-travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/solo-travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/british-airways", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/airline-industry", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:28:57.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best yoga mats of 2024: non-slip exercise mats tried and tested, from Lululemon to Sweaty Betty", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-yoga-mats/", + "pubDate": "Mon, 08 Jan 2024 16:25:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2022/12/16/TELEMMGLPICT000319883355_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "25c0c7fc-13d6-38d1-b26e-8c950446a2c8", + "categories": [ + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/yoga", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:25:43.000Z" + }, + { + "creator": "Ruby Deevoy", + "title": "The best dog beds of 2024, tried and tested by canine experts", + "link": "https://www.telegraph.co.uk/recommended/home/best-dog-beds/", + "pubDate": "Mon, 08 Jan 2024 16:15:20 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/09/11/TELEMMGLPICT000348875774_16944257861300_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ruby Deevoy", + "content": "", + "contentSnippet": "", + "guid": "348f7cc2-bf28-37ea-b2ed-799683ceae73", + "categories": [ + { + "_": "topics:things/dogs", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/animals", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:15:20.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Israel says it is scaling down Gaza war", + "link": "https://www.telegraph.co.uk/world-news/2024/01/08/israel-hamas-war-latest-updates-gaza-palestine-day-94-live/", + "pubDate": "Mon, 08 Jan 2024 16:00:38 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/08/TELEMMGLPICT000361867465_17047261429450_trans_NvBQzQNjv4Bq_yinDx4FRR66WmBAJxdJbFHmPOpeFd0SyQx9dn7kM_w.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "content": "Israel says it has begun a new, less intense phase of the war, admitting publicly for the first time that the conflict has \u201cshifted\u201d.

]]>", + "contentSnippet": "the conflict has \u201cshifted\u201d.\n]]>", + "guid": "29bfdc72-ca91-3b33-a667-7021db955cbe", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:00:38.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The best fans to keep you cool at home or in the office in 2024, tried and tested", + "link": "https://www.telegraph.co.uk/recommended/home/best-fans/", + "pubDate": "Mon, 08 Jan 2024 16:00:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/13/TELEMMGLPICT000331987965_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "e909b9fd-67c7-3d9c-bd98-895ef38eba54", + "categories": [ + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/energy", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/heatwave", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T16:00:02.000Z" + }, + { + "creator": "Ben Farmer", + "title": "Taliban bomb kills six in Pakistan polio vaccination mission", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/taliban-bomb-pakistan-kills-police-polio/", + "pubDate": "Mon, 08 Jan 2024 15:34:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/08/TELEMMGLPICT000361965005_17047278354920_trans_NvBQzQNjv4BqRMPdAQh26qjv-IIr3xDRU5LMlSxDITJSyZXG_22hUos.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Farmer", + "content": "", + "contentSnippet": "", + "guid": "59881fd0-d4ff-365b-9ece-0a3a93306845", + "categories": [ + { + "_": "topics:places/pakistan", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/polio", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/taliban", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/terrorism", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vaccines", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T15:34:51.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The 9 best patio heaters for 2024 to warm up any garden or outdoor space, chosen by experts", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/the-best-garden-heaters/", + "pubDate": "Mon, 08 Jan 2024 15:33:01 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/03/29/TELEMMGLPICT000330514972_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "6135198c-65f4-354a-b1c4-436798d24eda", + "categories": [ + { + "_": "topics:things/barbecue", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/summer-bank-holiday", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/heatwave", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/garden-furniture", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-accessories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T15:33:01.000Z" + }, + { + "creator": "Simon Lewis", + "title": "Best electric heaters for cold nights at home, from electric radiators to portable ceramic options", + "link": "https://www.telegraph.co.uk/recommended/home/best-electric-heater-portable-use-around-house/", + "pubDate": "Mon, 08 Jan 2024 15:04:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/02/22/TELEMMGLPICT000326367787_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "content": "", + "contentSnippet": "", + "guid": "c9fa90a9-595e-343a-8bc8-a80ddc2888dd", + "categories": [ + { + "_": "topics:organisations/dyson", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/energy", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gas", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T15:04:17.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best protein bars in 2024 (that actually taste good) for a nutritious snack", + "link": "https://www.telegraph.co.uk/health-fitness/nutrition/best-protein-bars/", + "pubDate": "Mon, 08 Jan 2024 14:52:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/02/03/TELEMMGLPICT000324132745_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "f1fbc8cd-0937-3dc1-9e1d-3bc948d1b139", + "categories": [ + { + "_": "topics:things/exercise", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/nutrition", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/nutrition-and-dieting", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T14:52:30.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best water flossers for whiter and healthier teeth, with advice from a dentist", + "link": "https://www.telegraph.co.uk/recommended/tech/best-water-flosser/", + "pubDate": "Mon, 08 Jan 2024 14:04:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/11/16/TELEMMGLPICT000356953897_17001492167670_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "66656718-f39f-365c-a514-79a88ef0c0b1", + "categories": [ + { + "_": "topics:things/dental-health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tooth-decay", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T14:04:25.000Z" + }, + { + "creator": "Tom\u00e9 Morrissy Swan", + "title": "The best leaf blowers for clearing your garden or pathway, tried and tested (as quietly as we could)", + "link": "https://www.telegraph.co.uk/recommended/home/best-leaf-blowers-clearing-garden-pathway/", + "pubDate": "Mon, 08 Jan 2024 13:04:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/01/TELEMMGLPICT000327247140_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom\u00e9 Morrissy Swan", + "content": "", + "contentSnippet": "", + "guid": "4c99713e-bb99-3f6c-ab24-6b2c99e73dfb", + "categories": [ + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/garden-sheds", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/clearing", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-accessories", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T13:04:24.000Z" + }, + { + "creator": "Jack Rear", + "title": "\u2018I plan to keep fundraising for as long as I can \u2013 I love doing it\u2019", + "link": "https://www.telegraph.co.uk/christmas/2024/01/08/volunteering-marie-curie-new-lease-of-life/", + "pubDate": "Mon, 08 Jan 2024 13:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2024/01/07/TELEMMGLPICT000361429694_17046244344960_trans_NvBQzQNjv4BqMibTIb194NSX_akRMjH3yEWy_sGK6oioMu5BzggyGUY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Rear", + "content": "", + "contentSnippet": "", + "guid": "aabc46d6-3c37-3ef8-b0a6-b8d38a06092c", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/marie-curie", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/care-homes", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T13:00:00.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The 7 best pillows for side sleepers in 2024, tested for support and comfort", + "link": "https://www.telegraph.co.uk/recommended/home/best-pillows-side-sleepers/", + "pubDate": "Mon, 08 Jan 2024 12:40:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/14/TELEMMGLPICT000328981809_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "3f4a2198-db9c-378a-a743-fde5ae47deb7", + "categories": [ + { + "_": "topics:events/world-sleep-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep-hygiene", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/back-pain", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T12:40:00.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best coffee machines of 2024, tried and tested, from pod espresso makers to bean-to-cup machines", + "link": "https://www.telegraph.co.uk/recommended/home/best-coffee-machines-reviews-tried-tested/", + "pubDate": "Mon, 08 Jan 2024 12:21:07 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/28/TELEMMGLPICT000333672936_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "ab2faf08-006f-3615-828c-3fb0ea8926c1", + "categories": [ + { + "_": "topics:things/coffee", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T12:21:07.000Z" + }, + { + "creator": "Emily Peck", + "title": "The best garden hoses of 2024, tried and tested with expert advice", + "link": "https://www.telegraph.co.uk/recommended/home/best-garden-hose/", + "pubDate": "Mon, 08 Jan 2024 11:59:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/06/23/TELEMMGLPICT000340393203_16875322633330_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emily Peck", + "content": "", + "contentSnippet": "", + "guid": "200144b2-9c4b-3f86-aefa-414fd615afdf", + "categories": [ + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/plants", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/flowers", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/lawns", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-accessories", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T11:59:57.000Z" + }, + { + "creator": "Lilia Sebouai", + "title": "Rising hunger in Gaza \u2018turning children into skeletons\u2019", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/children-skeletons-rising-hunger-gaza-famine/", + "pubDate": "Mon, 08 Jan 2024 11:48:16 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/08/TELEMMGLPICT000361619869_17047055095630_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lilia Sebouai", + "content": "", + "contentSnippet": "", + "guid": "ee7385af-c92c-3661-9665-40266a414af1", + "categories": [ + { + "_": "topics:things/famine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/malnutrition", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T11:48:16.000Z" + }, + { + "creator": "Tom\u00e9 Morrissy Swan", + "title": "The best juicers of 2024 for juicing fresh fruits and vegetables, tried and tested at home", + "link": "https://www.telegraph.co.uk/recommended/home/best-juicers/", + "pubDate": "Mon, 08 Jan 2024 11:47:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/12/08/TELEMMGLPICT000359332328_17020489997570_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom\u00e9 Morrissy Swan", + "content": "", + "contentSnippet": "", + "guid": "01200c28-47ca-3e0b-b967-9bf3f9456573", + "categories": [ + { + "_": "topics:things/kitchen-equipment", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-food", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fruit-and-vegetables", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T11:47:53.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best online homeware and interiors shops in the UK, from H&M to Next and John Lewis", + "link": "https://www.telegraph.co.uk/interiors/home/best-online-homeware-interiors-shops/", + "pubDate": "Mon, 08 Jan 2024 11:23:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/interiors/2022/05/12/wicklewood-best-online-homeware-and-interior-shops_1_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.png", + "length": "99", + "type": "image/png" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "121803b6-3c9d-345c-9709-f8fbff5d934d", + "categories": [ + { + "_": "topics:things/interiors", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/new-home", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/first-home", + "$": { + "domain": "" + } + }, + { + "_": "structure:interiors", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T11:23:11.000Z" + }, + { + "creator": "Emily Peck", + "title": "The best pillows for neck pain in 2024, tried and tested at home by neck pain sufferers", + "link": "https://www.telegraph.co.uk/recommended/home/best-pillow-for-neck-pain/", + "pubDate": "Mon, 08 Jan 2024 10:58:47 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/04/13/TELEMMGLPICT000331979348_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emily Peck", + "content": "", + "contentSnippet": "", + "guid": "36bff3bb-7777-3151-abfe-20425e42232f", + "categories": [ + { + "_": "topics:things/back-pain", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/science-sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep-hygiene", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:wellbeing/health", + "$": { + "domain": "" + } + }, + { + "_": "structure:women/health", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/sleep", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T10:58:47.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "The best rowing machines to keep fit in 2024, recommended by elite rowers", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-rowing-machine/", + "pubDate": "Mon, 08 Jan 2024 10:24:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2024/01/05/TELEMMGLPICT000319085097_17044732364330_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "content": "", + "contentSnippet": "", + "guid": "ffcfbf5f-f6d9-3130-ae7e-a29e208b4f54", + "categories": [ + { + "_": "topics:things/exercise", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/home-workouts", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/body", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-08T10:24:51.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Pictured: King's 'surreal' encounter with miniature Land Rover", + "link": "https://www.telegraph.co.uk/royal-family/2024/01/07/king-charles-miniature-land-rover/", + "pubDate": "Sun, 07 Jan 2024 21:53:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/royal-family/2024/01/07/TELEMMGLPICT000361835506_17046636568440_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "content": "", + "contentSnippet": "", + "guid": "681c2e52-72c8-3c2d-b8be-c3a01fcb04b6", + "categories": [ + { + "_": "topics:people/king-charles-iii", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/land-rover", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-07T21:53:15.000Z" + }, + { + "creator": "Jason Burt", + "title": "Liverpool the latest rivals to land bruising blow on wasteful Arsenal", + "link": "https://www.telegraph.co.uk/football/2024/01/07/arsenal-vs-liverpool-live-score-updates-fa-cup-latest/", + "pubDate": "Sun, 07 Jan 2024 20:25:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/07/TELEMMGLPICT000361876462_17046524619460_trans_NvBQzQNjv4BqNTT8cd-mcMQMfttMcDU2Buil7a1KV2STY3xRqqFt_No.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jason Burt", + "content": "The importance of this win for Liverpool may not be felt until May. Not necessarily in the FA Cup but in the context of a tautly contested Premier League title race when every set-back or advantage, and whatever the context, feels extremely significant.

]]>", + "contentSnippet": "", + "guid": "afee383a-3473-3c83-a853-5e3999718a63", + "categories": [ + { + "_": "topics:organisations/arsenal-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/liverpool-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/fa-cup", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/fa-cup-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-07T20:25:04.000Z" + }, + { + "creator": "Charles Richardson", + "title": "Tom de Glanville stakes England claim as Bath consign Gloucester to worst league run", + "link": "https://www.telegraph.co.uk/rugby-union/2024/01/07/bath-v-gloucester-result-tom-de-glanville-steve-borthwick/", + "pubDate": "Sun, 07 Jan 2024 18:36:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/07/TELEMMGLPICT000361875655_17046514658540_trans_NvBQzQNjv4BqPAUvyU03bKqpoSLf_byUp28u_NKS89v-aPshwVAqFO0.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Richardson", + "content": "", + "contentSnippet": "", + "guid": "af6cb558-1cb4-34d1-b31d-9b0d3e669292", + "categories": [ + { + "_": "topics:organisations/bath-rugby", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/gloucester-rugby", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/gallagher-premiership", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-07T18:36:43.000Z" + }, + { + "creator": "Fiona Tomas", + "title": "Weakened Exeter Women overcome squad turnover to ease past Ealing", + "link": "https://www.telegraph.co.uk/rugby-union/2024/01/07/exeter-women-v-ealing-trailfinders-result-katie-buchanan/", + "pubDate": "Sun, 07 Jan 2024 18:02:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/07/TELEMMGLPICT000361846831_17046418714990_trans_NvBQzQNjv4BqP4pV-m6laGcMQMbuKYgJGbeHsZFrEmHQDi0eQN40zhg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Fiona Tomas", + "content": "", + "contentSnippet": "", + "guid": "d6a1dc9e-1044-3508-8f54-44b7ea777286", + "categories": [ + { + "_": "topics:organisations/exeter-chiefs", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/premiership-womens-rugby", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-07T18:02:35.000Z" + }, + { + "creator": "Lilia Sebouai", + "title": "Why the women\u2019s health gap is costing the global economy \u00a3790bn", + "link": "https://www.telegraph.co.uk/global-health/women-and-girls/790-billion-pound-global-cost-of-women-health-gap/", + "pubDate": "Thu, 18 Jan 2024 12:25:22 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/18/TELEMMGLPICT000342524465_17055775221400_trans_NvBQzQNjv4BqDiDrV97xgDFjc_F6AHtCzf4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lilia Sebouai", + "content": "", + "contentSnippet": "", + "guid": "67d6d1cb-0ec1-3d2d-bcbd-52bbd64f88f2", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/women's-health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Gender-equality", + "$": { + "domain": "" + } + }, + { + "_": "structure:women-and-girls", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T12:25:22.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Do the right thing and pass Rwanda Bill, Sunak tells House of Lords", + "link": "https://www.telegraph.co.uk/politics/2024/01/18/rishi-sunak-latest-news-rwanda-bill-philp/", + "pubDate": "Thu, 18 Jan 2024 12:12:11 GMT", + "dc:creator": "Jack Maidment", + "content": "Rishi Sunak has urged the House of Lords to \u201cdo the right thing\u201d and pass his flagship Rwanda Bill as quickly as possible after it cleared the House of Commons last night. 

]]>", + "contentSnippet": "", + "guid": "0777dd75-40f4-3cd1-bdb9-52e290839504", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T12:12:11.000Z" + }, + { + "creator": "Simon Briggs", + "title": "Emma Raducanu struggles with sickness in three-set Australian Open defeat by Yafan Wang", + "link": "https://www.telegraph.co.uk/tennis/2024/01/18/emma-raducanu-vs-yafan-wang-live-australian-open-updates/", + "pubDate": "Thu, 18 Jan 2024 12:00:03 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/18/TELEMMGLPICT000363136305_17055731583370_trans_NvBQzQNjv4Bq9PikuTrmQO3f57XLkA28TG8HY4ZFrniSXaLtLcTAUTE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Briggs", + "content": "Emma Raducanu\u2019s Australian Open ended in an exhausting battle and a bout of sickness, but no lack of drama. She has a knack for intriguing scripts.

]]>", + "contentSnippet": "", + "guid": "5a5d2e6c-82d9-349c-a5d1-250f2a950b4f", + "categories": [ + { + "_": "topics:people/emma-raducanu", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T12:00:03.000Z" + }, + { + "creator": "Chris Moss", + "title": "10 tips and tricks for saving money on UK rail fares", + "link": "https://www.telegraph.co.uk/travel/advice/how-to-save-money-uk-train-tickets/", + "pubDate": "Thu, 18 Jan 2024 11:44:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/travel/2023/04/11/TELEMMGLPICT000331774476_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Moss", + "content": "", + "contentSnippet": "", + "guid": "74dbb81c-b421-3d70-b4b7-601ed24a7be5", + "categories": [ + { + "_": "topics:things/rail", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/rail-prices", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/advice", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/rail-journeys", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T11:44:51.000Z" + }, + { + "creator": "Benedict Smith", + "title": "Israel-Hamas war live: First images of Houthi drone strike on Red Sea ship", + "link": "https://www.telegraph.co.uk/world-news/2024/01/18/israel-hamas-war-latest-news-updates-gaza-day-104/", + "pubDate": "Thu, 18 Jan 2024 11:09:54 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/18/TELEMMGLPICT000363122472_17055761177370_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdGLvJF5WfpqnBZShRL_tOZw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Benedict Smith", + "content": "India\u2019s navy has released images of a Houthi drone strike on a US-owned ship near the Red Sea.

]]>", + "contentSnippet": "", + "guid": "f57cd9c4-4255-3e3c-8ca4-a3157b83f79b", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T11:09:54.000Z" + }, + { + "creator": "Chris Price", + "title": "Oil demand to take hit this year in blow to Putin and Saudi Arabia - latest updates", + "link": "https://www.telegraph.co.uk/business/2024/01/18/ftse-100-markets-latest-news-housing-market-mortgages-davos/", + "pubDate": "Thu, 18 Jan 2024 10:37:47 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/18/TELEMMGLPICT000363047159_17055740948900_trans_NvBQzQNjv4Bqyntj27Do1A_uEF6jNSG5NjQ2fQls62HNhIwsSqb17Zk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Price", + "content": "Demand for oil this year will rise by half the pace seen in 2023, an official report has said, delivering a blow to Vladimir Putin\u2019s war economy and the world\u2019s largest producer Saudi Arabia.

]]>", + "contentSnippet": "", + "guid": "711177d8-6c8e-3473-bc77-bea7526e355f", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T10:37:47.000Z" + }, + { + "creator": "Tim Robey", + "title": "The End We Start From: Jodie Comer is tremendous in a post-flood survival drama", + "link": "https://www.telegraph.co.uk/films/0/the-end-we-start-from-review-jodie-comer/", + "pubDate": "Thu, 18 Jan 2024 10:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2023/10/13/TELEMMGLPICT000351971526_16971972254890_trans_NvBQzQNjv4BqNUHzxaamNmHDqK-YksWRz2o-yMLyYquKCawpyDOW254.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Robey", + "content": "", + "contentSnippet": "", + "guid": "0796130d-9afb-31f0-91f7-f27d969684a7", + "categories": [ + { + "_": "topics:events/london-film-festival", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jodie-comer", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/killing-eve", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "editors:tim-robey", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:film/film-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T10:00:00.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Ukraine-Russia war live: Ukraine attacks oil terminal in rare St Petersburg drone strike", + "link": "https://www.telegraph.co.uk/world-news/2024/01/18/ukraine-russia-war-live-st-petersburg-drone-strike/", + "pubDate": "Thu, 18 Jan 2024 09:50:08 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/18/TELEMMGLPICT000362404255_17055633652710_trans_NvBQzQNjv4BqP5cCLU3tGUKNTdPSRn7mul5NUcTKNHKqy85KLqtvPLE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "content": "A Ukrainian drone was shot down over a St Petersburg oil terminal in the early hours in one of Kyiv\u2019s northernmost attacks of the war so far.

]]>", + "contentSnippet": "", + "guid": "0b04c675-8f95-34f7-8416-209757248813", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T09:50:08.000Z" + }, + { + "creator": "Diana Henry", + "title": "Mushroom stroganoff baked potatoes recipe", + "link": "https://www.telegraph.co.uk/recipes/0/mushroom-stroganoff-baked-potatoes-recipe/", + "pubDate": "Thu, 18 Jan 2024 09:37:08 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/17/TELEMMGLPICT000363034950_17054943083800_trans_NvBQzQNjv4BqnA9-16aLB235wrV1zAnDutkM9MM8VM3G1BxlGUO4L8Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "7062f02c-7017-3b0a-991f-697bc91cca17", + "categories": [ + { + "_": "topics:things/potato-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/mushroom-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/spinach-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T09:37:08.000Z" + }, + { + "creator": "Diana Henry", + "title": "Cauliflower cheese baked potatoes recipe", + "link": "https://www.telegraph.co.uk/recipes/0/cauliflower-cheese-baked-potatoes-recipe/", + "pubDate": "Thu, 18 Jan 2024 09:33:58 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/17/TELEMMGLPICT000363034952_17054959423060_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "1e005a72-1609-3346-bf61-deb249cd3bfc", + "categories": [ + { + "_": "topics:things/potato-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cheese-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cauliflower-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/meal-ideas-for-kids", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T09:33:58.000Z" + }, + { + "creator": "Diana Henry", + "title": "Baked sweet potatoes with honey-roast feta, olives, beetroot and mint recipe", + "link": "https://www.telegraph.co.uk/recipes/0/baked-sweet-potatoes-honey-roast-feta-olives-beetroot-recip/", + "pubDate": "Thu, 18 Jan 2024 09:30:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/17/TELEMMGLPICT000363034955_17054967427500_trans_NvBQzQNjv4BqQv8PhuGzYBWYEozZmXWUMEikPYR0xYwuEBLwP9UFqPg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "58e3ab77-895f-3099-94c0-237df697a63f", + "categories": [ + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/potato-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cheese-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/beetroot-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/easy-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T09:30:50.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "An expert guide to ski holidays in Davos", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/davos/davos-ski-holiday-guide/", + "pubDate": "Thu, 18 Jan 2024 08:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/davos-klosters-lead.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "c2346b98-48f3-3c0f-aae1-c618171b685f", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/davos", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T08:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best accommodation in Davos", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/davos/davos-hotels-and-chalets/", + "pubDate": "Thu, 18 Jan 2024 08:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/tivoli-lounge.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "77192bc0-6d30-31b7-bbfe-5a40130a9d0e", + "categories": [ + { + "_": "topics:places/davos", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T08:00:00.000Z" + }, + { + "creator": "Molly McElwee", + "title": "Novak Djokovic in spat with fan before sealing place in Australian Open third round", + "link": "https://www.telegraph.co.uk/tennis/2024/01/17/australian-open-djokovic-vs-popyrin-live-updates-scores/", + "pubDate": "Thu, 18 Jan 2024 06:25:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/17/TELEMMGLPICT000363076534_17055212238320_trans_NvBQzQNjv4BqDbmdHSB_6I1E7U24Q_F-nxIKfVh-7d4P7T72fkl6uGw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Molly McElwee", + "content": "Novak Djokovic pushed through physical issues, a snotty nose and a spat with a fan to beat the spirited efforts of home hero Alexei Popyrin at the Australian Open.

]]>", + "contentSnippet": "", + "guid": "32b688cf-a1a6-3085-8939-6c15a4b90ed5", + "categories": [ + { + "_": "topics:people/novak-djokovic", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T06:25:15.000Z" + }, + { + "creator": "Uche Amako", + "title": "Australian Open 2024 order of play: Today's matches, full schedule and how to watch on TV", + "link": "https://www.telegraph.co.uk/tennis/2024/01/17/australian-open-2024-how-to-watch-tv-dates-emma-raducanu/", + "pubDate": "Thu, 18 Jan 2024 06:23:56 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/17/TELEMMGLPICT000362905836_17055070246460_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Uche Amako", + "content": "", + "contentSnippet": "", + "guid": "b1d2b840-8e48-3c7b-8ff9-33a938d57c1a", + "categories": [ + { + "_": "topics:people/novak-djokovic", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/carlos-alcaraz", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andy-murray", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/emma-raducanu", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/naomi-osaka", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T06:23:56.000Z" + }, + { + "creator": "Simon Heffer", + "title": "Forget The Crown\u2019s lies \u2013 this glorious book reveals the real Charles III", + "link": "https://www.telegraph.co.uk/books/non-fiction/review-robert-hardman-charles-iii/", + "pubDate": "Thu, 18 Jan 2024 00:01:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/books/2024/01/15/TELEMMGLPICT000352916370_17053384003920_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdGLvJF5WfpqnBZShRL_tOZw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Heffer", + "content": "", + "contentSnippet": "", + "guid": "3b60330e-a75b-392c-91c0-cf416fae0174", + "categories": [ + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/king-charles-iii", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/prince-harry-meghan-markle", + "$": { + "domain": "" + } + }, + { + "_": "structure:books/non-fiction", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture/culture-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:books", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T00:01:00.000Z" + }, + { + "creator": "Telegraph Sport", + "title": "January transfer deadline day 2024: All you need to know", + "link": "https://www.telegraph.co.uk/football/2024/01/17/january-transfer-deadline-day-when-watch-guide/", + "pubDate": "Wed, 17 Jan 2024 23:27:09 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/09/TELEMMGLPICT000361768944_17048097888020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwWyaKjL1CatlwZEbgNRqSgg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Sport", + "content": "", + "contentSnippet": "", + "guid": "6db25127-c29f-3a96-90fc-d0a48c0c312e", + "categories": [ + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/football-transfers", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T23:27:09.000Z" + }, + { + "creator": "Cameron Henderson", + "title": "Six Nations 2024: Fixtures, squads, how to get tickets and more", + "link": "https://www.telegraph.co.uk/rugby-union/2024/01/16/six-nations-championship-2024-when-how-to-watch/", + "pubDate": "Wed, 17 Jan 2024 23:12:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/17/TELEMMGLPICT000363040728_17055041141120_trans_NvBQzQNjv4BqJGdLpwOZ4ig0u7Q-LAYH6gZ38HhLZhPhjjFirMf2bnM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Cameron Henderson", + "content": "", + "contentSnippet": "", + "guid": "777a8c04-d4ff-3585-82c3-42305137b3b1", + "categories": [ + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/scotland-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/france-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/six-nations", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/wales-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ireland-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T23:12:50.000Z" + }, + { + "creator": "Charles Hymas", + "title": "Rwanda Bill passes as only 11 Tory MPs rebel", + "link": "https://www.telegraph.co.uk/politics/2024/01/17/rishi-sunak-latest-news-rwanda-rees-mogg-farage/", + "pubDate": "Wed, 17 Jan 2024 22:30:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2024/01/17/TELEMMGLPICT000363086868_17055280396100_trans_NvBQzQNjv4Bqe0Ui9PSieXevNSKSwxF5X1XWBklAC8LL8aQqQGFf2jY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Hymas", + "content": "Rishi Sunak secured victory on Wednesday as his flagship Rwanda Bill passed the House of Commons after just 11 Tory MPs rebelled by voting against it.

]]>", + "contentSnippet": "passed the House of Commons after just 11 Tory MPs rebelled by voting against it.\n]]>", + "guid": "8b7dad5c-afff-3b5f-af85-8ddad67e5a12", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/rwanda", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T22:30:17.000Z" + }, + { + "creator": "Chris Bascombe", + "title": "Andre Gomes fires Everton into FA Cup fourth round as Palace fans turn on Roy Hodgson", + "link": "https://www.telegraph.co.uk/football/2024/01/17/everton-vs-crystal-palace-fa-cup-replay-result-andre-gomes/", + "pubDate": "Wed, 17 Jan 2024 22:01:14 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/17/TELEMMGLPICT000363082151_17055282233750_trans_NvBQzQNjv4BqGS8M2x6GHm2l7bXwoEPe7Rzx-3UiFxQ4BG24WoSjOow.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Bascombe", + "content": "", + "contentSnippet": "", + "guid": "0bdc67e7-8ca0-3860-8609-302bb8d6ca2f", + "categories": [ + { + "_": "topics:organisations/everton-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/crystal-palace-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/fa-cup", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T22:01:14.000Z" + }, + { + "creator": "Victoria Ward", + "title": "King to have prostate treatment as Princess of Wales goes to hospital", + "link": "https://www.telegraph.co.uk/royal-family/2024/01/17/princess-of-wales-surgery/", + "pubDate": "Wed, 17 Jan 2024 21:48:52 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/royal-family/2024/01/17/TELEMMGLPICT000363084014_17055265519690_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Victoria Ward", + "content": "Buckingham Palace announced  on Wednesday that the King required treatment for an enlarged prostate, just 90 minutes after Kensington Palace revealed that the Princess of Wales had undergone abdominal surgery.

]]>", + "contentSnippet": "required treatment for an enlarged prostate, just 90 minutes after Kensington Palace revealed that the Princess of Wales had undergone abdominal surgery.\n]]>", + "guid": "1ef946c1-7d56-365a-a75b-54d6c5397a6d", + "categories": [ + { + "_": "topics:people/princess-of-wales", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/the-royal-family", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/king-charles-iii", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/prince-william", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:royal-family", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T21:48:52.000Z" + }, + { + "creator": "Tim Wallace", + "title": "FTSE 100 suffers sharpest fall in 5 months after shock rise in inflation", + "link": "https://www.telegraph.co.uk/business/2024/01/17/ftse-100-markets-latest-news-inflation-interest-rates/", + "pubDate": "Wed, 17 Jan 2024 19:08:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/17/TELEMMGLPICT000344669264_17055067579230_trans_NvBQzQNjv4BqyKbbTIvVbvqvypOgwykjr15NUcTKNHKqy85KLqtvPLE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Wallace", + "content": "The FTSE 100 suffered its worst day since August as a surprise jump in inflation raised fears the Bank of England will be forced to keep interest rates higher for longer.

]]>", + "contentSnippet": "", + "guid": "aea298f8-57a1-3400-b350-5d3d56425e9d", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T19:08:12.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - 'Unknown' partisans wreck Russian railways", + "link": "https://www.telegraph.co.uk/world-news/2024/01/17/partisans-russia-bombs-ukraine-strikes/", + "pubDate": "Wed, 17 Jan 2024 17:51:23 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/17/TELEMMGLPICT000363046400_17055138365230_trans_NvBQzQNjv4BqyuLFFzXshuGqnr8zPdDWXhbQKbwj1ZsnNMhuR7O6ySI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "736acb43-5dde-3871-ace7-c161e37d8637", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T17:51:23.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Wednesday evening news briefing: King to have prostate treatment as Princess of Wales undergoes surgery", + "link": "https://www.telegraph.co.uk/news/2024/01/17/wednesday-evening-news-briefing-king-princess-surgery/", + "pubDate": "Wed, 17 Jan 2024 17:44:53 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "bb30ea7a-5406-363f-a837-c8ac9498beeb", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/king-charles-iii", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/princess-of-wales", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T17:44:53.000Z" + }, + { + "creator": "Ben Farmer", + "title": "Adult smoking declines globally \u2013 but child vaping stokes concern", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/adult-smokers-decline-globally-child-vaping-fears/", + "pubDate": "Wed, 17 Jan 2024 17:10:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/17/TELEMMGLPICT000219552225_17055096107380_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Ben Farmer", + "content": "", + "contentSnippet": "", + "guid": "ae26a139-4c9b-3bce-a672-f3c5d0e113be", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/smoking", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/world-health-organisation", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/non-communicable-diseases", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T17:10:11.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best accommodation in Mayrhofen", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/austria/mayrhofen/mayrhofen-hotels-and-chalets/", + "pubDate": "Wed, 17 Jan 2024 17:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/2020/Aout/hotel-elisabeth-mayrhofen-3-p.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "a1130adf-869c-3cc1-971a-1b9def1a8882", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/austria", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T17:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "An expert guide to ski holidays in Mayrhofen", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/austria/mayrhofen/mayrhofen-ski-holiday-guide/", + "pubDate": "Wed, 17 Jan 2024 17:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/Mayrhofen.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "1f909ac8-7d67-3fe3-ba6a-30eb3616bf46", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/austria", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T17:00:00.000Z" + }, + { + "creator": "Luke Slater", + "title": "England vs India, Test series and tour: Full schedule and fixtures", + "link": "https://www.telegraph.co.uk/cricket/2024/01/17/england-vs-india-test-tour-2024-full-schedule-and-fixtures/", + "pubDate": "Wed, 17 Jan 2024 16:10:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2024/01/09/TELEMMGLPICT000361024498_17048016311440_trans_NvBQzQNjv4BqG_mptpChRHij4fwYXW1nLNSg9kdm7XGDZagULvp4PAs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Luke Slater", + "content": "", + "contentSnippet": "", + "guid": "20f15cfa-4dc4-3345-85fc-ea7ab341e8c1", + "categories": [ + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/india-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T16:10:55.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Israel-Hamas war: Israel discovers tunnel \u2018wide enough for Hamas leader to drive his car down\u2019", + "link": "https://www.telegraph.co.uk/world-news/2024/01/17/israel-hamas-war-latest-news-updates-aid-day-103-live/", + "pubDate": "Wed, 17 Jan 2024 16:07:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/17/TELEMMGLPICT000363037446_17054988724880_trans_NvBQzQNjv4Bq7IPsDfcnTKqeaUJoamuaw3hQ5CEdXUBuA9zgd9qAx_E.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "content": "A tunnel wide enough for a Hamas leader to drive his car underneath Gaza has reportedly been discovered by Israeli forces. 

]]>", + "contentSnippet": "", + "guid": "ab69727b-3af5-3b58-9f3c-d7b62515946e", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T16:07:35.000Z" + }, + { + "creator": "Jamie Bullen", + "title": "Post Office scandal latest: Fujitsu data was 'manipulated', inquiry hears - watch live", + "link": "https://www.telegraph.co.uk/news/2024/01/17/post-office-scandal-live-inquiry-fujitsu-horizon/", + "pubDate": "Wed, 17 Jan 2024 15:44:11 GMT", + "dc:creator": "Jamie Bullen", + "content": "Data extracted by Fujitsu before being presented to the Post Office was \u201cmanipulated from its original source\u201d, the public inquiry into the Horizon scandal has heard.

]]>", + "contentSnippet": "", + "guid": "04046a1e-8914-3342-9b06-9109422ad6b3", + "categories": [ + { + "_": "topics:in-the-news/post-office-scandal", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/post-office", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T15:44:11.000Z" + }, + { + "creator": "Timothy Sigsworth", + "title": "Ukraine-Russia war: Nato military chief demands 'warfighting transition'", + "link": "https://www.telegraph.co.uk/world-news/2024/01/17/ukraine-russia-war-live-eu-germany-aid/", + "pubDate": "Wed, 17 Jan 2024 15:10:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/17/TELEMMGLPICT000362957666_17054830685560_trans_NvBQzQNjv4BqzccoJS-E8Wb-wOXrdJto2w4knLjPM_M0R3xiLV8rua4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Timothy Sigsworth", + "content": "Nato\u2019s top military official has demanded countries in the alliance undertake a \u2018warfighting transition\u2019. 

]]>", + "contentSnippet": "", + "guid": "945b8ac8-a88f-36d8-877b-b32c3b56bd7b", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T15:10:37.000Z" + }, + { + "creator": "Hattie Garlick", + "title": "The 10 foods that could reduce your risk of dementia", + "link": "https://www.telegraph.co.uk/health-fitness/conditions/dementia/the-10-foods-that-could-reduce-your-risk-of-dementia/", + "pubDate": "Wed, 17 Jan 2024 13:41:25 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/health-fitness/2023/05/17/TELEMMGLPICT000335932798_trans_NvBQzQNjv4BqZ2Y11QTQUceJmvil26UNU5e2cSej23e-p14I7FSjAIE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Hattie Garlick", + "content": "", + "contentSnippet": "", + "guid": "5605f344-0193-36e7-90c4-c3fe1b3aeba4", + "categories": [ + { + "_": "topics:things/dementia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/brain-health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/healthy-food", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/brain-disease", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-christmas-charity-appeal-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/race-against-dementia", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/mind", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/conditions", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness/conditions/dementia", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-guide", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T13:41:25.000Z" + }, + { + "creator": "Tom Ward", + "title": "Who is in the England 2024 Six Nations squad?", + "link": "https://www.telegraph.co.uk/rugby-union/2024/01/16/six-nations-england-squad-tickets-fixtures-times/", + "pubDate": "Wed, 17 Jan 2024 11:39:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/16/TELEMMGLPICT000362906658_17053998046090_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom Ward", + "content": "", + "contentSnippet": "", + "guid": "6a0c2d6d-b700-388f-ab01-2584eaf54666", + "categories": [ + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/six-nations", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/steve-borthwick", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T11:39:18.000Z" + }, + { + "creator": "Charles Richardson", + "title": "Jamie George made England captain after Pep Guardiola-style player vote", + "link": "https://www.telegraph.co.uk/rugby-union/2024/01/17/england-six-nations-squad-announcement-live-slade-borthwick/", + "pubDate": "Wed, 17 Jan 2024 11:28:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/17/TELEMMGLPICT000313198554_17055129357850_trans_NvBQzQNjv4BqCamL6CQfqsxM6e6TnRwDxlEf6b4n5GgZPvs1cKg10Fk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Richardson", + "content": "England head coach Steve Borthwick has told Jamie George to stamp his personality on a new-look squad and insists the hooker can be more than a stopgap captain.

]]>", + "contentSnippet": "", + "guid": "92d416a1-e234-32a3-9677-e5ca490acc76", + "categories": [ + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/six-nations", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jamie-george", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T11:28:12.000Z" + }, + { + "creator": "Sarah Newey", + "title": "Leprosy creeps back in Myanmar as health system falters", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/leprosy-creeps-back-in-myanmar-as-health-system-falters/", + "pubDate": "Wed, 17 Jan 2024 11:18:44 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/17/TELEMMGLPICT000362899820_17054886320480_trans_NvBQzQNjv4Bqf31hxWNT7i64oktrHVICFv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "content": "", + "contentSnippet": "", + "guid": "c942b7a6-bbac-3cfd-8e13-5a52b96f4780", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/myanmar", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Conflict", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T11:18:44.000Z" + }, + { + "creator": "Charles Richardson", + "title": "Six Nations 2024 referees announced: Who will referee England\u2019s matches?", + "link": "https://www.telegraph.co.uk/rugby-union/2024/01/17/six-nations-championship-2024-referees-announced-matches/", + "pubDate": "Wed, 17 Jan 2024 10:37:28 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/12/05/TELEMMGLPICT000335494231_17017999708200_trans_NvBQzQNjv4Bqu9d2miJrqdy0WHkNnywGGHSAMUWbLP57EYvvneETxPE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Richardson", + "content": "", + "contentSnippet": "", + "guid": "94680700-1363-37a1-8f10-77f9c6dde225", + "categories": [ + { + "_": "topics:events/six-nations", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/scotland-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/france-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/wales-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/italy-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T10:37:28.000Z" + }, + { + "creator": "Tom Ward", + "title": "NFL Super Bowl 2024 Guide: When is it, how to watch, half-time show and latest odds", + "link": "https://www.telegraph.co.uk/american-football/2024/01/17/nfl-super-bowl-guide-when-date-winners-uk-tv-channel/", + "pubDate": "Wed, 17 Jan 2024 10:36:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/american-football/2024/01/09/TELEMMGLPICT000325263717_17048012517520_trans_NvBQzQNjv4BqnFWrKBYEBGn6ARPcMRQYjS82-ivqc6avWefomlBmWCs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom Ward", + "content": "", + "contentSnippet": "", + "guid": "92498424-1065-30a3-a5f4-075d314178aa", + "categories": [ + { + "_": "topics:organisations/nfl", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/super-bowl", + "$": { + "domain": "" + } + }, + { + "_": "structure:american-football", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T10:36:02.000Z" + }, + { + "creator": "Gareth A Davies", + "title": "Tyson Fury vs Oleksandr Usyk: When is the fight, how to watch and the undercard line-up", + "link": "https://www.telegraph.co.uk/boxing/2024/01/17/tyson-fury-vs-oleksandr-usyk-when-date-tv-undercard/", + "pubDate": "Wed, 17 Jan 2024 10:35:56 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/boxing/2023/11/16/TELEMMGLPICT000354817954_17001448694440_trans_NvBQzQNjv4BqMI1LvyrVLfIFrd7O2yQz27LZhoUJXRy_slhDUzUzVKo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Gareth A Davies", + "content": "", + "contentSnippet": "", + "guid": "9e7bd8e5-4110-3435-9b8b-8125ef31983d", + "categories": [ + { + "_": "topics:people/tyson-fury", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/oleksandr-usyk", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/saudi-arabia", + "$": { + "domain": "" + } + }, + { + "_": "structure:boxing", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T10:35:56.000Z" + }, + { + "creator": "Simon Briggs", + "title": "Emma Raducanu demolishes Shelby Rogers to cruise into Australian Open second round", + "link": "https://www.telegraph.co.uk/tennis/2024/01/16/emma-raducanu-vs-shelby-rogers-live-updates-australian-open/", + "pubDate": "Wed, 17 Jan 2024 08:59:05 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/16/TELEMMGLPICT000362906241_17054004291420_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Briggs", + "content": "Of all the things we expected from Emma Raducanu\u2019s return to grand slam competition, a smooth and drama-free evening wouldn\u2019t have been top of the bill. Her narrative has been far too twisty for that.

]]>", + "contentSnippet": "", + "guid": "bdab9871-88c8-30ab-9415-0a5f4f074f49", + "categories": [ + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/emma-raducanu", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T08:59:05.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "An expert guide to ski holidays in Les Menuires ", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/les-menuires/les-menuires-ski-holiday-guide/", + "pubDate": "Wed, 17 Jan 2024 08:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/les-menuires-lead.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "5502ea5e-83fa-3e3e-91d8-5362ca874c2b", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/french-alps", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/les-menuires", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T08:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best accommodation in Les Menuires", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/les-menuires/les-menuires-hotels-and-chalets/", + "pubDate": "Wed, 17 Jan 2024 08:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/2020/September/chalet-kaya-les-menuires-france-1-p.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "77680adb-5e39-3e45-b3cb-62120a5425d5", + "categories": [ + { + "_": "topics:places/les-menuires", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-17T08:00:00.000Z" + }, + { + "creator": "John Percy", + "title": "Matheus Cunha gives Wolves fans exactly what they want \u2013 a derby with West Brom", + "link": "https://www.telegraph.co.uk/football/2024/01/16/wolves-brentford-fa-cup-third-round-replay-result/", + "pubDate": "Tue, 16 Jan 2024 22:33:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/16/TELEMMGLPICT000362983661_17054442619690_trans_NvBQzQNjv4BqkjTqN4q_QOMdsQB6negVQq1UDbDdk-JPjedL466dDsg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "John Percy", + "content": "", + "contentSnippet": "", + "guid": "f034e998-7d27-35d1-b305-7604205141ec", + "categories": [ + { + "_": "topics:events/fa-cup", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/wolverhampton-wanderers-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/brentford-fc", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T22:33:35.000Z" + }, + { + "creator": "Hannah Meltzer ", + "title": "The best boutique hotels in Paris", + "link": "https://www.telegraph.co.uk/travel/destinations/europe/france/paris/articles/the-best-boutique-hotels-in-paris/", + "pubDate": "Tue, 16 Jan 2024 21:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/2024/january/hotel-particulier-paris.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Hannah Meltzer ", + "content": "", + "contentSnippet": "", + "guid": "d5c543b5-060d-37f4-8018-8701c0d2b718", + "categories": [ + { + "_": "topics:places/europe", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/hotels", + "$": { + "domain": "" + } + }, + { + "_": "structure:hotel-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/paris", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T21:00:00.000Z" + }, + { + "creator": "Jamie Bullen", + "title": "Fujitsu boss admits \u2018moral obligation\u2019 to compensate Horizon victims", + "link": "https://www.telegraph.co.uk/news/2024/01/16/post-office-scandal-latest-alan-bates-before-mps-watch/", + "pubDate": "Tue, 16 Jan 2024 20:57:28 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/16/TELEMMGLPICT000362930566_17054380047730_trans_NvBQzQNjv4Bqf31hxWNT7i64oktrHVICFv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jamie Bullen", + "content": "Fujitsu has a \u201cmoral obligation\u201d to compensate victims of the Post Office scandal, a senior executive admitted on Tuesday as he apologised for the firm\u2019s role in the \u201cappalling miscarriage of justice\u201d.

]]>", + "contentSnippet": "appalling miscarriage of justice\u201d.\n]]>", + "guid": "c750e067-52c6-33f8-9014-23907b402fe4", + "categories": [ + { + "_": "topics:in-the-news/post-office-scandal", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/post-office", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/department-for-business-innovation-skills", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T20:57:28.000Z" + }, + { + "creator": "Matthew Field", + "title": "Fortnite maker Epic loses US legal battle with Apple over App Store", + "link": "https://www.telegraph.co.uk/business/2024/01/16/ftse-100-markets-news-latest-wages-lower-interest-rates/", + "pubDate": "Tue, 16 Jan 2024 18:07:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/16/TELEMMGLPICT000362934214_17054248755680_trans_NvBQzQNjv4BqDQVK81QMLSkr-IuGRMUJHGvDvFx0Cg3DCvbfeQnAAfs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Matthew Field", + "content": "The US Supreme Court has rejected a bid by the developer of video game Fortnite to challenge Apple over its App Store rules.

]]>", + "contentSnippet": "", + "guid": "6d3f7b95-7a82-3260-b2f7-3d4f7a63db61", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T18:07:02.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The 10 best resorts for apr\u00e8s-ski", + "link": "https://www.telegraph.co.uk/travel/ski/articles/Best-ski-resorts-for-apres-ski/", + "pubDate": "Tue, 16 Jan 2024 18:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/folie-douce-apres lead.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "content": "", + "contentSnippet": "", + "guid": "0402151b-a94a-3709-a04c-04db30cf3e75", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/zermatt", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/st-anton", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ischgl", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/french-alps", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T18:00:00.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Tuesday evening news briefing: Fujitsu boss apologises for Horizon scandal", + "link": "https://www.telegraph.co.uk/news/2024/01/16/tuesday-evening-news-briefing-fujitsu-boss-apologises/", + "pubDate": "Tue, 16 Jan 2024 17:37:51 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "00f2b5a8-0805-3270-b36b-a63c6c89c268", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/post-office-scandal", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/civil-service", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T17:37:51.000Z" + }, + { + "creator": "Lilia Sebouai", + "title": "Covid-19 vaccines saved 1.4 million lives across Europe, study finds", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/covid-19-vaccines-saved-million-european-lives-coronavirus/", + "pubDate": "Tue, 16 Jan 2024 17:34:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/16/TELEMMGLPICT000348448117_17054261296500_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lilia Sebouai", + "content": "", + "contentSnippet": "", + "guid": "343dca6b-c7a1-3d56-bf9b-507385018e99", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/coronavirus", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pandemics-epidemics", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vaccines", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T17:34:19.000Z" + }, + { + "creator": "Mini Smith", + "title": "The 11 best protein powders in 2024 to gain muscle and boost fitness, tried and tested", + "link": "https://www.telegraph.co.uk/recommended/leisure/best-protein-powders/", + "pubDate": "Tue, 16 Jan 2024 16:36:39 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/01/31/TELEMMGLPICT000323822868_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mini Smith", + "content": "", + "contentSnippet": "", + "guid": "2b4955f0-8735-39fd-9c12-4a9506ed82e9", + "categories": [ + { + "_": "topics:things/fitness", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/nutrition", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dieting", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/leisure", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T16:36:39.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Russian city declares state of emergency after drone attack", + "link": "https://www.telegraph.co.uk/world-news/2024/01/16/russian-city-declares-state-of-emergency-after-drone-attack/", + "pubDate": "Tue, 16 Jan 2024 16:09:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/16/TELEMMGLPICT000362935374_17054212930440_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "03d7995c-6d7e-3c52-850f-2ec639810e4c", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T16:09:04.000Z" + }, + { + "creator": "James Rothwell", + "title": "Greek ship hit by Houthi rocket as US seizes Iranian missiles headed for Yemen", + "link": "https://www.telegraph.co.uk/world-news/2024/01/16/israel-hamas-war-latest-updates-gaza-yemen-day-102-live/", + "pubDate": "Tue, 16 Jan 2024 16:00:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/16/TELEMMGLPICT000362658207_17054077495510_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "James Rothwell", + "content": "By James Rothwell

]]>", + "contentSnippet": "By James Rothwell\n]]>", + "guid": "820123dd-4aba-3a89-bd74-1ffb1389985d", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T16:00:34.000Z" + }, + { + "creator": "David Knowles", + "title": "Battle Lines: Blow to Beijing as Taiwan chooses candidate Xi fears the most", + "link": "https://www.telegraph.co.uk/world-news/2024/01/16/battle-lines-podcast-taiwan-elections-blow-to-beijing/", + "pubDate": "Tue, 16 Jan 2024 15:57:01 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/16/TELEMMGLPICT000362496406_17054203772010_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf-0Jyi0jPPD6Zx1hiwTPhlc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "e810a736-6e93-3521-8852-38b42ff101d8", + "categories": [ + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/battle-lines", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/taiwan", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/xi-jinping", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T15:57:01.000Z" + }, + { + "creator": "Maeve Cullinan", + "title": "Inside California\u2019s secret sterilisation programme \u2013 and its antivax legacy", + "link": "https://www.telegraph.co.uk/global-health/women-and-girls/california-sterilisation-scandal-compensation-hysterectomy/", + "pubDate": "Tue, 16 Jan 2024 12:13:38 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/16/TELEMMGLPICT000362380144_17054027834680_trans_NvBQzQNjv4BqQ99bcywK3ovn70OLmYu7RgLJs3miTDbR5_wtxIY_ZhE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maeve Cullinan", + "content": "", + "contentSnippet": "", + "guid": "0b279178-6601-3a8b-a7eb-90fceca1726c", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/fertility", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/prisons", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/california", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:women-and-girls", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T12:13:38.000Z" + }, + { + "creator": "Gareth A Davies", + "title": "Anthony Joshua vs Francis Ngannou: When is the fight, how to watch and undercard line-up", + "link": "https://www.telegraph.co.uk/boxing/0/anthony-joshua-vs-francis-ngannou-when-date-tv-undercard/", + "pubDate": "Tue, 16 Jan 2024 12:03:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/boxing/2024/01/15/TELEMMGLPICT000362825810_17053489444230_trans_NvBQzQNjv4BqWc_GXpexIn1kzHCUUNQlnv9PaJXLEMYuNE2t_PPYpUk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Gareth A Davies", + "content": "", + "contentSnippet": "", + "guid": "60459850-a1f0-329c-bccc-24024950bb50", + "categories": [ + { + "_": "topics:people/anthony-joshua", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/saudi-arabia", + "$": { + "domain": "" + } + }, + { + "_": "structure:boxing", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T12:03:35.000Z" + }, + { + "creator": "Alex Robbins", + "title": "The five best used family SUVs to buy in 2024 for less than \u00a35,000 \u2013 and the one to avoid", + "link": "https://www.telegraph.co.uk/cars/advice/best-used-family-cars-suvs-buy-second-hand-uk-2024/", + "pubDate": "Tue, 16 Jan 2024 11:51:38 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cars/2024/01/16/TELEMMGLPICT000001300889_17054050560150_trans_NvBQzQNjv4BqYRJO2PVwCERswigjHg0Yr7ZhnCh_gE_o9cDAPCwIUBI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alex Robbins", + "content": "", + "contentSnippet": "", + "guid": "5510aca9-e663-3918-bcda-18ad09e751dd", + "categories": [ + { + "_": "topics:things/used-cars", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/volkswagen", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/honda", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/nissan", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/hyundai", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dodge", + "$": { + "domain": "" + } + }, + { + "_": "structure:cars/cars-advice", + "$": { + "domain": "" + } + }, + { + "_": "structure:cars", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "editors:alex-robbins", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T11:51:38.000Z" + }, + { + "creator": "Eir Nolsoe", + "title": "Britain\u2019s final coal power plant ramps up power as cold snap hits", + "link": "https://www.telegraph.co.uk/business/2024/01/15/ftse-100-markets-latest-news-house-price-rise-live-updates/", + "pubDate": "Tue, 16 Jan 2024 07:15:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/15/TELEMMGLPICT000362182596_17053461810510_trans_NvBQzQNjv4BqM37qcIWR9CtrqmiMdQVx7FnvyE7jAF_iVIvgxZhCues.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Eir Nolsoe", + "content": "Britain is leaning on its final coal power plant for increased electricity supply as an Arctic blast hits the country.

]]>", + "contentSnippet": "", + "guid": "b0c61bea-523a-3211-8c80-a843b01b536c", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-16T07:15:19.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Israel-Hamas war: Sunak warns Houthis after fresh missile attack", + "link": "https://www.telegraph.co.uk/world-news/2024/01/15/israel-hamas-war-latest-updates-gaza-yemen-day-101-live/", + "pubDate": "Mon, 15 Jan 2024 21:41:12 GMT", + "dc:creator": "Maighna Nanu", + "content": "Rishi Sunak has warned the Houthis of further Western airstrikes, after a missile from the rebel group hit a US-owned ship near Yemen.

]]>", + "contentSnippet": "", + "guid": "6919ec89-6b52-32c8-9e8a-9940da104243", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-15T21:41:12.000Z" + }, + { + "creator": "Narina Exelby", + "title": "The best Bali resorts for a winter sun retreat", + "link": "https://www.telegraph.co.uk/travel/destinations/asia/indonesia/bali/articles/best-bali-resorts/", + "pubDate": "Mon, 15 Jan 2024 20:30:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/2023/october/como-shambala-fountain.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Narina Exelby", + "content": "", + "contentSnippet": "", + "guid": "7ca7e1f8-a3d0-3251-8600-310a0ae24113", + "categories": [ + { + "_": "structure:travel/hotels", + "$": { + "domain": "" + } + }, + { + "_": "structure:hotel-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/bali", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-15T20:30:00.000Z" + }, + { + "creator": "Alex Bolot", + "title": "Monday evening news briefing: Sunak warns Houthis after fresh missile attack", + "link": "https://www.telegraph.co.uk/news/2024/01/15/monday-evening-briefing-sunak-warns-houthis/", + "pubDate": "Mon, 15 Jan 2024 17:31:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alex Bolot", + "content": "", + "contentSnippet": "", + "guid": "60ab4884-c66e-38da-9ed3-d3700074feb7", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/houthis", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-15T17:31:36.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Police failings left girls at mercy of Rochdale grooming gangs, report finds", + "link": "https://www.telegraph.co.uk/news/2024/01/15/police-failings-rochdale-grooming-gangs-girls-child-abuse/", + "pubDate": "Mon, 15 Jan 2024 17:08:27 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/15/TELEMMGLPICT000362749022_17053116237080_trans_NvBQzQNjv4Bqp4nom5PPwQnKhwNgNemGnQNFR5Buk_RKYRxf2eE3H7Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "content": "", + "contentSnippet": "", + "guid": "67ba7b5f-c6be-3535-a2ee-1b9620c07aaa", + "categories": [ + { + "_": "topics:places/rochdale", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/greater-manchester-police", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andy-burnham", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-15T17:08:27.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Ukraine shoots down \u00a3274m Russian spy plane", + "link": "https://www.telegraph.co.uk/world-news/2024/01/15/ukraine-shoots-down-274m-russian-spy-plane/", + "pubDate": "Mon, 15 Jan 2024 16:50:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/15/TELEMMGLPICT000362766740_17053393023430_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "2f58cb54-8d27-3f2c-9ebc-cf39faf687d4", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-15T16:50:59.000Z" + }, + { + "creator": "Simon Briggs", + "title": "Andy Murray concedes Australian Open career could be over after first-round, straight sets defeat", + "link": "https://www.telegraph.co.uk/tennis/2024/01/15/andy-murray-vs-etcheverry-live-score-australian-open-2024/", + "pubDate": "Mon, 15 Jan 2024 16:44:06 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/15/TELEMMGLPICT000362759833_17053211511140_trans_NvBQzQNjv4BqbNf4iwvVsECu0UDXGG9i8RP2LB-kXAeVO_GHOsLnhuU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Briggs", + "content": "Andy Murray gave a strong indication that he has made his final appearance at the Australian Open \u2013 the event where he reached five finals during the 2010s \u2013 after suffering a one-sided loss to Tomas Martin Etcheverry.

]]>", + "contentSnippet": "", + "guid": "1566de5b-d42d-3b42-8f20-136828b6ca16", + "categories": [ + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andy-murray", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-15T16:44:06.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Stick with my plan - it's working, insists Sunak after dire poll results", + "link": "https://www.telegraph.co.uk/politics/2024/01/15/rishi-sunak-latest-news-election-tory-wipeout-shapps-live/", + "pubDate": "Mon, 15 Jan 2024 16:01:10 GMT", + "dc:creator": "Jack Maidment", + "content": "Rishi Sunak has dismissed the significance of a new YouGov survey that suggested the Conservatives could be heading for a 1997-style wipeout, as he argued the only poll that matters \u201cis the one when the general election comes\u201d. 

]]>", + "contentSnippet": "Rishi Sunak has dismissed the significance of a new YouGov survey that suggested the Conservatives could be heading for a 1997-style wipeout, as he argued the only poll that matters \u201cis the one when the general election comes\u201d.\u00a0\n]]>", + "guid": "540bc6b1-8737-3714-98b4-53caae65c407", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/downing-street", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/jeremy-hunt", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-15T16:01:10.000Z" + }, + { + "creator": "Abigail Buchanan", + "title": "The 6 best office chairs in 2024 for remote working in comfort", + "link": "https://www.telegraph.co.uk/education-and-careers/0/best-ergonomic-office-chair/", + "pubDate": "Mon, 15 Jan 2024 12:39:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/education-and-careers/2023/03/30/TELEMMGLPICT000330623506_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Abigail Buchanan", + "content": "", + "contentSnippet": "", + "guid": "efd50a9a-d929-3a38-a153-2deabbdd3b0b", + "categories": [ + { + "_": "topics:things/workplace", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/working-from-home", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/back-pain", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-15T12:39:30.000Z" + }, + { + "creator": "Sarah Newey", + "title": "Inside the clinic hunting for the next pandemic in pets", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/animal-viruses-why-your-pets-could-kill-you/", + "pubDate": "Mon, 15 Jan 2024 11:09:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2024/01/12/TELEMMGLPICT000362371687_17050648771970_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Newey", + "content": "", + "contentSnippet": "", + "guid": "48fe5dec-e269-32b5-8caa-ccb3fe618f6b", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/viruses", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/animals", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pandemics-epidemics", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/thailand", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-15T11:09:19.000Z" + }, + { + "creator": "Nicola Williams", + "title": "50 of the most family-friendly hotels in France", + "link": "https://www.telegraph.co.uk/travel/destinations/europe/france/articles/best-family-hotels-france/", + "pubDate": "Sun, 14 Jan 2024 21:30:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/europe/france/paris/the-peninsula-paris-france-1-p.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Nicola Williams", + "content": "", + "contentSnippet": "", + "guid": "c7ed2562-83a0-32b3-abc4-b06be85d1600", + "categories": [ + { + "_": "structure:travel/family-holidays", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/france", + "$": { + "domain": "" + } + }, + { + "_": "structure:hotel-guides", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-14T21:30:00.000Z" + }, + { + "creator": "Jason Burt", + "title": "Tottenham were better organised and better coached than Man Utd \u2013 and that is a huge worry", + "link": "https://www.telegraph.co.uk/football/2024/01/14/manchester-united-vs-tottenham-hotspur-live-score-updates/", + "pubDate": "Sun, 14 Jan 2024 20:31:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/14/TELEMMGLPICT000362654177_17052546306940_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jason Burt", + "content": "Manchester United\u2019s original motto, taken from the one used by the city, is \u201cConcilio et Labore\u201d (\u201cwisdom and effort\u201d). After attending this draw against Tottenham, Sir Jim Ratcliffe may reflect on another Latin phrase \u2013 \u201cCaveat emptor\u201d or \u201cLet the buyer beware\u201d.

]]>", + "contentSnippet": "Tottenham, Sir Jim Ratcliffe may reflect on another Latin phrase \u2013 \u201cCaveat emptor\u201d or \u201cLet the buyer beware\u201d.\n]]>", + "guid": "862ca73f-e046-3dfa-b252-deee1b02fa2b", + "categories": [ + { + "_": "topics:organisations/manchester-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/tottenham-hotspur-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/premier-league-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-14T20:31:24.000Z" + }, + { + "creator": "Chris Bascombe", + "title": "VAR takes centre stage in Aston Villa draw at Everton as Watkins and Calvert-Lewin fire blanks", + "link": "https://www.telegraph.co.uk/football/2024/01/14/everton-vs-aston-villa-live-score-updates-premier-league/", + "pubDate": "Sun, 14 Jan 2024 18:18:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/14/TELEMMGLPICT000362636863_17052506736450_trans_NvBQzQNjv4BqimEc2V6hvkJ2ji11lCPJYZrNiboJHYgluerDsNA7mAw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Bascombe", + "content": "Sean Dyche has worked wonders to ensure Dominic Calvert-Lewin is playing regular football again. His next task is to get the striker\u2019s goal radar fully operational.

]]>", + "contentSnippet": "", + "guid": "2d648cc0-b8f8-35cb-8082-d988007077fa", + "categories": [ + { + "_": "topics:organisations/everton-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/aston-villa-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/premier-league-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-14T18:18:18.000Z" + }, + { + "creator": "Harriet Barber", + "title": "UK and US deny hitting Yemen with fresh airstrikes", + "link": "https://www.telegraph.co.uk/world-news/2024/01/14/israel-hamas-war-latest-news1/", + "pubDate": "Sun, 14 Jan 2024 18:07:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/14/TELEMMGLPICT000362615295_17052374215820_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Harriet Barber", + "content": "The US and UK have denied carrying out fresh airstrikes on rebel-held parts of Western Yemen after Houthi officials claimed the port city of Hodeida had been hit. 

]]>", + "contentSnippet": "", + "guid": "e195eb8d-1a38-3a5b-b18d-a5cf7938ee63", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/yemen", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-14T18:07:10.000Z" + }, + { + "creator": "Uche Amako", + "title": "Australian Open: Novak Djokovic survives longest first-round match of his grand slam career", + "link": "https://www.telegraph.co.uk/tennis/2024/01/14/novak-djokovic-vs-dino-prizmic-live-updates-australian-open/", + "pubDate": "Sun, 14 Jan 2024 12:45:47 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2024/01/14/TELEMMGLPICT000362610999_17052330695230_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Uche Amako", + "content": "Novak Djokovic was given a scare by Croatian teenager Dino Prizmic in the longest first-round match of his grand slam career.

]]>", + "contentSnippet": "", + "guid": "3255104f-b96f-34e8-8000-76f1f0ce45a1", + "categories": [ + { + "_": "topics:people/novak-djokovic", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/australian-open", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-14T12:45:47.000Z" + }, + { + "creator": "Diana Henry", + "title": "Pumpkin and bean soup with parsley pesto bread recipe", + "link": "https://www.telegraph.co.uk/recipes/0/pumpkin-and-bean-soup-with-parsley-pesto-bread-recipe/", + "pubDate": "Sun, 14 Jan 2024 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/08/TELEMMGLPICT000361988013_17047285586180_trans_NvBQzQNjv4BqFm5YzcYky3uVL0BsQWkP3dkM9MM8VM3G1BxlGUO4L8Q.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "a6b983a4-167d-329b-ba84-49110af31c8c", + "categories": [ + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pumpkin-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/bean-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/soup-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/bread-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-magazine", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-14T09:00:00.000Z" + }, + { + "creator": "Diana Henry", + "title": "Lamb shank pie with pickled red cabbage recipe", + "link": "https://www.telegraph.co.uk/recipes/0/lamb-shank-pie-with-pickled-red-cabbage-recipe/", + "pubDate": "Sun, 14 Jan 2024 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/08/TELEMMGLPICT000361986177_17047276478640_trans_NvBQzQNjv4BqdQ8YrSsR88w3pzEpBtW9VkikPYR0xYwuEBLwP9UFqPg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "6a41b447-e316-3092-a54e-4e93b4be2bad", + "categories": [ + { + "_": "topics:things/lamb-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cabbage-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-magazine", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-14T09:00:00.000Z" + }, + { + "creator": "Diana Henry", + "title": "Sticky toffee pudding cake recipe", + "link": "https://www.telegraph.co.uk/recipes/0/sticky-toffee-pudding-cake-recipe/", + "pubDate": "Sun, 14 Jan 2024 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/08/TELEMMGLPICT000361991618_17047299032920_trans_NvBQzQNjv4Bq7t4Eljyiy6iRMFuEKY2dXA1vLvhkMtVb21dMmpQBfEs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Diana Henry", + "content": "", + "contentSnippet": "", + "guid": "a87d085c-89b2-3e25-ab8c-e94d293340da", + "categories": [ + { + "_": "topics:things/cake-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dessert-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-magazine", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:diana-henry", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-14T09:00:00.000Z" + }, + { + "creator": "Lauren Almeida", + "title": "The best pensions for 2024", + "link": "https://www.telegraph.co.uk/money/pensions/best-private-pension-schemes-providers/", + "pubDate": "Sun, 14 Jan 2024 05:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/money/2023/09/08/TELEMMGLPICT000348488775_16941858835840_trans_NvBQzQNjv4BqJp4oNrwLK4YrGS-S5oWeIIEl2prv7DQYjmy_kHYUKRA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lauren Almeida", + "content": "", + "contentSnippet": "", + "guid": "3922c038-f30a-31c2-915e-e732007ce631", + "categories": [ + { + "_": "topics:things/state-pension", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/private-pensions", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/financial-planning-for-retirement", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/retirement", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/tax-in-retirement", + "$": { + "domain": "" + } + }, + { + "_": "structure:money/pensions", + "$": { + "domain": "" + } + }, + { + "_": "structure:money", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-superguide", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:better-life/better-life-evergreen", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-14T05:00:00.000Z" + }, + { + "creator": "Luke Edwards", + "title": "Kevin De Bruyne is Man City\u2019s hero at Newcastle \u2013 and shows why they are title favourites", + "link": "https://www.telegraph.co.uk/football/2024/01/13/newcastle-vs-man-city-live-score-updates-premier-league/", + "pubDate": "Sat, 13 Jan 2024 21:54:49 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/13/TELEMMGLPICT000362508192_17051732643900_trans_NvBQzQNjv4BqNr7buqbkV04AEATLFYLNjAsIcagKWDTsYii0WZbrxoU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Luke Edwards", + "content": "Kevin De Bruyne has got a new look, an injury lay off fashion makeover, but some things never change: his ability to rescue Manchester City when they need a hero.

]]>", + "contentSnippet": "", + "guid": "4bcdb5ed-8ffc-3457-a809-871c2bc26c0d", + "categories": [ + { + "_": "topics:organisations/newcastle-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/manchester-city-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/premier-league-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-13T21:54:49.000Z" + }, + { + "creator": "Gary Fitzgerald", + "title": "Pat Lam laments front row absentees as Bristol get brutal lesson from Bulls", + "link": "https://www.telegraph.co.uk/rugby-union/2024/01/13/bristol-bears-v-bulls-live-scores-updates-champions-cup/", + "pubDate": "Sat, 13 Jan 2024 18:36:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2024/01/13/TELEMMGLPICT000362493409_17051721247040_trans_NvBQzQNjv4BqnY32puTRmJBD0IQz1kt_ZZgojZYlP8f0i9h2tPqCNsM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Gary Fitzgerald", + "content": "By Gary Fitzgerald, at Ashton Gate 

]]>", + "contentSnippet": "By Gary Fitzgerald, at Ashton Gate\u00a0\n]]>", + "guid": "ba57a468-5fc8-3955-9324-cb99ee32a040", + "categories": [ + { + "_": "topics:organisations/bristol-rugby", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/european-rugby-champions-cup", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-13T18:36:12.000Z" + }, + { + "creator": "Sam Wallace", + "title": "Raheem Sterling's penalty record, VAR angst and a movie stunt: Just another normal day at Chelsea", + "link": "https://www.telegraph.co.uk/football/2024/01/13/chelsea-vs-fulham-live-score-updates-premier-league/", + "pubDate": "Sat, 13 Jan 2024 17:27:29 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2024/01/13/TELEMMGLPICT000362469263_17051651310090_trans_NvBQzQNjv4BqX4nCz5BFCeS9VxlVLBdClGjhtXSOE0qmL0_T5Vv0axo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Wallace", + "content": "No player in the Premier League era has won more penalties than Raheem Sterling and although he no longer takes them for Chelsea, the 26th earned over the course of his career was just as vital to the Mauricio Pochettino era.

]]>", + "contentSnippet": "", + "guid": "b0621f39-2867-3320-a94b-e0a04e5c71e4", + "categories": [ + { + "_": "topics:organisations/chelsea-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/fulham-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/premier-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/premier-league-live", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-13T17:27:29.000Z" + }, + { + "creator": "Daniel Hardaker", + "title": "UK and US airstrikes will not stop Red Sea attacks, Houthis say", + "link": "https://www.telegraph.co.uk/world-news/2024/01/13/israel-hamas-war-latest-updates-gaza-palestine-day-99-live/", + "pubDate": "Sat, 13 Jan 2024 17:01:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/13/TELEMMGLPICT000362443866_17051397557720_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Daniel Hardaker", + "content": "US and UK strikes on Yemen have had no significant impact on the Houthis\u2019 ability to attack vessels passing through the Red Sea, the rebels have claimed.

]]>", + "contentSnippet": "", + "guid": "6883008f-58f1-3a31-a356-602405e154bc", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/red-sea", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/houthis", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-13T17:01:55.000Z" + }, + { + "creator": "Mark Hix", + "title": "Thai hanger steak salad recipe", + "link": "https://www.telegraph.co.uk/recipes/0/thai-hanger-steak-salad-recipe/", + "pubDate": "Sat, 13 Jan 2024 07:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/08/TELEMMGLPICT000361997799_17047334518230_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mark Hix", + "content": "", + "contentSnippet": "", + "guid": "0fd89d8f-3878-3638-adb5-4076c71ecc98", + "categories": [ + { + "_": "topics:things/beef-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/steak-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/salad-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:mark-hix", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-13T07:00:00.000Z" + }, + { + "creator": "Mark Hix", + "title": "Beef flank, ale and oyster pies recipe", + "link": "https://www.telegraph.co.uk/recipes/0/beef-flank-ale-and-oyster-pies-recipe/", + "pubDate": "Sat, 13 Jan 2024 07:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/11/TELEMMGLPICT000362273755_17049887717170_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8Rf4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mark Hix", + "content": "", + "contentSnippet": "", + "guid": "57d3a5b1-df2a-319e-b5ef-c0a915ec4d1f", + "categories": [ + { + "_": "topics:things/beef-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pie-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/oysters", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-magazine", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:mark-hix", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-13T07:00:00.000Z" + }, + { + "creator": "Mark Hix", + "title": "Polenta on the table with beef ragu recipe", + "link": "https://www.telegraph.co.uk/recipes/0/polenta-on-the-table-with-beef-ragu-recipe/", + "pubDate": "Sat, 13 Jan 2024 07:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/12/TELEMMGLPICT000362386268_17050734231410_trans_NvBQzQNjv4BqofaNcI6PJQ5Uax8G0cYOhyt3CxY9CEAdbLTbCjZ8SJc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mark Hix", + "content": "", + "contentSnippet": "", + "guid": "7a598034-b279-34be-aaf3-283329bd9132", + "categories": [ + { + "_": "topics:things/beef-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/italian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-party-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:mark-hix", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-13T07:00:00.000Z" + }, + { + "creator": "Mark Hix", + "title": "Ox cheek hotpot with ginger recipe", + "link": "https://www.telegraph.co.uk/recipes/0/ox-cheek-hotpot-with-ginger-recipe/", + "pubDate": "Sat, 13 Jan 2024 07:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2024/01/11/TELEMMGLPICT000362278492_17049894253700_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Mark Hix", + "content": "", + "contentSnippet": "", + "guid": "aaea4d4d-71f4-3e4e-a5c6-fd3e616a3498", + "categories": [ + { + "_": "topics:things/beef-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/dinner-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-magazine", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "editors:mark-hix", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-13T07:00:00.000Z" + }, + { + "creator": "Robert Jenrick", + "title": "Adopt my amendments to Rwanda Bill or face an illegal migration catastrophe", + "link": "https://www.telegraph.co.uk/news/2024/01/12/jenrick-migration-bill-rwanda-illegal-migration-catastrophe/", + "pubDate": "Fri, 12 Jan 2024 20:07:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2024/01/12/TELEMMGLPICT000357647220_17050863656530_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Robert Jenrick", + "content": "", + "contentSnippet": "", + "guid": "c3124f29-2f1b-3337-92b8-eea6501eb520", + "categories": [ + { + "_": "topics:things/immigration", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/migration", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/migrant-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/migrants", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/robert-jenrick", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:opinion", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:comment", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-12T20:07:36.000Z" + }, + { + "creator": "Benedict Smith", + "title": "Abandoning Ukraine will embolden Iran, Sunak warns", + "link": "https://www.telegraph.co.uk/world-news/2024/01/12/ukraine-russia-war-news-live-sunak-visit-kyiv-military-aid/", + "pubDate": "Fri, 12 Jan 2024 18:52:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/12/TELEMMGLPICT000362354836_17050951091150_trans_NvBQzQNjv4Bq9aNTvXzstCq-uTFvGElDImVy0nsVrxikmV0usH_KLRk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Benedict Smith", + "content": "Abandoning Ukraine will only embolden Vladimir Putin\u2019s allies such as Iran and North Korea, Rishi Sunak warned on Friday.

]]>", + "contentSnippet": "", + "guid": "fb6e7e6a-7fa7-3d01-bfce-4a0fdb1f7c4c", + "categories": [ + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-12T18:52:40.000Z" + }, + { + "creator": "Michael Bow", + "title": "Citi to cut 20,000 jobs", + "link": "https://www.telegraph.co.uk/business/2024/01/12/ftse-100-market-news-live-economic-growth-boost-gdp-latest/", + "pubDate": "Fri, 12 Jan 2024 18:18:03 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2024/01/12/TELEMMGLPICT000283918522_17050671685860_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Michael Bow", + "content": "Citigroup is to cut 20,000 jobs after the Wall Street bank suffered its worst quarterly loss since the financial crisis. 

]]>", + "contentSnippet": "", + "guid": "417183f3-1c92-33a8-a9f9-116c2447189b", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-12T18:18:03.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Friday evening news briefing: British air strikes send message to Iran, says Cameron", + "link": "https://www.telegraph.co.uk/news/2024/01/12/friday-evening-news-briefing-british-strikes-iran-cameron/", + "pubDate": "Fri, 12 Jan 2024 17:41:55 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "content": "", + "contentSnippet": "", + "guid": "902ab454-8865-3400-80ed-7ba15143c3d0", + "categories": [ + { + "_": "topics:organisations/houthis", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/david-cameron", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/yemen", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-12T17:41:55.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - 'We're not going anywhere', Sunak tells Putin", + "link": "https://www.telegraph.co.uk/world-news/2024/01/12/were-not-going-anywhere-sunak-tells-putin/", + "pubDate": "Fri, 12 Jan 2024 16:41:13 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2024/01/12/TELEMMGLPICT000362381878_17050701578950_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "content": "", + "contentSnippet": "", + "guid": "38584542-7db6-3cd3-b97e-e261bf8b98e4", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-12T16:41:13.000Z" + }, + { + "creator": "Jamie Bullen", + "title": "Paula Vennells claimed Horizon wasn't discussed on WhatsApp, Post Office inquiry hears", + "link": "https://www.telegraph.co.uk/news/2024/01/12/horizon-post-office-scandal-fraud-investigation-latest/", + "pubDate": "Fri, 12 Jan 2024 16:08:23 GMT", + "dc:creator": "Jamie Bullen", + "content": "Paula Vennells and fellow Post Office executives did not provide WhatsApps to the public inquiry into the Horizon scandal after telling lawyers the faulty software was not discussed, it has emerged.

]]>", + "contentSnippet": "Vennells and fellow Post Office executives did not provide WhatsApps to the public inquiry into the Horizon scandal after telling lawyers the faulty software was not discussed, it has emerged.\n]]>", + "guid": "5299a070-ee4c-3fd0-ab28-8fa7f6e016db", + "categories": [ + { + "_": "topics:places/post-office", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/post-office-scandal", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-12T16:08:23.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Scottish Labour leader joins calls for Israel-Gaza ceasefire as pressure builds on Starmer", + "link": "https://www.telegraph.co.uk/politics/2023/10/27/rishi-sunak-latest-news-poll-iain-duncan-smith-china-ai/", + "pubDate": "Fri, 27 Oct 2023 12:38:21 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/27/TELEMMGLPICT000352603762_16984099252770_trans_NvBQzQNjv4BqnoUwCwXVn4LwErZ6GGyzhoX55UGE1-QmdhXTcMmlCx4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "guid": "01c948e4-1a23-3bfd-8b80-0f0f758d9067", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T12:38:21.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "What\u2019s on TV tonight: The Enfield Poltergeist, Ghosts and more", + "link": "https://www.telegraph.co.uk/tv/0/tv-guide-tv-television-tonight/", + "pubDate": "Fri, 27 Oct 2023 12:27:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tv/2023/10/20/TELEMMGLPICT000352981343_16978075187530_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "guid": "06b4bdb8-de13-3e88-8461-2ed233991f17", + "categories": [ + { + "_": "topics:organisations/itv", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/channel-4", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bbc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/sky", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/netflix", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/amazon-prime-video", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture/culture-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:on-demand", + "$": { + "domain": "" + } + }, + { + "_": "structure:television/television-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:television", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T12:27:04.000Z" + }, + { + "creator": "David Knowles", + "title": "Battle Lines: Unedited footage of Hamas atrocities, on the ground in the West Bank, and China's wave of anti-semitism", + "link": "https://www.telegraph.co.uk/world-news/2023/10/27/battle-lines-israel-gaza-west-bank-hamas-footage/", + "pubDate": "Fri, 27 Oct 2023 12:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354191820_16984029276710_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "guid": "21e8322c-e5e4-34f5-8cc4-f2bd618e1279", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/battle-lines", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T12:00:00.000Z" + }, + { + "creator": "Rebecca Astill", + "title": "35 best Christmas gifts for her in 2023, from The White Company, John Lewis and more", + "link": "https://www.telegraph.co.uk/women/life/best-gifts-present-ideas-birthday-women/", + "pubDate": "Fri, 27 Oct 2023 11:56:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/women/2023/10/25/TELEMMGLPICT000354236157_16982232242390_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rebecca Astill", + "guid": "6b6e7d03-fef4-3025-b126-22bc85ff6070", + "categories": [ + { + "_": "topics:things/perfume", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/affordable-jewellery", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:women/life", + "$": { + "domain": "" + } + }, + { + "_": "structure:women", + "$": { + "domain": "" + } + }, + { + "_": "structure:lifestyle", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T11:56:57.000Z" + }, + { + "creator": "Verity Bowman", + "title": "Israel-Gaza latest news: IDF deploys fighter jets and drones to strike 'terror targets' in Gaza", + "link": "https://www.telegraph.co.uk/world-news/2023/10/27/israel-gaza-latest-news-updates-hamas-palestine-day-21-live/", + "pubDate": "Fri, 27 Oct 2023 11:49:39 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354568217_16984073612890_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Verity Bowman", + "guid": "364bf701-6290-3e2b-bf3e-44b7724b7fbb", + "categories": [ + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hamas", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T11:49:39.000Z" + }, + { + "creator": "James Warrington", + "title": "Russia hikes interest rates to 15pc in fight against inflation - latest updates", + "link": "https://www.telegraph.co.uk/business/2023/10/27/ftse-100-markets-news-live-property-landlords-renting/", + "pubDate": "Fri, 27 Oct 2023 11:07:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/10/27/TELEMMGLPICT000354542957_16984048163850_trans_NvBQzQNjv4BqS8LvVGaCov9_zEWH2d7j7YO2JF_w593QGlWaWVZxraI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "James Warrington", + "guid": "4dd01fa4-c00b-3796-9e9e-f65d405cfb38", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T11:07:50.000Z" + }, + { + "creator": "Jessica Salter", + "title": "The 25 best Christmas crackers of 2023, from luxury crackers to traditional choices", + "link": "https://www.telegraph.co.uk/christmas/best-christmas-crackers/", + "pubDate": "Fri, 27 Oct 2023 10:22:08 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/27/TELEMMGLPICT000354563213_16983977417550_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jessica Salter", + "guid": "cdb2f9db-4f45-39d7-9eb7-e5ef72e032e5", + "categories": [ + { + "_": "topics:things/christmas-crackers", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-dinner", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:christmas-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T10:22:08.000Z" + }, + { + "creator": "Chas Newkey-Burden", + "title": "The best fire pits of 2023 for cold nights, tried and tested", + "link": "https://www.telegraph.co.uk/gardening/tools-and-accessories/best-fire-pit/", + "pubDate": "Fri, 27 Oct 2023 09:36:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2023/07/04/TELEMMGLPICT000341495045_16884738404200_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chas Newkey-Burden", + "guid": "4275f006-634d-3dc7-9aed-9adfb6af594d", + "categories": [ + { + "_": "topics:things/gardens", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/barbecue", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-tools", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/garden-furniture", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/gardening-accessories", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T09:36:59.000Z" + }, + { + "creator": "Claire Thomson", + "title": "Liquorice, beetroot and chocolate cake recipe", + "link": "https://www.telegraph.co.uk/recipes/0/liquorice-beetroot-and-chocolate-cake-recipe/", + "pubDate": "Fri, 27 Oct 2023 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/10/23/TELEMMGLPICT000354130658_16980652242430_trans_NvBQzQNjv4BqNDldSA4PgKIB5KTAa-dc6WQnZJIETfWB_fUbKb77n0w.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Claire Thomson", + "guid": "d5cfa46c-e8be-3c00-a425-83cb4adbef34", + "categories": [ + { + "_": "topics:things/chocolate-cake-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/chocolate-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/halloween-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/beetroot-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/party-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/cake-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T09:00:00.000Z" + }, + { + "creator": "Claire Thomson", + "title": "Black bean burgers with quick ketchup and gherkin \u2018fingers\u2019 recipe", + "link": "https://www.telegraph.co.uk/recipes/0/black-bean-burgers-with-quick-ketchup-and-gherkin-fingers/", + "pubDate": "Fri, 27 Oct 2023 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/10/23/TELEMMGLPICT000354130668_16980607022270_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Claire Thomson", + "guid": "0a95041d-6a75-3648-8845-01ae8f03fa09", + "categories": [ + { + "_": "topics:things/burger-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/vegetarian-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/halloween-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T09:00:00.000Z" + }, + { + "creator": "Claire Thomson", + "title": "Cherry cocktails with lychee \u2018eyeball\u2019 skewers recipe", + "link": "https://www.telegraph.co.uk/recipes/0/cherry-cocktails-with-lychee-eyeball-skewers-recipe/", + "pubDate": "Fri, 27 Oct 2023 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recipes/2023/10/27/TELEMMGLPICT000354564333_16983986772020_trans_NvBQzQNjv4Bqq6GZV2TOCTHAqKdXYOVHJGQnZJIETfWB_fUbKb77n0w.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Claire Thomson", + "guid": "9632801b-0a0f-3874-a2a2-cf3a87fbd32f", + "categories": [ + { + "_": "topics:events/halloween", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/non-alcoholic-cocktail-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/party-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/halloween-recipes", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/drinks-recipes", + "$": { + "domain": "" + } + }, + { + "_": "structure:cookbook", + "$": { + "domain": "" + } + }, + { + "_": "storytype:recipe", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T09:00:00.000Z" + }, + { + "creator": "Gareth A Davies", + "title": "Tyson Fury vs Francis Ngannou: When is the fight, how to watch on TV and undercard line-up", + "link": "https://www.telegraph.co.uk/boxing/2023/10/27/tyson-fury-vs-francis-ngannou-when-date-tv-undercard/", + "pubDate": "Fri, 27 Oct 2023 08:50:23 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/boxing/2023/10/26/TELEMMGLPICT000354383069_16983312300700_trans_NvBQzQNjv4BqhpL9wIsx6QnAoaHzcNRkTtpo_ECDpFELYnB1SrAlgVo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Gareth A Davies", + "guid": "94aa34ad-3aab-3925-a10f-357c51d8b1b7", + "categories": [ + { + "_": "topics:people/tyson-fury", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/ufc", + "$": { + "domain": "" + } + }, + { + "_": "structure:boxing", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T08:50:23.000Z" + }, + { + "creator": "Telegraph Sport", + "title": "England v Argentina: When is the 2023 Rugby World Cup third-place play-off?", + "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/argentina-v-england-rugby-world-cup-2023-third-place-when/", + "pubDate": "Fri, 27 Oct 2023 08:40:58 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/25/TELEMMGLPICT000352998515_16982402978740_trans_NvBQzQNjv4Bqeplg35TCJilGYsiqO1Zg5zXaG_3FkRG2WH2SGzlVXbs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Sport", + "guid": "525e7bec-d054-3ce2-9a1e-1a46d14f6728", + "categories": [ + { + "_": "topics:events/rwc-france-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/argentina-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T08:40:58.000Z" + }, + { + "creator": "Tom Ward", + "title": "New Zealand v South Africa: When is the 2023 Rugby World Cup final and how to watch", + "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/new-zealand-v-south-africa-rugby-world-cup-2023-final-when/", + "pubDate": "Fri, 27 Oct 2023 08:39:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/24/TELEMMGLPICT000258203767_16981533093800_trans_NvBQzQNjv4BqpvhYCxZ1zyEMRa-WSVMKo-yoE_6FjezOloCMpdPDZFE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tom Ward", + "guid": "bc765393-a033-3348-be7f-7384b8fe45c3", + "categories": [ + { + "_": "topics:events/rwc-france-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/new-zealand-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/south-africa-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T08:39:35.000Z" + }, + { + "creator": "Charlie Morgan", + "title": "South Africa\u2019s World Cup 2023 fixtures and how to watch on TV", + "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/south-africa-world-cup-2023-fixtures-and-how-to-watch-on-tv/", + "pubDate": "Fri, 27 Oct 2023 08:37:31 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/24/TELEMMGLPICT000354143443_16981540410200_trans_NvBQzQNjv4BqDo1PhbPPiB1HBZscUHLBE15NUcTKNHKqy85KLqtvPLE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charlie Morgan", + "guid": "cccf1425-3ac9-3678-bc77-64ea140091db", + "categories": [ + { + "_": "topics:organisations/south-africa-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/rwc-france-2023", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T08:37:31.000Z" + }, + { + "creator": "Josh Burrows", + "title": "Cricket World Cup 2023: Dates, schedule, fixtures and latest odds for the ODI tournament", + "link": "https://www.telegraph.co.uk/cricket/0/cricket-world-cup-2023-dates-schedule-fixtures-latest-odds-odi/", + "pubDate": "Fri, 27 Oct 2023 08:35:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/10/26/TELEMMGLPICT000354472967_16983562538300_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Josh Burrows", + "guid": "e7862d4f-ef0a-3d7e-a08c-8e6a51d7fa59", + "categories": [ + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/india-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/australia-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/pakistan-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/cricket-world-cup", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T08:35:35.000Z" + }, + { + "creator": "Will Macpherson", + "title": "Men's Cricket World Cup 2023 fantasy game: the cheat sheet you need", + "link": "https://www.telegraph.co.uk/cricket/2023/10/27/mens-cricket-world-cup-fantasy-2023-the-cheat-sheet-tips/", + "pubDate": "Fri, 27 Oct 2023 08:35:26 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/10/03/TELEMMGLPICT000351309152_16963473459000_trans_NvBQzQNjv4BqD3d2dmOlWYuQkR76XZjLQP4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Will Macpherson", + "guid": "86bf3624-5693-3065-a5ba-eada6db74a5c", + "categories": [ + { + "_": "topics:events/cricket-world-cup", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T08:35:26.000Z" + }, + { + "creator": "Charlie Morgan", + "title": "Rugby has a fantasy World Cup game \u2013 here is the cheat sheet you need", + "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/rugby-world-cup-fantasy-2023-cheat-sheet-tips/", + "pubDate": "Fri, 27 Oct 2023 08:34:56 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/18/TELEMMGLPICT000353432012_16976199809460_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charlie Morgan", + "guid": "3ebc7e47-3582-3cb6-bc60-aa1b88c78f51", + "categories": [ + { + "_": "topics:events/rwc-france-2023", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T08:34:56.000Z" + }, + { + "creator": "Daniel Schofield", + "title": "Rugby World Cup 2023: Final and bronze final fixture, full schedule and TV guide", + "link": "https://www.telegraph.co.uk/rugby-union/2023/10/27/rugby-world-cup-2023-dates-schedule-how-watch-tv-odds/", + "pubDate": "Fri, 27 Oct 2023 08:34:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/21/TELEMMGLPICT000353767407_16979242831060_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Daniel Schofield", + "guid": "1be713af-a9ca-39fe-b554-44f542bf8af3", + "categories": [ + { + "_": "topics:events/rwc-france-2023", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/wales-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/scotland-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/irfu", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/rfu", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T08:34:46.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Russia \u2018executing disobedient soldiers\u2019, says White House", + "link": "https://www.telegraph.co.uk/world-news/2023/10/27/ukraine-russia-war-live-kupiansk-putin-zelensky-latest/", + "pubDate": "Fri, 27 Oct 2023 08:09:58 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354498467_16983941059240_trans_NvBQzQNjv4Bqn7tMRpXaL8LZxuDeTaFS4V5NUcTKNHKqy85KLqtvPLE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "guid": "9d94c166-80e7-3c06-8f1d-8178ac5d7ea5", + "categories": [ + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T08:09:58.000Z" + }, + { + "creator": "Josh White", + "title": "Watch: Dutch far-Right leader attacked with umbrella", + "link": "https://www.telegraph.co.uk/world-news/2023/10/26/thierry-baudet-dutch-far-right-leader-hit-umbrella-ghent/", + "pubDate": "Fri, 27 Oct 2023 07:39:50 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354522398_16983923467820_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Josh White", + "guid": "5aa198eb-4b44-3ecb-96c5-80fc684c7735", + "categories": [ + { + "_": "topics:places/netherlands", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/europe", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/belgium", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T07:39:50.000Z" + }, + { + "creator": "Daniel Hardaker", + "title": "Belarus: Putin\u2019s \u2018closest ally\u2019 explained | Defence in Depth", + "link": "https://www.telegraph.co.uk/world-news/2023/10/27/belarus-putin-lukashenko-closest-ally-ukraine-explained-war/", + "pubDate": "Fri, 27 Oct 2023 07:00:00 GMT", + "dc:creator": "Daniel Hardaker", + "guid": "ee08ec07-02de-3bcc-afcc-d23144c2a5bb", + "categories": [ + { + "_": "topics:places/belarus", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/lukashenko", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/russion-invasion", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/explained-ukraine-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/defence-in-depth", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T07:00:00.000Z" + }, + { + "creator": "Lilia Sebouai", + "title": "\u2018There is no safe place\u2019: Newborns share incubators as supplies run low at Gaza\u2019s swamped hospitals", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/gaza-hospitals-overcrowding-disease-israel-hamas-war/", + "pubDate": "Fri, 27 Oct 2023 06:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/26/TELEMMGLPICT000354161165_16983400281730_trans_NvBQzQNjv4BqFmdtdovgxskirSSG45rbt_4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lilia Sebouai", + "guid": "c05f4251-6018-393b-b024-15db9afd0885", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hamas", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Conflict", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T06:00:00.000Z" + }, + { + "creator": "Andrea Hamblin", + "title": "US strikes Iran-linked sites in Syria in retaliation for attacks on American troops", + "link": "https://www.telegraph.co.uk/world-news/2023/10/27/us-defence-strikes-iran-linked-sites-syria-retaliation/", + "pubDate": "Fri, 27 Oct 2023 03:00:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000351778870_16983765974480_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Andrea Hamblin", + "guid": "9d634fb6-4651-3ae3-ba34-edd8a4c90766", + "categories": [ + { + "_": "topics:places/syria", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/iran", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/joe-biden", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/the-pentagon", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T03:00:40.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "Li Keqiang, former Chinese premier, dies aged 68", + "link": "https://www.telegraph.co.uk/world-news/2023/10/27/li-keqiang-china-death-age-xi-jinping-latest-news/", + "pubDate": "Fri, 27 Oct 2023 00:34:21 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354537446_16983662060390_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "guid": "71c30fda-81f2-32e3-9dfa-1fc057f789f9", + "categories": [ + { + "_": "topics:places/china", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/chinese-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/xi-jinping", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/asia", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T00:34:21.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Maine shooting suspect still at large as officials admit \u2018we don\u2019t know his location\u2019", + "link": "https://www.telegraph.co.uk/us/news/2023/10/26/maine-mass-shootings-latest-news-multiple-dead-injured/", + "pubDate": "Thu, 26 Oct 2023 23:03:34 GMT", + "dc:creator": "Maighna Nanu", + "guid": "656d0b21-c72f-3726-aa37-11511f22180e", + "categories": [ + { + "_": "topics:things/guns-in-the-usa", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/maine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/joe-biden", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T23:03:34.000Z" + }, + { + "creator": "Alex Barton", + "title": "Israel says Gaza offensive will happen 'when conditions are right", + "link": "https://www.telegraph.co.uk/world-news/2023/10/26/israel-gaza-latest-news-updates-hamas-palestine-day-20-live/", + "pubDate": "Thu, 26 Oct 2023 22:02:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/26/TELEMMGLPICT000354454705_16983240459380_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alex Barton", + "guid": "a6f04f64-0e6f-3e22-8980-f34652156955", + "categories": [ + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hamas", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T22:02:40.000Z" + }, + { + "creator": "Chris Bascombe", + "title": "Ryan Gravenberch's classy contributions make Darwin Nunez's miss academic for Liverpool", + "link": "https://www.telegraph.co.uk/football/2023/10/26/liverpool-vs-toulouse-live-score-europa-league-updates/", + "pubDate": "Thu, 26 Oct 2023 21:43:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/26/TELEMMGLPICT000354518928_16983526736380_trans_NvBQzQNjv4BqPNWwDyPbFwP-inmmdjUPH8RERdCilWm4TK0cx62pGGA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Chris Bascombe", + "guid": "4f07c07d-51e4-38c7-8b91-a206a25cd96d", + "categories": [ + { + "_": "topics:organisations/liverpool-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/toulouse-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/europa-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T21:43:59.000Z" + }, + { + "creator": "Tim Wigmore", + "title": "England battling to avoid wooden spoon with World Cup defence all but over", + "link": "https://www.telegraph.co.uk/cricket/2023/10/26/england-vs-sri-lanka-cricket-world-cup-live-score-latest/", + "pubDate": "Thu, 26 Oct 2023 19:43:22 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/cricket/2023/10/26/TELEMMGLPICT000354472435_16983288796420_trans_NvBQzQNjv4BqNCia7BkDsl5uc5DkbIK1rXAYqToWwsEdDfRGUIggV2U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Wigmore", + "guid": "79aff79f-2381-3d19-a7bd-d5d1ce61c486", + "categories": [ + { + "_": "topics:organisations/england-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/sri-lanka-cricket-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/cricket-world-cup", + "$": { + "domain": "" + } + }, + { + "_": "structure:cricket", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T19:43:22.000Z" + }, + { + "creator": "Daniel Zeqiri", + "title": "West Ham's 17-game unbeaten European run ends with limp defeat at Olympiacos", + "link": "https://www.telegraph.co.uk/football/2023/10/26/olympiacos-vs-west-ham-live-score-europa-league-updates/", + "pubDate": "Thu, 26 Oct 2023 19:06:24 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/26/TELEMMGLPICT000354493117_16983412323170_trans_NvBQzQNjv4BqQgMjXxrLtZ-jB6DDRs5yt6m7WIFPD0eU3LfOcxNlODs.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Daniel Zeqiri", + "guid": "d1801859-3d0d-3810-84d3-06a0c377d281", + "categories": [ + { + "_": "topics:organisations/west-ham-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/europa-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/olympiakos-fc", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T19:06:24.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "TikTok prankster Mizzy banned from posting on social media", + "link": "https://www.telegraph.co.uk/news/2023/10/26/mizzy-tiktok-prankster-arrested-perverting-course-justice/", + "pubDate": "Thu, 26 Oct 2023 18:36:16 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/26/TELEMMGLPICT000354454931_16983181542540_trans_NvBQzQNjv4BqxTgV-VEbjByvRp9E0Pb-y1fJF0EM4dK0APHdPHIua_0.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "guid": "2fcff07a-b0f0-3e6a-b4fb-f9c60319c51b", + "categories": [ + { + "_": "topics:organisations/tiktok", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T18:36:16.000Z" + }, + { + "creator": "Catherine Lough", + "title": "Ex-teacher turned model, 60, harassed neighbour after being evicted from beach hut", + "link": "https://www.telegraph.co.uk/news/2023/10/26/glamorous-model-60-harassment-neighbour-beach-hut-worthing/", + "pubDate": "Thu, 26 Oct 2023 17:14:38 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/26/TELEMMGLPICT000354438724_16983395554160_trans_NvBQzQNjv4BqMvGa6jnbg4vLWQZ_2wrWZ4gBPLcblNbARPTd0CfKgTo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Catherine Lough", + "guid": "5ab9ebb2-c332-3c86-aa09-310d79b63b88", + "categories": [ + { + "_": "topics:places/worthing", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/west-sussex", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/court-cases", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T17:14:38.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Thursday evening news briefing: 18 killed and 13 injured in Maine shooting", + "link": "https://www.telegraph.co.uk/news/2023/10/26/thursday-evening-news-briefing-18-killed-13-injured-maine/", + "pubDate": "Thu, 26 Oct 2023 16:38:16 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "guid": "a2ce0a52-dfbf-3714-8b22-263eecc9f21e", + "categories": [ + { + "_": "topics:people/rachel-reeves", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/maine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T16:38:16.000Z" + }, + { + "creator": "Tim Wallace", + "title": "Christine Lagarde warns over impact of Israel-Hamas war on energy prices", + "link": "https://www.telegraph.co.uk/business/2023/10/26/ftse-100-markets-news-latest-ford-uaw-eu-interest-rates/", + "pubDate": "Thu, 26 Oct 2023 16:01:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/10/26/TELEMMGLPICT000354474411_16983359791450_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwVVuduJKBIVmdsWxwOVYZQY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Wallace", + "guid": "178648ba-4f70-3d63-996c-cbada199af17", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T16:01:40.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Is France scheming to use Ukrainian aid to bolster EU independence?", + "link": "https://www.telegraph.co.uk/world-news/2023/10/26/is-france-scheming-to-use-ukrainian-aid-to-bolster-eu/", + "pubDate": "Thu, 26 Oct 2023 15:40:01 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/26/TELEMMGLPICT000354412146_16983320230750_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "guid": "be9090fc-838e-3699-9d4c-0db4a584af2a", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T15:40:01.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Liz Truss urges Rishi Sunak to rescind China's invite to AI summit", + "link": "https://www.telegraph.co.uk/politics/2023/10/26/rishi-sunak-latest-news-oliver-dowden-ai-speech-israel/", + "pubDate": "Thu, 26 Oct 2023 15:00:18 GMT", + "dc:creator": "Jack Maidment", + "guid": "91474bb6-3e40-348f-9a86-457861c1af37", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T15:00:18.000Z" + }, + { + "creator": "Marlborough", + "title": "Marlborough racing tips and best bets for today\u2019s races", + "link": "https://www.telegraph.co.uk/racing/0/marlborough-racing-tips-best-bets-todays-races/", + "pubDate": "Thu, 26 Oct 2023 14:28:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/racing/2021/03/26/260321_JH_RACING_PORTAL_4_trans_NvBQzQNjv4Bq0xCxaHs0uU-ytAiMd-7XpGcvlwE7VKNo06j5r2t05AQ.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Marlborough", + "guid": "8a6067c8-0eca-3b53-8b7f-7d89f40c5d02", + "categories": [ + { + "_": "structure:racing", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/racing-tips", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T14:28:18.000Z" + }, + { + "creator": "Samuel Lovett", + "title": "WHO urges Hamas to provide \u2018proof of life\u2019 for hostages", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/who-urges-hamas-to-provide-proof-of-life-for-hostages/", + "pubDate": "Thu, 26 Oct 2023 12:52:42 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/26/TELEMMGLPICT000354458232_16983215109910_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Samuel Lovett", + "guid": "05aacb24-e565-3513-b4a9-c5084032ecda", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hamas", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestinian-territories", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T12:52:42.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Ukraine-Russia war: Russian generals 'sacrificing own men' in eastern assault on Avdiivka", + "link": "https://www.telegraph.co.uk/world-news/2023/10/26/ukraine-russia-war-live-avdiivka-putin-zelensky-latest/", + "pubDate": "Thu, 26 Oct 2023 10:17:48 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/26/TELEMMGLPICT000354432471_16983022780070_trans_NvBQzQNjv4BqX9BUfzDCvOjQOugpI-mZsIX55UGE1-QmdhXTcMmlCx4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Maighna Nanu", + "guid": "99edc146-65c7-3d00-84cd-df6766b393f2", + "categories": [ + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T10:17:48.000Z" + }, + { + "creator": "Lia Leendertz", + "title": "November gardening checklist: what to plant and tidy in your garden this month", + "link": "https://www.telegraph.co.uk/gardening/how-to-grow/gardening-november-things-do-what-plant-garden-month-2021/", + "pubDate": "Thu, 26 Oct 2023 10:05:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/gardening/2021/01/14/TELEMMGLPICT000248155804_trans_NvBQzQNjv4BqkqyH5s0gOgKHebXF_9ggGGQnZJIETfWB_fUbKb77n0w.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lia Leendertz", + "guid": "e73dcda0-2139-3f29-9544-a935f520667f", + "categories": [ + { + "_": "topics:things/animals", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/nature", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/allotments", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/flowers", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/wildflowers", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening/how-to-grow", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:gardening", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/wildlife", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T10:05:19.000Z" + }, + { + "creator": "Thomas W Hodgkinson", + "title": "Love scribbling in notebooks? You might be a genius", + "link": "https://www.telegraph.co.uk/books/what-to-read/notebook-roland-allen-review/", + "pubDate": "Thu, 26 Oct 2023 09:50:11 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/books/2023/10/25/TELEMMGLPICT000354212466_16982387659310_trans_NvBQzQNjv4Bqmf2BsMXC7pU7Tl6blboAOlOZgXky5jWZAzYy_iULiGo.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Thomas W Hodgkinson", + "guid": "60512409-7b71-3a3f-9f3a-fe21ea01c675", + "categories": [ + { + "_": "topics:things/history", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/history-books", + "$": { + "domain": "" + } + }, + { + "_": "structure:books", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T09:50:11.000Z" + }, + { + "creator": "Emma Gatten", + "title": "Remembrance Poppy gets plastic-free makeover", + "link": "https://www.telegraph.co.uk/news/2023/10/26/remembrance-poppy-eco-friendly-revamp-paper-stick-on/", + "pubDate": "Thu, 26 Oct 2023 09:30:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/26/TELEMMGLPICT000354311686_16983111113170_trans_NvBQzQNjv4BqnXAGUbMUzAspFDYJhbQykoSTR_Gqbh7-uYj7leHoqKQ.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Emma Gatten", + "guid": "46b2f15a-3a3e-32a3-b0d5-1374307a1ead", + "categories": [ + { + "_": "topics:events/remembrance-sunday", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/poppy-appeal", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T09:30:17.000Z" + }, + { + "creator": "Tedros Adhanom Ghebreyesus", + "title": "Climate change is one of our biggest health threats \u2013 humanity faces a staggering toll unless we act", + "link": "https://www.telegraph.co.uk/global-health/climate-and-people/climate-change-is-the-biggest-health-threat-of-all/", + "pubDate": "Thu, 26 Oct 2023 09:30:13 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/26/TELEMMGLPICT000344203676_16983115329860_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tedros Adhanom Ghebreyesus", + "guid": "fe3a0ead-0638-3438-bc29-42fd4f460071", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/climate-change", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/united-nations", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/cop28", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/world-health-organisation", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-warming", + "$": { + "domain": "" + } + }, + { + "_": "structure:climate-and-people", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:opinion", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:comment", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T09:30:13.000Z" + }, + { + "creator": "Lynn Barber", + "title": "Does Richard Burton\u2019s secret shame explain his wild life with Elizabeth Taylor?", + "link": "https://www.telegraph.co.uk/books/what-to-read/erotic-vagrancy-review-roger-lewis-taylor-burton/", + "pubDate": "Thu, 26 Oct 2023 09:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/books/2023/10/25/TELEMMGLPICT000085456793_16982369759730_trans_NvBQzQNjv4BqHHOzzpWNpXmNHoYXoGV_nbKbVLcqFQBFojLAMvjI5Gw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Lynn Barber", + "guid": "a743750e-fb85-3c9a-9fa3-4a71862e16d2", + "categories": [ + { + "_": "topics:things/screen-secrets", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/biographies", + "$": { + "domain": "" + } + }, + { + "_": "structure:books", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "structure:film/film-features", + "$": { + "domain": "" + } + }, + { + "_": "structure:film/film-top-stories", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T09:00:00.000Z" + }, + { + "creator": "Craig Simpson", + "title": "BBC Radio 4 loses hundreds of thousands of listeners", + "link": "https://www.telegraph.co.uk/news/2023/10/26/bbc-radio-4-loses-thousands-listeners-slump-today-programme/", + "pubDate": "Thu, 26 Oct 2023 07:27:21 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/26/TELEMMGLPICT000350168915_16983039324420_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Craig Simpson", + "guid": "060ffbe9-4591-3a2f-898d-94d5839cde49", + "categories": [ + { + "_": "topics:organisations/bbc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/radio-4", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/today-programme", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T07:27:21.000Z" + }, + { + "creator": "Molly McElwee", + "title": "WTA Finals 2023: When is it, where is it taking place and who is playing?", + "link": "https://www.telegraph.co.uk/tennis/2023/10/19/wta-finals-2023-when-is-it-how-to-watch-prize-money-players/", + "pubDate": "Thu, 26 Oct 2023 05:49:28 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tennis/2023/10/19/TELEMMGLPICT000353653902_16977276847390_trans_NvBQzQNjv4BqN7kF8Fb6ID_G1m99xXXMy0R8YSybYNWDTYrGStsI8ko.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Molly McElwee", + "guid": "153c2768-6457-3317-bb21-69b09cb9d127", + "categories": [ + { + "_": "topics:people/novak-djokovic", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/carlos-alcaraz", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/us-open-tennis", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/andy-murray", + "$": { + "domain": "" + } + }, + { + "_": "structure:tennis", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T05:49:28.000Z" + }, + { + "creator": "Tony Diver ", + "title": "Maine mass shooting: At least 16 dead with gunman on the loose", + "link": "https://www.telegraph.co.uk/us/news/2023/10/26/mass-shootings-maine-multiple-dead-injured/", + "pubDate": "Thu, 26 Oct 2023 04:54:29 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/26/TELEMMGLPICT000354419386_16982867757190_trans_NvBQzQNjv4BqSN7aKfZtGRKgUpZRK8xiCnuqFFkW70PKKitnWUGuSbY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tony Diver ", + "guid": "2dfc6a7e-afed-3cf1-9071-b3b248ea0f71", + "categories": [ + { + "_": "topics:things/guns-in-the-usa", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/maine", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-26T04:54:29.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "Hundreds rally outside Scotland Yard as police accused of being 'invisible' at hate crime protest", + "link": "https://www.telegraph.co.uk/news/2023/10/25/anger-protests-israel-hamas-war-london-scotland-yard/", + "pubDate": "Wed, 25 Oct 2023 22:45:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354366486_16982724081760_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "guid": "35b76521-e22d-3ac4-b2ef-82dd8f7208ba", + "categories": [ + { + "_": "topics:things/protests", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/metropolitan-police-service", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/london", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T22:45:59.000Z" + }, + { + "creator": "Jason Burt", + "title": "Newcastle suffer reality check as Borussia Dortmund hold on for win in Champions League", + "link": "https://www.telegraph.co.uk/football/2023/10/25/newcastle-vs-dortmund-champions-league-live-score-updates/", + "pubDate": "Wed, 25 Oct 2023 22:07:15 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/25/TELEMMGLPICT000354398908_16982714572780_trans_NvBQzQNjv4BquxxajMMmGLiD6bNfEZ-ZIWu4Jimrkub6bXhq2qPreFU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jason Burt", + "guid": "c3bf6a86-3fed-3876-89f0-81e32ce59959", + "categories": [ + { + "_": "topics:organisations/newcastle-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/eddie-howe", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/uefa", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/borussia-dortmund", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T22:07:15.000Z" + }, + { + "creator": "Daniel Zeqiri", + "title": "Celtic and Atletico Madrid produce entertaining draw after home fans wave Palestine flags", + "link": "https://www.telegraph.co.uk/football/2023/10/25/celtic-vs-atletico-madrid-champions-league-live-score/", + "pubDate": "Wed, 25 Oct 2023 21:55:36 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/25/TELEMMGLPICT000354378043_16982701205880_trans_NvBQzQNjv4Bq-ayPyDIFkRmcmHVmPD-v21x4rCqpdUIWTeh-etGfXsA.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Daniel Zeqiri", + "guid": "7cfabd4e-706d-31fe-a067-00c1fa773fbc", + "categories": [ + { + "_": "topics:organisations/celtic-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/atletico-madrid", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T21:55:36.000Z" + }, + { + "creator": "James Ducker", + "title": "Man City hand lesson in ruthless efficiency to Young Boys before focus switches to Man Utd", + "link": "https://www.telegraph.co.uk/football/2023/10/25/manchester-city-beat-young-boys-3-1-champions-league/", + "pubDate": "Wed, 25 Oct 2023 21:11:52 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/25/TELEMMGLPICT000354395270_16982680630250_trans_NvBQzQNjv4BqymlFxGHe8i_ijqtqoew5HLwgSP1AC-3mvL6X6qUbCes.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "James Ducker", + "guid": "e255e748-10fa-3910-ab69-46502c37a7df", + "categories": [ + { + "_": "topics:organisations/manchester-city-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T21:11:52.000Z" + }, + { + "creator": "Max Stephens", + "title": "Protect innocent Gaza civilians, Biden tells Israel", + "link": "https://www.telegraph.co.uk/world-news/2023/10/25/israel-gaza-latest-news-updates-hamas-palestine-day-19-live/", + "pubDate": "Wed, 25 Oct 2023 21:00:18 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/25/TELEMMGLPICT000354364693_16982669429780_trans_NvBQzQNjv4BqDhV2K8uQsCbKQWf5axWl7oBj75DBKCPNxMKpPUzduMI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Max Stephens", + "guid": "822985bb-a769-3fca-9b62-936d580b9d75", + "categories": [ + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hamas", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T21:00:18.000Z" + }, + { + "creator": "Telegraph Video", + "title": "Watch: Police struck with bicycle while trying to make arrest", + "link": "https://www.telegraph.co.uk/news/2023/10/25/police-birmingham-bike-police-hit-arrest/", + "pubDate": "Wed, 25 Oct 2023 20:10:41 GMT", + "dc:creator": "Telegraph Video", + "guid": "964453f2-8d4a-313c-bc65-a522aebbff8f", + "categories": [ + { + "_": "topics:organisations/west-midlands-police", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/birmingham", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "source:wirecopy", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T20:10:41.000Z" + }, + { + "creator": "Szu Ping Chan", + "title": "World must 'buckle up' for higher interest rates, warns IMF boss", + "link": "https://www.telegraph.co.uk/business/2023/10/25/ftse-100-markets-news-latest-china-stocks-asos-lloyds/", + "pubDate": "Wed, 25 Oct 2023 18:27:49 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/10/25/TELEMMGLPICT000353301014_16982259531410_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Szu Ping Chan", + "guid": "52c7c7db-a686-3880-880b-5993c52db7d3", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T18:27:49.000Z" + }, + { + "creator": "Daniel Martin", + "title": "Sunak at risk of more by-election misery as Peter Bone suspended for six weeks", + "link": "https://www.telegraph.co.uk/politics/2023/10/25/rishi-sunak-latest-news-year-anniversary-pm-hands-jenrick/", + "pubDate": "Wed, 25 Oct 2023 18:06:37 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/25/TELEMMGLPICT000354310348_16982555906460_trans_NvBQzQNjv4BqD3d2dmOlWYuQkR76XZjLQKOylOV7i1cNNz18XOj47vE.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Daniel Martin", + "guid": "c0dfb3f1-8f0c-390a-91db-6f0eaaed4645", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T18:06:37.000Z" + }, + { + "creator": "Will Bolton", + "title": "Police officer unmasked as \u2018UK\u2019s most prolific online paedophile\u2019", + "link": "https://www.telegraph.co.uk/news/2023/10/25/police-officer-lewis-edwards-paedophile-life-sentence/", + "pubDate": "Wed, 25 Oct 2023 17:50:54 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354324985_16982553644020_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Will Bolton", + "guid": "843d0306-9df6-3d00-a738-31e5c1c19177", + "categories": [ + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/sexual-assault", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/internet", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T17:50:54.000Z" + }, + { + "creator": "Charles Richardson", + "title": "Marcus Smith and Owen Farrell start for England as Borthwick makes eight changes for Argentina clash", + "link": "https://www.telegraph.co.uk/rugby-union/2023/10/25/england-team-announcement-argentina-rugby-world-cup-live/", + "pubDate": "Wed, 25 Oct 2023 17:39:33 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/rugby-union/2023/10/25/TELEMMGLPICT000354328054_16982373495830_trans_NvBQzQNjv4Bqwq7djBgxVFYKr3upoHVESHMWfKSb9e2Ss0Azj0L1JX4.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Charles Richardson", + "guid": "3cbd2d26-8659-3788-9bc7-1730a1ee779a", + "categories": [ + { + "_": "topics:organisations/england-rugby-union-team", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/rwc-france-2023", + "$": { + "domain": "" + } + }, + { + "_": "structure:rugby-union", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T17:39:33.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Wednesday evening news briefing: Starmer accused of bringing Islamic centre into \u2018disrepute\u2019", + "link": "https://www.telegraph.co.uk/news/2023/10/25/wednesday-evening-news-briefing-starmer-accused-disrepute/", + "pubDate": "Wed, 25 Oct 2023 16:40:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "guid": "3711a78b-a55f-3675-b6a0-5a950b7739ee", + "categories": [ + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/qatar", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T16:40:02.000Z" + }, + { + "creator": "Will Bolton", + "title": "Yousef Makki was unlawfully killed when stabbed in heart by friend, new inquest finds", + "link": "https://www.telegraph.co.uk/news/2023/10/25/yousef-makki-17-unlawfully-killed-coroner-concludes/", + "pubDate": "Wed, 25 Oct 2023 16:27:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354310492_16982329847320_trans_NvBQzQNjv4Bqk4bAwqv5afUjcOnA6CDEvKRG59k-tizdcoEWRmJ8o-E.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Will Bolton", + "guid": "7bc6622b-7d10-38e1-ba6d-e3f0c6306f44", + "categories": [ + { + "_": "topics:in-the-news/breaking-news", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/greater-manchester", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T16:27:46.000Z" + }, + { + "creator": "Tim Robey", + "title": "Five Nights at Freddy\u2019s, review: video-game spin-off that promises chills but delivers yawns", + "link": "https://www.telegraph.co.uk/films/0/five-nights-at-freddys-review/", + "pubDate": "Wed, 25 Oct 2023 14:37:12 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/films/2023/10/25/TELEMMGLPICT000353328603_16982348138080_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tim Robey", + "guid": "632c156a-ffa3-338d-b8d1-6eebaad9daae", + "categories": [ + { + "_": "topics:things/horror-films", + "$": { + "domain": "" + } + }, + { + "_": "structure:film", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T14:37:12.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Russia deploys homegrown drones", + "link": "https://www.telegraph.co.uk/world-news/2023/10/25/russia-deploys-homegrown-drones/", + "pubDate": "Wed, 25 Oct 2023 14:27:23 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/25/TELEMMGLPICT000353443661_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "guid": "1fc1ad1c-df47-3b5f-be39-50a5574bf3da", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T14:27:23.000Z" + }, + { + "creator": "Marianka Swain", + "title": "London theatre: the best musicals and plays to book now", + "link": "https://www.telegraph.co.uk/theatre/what-to-see/best-theatre-shows-plays-book-tickets-london-uk-performances/", + "pubDate": "Wed, 25 Oct 2023 14:17:02 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/theatre/2023/05/14/TELEMMGLPICT000335580359_trans_NvBQzQNjv4BqRRSmT6cvkmeECxVzj5L_rITPD5foJ9o3wuqP2tL5Yek.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Marianka Swain", + "guid": "811a3c58-bbba-3a4d-abd2-33115941e716", + "categories": [ + { + "_": "topics:places/west-end", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/national-theatre", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/almeida-theatre", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/old-vic", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/donmar-warehouse", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/abba", + "$": { + "domain": "" + } + }, + { + "_": "structure:dance", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:theatre", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T14:17:02.000Z" + }, + { + "creator": "Andrea Hamblin", + "title": "UK weather: Travel chaos as dense fog reduces visibility on roads to less than 100m", + "link": "https://www.telegraph.co.uk/news/2023/10/25/uk-weather-latest-heavy-rain-flood-warnings/", + "pubDate": "Wed, 25 Oct 2023 14:16:10 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354331277_16982430762770_trans_NvBQzQNjv4BqoVHpc64Dw_9TYL9Y5RROLVfJF0EM4dK0APHdPHIua_0.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Andrea Hamblin", + "guid": "0db507e2-64a4-36de-8870-20ec039c2b16", + "categories": [ + { + "_": "topics:things/uk-weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/flooding", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/flash-flood", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T14:16:10.000Z" + }, + { + "creator": "Maighna Nanu", + "title": "Russian drones 'explode near Ukrainian nuclear plant'", + "link": "https://www.telegraph.co.uk/world-news/2023/10/25/ukraine-russia-war-live-avdiivka-putin-zelensky-latest/", + "pubDate": "Wed, 25 Oct 2023 14:01:45 GMT", + "dc:creator": "Maighna Nanu", + "guid": "17908fe4-7d54-360b-b119-cd70791d4cc1", + "categories": [ + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T14:01:45.000Z" + }, + { + "creator": "Alex Barton", + "title": "Metropolitan Police's stop and search of British sprinter amounted to gross misconducted, panel rules", + "link": "https://www.telegraph.co.uk/news/2023/10/25/met-police-jonathan-clapham-sam-franks-gross-misconduct/", + "pubDate": "Wed, 25 Oct 2023 12:08:35 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/25/TELEMMGLPICT000354328593_16982355979620_trans_NvBQzQNjv4BqYrOuIV-teFJsey141IDT4VFx7oZS3G0ps1JcMwBJxFI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alex Barton", + "guid": "4f7be97d-2232-3b60-9476-c6ac703248d0", + "categories": [ + { + "_": "topics:in-the-news/breaking-news", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/metropolitan-police-service", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T12:08:35.000Z" + }, + { + "creator": "Sarah Green", + "title": "Gender inequality fuelling \u2018Great Resignation\u2019 of women health workers across the world", + "link": "https://www.telegraph.co.uk/global-health/women-and-girls/gender-inequality-great-resignation-of-women-health-workers/", + "pubDate": "Wed, 25 Oct 2023 11:07:07 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/25/TELEMMGLPICT000342524465_16982303748120_trans_NvBQzQNjv4BqgsaO8O78rhmZrDxTlQBjdLdu0TL-Cg_AMOUqySXmFgU.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sarah Green", + "guid": "42954076-c8df-323f-b70c-cf05ef6db706", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/Gender-equality", + "$": { + "domain": "" + } + }, + { + "_": "structure:women-and-girls", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T11:07:07.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best accommodation in St Moritz", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/st-moritz/best-accommodation-st-moritz/", + "pubDate": "Wed, 25 Oct 2023 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/st moritz-credit-Paul Thuysbaert (12).jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "guid": "0baeba61-d609-3491-a8f2-a1274a8888b7", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/st-moritz", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T11:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The perfect ski holiday in St Moritz", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/st-moritz/st-moritz-ski-holiday-guide/", + "pubDate": "Wed, 25 Oct 2023 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/st-moritz-lead.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "guid": "b7dfff1c-52dc-3a30-ab30-2dcda8b7f78a", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/st-moritz", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/switzerland", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T11:00:00.000Z" + }, + { + "creator": "Annabel Fenwick-Elliott", + "title": "The best epilators of 2023 for hair removal, including Philips Lumea", + "link": "https://www.telegraph.co.uk/recommended/tech/best-epilator/", + "pubDate": "Wed, 25 Oct 2023 10:47:16 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/10/24/TELEMMGLPICT000354228437_16981581426990_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Annabel Fenwick-Elliott", + "guid": "d64f0b4e-a3ae-3a75-999b-a9b368825a80", + "categories": [ + { + "_": "topics:things/diy-beauty", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/body", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/skincare", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/hair", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/technology", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty", + "$": { + "domain": "" + } + }, + { + "_": "structure:beauty/beauty-products", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T10:47:16.000Z" + }, + { + "creator": "Dominic Penna", + "title": "Starmer accused of bringing Islamic centre into \u2018disrepute\u2019 after visit", + "link": "https://www.telegraph.co.uk/politics/2023/10/24/keir-starmer-labour-meeting-muslims-wales-misrepresented/", + "pubDate": "Wed, 25 Oct 2023 10:21:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/25/TELEMMGLPICT000354304763_16982214431120_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Penna", + "guid": "ba9b672e-131c-3318-b3c8-c566289d9b17", + "categories": [ + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/wales", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T10:21:57.000Z" + }, + { + "creator": "Calum Weill", + "title": "Telegraph Fantasy Football: Team of the Week Game Week 9", + "link": "https://www.telegraph.co.uk/fantasy-sports/fantasy-football/telegraph-fantasy-football-team-of-the-week/", + "pubDate": "Wed, 25 Oct 2023 08:30:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Fantasy-football/TOTW-GW9-23-24.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Calum Weill", + "guid": "7c5b26a7-dd3f-35c7-8766-f307c240efc2", + "categories": [ + { + "_": "commercial:fantasy-sports/fantasy-football", + "$": { + "domain": "" + } + }, + { + "_": "commercial:apple-news-include", + "$": { + "domain": "" + } + }, + { + "_": "commercial:fantasy-sports/fantasy-football/fantasy-football-selection-tips", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T08:30:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The perfect ski holiday in Verbier", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/verbier/verbier-holiday-guide/", + "pubDate": "Wed, 25 Oct 2023 07:30:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/ski-verbier-town.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "guid": "4219fa59-a013-3ed8-87ac-3af2664d70f3", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/verbier", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/switzerland", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T07:30:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best hotels and ski chalets in Verbier", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/switzerland/verbier/verbier-hotels-and-chalets/", + "pubDate": "Wed, 25 Oct 2023 07:30:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/galleries/travel/snowandski/picture-galleries/Luxury-chalet-of-the-week-Chouqui-Verbier/outside-better_3518241a.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "guid": "aa3aac47-5971-3d77-955c-90c89ecf67a6", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/verbier", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/switzerland", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T07:30:00.000Z" + }, + { + "creator": "Jason Burt", + "title": "Redemption for Harry Maguire and Andre Onana as Manchester United grasp Champions League lifeline", + "link": "https://www.telegraph.co.uk/football/2023/10/24/man-utd-vs-copenhagen-champions-league-live-score-charlton/", + "pubDate": "Tue, 24 Oct 2023 23:09:45 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/24/TELEMMGLPICT000354273383_16981816211020_trans_NvBQzQNjv4Bq0wFa1ufc1Xj_Gp0yh9QKSJoHcEemjJAzZ07ELqgxC_U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jason Burt", + "guid": "9013c9f1-8daf-3462-abcc-3c2a78deeee4", + "categories": [ + { + "_": "topics:organisations/manchester-united-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/sir-bobby-charlton", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/fc-copenhagen", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T23:09:45.000Z" + }, + { + "creator": "Sam Dean", + "title": "Brilliance of Gabriel Jesus proves decisive as Arsenal hold off Sevilla fightback in Champions League", + "link": "https://www.telegraph.co.uk/football/2023/10/24/sevilla-vs-arsenal-champions-league-live-score-updates/", + "pubDate": "Tue, 24 Oct 2023 22:47:59 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/24/TELEMMGLPICT000354268757_16981814416760_trans_NvBQzQNjv4BqtfWqpLeLodzBHWFhE2XSW0WYCTEH1R7unsi18-1FPzw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Sam Dean", + "guid": "54e27d94-014f-3472-b11b-042767aeec96", + "categories": [ + { + "_": "topics:organisations/sevilla-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/arsenal-fc", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/champions-league", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T22:47:59.000Z" + }, + { + "creator": "Alex Barton", + "title": "IDF 'won't forget' Hamas terror despite hostage releases", + "link": "https://www.telegraph.co.uk/world-news/2023/10/24/israel-gaza-latest-news-updates-hamas-palestine-day-18-live/", + "pubDate": "Tue, 24 Oct 2023 21:56:07 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/24/TELEMMGLPICT000354209830_16981802386480_trans_NvBQzQNjv4BqfomibfiECf3r_FyzyHF01OFG2jSR6q_BFADOdRomMN8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Alex Barton", + "guid": "86853a80-23e0-3c55-a783-9d6e9c1f96df", + "categories": [ + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hamas", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/benjamin-netanyahu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T21:56:07.000Z" + }, + { + "creator": "Adam Mawardi", + "title": "Remote employees don\u2019t \u2018work as hard\u2019, says billionaire private equity baron", + "link": "https://www.telegraph.co.uk/business/2023/10/24/ftse-100-markets-news-latest-jobs-interest-rates-uk-economy/", + "pubDate": "Tue, 24 Oct 2023 19:11:03 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/business/2023/10/24/TELEMMGLPICT000211874466_16981624527320_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Adam Mawardi", + "guid": "a6472c16-e913-35c5-bba4-2d71beca5af1", + "categories": [ + { + "_": "topics:things/uk-economy", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/ftse-100", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pound", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/dow-jones-industrial-average", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/cost-of-living", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/global-economy", + "$": { + "domain": "" + } + }, + { + "_": "structure:business", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T19:11:03.000Z" + }, + { + "creator": "Jamie Bullen", + "title": "Sailor dies and four people missing after British cargo ship sinks in North Sea", + "link": "https://www.telegraph.co.uk/news/2023/10/24/british-cargo-ship-verity-sinks-north-sea-germany/", + "pubDate": "Tue, 24 Oct 2023 17:48:29 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/24/TELEMMGLPICT000354201837_16981359004100_trans_NvBQzQNjv4BqyCn3iCgjHkWrx6suGFXdfTk-xY-yNtVoiqVN0Pjn5-M.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jamie Bullen", + "guid": "780f7f56-2328-3fa7-9e88-a0e41eee5bf1", + "categories": [ + { + "_": "topics:places/north-sea", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/germany", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T17:48:29.000Z" + }, + { + "creator": "Joshua Hughes", + "title": "Tuesday evening news briefing: Teenagers arrested after trying to burn Union flags", + "link": "https://www.telegraph.co.uk/news/2023/10/24/tuesday-evening-news-briefing-teenagers-arrested-burn-flag/", + "pubDate": "Tue, 24 Oct 2023 16:39:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2022/09/23/TELEMMGLPICT000310354963_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Joshua Hughes", + "guid": "76d2ce8c-c9a0-3a8e-80db-8c2078610a0c", + "categories": [ + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/eric-pickles", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T16:39:40.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Volodymyr Zelensky's vision for Ukraine in the EU", + "link": "https://www.telegraph.co.uk/world-news/2023/10/24/zelensky-eu-application-hungary-corruption-oligarchs/", + "pubDate": "Tue, 24 Oct 2023 16:14:04 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/24/TELEMMGLPICT000354207089_16981567374560_trans_NvBQzQNjv4Bqbp882ZYJlBFxnyQgxUcRsxrNyLJG0HyXpVXN1H1KVWw.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "guid": "19ef6c22-dc7e-3794-925e-dffb2ede9cc9", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T16:14:04.000Z" + }, + { + "creator": "Craig Simpson", + "title": "West End producer and Everton chairman Bill Kenwright dies aged 78", + "link": "https://www.telegraph.co.uk/news/2023/10/24/bill-kenwright-dead-everton-chairman-theatre-film-producer/", + "pubDate": "Tue, 24 Oct 2023 16:04:40 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/24/TELEMMGLPICT000354240765_16981681821270_trans_NvBQzQNjv4Bqm6YLxf-F7YOX5t7y89wp0yzeOtVjUsHsT-3KAf_9ItY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Craig Simpson", + "guid": "f0f00591-482a-33bc-b5d2-df2ea0716fe3", + "categories": [ + { + "_": "topics:places/west-end", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/everton-fc", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T16:04:40.000Z" + }, + { + "creator": "Rozina Sabur", + "title": "All the Republican and Democrat candidates in the 2024 US election", + "link": "https://www.telegraph.co.uk/world-news/0/us-republican-democrat-candidates-running-2024-election/", + "pubDate": "Tue, 24 Oct 2023 15:56:46 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/02/02/TELEMMGLPICT000324052437_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Rozina Sabur", + "guid": "2e31d700-bc5d-3ce1-ae8c-afd28bb2375e", + "categories": [ + { + "_": "topics:places/usa", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/republicans", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/us-politics", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/donald-trump", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/nikki-haley", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/ron-desantis", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T15:56:46.000Z" + }, + { + "creator": "Jack Maidment", + "title": "Politics latest news: Rishi Sunak backed to lead Tories to 'Lazarus' election victory", + "link": "https://www.telegraph.co.uk/politics/2023/10/24/rishi-sunak-latest-tories-atkins-tax-rises-autumn-statement/", + "pubDate": "Tue, 24 Oct 2023 15:00:19 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/24/TELEMMGLPICT000354156794_16981491394130_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Jack Maidment", + "guid": "5c7c8035-19a2-33ee-8256-548b58d96789", + "categories": [ + { + "_": "topics:people/rishi-sunak", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/keir-starmer", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/conservative-party", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/labour-party", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T15:00:19.000Z" + }, + { + "creator": "Michael Murphy", + "title": "Russian fighter jets intercept US bombers", + "link": "https://www.telegraph.co.uk/world-news/2023/10/24/russia-destroys-ukraine-boats-crimea-black-sea-sevastopol/", + "pubDate": "Tue, 24 Oct 2023 14:23:17 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/24/TELEMMGLPICT000354109414_16981287353670_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Michael Murphy", + "guid": "01c92f93-e2e3-3ad1-89ff-ab1e977b46a4", + "categories": [ + { + "_": "topics:in-the-news/ukraine-crisis", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/russia", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/volodymyr-zelenskyy", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T14:23:17.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "Pictured: Ancient rock carvings of human faces revealed in Amazon after record drought", + "link": "https://www.telegraph.co.uk/world-news/2023/10/24/ancient-rock-carvings-on-amazon-river-after-drought/", + "pubDate": "Tue, 24 Oct 2023 12:21:45 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/24/TELEMMGLPICT000354184241_16981462794660_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "guid": "bb70b272-ed7b-3c62-8bbd-db3c10565b62", + "categories": [ + { + "_": "topics:things/ancient-history", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/amazon-river", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/the-amazon", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/brazil", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/climate-change", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T12:21:45.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The best earplugs for sleeping, 2023: here's how to block out noisy neighbours and snoring spouses", + "link": "https://www.telegraph.co.uk/recommended/home/best-earplugs-restful-nights-sleep/", + "pubDate": "Tue, 24 Oct 2023 11:13:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/recommended/2023/03/07/TELEMMGLPICT000328060700_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "guid": "47e08022-c53b-3166-a6cc-d5653944d356", + "categories": [ + { + "_": "topics:things/sleep", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health-hacks", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/health", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleep-hygiene", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/world-sleep-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/sleeping-disorders", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended/home", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:special-exclusion", + "$": { + "domain": "" + } + }, + { + "_": "structure:wellbeing/health", + "$": { + "domain": "" + } + }, + { + "_": "structure:health-fitness", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T11:13:43.000Z" + }, + { + "creator": "Richard Madden", + "title": "The best rainy day activities for half term in the UK", + "link": "https://www.telegraph.co.uk/travel/family-holidays/best-february-half-term-children-activities-rainy-day-uk-2022/", + "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/travel/2022/02/10/TELEMMGLPICT000285336900_trans_NvBQzQNjv4BqZgEkZX3M936N5BQK4Va8RWtT0gK_6EfZT336f62EI5U.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Richard Madden", + "guid": "ffe74a21-2a0f-31fa-81a7-5f4c669d5cf0", + "categories": [ + { + "_": "topics:places/london", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/snowdonia", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/edinburgh", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/united-kingdom", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/manchester", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/school-holidays", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/family-holidays", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T11:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The perfect ski holiday in M\u00e9ribel", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/meribel/meribel-ski-holiday-guide/", + "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/meribel-piste-Sylvain Aymoz28032373.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "guid": "a17f11cd-18cb-37f9-a3d6-59b063324afd", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T11:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best hotels and ski chalets in M\u00e9ribel", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/meribel/meribel-hotels-and-chalets/", + "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/romantic-ski-hotels-Refuge-de-la-Traye-(18).jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "guid": "ff28138c-b378-33fd-97a0-775f73e3b780", + "categories": [ + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T11:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The perfect ski holiday in Courchevel", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/courchevel/courchevel-ski-holiday-guide/", + "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/ski/Resorts/courchevel-overview.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "guid": "35d6cadb-ae35-35ae-a90a-448aa2cd97a8", + "categories": [ + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/courchevel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/france", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T11:00:00.000Z" + }, + { + "creator": "Telegraph Ski & Snowboard", + "title": "The best accommodation in Courchevel", + "link": "https://www.telegraph.co.uk/travel/ski/resort-guides/france/courchevel/best-accommodation-courchevel/", + "pubDate": "Tue, 24 Oct 2023 11:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/Travel/hotels/hotel-wishlist/l-apogee-courchevel-exterior.jpg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph Ski & Snowboard", + "guid": "a6d99796-a4e2-319a-a97d-f04af43642ee", + "categories": [ + { + "_": "topics:places/courchevel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel", + "$": { + "domain": "" + } + }, + { + "_": "structure:travel/ski/resort-guides", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/france", + "$": { + "domain": "" + } + }, + { + "_": "structure:eg-general", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T11:00:00.000Z" + }, + { + "creator": "Harriet Barber", + "title": "Bird flu detected in Antarctica for first time as fears grow of mass wipe-outs", + "link": "https://www.telegraph.co.uk/global-health/science-and-disease/bird-flu-antarctica-infection-influenza-latest/", + "pubDate": "Tue, 24 Oct 2023 09:23:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/24/TELEMMGLPICT000176501850_16981359157190_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Harriet Barber", + "guid": "719bebe6-0682-38ff-8f67-49cb43968738", + "categories": [ + { + "_": "topics:things/bird-flu", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/antarctica", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:science-and-disease", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T09:23:34.000Z" + }, + { + "creator": "Tony Diver ", + "title": "Biden accidentally calls for Israel-Hamas ceasefire", + "link": "https://www.telegraph.co.uk/us/news/2023/10/24/israel-hamas-war-gaza-joe-biden-ceasefire-hostages/", + "pubDate": "Tue, 24 Oct 2023 09:11:28 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/24/TELEMMGLPICT000354172597_16981119454400_trans_NvBQzQNjv4BqW7F28K1sji8Xsyy3RH3LRtZXMMRCRxm4CNdRD5oMwKg.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tony Diver ", + "guid": "85129a9a-bf13-38f7-aafc-557f880caf9f", + "categories": [ + { + "_": "topics:people/joe-biden", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hamas", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T09:11:28.000Z" + }, + { + "creator": "Simon Lewis", + "title": "The 25 best advent calendars of 2023, from chocolate to Lego", + "link": "https://www.telegraph.co.uk/christmas/best-advent-calendars/", + "pubDate": "Tue, 24 Oct 2023 08:34:58 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/christmas/2023/10/23/TELEMMGLPICT000354149987_16980750699600_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Simon Lewis", + "guid": "453db5dc-f90d-34aa-8741-4f020343be21", + "categories": [ + { + "_": "topics:events/christmas", + "$": { + "domain": "" + } + }, + { + "_": "topics:events/christmas-day", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/christmas-gift-guides", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/how-to-have-perfect-christmas", + "$": { + "domain": "" + } + }, + { + "_": "structure:recommended", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + }, + { + "_": "commercial:telegraph-reviews", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T08:34:58.000Z" + }, + { + "creator": "Poppie Platt", + "title": "Strictly Come Dancing 2023 line-up: all the contestants and their professional pairings", + "link": "https://www.telegraph.co.uk/tv/0/strictly-come-dancing-2023-line-up-contestants/", + "pubDate": "Tue, 24 Oct 2023 08:11:31 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/tv/2023/09/18/TELEMMGLPICT000349591801_16950581844180_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Poppie Platt", + "guid": "27cdf54e-813f-3e5d-8f47-80c2799a7ccf", + "categories": [ + { + "_": "topics:things/strictly-come-dancing", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/bbc", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/tess-daly", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/claudia-winkleman", + "$": { + "domain": "" + } + }, + { + "_": "structure:television", + "$": { + "domain": "" + } + }, + { + "_": "structure:television/television-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/entertainment", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T08:11:31.000Z" + }, + { + "creator": "Thom Gibbs", + "title": "Zara Musker: I was given flak for not being deaf enough \u2013 now I\u2019m Deaf Sport Personality of Year", + "link": "https://www.telegraph.co.uk/football/2023/10/24/zara-musker-england-futsal-team-deaf-sport-personality-year/", + "pubDate": "Tue, 24 Oct 2023 08:00:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/football/2023/10/17/TELEMMGLPICT000352792771_16975557914620_trans_NvBQzQNjv4BqRo0U4xU-30oDveS4pXV-Vv4Xpit_DMGvdp2n7FDd82k.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Thom Gibbs", + "guid": "5be86b09-2140-3a02-96ea-1567666e2bac", + "categories": [ + { + "_": "topics:organisations/the-football-association", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/deafness-and-hearing-impairment", + "$": { + "domain": "" + } + }, + { + "_": "structure:sport", + "$": { + "domain": "" + } + }, + { + "_": "structure:football", + "$": { + "domain": "" + } + }, + { + "_": "structure:womens-sport", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T08:00:00.000Z" + }, + { + "creator": "Tony Diver ", + "title": "'Super fog' causes deadly 158-car pile-up in Louisiana", + "link": "https://www.telegraph.co.uk/us/news/2023/10/24/louisiana-highway-interstate-55-fog-car-crash/", + "pubDate": "Tue, 24 Oct 2023 07:09:43 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/24/TELEMMGLPICT000354193086_16981223141780_trans_NvBQzQNjv4BqpVlberWd9EgFPZtcLiMQf0Rf_Wk3V23H2268P_XkPxc.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tony Diver ", + "guid": "015259bc-3afd-369e-a195-6b5d61333aee", + "categories": [ + { + "_": "topics:places/louisiana", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/road-safety", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/weather", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T07:09:43.000Z" + }, + { + "creator": "Tony Diver ", + "title": "Fears Iran-backed groups are escalating attacks on US forces", + "link": "https://www.telegraph.co.uk/us/news/2023/10/24/israel-hamas-syria-drone-iran-backed-attacks-americans/", + "pubDate": "Tue, 24 Oct 2023 02:36:41 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/24/TELEMMGLPICT000351977180_16981134748310_trans_NvBQzQNjv4Bq3480UNUU8UfSxDSaY1n7MBMSxGIR1rd_-iNIxL4YeIk.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Tony Diver ", + "guid": "99272a9f-2b0e-3164-ab6e-a9b2ee4f8cca", + "categories": [ + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/iran", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/washington-dc", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/syria", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/hamas", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-24T02:36:41.000Z" + }, + { + "creator": "Neil McCormick", + "title": "Britney Spears\u2019s memoir is the most sickening tale in modern pop", + "link": "https://www.telegraph.co.uk/books/non-fiction/review-britney-spears-the-woman-in-me/", + "pubDate": "Mon, 23 Oct 2023 23:01:00 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/books/2023/10/23/TELEMMGLPICT000000470317_16980782572240_trans_NvBQzQNjv4BqQND5f8Baj_ohaXY2gUOFsL6Xj2WECU5tGTp4vDMBGsY.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Neil McCormick", + "guid": "e629fc36-d4f0-3c70-ba25-5d2223444a4a", + "categories": [ + { + "_": "topics:people/britney-spears", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/pop-music", + "$": { + "domain": "" + } + }, + { + "_": "structure:books/non-fiction", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture", + "$": { + "domain": "" + } + }, + { + "_": "structure:culture/culture-editors-choice", + "$": { + "domain": "" + } + }, + { + "_": "structure:music", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/entertainment", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:review", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-23T23:01:00.000Z" + }, + { + "creator": "Our Foreign Staff", + "title": "Off-duty Alaska Airlines pilot charged with attempted murder after trying to disable engines", + "link": "https://www.telegraph.co.uk/us/news/2023/10/23/off-duty-alaska-airlines-pilot-charged-attempted-murder/", + "pubDate": "Mon, 23 Oct 2023 22:59:57 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/en-us/news/2023/10/25/TELEMMGLPICT000354281287_16982147468200_trans_NvBQzQNjv4Bq41ARBwgMvd1zOb2ypA9Bgcw6-9Wqr-sUXFTDR9QLrrM.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Our Foreign Staff", + "guid": "9785c800-4a36-374c-83ee-c60ae878b38d", + "categories": [ + { + "_": "topics:places/alaska", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/aviation", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/usa", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-23T22:59:57.000Z" + }, + { + "creator": "David Knowles", + "title": "Ukraine: The Latest - Hamas visit Moscow as Putin makes a 'cold-blooded calculation'", + "link": "https://www.telegraph.co.uk/world-news/2023/10/27/hamas-moscow-russia-iran-geopolitics/", + "pubDate": "Fri, 27 Oct 2023 15:15:42 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/world-news/2023/10/27/TELEMMGLPICT000354299689_16984196691620_trans_NvBQzQNjv4BqA7N2CxnJWnYI3tCbVBgu9T0aesusvN1TE7a0ddd_esI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "David Knowles", + "guid": "97600f32-d408-341a-b991-00cce7f81e9f", + "categories": [ + { + "_": "topics:things/ukraine-the-latest-podcast", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/ukraine", + "$": { + "domain": "" + } + }, + { + "_": "topics:people/vladimir-putin", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/russia-ukraine-invasion-live", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/telegraph-podcasts", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/world-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T15:15:42.000Z" + }, + { + "creator": "Dominic Penna", + "title": "Boris Johnson joins GB News as presenter and commentator", + "link": "https://www.telegraph.co.uk/politics/2023/10/27/boris-johnson-joins-gb-news-presenter-commentator/", + "pubDate": "Fri, 27 Oct 2023 14:59:13 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/politics/2023/10/27/TELEMMGLPICT000354599880_16984176927000_trans_NvBQzQNjv4BqRpEJ8qDUmB4Zrzr5A7vy2h9o7IYJZ5WOAJavXqk41VI.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Dominic Penna", + "guid": "0af5077c-3705-35c2-88c9-e1dbbe1985ba", + "categories": [ + { + "_": "topics:people/boris-johnson", + "$": { + "domain": "" + } + }, + { + "_": "topics:organisations/gb-news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:politics", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T14:59:13.000Z" + }, + { + "creator": "Kevin Watkins", + "title": "The children of Israel and Gaza are crying out for help \u2013 the world should listen", + "link": "https://www.telegraph.co.uk/global-health/terror-and-security/the-children-of-israel-and-gaza-are-crying-are-out-for-help/", + "pubDate": "Fri, 27 Oct 2023 14:53:30 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/global-health/2023/10/27/TELEMMGLPICT000354389661_16984153763590_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Kevin Watkins", + "guid": "ea2057f8-0918-33b7-8481-078c959ae024", + "categories": [ + { + "_": "topics:in-the-news/global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "topics:in-the-news/israel-hamas-war", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/israel", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/gaza", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/palestinian-territories", + "$": { + "domain": "" + } + }, + { + "_": "topics:places/middle-east", + "$": { + "domain": "" + } + }, + { + "_": "structure:global-health-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:terror-and-security", + "$": { + "domain": "" + } + }, + { + "_": "structure:opinion", + "$": { + "domain": "" + } + }, + { + "_": "structure:us-content", + "$": { + "domain": "" + } + }, + { + "_": "storytype:comment", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T14:53:30.000Z" + }, + { + "creator": "Telegraph reporters", + "title": "'Somerset Gimp' found guilty after he told police 'I am not a gimp'", + "link": "https://www.telegraph.co.uk/news/2023/10/27/somerset-gimp-guilty-scaring-female-drivers-trial-bristol/", + "pubDate": "Fri, 27 Oct 2023 13:58:34 GMT", + "enclosure": { + "url": "https://www.telegraph.co.uk/content/dam/news/2023/10/27/TELEMMGLPICT000203854805_16984150298090_trans_NvBQzQNjv4BqY1pDbA9t2TcEbSModODvKXGTJFJS74MYhNY6w3GNbO8.jpeg", + "length": "99", + "type": "image/jpeg" + }, + "dc:creator": "Telegraph reporters", + "guid": "9e363cee-0e0d-3371-bdad-322d331454b1", + "categories": [ + { + "_": "topics:places/somerset", + "$": { + "domain": "" + } + }, + { + "_": "topics:things/crime", + "$": { + "domain": "" + } + }, + { + "_": "structure:news", + "$": { + "domain": "" + } + }, + { + "_": "structure:news/uk-news", + "$": { + "domain": "" + } + }, + { + "_": "storytype:standard", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-27T13:58:34.000Z" + } +] diff --git a/intro to react/newData/oldNews/38eb1d8f7f0380788dde67cd70e7cfc313a1a753c7286d393524ead96340b043.json b/intro to react/newData/oldNews/38eb1d8f7f0380788dde67cd70e7cfc313a1a753c7286d393524ead96340b043.json index 8c0b14f..5070c7d 100644 --- a/intro to react/newData/oldNews/38eb1d8f7f0380788dde67cd70e7cfc313a1a753c7286d393524ead96340b043.json +++ b/intro to react/newData/oldNews/38eb1d8f7f0380788dde67cd70e7cfc313a1a753c7286d393524ead96340b043.json @@ -1,362 +1,362 @@ [ - { - "title": "Analysts predict more brands will flee X after Musk tirade", - "link": "https://www.reddit.com/r/tech/comments/187r3h0/analysts_predict_more_brands_will_flee_x_after/", - "pubDate": "2023-11-30T19:40:16.000Z", - "author": "/u/politicsandric", - "content": "
\"Analysts submitted by /u/politicsandric
[link] [comments]
", - "contentSnippet": "submitted by /u/politicsandric \n [link] [comments]", - "id": "t3_187r3h0", - "isoDate": "2023-11-30T19:40:16.000Z" - }, - { - "title": "Michigan installs the US's first wireless EV charging public roadway", - "link": "https://www.reddit.com/r/tech/comments/187pj5t/michigan_installs_the_uss_first_wireless_ev/", - "pubDate": "2023-11-30T18:33:36.000Z", - "author": "/u/terminally_chill206", - "content": "
\"Michigan submitted by /u/terminally_chill206
[link] [comments]
", - "contentSnippet": "submitted by /u/terminally_chill206 \n [link] [comments]", - "id": "t3_187pj5t", - "isoDate": "2023-11-30T18:33:36.000Z" - }, - { - "title": "Tiny living robots made from human cells surprise scientists", - "link": "https://www.reddit.com/r/tech/comments/187xtfd/tiny_living_robots_made_from_human_cells_surprise/", - "pubDate": "2023-12-01T00:22:25.000Z", - "author": "/u/cnn", - "content": "
\"Tiny submitted by /u/cnn
[link] [comments]
", - "contentSnippet": "submitted by /u/cnn \n [link] [comments]", - "id": "t3_187xtfd", - "isoDate": "2023-12-01T00:22:25.000Z" - }, - { - "title": "At-home saliva testing could replace daily finger-jabs for diabetics", - "link": "https://www.reddit.com/r/tech/comments/187zg5j/athome_saliva_testing_could_replace_daily/", - "pubDate": "2023-12-01T01:36:02.000Z", - "author": "/u/chrisdh79", - "content": "
\"At-home submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_187zg5j", - "isoDate": "2023-12-01T01:36:02.000Z" - }, - { - "title": "The lucky break behind the first CRISPR treatment. Gene editing for sickle-cell is here. This is how researchers knew what DNA to change.", - "link": "https://www.reddit.com/r/tech/comments/18d9d87/the_lucky_break_behind_the_first_crispr_treatment/", - "pubDate": "2023-12-07T23:55:03.000Z", - "author": "/u/Sariel007", - "content": "
\"The submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_18d9d87", - "isoDate": "2023-12-07T23:55:03.000Z" - }, - { - "title": "Rolls Royce plans '120-inch-long' mini nuclear reactor for Moon outpost | The auto giant displayed a conceptual model design of a nuclear Space Micro-Reactor at the UK Space Conference.", - "link": "https://www.reddit.com/r/tech/comments/18cy30u/rolls_royce_plans_120inchlong_mini_nuclear/", - "pubDate": "2023-12-07T15:30:20.000Z", - "author": "/u/chrisdh79", - "content": "
\"Rolls submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18cy30u", - "isoDate": "2023-12-07T15:30:20.000Z" - }, - { - "title": "Researchers use wood to create low-cost, long-lasting solar cells | Kraft lignin found in wood pulp improves the stability in organic solar cells due its ability to form hydrogen bonds that acts as a sort of glue.", - "link": "https://www.reddit.com/r/tech/comments/18cvb7h/researchers_use_wood_to_create_lowcost/", - "pubDate": "2023-12-07T13:12:53.000Z", - "author": "/u/chrisdh79", - "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18cvb7h", - "isoDate": "2023-12-07T13:12:53.000Z" - }, - { - "title": "US researchers become first to 3D-print steam turbine blades | ORNL researchers, in collaboration with Siemens tech, have achieved a milestone by 3D-printing large steam turbine blades.", - "link": "https://www.reddit.com/r/tech/comments/18ibfdm/us_researchers_become_first_to_3dprint_steam/", - "pubDate": "2023-12-14T15:43:19.000Z", - "author": "/u/chrisdh79", - "content": "
\"US submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ibfdm", - "isoDate": "2023-12-14T15:43:19.000Z" - }, - { - "title": "AI-Powered Microdisplay Adapts to Users\u2019 Eyesight", - "link": "https://www.reddit.com/r/tech/comments/18iagvr/aipowered_microdisplay_adapts_to_users_eyesight/", - "pubDate": "2023-12-14T14:59:12.000Z", - "author": "/u/Sariel007", - "content": "
\"AI-Powered submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_18iagvr", - "isoDate": "2023-12-14T14:59:12.000Z" - }, - { - "title": "Microsoft, AFL-CIO reach deal on AI, labor neutrality", - "link": "https://www.reddit.com/r/tech/comments/18i43ld/microsoft_aflcio_reach_deal_on_ai_labor_neutrality/", - "pubDate": "2023-12-14T08:28:29.000Z", - "author": "/u/mrmowfly186", - "content": " submitted by /u/mrmowfly186
[link] [comments]", - "contentSnippet": "submitted by /u/mrmowfly186 \n [link] [comments]", - "id": "t3_18i43ld", - "isoDate": "2023-12-14T08:28:29.000Z" - }, - { - "title": "Ultrafast laser technology could help advance radiotherapy and treat tumors that are resistant to conventional radiotherapy.", - "link": "https://www.reddit.com/r/tech/comments/18iyzqy/ultrafast_laser_technology_could_help_advance/", - "pubDate": "2023-12-15T12:29:29.000Z", - "author": "/u/chrisdh79", - "content": "
\"Ultrafast submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18iyzqy", - "isoDate": "2023-12-15T12:29:29.000Z" - }, - { - "title": "Wax-actuated adaptive tiles radically cut heating and cooling energy", - "link": "https://www.reddit.com/r/tech/comments/18iytaq/waxactuated_adaptive_tiles_radically_cut_heating/", - "pubDate": "2023-12-15T12:18:24.000Z", - "author": "/u/chrisdh79", - "content": "
\"Wax-actuated submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18iytaq", - "isoDate": "2023-12-15T12:18:24.000Z" - }, - { - "title": "iPhone butler? Robot masters to open cupboard, pull chair, in 20 mins | Dobb-E, a domestic robotics system, learns household tasks in 20 mins, overcoming data challenges. Open source for collaborative advancement.", - "link": "https://www.reddit.com/r/tech/comments/18j20qk/iphone_butler_robot_masters_to_open_cupboard_pull/", - "pubDate": "2023-12-15T15:00:35.000Z", - "author": "/u/chrisdh79", - "content": "
\"iPhone submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18j20qk", - "isoDate": "2023-12-15T15:00:35.000Z" - }, - { - "title": "Scientists invent heat-controlling circuitry that keeps electronics cool", - "link": "https://www.reddit.com/r/tech/comments/18xo622/scientists_invent_heatcontrolling_circuitry_that/", - "pubDate": "2024-01-03T17:08:11.000Z", - "author": "/u/scientificamerican", - "content": "
\"Scientists submitted by /u/scientificamerican
[link] [comments]
", - "contentSnippet": "submitted by /u/scientificamerican \n [link] [comments]", - "id": "t3_18xo622", - "isoDate": "2024-01-03T17:08:11.000Z" - }, - { - "title": "Researchers have successfully engineered the world's first functional semiconductor using graphene | In the 21st century, the pursuit is to develop electronic devices that are both smaller and faster, whether for applications in the medical sector or robotics.", - "link": "https://www.reddit.com/r/tech/comments/18xnv3s/researchers_have_successfully_engineered_the/", - "pubDate": "2024-01-03T16:51:28.000Z", - "author": "/u/chrisdh79", - "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18xnv3s", - "isoDate": "2024-01-03T16:51:28.000Z" - }, - { - "title": "In a breakthrough, diabetics\u2019 damaged cells regenerated to produce insulin | The discovery could mean that, one day, diabetics won't need to take multiple daily insulin injections.", - "link": "https://www.reddit.com/r/tech/comments/18yc3yv/in_a_breakthrough_diabetics_damaged_cells/", - "pubDate": "2024-01-04T12:33:19.000Z", - "author": "/u/chrisdh79", - "content": "
\"In submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18yc3yv", - "isoDate": "2024-01-04T12:33:19.000Z" - }, - { - "title": "Non-toxic materials open door for better cameras on consumer electronics | Researchers from ICFO and Qurv have developed a new type of quantum dots that are non-toxic and phosphine-free and can achieve high performance in the SWIR range.", - "link": "https://www.reddit.com/r/tech/comments/18ybfmm/nontoxic_materials_open_door_for_better_cameras/", - "pubDate": "2024-01-04T11:56:05.000Z", - "author": "/u/chrisdh79", - "content": "
\"Non-toxic submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ybfmm", - "isoDate": "2024-01-04T11:56:05.000Z" - }, - { - "title": "\u2018Smart tweezer\u2019 can pluck out single bacterium target from microbiome", - "link": "https://www.reddit.com/r/tech/comments/18z5end/smart_tweezer_can_pluck_out_single_bacterium/", - "pubDate": "2024-01-05T12:07:41.000Z", - "author": "/u/chrisdh79", - "content": "
\"\u2018Smart submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18z5end", - "isoDate": "2024-01-05T12:07:41.000Z" - }, - { - "title": "World's first partial heart transplant grows valves and arteries | This method can 'potentially double the number of hearts that are used for the benefit of children with heart disease.'", - "link": "https://www.reddit.com/r/tech/comments/18ymjpj/worlds_first_partial_heart_transplant_grows/", - "pubDate": "2024-01-04T20:08:14.000Z", - "author": "/u/chrisdh79", - "content": "
\"World's submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ymjpj", - "isoDate": "2024-01-04T20:08:14.000Z" - }, - { - "title": "E-Nose Sniffs Out Coffee Varieties Nearly Perfectly | Like Shazam but for java, the tech can help quantify coffee signatures", - "link": "https://www.reddit.com/r/tech/comments/1940hv0/enose_sniffs_out_coffee_varieties_nearly/", - "pubDate": "2024-01-11T12:24:08.000Z", - "author": "/u/chrisdh79", - "content": "
\"E-Nose submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_1940hv0", - "isoDate": "2024-01-11T12:24:08.000Z" - }, - { - "title": "Innovative design achieves tenfold better resolution for functional MRI brain imaging", - "link": "https://www.reddit.com/r/tech/comments/1949o4t/innovative_design_achieves_tenfold_better/", - "pubDate": "2024-01-11T19:09:39.000Z", - "author": "/u/Sariel007", - "content": "
\"Innovative submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_1949o4t", - "isoDate": "2024-01-11T19:09:39.000Z" - }, - { - "title": "\"Millennium Camera\" to take a 1,000-year long-exposure photo", - "link": "https://www.reddit.com/r/tech/comments/194u6e1/millennium_camera_to_take_a_1000year_longexposure/", - "pubDate": "2024-01-12T12:43:58.000Z", - "author": "/u/chrisdh79", - "content": "
\""Millennium submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_194u6e1", - "isoDate": "2024-01-12T12:43:58.000Z" - }, - { - "title": "How Microsoft found a potential new battery material using AI", - "link": "https://www.reddit.com/r/tech/comments/194imwe/how_microsoft_found_a_potential_new_battery/", - "pubDate": "2024-01-12T01:28:47.000Z", - "author": "/u/Sariel007", - "content": "
\"How submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_194imwe", - "isoDate": "2024-01-12T01:28:47.000Z" - }, - { - "title": "Researchers trap CO2 from air into nanofibers to prevent its release | The two-step process also produces hydrogen gas as a by-product, which could also be used as a zero-emission fuel.", - "link": "https://www.reddit.com/r/tech/comments/194hvcu/researchers_trap_co2_from_air_into_nanofibers_to/", - "pubDate": "2024-01-12T00:53:31.000Z", - "author": "/u/chrisdh79", - "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_194hvcu", - "isoDate": "2024-01-12T00:53:31.000Z" - }, - { - "title": "EU breakthrough laser beams could power nanosatellites in space wirelessly | The research project demonstrated a power output of 20 watts using a fiber-optic laser and aims to increase this to kilowatts in the future.", - "link": "https://www.reddit.com/r/tech/comments/199odht/eu_breakthrough_laser_beams_could_power/", - "pubDate": "2024-01-18T11:48:58.000Z", - "author": "/u/chrisdh79", - "content": "
\"EU submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_199odht", - "isoDate": "2024-01-18T11:48:58.000Z" - }, - { - "title": "\"Dirt-powered fuel cell\" draws near-limitless energy from soil | Paperback-sized device that nestles in soil, harvests power created as microbes break down dirt.", - "link": "https://www.reddit.com/r/tech/comments/198v99i/dirtpowered_fuel_cell_draws_nearlimitless_energy/", - "pubDate": "2024-01-17T12:18:24.000Z", - "author": "/u/chrisdh79", - "content": "
\""Dirt-powered submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_198v99i", - "isoDate": "2024-01-17T12:18:24.000Z" - }, - { - "title": "Researchers use wireless sensor 5 times thinner than hair to map brain | UC San Diego researchers unveil a revolutionary brain monitoring system, enabling high-resolution, wireless recording in deep brain structures for diverse clinical applications.", - "link": "https://www.reddit.com/r/tech/comments/198v1gl/researchers_use_wireless_sensor_5_times_thinner/", - "pubDate": "2024-01-17T12:05:35.000Z", - "author": "/u/chrisdh79", - "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_198v1gl", - "isoDate": "2024-01-17T12:05:35.000Z" - }, - { - "title": "Samsung\u2019s new Galaxy AI features are only free for a limited time!", - "link": "https://www.reddit.com/r/tech/comments/199swbz/samsungs_new_galaxy_ai_features_are_only_free_for/", - "pubDate": "2024-01-18T15:37:25.000Z", - "author": "/u/its_Safiullah", - "content": "
\"Samsung\u2019s submitted by /u/its_Safiullah
[link] [comments]
", - "contentSnippet": "submitted by /u/its_Safiullah \n [link] [comments]", - "id": "t3_199swbz", - "isoDate": "2024-01-18T15:37:25.000Z" - }, - { - "title": "Crop Health Sensor Runs on Solar, Microbe Power | Electrical measurements on plant stem enable better water resource monitoring", - "link": "https://www.reddit.com/r/tech/comments/199oo7c/crop_health_sensor_runs_on_solar_microbe_power/", - "pubDate": "2024-01-18T12:06:20.000Z", - "author": "/u/chrisdh79", - "content": "
\"Crop submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_199oo7c", - "isoDate": "2024-01-18T12:06:20.000Z" - }, - { - "title": "Researchers develop artificial 'power plants' in the form of tiny leaf-shapes to harness energy from the wind and rain.", - "link": "https://www.reddit.com/r/tech/comments/19a81tm/researchers_develop_artificial_power_plants_in/", - "pubDate": "2024-01-19T02:22:31.000Z", - "author": "/u/chrisdh79", - "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_19a81tm", - "isoDate": "2024-01-19T02:22:31.000Z" - }, - { - "title": "The next generation of nuclear reactors is getting more advanced. Here\u2019s how.", - "link": "https://www.reddit.com/r/tech/comments/19ajjit/the_next_generation_of_nuclear_reactors_is/", - "pubDate": "2024-01-19T13:50:52.000Z", - "author": "/u/Sariel007", - "content": "
\"The submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_19ajjit", - "isoDate": "2024-01-19T13:50:52.000Z" - }, - { - "title": "Three people were gene-edited in an effort to cure their HIV. The result is unknown. CRISPR is being used in an experimental effort to eliminate the virus that causes AIDS.", - "link": "https://www.reddit.com/r/tech/comments/17h61vm/three_people_were_geneedited_in_an_effort_to_cure/", - "pubDate": "2023-10-26T20:38:42.000Z", - "author": "/u/Sariel007", - "content": "
\"Three submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_17h61vm", - "isoDate": "2023-10-26T20:38:42.000Z" - }, - { - "title": "New Training Method Helps AI Generalize like People Do", - "link": "https://www.reddit.com/r/tech/comments/17h4qzk/new_training_method_helps_ai_generalize_like/", - "pubDate": "2023-10-26T19:41:44.000Z", - "author": "/u/JackFisherBooks", - "content": "
\"New submitted by /u/JackFisherBooks
[link] [comments]
", - "contentSnippet": "submitted by /u/JackFisherBooks \n [link] [comments]", - "id": "t3_17h4qzk", - "isoDate": "2023-10-26T19:41:44.000Z" - }, - { - "title": "Everdrone E2 launched to deliver life-saving medical equipment in minutes", - "link": "https://www.reddit.com/r/tech/comments/17gw1ju/everdrone_e2_launched_to_deliver_lifesaving/", - "pubDate": "2023-10-26T13:03:18.000Z", - "author": "/u/chrisdh79", - "content": "
\"Everdrone submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17gw1ju", - "isoDate": "2023-10-26T13:03:18.000Z" - }, - { - "title": "Water-injected 2.0-liter turbo-four hydrogen engine spits out 410 hp", - "link": "https://www.reddit.com/r/tech/comments/17hn5lp/waterinjected_20liter_turbofour_hydrogen_engine/", - "pubDate": "2023-10-27T13:07:05.000Z", - "author": "/u/chrisdh79", - "content": "
\"Water-injected submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17hn5lp", - "isoDate": "2023-10-27T13:07:05.000Z" - }, - { - "title": "UBC, Honda researchers develop robot arm with human skin-like sensors | \"As sensors continue to evolve to be more skin-like, there is a need for robots to be smarter. Developments in sensors and artificial intelligence will need to go hand in hand\"", - "link": "https://www.reddit.com/r/tech/comments/17hmx5m/ubc_honda_researchers_develop_robot_arm_with/", - "pubDate": "2023-10-27T12:55:05.000Z", - "author": "/u/chrisdh79", - "content": "
\"UBC, submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17hmx5m", - "isoDate": "2023-10-27T12:55:05.000Z" - } -] \ No newline at end of file + { + "title": "Analysts predict more brands will flee X after Musk tirade", + "link": "https://www.reddit.com/r/tech/comments/187r3h0/analysts_predict_more_brands_will_flee_x_after/", + "pubDate": "2023-11-30T19:40:16.000Z", + "author": "/u/politicsandric", + "content": "
\"Analysts submitted by /u/politicsandric
[link] [comments]
", + "contentSnippet": "submitted by /u/politicsandric \n [link] [comments]", + "id": "t3_187r3h0", + "isoDate": "2023-11-30T19:40:16.000Z" + }, + { + "title": "Michigan installs the US's first wireless EV charging public roadway", + "link": "https://www.reddit.com/r/tech/comments/187pj5t/michigan_installs_the_uss_first_wireless_ev/", + "pubDate": "2023-11-30T18:33:36.000Z", + "author": "/u/terminally_chill206", + "content": "
\"Michigan submitted by /u/terminally_chill206
[link] [comments]
", + "contentSnippet": "submitted by /u/terminally_chill206 \n [link] [comments]", + "id": "t3_187pj5t", + "isoDate": "2023-11-30T18:33:36.000Z" + }, + { + "title": "Tiny living robots made from human cells surprise scientists", + "link": "https://www.reddit.com/r/tech/comments/187xtfd/tiny_living_robots_made_from_human_cells_surprise/", + "pubDate": "2023-12-01T00:22:25.000Z", + "author": "/u/cnn", + "content": "
\"Tiny submitted by /u/cnn
[link] [comments]
", + "contentSnippet": "submitted by /u/cnn \n [link] [comments]", + "id": "t3_187xtfd", + "isoDate": "2023-12-01T00:22:25.000Z" + }, + { + "title": "At-home saliva testing could replace daily finger-jabs for diabetics", + "link": "https://www.reddit.com/r/tech/comments/187zg5j/athome_saliva_testing_could_replace_daily/", + "pubDate": "2023-12-01T01:36:02.000Z", + "author": "/u/chrisdh79", + "content": "
\"At-home submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_187zg5j", + "isoDate": "2023-12-01T01:36:02.000Z" + }, + { + "title": "The lucky break behind the first CRISPR treatment. Gene editing for sickle-cell is here. This is how researchers knew what DNA to change.", + "link": "https://www.reddit.com/r/tech/comments/18d9d87/the_lucky_break_behind_the_first_crispr_treatment/", + "pubDate": "2023-12-07T23:55:03.000Z", + "author": "/u/Sariel007", + "content": "
\"The submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_18d9d87", + "isoDate": "2023-12-07T23:55:03.000Z" + }, + { + "title": "Rolls Royce plans '120-inch-long' mini nuclear reactor for Moon outpost | The auto giant displayed a conceptual model design of a nuclear Space Micro-Reactor at the UK Space Conference.", + "link": "https://www.reddit.com/r/tech/comments/18cy30u/rolls_royce_plans_120inchlong_mini_nuclear/", + "pubDate": "2023-12-07T15:30:20.000Z", + "author": "/u/chrisdh79", + "content": "
\"Rolls submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18cy30u", + "isoDate": "2023-12-07T15:30:20.000Z" + }, + { + "title": "Researchers use wood to create low-cost, long-lasting solar cells | Kraft lignin found in wood pulp improves the stability in organic solar cells due its ability to form hydrogen bonds that acts as a sort of glue.", + "link": "https://www.reddit.com/r/tech/comments/18cvb7h/researchers_use_wood_to_create_lowcost/", + "pubDate": "2023-12-07T13:12:53.000Z", + "author": "/u/chrisdh79", + "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18cvb7h", + "isoDate": "2023-12-07T13:12:53.000Z" + }, + { + "title": "US researchers become first to 3D-print steam turbine blades | ORNL researchers, in collaboration with Siemens tech, have achieved a milestone by 3D-printing large steam turbine blades.", + "link": "https://www.reddit.com/r/tech/comments/18ibfdm/us_researchers_become_first_to_3dprint_steam/", + "pubDate": "2023-12-14T15:43:19.000Z", + "author": "/u/chrisdh79", + "content": "
\"US submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ibfdm", + "isoDate": "2023-12-14T15:43:19.000Z" + }, + { + "title": "AI-Powered Microdisplay Adapts to Users\u2019 Eyesight", + "link": "https://www.reddit.com/r/tech/comments/18iagvr/aipowered_microdisplay_adapts_to_users_eyesight/", + "pubDate": "2023-12-14T14:59:12.000Z", + "author": "/u/Sariel007", + "content": "
\"AI-Powered submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_18iagvr", + "isoDate": "2023-12-14T14:59:12.000Z" + }, + { + "title": "Microsoft, AFL-CIO reach deal on AI, labor neutrality", + "link": "https://www.reddit.com/r/tech/comments/18i43ld/microsoft_aflcio_reach_deal_on_ai_labor_neutrality/", + "pubDate": "2023-12-14T08:28:29.000Z", + "author": "/u/mrmowfly186", + "content": " submitted by /u/mrmowfly186
[link] [comments]", + "contentSnippet": "submitted by /u/mrmowfly186 \n [link] [comments]", + "id": "t3_18i43ld", + "isoDate": "2023-12-14T08:28:29.000Z" + }, + { + "title": "Ultrafast laser technology could help advance radiotherapy and treat tumors that are resistant to conventional radiotherapy.", + "link": "https://www.reddit.com/r/tech/comments/18iyzqy/ultrafast_laser_technology_could_help_advance/", + "pubDate": "2023-12-15T12:29:29.000Z", + "author": "/u/chrisdh79", + "content": "
\"Ultrafast submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18iyzqy", + "isoDate": "2023-12-15T12:29:29.000Z" + }, + { + "title": "Wax-actuated adaptive tiles radically cut heating and cooling energy", + "link": "https://www.reddit.com/r/tech/comments/18iytaq/waxactuated_adaptive_tiles_radically_cut_heating/", + "pubDate": "2023-12-15T12:18:24.000Z", + "author": "/u/chrisdh79", + "content": "
\"Wax-actuated submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18iytaq", + "isoDate": "2023-12-15T12:18:24.000Z" + }, + { + "title": "iPhone butler? Robot masters to open cupboard, pull chair, in 20 mins | Dobb-E, a domestic robotics system, learns household tasks in 20 mins, overcoming data challenges. Open source for collaborative advancement.", + "link": "https://www.reddit.com/r/tech/comments/18j20qk/iphone_butler_robot_masters_to_open_cupboard_pull/", + "pubDate": "2023-12-15T15:00:35.000Z", + "author": "/u/chrisdh79", + "content": "
\"iPhone submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18j20qk", + "isoDate": "2023-12-15T15:00:35.000Z" + }, + { + "title": "Scientists invent heat-controlling circuitry that keeps electronics cool", + "link": "https://www.reddit.com/r/tech/comments/18xo622/scientists_invent_heatcontrolling_circuitry_that/", + "pubDate": "2024-01-03T17:08:11.000Z", + "author": "/u/scientificamerican", + "content": "
\"Scientists submitted by /u/scientificamerican
[link] [comments]
", + "contentSnippet": "submitted by /u/scientificamerican \n [link] [comments]", + "id": "t3_18xo622", + "isoDate": "2024-01-03T17:08:11.000Z" + }, + { + "title": "Researchers have successfully engineered the world's first functional semiconductor using graphene | In the 21st century, the pursuit is to develop electronic devices that are both smaller and faster, whether for applications in the medical sector or robotics.", + "link": "https://www.reddit.com/r/tech/comments/18xnv3s/researchers_have_successfully_engineered_the/", + "pubDate": "2024-01-03T16:51:28.000Z", + "author": "/u/chrisdh79", + "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18xnv3s", + "isoDate": "2024-01-03T16:51:28.000Z" + }, + { + "title": "In a breakthrough, diabetics\u2019 damaged cells regenerated to produce insulin | The discovery could mean that, one day, diabetics won't need to take multiple daily insulin injections.", + "link": "https://www.reddit.com/r/tech/comments/18yc3yv/in_a_breakthrough_diabetics_damaged_cells/", + "pubDate": "2024-01-04T12:33:19.000Z", + "author": "/u/chrisdh79", + "content": "
\"In submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18yc3yv", + "isoDate": "2024-01-04T12:33:19.000Z" + }, + { + "title": "Non-toxic materials open door for better cameras on consumer electronics | Researchers from ICFO and Qurv have developed a new type of quantum dots that are non-toxic and phosphine-free and can achieve high performance in the SWIR range.", + "link": "https://www.reddit.com/r/tech/comments/18ybfmm/nontoxic_materials_open_door_for_better_cameras/", + "pubDate": "2024-01-04T11:56:05.000Z", + "author": "/u/chrisdh79", + "content": "
\"Non-toxic submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ybfmm", + "isoDate": "2024-01-04T11:56:05.000Z" + }, + { + "title": "\u2018Smart tweezer\u2019 can pluck out single bacterium target from microbiome", + "link": "https://www.reddit.com/r/tech/comments/18z5end/smart_tweezer_can_pluck_out_single_bacterium/", + "pubDate": "2024-01-05T12:07:41.000Z", + "author": "/u/chrisdh79", + "content": "
\"\u2018Smart submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18z5end", + "isoDate": "2024-01-05T12:07:41.000Z" + }, + { + "title": "World's first partial heart transplant grows valves and arteries | This method can 'potentially double the number of hearts that are used for the benefit of children with heart disease.'", + "link": "https://www.reddit.com/r/tech/comments/18ymjpj/worlds_first_partial_heart_transplant_grows/", + "pubDate": "2024-01-04T20:08:14.000Z", + "author": "/u/chrisdh79", + "content": "
\"World's submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ymjpj", + "isoDate": "2024-01-04T20:08:14.000Z" + }, + { + "title": "E-Nose Sniffs Out Coffee Varieties Nearly Perfectly | Like Shazam but for java, the tech can help quantify coffee signatures", + "link": "https://www.reddit.com/r/tech/comments/1940hv0/enose_sniffs_out_coffee_varieties_nearly/", + "pubDate": "2024-01-11T12:24:08.000Z", + "author": "/u/chrisdh79", + "content": "
\"E-Nose submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_1940hv0", + "isoDate": "2024-01-11T12:24:08.000Z" + }, + { + "title": "Innovative design achieves tenfold better resolution for functional MRI brain imaging", + "link": "https://www.reddit.com/r/tech/comments/1949o4t/innovative_design_achieves_tenfold_better/", + "pubDate": "2024-01-11T19:09:39.000Z", + "author": "/u/Sariel007", + "content": "
\"Innovative submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_1949o4t", + "isoDate": "2024-01-11T19:09:39.000Z" + }, + { + "title": "\"Millennium Camera\" to take a 1,000-year long-exposure photo", + "link": "https://www.reddit.com/r/tech/comments/194u6e1/millennium_camera_to_take_a_1000year_longexposure/", + "pubDate": "2024-01-12T12:43:58.000Z", + "author": "/u/chrisdh79", + "content": "
\""Millennium submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_194u6e1", + "isoDate": "2024-01-12T12:43:58.000Z" + }, + { + "title": "How Microsoft found a potential new battery material using AI", + "link": "https://www.reddit.com/r/tech/comments/194imwe/how_microsoft_found_a_potential_new_battery/", + "pubDate": "2024-01-12T01:28:47.000Z", + "author": "/u/Sariel007", + "content": "
\"How submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_194imwe", + "isoDate": "2024-01-12T01:28:47.000Z" + }, + { + "title": "Researchers trap CO2 from air into nanofibers to prevent its release | The two-step process also produces hydrogen gas as a by-product, which could also be used as a zero-emission fuel.", + "link": "https://www.reddit.com/r/tech/comments/194hvcu/researchers_trap_co2_from_air_into_nanofibers_to/", + "pubDate": "2024-01-12T00:53:31.000Z", + "author": "/u/chrisdh79", + "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_194hvcu", + "isoDate": "2024-01-12T00:53:31.000Z" + }, + { + "title": "EU breakthrough laser beams could power nanosatellites in space wirelessly | The research project demonstrated a power output of 20 watts using a fiber-optic laser and aims to increase this to kilowatts in the future.", + "link": "https://www.reddit.com/r/tech/comments/199odht/eu_breakthrough_laser_beams_could_power/", + "pubDate": "2024-01-18T11:48:58.000Z", + "author": "/u/chrisdh79", + "content": "
\"EU submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_199odht", + "isoDate": "2024-01-18T11:48:58.000Z" + }, + { + "title": "\"Dirt-powered fuel cell\" draws near-limitless energy from soil | Paperback-sized device that nestles in soil, harvests power created as microbes break down dirt.", + "link": "https://www.reddit.com/r/tech/comments/198v99i/dirtpowered_fuel_cell_draws_nearlimitless_energy/", + "pubDate": "2024-01-17T12:18:24.000Z", + "author": "/u/chrisdh79", + "content": "
\""Dirt-powered submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_198v99i", + "isoDate": "2024-01-17T12:18:24.000Z" + }, + { + "title": "Researchers use wireless sensor 5 times thinner than hair to map brain | UC San Diego researchers unveil a revolutionary brain monitoring system, enabling high-resolution, wireless recording in deep brain structures for diverse clinical applications.", + "link": "https://www.reddit.com/r/tech/comments/198v1gl/researchers_use_wireless_sensor_5_times_thinner/", + "pubDate": "2024-01-17T12:05:35.000Z", + "author": "/u/chrisdh79", + "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_198v1gl", + "isoDate": "2024-01-17T12:05:35.000Z" + }, + { + "title": "Samsung\u2019s new Galaxy AI features are only free for a limited time!", + "link": "https://www.reddit.com/r/tech/comments/199swbz/samsungs_new_galaxy_ai_features_are_only_free_for/", + "pubDate": "2024-01-18T15:37:25.000Z", + "author": "/u/its_Safiullah", + "content": "
\"Samsung\u2019s submitted by /u/its_Safiullah
[link] [comments]
", + "contentSnippet": "submitted by /u/its_Safiullah \n [link] [comments]", + "id": "t3_199swbz", + "isoDate": "2024-01-18T15:37:25.000Z" + }, + { + "title": "Crop Health Sensor Runs on Solar, Microbe Power | Electrical measurements on plant stem enable better water resource monitoring", + "link": "https://www.reddit.com/r/tech/comments/199oo7c/crop_health_sensor_runs_on_solar_microbe_power/", + "pubDate": "2024-01-18T12:06:20.000Z", + "author": "/u/chrisdh79", + "content": "
\"Crop submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_199oo7c", + "isoDate": "2024-01-18T12:06:20.000Z" + }, + { + "title": "Researchers develop artificial 'power plants' in the form of tiny leaf-shapes to harness energy from the wind and rain.", + "link": "https://www.reddit.com/r/tech/comments/19a81tm/researchers_develop_artificial_power_plants_in/", + "pubDate": "2024-01-19T02:22:31.000Z", + "author": "/u/chrisdh79", + "content": "
\"Researchers submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_19a81tm", + "isoDate": "2024-01-19T02:22:31.000Z" + }, + { + "title": "The next generation of nuclear reactors is getting more advanced. Here\u2019s how.", + "link": "https://www.reddit.com/r/tech/comments/19ajjit/the_next_generation_of_nuclear_reactors_is/", + "pubDate": "2024-01-19T13:50:52.000Z", + "author": "/u/Sariel007", + "content": "
\"The submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_19ajjit", + "isoDate": "2024-01-19T13:50:52.000Z" + }, + { + "title": "Three people were gene-edited in an effort to cure their HIV. The result is unknown. CRISPR is being used in an experimental effort to eliminate the virus that causes AIDS.", + "link": "https://www.reddit.com/r/tech/comments/17h61vm/three_people_were_geneedited_in_an_effort_to_cure/", + "pubDate": "2023-10-26T20:38:42.000Z", + "author": "/u/Sariel007", + "content": "
\"Three submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_17h61vm", + "isoDate": "2023-10-26T20:38:42.000Z" + }, + { + "title": "New Training Method Helps AI Generalize like People Do", + "link": "https://www.reddit.com/r/tech/comments/17h4qzk/new_training_method_helps_ai_generalize_like/", + "pubDate": "2023-10-26T19:41:44.000Z", + "author": "/u/JackFisherBooks", + "content": "
\"New submitted by /u/JackFisherBooks
[link] [comments]
", + "contentSnippet": "submitted by /u/JackFisherBooks \n [link] [comments]", + "id": "t3_17h4qzk", + "isoDate": "2023-10-26T19:41:44.000Z" + }, + { + "title": "Everdrone E2 launched to deliver life-saving medical equipment in minutes", + "link": "https://www.reddit.com/r/tech/comments/17gw1ju/everdrone_e2_launched_to_deliver_lifesaving/", + "pubDate": "2023-10-26T13:03:18.000Z", + "author": "/u/chrisdh79", + "content": "
\"Everdrone submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17gw1ju", + "isoDate": "2023-10-26T13:03:18.000Z" + }, + { + "title": "Water-injected 2.0-liter turbo-four hydrogen engine spits out 410 hp", + "link": "https://www.reddit.com/r/tech/comments/17hn5lp/waterinjected_20liter_turbofour_hydrogen_engine/", + "pubDate": "2023-10-27T13:07:05.000Z", + "author": "/u/chrisdh79", + "content": "
\"Water-injected submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17hn5lp", + "isoDate": "2023-10-27T13:07:05.000Z" + }, + { + "title": "UBC, Honda researchers develop robot arm with human skin-like sensors | \"As sensors continue to evolve to be more skin-like, there is a need for robots to be smarter. Developments in sensors and artificial intelligence will need to go hand in hand\"", + "link": "https://www.reddit.com/r/tech/comments/17hmx5m/ubc_honda_researchers_develop_robot_arm_with/", + "pubDate": "2023-10-27T12:55:05.000Z", + "author": "/u/chrisdh79", + "content": "
\"UBC, submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17hmx5m", + "isoDate": "2023-10-27T12:55:05.000Z" + } +] diff --git a/intro to react/newData/oldNews/4198267edfc51ba821d17740839c4d7557c2fb89c233e987d644d4f969f210e3.json b/intro to react/newData/oldNews/4198267edfc51ba821d17740839c4d7557c2fb89c233e987d644d4f969f210e3.json index a4bb7cc..e09c79c 100644 --- a/intro to react/newData/oldNews/4198267edfc51ba821d17740839c4d7557c2fb89c233e987d644d4f969f210e3.json +++ b/intro to react/newData/oldNews/4198267edfc51ba821d17740839c4d7557c2fb89c233e987d644d4f969f210e3.json @@ -1,906 +1,906 @@ [ - { - "title": "Press release: Minister for Armed Forces calls out Russian aggression during OSCE Ministerial Council", - "link": "https://www.gov.uk/government/news/minister-for-armed-forces-calls-out-russian-aggression-during-osce-ministerial-council", - "pubDate": "2023-11-30T20:32:12.000Z", - "summary": "Minister for Armed Forces attends OSCE Ministerial Council in North Macedonia to call out Russian aggression across Europe.", - "id": "https://www.gov.uk/government/news/minister-for-armed-forces-calls-out-russian-aggression-during-osce-ministerial-council#2023-11-30T20:32:12Z", - "isoDate": "2023-11-30T20:32:12.000Z" - }, - { - "title": "Guidance: Global Support Organisation overseas guides: Scandinavia", - "link": "https://www.gov.uk/government/publications/global-support-organisation-overseas-guides-scandinavia", - "pubDate": "2023-11-30T15:25:44.000Z", - "summary": "A Global Support Organisation location guide.", - "id": "https://www.gov.uk/government/publications/global-support-organisation-overseas-guides-scandinavia#2023-11-30T15:25:44Z", - "isoDate": "2023-11-30T15:25:44.000Z" - }, - { - "title": "News story: UK companies selected for NATO innovation challenge", - "link": "https://www.gov.uk/government/news/uk-companies-selected-for-nato-innovation-challenge", - "pubDate": "2023-11-30T14:21:19.000Z", - "summary": "Seven UK companies have been selected to take part in NATO\u2019s pilot challenges providing the opportunity to refine their products and keep NATO populations safe.", - "id": "https://www.gov.uk/government/news/uk-companies-selected-for-nato-innovation-challenge#2023-11-30T14:21:19Z", - "isoDate": "2023-11-30T14:21:19.000Z" - }, - { - "title": "Guidance: Salisbury Plain Training Area (SPTA) firing times", - "link": "https://www.gov.uk/government/publications/salisbury-plain-training-area-spta-firing-times", - "pubDate": "2023-11-30T14:02:24.000Z", - "summary": "Information on Salisbury Plain Training Area's (SPTA) firing times.", - "id": "https://www.gov.uk/government/publications/salisbury-plain-training-area-spta-firing-times#2023-11-30T14:02:24Z", - "isoDate": "2023-11-30T14:02:24.000Z" - }, - { - "title": "Guidance: Defence Employer Recognition Scheme", - "link": "https://www.gov.uk/government/publications/defence-employer-recognition-scheme", - "pubDate": "2023-11-30T13:20:23.000Z", - "summary": "The Employer Recognition Scheme (ERS) encourages employers to support defence and inspire other organisations to do the same.", - "id": "https://www.gov.uk/government/publications/defence-employer-recognition-scheme#2023-11-30T13:20:23Z", - "isoDate": "2023-11-30T13:20:23.000Z" - }, - { - "title": "Press release: Introduction of Non-Religious Pastoral Officers for Armed Forces", - "link": "https://www.gov.uk/government/news/introduction-of-non-religious-pastoral-officers-for-armed-forces", - "pubDate": "2023-11-30T12:54:12.000Z", - "summary": "The Ministry of Defence has introduced Armed Forces Non-Religious Pastoral Officers (NRPO) to further bolster the support given to our Armed Forces. ", - "id": "https://www.gov.uk/government/news/introduction-of-non-religious-pastoral-officers-for-armed-forces#2023-11-30T12:54:12Z", - "isoDate": "2023-11-30T12:54:12.000Z" - }, - { - "title": "Transparency data: Military court centres court listings", - "link": "https://www.gov.uk/government/publications/military-court-centres-court-listings", - "pubDate": "2023-11-30T12:24:22.000Z", - "summary": "Court listings for the Military court centres.\r\n", - "id": "https://www.gov.uk/government/publications/military-court-centres-court-listings#2023-11-30T12:24:22Z", - "isoDate": "2023-11-30T12:24:22.000Z" - }, - { - "title": "Regulation: MAA regulatory notices (RN)", - "link": "https://www.gov.uk/government/publications/maa-regulatory-notices-rn", - "pubDate": "2023-11-30T12:06:33.000Z", - "summary": "RNs will be issued by the MAA to notify the RC of changes in MAA owned process, or provide operational or engineering guidance.", - "id": "https://www.gov.uk/government/publications/maa-regulatory-notices-rn#2023-11-30T12:06:33Z", - "isoDate": "2023-11-30T12:06:33.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1021: release to service authorities - roles and responsibilities", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1021-release-to-service-authorities-rtsa-roles-and-responsibilities", - "pubDate": "2023-11-30T12:06:26.000Z", - "summary": "RA covering the roles and responsibilities of the release to service authority (RTSA).", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1021-release-to-service-authorities-rtsa-roles-and-responsibilities#2023-11-30T12:06:26Z", - "isoDate": "2023-11-30T12:06:26.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1029: ship-air release - roles and responsibilities", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1029-ship-air-release-stakeholder-roles-and-responsibilities", - "pubDate": "2023-11-30T12:06:16.000Z", - "summary": "RA covers stakeholder roles and responsibilities and interfaces associated with the ship-air release process.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1029-ship-air-release-stakeholder-roles-and-responsibilities#2023-11-30T12:06:16Z", - "isoDate": "2023-11-30T12:06:16.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1208: flight data monitoring", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1208-flight-data-monitoring", - "pubDate": "2023-11-30T12:06:08.000Z", - "summary": "RA covering requirements to introduce and manage Flight Data Monitoring for Air Systems fitted with a Flight Data Recorder.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1208-flight-data-monitoring#2023-11-30T12:06:08Z", - "isoDate": "2023-11-30T12:06:08.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1210: ownership and management of operating risk (risk to life)", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1210-ownership-and-management-of-operating-risk-risk-to-life", - "pubDate": "2023-11-30T12:05:59.000Z", - "summary": "RA covering the ownership and management of risk to life using a standardised approach and with regard to future risks.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1210-ownership-and-management-of-operating-risk-risk-to-life#2023-11-30T12:05:59Z", - "isoDate": "2023-11-30T12:05:59.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1300: release to service", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1300-release-to-service-rts", - "pubDate": "2023-11-30T12:05:51.000Z", - "summary": "RA covering the need for the release to service (RTS), its contents, defining the as flown configuration, limitations and the RTS recommendation.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1300-release-to-service-rts#2023-11-30T12:05:51Z", - "isoDate": "2023-11-30T12:05:51.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1395: authorization to permit embarked aviation in His Majesty\u2019s / MOD ships", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1395-authorization-to-permit-embarked-aviation-in-her-majestysmod-ships", - "pubDate": "2023-11-30T12:05:44.000Z", - "summary": "RA covers the authorization to permit embarked aviation in HM/MOD Ships, primarily through the 'ship-air release' process.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1395-authorization-to-permit-embarked-aviation-in-her-majestysmod-ships#2023-11-30T12:05:44Z", - "isoDate": "2023-11-30T12:05:44.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1600: remotely piloted air systems (RPAS)", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1600-remotely-piloted-air-systems-rpas", - "pubDate": "2023-11-30T12:05:36.000Z", - "summary": "RA covering the categorization and regulatory requirements of RPAS.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1600-remotely-piloted-air-systems-rpas#2023-11-30T12:05:36Z", - "isoDate": "2023-11-30T12:05:36.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1601: remotely piloted air systems open A1 sub-category (fly \u2018over\u2019 people)", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1601-remotely-piloted-air-systems-rpas-class-ia", - "pubDate": "2023-11-30T12:05:29.000Z", - "summary": "RA covering the specific regulations to assure the safe operation of open A1 sub-category RPAS.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1601-remotely-piloted-air-systems-rpas-class-ia#2023-11-30T12:05:29Z", - "isoDate": "2023-11-30T12:05:29.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1602: remotely piloted air systems open A2 sub-category (fly \u2018close to\u2019 people)", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1602-remotely-piloted-air-systems-rpas-class-ib", - "pubDate": "2023-11-30T12:05:21.000Z", - "summary": "RA covering the specific regulations to assure the safe operation of open A2 sub-category RPAS.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1602-remotely-piloted-air-systems-rpas-class-ib#2023-11-30T12:05:21Z", - "isoDate": "2023-11-30T12:05:21.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1603: remotely piloted air systems open A3 sub-category (fly \u2018far from\u2019 people)", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1603-remotely-piloted-air-systems-rpas-class-ib-mil", - "pubDate": "2023-11-30T12:05:12.000Z", - "summary": "RA covering the specific regulations to assure the safe operation of open A3 sub-category RPAS.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1603-remotely-piloted-air-systems-rpas-class-ib-mil#2023-11-30T12:05:12Z", - "isoDate": "2023-11-30T12:05:12.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1604: remotely piloted air systems specific S1 sub-category", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1604-remotely-piloted-air-systems-rpas-class-ic", - "pubDate": "2023-11-30T12:05:04.000Z", - "summary": "RA covering the specific regulations to assure the safe operation of specific S1 sub-category RPAS.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1604-remotely-piloted-air-systems-rpas-class-ic#2023-11-30T12:05:04Z", - "isoDate": "2023-11-30T12:05:04.000Z" - }, - { - "title": "Regulation: Regulatory Article (RA) 1605: remotely piloted air systems specific S2 sub-category", - "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1605-remotely-piloted-air-systems-rpas-class-id", - "pubDate": "2023-11-30T12:04:56.000Z", - "summary": "RA covering the specific regulations to assure the safe operation of specific S2 sub-category RPAS.", - "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1605-remotely-piloted-air-systems-rpas-class-id#2023-11-30T12:04:56Z", - "isoDate": "2023-11-30T12:04:56.000Z" - }, - { - "title": "Guidance: Management of health and safety in defence: arrangements (JSP 375 volume 1)", - "link": "https://www.gov.uk/government/publications/jsp-375-health-and-safety-handbook-volume-2", - "pubDate": "2023-12-07T14:39:52.000Z", - "summary": "Provides the guidance and best practice that will assist the user to comply management of health and safety in defence. ", - "id": "https://www.gov.uk/government/publications/jsp-375-health-and-safety-handbook-volume-2#2023-12-07T14:39:52Z", - "isoDate": "2023-12-07T14:39:52.000Z" - }, - { - "title": "Guidance: Yoxter Range and dry training area firing notice", - "link": "https://www.gov.uk/government/publications/yoxter-range-and-dry-training-area-firing-notice", - "pubDate": "2023-12-07T14:39:25.000Z", - "summary": "Firing schedule for Yoxter Range and dry training area (YRDTA).", - "id": "https://www.gov.uk/government/publications/yoxter-range-and-dry-training-area-firing-notice#2023-12-07T14:39:25Z", - "isoDate": "2023-12-07T14:39:25.000Z" - }, - { - "title": "Guidance: Langport Range and dry training area firing notice", - "link": "https://www.gov.uk/government/publications/langport-range-and-dry-training-area-firing-notice", - "pubDate": "2023-12-07T14:39:14.000Z", - "summary": "Firing schedule for Langport Range and dry training area (LRDTA).", - "id": "https://www.gov.uk/government/publications/langport-range-and-dry-training-area-firing-notice#2023-12-07T14:39:14Z", - "isoDate": "2023-12-07T14:39:14.000Z" - }, - { - "title": "Guidance: Defence Estate Optimisation (DEO) Portfolio", - "link": "https://www.gov.uk/guidance/defence-estate-optimisation-deo-portfolio", - "pubDate": "2023-12-07T12:32:06.000Z", - "summary": "In November 2016, the Ministry of Defence (MOD) announced a 25-year strategy to modernise the Defence estate to support future capability requirements.", - "id": "https://www.gov.uk/guidance/defence-estate-optimisation-deo-portfolio#2023-12-07T12:32:06Z", - "isoDate": "2023-12-07T12:32:06.000Z" - }, - { - "title": "News story: MOD signs infrastructure contracts at RAF Waddington \u2013 the new home of the Red Arrows", - "link": "https://www.gov.uk/government/news/mod-signs-infrastructure-contracts-at-raf-waddington-the-new-home-of-the-red-arrows", - "pubDate": "2023-12-07T12:27:24.000Z", - "summary": "The MOD have signed contracts to provide new and refurbished infrastructure for the Red Arrows at their new home of RAF Waddington. ", - "id": "https://www.gov.uk/government/news/mod-signs-infrastructure-contracts-at-raf-waddington-the-new-home-of-the-red-arrows#2023-12-07T12:27:24Z", - "isoDate": "2023-12-07T12:27:24.000Z" - }, - { - "title": "Policy paper: Defence Operational Energy Strategy", - "link": "https://www.gov.uk/government/publications/defence-operational-energy-strategy", - "pubDate": "2023-12-07T11:05:56.000Z", - "summary": "The Defence Operational Energy Strategy (DOES) sets out how the Ministry of Defence (MOD) will respond to the global energy transition. ", - "id": "https://www.gov.uk/government/publications/defence-operational-energy-strategy#2023-12-07T11:05:56Z", - "isoDate": "2023-12-07T11:05:56.000Z" - }, - { - "title": "Policy paper: Air Operating Concept (AirOpC)", - "link": "https://www.gov.uk/government/publications/air-operating-concept-airopc", - "pubDate": "2023-12-07T10:43:25.000Z", - "summary": "The RAF\u2019s contribution to national defence and its evolution to succeed in a more contested and volatile world.", - "id": "https://www.gov.uk/government/publications/air-operating-concept-airopc#2023-12-07T10:43:25Z", - "isoDate": "2023-12-07T10:43:25.000Z" - }, - { - "title": "Guidance: Kingsbury ranges firing times", - "link": "https://www.gov.uk/government/publications/kingsbury-ranges-firing-times", - "pubDate": "2023-12-07T10:17:38.000Z", - "summary": "Warning notice of firing at Kingsbury ranges.", - "id": "https://www.gov.uk/government/publications/kingsbury-ranges-firing-times#2023-12-07T10:17:38Z", - "isoDate": "2023-12-07T10:17:38.000Z" - }, - { - "title": "Guidance: Sealand ranges firing times", - "link": "https://www.gov.uk/government/publications/sealand-ranges-firing-times", - "pubDate": "2023-12-07T10:17:08.000Z", - "summary": "Warning notice of firing at Sealand ranges.", - "id": "https://www.gov.uk/government/publications/sealand-ranges-firing-times#2023-12-07T10:17:08Z", - "isoDate": "2023-12-07T10:17:08.000Z" - }, - { - "title": "Guidance: Whittington ranges firing times", - "link": "https://www.gov.uk/government/publications/whittington-ranges-firing-times", - "pubDate": "2023-12-07T10:16:31.000Z", - "summary": "Warning notice of firing at Whittington ranges.", - "id": "https://www.gov.uk/government/publications/whittington-ranges-firing-times#2023-12-07T10:16:31Z", - "isoDate": "2023-12-07T10:16:31.000Z" - }, - { - "title": "Guidance: Military low flying: RAF operational low flying training timetable", - "link": "https://www.gov.uk/government/publications/operational-low-flying-training-timetable", - "pubDate": "2023-12-07T10:11:27.000Z", - "summary": "Royal Air Force (RAF) operational low flying training timetables in 3 areas of the UK.", - "id": "https://www.gov.uk/government/publications/operational-low-flying-training-timetable#2023-12-07T10:11:27Z", - "isoDate": "2023-12-07T10:11:27.000Z" - }, - { - "title": "News story: Artificial intelligence companies showcase defence capabilities at inaugural \u2018DAIC Connect\u2019 event", - "link": "https://www.gov.uk/government/news/artificial-intelligence-companies-showcase-defence-capabilities-at-inaugural-daic-connect-event", - "pubDate": "2023-12-07T09:30:09.000Z", - "summary": "More than 70 AI companies shared how their innovations can enhance defence\u2019s current and future capabilities at the inaugural DAIC Connect industry event on Monday 27 November. \u00a0", - "id": "https://www.gov.uk/government/news/artificial-intelligence-companies-showcase-defence-capabilities-at-inaugural-daic-connect-event#2023-12-07T09:30:09Z", - "isoDate": "2023-12-07T09:30:09.000Z" - }, - { - "title": "Official Statistics: UK armed forces and UK civilian operational casualty and fatality statistics: data up to 30 September 2023", - "link": "https://www.gov.uk/government/statistics/uk-armed-forces-and-uk-civilian-operational-casualty-and-fatality-statistics-data-up-to-30-september-2023", - "pubDate": "2023-12-07T09:30:09.000Z", - "summary": "Biannual UK armed forces and UK civilian operational casualty and fatality statistics.", - "id": "https://www.gov.uk/government/statistics/uk-armed-forces-and-uk-civilian-operational-casualty-and-fatality-statistics-data-up-to-30-september-2023#2023-12-07T09:30:09Z", - "isoDate": "2023-12-07T09:30:09.000Z" - }, - { - "title": "News story: Defence Secretary visits Israel and Occupied Palestinian Territories to explore options to boost humanitarian aid", - "link": "https://www.gov.uk/government/news/defence-secretary-visits-israel-and-occupied-palestinian-territories-to-explore-options-to-boost-humanitarian-aid", - "pubDate": "2023-12-07T00:01:11.000Z", - "summary": "As part of ongoing diplomatic efforts in the Middle East, the Defence Secretary travels to the Occupied Palestinian Territories (OPTs) and Israel this week. ", - "id": "https://www.gov.uk/government/news/defence-secretary-visits-israel-and-occupied-palestinian-territories-to-explore-options-to-boost-humanitarian-aid#2023-12-07T00:01:11Z", - "isoDate": "2023-12-07T00:01:11.000Z" - }, - { - "title": "FOI release: FOI responses published by MOD: week commencing 4 December 2023", - "link": "https://www.gov.uk/government/publications/foi-responses-published-by-mod-week-commencing-4-december-2023", - "pubDate": "2023-12-06T11:51:28.000Z", - "summary": "Ministry of Defence (MOD) Freedom of Information (FOI) responses released during the week commencing 4 December 2023", - "id": "https://www.gov.uk/government/publications/foi-responses-published-by-mod-week-commencing-4-december-2023#2023-12-06T11:51:28Z", - "isoDate": "2023-12-06T11:51:28.000Z" - }, - { - "title": "News story: Defence Business Services Festive Opening Hours for Customers", - "link": "https://www.gov.uk/government/news/defence-business-services-festive-opening-hours-for-customers", - "pubDate": "2023-12-06T11:09:43.000Z", - "summary": "Opening hours for the Veterans UK Helpline, Joint Personnel Administration Centre, MOD Medals Office and Joint Casualty and Compassionate Centre.", - "id": "https://www.gov.uk/government/news/defence-business-services-festive-opening-hours-for-customers#2023-12-06T11:09:43Z", - "isoDate": "2023-12-06T11:09:43.000Z" - }, - { - "title": "Guidance: Military low flying: MOD sponsored air exercises", - "link": "https://www.gov.uk/government/publications/military-low-flying-mod-sponsored-air-exercises", - "pubDate": "2023-12-06T10:27:35.000Z", - "summary": "MOD sponsored low flying exercises within the UK low flying system.", - "id": "https://www.gov.uk/government/publications/military-low-flying-mod-sponsored-air-exercises#2023-12-06T10:27:35Z", - "isoDate": "2023-12-06T10:27:35.000Z" - }, - { - "title": "Guidance: Holcombe Moor firing times", - "link": "https://www.gov.uk/government/publications/holcombe-moor-firing-times", - "pubDate": "2023-12-06T10:16:57.000Z", - "summary": "Dates and times when Holcombe Moor's training area is being used for live firing.", - "id": "https://www.gov.uk/government/publications/holcombe-moor-firing-times#2023-12-06T10:16:57Z", - "isoDate": "2023-12-06T10:16:57.000Z" - }, - { - "title": "Transparency data: MOD: senior officials' business expenses, hospitality and meetings, January to December 2023", - "link": "https://www.gov.uk/government/publications/mod-senior-officials-business-expenses-hospitality-and-meetings-january-to-december-2023", - "pubDate": "2023-12-15T10:20:15.000Z", - "summary": "Data on senior officials' and permanent secretaries' business expenses, hospitality and meetings with external organisations.", - "id": "https://www.gov.uk/government/publications/mod-senior-officials-business-expenses-hospitality-and-meetings-january-to-december-2023#2023-12-15T10:20:15Z", - "isoDate": "2023-12-15T10:20:15.000Z" - }, - { - "title": "Guidance: Service Family Accommodation", - "link": "https://www.gov.uk/guidance/defence-infrastructure-organisation-service-family-accommodation", - "pubDate": "2023-12-14T16:01:14.000Z", - "summary": "A guide for Service families about applying for, maintaining, moving in and out of and living in UK Service Family Accommodation (SFA).", - "id": "https://www.gov.uk/guidance/defence-infrastructure-organisation-service-family-accommodation#2023-12-14T16:01:14Z", - "isoDate": "2023-12-14T16:01:14.000Z" - }, - { - "title": "Transparency data: MOD business appointment rules: applications completed from July to September 2023", - "link": "https://www.gov.uk/government/publications/mod-business-appointment-rules-applications-completed-from-july-to-september-2023", - "pubDate": "2023-12-14T16:00:06.000Z", - "summary": "Summary of advice given under the business appointment rules to applicants at SCS2 and SCS1 level and equivalents.", - "id": "https://www.gov.uk/government/publications/mod-business-appointment-rules-applications-completed-from-july-to-september-2023#2023-12-14T16:00:06Z", - "isoDate": "2023-12-14T16:00:06.000Z" - }, - { - "title": "Transparency data: MOD: special advisers' gifts, hospitality and meetings, January to September 2023", - "link": "https://www.gov.uk/government/publications/mod-special-advisers-gifts-hospitality-and-meetings-april-to-june-2023", - "pubDate": "2023-12-14T16:00:02.000Z", - "summary": "Data on gifts and hospitality received by special advisers, and meetings they attended with senior media figures.", - "id": "https://www.gov.uk/government/publications/mod-special-advisers-gifts-hospitality-and-meetings-april-to-june-2023#2023-12-14T16:00:02Z", - "isoDate": "2023-12-14T16:00:02.000Z" - }, - { - "title": "Transparency data: MOD: ministerial gifts, hospitality, travel and meetings, January to September 2023", - "link": "https://www.gov.uk/government/publications/mod-ministerial-gifts-hospitality-travel-and-meetings-april-to-june-2023", - "pubDate": "2023-12-14T16:00:02.000Z", - "summary": "Data on gifts that ministers gave and received, their external meetings and any overseas travel.", - "id": "https://www.gov.uk/government/publications/mod-ministerial-gifts-hospitality-travel-and-meetings-april-to-june-2023#2023-12-14T16:00:02Z", - "isoDate": "2023-12-14T16:00:02.000Z" - }, - { - "title": "International treaty: Convention on the establishment of the 'Global Combat Air Programme (GCAP) - International Government Organisation'", - "link": "https://www.gov.uk/government/publications/convention-on-the-establishment-of-the-global-combat-air-programme-gcap-international-government-organisation", - "pubDate": "2023-12-14T15:48:36.000Z", - "summary": "An international treaty between the UK, Japan and Italy for a future combat air programme that aims to develop an innovative stealth fighter aircraft.", - "id": "https://www.gov.uk/government/publications/convention-on-the-establishment-of-the-global-combat-air-programme-gcap-international-government-organisation#2023-12-14T15:48:36Z", - "isoDate": "2023-12-14T15:48:36.000Z" - }, - { - "title": "Guidance: Industry Security Notice (ISN)", - "link": "https://www.gov.uk/government/publications/industry-security-notices-isns", - "pubDate": "2023-12-14T15:46:20.000Z", - "summary": "A list of Industry Security Notices (ISNs) for defence personnel to highlight security changes or information.", - "id": "https://www.gov.uk/government/publications/industry-security-notices-isns#2023-12-14T15:46:20Z", - "isoDate": "2023-12-14T15:46:20.000Z" - }, - { - "title": "Guidance: Contractor Flying Approved Organizations Scheme (Basic Remotely Piloted Air Systems) (CFAOS(BR))", - "link": "https://www.gov.uk/government/publications/contractor-flying-approved-organizations-scheme-basic-remotely-piloted-air-systems-cfaosbr", - "pubDate": "2023-12-14T14:57:28.000Z", - "summary": "Information about the Military Aviation Authority (MAA) contractor Flying Approved Organization Scheme (Basic Remotely Piloted Air Systems) (CFAOS(BR)).", - "id": "https://www.gov.uk/government/publications/contractor-flying-approved-organizations-scheme-basic-remotely-piloted-air-systems-cfaosbr#2023-12-14T14:57:28Z", - "isoDate": "2023-12-14T14:57:28.000Z" - }, - { - "title": "Guidance: MOD surplus inventory for sale", - "link": "https://www.gov.uk/government/publications/mod-surplus-inventory-for-sale", - "pubDate": "2023-12-14T13:55:27.000Z", - "summary": "The table below lists MOD inventory that may be available for sale. ", - "id": "https://www.gov.uk/government/publications/mod-surplus-inventory-for-sale#2023-12-14T13:55:27Z", - "isoDate": "2023-12-14T13:55:27.000Z" - }, - { - "title": "Transparency data: MOD: spending over \u00a325,000, January to October 2023", - "link": "https://www.gov.uk/government/publications/mod-spending-over-25000-january-2023", - "pubDate": "2023-12-14T13:55:16.000Z", - "summary": "Ministry of Defence reports on departmental spending over \u00a325,000.", - "id": "https://www.gov.uk/government/publications/mod-spending-over-25000-january-2023#2023-12-14T13:55:16Z", - "isoDate": "2023-12-14T13:55:16.000Z" - }, - { - "title": "Transparency data: MOD: spending over \u00a325,000, January to December 2017", - "link": "https://www.gov.uk/government/publications/mod-spending-over-25000-january-to-december-2017", - "pubDate": "2023-12-14T13:39:08.000Z", - "summary": "Ministry of Defence reports on departmental spending over \u00a325,000.", - "id": "https://www.gov.uk/government/publications/mod-spending-over-25000-january-to-december-2017#2023-12-14T13:39:08Z", - "isoDate": "2023-12-14T13:39:08.000Z" - }, - { - "title": "Guidance: Straight Point Ranges and Woodbury Common Grenade Range firing times", - "link": "https://www.gov.uk/government/publications/straightpoint-and-wcta-grenade-range-firing-times", - "pubDate": "2023-12-14T13:38:01.000Z", - "summary": "Firing times for Straight Point Ranges Complex (SPRC) and Woodbury Common Training Area (WCTA) Grenade Range. ", - "id": "https://www.gov.uk/government/publications/straightpoint-and-wcta-grenade-range-firing-times#2023-12-14T13:38:01Z", - "isoDate": "2023-12-14T13:38:01.000Z" - }, - { - "title": "Guidance: Air Safety Information Management System (ASIMS) user manual", - "link": "https://www.gov.uk/government/publications/air-safety-information-management-system-asims-user-manual", - "pubDate": "2023-12-14T13:36:14.000Z", - "summary": "This user manual is intended to be an easy to use reference for ASIMS users, and should be read in conjunction with Regulatory Article 1410.", - "id": "https://www.gov.uk/government/publications/air-safety-information-management-system-asims-user-manual#2023-12-14T13:36:14Z", - "isoDate": "2023-12-14T13:36:14.000Z" - }, - { - "title": "Form: MAA course application forms", - "link": "https://www.gov.uk/government/publications/maa-course-application-forms", - "pubDate": "2023-12-14T13:13:24.000Z", - "summary": "Application forms for Military Aviation Authority (MAA) and centre of air safety training (CoAST) sponsored courses.", - "id": "https://www.gov.uk/government/publications/maa-course-application-forms#2023-12-14T13:13:24Z", - "isoDate": "2023-12-14T13:13:24.000Z" - }, - { - "title": "Guidance: Driving Integration", - "link": "https://www.gov.uk/guidance/multi-domain-integration", - "pubDate": "2023-12-14T12:54:53.000Z", - "summary": "Integration is about ensuring Defence can act in a way greater than the sum of its parts, with government, our allies and industry to deliver a desired outcome.", - "id": "https://www.gov.uk/guidance/multi-domain-integration#2023-12-14T12:54:53Z", - "isoDate": "2023-12-14T12:54:53.000Z" - }, - { - "title": "Guidance: Chickerell firing times", - "link": "https://www.gov.uk/government/publications/chickerell-firing-times", - "pubDate": "2023-12-14T10:59:53.000Z", - "summary": "Warning notice of firing at Chickerell range.", - "id": "https://www.gov.uk/government/publications/chickerell-firing-times#2023-12-14T10:59:53Z", - "isoDate": "2023-12-14T10:59:53.000Z" - }, - { - "title": "Speech: Chief of the Defence Staff Admiral Sir Tony Radakin RUSI Lecture 2023", - "link": "https://www.gov.uk/government/speeches/chief-of-the-defence-staff-admiral-sir-tony-radakin-rusi-lecture-2023", - "pubDate": "2023-12-14T10:37:49.000Z", - "summary": "Chief of the Defence Staff Admiral Sir Tony Radakin gave his annual RUSI Lecture on 13 December 2023.", - "id": "https://www.gov.uk/government/speeches/chief-of-the-defence-staff-admiral-sir-tony-radakin-rusi-lecture-2023#2023-12-14T10:37:49Z", - "isoDate": "2023-12-14T10:37:49.000Z" - }, - { - "title": "National Statistics: Quarterly Service Personnel Statistics: 2023", - "link": "https://www.gov.uk/government/statistics/quarterly-service-personnel-statistics-2023", - "pubDate": "2023-12-14T09:30:06.000Z", - "summary": "UK service personnel statistics on strengths, requirements, intake, applications and outflow, by service for 2023.", - "id": "https://www.gov.uk/government/statistics/quarterly-service-personnel-statistics-2023#2023-12-14T09:30:06Z", - "isoDate": "2023-12-14T09:30:06.000Z" - }, - { - "title": "Press release: UK Carrier Strike Group to visit Japan in 2025", - "link": "https://www.gov.uk/government/news/uk-carrier-strike-group-to-visit-japan-in-2025", - "pubDate": "2023-12-14T07:38:53.000Z", - "summary": "The UK\u2019s Carrier Strike Group will visit Japan as part of the flagship 2025 Indo-Pacific deployment, Defence Secretary Grant Shapps has announced today", - "id": "https://www.gov.uk/government/news/uk-carrier-strike-group-to-visit-japan-in-2025#2023-12-14T07:38:53Z", - "isoDate": "2023-12-14T07:38:53.000Z" - }, - { - "title": "Guidance: Defence policy for modelling and simulation (JSP 939)", - "link": "https://www.gov.uk/government/publications/defence-policy-for-modelling-and-simulation-jsp-939", - "pubDate": "2024-01-03T15:41:42.000Z", - "summary": "JSP 939 describes the UK MOD\u2019s policy for modelling and simulation and details how both governance and technical coherence is applied. ", - "id": "https://www.gov.uk/government/publications/defence-policy-for-modelling-and-simulation-jsp-939#2024-01-03T15:41:42Z", - "isoDate": "2024-01-03T15:41:42.000Z" - }, - { - "title": "Policy paper: Secretary of State for Defence policy statement on health, safety and environmental protection", - "link": "https://www.gov.uk/government/publications/secretary-of-states-policy-statement-on-safety-health-environmental-protection-and-sustainable-development", - "pubDate": "2024-01-03T10:17:52.000Z", - "summary": "This policy statement sets out the MOD\u2019s legal obligations and the requirements of the Secretary of State for Defence from individuals, managers and commanders.", - "id": "https://www.gov.uk/government/publications/secretary-of-states-policy-statement-on-safety-health-environmental-protection-and-sustainable-development#2024-01-03T10:17:52Z", - "isoDate": "2024-01-03T10:17:52.000Z" - }, - { - "title": "Guidance: Dartmoor firing times", - "link": "https://www.gov.uk/government/publications/dartmoor-firing-programme", - "pubDate": "2024-01-02T15:05:23.000Z", - "summary": "Information on Dartmoor Training Area's firing times.", - "id": "https://www.gov.uk/government/publications/dartmoor-firing-programme#2024-01-02T15:05:23Z", - "isoDate": "2024-01-02T15:05:23.000Z" - }, - { - "title": "Guidance: JSP 752 -Tri-Service regulations for expenses and allowances", - "link": "https://www.gov.uk/government/publications/jsp-752-tri-service-regulations-for-expenses-and-allowances", - "pubDate": "2024-01-02T10:13:39.000Z", - "summary": "JSP 752 is the policy document for expenses and allowances for Regular and Reserve UK Armed Forces personnel.", - "id": "https://www.gov.uk/government/publications/jsp-752-tri-service-regulations-for-expenses-and-allowances#2024-01-02T10:13:39Z", - "isoDate": "2024-01-02T10:13:39.000Z" - }, - { - "title": "Open consultation: Proposed cessation of the following Official Statistics: Location of UK armed forces pension and compensation recipients", - "link": "https://www.gov.uk/government/consultations/proposed-cessation-of-the-following-official-statistics-location-of-uk-armed-forces-pension-and-compensation-recipients", - "pubDate": "2024-01-02T09:30:06.000Z", - "summary": "The Ministry of Defence (MOD) publishes an Official Statistic on the Location of UK armed forces pension and compensation recipients. We are seeking external users\u2019 views on the cessation of this report.", - "id": "https://www.gov.uk/government/consultations/proposed-cessation-of-the-following-official-statistics-location-of-uk-armed-forces-pension-and-compensation-recipients#2024-01-02T09:30:06Z", - "isoDate": "2024-01-02T09:30:06.000Z" - }, - { - "title": "Press release: First UK maritime shipment of lifesaving aid for Gaza arrives in Egypt", - "link": "https://www.gov.uk/government/news/first-uk-maritime-shipment-of-lifesaving-aid-for-gaza-arrives-in-egypt", - "pubDate": "2024-01-02T00:00:00.000Z", - "summary": "Lifesaving UK aid shipment for Gaza including thermal blankets and essential items delivered from Cyprus by Royal Fleet Auxiliary ship Lyme Bay.", - "id": "https://www.gov.uk/government/news/first-uk-maritime-shipment-of-lifesaving-aid-for-gaza-arrives-in-egypt#2024-01-02T00:00:00Z", - "isoDate": "2024-01-02T00:00:00.000Z" - }, - { - "title": "News story: The Military Division of the New Years Honours 2024", - "link": "https://www.gov.uk/government/news/the-military-division-of-the-new-years-honours-2024", - "pubDate": "2023-12-29T23:06:54.000Z", - "summary": "Armed Forces personnel and Defence Civil Servants have been granted state honours by His Majesty The King in the annual New Year Honours list.", - "id": "https://www.gov.uk/government/news/the-military-division-of-the-new-years-honours-2024#2023-12-29T23:06:54Z", - "isoDate": "2023-12-29T23:06:54.000Z" - }, - { - "title": "News story: New Year Honours 2024 for defence personnel", - "link": "https://www.gov.uk/government/news/new-year-honours-2024-for-defence-personnel", - "pubDate": "2023-12-29T00:00:00.000Z", - "summary": "Armed Forces personnel and Defence civilians have been granted state honours by His Majesty The King in the annual New Year Honours list.", - "id": "https://www.gov.uk/government/news/new-year-honours-2024-for-defence-personnel#2023-12-29T00:00:00Z", - "isoDate": "2023-12-29T00:00:00.000Z" - }, - { - "title": "News story: The UK bolsters Ukraine's air defence after Putin's latest air strikes", - "link": "https://www.gov.uk/government/news/the-uk-bolsters-ukraines-air-defence-after-putins-latest-air-strikes", - "pubDate": "2023-12-29T00:00:00.000Z", - "summary": "Defence Secretary announces that hundreds of British-made air defence missiles are being shipped to Ukraine to protect civilians and infrastructure from drones and bombing.", - "id": "https://www.gov.uk/government/news/the-uk-bolsters-ukraines-air-defence-after-putins-latest-air-strikes#2023-12-29T00:00:00Z", - "isoDate": "2023-12-29T00:00:00.000Z" - }, - { - "title": "News story: UK takes lead of NATO Rapid Response Force", - "link": "https://www.gov.uk/government/news/uk-takes-lead-of-nato-rapid-response-force", - "pubDate": "2023-12-28T10:00:07.000Z", - "summary": "UK forces are taking lead of NATO\u2019s rapid response force\u00a0on 1 January 2024, placing thousands of soldiers on standby and ready to deploy within days.\u00a0", - "id": "https://www.gov.uk/government/news/uk-takes-lead-of-nato-rapid-response-force#2023-12-28T10:00:07Z", - "isoDate": "2023-12-28T10:00:07.000Z" - }, - { - "title": "Promotional material: desider 2023", - "link": "https://www.gov.uk/government/publications/desider-2023", - "pubDate": "2023-12-27T10:01:03.000Z", - "summary": "Magazine of Defence Equipment and Support (DE&S).", - "id": "https://www.gov.uk/government/publications/desider-2023#2023-12-27T10:01:03Z", - "isoDate": "2023-12-27T10:01:03.000Z" - }, - { - "title": "News story: Ukrainian pilots learn to fly F-16 fighter jets after completing basic training in the UK", - "link": "https://www.gov.uk/government/news/ukrainian-pilots-learn-to-fly-f-16-fighter-jets-after-completing-basic-training-in-the-uk", - "pubDate": "2023-12-26T00:01:11.000Z", - "summary": "The UK has been providing basic training to Ukraine's combat air pilots as a contribution to the international Air Force Capability Coalition for Ukraine", - "id": "https://www.gov.uk/government/news/ukrainian-pilots-learn-to-fly-f-16-fighter-jets-after-completing-basic-training-in-the-uk#2023-12-26T00:01:11Z", - "isoDate": "2023-12-26T00:01:11.000Z" - }, - { - "title": "News story: British Army\u2019s Ajax vehicle rounds out positive year", - "link": "https://www.gov.uk/government/news/british-armys-ajax-vehicle-rounds-out-positive-year", - "pubDate": "2023-12-23T09:00:04.000Z", - "summary": "The Ajax Programme is making positive progress towards the delivery of a new generation of armoured fighting vehicles that meets the Army\u2019s needs.", - "id": "https://www.gov.uk/government/news/british-armys-ajax-vehicle-rounds-out-positive-year#2023-12-23T09:00:04Z", - "isoDate": "2023-12-23T09:00:04.000Z" - }, - { - "title": "Guidance: DAO qualification handbooks: level 3", - "link": "https://www.gov.uk/government/publications/dao-qualification-handbooks-level-3-courses", - "pubDate": "2023-12-21T11:59:36.000Z", - "summary": "Qualifications, learning outcomes and assessment criteria for Defence Awarding Organisation courses.", - "id": "https://www.gov.uk/government/publications/dao-qualification-handbooks-level-3-courses#2023-12-21T11:59:36Z", - "isoDate": "2023-12-21T11:59:36.000Z" - }, - { - "title": "Transparency data: MOD appointment letters for Government Major Projects Portfolio (GMPP) Senior Responsible Owners (SROs)", - "link": "https://www.gov.uk/government/publications/ministry-of-defence-appointment-letters-for-government-major-projects-portfolio-gmpp-senior-responsible-owners-sros", - "pubDate": "2024-01-05T11:12:24.000Z", - "summary": "These letters include the date of appointment, the programme deliverables, what the SRO is responsible for and how long the role is expected to last.", - "id": "https://www.gov.uk/government/publications/ministry-of-defence-appointment-letters-for-government-major-projects-portfolio-gmpp-senior-responsible-owners-sros#2024-01-05T11:12:24Z", - "isoDate": "2024-01-05T11:12:24.000Z" - }, - { - "title": "Guidance: What does the Armed Forces Covenant mean for businesses?", - "link": "https://www.gov.uk/government/publications/corporate-covenant-guidance", - "pubDate": "2024-01-05T10:26:59.000Z", - "summary": "Suggestions of best practice and good ideas for your Armed Forces Covenant.\r\n", - "id": "https://www.gov.uk/government/publications/corporate-covenant-guidance#2024-01-05T10:26:59Z", - "isoDate": "2024-01-05T10:26:59.000Z" - }, - { - "title": "Regulation: Notice of proposed amendments (NPA) reference table", - "link": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-reference-table", - "pubDate": "2024-01-04T13:50:02.000Z", - "summary": "The Military Aviation Authority (MAA) NPA table provides information of proposed changes in regulations and release date.", - "id": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-reference-table#2024-01-04T13:50:02Z", - "isoDate": "2024-01-04T13:50:02.000Z" - }, - { - "title": "Regulation: Notice of proposed amendments (NPA) documents", - "link": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-2014-documents", - "pubDate": "2024-01-04T13:49:15.000Z", - "summary": "MAA issuing of an NPA allows a consultation period to be undertaken on a proposed amendment or the implementation of new regulation.", - "id": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-2014-documents#2024-01-04T13:49:15Z", - "isoDate": "2024-01-04T13:49:15.000Z" - }, - { - "title": "Guidance: Armed forces pensions", - "link": "https://www.gov.uk/guidance/pensions-and-compensation-for-veterans", - "pubDate": "2024-01-04T13:46:46.000Z", - "summary": "Information related to the Armed Forces Pension Schemes.", - "id": "https://www.gov.uk/guidance/pensions-and-compensation-for-veterans#2024-01-04T13:46:46Z", - "isoDate": "2024-01-04T13:46:46.000Z" - }, - { - "title": "Corporate report: Investigation into the death of a Royal Air Force (RAF) service person in a motorcycle accident at Cadwell Park race circuit on Friday 27 May 2022", - "link": "https://www.gov.uk/government/publications/investigation-into-the-death-of-a-royal-air-force-raf-service-person-in-a-motorcycle-accident-at-cadwell-park-race-circuit-on-friday-27-may-2022", - "pubDate": "2024-01-18T12:00:07.000Z", - "summary": "Investigation into the death of a RAF service person in a motorcycle accident at Cadwell Park race circuit on Friday 27 May 2022.", - "id": "https://www.gov.uk/government/publications/investigation-into-the-death-of-a-royal-air-force-raf-service-person-in-a-motorcycle-accident-at-cadwell-park-race-circuit-on-friday-27-may-2022#2024-01-18T12:00:07Z", - "isoDate": "2024-01-18T12:00:07.000Z" - }, - { - "title": "Guidance: Asbestos in defence equipment platforms buildings and infrastructure", - "link": "https://www.gov.uk/government/publications/asbestos-in-defence-equipment-platforms-buildings-and-infrastructure", - "pubDate": "2024-01-18T11:57:50.000Z", - "summary": "Update on Ministry of Defence (MOD) management of asbestos in defence equipment platforms, buildings and infrastructure.", - "id": "https://www.gov.uk/government/publications/asbestos-in-defence-equipment-platforms-buildings-and-infrastructure#2024-01-18T11:57:50Z", - "isoDate": "2024-01-18T11:57:50.000Z" - }, - { - "title": "Consultation outcome: Reform of the Single Source Contract Regulations (SSCRs) - secondary legislation", - "link": "https://www.gov.uk/government/consultations/reform-of-the-single-source-contract-regulations-sscrs-secondary-legislation", - "pubDate": "2024-01-18T11:00:05.000Z", - "summary": "A consultation seeking views on the detailed approach to the secondary legislation.", - "id": "https://www.gov.uk/government/consultations/reform-of-the-single-source-contract-regulations-sscrs-secondary-legislation#2024-01-18T11:00:05Z", - "isoDate": "2024-01-18T11:00:05.000Z" - }, - { - "title": "Transparency data: MOD: workforce management information January to November 2023", - "link": "https://www.gov.uk/government/publications/mod-workforce-management-information-january-to-may-2023", - "pubDate": "2024-01-18T10:17:34.000Z", - "summary": "Reports on departmental staff numbers and costs.", - "id": "https://www.gov.uk/government/publications/mod-workforce-management-information-january-to-may-2023#2024-01-18T10:17:34Z", - "isoDate": "2024-01-18T10:17:34.000Z" - }, - { - "title": "Independent report: Command Control in the Future: The Defence C2 Enterprise", - "link": "https://www.gov.uk/government/publications/command-control-in-the-future-the-defence-c2-enterprise", - "pubDate": "2024-01-18T00:00:00.000Z", - "summary": "This is the second in a series of papers examining the future of command and control out to 2040. ", - "id": "https://www.gov.uk/government/publications/command-control-in-the-future-the-defence-c2-enterprise#2024-01-18T00:00:00Z", - "isoDate": "2024-01-18T00:00:00.000Z" - }, - { - "title": "Independent report: Command and Control in the Future: Grappling with Complexity", - "link": "https://www.gov.uk/government/publications/command-and-control-in-the-future-grappling-with-complexity", - "pubDate": "2024-01-18T00:00:00.000Z", - "summary": "This is the first in a series of papers examining the future of command and control in the period from 2030 to 2040. ", - "id": "https://www.gov.uk/government/publications/command-and-control-in-the-future-grappling-with-complexity#2024-01-18T00:00:00Z", - "isoDate": "2024-01-18T00:00:00.000Z" - }, - { - "title": "Guidance: Veterans News and Communications Hub", - "link": "https://www.gov.uk/guidance/veterans-news-and-communications-hub", - "pubDate": "2024-01-17T15:39:26.000Z", - "summary": "The Hub enables forces-friendly organisations across all sectors to showcase the continued value of the UK\u2019s highly skilled veteran community.", - "id": "https://www.gov.uk/guidance/veterans-news-and-communications-hub#2024-01-17T15:39:26Z", - "isoDate": "2024-01-17T15:39:26.000Z" - }, - { - "title": "Guidance: Review of nuclear archive records", - "link": "https://www.gov.uk/government/publications/review-of-nuclear-archive-records", - "pubDate": "2024-01-17T15:16:32.000Z", - "summary": "The Ministry of Defence (MOD) is conducting a review of historic files relating to the United Kingdom\u2019s Nuclear Weapons programme.", - "id": "https://www.gov.uk/government/publications/review-of-nuclear-archive-records#2024-01-17T15:16:32Z", - "isoDate": "2024-01-17T15:16:32.000Z" - }, - { - "title": "Official Statistics: Defence personnel NHS commissioning bi-annual statistics: financial year 2022/23", - "link": "https://www.gov.uk/government/statistics/defence-personnel-nhs-commissioning-bi-annual-statistics-financial-year-202223", - "pubDate": "2024-01-17T13:11:32.000Z", - "summary": "Number of serving UK armed forces personnel and civilian personnel with a Defence Medical Services registration.", - "id": "https://www.gov.uk/government/statistics/defence-personnel-nhs-commissioning-bi-annual-statistics-financial-year-202223#2024-01-17T13:11:32Z", - "isoDate": "2024-01-17T13:11:32.000Z" - }, - { - "title": "Press release: Digital defence transformation boosted by \u00a3150 million UK contract", - "link": "https://www.gov.uk/government/news/digital-defence-transformation-boosted-by-150-million-uk-contract", - "pubDate": "2024-01-17T00:00:00.000Z", - "summary": "Digital services across Defence will be transformed in a \u00a3150 million contract awarded to UK-based technology services provider, Computacenter. ", - "id": "https://www.gov.uk/government/news/digital-defence-transformation-boosted-by-150-million-uk-contract#2024-01-17T00:00:00Z", - "isoDate": "2024-01-17T00:00:00.000Z" - }, - { - "title": "News story: A focus on skills for UK shipbuilding", - "link": "https://www.gov.uk/government/news/a-focus-on-skills-for-uk-shipbuilding", - "pubDate": "2024-01-16T15:26:58.000Z", - "summary": "Applications are now open to join the Skills Delivery Group.", - "id": "https://www.gov.uk/government/news/a-focus-on-skills-for-uk-shipbuilding#2024-01-16T15:26:58Z", - "isoDate": "2024-01-16T15:26:58.000Z" - }, - { - "title": "Guidance: Search for businesses who have signed the Armed Forces Covenant", - "link": "https://www.gov.uk/government/publications/search-for-businesses-who-have-signed-the-armed-forces-covenant", - "pubDate": "2024-01-16T13:56:08.000Z", - "summary": "A searchable index of businesses who have signed the Armed Forces Covenant.", - "id": "https://www.gov.uk/government/publications/search-for-businesses-who-have-signed-the-armed-forces-covenant#2024-01-16T13:56:08Z", - "isoDate": "2024-01-16T13:56:08.000Z" - }, - { - "title": "Corporate report: Service Inquiry into the death of a service person in an accident with a Warrior armoured vehicle on Salisbury Plain Training Area on 21 June 2022", - "link": "https://www.gov.uk/government/publications/service-inquiry-into-the-death-of-a-service-person-in-an-accident-with-a-warrior-armoured-vehicle-on-salisbury-plain-training-area-on-21-june-2022", - "pubDate": "2024-01-16T12:00:01.000Z", - "summary": "Service Inquiry report into the death of a service person in an accident with a Warrior armoured vehicle on Salisbury Plain Training Area on 21 June 2022.", - "id": "https://www.gov.uk/government/publications/service-inquiry-into-the-death-of-a-service-person-in-an-accident-with-a-warrior-armoured-vehicle-on-salisbury-plain-training-area-on-21-june-2022#2024-01-16T12:00:01Z", - "isoDate": "2024-01-16T12:00:01.000Z" - }, - { - "title": "Guidance: South East Training Estate firing times", - "link": "https://www.gov.uk/government/publications/south-east-training-estate-firing-times", - "pubDate": "2024-01-19T11:19:26.000Z", - "summary": "Firing and closure times for November and December for the South East Training Estate, including Aldershot, Ash, Barossa, Chilcomb, Hythe, Longmoor, Lydd, Moody's Down, Pirbright and Otmoor ranges. ", - "id": "https://www.gov.uk/government/publications/south-east-training-estate-firing-times#2024-01-19T11:19:26Z", - "isoDate": "2024-01-19T11:19:26.000Z" - }, - { - "title": "Guidance: Draft tri-service accommodation regulations (TSARs) (JSP 464) - March 2024", - "link": "https://www.gov.uk/government/publications/draft-tri-service-accommodation-regulations-tsars-jsp-464-march-2024", - "pubDate": "2024-01-19T09:30:10.000Z", - "summary": "This edition of JSP 464 is applicable from 11 March 2024. JSP 464 is the definitive policy for the provision of service family accommodation, single living accommodation and the substitute equivalents.", - "id": "https://www.gov.uk/government/publications/draft-tri-service-accommodation-regulations-tsars-jsp-464-march-2024#2024-01-19T09:30:10Z", - "isoDate": "2024-01-19T09:30:10.000Z" - }, - { - "title": "Guidance: New Accommodation Offer", - "link": "https://www.gov.uk/guidance/new-accommodation-offer", - "pubDate": "2024-01-19T09:30:10.000Z", - "summary": "Starting from March 2024, the MOD will begin introducing a new accommodation offer for our armed forces. ", - "id": "https://www.gov.uk/guidance/new-accommodation-offer#2024-01-19T09:30:10Z", - "isoDate": "2024-01-19T09:30:10.000Z" - }, - { - "title": "News story: Advanced future military laser achieves UK first", - "link": "https://www.gov.uk/government/news/advanced-future-military-laser-achieves-uk-first", - "pubDate": "2024-01-19T09:00:02.000Z", - "summary": "A military laser which could boost the UK Armed Forces with greater accuracy while reducing the reliance on high-cost ammunition has reached its next milestone.", - "id": "https://www.gov.uk/government/news/advanced-future-military-laser-achieves-uk-first#2024-01-19T09:00:02Z", - "isoDate": "2024-01-19T09:00:02.000Z" - }, - { - "title": "Guidance: Air Safety Information Management System (ASIMS) user manual", - "link": "https://www.gov.uk/government/publications/air-safety-information-management-system-asims-user-manual", - "pubDate": "2023-10-27T09:52:13.000Z", - "summary": "This user manual is intended to be an easy to use reference for ASIMS users, and should be read in conjunction with Regulatory Article 1410.", - "id": "https://www.gov.uk/government/publications/air-safety-information-management-system-asims-user-manual#2023-10-27T09:52:13Z", - "isoDate": "2023-10-27T09:52:13.000Z" - }, - { - "title": "Regulation: Notice of proposed amendments (NPA) documents", - "link": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-2014-documents", - "pubDate": "2023-10-27T08:08:27.000Z", - "summary": "MAA issuing of an NPA allows a consultation period to be undertaken on a proposed amendment or the implementation of new regulation.", - "id": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-2014-documents#2023-10-27T08:08:27Z", - "isoDate": "2023-10-27T08:08:27.000Z" - }, - { - "title": "Regulation: Notice of proposed amendments (NPA) reference table", - "link": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-reference-table", - "pubDate": "2023-10-27T08:08:02.000Z", - "summary": "The Military Aviation Authority (MAA) NPA table provides information of proposed changes in regulations and release date.", - "id": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-reference-table#2023-10-27T08:08:02Z", - "isoDate": "2023-10-27T08:08:02.000Z" - }, - { - "title": "News story: Operational Honours and Awards List October 2023", - "link": "https://www.gov.uk/government/news/operational-honours-and-awards-list-october-2023", - "pubDate": "2023-10-26T23:01:03.000Z", - "summary": "The latest Operational Honours and Awards List recognises the bravery, commitment and commendable service of Armed Forces personnel.", - "id": "https://www.gov.uk/government/news/operational-honours-and-awards-list-october-2023#2023-10-26T23:01:03Z", - "isoDate": "2023-10-26T23:01:03.000Z" - }, - { - "title": "Press release: Defence Secretary travels to Middle East on regional security mission", - "link": "https://www.gov.uk/government/news/defence-secretary-travels-to-middle-east-on-regional-security-mission", - "pubDate": "2023-10-26T17:33:30.000Z", - "summary": "Defence Secretary Grant Shapps travelled to the Kingdom of Saudi Arabia and the United Arab Emirates to drive forward work to maintain regional stability.", - "id": "https://www.gov.uk/government/news/defence-secretary-travels-to-middle-east-on-regional-security-mission#2023-10-26T17:33:30Z", - "isoDate": "2023-10-26T17:33:30.000Z" - }, - { - "title": "News story: Graves of two Glasgow soldiers rediscovered in Belgium", - "link": "https://www.gov.uk/government/news/graves-of-two-glasgow-soldiers-rediscovered-in-belgium", - "pubDate": "2023-10-26T15:32:10.000Z", - "summary": "The graves of two World War One soldiers, Private (Pte) Peter Keill, aged 20, of 7th Battalion The Seaforth Highlanders and Second Lieutenant (2nd Lt) James Ferris, aged 29, of 16th Battalion The Highland Light Infantry, have finally been marked more than a century after their deaths.", - "id": "https://www.gov.uk/government/news/graves-of-two-glasgow-soldiers-rediscovered-in-belgium#2023-10-26T15:32:10Z", - "isoDate": "2023-10-26T15:32:10.000Z" - }, - { - "title": "Guidance: DAO qualification handbooks: level 4", - "link": "https://www.gov.uk/government/publications/dao-qualification-handbooks-level-4-courses", - "pubDate": "2023-10-26T15:21:15.000Z", - "summary": "Qualifications, learning outcomes and assessment criteria for Defence Awarding Organisation courses.", - "id": "https://www.gov.uk/government/publications/dao-qualification-handbooks-level-4-courses#2023-10-26T15:21:15Z", - "isoDate": "2023-10-26T15:21:15.000Z" - }, - { - "title": "News story: Graves of Two Glasgow Soldiers Identified In Belgium", - "link": "https://www.gov.uk/government/news/graves-of-two-glasgow-soldiers-identified-in-belgium", - "pubDate": "2023-10-26T14:34:33.000Z", - "summary": "The graves of two World War One soldiers, Private (Pte) Peter Keill, aged 20, of 7th Battalion The Seaforth Highlanders and Second Lieutenant (2ndLt) James Ferris, aged 29, of 16th Battalion The Highland Light Infantry, have finally been marked more than a century after their deaths.", - "id": "https://www.gov.uk/government/news/graves-of-two-glasgow-soldiers-identified-in-belgium#2023-10-26T14:34:33Z", - "isoDate": "2023-10-26T14:34:33.000Z" - }, - { - "title": "Guidance: Dartmoor firing times", - "link": "https://www.gov.uk/government/publications/dartmoor-firing-programme", - "pubDate": "2023-10-26T14:32:05.000Z", - "summary": "Information on Dartmoor Training Area's firing times.", - "id": "https://www.gov.uk/government/publications/dartmoor-firing-programme#2023-10-26T14:32:05Z", - "isoDate": "2023-10-26T14:32:05.000Z" - }, - { - "title": "Transparency data: MOD: workforce management information January to May 2023", - "link": "https://www.gov.uk/government/publications/mod-workforce-management-information-january-to-may-2023", - "pubDate": "2023-10-26T13:12:35.000Z", - "summary": "Reports on departmental staff numbers and costs.", - "id": "https://www.gov.uk/government/publications/mod-workforce-management-information-january-to-may-2023#2023-10-26T13:12:35Z", - "isoDate": "2023-10-26T13:12:35.000Z" - }, - { - "title": "Guidance: Country names", - "link": "https://www.gov.uk/government/publications/country-names", - "pubDate": "2023-10-26T13:10:55.000Z", - "summary": "Spellings of country names as recommended by the Permanent Committee on Geographical Names (PCGN).", - "id": "https://www.gov.uk/government/publications/country-names#2023-10-26T13:10:55Z", - "isoDate": "2023-10-26T13:10:55.000Z" - }, - { - "title": "Transparency data: Military court centres court listings", - "link": "https://www.gov.uk/government/publications/military-court-centres-court-listings", - "pubDate": "2023-10-26T11:19:44.000Z", - "summary": "Court listings for the Military court centres.\r\n", - "id": "https://www.gov.uk/government/publications/military-court-centres-court-listings#2023-10-26T11:19:44Z", - "isoDate": "2023-10-26T11:19:44.000Z" - }, - { - "title": "Regulation: Withdrawn MAA regulatory notices (RN)", - "link": "https://www.gov.uk/government/publications/withdrawn-maa-regulatory-notices-rn", - "pubDate": "2023-10-26T10:21:53.000Z", - "summary": "RNs will be issued by the MAA to notify the RC of changes in MAA owned process, or provide operational or engineering guidance.", - "id": "https://www.gov.uk/government/publications/withdrawn-maa-regulatory-notices-rn#2023-10-26T10:21:53Z", - "isoDate": "2023-10-26T10:21:53.000Z" - }, - { - "title": "Regulation: MAA regulatory notices (RN)", - "link": "https://www.gov.uk/government/publications/maa-regulatory-notices-rn", - "pubDate": "2023-10-26T10:21:08.000Z", - "summary": "RNs will be issued by the MAA to notify the RC of changes in MAA owned process, or provide operational or engineering guidance.", - "id": "https://www.gov.uk/government/publications/maa-regulatory-notices-rn#2023-10-26T10:21:08Z", - "isoDate": "2023-10-26T10:21:08.000Z" - }, - { - "title": "Guidance: Salisbury Plain Training Area (SPTA) newsletter", - "link": "https://www.gov.uk/government/publications/salisbury-plain-training-area-spta-newsletter", - "pubDate": "2023-10-26T09:22:08.000Z", - "summary": "Salisbury Plain updates on training activities and access.", - "id": "https://www.gov.uk/government/publications/salisbury-plain-training-area-spta-newsletter#2023-10-26T09:22:08Z", - "isoDate": "2023-10-26T09:22:08.000Z" - }, - { - "title": "News story: Three Great War soldiers buried with full military honours in Belgium", - "link": "https://www.gov.uk/government/news/three-great-war-soldiers-buried-with-full-military-honours-in-belgium", - "pubDate": "2023-10-26T07:49:03.000Z", - "summary": "More than a century after his death, Lance Serjeant Robert Brand, a 24-year-old Glaswegian soldier has finally been laid to rest with full military honours in Belgium. He was buried alongside two unknown soldiers from the same regiment. ", - "id": "https://www.gov.uk/government/news/three-great-war-soldiers-buried-with-full-military-honours-in-belgium#2023-10-26T07:49:03Z", - "isoDate": "2023-10-26T07:49:03.000Z" - }, - { - "title": "Guidance: Military low flying: MOD sponsored air exercises", - "link": "https://www.gov.uk/government/publications/military-low-flying-mod-sponsored-air-exercises", - "pubDate": "2023-10-25T16:24:58.000Z", - "summary": "MOD sponsored low flying exercises within the UK low flying system.", - "id": "https://www.gov.uk/government/publications/military-low-flying-mod-sponsored-air-exercises#2023-10-25T16:24:58Z", - "isoDate": "2023-10-25T16:24:58.000Z" - }, - { - "title": "Guidance: Service Prosecuting Authority", - "link": "https://www.gov.uk/guidance/service-prosecuting-authority", - "pubDate": "2023-10-25T15:54:06.000Z", - "summary": "The Service Prosecuting Authority is the principal prosecuting authority within the Service Justice System and is responsible for the prosecution of all service offences before the Service Courts. ", - "id": "https://www.gov.uk/guidance/service-prosecuting-authority#2023-10-25T15:54:06Z", - "isoDate": "2023-10-25T15:54:06.000Z" - }, - { - "title": "Consultation outcome: Joint Prosecution Protocol Consultation", - "link": "https://www.gov.uk/government/consultations/joint-prosecution-protocol-consultation", - "pubDate": "2023-10-25T15:53:52.000Z", - "summary": "A Service Prosecuting Authority (SPA), Crown Prosecution Service (CPS) and Public Prosecuting Service Northern Ireland (PPSNI) public consultation on joint prosecution protocol. ", - "id": "https://www.gov.uk/government/consultations/joint-prosecution-protocol-consultation#2023-10-25T15:53:52Z", - "isoDate": "2023-10-25T15:53:52.000Z" - }, - { - "title": "Guidance: Joint Prosecution Protocol", - "link": "https://www.gov.uk/government/publications/joint-prosecution-protocol", - "pubDate": "2023-10-25T15:53:48.000Z", - "summary": "Protocol regarding the exercise of criminal jurisdiction in England and Wales.", - "id": "https://www.gov.uk/government/publications/joint-prosecution-protocol#2023-10-25T15:53:48Z", - "isoDate": "2023-10-25T15:53:48.000Z" - } -] \ No newline at end of file + { + "title": "Press release: Minister for Armed Forces calls out Russian aggression during OSCE Ministerial Council", + "link": "https://www.gov.uk/government/news/minister-for-armed-forces-calls-out-russian-aggression-during-osce-ministerial-council", + "pubDate": "2023-11-30T20:32:12.000Z", + "summary": "Minister for Armed Forces attends OSCE Ministerial Council in North Macedonia to call out Russian aggression across Europe.", + "id": "https://www.gov.uk/government/news/minister-for-armed-forces-calls-out-russian-aggression-during-osce-ministerial-council#2023-11-30T20:32:12Z", + "isoDate": "2023-11-30T20:32:12.000Z" + }, + { + "title": "Guidance: Global Support Organisation overseas guides: Scandinavia", + "link": "https://www.gov.uk/government/publications/global-support-organisation-overseas-guides-scandinavia", + "pubDate": "2023-11-30T15:25:44.000Z", + "summary": "A Global Support Organisation location guide.", + "id": "https://www.gov.uk/government/publications/global-support-organisation-overseas-guides-scandinavia#2023-11-30T15:25:44Z", + "isoDate": "2023-11-30T15:25:44.000Z" + }, + { + "title": "News story: UK companies selected for NATO innovation challenge", + "link": "https://www.gov.uk/government/news/uk-companies-selected-for-nato-innovation-challenge", + "pubDate": "2023-11-30T14:21:19.000Z", + "summary": "Seven UK companies have been selected to take part in NATO\u2019s pilot challenges providing the opportunity to refine their products and keep NATO populations safe.", + "id": "https://www.gov.uk/government/news/uk-companies-selected-for-nato-innovation-challenge#2023-11-30T14:21:19Z", + "isoDate": "2023-11-30T14:21:19.000Z" + }, + { + "title": "Guidance: Salisbury Plain Training Area (SPTA) firing times", + "link": "https://www.gov.uk/government/publications/salisbury-plain-training-area-spta-firing-times", + "pubDate": "2023-11-30T14:02:24.000Z", + "summary": "Information on Salisbury Plain Training Area's (SPTA) firing times.", + "id": "https://www.gov.uk/government/publications/salisbury-plain-training-area-spta-firing-times#2023-11-30T14:02:24Z", + "isoDate": "2023-11-30T14:02:24.000Z" + }, + { + "title": "Guidance: Defence Employer Recognition Scheme", + "link": "https://www.gov.uk/government/publications/defence-employer-recognition-scheme", + "pubDate": "2023-11-30T13:20:23.000Z", + "summary": "The Employer Recognition Scheme (ERS) encourages employers to support defence and inspire other organisations to do the same.", + "id": "https://www.gov.uk/government/publications/defence-employer-recognition-scheme#2023-11-30T13:20:23Z", + "isoDate": "2023-11-30T13:20:23.000Z" + }, + { + "title": "Press release: Introduction of Non-Religious Pastoral Officers for Armed Forces", + "link": "https://www.gov.uk/government/news/introduction-of-non-religious-pastoral-officers-for-armed-forces", + "pubDate": "2023-11-30T12:54:12.000Z", + "summary": "The Ministry of Defence has introduced Armed Forces Non-Religious Pastoral Officers (NRPO) to further bolster the support given to our Armed Forces. ", + "id": "https://www.gov.uk/government/news/introduction-of-non-religious-pastoral-officers-for-armed-forces#2023-11-30T12:54:12Z", + "isoDate": "2023-11-30T12:54:12.000Z" + }, + { + "title": "Transparency data: Military court centres court listings", + "link": "https://www.gov.uk/government/publications/military-court-centres-court-listings", + "pubDate": "2023-11-30T12:24:22.000Z", + "summary": "Court listings for the Military court centres.\r\n", + "id": "https://www.gov.uk/government/publications/military-court-centres-court-listings#2023-11-30T12:24:22Z", + "isoDate": "2023-11-30T12:24:22.000Z" + }, + { + "title": "Regulation: MAA regulatory notices (RN)", + "link": "https://www.gov.uk/government/publications/maa-regulatory-notices-rn", + "pubDate": "2023-11-30T12:06:33.000Z", + "summary": "RNs will be issued by the MAA to notify the RC of changes in MAA owned process, or provide operational or engineering guidance.", + "id": "https://www.gov.uk/government/publications/maa-regulatory-notices-rn#2023-11-30T12:06:33Z", + "isoDate": "2023-11-30T12:06:33.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1021: release to service authorities - roles and responsibilities", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1021-release-to-service-authorities-rtsa-roles-and-responsibilities", + "pubDate": "2023-11-30T12:06:26.000Z", + "summary": "RA covering the roles and responsibilities of the release to service authority (RTSA).", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1021-release-to-service-authorities-rtsa-roles-and-responsibilities#2023-11-30T12:06:26Z", + "isoDate": "2023-11-30T12:06:26.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1029: ship-air release - roles and responsibilities", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1029-ship-air-release-stakeholder-roles-and-responsibilities", + "pubDate": "2023-11-30T12:06:16.000Z", + "summary": "RA covers stakeholder roles and responsibilities and interfaces associated with the ship-air release process.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1029-ship-air-release-stakeholder-roles-and-responsibilities#2023-11-30T12:06:16Z", + "isoDate": "2023-11-30T12:06:16.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1208: flight data monitoring", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1208-flight-data-monitoring", + "pubDate": "2023-11-30T12:06:08.000Z", + "summary": "RA covering requirements to introduce and manage Flight Data Monitoring for Air Systems fitted with a Flight Data Recorder.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1208-flight-data-monitoring#2023-11-30T12:06:08Z", + "isoDate": "2023-11-30T12:06:08.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1210: ownership and management of operating risk (risk to life)", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1210-ownership-and-management-of-operating-risk-risk-to-life", + "pubDate": "2023-11-30T12:05:59.000Z", + "summary": "RA covering the ownership and management of risk to life using a standardised approach and with regard to future risks.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1210-ownership-and-management-of-operating-risk-risk-to-life#2023-11-30T12:05:59Z", + "isoDate": "2023-11-30T12:05:59.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1300: release to service", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1300-release-to-service-rts", + "pubDate": "2023-11-30T12:05:51.000Z", + "summary": "RA covering the need for the release to service (RTS), its contents, defining the as flown configuration, limitations and the RTS recommendation.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1300-release-to-service-rts#2023-11-30T12:05:51Z", + "isoDate": "2023-11-30T12:05:51.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1395: authorization to permit embarked aviation in His Majesty\u2019s / MOD ships", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1395-authorization-to-permit-embarked-aviation-in-her-majestysmod-ships", + "pubDate": "2023-11-30T12:05:44.000Z", + "summary": "RA covers the authorization to permit embarked aviation in HM/MOD Ships, primarily through the 'ship-air release' process.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1395-authorization-to-permit-embarked-aviation-in-her-majestysmod-ships#2023-11-30T12:05:44Z", + "isoDate": "2023-11-30T12:05:44.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1600: remotely piloted air systems (RPAS)", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1600-remotely-piloted-air-systems-rpas", + "pubDate": "2023-11-30T12:05:36.000Z", + "summary": "RA covering the categorization and regulatory requirements of RPAS.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1600-remotely-piloted-air-systems-rpas#2023-11-30T12:05:36Z", + "isoDate": "2023-11-30T12:05:36.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1601: remotely piloted air systems open A1 sub-category (fly \u2018over\u2019 people)", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1601-remotely-piloted-air-systems-rpas-class-ia", + "pubDate": "2023-11-30T12:05:29.000Z", + "summary": "RA covering the specific regulations to assure the safe operation of open A1 sub-category RPAS.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1601-remotely-piloted-air-systems-rpas-class-ia#2023-11-30T12:05:29Z", + "isoDate": "2023-11-30T12:05:29.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1602: remotely piloted air systems open A2 sub-category (fly \u2018close to\u2019 people)", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1602-remotely-piloted-air-systems-rpas-class-ib", + "pubDate": "2023-11-30T12:05:21.000Z", + "summary": "RA covering the specific regulations to assure the safe operation of open A2 sub-category RPAS.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1602-remotely-piloted-air-systems-rpas-class-ib#2023-11-30T12:05:21Z", + "isoDate": "2023-11-30T12:05:21.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1603: remotely piloted air systems open A3 sub-category (fly \u2018far from\u2019 people)", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1603-remotely-piloted-air-systems-rpas-class-ib-mil", + "pubDate": "2023-11-30T12:05:12.000Z", + "summary": "RA covering the specific regulations to assure the safe operation of open A3 sub-category RPAS.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1603-remotely-piloted-air-systems-rpas-class-ib-mil#2023-11-30T12:05:12Z", + "isoDate": "2023-11-30T12:05:12.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1604: remotely piloted air systems specific S1 sub-category", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1604-remotely-piloted-air-systems-rpas-class-ic", + "pubDate": "2023-11-30T12:05:04.000Z", + "summary": "RA covering the specific regulations to assure the safe operation of specific S1 sub-category RPAS.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1604-remotely-piloted-air-systems-rpas-class-ic#2023-11-30T12:05:04Z", + "isoDate": "2023-11-30T12:05:04.000Z" + }, + { + "title": "Regulation: Regulatory Article (RA) 1605: remotely piloted air systems specific S2 sub-category", + "link": "https://www.gov.uk/government/publications/regulatory-article-ra-1605-remotely-piloted-air-systems-rpas-class-id", + "pubDate": "2023-11-30T12:04:56.000Z", + "summary": "RA covering the specific regulations to assure the safe operation of specific S2 sub-category RPAS.", + "id": "https://www.gov.uk/government/publications/regulatory-article-ra-1605-remotely-piloted-air-systems-rpas-class-id#2023-11-30T12:04:56Z", + "isoDate": "2023-11-30T12:04:56.000Z" + }, + { + "title": "Guidance: Management of health and safety in defence: arrangements (JSP 375 volume 1)", + "link": "https://www.gov.uk/government/publications/jsp-375-health-and-safety-handbook-volume-2", + "pubDate": "2023-12-07T14:39:52.000Z", + "summary": "Provides the guidance and best practice that will assist the user to comply management of health and safety in defence. ", + "id": "https://www.gov.uk/government/publications/jsp-375-health-and-safety-handbook-volume-2#2023-12-07T14:39:52Z", + "isoDate": "2023-12-07T14:39:52.000Z" + }, + { + "title": "Guidance: Yoxter Range and dry training area firing notice", + "link": "https://www.gov.uk/government/publications/yoxter-range-and-dry-training-area-firing-notice", + "pubDate": "2023-12-07T14:39:25.000Z", + "summary": "Firing schedule for Yoxter Range and dry training area (YRDTA).", + "id": "https://www.gov.uk/government/publications/yoxter-range-and-dry-training-area-firing-notice#2023-12-07T14:39:25Z", + "isoDate": "2023-12-07T14:39:25.000Z" + }, + { + "title": "Guidance: Langport Range and dry training area firing notice", + "link": "https://www.gov.uk/government/publications/langport-range-and-dry-training-area-firing-notice", + "pubDate": "2023-12-07T14:39:14.000Z", + "summary": "Firing schedule for Langport Range and dry training area (LRDTA).", + "id": "https://www.gov.uk/government/publications/langport-range-and-dry-training-area-firing-notice#2023-12-07T14:39:14Z", + "isoDate": "2023-12-07T14:39:14.000Z" + }, + { + "title": "Guidance: Defence Estate Optimisation (DEO) Portfolio", + "link": "https://www.gov.uk/guidance/defence-estate-optimisation-deo-portfolio", + "pubDate": "2023-12-07T12:32:06.000Z", + "summary": "In November 2016, the Ministry of Defence (MOD) announced a 25-year strategy to modernise the Defence estate to support future capability requirements.", + "id": "https://www.gov.uk/guidance/defence-estate-optimisation-deo-portfolio#2023-12-07T12:32:06Z", + "isoDate": "2023-12-07T12:32:06.000Z" + }, + { + "title": "News story: MOD signs infrastructure contracts at RAF Waddington \u2013 the new home of the Red Arrows", + "link": "https://www.gov.uk/government/news/mod-signs-infrastructure-contracts-at-raf-waddington-the-new-home-of-the-red-arrows", + "pubDate": "2023-12-07T12:27:24.000Z", + "summary": "The MOD have signed contracts to provide new and refurbished infrastructure for the Red Arrows at their new home of RAF Waddington. ", + "id": "https://www.gov.uk/government/news/mod-signs-infrastructure-contracts-at-raf-waddington-the-new-home-of-the-red-arrows#2023-12-07T12:27:24Z", + "isoDate": "2023-12-07T12:27:24.000Z" + }, + { + "title": "Policy paper: Defence Operational Energy Strategy", + "link": "https://www.gov.uk/government/publications/defence-operational-energy-strategy", + "pubDate": "2023-12-07T11:05:56.000Z", + "summary": "The Defence Operational Energy Strategy (DOES) sets out how the Ministry of Defence (MOD) will respond to the global energy transition. ", + "id": "https://www.gov.uk/government/publications/defence-operational-energy-strategy#2023-12-07T11:05:56Z", + "isoDate": "2023-12-07T11:05:56.000Z" + }, + { + "title": "Policy paper: Air Operating Concept (AirOpC)", + "link": "https://www.gov.uk/government/publications/air-operating-concept-airopc", + "pubDate": "2023-12-07T10:43:25.000Z", + "summary": "The RAF\u2019s contribution to national defence and its evolution to succeed in a more contested and volatile world.", + "id": "https://www.gov.uk/government/publications/air-operating-concept-airopc#2023-12-07T10:43:25Z", + "isoDate": "2023-12-07T10:43:25.000Z" + }, + { + "title": "Guidance: Kingsbury ranges firing times", + "link": "https://www.gov.uk/government/publications/kingsbury-ranges-firing-times", + "pubDate": "2023-12-07T10:17:38.000Z", + "summary": "Warning notice of firing at Kingsbury ranges.", + "id": "https://www.gov.uk/government/publications/kingsbury-ranges-firing-times#2023-12-07T10:17:38Z", + "isoDate": "2023-12-07T10:17:38.000Z" + }, + { + "title": "Guidance: Sealand ranges firing times", + "link": "https://www.gov.uk/government/publications/sealand-ranges-firing-times", + "pubDate": "2023-12-07T10:17:08.000Z", + "summary": "Warning notice of firing at Sealand ranges.", + "id": "https://www.gov.uk/government/publications/sealand-ranges-firing-times#2023-12-07T10:17:08Z", + "isoDate": "2023-12-07T10:17:08.000Z" + }, + { + "title": "Guidance: Whittington ranges firing times", + "link": "https://www.gov.uk/government/publications/whittington-ranges-firing-times", + "pubDate": "2023-12-07T10:16:31.000Z", + "summary": "Warning notice of firing at Whittington ranges.", + "id": "https://www.gov.uk/government/publications/whittington-ranges-firing-times#2023-12-07T10:16:31Z", + "isoDate": "2023-12-07T10:16:31.000Z" + }, + { + "title": "Guidance: Military low flying: RAF operational low flying training timetable", + "link": "https://www.gov.uk/government/publications/operational-low-flying-training-timetable", + "pubDate": "2023-12-07T10:11:27.000Z", + "summary": "Royal Air Force (RAF) operational low flying training timetables in 3 areas of the UK.", + "id": "https://www.gov.uk/government/publications/operational-low-flying-training-timetable#2023-12-07T10:11:27Z", + "isoDate": "2023-12-07T10:11:27.000Z" + }, + { + "title": "News story: Artificial intelligence companies showcase defence capabilities at inaugural \u2018DAIC Connect\u2019 event", + "link": "https://www.gov.uk/government/news/artificial-intelligence-companies-showcase-defence-capabilities-at-inaugural-daic-connect-event", + "pubDate": "2023-12-07T09:30:09.000Z", + "summary": "More than 70 AI companies shared how their innovations can enhance defence\u2019s current and future capabilities at the inaugural DAIC Connect industry event on Monday 27 November. \u00a0", + "id": "https://www.gov.uk/government/news/artificial-intelligence-companies-showcase-defence-capabilities-at-inaugural-daic-connect-event#2023-12-07T09:30:09Z", + "isoDate": "2023-12-07T09:30:09.000Z" + }, + { + "title": "Official Statistics: UK armed forces and UK civilian operational casualty and fatality statistics: data up to 30 September 2023", + "link": "https://www.gov.uk/government/statistics/uk-armed-forces-and-uk-civilian-operational-casualty-and-fatality-statistics-data-up-to-30-september-2023", + "pubDate": "2023-12-07T09:30:09.000Z", + "summary": "Biannual UK armed forces and UK civilian operational casualty and fatality statistics.", + "id": "https://www.gov.uk/government/statistics/uk-armed-forces-and-uk-civilian-operational-casualty-and-fatality-statistics-data-up-to-30-september-2023#2023-12-07T09:30:09Z", + "isoDate": "2023-12-07T09:30:09.000Z" + }, + { + "title": "News story: Defence Secretary visits Israel and Occupied Palestinian Territories to explore options to boost humanitarian aid", + "link": "https://www.gov.uk/government/news/defence-secretary-visits-israel-and-occupied-palestinian-territories-to-explore-options-to-boost-humanitarian-aid", + "pubDate": "2023-12-07T00:01:11.000Z", + "summary": "As part of ongoing diplomatic efforts in the Middle East, the Defence Secretary travels to the Occupied Palestinian Territories (OPTs) and Israel this week. ", + "id": "https://www.gov.uk/government/news/defence-secretary-visits-israel-and-occupied-palestinian-territories-to-explore-options-to-boost-humanitarian-aid#2023-12-07T00:01:11Z", + "isoDate": "2023-12-07T00:01:11.000Z" + }, + { + "title": "FOI release: FOI responses published by MOD: week commencing 4 December 2023", + "link": "https://www.gov.uk/government/publications/foi-responses-published-by-mod-week-commencing-4-december-2023", + "pubDate": "2023-12-06T11:51:28.000Z", + "summary": "Ministry of Defence (MOD) Freedom of Information (FOI) responses released during the week commencing 4 December 2023", + "id": "https://www.gov.uk/government/publications/foi-responses-published-by-mod-week-commencing-4-december-2023#2023-12-06T11:51:28Z", + "isoDate": "2023-12-06T11:51:28.000Z" + }, + { + "title": "News story: Defence Business Services Festive Opening Hours for Customers", + "link": "https://www.gov.uk/government/news/defence-business-services-festive-opening-hours-for-customers", + "pubDate": "2023-12-06T11:09:43.000Z", + "summary": "Opening hours for the Veterans UK Helpline, Joint Personnel Administration Centre, MOD Medals Office and Joint Casualty and Compassionate Centre.", + "id": "https://www.gov.uk/government/news/defence-business-services-festive-opening-hours-for-customers#2023-12-06T11:09:43Z", + "isoDate": "2023-12-06T11:09:43.000Z" + }, + { + "title": "Guidance: Military low flying: MOD sponsored air exercises", + "link": "https://www.gov.uk/government/publications/military-low-flying-mod-sponsored-air-exercises", + "pubDate": "2023-12-06T10:27:35.000Z", + "summary": "MOD sponsored low flying exercises within the UK low flying system.", + "id": "https://www.gov.uk/government/publications/military-low-flying-mod-sponsored-air-exercises#2023-12-06T10:27:35Z", + "isoDate": "2023-12-06T10:27:35.000Z" + }, + { + "title": "Guidance: Holcombe Moor firing times", + "link": "https://www.gov.uk/government/publications/holcombe-moor-firing-times", + "pubDate": "2023-12-06T10:16:57.000Z", + "summary": "Dates and times when Holcombe Moor's training area is being used for live firing.", + "id": "https://www.gov.uk/government/publications/holcombe-moor-firing-times#2023-12-06T10:16:57Z", + "isoDate": "2023-12-06T10:16:57.000Z" + }, + { + "title": "Transparency data: MOD: senior officials' business expenses, hospitality and meetings, January to December 2023", + "link": "https://www.gov.uk/government/publications/mod-senior-officials-business-expenses-hospitality-and-meetings-january-to-december-2023", + "pubDate": "2023-12-15T10:20:15.000Z", + "summary": "Data on senior officials' and permanent secretaries' business expenses, hospitality and meetings with external organisations.", + "id": "https://www.gov.uk/government/publications/mod-senior-officials-business-expenses-hospitality-and-meetings-january-to-december-2023#2023-12-15T10:20:15Z", + "isoDate": "2023-12-15T10:20:15.000Z" + }, + { + "title": "Guidance: Service Family Accommodation", + "link": "https://www.gov.uk/guidance/defence-infrastructure-organisation-service-family-accommodation", + "pubDate": "2023-12-14T16:01:14.000Z", + "summary": "A guide for Service families about applying for, maintaining, moving in and out of and living in UK Service Family Accommodation (SFA).", + "id": "https://www.gov.uk/guidance/defence-infrastructure-organisation-service-family-accommodation#2023-12-14T16:01:14Z", + "isoDate": "2023-12-14T16:01:14.000Z" + }, + { + "title": "Transparency data: MOD business appointment rules: applications completed from July to September 2023", + "link": "https://www.gov.uk/government/publications/mod-business-appointment-rules-applications-completed-from-july-to-september-2023", + "pubDate": "2023-12-14T16:00:06.000Z", + "summary": "Summary of advice given under the business appointment rules to applicants at SCS2 and SCS1 level and equivalents.", + "id": "https://www.gov.uk/government/publications/mod-business-appointment-rules-applications-completed-from-july-to-september-2023#2023-12-14T16:00:06Z", + "isoDate": "2023-12-14T16:00:06.000Z" + }, + { + "title": "Transparency data: MOD: special advisers' gifts, hospitality and meetings, January to September 2023", + "link": "https://www.gov.uk/government/publications/mod-special-advisers-gifts-hospitality-and-meetings-april-to-june-2023", + "pubDate": "2023-12-14T16:00:02.000Z", + "summary": "Data on gifts and hospitality received by special advisers, and meetings they attended with senior media figures.", + "id": "https://www.gov.uk/government/publications/mod-special-advisers-gifts-hospitality-and-meetings-april-to-june-2023#2023-12-14T16:00:02Z", + "isoDate": "2023-12-14T16:00:02.000Z" + }, + { + "title": "Transparency data: MOD: ministerial gifts, hospitality, travel and meetings, January to September 2023", + "link": "https://www.gov.uk/government/publications/mod-ministerial-gifts-hospitality-travel-and-meetings-april-to-june-2023", + "pubDate": "2023-12-14T16:00:02.000Z", + "summary": "Data on gifts that ministers gave and received, their external meetings and any overseas travel.", + "id": "https://www.gov.uk/government/publications/mod-ministerial-gifts-hospitality-travel-and-meetings-april-to-june-2023#2023-12-14T16:00:02Z", + "isoDate": "2023-12-14T16:00:02.000Z" + }, + { + "title": "International treaty: Convention on the establishment of the 'Global Combat Air Programme (GCAP) - International Government Organisation'", + "link": "https://www.gov.uk/government/publications/convention-on-the-establishment-of-the-global-combat-air-programme-gcap-international-government-organisation", + "pubDate": "2023-12-14T15:48:36.000Z", + "summary": "An international treaty between the UK, Japan and Italy for a future combat air programme that aims to develop an innovative stealth fighter aircraft.", + "id": "https://www.gov.uk/government/publications/convention-on-the-establishment-of-the-global-combat-air-programme-gcap-international-government-organisation#2023-12-14T15:48:36Z", + "isoDate": "2023-12-14T15:48:36.000Z" + }, + { + "title": "Guidance: Industry Security Notice (ISN)", + "link": "https://www.gov.uk/government/publications/industry-security-notices-isns", + "pubDate": "2023-12-14T15:46:20.000Z", + "summary": "A list of Industry Security Notices (ISNs) for defence personnel to highlight security changes or information.", + "id": "https://www.gov.uk/government/publications/industry-security-notices-isns#2023-12-14T15:46:20Z", + "isoDate": "2023-12-14T15:46:20.000Z" + }, + { + "title": "Guidance: Contractor Flying Approved Organizations Scheme (Basic Remotely Piloted Air Systems) (CFAOS(BR))", + "link": "https://www.gov.uk/government/publications/contractor-flying-approved-organizations-scheme-basic-remotely-piloted-air-systems-cfaosbr", + "pubDate": "2023-12-14T14:57:28.000Z", + "summary": "Information about the Military Aviation Authority (MAA) contractor Flying Approved Organization Scheme (Basic Remotely Piloted Air Systems) (CFAOS(BR)).", + "id": "https://www.gov.uk/government/publications/contractor-flying-approved-organizations-scheme-basic-remotely-piloted-air-systems-cfaosbr#2023-12-14T14:57:28Z", + "isoDate": "2023-12-14T14:57:28.000Z" + }, + { + "title": "Guidance: MOD surplus inventory for sale", + "link": "https://www.gov.uk/government/publications/mod-surplus-inventory-for-sale", + "pubDate": "2023-12-14T13:55:27.000Z", + "summary": "The table below lists MOD inventory that may be available for sale. ", + "id": "https://www.gov.uk/government/publications/mod-surplus-inventory-for-sale#2023-12-14T13:55:27Z", + "isoDate": "2023-12-14T13:55:27.000Z" + }, + { + "title": "Transparency data: MOD: spending over \u00a325,000, January to October 2023", + "link": "https://www.gov.uk/government/publications/mod-spending-over-25000-january-2023", + "pubDate": "2023-12-14T13:55:16.000Z", + "summary": "Ministry of Defence reports on departmental spending over \u00a325,000.", + "id": "https://www.gov.uk/government/publications/mod-spending-over-25000-january-2023#2023-12-14T13:55:16Z", + "isoDate": "2023-12-14T13:55:16.000Z" + }, + { + "title": "Transparency data: MOD: spending over \u00a325,000, January to December 2017", + "link": "https://www.gov.uk/government/publications/mod-spending-over-25000-january-to-december-2017", + "pubDate": "2023-12-14T13:39:08.000Z", + "summary": "Ministry of Defence reports on departmental spending over \u00a325,000.", + "id": "https://www.gov.uk/government/publications/mod-spending-over-25000-january-to-december-2017#2023-12-14T13:39:08Z", + "isoDate": "2023-12-14T13:39:08.000Z" + }, + { + "title": "Guidance: Straight Point Ranges and Woodbury Common Grenade Range firing times", + "link": "https://www.gov.uk/government/publications/straightpoint-and-wcta-grenade-range-firing-times", + "pubDate": "2023-12-14T13:38:01.000Z", + "summary": "Firing times for Straight Point Ranges Complex (SPRC) and Woodbury Common Training Area (WCTA) Grenade Range. ", + "id": "https://www.gov.uk/government/publications/straightpoint-and-wcta-grenade-range-firing-times#2023-12-14T13:38:01Z", + "isoDate": "2023-12-14T13:38:01.000Z" + }, + { + "title": "Guidance: Air Safety Information Management System (ASIMS) user manual", + "link": "https://www.gov.uk/government/publications/air-safety-information-management-system-asims-user-manual", + "pubDate": "2023-12-14T13:36:14.000Z", + "summary": "This user manual is intended to be an easy to use reference for ASIMS users, and should be read in conjunction with Regulatory Article 1410.", + "id": "https://www.gov.uk/government/publications/air-safety-information-management-system-asims-user-manual#2023-12-14T13:36:14Z", + "isoDate": "2023-12-14T13:36:14.000Z" + }, + { + "title": "Form: MAA course application forms", + "link": "https://www.gov.uk/government/publications/maa-course-application-forms", + "pubDate": "2023-12-14T13:13:24.000Z", + "summary": "Application forms for Military Aviation Authority (MAA) and centre of air safety training (CoAST) sponsored courses.", + "id": "https://www.gov.uk/government/publications/maa-course-application-forms#2023-12-14T13:13:24Z", + "isoDate": "2023-12-14T13:13:24.000Z" + }, + { + "title": "Guidance: Driving Integration", + "link": "https://www.gov.uk/guidance/multi-domain-integration", + "pubDate": "2023-12-14T12:54:53.000Z", + "summary": "Integration is about ensuring Defence can act in a way greater than the sum of its parts, with government, our allies and industry to deliver a desired outcome.", + "id": "https://www.gov.uk/guidance/multi-domain-integration#2023-12-14T12:54:53Z", + "isoDate": "2023-12-14T12:54:53.000Z" + }, + { + "title": "Guidance: Chickerell firing times", + "link": "https://www.gov.uk/government/publications/chickerell-firing-times", + "pubDate": "2023-12-14T10:59:53.000Z", + "summary": "Warning notice of firing at Chickerell range.", + "id": "https://www.gov.uk/government/publications/chickerell-firing-times#2023-12-14T10:59:53Z", + "isoDate": "2023-12-14T10:59:53.000Z" + }, + { + "title": "Speech: Chief of the Defence Staff Admiral Sir Tony Radakin RUSI Lecture 2023", + "link": "https://www.gov.uk/government/speeches/chief-of-the-defence-staff-admiral-sir-tony-radakin-rusi-lecture-2023", + "pubDate": "2023-12-14T10:37:49.000Z", + "summary": "Chief of the Defence Staff Admiral Sir Tony Radakin gave his annual RUSI Lecture on 13 December 2023.", + "id": "https://www.gov.uk/government/speeches/chief-of-the-defence-staff-admiral-sir-tony-radakin-rusi-lecture-2023#2023-12-14T10:37:49Z", + "isoDate": "2023-12-14T10:37:49.000Z" + }, + { + "title": "National Statistics: Quarterly Service Personnel Statistics: 2023", + "link": "https://www.gov.uk/government/statistics/quarterly-service-personnel-statistics-2023", + "pubDate": "2023-12-14T09:30:06.000Z", + "summary": "UK service personnel statistics on strengths, requirements, intake, applications and outflow, by service for 2023.", + "id": "https://www.gov.uk/government/statistics/quarterly-service-personnel-statistics-2023#2023-12-14T09:30:06Z", + "isoDate": "2023-12-14T09:30:06.000Z" + }, + { + "title": "Press release: UK Carrier Strike Group to visit Japan in 2025", + "link": "https://www.gov.uk/government/news/uk-carrier-strike-group-to-visit-japan-in-2025", + "pubDate": "2023-12-14T07:38:53.000Z", + "summary": "The UK\u2019s Carrier Strike Group will visit Japan as part of the flagship 2025 Indo-Pacific deployment, Defence Secretary Grant Shapps has announced today", + "id": "https://www.gov.uk/government/news/uk-carrier-strike-group-to-visit-japan-in-2025#2023-12-14T07:38:53Z", + "isoDate": "2023-12-14T07:38:53.000Z" + }, + { + "title": "Guidance: Defence policy for modelling and simulation (JSP 939)", + "link": "https://www.gov.uk/government/publications/defence-policy-for-modelling-and-simulation-jsp-939", + "pubDate": "2024-01-03T15:41:42.000Z", + "summary": "JSP 939 describes the UK MOD\u2019s policy for modelling and simulation and details how both governance and technical coherence is applied. ", + "id": "https://www.gov.uk/government/publications/defence-policy-for-modelling-and-simulation-jsp-939#2024-01-03T15:41:42Z", + "isoDate": "2024-01-03T15:41:42.000Z" + }, + { + "title": "Policy paper: Secretary of State for Defence policy statement on health, safety and environmental protection", + "link": "https://www.gov.uk/government/publications/secretary-of-states-policy-statement-on-safety-health-environmental-protection-and-sustainable-development", + "pubDate": "2024-01-03T10:17:52.000Z", + "summary": "This policy statement sets out the MOD\u2019s legal obligations and the requirements of the Secretary of State for Defence from individuals, managers and commanders.", + "id": "https://www.gov.uk/government/publications/secretary-of-states-policy-statement-on-safety-health-environmental-protection-and-sustainable-development#2024-01-03T10:17:52Z", + "isoDate": "2024-01-03T10:17:52.000Z" + }, + { + "title": "Guidance: Dartmoor firing times", + "link": "https://www.gov.uk/government/publications/dartmoor-firing-programme", + "pubDate": "2024-01-02T15:05:23.000Z", + "summary": "Information on Dartmoor Training Area's firing times.", + "id": "https://www.gov.uk/government/publications/dartmoor-firing-programme#2024-01-02T15:05:23Z", + "isoDate": "2024-01-02T15:05:23.000Z" + }, + { + "title": "Guidance: JSP 752 -Tri-Service regulations for expenses and allowances", + "link": "https://www.gov.uk/government/publications/jsp-752-tri-service-regulations-for-expenses-and-allowances", + "pubDate": "2024-01-02T10:13:39.000Z", + "summary": "JSP 752 is the policy document for expenses and allowances for Regular and Reserve UK Armed Forces personnel.", + "id": "https://www.gov.uk/government/publications/jsp-752-tri-service-regulations-for-expenses-and-allowances#2024-01-02T10:13:39Z", + "isoDate": "2024-01-02T10:13:39.000Z" + }, + { + "title": "Open consultation: Proposed cessation of the following Official Statistics: Location of UK armed forces pension and compensation recipients", + "link": "https://www.gov.uk/government/consultations/proposed-cessation-of-the-following-official-statistics-location-of-uk-armed-forces-pension-and-compensation-recipients", + "pubDate": "2024-01-02T09:30:06.000Z", + "summary": "The Ministry of Defence (MOD) publishes an Official Statistic on the Location of UK armed forces pension and compensation recipients. We are seeking external users\u2019 views on the cessation of this report.", + "id": "https://www.gov.uk/government/consultations/proposed-cessation-of-the-following-official-statistics-location-of-uk-armed-forces-pension-and-compensation-recipients#2024-01-02T09:30:06Z", + "isoDate": "2024-01-02T09:30:06.000Z" + }, + { + "title": "Press release: First UK maritime shipment of lifesaving aid for Gaza arrives in Egypt", + "link": "https://www.gov.uk/government/news/first-uk-maritime-shipment-of-lifesaving-aid-for-gaza-arrives-in-egypt", + "pubDate": "2024-01-02T00:00:00.000Z", + "summary": "Lifesaving UK aid shipment for Gaza including thermal blankets and essential items delivered from Cyprus by Royal Fleet Auxiliary ship Lyme Bay.", + "id": "https://www.gov.uk/government/news/first-uk-maritime-shipment-of-lifesaving-aid-for-gaza-arrives-in-egypt#2024-01-02T00:00:00Z", + "isoDate": "2024-01-02T00:00:00.000Z" + }, + { + "title": "News story: The Military Division of the New Years Honours 2024", + "link": "https://www.gov.uk/government/news/the-military-division-of-the-new-years-honours-2024", + "pubDate": "2023-12-29T23:06:54.000Z", + "summary": "Armed Forces personnel and Defence Civil Servants have been granted state honours by His Majesty The King in the annual New Year Honours list.", + "id": "https://www.gov.uk/government/news/the-military-division-of-the-new-years-honours-2024#2023-12-29T23:06:54Z", + "isoDate": "2023-12-29T23:06:54.000Z" + }, + { + "title": "News story: New Year Honours 2024 for defence personnel", + "link": "https://www.gov.uk/government/news/new-year-honours-2024-for-defence-personnel", + "pubDate": "2023-12-29T00:00:00.000Z", + "summary": "Armed Forces personnel and Defence civilians have been granted state honours by His Majesty The King in the annual New Year Honours list.", + "id": "https://www.gov.uk/government/news/new-year-honours-2024-for-defence-personnel#2023-12-29T00:00:00Z", + "isoDate": "2023-12-29T00:00:00.000Z" + }, + { + "title": "News story: The UK bolsters Ukraine's air defence after Putin's latest air strikes", + "link": "https://www.gov.uk/government/news/the-uk-bolsters-ukraines-air-defence-after-putins-latest-air-strikes", + "pubDate": "2023-12-29T00:00:00.000Z", + "summary": "Defence Secretary announces that hundreds of British-made air defence missiles are being shipped to Ukraine to protect civilians and infrastructure from drones and bombing.", + "id": "https://www.gov.uk/government/news/the-uk-bolsters-ukraines-air-defence-after-putins-latest-air-strikes#2023-12-29T00:00:00Z", + "isoDate": "2023-12-29T00:00:00.000Z" + }, + { + "title": "News story: UK takes lead of NATO Rapid Response Force", + "link": "https://www.gov.uk/government/news/uk-takes-lead-of-nato-rapid-response-force", + "pubDate": "2023-12-28T10:00:07.000Z", + "summary": "UK forces are taking lead of NATO\u2019s rapid response force\u00a0on 1 January 2024, placing thousands of soldiers on standby and ready to deploy within days.\u00a0", + "id": "https://www.gov.uk/government/news/uk-takes-lead-of-nato-rapid-response-force#2023-12-28T10:00:07Z", + "isoDate": "2023-12-28T10:00:07.000Z" + }, + { + "title": "Promotional material: desider 2023", + "link": "https://www.gov.uk/government/publications/desider-2023", + "pubDate": "2023-12-27T10:01:03.000Z", + "summary": "Magazine of Defence Equipment and Support (DE&S).", + "id": "https://www.gov.uk/government/publications/desider-2023#2023-12-27T10:01:03Z", + "isoDate": "2023-12-27T10:01:03.000Z" + }, + { + "title": "News story: Ukrainian pilots learn to fly F-16 fighter jets after completing basic training in the UK", + "link": "https://www.gov.uk/government/news/ukrainian-pilots-learn-to-fly-f-16-fighter-jets-after-completing-basic-training-in-the-uk", + "pubDate": "2023-12-26T00:01:11.000Z", + "summary": "The UK has been providing basic training to Ukraine's combat air pilots as a contribution to the international Air Force Capability Coalition for Ukraine", + "id": "https://www.gov.uk/government/news/ukrainian-pilots-learn-to-fly-f-16-fighter-jets-after-completing-basic-training-in-the-uk#2023-12-26T00:01:11Z", + "isoDate": "2023-12-26T00:01:11.000Z" + }, + { + "title": "News story: British Army\u2019s Ajax vehicle rounds out positive year", + "link": "https://www.gov.uk/government/news/british-armys-ajax-vehicle-rounds-out-positive-year", + "pubDate": "2023-12-23T09:00:04.000Z", + "summary": "The Ajax Programme is making positive progress towards the delivery of a new generation of armoured fighting vehicles that meets the Army\u2019s needs.", + "id": "https://www.gov.uk/government/news/british-armys-ajax-vehicle-rounds-out-positive-year#2023-12-23T09:00:04Z", + "isoDate": "2023-12-23T09:00:04.000Z" + }, + { + "title": "Guidance: DAO qualification handbooks: level 3", + "link": "https://www.gov.uk/government/publications/dao-qualification-handbooks-level-3-courses", + "pubDate": "2023-12-21T11:59:36.000Z", + "summary": "Qualifications, learning outcomes and assessment criteria for Defence Awarding Organisation courses.", + "id": "https://www.gov.uk/government/publications/dao-qualification-handbooks-level-3-courses#2023-12-21T11:59:36Z", + "isoDate": "2023-12-21T11:59:36.000Z" + }, + { + "title": "Transparency data: MOD appointment letters for Government Major Projects Portfolio (GMPP) Senior Responsible Owners (SROs)", + "link": "https://www.gov.uk/government/publications/ministry-of-defence-appointment-letters-for-government-major-projects-portfolio-gmpp-senior-responsible-owners-sros", + "pubDate": "2024-01-05T11:12:24.000Z", + "summary": "These letters include the date of appointment, the programme deliverables, what the SRO is responsible for and how long the role is expected to last.", + "id": "https://www.gov.uk/government/publications/ministry-of-defence-appointment-letters-for-government-major-projects-portfolio-gmpp-senior-responsible-owners-sros#2024-01-05T11:12:24Z", + "isoDate": "2024-01-05T11:12:24.000Z" + }, + { + "title": "Guidance: What does the Armed Forces Covenant mean for businesses?", + "link": "https://www.gov.uk/government/publications/corporate-covenant-guidance", + "pubDate": "2024-01-05T10:26:59.000Z", + "summary": "Suggestions of best practice and good ideas for your Armed Forces Covenant.\r\n", + "id": "https://www.gov.uk/government/publications/corporate-covenant-guidance#2024-01-05T10:26:59Z", + "isoDate": "2024-01-05T10:26:59.000Z" + }, + { + "title": "Regulation: Notice of proposed amendments (NPA) reference table", + "link": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-reference-table", + "pubDate": "2024-01-04T13:50:02.000Z", + "summary": "The Military Aviation Authority (MAA) NPA table provides information of proposed changes in regulations and release date.", + "id": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-reference-table#2024-01-04T13:50:02Z", + "isoDate": "2024-01-04T13:50:02.000Z" + }, + { + "title": "Regulation: Notice of proposed amendments (NPA) documents", + "link": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-2014-documents", + "pubDate": "2024-01-04T13:49:15.000Z", + "summary": "MAA issuing of an NPA allows a consultation period to be undertaken on a proposed amendment or the implementation of new regulation.", + "id": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-2014-documents#2024-01-04T13:49:15Z", + "isoDate": "2024-01-04T13:49:15.000Z" + }, + { + "title": "Guidance: Armed forces pensions", + "link": "https://www.gov.uk/guidance/pensions-and-compensation-for-veterans", + "pubDate": "2024-01-04T13:46:46.000Z", + "summary": "Information related to the Armed Forces Pension Schemes.", + "id": "https://www.gov.uk/guidance/pensions-and-compensation-for-veterans#2024-01-04T13:46:46Z", + "isoDate": "2024-01-04T13:46:46.000Z" + }, + { + "title": "Corporate report: Investigation into the death of a Royal Air Force (RAF) service person in a motorcycle accident at Cadwell Park race circuit on Friday 27 May 2022", + "link": "https://www.gov.uk/government/publications/investigation-into-the-death-of-a-royal-air-force-raf-service-person-in-a-motorcycle-accident-at-cadwell-park-race-circuit-on-friday-27-may-2022", + "pubDate": "2024-01-18T12:00:07.000Z", + "summary": "Investigation into the death of a RAF service person in a motorcycle accident at Cadwell Park race circuit on Friday 27 May 2022.", + "id": "https://www.gov.uk/government/publications/investigation-into-the-death-of-a-royal-air-force-raf-service-person-in-a-motorcycle-accident-at-cadwell-park-race-circuit-on-friday-27-may-2022#2024-01-18T12:00:07Z", + "isoDate": "2024-01-18T12:00:07.000Z" + }, + { + "title": "Guidance: Asbestos in defence equipment platforms buildings and infrastructure", + "link": "https://www.gov.uk/government/publications/asbestos-in-defence-equipment-platforms-buildings-and-infrastructure", + "pubDate": "2024-01-18T11:57:50.000Z", + "summary": "Update on Ministry of Defence (MOD) management of asbestos in defence equipment platforms, buildings and infrastructure.", + "id": "https://www.gov.uk/government/publications/asbestos-in-defence-equipment-platforms-buildings-and-infrastructure#2024-01-18T11:57:50Z", + "isoDate": "2024-01-18T11:57:50.000Z" + }, + { + "title": "Consultation outcome: Reform of the Single Source Contract Regulations (SSCRs) - secondary legislation", + "link": "https://www.gov.uk/government/consultations/reform-of-the-single-source-contract-regulations-sscrs-secondary-legislation", + "pubDate": "2024-01-18T11:00:05.000Z", + "summary": "A consultation seeking views on the detailed approach to the secondary legislation.", + "id": "https://www.gov.uk/government/consultations/reform-of-the-single-source-contract-regulations-sscrs-secondary-legislation#2024-01-18T11:00:05Z", + "isoDate": "2024-01-18T11:00:05.000Z" + }, + { + "title": "Transparency data: MOD: workforce management information January to November 2023", + "link": "https://www.gov.uk/government/publications/mod-workforce-management-information-january-to-may-2023", + "pubDate": "2024-01-18T10:17:34.000Z", + "summary": "Reports on departmental staff numbers and costs.", + "id": "https://www.gov.uk/government/publications/mod-workforce-management-information-january-to-may-2023#2024-01-18T10:17:34Z", + "isoDate": "2024-01-18T10:17:34.000Z" + }, + { + "title": "Independent report: Command Control in the Future: The Defence C2 Enterprise", + "link": "https://www.gov.uk/government/publications/command-control-in-the-future-the-defence-c2-enterprise", + "pubDate": "2024-01-18T00:00:00.000Z", + "summary": "This is the second in a series of papers examining the future of command and control out to 2040. ", + "id": "https://www.gov.uk/government/publications/command-control-in-the-future-the-defence-c2-enterprise#2024-01-18T00:00:00Z", + "isoDate": "2024-01-18T00:00:00.000Z" + }, + { + "title": "Independent report: Command and Control in the Future: Grappling with Complexity", + "link": "https://www.gov.uk/government/publications/command-and-control-in-the-future-grappling-with-complexity", + "pubDate": "2024-01-18T00:00:00.000Z", + "summary": "This is the first in a series of papers examining the future of command and control in the period from 2030 to 2040. ", + "id": "https://www.gov.uk/government/publications/command-and-control-in-the-future-grappling-with-complexity#2024-01-18T00:00:00Z", + "isoDate": "2024-01-18T00:00:00.000Z" + }, + { + "title": "Guidance: Veterans News and Communications Hub", + "link": "https://www.gov.uk/guidance/veterans-news-and-communications-hub", + "pubDate": "2024-01-17T15:39:26.000Z", + "summary": "The Hub enables forces-friendly organisations across all sectors to showcase the continued value of the UK\u2019s highly skilled veteran community.", + "id": "https://www.gov.uk/guidance/veterans-news-and-communications-hub#2024-01-17T15:39:26Z", + "isoDate": "2024-01-17T15:39:26.000Z" + }, + { + "title": "Guidance: Review of nuclear archive records", + "link": "https://www.gov.uk/government/publications/review-of-nuclear-archive-records", + "pubDate": "2024-01-17T15:16:32.000Z", + "summary": "The Ministry of Defence (MOD) is conducting a review of historic files relating to the United Kingdom\u2019s Nuclear Weapons programme.", + "id": "https://www.gov.uk/government/publications/review-of-nuclear-archive-records#2024-01-17T15:16:32Z", + "isoDate": "2024-01-17T15:16:32.000Z" + }, + { + "title": "Official Statistics: Defence personnel NHS commissioning bi-annual statistics: financial year 2022/23", + "link": "https://www.gov.uk/government/statistics/defence-personnel-nhs-commissioning-bi-annual-statistics-financial-year-202223", + "pubDate": "2024-01-17T13:11:32.000Z", + "summary": "Number of serving UK armed forces personnel and civilian personnel with a Defence Medical Services registration.", + "id": "https://www.gov.uk/government/statistics/defence-personnel-nhs-commissioning-bi-annual-statistics-financial-year-202223#2024-01-17T13:11:32Z", + "isoDate": "2024-01-17T13:11:32.000Z" + }, + { + "title": "Press release: Digital defence transformation boosted by \u00a3150 million UK contract", + "link": "https://www.gov.uk/government/news/digital-defence-transformation-boosted-by-150-million-uk-contract", + "pubDate": "2024-01-17T00:00:00.000Z", + "summary": "Digital services across Defence will be transformed in a \u00a3150 million contract awarded to UK-based technology services provider, Computacenter. ", + "id": "https://www.gov.uk/government/news/digital-defence-transformation-boosted-by-150-million-uk-contract#2024-01-17T00:00:00Z", + "isoDate": "2024-01-17T00:00:00.000Z" + }, + { + "title": "News story: A focus on skills for UK shipbuilding", + "link": "https://www.gov.uk/government/news/a-focus-on-skills-for-uk-shipbuilding", + "pubDate": "2024-01-16T15:26:58.000Z", + "summary": "Applications are now open to join the Skills Delivery Group.", + "id": "https://www.gov.uk/government/news/a-focus-on-skills-for-uk-shipbuilding#2024-01-16T15:26:58Z", + "isoDate": "2024-01-16T15:26:58.000Z" + }, + { + "title": "Guidance: Search for businesses who have signed the Armed Forces Covenant", + "link": "https://www.gov.uk/government/publications/search-for-businesses-who-have-signed-the-armed-forces-covenant", + "pubDate": "2024-01-16T13:56:08.000Z", + "summary": "A searchable index of businesses who have signed the Armed Forces Covenant.", + "id": "https://www.gov.uk/government/publications/search-for-businesses-who-have-signed-the-armed-forces-covenant#2024-01-16T13:56:08Z", + "isoDate": "2024-01-16T13:56:08.000Z" + }, + { + "title": "Corporate report: Service Inquiry into the death of a service person in an accident with a Warrior armoured vehicle on Salisbury Plain Training Area on 21 June 2022", + "link": "https://www.gov.uk/government/publications/service-inquiry-into-the-death-of-a-service-person-in-an-accident-with-a-warrior-armoured-vehicle-on-salisbury-plain-training-area-on-21-june-2022", + "pubDate": "2024-01-16T12:00:01.000Z", + "summary": "Service Inquiry report into the death of a service person in an accident with a Warrior armoured vehicle on Salisbury Plain Training Area on 21 June 2022.", + "id": "https://www.gov.uk/government/publications/service-inquiry-into-the-death-of-a-service-person-in-an-accident-with-a-warrior-armoured-vehicle-on-salisbury-plain-training-area-on-21-june-2022#2024-01-16T12:00:01Z", + "isoDate": "2024-01-16T12:00:01.000Z" + }, + { + "title": "Guidance: South East Training Estate firing times", + "link": "https://www.gov.uk/government/publications/south-east-training-estate-firing-times", + "pubDate": "2024-01-19T11:19:26.000Z", + "summary": "Firing and closure times for November and December for the South East Training Estate, including Aldershot, Ash, Barossa, Chilcomb, Hythe, Longmoor, Lydd, Moody's Down, Pirbright and Otmoor ranges. ", + "id": "https://www.gov.uk/government/publications/south-east-training-estate-firing-times#2024-01-19T11:19:26Z", + "isoDate": "2024-01-19T11:19:26.000Z" + }, + { + "title": "Guidance: Draft tri-service accommodation regulations (TSARs) (JSP 464) - March 2024", + "link": "https://www.gov.uk/government/publications/draft-tri-service-accommodation-regulations-tsars-jsp-464-march-2024", + "pubDate": "2024-01-19T09:30:10.000Z", + "summary": "This edition of JSP 464 is applicable from 11 March 2024. JSP 464 is the definitive policy for the provision of service family accommodation, single living accommodation and the substitute equivalents.", + "id": "https://www.gov.uk/government/publications/draft-tri-service-accommodation-regulations-tsars-jsp-464-march-2024#2024-01-19T09:30:10Z", + "isoDate": "2024-01-19T09:30:10.000Z" + }, + { + "title": "Guidance: New Accommodation Offer", + "link": "https://www.gov.uk/guidance/new-accommodation-offer", + "pubDate": "2024-01-19T09:30:10.000Z", + "summary": "Starting from March 2024, the MOD will begin introducing a new accommodation offer for our armed forces. ", + "id": "https://www.gov.uk/guidance/new-accommodation-offer#2024-01-19T09:30:10Z", + "isoDate": "2024-01-19T09:30:10.000Z" + }, + { + "title": "News story: Advanced future military laser achieves UK first", + "link": "https://www.gov.uk/government/news/advanced-future-military-laser-achieves-uk-first", + "pubDate": "2024-01-19T09:00:02.000Z", + "summary": "A military laser which could boost the UK Armed Forces with greater accuracy while reducing the reliance on high-cost ammunition has reached its next milestone.", + "id": "https://www.gov.uk/government/news/advanced-future-military-laser-achieves-uk-first#2024-01-19T09:00:02Z", + "isoDate": "2024-01-19T09:00:02.000Z" + }, + { + "title": "Guidance: Air Safety Information Management System (ASIMS) user manual", + "link": "https://www.gov.uk/government/publications/air-safety-information-management-system-asims-user-manual", + "pubDate": "2023-10-27T09:52:13.000Z", + "summary": "This user manual is intended to be an easy to use reference for ASIMS users, and should be read in conjunction with Regulatory Article 1410.", + "id": "https://www.gov.uk/government/publications/air-safety-information-management-system-asims-user-manual#2023-10-27T09:52:13Z", + "isoDate": "2023-10-27T09:52:13.000Z" + }, + { + "title": "Regulation: Notice of proposed amendments (NPA) documents", + "link": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-2014-documents", + "pubDate": "2023-10-27T08:08:27.000Z", + "summary": "MAA issuing of an NPA allows a consultation period to be undertaken on a proposed amendment or the implementation of new regulation.", + "id": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-2014-documents#2023-10-27T08:08:27Z", + "isoDate": "2023-10-27T08:08:27.000Z" + }, + { + "title": "Regulation: Notice of proposed amendments (NPA) reference table", + "link": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-reference-table", + "pubDate": "2023-10-27T08:08:02.000Z", + "summary": "The Military Aviation Authority (MAA) NPA table provides information of proposed changes in regulations and release date.", + "id": "https://www.gov.uk/government/publications/notice-of-proposed-amendments-npa-reference-table#2023-10-27T08:08:02Z", + "isoDate": "2023-10-27T08:08:02.000Z" + }, + { + "title": "News story: Operational Honours and Awards List October 2023", + "link": "https://www.gov.uk/government/news/operational-honours-and-awards-list-october-2023", + "pubDate": "2023-10-26T23:01:03.000Z", + "summary": "The latest Operational Honours and Awards List recognises the bravery, commitment and commendable service of Armed Forces personnel.", + "id": "https://www.gov.uk/government/news/operational-honours-and-awards-list-october-2023#2023-10-26T23:01:03Z", + "isoDate": "2023-10-26T23:01:03.000Z" + }, + { + "title": "Press release: Defence Secretary travels to Middle East on regional security mission", + "link": "https://www.gov.uk/government/news/defence-secretary-travels-to-middle-east-on-regional-security-mission", + "pubDate": "2023-10-26T17:33:30.000Z", + "summary": "Defence Secretary Grant Shapps travelled to the Kingdom of Saudi Arabia and the United Arab Emirates to drive forward work to maintain regional stability.", + "id": "https://www.gov.uk/government/news/defence-secretary-travels-to-middle-east-on-regional-security-mission#2023-10-26T17:33:30Z", + "isoDate": "2023-10-26T17:33:30.000Z" + }, + { + "title": "News story: Graves of two Glasgow soldiers rediscovered in Belgium", + "link": "https://www.gov.uk/government/news/graves-of-two-glasgow-soldiers-rediscovered-in-belgium", + "pubDate": "2023-10-26T15:32:10.000Z", + "summary": "The graves of two World War One soldiers, Private (Pte) Peter Keill, aged 20, of 7th Battalion The Seaforth Highlanders and Second Lieutenant (2nd Lt) James Ferris, aged 29, of 16th Battalion The Highland Light Infantry, have finally been marked more than a century after their deaths.", + "id": "https://www.gov.uk/government/news/graves-of-two-glasgow-soldiers-rediscovered-in-belgium#2023-10-26T15:32:10Z", + "isoDate": "2023-10-26T15:32:10.000Z" + }, + { + "title": "Guidance: DAO qualification handbooks: level 4", + "link": "https://www.gov.uk/government/publications/dao-qualification-handbooks-level-4-courses", + "pubDate": "2023-10-26T15:21:15.000Z", + "summary": "Qualifications, learning outcomes and assessment criteria for Defence Awarding Organisation courses.", + "id": "https://www.gov.uk/government/publications/dao-qualification-handbooks-level-4-courses#2023-10-26T15:21:15Z", + "isoDate": "2023-10-26T15:21:15.000Z" + }, + { + "title": "News story: Graves of Two Glasgow Soldiers Identified In Belgium", + "link": "https://www.gov.uk/government/news/graves-of-two-glasgow-soldiers-identified-in-belgium", + "pubDate": "2023-10-26T14:34:33.000Z", + "summary": "The graves of two World War One soldiers, Private (Pte) Peter Keill, aged 20, of 7th Battalion The Seaforth Highlanders and Second Lieutenant (2ndLt) James Ferris, aged 29, of 16th Battalion The Highland Light Infantry, have finally been marked more than a century after their deaths.", + "id": "https://www.gov.uk/government/news/graves-of-two-glasgow-soldiers-identified-in-belgium#2023-10-26T14:34:33Z", + "isoDate": "2023-10-26T14:34:33.000Z" + }, + { + "title": "Guidance: Dartmoor firing times", + "link": "https://www.gov.uk/government/publications/dartmoor-firing-programme", + "pubDate": "2023-10-26T14:32:05.000Z", + "summary": "Information on Dartmoor Training Area's firing times.", + "id": "https://www.gov.uk/government/publications/dartmoor-firing-programme#2023-10-26T14:32:05Z", + "isoDate": "2023-10-26T14:32:05.000Z" + }, + { + "title": "Transparency data: MOD: workforce management information January to May 2023", + "link": "https://www.gov.uk/government/publications/mod-workforce-management-information-january-to-may-2023", + "pubDate": "2023-10-26T13:12:35.000Z", + "summary": "Reports on departmental staff numbers and costs.", + "id": "https://www.gov.uk/government/publications/mod-workforce-management-information-january-to-may-2023#2023-10-26T13:12:35Z", + "isoDate": "2023-10-26T13:12:35.000Z" + }, + { + "title": "Guidance: Country names", + "link": "https://www.gov.uk/government/publications/country-names", + "pubDate": "2023-10-26T13:10:55.000Z", + "summary": "Spellings of country names as recommended by the Permanent Committee on Geographical Names (PCGN).", + "id": "https://www.gov.uk/government/publications/country-names#2023-10-26T13:10:55Z", + "isoDate": "2023-10-26T13:10:55.000Z" + }, + { + "title": "Transparency data: Military court centres court listings", + "link": "https://www.gov.uk/government/publications/military-court-centres-court-listings", + "pubDate": "2023-10-26T11:19:44.000Z", + "summary": "Court listings for the Military court centres.\r\n", + "id": "https://www.gov.uk/government/publications/military-court-centres-court-listings#2023-10-26T11:19:44Z", + "isoDate": "2023-10-26T11:19:44.000Z" + }, + { + "title": "Regulation: Withdrawn MAA regulatory notices (RN)", + "link": "https://www.gov.uk/government/publications/withdrawn-maa-regulatory-notices-rn", + "pubDate": "2023-10-26T10:21:53.000Z", + "summary": "RNs will be issued by the MAA to notify the RC of changes in MAA owned process, or provide operational or engineering guidance.", + "id": "https://www.gov.uk/government/publications/withdrawn-maa-regulatory-notices-rn#2023-10-26T10:21:53Z", + "isoDate": "2023-10-26T10:21:53.000Z" + }, + { + "title": "Regulation: MAA regulatory notices (RN)", + "link": "https://www.gov.uk/government/publications/maa-regulatory-notices-rn", + "pubDate": "2023-10-26T10:21:08.000Z", + "summary": "RNs will be issued by the MAA to notify the RC of changes in MAA owned process, or provide operational or engineering guidance.", + "id": "https://www.gov.uk/government/publications/maa-regulatory-notices-rn#2023-10-26T10:21:08Z", + "isoDate": "2023-10-26T10:21:08.000Z" + }, + { + "title": "Guidance: Salisbury Plain Training Area (SPTA) newsletter", + "link": "https://www.gov.uk/government/publications/salisbury-plain-training-area-spta-newsletter", + "pubDate": "2023-10-26T09:22:08.000Z", + "summary": "Salisbury Plain updates on training activities and access.", + "id": "https://www.gov.uk/government/publications/salisbury-plain-training-area-spta-newsletter#2023-10-26T09:22:08Z", + "isoDate": "2023-10-26T09:22:08.000Z" + }, + { + "title": "News story: Three Great War soldiers buried with full military honours in Belgium", + "link": "https://www.gov.uk/government/news/three-great-war-soldiers-buried-with-full-military-honours-in-belgium", + "pubDate": "2023-10-26T07:49:03.000Z", + "summary": "More than a century after his death, Lance Serjeant Robert Brand, a 24-year-old Glaswegian soldier has finally been laid to rest with full military honours in Belgium. He was buried alongside two unknown soldiers from the same regiment. ", + "id": "https://www.gov.uk/government/news/three-great-war-soldiers-buried-with-full-military-honours-in-belgium#2023-10-26T07:49:03Z", + "isoDate": "2023-10-26T07:49:03.000Z" + }, + { + "title": "Guidance: Military low flying: MOD sponsored air exercises", + "link": "https://www.gov.uk/government/publications/military-low-flying-mod-sponsored-air-exercises", + "pubDate": "2023-10-25T16:24:58.000Z", + "summary": "MOD sponsored low flying exercises within the UK low flying system.", + "id": "https://www.gov.uk/government/publications/military-low-flying-mod-sponsored-air-exercises#2023-10-25T16:24:58Z", + "isoDate": "2023-10-25T16:24:58.000Z" + }, + { + "title": "Guidance: Service Prosecuting Authority", + "link": "https://www.gov.uk/guidance/service-prosecuting-authority", + "pubDate": "2023-10-25T15:54:06.000Z", + "summary": "The Service Prosecuting Authority is the principal prosecuting authority within the Service Justice System and is responsible for the prosecution of all service offences before the Service Courts. ", + "id": "https://www.gov.uk/guidance/service-prosecuting-authority#2023-10-25T15:54:06Z", + "isoDate": "2023-10-25T15:54:06.000Z" + }, + { + "title": "Consultation outcome: Joint Prosecution Protocol Consultation", + "link": "https://www.gov.uk/government/consultations/joint-prosecution-protocol-consultation", + "pubDate": "2023-10-25T15:53:52.000Z", + "summary": "A Service Prosecuting Authority (SPA), Crown Prosecution Service (CPS) and Public Prosecuting Service Northern Ireland (PPSNI) public consultation on joint prosecution protocol. ", + "id": "https://www.gov.uk/government/consultations/joint-prosecution-protocol-consultation#2023-10-25T15:53:52Z", + "isoDate": "2023-10-25T15:53:52.000Z" + }, + { + "title": "Guidance: Joint Prosecution Protocol", + "link": "https://www.gov.uk/government/publications/joint-prosecution-protocol", + "pubDate": "2023-10-25T15:53:48.000Z", + "summary": "Protocol regarding the exercise of criminal jurisdiction in England and Wales.", + "id": "https://www.gov.uk/government/publications/joint-prosecution-protocol#2023-10-25T15:53:48Z", + "isoDate": "2023-10-25T15:53:48.000Z" + } +] diff --git a/intro to react/newData/oldNews/420dd9d7d717628a60f934fad7f60db95728aac88f13779879d5090196b736c9.json b/intro to react/newData/oldNews/420dd9d7d717628a60f934fad7f60db95728aac88f13779879d5090196b736c9.json index 869db39..6e9c95a 100644 --- a/intro to react/newData/oldNews/420dd9d7d717628a60f934fad7f60db95728aac88f13779879d5090196b736c9.json +++ b/intro to react/newData/oldNews/420dd9d7d717628a60f934fad7f60db95728aac88f13779879d5090196b736c9.json @@ -1,557 +1,524 @@ [ - { - "creator": "Emily Ryan Miller", - "title": "Royal Navy deploys second warship to Arabian Gulf", - "link": "https://defence-blog.com/royal-navy-deploys-hms-diamond-arabian-gulf/", - "pubDate": "Thu, 30 Nov 2023 08:33:56 +0000", - "dc:creator": "Emily Ryan Miller", - "content": "

In response to escalating tensions in the Middle East, the United Kingdom has announced the deployment of HMS Diamond, the second warship to be sent to the Arabian Gulf. UK Defense Secretary Grant Shapps confirmed that HMS Diamond is en route to join Operation Kipion, a strategic maritime initiative aimed at safeguarding the UK\u2019s interests […]

\nThe post Royal Navy deploys second warship to Arabian Gulf first appeared on Defence Blog.", - "contentSnippet": "In response to escalating tensions in the Middle East, the United Kingdom has announced the deployment of HMS Diamond, the second warship to be sent to the Arabian Gulf. UK Defense Secretary Grant Shapps confirmed that HMS Diamond is en route to join Operation Kipion, a strategic maritime initiative aimed at safeguarding the UK\u2019s interests [\u2026]\nRoyal Navy deploys second warship to Arabian Gulf first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=70958", - "categories": [ - "Maritime Security", - "News", - "Arabian Gulf", - "HMS Diamond (D34)", - "Indian Ocean", - "UK" - ], - "isoDate": "2023-11-30T08:33:56.000Z" - }, - { - "creator": "Colton Jones", - "title": "UK, French, and US jets successfully execute joint defense drill", - "link": "https://defence-blog.com/raf-typhoons-french-rafale-us-f-35-jets-joint-defense-drill/", - "pubDate": "Sat, 11 Nov 2023 10:29:10 +0000", - "dc:creator": "Colton Jones", - "content": "

Royal Air Force (RAF) Typhoons, French Rafale, and US F-35 jets recently participated in a joint exercise aimed at responding to an attack on their main operating bases. The drill, part of Exercise Atlantic Trident, demonstrated the agility and adaptability of these military aircraft in the face of evolving threats. The Royal Air Force press […]

\nThe post UK, French, and US jets successfully execute joint defense drill first appeared on Defence Blog.", - "contentSnippet": "Royal Air Force (RAF) Typhoons, French Rafale, and US F-35 jets recently participated in a joint exercise aimed at responding to an attack on their main operating bases. The drill, part of Exercise Atlantic Trident, demonstrated the agility and adaptability of these military aircraft in the face of evolving threats. The Royal Air Force press [\u2026]\nUK, French, and US jets successfully execute joint defense drill first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=70525", - "categories": [ - "Aviation", - "News", - "PRESS RELEASES", - "Eurofighter\u00a0Typhoon", - "F-35", - "France", - "Rafale", - "UK", - "USA" - ], - "isoDate": "2023-11-11T10:29:10.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "AI set to revolutionize UK military engineering capabilities", - "link": "https://defence-blog.com/ai-set-to-revolutionize-uk-military-engineering-capabilities/", - "pubDate": "Tue, 31 Oct 2023 13:41:44 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

Cutting-edge artificial intelligence (AI) technology is set to reshape British military engineering capabilities, revolutionizing problem-solving and readiness for deployment, according to a recent UK Ministry of Defence press release. A groundbreaking project at the Royal Naval Air Station Yeovilton, a collaboration between 1710 Naval Air Squadron (based in HMNB Portsmouth), DE&S Digital AI Team, and […]

\nThe post AI set to revolutionize UK military engineering capabilities first appeared on Defence Blog.", - "contentSnippet": "Cutting-edge artificial intelligence (AI) technology is set to reshape British military engineering capabilities, revolutionizing problem-solving and readiness for deployment, according to a recent UK Ministry of Defence press release. A groundbreaking project at the Royal Naval Air Station Yeovilton, a collaboration between 1710 Naval Air Squadron (based in HMNB Portsmouth), DE&S Digital AI Team, and [\u2026]\nAI set to revolutionize UK military engineering capabilities first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=70201", - "categories": [ - "Aviation", - "News", - "AI", - "future", - "UK" - ], - "isoDate": "2023-10-31T13:41:44.000Z" - }, - { - "creator": "Emily Ryan Miller", - "title": "Flying into the night: F-35\u2019s SRVL test on UK\u2019s newest carrier", - "link": "https://defence-blog.com/flying-into-the-night-f-35s-srvl-test-on-uks-newest-carrier/", - "pubDate": "Tue, 31 Oct 2023 09:31:47 +0000", - "dc:creator": "Emily Ryan Miller", - "content": "

U.S. Marine Corps test pilot for the F-35 Lightning II, Marine Maj. Paul Gucwa, successfully executed the very first night shipborne rolling vertical landing (SRVL) aboard the HMS Prince of Wales (R09), the United Kingdom’s newest aircraft carrier. In the official press release, it was mentioned that this event took place in the waters of […]

\nThe post Flying into the night: F-35\u2019s SRVL test on UK\u2019s newest carrier first appeared on Defence Blog.", - "contentSnippet": "U.S. Marine Corps test pilot for the F-35 Lightning II, Marine Maj. Paul Gucwa, successfully executed the very first night shipborne rolling vertical landing (SRVL) aboard the HMS Prince of Wales (R09), the United Kingdom\u2019s newest aircraft carrier. In the official press release, it was mentioned that this event took place in the waters of [\u2026]\nFlying into the night: F-35\u2019s SRVL test on UK\u2019s newest carrier first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=70186", - "categories": [ - "Maritime Security", - "News", - "PRESS RELEASES", - "F-35B", - "HMS Prince of Wales (R09)", - "Marine", - "UK", - "USA" - ], - "isoDate": "2023-10-31T09:31:47.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "Royal Air Force receives first Protector drone", - "link": "https://defence-blog.com/royal-air-force-receives-first-protector-drone/", - "pubDate": "Tue, 24 Oct 2023 11:18:59 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

The Royal Air Force has received the first Protector aircraft, the latest Remotely Piloted Air System (RPAS), marking a significant milestone in the nation’s defense capabilities. The Protector is a British version of an MQ-9B SkyGuardian remotely piloted aircraft system developed by General Atomics Aeronautical Systems, Inc. Equipped with a suite of advanced surveillance equipment, […]

\nThe post Royal Air Force receives first Protector drone first appeared on Defence Blog.", - "contentSnippet": "The Royal Air Force has received the first Protector aircraft, the latest Remotely Piloted Air System (RPAS), marking a significant milestone in the nation\u2019s defense capabilities. The Protector is a British version of an MQ-9B SkyGuardian remotely piloted aircraft system developed by General Atomics Aeronautical Systems, Inc. Equipped with a suite of advanced surveillance equipment, [\u2026]\nRoyal Air Force receives first Protector drone first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69982", - "categories": [ - "Aviation", - "News", - "drone", - "General Atomics", - "Protector UAS", - "Royal Air Force", - "UK" - ], - "isoDate": "2023-10-24T11:18:59.000Z" - }, - { - "creator": "Emily Ryan Miller", - "title": "British Army declares its new AH-64E helicopter is ready to fight", - "link": "https://defence-blog.com/british-army-declares-its-new-ah-64e-helicopter-is-ready-to-fight/", - "pubDate": "Tue, 24 Oct 2023 07:59:53 +0000", - "dc:creator": "Emily Ryan Miller", - "content": "

The first regiment equipped with the British Army\u2019s new Apache AH-64E attack helicopters has achieved readiness for frontline deployment. The Army stated in a press release that during Exercise Iron Titan, 3 Regiment Army Air Corps (3 Regt AAC) underwent comprehensive testing, evaluating all aspects of the unit, including logistics, command and control procedures, and […]

\nThe post British Army declares its new AH-64E helicopter is ready to fight first appeared on Defence Blog.", - "contentSnippet": "The first regiment equipped with the British Army\u2019s new Apache AH-64E attack helicopters has achieved readiness for frontline deployment. The Army stated in a press release that during Exercise Iron Titan, 3 Regiment Army Air Corps (3 Regt AAC) underwent comprehensive testing, evaluating all aspects of the unit, including logistics, command and control procedures, and [\u2026]\nBritish Army declares its new AH-64E helicopter is ready to fight first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69965", - "categories": [ - "Army", - "News", - "PRESS RELEASES", - "AH-64", - "attack helicopter", - "UK" - ], - "isoDate": "2023-10-24T07:59:53.000Z" - }, - { - "creator": "Emily Ryan Miller", - "title": "Pentagon greenlights sale of next gen air-to-ground missiles to the UK", - "link": "https://defence-blog.com/pentagon-greenlights-sale-of-next-gen-air-to-ground-missiles-to-the-uk/", - "pubDate": "Tue, 24 Oct 2023 07:42:06 +0000", - "dc:creator": "Emily Ryan Miller", - "content": "

The U.S. State Department has given its approval for a potential Foreign Military Sale of Joint Air-to-Ground Missiles (JAGM) to the Government of the United Kingdom, marking a significant boost to the nation’s defense capabilities. The Defense Security Cooperation Agency, the Pentagon\u2019s top arms broker, formally certified this potential sale to Congress on Monday. The […]

\nThe post Pentagon greenlights sale of next gen air-to-ground missiles to the UK first appeared on Defence Blog.", - "contentSnippet": "The U.S. State Department has given its approval for a potential Foreign Military Sale of Joint Air-to-Ground Missiles (JAGM) to the Government of the United Kingdom, marking a significant boost to the nation\u2019s defense capabilities. The Defense Security Cooperation Agency, the Pentagon\u2019s top arms broker, formally certified this potential sale to Congress on Monday. The [\u2026]\nPentagon greenlights sale of next gen air-to-ground missiles to the UK first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69962", - "categories": [ - "Army", - "News", - "DSCA", - "JAGM", - "Lockheed Martin", - "UK", - "USA" - ], - "isoDate": "2023-10-24T07:42:06.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "UK continues to support Ukraine with a wide range of training", - "link": "https://defence-blog.com/uk-continues-to-support-ukraine-with-a-wide-range-of-training/", - "pubDate": "Wed, 18 Oct 2023 10:16:57 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

The United Kingdom’s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine’s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This […]

\nThe post UK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", - "contentSnippet": "The United Kingdom\u2019s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine\u2019s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This [\u2026]\nUK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69792", - "categories": [ - "Army", - "News", - "M270", - "military aid", - "UK", - "Ukraine" - ], - "isoDate": "2023-10-18T10:16:57.000Z" - }, - { - "creator": "Emily Ryan Miller", - "title": "US Air Force B-1B bombers arrive in the UK", - "link": "https://defence-blog.com/us-air-force-b-1b-bombers-arrive-in-the-uk/", - "pubDate": "Tue, 17 Oct 2023 09:02:57 +0000", - "dc:creator": "Emily Ryan Miller", - "content": "

On October 14, 2023, U.S. Air Force B-1B Lancer bombers, under the command of the 9th Expeditionary Bomb Squadron, soared through the skies over RAF Fairford, United Kingdom. In an official announcement, the Air Force said that B-1B bombers arrived in the UK as part of an ongoing mission to enhance global readiness. The B-1B […]

\nThe post US Air Force B-1B bombers arrive in the UK first appeared on Defence Blog.", - "contentSnippet": "On October 14, 2023, U.S. Air Force B-1B Lancer bombers, under the command of the 9th Expeditionary Bomb Squadron, soared through the skies over RAF Fairford, United Kingdom. In an official announcement, the Air Force said that B-1B bombers arrived in the UK as part of an ongoing mission to enhance global readiness. The B-1B [\u2026]\nUS Air Force B-1B bombers arrive in the UK first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69744", - "categories": [ - "Aviation", - "News", - "B-1", - "RAF Fairford", - "UK", - "USA", - "USAF" - ], - "isoDate": "2023-10-17T09:02:57.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "Ukraine to get newest \u2018drone killer\u2019 system from UK", - "link": "https://defence-blog.com/ukraine-to-get-newest-drone-killer-system-from-uk/", - "pubDate": "Wed, 11 Oct 2023 12:22:33 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

The UK will arm Ukraine with a modern Counter-Unmanned Aircraft System as part of a new air defense package. According to a press release from the Ministry of Defense, a new package of military support for Ukraine, worth more than \u00a3100m ($123 million), will comprise the MSI-DS Terrahawk Paladin air defense system. The MSI-DS Terrahawk […]

\nThe post Ukraine to get newest \u2018drone killer\u2019 system from UK first appeared on Defence Blog.", - "contentSnippet": "The UK will arm Ukraine with a modern Counter-Unmanned Aircraft System as part of a new air defense package. According to a press release from the Ministry of Defense, a new package of military support for Ukraine, worth more than \u00a3100m ($123 million), will comprise the MSI-DS Terrahawk Paladin air defense system. The MSI-DS Terrahawk [\u2026]\nUkraine to get newest \u2018drone killer\u2019 system from UK first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69580", - "categories": [ - "Army", - "News", - "Counter-UAS", - "MSI-DS", - "TERRAHAWK PALADIN", - "UK", - "Ukraine" - ], - "isoDate": "2023-10-11T12:22:33.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "British Army evaluates innovative wheeled carrier", - "link": "https://defence-blog.com/british-army-evaluates-innovative-wheeled-carrier/", - "pubDate": "Thu, 28 Dec 2023 12:51:06 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

HIPPO Multipower has demonstrated the multi-role capabilities of the hybrid multi-purpose platform on the Army Warfighting Experiment (AWE) 2023 as part of the British Army\u2019s flagship innovation experimentation program, forging relationships with industry to identify technology that could be used in future warfare. According to Army Recognition, the British Army has tested the Hybrid Amphibious […]

\nThe post British Army evaluates innovative wheeled carrier first appeared on Defence Blog.", - "contentSnippet": "HIPPO Multipower has demonstrated the multi-role capabilities of the hybrid multi-purpose platform on the Army Warfighting Experiment (AWE) 2023 as part of the British Army\u2019s flagship innovation experimentation program, forging relationships with industry to identify technology that could be used in future warfare. According to Army Recognition, the British Army has tested the Hybrid Amphibious [\u2026]\nBritish Army evaluates innovative wheeled carrier first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=71644", - "categories": [ - "Army", - "News", - "future", - "HIPPO HAWC", - "UK" - ], - "isoDate": "2023-12-28T12:51:06.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "Shapps: new attack on Russian navy debunks Ukraine war stalemate myth", - "link": "https://defence-blog.com/shapps-new-attack-on-russian-navy-debunks-ukraine-war-stalemate-myth/", - "pubDate": "Tue, 26 Dec 2023 13:06:00 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

British defense minister Grant Shapps made a striking declaration following the destruction of the Russian landing ship “Novocherkassk” in the port of Feodosia. Shapps firmly stated that this destruction refutes the notion of a stalemate in the ongoing war in Ukraine. In a recent post shared via X, Shapps vehemently challenged the perspective that the […]

\nThe post Shapps: new attack on Russian navy debunks Ukraine war stalemate myth first appeared on Defence Blog.", - "contentSnippet": "British defense minister Grant Shapps made a striking declaration following the destruction of the Russian landing ship \u201cNovocherkassk\u201d in the port of Feodosia. Shapps firmly stated that this destruction refutes the notion of a stalemate in the ongoing war in Ukraine. In a recent post shared via X, Shapps vehemently challenged the perspective that the [\u2026]\nShapps: new attack on Russian navy debunks Ukraine war stalemate myth first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=71588", - "categories": [ - "Maritime Security", - "News", - "Grant Shapps", - "UK", - "Ukraine", - "War in Ukraine" - ], - "isoDate": "2023-12-26T13:06:00.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "Royal Navy\u2019s destroyer intercepts Houthi drone in Red Sea", - "link": "https://defence-blog.com/royal-navys-destroyer-intercepts-houthi-drone-in-red-sea/", - "pubDate": "Sat, 16 Dec 2023 14:48:10 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

Amid escalating tensions in the Middle East, the Royal Navy’s destroyer HMS Diamond (D34), deployed in the Red Sea, reportedly intercepted and likely downed an unidentified aerial drone in the early hours preceding Saturday. British Defense Minister Grant Shapps wrote to X on Saturday to disclose the incident. According to Shapps, the object, potentially an […]

\nThe post Royal Navy\u2019s destroyer intercepts Houthi drone in Red Sea first appeared on Defence Blog.", - "contentSnippet": "Amid escalating tensions in the Middle East, the Royal Navy\u2019s destroyer HMS Diamond (D34), deployed in the Red Sea, reportedly intercepted and likely downed an unidentified aerial drone in the early hours preceding Saturday. British Defense Minister Grant Shapps wrote to X on Saturday to disclose the incident. According to Shapps, the object, potentially an [\u2026]\nRoyal Navy\u2019s destroyer intercepts Houthi drone in Red Sea first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=71395", - "categories": [ - "Maritime Security", - "News", - "HMS Diamond (D34)", - "Red Sea", - "UK", - "Yemeni Houthi" - ], - "isoDate": "2023-12-16T14:48:10.000Z" - }, - { - "creator": "Colton Jones", - "title": "Eurofighter Typhoon receives one of the world\u2019s most advanced radar", - "link": "https://defence-blog.com/eurofighter-typhoon-receives-one-of-the-worlds-most-advanced-radar/", - "pubDate": "Wed, 17 Jan 2024 13:45:21 +0000", - "dc:creator": "Colton Jones", - "content": "

A Typhoon fighter jet has been equipped with the European Common Radar System (ECRS) Mark 2 Radar, representing one of the world’s most advanced radar technologies. This development, part of a \u00a32.35 billion ($2.9 billion) investment in upgrading the Typhoon, introduces a unique multi-functional array (MFA) that enables the aircraft to simultaneously detect, identify, and […]

\nThe post Eurofighter Typhoon receives one of the world\u2019s most advanced radar first appeared on Defence Blog.", - "contentSnippet": "A Typhoon fighter jet has been equipped with the European Common Radar System (ECRS) Mark 2 Radar, representing one of the world\u2019s most advanced radar technologies. This development, part of a \u00a32.35 billion ($2.9 billion) investment in upgrading the Typhoon, introduces a unique multi-functional array (MFA) that enables the aircraft to simultaneously detect, identify, and [\u2026]\nEurofighter Typhoon receives one of the world\u2019s most advanced radar first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=72082", - "categories": [ - "Aviation", - "News", - "PRESS RELEASES", - "BAE Systems", - "Eurofighter\u00a0Typhoon", - "Leonardo", - "UK" - ], - "isoDate": "2024-01-17T13:45:21.000Z" - }, - { - "creator": "Colton Jones", - "title": "U.S., UK and Australia carry out joint air drills", - "link": "https://defence-blog.com/u-s-uk-and-australia-carry-out-joint-air-drills/", - "pubDate": "Wed, 17 Jan 2024 10:35:32 +0000", - "dc:creator": "Colton Jones", - "content": "

More than 30 units from the U.S. Department of Defense, the Royal Air Force, and the Royal Australian Air Force assembled at Nellis in southern Nevada to commence Red Flag 24-1 on January 15. Red Flag exercises, conducted by the 414th Combat Training Squadron, offer aircrews the invaluable experience of engaging in multiple intensive air […]

\nThe post U.S., UK and Australia carry out joint air drills first appeared on Defence Blog.", - "contentSnippet": "More than 30 units from the U.S. Department of Defense, the Royal Air Force, and the Royal Australian Air Force assembled at Nellis in southern Nevada to commence Red Flag 24-1 on January 15. Red Flag exercises, conducted by the 414th Combat Training Squadron, offer aircrews the invaluable experience of engaging in multiple intensive air [\u2026]\nU.S., UK and Australia carry out joint air drills first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=72066", - "categories": [ - "Aviation", - "News", - "Australia", - "exercise", - "Red flag", - "UK", - "USA", - "USAF" - ], - "isoDate": "2024-01-17T10:35:32.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "Multinational coalition launches strikes on Houthi targets in Yemen", - "link": "https://defence-blog.com/multinational-coalition-launches-strikes-on-houthi-targets-in-yemen/", - "pubDate": "Fri, 12 Jan 2024 09:25:00 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

In a joint effort, U.S. Central Command, backed by allies including the United Kingdom, Australia, Canada, the Netherlands, and Bahrain, conducted precision air strikes on Houthi military targets in Yemen. The objective is to degrade Houthi capabilities, specifically their illegal attacks on international vessels in the Red Sea. This collaborative action, prompted by 27 attempted […]

\nThe post Multinational coalition launches strikes on Houthi targets in Yemen first appeared on Defence Blog.", - "contentSnippet": "In a joint effort, U.S. Central Command, backed by allies including the United Kingdom, Australia, Canada, the Netherlands, and Bahrain, conducted precision air strikes on Houthi military targets in Yemen. The objective is to degrade Houthi capabilities, specifically their illegal attacks on international vessels in the Red Sea. This collaborative action, prompted by 27 attempted [\u2026]\nMultinational coalition launches strikes on Houthi targets in Yemen first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=71946", - "categories": [ - "Aviation", - "News", - "UK", - "USA", - "Yemen", - "Yemeni Houthi" - ], - "isoDate": "2024-01-12T09:25:00.000Z" - }, - { - "creator": "Colton Jones", - "title": "US and UK navies repel largest Houthi attack", - "link": "https://defence-blog.com/iran-houthi-attack-red-sea-intercept-us-uk-warships/", - "pubDate": "Wed, 10 Jan 2024 09:47:10 +0000", - "dc:creator": "Colton Jones", - "content": "

The U.S. Central Command announced on Wednesday that on Jan. 9, at approximately 9:15 p.m. (Sanaa time), the Houthis launched a complex attack involving Iranian-designed kamikaze drones, anti-ship cruise missiles, and a ballistic missile from their Yemeni stronghold toward the Southern Red Sea, targeting international shipping lanes bustling with merchant vessels. The audacious attack, comprising […]

\nThe post US and UK navies repel largest Houthi attack first appeared on Defence Blog.", - "contentSnippet": "The U.S. Central Command announced on Wednesday that on Jan. 9, at approximately 9:15 p.m. (Sanaa time), the Houthis launched a complex attack involving Iranian-designed kamikaze drones, anti-ship cruise missiles, and a ballistic missile from their Yemeni stronghold toward the Southern Red Sea, targeting international shipping lanes bustling with merchant vessels. The audacious attack, comprising [\u2026]\nUS and UK navies repel largest Houthi attack first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=71902", - "categories": [ - "Maritime Security", - "News", - "PRESS RELEASES", - "NAVY", - "Red Sea", - "UK", - "Yemeni Houthi" - ], - "isoDate": "2024-01-10T09:47:10.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "British military successfully tests new laser weapon", - "link": "https://defence-blog.com/british-military-successfully-tests-new-laser-weapon/", - "pubDate": "Fri, 19 Jan 2024 13:49:18 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

The UK Ministry of Defense (MOD) announced on Friday that it had achieved the country’s first high-power firing of a laser weapon against aerial targets during a trial at the MOD\u2019s Hebrides Range. The DragonFire laser directed energy weapon (LDEW) system, developed through a \u00a3100 million ($126 million) joint investment by the MOD and industry […]

\nThe post British military successfully tests new laser weapon first appeared on Defence Blog.", - "contentSnippet": "The UK Ministry of Defense (MOD) announced on Friday that it had achieved the country\u2019s first high-power firing of a laser weapon against aerial targets during a trial at the MOD\u2019s Hebrides Range. The DragonFire laser directed energy weapon (LDEW) system, developed through a \u00a3100 million ($126 million) joint investment by the MOD and industry [\u2026]\nBritish military successfully tests new laser weapon first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=72131", - "categories": [ - "Army", - "News", - "PRESS RELEASES", - "Dragonfire", - "future", - "laser", - "UK" - ], - "isoDate": "2024-01-19T13:49:18.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "Royal Air Force receives first Protector drone", - "link": "https://defence-blog.com/royal-air-force-receives-first-protector-drone/", - "pubDate": "Tue, 24 Oct 2023 11:18:59 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

The Royal Air Force has received the first Protector aircraft, the latest Remotely Piloted Air System (RPAS), marking a significant milestone in the nation’s defense capabilities. The Protector is a British version of an MQ-9B SkyGuardian remotely piloted aircraft system developed by General Atomics Aeronautical Systems, Inc. Equipped with a suite of advanced surveillance equipment, […]

\nThe post Royal Air Force receives first Protector drone first appeared on Defence Blog.", - "contentSnippet": "The Royal Air Force has received the first Protector aircraft, the latest Remotely Piloted Air System (RPAS), marking a significant milestone in the nation\u2019s defense capabilities. The Protector is a British version of an MQ-9B SkyGuardian remotely piloted aircraft system developed by General Atomics Aeronautical Systems, Inc. Equipped with a suite of advanced surveillance equipment, [\u2026]\nRoyal Air Force receives first Protector drone first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69982", - "categories": [ - "Aviation", - "News", - "drone", - "General Atomics", - "Protector UAS", - "Royal Air Force", - "UK" - ], - "isoDate": "2023-10-24T11:18:59.000Z" - }, - { - "creator": "Emily Ryan Miller", - "title": "British Army declares its new AH-64E helicopter is ready to fight", - "link": "https://defence-blog.com/british-army-declares-its-new-ah-64e-helicopter-is-ready-to-fight/", - "pubDate": "Tue, 24 Oct 2023 07:59:53 +0000", - "dc:creator": "Emily Ryan Miller", - "content": "

The first regiment equipped with the British Army\u2019s new Apache AH-64E attack helicopters has achieved readiness for frontline deployment. The Army stated in a press release that during Exercise Iron Titan, 3 Regiment Army Air Corps (3 Regt AAC) underwent comprehensive testing, evaluating all aspects of the unit, including logistics, command and control procedures, and […]

\nThe post British Army declares its new AH-64E helicopter is ready to fight first appeared on Defence Blog.", - "contentSnippet": "The first regiment equipped with the British Army\u2019s new Apache AH-64E attack helicopters has achieved readiness for frontline deployment. The Army stated in a press release that during Exercise Iron Titan, 3 Regiment Army Air Corps (3 Regt AAC) underwent comprehensive testing, evaluating all aspects of the unit, including logistics, command and control procedures, and [\u2026]\nBritish Army declares its new AH-64E helicopter is ready to fight first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69965", - "categories": [ - "Army", - "News", - "PRESS RELEASES", - "AH-64", - "attack helicopter", - "UK" - ], - "isoDate": "2023-10-24T07:59:53.000Z" - }, - { - "creator": "Emily Ryan Miller", - "title": "Pentagon greenlights sale of next gen air-to-ground missiles to the UK", - "link": "https://defence-blog.com/pentagon-greenlights-sale-of-next-gen-air-to-ground-missiles-to-the-uk/", - "pubDate": "Tue, 24 Oct 2023 07:42:06 +0000", - "dc:creator": "Emily Ryan Miller", - "content": "

The U.S. State Department has given its approval for a potential Foreign Military Sale of Joint Air-to-Ground Missiles (JAGM) to the Government of the United Kingdom, marking a significant boost to the nation’s defense capabilities. The Defense Security Cooperation Agency, the Pentagon\u2019s top arms broker, formally certified this potential sale to Congress on Monday. The […]

\nThe post Pentagon greenlights sale of next gen air-to-ground missiles to the UK first appeared on Defence Blog.", - "contentSnippet": "The U.S. State Department has given its approval for a potential Foreign Military Sale of Joint Air-to-Ground Missiles (JAGM) to the Government of the United Kingdom, marking a significant boost to the nation\u2019s defense capabilities. The Defense Security Cooperation Agency, the Pentagon\u2019s top arms broker, formally certified this potential sale to Congress on Monday. The [\u2026]\nPentagon greenlights sale of next gen air-to-ground missiles to the UK first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69962", - "categories": [ - "Army", - "News", - "DSCA", - "JAGM", - "Lockheed Martin", - "UK", - "USA" - ], - "isoDate": "2023-10-24T07:42:06.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "UK continues to support Ukraine with a wide range of training", - "link": "https://defence-blog.com/uk-continues-to-support-ukraine-with-a-wide-range-of-training/", - "pubDate": "Wed, 18 Oct 2023 10:16:57 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

The United Kingdom’s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine’s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This […]

\nThe post UK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", - "contentSnippet": "The United Kingdom\u2019s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine\u2019s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This [\u2026]\nUK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69792", - "categories": [ - "Army", - "News", - "M270", - "military aid", - "UK", - "Ukraine" - ], - "isoDate": "2023-10-18T10:16:57.000Z" - }, - { - "creator": "Emily Ryan Miller", - "title": "US Air Force B-1B bombers arrive in the UK", - "link": "https://defence-blog.com/us-air-force-b-1b-bombers-arrive-in-the-uk/", - "pubDate": "Tue, 17 Oct 2023 09:02:57 +0000", - "dc:creator": "Emily Ryan Miller", - "content": "

On October 14, 2023, U.S. Air Force B-1B Lancer bombers, under the command of the 9th Expeditionary Bomb Squadron, soared through the skies over RAF Fairford, United Kingdom. In an official announcement, the Air Force said that B-1B bombers arrived in the UK as part of an ongoing mission to enhance global readiness. The B-1B […]

\nThe post US Air Force B-1B bombers arrive in the UK first appeared on Defence Blog.", - "contentSnippet": "On October 14, 2023, U.S. Air Force B-1B Lancer bombers, under the command of the 9th Expeditionary Bomb Squadron, soared through the skies over RAF Fairford, United Kingdom. In an official announcement, the Air Force said that B-1B bombers arrived in the UK as part of an ongoing mission to enhance global readiness. The B-1B [\u2026]\nUS Air Force B-1B bombers arrive in the UK first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69744", - "categories": [ - "Aviation", - "News", - "B-1", - "RAF Fairford", - "UK", - "USA", - "USAF" - ], - "isoDate": "2023-10-17T09:02:57.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "Ukraine to get newest \u2018drone killer\u2019 system from UK", - "link": "https://defence-blog.com/ukraine-to-get-newest-drone-killer-system-from-uk/", - "pubDate": "Wed, 11 Oct 2023 12:22:33 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

The UK will arm Ukraine with a modern Counter-Unmanned Aircraft System as part of a new air defense package. According to a press release from the Ministry of Defense, a new package of military support for Ukraine, worth more than \u00a3100m ($123 million), will comprise the MSI-DS Terrahawk Paladin air defense system. The MSI-DS Terrahawk […]

\nThe post Ukraine to get newest \u2018drone killer\u2019 system from UK first appeared on Defence Blog.", - "contentSnippet": "The UK will arm Ukraine with a modern Counter-Unmanned Aircraft System as part of a new air defense package. According to a press release from the Ministry of Defense, a new package of military support for Ukraine, worth more than \u00a3100m ($123 million), will comprise the MSI-DS Terrahawk Paladin air defense system. The MSI-DS Terrahawk [\u2026]\nUkraine to get newest \u2018drone killer\u2019 system from UK first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69580", - "categories": [ - "Army", - "News", - "Counter-UAS", - "MSI-DS", - "TERRAHAWK PALADIN", - "UK", - "Ukraine" - ], - "isoDate": "2023-10-11T12:22:33.000Z" - }, - { - "creator": "Colton Jones", - "title": "British Army receives first Archer howitzer", - "link": "https://defence-blog.com/british-army-receives-first-archer-howitzer/", - "pubDate": "Sat, 07 Oct 2023 18:32:57 +0000", - "dc:creator": "Colton Jones", - "content": "

The British Army has received\u00a0its\u00a0first Swedish-made 155mm Archer\u00a0artillery system, according to a recent service news release. The new Archer howitzer arrived by ship at the Marchwood Military Port in Hampshire. The British Army is buying Swedish-made 155mm artillery systems to plug a gap left by the supply of weapons donated to Ukraine. Colonel Stuart Nasse, […]

\nThe post British Army receives first Archer howitzer first appeared on Defence Blog.", - "contentSnippet": "The British Army has received\u00a0its\u00a0first Swedish-made 155mm Archer\u00a0artillery system, according to a recent service news release. The new Archer howitzer arrived by ship at the Marchwood Military Port in Hampshire. The British Army is buying Swedish-made 155mm artillery systems to plug a gap left by the supply of weapons donated to Ukraine. Colonel Stuart Nasse, [\u2026]\nBritish Army receives first Archer howitzer first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69477", - "categories": [ - "Army", - "News", - "PRESS RELEASES", - "ARCHER", - "BAE Systems", - "Self-propelled howitzer", - "UK" - ], - "isoDate": "2023-10-07T18:32:57.000Z" - }, - { - "creator": "Colton Jones", - "title": "BAE Systems\u2019 AMPV tracked vehicle makes its international debut", - "link": "https://defence-blog.com/bae-systems-ampv-tracked-vehicle-makes-its-international-debut/", - "pubDate": "Tue, 12 Sep 2023 09:10:46 +0000", - "dc:creator": "Colton Jones", - "content": "

BAE Systems showcased its new AMPV tracked vehicle, built on a Bradley Infantry Fighting Vehicle chassis, for the first time amid an international crowd at the UK Defence and Security Equipment International (DSEI) event. As the foundation of the future for the U.S. Army, the AMPV (Armored Multi-Purpose Vehicle) provides significant improvements in power, mobility, […]

\nThe post BAE Systems\u2019 AMPV tracked vehicle makes its international debut first appeared on Defence Blog.", - "contentSnippet": "BAE Systems showcased its new AMPV tracked vehicle, built on a Bradley Infantry Fighting Vehicle chassis, for the first time amid an international crowd at the UK Defence and Security Equipment International (DSEI) event. As the foundation of the future for the U.S. Army, the AMPV (Armored Multi-Purpose Vehicle) provides significant improvements in power, mobility, [\u2026]\nBAE Systems\u2019 AMPV tracked vehicle makes its international debut first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=69026", - "categories": [ - "Army", - "News", - "PRESS RELEASES", - "AMPV", - "BAE Systems", - "DSEI", - "UK", - "USA" - ], - "isoDate": "2023-09-12T09:10:46.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "Royal Navy tests aerial logistics drone on aircraft carrier", - "link": "https://defence-blog.com/royal-navy-tests-aerial-logistics-drone-on-aircraft-carrier/", - "pubDate": "Mon, 11 Sep 2023 08:07:36 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

The British Royal Navy tested a long-range cargo aerial drone on an aircraft carrier for the first time. The Royal Navy said in a release that the W Autonomous Systems (WAS) drone flew from the Lizard Peninsula and on to the deck of HMS Prince of Wales off the Cornish coast, delivered supplies, then flew […]

\nThe post Royal Navy tests aerial logistics drone on aircraft carrier first appeared on Defence Blog.", - "contentSnippet": "The British Royal Navy tested a long-range cargo aerial drone on an aircraft carrier for the first time. The Royal Navy said in a release that the W Autonomous Systems (WAS) drone flew from the Lizard Peninsula and on to the deck of HMS Prince of Wales off the Cornish coast, delivered supplies, then flew [\u2026]\nRoyal Navy tests aerial logistics drone on aircraft carrier first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=68991", - "categories": [ - "Maritime Security", - "News", - "PRESS RELEASES", - "Video", - "drone", - "HMS Prince of Wales (R09)", - "Lizard Peninsula", - "UK", - "W Autonomous Systems" - ], - "isoDate": "2023-09-11T08:07:36.000Z" - }, - { - "creator": "Dylan Malyasov", - "title": "Ukraine will get Scimitar armored reconnaissance vehicles from UK", - "link": "https://defence-blog.com/ukraine-will-get-scimitar-armored-reconnaissance-vehicles-from-uk/", - "pubDate": "Wed, 06 Sep 2023 07:47:28 +0000", - "dc:creator": "Dylan Malyasov", - "content": "

The UK will arm Ukraine with Scimitar MK2 armored reconnaissance vehicles, according to the Rheinmetall BAE Systems Land (RBSL). As noted by the company, RBSL\u2019s Field Support Representatives (FSR\u2019s) were recently deployed to Germany to help the British Army get a number of CVR(T) Scimitar MK2 vehicles ready to be shipped to Ukraine. “The FSR\u2019s […]

\nThe post Ukraine will get Scimitar armored reconnaissance vehicles from UK first appeared on Defence Blog.", - "contentSnippet": "The UK will arm Ukraine with Scimitar MK2 armored reconnaissance vehicles, according to the Rheinmetall BAE Systems Land (RBSL). As noted by the company, RBSL\u2019s Field Support Representatives (FSR\u2019s) were recently deployed to Germany to help the British Army get a number of CVR(T) Scimitar MK2 vehicles ready to be shipped to Ukraine. \u201cThe FSR\u2019s [\u2026]\nUkraine will get Scimitar armored reconnaissance vehicles from UK first appeared on Defence Blog.", - "guid": "https://defence-blog.com/?p=68938", - "categories": [ - "Army", - "News", - "military aid", - "RBSL", - "Scimitar", - "UK", - "Ukraine" - ], - "isoDate": "2023-09-06T07:47:28.000Z" - } -] \ No newline at end of file + { + "creator": "Emily Ryan Miller", + "title": "Royal Navy deploys second warship to Arabian Gulf", + "link": "https://defence-blog.com/royal-navy-deploys-hms-diamond-arabian-gulf/", + "pubDate": "Thu, 30 Nov 2023 08:33:56 +0000", + "dc:creator": "Emily Ryan Miller", + "content": "

In response to escalating tensions in the Middle East, the United Kingdom has announced the deployment of HMS Diamond, the second warship to be sent to the Arabian Gulf. UK Defense Secretary Grant Shapps confirmed that HMS Diamond is en route to join Operation Kipion, a strategic maritime initiative aimed at safeguarding the UK\u2019s interests […]

\nThe post Royal Navy deploys second warship to Arabian Gulf first appeared on Defence Blog.", + "contentSnippet": "In response to escalating tensions in the Middle East, the United Kingdom has announced the deployment of HMS Diamond, the second warship to be sent to the Arabian Gulf. UK Defense Secretary Grant Shapps confirmed that HMS Diamond is en route to join Operation Kipion, a strategic maritime initiative aimed at safeguarding the UK\u2019s interests [\u2026]\nRoyal Navy deploys second warship to Arabian Gulf first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=70958", + "categories": [ + "Maritime Security", + "News", + "Arabian Gulf", + "HMS Diamond (D34)", + "Indian Ocean", + "UK" + ], + "isoDate": "2023-11-30T08:33:56.000Z" + }, + { + "creator": "Colton Jones", + "title": "UK, French, and US jets successfully execute joint defense drill", + "link": "https://defence-blog.com/raf-typhoons-french-rafale-us-f-35-jets-joint-defense-drill/", + "pubDate": "Sat, 11 Nov 2023 10:29:10 +0000", + "dc:creator": "Colton Jones", + "content": "

Royal Air Force (RAF) Typhoons, French Rafale, and US F-35 jets recently participated in a joint exercise aimed at responding to an attack on their main operating bases. The drill, part of Exercise Atlantic Trident, demonstrated the agility and adaptability of these military aircraft in the face of evolving threats. The Royal Air Force press […]

\nThe post UK, French, and US jets successfully execute joint defense drill first appeared on Defence Blog.", + "contentSnippet": "Royal Air Force (RAF) Typhoons, French Rafale, and US F-35 jets recently participated in a joint exercise aimed at responding to an attack on their main operating bases. The drill, part of Exercise Atlantic Trident, demonstrated the agility and adaptability of these military aircraft in the face of evolving threats. The Royal Air Force press [\u2026]\nUK, French, and US jets successfully execute joint defense drill first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=70525", + "categories": [ + "Aviation", + "News", + "PRESS RELEASES", + "Eurofighter\u00a0Typhoon", + "F-35", + "France", + "Rafale", + "UK", + "USA" + ], + "isoDate": "2023-11-11T10:29:10.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "AI set to revolutionize UK military engineering capabilities", + "link": "https://defence-blog.com/ai-set-to-revolutionize-uk-military-engineering-capabilities/", + "pubDate": "Tue, 31 Oct 2023 13:41:44 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

Cutting-edge artificial intelligence (AI) technology is set to reshape British military engineering capabilities, revolutionizing problem-solving and readiness for deployment, according to a recent UK Ministry of Defence press release. A groundbreaking project at the Royal Naval Air Station Yeovilton, a collaboration between 1710 Naval Air Squadron (based in HMNB Portsmouth), DE&S Digital AI Team, and […]

\nThe post AI set to revolutionize UK military engineering capabilities first appeared on Defence Blog.", + "contentSnippet": "Cutting-edge artificial intelligence (AI) technology is set to reshape British military engineering capabilities, revolutionizing problem-solving and readiness for deployment, according to a recent UK Ministry of Defence press release. A groundbreaking project at the Royal Naval Air Station Yeovilton, a collaboration between 1710 Naval Air Squadron (based in HMNB Portsmouth), DE&S Digital AI Team, and [\u2026]\nAI set to revolutionize UK military engineering capabilities first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=70201", + "categories": ["Aviation", "News", "AI", "future", "UK"], + "isoDate": "2023-10-31T13:41:44.000Z" + }, + { + "creator": "Emily Ryan Miller", + "title": "Flying into the night: F-35\u2019s SRVL test on UK\u2019s newest carrier", + "link": "https://defence-blog.com/flying-into-the-night-f-35s-srvl-test-on-uks-newest-carrier/", + "pubDate": "Tue, 31 Oct 2023 09:31:47 +0000", + "dc:creator": "Emily Ryan Miller", + "content": "

U.S. Marine Corps test pilot for the F-35 Lightning II, Marine Maj. Paul Gucwa, successfully executed the very first night shipborne rolling vertical landing (SRVL) aboard the HMS Prince of Wales (R09), the United Kingdom’s newest aircraft carrier. In the official press release, it was mentioned that this event took place in the waters of […]

\nThe post Flying into the night: F-35\u2019s SRVL test on UK\u2019s newest carrier first appeared on Defence Blog.", + "contentSnippet": "U.S. Marine Corps test pilot for the F-35 Lightning II, Marine Maj. Paul Gucwa, successfully executed the very first night shipborne rolling vertical landing (SRVL) aboard the HMS Prince of Wales (R09), the United Kingdom\u2019s newest aircraft carrier. In the official press release, it was mentioned that this event took place in the waters of [\u2026]\nFlying into the night: F-35\u2019s SRVL test on UK\u2019s newest carrier first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=70186", + "categories": [ + "Maritime Security", + "News", + "PRESS RELEASES", + "F-35B", + "HMS Prince of Wales (R09)", + "Marine", + "UK", + "USA" + ], + "isoDate": "2023-10-31T09:31:47.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "Royal Air Force receives first Protector drone", + "link": "https://defence-blog.com/royal-air-force-receives-first-protector-drone/", + "pubDate": "Tue, 24 Oct 2023 11:18:59 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

The Royal Air Force has received the first Protector aircraft, the latest Remotely Piloted Air System (RPAS), marking a significant milestone in the nation’s defense capabilities. The Protector is a British version of an MQ-9B SkyGuardian remotely piloted aircraft system developed by General Atomics Aeronautical Systems, Inc. Equipped with a suite of advanced surveillance equipment, […]

\nThe post Royal Air Force receives first Protector drone first appeared on Defence Blog.", + "contentSnippet": "The Royal Air Force has received the first Protector aircraft, the latest Remotely Piloted Air System (RPAS), marking a significant milestone in the nation\u2019s defense capabilities. The Protector is a British version of an MQ-9B SkyGuardian remotely piloted aircraft system developed by General Atomics Aeronautical Systems, Inc. Equipped with a suite of advanced surveillance equipment, [\u2026]\nRoyal Air Force receives first Protector drone first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69982", + "categories": [ + "Aviation", + "News", + "drone", + "General Atomics", + "Protector UAS", + "Royal Air Force", + "UK" + ], + "isoDate": "2023-10-24T11:18:59.000Z" + }, + { + "creator": "Emily Ryan Miller", + "title": "British Army declares its new AH-64E helicopter is ready to fight", + "link": "https://defence-blog.com/british-army-declares-its-new-ah-64e-helicopter-is-ready-to-fight/", + "pubDate": "Tue, 24 Oct 2023 07:59:53 +0000", + "dc:creator": "Emily Ryan Miller", + "content": "

The first regiment equipped with the British Army\u2019s new Apache AH-64E attack helicopters has achieved readiness for frontline deployment. The Army stated in a press release that during Exercise Iron Titan, 3 Regiment Army Air Corps (3 Regt AAC) underwent comprehensive testing, evaluating all aspects of the unit, including logistics, command and control procedures, and […]

\nThe post British Army declares its new AH-64E helicopter is ready to fight first appeared on Defence Blog.", + "contentSnippet": "The first regiment equipped with the British Army\u2019s new Apache AH-64E attack helicopters has achieved readiness for frontline deployment. The Army stated in a press release that during Exercise Iron Titan, 3 Regiment Army Air Corps (3 Regt AAC) underwent comprehensive testing, evaluating all aspects of the unit, including logistics, command and control procedures, and [\u2026]\nBritish Army declares its new AH-64E helicopter is ready to fight first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69965", + "categories": [ + "Army", + "News", + "PRESS RELEASES", + "AH-64", + "attack helicopter", + "UK" + ], + "isoDate": "2023-10-24T07:59:53.000Z" + }, + { + "creator": "Emily Ryan Miller", + "title": "Pentagon greenlights sale of next gen air-to-ground missiles to the UK", + "link": "https://defence-blog.com/pentagon-greenlights-sale-of-next-gen-air-to-ground-missiles-to-the-uk/", + "pubDate": "Tue, 24 Oct 2023 07:42:06 +0000", + "dc:creator": "Emily Ryan Miller", + "content": "

The U.S. State Department has given its approval for a potential Foreign Military Sale of Joint Air-to-Ground Missiles (JAGM) to the Government of the United Kingdom, marking a significant boost to the nation’s defense capabilities. The Defense Security Cooperation Agency, the Pentagon\u2019s top arms broker, formally certified this potential sale to Congress on Monday. The […]

\nThe post Pentagon greenlights sale of next gen air-to-ground missiles to the UK first appeared on Defence Blog.", + "contentSnippet": "The U.S. State Department has given its approval for a potential Foreign Military Sale of Joint Air-to-Ground Missiles (JAGM) to the Government of the United Kingdom, marking a significant boost to the nation\u2019s defense capabilities. The Defense Security Cooperation Agency, the Pentagon\u2019s top arms broker, formally certified this potential sale to Congress on Monday. The [\u2026]\nPentagon greenlights sale of next gen air-to-ground missiles to the UK first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69962", + "categories": [ + "Army", + "News", + "DSCA", + "JAGM", + "Lockheed Martin", + "UK", + "USA" + ], + "isoDate": "2023-10-24T07:42:06.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "UK continues to support Ukraine with a wide range of training", + "link": "https://defence-blog.com/uk-continues-to-support-ukraine-with-a-wide-range-of-training/", + "pubDate": "Wed, 18 Oct 2023 10:16:57 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

The United Kingdom’s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine’s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This […]

\nThe post UK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", + "contentSnippet": "The United Kingdom\u2019s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine\u2019s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This [\u2026]\nUK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69792", + "categories": ["Army", "News", "M270", "military aid", "UK", "Ukraine"], + "isoDate": "2023-10-18T10:16:57.000Z" + }, + { + "creator": "Emily Ryan Miller", + "title": "US Air Force B-1B bombers arrive in the UK", + "link": "https://defence-blog.com/us-air-force-b-1b-bombers-arrive-in-the-uk/", + "pubDate": "Tue, 17 Oct 2023 09:02:57 +0000", + "dc:creator": "Emily Ryan Miller", + "content": "

On October 14, 2023, U.S. Air Force B-1B Lancer bombers, under the command of the 9th Expeditionary Bomb Squadron, soared through the skies over RAF Fairford, United Kingdom. In an official announcement, the Air Force said that B-1B bombers arrived in the UK as part of an ongoing mission to enhance global readiness. The B-1B […]

\nThe post US Air Force B-1B bombers arrive in the UK first appeared on Defence Blog.", + "contentSnippet": "On October 14, 2023, U.S. Air Force B-1B Lancer bombers, under the command of the 9th Expeditionary Bomb Squadron, soared through the skies over RAF Fairford, United Kingdom. In an official announcement, the Air Force said that B-1B bombers arrived in the UK as part of an ongoing mission to enhance global readiness. The B-1B [\u2026]\nUS Air Force B-1B bombers arrive in the UK first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69744", + "categories": [ + "Aviation", + "News", + "B-1", + "RAF Fairford", + "UK", + "USA", + "USAF" + ], + "isoDate": "2023-10-17T09:02:57.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "Ukraine to get newest \u2018drone killer\u2019 system from UK", + "link": "https://defence-blog.com/ukraine-to-get-newest-drone-killer-system-from-uk/", + "pubDate": "Wed, 11 Oct 2023 12:22:33 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

The UK will arm Ukraine with a modern Counter-Unmanned Aircraft System as part of a new air defense package. According to a press release from the Ministry of Defense, a new package of military support for Ukraine, worth more than \u00a3100m ($123 million), will comprise the MSI-DS Terrahawk Paladin air defense system. The MSI-DS Terrahawk […]

\nThe post Ukraine to get newest \u2018drone killer\u2019 system from UK first appeared on Defence Blog.", + "contentSnippet": "The UK will arm Ukraine with a modern Counter-Unmanned Aircraft System as part of a new air defense package. According to a press release from the Ministry of Defense, a new package of military support for Ukraine, worth more than \u00a3100m ($123 million), will comprise the MSI-DS Terrahawk Paladin air defense system. The MSI-DS Terrahawk [\u2026]\nUkraine to get newest \u2018drone killer\u2019 system from UK first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69580", + "categories": [ + "Army", + "News", + "Counter-UAS", + "MSI-DS", + "TERRAHAWK PALADIN", + "UK", + "Ukraine" + ], + "isoDate": "2023-10-11T12:22:33.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "British Army evaluates innovative wheeled carrier", + "link": "https://defence-blog.com/british-army-evaluates-innovative-wheeled-carrier/", + "pubDate": "Thu, 28 Dec 2023 12:51:06 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

HIPPO Multipower has demonstrated the multi-role capabilities of the hybrid multi-purpose platform on the Army Warfighting Experiment (AWE) 2023 as part of the British Army\u2019s flagship innovation experimentation program, forging relationships with industry to identify technology that could be used in future warfare. According to Army Recognition, the British Army has tested the Hybrid Amphibious […]

\nThe post British Army evaluates innovative wheeled carrier first appeared on Defence Blog.", + "contentSnippet": "HIPPO Multipower has demonstrated the multi-role capabilities of the hybrid multi-purpose platform on the Army Warfighting Experiment (AWE) 2023 as part of the British Army\u2019s flagship innovation experimentation program, forging relationships with industry to identify technology that could be used in future warfare. According to Army Recognition, the British Army has tested the Hybrid Amphibious [\u2026]\nBritish Army evaluates innovative wheeled carrier first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=71644", + "categories": ["Army", "News", "future", "HIPPO HAWC", "UK"], + "isoDate": "2023-12-28T12:51:06.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "Shapps: new attack on Russian navy debunks Ukraine war stalemate myth", + "link": "https://defence-blog.com/shapps-new-attack-on-russian-navy-debunks-ukraine-war-stalemate-myth/", + "pubDate": "Tue, 26 Dec 2023 13:06:00 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

British defense minister Grant Shapps made a striking declaration following the destruction of the Russian landing ship “Novocherkassk” in the port of Feodosia. Shapps firmly stated that this destruction refutes the notion of a stalemate in the ongoing war in Ukraine. In a recent post shared via X, Shapps vehemently challenged the perspective that the […]

\nThe post Shapps: new attack on Russian navy debunks Ukraine war stalemate myth first appeared on Defence Blog.", + "contentSnippet": "British defense minister Grant Shapps made a striking declaration following the destruction of the Russian landing ship \u201cNovocherkassk\u201d in the port of Feodosia. Shapps firmly stated that this destruction refutes the notion of a stalemate in the ongoing war in Ukraine. In a recent post shared via X, Shapps vehemently challenged the perspective that the [\u2026]\nShapps: new attack on Russian navy debunks Ukraine war stalemate myth first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=71588", + "categories": [ + "Maritime Security", + "News", + "Grant Shapps", + "UK", + "Ukraine", + "War in Ukraine" + ], + "isoDate": "2023-12-26T13:06:00.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "Royal Navy\u2019s destroyer intercepts Houthi drone in Red Sea", + "link": "https://defence-blog.com/royal-navys-destroyer-intercepts-houthi-drone-in-red-sea/", + "pubDate": "Sat, 16 Dec 2023 14:48:10 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

Amid escalating tensions in the Middle East, the Royal Navy’s destroyer HMS Diamond (D34), deployed in the Red Sea, reportedly intercepted and likely downed an unidentified aerial drone in the early hours preceding Saturday. British Defense Minister Grant Shapps wrote to X on Saturday to disclose the incident. According to Shapps, the object, potentially an […]

\nThe post Royal Navy\u2019s destroyer intercepts Houthi drone in Red Sea first appeared on Defence Blog.", + "contentSnippet": "Amid escalating tensions in the Middle East, the Royal Navy\u2019s destroyer HMS Diamond (D34), deployed in the Red Sea, reportedly intercepted and likely downed an unidentified aerial drone in the early hours preceding Saturday. British Defense Minister Grant Shapps wrote to X on Saturday to disclose the incident. According to Shapps, the object, potentially an [\u2026]\nRoyal Navy\u2019s destroyer intercepts Houthi drone in Red Sea first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=71395", + "categories": [ + "Maritime Security", + "News", + "HMS Diamond (D34)", + "Red Sea", + "UK", + "Yemeni Houthi" + ], + "isoDate": "2023-12-16T14:48:10.000Z" + }, + { + "creator": "Colton Jones", + "title": "Eurofighter Typhoon receives one of the world\u2019s most advanced radar", + "link": "https://defence-blog.com/eurofighter-typhoon-receives-one-of-the-worlds-most-advanced-radar/", + "pubDate": "Wed, 17 Jan 2024 13:45:21 +0000", + "dc:creator": "Colton Jones", + "content": "

A Typhoon fighter jet has been equipped with the European Common Radar System (ECRS) Mark 2 Radar, representing one of the world’s most advanced radar technologies. This development, part of a \u00a32.35 billion ($2.9 billion) investment in upgrading the Typhoon, introduces a unique multi-functional array (MFA) that enables the aircraft to simultaneously detect, identify, and […]

\nThe post Eurofighter Typhoon receives one of the world\u2019s most advanced radar first appeared on Defence Blog.", + "contentSnippet": "A Typhoon fighter jet has been equipped with the European Common Radar System (ECRS) Mark 2 Radar, representing one of the world\u2019s most advanced radar technologies. This development, part of a \u00a32.35 billion ($2.9 billion) investment in upgrading the Typhoon, introduces a unique multi-functional array (MFA) that enables the aircraft to simultaneously detect, identify, and [\u2026]\nEurofighter Typhoon receives one of the world\u2019s most advanced radar first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=72082", + "categories": [ + "Aviation", + "News", + "PRESS RELEASES", + "BAE Systems", + "Eurofighter\u00a0Typhoon", + "Leonardo", + "UK" + ], + "isoDate": "2024-01-17T13:45:21.000Z" + }, + { + "creator": "Colton Jones", + "title": "U.S., UK and Australia carry out joint air drills", + "link": "https://defence-blog.com/u-s-uk-and-australia-carry-out-joint-air-drills/", + "pubDate": "Wed, 17 Jan 2024 10:35:32 +0000", + "dc:creator": "Colton Jones", + "content": "

More than 30 units from the U.S. Department of Defense, the Royal Air Force, and the Royal Australian Air Force assembled at Nellis in southern Nevada to commence Red Flag 24-1 on January 15. Red Flag exercises, conducted by the 414th Combat Training Squadron, offer aircrews the invaluable experience of engaging in multiple intensive air […]

\nThe post U.S., UK and Australia carry out joint air drills first appeared on Defence Blog.", + "contentSnippet": "More than 30 units from the U.S. Department of Defense, the Royal Air Force, and the Royal Australian Air Force assembled at Nellis in southern Nevada to commence Red Flag 24-1 on January 15. Red Flag exercises, conducted by the 414th Combat Training Squadron, offer aircrews the invaluable experience of engaging in multiple intensive air [\u2026]\nU.S., UK and Australia carry out joint air drills first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=72066", + "categories": [ + "Aviation", + "News", + "Australia", + "exercise", + "Red flag", + "UK", + "USA", + "USAF" + ], + "isoDate": "2024-01-17T10:35:32.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "Multinational coalition launches strikes on Houthi targets in Yemen", + "link": "https://defence-blog.com/multinational-coalition-launches-strikes-on-houthi-targets-in-yemen/", + "pubDate": "Fri, 12 Jan 2024 09:25:00 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

In a joint effort, U.S. Central Command, backed by allies including the United Kingdom, Australia, Canada, the Netherlands, and Bahrain, conducted precision air strikes on Houthi military targets in Yemen. The objective is to degrade Houthi capabilities, specifically their illegal attacks on international vessels in the Red Sea. This collaborative action, prompted by 27 attempted […]

\nThe post Multinational coalition launches strikes on Houthi targets in Yemen first appeared on Defence Blog.", + "contentSnippet": "In a joint effort, U.S. Central Command, backed by allies including the United Kingdom, Australia, Canada, the Netherlands, and Bahrain, conducted precision air strikes on Houthi military targets in Yemen. The objective is to degrade Houthi capabilities, specifically their illegal attacks on international vessels in the Red Sea. This collaborative action, prompted by 27 attempted [\u2026]\nMultinational coalition launches strikes on Houthi targets in Yemen first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=71946", + "categories": ["Aviation", "News", "UK", "USA", "Yemen", "Yemeni Houthi"], + "isoDate": "2024-01-12T09:25:00.000Z" + }, + { + "creator": "Colton Jones", + "title": "US and UK navies repel largest Houthi attack", + "link": "https://defence-blog.com/iran-houthi-attack-red-sea-intercept-us-uk-warships/", + "pubDate": "Wed, 10 Jan 2024 09:47:10 +0000", + "dc:creator": "Colton Jones", + "content": "

The U.S. Central Command announced on Wednesday that on Jan. 9, at approximately 9:15 p.m. (Sanaa time), the Houthis launched a complex attack involving Iranian-designed kamikaze drones, anti-ship cruise missiles, and a ballistic missile from their Yemeni stronghold toward the Southern Red Sea, targeting international shipping lanes bustling with merchant vessels. The audacious attack, comprising […]

\nThe post US and UK navies repel largest Houthi attack first appeared on Defence Blog.", + "contentSnippet": "The U.S. Central Command announced on Wednesday that on Jan. 9, at approximately 9:15 p.m. (Sanaa time), the Houthis launched a complex attack involving Iranian-designed kamikaze drones, anti-ship cruise missiles, and a ballistic missile from their Yemeni stronghold toward the Southern Red Sea, targeting international shipping lanes bustling with merchant vessels. The audacious attack, comprising [\u2026]\nUS and UK navies repel largest Houthi attack first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=71902", + "categories": [ + "Maritime Security", + "News", + "PRESS RELEASES", + "NAVY", + "Red Sea", + "UK", + "Yemeni Houthi" + ], + "isoDate": "2024-01-10T09:47:10.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "British military successfully tests new laser weapon", + "link": "https://defence-blog.com/british-military-successfully-tests-new-laser-weapon/", + "pubDate": "Fri, 19 Jan 2024 13:49:18 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

The UK Ministry of Defense (MOD) announced on Friday that it had achieved the country’s first high-power firing of a laser weapon against aerial targets during a trial at the MOD\u2019s Hebrides Range. The DragonFire laser directed energy weapon (LDEW) system, developed through a \u00a3100 million ($126 million) joint investment by the MOD and industry […]

\nThe post British military successfully tests new laser weapon first appeared on Defence Blog.", + "contentSnippet": "The UK Ministry of Defense (MOD) announced on Friday that it had achieved the country\u2019s first high-power firing of a laser weapon against aerial targets during a trial at the MOD\u2019s Hebrides Range. The DragonFire laser directed energy weapon (LDEW) system, developed through a \u00a3100 million ($126 million) joint investment by the MOD and industry [\u2026]\nBritish military successfully tests new laser weapon first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=72131", + "categories": [ + "Army", + "News", + "PRESS RELEASES", + "Dragonfire", + "future", + "laser", + "UK" + ], + "isoDate": "2024-01-19T13:49:18.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "Royal Air Force receives first Protector drone", + "link": "https://defence-blog.com/royal-air-force-receives-first-protector-drone/", + "pubDate": "Tue, 24 Oct 2023 11:18:59 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

The Royal Air Force has received the first Protector aircraft, the latest Remotely Piloted Air System (RPAS), marking a significant milestone in the nation’s defense capabilities. The Protector is a British version of an MQ-9B SkyGuardian remotely piloted aircraft system developed by General Atomics Aeronautical Systems, Inc. Equipped with a suite of advanced surveillance equipment, […]

\nThe post Royal Air Force receives first Protector drone first appeared on Defence Blog.", + "contentSnippet": "The Royal Air Force has received the first Protector aircraft, the latest Remotely Piloted Air System (RPAS), marking a significant milestone in the nation\u2019s defense capabilities. The Protector is a British version of an MQ-9B SkyGuardian remotely piloted aircraft system developed by General Atomics Aeronautical Systems, Inc. Equipped with a suite of advanced surveillance equipment, [\u2026]\nRoyal Air Force receives first Protector drone first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69982", + "categories": [ + "Aviation", + "News", + "drone", + "General Atomics", + "Protector UAS", + "Royal Air Force", + "UK" + ], + "isoDate": "2023-10-24T11:18:59.000Z" + }, + { + "creator": "Emily Ryan Miller", + "title": "British Army declares its new AH-64E helicopter is ready to fight", + "link": "https://defence-blog.com/british-army-declares-its-new-ah-64e-helicopter-is-ready-to-fight/", + "pubDate": "Tue, 24 Oct 2023 07:59:53 +0000", + "dc:creator": "Emily Ryan Miller", + "content": "

The first regiment equipped with the British Army\u2019s new Apache AH-64E attack helicopters has achieved readiness for frontline deployment. The Army stated in a press release that during Exercise Iron Titan, 3 Regiment Army Air Corps (3 Regt AAC) underwent comprehensive testing, evaluating all aspects of the unit, including logistics, command and control procedures, and […]

\nThe post British Army declares its new AH-64E helicopter is ready to fight first appeared on Defence Blog.", + "contentSnippet": "The first regiment equipped with the British Army\u2019s new Apache AH-64E attack helicopters has achieved readiness for frontline deployment. The Army stated in a press release that during Exercise Iron Titan, 3 Regiment Army Air Corps (3 Regt AAC) underwent comprehensive testing, evaluating all aspects of the unit, including logistics, command and control procedures, and [\u2026]\nBritish Army declares its new AH-64E helicopter is ready to fight first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69965", + "categories": [ + "Army", + "News", + "PRESS RELEASES", + "AH-64", + "attack helicopter", + "UK" + ], + "isoDate": "2023-10-24T07:59:53.000Z" + }, + { + "creator": "Emily Ryan Miller", + "title": "Pentagon greenlights sale of next gen air-to-ground missiles to the UK", + "link": "https://defence-blog.com/pentagon-greenlights-sale-of-next-gen-air-to-ground-missiles-to-the-uk/", + "pubDate": "Tue, 24 Oct 2023 07:42:06 +0000", + "dc:creator": "Emily Ryan Miller", + "content": "

The U.S. State Department has given its approval for a potential Foreign Military Sale of Joint Air-to-Ground Missiles (JAGM) to the Government of the United Kingdom, marking a significant boost to the nation’s defense capabilities. The Defense Security Cooperation Agency, the Pentagon\u2019s top arms broker, formally certified this potential sale to Congress on Monday. The […]

\nThe post Pentagon greenlights sale of next gen air-to-ground missiles to the UK first appeared on Defence Blog.", + "contentSnippet": "The U.S. State Department has given its approval for a potential Foreign Military Sale of Joint Air-to-Ground Missiles (JAGM) to the Government of the United Kingdom, marking a significant boost to the nation\u2019s defense capabilities. The Defense Security Cooperation Agency, the Pentagon\u2019s top arms broker, formally certified this potential sale to Congress on Monday. The [\u2026]\nPentagon greenlights sale of next gen air-to-ground missiles to the UK first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69962", + "categories": [ + "Army", + "News", + "DSCA", + "JAGM", + "Lockheed Martin", + "UK", + "USA" + ], + "isoDate": "2023-10-24T07:42:06.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "UK continues to support Ukraine with a wide range of training", + "link": "https://defence-blog.com/uk-continues-to-support-ukraine-with-a-wide-range-of-training/", + "pubDate": "Wed, 18 Oct 2023 10:16:57 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

The United Kingdom’s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine’s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This […]

\nThe post UK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", + "contentSnippet": "The United Kingdom\u2019s steadfast commitment to supporting Ukraine remains resolute, offering a broad spectrum of training initiatives aimed at reinforcing Ukraine\u2019s defense capabilities. As part of its comprehensive support package, the UK has been providing specialized training to ensure the operational readiness of critical equipment, particularly the formidable M270 Multiple Launch Rocket System (MLRS). This [\u2026]\nUK continues to support Ukraine with a wide range of training first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69792", + "categories": ["Army", "News", "M270", "military aid", "UK", "Ukraine"], + "isoDate": "2023-10-18T10:16:57.000Z" + }, + { + "creator": "Emily Ryan Miller", + "title": "US Air Force B-1B bombers arrive in the UK", + "link": "https://defence-blog.com/us-air-force-b-1b-bombers-arrive-in-the-uk/", + "pubDate": "Tue, 17 Oct 2023 09:02:57 +0000", + "dc:creator": "Emily Ryan Miller", + "content": "

On October 14, 2023, U.S. Air Force B-1B Lancer bombers, under the command of the 9th Expeditionary Bomb Squadron, soared through the skies over RAF Fairford, United Kingdom. In an official announcement, the Air Force said that B-1B bombers arrived in the UK as part of an ongoing mission to enhance global readiness. The B-1B […]

\nThe post US Air Force B-1B bombers arrive in the UK first appeared on Defence Blog.", + "contentSnippet": "On October 14, 2023, U.S. Air Force B-1B Lancer bombers, under the command of the 9th Expeditionary Bomb Squadron, soared through the skies over RAF Fairford, United Kingdom. In an official announcement, the Air Force said that B-1B bombers arrived in the UK as part of an ongoing mission to enhance global readiness. The B-1B [\u2026]\nUS Air Force B-1B bombers arrive in the UK first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69744", + "categories": [ + "Aviation", + "News", + "B-1", + "RAF Fairford", + "UK", + "USA", + "USAF" + ], + "isoDate": "2023-10-17T09:02:57.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "Ukraine to get newest \u2018drone killer\u2019 system from UK", + "link": "https://defence-blog.com/ukraine-to-get-newest-drone-killer-system-from-uk/", + "pubDate": "Wed, 11 Oct 2023 12:22:33 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

The UK will arm Ukraine with a modern Counter-Unmanned Aircraft System as part of a new air defense package. According to a press release from the Ministry of Defense, a new package of military support for Ukraine, worth more than \u00a3100m ($123 million), will comprise the MSI-DS Terrahawk Paladin air defense system. The MSI-DS Terrahawk […]

\nThe post Ukraine to get newest \u2018drone killer\u2019 system from UK first appeared on Defence Blog.", + "contentSnippet": "The UK will arm Ukraine with a modern Counter-Unmanned Aircraft System as part of a new air defense package. According to a press release from the Ministry of Defense, a new package of military support for Ukraine, worth more than \u00a3100m ($123 million), will comprise the MSI-DS Terrahawk Paladin air defense system. The MSI-DS Terrahawk [\u2026]\nUkraine to get newest \u2018drone killer\u2019 system from UK first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69580", + "categories": [ + "Army", + "News", + "Counter-UAS", + "MSI-DS", + "TERRAHAWK PALADIN", + "UK", + "Ukraine" + ], + "isoDate": "2023-10-11T12:22:33.000Z" + }, + { + "creator": "Colton Jones", + "title": "British Army receives first Archer howitzer", + "link": "https://defence-blog.com/british-army-receives-first-archer-howitzer/", + "pubDate": "Sat, 07 Oct 2023 18:32:57 +0000", + "dc:creator": "Colton Jones", + "content": "

The British Army has received\u00a0its\u00a0first Swedish-made 155mm Archer\u00a0artillery system, according to a recent service news release. The new Archer howitzer arrived by ship at the Marchwood Military Port in Hampshire. The British Army is buying Swedish-made 155mm artillery systems to plug a gap left by the supply of weapons donated to Ukraine. Colonel Stuart Nasse, […]

\nThe post British Army receives first Archer howitzer first appeared on Defence Blog.", + "contentSnippet": "The British Army has received\u00a0its\u00a0first Swedish-made 155mm Archer\u00a0artillery system, according to a recent service news release. The new Archer howitzer arrived by ship at the Marchwood Military Port in Hampshire. The British Army is buying Swedish-made 155mm artillery systems to plug a gap left by the supply of weapons donated to Ukraine. Colonel Stuart Nasse, [\u2026]\nBritish Army receives first Archer howitzer first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69477", + "categories": [ + "Army", + "News", + "PRESS RELEASES", + "ARCHER", + "BAE Systems", + "Self-propelled howitzer", + "UK" + ], + "isoDate": "2023-10-07T18:32:57.000Z" + }, + { + "creator": "Colton Jones", + "title": "BAE Systems\u2019 AMPV tracked vehicle makes its international debut", + "link": "https://defence-blog.com/bae-systems-ampv-tracked-vehicle-makes-its-international-debut/", + "pubDate": "Tue, 12 Sep 2023 09:10:46 +0000", + "dc:creator": "Colton Jones", + "content": "

BAE Systems showcased its new AMPV tracked vehicle, built on a Bradley Infantry Fighting Vehicle chassis, for the first time amid an international crowd at the UK Defence and Security Equipment International (DSEI) event. As the foundation of the future for the U.S. Army, the AMPV (Armored Multi-Purpose Vehicle) provides significant improvements in power, mobility, […]

\nThe post BAE Systems\u2019 AMPV tracked vehicle makes its international debut first appeared on Defence Blog.", + "contentSnippet": "BAE Systems showcased its new AMPV tracked vehicle, built on a Bradley Infantry Fighting Vehicle chassis, for the first time amid an international crowd at the UK Defence and Security Equipment International (DSEI) event. As the foundation of the future for the U.S. Army, the AMPV (Armored Multi-Purpose Vehicle) provides significant improvements in power, mobility, [\u2026]\nBAE Systems\u2019 AMPV tracked vehicle makes its international debut first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=69026", + "categories": [ + "Army", + "News", + "PRESS RELEASES", + "AMPV", + "BAE Systems", + "DSEI", + "UK", + "USA" + ], + "isoDate": "2023-09-12T09:10:46.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "Royal Navy tests aerial logistics drone on aircraft carrier", + "link": "https://defence-blog.com/royal-navy-tests-aerial-logistics-drone-on-aircraft-carrier/", + "pubDate": "Mon, 11 Sep 2023 08:07:36 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

The British Royal Navy tested a long-range cargo aerial drone on an aircraft carrier for the first time. The Royal Navy said in a release that the W Autonomous Systems (WAS) drone flew from the Lizard Peninsula and on to the deck of HMS Prince of Wales off the Cornish coast, delivered supplies, then flew […]

\nThe post Royal Navy tests aerial logistics drone on aircraft carrier first appeared on Defence Blog.", + "contentSnippet": "The British Royal Navy tested a long-range cargo aerial drone on an aircraft carrier for the first time. The Royal Navy said in a release that the W Autonomous Systems (WAS) drone flew from the Lizard Peninsula and on to the deck of HMS Prince of Wales off the Cornish coast, delivered supplies, then flew [\u2026]\nRoyal Navy tests aerial logistics drone on aircraft carrier first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=68991", + "categories": [ + "Maritime Security", + "News", + "PRESS RELEASES", + "Video", + "drone", + "HMS Prince of Wales (R09)", + "Lizard Peninsula", + "UK", + "W Autonomous Systems" + ], + "isoDate": "2023-09-11T08:07:36.000Z" + }, + { + "creator": "Dylan Malyasov", + "title": "Ukraine will get Scimitar armored reconnaissance vehicles from UK", + "link": "https://defence-blog.com/ukraine-will-get-scimitar-armored-reconnaissance-vehicles-from-uk/", + "pubDate": "Wed, 06 Sep 2023 07:47:28 +0000", + "dc:creator": "Dylan Malyasov", + "content": "

The UK will arm Ukraine with Scimitar MK2 armored reconnaissance vehicles, according to the Rheinmetall BAE Systems Land (RBSL). As noted by the company, RBSL\u2019s Field Support Representatives (FSR\u2019s) were recently deployed to Germany to help the British Army get a number of CVR(T) Scimitar MK2 vehicles ready to be shipped to Ukraine. “The FSR\u2019s […]

\nThe post Ukraine will get Scimitar armored reconnaissance vehicles from UK first appeared on Defence Blog.", + "contentSnippet": "The UK will arm Ukraine with Scimitar MK2 armored reconnaissance vehicles, according to the Rheinmetall BAE Systems Land (RBSL). As noted by the company, RBSL\u2019s Field Support Representatives (FSR\u2019s) were recently deployed to Germany to help the British Army get a number of CVR(T) Scimitar MK2 vehicles ready to be shipped to Ukraine. \u201cThe FSR\u2019s [\u2026]\nUkraine will get Scimitar armored reconnaissance vehicles from UK first appeared on Defence Blog.", + "guid": "https://defence-blog.com/?p=68938", + "categories": [ + "Army", + "News", + "military aid", + "RBSL", + "Scimitar", + "UK", + "Ukraine" + ], + "isoDate": "2023-09-06T07:47:28.000Z" + } +] diff --git a/intro to react/newData/oldNews/4d58b7ddec9049509fc1000b9021a56a6b2468a919f03a9044b70d13cf5adff4.json b/intro to react/newData/oldNews/4d58b7ddec9049509fc1000b9021a56a6b2468a919f03a9044b70d13cf5adff4.json index a6e6ef2..001ff23 100644 --- a/intro to react/newData/oldNews/4d58b7ddec9049509fc1000b9021a56a6b2468a919f03a9044b70d13cf5adff4.json +++ b/intro to react/newData/oldNews/4d58b7ddec9049509fc1000b9021a56a6b2468a919f03a9044b70d13cf5adff4.json @@ -1,342 +1,302 @@ [ - { - "creator": "Tom Dunlop", - "title": "British frigate returns home", - "link": "https://ukdefencejournal.org.uk/british-frigate-returns-home/", - "pubDate": "Sat, 25 Nov 2023 17:00:12 +0000", - "content:encoded": "

HMS Portland, a Type 23 frigate, received a warm welcome upon returning to its home port in Devonport, after months of operations in the North Atlantic and surrounding UK waters.

\n

Embarking from Devonport in early August, HMS Portland’s mission included the shadowing of Russian naval vessels and visits to ports from Belfast to Nova Scotia.

\n

According to the Royal Navy press release, “HMS Portland has had a busy schedule since leaving Plymouth.” This included a brief collaboration with HMS Queen Elizabeth and the UK Carrier Strike Group for NATO training and exercises.

\n

A pivotal aspect of HMS Portland’s deployment was tracking Russian warships and submarines. This task was undertaken in coordination with the offshore patrol vessel HMS Tyne and the RAF\u2019s P8 Poseidon aircraft. The frigate monitored several Russian vessels, such as corvettes Boikiy and Grad, cruiser Marshal Ustinov, and the Udaloy-class destroyer Severomorsk.

\n

During a visit to Belfast, Northern Ireland, HMS Portland then embarked on a transatlantic journey to Canada to participate in the Royal Canadian Navy\u2019s inaugural International Fleet Week in Halifax, Nova Scotia. The frigate opened its gangway to the public, including participants from Techsploration, which encourages young women to pursue careers in science, engineering, trade, and technology.

\n

HMS Portland also took part in exchanges with sailors from various international navies in Halifax, culminating in a salute to the Commander of the Canadian Navy, Vice Admiral Angus Topshee.

\n

Upon its return to the North Atlantic, HMS Portland rejoined the UK Carrier Strike Group, escorting HMS Queen Elizabeth alongside the Type 45 destroyer HMS Diamond. The frigate played a critical role in the launch of a Training Variant Torpedo from Merlin Mk2 helicopters aboard the aircraft carrier.

\n

With its return to Devonport, HMS Portland concludes a series of strategic operations, underscoring its vital role in maintaining security in the North Atlantic and surrounding UK waters.

\n

You can read more about this by clicking here.

The post British frigate returns home first appeared on UK Defence Journal.", - "content:encodedSnippet": "HMS Portland, a Type 23 frigate, received a warm welcome upon returning to its home port in Devonport, after months of operations in the North Atlantic and surrounding UK waters.\nEmbarking from Devonport in early August, HMS Portland\u2019s mission included the shadowing of Russian naval vessels and visits to ports from Belfast to Nova Scotia.\nAccording to the Royal Navy press release, \u201cHMS Portland has had a busy schedule since leaving Plymouth.\u201d This included a brief collaboration with HMS Queen Elizabeth and the UK Carrier Strike Group for NATO training and exercises.\nA pivotal aspect of HMS Portland\u2019s deployment was tracking Russian warships and submarines. This task was undertaken in coordination with the offshore patrol vessel HMS Tyne and the RAF\u2019s P8 Poseidon aircraft. The frigate monitored several Russian vessels, such as corvettes Boikiy and Grad, cruiser Marshal Ustinov, and the Udaloy-class destroyer Severomorsk.\nDuring a visit to Belfast, Northern Ireland, HMS Portland then embarked on a transatlantic journey to Canada to participate in the Royal Canadian Navy\u2019s inaugural International Fleet Week in Halifax, Nova Scotia. The frigate opened its gangway to the public, including participants from Techsploration, which encourages young women to pursue careers in science, engineering, trade, and technology.\nHMS Portland also took part in exchanges with sailors from various international navies in Halifax, culminating in a salute to the Commander of the Canadian Navy, Vice Admiral Angus Topshee.\nUpon its return to the North Atlantic, HMS Portland rejoined the UK Carrier Strike Group, escorting HMS Queen Elizabeth alongside the Type 45 destroyer HMS Diamond. The frigate played a critical role in the launch of a Training Variant Torpedo from Merlin Mk2 helicopters aboard the aircraft carrier.\nWith its return to Devonport, HMS Portland concludes a series of strategic operations, underscoring its vital role in maintaining security in the North Atlantic and surrounding UK waters.\nYou can read more about this by clicking here.\nThe post British frigate returns home first appeared on UK Defence Journal.", - "dc:creator": "Tom Dunlop", - "comments": "https://ukdefencejournal.org.uk/british-frigate-returns-home/#comments", - "content": "

Embarking from Devonport in early August, HMS Portland's mission included the shadowing of Russian naval vessels and visits to ports from Belfast to Nova Scotia.

\nThe post British frigate returns home first appeared on UK Defence Journal.", - "contentSnippet": "Embarking from Devonport in early August, HMS Portland's mission included the shadowing of Russian naval vessels and visits to ports from Belfast to Nova Scotia.\nBritish frigate returns home first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46923", - "categories": [ - "Sea" - ], - "isoDate": "2023-11-25T17:00:12.000Z" - }, - { - "creator": "Tom Dunlop", - "title": "Rolls-Royce completes 100% sustainable aviation fuel test", - "link": "https://ukdefencejournal.org.uk/rolls-royce-completes-100-sustainable-aviation-fuel-test/", - "pubDate": "Sat, 25 Nov 2023 15:00:23 +0000", - "content:encoded": "

Rolls-Royce has announced the successful completion of compatibility testing of 100% Sustainable Aviation Fuel (SAF) on all its in-production civil aero engine types.

\n

The final test in this series, which involved a BR710 business jet engine, was conducted at the company’s facility in Canada.

\n

According to the company, the comprehensive test programme included engines such as the Trent 700, Trent 800, Trent 900, Trent 1000, Trent XWB-84, Trent XWB-97, Trent 7000, BR725, Pearl 700, Pearl 15, and Pearl 10X. These tests, which involved a range of ground and flight tests, confirmed that the use of 100% SAF does not impact engine performance.

\n

Tufan Erginbilgic, CEO of Rolls-Royce plc, expressed the significance of this milestone:

\n

“Becoming the first jet engine manufacturer to publicly confirm all our in-production engines for long-haul aircraft and business jets are compatible with 100% SAF, is an important milestone for both Rolls-Royce and the wider aviation industry, according to the company. It’s also further evidence of our commitment to becoming a net zero company by 2050 and supporting our customers to do the same.”

\n

Simon Burr, Group Director of Engineering, Technology and Safety at Rolls-Royce plc, added:

\n

“This is an important milestone, not just for Rolls-Royce, but also for the wider civil aerospace industry. We hope the success of these tests provides a level of technical validation that supports those who seek to invest in the production of 100% SAF going forward.”

\n

Mark Harper, UK Transport Secretary, commented on the broader implications:

\n

“The world\u2019s journey to decarbonising flight is powered by British innovation and backed by the UK Government, meaning people can continue to travel how they want, in a way that\u2019s fit for the future. Today\u2019s news demonstrates that Rolls Royce and the UK are global leaders in decarbonising transport, taking us one step closer to Jet Zero.”

\n

According to Rolls-Royce, its new generation UltraFan engine demonstrator, which also ran earlier this year, is capable of operating on 100% SAF.

\n

The company’s commitment to sustainable aviation will be further showcased in a joint effort with Virgin Atlantic, where Trent 1000 engines will power a Boeing 787 Dreamliner on Flight 100, the world\u2019s first transatlantic 100% SAF flight. This project involves a consortium including Boeing, University of Sheffield, Imperial College London, and the Rocky Mountain Institute, sponsored by the Department for Transport.

\n

You can read more about this by clicking here.

The post Rolls-Royce completes 100% sustainable aviation fuel test first appeared on UK Defence Journal.", - "content:encodedSnippet": "Rolls-Royce has announced the successful completion of compatibility testing of 100% Sustainable Aviation Fuel (SAF) on all its in-production civil aero engine types.\nThe final test in this series, which involved a BR710 business jet engine, was conducted at the company\u2019s facility in Canada.\nAccording to the company, the comprehensive test programme included engines such as the Trent 700, Trent 800, Trent 900, Trent 1000, Trent XWB-84, Trent XWB-97, Trent 7000, BR725, Pearl 700, Pearl 15, and Pearl 10X. These tests, which involved a range of ground and flight tests, confirmed that the use of 100% SAF does not impact engine performance.\nTufan Erginbilgic, CEO of Rolls-Royce plc, expressed the significance of this milestone:\n\u201cBecoming the first jet engine manufacturer to publicly confirm all our in-production engines for long-haul aircraft and business jets are compatible with 100% SAF, is an important milestone for both Rolls-Royce and the wider aviation industry, according to the company. It\u2019s also further evidence of our commitment to becoming a net zero company by 2050 and supporting our customers to do the same.\u201d\nSimon Burr, Group Director of Engineering, Technology and Safety at Rolls-Royce plc, added:\n\u201cThis is an important milestone, not just for Rolls-Royce, but also for the wider civil aerospace industry. We hope the success of these tests provides a level of technical validation that supports those who seek to invest in the production of 100% SAF going forward.\u201d\nMark Harper, UK Transport Secretary, commented on the broader implications:\n\u201cThe world\u2019s journey to decarbonising flight is powered by British innovation and backed by the UK Government, meaning people can continue to travel how they want, in a way that\u2019s fit for the future. Today\u2019s news demonstrates that Rolls Royce and the UK are global leaders in decarbonising transport, taking us one step closer to Jet Zero.\u201d\nAccording to Rolls-Royce, its new generation UltraFan engine demonstrator, which also ran earlier this year, is capable of operating on 100% SAF.\nThe company\u2019s commitment to sustainable aviation will be further showcased in a joint effort with Virgin Atlantic, where Trent 1000 engines will power a Boeing 787 Dreamliner on Flight 100, the world\u2019s first transatlantic 100% SAF flight. This project involves a consortium including Boeing, University of Sheffield, Imperial College London, and the Rocky Mountain Institute, sponsored by the Department for Transport.\nYou can read more about this by clicking here.\nThe post Rolls-Royce completes 100% sustainable aviation fuel test first appeared on UK Defence Journal.", - "dc:creator": "Tom Dunlop", - "comments": "https://ukdefencejournal.org.uk/rolls-royce-completes-100-sustainable-aviation-fuel-test/#comments", - "content": "

Rolls-Royce has announced the successful completion of compatibility testing of 100% Sustainable Aviation Fuel (SAF) on all its in-production civil aero engine types.

\nThe post Rolls-Royce completes 100% sustainable aviation fuel test first appeared on UK Defence Journal.", - "contentSnippet": "Rolls-Royce has announced the successful completion of compatibility testing of 100% Sustainable Aviation Fuel (SAF) on all its in-production civil aero engine types.\nRolls-Royce completes 100% sustainable aviation fuel test first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46921", - "categories": [ - "Air" - ], - "isoDate": "2023-11-25T15:00:23.000Z" - }, - { - "creator": "George Allison", - "title": "Sweden selects British CAMM missiles", - "link": "https://ukdefencejournal.org.uk/sweden-selects-british-camm-missiles/", - "pubDate": "Sat, 25 Nov 2023 13:00:11 +0000", - "content:encoded": "

MBDA has signed a contract with Sweden for the delivery of Common Anti-air Modular Missiles (CAMMs).

\n

This agreement, brokered between MBDA and the Swedish Defence Materiel Administration FMV, involves equipping the Royal Swedish Navy’s Visby Class Corvettes with CAMMs, to be deployed via MBDA\u2019s Sea Ceptor naval air defence system.

\n

Sea Ceptor, a state-of-the-art naval air defence system, is well known for its ability to provide comprehensive self- and local area air defence.

\n

It can counter a wide array of threats, including supersonic anti-ship missiles, attack helicopters, and un-crewed air vehicles. Notably, the system is adept at handling simultaneous attacks, including saturation attacks, from any direction.

\n

Eric Beranger, CEO of MBDA, emphasised the significance of this contract. “CAMM will provide Sweden and the Royal Swedish Navy with a formidable air defence capability that gives the country a strong new contribution to NATO together with other allied Sea Ceptor users like the Royal Navy from the United Kingdom. We\u2019re proud also to be continuing our long history of partnership with Sweden and Swedish industry, including Saab.”

\n

Sweden now joins a growing list of countries, such as Poland, the UK, Italy, Canada, and Brazil, that have selected the CAMM family for their latest generation naval and ground-based air defence needs.

\n

You can read more about this by clicking here.

The post Sweden selects British CAMM missiles first appeared on UK Defence Journal.", - "content:encodedSnippet": "MBDA has signed a contract with Sweden for the delivery of Common Anti-air Modular Missiles (CAMMs).\nThis agreement, brokered between MBDA and the Swedish Defence Materiel Administration FMV, involves equipping the Royal Swedish Navy\u2019s Visby Class Corvettes with CAMMs, to be deployed via MBDA\u2019s Sea Ceptor naval air defence system.\nSea Ceptor, a state-of-the-art naval air defence system, is well known for its ability to provide comprehensive self- and local area air defence.\nIt can counter a wide array of threats, including supersonic anti-ship missiles, attack helicopters, and un-crewed air vehicles. Notably, the system is adept at handling simultaneous attacks, including saturation attacks, from any direction.\nEric Beranger, CEO of MBDA, emphasised the significance of this contract. \u201cCAMM will provide Sweden and the Royal Swedish Navy with a formidable air defence capability that gives the country a strong new contribution to NATO together with other allied Sea Ceptor users like the Royal Navy from the United Kingdom. We\u2019re proud also to be continuing our long history of partnership with Sweden and Swedish industry, including Saab.\u201d\nSweden now joins a growing list of countries, such as Poland, the UK, Italy, Canada, and Brazil, that have selected the CAMM family for their latest generation naval and ground-based air defence needs.\nYou can read more about this by clicking here.\nThe post Sweden selects British CAMM missiles first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/sweden-selects-british-camm-missiles/#comments", - "content": "

MBDA has signed a contract with Sweden for the delivery of Common Anti-air Modular Missiles (CAMMs) for their Visby class corvettes.

\nThe post Sweden selects British CAMM missiles first appeared on UK Defence Journal.", - "contentSnippet": "MBDA has signed a contract with Sweden for the delivery of Common Anti-air Modular Missiles (CAMMs) for their Visby class corvettes.\nSweden selects British CAMM missiles first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46926", - "categories": [ - "Sea" - ], - "isoDate": "2023-11-25T13:00:11.000Z" - }, - { - "creator": "Tom Dunlop", - "title": "Boeing shifts toward production of MH-139A Grey Wolf", - "link": "https://ukdefencejournal.org.uk/boeing-shifts-toward-production-of-mh-139a-grey-wolf/", - "pubDate": "Sat, 25 Nov 2023 12:00:29 +0000", - "content:encoded": "

Boeing has announced its transition towards the low-rate initial production of the MH-139A Grey Wolf, following the completion of the program’s Research, Development, Test & Evaluation (RDT&E) phase.

\n

The final RDT&E aircraft was delivered to the U.S. Air Force in October, marking a significant milestone for the project.

\n

Azeem Khan, MH-139 program director at Boeing, commented, \u201cDelivering all of the RDT&E aircraft to the Air Force enables them to continue critical operational testing and allows Boeing to focus on building the first production aircraft.\u201d He further added, \u201cThe Grey Wolf will provide crucial national security capability improvements to the Air Force. This is an important step in getting the aircraft into service.\u201d

\n

Boeing is scheduled to deliver the first production aircraft in 2024. The Air Force has already awarded Boeing a contract for the first 13 aircraft, with the initial one currently in final assembly. The contract has the potential to expand up to 80 MH-139A Grey Wolf helicopters.

\n

Robert Beyer, MH-139 Senior Program Manager at Leonardo Helicopters US, stated, \u201cWith the final test aircraft delivered, we\u2019re headed into an exciting production phase. With the MH-139, the United States Air Force is getting a faster and more capable aircraft to bring them into a new era of service for this mission.\u201d

\n

The MH-139A is set to replace the UH-1N Huey. Its primary roles include protecting intercontinental ballistic missiles across the U.S. and transporting VIP and security personnel.

\n

You can read more about this by clicking here.

The post Boeing shifts toward production of MH-139A Grey Wolf first appeared on UK Defence Journal.", - "content:encodedSnippet": "Boeing has announced its transition towards the low-rate initial production of the MH-139A Grey Wolf, following the completion of the program\u2019s Research, Development, Test & Evaluation (RDT&E) phase.\nThe final RDT&E aircraft was delivered to the U.S. Air Force in October, marking a significant milestone for the project.\nAzeem Khan, MH-139 program director at Boeing, commented, \u201cDelivering all of the RDT&E aircraft to the Air Force enables them to continue critical operational testing and allows Boeing to focus on building the first production aircraft.\u201d He further added, \u201cThe Grey Wolf will provide crucial national security capability improvements to the Air Force. This is an important step in getting the aircraft into service.\u201d\nBoeing is scheduled to deliver the first production aircraft in 2024. The Air Force has already awarded Boeing a contract for the first 13 aircraft, with the initial one currently in final assembly. The contract has the potential to expand up to 80 MH-139A Grey Wolf helicopters.\nRobert Beyer, MH-139 Senior Program Manager at Leonardo Helicopters US, stated, \u201cWith the final test aircraft delivered, we\u2019re headed into an exciting production phase. With the MH-139, the United States Air Force is getting a faster and more capable aircraft to bring them into a new era of service for this mission.\u201d\nThe MH-139A is set to replace the UH-1N Huey. Its primary roles include protecting intercontinental ballistic missiles across the U.S. and transporting VIP and security personnel.\nYou can read more about this by clicking here.\nThe post Boeing shifts toward production of MH-139A Grey Wolf first appeared on UK Defence Journal.", - "dc:creator": "Tom Dunlop", - "comments": "https://ukdefencejournal.org.uk/boeing-shifts-toward-production-of-mh-139a-grey-wolf/#comments", - "content": "

Boeing has announced its transition towards the low-rate initial production of the MH-139A Grey Wolf.

\nThe post Boeing shifts toward production of MH-139A Grey Wolf first appeared on UK Defence Journal.", - "contentSnippet": "Boeing has announced its transition towards the low-rate initial production of the MH-139A Grey Wolf.\nBoeing shifts toward production of MH-139A Grey Wolf first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46919", - "categories": [ - "Air" - ], - "isoDate": "2023-11-25T12:00:29.000Z" - }, - { - "creator": "Tom Dunlop", - "title": "American Abrams tanks for Romania", - "link": "https://ukdefencejournal.org.uk/american-abrams-tanks-for-romania/", - "pubDate": "Sat, 25 Nov 2023 11:00:07 +0000", - "content:encoded": "

The U.S. State Department has given its approval for a possible Foreign Military Sale to Romania, involving M1A2 Abrams Main Battle Tanks and related equipment, with the proposed sale valued at approximately $2.53 billion.

\n

This follows the formal notification to Congress by the Defense Security Cooperation Agency.

\n

Romania’s request, as detailed in the press release, includes “fifty-four (54) M1A2 SEPv3 Abrams Main Battle Tanks; fifty-four (54) M1A1 Structures; four (4) M88A2 HERCULES Combat Recovery Vehicles; and other equipment.”

\n

The list extends to include various types of vehicles, weapons, ammunition, and support services.

\n

The State Department’s press release emphasises the significance of this sale for U.S. foreign policy: “This proposed sale will support the foreign policy and national security objectives of the United States by helping to improve the security of a NATO Ally which is an important force for political and economic stability in Europe.”

\n

Regarding the impact on Romania’s defence capabilities, the release states, “The proposed sale will improve Romania\u2019s capability to meet current and future threats by providing a credible force that is capable of deterring adversaries and participating in NATO operations.”

\n

It also assures that “Romania will have no difficulty absorbing this equipment into its armed forces.”

The post American Abrams tanks for Romania first appeared on UK Defence Journal.", - "content:encodedSnippet": "The U.S. State Department has given its approval for a possible Foreign Military Sale to Romania, involving M1A2 Abrams Main Battle Tanks and related equipment, with the proposed sale valued at approximately $2.53 billion.\nThis follows the formal notification to Congress by the Defense Security Cooperation Agency.\nRomania\u2019s request, as detailed in the press release, includes \u201cfifty-four (54) M1A2 SEPv3 Abrams Main Battle Tanks; fifty-four (54) M1A1 Structures; four (4) M88A2 HERCULES Combat Recovery Vehicles; and other equipment.\u201d\nThe list extends to include various types of vehicles, weapons, ammunition, and support services.\nThe State Department\u2019s press release emphasises the significance of this sale for U.S. foreign policy: \u201cThis proposed sale will support the foreign policy and national security objectives of the United States by helping to improve the security of a NATO Ally which is an important force for political and economic stability in Europe.\u201d\nRegarding the impact on Romania\u2019s defence capabilities, the release states, \u201cThe proposed sale will improve Romania\u2019s capability to meet current and future threats by providing a credible force that is capable of deterring adversaries and participating in NATO operations.\u201d\nIt also assures that \u201cRomania will have no difficulty absorbing this equipment into its armed forces.\u201d\nThe post American Abrams tanks for Romania first appeared on UK Defence Journal.", - "dc:creator": "Tom Dunlop", - "comments": "https://ukdefencejournal.org.uk/american-abrams-tanks-for-romania/#comments", - "content": "

The U.S. State Department has given its approval for a possible sale to Romania of 54 M1A2 Abrams Main Battle Tanks.

\nThe post American Abrams tanks for Romania first appeared on UK Defence Journal.", - "contentSnippet": "The U.S. State Department has given its approval for a possible sale to Romania of 54 M1A2 Abrams Main Battle Tanks.\nAmerican Abrams tanks for Romania first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46916", - "categories": [ - "Land" - ], - "isoDate": "2023-11-25T11:00:07.000Z" - }, - { - "creator": "Tom Dunlop", - "title": "NATO joins UK in purchasing E-7 early warning aircraft", - "link": "https://ukdefencejournal.org.uk/nato-joins-uk-in-purchasing-e-7-early-warning-aircraft/", - "pubDate": "Sat, 25 Nov 2023 10:00:50 +0000", - "content:encoded": "

NATO has announced the selection of its next-generation command and control aircraft, moving forward with the Boeing E-7A Wedgetail to replace its existing E-3 Airborne Warning and Control (AWACS) fleet, which is nearing retirement.

\n

The production of six new E-7A aircraft is expected to begin in the coming years, with the first aircraft slated to be ready for operational duty by 2031.

\n

This decision follows approval from a consortium of Allied nations.

\n

NATO Secretary General Jens Stoltenberg commented on the development, stating, \u201cSurveillance and control aircraft are crucial for NATO\u2019s collective defence and I welcome Allies\u2019 commitment to investing in high-end capabilities.\u201d

\n

He also noted the benefits of pooling resources, enabling Allies to collectively purchase and operate assets that would be too costly for individual countries. Stoltenberg added, “This investment in state-of-the-art technology shows the strength of transatlantic defence cooperation as we continue to adapt to a more unstable world”.

\n

The E-7 Wedgetail, an advanced early warning and control aircraft, is equipped with a sophisticated radar system. It is capable of detecting hostile aircraft, missiles, and ships at great distances and can direct NATO fighter jets to their targets.

\n

The aircraft is based on a militarised version of the Boeing 737 jetliner. Countries such as the United States, the United Kingdom, Australia and T\u00fcrkiye either currently operate the Wedgetail or plan to do so.

\n

Since the 1980s, NATO has operated a fleet of E-3A AWACS aircraft from Geilenkirchen Air Base in Germany. These aircraft have been involved in every major NATO operation, including actions against ISIS and on NATO\u2019s eastern flank following Russia\u2019s invasion of Ukraine.

\n

The E-7 is expected to be primarily based at Geilenkirchen and may operate from several forward locations across Europe. It will be a part of NATO\u2019s future surveillance and control project, which aims to introduce the next generation of surveillance systems by the mid-2030s.

The post NATO joins UK in purchasing E-7 early warning aircraft first appeared on UK Defence Journal.", - "content:encodedSnippet": "NATO has announced the selection of its next-generation command and control aircraft, moving forward with the Boeing E-7A Wedgetail to replace its existing E-3 Airborne Warning and Control (AWACS) fleet, which is nearing retirement.\nThe production of six new E-7A aircraft is expected to begin in the coming years, with the first aircraft slated to be ready for operational duty by 2031.\nThis decision follows approval from a consortium of Allied nations.\nNATO Secretary General Jens Stoltenberg commented on the development, stating, \u201cSurveillance and control aircraft are crucial for NATO\u2019s collective defence and I welcome Allies\u2019 commitment to investing in high-end capabilities.\u201d\nHe also noted the benefits of pooling resources, enabling Allies to collectively purchase and operate assets that would be too costly for individual countries. Stoltenberg added, \u201cThis investment in state-of-the-art technology shows the strength of transatlantic defence cooperation as we continue to adapt to a more unstable world\u201d.\nThe E-7 Wedgetail, an advanced early warning and control aircraft, is equipped with a sophisticated radar system. It is capable of detecting hostile aircraft, missiles, and ships at great distances and can direct NATO fighter jets to their targets.\nThe aircraft is based on a militarised version of the Boeing 737 jetliner. Countries such as the United States, the United Kingdom, Australia and T\u00fcrkiye either currently operate the Wedgetail or plan to do so.\nSince the 1980s, NATO has operated a fleet of E-3A AWACS aircraft from Geilenkirchen Air Base in Germany. These aircraft have been involved in every major NATO operation, including actions against ISIS and on NATO\u2019s eastern flank following Russia\u2019s invasion of Ukraine.\nThe E-7 is expected to be primarily based at Geilenkirchen and may operate from several forward locations across Europe. It will be a part of NATO\u2019s future surveillance and control project, which aims to introduce the next generation of surveillance systems by the mid-2030s.\nThe post NATO joins UK in purchasing E-7 early warning aircraft first appeared on UK Defence Journal.", - "dc:creator": "Tom Dunlop", - "comments": "https://ukdefencejournal.org.uk/nato-joins-uk-in-purchasing-e-7-early-warning-aircraft/#comments", - "content": "

Countries such as the United States, the United Kingdom, Australia and Turkey either currently operate the Wedgetail or plan to do so.

\nThe post NATO joins UK in purchasing E-7 early warning aircraft first appeared on UK Defence Journal.", - "contentSnippet": "Countries such as the United States, the United Kingdom, Australia and Turkey either currently operate the Wedgetail or plan to do so.\nNATO joins UK in purchasing E-7 early warning aircraft first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46925", - "categories": [ - "Air" - ], - "isoDate": "2023-11-25T10:00:50.000Z" - }, - { - "creator": "Tom Dunlop", - "title": "British military provides further support to get aid into Gaza", - "link": "https://ukdefencejournal.org.uk/british-military-provides-further-support-to-get-aid-into-gaza/", - "pubDate": "Sat, 25 Nov 2023 08:30:33 +0000", - "content:encoded": "

The UK has announced an additional \u00a330 million in humanitarian aid to address the growing crisis in Gaza.

\n

This announcement was made by the Foreign Secretary during his visit to Israel and the Occupied Palestinian Territories (OPTs).

\n

The Foreign Secretary’s visit, which included a series of meetings with senior Israeli politicians, focussed on intensifying UK efforts to alleviate the humanitarian situation in Gaza. The discussions centred around opening greater access for essential support, including medical supplies and fuel.

\n

This new pledge of \u00a330 million brings the total additional aid announced by the UK for Palestinian civilians to \u00a360 million since the crisis began in October.

\n

Foreign Secretary David Cameron highlighted the importance of this assistance, stating:

\n

“We are hopeful that today will see the release of hostages, and I am urging all parties to continue to work towards the release of every hostage. A pause will also allow access for life-saving aid to the people of Gaza. I am proud that a fourth UK flight carrying critical supplies landed in Egypt today, and I can announce new \u00a330 million of funding which will be spent on vital aid such as shelter and medical provisions.”

\n

The focus of the UK’s support is on delivering lifesaving aid to those in Gaza, with the assistance being channelled through trusted partners and UN agencies on the ground. The aid includes provisions for shelter and medical supplies, addressing the immediate needs of the population.

\n

The fourth UK aircraft carrying humanitarian aid recently landed in Al Arish, Egypt, for transfer to Gaza.

\n

The Royal Air Force (RAF) flight delivered 23 tonnes of aid, including blankets and sleeping mats, to be distributed by the United Nations Relief and Works Agency (UNRWA). Defence Secretary Grant Shapps commented on the RAF’s role, saying: “The RAF continues to deliver on the UK\u2019s commitment to helping those in need by operating flights into the region to provide urgent humanitarian support which will save civilian lives.”

\n

You can read more about this by clicking here.

The post British military provides further support to get aid into Gaza first appeared on UK Defence Journal.", - "content:encodedSnippet": "The UK has announced an additional \u00a330 million in humanitarian aid to address the growing crisis in Gaza.\nThis announcement was made by the Foreign Secretary during his visit to Israel and the Occupied Palestinian Territories (OPTs).\nThe Foreign Secretary\u2019s visit, which included a series of meetings with senior Israeli politicians, focussed on intensifying UK efforts to alleviate the humanitarian situation in Gaza. The discussions centred around opening greater access for essential support, including medical supplies and fuel.\nThis new pledge of \u00a330 million brings the total additional aid announced by the UK for Palestinian civilians to \u00a360 million since the crisis began in October.\nForeign Secretary David Cameron highlighted the importance of this assistance, stating:\n\u201cWe are hopeful that today will see the release of hostages, and I am urging all parties to continue to work towards the release of every hostage. A pause will also allow access for life-saving aid to the people of Gaza. I am proud that a fourth UK flight carrying critical supplies landed in Egypt today, and I can announce new \u00a330 million of funding which will be spent on vital aid such as shelter and medical provisions.\u201d\nThe focus of the UK\u2019s support is on delivering lifesaving aid to those in Gaza, with the assistance being channelled through trusted partners and UN agencies on the ground. The aid includes provisions for shelter and medical supplies, addressing the immediate needs of the population.\nThe fourth UK aircraft carrying humanitarian aid recently landed in Al Arish, Egypt, for transfer to Gaza.\nThe Royal Air Force (RAF) flight delivered 23 tonnes of aid, including blankets and sleeping mats, to be distributed by the United Nations Relief and Works Agency (UNRWA). Defence Secretary Grant Shapps commented on the RAF\u2019s role, saying: \u201cThe RAF continues to deliver on the UK\u2019s commitment to helping those in need by operating flights into the region to provide urgent humanitarian support which will save civilian lives.\u201d\nYou can read more about this by clicking here.\nThe post British military provides further support to get aid into Gaza first appeared on UK Defence Journal.", - "dc:creator": "Tom Dunlop", - "comments": "https://ukdefencejournal.org.uk/british-military-provides-further-support-to-get-aid-into-gaza/#comments", - "content": "

The fourth Royal Air Force transport aircraft carrying humanitarian aid recently landed in Al Arish, Egypt, for transfer to Gaza.

\nThe post British military provides further support to get aid into Gaza first appeared on UK Defence Journal.", - "contentSnippet": "The fourth Royal Air Force transport aircraft carrying humanitarian aid recently landed in Al Arish, Egypt, for transfer to Gaza.\nBritish military provides further support to get aid into Gaza first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46932", - "categories": [ - "Air" - ], - "isoDate": "2023-11-25T08:30:33.000Z" - }, - { - "creator": "George Allison", - "title": "F-35B air collision avoidance system integration pushed back", - "link": "https://ukdefencejournal.org.uk/f-35b-air-collision-avoidance-system-integration-pushed-back/", - "pubDate": "Fri, 24 Nov 2023 13:30:49 +0000", - "content:encoded": "

A Freedom of Information request has brought to light the delayed implementation of the Air Collision Avoidance System (ACAS) in the F-35B aircraft.

\n

A document attached to the FOI request, a 2021 Air System Safety Case \u2013 Safety Statement for Lightning, details that the introduction of ACAS, initially set for 2024, has been pushed back to 2028 for Manual ACAS and 2029 for Auto ACAS.

\n

“F-35 Air Collision Avoidance System (ACAS) was scheduled for introduction into service in 2024. Although ACAS is regarded as a high priority by the UK, the US Services (and therefore the F-35 Programme) regard it as very low priority and it has recently been deferred. Forecast integration dates are now Jan 2028 for Manual ACAS and Jan 2029 for Auto ACAS.”

\n

The document also states:

\n

“I am content that the Air Safety Risks to Life (RtL) associated with the routine operation of Lng are currently managed and mitigated such that they remain at least ALARP and Tolerable.”

\n

The principle of ‘As Low As Reasonably Practicable’ (ALARP) dictates that risks should be managed to the lowest feasible level while remaining below the maximum allowable risk.

\n

In a 2019 inquiry, Douglas Ross, Conservative MP from Moray, questioned the Ministry of Defence on how the F-35 Lightning aircraft complied with specific aviation safety standards. In response, Stuart Andrew, then Parliamentary Under-Secretary of State, stated, “The UK is, however, working with the US to develop an automated Air Collision Avoidance System for the F-35. Prior to this integration, we remain fully confident that the F-35’s advanced situational awareness enables it to operate safely.”

\n

The delayed integration of ACAS raises questions about the continued adherence to this principle and whether the current measures without ACAS are sufficient to ensure the safety of the aircraft and its operators.

The post F-35B air collision avoidance system integration pushed back first appeared on UK Defence Journal.", - "content:encodedSnippet": "A Freedom of Information request has brought to light the delayed implementation of the Air Collision Avoidance System (ACAS) in the F-35B aircraft.\nA document attached to the FOI request, a 2021 Air System Safety Case \u2013 Safety Statement for Lightning, details that the introduction of ACAS, initially set for 2024, has been pushed back to 2028 for Manual ACAS and 2029 for Auto ACAS.\n\u201cF-35 Air Collision Avoidance System (ACAS) was scheduled for introduction into service in 2024. Although ACAS is regarded as a high priority by the UK, the US Services (and therefore the F-35 Programme) regard it as very low priority and it has recently been deferred. Forecast integration dates are now Jan 2028 for Manual ACAS and Jan 2029 for Auto ACAS.\u201d\nThe document also states:\n\u201cI am content that the Air Safety Risks to Life (RtL) associated with the routine operation of Lng are currently managed and mitigated such that they remain at least ALARP and Tolerable.\u201d\nThe principle of \u2018As Low As Reasonably Practicable\u2019 (ALARP) dictates that risks should be managed to the lowest feasible level while remaining below the maximum allowable risk.\nIn a 2019 inquiry, Douglas Ross, Conservative MP from Moray, questioned the Ministry of Defence on how the F-35 Lightning aircraft complied with specific aviation safety standards. In response, Stuart Andrew, then Parliamentary Under-Secretary of State, stated, \u201cThe UK is, however, working with the US to develop an automated Air Collision Avoidance System for the F-35. Prior to this integration, we remain fully confident that the F-35\u2019s advanced situational awareness enables it to operate safely.\u201d\nThe delayed integration of ACAS raises questions about the continued adherence to this principle and whether the current measures without ACAS are sufficient to ensure the safety of the aircraft and its operators.\nThe post F-35B air collision avoidance system integration pushed back first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/f-35b-air-collision-avoidance-system-integration-pushed-back/#comments", - "content": "

The Air Collision Avoidance System for the F-35B was to be introduced in 2024, it has now been pushed back to 2028.

\nThe post F-35B air collision avoidance system integration pushed back first appeared on UK Defence Journal.", - "contentSnippet": "The Air Collision Avoidance System for the F-35B was to be introduced in 2024, it has now been pushed back to 2028.\nF-35B air collision avoidance system integration pushed back first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46914", - "categories": [ - "Air" - ], - "isoDate": "2023-11-24T13:30:49.000Z" - }, - { - "creator": "George Allison", - "title": "Drone video shows status of ferries at Port Glasgow", - "link": "https://ukdefencejournal.org.uk/drone-video-shows-status-of-ferries-at-port-glasgow/", - "pubDate": "Thu, 23 Nov 2023 13:00:33 +0000", - "content:encoded": "

A recent drone video provides an overview of the ongoing construction of two vital ferries at the Ferguson Marine shipyard in Port Glasgow.

\n

The Glen Sannox and Glen Rosa were originally due to be in service in 2018 at a total price of \u00a397m. The cost for completing the Glen Sannox has risen to \u00a3130m and for the Glen Rosa it has increased to \u00a3110m.

\n
\n

I visited Port Glasgow recently to take a look at the progress of MV Glen Sannox and the MV Glen Rosa with my drone. The two ferries, previously plagued by delays, are starting to look the part now. pic.twitter.com/zR1uE3nIAh

\n

— George Allison (@geoallison) November 22, 2023

\n

\n

But today, we’re just looking at their material state. They seem to be looking the part now, at least externally.

\n

MV Glen Sannox

\n

The MV Glen Sannox, moored upon the Clyde, bears the semblance of readiness, with her exterior suggesting near completion. However, her outward readiness belies the extensive internal work that remains, particularly in the wake of a failed safety audit by the Maritime and Coastguard Agency (MCA) in September 2023.

\n

The MCA\u2019s insistence on additional staircases for safety certification precipitated a delay, pushing the sea trials of Glen Sannox to the first quarter of 2024 and casting doubt on her readiness for the forthcoming summer season.

\n

\"\"

\n

Cabinet Secretary Neil Gray has articulated the MCA’s integral role in the early phases of vessel delivery, particularly for those of pioneering design. The process of certification has been one of partnership and refinement, with the MCA’s input leading to vital design modifications that, whilst introducing delays and additional costs, are essential for the vessel\u2019s safety and compliance.

\n

The result of these modifications has been a reduction in passenger capacity from the initial 1,000 to 852, a necessary concession to meet the MCA\u2019s stringent safety standards. In March 2023, it was reported that further delays have pushed the vessel’s entry into service to Autumn of 2023; in August 2023, a further delay to the first quarter of 2024 was announced.

\n

MV Glen Rosa

\n

The sister ship, MV Glen Rosa, shares a similar story. It will also undergo design modifications following the Glen Sannox template to meet MCA standards. Her exterior, while looking close to completion with the main hull and superstructure in place, is yet to be finalised, as indicated by the extensive scaffolding that envelopes her.

\n

The ferry’s external aspects, from the paintwork to the installation of safety equipment, are in the midst of being completed, but her readiness for service is still some way off.

\n

\"\"

\n

Internally, there remains a substantial amount of fit-out and systems installation to be done before she can be deemed ready for operational duties. This includes the intricate fitting of dual W\u00e4rtsil\u00e4 34DF diesel engines, controllable pitch propellers, and the trio of bow thrusters that will eventually enable her to reach service speeds of 14.5 knots.

\n

\"\"

\n

The Glen Rosa, her name chosen by public vote and embroiled in what’s been dubbed the “ferry fiasco,” reflects the complexities and heightened scrutiny of modern shipbuilding.

\n

With her finished tonnage at 1,273 DWT and a length of over 100 meters, she’s set to be a significant vessel within the CalMac fleet, intended to carry 1,000 passengers and 127 cars or 16 HGVs, though currently licensed for 852 passengers.

\n

\"\"

\n

The vessel’s recent milestones includes the completion of design issues involving below-deck escape trunks and the announcement of a slipway launch and naming ceremony set for March 12, 2024. The expected delivery date for Glen Rosa is May 31, 2025, with an estimated cost of \u00a3100 million.

\n

Looking Ahead

\n

The future of Ferguson Marine (Port Glasgow) Ltd is under careful consideration, with plans to refine investment proposals while adhering to subsidy control rules and demonstrating value for money. The Scottish Government say it is committed to a sustainable future for the shipyard, balancing the interests of the workforce, local communities, and the broader Scottish economy.

\n

David Tydeman, CEO of Ferguson Marine in Port Glasgow, expressed his hope to secure substantial work from the Royal Navy’s Type 26 Frigate programme, potentially utilising over half the yard’s capacity. Despite the uncertainties surrounding the future of the shipyard, Tydeman was confident about Royal Navy work supporting the yard during a recent Public Audit Committee meeting.

\n

“We have been planning for some time,” he said, “and I am delighted that we were able to sign a framework agreement with BAE Systems.”

\n

According to Tydeman, the agreement with BAE Systems would help address the workforce surplus at the Ferguson Marine yard as work on two ferries progressively winds down over the next 12 to 18 months. He further added, “Both those yards (BAE and Babcock) have more work than they can do on their sites\u2014as I said, this is a buoyant time in the shipbuilding market\u2014and they need supporting contractors.”

\n

Ferguson Marine started work on the first sections for a Type 26 Frigate earlier this year.

\n

In terms of scale, Tydeman compared the additional, potential future work from the Type 26 programme to ongoing projects at Ferguson. “Hull 802 will be about 3,000 tonnes of weight when she launches down the slipway later this year, and a bow block unit for type 26 ship 4\u2014which we hope to do with BAE\u2014will be about 900 tonnes,” he stated. Elaborating on this, he said “A programme of work with BAE can use more than half the capacity of the yard, and I hope that we can complement that with the CMAL small ferry programme.”

\n

Additionally, he mentioned that the company is actively tracking opportunities in the market. “We have a small commercial team that is tracking the market and we have been putting in proposals to the patrol craft market,” Tydeman disclosed.

\n

There are also ongoing discussions with operators in the wind farm market, providing potential long-term work. “The first of those ships could be built in 2027. That does not fill the immediate gap, but…that is a very significant opportunity for us in the future.”

The post Drone video shows status of ferries at Port Glasgow first appeared on UK Defence Journal.", - "content:encodedSnippet": "A recent drone video provides an overview of the ongoing construction of two vital ferries at the Ferguson Marine shipyard in Port Glasgow.\nThe Glen Sannox and Glen Rosa were originally due to be in service in 2018 at a total price of \u00a397m. The cost for completing the Glen Sannox has risen to \u00a3130m and for the Glen Rosa it has increased to \u00a3110m.\nI visited Port Glasgow recently to take a look at the progress of MV Glen Sannox and the MV Glen Rosa with my drone. The two ferries, previously plagued by delays, are starting to look the part now. pic.twitter.com/zR1uE3nIAh\n\u2014 George Allison (@geoallison) November 22, 2023\n\n\nBut today, we\u2019re just looking at their material state. They seem to be looking the part now, at least externally.\nMV Glen Sannox\nThe MV Glen Sannox, moored upon the Clyde, bears the semblance of readiness, with her exterior suggesting near completion. However, her outward readiness belies the extensive internal work that remains, particularly in the wake of a failed safety audit by the Maritime and Coastguard Agency (MCA) in September 2023.\nThe MCA\u2019s insistence on additional staircases for safety certification precipitated a delay, pushing the sea trials of Glen Sannox to the first quarter of 2024 and casting doubt on her readiness for the forthcoming summer season.\n\nCabinet Secretary Neil Gray has articulated the MCA\u2019s integral role in the early phases of vessel delivery, particularly for those of pioneering design. The process of certification has been one of partnership and refinement, with the MCA\u2019s input leading to vital design modifications that, whilst introducing delays and additional costs, are essential for the vessel\u2019s safety and compliance.\nThe result of these modifications has been a reduction in passenger capacity from the initial 1,000 to 852, a necessary concession to meet the MCA\u2019s stringent safety standards. In March 2023, it was reported that further delays have pushed the vessel\u2019s entry into service to Autumn of 2023; in August 2023, a further delay to the first quarter of 2024 was announced.\nMV Glen Rosa\nThe sister ship, MV Glen Rosa, shares a similar story. It will also undergo design modifications following the Glen Sannox template to meet MCA standards. Her exterior, while looking close to completion with the main hull and superstructure in place, is yet to be finalised, as indicated by the extensive scaffolding that envelopes her.\nThe ferry\u2019s external aspects, from the paintwork to the installation of safety equipment, are in the midst of being completed, but her readiness for service is still some way off.\n\nInternally, there remains a substantial amount of fit-out and systems installation to be done before she can be deemed ready for operational duties. This includes the intricate fitting of dual W\u00e4rtsil\u00e4 34DF diesel engines, controllable pitch propellers, and the trio of bow thrusters that will eventually enable her to reach service speeds of 14.5 knots.\n\nThe Glen Rosa, her name chosen by public vote and embroiled in what\u2019s been dubbed the \u201cferry fiasco,\u201d reflects the complexities and heightened scrutiny of modern shipbuilding.\nWith her finished tonnage at 1,273 DWT and a length of over 100 meters, she\u2019s set to be a significant vessel within the CalMac fleet, intended to carry 1,000 passengers and 127 cars or 16 HGVs, though currently licensed for 852 passengers.\n\nThe vessel\u2019s recent milestones includes the completion of design issues involving below-deck escape trunks and the announcement of a slipway launch and naming ceremony set for March 12, 2024. The expected delivery date for Glen Rosa is May 31, 2025, with an estimated cost of \u00a3100 million.\nLooking Ahead\nThe future of Ferguson Marine (Port Glasgow) Ltd is under careful consideration, with plans to refine investment proposals while adhering to subsidy control rules and demonstrating value for money. The Scottish Government say it is committed to a sustainable future for the shipyard, balancing the interests of the workforce, local communities, and the broader Scottish economy.\nDavid Tydeman, CEO of Ferguson Marine in Port Glasgow, expressed his hope to secure substantial work from the Royal Navy\u2019s Type 26 Frigate programme, potentially utilising over half the yard\u2019s capacity. Despite the uncertainties surrounding the future of the shipyard, Tydeman was confident about Royal Navy work supporting the yard during a recent Public Audit Committee meeting.\n\u201cWe have been planning for some time,\u201d he said, \u201cand I am delighted that we were able to sign a framework agreement with BAE Systems.\u201d\nAccording to Tydeman, the agreement with BAE Systems would help address the workforce surplus at the Ferguson Marine yard as work on two ferries progressively winds down over the next 12 to 18 months. He further added, \u201cBoth those yards (BAE and Babcock) have more work than they can do on their sites\u2014as I said, this is a buoyant time in the shipbuilding market\u2014and they need supporting contractors.\u201d\nFerguson Marine started work on the first sections for a Type 26 Frigate earlier this year.\nIn terms of scale, Tydeman compared the additional, potential future work from the Type 26 programme to ongoing projects at Ferguson. \u201cHull 802 will be about 3,000 tonnes of weight when she launches down the slipway later this year, and a bow block unit for type 26 ship 4\u2014which we hope to do with BAE\u2014will be about 900 tonnes,\u201d he stated. Elaborating on this, he said \u201cA programme of work with BAE can use more than half the capacity of the yard, and I hope that we can complement that with the CMAL small ferry programme.\u201d\nAdditionally, he mentioned that the company is actively tracking opportunities in the market. \u201cWe have a small commercial team that is tracking the market and we have been putting in proposals to the patrol craft market,\u201d Tydeman disclosed.\nThere are also ongoing discussions with operators in the wind farm market, providing potential long-term work. \u201cThe first of those ships could be built in 2027. That does not fill the immediate gap, but\u2026that is a very significant opportunity for us in the future.\u201d\nThe post Drone video shows status of ferries at Port Glasgow first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/drone-video-shows-status-of-ferries-at-port-glasgow/#comments", - "content": "

A recent drone video provides a striking view of the ongoing construction of two vital but troubled ferries at the Ferguson Marine shipyard in Port Glasgow.

\nThe post Drone video shows status of ferries at Port Glasgow first appeared on UK Defence Journal.", - "contentSnippet": "A recent drone video provides a striking view of the ongoing construction of two vital but troubled ferries at the Ferguson Marine shipyard in Port Glasgow.\nDrone video shows status of ferries at Port Glasgow first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46907", - "categories": [ - "Sea" - ], - "isoDate": "2023-11-23T13:00:33.000Z" - }, - { - "creator": "George Allison", - "title": "BAE to equip Australian Hunter class frigates with Mk 45 guns", - "link": "https://ukdefencejournal.org.uk/bae-to-equip-australian-hunter-class-frigates-with-mk-45-guns/", - "pubDate": "Tue, 21 Nov 2023 18:00:58 +0000", - "content:encoded": "

BAE Systems has received a contract to deliver multiple shipsets of the Mk 45 Medium Caliber Gun and automated Ammunition Handling System (AHS) for the Royal Australian Navy\u2019s new Hunter class frigates.

\n

“We are proud to partner with BAE Systems Maritime Australia to deliver the Mk 45 gun system and Ammunition Handling System to the Royal Australian Navy,” said Brent Butcher, vice president and general manager of Weapon Systems at BAE Systems, Inc.

\n

“The highly reliable Mk 45 system maximizes the lethality of the Hunter class frigates, offers the capability to integrate advanced munitions, and supports additional future technology upgrades. With this system fielded on 11 fleets across the globe, it has proven it offers high-reliability.”

\n

The Mk 45 gun system combines the 5-inch, 62-caliber Mk 45 Mod 4A naval gun with a fully automated AHS that continuously supplies the gun with ammunition, in high sea state conditions, without assistance from the crew.

\n

On their website, BAE say that this automated gun system increases Sailor productivity, reduces risk to Sailor safety, and increases the operational capability of the Mk 45 at sea.

\n

Work on the contract will begin in 2023 and finish in 2036. Engineering work will be completed in Minneapolis, Minnesota and production will occur in Louisville, Kentucky.

The post BAE to equip Australian Hunter class frigates with Mk 45 guns first appeared on UK Defence Journal.", - "content:encodedSnippet": "BAE Systems has received a contract to deliver multiple shipsets of the Mk 45 Medium Caliber Gun and automated Ammunition Handling System (AHS) for the Royal Australian Navy\u2019s new Hunter class frigates.\n\u201cWe are proud to partner with BAE Systems Maritime Australia to deliver the Mk 45 gun system and Ammunition Handling System to the Royal Australian Navy,\u201d said Brent Butcher, vice president and general manager of Weapon Systems at BAE Systems, Inc.\n\u201cThe highly reliable Mk 45 system maximizes the lethality of the Hunter class frigates, offers the capability to integrate advanced munitions, and supports additional future technology upgrades. With this system fielded on 11 fleets across the globe, it has proven it offers high-reliability.\u201d\nThe Mk 45 gun system combines the 5-inch, 62-caliber Mk 45 Mod 4A naval gun with a fully automated AHS that continuously supplies the gun with ammunition, in high sea state conditions, without assistance from the crew.\nOn their website, BAE say that this automated gun system increases Sailor productivity, reduces risk to Sailor safety, and increases the operational capability of the Mk 45 at sea.\nWork on the contract will begin in 2023 and finish in 2036. Engineering work will be completed in Minneapolis, Minnesota and production will occur in Louisville, Kentucky.\nThe post BAE to equip Australian Hunter class frigates with Mk 45 guns first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/bae-to-equip-australian-hunter-class-frigates-with-mk-45-guns/#comments", - "content": "

BAE Systems has received a contract to deliver multiple shipsets of the Mk 45 Medium Caliber Gun for the Royal Australian Navy\u2019s new Hunter class frigates.

\nThe post BAE to equip Australian Hunter class frigates with Mk 45 guns first appeared on UK Defence Journal.", - "contentSnippet": "BAE Systems has received a contract to deliver multiple shipsets of the Mk 45 Medium Caliber Gun for the Royal Australian Navy\u2019s new Hunter class frigates.\nBAE to equip Australian Hunter class frigates with Mk 45 guns first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46882", - "categories": [ - "News" - ], - "isoDate": "2023-11-21T18:00:58.000Z" - }, - { - "creator": "George Allison", - "title": "British surveillance aircraft operating near Israel", - "link": "https://ukdefencejournal.org.uk/british-surveillance-aircraft-operating-near-israel/", - "pubDate": "Sun, 15 Oct 2023 15:39:40 +0000", - "content:encoded": "

A British RC-135 \u2018Rivet Joint\u2019, an electronic surveillance aircraft, has conducted a patrol near Israel, the Gaza Strip and Lebanon.

\n

The role of the aircraft is to conduct electronic surveillance and gather intelligence.

\n
\n

A British RC-135 \u2018Rivet Joint\u2019 electronic surveillance aircraft has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon today. Visible to the west of the RC-135 are British Voyager tanker/transport aircraft. pic.twitter.com/Qn2SSQoaF7

\n

— UK Defence Journal (@UKDefJournal) October 15, 2023

\n

\n

The deployment of these aircraft to this area is unusual, although not unprecedented and not surprising, given previous statements of support for Israel from the UK Government.

\n

UK ships and aircraft deploying to waters close to Israel

\n

\n

It should be noted that these flights are not secret, the aircraft themselves are transmitting their location in the knowledge that services like FlightRadar24 will show their location. If it was a secret, I would not know.

\n

What does the RC-135W do?

\n

According to the Royal Air Force website, the RC-135W Rivet Joint is a dedicated electronic surveillance aircraft that can be employed in all theatres on strategic and tactical missions. Its sensors \u2018soak up\u2019 electronic emissions from communications, radar and other systems.

\n

\u201cRC-135W Rivet Joint employs multidiscipline Weapons System Officer (WSO) and Weapons System Operator (WSOp) specialists whose mission is to survey elements of the electromagnetic spectrum in order to derive intelligence for commanders.\u201d

\n

The Royal Air Force say that Rivet Joint has been deployed extensively for Operation Shader and on other operational taskings. It had been formally named Airseeker, but is almost universally known in service as the RC-135W Rivet Joint.

\n

Some general uses of the RC-135W include:

\n
    \n
  • Signal Intelligence (SIGINT): The aircraft collects electronic signals, such as communications, radar, and other systems, to gather intelligence on adversaries’ capabilities and intentions.
  • \n
  • Strategic Deterrence: By conducting visible reconnaissance flights near areas of interest, the UK sends a clear message to potential adversaries that their activities are being closely monitored. This serves as a deterrent, helping to maintain regional stability and prevent conflicts.
  • \n
  • Support to Diplomacy: Intelligence gathered by the RC-135W can play a crucial role in informing diplomatic efforts and shaping foreign policy. By providing accurate and timely information, the aircraft helps decision-makers navigate complex geopolitical situations.
  • \n
\n

The UK operates three RC-135W Rivet Joint aircraft.

The post British surveillance aircraft operating near Israel first appeared on UK Defence Journal.", - "content:encodedSnippet": "A British RC-135 \u2018Rivet Joint\u2019, an electronic surveillance aircraft, has conducted a patrol near Israel, the Gaza Strip and Lebanon.\nThe role of the aircraft is to conduct electronic surveillance and gather intelligence.\nA British RC-135 \u2018Rivet Joint\u2019 electronic surveillance aircraft has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon today. Visible to the west of the RC-135 are British Voyager tanker/transport aircraft. pic.twitter.com/Qn2SSQoaF7\n\u2014 UK Defence Journal (@UKDefJournal) October 15, 2023\n\n\nThe deployment of these aircraft to this area is unusual, although not unprecedented and not surprising, given previous statements of support for Israel from the UK Government.\nUK ships and aircraft deploying to waters close to Israel\n\n\nIt should be noted that these flights are not secret, the aircraft themselves are transmitting their location in the knowledge that services like FlightRadar24 will show their location. If it was a secret, I would not know.\nWhat does the RC-135W do?\nAccording to the Royal Air Force website, the RC-135W Rivet Joint is a dedicated electronic surveillance aircraft that can be employed in all theatres on strategic and tactical missions. Its sensors \u2018soak up\u2019 electronic emissions from communications, radar and other systems.\n\u201cRC-135W Rivet Joint employs multidiscipline Weapons System Officer (WSO) and Weapons System Operator (WSOp) specialists whose mission is to survey elements of the electromagnetic spectrum in order to derive intelligence for commanders.\u201d\nThe Royal Air Force say that Rivet Joint has been deployed extensively for Operation Shader and on other operational taskings. It had been formally named Airseeker, but is almost universally known in service as the RC-135W Rivet Joint.\nSome general uses of the RC-135W include:\nSignal Intelligence (SIGINT): The aircraft collects electronic signals, such as communications, radar, and other systems, to gather intelligence on adversaries\u2019 capabilities and intentions.\nStrategic Deterrence: By conducting visible reconnaissance flights near areas of interest, the UK sends a clear message to potential adversaries that their activities are being closely monitored. This serves as a deterrent, helping to maintain regional stability and prevent conflicts.\nSupport to Diplomacy: Intelligence gathered by the RC-135W can play a crucial role in informing diplomatic efforts and shaping foreign policy. By providing accurate and timely information, the aircraft helps decision-makers navigate complex geopolitical situations.\nThe UK operates three RC-135W Rivet Joint aircraft.\nThe post British surveillance aircraft operating near Israel first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/british-surveillance-aircraft-operating-near-israel/#comments", - "content": "

A British RC-135 \u2018Rivet Joint\u2019, an electronic surveillance aircraft, has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon.

\nThe post British surveillance aircraft operating near Israel first appeared on UK Defence Journal.", - "contentSnippet": "A British RC-135 \u2018Rivet Joint\u2019, an electronic surveillance aircraft, has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon.\nBritish surveillance aircraft operating near Israel first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46536", - "categories": [ - "Air" - ], - "isoDate": "2023-10-15T15:39:40.000Z" - }, - { - "creator": "George Allison", - "title": "The Status of the British Fleet", - "link": "https://ukdefencejournal.org.uk/the-status-of-the-british-fleet/", - "pubDate": "Sun, 15 Oct 2023 06:30:16 +0000", - "content:encoded": "

In this snapshot of the Royal Navy and RFA’s current fleet status, we see the status of individual ships and what they’re up to.

\n

From the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class.

\n

A special word of gratitude goes to the diligent efforts of Open Source Intelligence analyst and renowned UK naval commentator, Britsky (@TBrit90). His detailed work and commitment to transparency in naval affairs have proven invaluable in compiling this report. We deeply appreciate his permission to utilise the information for this article, providing our readers with an insightful glimpse into the state of the Royal Navy and RFA. His contributions to naval discourse continue to enhance public understanding and foster informed discussions.”

\n

Of the Royal Navy and RFA surface fleet, approximately 29.41% of the ships are currently inactive, encompassing vessels undergoing maintenance, refit, and other non-operational statuses. It’s important to note that the article here does not include information on the UK’s nuclear submarines, which form a critical component of the nation’s naval defence strategy. The information can be found in the original data, though.

\n
\n

pic.twitter.com/Jkyk1X8qe4

\n

— Britsky (@TBrit90) October 15, 2023

\n

\n

Anyway, here’s the breakdown.

\n

Queen Elizabeth Class aircraft carriers

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 2
  • \n
  • Currently Active: 2 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Queen Elizabeth: Currently deployed in the North Sea as part of the Carrier Strike Group (CSG).
  • \n
  • HMS Prince of Wales: Deployed to the US, currently undergoing trials.
  • \n
\n

Albion Class landing platform docks

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 2
  • \n
  • Currently Active: 0 (0% of the class)
  • \n
  • Currently Inactive: 2 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Albion: Currently inactive, with its location in Devonport.
  • \n
  • HMS Bulwark: Also located in Devonport and currently marked as inactive. However, it’s worth noting that HMS Bulwark is in the process of reactivation.
  • \n
\n

Type 45 Destroyers

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 6
  • \n
  • Currently Active: 3 (50% of the class)
  • \n
  • Currently Inactive: 3 (50% of the class)
  • \n
\n

Reasons for Inactivity:

\n
    \n
  • Undergoing Refit: 3
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Daring: In refit, currently in Portsmouth.
  • \n
  • HMS Dauntless: Active, deployed to the US for Humanitarian Assistance and Disaster Relief (HADR) operations.
  • \n
  • HMS Diamond: Active, deployed in the North Sea as part of the Carrier Strike Group (CSG).
  • \n
  • HMS Dragon: In refit, currently in Portsmouth.
  • \n
  • HMS Defender: In refit in Portsmouth, with upgrades for the Common Anti-Air Modular Missile (CAMM).
  • \n
  • HMS Duncan: Active, deployed in the Mediterranean as part of the Standing NATO Maritime Group 2 (SNMG2).
  • \n
\n

Type 23 Frigates

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 11
  • \n
  • Currently Active: 5 (45% of the class)
  • \n
  • Currently Inactive: 6 (55% of the class)
  • \n
\n

Reasons for Inactivity:

\n
    \n
  • Undergoing Refit: 4
  • \n
  • Undergoing Maintenance: 2
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Argyll: In refit, currently in Devonport.
  • \n
  • HMS Lancaster: Active, deployed in the Persian Gulf.
  • \n
  • HMS Iron Duke: Active in UK waters.
  • \n
  • HMS Westminster: Inactive, stationed at Devonport.
  • \n
  • HMS Northumberland: Undergoing maintenance at Devonport.
  • \n
  • HMS Richmond: Undergoing maintenance at Devonport.
  • \n
  • HMS Somerset: Undergoing maintenance at Devonport.
  • \n
  • HMS Sutherland: In refit at Devonport.
  • \n
  • HMS Kent: Active in UK waters.
  • \n
  • HMS Portland: Active in UK waters, serving in the TAPS role, primarily monitoring submarine activity around HMNB Clyde.
  • \n
  • HMS St Albans: In refit at Devonport.
  • \n
\n

River Class Offshore Patrol Vessels

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 8
  • \n
  • Currently Active: 8 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Tyne: Active, patrolling UK waters.
  • \n
  • HMS Severn: Active in UK waters, primarily for training purposes.
  • \n
  • HMS Mersey: Active, patrolling UK waters.
  • \n
  • HMS Forth: Deployed in the Atlantic, serving as a Falkland Islands Patrol Vessel (FIPV).
  • \n
  • HMS Medway: Deployed in the Falklands, serving as a Falkland Islands Patrol Vessel (FIPV).
  • \n
  • HMS Trent: Deployed in West Africa, operating from Gibraltar.
  • \n
  • HMS Tamar: Deployed to Australia, with operations in the Pacific region.
  • \n
  • HMS Spey: Deployed in the South China Sea (SCS), operating in the Pacific region.
  • \n
\n

Hunt Class Mine Countermeasures Vessels

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 6
  • \n
  • Currently Active: 3 (50% of the class)
  • \n
  • Currently Inactive: 3 (50% of the class)
  • \n
\n

Reasons for Inactivity:

\n
    \n
  • Undergoing Refit: 2
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Ledbury: In refit, currently in Portsmouth.
  • \n
  • HMS Cattistock: Active, operating in UK waters.
  • \n
  • HMS Brocklesby: In refit, currently in Portsmouth.
  • \n
  • HMS Middleton: Deployed in the Persian Gulf as part of Operation Kipion.
  • \n
  • HMS Chiddingfold: Deployed in the Persian Gulf as part of Operation Kipion.
  • \n
  • HMS Hurworth: Active, operating in UK waters.
  • \n
\n

Sandown Class Mine Countermeasures Vessels

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 2
  • \n
  • Currently Active: 2 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Penzance: Active, operating in UK waters from the Clyde.
  • \n
  • HMS Bangor: Deployed in the Persian Gulf as part of Operation Kipion.
  • \n
\n

Archer Class Patrol Boats

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 16
  • \n
  • Currently Active: 15 (93.75% of the class)
  • \n
  • Currently Inactive: 1 (6.25% of the class)
  • \n
\n

Reasons for Inactivity:

\n
    \n
  • Undergoing Maintenance: 1
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Archer: Undergoing maintenance in South Shields.
  • \n
  • HMS Biter: Active, operating from Liverpool.
  • \n
  • HMS Smiter: Active, operating from Portsmouth.
  • \n
  • HMS Pursuer: Active, operating from Glasgow.
  • \n
  • HMS Blazer: Active, operating from Portsmouth.
  • \n
  • HMS Dasher: Active, operating from Portsmouth.
  • \n
  • HMS Puncher: Active, operating from Portsmouth.
  • \n
  • HMS Charger: Active, operating from Liverpool.
  • \n
  • HMS Ranger: Active, operating from Portsmouth.
  • \n
  • HMS Trumpeter: Active, operating from Ipswich.
  • \n
  • HMS Express: Active, operating from Cardiff.
  • \n
  • HMS Example: Active, operating from Gateshead.
  • \n
  • HMS Explorer: Active, operating from Hull.
  • \n
  • HMS Exploit: Active, operating from Portsmouth.
  • \n
  • HMS Tracker: Active, stationed at Clyde.
  • \n
  • HMS Raider: Active, stationed at Clyde.
  • \n
\n

Cutlass Class Patrol Boats

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 2
  • \n
  • Currently Active: 2 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Cutlass: Active, stationed and operating in Gibraltar.
  • \n
  • HMS Dagger: Active, stationed and operating in Gibraltar.
  • \n
\n

Royal Navy Survey Vessels

\n

Type & Role: The Royal Navy’s survey vessels are specialised ships of various classes designed for the crucial task of hydrographic and oceanographic surveying.

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 3
  • \n
  • Currently Active: 3 (100% of the type)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Scott: An ocean survey vessel, currently active and operating in UK waters.
  • \n
  • HMS Protector: A polar research and survey vessel, currently active and operating in UK waters.
  • \n
  • HMS Magpie: A hydrographic survey vessel, currently active and operating in UK waters.
  • \n
\n

Royal Fleet Auxiliary (RFA)

\n

Tide Class fleet replenishment tankers

\n
    \n
  • Active: 2 (RFA Tidespring, RFA Tideforce)
  • \n
  • Inactive: 2 (RFA Tiderace, RFA Tidesurge under refit)
  • \n
\n

Wave Class fleet replenishment tanks

\n
    \n
  • Active: 0
  • \n
  • Inactive:
  • \n
  • \u00a02 (RFA Wave Knight, RFA Wave Ruler)
  • \n
\n

Fort Class stores ship

\n
    \n
  • Active: 0
  • \n
  • Inactive: 1 (RFA Fort Victoria)
  • \n
\n

Bay Class landing ship docks

\n
    \n
  • Active: 3 (RFA Lyme Bay, RFA Mounts Bay, RFA Cardigan Bay)
  • \n
\n

Other major vessels:

\n
    \n
  • RFA Argus: Active supporting the Littoral Response Group (South) (LRG(S)).
  • \n
  • RFA Proteus: Currently active in the UK.
  • \n
  • RFA Stirling Castle: Active in the UK.
  • \n
The post The Status of the British Fleet first appeared on UK Defence Journal.", - "content:encodedSnippet": "In this snapshot of the Royal Navy and RFA\u2019s current fleet status, we see the status of individual ships and what they\u2019re up to.\nFrom the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class.\nA special word of gratitude goes to the diligent efforts of Open Source Intelligence analyst and renowned UK naval commentator, Britsky (@TBrit90). His detailed work and commitment to transparency in naval affairs have proven invaluable in compiling this report. We deeply appreciate his permission to utilise the information for this article, providing our readers with an insightful glimpse into the state of the Royal Navy and RFA. His contributions to naval discourse continue to enhance public understanding and foster informed discussions.\u201d\nOf the Royal Navy and RFA surface fleet, approximately 29.41% of the ships are currently inactive, encompassing vessels undergoing maintenance, refit, and other non-operational statuses. It\u2019s important to note that the article here does not include information on the UK\u2019s nuclear submarines, which form a critical component of the nation\u2019s naval defence strategy. The information can be found in the original data, though.\npic.twitter.com/Jkyk1X8qe4\n\u2014 Britsky (@TBrit90) October 15, 2023\n\n\nAnyway, here\u2019s the breakdown.\nQueen Elizabeth Class aircraft carriers\nComposition & Operational Readiness:\nTotal Number: 2\nCurrently Active: 2 (100% of the class)\nStatus of Individual Ships:\nHMS Queen Elizabeth: Currently deployed in the North Sea as part of the Carrier Strike Group (CSG).\nHMS Prince of Wales: Deployed to the US, currently undergoing trials.\nAlbion Class landing platform docks\nComposition & Operational Readiness:\nTotal Number: 2\nCurrently Active: 0 (0% of the class)\nCurrently Inactive: 2 (100% of the class)\nStatus of Individual Ships:\nHMS Albion: Currently inactive, with its location in Devonport.\nHMS Bulwark: Also located in Devonport and currently marked as inactive. However, it\u2019s worth noting that HMS Bulwark is in the process of reactivation.\nType 45 Destroyers\nComposition & Operational Readiness:\nTotal Number: 6\nCurrently Active: 3 (50% of the class)\nCurrently Inactive: 3 (50% of the class)\nReasons for Inactivity:\nUndergoing Refit: 3\nStatus of Individual Ships:\nHMS Daring: In refit, currently in Portsmouth.\nHMS Dauntless: Active, deployed to the US for Humanitarian Assistance and Disaster Relief (HADR) operations.\nHMS Diamond: Active, deployed in the North Sea as part of the Carrier Strike Group (CSG).\nHMS Dragon: In refit, currently in Portsmouth.\nHMS Defender: In refit in Portsmouth, with upgrades for the Common Anti-Air Modular Missile (CAMM).\nHMS Duncan: Active, deployed in the Mediterranean as part of the Standing NATO Maritime Group 2 (SNMG2).\nType 23 Frigates\nComposition & Operational Readiness:\nTotal Number: 11\nCurrently Active: 5 (45% of the class)\nCurrently Inactive: 6 (55% of the class)\nReasons for Inactivity:\nUndergoing Refit: 4\nUndergoing Maintenance: 2\nStatus of Individual Ships:\nHMS Argyll: In refit, currently in Devonport.\nHMS Lancaster: Active, deployed in the Persian Gulf.\nHMS Iron Duke: Active in UK waters.\nHMS Westminster: Inactive, stationed at Devonport.\nHMS Northumberland: Undergoing maintenance at Devonport.\nHMS Richmond: Undergoing maintenance at Devonport.\nHMS Somerset: Undergoing maintenance at Devonport.\nHMS Sutherland: In refit at Devonport.\nHMS Kent: Active in UK waters.\nHMS Portland: Active in UK waters, serving in the TAPS role, primarily monitoring submarine activity around HMNB Clyde.\nHMS St Albans: In refit at Devonport.\nRiver Class Offshore Patrol Vessels\nComposition & Operational Readiness:\nTotal Number: 8\nCurrently Active: 8 (100% of the class)\nStatus of Individual Ships:\nHMS Tyne: Active, patrolling UK waters.\nHMS Severn: Active in UK waters, primarily for training purposes.\nHMS Mersey: Active, patrolling UK waters.\nHMS Forth: Deployed in the Atlantic, serving as a Falkland Islands Patrol Vessel (FIPV).\nHMS Medway: Deployed in the Falklands, serving as a Falkland Islands Patrol Vessel (FIPV).\nHMS Trent: Deployed in West Africa, operating from Gibraltar.\nHMS Tamar: Deployed to Australia, with operations in the Pacific region.\nHMS Spey: Deployed in the South China Sea (SCS), operating in the Pacific region.\nHunt Class Mine Countermeasures Vessels\nComposition & Operational Readiness:\nTotal Number: 6\nCurrently Active: 3 (50% of the class)\nCurrently Inactive: 3 (50% of the class)\nReasons for Inactivity:\nUndergoing Refit: 2\nStatus of Individual Ships:\nHMS Ledbury: In refit, currently in Portsmouth.\nHMS Cattistock: Active, operating in UK waters.\nHMS Brocklesby: In refit, currently in Portsmouth.\nHMS Middleton: Deployed in the Persian Gulf as part of Operation Kipion.\nHMS Chiddingfold: Deployed in the Persian Gulf as part of Operation Kipion.\nHMS Hurworth: Active, operating in UK waters.\nSandown Class Mine Countermeasures Vessels\nComposition & Operational Readiness:\nTotal Number: 2\nCurrently Active: 2 (100% of the class)\nStatus of Individual Ships:\nHMS Penzance: Active, operating in UK waters from the Clyde.\nHMS Bangor: Deployed in the Persian Gulf as part of Operation Kipion.\nArcher Class Patrol Boats\nComposition & Operational Readiness:\nTotal Number: 16\nCurrently Active: 15 (93.75% of the class)\nCurrently Inactive: 1 (6.25% of the class)\nReasons for Inactivity:\nUndergoing Maintenance: 1\nStatus of Individual Ships:\nHMS Archer: Undergoing maintenance in South Shields.\nHMS Biter: Active, operating from Liverpool.\nHMS Smiter: Active, operating from Portsmouth.\nHMS Pursuer: Active, operating from Glasgow.\nHMS Blazer: Active, operating from Portsmouth.\nHMS Dasher: Active, operating from Portsmouth.\nHMS Puncher: Active, operating from Portsmouth.\nHMS Charger: Active, operating from Liverpool.\nHMS Ranger: Active, operating from Portsmouth.\nHMS Trumpeter: Active, operating from Ipswich.\nHMS Express: Active, operating from Cardiff.\nHMS Example: Active, operating from Gateshead.\nHMS Explorer: Active, operating from Hull.\nHMS Exploit: Active, operating from Portsmouth.\nHMS Tracker: Active, stationed at Clyde.\nHMS Raider: Active, stationed at Clyde.\nCutlass Class Patrol Boats\nComposition & Operational Readiness:\nTotal Number: 2\nCurrently Active: 2 (100% of the class)\nStatus of Individual Ships:\nHMS Cutlass: Active, stationed and operating in Gibraltar.\nHMS Dagger: Active, stationed and operating in Gibraltar.\nRoyal Navy Survey Vessels\nType & Role: The Royal Navy\u2019s survey vessels are specialised ships of various classes designed for the crucial task of hydrographic and oceanographic surveying.\nComposition & Operational Readiness:\nTotal Number: 3\nCurrently Active: 3 (100% of the type)\nStatus of Individual Ships:\nHMS Scott: An ocean survey vessel, currently active and operating in UK waters.\nHMS Protector: A polar research and survey vessel, currently active and operating in UK waters.\nHMS Magpie: A hydrographic survey vessel, currently active and operating in UK waters.\nRoyal Fleet Auxiliary (RFA)\nTide Class fleet replenishment tankers\nActive: 2 (RFA Tidespring, RFA Tideforce)\nInactive: 2 (RFA Tiderace, RFA Tidesurge under refit)\nWave Class fleet replenishment tanks\nActive: 0\nInactive:\n\u00a02 (RFA Wave Knight, RFA Wave Ruler)\nFort Class stores ship\nActive: 0\nInactive: 1 (RFA Fort Victoria)\nBay Class landing ship docks\nActive: 3 (RFA Lyme Bay, RFA Mounts Bay, RFA Cardigan Bay)\nOther major vessels:\nRFA Argus: Active supporting the Littoral Response Group (South) (LRG(S)).\nRFA Proteus: Currently active in the UK.\nRFA Stirling Castle: Active in the UK.\nThe post The Status of the British Fleet first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/the-status-of-the-british-fleet/#comments", - "content": "

From the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class. (w/t Britsky @TBrit90)

\nThe post The Status of the British Fleet first appeared on UK Defence Journal.", - "contentSnippet": "From the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class. (w/t Britsky @TBrit90)\nThe Status of the British Fleet first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46460", - "categories": [ - "Sea" - ], - "isoDate": "2023-10-15T06:30:16.000Z" - }, - { - "creator": "George Allison", - "title": "Only two Irish Naval vessels operational", - "link": "https://ukdefencejournal.org.uk/only-two-irish-naval-vessels-operational/", - "pubDate": "Sun, 15 Oct 2023 05:13:31 +0000", - "content:encoded": "

Only two of the eight vessels in the Irish Naval Service are currently available for offshore patrols, raising concerns about Ireland’s maritime security.

\n

A third ship is on standby. Cathal Berry, an independent TD (MP) and former Irish Army Ranger, was quoted as saying, “there are ‘huge implications’ for Ireland’s security”, and mentioned that the present scenario was “completely abnormal and would not be normal in any other EU country”.

\n

The Defence Forces attribute the lack of available ships to the ongoing loss of experienced personnel and difficulties in recruiting new staff.

\n

According to a news report, Berry opined that the recruitment challenge was primarily about inadequate compensation, saying that sailors and other military personnel have “weak employment rights”. He emphasised that this was not a shortcoming of the Defence Forces themselves but rather an issue that required ministerial intervention.

\n

Berry further highlighted that such limitations could compromise anti-smuggling operations and search and rescue missions, putting maritime defence and security in jeopardy.

\n

The Irish Department of Defence revealed to RT\u00c9 that the Naval Service was “adopting a three ship posture”. A spokesperson clarified, “This strategic decision has been taken in order to streamline operations, bolster existing capabilities, and ensure optimal resource allocation in the Naval Service.”

\n

The spokesperson also touched upon the recruitment challenges, stating that “The challenges around recruitment and retention within the Defence Forces” have a notable impact on “specialist positions, as the current competitive jobs market is proving challenging for all sectors”.

\n

Two ships of the R\u00f3is\u00edn class have been placed in reserve, and two new inland patrol vessels acquired from the Royal New Zealand Navy are yet to be commissioned.

The post Only two Irish Naval vessels operational first appeared on UK Defence Journal.", - "content:encodedSnippet": "Only two of the eight vessels in the Irish Naval Service are currently available for offshore patrols, raising concerns about Ireland\u2019s maritime security.\nA third ship is on standby. Cathal Berry, an independent TD (MP) and former Irish Army Ranger, was quoted as saying, \u201cthere are \u2018huge implications\u2019 for Ireland\u2019s security\u201d, and mentioned that the present scenario was \u201ccompletely abnormal and would not be normal in any other EU country\u201d.\nThe Defence Forces attribute the lack of available ships to the ongoing loss of experienced personnel and difficulties in recruiting new staff.\nAccording to a news report, Berry opined that the recruitment challenge was primarily about inadequate compensation, saying that sailors and other military personnel have \u201cweak employment rights\u201d. He emphasised that this was not a shortcoming of the Defence Forces themselves but rather an issue that required ministerial intervention.\nBerry further highlighted that such limitations could compromise anti-smuggling operations and search and rescue missions, putting maritime defence and security in jeopardy.\nThe Irish Department of Defence revealed to RT\u00c9 that the Naval Service was \u201cadopting a three ship posture\u201d. A spokesperson clarified, \u201cThis strategic decision has been taken in order to streamline operations, bolster existing capabilities, and ensure optimal resource allocation in the Naval Service.\u201d\nThe spokesperson also touched upon the recruitment challenges, stating that \u201cThe challenges around recruitment and retention within the Defence Forces\u201d have a notable impact on \u201cspecialist positions, as the current competitive jobs market is proving challenging for all sectors\u201d.\nTwo ships of the R\u00f3is\u00edn class have been placed in reserve, and two new inland patrol vessels acquired from the Royal New Zealand Navy are yet to be commissioned.\nThe post Only two Irish Naval vessels operational first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/only-two-irish-naval-vessels-operational/#comments", - "content": "

Only two of the eight vessels in the Irish Naval Service are currently available for patrols, raising concerns about Ireland's maritime security.

\nThe post Only two Irish Naval vessels operational first appeared on UK Defence Journal.", - "contentSnippet": "Only two of the eight vessels in the Irish Naval Service are currently available for patrols, raising concerns about Ireland's maritime security.\nOnly two Irish Naval vessels operational first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46533", - "categories": [ - "Sea" - ], - "isoDate": "2023-10-15T05:13:31.000Z" - }, - { - "creator": "George Allison", - "title": "F-35 jets join HMS Prince of Wales for trials", - "link": "https://ukdefencejournal.org.uk/f-35-jets-join-hms-prince-of-wales-for-trials/", - "pubDate": "Sat, 14 Oct 2023 08:00:11 +0000", - "content:encoded": "

Specially-modified F-35B Lightning stealth fighters have joined HMS Prince of Wales to begin pushing the boundaries of carrier aviation, say the Royal Navy.

\n

According to a news release, test pilots from the Naval Air Warfare Center Aircraft Division (NAWCAD) Air Test and Evaluation Squadron Two Three (VX-23), Naval Air Station Patuxent River (NAS Pax River), Maryland, joined the carrier off the Eastern Seaboard of the US for the trials, known as Developmental Test phase 3 (DT-3).

\n

“HMS Prince of Wales will chase bad weather and heavy seas while the jets themselves will take-off and land with various weapons and fuel loads, experiment returning from \u2018missions\u2019 still carrying missiles/bombs \u2013 rather than ditching them in the ocean \u2013 and practise landing by rolling to a stop on the flight deck rather than touching down vertically.

\n

The Portsmouth-based aircraft carrier sailed from Norfolk Naval Station, the world\u2019s largest naval base, having embarked the equipment and personnel \u2013 a 200-strong test team from the Pax River F-35 Integrated Test Force (ITF) specifically for the trials.”

\n

Watching from the bridge, Captain Richard Hewitt, HMS Prince of Wales\u2019 Commanding Officer, said:

\n

\u201cThis is why we are here. Over the next few weeks we will work together with the F-35 programme to increase the capability of the world\u2019s most advanced fifth-generation stealth fighter alongside the UK\u2019s fifth-generation aircraft carrier.

\n

During this phase of our deployment we will see the jet develop advanced landing and take-off techniques, allowing it to recover heavier, turn around faster, and launch with more weapons.”

\n

You can read more here.

The post F-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", - "content:encodedSnippet": "Specially-modified F-35B Lightning stealth fighters have joined HMS Prince of Wales to begin pushing the boundaries of carrier aviation, say the Royal Navy.\nAccording to a news release, test pilots from the Naval Air Warfare Center Aircraft Division (NAWCAD) Air Test and Evaluation Squadron Two Three (VX-23), Naval Air Station Patuxent River (NAS Pax River), Maryland, joined the carrier off the Eastern Seaboard of the US for the trials, known as Developmental Test phase 3 (DT-3).\n\u201cHMS Prince of Wales will chase bad weather and heavy seas while the jets themselves will take-off and land with various weapons and fuel loads, experiment returning from \u2018missions\u2019 still carrying missiles/bombs \u2013 rather than ditching them in the ocean \u2013 and practise landing by rolling to a stop on the flight deck rather than touching down vertically.\nThe Portsmouth-based aircraft carrier sailed from Norfolk Naval Station, the world\u2019s largest naval base, having embarked the equipment and personnel \u2013 a 200-strong test team from the Pax River F-35 Integrated Test Force (ITF) specifically for the trials.\u201d\nWatching from the bridge, Captain Richard Hewitt, HMS Prince of Wales\u2019 Commanding Officer, said:\n\u201cThis is why we are here. Over the next few weeks we will work together with the F-35 programme to increase the capability of the world\u2019s most advanced fifth-generation stealth fighter alongside the UK\u2019s fifth-generation aircraft carrier.\nDuring this phase of our deployment we will see the jet develop advanced landing and take-off techniques, allowing it to recover heavier, turn around faster, and launch with more weapons.\u201d\nYou can read more here.\nThe post F-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/f-35-jets-join-hms-prince-of-wales-for-trials/#comments", - "content": "

Test pilots joined the carrier off the Eastern Seaboard of the U.S. for Developmental Test phase 3 (DT-3).

\nThe post F-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", - "contentSnippet": "Test pilots joined the carrier off the Eastern Seaboard of the U.S. for Developmental Test phase 3 (DT-3).\nF-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46526", - "categories": [ - "Sea" - ], - "isoDate": "2023-10-14T08:00:11.000Z" - }, - { - "creator": "George Allison", - "title": "UK funding boosts galaxy mapping", - "link": "https://ukdefencejournal.org.uk/uk-funding-boosts-galaxy-mapping/", - "pubDate": "Sat, 14 Oct 2023 06:00:43 +0000", - "content:encoded": "

UK funding has been pivotal in advancing the mission to map the Galaxy, reveals a report published today, along with the newest data from the Gaia mission.

\n

Commissioned by the UK Space Agency, space strategy consultancy know.space assessed the influence of UK’s funding on the European Space Agency\u2019s (ESA) Global Astrometric Interferometer for Astrophysics (Gaia) mission.

\n

Since its launch in 2013, Gaia has been charting a 3D map of up to 2.5 billion stars, exoplanets, and other celestial bodies. The objective is to create the “largest and most precise 3D map of the Galaxy ever made.”

\n

The study disclosed the achievements of Gaia since 2014:

\n
    \n
  • Gaia publications have received over 200,000 citations.
  • \n
  • Papers with UK contribution make up 46% of total citations while representing 31% of publications.
  • \n
  • UK-authored papers hold a 15% share of total citations, representing only 10% of publications.
  • \n
  • On average, UK-authored papers have 35 citations, in contrast to 23 for non-UK involved Gaia papers.
  • \n
\n

A groundbreaking collaboration was also highlighted in the report. By partnering with the Imaging and Molecular Annotation of Xenografts and Tumors laboratory at the Cancer Research UK Cambridge Institute, the UK’s Gaia team has applied star map analysis techniques to cancer research. This unique method aspires to produce the “world\u2019s first virtual reality cancer map,” potentially revolutionizing cancer diagnosis and treatment.

\n

Will Lecky, Director at know.space, commented, \u201cThere can be little doubt that Gaia is a scientific success story… The impact is also set to continue for years and decades to come.\u201d

\n

You can read more here.

The post UK funding boosts galaxy mapping first appeared on UK Defence Journal.", - "content:encodedSnippet": "UK funding has been pivotal in advancing the mission to map the Galaxy, reveals a report published today, along with the newest data from the Gaia mission.\nCommissioned by the UK Space Agency, space strategy consultancy know.space assessed the influence of UK\u2019s funding on the European Space Agency\u2019s (ESA) Global Astrometric Interferometer for Astrophysics (Gaia) mission.\nSince its launch in 2013, Gaia has been charting a 3D map of up to 2.5 billion stars, exoplanets, and other celestial bodies. The objective is to create the \u201clargest and most precise 3D map of the Galaxy ever made.\u201d\nThe study disclosed the achievements of Gaia since 2014:\nGaia publications have received over 200,000 citations.\nPapers with UK contribution make up 46% of total citations while representing 31% of publications.\nUK-authored papers hold a 15% share of total citations, representing only 10% of publications.\nOn average, UK-authored papers have 35 citations, in contrast to 23 for non-UK involved Gaia papers.\nA groundbreaking collaboration was also highlighted in the report. By partnering with the Imaging and Molecular Annotation of Xenografts and Tumors laboratory at the Cancer Research UK Cambridge Institute, the UK\u2019s Gaia team has applied star map analysis techniques to cancer research. This unique method aspires to produce the \u201cworld\u2019s first virtual reality cancer map,\u201d potentially revolutionizing cancer diagnosis and treatment.\nWill Lecky, Director at know.space, commented, \u201cThere can be little doubt that Gaia is a scientific success story\u2026 The impact is also set to continue for years and decades to come.\u201d\nYou can read more here.\nThe post UK funding boosts galaxy mapping first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/uk-funding-boosts-galaxy-mapping/#comments", - "content": "

UK funding has been pivotal in advancing the mission to map the Galaxy reveals a report published today.

\nThe post UK funding boosts galaxy mapping first appeared on UK Defence Journal.", - "contentSnippet": "UK funding has been pivotal in advancing the mission to map the Galaxy reveals a report published today.\nUK funding boosts galaxy mapping first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46490", - "categories": [ - "Space" - ], - "isoDate": "2023-10-14T06:00:43.000Z" - }, - { - "creator": "George Allison", - "title": "Over 20,000 British troops to be deployed in Northern Europe", - "link": "https://ukdefencejournal.org.uk/over-20000-british-troops-to-be-deployed-in-northern-europe/", - "pubDate": "Sat, 14 Oct 2023 05:13:49 +0000", - "content:encoded": "

The UK is stepping up its military presence in Northern Europe Prime Minister Rishi Sunak has announced.

\n

More than 20,000 British troops will be deployed to the region next year.

\n

Meeting northern European leaders today on the strategically important island of Gotland to discuss the challenges facing the region, as well as the situation in Israel, the Prime Minister warned that Putin\u2019s failures in Ukraine were emboldening Russia\u2019s irresponsible behaviour in other parts of Europe.

\n

According to the Ministry of Defence here, he told leaders that while Putin had lost significant ground in Ukraine since he launched his barbaric invasion, allies and partners should not be lulled into a false sense of security.

\n

“The Kremlin was reinvesting in military capability and turning to a diminishing number of malevolent and marginalised partners to try and rebuild its strength and undermine global stability. His warning came after damage was detected earlier this week to two pipelines between Estonia and Finland, and HMS Queen Elizabeth was forced to launch fast jets from her deck in the Arctic last week to escort Russian Maritime Patrol Aircraft that flew close to the Carrier Strike Group operating in the region.\u00a0

\n

JEF leaders discussed today how they can address Russia\u2019s sabotaging behaviour in the region, both through stronger defence collaboration and increasing industrial cooperation. The Prime Minister outlined how accelerating defence industrial cooperation within Europe and across the Atlantic was vital to ensuring nations maintain a technological advantage over Russia and protect partners from Russian attacks for generations to come.\u00a0That acceleration will include sending more than 20,000 soldiers, sailors, marines and air men and women to the region next year, alongside 8 Royal Navy ships, 25 fast jets and an aviation task force of Apache, Chinook and Wildcat helicopters. They will take part in large-scale, multi-country exercises, as well as carrying out air policing and cold weather training.”

\n

Prime Minister Rishi Sunak said:

\n

“This week, we have seen yet again that our security cannot be taken for granted. It is vital that we stand united against those with malign intent. As the international order continues to be challenged by desperate dictators, rogue states, and terrorist organisations \u2013 like Hamas – we must stand shoulder-to-shoulder with our international friends and partners to defend our values, security and prosperity.\u00a0

\n

Northern Europe is vital to our national security, which is why it\u2019s more important than ever that we work with our Joint Expeditionary Force neighbours to protect our backyard and deter damaging hybrid threats.”

\n

The news release also states that the UK\u2019s Carrier Strike Group is already in the region for its autumn deployment, underlining the UK\u2019s commitment to the area. The group is led by flagship HMS Queen Elizabeth and accompanied by five British ships, F35 Lightning II stealth fighter jets and Wildcat helicopters. The carrier group will return early next year to lead the UK\u2019s contribution to the first phase of NATO\u2019s most ambitious military drill since the Cold War, Exercise Steadfast Defender.

\n

The operation will span almost six months and see 16,000 UK soldiers deploy to Estonia and Norway. You can read more here.

The post Over 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", - "content:encodedSnippet": "The UK is stepping up its military presence in Northern Europe Prime Minister Rishi Sunak has announced.\nMore than 20,000 British troops will be deployed to the region next year.\nMeeting northern European leaders today on the strategically important island of Gotland to discuss the challenges facing the region, as well as the situation in Israel, the Prime Minister warned that Putin\u2019s failures in Ukraine were emboldening Russia\u2019s irresponsible behaviour in other parts of Europe.\nAccording to the Ministry of Defence here, he told leaders that while Putin had lost significant ground in Ukraine since he launched his barbaric invasion, allies and partners should not be lulled into a false sense of security.\n\u201cThe Kremlin was reinvesting in military capability and turning to a diminishing number of malevolent and marginalised partners to try and rebuild its strength and undermine global stability. His warning came after damage was detected earlier this week to two pipelines between Estonia and Finland, and HMS Queen Elizabeth was forced to launch fast jets from her deck in the Arctic last week to escort Russian Maritime Patrol Aircraft that flew close to the Carrier Strike Group operating in the region.\u00a0\nJEF leaders discussed today how they can address Russia\u2019s sabotaging behaviour in the region, both through stronger defence collaboration and increasing industrial cooperation. The Prime Minister outlined how accelerating defence industrial cooperation within Europe and across the Atlantic was vital to ensuring nations maintain a technological advantage over Russia and protect partners from Russian attacks for generations to come.\u00a0That acceleration will include sending more than 20,000 soldiers, sailors, marines and air men and women to the region next year, alongside 8 Royal Navy ships, 25 fast jets and an aviation task force of Apache, Chinook and Wildcat helicopters. They will take part in large-scale, multi-country exercises, as well as carrying out air policing and cold weather training.\u201d\nPrime Minister Rishi Sunak said:\n\u201cThis week, we have seen yet again that our security cannot be taken for granted. It is vital that we stand united against those with malign intent. As the international order continues to be challenged by desperate dictators, rogue states, and terrorist organisations \u2013 like Hamas \u2013 we must stand shoulder-to-shoulder with our international friends and partners to defend our values, security and prosperity.\u00a0\nNorthern Europe is vital to our national security, which is why it\u2019s more important than ever that we work with our Joint Expeditionary Force neighbours to protect our backyard and deter damaging hybrid threats.\u201d\nThe news release also states that the UK\u2019s Carrier Strike Group is already in the region for its autumn deployment, underlining the UK\u2019s commitment to the area. The group is led by flagship HMS Queen Elizabeth and accompanied by five British ships, F35 Lightning II stealth fighter jets and Wildcat helicopters. The carrier group will return early next year to lead the UK\u2019s contribution to the first phase of NATO\u2019s most ambitious military drill since the Cold War, Exercise Steadfast Defender.\nThe operation will span almost six months and see 16,000 UK soldiers deploy to Estonia and Norway. You can read more here.\nThe post Over 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/over-20000-british-troops-to-be-deployed-in-northern-europe/#comments", - "content": "

Britain will deploy 20,000 troops, eight Royal Navy ships, 25 combat jets and an aviation task force of Apache, Chinook and Wildcat helicopters.

\nThe post Over 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", - "contentSnippet": "Britain will deploy 20,000 troops, eight Royal Navy ships, 25 combat jets and an aviation task force of Apache, Chinook and Wildcat helicopters.\nOver 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46524", - "categories": [ - "Land" - ], - "isoDate": "2023-10-14T05:13:49.000Z" - }, - { - "creator": "George Allison", - "title": "Norwegian SAR helicopter lands on British aircraft carrier", - "link": "https://ukdefencejournal.org.uk/norwegian-sar-helicopter-lands-on-british-aircraft-carrier/", - "pubDate": "Fri, 13 Oct 2023 14:00:40 +0000", - "content:encoded": "

A Norwegian SAR AW101 Helicopter from Bodolanded has landed onboard British aircraft carrier HMS Queen Elizabeth.

\n

It is understood that the landing was planned “to prove deck currency, meet the Battlestaff and discuss future collaborations with the Norwegian Air Operations Centre”.

\n
\n

Norwegian SAR AW101 Helicopter from Bodo \"\ud83c\uddf3\ud83c\uddf4\" landed on @HMSQNLS to prove deck currency, meet the Battlestaff and discuss future collaborations with the Norwegian Air Operations Centre (NAOC) @Forsvaret_no. #UKCSG23 pic.twitter.com/5Z7lfOdVex

\n

— UK Carrier Strike Group (@COMUKCSG) October 11, 2023

\n

\n
\n

What is HMS Queen Elizabeth and her Carrier Strike Group doing?

\n

The Royal Navy say that the aircraft carrier, crewed by up to 900 sailors, with her F-35 Lightning II stealth fighters and Merlin helicopters, is leading a mixed group of warships from various nations in the waters of northern Europe.

\n
Defence Secretary Grant Shapps said:
\n

\u201cThe UK leadership of this international strike group shows the strength of our commitment to working with Allies to promote security in Europe and demonstrate our resolve against any threat from potential adversaries.

\n

With both HMS Queen Elizabeth and HMS Prince of Wales deployed simultaneously, the Royal Navy sends a strong message that the UK\u2019s capability for carrier operations is among the strongest in the world.\u201d

\n

The first phase saw the carrier\u2019s deployment saw F35 fighter jets taking part in Exercise Cobra Warrior, the RAF\u2019s largest bi-annual exercise, including aircraft from the Australia, Canada, Germany, Italy, Norway, and the UK taking part in joint exercises.

\n

The 18-day exercise involved RAF Typhoon and F35 jets, A400M and C17 transport aircraft, and Voyager air tankers, developing interoperability alongside allied aircraft and practicing integration between fourth and fifth generation fighter aircraft across air, sea, and land.

\n
Commodore James Blackmore, Commander of the Carrier Strike Group, said:
\n

\u201cIt is with much eagerness that the UK Carrier Strike Group is now assembling for deployed operations \u2013 the first time the UK CSG will be under my command. This autumn\u2019s deployment showcases the UK\u2019s capability to operate at range from the UK and demonstrates our continued commitment to North Atlantic security.

\n

The Carrier Strike Group is an agile and highly capable force and we are excited to be heading to the North Sea and North Atlantic along with our International Partner Nations to reinforce security across the region.\u201d

\n
The post Norwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", - "content:encodedSnippet": "A Norwegian SAR AW101 Helicopter from Bodolanded has landed onboard British aircraft carrier HMS Queen Elizabeth.\nIt is understood that the landing was planned \u201cto prove deck currency, meet the Battlestaff and discuss future collaborations with the Norwegian Air Operations Centre\u201d.\nNorwegian SAR AW101 Helicopter from Bodo landed on @HMSQNLS to prove deck currency, meet the Battlestaff and discuss future collaborations with the Norwegian Air Operations Centre (NAOC) @Forsvaret_no. #UKCSG23 pic.twitter.com/5Z7lfOdVex\n\u2014 UK Carrier Strike Group (@COMUKCSG) October 11, 2023\n\n\nWhat is HMS Queen Elizabeth and her Carrier Strike Group doing?\nThe Royal Navy say that the aircraft carrier, crewed by up to 900 sailors, with her F-35 Lightning II stealth fighters and Merlin helicopters, is leading a mixed group of warships from various nations in the waters of northern Europe.\nDefence Secretary Grant Shapps said:\n\u201cThe UK leadership of this international strike group shows the strength of our commitment to working with Allies to promote security in Europe and demonstrate our resolve against any threat from potential adversaries.\nWith both HMS Queen Elizabeth and HMS Prince of Wales deployed simultaneously, the Royal Navy sends a strong message that the UK\u2019s capability for carrier operations is among the strongest in the world.\u201d\nThe first phase saw the carrier\u2019s deployment saw F35 fighter jets taking part in Exercise Cobra Warrior, the RAF\u2019s largest bi-annual exercise, including aircraft from the Australia, Canada, Germany, Italy, Norway, and the UK taking part in joint exercises.\nThe 18-day exercise involved RAF Typhoon and F35 jets, A400M and C17 transport aircraft, and Voyager air tankers, developing interoperability alongside allied aircraft and practicing integration between fourth and fifth generation fighter aircraft across air, sea, and land.\nCommodore James Blackmore, Commander of the Carrier Strike Group, said:\n\u201cIt is with much eagerness that the UK Carrier Strike Group is now assembling for deployed operations \u2013 the first time the UK CSG will be under my command. This autumn\u2019s deployment showcases the UK\u2019s capability to operate at range from the UK and demonstrates our continued commitment to North Atlantic security.\nThe Carrier Strike Group is an agile and highly capable force and we are excited to be heading to the North Sea and North Atlantic along with our International Partner Nations to reinforce security across the region.\u201d\nThe post Norwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/norwegian-sar-helicopter-lands-on-british-aircraft-carrier/#comments", - "content": "

It is understood that the landing was planned to prove deck currency and discuss future collaborations with the Norwegian Air Operations Centre.

\nThe post Norwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", - "contentSnippet": "It is understood that the landing was planned to prove deck currency and discuss future collaborations with the Norwegian Air Operations Centre.\nNorwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46488", - "categories": [ - "Sea" - ], - "isoDate": "2023-10-13T14:00:40.000Z" - }, - { - "creator": "George Allison", - "title": "UK ships and aircraft deploying to waters close to Israel", - "link": "https://ukdefencejournal.org.uk/uk-ships-and-aircraft-deploying-to-waters-close-to-israel/", - "pubDate": "Fri, 13 Oct 2023 12:33:46 +0000", - "content:encoded": "

The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.

\n

From today, “Royal Air Force surveillance aircraft will commence patrols to assist partners in monitoring emerging threats to regional security”.

\n

Their primary objective is to identify potential disruptions to regional stability, particularly the transfer of weapons to terrorist groups.

\n

Furthermore, “a Royal Navy task group is set to relocate to the eastern Mediterranean next week” to aid humanitarian initiatives. The military package, comprising P8 aircraft, surveillance tools, two vessels (RFA Lyme Bay and RFA Argus), three Merlin helicopters, and a company of Royal Marines, stands ready to offer significant support to Israel and regional allies.

\n

Prime Minister Rishi Sunak stressed the urgency and significance of this deployment, remarking, \u201cWe must be unequivocal in ensuring the types of horrific scenes we’ve witnessed this week are not seen again. Our military and diplomatic teams…will collaborate with international partners to re-establish security and ensure that humanitarian aid reaches the countless innocent victims of this savage attack from Hamas terrorists.\u201d

\n

As part of a broader diplomatic approach, the Prime Minister engaged in dialogue with the Egyptian President, Abdel Fattah al-Sisi, to grasp the wider regional situation and the pressing need to aid civilians seeking to leave Gaza.

\n

Defence Secretary Grant Shapps echoed these sentiments, declaring, \u201cThe monstrous terrorist acts committed by Hamas in recent days underline the UK’s duty to champion Israel\u2019s absolute right to self-defence… today\u2019s deployment ensures that Israel stands not alone.\u201d

\n

The UK Foreign Secretary also has unveiled plans to facilitate commercial flights to aid British nationals desiring to leave Israel.

\n

You can read more by clicking here.

The post UK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", - "content:encodedSnippet": "The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.\nFrom today, \u201cRoyal Air Force surveillance aircraft will commence patrols to assist partners in monitoring emerging threats to regional security\u201d. \nTheir primary objective is to identify potential disruptions to regional stability, particularly the transfer of weapons to terrorist groups.\nFurthermore, \u201ca Royal Navy task group is set to relocate to the eastern Mediterranean next week\u201d to aid humanitarian initiatives. The military package, comprising P8 aircraft, surveillance tools, two vessels (RFA Lyme Bay and RFA Argus), three Merlin helicopters, and a company of Royal Marines, stands ready to offer significant support to Israel and regional allies.\nPrime Minister Rishi Sunak stressed the urgency and significance of this deployment, remarking, \u201cWe must be unequivocal in ensuring the types of horrific scenes we\u2019ve witnessed this week are not seen again. Our military and diplomatic teams\u2026will collaborate with international partners to re-establish security and ensure that humanitarian aid reaches the countless innocent victims of this savage attack from Hamas terrorists.\u201d\nAs part of a broader diplomatic approach, the Prime Minister engaged in dialogue with the Egyptian President, Abdel Fattah al-Sisi, to grasp the wider regional situation and the pressing need to aid civilians seeking to leave Gaza.\nDefence Secretary Grant Shapps echoed these sentiments, declaring, \u201cThe monstrous terrorist acts committed by Hamas in recent days underline the UK\u2019s duty to champion Israel\u2019s absolute right to self-defence\u2026 today\u2019s deployment ensures that Israel stands not alone.\u201d\nThe UK Foreign Secretary also has unveiled plans to facilitate commercial flights to aid British nationals desiring to leave Israel.\nYou can read more by clicking here.\nThe post UK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/uk-ships-and-aircraft-deploying-to-waters-close-to-israel/#comments", - "content": "

The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.

\nThe post UK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", - "contentSnippet": "The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.\nUK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46522", - "categories": [ - "Sea" - ], - "isoDate": "2023-10-13T12:33:46.000Z" - }, - { - "creator": "George Allison", - "title": "BAE boosts M109 Howitzer range with cannon upgrade", - "link": "https://ukdefencejournal.org.uk/bae-boosts-m109-howitzer-range-with-cannon-upgrade/", - "pubDate": "Fri, 13 Oct 2023 11:00:47 +0000", - "content:encoded": "

BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.

\n

This upgraded version, known as the M109-52, is a significant enhancement over the existing 39-caliber cannon.

\n

\u201cWe\u2019ve demonstrated that the integrated system of the M109-52 is a viable solution for long-range precision fires modernization needs,” remarked Dan Furber, the director of Ground Vehicle Production for BAE Systems\u2019 Combat Mission Systems division.

\n

Integrating these two highly capable and proven artillery systems provides stable designs and predictable performance.”

\n

The recent live-fire trial took place at Camp Ripley, Minnesota, verifying the compatibility of the L52 cannon with the established M109A7 platform. BAE Systems has outlined plans for further testing in 2024, with a focus on evaluating extended range using diverse projectiles.

\n

You can read more by clicking here.

The post BAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", - "content:encodedSnippet": "BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.\nThis upgraded version, known as the M109-52, is a significant enhancement over the existing 39-caliber cannon.\n\u201cWe\u2019ve demonstrated that the integrated system of the M109-52 is a viable solution for long-range precision fires modernization needs,\u201d remarked Dan Furber, the director of Ground Vehicle Production for BAE Systems\u2019 Combat Mission Systems division.\n\u201cIntegrating these two highly capable and proven artillery systems provides stable designs and predictable performance.\u201d\nThe recent live-fire trial took place at Camp Ripley, Minnesota, verifying the compatibility of the L52 cannon with the established M109A7 platform. BAE Systems has outlined plans for further testing in 2024, with a focus on evaluating extended range using diverse projectiles.\nYou can read more by clicking here.\nThe post BAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/bae-boosts-m109-howitzer-range-with-cannon-upgrade/#comments", - "content": "

BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.

\nThe post BAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", - "contentSnippet": "BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.\nBAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46494", - "categories": [ - "Land" - ], - "isoDate": "2023-10-13T11:00:47.000Z" - }, - { - "creator": "George Allison", - "title": "Helicopters from HMS Queen Elizabeth launch torpedos", - "link": "https://ukdefencejournal.org.uk/helicopters-from-hms-queen-elizabeth-launch-torpedos/", - "pubDate": "Fri, 13 Oct 2023 07:00:01 +0000", - "content:encoded": "

Merlin helicopters from HMS Queen Elizabeth and HMS Portland have dropped underwater weapons.

\n

820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.

\n
\n

Torpedoes Away!

\n

An action packed day operating with #UKCSG23. Merlin helicopters from @HMSQNLZ and @HMSPortland conducted drops of underwater weapons\"\ud83d\udca5\". Ships and aircraft in the Strike Group train together to ensure we can defend the aircraft carrier from submarine threats. \"\ud83c\uddec\ud83c\udde7\" pic.twitter.com/M4oecdnSHl

\n

— HMSPortland (@HMSPortland) October 11, 2023

\n

\n

More detail in the tweet below.

\n
\n

TORPEDO LAUNCH

\n

820 performed the first Training Variant Torpedo (TVT) drop from a Queen Elizabeth Class Carrier.

\n

Observers Scott Wilson and Tobias Williams launched the TVT abeam @HMSPortland to test external weapon processes and internal delivery systems. #FLYNAVY #UKCSG23 pic.twitter.com/bf7S6oecTh

\n

— 820 Naval Air Squadron (@820NAS) October 12, 2023

\n

\n

 

\n

What is HMS Queen Elizabeth and her Carrier Strike Group doing?

\n

The Royal Navy say that the aircraft carrier, crewed by up to 900 sailors, with her F-35 Lightning II stealth fighters and Merlin helicopters, is leading a mixed group of warships from various nations in the waters of northern Europe.

\n
Defence Secretary Grant Shapps said:
\n

\u201cThe UK leadership of this international strike group shows the strength of our commitment to working with Allies to promote security in Europe and demonstrate our resolve against any threat from potential adversaries.

\n

With both HMS Queen Elizabeth and HMS Prince of Wales deployed simultaneously, the Royal Navy sends a strong message that the UK\u2019s capability for carrier operations is among the strongest in the world.\u201d

\n

The first phase saw the carrier\u2019s deployment saw F35 fighter jets taking part in Exercise Cobra Warrior, the RAF\u2019s largest bi-annual exercise, including aircraft from the Australia, Canada, Germany, Italy, Norway, and the UK taking part in joint exercises.

\n

The 18-day exercise involved RAF Typhoon and F35 jets, A400M and C17 transport aircraft, and Voyager air tankers, developing interoperability alongside allied aircraft and practicing integration between fourth and fifth generation fighter aircraft across air, sea, and land.

\n
Commodore James Blackmore, Commander of the Carrier Strike Group, said:
\n

\u201cIt is with much eagerness that the UK Carrier Strike Group is now assembling for deployed operations \u2013 the first time the UK CSG will be under my command. This autumn\u2019s deployment showcases the UK\u2019s capability to operate at range from the UK and demonstrates our continued commitment to North Atlantic security.

\n

The Carrier Strike Group is an agile and highly capable force and we are excited to be heading to the North Sea and North Atlantic along with our International Partner Nations to reinforce security across the region.\u201d

The post Helicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", - "content:encodedSnippet": "Merlin helicopters from HMS Queen Elizabeth and HMS Portland have dropped underwater weapons.\n820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.\nTorpedoes Away!\nAn action packed day operating with #UKCSG23. Merlin helicopters from @HMSQNLZ and @HMSPortland conducted drops of underwater weapons. Ships and aircraft in the Strike Group train together to ensure we can defend the aircraft carrier from submarine threats. pic.twitter.com/M4oecdnSHl\n\u2014 HMSPortland (@HMSPortland) October 11, 2023\n\n\nMore detail in the tweet below.\nTORPEDO LAUNCH\n820 performed the first Training Variant Torpedo (TVT) drop from a Queen Elizabeth Class Carrier.\nObservers Scott Wilson and Tobias Williams launched the TVT abeam @HMSPortland to test external weapon processes and internal delivery systems. #FLYNAVY #UKCSG23 pic.twitter.com/bf7S6oecTh\n\u2014 820 Naval Air Squadron (@820NAS) October 12, 2023\n\n\n\u00a0\nWhat is HMS Queen Elizabeth and her Carrier Strike Group doing?\nThe Royal Navy say that the aircraft carrier, crewed by up to 900 sailors, with her F-35 Lightning II stealth fighters and Merlin helicopters, is leading a mixed group of warships from various nations in the waters of northern Europe.\nDefence Secretary Grant Shapps said:\n\u201cThe UK leadership of this international strike group shows the strength of our commitment to working with Allies to promote security in Europe and demonstrate our resolve against any threat from potential adversaries.\nWith both HMS Queen Elizabeth and HMS Prince of Wales deployed simultaneously, the Royal Navy sends a strong message that the UK\u2019s capability for carrier operations is among the strongest in the world.\u201d\nThe first phase saw the carrier\u2019s deployment saw F35 fighter jets taking part in Exercise Cobra Warrior, the RAF\u2019s largest bi-annual exercise, including aircraft from the Australia, Canada, Germany, Italy, Norway, and the UK taking part in joint exercises.\nThe 18-day exercise involved RAF Typhoon and F35 jets, A400M and C17 transport aircraft, and Voyager air tankers, developing interoperability alongside allied aircraft and practicing integration between fourth and fifth generation fighter aircraft across air, sea, and land.\nCommodore James Blackmore, Commander of the Carrier Strike Group, said:\n\u201cIt is with much eagerness that the UK Carrier Strike Group is now assembling for deployed operations \u2013 the first time the UK CSG will be under my command. This autumn\u2019s deployment showcases the UK\u2019s capability to operate at range from the UK and demonstrates our continued commitment to North Atlantic security.\nThe Carrier Strike Group is an agile and highly capable force and we are excited to be heading to the North Sea and North Atlantic along with our International Partner Nations to reinforce security across the region.\u201d\nThe post Helicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", - "dc:creator": "George Allison", - "comments": "https://ukdefencejournal.org.uk/helicopters-from-hms-queen-elizabeth-launch-torpedos/#comments", - "content": "

820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.

\nThe post Helicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", - "contentSnippet": "820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.\nHelicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", - "guid": "https://ukdefencejournal.org.uk/?p=46485", - "categories": [ - "Sea" - ], - "isoDate": "2023-10-13T07:00:01.000Z" - } -] \ No newline at end of file + { + "creator": "Tom Dunlop", + "title": "British frigate returns home", + "link": "https://ukdefencejournal.org.uk/british-frigate-returns-home/", + "pubDate": "Sat, 25 Nov 2023 17:00:12 +0000", + "content:encoded": "

HMS Portland, a Type 23 frigate, received a warm welcome upon returning to its home port in Devonport, after months of operations in the North Atlantic and surrounding UK waters.

\n

Embarking from Devonport in early August, HMS Portland’s mission included the shadowing of Russian naval vessels and visits to ports from Belfast to Nova Scotia.

\n

According to the Royal Navy press release, “HMS Portland has had a busy schedule since leaving Plymouth.” This included a brief collaboration with HMS Queen Elizabeth and the UK Carrier Strike Group for NATO training and exercises.

\n

A pivotal aspect of HMS Portland’s deployment was tracking Russian warships and submarines. This task was undertaken in coordination with the offshore patrol vessel HMS Tyne and the RAF\u2019s P8 Poseidon aircraft. The frigate monitored several Russian vessels, such as corvettes Boikiy and Grad, cruiser Marshal Ustinov, and the Udaloy-class destroyer Severomorsk.

\n

During a visit to Belfast, Northern Ireland, HMS Portland then embarked on a transatlantic journey to Canada to participate in the Royal Canadian Navy\u2019s inaugural International Fleet Week in Halifax, Nova Scotia. The frigate opened its gangway to the public, including participants from Techsploration, which encourages young women to pursue careers in science, engineering, trade, and technology.

\n

HMS Portland also took part in exchanges with sailors from various international navies in Halifax, culminating in a salute to the Commander of the Canadian Navy, Vice Admiral Angus Topshee.

\n

Upon its return to the North Atlantic, HMS Portland rejoined the UK Carrier Strike Group, escorting HMS Queen Elizabeth alongside the Type 45 destroyer HMS Diamond. The frigate played a critical role in the launch of a Training Variant Torpedo from Merlin Mk2 helicopters aboard the aircraft carrier.

\n

With its return to Devonport, HMS Portland concludes a series of strategic operations, underscoring its vital role in maintaining security in the North Atlantic and surrounding UK waters.

\n

You can read more about this by clicking here.

The post British frigate returns home first appeared on UK Defence Journal.", + "content:encodedSnippet": "HMS Portland, a Type 23 frigate, received a warm welcome upon returning to its home port in Devonport, after months of operations in the North Atlantic and surrounding UK waters.\nEmbarking from Devonport in early August, HMS Portland\u2019s mission included the shadowing of Russian naval vessels and visits to ports from Belfast to Nova Scotia.\nAccording to the Royal Navy press release, \u201cHMS Portland has had a busy schedule since leaving Plymouth.\u201d This included a brief collaboration with HMS Queen Elizabeth and the UK Carrier Strike Group for NATO training and exercises.\nA pivotal aspect of HMS Portland\u2019s deployment was tracking Russian warships and submarines. This task was undertaken in coordination with the offshore patrol vessel HMS Tyne and the RAF\u2019s P8 Poseidon aircraft. The frigate monitored several Russian vessels, such as corvettes Boikiy and Grad, cruiser Marshal Ustinov, and the Udaloy-class destroyer Severomorsk.\nDuring a visit to Belfast, Northern Ireland, HMS Portland then embarked on a transatlantic journey to Canada to participate in the Royal Canadian Navy\u2019s inaugural International Fleet Week in Halifax, Nova Scotia. The frigate opened its gangway to the public, including participants from Techsploration, which encourages young women to pursue careers in science, engineering, trade, and technology.\nHMS Portland also took part in exchanges with sailors from various international navies in Halifax, culminating in a salute to the Commander of the Canadian Navy, Vice Admiral Angus Topshee.\nUpon its return to the North Atlantic, HMS Portland rejoined the UK Carrier Strike Group, escorting HMS Queen Elizabeth alongside the Type 45 destroyer HMS Diamond. The frigate played a critical role in the launch of a Training Variant Torpedo from Merlin Mk2 helicopters aboard the aircraft carrier.\nWith its return to Devonport, HMS Portland concludes a series of strategic operations, underscoring its vital role in maintaining security in the North Atlantic and surrounding UK waters.\nYou can read more about this by clicking here.\nThe post British frigate returns home first appeared on UK Defence Journal.", + "dc:creator": "Tom Dunlop", + "comments": "https://ukdefencejournal.org.uk/british-frigate-returns-home/#comments", + "content": "

Embarking from Devonport in early August, HMS Portland's mission included the shadowing of Russian naval vessels and visits to ports from Belfast to Nova Scotia.

\nThe post British frigate returns home first appeared on UK Defence Journal.", + "contentSnippet": "Embarking from Devonport in early August, HMS Portland's mission included the shadowing of Russian naval vessels and visits to ports from Belfast to Nova Scotia.\nBritish frigate returns home first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46923", + "categories": ["Sea"], + "isoDate": "2023-11-25T17:00:12.000Z" + }, + { + "creator": "Tom Dunlop", + "title": "Rolls-Royce completes 100% sustainable aviation fuel test", + "link": "https://ukdefencejournal.org.uk/rolls-royce-completes-100-sustainable-aviation-fuel-test/", + "pubDate": "Sat, 25 Nov 2023 15:00:23 +0000", + "content:encoded": "

Rolls-Royce has announced the successful completion of compatibility testing of 100% Sustainable Aviation Fuel (SAF) on all its in-production civil aero engine types.

\n

The final test in this series, which involved a BR710 business jet engine, was conducted at the company’s facility in Canada.

\n

According to the company, the comprehensive test programme included engines such as the Trent 700, Trent 800, Trent 900, Trent 1000, Trent XWB-84, Trent XWB-97, Trent 7000, BR725, Pearl 700, Pearl 15, and Pearl 10X. These tests, which involved a range of ground and flight tests, confirmed that the use of 100% SAF does not impact engine performance.

\n

Tufan Erginbilgic, CEO of Rolls-Royce plc, expressed the significance of this milestone:

\n

“Becoming the first jet engine manufacturer to publicly confirm all our in-production engines for long-haul aircraft and business jets are compatible with 100% SAF, is an important milestone for both Rolls-Royce and the wider aviation industry, according to the company. It’s also further evidence of our commitment to becoming a net zero company by 2050 and supporting our customers to do the same.”

\n

Simon Burr, Group Director of Engineering, Technology and Safety at Rolls-Royce plc, added:

\n

“This is an important milestone, not just for Rolls-Royce, but also for the wider civil aerospace industry. We hope the success of these tests provides a level of technical validation that supports those who seek to invest in the production of 100% SAF going forward.”

\n

Mark Harper, UK Transport Secretary, commented on the broader implications:

\n

“The world\u2019s journey to decarbonising flight is powered by British innovation and backed by the UK Government, meaning people can continue to travel how they want, in a way that\u2019s fit for the future. Today\u2019s news demonstrates that Rolls Royce and the UK are global leaders in decarbonising transport, taking us one step closer to Jet Zero.”

\n

According to Rolls-Royce, its new generation UltraFan engine demonstrator, which also ran earlier this year, is capable of operating on 100% SAF.

\n

The company’s commitment to sustainable aviation will be further showcased in a joint effort with Virgin Atlantic, where Trent 1000 engines will power a Boeing 787 Dreamliner on Flight 100, the world\u2019s first transatlantic 100% SAF flight. This project involves a consortium including Boeing, University of Sheffield, Imperial College London, and the Rocky Mountain Institute, sponsored by the Department for Transport.

\n

You can read more about this by clicking here.

The post Rolls-Royce completes 100% sustainable aviation fuel test first appeared on UK Defence Journal.", + "content:encodedSnippet": "Rolls-Royce has announced the successful completion of compatibility testing of 100% Sustainable Aviation Fuel (SAF) on all its in-production civil aero engine types.\nThe final test in this series, which involved a BR710 business jet engine, was conducted at the company\u2019s facility in Canada.\nAccording to the company, the comprehensive test programme included engines such as the Trent 700, Trent 800, Trent 900, Trent 1000, Trent XWB-84, Trent XWB-97, Trent 7000, BR725, Pearl 700, Pearl 15, and Pearl 10X. These tests, which involved a range of ground and flight tests, confirmed that the use of 100% SAF does not impact engine performance.\nTufan Erginbilgic, CEO of Rolls-Royce plc, expressed the significance of this milestone:\n\u201cBecoming the first jet engine manufacturer to publicly confirm all our in-production engines for long-haul aircraft and business jets are compatible with 100% SAF, is an important milestone for both Rolls-Royce and the wider aviation industry, according to the company. It\u2019s also further evidence of our commitment to becoming a net zero company by 2050 and supporting our customers to do the same.\u201d\nSimon Burr, Group Director of Engineering, Technology and Safety at Rolls-Royce plc, added:\n\u201cThis is an important milestone, not just for Rolls-Royce, but also for the wider civil aerospace industry. We hope the success of these tests provides a level of technical validation that supports those who seek to invest in the production of 100% SAF going forward.\u201d\nMark Harper, UK Transport Secretary, commented on the broader implications:\n\u201cThe world\u2019s journey to decarbonising flight is powered by British innovation and backed by the UK Government, meaning people can continue to travel how they want, in a way that\u2019s fit for the future. Today\u2019s news demonstrates that Rolls Royce and the UK are global leaders in decarbonising transport, taking us one step closer to Jet Zero.\u201d\nAccording to Rolls-Royce, its new generation UltraFan engine demonstrator, which also ran earlier this year, is capable of operating on 100% SAF.\nThe company\u2019s commitment to sustainable aviation will be further showcased in a joint effort with Virgin Atlantic, where Trent 1000 engines will power a Boeing 787 Dreamliner on Flight 100, the world\u2019s first transatlantic 100% SAF flight. This project involves a consortium including Boeing, University of Sheffield, Imperial College London, and the Rocky Mountain Institute, sponsored by the Department for Transport.\nYou can read more about this by clicking here.\nThe post Rolls-Royce completes 100% sustainable aviation fuel test first appeared on UK Defence Journal.", + "dc:creator": "Tom Dunlop", + "comments": "https://ukdefencejournal.org.uk/rolls-royce-completes-100-sustainable-aviation-fuel-test/#comments", + "content": "

Rolls-Royce has announced the successful completion of compatibility testing of 100% Sustainable Aviation Fuel (SAF) on all its in-production civil aero engine types.

\nThe post Rolls-Royce completes 100% sustainable aviation fuel test first appeared on UK Defence Journal.", + "contentSnippet": "Rolls-Royce has announced the successful completion of compatibility testing of 100% Sustainable Aviation Fuel (SAF) on all its in-production civil aero engine types.\nRolls-Royce completes 100% sustainable aviation fuel test first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46921", + "categories": ["Air"], + "isoDate": "2023-11-25T15:00:23.000Z" + }, + { + "creator": "George Allison", + "title": "Sweden selects British CAMM missiles", + "link": "https://ukdefencejournal.org.uk/sweden-selects-british-camm-missiles/", + "pubDate": "Sat, 25 Nov 2023 13:00:11 +0000", + "content:encoded": "

MBDA has signed a contract with Sweden for the delivery of Common Anti-air Modular Missiles (CAMMs).

\n

This agreement, brokered between MBDA and the Swedish Defence Materiel Administration FMV, involves equipping the Royal Swedish Navy’s Visby Class Corvettes with CAMMs, to be deployed via MBDA\u2019s Sea Ceptor naval air defence system.

\n

Sea Ceptor, a state-of-the-art naval air defence system, is well known for its ability to provide comprehensive self- and local area air defence.

\n

It can counter a wide array of threats, including supersonic anti-ship missiles, attack helicopters, and un-crewed air vehicles. Notably, the system is adept at handling simultaneous attacks, including saturation attacks, from any direction.

\n

Eric Beranger, CEO of MBDA, emphasised the significance of this contract. “CAMM will provide Sweden and the Royal Swedish Navy with a formidable air defence capability that gives the country a strong new contribution to NATO together with other allied Sea Ceptor users like the Royal Navy from the United Kingdom. We\u2019re proud also to be continuing our long history of partnership with Sweden and Swedish industry, including Saab.”

\n

Sweden now joins a growing list of countries, such as Poland, the UK, Italy, Canada, and Brazil, that have selected the CAMM family for their latest generation naval and ground-based air defence needs.

\n

You can read more about this by clicking here.

The post Sweden selects British CAMM missiles first appeared on UK Defence Journal.", + "content:encodedSnippet": "MBDA has signed a contract with Sweden for the delivery of Common Anti-air Modular Missiles (CAMMs).\nThis agreement, brokered between MBDA and the Swedish Defence Materiel Administration FMV, involves equipping the Royal Swedish Navy\u2019s Visby Class Corvettes with CAMMs, to be deployed via MBDA\u2019s Sea Ceptor naval air defence system.\nSea Ceptor, a state-of-the-art naval air defence system, is well known for its ability to provide comprehensive self- and local area air defence.\nIt can counter a wide array of threats, including supersonic anti-ship missiles, attack helicopters, and un-crewed air vehicles. Notably, the system is adept at handling simultaneous attacks, including saturation attacks, from any direction.\nEric Beranger, CEO of MBDA, emphasised the significance of this contract. \u201cCAMM will provide Sweden and the Royal Swedish Navy with a formidable air defence capability that gives the country a strong new contribution to NATO together with other allied Sea Ceptor users like the Royal Navy from the United Kingdom. We\u2019re proud also to be continuing our long history of partnership with Sweden and Swedish industry, including Saab.\u201d\nSweden now joins a growing list of countries, such as Poland, the UK, Italy, Canada, and Brazil, that have selected the CAMM family for their latest generation naval and ground-based air defence needs.\nYou can read more about this by clicking here.\nThe post Sweden selects British CAMM missiles first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/sweden-selects-british-camm-missiles/#comments", + "content": "

MBDA has signed a contract with Sweden for the delivery of Common Anti-air Modular Missiles (CAMMs) for their Visby class corvettes.

\nThe post Sweden selects British CAMM missiles first appeared on UK Defence Journal.", + "contentSnippet": "MBDA has signed a contract with Sweden for the delivery of Common Anti-air Modular Missiles (CAMMs) for their Visby class corvettes.\nSweden selects British CAMM missiles first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46926", + "categories": ["Sea"], + "isoDate": "2023-11-25T13:00:11.000Z" + }, + { + "creator": "Tom Dunlop", + "title": "Boeing shifts toward production of MH-139A Grey Wolf", + "link": "https://ukdefencejournal.org.uk/boeing-shifts-toward-production-of-mh-139a-grey-wolf/", + "pubDate": "Sat, 25 Nov 2023 12:00:29 +0000", + "content:encoded": "

Boeing has announced its transition towards the low-rate initial production of the MH-139A Grey Wolf, following the completion of the program’s Research, Development, Test & Evaluation (RDT&E) phase.

\n

The final RDT&E aircraft was delivered to the U.S. Air Force in October, marking a significant milestone for the project.

\n

Azeem Khan, MH-139 program director at Boeing, commented, \u201cDelivering all of the RDT&E aircraft to the Air Force enables them to continue critical operational testing and allows Boeing to focus on building the first production aircraft.\u201d He further added, \u201cThe Grey Wolf will provide crucial national security capability improvements to the Air Force. This is an important step in getting the aircraft into service.\u201d

\n

Boeing is scheduled to deliver the first production aircraft in 2024. The Air Force has already awarded Boeing a contract for the first 13 aircraft, with the initial one currently in final assembly. The contract has the potential to expand up to 80 MH-139A Grey Wolf helicopters.

\n

Robert Beyer, MH-139 Senior Program Manager at Leonardo Helicopters US, stated, \u201cWith the final test aircraft delivered, we\u2019re headed into an exciting production phase. With the MH-139, the United States Air Force is getting a faster and more capable aircraft to bring them into a new era of service for this mission.\u201d

\n

The MH-139A is set to replace the UH-1N Huey. Its primary roles include protecting intercontinental ballistic missiles across the U.S. and transporting VIP and security personnel.

\n

You can read more about this by clicking here.

The post Boeing shifts toward production of MH-139A Grey Wolf first appeared on UK Defence Journal.", + "content:encodedSnippet": "Boeing has announced its transition towards the low-rate initial production of the MH-139A Grey Wolf, following the completion of the program\u2019s Research, Development, Test & Evaluation (RDT&E) phase.\nThe final RDT&E aircraft was delivered to the U.S. Air Force in October, marking a significant milestone for the project.\nAzeem Khan, MH-139 program director at Boeing, commented, \u201cDelivering all of the RDT&E aircraft to the Air Force enables them to continue critical operational testing and allows Boeing to focus on building the first production aircraft.\u201d He further added, \u201cThe Grey Wolf will provide crucial national security capability improvements to the Air Force. This is an important step in getting the aircraft into service.\u201d\nBoeing is scheduled to deliver the first production aircraft in 2024. The Air Force has already awarded Boeing a contract for the first 13 aircraft, with the initial one currently in final assembly. The contract has the potential to expand up to 80 MH-139A Grey Wolf helicopters.\nRobert Beyer, MH-139 Senior Program Manager at Leonardo Helicopters US, stated, \u201cWith the final test aircraft delivered, we\u2019re headed into an exciting production phase. With the MH-139, the United States Air Force is getting a faster and more capable aircraft to bring them into a new era of service for this mission.\u201d\nThe MH-139A is set to replace the UH-1N Huey. Its primary roles include protecting intercontinental ballistic missiles across the U.S. and transporting VIP and security personnel.\nYou can read more about this by clicking here.\nThe post Boeing shifts toward production of MH-139A Grey Wolf first appeared on UK Defence Journal.", + "dc:creator": "Tom Dunlop", + "comments": "https://ukdefencejournal.org.uk/boeing-shifts-toward-production-of-mh-139a-grey-wolf/#comments", + "content": "

Boeing has announced its transition towards the low-rate initial production of the MH-139A Grey Wolf.

\nThe post Boeing shifts toward production of MH-139A Grey Wolf first appeared on UK Defence Journal.", + "contentSnippet": "Boeing has announced its transition towards the low-rate initial production of the MH-139A Grey Wolf.\nBoeing shifts toward production of MH-139A Grey Wolf first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46919", + "categories": ["Air"], + "isoDate": "2023-11-25T12:00:29.000Z" + }, + { + "creator": "Tom Dunlop", + "title": "American Abrams tanks for Romania", + "link": "https://ukdefencejournal.org.uk/american-abrams-tanks-for-romania/", + "pubDate": "Sat, 25 Nov 2023 11:00:07 +0000", + "content:encoded": "

The U.S. State Department has given its approval for a possible Foreign Military Sale to Romania, involving M1A2 Abrams Main Battle Tanks and related equipment, with the proposed sale valued at approximately $2.53 billion.

\n

This follows the formal notification to Congress by the Defense Security Cooperation Agency.

\n

Romania’s request, as detailed in the press release, includes “fifty-four (54) M1A2 SEPv3 Abrams Main Battle Tanks; fifty-four (54) M1A1 Structures; four (4) M88A2 HERCULES Combat Recovery Vehicles; and other equipment.”

\n

The list extends to include various types of vehicles, weapons, ammunition, and support services.

\n

The State Department’s press release emphasises the significance of this sale for U.S. foreign policy: “This proposed sale will support the foreign policy and national security objectives of the United States by helping to improve the security of a NATO Ally which is an important force for political and economic stability in Europe.”

\n

Regarding the impact on Romania’s defence capabilities, the release states, “The proposed sale will improve Romania\u2019s capability to meet current and future threats by providing a credible force that is capable of deterring adversaries and participating in NATO operations.”

\n

It also assures that “Romania will have no difficulty absorbing this equipment into its armed forces.”

The post American Abrams tanks for Romania first appeared on UK Defence Journal.", + "content:encodedSnippet": "The U.S. State Department has given its approval for a possible Foreign Military Sale to Romania, involving M1A2 Abrams Main Battle Tanks and related equipment, with the proposed sale valued at approximately $2.53 billion.\nThis follows the formal notification to Congress by the Defense Security Cooperation Agency.\nRomania\u2019s request, as detailed in the press release, includes \u201cfifty-four (54) M1A2 SEPv3 Abrams Main Battle Tanks; fifty-four (54) M1A1 Structures; four (4) M88A2 HERCULES Combat Recovery Vehicles; and other equipment.\u201d\nThe list extends to include various types of vehicles, weapons, ammunition, and support services.\nThe State Department\u2019s press release emphasises the significance of this sale for U.S. foreign policy: \u201cThis proposed sale will support the foreign policy and national security objectives of the United States by helping to improve the security of a NATO Ally which is an important force for political and economic stability in Europe.\u201d\nRegarding the impact on Romania\u2019s defence capabilities, the release states, \u201cThe proposed sale will improve Romania\u2019s capability to meet current and future threats by providing a credible force that is capable of deterring adversaries and participating in NATO operations.\u201d\nIt also assures that \u201cRomania will have no difficulty absorbing this equipment into its armed forces.\u201d\nThe post American Abrams tanks for Romania first appeared on UK Defence Journal.", + "dc:creator": "Tom Dunlop", + "comments": "https://ukdefencejournal.org.uk/american-abrams-tanks-for-romania/#comments", + "content": "

The U.S. State Department has given its approval for a possible sale to Romania of 54 M1A2 Abrams Main Battle Tanks.

\nThe post American Abrams tanks for Romania first appeared on UK Defence Journal.", + "contentSnippet": "The U.S. State Department has given its approval for a possible sale to Romania of 54 M1A2 Abrams Main Battle Tanks.\nAmerican Abrams tanks for Romania first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46916", + "categories": ["Land"], + "isoDate": "2023-11-25T11:00:07.000Z" + }, + { + "creator": "Tom Dunlop", + "title": "NATO joins UK in purchasing E-7 early warning aircraft", + "link": "https://ukdefencejournal.org.uk/nato-joins-uk-in-purchasing-e-7-early-warning-aircraft/", + "pubDate": "Sat, 25 Nov 2023 10:00:50 +0000", + "content:encoded": "

NATO has announced the selection of its next-generation command and control aircraft, moving forward with the Boeing E-7A Wedgetail to replace its existing E-3 Airborne Warning and Control (AWACS) fleet, which is nearing retirement.

\n

The production of six new E-7A aircraft is expected to begin in the coming years, with the first aircraft slated to be ready for operational duty by 2031.

\n

This decision follows approval from a consortium of Allied nations.

\n

NATO Secretary General Jens Stoltenberg commented on the development, stating, \u201cSurveillance and control aircraft are crucial for NATO\u2019s collective defence and I welcome Allies\u2019 commitment to investing in high-end capabilities.\u201d

\n

He also noted the benefits of pooling resources, enabling Allies to collectively purchase and operate assets that would be too costly for individual countries. Stoltenberg added, “This investment in state-of-the-art technology shows the strength of transatlantic defence cooperation as we continue to adapt to a more unstable world”.

\n

The E-7 Wedgetail, an advanced early warning and control aircraft, is equipped with a sophisticated radar system. It is capable of detecting hostile aircraft, missiles, and ships at great distances and can direct NATO fighter jets to their targets.

\n

The aircraft is based on a militarised version of the Boeing 737 jetliner. Countries such as the United States, the United Kingdom, Australia and T\u00fcrkiye either currently operate the Wedgetail or plan to do so.

\n

Since the 1980s, NATO has operated a fleet of E-3A AWACS aircraft from Geilenkirchen Air Base in Germany. These aircraft have been involved in every major NATO operation, including actions against ISIS and on NATO\u2019s eastern flank following Russia\u2019s invasion of Ukraine.

\n

The E-7 is expected to be primarily based at Geilenkirchen and may operate from several forward locations across Europe. It will be a part of NATO\u2019s future surveillance and control project, which aims to introduce the next generation of surveillance systems by the mid-2030s.

The post NATO joins UK in purchasing E-7 early warning aircraft first appeared on UK Defence Journal.", + "content:encodedSnippet": "NATO has announced the selection of its next-generation command and control aircraft, moving forward with the Boeing E-7A Wedgetail to replace its existing E-3 Airborne Warning and Control (AWACS) fleet, which is nearing retirement.\nThe production of six new E-7A aircraft is expected to begin in the coming years, with the first aircraft slated to be ready for operational duty by 2031.\nThis decision follows approval from a consortium of Allied nations.\nNATO Secretary General Jens Stoltenberg commented on the development, stating, \u201cSurveillance and control aircraft are crucial for NATO\u2019s collective defence and I welcome Allies\u2019 commitment to investing in high-end capabilities.\u201d\nHe also noted the benefits of pooling resources, enabling Allies to collectively purchase and operate assets that would be too costly for individual countries. Stoltenberg added, \u201cThis investment in state-of-the-art technology shows the strength of transatlantic defence cooperation as we continue to adapt to a more unstable world\u201d.\nThe E-7 Wedgetail, an advanced early warning and control aircraft, is equipped with a sophisticated radar system. It is capable of detecting hostile aircraft, missiles, and ships at great distances and can direct NATO fighter jets to their targets.\nThe aircraft is based on a militarised version of the Boeing 737 jetliner. Countries such as the United States, the United Kingdom, Australia and T\u00fcrkiye either currently operate the Wedgetail or plan to do so.\nSince the 1980s, NATO has operated a fleet of E-3A AWACS aircraft from Geilenkirchen Air Base in Germany. These aircraft have been involved in every major NATO operation, including actions against ISIS and on NATO\u2019s eastern flank following Russia\u2019s invasion of Ukraine.\nThe E-7 is expected to be primarily based at Geilenkirchen and may operate from several forward locations across Europe. It will be a part of NATO\u2019s future surveillance and control project, which aims to introduce the next generation of surveillance systems by the mid-2030s.\nThe post NATO joins UK in purchasing E-7 early warning aircraft first appeared on UK Defence Journal.", + "dc:creator": "Tom Dunlop", + "comments": "https://ukdefencejournal.org.uk/nato-joins-uk-in-purchasing-e-7-early-warning-aircraft/#comments", + "content": "

Countries such as the United States, the United Kingdom, Australia and Turkey either currently operate the Wedgetail or plan to do so.

\nThe post NATO joins UK in purchasing E-7 early warning aircraft first appeared on UK Defence Journal.", + "contentSnippet": "Countries such as the United States, the United Kingdom, Australia and Turkey either currently operate the Wedgetail or plan to do so.\nNATO joins UK in purchasing E-7 early warning aircraft first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46925", + "categories": ["Air"], + "isoDate": "2023-11-25T10:00:50.000Z" + }, + { + "creator": "Tom Dunlop", + "title": "British military provides further support to get aid into Gaza", + "link": "https://ukdefencejournal.org.uk/british-military-provides-further-support-to-get-aid-into-gaza/", + "pubDate": "Sat, 25 Nov 2023 08:30:33 +0000", + "content:encoded": "

The UK has announced an additional \u00a330 million in humanitarian aid to address the growing crisis in Gaza.

\n

This announcement was made by the Foreign Secretary during his visit to Israel and the Occupied Palestinian Territories (OPTs).

\n

The Foreign Secretary’s visit, which included a series of meetings with senior Israeli politicians, focussed on intensifying UK efforts to alleviate the humanitarian situation in Gaza. The discussions centred around opening greater access for essential support, including medical supplies and fuel.

\n

This new pledge of \u00a330 million brings the total additional aid announced by the UK for Palestinian civilians to \u00a360 million since the crisis began in October.

\n

Foreign Secretary David Cameron highlighted the importance of this assistance, stating:

\n

“We are hopeful that today will see the release of hostages, and I am urging all parties to continue to work towards the release of every hostage. A pause will also allow access for life-saving aid to the people of Gaza. I am proud that a fourth UK flight carrying critical supplies landed in Egypt today, and I can announce new \u00a330 million of funding which will be spent on vital aid such as shelter and medical provisions.”

\n

The focus of the UK’s support is on delivering lifesaving aid to those in Gaza, with the assistance being channelled through trusted partners and UN agencies on the ground. The aid includes provisions for shelter and medical supplies, addressing the immediate needs of the population.

\n

The fourth UK aircraft carrying humanitarian aid recently landed in Al Arish, Egypt, for transfer to Gaza.

\n

The Royal Air Force (RAF) flight delivered 23 tonnes of aid, including blankets and sleeping mats, to be distributed by the United Nations Relief and Works Agency (UNRWA). Defence Secretary Grant Shapps commented on the RAF’s role, saying: “The RAF continues to deliver on the UK\u2019s commitment to helping those in need by operating flights into the region to provide urgent humanitarian support which will save civilian lives.”

\n

You can read more about this by clicking here.

The post British military provides further support to get aid into Gaza first appeared on UK Defence Journal.", + "content:encodedSnippet": "The UK has announced an additional \u00a330 million in humanitarian aid to address the growing crisis in Gaza.\nThis announcement was made by the Foreign Secretary during his visit to Israel and the Occupied Palestinian Territories (OPTs).\nThe Foreign Secretary\u2019s visit, which included a series of meetings with senior Israeli politicians, focussed on intensifying UK efforts to alleviate the humanitarian situation in Gaza. The discussions centred around opening greater access for essential support, including medical supplies and fuel.\nThis new pledge of \u00a330 million brings the total additional aid announced by the UK for Palestinian civilians to \u00a360 million since the crisis began in October.\nForeign Secretary David Cameron highlighted the importance of this assistance, stating:\n\u201cWe are hopeful that today will see the release of hostages, and I am urging all parties to continue to work towards the release of every hostage. A pause will also allow access for life-saving aid to the people of Gaza. I am proud that a fourth UK flight carrying critical supplies landed in Egypt today, and I can announce new \u00a330 million of funding which will be spent on vital aid such as shelter and medical provisions.\u201d\nThe focus of the UK\u2019s support is on delivering lifesaving aid to those in Gaza, with the assistance being channelled through trusted partners and UN agencies on the ground. The aid includes provisions for shelter and medical supplies, addressing the immediate needs of the population.\nThe fourth UK aircraft carrying humanitarian aid recently landed in Al Arish, Egypt, for transfer to Gaza.\nThe Royal Air Force (RAF) flight delivered 23 tonnes of aid, including blankets and sleeping mats, to be distributed by the United Nations Relief and Works Agency (UNRWA). Defence Secretary Grant Shapps commented on the RAF\u2019s role, saying: \u201cThe RAF continues to deliver on the UK\u2019s commitment to helping those in need by operating flights into the region to provide urgent humanitarian support which will save civilian lives.\u201d\nYou can read more about this by clicking here.\nThe post British military provides further support to get aid into Gaza first appeared on UK Defence Journal.", + "dc:creator": "Tom Dunlop", + "comments": "https://ukdefencejournal.org.uk/british-military-provides-further-support-to-get-aid-into-gaza/#comments", + "content": "

The fourth Royal Air Force transport aircraft carrying humanitarian aid recently landed in Al Arish, Egypt, for transfer to Gaza.

\nThe post British military provides further support to get aid into Gaza first appeared on UK Defence Journal.", + "contentSnippet": "The fourth Royal Air Force transport aircraft carrying humanitarian aid recently landed in Al Arish, Egypt, for transfer to Gaza.\nBritish military provides further support to get aid into Gaza first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46932", + "categories": ["Air"], + "isoDate": "2023-11-25T08:30:33.000Z" + }, + { + "creator": "George Allison", + "title": "F-35B air collision avoidance system integration pushed back", + "link": "https://ukdefencejournal.org.uk/f-35b-air-collision-avoidance-system-integration-pushed-back/", + "pubDate": "Fri, 24 Nov 2023 13:30:49 +0000", + "content:encoded": "

A Freedom of Information request has brought to light the delayed implementation of the Air Collision Avoidance System (ACAS) in the F-35B aircraft.

\n

A document attached to the FOI request, a 2021 Air System Safety Case \u2013 Safety Statement for Lightning, details that the introduction of ACAS, initially set for 2024, has been pushed back to 2028 for Manual ACAS and 2029 for Auto ACAS.

\n

“F-35 Air Collision Avoidance System (ACAS) was scheduled for introduction into service in 2024. Although ACAS is regarded as a high priority by the UK, the US Services (and therefore the F-35 Programme) regard it as very low priority and it has recently been deferred. Forecast integration dates are now Jan 2028 for Manual ACAS and Jan 2029 for Auto ACAS.”

\n

The document also states:

\n

“I am content that the Air Safety Risks to Life (RtL) associated with the routine operation of Lng are currently managed and mitigated such that they remain at least ALARP and Tolerable.”

\n

The principle of ‘As Low As Reasonably Practicable’ (ALARP) dictates that risks should be managed to the lowest feasible level while remaining below the maximum allowable risk.

\n

In a 2019 inquiry, Douglas Ross, Conservative MP from Moray, questioned the Ministry of Defence on how the F-35 Lightning aircraft complied with specific aviation safety standards. In response, Stuart Andrew, then Parliamentary Under-Secretary of State, stated, “The UK is, however, working with the US to develop an automated Air Collision Avoidance System for the F-35. Prior to this integration, we remain fully confident that the F-35’s advanced situational awareness enables it to operate safely.”

\n

The delayed integration of ACAS raises questions about the continued adherence to this principle and whether the current measures without ACAS are sufficient to ensure the safety of the aircraft and its operators.

The post F-35B air collision avoidance system integration pushed back first appeared on UK Defence Journal.", + "content:encodedSnippet": "A Freedom of Information request has brought to light the delayed implementation of the Air Collision Avoidance System (ACAS) in the F-35B aircraft.\nA document attached to the FOI request, a 2021 Air System Safety Case \u2013 Safety Statement for Lightning, details that the introduction of ACAS, initially set for 2024, has been pushed back to 2028 for Manual ACAS and 2029 for Auto ACAS.\n\u201cF-35 Air Collision Avoidance System (ACAS) was scheduled for introduction into service in 2024. Although ACAS is regarded as a high priority by the UK, the US Services (and therefore the F-35 Programme) regard it as very low priority and it has recently been deferred. Forecast integration dates are now Jan 2028 for Manual ACAS and Jan 2029 for Auto ACAS.\u201d\nThe document also states:\n\u201cI am content that the Air Safety Risks to Life (RtL) associated with the routine operation of Lng are currently managed and mitigated such that they remain at least ALARP and Tolerable.\u201d\nThe principle of \u2018As Low As Reasonably Practicable\u2019 (ALARP) dictates that risks should be managed to the lowest feasible level while remaining below the maximum allowable risk.\nIn a 2019 inquiry, Douglas Ross, Conservative MP from Moray, questioned the Ministry of Defence on how the F-35 Lightning aircraft complied with specific aviation safety standards. In response, Stuart Andrew, then Parliamentary Under-Secretary of State, stated, \u201cThe UK is, however, working with the US to develop an automated Air Collision Avoidance System for the F-35. Prior to this integration, we remain fully confident that the F-35\u2019s advanced situational awareness enables it to operate safely.\u201d\nThe delayed integration of ACAS raises questions about the continued adherence to this principle and whether the current measures without ACAS are sufficient to ensure the safety of the aircraft and its operators.\nThe post F-35B air collision avoidance system integration pushed back first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/f-35b-air-collision-avoidance-system-integration-pushed-back/#comments", + "content": "

The Air Collision Avoidance System for the F-35B was to be introduced in 2024, it has now been pushed back to 2028.

\nThe post F-35B air collision avoidance system integration pushed back first appeared on UK Defence Journal.", + "contentSnippet": "The Air Collision Avoidance System for the F-35B was to be introduced in 2024, it has now been pushed back to 2028.\nF-35B air collision avoidance system integration pushed back first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46914", + "categories": ["Air"], + "isoDate": "2023-11-24T13:30:49.000Z" + }, + { + "creator": "George Allison", + "title": "Drone video shows status of ferries at Port Glasgow", + "link": "https://ukdefencejournal.org.uk/drone-video-shows-status-of-ferries-at-port-glasgow/", + "pubDate": "Thu, 23 Nov 2023 13:00:33 +0000", + "content:encoded": "

A recent drone video provides an overview of the ongoing construction of two vital ferries at the Ferguson Marine shipyard in Port Glasgow.

\n

The Glen Sannox and Glen Rosa were originally due to be in service in 2018 at a total price of \u00a397m. The cost for completing the Glen Sannox has risen to \u00a3130m and for the Glen Rosa it has increased to \u00a3110m.

\n
\n

I visited Port Glasgow recently to take a look at the progress of MV Glen Sannox and the MV Glen Rosa with my drone. The two ferries, previously plagued by delays, are starting to look the part now. pic.twitter.com/zR1uE3nIAh

\n

— George Allison (@geoallison) November 22, 2023

\n

\n

But today, we’re just looking at their material state. They seem to be looking the part now, at least externally.

\n

MV Glen Sannox

\n

The MV Glen Sannox, moored upon the Clyde, bears the semblance of readiness, with her exterior suggesting near completion. However, her outward readiness belies the extensive internal work that remains, particularly in the wake of a failed safety audit by the Maritime and Coastguard Agency (MCA) in September 2023.

\n

The MCA\u2019s insistence on additional staircases for safety certification precipitated a delay, pushing the sea trials of Glen Sannox to the first quarter of 2024 and casting doubt on her readiness for the forthcoming summer season.

\n

\"\"

\n

Cabinet Secretary Neil Gray has articulated the MCA’s integral role in the early phases of vessel delivery, particularly for those of pioneering design. The process of certification has been one of partnership and refinement, with the MCA’s input leading to vital design modifications that, whilst introducing delays and additional costs, are essential for the vessel\u2019s safety and compliance.

\n

The result of these modifications has been a reduction in passenger capacity from the initial 1,000 to 852, a necessary concession to meet the MCA\u2019s stringent safety standards. In March 2023, it was reported that further delays have pushed the vessel’s entry into service to Autumn of 2023; in August 2023, a further delay to the first quarter of 2024 was announced.

\n

MV Glen Rosa

\n

The sister ship, MV Glen Rosa, shares a similar story. It will also undergo design modifications following the Glen Sannox template to meet MCA standards. Her exterior, while looking close to completion with the main hull and superstructure in place, is yet to be finalised, as indicated by the extensive scaffolding that envelopes her.

\n

The ferry’s external aspects, from the paintwork to the installation of safety equipment, are in the midst of being completed, but her readiness for service is still some way off.

\n

\"\"

\n

Internally, there remains a substantial amount of fit-out and systems installation to be done before she can be deemed ready for operational duties. This includes the intricate fitting of dual W\u00e4rtsil\u00e4 34DF diesel engines, controllable pitch propellers, and the trio of bow thrusters that will eventually enable her to reach service speeds of 14.5 knots.

\n

\"\"

\n

The Glen Rosa, her name chosen by public vote and embroiled in what’s been dubbed the “ferry fiasco,” reflects the complexities and heightened scrutiny of modern shipbuilding.

\n

With her finished tonnage at 1,273 DWT and a length of over 100 meters, she’s set to be a significant vessel within the CalMac fleet, intended to carry 1,000 passengers and 127 cars or 16 HGVs, though currently licensed for 852 passengers.

\n

\"\"

\n

The vessel’s recent milestones includes the completion of design issues involving below-deck escape trunks and the announcement of a slipway launch and naming ceremony set for March 12, 2024. The expected delivery date for Glen Rosa is May 31, 2025, with an estimated cost of \u00a3100 million.

\n

Looking Ahead

\n

The future of Ferguson Marine (Port Glasgow) Ltd is under careful consideration, with plans to refine investment proposals while adhering to subsidy control rules and demonstrating value for money. The Scottish Government say it is committed to a sustainable future for the shipyard, balancing the interests of the workforce, local communities, and the broader Scottish economy.

\n

David Tydeman, CEO of Ferguson Marine in Port Glasgow, expressed his hope to secure substantial work from the Royal Navy’s Type 26 Frigate programme, potentially utilising over half the yard’s capacity. Despite the uncertainties surrounding the future of the shipyard, Tydeman was confident about Royal Navy work supporting the yard during a recent Public Audit Committee meeting.

\n

“We have been planning for some time,” he said, “and I am delighted that we were able to sign a framework agreement with BAE Systems.”

\n

According to Tydeman, the agreement with BAE Systems would help address the workforce surplus at the Ferguson Marine yard as work on two ferries progressively winds down over the next 12 to 18 months. He further added, “Both those yards (BAE and Babcock) have more work than they can do on their sites\u2014as I said, this is a buoyant time in the shipbuilding market\u2014and they need supporting contractors.”

\n

Ferguson Marine started work on the first sections for a Type 26 Frigate earlier this year.

\n

In terms of scale, Tydeman compared the additional, potential future work from the Type 26 programme to ongoing projects at Ferguson. “Hull 802 will be about 3,000 tonnes of weight when she launches down the slipway later this year, and a bow block unit for type 26 ship 4\u2014which we hope to do with BAE\u2014will be about 900 tonnes,” he stated. Elaborating on this, he said “A programme of work with BAE can use more than half the capacity of the yard, and I hope that we can complement that with the CMAL small ferry programme.”

\n

Additionally, he mentioned that the company is actively tracking opportunities in the market. “We have a small commercial team that is tracking the market and we have been putting in proposals to the patrol craft market,” Tydeman disclosed.

\n

There are also ongoing discussions with operators in the wind farm market, providing potential long-term work. “The first of those ships could be built in 2027. That does not fill the immediate gap, but…that is a very significant opportunity for us in the future.”

The post Drone video shows status of ferries at Port Glasgow first appeared on UK Defence Journal.", + "content:encodedSnippet": "A recent drone video provides an overview of the ongoing construction of two vital ferries at the Ferguson Marine shipyard in Port Glasgow.\nThe Glen Sannox and Glen Rosa were originally due to be in service in 2018 at a total price of \u00a397m. The cost for completing the Glen Sannox has risen to \u00a3130m and for the Glen Rosa it has increased to \u00a3110m.\nI visited Port Glasgow recently to take a look at the progress of MV Glen Sannox and the MV Glen Rosa with my drone. The two ferries, previously plagued by delays, are starting to look the part now. pic.twitter.com/zR1uE3nIAh\n\u2014 George Allison (@geoallison) November 22, 2023\n\n\nBut today, we\u2019re just looking at their material state. They seem to be looking the part now, at least externally.\nMV Glen Sannox\nThe MV Glen Sannox, moored upon the Clyde, bears the semblance of readiness, with her exterior suggesting near completion. However, her outward readiness belies the extensive internal work that remains, particularly in the wake of a failed safety audit by the Maritime and Coastguard Agency (MCA) in September 2023.\nThe MCA\u2019s insistence on additional staircases for safety certification precipitated a delay, pushing the sea trials of Glen Sannox to the first quarter of 2024 and casting doubt on her readiness for the forthcoming summer season.\n\nCabinet Secretary Neil Gray has articulated the MCA\u2019s integral role in the early phases of vessel delivery, particularly for those of pioneering design. The process of certification has been one of partnership and refinement, with the MCA\u2019s input leading to vital design modifications that, whilst introducing delays and additional costs, are essential for the vessel\u2019s safety and compliance.\nThe result of these modifications has been a reduction in passenger capacity from the initial 1,000 to 852, a necessary concession to meet the MCA\u2019s stringent safety standards. In March 2023, it was reported that further delays have pushed the vessel\u2019s entry into service to Autumn of 2023; in August 2023, a further delay to the first quarter of 2024 was announced.\nMV Glen Rosa\nThe sister ship, MV Glen Rosa, shares a similar story. It will also undergo design modifications following the Glen Sannox template to meet MCA standards. Her exterior, while looking close to completion with the main hull and superstructure in place, is yet to be finalised, as indicated by the extensive scaffolding that envelopes her.\nThe ferry\u2019s external aspects, from the paintwork to the installation of safety equipment, are in the midst of being completed, but her readiness for service is still some way off.\n\nInternally, there remains a substantial amount of fit-out and systems installation to be done before she can be deemed ready for operational duties. This includes the intricate fitting of dual W\u00e4rtsil\u00e4 34DF diesel engines, controllable pitch propellers, and the trio of bow thrusters that will eventually enable her to reach service speeds of 14.5 knots.\n\nThe Glen Rosa, her name chosen by public vote and embroiled in what\u2019s been dubbed the \u201cferry fiasco,\u201d reflects the complexities and heightened scrutiny of modern shipbuilding.\nWith her finished tonnage at 1,273 DWT and a length of over 100 meters, she\u2019s set to be a significant vessel within the CalMac fleet, intended to carry 1,000 passengers and 127 cars or 16 HGVs, though currently licensed for 852 passengers.\n\nThe vessel\u2019s recent milestones includes the completion of design issues involving below-deck escape trunks and the announcement of a slipway launch and naming ceremony set for March 12, 2024. The expected delivery date for Glen Rosa is May 31, 2025, with an estimated cost of \u00a3100 million.\nLooking Ahead\nThe future of Ferguson Marine (Port Glasgow) Ltd is under careful consideration, with plans to refine investment proposals while adhering to subsidy control rules and demonstrating value for money. The Scottish Government say it is committed to a sustainable future for the shipyard, balancing the interests of the workforce, local communities, and the broader Scottish economy.\nDavid Tydeman, CEO of Ferguson Marine in Port Glasgow, expressed his hope to secure substantial work from the Royal Navy\u2019s Type 26 Frigate programme, potentially utilising over half the yard\u2019s capacity. Despite the uncertainties surrounding the future of the shipyard, Tydeman was confident about Royal Navy work supporting the yard during a recent Public Audit Committee meeting.\n\u201cWe have been planning for some time,\u201d he said, \u201cand I am delighted that we were able to sign a framework agreement with BAE Systems.\u201d\nAccording to Tydeman, the agreement with BAE Systems would help address the workforce surplus at the Ferguson Marine yard as work on two ferries progressively winds down over the next 12 to 18 months. He further added, \u201cBoth those yards (BAE and Babcock) have more work than they can do on their sites\u2014as I said, this is a buoyant time in the shipbuilding market\u2014and they need supporting contractors.\u201d\nFerguson Marine started work on the first sections for a Type 26 Frigate earlier this year.\nIn terms of scale, Tydeman compared the additional, potential future work from the Type 26 programme to ongoing projects at Ferguson. \u201cHull 802 will be about 3,000 tonnes of weight when she launches down the slipway later this year, and a bow block unit for type 26 ship 4\u2014which we hope to do with BAE\u2014will be about 900 tonnes,\u201d he stated. Elaborating on this, he said \u201cA programme of work with BAE can use more than half the capacity of the yard, and I hope that we can complement that with the CMAL small ferry programme.\u201d\nAdditionally, he mentioned that the company is actively tracking opportunities in the market. \u201cWe have a small commercial team that is tracking the market and we have been putting in proposals to the patrol craft market,\u201d Tydeman disclosed.\nThere are also ongoing discussions with operators in the wind farm market, providing potential long-term work. \u201cThe first of those ships could be built in 2027. That does not fill the immediate gap, but\u2026that is a very significant opportunity for us in the future.\u201d\nThe post Drone video shows status of ferries at Port Glasgow first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/drone-video-shows-status-of-ferries-at-port-glasgow/#comments", + "content": "

A recent drone video provides a striking view of the ongoing construction of two vital but troubled ferries at the Ferguson Marine shipyard in Port Glasgow.

\nThe post Drone video shows status of ferries at Port Glasgow first appeared on UK Defence Journal.", + "contentSnippet": "A recent drone video provides a striking view of the ongoing construction of two vital but troubled ferries at the Ferguson Marine shipyard in Port Glasgow.\nDrone video shows status of ferries at Port Glasgow first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46907", + "categories": ["Sea"], + "isoDate": "2023-11-23T13:00:33.000Z" + }, + { + "creator": "George Allison", + "title": "BAE to equip Australian Hunter class frigates with Mk 45 guns", + "link": "https://ukdefencejournal.org.uk/bae-to-equip-australian-hunter-class-frigates-with-mk-45-guns/", + "pubDate": "Tue, 21 Nov 2023 18:00:58 +0000", + "content:encoded": "

BAE Systems has received a contract to deliver multiple shipsets of the Mk 45 Medium Caliber Gun and automated Ammunition Handling System (AHS) for the Royal Australian Navy\u2019s new Hunter class frigates.

\n

“We are proud to partner with BAE Systems Maritime Australia to deliver the Mk 45 gun system and Ammunition Handling System to the Royal Australian Navy,” said Brent Butcher, vice president and general manager of Weapon Systems at BAE Systems, Inc.

\n

“The highly reliable Mk 45 system maximizes the lethality of the Hunter class frigates, offers the capability to integrate advanced munitions, and supports additional future technology upgrades. With this system fielded on 11 fleets across the globe, it has proven it offers high-reliability.”

\n

The Mk 45 gun system combines the 5-inch, 62-caliber Mk 45 Mod 4A naval gun with a fully automated AHS that continuously supplies the gun with ammunition, in high sea state conditions, without assistance from the crew.

\n

On their website, BAE say that this automated gun system increases Sailor productivity, reduces risk to Sailor safety, and increases the operational capability of the Mk 45 at sea.

\n

Work on the contract will begin in 2023 and finish in 2036. Engineering work will be completed in Minneapolis, Minnesota and production will occur in Louisville, Kentucky.

The post BAE to equip Australian Hunter class frigates with Mk 45 guns first appeared on UK Defence Journal.", + "content:encodedSnippet": "BAE Systems has received a contract to deliver multiple shipsets of the Mk 45 Medium Caliber Gun and automated Ammunition Handling System (AHS) for the Royal Australian Navy\u2019s new Hunter class frigates.\n\u201cWe are proud to partner with BAE Systems Maritime Australia to deliver the Mk 45 gun system and Ammunition Handling System to the Royal Australian Navy,\u201d said Brent Butcher, vice president and general manager of Weapon Systems at BAE Systems, Inc.\n\u201cThe highly reliable Mk 45 system maximizes the lethality of the Hunter class frigates, offers the capability to integrate advanced munitions, and supports additional future technology upgrades. With this system fielded on 11 fleets across the globe, it has proven it offers high-reliability.\u201d\nThe Mk 45 gun system combines the 5-inch, 62-caliber Mk 45 Mod 4A naval gun with a fully automated AHS that continuously supplies the gun with ammunition, in high sea state conditions, without assistance from the crew.\nOn their website, BAE say that this automated gun system increases Sailor productivity, reduces risk to Sailor safety, and increases the operational capability of the Mk 45 at sea.\nWork on the contract will begin in 2023 and finish in 2036. Engineering work will be completed in Minneapolis, Minnesota and production will occur in Louisville, Kentucky.\nThe post BAE to equip Australian Hunter class frigates with Mk 45 guns first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/bae-to-equip-australian-hunter-class-frigates-with-mk-45-guns/#comments", + "content": "

BAE Systems has received a contract to deliver multiple shipsets of the Mk 45 Medium Caliber Gun for the Royal Australian Navy\u2019s new Hunter class frigates.

\nThe post BAE to equip Australian Hunter class frigates with Mk 45 guns first appeared on UK Defence Journal.", + "contentSnippet": "BAE Systems has received a contract to deliver multiple shipsets of the Mk 45 Medium Caliber Gun for the Royal Australian Navy\u2019s new Hunter class frigates.\nBAE to equip Australian Hunter class frigates with Mk 45 guns first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46882", + "categories": ["News"], + "isoDate": "2023-11-21T18:00:58.000Z" + }, + { + "creator": "George Allison", + "title": "British surveillance aircraft operating near Israel", + "link": "https://ukdefencejournal.org.uk/british-surveillance-aircraft-operating-near-israel/", + "pubDate": "Sun, 15 Oct 2023 15:39:40 +0000", + "content:encoded": "

A British RC-135 \u2018Rivet Joint\u2019, an electronic surveillance aircraft, has conducted a patrol near Israel, the Gaza Strip and Lebanon.

\n

The role of the aircraft is to conduct electronic surveillance and gather intelligence.

\n
\n

A British RC-135 \u2018Rivet Joint\u2019 electronic surveillance aircraft has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon today. Visible to the west of the RC-135 are British Voyager tanker/transport aircraft. pic.twitter.com/Qn2SSQoaF7

\n

— UK Defence Journal (@UKDefJournal) October 15, 2023

\n

\n

The deployment of these aircraft to this area is unusual, although not unprecedented and not surprising, given previous statements of support for Israel from the UK Government.

\n

UK ships and aircraft deploying to waters close to Israel

\n

\n

It should be noted that these flights are not secret, the aircraft themselves are transmitting their location in the knowledge that services like FlightRadar24 will show their location. If it was a secret, I would not know.

\n

What does the RC-135W do?

\n

According to the Royal Air Force website, the RC-135W Rivet Joint is a dedicated electronic surveillance aircraft that can be employed in all theatres on strategic and tactical missions. Its sensors \u2018soak up\u2019 electronic emissions from communications, radar and other systems.

\n

\u201cRC-135W Rivet Joint employs multidiscipline Weapons System Officer (WSO) and Weapons System Operator (WSOp) specialists whose mission is to survey elements of the electromagnetic spectrum in order to derive intelligence for commanders.\u201d

\n

The Royal Air Force say that Rivet Joint has been deployed extensively for Operation Shader and on other operational taskings. It had been formally named Airseeker, but is almost universally known in service as the RC-135W Rivet Joint.

\n

Some general uses of the RC-135W include:

\n
    \n
  • Signal Intelligence (SIGINT): The aircraft collects electronic signals, such as communications, radar, and other systems, to gather intelligence on adversaries’ capabilities and intentions.
  • \n
  • Strategic Deterrence: By conducting visible reconnaissance flights near areas of interest, the UK sends a clear message to potential adversaries that their activities are being closely monitored. This serves as a deterrent, helping to maintain regional stability and prevent conflicts.
  • \n
  • Support to Diplomacy: Intelligence gathered by the RC-135W can play a crucial role in informing diplomatic efforts and shaping foreign policy. By providing accurate and timely information, the aircraft helps decision-makers navigate complex geopolitical situations.
  • \n
\n

The UK operates three RC-135W Rivet Joint aircraft.

The post British surveillance aircraft operating near Israel first appeared on UK Defence Journal.", + "content:encodedSnippet": "A British RC-135 \u2018Rivet Joint\u2019, an electronic surveillance aircraft, has conducted a patrol near Israel, the Gaza Strip and Lebanon.\nThe role of the aircraft is to conduct electronic surveillance and gather intelligence.\nA British RC-135 \u2018Rivet Joint\u2019 electronic surveillance aircraft has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon today. Visible to the west of the RC-135 are British Voyager tanker/transport aircraft. pic.twitter.com/Qn2SSQoaF7\n\u2014 UK Defence Journal (@UKDefJournal) October 15, 2023\n\n\nThe deployment of these aircraft to this area is unusual, although not unprecedented and not surprising, given previous statements of support for Israel from the UK Government.\nUK ships and aircraft deploying to waters close to Israel\n\n\nIt should be noted that these flights are not secret, the aircraft themselves are transmitting their location in the knowledge that services like FlightRadar24 will show their location. If it was a secret, I would not know.\nWhat does the RC-135W do?\nAccording to the Royal Air Force website, the RC-135W Rivet Joint is a dedicated electronic surveillance aircraft that can be employed in all theatres on strategic and tactical missions. Its sensors \u2018soak up\u2019 electronic emissions from communications, radar and other systems.\n\u201cRC-135W Rivet Joint employs multidiscipline Weapons System Officer (WSO) and Weapons System Operator (WSOp) specialists whose mission is to survey elements of the electromagnetic spectrum in order to derive intelligence for commanders.\u201d\nThe Royal Air Force say that Rivet Joint has been deployed extensively for Operation Shader and on other operational taskings. It had been formally named Airseeker, but is almost universally known in service as the RC-135W Rivet Joint.\nSome general uses of the RC-135W include:\nSignal Intelligence (SIGINT): The aircraft collects electronic signals, such as communications, radar, and other systems, to gather intelligence on adversaries\u2019 capabilities and intentions.\nStrategic Deterrence: By conducting visible reconnaissance flights near areas of interest, the UK sends a clear message to potential adversaries that their activities are being closely monitored. This serves as a deterrent, helping to maintain regional stability and prevent conflicts.\nSupport to Diplomacy: Intelligence gathered by the RC-135W can play a crucial role in informing diplomatic efforts and shaping foreign policy. By providing accurate and timely information, the aircraft helps decision-makers navigate complex geopolitical situations.\nThe UK operates three RC-135W Rivet Joint aircraft.\nThe post British surveillance aircraft operating near Israel first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/british-surveillance-aircraft-operating-near-israel/#comments", + "content": "

A British RC-135 \u2018Rivet Joint\u2019, an electronic surveillance aircraft, has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon.

\nThe post British surveillance aircraft operating near Israel first appeared on UK Defence Journal.", + "contentSnippet": "A British RC-135 \u2018Rivet Joint\u2019, an electronic surveillance aircraft, has conducted a patrol near #Israel, the #Gaza Strip and #Lebanon.\nBritish surveillance aircraft operating near Israel first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46536", + "categories": ["Air"], + "isoDate": "2023-10-15T15:39:40.000Z" + }, + { + "creator": "George Allison", + "title": "The Status of the British Fleet", + "link": "https://ukdefencejournal.org.uk/the-status-of-the-british-fleet/", + "pubDate": "Sun, 15 Oct 2023 06:30:16 +0000", + "content:encoded": "

In this snapshot of the Royal Navy and RFA’s current fleet status, we see the status of individual ships and what they’re up to.

\n

From the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class.

\n

A special word of gratitude goes to the diligent efforts of Open Source Intelligence analyst and renowned UK naval commentator, Britsky (@TBrit90). His detailed work and commitment to transparency in naval affairs have proven invaluable in compiling this report. We deeply appreciate his permission to utilise the information for this article, providing our readers with an insightful glimpse into the state of the Royal Navy and RFA. His contributions to naval discourse continue to enhance public understanding and foster informed discussions.”

\n

Of the Royal Navy and RFA surface fleet, approximately 29.41% of the ships are currently inactive, encompassing vessels undergoing maintenance, refit, and other non-operational statuses. It’s important to note that the article here does not include information on the UK’s nuclear submarines, which form a critical component of the nation’s naval defence strategy. The information can be found in the original data, though.

\n
\n

pic.twitter.com/Jkyk1X8qe4

\n

— Britsky (@TBrit90) October 15, 2023

\n

\n

Anyway, here’s the breakdown.

\n

Queen Elizabeth Class aircraft carriers

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 2
  • \n
  • Currently Active: 2 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Queen Elizabeth: Currently deployed in the North Sea as part of the Carrier Strike Group (CSG).
  • \n
  • HMS Prince of Wales: Deployed to the US, currently undergoing trials.
  • \n
\n

Albion Class landing platform docks

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 2
  • \n
  • Currently Active: 0 (0% of the class)
  • \n
  • Currently Inactive: 2 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Albion: Currently inactive, with its location in Devonport.
  • \n
  • HMS Bulwark: Also located in Devonport and currently marked as inactive. However, it’s worth noting that HMS Bulwark is in the process of reactivation.
  • \n
\n

Type 45 Destroyers

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 6
  • \n
  • Currently Active: 3 (50% of the class)
  • \n
  • Currently Inactive: 3 (50% of the class)
  • \n
\n

Reasons for Inactivity:

\n
    \n
  • Undergoing Refit: 3
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Daring: In refit, currently in Portsmouth.
  • \n
  • HMS Dauntless: Active, deployed to the US for Humanitarian Assistance and Disaster Relief (HADR) operations.
  • \n
  • HMS Diamond: Active, deployed in the North Sea as part of the Carrier Strike Group (CSG).
  • \n
  • HMS Dragon: In refit, currently in Portsmouth.
  • \n
  • HMS Defender: In refit in Portsmouth, with upgrades for the Common Anti-Air Modular Missile (CAMM).
  • \n
  • HMS Duncan: Active, deployed in the Mediterranean as part of the Standing NATO Maritime Group 2 (SNMG2).
  • \n
\n

Type 23 Frigates

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 11
  • \n
  • Currently Active: 5 (45% of the class)
  • \n
  • Currently Inactive: 6 (55% of the class)
  • \n
\n

Reasons for Inactivity:

\n
    \n
  • Undergoing Refit: 4
  • \n
  • Undergoing Maintenance: 2
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Argyll: In refit, currently in Devonport.
  • \n
  • HMS Lancaster: Active, deployed in the Persian Gulf.
  • \n
  • HMS Iron Duke: Active in UK waters.
  • \n
  • HMS Westminster: Inactive, stationed at Devonport.
  • \n
  • HMS Northumberland: Undergoing maintenance at Devonport.
  • \n
  • HMS Richmond: Undergoing maintenance at Devonport.
  • \n
  • HMS Somerset: Undergoing maintenance at Devonport.
  • \n
  • HMS Sutherland: In refit at Devonport.
  • \n
  • HMS Kent: Active in UK waters.
  • \n
  • HMS Portland: Active in UK waters, serving in the TAPS role, primarily monitoring submarine activity around HMNB Clyde.
  • \n
  • HMS St Albans: In refit at Devonport.
  • \n
\n

River Class Offshore Patrol Vessels

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 8
  • \n
  • Currently Active: 8 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Tyne: Active, patrolling UK waters.
  • \n
  • HMS Severn: Active in UK waters, primarily for training purposes.
  • \n
  • HMS Mersey: Active, patrolling UK waters.
  • \n
  • HMS Forth: Deployed in the Atlantic, serving as a Falkland Islands Patrol Vessel (FIPV).
  • \n
  • HMS Medway: Deployed in the Falklands, serving as a Falkland Islands Patrol Vessel (FIPV).
  • \n
  • HMS Trent: Deployed in West Africa, operating from Gibraltar.
  • \n
  • HMS Tamar: Deployed to Australia, with operations in the Pacific region.
  • \n
  • HMS Spey: Deployed in the South China Sea (SCS), operating in the Pacific region.
  • \n
\n

Hunt Class Mine Countermeasures Vessels

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 6
  • \n
  • Currently Active: 3 (50% of the class)
  • \n
  • Currently Inactive: 3 (50% of the class)
  • \n
\n

Reasons for Inactivity:

\n
    \n
  • Undergoing Refit: 2
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Ledbury: In refit, currently in Portsmouth.
  • \n
  • HMS Cattistock: Active, operating in UK waters.
  • \n
  • HMS Brocklesby: In refit, currently in Portsmouth.
  • \n
  • HMS Middleton: Deployed in the Persian Gulf as part of Operation Kipion.
  • \n
  • HMS Chiddingfold: Deployed in the Persian Gulf as part of Operation Kipion.
  • \n
  • HMS Hurworth: Active, operating in UK waters.
  • \n
\n

Sandown Class Mine Countermeasures Vessels

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 2
  • \n
  • Currently Active: 2 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Penzance: Active, operating in UK waters from the Clyde.
  • \n
  • HMS Bangor: Deployed in the Persian Gulf as part of Operation Kipion.
  • \n
\n

Archer Class Patrol Boats

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 16
  • \n
  • Currently Active: 15 (93.75% of the class)
  • \n
  • Currently Inactive: 1 (6.25% of the class)
  • \n
\n

Reasons for Inactivity:

\n
    \n
  • Undergoing Maintenance: 1
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Archer: Undergoing maintenance in South Shields.
  • \n
  • HMS Biter: Active, operating from Liverpool.
  • \n
  • HMS Smiter: Active, operating from Portsmouth.
  • \n
  • HMS Pursuer: Active, operating from Glasgow.
  • \n
  • HMS Blazer: Active, operating from Portsmouth.
  • \n
  • HMS Dasher: Active, operating from Portsmouth.
  • \n
  • HMS Puncher: Active, operating from Portsmouth.
  • \n
  • HMS Charger: Active, operating from Liverpool.
  • \n
  • HMS Ranger: Active, operating from Portsmouth.
  • \n
  • HMS Trumpeter: Active, operating from Ipswich.
  • \n
  • HMS Express: Active, operating from Cardiff.
  • \n
  • HMS Example: Active, operating from Gateshead.
  • \n
  • HMS Explorer: Active, operating from Hull.
  • \n
  • HMS Exploit: Active, operating from Portsmouth.
  • \n
  • HMS Tracker: Active, stationed at Clyde.
  • \n
  • HMS Raider: Active, stationed at Clyde.
  • \n
\n

Cutlass Class Patrol Boats

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 2
  • \n
  • Currently Active: 2 (100% of the class)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Cutlass: Active, stationed and operating in Gibraltar.
  • \n
  • HMS Dagger: Active, stationed and operating in Gibraltar.
  • \n
\n

Royal Navy Survey Vessels

\n

Type & Role: The Royal Navy’s survey vessels are specialised ships of various classes designed for the crucial task of hydrographic and oceanographic surveying.

\n

Composition & Operational Readiness:

\n
    \n
  • Total Number: 3
  • \n
  • Currently Active: 3 (100% of the type)
  • \n
\n

Status of Individual Ships:

\n
    \n
  • HMS Scott: An ocean survey vessel, currently active and operating in UK waters.
  • \n
  • HMS Protector: A polar research and survey vessel, currently active and operating in UK waters.
  • \n
  • HMS Magpie: A hydrographic survey vessel, currently active and operating in UK waters.
  • \n
\n

Royal Fleet Auxiliary (RFA)

\n

Tide Class fleet replenishment tankers

\n
    \n
  • Active: 2 (RFA Tidespring, RFA Tideforce)
  • \n
  • Inactive: 2 (RFA Tiderace, RFA Tidesurge under refit)
  • \n
\n

Wave Class fleet replenishment tanks

\n
    \n
  • Active: 0
  • \n
  • Inactive:
  • \n
  • \u00a02 (RFA Wave Knight, RFA Wave Ruler)
  • \n
\n

Fort Class stores ship

\n
    \n
  • Active: 0
  • \n
  • Inactive: 1 (RFA Fort Victoria)
  • \n
\n

Bay Class landing ship docks

\n
    \n
  • Active: 3 (RFA Lyme Bay, RFA Mounts Bay, RFA Cardigan Bay)
  • \n
\n

Other major vessels:

\n
    \n
  • RFA Argus: Active supporting the Littoral Response Group (South) (LRG(S)).
  • \n
  • RFA Proteus: Currently active in the UK.
  • \n
  • RFA Stirling Castle: Active in the UK.
  • \n
The post The Status of the British Fleet first appeared on UK Defence Journal.", + "content:encodedSnippet": "In this snapshot of the Royal Navy and RFA\u2019s current fleet status, we see the status of individual ships and what they\u2019re up to.\nFrom the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class.\nA special word of gratitude goes to the diligent efforts of Open Source Intelligence analyst and renowned UK naval commentator, Britsky (@TBrit90). His detailed work and commitment to transparency in naval affairs have proven invaluable in compiling this report. We deeply appreciate his permission to utilise the information for this article, providing our readers with an insightful glimpse into the state of the Royal Navy and RFA. His contributions to naval discourse continue to enhance public understanding and foster informed discussions.\u201d\nOf the Royal Navy and RFA surface fleet, approximately 29.41% of the ships are currently inactive, encompassing vessels undergoing maintenance, refit, and other non-operational statuses. It\u2019s important to note that the article here does not include information on the UK\u2019s nuclear submarines, which form a critical component of the nation\u2019s naval defence strategy. The information can be found in the original data, though.\npic.twitter.com/Jkyk1X8qe4\n\u2014 Britsky (@TBrit90) October 15, 2023\n\n\nAnyway, here\u2019s the breakdown.\nQueen Elizabeth Class aircraft carriers\nComposition & Operational Readiness:\nTotal Number: 2\nCurrently Active: 2 (100% of the class)\nStatus of Individual Ships:\nHMS Queen Elizabeth: Currently deployed in the North Sea as part of the Carrier Strike Group (CSG).\nHMS Prince of Wales: Deployed to the US, currently undergoing trials.\nAlbion Class landing platform docks\nComposition & Operational Readiness:\nTotal Number: 2\nCurrently Active: 0 (0% of the class)\nCurrently Inactive: 2 (100% of the class)\nStatus of Individual Ships:\nHMS Albion: Currently inactive, with its location in Devonport.\nHMS Bulwark: Also located in Devonport and currently marked as inactive. However, it\u2019s worth noting that HMS Bulwark is in the process of reactivation.\nType 45 Destroyers\nComposition & Operational Readiness:\nTotal Number: 6\nCurrently Active: 3 (50% of the class)\nCurrently Inactive: 3 (50% of the class)\nReasons for Inactivity:\nUndergoing Refit: 3\nStatus of Individual Ships:\nHMS Daring: In refit, currently in Portsmouth.\nHMS Dauntless: Active, deployed to the US for Humanitarian Assistance and Disaster Relief (HADR) operations.\nHMS Diamond: Active, deployed in the North Sea as part of the Carrier Strike Group (CSG).\nHMS Dragon: In refit, currently in Portsmouth.\nHMS Defender: In refit in Portsmouth, with upgrades for the Common Anti-Air Modular Missile (CAMM).\nHMS Duncan: Active, deployed in the Mediterranean as part of the Standing NATO Maritime Group 2 (SNMG2).\nType 23 Frigates\nComposition & Operational Readiness:\nTotal Number: 11\nCurrently Active: 5 (45% of the class)\nCurrently Inactive: 6 (55% of the class)\nReasons for Inactivity:\nUndergoing Refit: 4\nUndergoing Maintenance: 2\nStatus of Individual Ships:\nHMS Argyll: In refit, currently in Devonport.\nHMS Lancaster: Active, deployed in the Persian Gulf.\nHMS Iron Duke: Active in UK waters.\nHMS Westminster: Inactive, stationed at Devonport.\nHMS Northumberland: Undergoing maintenance at Devonport.\nHMS Richmond: Undergoing maintenance at Devonport.\nHMS Somerset: Undergoing maintenance at Devonport.\nHMS Sutherland: In refit at Devonport.\nHMS Kent: Active in UK waters.\nHMS Portland: Active in UK waters, serving in the TAPS role, primarily monitoring submarine activity around HMNB Clyde.\nHMS St Albans: In refit at Devonport.\nRiver Class Offshore Patrol Vessels\nComposition & Operational Readiness:\nTotal Number: 8\nCurrently Active: 8 (100% of the class)\nStatus of Individual Ships:\nHMS Tyne: Active, patrolling UK waters.\nHMS Severn: Active in UK waters, primarily for training purposes.\nHMS Mersey: Active, patrolling UK waters.\nHMS Forth: Deployed in the Atlantic, serving as a Falkland Islands Patrol Vessel (FIPV).\nHMS Medway: Deployed in the Falklands, serving as a Falkland Islands Patrol Vessel (FIPV).\nHMS Trent: Deployed in West Africa, operating from Gibraltar.\nHMS Tamar: Deployed to Australia, with operations in the Pacific region.\nHMS Spey: Deployed in the South China Sea (SCS), operating in the Pacific region.\nHunt Class Mine Countermeasures Vessels\nComposition & Operational Readiness:\nTotal Number: 6\nCurrently Active: 3 (50% of the class)\nCurrently Inactive: 3 (50% of the class)\nReasons for Inactivity:\nUndergoing Refit: 2\nStatus of Individual Ships:\nHMS Ledbury: In refit, currently in Portsmouth.\nHMS Cattistock: Active, operating in UK waters.\nHMS Brocklesby: In refit, currently in Portsmouth.\nHMS Middleton: Deployed in the Persian Gulf as part of Operation Kipion.\nHMS Chiddingfold: Deployed in the Persian Gulf as part of Operation Kipion.\nHMS Hurworth: Active, operating in UK waters.\nSandown Class Mine Countermeasures Vessels\nComposition & Operational Readiness:\nTotal Number: 2\nCurrently Active: 2 (100% of the class)\nStatus of Individual Ships:\nHMS Penzance: Active, operating in UK waters from the Clyde.\nHMS Bangor: Deployed in the Persian Gulf as part of Operation Kipion.\nArcher Class Patrol Boats\nComposition & Operational Readiness:\nTotal Number: 16\nCurrently Active: 15 (93.75% of the class)\nCurrently Inactive: 1 (6.25% of the class)\nReasons for Inactivity:\nUndergoing Maintenance: 1\nStatus of Individual Ships:\nHMS Archer: Undergoing maintenance in South Shields.\nHMS Biter: Active, operating from Liverpool.\nHMS Smiter: Active, operating from Portsmouth.\nHMS Pursuer: Active, operating from Glasgow.\nHMS Blazer: Active, operating from Portsmouth.\nHMS Dasher: Active, operating from Portsmouth.\nHMS Puncher: Active, operating from Portsmouth.\nHMS Charger: Active, operating from Liverpool.\nHMS Ranger: Active, operating from Portsmouth.\nHMS Trumpeter: Active, operating from Ipswich.\nHMS Express: Active, operating from Cardiff.\nHMS Example: Active, operating from Gateshead.\nHMS Explorer: Active, operating from Hull.\nHMS Exploit: Active, operating from Portsmouth.\nHMS Tracker: Active, stationed at Clyde.\nHMS Raider: Active, stationed at Clyde.\nCutlass Class Patrol Boats\nComposition & Operational Readiness:\nTotal Number: 2\nCurrently Active: 2 (100% of the class)\nStatus of Individual Ships:\nHMS Cutlass: Active, stationed and operating in Gibraltar.\nHMS Dagger: Active, stationed and operating in Gibraltar.\nRoyal Navy Survey Vessels\nType & Role: The Royal Navy\u2019s survey vessels are specialised ships of various classes designed for the crucial task of hydrographic and oceanographic surveying.\nComposition & Operational Readiness:\nTotal Number: 3\nCurrently Active: 3 (100% of the type)\nStatus of Individual Ships:\nHMS Scott: An ocean survey vessel, currently active and operating in UK waters.\nHMS Protector: A polar research and survey vessel, currently active and operating in UK waters.\nHMS Magpie: A hydrographic survey vessel, currently active and operating in UK waters.\nRoyal Fleet Auxiliary (RFA)\nTide Class fleet replenishment tankers\nActive: 2 (RFA Tidespring, RFA Tideforce)\nInactive: 2 (RFA Tiderace, RFA Tidesurge under refit)\nWave Class fleet replenishment tanks\nActive: 0\nInactive:\n\u00a02 (RFA Wave Knight, RFA Wave Ruler)\nFort Class stores ship\nActive: 0\nInactive: 1 (RFA Fort Victoria)\nBay Class landing ship docks\nActive: 3 (RFA Lyme Bay, RFA Mounts Bay, RFA Cardigan Bay)\nOther major vessels:\nRFA Argus: Active supporting the Littoral Response Group (South) (LRG(S)).\nRFA Proteus: Currently active in the UK.\nRFA Stirling Castle: Active in the UK.\nThe post The Status of the British Fleet first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/the-status-of-the-british-fleet/#comments", + "content": "

From the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class. (w/t Britsky @TBrit90)

\nThe post The Status of the British Fleet first appeared on UK Defence Journal.", + "contentSnippet": "From the formidable Queen Elizabeth-class carriers to the nimble Archer-class patrol boats, this analysis reveals the number of active and inactive vessels across each distinct class. (w/t Britsky @TBrit90)\nThe Status of the British Fleet first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46460", + "categories": ["Sea"], + "isoDate": "2023-10-15T06:30:16.000Z" + }, + { + "creator": "George Allison", + "title": "Only two Irish Naval vessels operational", + "link": "https://ukdefencejournal.org.uk/only-two-irish-naval-vessels-operational/", + "pubDate": "Sun, 15 Oct 2023 05:13:31 +0000", + "content:encoded": "

Only two of the eight vessels in the Irish Naval Service are currently available for offshore patrols, raising concerns about Ireland’s maritime security.

\n

A third ship is on standby. Cathal Berry, an independent TD (MP) and former Irish Army Ranger, was quoted as saying, “there are ‘huge implications’ for Ireland’s security”, and mentioned that the present scenario was “completely abnormal and would not be normal in any other EU country”.

\n

The Defence Forces attribute the lack of available ships to the ongoing loss of experienced personnel and difficulties in recruiting new staff.

\n

According to a news report, Berry opined that the recruitment challenge was primarily about inadequate compensation, saying that sailors and other military personnel have “weak employment rights”. He emphasised that this was not a shortcoming of the Defence Forces themselves but rather an issue that required ministerial intervention.

\n

Berry further highlighted that such limitations could compromise anti-smuggling operations and search and rescue missions, putting maritime defence and security in jeopardy.

\n

The Irish Department of Defence revealed to RT\u00c9 that the Naval Service was “adopting a three ship posture”. A spokesperson clarified, “This strategic decision has been taken in order to streamline operations, bolster existing capabilities, and ensure optimal resource allocation in the Naval Service.”

\n

The spokesperson also touched upon the recruitment challenges, stating that “The challenges around recruitment and retention within the Defence Forces” have a notable impact on “specialist positions, as the current competitive jobs market is proving challenging for all sectors”.

\n

Two ships of the R\u00f3is\u00edn class have been placed in reserve, and two new inland patrol vessels acquired from the Royal New Zealand Navy are yet to be commissioned.

The post Only two Irish Naval vessels operational first appeared on UK Defence Journal.", + "content:encodedSnippet": "Only two of the eight vessels in the Irish Naval Service are currently available for offshore patrols, raising concerns about Ireland\u2019s maritime security.\nA third ship is on standby. Cathal Berry, an independent TD (MP) and former Irish Army Ranger, was quoted as saying, \u201cthere are \u2018huge implications\u2019 for Ireland\u2019s security\u201d, and mentioned that the present scenario was \u201ccompletely abnormal and would not be normal in any other EU country\u201d.\nThe Defence Forces attribute the lack of available ships to the ongoing loss of experienced personnel and difficulties in recruiting new staff.\nAccording to a news report, Berry opined that the recruitment challenge was primarily about inadequate compensation, saying that sailors and other military personnel have \u201cweak employment rights\u201d. He emphasised that this was not a shortcoming of the Defence Forces themselves but rather an issue that required ministerial intervention.\nBerry further highlighted that such limitations could compromise anti-smuggling operations and search and rescue missions, putting maritime defence and security in jeopardy.\nThe Irish Department of Defence revealed to RT\u00c9 that the Naval Service was \u201cadopting a three ship posture\u201d. A spokesperson clarified, \u201cThis strategic decision has been taken in order to streamline operations, bolster existing capabilities, and ensure optimal resource allocation in the Naval Service.\u201d\nThe spokesperson also touched upon the recruitment challenges, stating that \u201cThe challenges around recruitment and retention within the Defence Forces\u201d have a notable impact on \u201cspecialist positions, as the current competitive jobs market is proving challenging for all sectors\u201d.\nTwo ships of the R\u00f3is\u00edn class have been placed in reserve, and two new inland patrol vessels acquired from the Royal New Zealand Navy are yet to be commissioned.\nThe post Only two Irish Naval vessels operational first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/only-two-irish-naval-vessels-operational/#comments", + "content": "

Only two of the eight vessels in the Irish Naval Service are currently available for patrols, raising concerns about Ireland's maritime security.

\nThe post Only two Irish Naval vessels operational first appeared on UK Defence Journal.", + "contentSnippet": "Only two of the eight vessels in the Irish Naval Service are currently available for patrols, raising concerns about Ireland's maritime security.\nOnly two Irish Naval vessels operational first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46533", + "categories": ["Sea"], + "isoDate": "2023-10-15T05:13:31.000Z" + }, + { + "creator": "George Allison", + "title": "F-35 jets join HMS Prince of Wales for trials", + "link": "https://ukdefencejournal.org.uk/f-35-jets-join-hms-prince-of-wales-for-trials/", + "pubDate": "Sat, 14 Oct 2023 08:00:11 +0000", + "content:encoded": "

Specially-modified F-35B Lightning stealth fighters have joined HMS Prince of Wales to begin pushing the boundaries of carrier aviation, say the Royal Navy.

\n

According to a news release, test pilots from the Naval Air Warfare Center Aircraft Division (NAWCAD) Air Test and Evaluation Squadron Two Three (VX-23), Naval Air Station Patuxent River (NAS Pax River), Maryland, joined the carrier off the Eastern Seaboard of the US for the trials, known as Developmental Test phase 3 (DT-3).

\n

“HMS Prince of Wales will chase bad weather and heavy seas while the jets themselves will take-off and land with various weapons and fuel loads, experiment returning from \u2018missions\u2019 still carrying missiles/bombs \u2013 rather than ditching them in the ocean \u2013 and practise landing by rolling to a stop on the flight deck rather than touching down vertically.

\n

The Portsmouth-based aircraft carrier sailed from Norfolk Naval Station, the world\u2019s largest naval base, having embarked the equipment and personnel \u2013 a 200-strong test team from the Pax River F-35 Integrated Test Force (ITF) specifically for the trials.”

\n

Watching from the bridge, Captain Richard Hewitt, HMS Prince of Wales\u2019 Commanding Officer, said:

\n

\u201cThis is why we are here. Over the next few weeks we will work together with the F-35 programme to increase the capability of the world\u2019s most advanced fifth-generation stealth fighter alongside the UK\u2019s fifth-generation aircraft carrier.

\n

During this phase of our deployment we will see the jet develop advanced landing and take-off techniques, allowing it to recover heavier, turn around faster, and launch with more weapons.”

\n

You can read more here.

The post F-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", + "content:encodedSnippet": "Specially-modified F-35B Lightning stealth fighters have joined HMS Prince of Wales to begin pushing the boundaries of carrier aviation, say the Royal Navy.\nAccording to a news release, test pilots from the Naval Air Warfare Center Aircraft Division (NAWCAD) Air Test and Evaluation Squadron Two Three (VX-23), Naval Air Station Patuxent River (NAS Pax River), Maryland, joined the carrier off the Eastern Seaboard of the US for the trials, known as Developmental Test phase 3 (DT-3).\n\u201cHMS Prince of Wales will chase bad weather and heavy seas while the jets themselves will take-off and land with various weapons and fuel loads, experiment returning from \u2018missions\u2019 still carrying missiles/bombs \u2013 rather than ditching them in the ocean \u2013 and practise landing by rolling to a stop on the flight deck rather than touching down vertically.\nThe Portsmouth-based aircraft carrier sailed from Norfolk Naval Station, the world\u2019s largest naval base, having embarked the equipment and personnel \u2013 a 200-strong test team from the Pax River F-35 Integrated Test Force (ITF) specifically for the trials.\u201d\nWatching from the bridge, Captain Richard Hewitt, HMS Prince of Wales\u2019 Commanding Officer, said:\n\u201cThis is why we are here. Over the next few weeks we will work together with the F-35 programme to increase the capability of the world\u2019s most advanced fifth-generation stealth fighter alongside the UK\u2019s fifth-generation aircraft carrier.\nDuring this phase of our deployment we will see the jet develop advanced landing and take-off techniques, allowing it to recover heavier, turn around faster, and launch with more weapons.\u201d\nYou can read more here.\nThe post F-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/f-35-jets-join-hms-prince-of-wales-for-trials/#comments", + "content": "

Test pilots joined the carrier off the Eastern Seaboard of the U.S. for Developmental Test phase 3 (DT-3).

\nThe post F-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", + "contentSnippet": "Test pilots joined the carrier off the Eastern Seaboard of the U.S. for Developmental Test phase 3 (DT-3).\nF-35 jets join HMS Prince of Wales for trials first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46526", + "categories": ["Sea"], + "isoDate": "2023-10-14T08:00:11.000Z" + }, + { + "creator": "George Allison", + "title": "UK funding boosts galaxy mapping", + "link": "https://ukdefencejournal.org.uk/uk-funding-boosts-galaxy-mapping/", + "pubDate": "Sat, 14 Oct 2023 06:00:43 +0000", + "content:encoded": "

UK funding has been pivotal in advancing the mission to map the Galaxy, reveals a report published today, along with the newest data from the Gaia mission.

\n

Commissioned by the UK Space Agency, space strategy consultancy know.space assessed the influence of UK’s funding on the European Space Agency\u2019s (ESA) Global Astrometric Interferometer for Astrophysics (Gaia) mission.

\n

Since its launch in 2013, Gaia has been charting a 3D map of up to 2.5 billion stars, exoplanets, and other celestial bodies. The objective is to create the “largest and most precise 3D map of the Galaxy ever made.”

\n

The study disclosed the achievements of Gaia since 2014:

\n
    \n
  • Gaia publications have received over 200,000 citations.
  • \n
  • Papers with UK contribution make up 46% of total citations while representing 31% of publications.
  • \n
  • UK-authored papers hold a 15% share of total citations, representing only 10% of publications.
  • \n
  • On average, UK-authored papers have 35 citations, in contrast to 23 for non-UK involved Gaia papers.
  • \n
\n

A groundbreaking collaboration was also highlighted in the report. By partnering with the Imaging and Molecular Annotation of Xenografts and Tumors laboratory at the Cancer Research UK Cambridge Institute, the UK’s Gaia team has applied star map analysis techniques to cancer research. This unique method aspires to produce the “world\u2019s first virtual reality cancer map,” potentially revolutionizing cancer diagnosis and treatment.

\n

Will Lecky, Director at know.space, commented, \u201cThere can be little doubt that Gaia is a scientific success story… The impact is also set to continue for years and decades to come.\u201d

\n

You can read more here.

The post UK funding boosts galaxy mapping first appeared on UK Defence Journal.", + "content:encodedSnippet": "UK funding has been pivotal in advancing the mission to map the Galaxy, reveals a report published today, along with the newest data from the Gaia mission.\nCommissioned by the UK Space Agency, space strategy consultancy know.space assessed the influence of UK\u2019s funding on the European Space Agency\u2019s (ESA) Global Astrometric Interferometer for Astrophysics (Gaia) mission.\nSince its launch in 2013, Gaia has been charting a 3D map of up to 2.5 billion stars, exoplanets, and other celestial bodies. The objective is to create the \u201clargest and most precise 3D map of the Galaxy ever made.\u201d\nThe study disclosed the achievements of Gaia since 2014:\nGaia publications have received over 200,000 citations.\nPapers with UK contribution make up 46% of total citations while representing 31% of publications.\nUK-authored papers hold a 15% share of total citations, representing only 10% of publications.\nOn average, UK-authored papers have 35 citations, in contrast to 23 for non-UK involved Gaia papers.\nA groundbreaking collaboration was also highlighted in the report. By partnering with the Imaging and Molecular Annotation of Xenografts and Tumors laboratory at the Cancer Research UK Cambridge Institute, the UK\u2019s Gaia team has applied star map analysis techniques to cancer research. This unique method aspires to produce the \u201cworld\u2019s first virtual reality cancer map,\u201d potentially revolutionizing cancer diagnosis and treatment.\nWill Lecky, Director at know.space, commented, \u201cThere can be little doubt that Gaia is a scientific success story\u2026 The impact is also set to continue for years and decades to come.\u201d\nYou can read more here.\nThe post UK funding boosts galaxy mapping first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/uk-funding-boosts-galaxy-mapping/#comments", + "content": "

UK funding has been pivotal in advancing the mission to map the Galaxy reveals a report published today.

\nThe post UK funding boosts galaxy mapping first appeared on UK Defence Journal.", + "contentSnippet": "UK funding has been pivotal in advancing the mission to map the Galaxy reveals a report published today.\nUK funding boosts galaxy mapping first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46490", + "categories": ["Space"], + "isoDate": "2023-10-14T06:00:43.000Z" + }, + { + "creator": "George Allison", + "title": "Over 20,000 British troops to be deployed in Northern Europe", + "link": "https://ukdefencejournal.org.uk/over-20000-british-troops-to-be-deployed-in-northern-europe/", + "pubDate": "Sat, 14 Oct 2023 05:13:49 +0000", + "content:encoded": "

The UK is stepping up its military presence in Northern Europe Prime Minister Rishi Sunak has announced.

\n

More than 20,000 British troops will be deployed to the region next year.

\n

Meeting northern European leaders today on the strategically important island of Gotland to discuss the challenges facing the region, as well as the situation in Israel, the Prime Minister warned that Putin\u2019s failures in Ukraine were emboldening Russia\u2019s irresponsible behaviour in other parts of Europe.

\n

According to the Ministry of Defence here, he told leaders that while Putin had lost significant ground in Ukraine since he launched his barbaric invasion, allies and partners should not be lulled into a false sense of security.

\n

“The Kremlin was reinvesting in military capability and turning to a diminishing number of malevolent and marginalised partners to try and rebuild its strength and undermine global stability. His warning came after damage was detected earlier this week to two pipelines between Estonia and Finland, and HMS Queen Elizabeth was forced to launch fast jets from her deck in the Arctic last week to escort Russian Maritime Patrol Aircraft that flew close to the Carrier Strike Group operating in the region.\u00a0

\n

JEF leaders discussed today how they can address Russia\u2019s sabotaging behaviour in the region, both through stronger defence collaboration and increasing industrial cooperation. The Prime Minister outlined how accelerating defence industrial cooperation within Europe and across the Atlantic was vital to ensuring nations maintain a technological advantage over Russia and protect partners from Russian attacks for generations to come.\u00a0That acceleration will include sending more than 20,000 soldiers, sailors, marines and air men and women to the region next year, alongside 8 Royal Navy ships, 25 fast jets and an aviation task force of Apache, Chinook and Wildcat helicopters. They will take part in large-scale, multi-country exercises, as well as carrying out air policing and cold weather training.”

\n

Prime Minister Rishi Sunak said:

\n

“This week, we have seen yet again that our security cannot be taken for granted. It is vital that we stand united against those with malign intent. As the international order continues to be challenged by desperate dictators, rogue states, and terrorist organisations \u2013 like Hamas – we must stand shoulder-to-shoulder with our international friends and partners to defend our values, security and prosperity.\u00a0

\n

Northern Europe is vital to our national security, which is why it\u2019s more important than ever that we work with our Joint Expeditionary Force neighbours to protect our backyard and deter damaging hybrid threats.”

\n

The news release also states that the UK\u2019s Carrier Strike Group is already in the region for its autumn deployment, underlining the UK\u2019s commitment to the area. The group is led by flagship HMS Queen Elizabeth and accompanied by five British ships, F35 Lightning II stealth fighter jets and Wildcat helicopters. The carrier group will return early next year to lead the UK\u2019s contribution to the first phase of NATO\u2019s most ambitious military drill since the Cold War, Exercise Steadfast Defender.

\n

The operation will span almost six months and see 16,000 UK soldiers deploy to Estonia and Norway. You can read more here.

The post Over 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", + "content:encodedSnippet": "The UK is stepping up its military presence in Northern Europe Prime Minister Rishi Sunak has announced.\nMore than 20,000 British troops will be deployed to the region next year.\nMeeting northern European leaders today on the strategically important island of Gotland to discuss the challenges facing the region, as well as the situation in Israel, the Prime Minister warned that Putin\u2019s failures in Ukraine were emboldening Russia\u2019s irresponsible behaviour in other parts of Europe.\nAccording to the Ministry of Defence here, he told leaders that while Putin had lost significant ground in Ukraine since he launched his barbaric invasion, allies and partners should not be lulled into a false sense of security.\n\u201cThe Kremlin was reinvesting in military capability and turning to a diminishing number of malevolent and marginalised partners to try and rebuild its strength and undermine global stability. His warning came after damage was detected earlier this week to two pipelines between Estonia and Finland, and HMS Queen Elizabeth was forced to launch fast jets from her deck in the Arctic last week to escort Russian Maritime Patrol Aircraft that flew close to the Carrier Strike Group operating in the region.\u00a0\nJEF leaders discussed today how they can address Russia\u2019s sabotaging behaviour in the region, both through stronger defence collaboration and increasing industrial cooperation. The Prime Minister outlined how accelerating defence industrial cooperation within Europe and across the Atlantic was vital to ensuring nations maintain a technological advantage over Russia and protect partners from Russian attacks for generations to come.\u00a0That acceleration will include sending more than 20,000 soldiers, sailors, marines and air men and women to the region next year, alongside 8 Royal Navy ships, 25 fast jets and an aviation task force of Apache, Chinook and Wildcat helicopters. They will take part in large-scale, multi-country exercises, as well as carrying out air policing and cold weather training.\u201d\nPrime Minister Rishi Sunak said:\n\u201cThis week, we have seen yet again that our security cannot be taken for granted. It is vital that we stand united against those with malign intent. As the international order continues to be challenged by desperate dictators, rogue states, and terrorist organisations \u2013 like Hamas \u2013 we must stand shoulder-to-shoulder with our international friends and partners to defend our values, security and prosperity.\u00a0\nNorthern Europe is vital to our national security, which is why it\u2019s more important than ever that we work with our Joint Expeditionary Force neighbours to protect our backyard and deter damaging hybrid threats.\u201d\nThe news release also states that the UK\u2019s Carrier Strike Group is already in the region for its autumn deployment, underlining the UK\u2019s commitment to the area. The group is led by flagship HMS Queen Elizabeth and accompanied by five British ships, F35 Lightning II stealth fighter jets and Wildcat helicopters. The carrier group will return early next year to lead the UK\u2019s contribution to the first phase of NATO\u2019s most ambitious military drill since the Cold War, Exercise Steadfast Defender.\nThe operation will span almost six months and see 16,000 UK soldiers deploy to Estonia and Norway. You can read more here.\nThe post Over 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/over-20000-british-troops-to-be-deployed-in-northern-europe/#comments", + "content": "

Britain will deploy 20,000 troops, eight Royal Navy ships, 25 combat jets and an aviation task force of Apache, Chinook and Wildcat helicopters.

\nThe post Over 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", + "contentSnippet": "Britain will deploy 20,000 troops, eight Royal Navy ships, 25 combat jets and an aviation task force of Apache, Chinook and Wildcat helicopters.\nOver 20,000 British troops to be deployed in Northern Europe first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46524", + "categories": ["Land"], + "isoDate": "2023-10-14T05:13:49.000Z" + }, + { + "creator": "George Allison", + "title": "Norwegian SAR helicopter lands on British aircraft carrier", + "link": "https://ukdefencejournal.org.uk/norwegian-sar-helicopter-lands-on-british-aircraft-carrier/", + "pubDate": "Fri, 13 Oct 2023 14:00:40 +0000", + "content:encoded": "

A Norwegian SAR AW101 Helicopter from Bodolanded has landed onboard British aircraft carrier HMS Queen Elizabeth.

\n

It is understood that the landing was planned “to prove deck currency, meet the Battlestaff and discuss future collaborations with the Norwegian Air Operations Centre”.

\n
\n

Norwegian SAR AW101 Helicopter from Bodo \"\ud83c\uddf3\ud83c\uddf4\" landed on @HMSQNLS to prove deck currency, meet the Battlestaff and discuss future collaborations with the Norwegian Air Operations Centre (NAOC) @Forsvaret_no. #UKCSG23 pic.twitter.com/5Z7lfOdVex

\n

— UK Carrier Strike Group (@COMUKCSG) October 11, 2023

\n

\n
\n

What is HMS Queen Elizabeth and her Carrier Strike Group doing?

\n

The Royal Navy say that the aircraft carrier, crewed by up to 900 sailors, with her F-35 Lightning II stealth fighters and Merlin helicopters, is leading a mixed group of warships from various nations in the waters of northern Europe.

\n
Defence Secretary Grant Shapps said:
\n

\u201cThe UK leadership of this international strike group shows the strength of our commitment to working with Allies to promote security in Europe and demonstrate our resolve against any threat from potential adversaries.

\n

With both HMS Queen Elizabeth and HMS Prince of Wales deployed simultaneously, the Royal Navy sends a strong message that the UK\u2019s capability for carrier operations is among the strongest in the world.\u201d

\n

The first phase saw the carrier\u2019s deployment saw F35 fighter jets taking part in Exercise Cobra Warrior, the RAF\u2019s largest bi-annual exercise, including aircraft from the Australia, Canada, Germany, Italy, Norway, and the UK taking part in joint exercises.

\n

The 18-day exercise involved RAF Typhoon and F35 jets, A400M and C17 transport aircraft, and Voyager air tankers, developing interoperability alongside allied aircraft and practicing integration between fourth and fifth generation fighter aircraft across air, sea, and land.

\n
Commodore James Blackmore, Commander of the Carrier Strike Group, said:
\n

\u201cIt is with much eagerness that the UK Carrier Strike Group is now assembling for deployed operations \u2013 the first time the UK CSG will be under my command. This autumn\u2019s deployment showcases the UK\u2019s capability to operate at range from the UK and demonstrates our continued commitment to North Atlantic security.

\n

The Carrier Strike Group is an agile and highly capable force and we are excited to be heading to the North Sea and North Atlantic along with our International Partner Nations to reinforce security across the region.\u201d

\n
The post Norwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", + "content:encodedSnippet": "A Norwegian SAR AW101 Helicopter from Bodolanded has landed onboard British aircraft carrier HMS Queen Elizabeth.\nIt is understood that the landing was planned \u201cto prove deck currency, meet the Battlestaff and discuss future collaborations with the Norwegian Air Operations Centre\u201d.\nNorwegian SAR AW101 Helicopter from Bodo landed on @HMSQNLS to prove deck currency, meet the Battlestaff and discuss future collaborations with the Norwegian Air Operations Centre (NAOC) @Forsvaret_no. #UKCSG23 pic.twitter.com/5Z7lfOdVex\n\u2014 UK Carrier Strike Group (@COMUKCSG) October 11, 2023\n\n\nWhat is HMS Queen Elizabeth and her Carrier Strike Group doing?\nThe Royal Navy say that the aircraft carrier, crewed by up to 900 sailors, with her F-35 Lightning II stealth fighters and Merlin helicopters, is leading a mixed group of warships from various nations in the waters of northern Europe.\nDefence Secretary Grant Shapps said:\n\u201cThe UK leadership of this international strike group shows the strength of our commitment to working with Allies to promote security in Europe and demonstrate our resolve against any threat from potential adversaries.\nWith both HMS Queen Elizabeth and HMS Prince of Wales deployed simultaneously, the Royal Navy sends a strong message that the UK\u2019s capability for carrier operations is among the strongest in the world.\u201d\nThe first phase saw the carrier\u2019s deployment saw F35 fighter jets taking part in Exercise Cobra Warrior, the RAF\u2019s largest bi-annual exercise, including aircraft from the Australia, Canada, Germany, Italy, Norway, and the UK taking part in joint exercises.\nThe 18-day exercise involved RAF Typhoon and F35 jets, A400M and C17 transport aircraft, and Voyager air tankers, developing interoperability alongside allied aircraft and practicing integration between fourth and fifth generation fighter aircraft across air, sea, and land.\nCommodore James Blackmore, Commander of the Carrier Strike Group, said:\n\u201cIt is with much eagerness that the UK Carrier Strike Group is now assembling for deployed operations \u2013 the first time the UK CSG will be under my command. This autumn\u2019s deployment showcases the UK\u2019s capability to operate at range from the UK and demonstrates our continued commitment to North Atlantic security.\nThe Carrier Strike Group is an agile and highly capable force and we are excited to be heading to the North Sea and North Atlantic along with our International Partner Nations to reinforce security across the region.\u201d\nThe post Norwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/norwegian-sar-helicopter-lands-on-british-aircraft-carrier/#comments", + "content": "

It is understood that the landing was planned to prove deck currency and discuss future collaborations with the Norwegian Air Operations Centre.

\nThe post Norwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", + "contentSnippet": "It is understood that the landing was planned to prove deck currency and discuss future collaborations with the Norwegian Air Operations Centre.\nNorwegian SAR helicopter lands on British aircraft carrier first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46488", + "categories": ["Sea"], + "isoDate": "2023-10-13T14:00:40.000Z" + }, + { + "creator": "George Allison", + "title": "UK ships and aircraft deploying to waters close to Israel", + "link": "https://ukdefencejournal.org.uk/uk-ships-and-aircraft-deploying-to-waters-close-to-israel/", + "pubDate": "Fri, 13 Oct 2023 12:33:46 +0000", + "content:encoded": "

The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.

\n

From today, “Royal Air Force surveillance aircraft will commence patrols to assist partners in monitoring emerging threats to regional security”.

\n

Their primary objective is to identify potential disruptions to regional stability, particularly the transfer of weapons to terrorist groups.

\n

Furthermore, “a Royal Navy task group is set to relocate to the eastern Mediterranean next week” to aid humanitarian initiatives. The military package, comprising P8 aircraft, surveillance tools, two vessels (RFA Lyme Bay and RFA Argus), three Merlin helicopters, and a company of Royal Marines, stands ready to offer significant support to Israel and regional allies.

\n

Prime Minister Rishi Sunak stressed the urgency and significance of this deployment, remarking, \u201cWe must be unequivocal in ensuring the types of horrific scenes we’ve witnessed this week are not seen again. Our military and diplomatic teams…will collaborate with international partners to re-establish security and ensure that humanitarian aid reaches the countless innocent victims of this savage attack from Hamas terrorists.\u201d

\n

As part of a broader diplomatic approach, the Prime Minister engaged in dialogue with the Egyptian President, Abdel Fattah al-Sisi, to grasp the wider regional situation and the pressing need to aid civilians seeking to leave Gaza.

\n

Defence Secretary Grant Shapps echoed these sentiments, declaring, \u201cThe monstrous terrorist acts committed by Hamas in recent days underline the UK’s duty to champion Israel\u2019s absolute right to self-defence… today\u2019s deployment ensures that Israel stands not alone.\u201d

\n

The UK Foreign Secretary also has unveiled plans to facilitate commercial flights to aid British nationals desiring to leave Israel.

\n

You can read more by clicking here.

The post UK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", + "content:encodedSnippet": "The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.\nFrom today, \u201cRoyal Air Force surveillance aircraft will commence patrols to assist partners in monitoring emerging threats to regional security\u201d. \nTheir primary objective is to identify potential disruptions to regional stability, particularly the transfer of weapons to terrorist groups.\nFurthermore, \u201ca Royal Navy task group is set to relocate to the eastern Mediterranean next week\u201d to aid humanitarian initiatives. The military package, comprising P8 aircraft, surveillance tools, two vessels (RFA Lyme Bay and RFA Argus), three Merlin helicopters, and a company of Royal Marines, stands ready to offer significant support to Israel and regional allies.\nPrime Minister Rishi Sunak stressed the urgency and significance of this deployment, remarking, \u201cWe must be unequivocal in ensuring the types of horrific scenes we\u2019ve witnessed this week are not seen again. Our military and diplomatic teams\u2026will collaborate with international partners to re-establish security and ensure that humanitarian aid reaches the countless innocent victims of this savage attack from Hamas terrorists.\u201d\nAs part of a broader diplomatic approach, the Prime Minister engaged in dialogue with the Egyptian President, Abdel Fattah al-Sisi, to grasp the wider regional situation and the pressing need to aid civilians seeking to leave Gaza.\nDefence Secretary Grant Shapps echoed these sentiments, declaring, \u201cThe monstrous terrorist acts committed by Hamas in recent days underline the UK\u2019s duty to champion Israel\u2019s absolute right to self-defence\u2026 today\u2019s deployment ensures that Israel stands not alone.\u201d\nThe UK Foreign Secretary also has unveiled plans to facilitate commercial flights to aid British nationals desiring to leave Israel.\nYou can read more by clicking here.\nThe post UK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/uk-ships-and-aircraft-deploying-to-waters-close-to-israel/#comments", + "content": "

The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.

\nThe post UK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", + "contentSnippet": "The UK government has announced the deployment of British military assets to the Eastern Mediterranean, aiming to back Israel and bolster regional stability.\nUK ships and aircraft deploying to waters close to Israel first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46522", + "categories": ["Sea"], + "isoDate": "2023-10-13T12:33:46.000Z" + }, + { + "creator": "George Allison", + "title": "BAE boosts M109 Howitzer range with cannon upgrade", + "link": "https://ukdefencejournal.org.uk/bae-boosts-m109-howitzer-range-with-cannon-upgrade/", + "pubDate": "Fri, 13 Oct 2023 11:00:47 +0000", + "content:encoded": "

BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.

\n

This upgraded version, known as the M109-52, is a significant enhancement over the existing 39-caliber cannon.

\n

\u201cWe\u2019ve demonstrated that the integrated system of the M109-52 is a viable solution for long-range precision fires modernization needs,” remarked Dan Furber, the director of Ground Vehicle Production for BAE Systems\u2019 Combat Mission Systems division.

\n

Integrating these two highly capable and proven artillery systems provides stable designs and predictable performance.”

\n

The recent live-fire trial took place at Camp Ripley, Minnesota, verifying the compatibility of the L52 cannon with the established M109A7 platform. BAE Systems has outlined plans for further testing in 2024, with a focus on evaluating extended range using diverse projectiles.

\n

You can read more by clicking here.

The post BAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", + "content:encodedSnippet": "BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.\nThis upgraded version, known as the M109-52, is a significant enhancement over the existing 39-caliber cannon.\n\u201cWe\u2019ve demonstrated that the integrated system of the M109-52 is a viable solution for long-range precision fires modernization needs,\u201d remarked Dan Furber, the director of Ground Vehicle Production for BAE Systems\u2019 Combat Mission Systems division.\n\u201cIntegrating these two highly capable and proven artillery systems provides stable designs and predictable performance.\u201d\nThe recent live-fire trial took place at Camp Ripley, Minnesota, verifying the compatibility of the L52 cannon with the established M109A7 platform. BAE Systems has outlined plans for further testing in 2024, with a focus on evaluating extended range using diverse projectiles.\nYou can read more by clicking here.\nThe post BAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/bae-boosts-m109-howitzer-range-with-cannon-upgrade/#comments", + "content": "

BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.

\nThe post BAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", + "contentSnippet": "BAE Systems has successfully fired 155-millimeter projectiles using a modified M109 Self-Propelled Howitzer equipped with the Rheinmetall L52 155mm, 52-caliber cannon.\nBAE boosts M109 Howitzer range with cannon upgrade first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46494", + "categories": ["Land"], + "isoDate": "2023-10-13T11:00:47.000Z" + }, + { + "creator": "George Allison", + "title": "Helicopters from HMS Queen Elizabeth launch torpedos", + "link": "https://ukdefencejournal.org.uk/helicopters-from-hms-queen-elizabeth-launch-torpedos/", + "pubDate": "Fri, 13 Oct 2023 07:00:01 +0000", + "content:encoded": "

Merlin helicopters from HMS Queen Elizabeth and HMS Portland have dropped underwater weapons.

\n

820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.

\n
\n

Torpedoes Away!

\n

An action packed day operating with #UKCSG23. Merlin helicopters from @HMSQNLZ and @HMSPortland conducted drops of underwater weapons\"\ud83d\udca5\". Ships and aircraft in the Strike Group train together to ensure we can defend the aircraft carrier from submarine threats. \"\ud83c\uddec\ud83c\udde7\" pic.twitter.com/M4oecdnSHl

\n

— HMSPortland (@HMSPortland) October 11, 2023

\n

\n

More detail in the tweet below.

\n
\n

TORPEDO LAUNCH

\n

820 performed the first Training Variant Torpedo (TVT) drop from a Queen Elizabeth Class Carrier.

\n

Observers Scott Wilson and Tobias Williams launched the TVT abeam @HMSPortland to test external weapon processes and internal delivery systems. #FLYNAVY #UKCSG23 pic.twitter.com/bf7S6oecTh

\n

— 820 Naval Air Squadron (@820NAS) October 12, 2023

\n

\n

 

\n

What is HMS Queen Elizabeth and her Carrier Strike Group doing?

\n

The Royal Navy say that the aircraft carrier, crewed by up to 900 sailors, with her F-35 Lightning II stealth fighters and Merlin helicopters, is leading a mixed group of warships from various nations in the waters of northern Europe.

\n
Defence Secretary Grant Shapps said:
\n

\u201cThe UK leadership of this international strike group shows the strength of our commitment to working with Allies to promote security in Europe and demonstrate our resolve against any threat from potential adversaries.

\n

With both HMS Queen Elizabeth and HMS Prince of Wales deployed simultaneously, the Royal Navy sends a strong message that the UK\u2019s capability for carrier operations is among the strongest in the world.\u201d

\n

The first phase saw the carrier\u2019s deployment saw F35 fighter jets taking part in Exercise Cobra Warrior, the RAF\u2019s largest bi-annual exercise, including aircraft from the Australia, Canada, Germany, Italy, Norway, and the UK taking part in joint exercises.

\n

The 18-day exercise involved RAF Typhoon and F35 jets, A400M and C17 transport aircraft, and Voyager air tankers, developing interoperability alongside allied aircraft and practicing integration between fourth and fifth generation fighter aircraft across air, sea, and land.

\n
Commodore James Blackmore, Commander of the Carrier Strike Group, said:
\n

\u201cIt is with much eagerness that the UK Carrier Strike Group is now assembling for deployed operations \u2013 the first time the UK CSG will be under my command. This autumn\u2019s deployment showcases the UK\u2019s capability to operate at range from the UK and demonstrates our continued commitment to North Atlantic security.

\n

The Carrier Strike Group is an agile and highly capable force and we are excited to be heading to the North Sea and North Atlantic along with our International Partner Nations to reinforce security across the region.\u201d

The post Helicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", + "content:encodedSnippet": "Merlin helicopters from HMS Queen Elizabeth and HMS Portland have dropped underwater weapons.\n820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.\nTorpedoes Away!\nAn action packed day operating with #UKCSG23. Merlin helicopters from @HMSQNLZ and @HMSPortland conducted drops of underwater weapons. Ships and aircraft in the Strike Group train together to ensure we can defend the aircraft carrier from submarine threats. pic.twitter.com/M4oecdnSHl\n\u2014 HMSPortland (@HMSPortland) October 11, 2023\n\n\nMore detail in the tweet below.\nTORPEDO LAUNCH\n820 performed the first Training Variant Torpedo (TVT) drop from a Queen Elizabeth Class Carrier.\nObservers Scott Wilson and Tobias Williams launched the TVT abeam @HMSPortland to test external weapon processes and internal delivery systems. #FLYNAVY #UKCSG23 pic.twitter.com/bf7S6oecTh\n\u2014 820 Naval Air Squadron (@820NAS) October 12, 2023\n\n\n\u00a0\nWhat is HMS Queen Elizabeth and her Carrier Strike Group doing?\nThe Royal Navy say that the aircraft carrier, crewed by up to 900 sailors, with her F-35 Lightning II stealth fighters and Merlin helicopters, is leading a mixed group of warships from various nations in the waters of northern Europe.\nDefence Secretary Grant Shapps said:\n\u201cThe UK leadership of this international strike group shows the strength of our commitment to working with Allies to promote security in Europe and demonstrate our resolve against any threat from potential adversaries.\nWith both HMS Queen Elizabeth and HMS Prince of Wales deployed simultaneously, the Royal Navy sends a strong message that the UK\u2019s capability for carrier operations is among the strongest in the world.\u201d\nThe first phase saw the carrier\u2019s deployment saw F35 fighter jets taking part in Exercise Cobra Warrior, the RAF\u2019s largest bi-annual exercise, including aircraft from the Australia, Canada, Germany, Italy, Norway, and the UK taking part in joint exercises.\nThe 18-day exercise involved RAF Typhoon and F35 jets, A400M and C17 transport aircraft, and Voyager air tankers, developing interoperability alongside allied aircraft and practicing integration between fourth and fifth generation fighter aircraft across air, sea, and land.\nCommodore James Blackmore, Commander of the Carrier Strike Group, said:\n\u201cIt is with much eagerness that the UK Carrier Strike Group is now assembling for deployed operations \u2013 the first time the UK CSG will be under my command. This autumn\u2019s deployment showcases the UK\u2019s capability to operate at range from the UK and demonstrates our continued commitment to North Atlantic security.\nThe Carrier Strike Group is an agile and highly capable force and we are excited to be heading to the North Sea and North Atlantic along with our International Partner Nations to reinforce security across the region.\u201d\nThe post Helicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", + "dc:creator": "George Allison", + "comments": "https://ukdefencejournal.org.uk/helicopters-from-hms-queen-elizabeth-launch-torpedos/#comments", + "content": "

820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.

\nThe post Helicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", + "contentSnippet": "820 Naval Air Squadron have performed the first Training Variant Torpedo (TVT) drop from a Merlin launched from a Queen Elizabeth Class Carrier.\nHelicopters from HMS Queen Elizabeth launch torpedos first appeared on UK Defence Journal.", + "guid": "https://ukdefencejournal.org.uk/?p=46485", + "categories": ["Sea"], + "isoDate": "2023-10-13T07:00:01.000Z" + } +] diff --git a/intro to react/newData/oldNews/6fdc5f5bf4a86fa1fc972814d9558daf2f2df10dc09f3edbf575c240c599496c.json b/intro to react/newData/oldNews/6fdc5f5bf4a86fa1fc972814d9558daf2f2df10dc09f3edbf575c240c599496c.json index 52ef7b8..aa65459 100644 --- a/intro to react/newData/oldNews/6fdc5f5bf4a86fa1fc972814d9558daf2f2df10dc09f3edbf575c240c599496c.json +++ b/intro to react/newData/oldNews/6fdc5f5bf4a86fa1fc972814d9558daf2f2df10dc09f3edbf575c240c599496c.json @@ -1,4706 +1,4386 @@ [ - { - "creator": "Samuel Axon", - "title": "Steam drops macOS Mojave support, effectively ending life for many 32-bit games", - "link": "https://arstechnica.com/?p=1987721", - "pubDate": "Thu, 30 Nov 2023 23:10:33 +0000", - "content:encoded": "
\n
\n \"macOS\n

Enlarge / macOS Mojave's wallpaper. (credit: Apple)

\n\n\n\n\n\n\n
\n

Valve Software's Steam gaming marketplace and app will drop support for macOS 10.13 (High Sierra) and 10.14 (Mojave), according to a support page post. The change will go into effect on February 15, 2024.

\n

What will happen exactly? Valve writes:

\n

After that date, existing Steam Client installations on these operating systems will no longer receive updates of any kind including security updates. Steam Support will be unable to offer users technical support for issues related to the old operating systems, and Steam will be unable to guarantee continued functionality of Steam on the unsupported operating system versions.

\n

macOS 10.14 (dubbed Mojave by Apple) shipped more than five years ago, and time has a way of marching on, so this might not seem that momentous at first glance. But there's a reason it's particularly noteworthy as these things go: this change means the end of support for the last versions of macOS that could run 32-bit games.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / macOS Mojave's wallpaper. (credit: Apple)\n \n\n\n\n\n\n\n\nValve Software's Steam gaming marketplace and app will drop support for macOS 10.13 (High Sierra) and 10.14 (Mojave), according to a support page post. The change will go into effect on February 15, 2024.\nWhat will happen exactly? Valve writes:\nAfter that date, existing Steam Client installations on these operating systems will no longer receive updates of any kind including security updates. Steam Support will be unable to offer users technical support for issues related to the old operating systems, and Steam will be unable to guarantee continued functionality of Steam on the unsupported operating system versions.\n\nmacOS 10.14 (dubbed Mojave by Apple) shipped more than five years ago, and time has a way of marching on, so this might not seem that momentous at first glance. But there's a reason it's particularly noteworthy as these things go: this change means the end of support for the last versions of macOS that could run 32-bit games.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Samuel Axon", - "comments": "https://arstechnica.com/gadgets/2023/11/steam-drops-macos-mojave-support-effectively-ending-life-for-many-32-bit-games/#comments", - "content": "After February 15, all bets are off for Steam on High Sierra and Mojave Macs.", - "contentSnippet": "After February 15, all bets are off for Steam on High Sierra and Mojave Macs.", - "guid": "https://arstechnica.com/?p=1987721", - "categories": [ - "Tech", - "gaming", - "Mac", - "Mac gaming", - "MacOS", - "Steam", - "Valve" - ], - "isoDate": "2023-11-30T23:10:33.000Z" - }, - { - "creator": "Kevin Purdy", - "title": "Automatic bike transmission concept is wild and spiky\u2014and could be a big shift", - "link": "https://arstechnica.com/?p=1987481", - "pubDate": "Thu, 30 Nov 2023 22:13:42 +0000", - "content:encoded": "
\n
\n \"Haven\n

Enlarge / Haven Mercer's prototype front assembly for an automatic bike transmission. (credit: Haven Mercer)

\n\n\n\n\n\n\n
\n

Depending on how you look at it, either a lot or not very much has changed about the way bikes shift gears since the mid-19th century.

\n

A lot has been refined along the transmission path, in which your feet push cranks, those cranks turn a big gear, and a chain connects that big gear to a smaller gear on the rear wheel. Shifting has picked up lots of improvements, be they electronic or wireless, as have derailleurs and internal gearboxes. Materials and tolerances have only improved over the decades.

\n

But in almost all cases, you're still manually adjusting something to move the chain and change gears, depending on the resistance you're feeling on the bike. Even the most outlandish recent ideas still involve indexed movement between different-sized gears.

Read 14 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Haven Mercer's prototype front assembly for an automatic bike transmission. (credit: Haven Mercer)\n \n\n\n\n\n\n\n\nDepending on how you look at it, either a lot or not very much has changed about the way bikes shift gears since the mid-19th century.\nA lot has been refined along the transmission path, in which your feet push cranks, those cranks turn a big gear, and a chain connects that big gear to a smaller gear on the rear wheel. Shifting has picked up lots of improvements, be they electronic or wireless, as have derailleurs and internal gearboxes. Materials and tolerances have only improved over the decades.\nBut in almost all cases, you're still manually adjusting something to move the chain and change gears, depending on the resistance you're feeling on the bike. Even the most outlandish recent ideas still involve indexed movement between different-sized gears.\n\nRead 14 remaining paragraphs | Comments", - "dc:creator": "Kevin Purdy", - "comments": "https://arstechnica.com/cars/2023/11/automatic-bike-transmission-concept-is-wild-and-spiky-and-could-be-a-big-shift/#comments", - "content": "Solo inventor says he's not out to replace gears, just offer an alternative.", - "contentSnippet": "Solo inventor says he's not out to replace gears, just offer an alternative.", - "guid": "https://arstechnica.com/?p=1987481", - "categories": [ - "Cars", - "bike gears", - "bikes", - "cycling", - "e-bikes", - "patents", - "Transmission" - ], - "isoDate": "2023-11-30T22:13:42.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Elon\u2019s Edsel? The Tesla Cybertruck went on sale today", - "link": "https://arstechnica.com/?p=1987661", - "pubDate": "Thu, 30 Nov 2023 21:51:41 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / It will probably be a while before you see these on the road, but some Tesla stores now have display Cybertrucks. (credit: Jonathan Gitlin)

\n\n\n\n\n\n\n
\n

On Thursday afternoon, Tesla delivered the first 10 production Cybertrucks to customers at an event livestreamed on X, Tesla CEO Elon Musk's social media network. A demo video featured shots of the Cybertruck negotiating barren wildernesses, including one that was meant to look like Mars. Musk, who has mostly made headlines in recent weeks for endorsing virulent antisemtitic theories on his social media platform, took to the stage almost half an hour late, initially delivering his presentation from the back of a truck with his face hidden in shadow.

\n

Musk claimed the Cybertruck is better than any other truck but also more of a sports car than any other sports car, made of a \"special Tesla designed steel alloy\" that he claimed will never rust and which cannot be stamped but which can also be produced in volume.

\n

Mindful of the window-breaking debacle during the truck's debut in 2019, Tesla designer Franz von Holzhausen came on stage to throw baseballs at its windows. Unlike last time (when presenters used metal balls), the allegedly bulletproof glass did not shatter. Musk made a point of the fact that in a crash with another vehicle, the Cybertruck\u2014which weighs 6,603\u20136,843 lbs (2,995\u20133,104 kg)\u2014will destroy the other vehicle.

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / It will probably be a while before you see these on the road, but some Tesla stores now have display Cybertrucks. (credit: Jonathan Gitlin)\n \n\n\n\n\n\n\n\nOn Thursday afternoon, Tesla delivered the first 10 production Cybertrucks to customers at an event livestreamed on X, Tesla CEO Elon Musk's social media network. A demo video featured shots of the Cybertruck negotiating barren wildernesses, including one that was meant to look like Mars. Musk, who has mostly made headlines in recent weeks for endorsing virulent antisemtitic theories on his social media platform, took to the stage almost half an hour late, initially delivering his presentation from the back of a truck with his face hidden in shadow.\nMusk claimed the Cybertruck is better than any other truck but also more of a sports car than any other sports car, made of a \"special Tesla designed steel alloy\" that he claimed will never rust and which cannot be stamped but which can also be produced in volume.\nMindful of the window-breaking debacle during the truck's debut in 2019, Tesla designer Franz von Holzhausen came on stage to throw baseballs at its windows. Unlike last time (when presenters used metal balls), the allegedly bulletproof glass did not shatter. Musk made a point of the fact that in a crash with another vehicle, the Cybertruck\u2014which weighs 6,603\u20136,843 lbs (2,995\u20133,104 kg)\u2014will destroy the other vehicle.\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2023/11/the-tesla-cybertruck-finally-goes-on-sale-starting-at-60990/#comments", - "content": "Tesla handed over the first 10 trucks to customers, with more deliveries in 2024.", - "contentSnippet": "Tesla handed over the first 10 trucks to customers, with more deliveries in 2024.", - "guid": "https://arstechnica.com/?p=1987661", - "categories": [ - "Cars", - "Cybertruck", - "Elon Musk", - "Tesla", - "Tesla Cybertruck" - ], - "isoDate": "2023-11-30T21:51:41.000Z" - }, - { - "creator": "Scharon Harding", - "title": "Reddit updates look after rough 6 months and ahead of reported IPO", - "link": "https://arstechnica.com/?p=1987576", - "pubDate": "Thu, 30 Nov 2023 21:25:41 +0000", - "content:encoded": "
\n
\n \"Old\n

Enlarge / Left: Reddit's old logo. Right: Reddit's new logo. (credit: Reddit)

\n\n\n\n\n\n\n
\n

Writing a long comment providing detail about Reddit's refreshed logo, mascot, and typeface this week, a Reddit employee seemingly rethought the post and opted to conclude it with choice words. The post's last line currently reads:

\n

\"Edit: Obligatory 'Fuck Spez' for karma.\"

\n

The Reddit employee, going by Acidtwist on Reddit and known as Tavish, says they're Reddit's head of brand creative (Reddit says it doesn't disclose the real identities of its workers on Reddit).

Read 19 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Left: Reddit's old logo. Right: Reddit's new logo. (credit: Reddit)\n \n\n\n\n\n\n\n\nWriting a long comment providing detail about Reddit's refreshed logo, mascot, and typeface this week, a Reddit employee seemingly rethought the post and opted to conclude it with choice words. The post's last line currently reads:\n\"Edit: Obligatory 'Fuck Spez' for karma.\"\nThe Reddit employee, going by Acidtwist on Reddit and known as Tavish, says they're Reddit's head of brand creative (Reddit says it doesn't disclose the real identities of its workers on Reddit).\n\nRead 19 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/gadgets/2023/11/reddit-updates-look-after-rough-6-months-and-ahead-of-reported-ipo/#comments", - "content": "\"Edit: Obligatory 'F--- Spez' for karma.\"", - "contentSnippet": "\"Edit: Obligatory 'F--- Spez' for karma.\"", - "guid": "https://arstechnica.com/?p=1987576", - "categories": [ - "Culture", - "Tech", - "reddit", - "social media" - ], - "isoDate": "2023-11-30T21:25:41.000Z" - }, - { - "creator": "Beth Mole", - "title": "Millions of lead pipes would finally be ripped out under proposed EPA rule", - "link": "https://arstechnica.com/?p=1987594", - "pubDate": "Thu, 30 Nov 2023 19:31:55 +0000", - "content:encoded": "
\n
\n \"City\n

Enlarge / City workers unload a truck containing pallets of bottled water to distribute during a water filter distribution event on October 26, 2021 in Hamtramck, Michigan. The state Department of Health and Human Services has begun distributing water filters and bottled water to residents due to elevated levels of lead found in the drinking water due to old and un-maintained water pipes in the city. (credit: Getty | Matthew Hatcher)

\n\n\n\n\n\n\n
\n

The Environmental Protection Agency on Thursday proposed a stricter rule on lead in drinking water that would require that all lead service lines in the country be replaced within 10 years, and would lower the current lead action level in drinking water from 15 parts per billion to 10 parts per billion.

\n

More than 9.2 million American households have water connections that include lead piping, according to the White House. Lead moves from the pipes into the water when the plumbing experiences corrosion, which is most severe when the water is acidic or has low mineral content. There is no safe level of lead, which is a toxic metal with wide-ranging health effects, including neurotoxic effects. In children, lead exposure can damage the brain and nervous system, slow development, lower IQ, and cause learning, behavioral, speech, and hearing problems. In adults, it can increase the risk of high blood pressure, cardiovascular problems, and kidney damage.

\n

The EPA estimates that the rule will generate between $9.8 billion to $34.8 billion in economic benefits each year based on health improvement, including higher IQs in children, healthier newborns, lower cardiovascular risks in adults, and a reduction in care for attention-deficit/hyperactivity disorder.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / City workers unload a truck containing pallets of bottled water to distribute during a water filter distribution event on October 26, 2021 in Hamtramck, Michigan. The state Department of Health and Human Services has begun distributing water filters and bottled water to residents due to elevated levels of lead found in the drinking water due to old and un-maintained water pipes in the city. (credit: Getty | Matthew Hatcher)\n \n\n\n\n\n\n\n\nThe Environmental Protection Agency on Thursday proposed a stricter rule on lead in drinking water that would require that all lead service lines in the country be replaced within 10 years, and would lower the current lead action level in drinking water from 15 parts per billion to 10 parts per billion.\nMore than 9.2 million American households have water connections that include lead piping, according to the White House. Lead moves from the pipes into the water when the plumbing experiences corrosion, which is most severe when the water is acidic or has low mineral content. There is no safe level of lead, which is a toxic metal with wide-ranging health effects, including neurotoxic effects. In children, lead exposure can damage the brain and nervous system, slow development, lower IQ, and cause learning, behavioral, speech, and hearing problems. In adults, it can increase the risk of high blood pressure, cardiovascular problems, and kidney damage.\nThe EPA estimates that the rule will generate between $9.8 billion to $34.8 billion in economic benefits each year based on health improvement, including higher IQs in children, healthier newborns, lower cardiovascular risks in adults, and a reduction in care for attention-deficit/hyperactivity disorder.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/health/2023/11/bidens-epa-proposes-water-rule-to-finally-ditch-lead-pipes-within-10-years/#comments", - "content": "The rule could generate up to $34.8 billion in health benefits each year.", - "contentSnippet": "The rule could generate up to $34.8 billion in health benefits each year.", - "guid": "https://arstechnica.com/?p=1987594", - "categories": [ - "Health", - "Science", - "Biden", - "children", - "drinking water", - "EPA", - "lead", - "pipes", - "toxic", - "water" - ], - "isoDate": "2023-11-30T19:31:55.000Z" - }, - { - "creator": "Andrew Cunningham", - "title": "New chip-packaging facility could save TSMC\u2019s Arizona fab from \u201cpaperweight\u201d status", - "link": "https://arstechnica.com/?p=1987451", - "pubDate": "Thu, 30 Nov 2023 19:25:43 +0000", - "content:encoded": "
\n
\n \"Apple\n

Enlarge / Apple wants to build more of its A- and M-series chips in the United States. (credit: Apple)

\n\n\n\n\n\n\n
\n

Late last year, Apple CEO Tim Cook announced that the company would definitely be buying chips made at Taiwan Semiconductor's new Arizona-based fab once it had opened. Apple working with TSMC isn't new; most, if not all, of the processors currently sold in Apple's products are made on one of TSMC's many manufacturing nodes. But being able to buy them from a US-based facility would be a first.

\n

The issue, as outlined by some TSMC employees speaking to The Information in September, is that the Arizona facility would manufacture chips, but it wouldn't be building a facility to handle packaging. And without packaging, the Arizona factory would essentially be a \"paperweight,\" requiring any chips made there to be shipped to Taiwan for assembly before they could be put in any products.

\n

Today Apple announced that it had solved that particular problem, partnering with a company called Amkor to handle chip packaging in Arizona. Amkor says that it will invest $2 billion to build the facility, which will \"employ approximately 2,000 people\" and \"is targeted to be ready for production within the next two to three years.\" Apple says that it has already worked with Amkor on chip packaging for \"more than a decade.\"

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Apple wants to build more of its A- and M-series chips in the United States. (credit: Apple)\n \n\n\n\n\n\n\n\nLate last year, Apple CEO Tim Cook announced that the company would definitely be buying chips made at Taiwan Semiconductor's new Arizona-based fab once it had opened. Apple working with TSMC isn't new; most, if not all, of the processors currently sold in Apple's products are made on one of TSMC's many manufacturing nodes. But being able to buy them from a US-based facility would be a first.\nThe issue, as outlined by some TSMC employees speaking to The Information in September, is that the Arizona facility would manufacture chips, but it wouldn't be building a facility to handle packaging. And without packaging, the Arizona factory would essentially be a \"paperweight,\" requiring any chips made there to be shipped to Taiwan for assembly before they could be put in any products.\nToday Apple announced that it had solved that particular problem, partnering with a company called Amkor to handle chip packaging in Arizona. Amkor says that it will invest $2 billion to build the facility, which will \"employ approximately 2,000 people\" and \"is targeted to be ready for production within the next two to three years.\" Apple says that it has already worked with Amkor on chip packaging for \"more than a decade.\"\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Andrew Cunningham", - "comments": "https://arstechnica.com/tech-policy/2023/11/new-chip-packaging-facility-could-save-tsmcs-arizona-fab-from-paperweight-status/#comments", - "content": "Apple will be \"first and largest customer\" at new $2 billion packaging facility.", - "contentSnippet": "Apple will be \"first and largest customer\" at new $2 billion packaging facility.", - "guid": "https://arstechnica.com/?p=1987451", - "categories": [ - "Apple", - "Policy", - "AMD", - "apple", - "Intel", - "packaging", - "TSMC" - ], - "isoDate": "2023-11-30T19:25:43.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "The Great Google Account Purge starts tomorrow for inactive users", - "link": "https://arstechnica.com/?p=1987462", - "pubDate": "Thu, 30 Nov 2023 18:59:11 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Bloomberg via Getty Images)

\n\n\n\n\n\n\n
\n

Hello fellow procrastinators. This is your last-minute warning that you have until the end of the day to log in to any inactive Google accounts before they start getting deleted on December 1. Google is going to wipe any accounts that have been \"inactive\" for two years, allowing the company to free up storage space, delete unused personal data, and continue the ongoing journey of intense cost cutting it has been on for the past year.

\n

The plan to do this was announced in May, and Google says inactive accounts should get \"multiple notifications over the months leading up to deletion, to both the account email address and the recovery email (if one has been provided),\" so hopefully this isn't a surprise to anyone. The company says it will \"take a phased approach\" to deleting accounts, starting with \"accounts that were created and never used again,\" so even if you're reading this on December 1, there's probably still time to log in to an old account and save it.

\n

As for the caveats around \"inactivity,\" Google says this will only apply to personal accounts that don't have any subscriptions running, so Google Workspace and Google One users have nothing to fear. The company says you'll count as \"active\" if you \"sign-in at least once every 2 years,\" which is pretty easy to do. Confusingly it also lists certain activities you can perform that will count as \"activity,\" but those seem rather moot, since you would already need to be logged in to do them. The \"Sign in with Google\" OAuth platform on other websites also counts as account activity, and so does being signed in on an Android phone.

Read 2 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Bloomberg via Getty Images)\n \n\n\n\n\n\n\n\nHello fellow procrastinators. This is your last-minute warning that you have until the end of the day to log in to any inactive Google accounts before they start getting deleted on December 1. Google is going to wipe any accounts that have been \"inactive\" for two years, allowing the company to free up storage space, delete unused personal data, and continue the ongoing journey of intense cost cutting it has been on for the past year.\nThe plan to do this was announced in May, and Google says inactive accounts should get \"multiple notifications over the months leading up to deletion, to both the account email address and the recovery email (if one has been provided),\" so hopefully this isn't a surprise to anyone. The company says it will \"take a phased approach\" to deleting accounts, starting with \"accounts that were created and never used again,\" so even if you're reading this on December 1, there's probably still time to log in to an old account and save it.\nAs for the caveats around \"inactivity,\" Google says this will only apply to personal accounts that don't have any subscriptions running, so Google Workspace and Google One users have nothing to fear. The company says you'll count as \"active\" if you \"sign-in at least once every 2 years,\" which is pretty easy to do. Confusingly it also lists certain activities you can perform that will count as \"activity,\" but those seem rather moot, since you would already need to be logged in to do them. The \"Sign in with Google\" OAuth platform on other websites also counts as account activity, and so does being signed in on an Android phone.\n\nRead 2 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2023/11/inactive-google-account-deletions-start-december-1/#comments", - "content": "Any accounts lined up for deletion should have gotten warning emails by now. ", - "contentSnippet": "Any accounts lined up for deletion should have gotten warning emails by now.", - "guid": "https://arstechnica.com/?p=1987462", - "categories": [ - "Google", - "Tech" - ], - "isoDate": "2023-11-30T18:59:11.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Meta sues FTC, hoping to block ban on monetizing kids\u2019 Facebook data", - "link": "https://arstechnica.com/?p=1987539", - "pubDate": "Thu, 30 Nov 2023 18:50:06 +0000", - "content:encoded": "
\n
\n \"Photo\n

Enlarge (credit: Getty Images | Chesnot)

\n\n\n\n\n\n\n
\n

Meta sued the Federal Trade Commission yesterday in a lawsuit that challenges the FTC's authority to impose new privacy obligations on the social media firm.

\n

The complaint stems from the FTC's May 2023 allegation that Meta-owned Facebook violated a 2020 privacy settlement and the Children's Online Privacy Protection Act. The FTC proposed changes to the 2020 privacy order that would, among other things, prohibit Facebook from monetizing data it collects from users under 18.

\n

Meta's lawsuit against the FTC challenges what it calls \"the structurally unconstitutional authority exercised by the FTC through its Commissioners in an administrative reopening proceeding against Meta.\" It was filed against the FTC, Chair Lina Khan, and other commissioners in US District Court for the District of Columbia. Meta is seeking a preliminary injunction to stop the FTC proceeding pending resolution of the lawsuit.

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | Chesnot)\n \n\n\n\n\n\n\n\nMeta sued the Federal Trade Commission yesterday in a lawsuit that challenges the FTC's authority to impose new privacy obligations on the social media firm.\nThe complaint stems from the FTC's May 2023 allegation that Meta-owned Facebook violated a 2020 privacy settlement and the Children's Online Privacy Protection Act. The FTC proposed changes to the 2020 privacy order that would, among other things, prohibit Facebook from monetizing data it collects from users under 18.\nMeta's lawsuit against the FTC challenges what it calls \"the structurally unconstitutional authority exercised by the FTC through its Commissioners in an administrative reopening proceeding against Meta.\" It was filed against the FTC, Chair Lina Khan, and other commissioners in US District Court for the District of Columbia. Meta is seeking a preliminary injunction to stop the FTC proceeding pending resolution of the lawsuit.\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/11/meta-sues-ftc-hoping-to-block-ban-on-monetizing-kids-facebook-data/#comments", - "content": "Accused of violating kids' privacy, Facebook owner challenges FTC authority.", - "contentSnippet": "Accused of violating kids' privacy, Facebook owner challenges FTC authority.", - "guid": "https://arstechnica.com/?p=1987539", - "categories": [ - "Policy", - "Facebook", - "Facebook privacy", - "federal trade comission", - "meta" - ], - "isoDate": "2023-11-30T18:50:06.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Meta\u2019s \u201coverpriced\u201d ad-free subscriptions make privacy a \u201cluxury good\u201d: EU suit", - "link": "https://arstechnica.com/?p=1987523", - "pubDate": "Thu, 30 Nov 2023 18:37:31 +0000", - "content:encoded": "
\n
\n \"Meta\u2019s\n

Enlarge (credit: NurPhoto / Contributor | NurPhoto)

\n\n\n\n\n\n\n
\n

Backlash over Meta's ad-free subscription model in the European Union has begun just one month into its launch.

\n

On Thursday, Europe's largest consumer group, the European Consumer Organization (BEUC), filed a complaint with the network of consumer protection authorities. In a press release, BEUC alleges that Meta's subscription fees for ad-free access to Facebook and Instagram are so unreasonably high that they breach laws designed to protect user privacy as a fundamental right.

\n

\"Meta has been rolling out changes to its service in the EU in November 2023, which require Facebook and Instagram users to either consent to the processing of their data for advertising purposes by the company or pay in order not to be shown advertisements,\" BEUC's press release said. \"The tech giant\u2019s pay-or-consent approach is unfair and must be stopped.\"

Read 22 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: NurPhoto / Contributor | NurPhoto)\n \n\n\n\n\n\n\n\nBacklash over Meta's ad-free subscription model in the European Union has begun just one month into its launch.\nOn Thursday, Europe's largest consumer group, the European Consumer Organization (BEUC), filed a complaint with the network of consumer protection authorities. In a press release, BEUC alleges that Meta's subscription fees for ad-free access to Facebook and Instagram are so unreasonably high that they breach laws designed to protect user privacy as a fundamental right.\n\"Meta has been rolling out changes to its service in the EU in November 2023, which require Facebook and Instagram users to either consent to the processing of their data for advertising purposes by the company or pay in order not to be shown advertisements,\" BEUC's press release said. \"The tech giant\u2019s pay-or-consent approach is unfair and must be stopped.\"\n\nRead 22 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2023/11/metas-overpriced-ad-free-subscriptions-make-privacy-a-luxury-good-eu-suit/#comments", - "content": "Meta's terms for data collection are still too vague, consumer groups allege.", - "contentSnippet": "Meta's terms for data collection are still too vague, consumer groups allege.", - "guid": "https://arstechnica.com/?p=1987523", - "categories": [ - "Policy", - "ad-free subscriptions", - "data privacy", - "european union", - "Facebook", - "Facebook subscription", - "gdpr", - "Instagram", - "instagram subscription", - "meta", - "online data marketplace" - ], - "isoDate": "2023-11-30T18:37:31.000Z" - }, - { - "creator": "Benj Edwards", - "title": "ChatGPT is one year old. Here\u2019s how it changed the tech world.", - "link": "https://arstechnica.com/?p=1987298", - "pubDate": "Thu, 30 Nov 2023 17:01:19 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / An artist's interpretation of what ChatGPT might look like if embodied in the form of a robot toy blowing out a birthday candle. (credit: Aurich Lawson | Getty Images)

\n\n\n\n\n\n\n
\n

One year ago today, on November 30, 2022, OpenAI released ChatGPT. It's uncommon for a single product to create as much impact on the tech industry as ChatGPT has in just one year.

\n

Imagine a computer that can talk to you. Nothing new, right? Those have been around since the 1960s. But ChatGPT, the application that first bought large language models (LLMs) to a wide audience, felt different. It could compose poetry, seemingly understand the context of your questions and your conversation, and help you solve problems. Within a few months, it became the fastest-growing consumer application of all time. And it created a frenzy in the tech world.

\n\n

During these 365 days, ChatGPT has broadened the public perception of AI, captured imaginations, attracted critics, and stoked existential angst. It emboldened and reoriented Microsoft, made Google dance, spurred fears of AGI taking over the world, captivated world leaders, prompted attempts at government regulation, helped add words to dictionaries, inspired conferences and copycats, led to a crisis for educators, hyper-charged automated defamation, embarrassed lawyers by hallucinating, prompted lawsuits over training data, and much more.

Read 12 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / An artist's interpretation of what ChatGPT might look like if embodied in the form of a robot toy blowing out a birthday candle. (credit: Aurich Lawson | Getty Images)\n \n\n\n\n\n\n\n\nOne year ago today, on November 30, 2022, OpenAI released ChatGPT. It's uncommon for a single product to create as much impact on the tech industry as ChatGPT has in just one year.\nImagine a computer that can talk to you. Nothing new, right? Those have been around since the 1960s. But ChatGPT, the application that first bought large language models (LLMs) to a wide audience, felt different. It could compose poetry, seemingly understand the context of your questions and your conversation, and help you solve problems. Within a few months, it became the fastest-growing consumer application of all time. And it created a frenzy in the tech world.\nDuring these 365 days, ChatGPT has broadened the public perception of AI, captured imaginations, attracted critics, and stoked existential angst. It emboldened and reoriented Microsoft, made Google dance, spurred fears of AGI taking over the world, captivated world leaders, prompted attempts at government regulation, helped add words to dictionaries, inspired conferences and copycats, led to a crisis for educators, hyper-charged automated defamation, embarrassed lawyers by hallucinating, prompted lawsuits over training data, and much more.\n\nRead 12 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/information-technology/2023/11/chatgpt-was-the-spark-that-lit-the-fire-under-generative-ai-one-year-ago-today/#comments", - "content": "Examining 365 days with OpenAI's bot: The good, the bad, the ugly\u2014and the productive?", - "contentSnippet": "Examining 365 days with OpenAI's bot: The good, the bad, the ugly\u2014and the productive?", - "guid": "https://arstechnica.com/?p=1987298", - "categories": [ - "AI", - "Biz & IT", - "Anthropic", - "chatbots", - "ChatGPT", - "ChatGPT Plus", - "chatgtp", - "Claude", - "Galactica", - "google", - "GPT-3", - "GPT-3.5", - "GPT-4", - "large language models", - "LLaMA", - "machine learning", - "meta", - "microsoft", - "openai", - "sam altman" - ], - "isoDate": "2023-11-30T17:01:19.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Hyundai Ioniq 6 tops list of fastest-charging EVs; Chevy Bolt ranks last", - "link": "https://arstechnica.com/?p=1987446", - "pubDate": "Thu, 30 Nov 2023 16:11:44 +0000", - "content:encoded": "
\n
\n \"Symbol\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Despite the fact that most of us generally drive short distances when we get in our cars, the time it takes to fast-charge an electric vehicle remains of paramount importance to potential EV buyers. It's hard to blame them\u2014for more than a century, motorists have come to expect short refueling stops, and until someone actually lives with an EV for a while, it can be hard to make that paradigm shift. And of course, not everyone has the ability to slow-charge an EV at home or at work, your author included.

\n

So with that in mind, the consumer advice publication Edmunds decided to test a whole bunch of EVs to find out which one adds the most miles of range in the fewest minutes possible.

\n

Working with the automotive consultancy P3, Edmunds tested 43 different EVs, running down their batteries on its EV range-testing route to calculate the car's efficiency, then fast-charged them from 10 to 80 percent, measuring peak and average charging power and calculating charging losses in the process. Edmunds says it did this because automakers are inconsistent in advertising fast-charging times\u2014some list charge times from 10 to 80 percent, while others simply say their cars can add 100 miles (160 km) of range in a given time.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nDespite the fact that most of us generally drive short distances when we get in our cars, the time it takes to fast-charge an electric vehicle remains of paramount importance to potential EV buyers. It's hard to blame them\u2014for more than a century, motorists have come to expect short refueling stops, and until someone actually lives with an EV for a while, it can be hard to make that paradigm shift. And of course, not everyone has the ability to slow-charge an EV at home or at work, your author included.\nSo with that in mind, the consumer advice publication Edmunds decided to test a whole bunch of EVs to find out which one adds the most miles of range in the fewest minutes possible.\nWorking with the automotive consultancy P3, Edmunds tested 43 different EVs, running down their batteries on its EV range-testing route to calculate the car's efficiency, then fast-charged them from 10 to 80 percent, measuring peak and average charging power and calculating charging losses in the process. Edmunds says it did this because automakers are inconsistent in advertising fast-charging times\u2014some list charge times from 10 to 80 percent, while others simply say their cars can add 100 miles (160 km) of range in a given time.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2023/11/hyundais-ioniq-6-and-kias-ev6-are-fastest-fast-charging-evs-edmunds-says/#comments", - "content": "The consumer advice publication tested 43 EVs to see which added the most miles fastest.", - "contentSnippet": "The consumer advice publication tested 43 EVs to see which added the most miles fastest.", - "guid": "https://arstechnica.com/?p=1987446", - "categories": [ - "Cars", - "Chevrolet Bolt", - "DC fast charging", - "EV charging", - "ev fast charging", - "Hyundai Ioniq 6" - ], - "isoDate": "2023-11-30T16:11:44.000Z" - }, - { - "creator": "Benj Edwards", - "title": "Sam Altman officially back as OpenAI CEO: \u201cWe didn\u2019t lose a single employee\u201d", - "link": "https://arstechnica.com/?p=1987333", - "pubDate": "Thu, 30 Nov 2023 14:37:58 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: OpenAI / Benj Edwards)

\n\n\n\n\n\n\n
\n

On Wednesday, OpenAI announced that Sam Altman has officially returned to the ChatGPT-maker as CEO\u2014accompanied by Mira Murati as CTO and Greg Brockman as president\u2014resuming their roles from before the shocking firing of Altman that threw the company into turmoil two weeks ago. Altman says the company did not lose a single employee or customer throughout the crisis.

\n\n

\"I have never been more excited about the future. I am extremely grateful for everyone\u2019s hard work in an unclear and unprecedented situation, and I believe our resilience and spirit set us apart in the industry,\" wrote Altman in an official OpenAI news release. \"I feel so, so good about our probability of success for achieving our mission.\"

\n

In the statement, Altman formalized plans that have been underway since last week: ex-Salesforce co-CEO Bret Taylor and economist Larry Summers have officially begun their tenure on the \"new initial\" OpenAI board of directors. Quora CEO Adam D\u2019Angelo is keeping his previous seat on the board. Also on Wednesday, previous board members Tasha McCauley and Helen Toner officially resigned. In addition, a representative from Microsoft (a key OpenAI investor) will have a non-voting observer role on the board of directors.

Read 9 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: OpenAI / Benj Edwards)\n \n\n\n\n\n\n\n\nOn Wednesday, OpenAI announced that Sam Altman has officially returned to the ChatGPT-maker as CEO\u2014accompanied by Mira Murati as CTO and Greg Brockman as president\u2014resuming their roles from before the shocking firing of Altman that threw the company into turmoil two weeks ago. Altman says the company did not lose a single employee or customer throughout the crisis.\n\"I have never been more excited about the future. I am extremely grateful for everyone\u2019s hard work in an unclear and unprecedented situation, and I believe our resilience and spirit set us apart in the industry,\" wrote Altman in an official OpenAI news release. \"I feel so, so good about our probability of success for achieving our mission.\"\nIn the statement, Altman formalized plans that have been underway since last week: ex-Salesforce co-CEO Bret Taylor and economist Larry Summers have officially begun their tenure on the \"new initial\" OpenAI board of directors. Quora CEO Adam D\u2019Angelo is keeping his previous seat on the board. Also on Wednesday, previous board members Tasha McCauley and Helen Toner officially resigned. In addition, a representative from Microsoft (a key OpenAI investor) will have a non-voting observer role on the board of directors.\n\nRead 9 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/information-technology/2023/11/sam-altman-officially-back-as-openai-ceo-we-didnt-lose-a-single-employee/#comments", - "content": "Altman forgives Sutskever; Microsoft will serve observer role on new OpenAI board.", - "contentSnippet": "Altman forgives Sutskever; Microsoft will serve observer role on new OpenAI board.", - "guid": "https://arstechnica.com/?p=1987333", - "categories": [ - "AI", - "Biz & IT", - "Adam D'Angelo", - "Bret Taylor", - "ChatGPT", - "chatgtp", - "Emmett Shear", - "greg brockman", - "Helen Toner", - "Illya Sutskever", - "large language models", - "Larry Summers", - "machine learning", - "mire murati", - "openai", - "sam altman", - "Tasha McCauley" - ], - "isoDate": "2023-11-30T14:37:58.000Z" - }, - { - "creator": "Financial Times", - "title": "How Huawei made a cutting-edge chip in China and surprised the US", - "link": "https://arstechnica.com/?p=1987396", - "pubDate": "Thu, 30 Nov 2023 14:37:39 +0000", - "content:encoded": "
\n
\n \"montage\n

Enlarge (credit: FT)

\n\n\n\n\n\n\n
\n

In late 2020, Huawei was fighting for its survival as a mobile phone maker.

\n

A few months earlier, the Trump administration had hit the Chinese company with crippling sanctions, cutting it off from global semiconductor supply chains.

\n

The sanctions prevented anyone without a permit from making the chips Huawei designed, and the company was struggling to procure new chips to launch more advanced handsets.

Read 65 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: FT)\n \n\n\n\n\n\n\n\nIn late 2020, Huawei was fighting for its survival as a mobile phone maker.\nA few months earlier, the Trump administration had hit the Chinese company with crippling sanctions, cutting it off from global semiconductor supply chains.\nThe sanctions prevented anyone without a permit from making the chips Huawei designed, and the company was struggling to procure new chips to launch more advanced handsets.\n\nRead 65 remaining paragraphs | Comments", - "dc:creator": "Financial Times", - "comments": "https://arstechnica.com/information-technology/2023/11/how-huawei-made-a-cutting-edge-chip-in-china-and-surprised-the-us/#comments", - "content": "China's flagship smartphone maker pulled off the feat despite sanctions.", - "contentSnippet": "China's flagship smartphone maker pulled off the feat despite sanctions.", - "guid": "https://arstechnica.com/?p=1987396", - "categories": [ - "Biz & IT", - "AI chips", - "china", - "Chip making", - "Huawei", - "smartphones", - "syndication" - ], - "isoDate": "2023-11-30T14:37:39.000Z" - }, - { - "creator": "Beth Mole", - "title": "FDA warns chemical company not to mix brake cleaner into hand sanitizer", - "link": "https://arstechnica.com/?p=1987347", - "pubDate": "Thu, 30 Nov 2023 13:13:27 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | Jena Ardell)

\n\n\n\n\n\n\n
\n

A chemical manufacturing facility in Wisconsin has drawn the ire of the Food and Drug Administration for making hand sanitizer with the same equipment it uses to make products with toxic industrial solvents and chemicals, such as automotive brake parts cleaner. The practice is a clear violation of manufacturing standards and could lead to harmful cross-contamination, the FDA said.

\n

The agency sent a warning letter dated October 26 to the maker of the hand sanitizer, Brenntag Great Lakes, LLC, in Wisconsin. The letter, which redacted the name of the hand sanitizer, stated that the agency had found \"significant violations\" in an inspection in the spring and that the company's responses since then were \"inadequate.\"

\n

Toxic hand sanitizers became an alarming problem in the early days of the COVID-19 pandemic, when demand for the germ-fighting gels skyrocketed and manufacturers rushed products to market. Hundreds of products that flooded the market were found to contain methanol, a toxic alcohol that can cause harm via inhalation, ingestion, and skin absorption. Use of the products leads to poisoning, blindness, and even death, the FDA reported.

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | Jena Ardell)\n \n\n\n\n\n\n\n\nA chemical manufacturing facility in Wisconsin has drawn the ire of the Food and Drug Administration for making hand sanitizer with the same equipment it uses to make products with toxic industrial solvents and chemicals, such as automotive brake parts cleaner. The practice is a clear violation of manufacturing standards and could lead to harmful cross-contamination, the FDA said.\nThe agency sent a warning letter dated October 26 to the maker of the hand sanitizer, Brenntag Great Lakes, LLC, in Wisconsin. The letter, which redacted the name of the hand sanitizer, stated that the agency had found \"significant violations\" in an inspection in the spring and that the company's responses since then were \"inadequate.\"\nToxic hand sanitizers became an alarming problem in the early days of the COVID-19 pandemic, when demand for the germ-fighting gels skyrocketed and manufacturers rushed products to market. Hundreds of products that flooded the market were found to contain methanol, a toxic alcohol that can cause harm via inhalation, ingestion, and skin absorption. Use of the products leads to poisoning, blindness, and even death, the FDA reported.\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/health/2023/11/fda-warns-chemical-company-not-to-mix-brake-cleaner-into-hand-sanitizer/#comments", - "content": "It's not the first time the regulatory agency chided the chemical company for this.", - "contentSnippet": "It's not the first time the regulatory agency chided the chemical company for this.", - "guid": "https://arstechnica.com/?p=1987347", - "categories": [ - "Health", - "Science" - ], - "isoDate": "2023-11-30T13:13:27.000Z" - }, - { - "creator": "Kyle Orland", - "title": "My long quest to revive a \u201990s Windows gaming cult classic", - "link": "https://arstechnica.com/?p=1986792", - "pubDate": "Thu, 30 Nov 2023 12:00:35 +0000", - "content:encoded": "
\n\n\n\n\n\n
\n

The elusive, addictive gameplay that has been haunting my dreams for years.

\n

As 2023 draws to a close\u2014and as we start to finalize our Game of the Year contenders\u2014I really should be catching up on the embarrassingly long list of great recent releases that I haven't put enough time into this year. Instead, over the last few days, I've found myself once again hooked on a simple, addictive, and utterly unique Japanese Windows freeware game from the late '90s that, until recently, I thought I had lost forever.

\n

Pendulumania is a cult classic in the truest sense of the word: Few people have heard of it, even in hardcore gaming circles, but those who have experienced it tend to have very fond memories of it. And while I shared those memories, it wasn't until this week that I've been able to share my effusive praise for a game whose name and playable executable had eluded me for well over a decade.

\n

Timeless design

\n

The mechanics of Pendulumania are incredibly simple. You use the computer mouse to control a metal ring, which is attached via an elastic string to a white ball. The object is to carefully move the ring so the stretchy string and gravity can nudge the ball around a 2D plane, crashing into floating scoring orbs to collect points (colored orbs that randomly appear can make the ball larger or the string stronger as well). Be careful, though; if the elastic string stretches too far, it will break and your game will be over.

Read 18 remaining paragraphs | Comments

", - "content:encodedSnippet": "The elusive, addictive gameplay that has been haunting my dreams for years. \n\nAs 2023 draws to a close\u2014and as we start to finalize our Game of the Year contenders\u2014I really should be catching up on the embarrassingly long list of great recent releases that I haven't put enough time into this year. Instead, over the last few days, I've found myself once again hooked on a simple, addictive, and utterly unique Japanese Windows freeware game from the late '90s that, until recently, I thought I had lost forever.\nPendulumania is a cult classic in the truest sense of the word: Few people have heard of it, even in hardcore gaming circles, but those who have experienced it tend to have very fond memories of it. And while I shared those memories, it wasn't until this week that I've been able to share my effusive praise for a game whose name and playable executable had eluded me for well over a decade.\nTimeless design\nThe mechanics of Pendulumania are incredibly simple. You use the computer mouse to control a metal ring, which is attached via an elastic string to a white ball. The object is to carefully move the ring so the stretchy string and gravity can nudge the ball around a 2D plane, crashing into floating scoring orbs to collect points (colored orbs that randomly appear can make the ball larger or the string stronger as well). Be careful, though; if the elastic string stretches too far, it will break and your game will be over.\n\nRead 18 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/gaming/2023/11/my-long-quest-to-revive-a-90s-windows-gaming-cult-classic/#comments", - "content": "Pendulumania is a testament to addictive game design and Windows app portability.", - "contentSnippet": "Pendulumania is a testament to addictive game design and Windows app portability.", - "guid": "https://arstechnica.com/?p=1986792", - "categories": [ - "Features", - "Gaming", - "addictive", - "Classic", - "gaming", - "Homebrew", - "Japan", - "lost and found", - "Nostalgia", - "pendulumania", - "Windows" - ], - "isoDate": "2023-11-30T12:00:35.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Elon Musk on X antisemitism controversy: \u201cDon\u2019t advertise. Go f*** yourself\u201d", - "link": "https://arstechnica.com/?p=1987322", - "pubDate": "Thu, 30 Nov 2023 00:53:46 +0000", - "content:encoded": "
\n
\n \"Illustration\n

Enlarge (credit: Aurich Lawson | Getty Images)

\n\n\n\n\n\n\n
\n

Elon Musk addressed an antisemitism controversy in characteristically unwise fashion during a public interview today, telling businesses to \"go fuck yourself\" and to stop advertising on the social network formerly named Twitter.

\n

Musk spoke on stage at The New York Times' DealBook Summit in an interview conducted by journalist Andrew Ross Sorkin. Sorkin asked Musk about trying to gain back advertising from businesses that pulled ads from X after Musk posted a favorable response to an antisemitic tweet.

\n

\"I hope they stop. Don't advertise,\" Musk said in response to Sorkin's question (see video).

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Aurich Lawson | Getty Images)\n \n\n\n\n\n\n\n\nElon Musk addressed an antisemitism controversy in characteristically unwise fashion during a public interview today, telling businesses to \"go fuck yourself\" and to stop advertising on the social network formerly named Twitter.\nMusk spoke on stage at The New York Times' DealBook Summit in an interview conducted by journalist Andrew Ross Sorkin. Sorkin asked Musk about trying to gain back advertising from businesses that pulled ads from X after Musk posted a favorable response to an antisemitic tweet.\n\"I hope they stop. Don't advertise,\" Musk said in response to Sorkin's question (see video).\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/11/elon-musk-on-x-antisemitism-controversy-dont-advertise-go-f-yourself/#comments", - "content": "Musk says X advertiser backlash is \"going to kill the company.\"", - "contentSnippet": "Musk says X advertiser backlash is \"going to kill the company.\"", - "guid": "https://arstechnica.com/?p=1987322", - "categories": [ - "Policy", - "Elon Musk" - ], - "isoDate": "2023-11-30T00:53:46.000Z" - }, - { - "creator": "Dan Goodin", - "title": "2 municipal water facilities report falling to hackers in separate breaches", - "link": "https://arstechnica.com/?p=1987313", - "pubDate": "Thu, 30 Nov 2023 00:42:01 +0000", - "content:encoded": "
\n
\n \"2\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

In the stretch of a few days, two municipal water facilities that serve more than 2 million residents in parts of Pennsylvania and Texas have reported network security breaches that have hamstrung parts of their business or operational processes.

\n

In response to one of the attacks, the Municipal Water Authority of Aliquippa in western Pennsylvania temporarily shut down a pump providing drinking water from the facility\u2019s treatment plant to the townships of Raccoon and Potter, according to reporting by the Beaver Countian. A photo the Water Authority provided to news outlets showed the front panel of a programmable logic controller\u2014a toaster-sized box often abbreviated as PLC that\u2019s used to automate physical processes inside of industrial settings\u2014that displayed an anti-Israeli message. The PLC bore the logo of the manufacturer Unitronics. A sign above it read \u201cPrimary PLC.\u201d

\n

WWS facilities in the crosshairs

\n

The Cybersecurity and Infrastructure Security Administration on Tuesday published an advisory that warned of recent attacks compromising Unitronics PLCs used in Water and Wastewater Systems, which are often abbreviated as WWSes. Although the notice didn\u2019t identify any facilities by name, the account of one hack was almost identical to the one that occurred inside the Aliquippa facility.

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nIn the stretch of a few days, two municipal water facilities that serve more than 2 million residents in parts of Pennsylvania and Texas have reported network security breaches that have hamstrung parts of their business or operational processes.\nIn response to one of the attacks, the Municipal Water Authority of Aliquippa in western Pennsylvania temporarily shut down a pump providing drinking water from the facility\u2019s treatment plant to the townships of Raccoon and Potter, according to reporting by the Beaver Countian. A photo the Water Authority provided to news outlets showed the front panel of a programmable logic controller\u2014a toaster-sized box often abbreviated as PLC that\u2019s used to automate physical processes inside of industrial settings\u2014that displayed an anti-Israeli message. The PLC bore the logo of the manufacturer Unitronics. A sign above it read \u201cPrimary PLC.\u201d\nWWS facilities in the crosshairs\nThe Cybersecurity and Infrastructure Security Administration on Tuesday published an advisory that warned of recent attacks compromising Unitronics PLCs used in Water and Wastewater Systems, which are often abbreviated as WWSes. Although the notice didn\u2019t identify any facilities by name, the account of one hack was almost identical to the one that occurred inside the Aliquippa facility.\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2023/11/2-municipal-water-facilities-report-falling-to-hackers-in-separate-breaches/#comments", - "content": "The facilities in Pennsylvania and Texas serve more than 2 million residents.", - "contentSnippet": "The facilities in Pennsylvania and Texas serve more than 2 million residents.", - "guid": "https://arstechnica.com/?p=1987313", - "categories": [ - "Biz & IT", - "Security" - ], - "isoDate": "2023-11-30T00:42:01.000Z" - }, - { - "creator": "Stephen Clark", - "title": "With another record broken, the world\u2019s spaceports are busier than ever", - "link": "https://arstechnica.com/?p=1987238", - "pubDate": "Wed, 29 Nov 2023 23:18:15 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A solid-fueled Ceres 1 rocket, developed by the Chinese company Galactic Energy, fires away from an ocean-going launch platform in the Yellow Sea on September 5. (credit: Chen Xiao/VCG via Getty Images)

\n\n\n\n\n\n\n
\n

Led by SpaceX and China, the world's launch providers have put more rockets and payloads into orbit so far in 2023 than in any prior year, continuing an upward trend in launch activity over the last five years.

\n

On Sunday, the Transportation Security Administration reported that it screened more than 2.9 million airline passengers making their way through US airports after Thanksgiving. It was the busiest day in history for US airports.

\n

A few days earlier, the world's spaceports set a new record with the launch of a SpaceX Falcon 9 rocket from Cape Canaveral, Florida, with another batch of Starlink Internet satellites from Florida. This launch on November 22 was the 180th launch of 2023 to put its payload into orbit, eclipsing the mark of 179 successful orbital launches from last year.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A solid-fueled Ceres 1 rocket, developed by the Chinese company Galactic Energy, fires away from an ocean-going launch platform in the Yellow Sea on September 5. (credit: Chen Xiao/VCG via Getty Images)\n \n\n\n\n\n\n\n\nLed by SpaceX and China, the world's launch providers have put more rockets and payloads into orbit so far in 2023 than in any prior year, continuing an upward trend in launch activity over the last five years.\nOn Sunday, the Transportation Security Administration reported that it screened more than 2.9 million airline passengers making their way through US airports after Thanksgiving. It was the busiest day in history for US airports.\nA few days earlier, the world's spaceports set a new record with the launch of a SpaceX Falcon 9 rocket from Cape Canaveral, Florida, with another batch of Starlink Internet satellites from Florida. This launch on November 22 was the 180th launch of 2023 to put its payload into orbit, eclipsing the mark of 179 successful orbital launches from last year.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2023/11/2023-has-been-another-year-with-a-record-number-of-orbital-launches/#comments", - "content": "No turning back? We can expect even more launches worldwide next year.", - "contentSnippet": "No turning back? We can expect even more launches worldwide next year.", - "guid": "https://arstechnica.com/?p=1987238", - "categories": [ - "Space", - "china", - "Commercial space", - "launches", - "spacex" - ], - "isoDate": "2023-11-29T23:18:15.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Nvidia CEO: US chip independence may take 20 years to achieve", - "link": "https://arstechnica.com/?p=1987284", - "pubDate": "Wed, 29 Nov 2023 22:35:40 +0000", - "content:encoded": "
\n
\n \"Founder\n

Enlarge / Founder and CEO of NVIDIA Jensen Huang speaks during the New York Times annual DealBook summit on November 29, 2023, in New York City. (credit: Michael M. Santiago / Staff | Getty Images North America)

\n\n\n\n\n\n\n
\n

The US could be up to two decades away from maintaining its own domestic chips supply chain, Nvidia Corp.'s CEO, Jensen Huang, told an audience gathered in New York for the New York Times\u2019s DealBook conference.

\n

Nvidia is a giant in the semiconductor industry, and Huang said his company's success depends on \"myriad components that come from different parts of the world,\" Bloomberg reported.\u00a0\"Not just Taiwan,\" Huang said, where Taiwan Semiconductor Manufacturing company makes the world's most advanced semiconductor technology.

\n

\u201cWe are somewhere between a decade and two decades away from supply chain independence,\u201d Huang said. \u201cIt\u2019s not a really practical thing for a decade or two.\u201d

Read 16 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Founder and CEO of NVIDIA Jensen Huang speaks during the New York Times annual DealBook summit on November 29, 2023, in New York City. (credit: Michael M. Santiago / Staff | Getty Images North America)\n \n\n\n\n\n\n\n\nThe US could be up to two decades away from maintaining its own domestic chips supply chain, Nvidia Corp.'s CEO, Jensen Huang, told an audience gathered in New York for the New York Times\u2019s DealBook conference.\nNvidia is a giant in the semiconductor industry, and Huang said his company's success depends on \"myriad components that come from different parts of the world,\" Bloomberg reported.\u00a0\"Not just Taiwan,\" Huang said, where Taiwan Semiconductor Manufacturing company makes the world's most advanced semiconductor technology.\n\u201cWe are somewhere between a decade and two decades away from supply chain independence,\u201d Huang said. \u201cIt\u2019s not a really practical thing for a decade or two.\u201d\n\nRead 16 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2023/11/nvidia-ceo-us-chip-independence-may-take-20-years-to-achieve/#comments", - "content": "US may take twice as long as Biden expects to build its own chip supply chain.", - "contentSnippet": "US may take twice as long as Biden expects to build its own chip supply chain.", - "guid": "https://arstechnica.com/?p=1987284", - "categories": [ - "Policy", - "AI chips", - "biden administration", - "china", - "chips and science act", - "chips industry", - "NVIDIA", - "semiconductor", - "Taiwan", - "Taiwan Semiconductor Manufacturing Company", - "us national security" - ], - "isoDate": "2023-11-29T22:35:40.000Z" - }, - { - "creator": "Samuel Axon", - "title": "Netflix lands its first big-name games with Grand Theft Auto trilogy", - "link": "https://arstechnica.com/?p=1987229", - "pubDate": "Wed, 29 Nov 2023 22:14:04 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / The enhanced edition trilogy includes Grand Theft Auto 3, Grand Theft Auto Vice City, and Grand Theft Auto San Andreas. (credit: Rockstar Games)

\n\n\n\n\n\n\n
\n

Netflix subscribers will be able to play the three original 3D Grand Theft Auto games on iOS and Android starting in December, according to a blog post from the streamer.

\n

The titles included are 2001's Grand Theft Auto III, 2002's Grand Theft Auto: Vice City, and 2004's Grand Theft Auto: San Andreas.

\n

All three released initially on the PS2 and Xbox. The first 3D entry in the series, Grand Theft Auto III, was a crossover cultural sensation when it debuted, and it is credited as one of the main originators of the open-world genre, which remains one of the most popular genres in triple-A games to this day.

Read 9 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The enhanced edition trilogy includes Grand Theft Auto 3, Grand Theft Auto Vice City, and Grand Theft Auto San Andreas. (credit: Rockstar Games)\n \n\n\n\n\n\n\n\nNetflix subscribers will be able to play the three original 3D Grand Theft Auto games on iOS and Android starting in December, according to a blog post from the streamer.\nThe titles included are 2001's Grand Theft Auto III, 2002's Grand Theft Auto: Vice City, and 2004's Grand Theft Auto: San Andreas.\nAll three released initially on the PS2 and Xbox. The first 3D entry in the series, Grand Theft Auto III, was a crossover cultural sensation when it debuted, and it is credited as one of the main originators of the open-world genre, which remains one of the most popular genres in triple-A games to this day.\n\nRead 9 remaining paragraphs | Comments", - "dc:creator": "Samuel Axon", - "comments": "https://arstechnica.com/gaming/2023/11/netflix-lands-its-first-big-name-games-with-grand-theft-auto-trilogy/#comments", - "content": "Package includes GTA 3, GTA Vice City, and GTA San Andreas.", - "contentSnippet": "Package includes GTA 3, GTA Vice City, and GTA San Andreas.", - "guid": "https://arstechnica.com/?p=1987229", - "categories": [ - "Culture", - "Gaming", - "Tech", - "android", - "grand theft auto", - "Grand Theft Auto 3", - "Grand Theft Auto Vice City", - "Grand Theft Auto: San Andreas", - "gta", - "iOS", - "mobile games", - "Netflix", - "netflix games", - "rockstar games" - ], - "isoDate": "2023-11-29T22:14:04.000Z" - }, - { - "creator": "Dan Goodin", - "title": "Google researchers report critical zero-days in Chrome and all Apple OSes", - "link": "https://arstechnica.com/?p=1987731", - "pubDate": "Fri, 01 Dec 2023 00:38:29 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Researchers in Google's Threat Analysis Group have been as busy as ever, with discoveries that have led to the disclosure of three high-severity zero-day vulnerabilities under active exploitation in Apple OSes and the Chrome browser in the span of 48 hours.

\n

Apple on Thursday said it was releasing security updates fixing two vulnerabilities present in iOS, macOS, and iPadOS. Both of them reside in WebKit, the engine that drives Safari and a wide range of other apps, including Apple Mail, the App Store, and all browsers running on iPhones and iPads. While the update applies to all supported versions of Apple OSes, Thursday\u2019s disclosure suggested in-the-wild attacks exploiting the vulnerabilities targeted earlier versions of iOS.

\n

\u201cApple is aware of a report that this issue may have been exploited against versions of iOS before iOS 16.7.1,\u201d Apple officials wrote of both vulnerabilities, which are tracked as CVE-2023-42916 and CVE-2023-42917.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nResearchers in Google's Threat Analysis Group have been as busy as ever, with discoveries that have led to the disclosure of three high-severity zero-day vulnerabilities under active exploitation in Apple OSes and the Chrome browser in the span of 48 hours.\nApple on Thursday said it was releasing security updates fixing two vulnerabilities present in iOS, macOS, and iPadOS. Both of them reside in WebKit, the engine that drives Safari and a wide range of other apps, including Apple Mail, the App Store, and all browsers running on iPhones and iPads. While the update applies to all supported versions of Apple OSes, Thursday\u2019s disclosure suggested in-the-wild attacks exploiting the vulnerabilities targeted earlier versions of iOS.\n\u201cApple is aware of a report that this issue may have been exploited against versions of iOS before iOS 16.7.1,\u201d Apple officials wrote of both vulnerabilities, which are tracked as CVE-2023-42916 and CVE-2023-42917.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2023/11/google-researchers-report-critical-zero-days-in-chrome-and-all-apple-oses/#comments", - "content": "Discoveries made by Google's Threat Analysis Group, which tracks nation-state hacking.", - "contentSnippet": "Discoveries made by Google's Threat Analysis Group, which tracks nation-state hacking.", - "guid": "https://arstechnica.com/?p=1987731", - "categories": [ - "Security", - "apple", - "google", - "vulnerabilities", - "zerodays" - ], - "isoDate": "2023-12-01T00:38:29.000Z" - }, - { - "creator": "Elizabeth Rayne", - "title": "Fungi join the list of organisms that can control when ice forms", - "link": "https://arstechnica.com/?p=1989479", - "pubDate": "Thu, 07 Dec 2023 23:08:09 +0000", - "content:encoded": "
\n
\n \"Image\n

Enlarge / A related species of Fusarium. (credit: Wikimedia Commons)

\n\n\n\n\n\n\n
\n

While it may be the reason behind tires skidding, pipes bursting, and closed roads making traffic a nightmare, ice doesn\u2019t always form as easily as it seems. It often gets an assist from proteins made by fungi.\u00a0

\n

Never mind the common thinking that ice forms at 0\u00b0 C (32\u00b0 F). Though this is water\u2019s freezing point, pure water will only freeze when temperatures plummet as low as minus 46\u00b0 C (minus 50.8\u00b0 F). So why does it usually freeze at zero anyway? Organisms such as bacteria, insects, and fungi produce proteins known as ice nucleators (non-protein nucleators can also be of abiotic origin). These proteins can kick-start the formation, or nucleation, of ice at higher temperatures than pure water would freeze at.

\n

While the exact reason fungi make these proteins remains unknown, researchers Valeria Molinero of the University of Utah and Konrad Meister of Boise State University led a study that has revealed more about how fungal ice nucleators can both promote and hold back ice formation more efficiently than those of many other life-forms.

Read 10 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A related species of Fusarium. (credit: Wikimedia Commons)\n \n\n\n\n\n\n\n\nWhile it may be the reason behind tires skidding, pipes bursting, and closed roads making traffic a nightmare, ice doesn\u2019t always form as easily as it seems. It often gets an assist from proteins made by fungi.\u00a0\nNever mind the common thinking that ice forms at 0\u00b0 C (32\u00b0 F). Though this is water\u2019s freezing point, pure water will only freeze when temperatures plummet as low as minus 46\u00b0 C (minus 50.8\u00b0 F). So why does it usually freeze at zero anyway? Organisms such as bacteria, insects, and fungi produce proteins known as ice nucleators (non-protein nucleators can also be of abiotic origin). These proteins can kick-start the formation, or nucleation, of ice at higher temperatures than pure water would freeze at.\nWhile the exact reason fungi make these proteins remains unknown, researchers Valeria Molinero of the University of Utah and Konrad Meister of Boise State University led a study that has revealed more about how fungal ice nucleators can both promote and hold back ice formation more efficiently than those of many other life-forms.\n\nRead 10 remaining paragraphs | Comments", - "dc:creator": "Elizabeth Rayne", - "comments": "https://arstechnica.com/science/2023/12/frosty-the-mushroom-fungus-make-proteins-that-can-help-ice-form/#comments", - "content": "What's the advantage of triggering ice formation? It's not entirely clear.", - "contentSnippet": "What's the advantage of triggering ice formation? It's not entirely clear.", - "guid": "https://arstechnica.com/?p=1989479", - "categories": [ - "Science", - "biochemistry", - "Biology", - "chemistry", - "fungi", - "ince", - "proteins" - ], - "isoDate": "2023-12-07T23:08:09.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Google calls Drive data loss \u201cfixed,\u201d locks forum threads saying otherwise", - "link": "https://arstechnica.com/?p=1989435", - "pubDate": "Thu, 07 Dec 2023 22:26:51 +0000", - "content:encoded": "
\n
\n \"Google\n

Enlarge (credit: Google Drive)

\n\n\n\n\n\n\n
\n

Google is dealing with its second \"lost data\" fiasco in the past few months. This time, it's Google Drive, which has been mysteriously losing files for some people. Google acknowledged the issue on November 27, and a week later, it posted what it called a fix.

\n

It doesn't feel like Google is describing this issue correctly; the company still calls it a \"syncing issue\" with the Drive desktop app versions 84.0.0.0 through 84.0.4.0. Syncing problems would only mean files don't make it to or from the cloud, and that doesn't explain why people are completely losing files. In the most popular issue thread on the Google Drive Community forums, several users describe spreadsheets and documents going missing, which all would have been created and saved in the web interface, not the desktop app, and it's hard to see how the desktop app could affect that. Many users peg \"May 2023\" as the time documents stopped saving. Some say they've never used the desktop app.

\n

Drive has multiple ways of syncing files, which complicates any explanation or diagnosis of what's going on. The most suspect mode in the whole fiasco is the default \"file streaming,\" mode which is actually cloud-first. Files get removed from your computer and stored in the cloud, saving space and leaving only a web link in their place. Perhaps a \"syncing\" issue could remove files from your computer before uploading (that still doesn't explain the claims of missing web documents, though).

Read 6 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Google Drive)\n \n\n\n\n\n\n\n\nGoogle is dealing with its second \"lost data\" fiasco in the past few months. This time, it's Google Drive, which has been mysteriously losing files for some people. Google acknowledged the issue on November 27, and a week later, it posted what it called a fix.\nIt doesn't feel like Google is describing this issue correctly; the company still calls it a \"syncing issue\" with the Drive desktop app versions 84.0.0.0 through 84.0.4.0. Syncing problems would only mean files don't make it to or from the cloud, and that doesn't explain why people are completely losing files. In the most popular issue thread on the Google Drive Community forums, several users describe spreadsheets and documents going missing, which all would have been created and saved in the web interface, not the desktop app, and it's hard to see how the desktop app could affect that. Many users peg \"May 2023\" as the time documents stopped saving. Some say they've never used the desktop app.\nDrive has multiple ways of syncing files, which complicates any explanation or diagnosis of what's going on. The most suspect mode in the whole fiasco is the default \"file streaming,\" mode which is actually cloud-first. Files get removed from your computer and stored in the cloud, saving space and leaving only a web link in their place. Perhaps a \"syncing\" issue could remove files from your computer before uploading (that still doesn't explain the claims of missing web documents, though).\n\nRead 6 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2023/12/google-calls-drive-data-loss-fixed-locks-forum-threads-saying-otherwise/#comments", - "content": "The fix will sift through app data for cached files, but users say it doesn't work.", - "contentSnippet": "The fix will sift through app data for cached files, but users say it doesn't work.", - "guid": "https://arstechnica.com/?p=1989435", - "categories": [ - "Google", - "Tech", - "Google drive" - ], - "isoDate": "2023-12-07T22:26:51.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "EV battery swaps will be tested with the Fiat 500e in 2024", - "link": "https://arstechnica.com/?p=1989531", - "pubDate": "Thu, 07 Dec 2023 20:44:50 +0000", - "content:encoded": "
\n
\n \"Two\n

Enlarge / This is what Ample's battery modules look like. (credit: Ample)

\n\n\n\n\n\n\n
\n

A small fleet of rideshare Fiat 500e electric vehicles will become testbeds for battery-swap technology in 2024. The experiment is being conducted by Ample, a startup working on battery swaps, and Stellantis, Fiat's parent company, the Verge reported today.

\n

This isn't Ample's first test of its battery-swapping technology; in 2021 it started a small trial in the Bay Area to demo its modular battery, which replaces the existing traction battery in an EV and allows Ample's automated swap stations to switch out depleted packs for charged ones. But the fact that this deal was made with an OEM like Stellantis is still significant.

\n

As we detailed last time we looked at Ample's technology, the EVs require some engineering work for this to all be possible. Ample has to design a structural frame to replace the existing battery pack that will instead contain the swappable modules, while still conforming to the engineering requirements of the original pack\u2014down to the same fasteners, bolts, and connectors.

Read 2 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / This is what Ample's battery modules look like. (credit: Ample)\n \n\n\n\n\n\n\n\nA small fleet of rideshare Fiat 500e electric vehicles will become testbeds for battery-swap technology in 2024. The experiment is being conducted by Ample, a startup working on battery swaps, and Stellantis, Fiat's parent company, the Verge reported today.\nThis isn't Ample's first test of its battery-swapping technology; in 2021 it started a small trial in the Bay Area to demo its modular battery, which replaces the existing traction battery in an EV and allows Ample's automated swap stations to switch out depleted packs for charged ones. But the fact that this deal was made with an OEM like Stellantis is still significant.\nAs we detailed last time we looked at Ample's technology, the EVs require some engineering work for this to all be possible. Ample has to design a structural frame to replace the existing battery pack that will instead contain the swappable modules, while still conforming to the engineering requirements of the original pack\u2014down to the same fasteners, bolts, and connectors.\n\nRead 2 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2023/12/ev-battery-swaps-will-be-tested-with-the-fiat-500e-in-2024/#comments", - "content": "Ample's technology replaces the existing EV battery pack to allow battery swaps.", - "contentSnippet": "Ample's technology replaces the existing EV battery pack to allow battery swaps.", - "guid": "https://arstechnica.com/?p=1989531", - "categories": [ - "Cars", - "Ample", - "battery swap", - "EV battery", - "fiat", - "Fiat 500e", - "Stellantis" - ], - "isoDate": "2023-12-07T20:44:50.000Z" - }, - { - "creator": "Scharon Harding", - "title": "HP misreads room, awkwardly brags about its \u201cless hated\u201d printers", - "link": "https://arstechnica.com/?p=1989448", - "pubDate": "Thu, 07 Dec 2023 20:32:35 +0000", - "content:encoded": "
\n
\n \"hp\n

Enlarge (credit: HP)

\n\n\n\n\n\n\n
\n

HP knows people have grown to hate printers. It even knows that people hate HP printers. But based on a new marketing campaign the company launched, HP is OK with that\u2014so long as it can convince people that there are worse options out there.

\n

The marketing campaign hitting parts of Europe aims to present HP as real and empathetic. The tagline \"Made to be less hated\" seems to acknowledge people's frustration with printers. But HP's a top proponent of the exact sort of money-grabbing, disruptive practices that have turned people against printers.

\n

When did HP printers become \u201cless hated\u201d?

\n

Three short HP video ad campaigns detailed by Marketing Communication News include one with a customer supremely frustrated with his printer's low ink warning. He kicks his hardware off the table before words appear saying, \"No more low ink with HP ink solutions.\" Another HP video brags of \"no more installation fails\" and points to HP's Smart app. Both of these claims fall apart with a look at HP's recent and poorly executed firmware rollouts.

Read 19 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: HP)\n \n\n\n\n\n\n\n\nHP knows people have grown to hate printers. It even knows that people hate HP printers. But based on a new marketing campaign the company launched, HP is OK with that\u2014so long as it can convince people that there are worse options out there.\nThe marketing campaign hitting parts of Europe aims to present HP as real and empathetic. The tagline \"Made to be less hated\" seems to acknowledge people's frustration with printers. But HP's a top proponent of the exact sort of money-grabbing, disruptive practices that have turned people against printers.\nWhen did HP printers become \u201cless hated\u201d?\nThree short HP video ad campaigns detailed by Marketing Communication News include one with a customer supremely frustrated with his printer's low ink warning. He kicks his hardware off the table before words appear saying, \"No more low ink with HP ink solutions.\" Another HP video brags of \"no more installation fails\" and points to HP's Smart app. Both of these claims fall apart with a look at HP's recent and poorly executed firmware rollouts.\n\nRead 19 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/gadgets/2023/12/hp-misreads-room-awkwardly-brags-about-its-less-hated-printers/#comments", - "content": "Opinion: HP's printer business practices have infuriated users for years. ", - "contentSnippet": "Opinion: HP's printer business practices have infuriated users for years.", - "guid": "https://arstechnica.com/?p=1989448", - "categories": [ - "Tech", - "HP", - "printers" - ], - "isoDate": "2023-12-07T20:32:35.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Twitch exit from S. Korea is latest fallout from \u201csending-party-pays\u201d model", - "link": "https://arstechnica.com/?p=1989493", - "pubDate": "Thu, 07 Dec 2023 20:15:56 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Getty Images | NurPhoto)

\n\n\n\n\n\n\n
\n

Amazon-owned Twitch plans to stop providing its streaming platform in South Korea, saying that fees charged by network operators make it impossible to run the service without a significant loss in the country.

\n

The shutdown is scheduled for February 27, 2024, Twitch CEO Dan Clancy announced on Tuesday. Transmitting data in Korea \"is prohibitively expensive\" despite the company's efforts to reduce data usage, he wrote.

\n

\"First, we experimented with a peer-to-peer model for source quality. Then, we adjusted source quality to a maximum of 720p. While we have lowered costs from these efforts, our network fees in Korea are still 10 times more expensive than in most other countries. Twitch has been operating in Korea at a significant loss, and unfortunately there is no pathway forward for our business to run more sustainably in that country,\" Clancy wrote.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | NurPhoto)\n \n\n\n\n\n\n\n\nAmazon-owned Twitch plans to stop providing its streaming platform in South Korea, saying that fees charged by network operators make it impossible to run the service without a significant loss in the country.\nThe shutdown is scheduled for February 27, 2024, Twitch CEO Dan Clancy announced on Tuesday. Transmitting data in Korea \"is prohibitively expensive\" despite the company's efforts to reduce data usage, he wrote.\n\"First, we experimented with a peer-to-peer model for source quality. Then, we adjusted source quality to a maximum of 720p. While we have lowered costs from these efforts, our network fees in Korea are still 10 times more expensive than in most other countries. Twitch has been operating in Korea at a significant loss, and unfortunately there is no pathway forward for our business to run more sustainably in that country,\" Clancy wrote.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/12/twitch-exit-from-s-korea-is-latest-fallout-from-sending-party-pays-model/#comments", - "content": "Twitch: Network fees in Korea 10 times more expensive than in most countries.", - "contentSnippet": "Twitch: Network fees in Korea 10 times more expensive than in most countries.", - "guid": "https://arstechnica.com/?p=1989493", - "categories": [ - "Policy", - "Net Neutrality", - "sending party pays", - "twitch", - "twitch south korea" - ], - "isoDate": "2023-12-07T20:15:56.000Z" - }, - { - "creator": "Andrew Cunningham", - "title": "New systemd update will bring Windows\u2019 infamous Blue Screen of Death to Linux", - "link": "https://arstechnica.com/?p=1989459", - "pubDate": "Thu, 07 Dec 2023 19:22:44 +0000", - "content:encoded": "
\n
\n \"New\n

Enlarge (credit: hdaniel)

\n\n\n\n\n\n\n
\n

Windows' infamous \"Blue Screen of Death\" is a bit of a punchline. People have made a hobby of spotting them out in the wild, and in some circles, they remain a byword for the supposed flakiness and instability of PCs. To this day, networked PCs in macOS are represented by beige CRT monitors displaying a BSOD.

\n

But the BSOD is supposed to be a diagnostic tool, an informational screen that technicians can use to begin homing in on the problem that caused the crash in the first place; that old Windows' BSOD error codes were often so broad and vague as to be useless doesn't make the idea a bad one. Today, version 255 of the Linux systemd project honors that original intent by adding a systemd-bsod component that generates a full-screen display of some error messages when a Linux system crashes.

\n\n

The systemd-bsod component is currently listed as \"experimental\" and \"subject to change.\" But the functionality is simple: any logged error message that reaches the LOG_EMERG level will be displayed full-screen to allow people to take a photo or write it down. Phoronix reports that, as with BSODs in modern Windows, the Linux version will also generate a QR code to make it easier to look up information on your phone.

Read 2 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: hdaniel)\n \n\n\n\n\n\n\n\nWindows' infamous \"Blue Screen of Death\" is a bit of a punchline. People have made a hobby of spotting them out in the wild, and in some circles, they remain a byword for the supposed flakiness and instability of PCs. To this day, networked PCs in macOS are represented by beige CRT monitors displaying a BSOD.\nBut the BSOD is supposed to be a diagnostic tool, an informational screen that technicians can use to begin homing in on the problem that caused the crash in the first place; that old Windows' BSOD error codes were often so broad and vague as to be useless doesn't make the idea a bad one. Today, version 255 of the Linux systemd project honors that original intent by adding a systemd-bsod component that generates a full-screen display of some error messages when a Linux system crashes.\nThe systemd-bsod component is currently listed as \"experimental\" and \"subject to change.\" But the functionality is simple: any logged error message that reaches the LOG_EMERG level will be displayed full-screen to allow people to take a photo or write it down. Phoronix reports that, as with BSODs in modern Windows, the Linux version will also generate a QR code to make it easier to look up information on your phone.\n\nRead 2 remaining paragraphs | Comments", - "dc:creator": "Andrew Cunningham", - "comments": "https://arstechnica.com/gadgets/2023/12/linux-distros-are-about-to-get-a-killer-windows-feature-the-blue-screen-of-death/#comments", - "content": "Systemd is used by Debian, Arch, Fedora, Ubuntu, and many downstream distros.", - "contentSnippet": "Systemd is used by Debian, Arch, Fedora, Ubuntu, and many downstream distros.", - "guid": "https://arstechnica.com/?p=1989459", - "categories": [ - "Tech", - "blue screen of death", - "BSOD", - "Debian", - "Fedora", - "Linux", - "Red Hat Enterprise Linux", - "systemd", - "Ubuntu", - "windows 11" - ], - "isoDate": "2023-12-07T19:22:44.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Meta defies FBI opposition to encryption, brings E2EE to Facebook, Messenger", - "link": "https://arstechnica.com/?p=1989426", - "pubDate": "Thu, 07 Dec 2023 17:06:34 +0000", - "content:encoded": "
\n
\n \"An\n

Enlarge (credit: Getty Images | Chesnot )

\n\n\n\n\n\n\n
\n

Meta has started enabling end-to-end encryption (E2EE) by default for chats and calls on Messenger and Facebook despite protests from the FBI and other law enforcement agencies that oppose the widespread use of encryption technology. \"Today I'm delighted to announce that we are rolling out default end-to-end encryption for personal messages and calls on Messenger and Facebook,\" Meta VP of Messenger Loredana Crisan wrote yesterday.

\n

In April, a consortium of 15 law enforcement agencies from around the world, including the FBI and ICE Homeland Security Investigations, urged Meta to cancel its plan to expand the use of end-to-end encryption. The consortium complained that terrorists, sex traffickers, child abusers, and other criminals will use encrypted messages to evade law enforcement.

\n

Meta held firm, telling Ars in April that \"we don't think people want us reading their private messages\" and that the plan to make end-to-end encryption the default in Facebook Messenger would be completed before the end of 2023. Meta also plans default end-to-end encryption for Instagram messages but has previously said that may not happen this year.

Read 12 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | Chesnot )\n \n\n\n\n\n\n\n\nMeta has started enabling end-to-end encryption (E2EE) by default for chats and calls on Messenger and Facebook despite protests from the FBI and other law enforcement agencies that oppose the widespread use of encryption technology. \"Today I'm delighted to announce that we are rolling out default end-to-end encryption for personal messages and calls on Messenger and Facebook,\" Meta VP of Messenger Loredana Crisan wrote yesterday.\nIn April, a consortium of 15 law enforcement agencies from around the world, including the FBI and ICE Homeland Security Investigations, urged Meta to cancel its plan to expand the use of end-to-end encryption. The consortium complained that terrorists, sex traffickers, child abusers, and other criminals will use encrypted messages to evade law enforcement.\nMeta held firm, telling Ars in April that \"we don't think people want us reading their private messages\" and that the plan to make end-to-end encryption the default in Facebook Messenger would be completed before the end of 2023. Meta also plans default end-to-end encryption for Instagram messages but has previously said that may not happen this year.\n\nRead 12 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/12/meta-defies-fbi-opposition-to-encryption-brings-e2ee-to-facebook-messenger/#comments", - "content": "Default E2EE rolling out now but will take months to reach all 1 billion users.", - "contentSnippet": "Default E2EE rolling out now but will take months to reach all 1 billion users.", - "guid": "https://arstechnica.com/?p=1989426", - "categories": [ - "Policy", - "e2ee", - "encrypted facebook messages", - "end to end encryption", - "end-to-end encryption messenger", - "facebook messenger", - "fb encrypted messages" - ], - "isoDate": "2023-12-07T17:06:34.000Z" - }, - { - "creator": "Andrew Cunningham", - "title": "Report: Early 2024 will bring M3 MacBook Airs and first new iPads in over a year", - "link": "https://arstechnica.com/?p=1989392", - "pubDate": "Thu, 07 Dec 2023 16:57:19 +0000", - "content:encoded": "
\n
\n \"Apple's\n

Enlarge / Apple's 15-inch M2 MacBook Air. (credit: Andrew Cunningham)

\n\n\n\n\n\n\n
\n

The MacBook Air is Apple's most popular laptop, and when the Apple M1 and M2 chips landed, they came to the Air first. That changed with the M3 chip generation, which came to the MacBook Pro and iMac first but left the Air untouched.

\n

That situation should change early next year, according to a report from Bloomberg's Mark Gurman. Apple is reportedly preparing to launch updates to the MacBook Air, as well as several new iPad models, in \"the March time frame.\" Apple hasn't released any new iPads in 2023, and the 13-inch M2 MacBook Air was introduced in July of 2022.

\n\n

Gurman says not to expect design changes from the M3 Air. The M2 version introduced a new non-tapered design with a display notch, a new keyboard, and a MagSafe port, and the M3 Air should look externally identical.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Apple's 15-inch M2 MacBook Air. (credit: Andrew Cunningham)\n \n\n\n\n\n\n\n\nThe MacBook Air is Apple's most popular laptop, and when the Apple M1 and M2 chips landed, they came to the Air first. That changed with the M3 chip generation, which came to the MacBook Pro and iMac first but left the Air untouched.\nThat situation should change early next year, according to a report from Bloomberg's Mark Gurman. Apple is reportedly preparing to launch updates to the MacBook Air, as well as several new iPad models, in \"the March time frame.\" Apple hasn't released any new iPads in 2023, and the 13-inch M2 MacBook Air was introduced in July of 2022.\nGurman says not to expect design changes from the M3 Air. The M2 version introduced a new non-tapered design with a display notch, a new keyboard, and a MagSafe port, and the M3 Air should look externally identical.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Andrew Cunningham", - "comments": "https://arstechnica.com/gadgets/2023/12/report-early-2024-will-bring-m3-macbook-airs-and-first-new-ipads-in-over-a-year/#comments", - "content": "New Airs should arrive alongside redesigned iPad Pros and a 12.9-inch iPad Air.", - "contentSnippet": "New Airs should arrive alongside redesigned iPad Pros and a 12.9-inch iPad Air.", - "guid": "https://arstechnica.com/?p=1989392", - "categories": [ - "Apple", - "Tech", - "Apple silicon", - "ipad", - "iPad Air", - "ipad pro", - "M3", - "MacBook Air", - "MacBook Pro" - ], - "isoDate": "2023-12-07T16:57:19.000Z" - }, - { - "creator": "Elizabeth Rayne", - "title": "The Milky Way will probably devour all the tiny galaxies that surround it", - "link": "https://arstechnica.com/?p=1989422", - "pubDate": "Thu, 07 Dec 2023 16:50:04 +0000", - "content:encoded": "
\n
\n \"a\n

Enlarge / An infrared image of one of the Milky Way's satellite galaxies. (credit: NASA/JPL-Caltech/STScI)

\n\n\n\n\n\n\n
\n

We are not alone\u2014at least as a galaxy. About 50 dwarf galaxies surround the Milky Way. But when its intense gravity inevitably draws them to venture too close, they will probably be annihilated. It\u2019s happened before.

\n

Though scientists used to think that all those dwarf galaxies orbiting the Milky Way were going to stick around for tens of billions of years, that might not be the case. \u201cMost dwarf galaxies are star systems that arrived late in the Milky Way\u2026 in sharp contrast with a long-term satellite hypothesis,\u201d an international team of researchers said in a study recently published in Monthly Notices of the Royal Astronomical Society.

\n

Based on data from the European Space Agency\u2019s Gaia mission, this study has found that many dwarf galaxies that were orbiting the Milky Way only a few billion years ago have ended up destroyed after being pulled in by our much more massive galaxy. It is possible dark matter has something to do with this.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / An infrared image of one of the Milky Way's satellite galaxies. (credit: NASA/JPL-Caltech/STScI)\n \n\n\n\n\n\n\n\nWe are not alone\u2014at least as a galaxy. About 50 dwarf galaxies surround the Milky Way. But when its intense gravity inevitably draws them to venture too close, they will probably be annihilated. It\u2019s happened before.\nThough scientists used to think that all those dwarf galaxies orbiting the Milky Way were going to stick around for tens of billions of years, that might not be the case. \u201cMost dwarf galaxies are star systems that arrived late in the Milky Way\u2026 in sharp contrast with a long-term satellite hypothesis,\u201d an international team of researchers said in a study recently published in Monthly Notices of the Royal Astronomical Society.\nBased on data from the European Space Agency\u2019s Gaia mission, this study has found that many dwarf galaxies that were orbiting the Milky Way only a few billion years ago have ended up destroyed after being pulled in by our much more massive galaxy. It is possible dark matter has something to do with this.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Elizabeth Rayne", - "comments": "https://arstechnica.com/science/2023/12/the-milky-way-will-probably-devour-all-the-tiny-galaxies-that-surround-it/#comments", - "content": "The rapid disruption of smaller galaxies suggests they lack a bit of dark matter.", - "contentSnippet": "The rapid disruption of smaller galaxies suggests they lack a bit of dark matter.", - "guid": "https://arstechnica.com/?p=1989422", - "categories": [ - "Science", - "astronomy", - "galaxies", - "milky way" - ], - "isoDate": "2023-12-07T16:50:04.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "White House threatens to veto anti-EV bill just passed by US House", - "link": "https://arstechnica.com/?p=1989420", - "pubDate": "Thu, 07 Dec 2023 16:46:06 +0000", - "content:encoded": "
\n
\n \"U.S.\n

Enlarge (credit: L. Toshio Kishiyama/Getty Images)

\n\n\n\n\n\n\n
\n

The White House's plan to boost electric vehicle adoption came under heavy fire in Congress on Wednesday. Five Democratic Representatives joined the Republican majority to pass a bill that would prohibit the US Environmental Protection Agency from enacting stricter new corporate average fuel efficiency regulations that would require automakers to sell many more EVs by the year 2032.

\n

Its passage in the House follows a letter-writing campaign by some US auto dealers to get the White House to abandon its climate targets as the dealers say they find it too difficult to sell electric vehicles.

\n

As Ars detailed at the time, the tougher new regulations will require automakers to sell four times as many zero-emission vehicles to meet the new fleet averages. If the rules go into effect, two-thirds of all new passenger cars and light trucks would have to be EVs by 2032.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: L. Toshio Kishiyama/Getty Images)\n \n\n\n\n\n\n\n\nThe White House's plan to boost electric vehicle adoption came under heavy fire in Congress on Wednesday. Five Democratic Representatives joined the Republican majority to pass a bill that would prohibit the US Environmental Protection Agency from enacting stricter new corporate average fuel efficiency regulations that would require automakers to sell many more EVs by the year 2032.\nIts passage in the House follows a letter-writing campaign by some US auto dealers to get the White House to abandon its climate targets as the dealers say they find it too difficult to sell electric vehicles.\nAs Ars detailed at the time, the tougher new regulations will require automakers to sell four times as many zero-emission vehicles to meet the new fleet averages. If the rules go into effect, two-thirds of all new passenger cars and light trucks would have to be EVs by 2032.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2023/12/white-house-threatens-to-veto-anti-ev-bill-just-passed-by-us-house/#comments", - "content": "The bill would prevent the EPA from enforcing tougher new pollution standards.", - "contentSnippet": "The bill would prevent the EPA from enforcing tougher new pollution standards.", - "guid": "https://arstechnica.com/?p=1989420", - "categories": [ - "Cars", - "corporate average fuel efficiency", - "electric vehicle adoption", - "US Environmental Protection Agency", - "vehicle emissions", - "vehicle pollution" - ], - "isoDate": "2023-12-07T16:46:06.000Z" - }, - { - "creator": "WIRED", - "title": "US regulators will now have access to years of Binance transaction data", - "link": "https://arstechnica.com/?p=1989378", - "pubDate": "Thu, 07 Dec 2023 14:28:46 +0000", - "content:encoded": "
\n
\n \"sort\n

Enlarge (credit: Wired/Getty)

\n\n\n\n\n\n\n
\n

One attraction of Binance, as the company grew from its 2017 founding into the biggest cryptocurrency exchange in the world, was the firm's freewheeling flouting of rules. As it amassed well over 100 million crypto-trading users globally, it openly told the United States government that, as an offshore operation, it didn't have to comply with the country's financial regulations and money-laundering laws.

\n

Then, late last month, those years of brushing off US regulators caught up with the company in the form of one of the most punitive money-laundering criminal settlements in the history of the US Justice Department. The crackdown doesn't just mean a chastened Binance will have to change its practices going forward. It means that when the company is sentenced in a matter of months, it will be forced to open its past books to regulators, too. What was once a haven for anarchic crypto commerce is about to be transformed into the opposite: perhaps the most fed-friendly business in the cryptocurrency industry, retroactively offering more than a half-decade of users' transaction records to US regulators and law enforcement.

\n

When the Department of Justice announced on November 21 that Binance's executives had agreed to plead guilty to criminal money-laundering charges, much of the attention on that settlement focused on founder Changpeng Zhao giving up his CEO role and on the company's record-breaking $4.3 billion fine. But Binance's settlement agreements with the DOJ and the US Treasury Department also stipulate a strict new regime of data-sharing with law enforcement and regulators. The company has agreed to comply with regulators' \"requests for information\"\u2014a term that carries none of the evidence or suspicion requirements necessary for obtaining a warrant or even a subpoena\u2014to the point of producing any \"information, testimony, document, record, or other tangible evidence.\"

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Wired/Getty)\n \n\n\n\n\n\n\n\nOne attraction of Binance, as the company grew from its 2017 founding into the biggest cryptocurrency exchange in the world, was the firm's freewheeling flouting of rules. As it amassed well over 100 million crypto-trading users globally, it openly told the United States government that, as an offshore operation, it didn't have to comply with the country's financial regulations and money-laundering laws.\nThen, late last month, those years of brushing off US regulators caught up with the company in the form of one of the most punitive money-laundering criminal settlements in the history of the US Justice Department. The crackdown doesn't just mean a chastened Binance will have to change its practices going forward. It means that when the company is sentenced in a matter of months, it will be forced to open its past books to regulators, too. What was once a haven for anarchic crypto commerce is about to be transformed into the opposite: perhaps the most fed-friendly business in the cryptocurrency industry, retroactively offering more than a half-decade of users' transaction records to US regulators and law enforcement.\nWhen the Department of Justice announced on November 21 that Binance's executives had agreed to plead guilty to criminal money-laundering charges, much of the attention on that settlement focused on founder Changpeng Zhao giving up his CEO role and on the company's record-breaking $4.3 billion fine. But Binance's settlement agreements with the DOJ and the US Treasury Department also stipulate a strict new regime of data-sharing with law enforcement and regulators. The company has agreed to comply with regulators' \"requests for information\"\u2014a term that carries none of the evidence or suspicion requirements necessary for obtaining a warrant or even a subpoena\u2014to the point of producing any \"information, testimony, document, record, or other tangible evidence.\"\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "WIRED", - "comments": "https://arstechnica.com/tech-policy/2023/12/us-regulators-will-now-have-access-to-years-of-binance-transaction-data/#comments", - "content": "Binance and its customers will get \"24/7, 365-days-a-year financial colonoscopy.\"", - "contentSnippet": "Binance and its customers will get \"24/7, 365-days-a-year financial colonoscopy.\"", - "guid": "https://arstechnica.com/?p=1989378", - "categories": [ - "Policy", - "Binance", - "bitcoin", - "cryptocurrency", - "syndication" - ], - "isoDate": "2023-12-07T14:28:46.000Z" - }, - { - "creator": "Eric Berger", - "title": "Daily Telescope: A colorful heart with a blue core", - "link": "https://arstechnica.com/?p=1989332", - "pubDate": "Thu, 07 Dec 2023 13:00:23 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The Heart Nebula. (credit: Paul Macklin)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's December 7, and today's photo takes us toward the iconic Cassiopeia constellation. One of the most colorful features in this constellation is the Heart Nebula, which is also known as the Running Dog Nebula because, well, I'll let you figure that out for yourself.

\n

The nebula itself is located about 7,500 light-years from Earth. It is also rather large, spanning 2\u00b0 of the night sky, or an area larger than that covered by the Moon. The Heart Nebula's shape is driven by supermassive stars in its core, with the blue colors produced by ionized oxygen and sulfur.

Read 3 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The Heart Nebula. (credit: Paul Macklin)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's December 7, and today's photo takes us toward the iconic Cassiopeia constellation. One of the most colorful features in this constellation is the Heart Nebula, which is also known as the Running Dog Nebula because, well, I'll let you figure that out for yourself.\nThe nebula itself is located about 7,500 light-years from Earth. It is also rather large, spanning 2\u00b0 of the night sky, or an area larger than that covered by the Moon. The Heart Nebula's shape is driven by supermassive stars in its core, with the blue colors produced by ionized oxygen and sulfur.\n\nRead 3 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2023/12/daily-telescope-journey-into-the-heart-nebula/#comments", - "content": "This nebula is found about 7,500 light-years from Earth. ", - "contentSnippet": "This nebula is found about 7,500 light-years from Earth.", - "guid": "https://arstechnica.com/?p=1989332", - "categories": [ - "Space", - "daily telescope" - ], - "isoDate": "2023-12-07T13:00:23.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Crossed wires led to high drama as NASA returned asteroid samples to Earth", - "link": "https://arstechnica.com/?p=1989304", - "pubDate": "Wed, 06 Dec 2023 23:08:03 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The OSIRIS-REx sample-return capsule, with its main parachute nearby, shortly after landing in Utah on September 24, 2023. (credit: Keegan Barber/NASA)

\n\n\n\n\n\n\n
\n

This was the moment Dante Lauretta had waited for nearly 20 years to see. A small robotic capsule was on the way back to Earth with rocks scooped from an asteroid, and Lauretta was eager to get his hands on the samples.

\n

Led by Lauretta, scientists carefully designed the billion-dollar mission to bring home pieces of a carbon-rich asteroid thought to contain organic molecules, the building blocks necessary for life to take hold. This NASA mission, known by the acronym OSIRIS-REx, launched from Earth in 2016, collected samples from a roughly 1,600-foot-wide (500-meter) asteroid named Bennu in 2020, then set a course for return to Earth.

\n

On September 24, the OSIRIS-REx spacecraft released the canister containing the asteroid samples to plunge into the Earth's atmosphere, while the mothership steered onto a course to take it safely back into deep space for a follow-up mission to explore a different asteroid at the end of the 2020s.

Read 24 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The OSIRIS-REx sample-return capsule, with its main parachute nearby, shortly after landing in Utah on September 24, 2023. (credit: Keegan Barber/NASA)\n \n\n\n\n\n\n\n\nThis was the moment Dante Lauretta had waited for nearly 20 years to see. A small robotic capsule was on the way back to Earth with rocks scooped from an asteroid, and Lauretta was eager to get his hands on the samples.\nLed by Lauretta, scientists carefully designed the billion-dollar mission to bring home pieces of a carbon-rich asteroid thought to contain organic molecules, the building blocks necessary for life to take hold. This NASA mission, known by the acronym OSIRIS-REx, launched from Earth in 2016, collected samples from a roughly 1,600-foot-wide (500-meter) asteroid named Bennu in 2020, then set a course for return to Earth.\nOn September 24, the OSIRIS-REx spacecraft released the canister containing the asteroid samples to plunge into the Earth's atmosphere, while the mothership steered onto a course to take it safely back into deep space for a follow-up mission to explore a different asteroid at the end of the 2020s.\n\nRead 24 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2023/12/nasas-asteroid-mission-struck-its-target-but-then-dodged-a-bullet/#comments", - "content": "\"I was trying to mentally prepare myself to deal with a crashed capsule in the desert.\"", - "contentSnippet": "\"I was trying to mentally prepare myself to deal with a crashed capsule in the desert.\"", - "guid": "https://arstechnica.com/?p=1989304", - "categories": [ - "Space", - "asteroid retrieval mission", - "NASA", - "osiris rex" - ], - "isoDate": "2023-12-06T23:08:03.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Ex-Twitter exec sues Musk, says he was fired for objecting to budget cuts", - "link": "https://arstechnica.com/?p=1989253", - "pubDate": "Wed, 06 Dec 2023 22:33:24 +0000", - "content:encoded": "
\n
\n \"Twitter's\n

Enlarge (credit: Getty Images | NurPhoto )

\n\n\n\n\n\n\n
\n

A former Twitter security executive sued Elon Musk and X Corp. yesterday, alleging that he was unlawfully fired for objecting to steep budget cuts implemented shortly after Musk bought the social network.

\n

Alan Rosa, who was fired on December 6, 2022, \"was Head of Global Information Technology and Information Security and worked remotely for Twitter performing the majority of his job duties from his home in New Jersey,\" said the lawsuit filed in US District Court for the District of New Jersey. He also sometimes worked in Twitter's New York and California offices.

\n

Rosa was required to resolve his claims through arbitration and says that he filed a demand for arbitration in April 2023 and paid his arbitration filing fee. Rosa alleges that \"Twitter has refused to pay its portion of the arbitration fees despite being ordered by JAMS [Judicial Arbitration and Mediation Services] to do so.\"

Read 17 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | NurPhoto )\n \n\n\n\n\n\n\n\nA former Twitter security executive sued Elon Musk and X Corp. yesterday, alleging that he was unlawfully fired for objecting to steep budget cuts implemented shortly after Musk bought the social network.\nAlan Rosa, who was fired on December 6, 2022, \"was Head of Global Information Technology and Information Security and worked remotely for Twitter performing the majority of his job duties from his home in New Jersey,\" said the lawsuit filed in US District Court for the District of New Jersey. He also sometimes worked in Twitter's New York and California offices.\nRosa was required to resolve his claims through arbitration and says that he filed a demand for arbitration in April 2023 and paid his arbitration filing fee. Rosa alleges that \"Twitter has refused to pay its portion of the arbitration fees despite being ordered by JAMS [Judicial Arbitration and Mediation Services] to do so.\"\n\nRead 17 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/12/ex-twitter-exec-sues-musk-says-he-was-fired-for-objecting-to-budget-cuts/#comments", - "content": "Fired exec suing Musk says he warned that budget cuts would harm FTC compliance.", - "contentSnippet": "Fired exec suing Musk says he warned that budget cuts would harm FTC compliance.", - "guid": "https://arstechnica.com/?p=1989253", - "categories": [ - "Policy", - "Elon Musk", - "elon musk twitter" - ], - "isoDate": "2023-12-06T22:33:24.000Z" - }, - { - "creator": "Andrew Cunningham", - "title": "Intel, of all companies, knocks AMD\u2019s CPU numbering in now-deleted presentation", - "link": "https://arstechnica.com/?p=1989028", - "pubDate": "Wed, 06 Dec 2023 22:19:17 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A now-deleted Intel presentation makes a good point, but with a side of disingenuousness.

\n\n\n\n\n\n\n
\n

AMD changed the way it numbers its Ryzen laptop processors last year, switching to a new system that simultaneously provides more concrete information than the old one while also partially obfuscating the exact age of the various CPU and GPU architectures being mixed-and-matched.

\n

For instance, a knowledgeable buyer can look at the \"3\" in the Ryzen 5 7530U processor and determine that it uses an older Zen 3-based CPU core. But a less-knowledgeable buyer could be forgiven for looking at the \"7000\" part and assuming that the chip is significantly newer and better than 2021's Ryzen 5600U, when in reality the two are substantially identical.

\n

Intel came out swinging against this naming scheme in a confrontational slide deck this week\u2014now deleted, but preserved for posterity by VideoCardz\u2014where it accuses AMD of selling \"snake oil\" by using older processor architectures in ostensibly \"new\" chips.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A now-deleted Intel presentation makes a good point, but with a side of disingenuousness. \n \n\n\n\n\n\n\n\nAMD changed the way it numbers its Ryzen laptop processors last year, switching to a new system that simultaneously provides more concrete information than the old one while also partially obfuscating the exact age of the various CPU and GPU architectures being mixed-and-matched.\nFor instance, a knowledgeable buyer can look at the \"3\" in the Ryzen 5 7530U processor and determine that it uses an older Zen 3-based CPU core. But a less-knowledgeable buyer could be forgiven for looking at the \"7000\" part and assuming that the chip is significantly newer and better than 2021's Ryzen 5600U, when in reality the two are substantially identical.\nIntel came out swinging against this naming scheme in a confrontational slide deck this week\u2014now deleted, but preserved for posterity by VideoCardz\u2014where it accuses AMD of selling \"snake oil\" by using older processor architectures in ostensibly \"new\" chips.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Andrew Cunningham", - "comments": "https://arstechnica.com/gadgets/2023/12/intel-accuses-amd-of-selling-old-cpus-with-new-model-numbers-which-intel-also-does/#comments", - "content": "When it comes to recycling and rebranding old chips, no one's hands are clean.", - "contentSnippet": "When it comes to recycling and rebranding old chips, no one's hands are clean.", - "guid": "https://arstechnica.com/?p=1989028", - "categories": [ - "Tech", - "AMD", - "AMD Ryzen", - "CPUs", - "Intel", - "intel core" - ], - "isoDate": "2023-12-06T22:19:17.000Z" - }, - { - "creator": "John Timmer", - "title": "Quantum computer performs error-resistant operations with logical qubits", - "link": "https://arstechnica.com/?p=1989292", - "pubDate": "Wed, 06 Dec 2023 22:05:29 +0000", - "content:encoded": "
\n
\n \"Image\n

Enlarge / The hardware used for these experiments. (credit: Harvard)

\n\n\n\n\n\n\n
\n

There's widespread agreement that most useful quantum computing will have to wait for the development of error-corrected qubits. Error correction involves distributing a bit of quantum information\u2014termed a logical qubit\u2014among a small collection of hardware qubits. The disagreements mostly focus on how best to implement it and how long it will take.

\n

A key step toward that future is described in a paper released in Nature today. A large team of researchers, primarily based at Harvard University, have now demonstrated the ability to perform multiple operations on as many as 48 logical qubits. The work shows that the system, which shares a heritage with the quantum computing system made by the company QuEra, can correctly identify the occurrence of errors, and this can significantly improve the results of calculations.

\n

Yuval Boger, QuEra's chief marketing officer, told Ars: \"We feel it is a very significant milestone on the path to where we all want to be, which is large-scale, fault-tolerant quantum computers.

Read 24 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The hardware used for these experiments. (credit: Harvard)\n \n\n\n\n\n\n\n\nThere's widespread agreement that most useful quantum computing will have to wait for the development of error-corrected qubits. Error correction involves distributing a bit of quantum information\u2014termed a logical qubit\u2014among a small collection of hardware qubits. The disagreements mostly focus on how best to implement it and how long it will take.\nA key step toward that future is described in a paper released in Nature today. A large team of researchers, primarily based at Harvard University, have now demonstrated the ability to perform multiple operations on as many as 48 logical qubits. The work shows that the system, which shares a heritage with the quantum computing system made by the company QuEra, can correctly identify the occurrence of errors, and this can significantly improve the results of calculations.\nYuval Boger, QuEra's chief marketing officer, told Ars: \"We feel it is a very significant milestone on the path to where we all want to be, which is large-scale, fault-tolerant quantum computers.\n\nRead 24 remaining paragraphs | Comments", - "dc:creator": "John Timmer", - "comments": "https://arstechnica.com/science/2023/12/quantum-computer-performs-error-resistant-operations-with-logical-qubits/#comments", - "content": "Harvard and QuEra get ready for error correction, run operations on 48 logical qubits.", - "contentSnippet": "Harvard and QuEra get ready for error correction, run operations on 48 logical qubits.", - "guid": "https://arstechnica.com/?p=1989292", - "categories": [ - "Science", - "Computer science", - "Error correction", - "quantum computing", - "quantum mechanics", - "qubits", - "QuEra" - ], - "isoDate": "2023-12-06T22:05:29.000Z" - }, - { - "creator": "Benj Edwards", - "title": "Meta\u2019s new AI image generator was trained on 1.1 billion Instagram and Facebook photos", - "link": "https://arstechnica.com/?p=1989150", - "pubDate": "Wed, 06 Dec 2023 21:52:14 +0000", - "content:encoded": "
\n
\n \"Three\n

Enlarge / Three images generated by \"Imagine with Meta AI\" using the Emu AI model. (credit: Meta | Benj Edwards)

\n\n\n\n\n\n\n
\n

On Wednesday, Meta released a free standalone AI image-generator website, \"Imagine with Meta AI,\" based on its Emu image-synthesis model. Meta used 1.1 billion publicly visible Facebook and Instagram images to train the AI model, which can render a novel image from a written prompt. Previously, Meta's version of this technology\u2014using the same data\u2014was only available in messaging and social networking apps such as Instagram.

\n\n

If you're on Facebook or Instagram, it's quite possible a picture of you (or that you took) helped train Emu. In a way, the old saying, \"If you're not paying for it, you are the product\" has taken on a whole new meaning. Although, as of 2016, Instagram users uploaded over 95 million photos a day, so the dataset Meta used to train its AI model was a small subset of its overall photo library.

\n

Since Meta says it only uses publicly available photos for training, setting your photos private on Instagram or Facebook should prevent their inclusion in the company's future AI model training (unless it changes that policy, of course).

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Three images generated by \"Imagine with Meta AI\" using the Emu AI model. (credit: Meta | Benj Edwards)\n \n\n\n\n\n\n\n\nOn Wednesday, Meta released a free standalone AI image-generator website, \"Imagine with Meta AI,\" based on its Emu image-synthesis model. Meta used 1.1 billion publicly visible Facebook and Instagram images to train the AI model, which can render a novel image from a written prompt. Previously, Meta's version of this technology\u2014using the same data\u2014was only available in messaging and social networking apps such as Instagram.\nIf you're on Facebook or Instagram, it's quite possible a picture of you (or that you took) helped train Emu. In a way, the old saying, \"If you're not paying for it, you are the product\" has taken on a whole new meaning. Although, as of 2016, Instagram users uploaded over 95 million photos a day, so the dataset Meta used to train its AI model was a small subset of its overall photo library.\nSince Meta says it only uses publicly available photos for training, setting your photos private on Instagram or Facebook should prevent their inclusion in the company's future AI model training (unless it changes that policy, of course).\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/information-technology/2023/12/metas-new-ai-image-generator-was-trained-on-1-1-billion-instagram-and-facebook-photos/#comments", - "content": "\"Imagine with Meta AI\" turns prompts into images, trained using public Facebook data.", - "contentSnippet": "\"Imagine with Meta AI\" turns prompts into images, trained using public Facebook data.", - "guid": "https://arstechnica.com/?p=1989150", - "categories": [ - "AI", - "Biz & IT", - "AI image generator", - "DALL-E 3", - "image synthesis", - "machine learning", - "meta", - "Meta Emu", - "MidJourney", - "Stable Diffusion" - ], - "isoDate": "2023-12-06T21:52:14.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "After hack, 23andMe gives users 30 days to opt out of class-action waiver", - "link": "https://arstechnica.com/?p=1989247", - "pubDate": "Wed, 06 Dec 2023 21:20:29 +0000", - "content:encoded": "
\n
\n \"After\n

Enlarge (credit: Bloomberg / Contributor | Bloomberg)

\n\n\n\n\n\n\n
\n

Shortly after 23andMe confirmed that hackers stole ancestry data of 6.9 million users, 23andMe has updated its terms of service, seemingly cutting off a path previously granted to users seeking public accountability when resolving disputes.

\n

According to a post on Hacker News, the \"23andMe Team\" notified users in an email that \"important updates were made to the Dispute Resolution and Arbitration section\" of 23andMe's terms of service on November 30. This was done, 23andMe told users, \"to include procedures that will encourage a prompt resolution of any disputes and to streamline arbitration proceedings where multiple similar claims are filed.\"

\n

In the email, 23andMe told users that they had 30 days to notify the ancestry site that they disagree with the new terms. Otherwise, 23andMe users \"will be deemed to have agreed to the new terms.\" The process for opting out is detailed in the site's terms of service, instructing users to send written notice of their decision to opt out in an email to arbitrationoptout@23andme.com.

Read 10 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Bloomberg / Contributor | Bloomberg)\n \n\n\n\n\n\n\n\nShortly after 23andMe confirmed that hackers stole ancestry data of 6.9 million users, 23andMe has updated its terms of service, seemingly cutting off a path previously granted to users seeking public accountability when resolving disputes.\nAccording to a post on Hacker News, the \"23andMe Team\" notified users in an email that \"important updates were made to the Dispute Resolution and Arbitration section\" of 23andMe's terms of service on November 30. This was done, 23andMe told users, \"to include procedures that will encourage a prompt resolution of any disputes and to streamline arbitration proceedings where multiple similar claims are filed.\"\nIn the email, 23andMe told users that they had 30 days to notify the ancestry site that they disagree with the new terms. Otherwise, 23andMe users \"will be deemed to have agreed to the new terms.\" The process for opting out is detailed in the site's terms of service, instructing users to send written notice of their decision to opt out in an email to arbitrationoptout@23andme.com.\n\nRead 10 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2023/12/23andme-changes-arbitration-terms-after-hack-impacting-millions/#comments", - "content": "Anyone who fails to opt out \"will be deemed to have agreed to the new terms.\"", - "contentSnippet": "Anyone who fails to opt out \"will be deemed to have agreed to the new terms.\"", - "guid": "https://arstechnica.com/?p=1989247", - "categories": [ - "Policy", - "23andme", - "ancestry data", - "class action", - "cyberattack", - "dna test kit", - "hackers", - "mass arbitration", - "online privacy" - ], - "isoDate": "2023-12-06T21:20:29.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "iMessage will reportedly dodge EU regulations, won\u2019t have to open up", - "link": "https://arstechnica.com/?p=1989111", - "pubDate": "Wed, 06 Dec 2023 20:47:58 +0000", - "content:encoded": "
\n
\n \"iMessage\n

Enlarge (credit: Jakub Porzycki/NurPhoto via Getty Images)

\n\n\n\n\n\n\n
\n

Android users' hopes that Apple's iMessage would be forced to open up in the European Union have been dashed. Bloomberg reports that iMessage won't qualify for the EU's new \"Digital Markets Act,\" allowing Apple to keep iMessage exclusive to Apple users.

\n

The EU is deciding what should and shouldn't be under the new rules set out by the \"Digital Markets Act.\" The idea is that Big Tech \"gatekeepers\" will be subject to certain interoperability, fairness, and privacy rules. So far the wide-ranging rules have targeted 22 different services, including app stores on iOS and Android, browsers like Chrome and Safari, the Android, iOS, and Windows OSes, ad platforms from Google, Amazon, and Meta, video sites YouTube and TikTok, and instant messaging apps like WhatsApp and Facebook Messenger.

\n

Google recently rolled out a campaign to implore the EU to qualify iMessage for regulation, as Android's iMessage incompatibility is a big deal in the US. iMessage hasn't made the list, though, and that's despite meeting the popularity metrics of 45 million monthly active EU users. In the EU and most other parts of the world, the dominant messaging platform is WhatsApp, and with the Digital Market Act's focus on business usage, not general consumers, iMessage will just squeak by. Right now the EU is \"investigating\" a handful of borderline additions to the Digital Markets Act, with a deadline in February 2024.

Read 3 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Jakub Porzycki/NurPhoto via Getty Images)\n \n\n\n\n\n\n\n\nAndroid users' hopes that Apple's iMessage would be forced to open up in the European Union have been dashed. Bloomberg reports that iMessage won't qualify for the EU's new \"Digital Markets Act,\" allowing Apple to keep iMessage exclusive to Apple users.\nThe EU is deciding what should and shouldn't be under the new rules set out by the \"Digital Markets Act.\" The idea is that Big Tech \"gatekeepers\" will be subject to certain interoperability, fairness, and privacy rules. So far the wide-ranging rules have targeted 22 different services, including app stores on iOS and Android, browsers like Chrome and Safari, the Android, iOS, and Windows OSes, ad platforms from Google, Amazon, and Meta, video sites YouTube and TikTok, and instant messaging apps like WhatsApp and Facebook Messenger.\nGoogle recently rolled out a campaign to implore the EU to qualify iMessage for regulation, as Android's iMessage incompatibility is a big deal in the US. iMessage hasn't made the list, though, and that's despite meeting the popularity metrics of 45 million monthly active EU users. In the EU and most other parts of the world, the dominant messaging platform is WhatsApp, and with the Digital Market Act's focus on business usage, not general consumers, iMessage will just squeak by. Right now the EU is \"investigating\" a handful of borderline additions to the Digital Markets Act, with a deadline in February 2024.\n\nRead 3 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/apple/2023/12/imessage-will-reportedly-dodge-eu-regulations-wont-have-to-open-up/#comments", - "content": "iMessage isn't popular enough with businesses to force interoperability. ", - "contentSnippet": "iMessage isn't popular enough with businesses to force interoperability.", - "guid": "https://arstechnica.com/?p=1989111", - "categories": [ - "Apple", - "Tech" - ], - "isoDate": "2023-12-06T20:47:58.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "Study: Why a spritz of water before grinding coffee yields less waste, tastier espresso", - "link": "https://arstechnica.com/?p=1988445", - "pubDate": "Wed, 06 Dec 2023 20:40:50 +0000", - "content:encoded": "
\n\n\n\n\n\n
\n
\n
\n
\n
\n
Researchers demonstrate how adding a splash of water reduces static electricity when grinding coffee. Credit: University of Oregon
\n
\n
\n

Scientific inspiration can strike at any time. For Christopher Hendon, a computational materials chemist at the University of Oregon, inspiration struck at a local coffee bar where his lab holds regular coffee hours for the Eugene campus community\u2014a fitting venue since Hendon's research specialties include investigating the scientific principles behind really good coffee. The regulars included two volcanologists, Josef Dufek and Joshua M\u00e9ndez Harper, who noted striking similarities between the science of coffee and plumes of volcanic ash, magma, and water. Thus, an unusual collaboration was born.

\n

\u201cIt\u2019s sort of like the start of a joke\u2014a volcanologist and a coffee expert walk into a bar and then come out with a paper,\u201d said M\u00e9ndez Harper, a volcanologist at Portland State University. \u201cBut I think there are a lot more opportunities for this sort of collaboration, and there\u2019s a lot more to know about how coffee breaks, how it flows as particles, and how it interacts with water. These investigations may help resolve parallel issues in geophysics\u2014whether it\u2019s landslides, volcanic eruptions, or how water percolates through soil.\u201d

\n

The result is a new paper published in the journal Matter demonstrating how adding a single squirt of water to coffee beans before grinding can significantly reduce the static electric charge on the resulting grounds. This, in turn, reduces clumping during brewing, yielding less waste and the strong, consistent flow needed to produce a tasty cup of espresso. Good baristas already employ the water trick; it's known as the Ross droplet technique, per Hendon. But this is the first time scientists have rigorously tested that well-known hack and measured the actual charge on different types of coffee.

Read 12 remaining paragraphs | Comments

", - "content:encodedSnippet": "Researchers demonstrate how adding a splash of water reduces static electricity when grinding coffee. Credit: University of Oregon \nResearchers demonstrate how adding a splash of water reduces static electricity when grinding coffee. Credit: University of Oregon \nScientific inspiration can strike at any time. For Christopher Hendon, a computational materials chemist at the University of Oregon, inspiration struck at a local coffee bar where his lab holds regular coffee hours for the Eugene campus community\u2014a fitting venue since Hendon's research specialties include investigating the scientific principles behind really good coffee. The regulars included two volcanologists, Josef Dufek and Joshua M\u00e9ndez Harper, who noted striking similarities between the science of coffee and plumes of volcanic ash, magma, and water. Thus, an unusual collaboration was born.\n\u201cIt\u2019s sort of like the start of a joke\u2014a volcanologist and a coffee expert walk into a bar and then come out with a paper,\u201d said M\u00e9ndez Harper, a volcanologist at Portland State University. \u201cBut I think there are a lot more opportunities for this sort of collaboration, and there\u2019s a lot more to know about how coffee breaks, how it flows as particles, and how it interacts with water. These investigations may help resolve parallel issues in geophysics\u2014whether it\u2019s landslides, volcanic eruptions, or how water percolates through soil.\u201d\nThe result is a new paper published in the journal Matter demonstrating how adding a single squirt of water to coffee beans before grinding can significantly reduce the static electric charge on the resulting grounds. This, in turn, reduces clumping during brewing, yielding less waste and the strong, consistent flow needed to produce a tasty cup of espresso. Good baristas already employ the water trick; it's known as the Ross droplet technique, per Hendon. But this is the first time scientists have rigorously tested that well-known hack and measured the actual charge on different types of coffee.\n\nRead 12 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/science/2023/12/study-why-a-spritz-of-water-before-grinding-coffee-yields-less-waste-tastier-espresso/#comments", - "content": "\"It turns out you can\u2019t cut corners if you want to achieve excellence.\u201d", - "contentSnippet": "\"It turns out you can\u2019t cut corners if you want to achieve excellence.\u201d", - "guid": "https://arstechnica.com/?p=1988445", - "categories": [ - "Science", - "chemistry", - "coffee", - "espresso", - "Food science", - "granular media", - "Physics" - ], - "isoDate": "2023-12-06T20:40:50.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "Yes, some cats like to play fetch. It\u2019s science!", - "link": "https://arstechnica.com/?p=1990305", - "pubDate": "Thu, 14 Dec 2023 16:39:15 +0000", - "content:encoded": "
\n\n\n\n\n\n
\n

A cat owner throws a tinfoil ball a few feet in front of their expectant cat twice. The cat chases after the tinfoil ball and retrieves it back to the owner both times, carrying it in its mouth. Credit: Elizabeth Renner.

\n

Cats have a well-deserved reputation for being independent-minded and aloof, preferring to interact with humans on their own quirky terms. So you'd never see a cat playing fetch like a dog, right? Wrong. That sort of play behavior is more common than you might think\u2014one of our cats was an avid fetcher in her younger years, although she's slowed down a bit with age. However, the evidence to date for specific fetching behaviors in cats is largely anecdotal.

\n

That's why a team of British scientists set out to study this unusual feline play behavior more extensively, reporting their findings in a new paper published in the journal Scientific Reports. The researchers concluded that most cats who like to play fetch learned how to do so without any explicit training and that cats are generally in control when playing fetch with their humans. Specifically, cats will play fetch longer and retrieve the thrown object more times when they initiate the game rather than their owners. In other words, cats are still gonna be cats.

\n

Many different animal species exhibit play behavior, according to the authors, and it's most common in mammals and birds. When cats play, their behavior tends to resemble hunting behavior commonly seen in European wildcats and lynxes: rapid approach and retreat, leaping, chasing, pouncing, and stalking. Initially, as kittens, they engage in more social forms of play with their littermates like wrestling, and they tend to engage in more solitary play as adults\u2014the opposite of dogs, who usually start playing with objects alone before transitioning to social play.

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "A cat owner throws a tinfoil ball a few feet in front of their expectant cat twice. The cat chases after the tinfoil ball and retrieves it back to the owner both times, carrying it in its mouth. Credit: Elizabeth Renner. \n\nCats have a well-deserved reputation for being independent-minded and aloof, preferring to interact with humans on their own quirky terms. So you'd never see a cat playing fetch like a dog, right? Wrong. That sort of play behavior is more common than you might think\u2014one of our cats was an avid fetcher in her younger years, although she's slowed down a bit with age. However, the evidence to date for specific fetching behaviors in cats is largely anecdotal.\nThat's why a team of British scientists set out to study this unusual feline play behavior more extensively, reporting their findings in a new paper published in the journal Scientific Reports. The researchers concluded that most cats who like to play fetch learned how to do so without any explicit training and that cats are generally in control when playing fetch with their humans. Specifically, cats will play fetch longer and retrieve the thrown object more times when they initiate the game rather than their owners. In other words, cats are still gonna be cats.\nMany different animal species exhibit play behavior, according to the authors, and it's most common in mammals and birds. When cats play, their behavior tends to resemble hunting behavior commonly seen in European wildcats and lynxes: rapid approach and retreat, leaping, chasing, pouncing, and stalking. Initially, as kittens, they engage in more social forms of play with their littermates like wrestling, and they tend to engage in more solitary play as adults\u2014the opposite of dogs, who usually start playing with objects alone before transitioning to social play.\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/science/2023/12/yes-some-cats-like-to-play-fetch-its-science/#comments", - "content": "Cats play fetch longer, with more retrievals, when they initiate the game.", - "contentSnippet": "Cats play fetch longer, with more retrievals, when they initiate the game.", - "guid": "https://arstechnica.com/?p=1990305", - "categories": [ - "Science", - "animal behavior", - "animal cognition", - "animal psychology", - "Biology", - "Cats", - "fabulous felines" - ], - "isoDate": "2023-12-14T16:39:15.000Z" - }, - { - "creator": "Kyle Orland", - "title": "Reminder: Donate to win swag in our annual Charity Drive sweepstakes", - "link": "https://arstechnica.com/?p=1991113", - "pubDate": "Thu, 14 Dec 2023 15:56:33 +0000", - "content:encoded": "
\n
\n \"Reminder:\n

Enlarge

\n\n\n\n\n\n\n
\n

If you've been too busy mourning the death of E3\u00a0to take part in this year's Ars Technica Charity Drive sweepstakes, don't worry. You still have time to donate to a good cause and get a chance to win your share of over $2,500 worth of swag (no purchase necessary to win).

\n

So far, in the first few weeks of the drive, over 215 readers have contributed over $17,000 to either the Electronic Frontier Foundation or Child's Play as part of the charity drive (EFF is now leading in the donation totals by nearly $6,000). That's a long way from 2020's record haul of over $58,000, but there's still plenty of time until the Charity Drive wraps up on Tuesday, January 2, 2024.

\n

That doesn't mean you should put your donation off, though. Do yourself and the charities involved a favor and give now while you're thinking about it.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge \n \n\n\n\n\n\n\n\nIf you've been too busy mourning the death of E3\u00a0to take part in this year's Ars Technica Charity Drive sweepstakes, don't worry. You still have time to donate to a good cause and get a chance to win your share of over $2,500 worth of swag (no purchase necessary to win).\nSo far, in the first few weeks of the drive, over 215 readers have contributed over $17,000 to either the Electronic Frontier Foundation or Child's Play as part of the charity drive (EFF is now leading in the donation totals by nearly $6,000). That's a long way from 2020's record haul of over $58,000, but there's still plenty of time until the Charity Drive wraps up on Tuesday, January 2, 2024.\nThat doesn't mean you should put your donation off, though. Do yourself and the charities involved a favor and give now while you're thinking about it.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "content": "Add to a charity haul that's already raised over $17,000 in just a few weeks.", - "contentSnippet": "Add to a charity haul that's already raised over $17,000 in just a few weeks.", - "guid": "https://arstechnica.com/?p=1991113", - "categories": [ - "Gaming", - "charity", - "charity drive" - ], - "isoDate": "2023-12-14T15:56:33.000Z" - }, - { - "creator": "Kyle Orland", - "title": "Doom\u2019s creators reminisce about \u201cas close to a perfect game as anything we made\u201d", - "link": "https://arstechnica.com/?p=1991059", - "pubDate": "Thu, 14 Dec 2023 15:47:50 +0000", - "content:encoded": "
\n\n\n\n\n\n
\n

The archived hour-long chat is a must-watch for any long-time Doom fan.

\n

While Doom can sometimes feel like an overnight smash success, the seminal first-person shooter was far from the first game created by id co-founders John Carmack and John Romero. Now, in a rare joint interview that was livestreamed during last weekend's 30th-anniversary celebration, the pair waxed philosophical about how Doom struck a perfect balance between technology and simplicity that they hadn't been able to capture previously and have struggled to recapture since.

\n

Carmack said that Doom-precursor Wolfenstein 3D, for instance, \"was done under these extreme, extraordinary design constraints\" because of the technology available at the time. \"There just wasn't that much we could do.\"

\n
\"<em>Wolfenstein

Wolfenstein 3D's grid-based mapping led to a lot of boring rectangular rooms connected by long corridors. (credit: Steam)

\n

One of the biggest constraints in Wolfenstein 3D was a grid-based mapping system that forced walls to be at 90-degree angles, leading to a lot of large, rectangular rooms connected by long corridors. \"Making the levels for the original Wolfenstein had to be the most boring level design job ever because it was so simple,\" Romero said. \"Even [2D platformer Commander Keen] was more rewarding to make levels for.\"

Read 17 remaining paragraphs | Comments

", - "content:encodedSnippet": "The archived hour-long chat is a must-watch for any long-time Doom fan. \n\nWhile Doom can sometimes feel like an overnight smash success, the seminal first-person shooter was far from the first game created by id co-founders John Carmack and John Romero. Now, in a rare joint interview that was livestreamed during last weekend's 30th-anniversary celebration, the pair waxed philosophical about how Doom struck a perfect balance between technology and simplicity that they hadn't been able to capture previously and have struggled to recapture since.\nCarmack said that Doom-precursor Wolfenstein 3D, for instance, \"was done under these extreme, extraordinary design constraints\" because of the technology available at the time. \"There just wasn't that much we could do.\"\n\nWolfenstein 3D's grid-based mapping led to a lot of boring rectangular rooms connected by long corridors. (credit: Steam)\n\nOne of the biggest constraints in Wolfenstein 3D was a grid-based mapping system that forced walls to be at 90-degree angles, leading to a lot of large, rectangular rooms connected by long corridors. \"Making the levels for the original Wolfenstein had to be the most boring level design job ever because it was so simple,\" Romero said. \"Even [2D platformer Commander Keen] was more rewarding to make levels for.\"\n\nRead 17 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/gaming/2023/12/dooms-creators-reminisce-about-as-close-to-a-perfect-game-as-anything-we-made/#comments", - "content": "In 30th anniversary stream, Carmack and Romero recall a game dev \"perfect storm.\"", - "contentSnippet": "In 30th anniversary stream, Carmack and Romero recall a game dev \"perfect storm.\"", - "guid": "https://arstechnica.com/?p=1991059", - "categories": [ - "Gaming", - "Anniversary", - "Carmack", - "Doom", - "dos gaming", - "id Software", - "Nostalgia", - "romero" - ], - "isoDate": "2023-12-14T15:47:50.000Z" - }, - { - "creator": "Ars Contributors", - "title": "An Internet video purportedly shows a tornado being blown up. Is that possible?", - "link": "https://arstechnica.com/?p=1991064", - "pubDate": "Thu, 14 Dec 2023 15:23:37 +0000", - "content:encoded": "
\n
\n \"Severe\n

Enlarge / Severe weather reports from Saturday across Tennessee and Kentucky. Note the cluster of tornado reports north of Nashville. (credit: NOAA)

\n\n\n\n\n\n\n
\n

Last weekend saw a tragic outbreak of tornadoes in Tennessee that killed six people and injured more than 80. In the aftermath of these deadly storms, video has emerged showing one of the tornadoes striking a power station, which appears to disrupt the circulation of the twister.

\n

This has led to rampant online speculation\u2014as tends to happen in 2023\u2014about whether it\u2019s possible to \u201cblow up\u201d a tornado. Take a gander at the video below:

\n
\n

Tennessee tornado 2023. Please be safe.

\n

Friend from my wrestling academy captured this insane video in Madison. Please be safe. pic.twitter.com/2JDWNznfUn

\n

\u2014 BD (@BrandonDavisBD) December 9, 2023

\n

This tornado occurred between Madison and Goodlettsville, just north of Nashville, east of I-65. What you see is the tornado striking a power substation, followed by an explosion. The power substation belonged to Nashville Electric Service, which subsequently released a video from the substation on Monday showing the strike and explosion.

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Severe weather reports from Saturday across Tennessee and Kentucky. Note the cluster of tornado reports north of Nashville. (credit: NOAA)\n \n\n\n\n\n\n\n\nLast weekend saw a tragic outbreak of tornadoes in Tennessee that killed six people and injured more than 80. In the aftermath of these deadly storms, video has emerged showing one of the tornadoes striking a power station, which appears to disrupt the circulation of the twister.\nThis has led to rampant online speculation\u2014as tends to happen in 2023\u2014about whether it\u2019s possible to \u201cblow up\u201d a tornado. Take a gander at the video below:\nTennessee tornado 2023. Please be safe.\nFriend from my wrestling academy captured this insane video in Madison. Please be safe. pic.twitter.com/2JDWNznfUn\n\u2014 BD (@BrandonDavisBD) December 9, 2023\n\nThis tornado occurred between Madison and Goodlettsville, just north of Nashville, east of I-65. What you see is the tornado striking a power substation, followed by an explosion. The power substation belonged to Nashville Electric Service, which subsequently released a video from the substation on Monday showing the strike and explosion.\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/science/2023/12/wait-can-you-actually-blow-up-a-tornado/#comments", - "content": "Seriously, in a theoretical world without risk to lives or property, could you do it?", - "contentSnippet": "Seriously, in a theoretical world without risk to lives or property, could you do it?", - "guid": "https://arstechnica.com/?p=1991064", - "categories": [ - "Science", - "science", - "the eyewall", - "tornado" - ], - "isoDate": "2023-12-14T15:23:37.000Z" - }, - { - "creator": "Andrew Cunningham", - "title": "Intel intros first Meteor Lake chips with faster GPUs and worse single-core speed", - "link": "https://arstechnica.com/?p=1989886", - "pubDate": "Thu, 14 Dec 2023 15:00:43 +0000", - "content:encoded": "
\n
\n \"Intel's\n

Enlarge / Intel's Core Ultra CPUs combine multiple silicon dies into a single chip. (credit: Intel)

\n\n\n\n\n\n\n
\n

Intel announced technical details about its next-generation Core CPUs a few months ago. Codenamed Meteor Lake, the chips are good and bad news for Intel's chip manufacturing ambitions\u2014they're simultaneously the first chips to use the brand-new Intel 4 process and the first of Intel's mass-market consumer processors to use silicon manufactured by someone other than Intel (in this case, TSMC). They're also a showcase for Intel's Foveros packaging technology, which welds together several pieces of silicon (\"tiles,\" in Intel's words) rather than integrating everything into a single monolithic die.

\n\n

Today, Intel is announcing the first wave of actual Meteor Lake processors, which Intel says will be available in some PCs starting today\u2014expect to see quite a few of these PC designs announced this week, and even more of them at CES next month.

\n

The lineup includes 11 chips across two different product families: H-series processors for thin-and-light workstation and gaming laptops and U-series chips that will end up in Ultrabooks. Eight of these are launching today, and three more are expected in Q1 of 2024. The two families share many similarities, including Intel's first built-in neural processing unit (NPU) for accelerating machine learning and AI workloads, but in short, the H-series chips use more power and include more P-cores and GPU cores.

Read 14 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Intel's Core Ultra CPUs combine multiple silicon dies into a single chip. (credit: Intel)\n \n\n\n\n\n\n\n\nIntel announced technical details about its next-generation Core CPUs a few months ago. Codenamed Meteor Lake, the chips are good and bad news for Intel's chip manufacturing ambitions\u2014they're simultaneously the first chips to use the brand-new Intel 4 process and the first of Intel's mass-market consumer processors to use silicon manufactured by someone other than Intel (in this case, TSMC). They're also a showcase for Intel's Foveros packaging technology, which welds together several pieces of silicon (\"tiles,\" in Intel's words) rather than integrating everything into a single monolithic die.\nToday, Intel is announcing the first wave of actual Meteor Lake processors, which Intel says will be available in some PCs starting today\u2014expect to see quite a few of these PC designs announced this week, and even more of them at CES next month.\nThe lineup includes 11 chips across two different product families: H-series processors for thin-and-light workstation and gaming laptops and U-series chips that will end up in Ultrabooks. Eight of these are launching today, and three more are expected in Q1 of 2024. The two families share many similarities, including Intel's first built-in neural processing unit (NPU) for accelerating machine learning and AI workloads, but in short, the H-series chips use more power and include more P-cores and GPU cores.\n\nRead 14 remaining paragraphs | Comments", - "dc:creator": "Andrew Cunningham", - "comments": "https://arstechnica.com/gadgets/2023/12/intel-intros-first-meteor-lake-chips-with-faster-gpus-and-worse-single-core-speed/#comments", - "content": "They're Intel's first CPUs with a neural processing unit for on-device AI tasks.", - "contentSnippet": "They're Intel's first CPUs with a neural processing unit for on-device AI tasks.", - "guid": "https://arstechnica.com/?p=1989886", - "categories": [ - "Tech", - "intel core", - "intel core ultra", - "intel meteor lake", - "meteor lake" - ], - "isoDate": "2023-12-14T15:00:43.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Cadillac announces fourth new electric SUV due in 2026 : The Vistiq", - "link": "https://arstechnica.com/?p=1991048", - "pubDate": "Thu, 14 Dec 2023 14:00:44 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / I'm not 100 percent sure, but it looks a lot like the Vistiq will be a three-row SUV. (credit: Cadillac)

\n\n\n\n\n\n\n
\n

Cadillac's product planners sure love the letter Q. Last year, the American luxury automaker started building the Lyriq, a rather competent midsize electric SUV. Last month, it revealed plans for an entry-level electric crossover called the Optiq, which goes on sale next year. And today, it tells us there's another new SUV due in model year 2026, called the Vistiq.

\n

Size-wize, the Vistiq slots between the Lyriq and the ginormous Escalade IQ due for model year 2025\u2014the brand recognition on that name is far too good to Q-icize it directly. Although we have no details other than the model year and the name right now, there's a fairly good chance the Vistiq will be an electric analogue to the Cadillac XT6.

\n

(Similarly we have no further details on the Optiq yet other than that it will share the same smaller crossover architecture as the forthcoming Chevrolet Equinox and will arrive in 2024.)

Read 2 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / I'm not 100 percent sure, but it looks a lot like the Vistiq will be a three-row SUV. (credit: Cadillac)\n \n\n\n\n\n\n\n\nCadillac's product planners sure love the letter Q. Last year, the American luxury automaker started building the Lyriq, a rather competent midsize electric SUV. Last month, it revealed plans for an entry-level electric crossover called the Optiq, which goes on sale next year. And today, it tells us there's another new SUV due in model year 2026, called the Vistiq.\nSize-wize, the Vistiq slots between the Lyriq and the ginormous Escalade IQ due for model year 2025\u2014the brand recognition on that name is far too good to Q-icize it directly. Although we have no details other than the model year and the name right now, there's a fairly good chance the Vistiq will be an electric analogue to the Cadillac XT6.\n(Similarly we have no further details on the Optiq yet other than that it will share the same smaller crossover architecture as the forthcoming Chevrolet Equinox and will arrive in 2024.)\n\nRead 2 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2023/12/cadillac-plans-new-electric-suv-to-fit-between-the-lyriq-and-escalade-ev/#comments", - "content": "The news follows last month's reveal of the entry-level Cadillac Optiq EV.", - "contentSnippet": "The news follows last month's reveal of the entry-level Cadillac Optiq EV.", - "guid": "https://arstechnica.com/?p=1991048", - "categories": [ - "Cars", - "cadillac", - "Cadillac Escalade IQ" - ], - "isoDate": "2023-12-14T14:00:44.000Z" - }, - { - "creator": "Eric Berger", - "title": "Daily Telescope: How small can the smallest star be?", - "link": "https://arstechnica.com/?p=1990921", - "pubDate": "Thu, 14 Dec 2023 13:00:58 +0000", - "content:encoded": "
\n
\n \"This\n

Enlarge / This image from the NIRCam on the James Webb Space Telescope shows the central portion of the star cluster IC 348. (credit: NASA, ESA, CSA, STScI, and K. Luhman and C. Alves de Oliveira)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's December 14, and today we're traveling about 1,000 light-years from Earth to a star cluster in the constellation Perseus. Astronomers using the James Webb Space Telescope have looked there as part of their search to answer a simple question: How small can a star be?

\n

Webb is an ideal tool for such a search because the smallest stars\u2014brown dwarfs, which emit light from the fusion of deuterium\u2014are most visible in infrared light. Astronomers focused on this star cluster, IC 348, because it is young and should have new brown dwarfs. Such small stars emit the most light when they're young, so the smallest stars would be at the most visible point of their lifetime.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / This image from the NIRCam on the James Webb Space Telescope shows the central portion of the star cluster IC 348. (credit: NASA, ESA, CSA, STScI, and K. Luhman and C. Alves de Oliveira)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's December 14, and today we're traveling about 1,000 light-years from Earth to a star cluster in the constellation Perseus. Astronomers using the James Webb Space Telescope have looked there as part of their search to answer a simple question: How small can a star be?\nWebb is an ideal tool for such a search because the smallest stars\u2014brown dwarfs, which emit light from the fusion of deuterium\u2014are most visible in infrared light. Astronomers focused on this star cluster, IC 348, because it is young and should have new brown dwarfs. Such small stars emit the most light when they're young, so the smallest stars would be at the most visible point of their lifetime.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2023/12/daily-telescope-how-small-can-the-smallest-star-be/#comments", - "content": "So tiny you can barely see it.", - "contentSnippet": "So tiny you can barely see it.", - "guid": "https://arstechnica.com/?p=1990921", - "categories": [ - "Science", - "Space", - "daily telescope" - ], - "isoDate": "2023-12-14T13:00:58.000Z" - }, - { - "creator": "Scharon Harding", - "title": "I\u2019ve used a foldable laptop for a month, and I\u2019m ready to return to a clamshell", - "link": "https://arstechnica.com/?p=1978971", - "pubDate": "Thu, 14 Dec 2023 12:20:54 +0000", - "content:encoded": "
\n
\n \"HP\n

Enlarge / Reflective screens and creases aren't the only concerns with foldable PCs. (credit: Scharon Harding)

\n\n\n\n\n\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Specs at a glance: HP Spectre Foldable 17-cs0097nr
\n
Screen17-inch 1920\u00d72560 OLED touchscreen
OSWindows 11 Home
CPUIntel Core i7-1250U
RAM16GB LPDDR5-5200
Storage1TB PCIe 4.0 SSD
NetworkingWi-Fi 6E, Bluetooth 5.3
Ports2x Thunderbolt 4
Size (folded)10.91\u00d77.53\u00d70.84 inches
Weight (with keyboard)3.58 lbs
Battery94.3 Wh
Warranty1 year
Price (MSRP)$5,000
OtherHP Rechargeable MPP2.0 Tilt Pen, Bluetooth keyboard, and HP Envy USB-C Hub included
\n

Although foldable smartphones have been available for five years, the devices are still trying to justify themselves. And after using a foldable-screen laptop as my primary PC for about four weeks, I'm not sure they're ready for prime time.

\n

I'm leaving my time with HP's first foldable laptop with a sense of anticipation for the future of laptops, which I think would benefit from a resurgence of creative ideas that cater to the unique ways people use their computers. But I seriously question if the benefits of having a 17-inch screen in a 12-inch laptop body are worth the trade-offs inherent in today's foldable PCs.

\n

Early participants in the foldable laptop world have an opportunity to define the space, while consumers can decide if this is something they even want. HP's foldable is the most beefed-up option ever, and weeks of use have shown me a lot about what I want and don't want to see when the dust settles.

Read 44 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Reflective screens and creases aren't the only concerns with foldable PCs. (credit: Scharon Harding)\n \n\n\n\n\n\n\n\nSpecs at a glance: HP Spectre Foldable 17-cs0097nr\n\n\n\nScreen\n17-inch 1920\u00d72560 OLED touchscreen\n\n\nOS\nWindows 11 Home\n\n\nCPU\nIntel Core i7-1250U\n\n\nRAM\n16GB LPDDR5-5200\n\n\nStorage\n1TB PCIe 4.0 SSD\n\n\nNetworking\nWi-Fi 6E, Bluetooth 5.3\n\n\nPorts\n2x Thunderbolt 4\n\n\nSize (folded)\n10.91\u00d77.53\u00d70.84 inches\n\n\nWeight (with keyboard)\n3.58 lbs\n\n\nBattery\n94.3 Wh\n\n\nWarranty\n1 year\n\n\nPrice (MSRP)\n$5,000\n\n\nOther\nHP Rechargeable MPP2.0 Tilt Pen, Bluetooth keyboard, and HP Envy USB-C Hub included\n\n\n\nAlthough foldable smartphones have been available for five years, the devices are still trying to justify themselves. And after using a foldable-screen laptop as my primary PC for about four weeks, I'm not sure they're ready for prime time.\nI'm leaving my time with HP's first foldable laptop with a sense of anticipation for the future of laptops, which I think would benefit from a resurgence of creative ideas that cater to the unique ways people use their computers. But I seriously question if the benefits of having a 17-inch screen in a 12-inch laptop body are worth the trade-offs inherent in today's foldable PCs.\nEarly participants in the foldable laptop world have an opportunity to define the space, while consumers can decide if this is something they even want. HP's foldable is the most beefed-up option ever, and weeks of use have shown me a lot about what I want and don't want to see when the dust settles.\n\nRead 44 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/gadgets/2023/12/hp-shows-what-a-foldable-screen-laptop-should-and-shouldnt-be/#comments", - "content": "Foldable PCs unite superior portablility with distinctive design challenges. ", - "contentSnippet": "Foldable PCs unite superior portablility with distinctive design challenges.", - "guid": "https://arstechnica.com/?p=1978971", - "categories": [ - "Features", - "Reviews", - "Tech", - "foldable", - "HP", - "laptops", - "oled" - ], - "isoDate": "2023-12-14T12:20:54.000Z" - }, - { - "creator": "Dan Goodin", - "title": "Ukrainian cellular and Internet still out, 1 day after suspected Russian cyberattack", - "link": "https://arstechnica.com/?p=1991011", - "pubDate": "Thu, 14 Dec 2023 01:33:41 +0000", - "content:encoded": "
\n
\n A service center for \"Kyivstar\", a Ukrainian telecommunications company, that provides communication services and data transmission based on a broad range of fixed and mobile technologies.\n

Enlarge / A service center for \"Kyivstar\", a Ukrainian telecommunications company, that provides communication services and data transmission based on a broad range of fixed and mobile technologies. (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Ukrainian civilians on Wednesday grappled for a second day of widespread cellular phone and Internet outages after a cyberattack, purportedly carried out by Kremlin-supported hackers, hit the country\u2019s biggest mobile phone and Internet provider a day earlier.

\n

Two separate hacking groups with ties to the Russian government took responsibility for Tuesday\u2019s attack striking Kyivstar, which has said it serves 24.3 million mobile subscribers and more than 1.1 million home Internet users. One group, calling itself Killnet, said on Telegram that \u201can attack was carried out on Ukrainian mobile operators, as well as on some banks,\u201d but didn\u2019t elaborate or provide any evidence. A separate group known as Solntsepek said on the same site that it took \u201cfull responsibility for the cyberattack on Kyivstar\u201d and had \u201cdestroyed 10,000 computers, more than 4,000 servers, and all cloud storage and backup systems.\u201d The post was accompanied by screenshots purporting to show someone with control over the Kyivstar systems.

\n

In the city of Lviv, street lights remained on after sunrise and had to be disconnected manually, because Internet-dependent automated power switches didn\u2019t work, according to NBC News. Additionally, the outage prevented shops throughout the country from processing credit payments and many ATMs from functioning, the Kyiv Post said.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A service center for \"Kyivstar\", a Ukrainian telecommunications company, that provides communication services and data transmission based on a broad range of fixed and mobile technologies. (credit: Getty Images)\n \n\n\n\n\n\n\n\nUkrainian civilians on Wednesday grappled for a second day of widespread cellular phone and Internet outages after a cyberattack, purportedly carried out by Kremlin-supported hackers, hit the country\u2019s biggest mobile phone and Internet provider a day earlier.\nTwo separate hacking groups with ties to the Russian government took responsibility for Tuesday\u2019s attack striking Kyivstar, which has said it serves 24.3 million mobile subscribers and more than 1.1 million home Internet users. One group, calling itself Killnet, said on Telegram that \u201can attack was carried out on Ukrainian mobile operators, as well as on some banks,\u201d but didn\u2019t elaborate or provide any evidence. A separate group known as Solntsepek said on the same site that it took \u201cfull responsibility for the cyberattack on Kyivstar\u201d and had \u201cdestroyed 10,000 computers, more than 4,000 servers, and all cloud storage and backup systems.\u201d The post was accompanied by screenshots purporting to show someone with control over the Kyivstar systems.\nIn the city of Lviv, street lights remained on after sunrise and had to be disconnected manually, because Internet-dependent automated power switches didn\u2019t work, according to NBC News. Additionally, the outage prevented shops throughout the country from processing credit payments and many ATMs from functioning, the Kyiv Post said.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2023/12/ukrainian-cells-and-internet-still-out-1-day-after-suspected-russian-cyberattack/#comments", - "content": "Hackers tied to Russian military take responsibility for hack on Ukraine's biggest provider.", - "contentSnippet": "Hackers tied to Russian military take responsibility for hack on Ukraine's biggest provider.", - "guid": "https://arstechnica.com/?p=1991011", - "categories": [ - "Biz & IT", - "Security", - "cellular", - "cyberattack", - "Internet", - "russia", - "Ukraine" - ], - "isoDate": "2023-12-14T01:33:41.000Z" - }, - { - "creator": "Samuel Axon", - "title": "Guidemaster: A cheat sheet for comparing the iPhone 15 lineup\u2019s cameras", - "link": "https://arstechnica.com/?p=1987647", - "pubDate": "Thu, 14 Dec 2023 00:08:18 +0000", - "content:encoded": "
\n
\n \"iPhone\n

Enlarge / The iPhone 15 lineup.

\n\n\n\n\n\n\n
\n

Over the past couple of years of reviewing the iPhone, we've often jokingly called them \"smartcameras\" rather than smartphones, as the camera features are really what sell people on upgrading to new models.

\n

So, for our final Apple gift guide, we'll revisit some of what we explored in our iPhone 15 and iPhone 15 Pro review with a special focus on the cameras. If you're looking to grab a new iPhone for yourself or someone in your family, which camera is best?

\n

The idea here is to provide a top-level, quick summary of the features of each iPhone camera as they pertain to specific uses to make for an easy buying guide for last-minute holiday shoppers who want a quick answer. We'll go over each phone and survey its features, detailing their relevant uses and noting some recommendations and considerations along the way.

Read 44 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The iPhone 15 lineup. \n \n\n\n\n\n\n\n\nOver the past couple of years of reviewing the iPhone, we've often jokingly called them \"smartcameras\" rather than smartphones, as the camera features are really what sell people on upgrading to new models.\nSo, for our final Apple gift guide, we'll revisit some of what we explored in our iPhone 15 and iPhone 15 Pro review with a special focus on the cameras. If you're looking to grab a new iPhone for yourself or someone in your family, which camera is best?\nThe idea here is to provide a top-level, quick summary of the features of each iPhone camera as they pertain to specific uses to make for an easy buying guide for last-minute holiday shoppers who want a quick answer. We'll go over each phone and survey its features, detailing their relevant uses and noting some recommendations and considerations along the way.\n\nRead 44 remaining paragraphs | Comments", - "dc:creator": "Samuel Axon", - "comments": "https://arstechnica.com/gadgets/2023/12/guidemaster-a-cheat-sheet-for-comparing-the-iphone-15-lineups-cameras/#comments", - "content": "Most folks don't need the Pros, but there are some use cases where it matters.", - "contentSnippet": "Most folks don't need the Pros, but there are some use cases where it matters.", - "guid": "https://arstechnica.com/?p=1987647", - "categories": [ - "Shopping", - "Tech", - "guidemaster", - "iphone", - "iPhone 15", - "iPhone 15 Pro", - "iphone 15 pro max" - ], - "isoDate": "2023-12-14T00:08:18.000Z" - }, - { - "creator": "Scharon Harding", - "title": "You can now access Apple\u2019s official diagnostics tool online for DIY repairs", - "link": "https://arstechnica.com/?p=1990929", - "pubDate": "Wed, 13 Dec 2023 23:20:41 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The iPhone 15 is part of Apple's self-repair program now. (credit: Samuel Axon)

\n\n\n\n\n\n\n
\n

Apple today expanded the Self Service Repair program it launched in April to include access to Apple's diagnostics tool online and the iPhone 15 series and M2 Macs.

\n

The online tool, Apple said in today's announcement, provides \"the same ability as Apple Authorized Service Providers and Independent Repair Providers to test devices for optimal part functionality and performance, as well as identify which parts may need repair.\" The troubleshooting tool is only available in the US and will hit Europe in 2024, according to Apple.

\n

Upon visiting the tool's website, you'll be prompted to put your device in diagnostic mode before entering the device's serial number. Then, you'll have access to a diagnostic suite, including things like a mobile resource inspector for checking software and validating components' presence, testing for audio output and \"display pixel anomalies,\" and tests for cameras and Face ID.

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The iPhone 15 is part of Apple's self-repair program now. (credit: Samuel Axon)\n \n\n\n\n\n\n\n\nApple today expanded the Self Service Repair program it launched in April to include access to Apple's diagnostics tool online and the iPhone 15 series and M2 Macs.\nThe online tool, Apple said in today's announcement, provides \"the same ability as Apple Authorized Service Providers and Independent Repair Providers to test devices for optimal part functionality and performance, as well as identify which parts may need repair.\" The troubleshooting tool is only available in the US and will hit Europe in 2024, according to Apple.\nUpon visiting the tool's website, you'll be prompted to put your device in diagnostic mode before entering the device's serial number. Then, you'll have access to a diagnostic suite, including things like a mobile resource inspector for checking software and validating components' presence, testing for audio output and \"display pixel anomalies,\" and tests for cameras and Face ID.\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/gadgets/2023/12/you-can-now-access-apples-official-diagnostics-tool-online-for-diy-repairs/#comments", - "content": "Parts pairing still irks right-to-repair activists, though. ", - "contentSnippet": "Parts pairing still irks right-to-repair activists, though.", - "guid": "https://arstechnica.com/?p=1990929", - "categories": [ - "Apple", - "Tech", - "apple", - "iphone", - "Mac", - "MacBook", - "repairability", - "right to repair" - ], - "isoDate": "2023-12-13T23:20:41.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Effects of Falcon Heavy launch delay could ripple to downstream missions", - "link": "https://arstechnica.com/?p=1990914", - "pubDate": "Wed, 13 Dec 2023 22:41:36 +0000", - "content:encoded": "
\n
\n \"A\n

A SpaceX Falcon Heavy rocket is seen outside the company's hangar at Kennedy Space Center, Florida. (credit: SpaceX)

\n\n\n\n\n\n\n
\n

SpaceX and the US Space Force thought they were ready to launch the military's mysterious X-37B spaceplane this week, but ground teams in Florida need to roll the Falcon Heavy rocket back into its hangar for servicing.

\n

This is expected to push back the launch until at least late December, perhaps longer. SpaceX and Space Force officials have not divulged details about the problems causing the delay.

\n

SpaceX called off a launch attempt Monday night at NASA's Kennedy Space Center in Florida to resolve a problem with a ground system. A senior Space Force official told Ars on Wednesday that additional issues will cause an additional delay in the launch.

Read 16 remaining paragraphs | Comments

", - "content:encodedSnippet": "A SpaceX Falcon Heavy rocket is seen outside the company's hangar at Kennedy Space Center, Florida. (credit: SpaceX)\n \n\n\n\n\n\n\n\nSpaceX and the US Space Force thought they were ready to launch the military's mysterious X-37B spaceplane this week, but ground teams in Florida need to roll the Falcon Heavy rocket back into its hangar for servicing.\nThis is expected to push back the launch until at least late December, perhaps longer. SpaceX and Space Force officials have not divulged details about the problems causing the delay.\nSpaceX called off a launch attempt Monday night at NASA's Kennedy Space Center in Florida to resolve a problem with a ground system. A senior Space Force official told Ars on Wednesday that additional issues will cause an additional delay in the launch.\n\nRead 16 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2023/12/technical-problems-ground-spacex-launch-of-us-military-spaceplane/#comments", - "content": "Officials hope to launch before the end of the year, but a longer delay is possible.", - "contentSnippet": "Officials hope to launch before the end of the year, but a longer delay is possible.", - "guid": "https://arstechnica.com/?p=1990914", - "categories": [ - "Space", - "falcon heavy", - "launch", - "military space", - "space force", - "spaceplane", - "spacex", - "X-37b" - ], - "isoDate": "2023-12-13T22:41:36.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Trains were designed to break down after third-party repairs, hackers find", - "link": "https://arstechnica.com/?p=1990928", - "pubDate": "Wed, 13 Dec 2023 22:14:20 +0000", - "content:encoded": "
\n
\n Dragon Sector uploaded a video to social media after discovering an \"undocumented \u2018unlock code\u2019 which you could enter from the train driver\u2019s panel\" fixed \"mysterious issues\" impacting trains in Poland.\n

Enlarge / Dragon Sector uploaded a video to social media after discovering an \"undocumented \u2018unlock code\u2019 which you could enter from the train driver\u2019s panel\" fixed \"mysterious issues\" impacting trains in Poland. (credit: Adam Haertle on YouTube)

\n\n\n\n\n\n\n
\n

An unusual right-to-repair drama is disrupting railroad travel in Poland despite efforts by hackers who helped repair trains that allegedly were designed to stop functioning when serviced by anyone but Newag, the train manufacturer.

\n

Members of an ethical hacking group called Dragon Sector, including Sergiusz Baza\u0144ski and Micha\u0142 Kowalczyk, were called upon by a train repair shop, Serwis Pojazd\u00f3w Szynowych (SPS), to analyze train software in June 2022. SPS was desperate to figure out what was causing \"mysterious failures\" that shut down several vehicles owned by Polish train operator the Lower Silesian Railway, Polish infrastructure trade publication Rynek Kolejowy reported. At that point, the shortage of trains had already become \"a serious problem\" for carriers and passengers, as fewer available cars meant shorter trains and reduced rider capacity, Rynek Kolejowy reported.

\n

Dragon Sector spent two months analyzing the software, finding that \"the manufacturer's interference\" led to \"forced failures and to the fact that the trains did not start,\" and concluding that bricking the trains \"was a deliberate action on Newag's part.\"

Read 19 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Dragon Sector uploaded a video to social media after discovering an \"undocumented \u2018unlock code\u2019 which you could enter from the train driver\u2019s panel\" fixed \"mysterious issues\" impacting trains in Poland. (credit: Adam Haertle on YouTube)\n \n\n\n\n\n\n\n\nAn unusual right-to-repair drama is disrupting railroad travel in Poland despite efforts by hackers who helped repair trains that allegedly were designed to stop functioning when serviced by anyone but Newag, the train manufacturer.\nMembers of an ethical hacking group called Dragon Sector, including Sergiusz Baza\u0144ski and Micha\u0142 Kowalczyk, were called upon by a train repair shop, Serwis Pojazd\u00f3w Szynowych (SPS), to analyze train software in June 2022. SPS was desperate to figure out what was causing \"mysterious failures\" that shut down several vehicles owned by Polish train operator the Lower Silesian Railway, Polish infrastructure trade publication Rynek Kolejowy reported. At that point, the shortage of trains had already become \"a serious problem\" for carriers and passengers, as fewer available cars meant shorter trains and reduced rider capacity, Rynek Kolejowy reported.\nDragon Sector spent two months analyzing the software, finding that \"the manufacturer's interference\" led to \"forced failures and to the fact that the trains did not start,\" and concluding that bricking the trains \"was a deliberate action on Newag's part.\"\n\nRead 19 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2023/12/manufacturer-deliberately-bricked-trains-repaired-by-competitors-hackers-find/#comments", - "content": "The train manufacturer accused the hackers of slander.", - "contentSnippet": "The train manufacturer accused the hackers of slander.", - "guid": "https://arstechnica.com/?p=1990928", - "categories": [ - "Policy", - "DRM", - "gps tracker", - "Newag", - "Poland", - "right to repair", - "trains" - ], - "isoDate": "2023-12-13T22:14:20.000Z" - }, - { - "creator": "Beth Mole", - "title": "Humana also using AI tool with 90% error rate to deny care, lawsuit claims", - "link": "https://arstechnica.com/?p=1990918", - "pubDate": "Wed, 13 Dec 2023 21:40:34 +0000", - "content:encoded": "
\n
\n \"Signage\n

Enlarge / Signage is displayed outside the Humana Inc. office building in Louisville, Kentucky, US, in 2016. (credit: Getty | Luke Sharrett)

\n\n\n\n\n\n\n
\n

Humana, one the nation's largest health insurance providers, is allegedly using an artificial intelligence model with a 90 percent error rate to override doctors' medical judgment and wrongfully deny care to elderly people on the company's Medicare Advantage plans.

\n

According to a lawsuit filed Tuesday, Humana's use of the AI model constitutes a \"fraudulent scheme\" that leaves elderly beneficiaries with either overwhelming medical debt or without needed care that is covered by their plans. Meanwhile, the insurance behemoth reaps a \"financial windfall.\"

\n

The lawsuit, filed in the US District Court in western Kentucky, is led by two people who had a Humana Medicare Advantage Plan policy and said they were wrongfully denied needed and covered care, harming their health and finances. The suit seeks class-action status for an unknown number of other beneficiaries nationwide who may be in similar situations. Humana provides Medicare Advantage plans for 5.1 million people in the US.

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Signage is displayed outside the Humana Inc. office building in Louisville, Kentucky, US, in 2016. (credit: Getty | Luke Sharrett)\n \n\n\n\n\n\n\n\nHumana, one the nation's largest health insurance providers, is allegedly using an artificial intelligence model with a 90 percent error rate to override doctors' medical judgment and wrongfully deny care to elderly people on the company's Medicare Advantage plans.\nAccording to a lawsuit filed Tuesday, Humana's use of the AI model constitutes a \"fraudulent scheme\" that leaves elderly beneficiaries with either overwhelming medical debt or without needed care that is covered by their plans. Meanwhile, the insurance behemoth reaps a \"financial windfall.\"\nThe lawsuit, filed in the US District Court in western Kentucky, is led by two people who had a Humana Medicare Advantage Plan policy and said they were wrongfully denied needed and covered care, harming their health and finances. The suit seeks class-action status for an unknown number of other beneficiaries nationwide who may be in similar situations. Humana provides Medicare Advantage plans for 5.1 million people in the US.\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/science/2023/12/humana-also-using-ai-tool-with-90-error-rate-to-deny-care-lawsuit-claims/#comments", - "content": "The AI model, nH Predict, is the focus of another lawsuit against UnitedHealth.", - "contentSnippet": "The AI model, nH Predict, is the focus of another lawsuit against UnitedHealth.", - "guid": "https://arstechnica.com/?p=1990918", - "categories": [ - "Health", - "Science", - "AI", - "claim denial", - "coverage", - "humana", - "insurance", - "insurance coverage", - "Medicare", - "medicare advantage", - "nH Predict", - "nursing home", - "post-acute care", - "unitedhealth" - ], - "isoDate": "2023-12-13T21:40:34.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "SpaceX blasts FCC as it refuses to reinstate Starlink\u2019s $886 million grant", - "link": "https://arstechnica.com/?p=1990908", - "pubDate": "Wed, 13 Dec 2023 20:54:42 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / Starlink satellite dish. (credit: Getty Images | olegda88)

\n\n\n\n\n\n\n
\n

SpaceX is furious at the Federal Communications Commission after the agency refused to reinstate an $886 million broadband grant that was tentatively awarded to Starlink during the previous administration.

\n

The FCC announced yesterday that it rejected SpaceX's appeal. \"The FCC followed a careful legal, technical and policy review to determine that this applicant had failed to meet its burden to be entitled to nearly $900 million in universal service funds for almost a decade,\" FCC Chairwoman Jessica Rosenworcel said.

\n

In December 2020, shortly before the departure of then-FCC Chairman Ajit Pai, Starlink was tentatively awarded $885.51 million in broadband funding from the Rural Digital Opportunity Fund (RDOF). But the satellite provider still needed FCC approval of a long-form application to receive the money, which is meant to subsidize deployment in areas with little or no high-speed broadband access.

Read 17 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Starlink satellite dish. (credit: Getty Images | olegda88)\n \n\n\n\n\n\n\n\nSpaceX is furious at the Federal Communications Commission after the agency refused to reinstate an $886 million broadband grant that was tentatively awarded to Starlink during the previous administration.\nThe FCC announced yesterday that it rejected SpaceX's appeal. \"The FCC followed a careful legal, technical and policy review to determine that this applicant had failed to meet its burden to be entitled to nearly $900 million in universal service funds for almost a decade,\" FCC Chairwoman Jessica Rosenworcel said.\nIn December 2020, shortly before the departure of then-FCC Chairman Ajit Pai, Starlink was tentatively awarded $885.51 million in broadband funding from the Rural Digital Opportunity Fund (RDOF). But the satellite provider still needed FCC approval of a long-form application to receive the money, which is meant to subsidize deployment in areas with little or no high-speed broadband access.\n\nRead 17 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/12/spacex-blasts-fcc-as-it-refuses-to-reinstate-starlinks-886-million-grant/#comments", - "content": "FCC doubts ability to provide high-speed, low-latency service in all grant areas.", - "contentSnippet": "FCC doubts ability to provide high-speed, low-latency service in all grant areas.", - "guid": "https://arstechnica.com/?p=1990908", - "categories": [ - "Policy", - "FCC", - "spacex starlink" - ], - "isoDate": "2023-12-13T20:54:42.000Z" - }, - { - "creator": "Ars Contributors", - "title": "New survey: Nearly 30% of ESA workers experience workplace harassment", - "link": "https://arstechnica.com/?p=1990895", - "pubDate": "Wed, 13 Dec 2023 20:51:11 +0000", - "content:encoded": "
\n
\n \"Image\n

Enlarge / The ESA headquarters in Paris. (credit: ESA - P. Sebirot)

\n\n\n\n\n\n\n
\n

According to a new internal survey conducted by the European Space Agency\u2019s (ESA) staff association, about 30 percent of ESA\u2019s employees have either experienced or witnessed harassment in the workplace. The survey, published internally on December 6 and seen by Ars Technica, confirms the findings of our recent investigation into allegations of harassment and bullying at the agency.

\n

The internal survey ran from July 19 to September 15 of this year and collected the responses of 2,751 workers, representing nearly half of all ESA employees across its six main centers in France, Germany, the Netherlands, the UK, Spain, and Italy. The ESA staff association was set up by ESA to represent staff members, but the survey included both staff members and on-site contractors who are loaned to the agency through a network of cooperating manpower companies in Europe.

\n

Among the respondents, nearly a third said they had witnessed harassment during their time at the agency, while 28 percent said they had directly experienced it. The report states that a \u201ccomplementary analysis of 1,200 comments\u201d provided by the respondents suggests that about 20 percent of the ESA workers experienced harassment within the past 24 months. The types of harassment disclosed in the survey included bullying and mobbing (60 percent of cases), moral harassment (30 percent of cases) and sexual harassment (10 percent cases).

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The ESA headquarters in Paris. (credit: ESA - P. Sebirot)\n \n\n\n\n\n\n\n\nAccording to a new internal survey conducted by the European Space Agency\u2019s (ESA) staff association, about 30 percent of ESA\u2019s employees have either experienced or witnessed harassment in the workplace. The survey, published internally on December 6 and seen by Ars Technica, confirms the findings of our recent investigation into allegations of harassment and bullying at the agency.\nThe internal survey ran from July 19 to September 15 of this year and collected the responses of 2,751 workers, representing nearly half of all ESA employees across its six main centers in France, Germany, the Netherlands, the UK, Spain, and Italy. The ESA staff association was set up by ESA to represent staff members, but the survey included both staff members and on-site contractors who are loaned to the agency through a network of cooperating manpower companies in Europe.\nAmong the respondents, nearly a third said they had witnessed harassment during their time at the agency, while 28 percent said they had directly experienced it. The report states that a \u201ccomplementary analysis of 1,200 comments\u201d provided by the respondents suggests that about 20 percent of the ESA workers experienced harassment within the past 24 months. The types of harassment disclosed in the survey included bullying and mobbing (60 percent of cases), moral harassment (30 percent of cases) and sexual harassment (10 percent cases).\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/space/2023/12/new-survey-nearly-30-of-esa-workers-experience-workplace-harassment/#comments", - "content": "A new internal survey, leaked to Ars, shows continued problems at the space agency.", - "contentSnippet": "A new internal survey, leaked to Ars, shows continued problems at the space agency.", - "guid": "https://arstechnica.com/?p=1990895", - "categories": [ - "Space", - "ESA", - "workplace harassment" - ], - "isoDate": "2023-12-13T20:51:11.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Let\u2019s attempt to decode Google\u2019s confusing new location data settings", - "link": "https://arstechnica.com/?p=1990758", - "pubDate": "Wed, 13 Dec 2023 19:51:26 +0000", - "content:encoded": "
\n
\n \"Let\u2019s\n

Enlarge

\n\n\n\n\n\n\n
\n

Google announced big changes to its most legally fraught set of user settings: your location data. Google's misleading Location History descriptions in Google Maps have earned it several lawsuits in the US and worldwide. A quick count involves individual lawsuits in California, Arizona, Washington, a joint lawsuit in Texas, Indiana, and the District of Columbia, and another joint lawsuit across 40 additional US states. Internationally, Google has also been sued in Australia over its location settings. The point is that any change to Google's location settings must have some motive behind it, so bear with us while we try to decode everything.

\n

Google's big new location data change is a new, duplicate data store that will live exclusively on your device. Google's new blog post says data for the long-running Google Maps Timeline feature will now \"be saved right on your device\u2014giving you even more control over your data.\" That's right, one of the world's biggest Internet data companies advocates for local storage of your location data.

\n

The company continues, \"If you\u2019re getting a new phone or are worried about losing your existing one, you can always choose to back up your data to the cloud so it doesn\u2019t get lost. We\u2019ll automatically encrypt your backed-up data so no one can read it, including Google.\" Users will apparently have lots of control over this new locally stored data, with Google saying, \"Soon, you\u2019ll be able to see all your recent activity on Maps... in one central place, and easily delete your searches, directions, visits, and shares with just a few taps. The ability to delete place-related activity from Maps starts rolling out on Android and iOS in the coming weeks.\"

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge \n \n\n\n\n\n\n\n\nGoogle announced big changes to its most legally fraught set of user settings: your location data. Google's misleading Location History descriptions in Google Maps have earned it several lawsuits in the US and worldwide. A quick count involves individual lawsuits in California, Arizona, Washington, a joint lawsuit in Texas, Indiana, and the District of Columbia, and another joint lawsuit across 40 additional US states. Internationally, Google has also been sued in Australia over its location settings. The point is that any change to Google's location settings must have some motive behind it, so bear with us while we try to decode everything.\nGoogle's big new location data change is a new, duplicate data store that will live exclusively on your device. Google's new blog post says data for the long-running Google Maps Timeline feature will now \"be saved right on your device\u2014giving you even more control over your data.\" That's right, one of the world's biggest Internet data companies advocates for local storage of your location data.\nThe company continues, \"If you\u2019re getting a new phone or are worried about losing your existing one, you can always choose to back up your data to the cloud so it doesn\u2019t get lost. We\u2019ll automatically encrypt your backed-up data so no one can read it, including Google.\" Users will apparently have lots of control over this new locally stored data, with Google saying, \"Soon, you\u2019ll be able to see all your recent activity on Maps... in one central place, and easily delete your searches, directions, visits, and shares with just a few taps. The ability to delete place-related activity from Maps starts rolling out on Android and iOS in the coming weeks.\"\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2023/12/googles-confusing-new-location-settings-hide-data-in-two-different-places/#comments", - "content": "The new Google Maps Timeline plays a game of three-card monte with your location data.", - "contentSnippet": "The new Google Maps Timeline plays a game of three-card monte with your location data.", - "guid": "https://arstechnica.com/?p=1990758", - "categories": [ - "Google", - "Tech", - "data security", - "google", - "google cloud", - "google maps", - "location data" - ], - "isoDate": "2023-12-13T19:51:26.000Z" - }, - { - "creator": "Benj Edwards", - "title": "Dropbox spooks users with new AI features that send data to OpenAI when used", - "link": "https://arstechnica.com/?p=1990819", - "pubDate": "Wed, 13 Dec 2023 19:41:35 +0000", - "content:encoded": "
\n
\n \"Photo\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

On Wednesday, news quickly spread on social media about a new enabled-by-default Dropbox setting that shares Dropbox data with OpenAI for an experimental AI-powered search feature, but Dropbox says data is only shared if the feature is actively being used. Dropbox says that user data shared with third-party AI partners isn't used to train AI models and is deleted within 30 days.

\n\n

Even with assurances of data privacy laid out by Dropbox on an AI privacy FAQ page, the discovery that the setting had been enabled by default upset some Dropbox users. The setting was first noticed by writer Winifred Burton, who shared information about the Third-party AI setting through Bluesky on Tuesday, and frequent AI critic Karla Ortiz shared more information about it on X.

\n

Wednesday afternoon, Drew Houston, the CEO of Dropbox, apologized for customer confusion in a post on X and wrote, \"The third-party AI toggle in the settings menu enables or disables access to DBX AI features and functionality. Neither this nor any other setting automatically or passively sends any Dropbox customer data to a third-party AI service.\"

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nOn Wednesday, news quickly spread on social media about a new enabled-by-default Dropbox setting that shares Dropbox data with OpenAI for an experimental AI-powered search feature, but Dropbox says data is only shared if the feature is actively being used. Dropbox says that user data shared with third-party AI partners isn't used to train AI models and is deleted within 30 days.\nEven with assurances of data privacy laid out by Dropbox on an AI privacy FAQ page, the discovery that the setting had been enabled by default upset some Dropbox users. The setting was first noticed by writer Winifred Burton, who shared information about the Third-party AI setting through Bluesky on Tuesday, and frequent AI critic Karla Ortiz shared more information about it on X.\nWednesday afternoon, Drew Houston, the CEO of Dropbox, apologized for customer confusion in a post on X and wrote, \"The third-party AI toggle in the settings menu enables or disables access to DBX AI features and functionality. Neither this nor any other setting automatically or passively sends any Dropbox customer data to a third-party AI service.\"\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/information-technology/2023/12/dropbox-spooks-users-by-sending-data-to-openai-for-ai-search-features/#comments", - "content": "AI feature turned on by default worries users; Dropbox responds to concerns.", - "contentSnippet": "AI feature turned on by default worries users; Dropbox responds to concerns.", - "guid": "https://arstechnica.com/?p=1990819", - "categories": [ - "AI", - "Biz & IT", - "AI privacy", - "ChatGPT", - "chatgtp", - "data privacy", - "dropbox", - "large language models", - "machine learning", - "openai", - "privacy" - ], - "isoDate": "2023-12-13T19:41:35.000Z" - }, - { - "creator": "John Timmer", - "title": "Back to reality: COP28 calls for getting fossil fuels out of energy", - "link": "https://arstechnica.com/?p=1990834", - "pubDate": "Wed, 13 Dec 2023 19:01:27 +0000", - "content:encoded": "
\n
\n \"Image\n

Enlarge / Sultan Ahmed Al Jaber defied expectations to deliver a document that explicitly calls for limits on fossil fuel use. (credit: Fadel Dawod)

\n\n\n\n\n\n\n
\n

On Wednesday, the UN's COP28 meeting wrapped up with a major success: Despite a bruising fight with OPEC nations, the closing agreement included a call for a transition away from fossil fuels. There's still plenty here for various parties to dislike, but this is the first agreement that makes the implications of the Paris Treaty explicit: We can't limit climate change and continue to burn fossil fuels at anything close to the rate we currently do.

\n

Beyond that, however, the report has something to disappoint everyone. It catalogs strong signs of incremental progress toward the Paris goals while acknowledging we're running out of time for further increments. And the steps it calls for will likely keep changes on a similar trajectory.

\n

Taking stock

\n

The new document is called a \"Global Stocktake\" in reference to checking the world's progress toward the goals of the Paris Agreement: limit climate change to 2\u00b0 C above preindustrial temperatures and try to keep it to 1.5\u00b0 C. That agreement called for nations to make pledges to limit greenhouse gas emissions; initial pledges were insufficient, but regular meetings of the Conference of the Parties (COP) would allow the pledges to be updated, raising their aggressiveness until the world is on a trajectory toward meeting its goals.

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Sultan Ahmed Al Jaber defied expectations to deliver a document that explicitly calls for limits on fossil fuel use. (credit: Fadel Dawod)\n \n\n\n\n\n\n\n\nOn Wednesday, the UN's COP28 meeting wrapped up with a major success: Despite a bruising fight with OPEC nations, the closing agreement included a call for a transition away from fossil fuels. There's still plenty here for various parties to dislike, but this is the first agreement that makes the implications of the Paris Treaty explicit: We can't limit climate change and continue to burn fossil fuels at anything close to the rate we currently do.\nBeyond that, however, the report has something to disappoint everyone. It catalogs strong signs of incremental progress toward the Paris goals while acknowledging we're running out of time for further increments. And the steps it calls for will likely keep changes on a similar trajectory.\nTaking stock\nThe new document is called a \"Global Stocktake\" in reference to checking the world's progress toward the goals of the Paris Agreement: limit climate change to 2\u00b0 C above preindustrial temperatures and try to keep it to 1.5\u00b0 C. That agreement called for nations to make pledges to limit greenhouse gas emissions; initial pledges were insufficient, but regular meetings of the Conference of the Parties (COP) would allow the pledges to be updated, raising their aggressiveness until the world is on a trajectory toward meeting its goals.\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "John Timmer", - "comments": "https://arstechnica.com/tech-policy/2023/12/new-cop28-agreement-calls-for-transitioning-away-from-fossil-fuels/#comments", - "content": "Some details moderate its impact, but it marks a major step.", - "contentSnippet": "Some details moderate its impact, but it marks a major step.", - "guid": "https://arstechnica.com/?p=1990834", - "categories": [ - "Policy", - "Science", - "carbon emissions", - "climate change", - "COP28", - "Diplomacy", - "paris agreement" - ], - "isoDate": "2023-12-13T19:01:27.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Elon Musk\u2019s X ad revenue reportedly fell $1.5B this year amid boycotts", - "link": "https://arstechnica.com/?p=1990797", - "pubDate": "Wed, 13 Dec 2023 18:23:11 +0000", - "content:encoded": "
\n
\n \"Elon\n

Enlarge (credit: Leon Neal / Staff | Getty Images Europe)

\n\n\n\n\n\n\n
\n

It's hard to know exactly how dire the financial situation is at Elon Musk's X (formerly Twitter). However, insider sources recently revealed to Bloomberg that the social media platform expects to end 2023 with \"roughly\" $2.5 billion in advertising revenue.

\n

That's \"a significant slump from prior years,\" sources said. It's also about half a billion short of the $3 billion that X executives expected to make in ad sales in 2023, one source said.

\n

Last year, Twitter raked in more than $1 billion in ad revenue per quarter, sources said. But in each of the first three quarters of 2023, X only managed to generate \"a little more than $600 million\" in ad revenue. Now, the most recent advertiser fallout over antisemitic content on X\u2014estimated in November as triggering a sudden $75 million loss\u2014is still casting a shadow on what could become an even more dismal fourth quarter.

Read 13 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Leon Neal / Staff | Getty Images Europe)\n \n\n\n\n\n\n\n\nIt's hard to know exactly how dire the financial situation is at Elon Musk's X (formerly Twitter). However, insider sources recently revealed to Bloomberg that the social media platform expects to end 2023 with \"roughly\" $2.5 billion in advertising revenue.\nThat's \"a significant slump from prior years,\" sources said. It's also about half a billion short of the $3 billion that X executives expected to make in ad sales in 2023, one source said.\nLast year, Twitter raked in more than $1 billion in ad revenue per quarter, sources said. But in each of the first three quarters of 2023, X only managed to generate \"a little more than $600 million\" in ad revenue. Now, the most recent advertiser fallout over antisemitic content on X\u2014estimated in November as triggering a sudden $75 million loss\u2014is still casting a shadow on what could become an even more dismal fourth quarter.\n\nRead 13 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2023/12/stop-comparing-xs-dismal-ad-sales-to-twitters-past-success-x-exec-says/#comments", - "content": "\"We are not Twitter any longer,\" X exec said.", - "contentSnippet": "\"We are not Twitter any longer,\" X exec said.", - "guid": "https://arstechnica.com/?p=1990797", - "categories": [ - "Policy", - "advertiser boycott", - "Bob Iger", - "Disney", - "Elon Musk", - "Twitter", - "X" - ], - "isoDate": "2023-12-13T18:23:11.000Z" - }, - { - "creator": "Eric Berger", - "title": "Daily Telescope: One of the most stunning Andromeda photos I\u2019ve ever seen", - "link": "https://arstechnica.com/?p=1991241", - "pubDate": "Fri, 15 Dec 2023 13:00:20 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The Andromeda Galaxy. (credit: The Association of Widefield Astrophotographers)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's December 15, and I have a real treat for you today. This is an image of the Andromeda Galaxy, the nearest major galaxy to our Milky Way. Astronomers believe our galaxy is shaped much as this one is.

\n

The photograph comes from a group that calls itself the Association of Widefield Astrophotographers, and the photo was a 100-hour project by six participants in the United States, Poland, and the United Kingdom. They collected data over several months to produce the image.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The Andromeda Galaxy. (credit: The Association of Widefield Astrophotographers)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's December 15, and I have a real treat for you today. This is an image of the Andromeda Galaxy, the nearest major galaxy to our Milky Way. Astronomers believe our galaxy is shaped much as this one is.\nThe photograph comes from a group that calls itself the Association of Widefield Astrophotographers, and the photo was a 100-hour project by six participants in the United States, Poland, and the United Kingdom. They collected data over several months to produce the image.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "content": "The image is the result of 100 hours of observing.", - "contentSnippet": "The image is the result of 100 hours of observing.", - "guid": "https://arstechnica.com/?p=1991241", - "categories": [ - "Science", - "Space", - "daily telescope" - ], - "isoDate": "2023-12-15T13:00:20.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Rocket Report: Signs of life from Blue Origin; SpaceX preps next Starship", - "link": "https://arstechnica.com/?p=1991267", - "pubDate": "Fri, 15 Dec 2023 12:00:37 +0000", - "content:encoded": "
\n
\n \"Relativity\n

Enlarge / Relativity Space's Aeon R engine fires up on a test stand in Mississippi. (credit: Relativity Space)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.23 of the Rocket Report! In last week's report, my colleague Eric Berger mentioned what a year 2023 has been for rocket debuts. Several new launch vehicles flew for the first time this year, including SpaceX's Starship and Japan's H3. In this week's report, we have some news on some major rocket debuts planned for 2024, namely United Launch Alliance's Vulcan (now set for January) and Blue Origin's long-awaited New Glenn.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.

\n
\n

Lost tanks will delay final Vega launch.\u00a0Remember last week's report that Avio, the Italian rocket-maker, lost track of propellant tanks needed for the final launch of Europe's Vega rocket? Well, it looks like Avio and the European Space Agency have a plan to remedy the situation, but it's risky and will delay the Vega launch by several months, Space News reports.\u00a0\u201cAvio has confirmed to ESA that there is an issue with tanks for the last Vega flight,\u201d said Toni Tolker-Nielsen, ESA director of space transportation, without addressing the earlier report that the tanks for Vega's upper stage were found in a landfill, crushed and unusable.

Read 24 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Relativity Space's Aeon R engine fires up on a test stand in Mississippi. (credit: Relativity Space)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.23 of the Rocket Report! In last week's report, my colleague Eric Berger mentioned what a year 2023 has been for rocket debuts. Several new launch vehicles flew for the first time this year, including SpaceX's Starship and Japan's H3. In this week's report, we have some news on some major rocket debuts planned for 2024, namely United Launch Alliance's Vulcan (now set for January) and Blue Origin's long-awaited New Glenn.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.\n\nLost tanks will delay final Vega launch.\u00a0Remember last week's report that Avio, the Italian rocket-maker, lost track of propellant tanks needed for the final launch of Europe's Vega rocket? Well, it looks like Avio and the European Space Agency have a plan to remedy the situation, but it's risky and will delay the Vega launch by several months, Space News reports.\u00a0\u201cAvio has confirmed to ESA that there is an issue with tanks for the last Vega flight,\u201d said Toni Tolker-Nielsen, ESA director of space transportation, without addressing the earlier report that the tanks for Vega's upper stage were found in a landfill, crushed and unusable.\n\nRead 24 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2023/12/rocket-report-next-starship-to-fly-in-early-2024-ulas-vulcan-delayed/#comments", - "content": "Baguette One isn't a joke, but it sure sounds like one.", - "contentSnippet": "Baguette One isn't a joke, but it sure sounds like one.", - "guid": "https://arstechnica.com/?p=1991267", - "categories": [ - "Space" - ], - "isoDate": "2023-12-15T12:00:37.000Z" - }, - { - "creator": "Ars Contributors", - "title": "If AI is making the Turing test obsolete, what might be better?", - "link": "https://arstechnica.com/?p=1991004", - "pubDate": "Fri, 15 Dec 2023 00:16:24 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: mevans)

\n\n\n\n\n\n\n
\n

If a machine or an AI program matches or surpasses human intelligence, does that mean it can simulate humans perfectly? If yes, then what about reasoning\u2014our ability to apply logic and think rationally before making decisions? How could we even identify whether an AI program can reason? To try to answer this question, a team of researchers has proposed a novel framework that works like a psychological study for software.

\n

\"This test treats an 'intelligent' program as though it were a participant in a psychological study and has three steps: (a) test the program in a set of experiments examining its inferences, (b) test its understanding of its own way of reasoning, and (c) examine, if possible, the cognitive adequacy of the source code for the program,\" the researchers note.

\n

They suggest the standard methods of evaluating a machine\u2019s intelligence, such as the Turing Test, can only tell you if the machine is good at processing information and mimicking human responses. The current generations of AI programs, such as Google\u2019s LaMDA and OpenAI\u2019s ChatGPT, for example, have come close to passing the Turing Test, yet the test results don\u2019t imply these programs can think and reason like humans.

Read 22 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: mevans)\n \n\n\n\n\n\n\n\nIf a machine or an AI program matches or surpasses human intelligence, does that mean it can simulate humans perfectly? If yes, then what about reasoning\u2014our ability to apply logic and think rationally before making decisions? How could we even identify whether an AI program can reason? To try to answer this question, a team of researchers has proposed a novel framework that works like a psychological study for software.\n\"This test treats an 'intelligent' program as though it were a participant in a psychological study and has three steps: (a) test the program in a set of experiments examining its inferences, (b) test its understanding of its own way of reasoning, and (c) examine, if possible, the cognitive adequacy of the source code for the program,\" the researchers note.\nThey suggest the standard methods of evaluating a machine\u2019s intelligence, such as the Turing Test, can only tell you if the machine is good at processing information and mimicking human responses. The current generations of AI programs, such as Google\u2019s LaMDA and OpenAI\u2019s ChatGPT, for example, have come close to passing the Turing Test, yet the test results don\u2019t imply these programs can think and reason like humans.\n\nRead 22 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/ai/2023/12/do-ai-improvements-call-for-something-better-than-the-turing-test/#comments", - "content": "The Turing test focuses on the ability to chat\u2014can we test the ability to think?", - "contentSnippet": "The Turing test focuses on the ability to chat\u2014can we test the ability to think?", - "guid": "https://arstechnica.com/?p=1991004", - "categories": [ - "AI", - "Science", - "Computer science", - "Turing test" - ], - "isoDate": "2023-12-15T00:16:24.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Suspects can refuse to provide phone passcodes to police, court rules", - "link": "https://arstechnica.com/?p=1991289", - "pubDate": "Thu, 14 Dec 2023 23:30:43 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | releon8211)

\n\n\n\n\n\n\n
\n

Criminal suspects can refuse to provide phone passcodes to police under the US Constitution's Fifth Amendment privilege against self-incrimination, according to a unanimous ruling issued today by Utah's state Supreme Court. The questions addressed in the ruling could eventually be taken up by the US Supreme Court, whether through review of this case or a similar one.

\n

The case involves Alfonso Valdez, who was arrested for kidnapping and assaulting his ex-girlfriend. Police officers obtained a search warrant for the contents of Valdez's phone but couldn't crack his passcode.

\n

Valdez refused to provide his passcode to a police detective. At his trial, the state \"elicited testimony from the detective about Valdez's refusal to provide his passcode when asked,\" today's ruling said. \"And during closing arguments, the State argued in rebuttal that Valdez's refusal and the resulting lack of evidence from his cell phone undermined the veracity of one of his defenses. The jury convicted Valdez.\"

Read 18 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | releon8211)\n \n\n\n\n\n\n\n\nCriminal suspects can refuse to provide phone passcodes to police under the US Constitution's Fifth Amendment privilege against self-incrimination, according to a unanimous ruling issued today by Utah's state Supreme Court. The questions addressed in the ruling could eventually be taken up by the US Supreme Court, whether through review of this case or a similar one.\nThe case involves Alfonso Valdez, who was arrested for kidnapping and assaulting his ex-girlfriend. Police officers obtained a search warrant for the contents of Valdez's phone but couldn't crack his passcode.\nValdez refused to provide his passcode to a police detective. At his trial, the state \"elicited testimony from the detective about Valdez's refusal to provide his passcode when asked,\" today's ruling said. \"And during closing arguments, the State argued in rebuttal that Valdez's refusal and the resulting lack of evidence from his cell phone undermined the veracity of one of his defenses. The jury convicted Valdez.\"\n\nRead 18 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/12/suspects-can-refuse-to-provide-phone-passcodes-to-police-court-rules/#comments", - "content": "Phone-unlocking case law is \"total mess,\" may be ripe for Supreme Court review.", - "contentSnippet": "Phone-unlocking case law is \"total mess,\" may be ripe for Supreme Court review.", - "guid": "https://arstechnica.com/?p=1991289", - "categories": [ - "Policy", - "Fifth Amendment", - "phone passcode" - ], - "isoDate": "2023-12-14T23:30:43.000Z" - }, - { - "creator": "Beth Mole", - "title": "MDMA\u2014aka ecstasy\u2014submitted to FDA as part of PTSD therapy", - "link": "https://arstechnica.com/?p=1991296", - "pubDate": "Thu, 14 Dec 2023 22:57:07 +0000", - "content:encoded": "
\n
\n \"Girl\n

Enlarge / Girl with an ecstasy tablet on her tongue. (credit: Getty | UniversalImagesGroup)

\n\n\n\n\n\n\n
\n

A corporation dedicated to studying the benefits of psychedelic drugs filed an application with the Food and Drug Administration this week for approval to use MDMA\u2014aka ecstasy or molly\u2014in combination with talk therapy to treat post-traumatic stress disorder.

\n

If approved, it would be the first-of-its-kind combination treatment\u2014a psychedelic-assisted therapy. An approval would also require the Drug Enforcement Administration to reclassify MDMA, which is currently in the DEA's most restricted category, Schedule I, which is defined as drugs \"with no currently accepted medical use and a high potential for abuse.\" The category also includes LSD, heroin, and marijuana.

\n

The public benefit corporation (PBC) that filed the FDA application was created by MAPS, The Multidisciplinary Association for Psychedelic Studies, which has been supporting this type of work since 1986. The application is based on positive data from two randomized, double-blind, placebo-controlled Phase III studies, which were funded and organized by MAPS and MAPS PBC.

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Girl with an ecstasy tablet on her tongue. (credit: Getty | UniversalImagesGroup)\n \n\n\n\n\n\n\n\nA corporation dedicated to studying the benefits of psychedelic drugs filed an application with the Food and Drug Administration this week for approval to use MDMA\u2014aka ecstasy or molly\u2014in combination with talk therapy to treat post-traumatic stress disorder.\nIf approved, it would be the first-of-its-kind combination treatment\u2014a psychedelic-assisted therapy. An approval would also require the Drug Enforcement Administration to reclassify MDMA, which is currently in the DEA's most restricted category, Schedule I, which is defined as drugs \"with no currently accepted medical use and a high potential for abuse.\" The category also includes LSD, heroin, and marijuana.\nThe public benefit corporation (PBC) that filed the FDA application was created by MAPS, The Multidisciplinary Association for Psychedelic Studies, which has been supporting this type of work since 1986. The application is based on positive data from two randomized, double-blind, placebo-controlled Phase III studies, which were funded and organized by MAPS and MAPS PBC.\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/science/2023/12/mdma-aka-ecstasy-submitted-to-fda-as-part-of-ptsd-therapy/#comments", - "content": "If FDA approved, it would require the DEA to reclassify MDMA.", - "contentSnippet": "If FDA approved, it would require the DEA to reclassify MDMA.", - "guid": "https://arstechnica.com/?p=1991296", - "categories": [ - "Health", - "Science", - "fda", - "maps", - "mdma", - "psychedelics", - "PTSD", - "therapy" - ], - "isoDate": "2023-12-14T22:57:07.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Space Force chief: Timing of Chinese spaceplane launch \u201cno coincidence\u201d", - "link": "https://arstechnica.com/?p=1991189", - "pubDate": "Thu, 14 Dec 2023 22:04:13 +0000", - "content:encoded": "
\n
\n \"File\n

File photo of the US military's X-37B test vehicle after a landing in 2012. (credit: Boeing)

\n\n\n\n\n\n\n
\n

China has launched its top-secret military spaceplane for a third time, days after the US military's winged spacecraft was grounded for several weeks due to problems with its SpaceX rocket.

\n

Observers believe China's spaceplane looks much like the US military's X-37B, a reusable craft that Pentagon officials are similarly tight-lipped about. But there's a distinction in that US officials will publicly discuss, at least in broad terms, the purpose of the X-37B and release images of the spacecraft.

\n

The US military has two X-37Bs in its inventory, each with a cargo bay that could fit a large refrigerator. They resemble small space shuttles, with dimensions about one-quarter those of NASA's retired shuttle orbiters. The X-37B spaceplanes have flown in space six times, logging missions as long as two-and-a-half years, thanks to deployable solar panels that generate power for greater endurance.

Read 23 remaining paragraphs | Comments

", - "content:encodedSnippet": "File photo of the US military's X-37B test vehicle after a landing in 2012. (credit: Boeing)\n \n\n\n\n\n\n\n\nChina has launched its top-secret military spaceplane for a third time, days after the US military's winged spacecraft was grounded for several weeks due to problems with its SpaceX rocket.\nObservers believe China's spaceplane looks much like the US military's X-37B, a reusable craft that Pentagon officials are similarly tight-lipped about. But there's a distinction in that US officials will publicly discuss, at least in broad terms, the purpose of the X-37B and release images of the spacecraft.\nThe US military has two X-37Bs in its inventory, each with a cargo bay that could fit a large refrigerator. They resemble small space shuttles, with dimensions about one-quarter those of NASA's retired shuttle orbiters. The X-37B spaceplanes have flown in space six times, logging missions as long as two-and-a-half years, thanks to deployable solar panels that generate power for greater endurance.\n\nRead 23 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2023/12/space-force-chief-timing-of-chinese-spaceplane-launch-no-coincidence/#comments", - "content": "US and Chinese spaceplanes are \"two of the most watched objects\" in orbit.", - "contentSnippet": "US and Chinese spaceplanes are \"two of the most watched objects\" in orbit.", - "guid": "https://arstechnica.com/?p=1991189", - "categories": [ - "Space", - "chinese space program", - "spaceplane", - "X-37b" - ], - "isoDate": "2023-12-14T22:04:13.000Z" - }, - { - "creator": "Dan Goodin", - "title": "UniFi devices broadcasted private video to other users\u2019 accounts", - "link": "https://arstechnica.com/?p=1991239", - "pubDate": "Thu, 14 Dec 2023 21:34:03 +0000", - "content:encoded": "
\n
\n \"an\n

Enlarge / An assortment of Ubiquiti cameras. (credit: Ubiquiti)

\n\n\n\n\n\n\n
\n

Users of UniFi, the popular line of wireless devices from manufacturer Ubiquiti, are reporting receiving private camera feeds from, and control over, devices belonging to other users, posts published to social media site Reddit over the past 24 hours show.

\n

\u201cRecently, my wife received a notification from UniFi Protect, which included an image from a security camera,\u201d one Reddit user reported. \u201cHowever, here's the twist\u2014this camera doesn't belong to us.\u201d

\n

Stoking concern and anxiety

\n

The post included two images. The first showed a notification pushed to the person\u2019s phone reporting that their UDM Pro, a network controller and network gateway used by tech-enthusiast consumers, had detected someone moving in the backyard. A still shot of video recorded by a connected surveillance camera showed a three-story house surrounded by trees. The second image showed the dashboard belonging to the Reddit user. The user\u2019s connected device was a UDM SE, and the video it captured showed a completely different house.

Read 13 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / An assortment of Ubiquiti cameras. (credit: Ubiquiti)\n \n\n\n\n\n\n\n\nUsers of UniFi, the popular line of wireless devices from manufacturer Ubiquiti, are reporting receiving private camera feeds from, and control over, devices belonging to other users, posts published to social media site Reddit over the past 24 hours show.\n\u201cRecently, my wife received a notification from UniFi Protect, which included an image from a security camera,\u201d one Reddit user reported. \u201cHowever, here's the twist\u2014this camera doesn't belong to us.\u201d\nStoking concern and anxiety\nThe post included two images. The first showed a notification pushed to the person\u2019s phone reporting that their UDM Pro, a network controller and network gateway used by tech-enthusiast consumers, had detected someone moving in the backyard. A still shot of video recorded by a connected surveillance camera showed a three-story house surrounded by trees. The second image showed the dashboard belonging to the Reddit user. The user\u2019s connected device was a UDM SE, and the video it captured showed a completely different house.\n\nRead 13 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2023/12/unifi-devices-broadcasted-private-video-to-other-users-accounts/#comments", - "content": "\"I was presented with 88 consoles from another account,\" one user reports.", - "contentSnippet": "\"I was presented with 88 consoles from another account,\" one user reports.", - "guid": "https://arstechnica.com/?p=1991239", - "categories": [ - "Biz & IT", - "Security", - "privacy", - "security", - "ubiquiti", - "unifi", - "video" - ], - "isoDate": "2023-12-14T21:34:03.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Four years after Apple, Google will finally kill third-party cookies in 2024", - "link": "https://arstechnica.com/?p=1991199", - "pubDate": "Thu, 14 Dec 2023 21:00:30 +0000", - "content:encoded": "
\n
\n \"Extreme\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Chrome has finally announced plans to kill third-party cookies. It's been almost four years since third-party cookies have been disabled in Firefox and Safari, but Google, one of the world's largest ad companies, has been slow-rolling the death of the tracking cookie. Ad companies use third-party cookies to track users across the web, and that web activity is used to show users relevant ads. Now that Google's alternative user-tracking ad system, the \"Privacy Sandbox,\" has launched in Chrome, it's finally ready to do away with the previous form of ad tracking. The new timeline to kill third-party cookies is the second half of 2024.

\n

Google's blog post calls the rollout \"Tracking Protection\" and says the first tests will begin on January 4, where 1 percent of Chrome users will get the feature. By the second half of 2024, the rollout should hit everyone on desktop Chrome and Android (Chrome on iOS is just a reskinned Safari and is not applicable). The rollout comes with some new UI bits for Chrome, with Google saying, \"If a site doesn\u2019t work without third-party cookies and Chrome notices you\u2019re having issues\u2014like if you refresh a page multiple times\u2014we\u2019ll prompt you with an option to temporarily re-enable third-party cookies for that website from the eye icon on the right side of your address bar.\" Since other browsers have been doing this for four years, it's hard to imagine many web admins not being ready for it.

\n\n

Google says the rollout is \"subject to addressing any remaining competition concerns from the UK\u2019s Competition and Markets Authority.\" Chrome's Privacy Sandbox switch represents the world's most popular browser (Google Chrome) integrating with the web's biggest advertising platform (Google Ads) and shutting down alternative tracking methods used by competing ad companies. So, some regulators are naturally interested in the whole process.

Read 1 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nChrome has finally announced plans to kill third-party cookies. It's been almost four years since third-party cookies have been disabled in Firefox and Safari, but Google, one of the world's largest ad companies, has been slow-rolling the death of the tracking cookie. Ad companies use third-party cookies to track users across the web, and that web activity is used to show users relevant ads. Now that Google's alternative user-tracking ad system, the \"Privacy Sandbox,\" has launched in Chrome, it's finally ready to do away with the previous form of ad tracking. The new timeline to kill third-party cookies is the second half of 2024.\nGoogle's blog post calls the rollout \"Tracking Protection\" and says the first tests will begin on January 4, where 1 percent of Chrome users will get the feature. By the second half of 2024, the rollout should hit everyone on desktop Chrome and Android (Chrome on iOS is just a reskinned Safari and is not applicable). The rollout comes with some new UI bits for Chrome, with Google saying, \"If a site doesn\u2019t work without third-party cookies and Chrome notices you\u2019re having issues\u2014like if you refresh a page multiple times\u2014we\u2019ll prompt you with an option to temporarily re-enable third-party cookies for that website from the eye icon on the right side of your address bar.\" Since other browsers have been doing this for four years, it's hard to imagine many web admins not being ready for it.\n\nChrome's new third-party cookies controls. (credit: Google)\n\nGoogle says the rollout is \"subject to addressing any remaining competition concerns from the UK\u2019s Competition and Markets Authority.\" Chrome's Privacy Sandbox switch represents the world's most popular browser (Google Chrome) integrating with the web's biggest advertising platform (Google Ads) and shutting down alternative tracking methods used by competing ad companies. So, some regulators are naturally interested in the whole process.\n\nRead 1 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2023/12/chrome-will-finally-kill-third-party-tracking-cookies-in-2024/#comments", - "content": "Google delayed long enough to secure its ad business with new tracking methods.", - "contentSnippet": "Google delayed long enough to secure its ad business with new tracking methods.", - "guid": "https://arstechnica.com/?p=1991199", - "categories": [ - "Google", - "Tech", - "browser cookies", - "google ad business", - "google ads", - "google advertising", - "Google Chrome", - "privacy sandbox", - "third party cookies" - ], - "isoDate": "2023-12-14T21:00:30.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Twitch allowing more nudity after disproportionately banning female streamers", - "link": "https://arstechnica.com/?p=1991225", - "pubDate": "Thu, 14 Dec 2023 20:44:59 +0000", - "content:encoded": "
\n
\n \"Twitch\n

Enlarge (credit: SOPA Images / Contributor | LightRocket)

\n\n\n\n\n\n\n
\n

Twitch users have finally pushed the interactive livestreaming service to allow more nudity after years of banning mostly female-presenting streamers who were penalized for violating sexual content policies that Twitch now admits were too confusing.

\n

In one prominent example, just two days before the policy change, Twitch banned OnlyFans model Morgpie for posting \"topless\" streams. Although Morgpie's videos were shot to imply nudity, they \"never actually showed content that explicitly violated Twitch\u2019s sexual content policies,\" TechCrunch reported. To critics, Twitch's rationale for banning Morgpie remains unclear.

\n

In a blog, Twitch Chief Customer Trust Officer Angela Hession wrote that Twitch \"received consistent feedback from streamers that our current policies around sexual content are confusing and that it can be difficult to know how their content will be interpreted based on these policies.\"

Read 12 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: SOPA Images / Contributor | LightRocket)\n \n\n\n\n\n\n\n\nTwitch users have finally pushed the interactive livestreaming service to allow more nudity after years of banning mostly female-presenting streamers who were penalized for violating sexual content policies that Twitch now admits were too confusing.\nIn one prominent example, just two days before the policy change, Twitch banned OnlyFans model Morgpie for posting \"topless\" streams. Although Morgpie's videos were shot to imply nudity, they \"never actually showed content that explicitly violated Twitch\u2019s sexual content policies,\" TechCrunch reported. To critics, Twitch's rationale for banning Morgpie remains unclear.\nIn a blog, Twitch Chief Customer Trust Officer Angela Hession wrote that Twitch \"received consistent feedback from streamers that our current policies around sexual content are confusing and that it can be difficult to know how their content will be interpreted based on these policies.\"\n\nRead 12 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2023/12/twitch-finally-updates-overly-punitive-confusing-sexual-content-policy/#comments", - "content": "Twitch confirmed its policy banning nudity was sexist.", - "contentSnippet": "Twitch confirmed its policy banning nudity was sexist.", - "guid": "https://arstechnica.com/?p=1991225", - "categories": [ - "Policy", - "adult content", - "adult entertainment", - "live streaming", - "mature content", - "twitch" - ], - "isoDate": "2023-12-14T20:44:59.000Z" - }, - { - "creator": "Eric Berger", - "title": "Jeff Bezos says what we\u2019re all thinking: \u201cBlue Origin needs to be much faster\u201d", - "link": "https://arstechnica.com/?p=1991193", - "pubDate": "Thu, 14 Dec 2023 20:37:25 +0000", - "content:encoded": "
\n
\n \"Jeff\n

Enlarge / Jeff Bezos, shortly after he rode on New Shepard to space. (credit: Joe Raedle/Getty Images)

\n\n\n\n\n\n\n
\n

Amazon founder Jeff Bezos gives very few interviews, but he recently sat down with the computer scientist and podcaster Lex Fridman for a two-hour interview about Amazon, Blue Origin, his business practices, and more.

\n

The discussion meanders somewhat, but there are some interesting tidbits about spaceflight, especially when the conversation turns to Blue Origin. This is the space company Bezos founded more than 23 years ago. He has invested an extraordinary amount of money into Blue Origin\u2014likely somewhere between $10 billion and $20 billion\u2014and it truly is a passion project.

\n

But the inescapable truth about Blue Origin is that to date, it has been a disappointment in terms of execution. At present, Blue Origin employs approximately 11,000 people, about the same total as SpaceX. However, Blue Origin has launched zero rockets this year, whereas SpaceX has launched nearly 100, as well as building and launching thousands of satellites.

Read 12 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Jeff Bezos, shortly after he rode on New Shepard to space. (credit: Joe Raedle/Getty Images)\n \n\n\n\n\n\n\n\nAmazon founder Jeff Bezos gives very few interviews, but he recently sat down with the computer scientist and podcaster Lex Fridman for a two-hour interview about Amazon, Blue Origin, his business practices, and more.\nThe discussion meanders somewhat, but there are some interesting tidbits about spaceflight, especially when the conversation turns to Blue Origin. This is the space company Bezos founded more than 23 years ago. He has invested an extraordinary amount of money into Blue Origin\u2014likely somewhere between $10 billion and $20 billion\u2014and it truly is a passion project.\nBut the inescapable truth about Blue Origin is that to date, it has been a disappointment in terms of execution. At present, Blue Origin employs approximately 11,000 people, about the same total as SpaceX. However, Blue Origin has launched zero rockets this year, whereas SpaceX has launched nearly 100, as well as building and launching thousands of satellites.\n\nRead 12 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2023/12/jeff-bezos-says-what-were-all-thinking-blue-origin-needs-to-be-much-faster/#comments", - "content": "\"We're going to become the world's most decisive company across any industry.\"", - "contentSnippet": "\"We're going to become the world's most decisive company across any industry.\"", - "guid": "https://arstechnica.com/?p=1991193", - "categories": [ - "Science", - "Space", - "blue origin", - "Jeff Bezos", - "space" - ], - "isoDate": "2023-12-14T20:37:25.000Z" - }, - { - "creator": "Kevin Purdy", - "title": "Apple partly halts Beeper\u2019s iMessage app again, suggesting a long fight ahead", - "link": "https://arstechnica.com/?p=1991118", - "pubDate": "Thu, 14 Dec 2023 19:59:07 +0000", - "content:encoded": "
\n
\n \"Beeper\n

Enlarge / The dream of everybody having blue bubbles, and epic photos of perfectly digestible meals, as proffered by Beeper. (credit: Beeper)

\n\n\n\n\n\n\n
\n

A friend of mine had been using Beeper's iMessage-for-Android app, Beeper Mini to keep up on group chats where she was the only Android user. It worked great until last Friday, when it didn't work at all.

\n

What stung her wasn't the return to being the Android interloper in the chats again. It wasn't the resulting lower-quality images, loss of encryption, and strange \"Emphasized your message\" reaction texts. It was losing messages during the outage and never being entirely certain they had been sent or received. There was a gathering on Saturday, and she had to double-check with a couple people about the details after showing up inadvertently early at the wrong spot.

\n

That kind of grievance is why, after Apple on Wednesday appeared to have blocked what Beeper described as \"~5% of Beeper Mini users\" from accessing iMessages, both co-founder Eric Migicovksy and the app told users they understood if people wanted out. The app had already suspended its plans to charge customers $1.99 per month, following the first major outage. But this was something more about \"how ridiculously annoying this uncertainty is for our users,\" Migicovsky posted.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The dream of everybody having blue bubbles, and epic photos of perfectly digestible meals, as proffered by Beeper. (credit: Beeper)\n \n\n\n\n\n\n\n\nA friend of mine had been using Beeper's iMessage-for-Android app, Beeper Mini to keep up on group chats where she was the only Android user. It worked great until last Friday, when it didn't work at all.\nWhat stung her wasn't the return to being the Android interloper in the chats again. It wasn't the resulting lower-quality images, loss of encryption, and strange \"Emphasized your message\" reaction texts. It was losing messages during the outage and never being entirely certain they had been sent or received. There was a gathering on Saturday, and she had to double-check with a couple people about the details after showing up inadvertently early at the wrong spot.\nThat kind of grievance is why, after Apple on Wednesday appeared to have blocked what Beeper described as \"~5% of Beeper Mini users\" from accessing iMessages, both co-founder Eric Migicovksy and the app told users they understood if people wanted out. The app had already suspended its plans to charge customers $1.99 per month, following the first major outage. But this was something more about \"how ridiculously annoying this uncertainty is for our users,\" Migicovsky posted.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Kevin Purdy", - "comments": "https://arstechnica.com/gadgets/2023/12/apple-partly-halts-beepers-imessage-app-again-suggesting-a-long-fight-ahead/#comments", - "content": "Opinion: Beeper isn't just fighting Apple, it's pushing against human instincts.", - "contentSnippet": "Opinion: Beeper isn't just fighting Apple, it's pushing against human instincts.", - "guid": "https://arstechnica.com/?p=1991118", - "categories": [ - "Apple", - "Tech", - "android", - "beeper", - "beeper mini", - "encrypted chat", - "encryption", - "iMessage", - "imessages", - "iOS", - "iphone" - ], - "isoDate": "2023-12-14T19:59:07.000Z" - }, - { - "creator": "Ars Contributors", - "title": "What happens in a crow\u2019s brain when it uses tools?\u00a0", - "link": "https://arstechnica.com/?p=1990999", - "pubDate": "Thu, 14 Dec 2023 19:41:25 +0000", - "content:encoded": "
\n
\n \"Three\n

Enlarge / Sure, they can use tools, but do they know where the nearest subway stop is? (credit: Jonas Adner)

\n\n\n\n\n\n\n
\n

\"A thirsty crow wanted water from a pitcher, so he filled it with pebbles to raise the water level to drink,\" summarizes a famous Aesop Fable. While this tale is thousands of years old, animal behaviorists still use this challenge to study corvids (which include crows, ravens, jays, and magpies) and their use of tools. In a recent Nature Communications study, researchers from a collaboration of universities across Washington, Florida, and Utah used radioactive tracers within the brains of several American crows to see which parts of their brains were active when they used stones to obtain food from the bottom of a water-filled tube.

\n

Their results indicate that the motor learning and tactile control centers were activated in the brains of the more proficient crows, while the sensory and higher-order processing centers lit up in the brains of less proficient crows. These results suggest that competence with tools is linked to certain memories and muscle control, which the researchers claimed is similar to a ski jumper visualizing the course before jumping.

\n

The researchers also found that out of their avian test subjects, female crows were especially proficient at tool usage, succeeding in the challenge quickly. \u201c[A] follow-up question is whether female crows actually have more need for creative thinking relative to male crows,\u201d elaborates Loma Pendergraft, the study\u2019s first author and a graduate student at the University of Washington, who wants to understand if the caregiving and less dominant role of female crows gives them a higher capacity for tool use.

Read 13 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Sure, they can use tools, but do they know where the nearest subway stop is? (credit: Jonas Adner)\n \n\n\n\n\n\n\n\n\"A thirsty crow wanted water from a pitcher, so he filled it with pebbles to raise the water level to drink,\" summarizes a famous Aesop Fable. While this tale is thousands of years old, animal behaviorists still use this challenge to study corvids (which include crows, ravens, jays, and magpies) and their use of tools. In a recent Nature Communications study, researchers from a collaboration of universities across Washington, Florida, and Utah used radioactive tracers within the brains of several American crows to see which parts of their brains were active when they used stones to obtain food from the bottom of a water-filled tube.\nTheir results indicate that the motor learning and tactile control centers were activated in the brains of the more proficient crows, while the sensory and higher-order processing centers lit up in the brains of less proficient crows. These results suggest that competence with tools is linked to certain memories and muscle control, which the researchers claimed is similar to a ski jumper visualizing the course before jumping.\nThe researchers also found that out of their avian test subjects, female crows were especially proficient at tool usage, succeeding in the challenge quickly. \u201c[A] follow-up question is whether female crows actually have more need for creative thinking relative to male crows,\u201d elaborates Loma Pendergraft, the study\u2019s first author and a graduate student at the University of Washington, who wants to understand if the caregiving and less dominant role of female crows gives them a higher capacity for tool use.\n\nRead 13 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/science/2023/12/what-happens-in-a-crows-brain-when-it-uses-tools/#comments", - "content": "Researchers trace the areas of the brain that are active when birds are using tools.", - "contentSnippet": "Researchers trace the areas of the brain that are active when birds are using tools.", - "guid": "https://arstechnica.com/?p=1990999", - "categories": [ - "Science", - "Behavioral science", - "Biology", - "birds", - "Crows", - "neurobiology", - "tool use" - ], - "isoDate": "2023-12-14T19:41:25.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "\u201cRenew Home\u201d company brings power grid data to your smart home", - "link": "https://arstechnica.com/?p=1991139", - "pubDate": "Thu, 14 Dec 2023 18:15:05 +0000", - "content:encoded": "
\n
\n \"\u201cRenew\n

Enlarge (credit: Alphabet)

\n\n\n\n\n\n\n
\n

Google's Nest Renue energy tracking feature is being spun off into a new company called \"Renew Home.\" The core concept is partnering with power companies to obtain data about the current condition of the power grid and using that data to change consumer habits. Usually, when a company gets spun out of Google it becomes an Alphabet company, but that's not the case here. Google is transferring assets to a new independent company, of which Sidewalk Infrastructure Partners (SIP) is an investor, and Alphabet is an investor in SIP.

\n\n

The first existing service getting pulled into Renew Home is Nest Renew. This service for Nest Thermostats uses power company data to tell consumers how their electricity is being generated and what it costs. That data lets your thermostat do things like automatically shift heating and cooling to times of day when energy is cheaper or cleaner, and shows various reports about the cleanness of the energy you've been using. (Nest's feature that lets utility companies remotely take control of your thermostat, Rush Hour Rewards, does not seem to be part of Renew Home.)

\n

Another service being pulled into Renew Home is the SIP-owned OhmConnect, which is the same basic idea as Nest's grid data-power thermostat adjustments but for more than just your thermostat. OhmConnect is compatible with a very small list of smart devices, like Nest-rival Ecobee and Honeywell thermostats, TP-Link's \"Kasa\" smart home system, and Tesla vehicles. The backbone of the service appears to be the in-house \"OhmPlug\" smart outlet, which can monitor the energy usage of anything that plugs into the wall. By seeing that you've turned these smart devices during peak usage times, OhmConnect offers people rewards like gift cards or cash for not using power when the grid is at capacity.

Read 2 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Alphabet)\n \n\n\n\n\n\n\n\nGoogle's Nest Renue energy tracking feature is being spun off into a new company called \"Renew Home.\" The core concept is partnering with power companies to obtain data about the current condition of the power grid and using that data to change consumer habits. Usually, when a company gets spun out of Google it becomes an Alphabet company, but that's not the case here. Google is transferring assets to a new independent company, of which Sidewalk Infrastructure Partners (SIP) is an investor, and Alphabet is an investor in SIP.\nThe first existing service getting pulled into Renew Home is Nest Renew. This service for Nest Thermostats uses power company data to tell consumers how their electricity is being generated and what it costs. That data lets your thermostat do things like automatically shift heating and cooling to times of day when energy is cheaper or cleaner, and shows various reports about the cleanness of the energy you've been using. (Nest's feature that lets utility companies remotely take control of your thermostat, Rush Hour Rewards, does not seem to be part of Renew Home.)\nAnother service being pulled into Renew Home is the SIP-owned OhmConnect, which is the same basic idea as Nest's grid data-power thermostat adjustments but for more than just your thermostat. OhmConnect is compatible with a very small list of smart devices, like Nest-rival Ecobee and Honeywell thermostats, TP-Link's \"Kasa\" smart home system, and Tesla vehicles. The backbone of the service appears to be the in-house \"OhmPlug\" smart outlet, which can monitor the energy usage of anything that plugs into the wall. By seeing that you've turned these smart devices during peak usage times, OhmConnect offers people rewards like gift cards or cash for not using power when the grid is at capacity.\n\nRead 2 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2023/12/alphabets-renew-home-company-brings-power-grid-data-to-your-smart-home/#comments", - "content": "Renew Home tracks power usage, rewards users for cutting use during peak times. ", - "contentSnippet": "Renew Home tracks power usage, rewards users for cutting use during peak times.", - "guid": "https://arstechnica.com/?p=1991139", - "categories": [ - "Google", - "Tech", - "alphabet", - "google", - "google nest", - "power grid" - ], - "isoDate": "2023-12-14T18:15:05.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Cable lobby and Republicans fight proposed ban on early termination fees", - "link": "https://arstechnica.com/?p=1991147", - "pubDate": "Thu, 14 Dec 2023 17:57:10 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | RoyalFive)

\n\n\n\n\n\n\n
\n

The Federal Communications Commission has taken a step toward prohibiting early termination fees charged by cable and satellite TV providers. If given final approval, the FCC action would also require cable and satellite providers to provide a prorated credit or rebate to customers who cancel before a billing period ends.

\n

The new rules are being floated in a Notice of Proposed Rulemaking (NPRM) that the FCC voted to approve yesterday in a 3\u20132 vote, with both Republicans dissenting. The NPRM seeks public comment on the proposed rules and could lead to a final vote in a few months or so.

\n

\"Today's action proposes to adopt customer service protections that prohibit cable operators and DBS (Direct Broadcast Satellite) providers from imposing a fee for the early termination of a cable or DBS video service contract,\" the FCC said. \"Additionally, the NPRM recommends the adoption of customer service protections to require cable and DBS providers to grant subscribers a prorated credit or rebate for the remaining whole days in a monthly or periodic billing cycle after the subscriber cancels service.\"

Read 17 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | RoyalFive)\n \n\n\n\n\n\n\n\nThe Federal Communications Commission has taken a step toward prohibiting early termination fees charged by cable and satellite TV providers. If given final approval, the FCC action would also require cable and satellite providers to provide a prorated credit or rebate to customers who cancel before a billing period ends.\nThe new rules are being floated in a Notice of Proposed Rulemaking (NPRM) that the FCC voted to approve yesterday in a 3\u20132 vote, with both Republicans dissenting. The NPRM seeks public comment on the proposed rules and could lead to a final vote in a few months or so.\n\"Today's action proposes to adopt customer service protections that prohibit cable operators and DBS (Direct Broadcast Satellite) providers from imposing a fee for the early termination of a cable or DBS video service contract,\" the FCC said. \"Additionally, the NPRM recommends the adoption of customer service protections to require cable and DBS providers to grant subscribers a prorated credit or rebate for the remaining whole days in a monthly or periodic billing cycle after the subscriber cancels service.\"\n\nRead 17 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/12/fcc-floats-ban-on-cable-tv-junk-fees-that-make-it-hard-to-ditch-contracts/#comments", - "content": "Customers should be allowed to cancel cable TV without penalty, Democrats say.", - "contentSnippet": "Customers should be allowed to cancel cable TV without penalty, Democrats say.", - "guid": "https://arstechnica.com/?p=1991147", - "categories": [ - "Policy", - "cable fees", - "FCC" - ], - "isoDate": "2023-12-14T17:57:10.000Z" - }, - { - "creator": "Kyle Orland", - "title": "These AI-generated news anchors are freaking me out", - "link": "https://arstechnica.com/?p=1991279", - "pubDate": "Fri, 15 Dec 2023 15:57:14 +0000", - "content:encoded": "
\n
\n \"Max\n

Enlarge / Max Headroom as prophecy. (credit: Aurich Lawson | Channel 1)

\n\n\n\n\n\n\n
\n

Here at Ars, we've long covered the interesting potential and significant peril (and occasional silliness) of AI-generated video featuring increasingly realistic human avatars. Heck, we even went to the trouble of making our own \"deepfake\" Mark Zuckerberg back in 2019, when the underlying technology wasn't nearly as robust as it is today.

\n

But even with all that background, startup Channel 1's vision of a near-future where AI-generated avatars read you the news was a bit of a shock to the system. The company's recent proof-of-concept \"showcase\" newscast reveals just how far AI-generated videos of humans have come in a short time and how those realistic avatars could shake up a lot more than just the job market for talking heads.

\n

\u201c...the newscasters have been changed to protect the innocent\u201d

\n
\n

See the highest quality AI footage in the world.

\n

\"\ud83e\udd2f\" - Our generated anchors deliver stories that are informative, heartfelt and entertaining.

\n

Watch the showcase episode of our upcoming news network now. pic.twitter.com/61TaG6Kix3

\n

\u2014 Channel 1 (@channel1_ai) December 12, 2023

\n

To be clear, Channel 1 isn't trying to fool people with \"deepfakes\" of existing news anchors or anything like that. In the first few seconds of its sample newscast, it identifies its talking heads as a \"team of AI-generated reporters.\" A few seconds later, one of those talking heads explains further: \"You can hear us and see our lips moving, but no one was recorded saying what we're all saying. I'm powered by sophisticated systems behind the scenes.\"

Read 20 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Max Headroom as prophecy. (credit: Aurich Lawson | Channel 1)\n \n\n\n\n\n\n\n\nHere at Ars, we've long covered the interesting potential and significant peril (and occasional silliness) of AI-generated video featuring increasingly realistic human avatars. Heck, we even went to the trouble of making our own \"deepfake\" Mark Zuckerberg back in 2019, when the underlying technology wasn't nearly as robust as it is today.\nBut even with all that background, startup Channel 1's vision of a near-future where AI-generated avatars read you the news was a bit of a shock to the system. The company's recent proof-of-concept \"showcase\" newscast reveals just how far AI-generated videos of humans have come in a short time and how those realistic avatars could shake up a lot more than just the job market for talking heads.\n\u201c...the newscasters have been changed to protect the innocent\u201d\nSee the highest quality AI footage in the world.\n - Our generated anchors deliver stories that are informative, heartfelt and entertaining.\nWatch the showcase episode of our upcoming news network now. pic.twitter.com/61TaG6Kix3\n\u2014 Channel 1 (@channel1_ai) December 12, 2023\n\nTo be clear, Channel 1 isn't trying to fool people with \"deepfakes\" of existing news anchors or anything like that. In the first few seconds of its sample newscast, it identifies its talking heads as a \"team of AI-generated reporters.\" A few seconds later, one of those talking heads explains further: \"You can hear us and see our lips moving, but no one was recorded saying what we're all saying. I'm powered by sophisticated systems behind the scenes.\"\n\nRead 20 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/ai/2023/12/these-ai-generated-news-anchors-are-freaking-me-out/#comments", - "content": "Channel 1's eerily real newscasters suggest a tumultuous future for online video.", - "contentSnippet": "Channel 1's eerily real newscasters suggest a tumultuous future for online video.", - "guid": "https://arstechnica.com/?p=1991279", - "categories": [ - "AI", - "Tech", - "anchors", - "Channel 1", - "nescasters", - "news", - "TV news" - ], - "isoDate": "2023-12-15T15:57:14.000Z" - }, - { - "creator": "Financial Times", - "title": "Elon Musk told bankers they wouldn\u2019t lose any money on Twitter purchase", - "link": "https://arstechnica.com/?p=1991371", - "pubDate": "Fri, 15 Dec 2023 15:06:22 +0000", - "content:encoded": "
\n
\n \"Elon\n

Enlarge (credit: Anadolu Agency via Getty Images)

\n\n\n\n\n\n\n
\n

Elon Musk privately told some of the bankers who lent him $13 billion to fund his leveraged buyout of Twitter that they would not lose any money on the deal, according to five people familiar with the matter.

\n

The verbal guarantees were made by Musk to banks as a way to reassure the lenders as the value of the social media site, now rebranded as X, fell sharply after he completed the acquisition last year.

\n

Despite the assurances, the seven banks that lent money to the billionaire for his buyout\u2014Morgan Stanley, Bank of America, Barclays, MUFG, BNP Paribas, Mizuho and Soci\u00e9t\u00e9 G\u00e9n\u00e9rale\u2014are facing serious losses on the debt if and when they eventually sell it.

Read 16 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Anadolu Agency via Getty Images)\n \n\n\n\n\n\n\n\nElon Musk privately told some of the bankers who lent him $13 billion to fund his leveraged buyout of Twitter that they would not lose any money on the deal, according to five people familiar with the matter.\nThe verbal guarantees were made by Musk to banks as a way to reassure the lenders as the value of the social media site, now rebranded as X, fell sharply after he completed the acquisition last year.\nDespite the assurances, the seven banks that lent money to the billionaire for his buyout\u2014Morgan Stanley, Bank of America, Barclays, MUFG, BNP Paribas, Mizuho and Soci\u00e9t\u00e9 G\u00e9n\u00e9rale\u2014are facing serious losses on the debt if and when they eventually sell it.\n\nRead 16 remaining paragraphs | Comments", - "dc:creator": "Financial Times", - "comments": "https://arstechnica.com/tech-policy/2023/12/elon-musk-told-bankers-they-wouldnt-lose-any-money-on-twitter-purchase/#comments", - "content": "Lenders unlikely to get even 60 cents on the dollar for the bonds and loans. ", - "contentSnippet": "Lenders unlikely to get even 60 cents on the dollar for the bonds and loans.", - "guid": "https://arstechnica.com/?p=1991371", - "categories": [ - "Policy", - "Elon Musk", - "syndication", - "Twitter", - "X" - ], - "isoDate": "2023-12-15T15:06:22.000Z" - }, - { - "creator": "Andrew Cunningham", - "title": "Microsoft is adding a new key to PC keyboards for the first time since 1994", - "link": "https://arstechnica.com/?p=1993416", - "pubDate": "Thu, 04 Jan 2024 08:01:20 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A rendering of Microsoft's Copilot key, as seen on a Surface-esque laptop keyboard. (credit: Microsoft)

\n\n\n\n\n\n\n
\n

Microsoft pushed throughout 2023 to add generative AI capabilities to its software, even extending its new Copilot AI assistant to Windows 10 late last year. Now, those efforts to transform PCs at a software level is extending to the hardware: Microsoft is adding a dedicated Copilot key to PC keyboards, adjusting the standard Windows keyboard layout for the first time since the Windows key first appeared on its Natural Keyboard in 1994.

\n

The Copilot key will, predictably, open up the Copilot generative AI assistant within Windows 10 and Windows 11. On an up-to-date Windows PC with Copilot enabled, you can currently do the same thing by pressing Windows + C. For PCs without Copilot enabled, including those that aren't signed into Microsoft accounts, the Copilot key will open Windows Search instead (though this is sort of redundant, since pressing the Windows key and then typing directly into the Start menu also activates the Search function).

\n

A quick Microsoft demo video shows the Copilot key in between the cluster of arrow keys and the right Alt button, a place where many keyboards usually put a menu button, a right Ctrl key, another Windows key, or something similar. The exact positioning, and the key being replaced, may vary depending on the size and layout of the keyboard.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A rendering of Microsoft's Copilot key, as seen on a Surface-esque laptop keyboard. (credit: Microsoft)\n \n\n\n\n\n\n\n\nMicrosoft pushed throughout 2023 to add generative AI capabilities to its software, even extending its new Copilot AI assistant to Windows 10 late last year. Now, those efforts to transform PCs at a software level is extending to the hardware: Microsoft is adding a dedicated Copilot key to PC keyboards, adjusting the standard Windows keyboard layout for the first time since the Windows key first appeared on its Natural Keyboard in 1994.\nThe Copilot key will, predictably, open up the Copilot generative AI assistant within Windows 10 and Windows 11. On an up-to-date Windows PC with Copilot enabled, you can currently do the same thing by pressing Windows + C. For PCs without Copilot enabled, including those that aren't signed into Microsoft accounts, the Copilot key will open Windows Search instead (though this is sort of redundant, since pressing the Windows key and then typing directly into the Start menu also activates the Search function).\nA quick Microsoft demo video shows the Copilot key in between the cluster of arrow keys and the right Alt button, a place where many keyboards usually put a menu button, a right Ctrl key, another Windows key, or something similar. The exact positioning, and the key being replaced, may vary depending on the size and layout of the keyboard.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Andrew Cunningham", - "comments": "https://arstechnica.com/gadgets/2024/01/ai-comes-for-your-pcs-keyboard-as-microsoft-adds-dedicated-copilot-key/#comments", - "content": "Copilot key will eventually be required in new PC keyboards, though not yet.", - "contentSnippet": "Copilot key will eventually be required in new PC keyboards, though not yet.", - "guid": "https://arstechnica.com/?p=1993416", - "categories": [ - "Tech", - "copilot", - "microsoft", - "openai", - "windows 10", - "windows 11" - ], - "isoDate": "2024-01-04T08:01:20.000Z" - }, - { - "creator": "Dan Goodin", - "title": "Mandiant, the security firm Google bought for $5.4 billion, gets its X account hacked", - "link": "https://arstechnica.com/?p=1993618", - "pubDate": "Thu, 04 Jan 2024 01:32:14 +0000", - "content:encoded": "
\n
\n \"Mandiant,\n

Enlarge

\n\n\n\n\n\n\n
\n

Google-owned security firm Mandiant spent several hours trying to regain control of its account on X (formerly known as Twitter) on Wednesday after an unknown scammer hijacked it and used it to spread a link that attempted to steal cryptocurrency from people who clicked on it.

\n

\u201cWe are aware of the incident impacting the Mandiant X account and are working to resolve the issue,\u201d company officials wrote in a statement. \u201cWe've since regained control over the account and are currently working on restoring it.\u201d The statement didn\u2019t answer questions asking if the company had determined how the account was compromised.

\n

The hacked Mandiant account was initially used to masquerade as one belonging to Phantom, a company that offers a wallet for storing cryptocurrency. Posts on X encouraged people to visit a malicious website to see if their wallet was one of 250,000 that were eligible for an award of tokens. Over several hours, X employees played tug-of-war with the unknown scammer, with scam posts being removed only to reappear, according to people who followed the events.

Read 6 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge \n \n\n\n\n\n\n\n\nGoogle-owned security firm Mandiant spent several hours trying to regain control of its account on X (formerly known as Twitter) on Wednesday after an unknown scammer hijacked it and used it to spread a link that attempted to steal cryptocurrency from people who clicked on it.\n\u201cWe are aware of the incident impacting the Mandiant X account and are working to resolve the issue,\u201d company officials wrote in a statement. \u201cWe've since regained control over the account and are currently working on restoring it.\u201d The statement didn\u2019t answer questions asking if the company had determined how the account was compromised.\nThe hacked Mandiant account was initially used to masquerade as one belonging to Phantom, a company that offers a wallet for storing cryptocurrency. Posts on X encouraged people to visit a malicious website to see if their wallet was one of 250,000 that were eligible for an award of tokens. Over several hours, X employees played tug-of-war with the unknown scammer, with scam posts being removed only to reappear, according to people who followed the events.\n\nRead 6 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2024/01/hacked-x-account-for-google-owned-security-firm-mandiant-pushes-cryptocurrency-scam/#comments", - "content": "Scammer impersonates legitimate cryptocurrency wallet, then pivots to trolling Mandiant.", - "contentSnippet": "Scammer impersonates legitimate cryptocurrency wallet, then pivots to trolling Mandiant.", - "guid": "https://arstechnica.com/?p=1993618", - "categories": [ - "Biz & IT", - "Security", - "account hijack", - "google", - "Mandiant", - "Twitter" - ], - "isoDate": "2024-01-04T01:32:14.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "Forget the proverbial wisdom: Opposites don\u2019t really attract, study finds", - "link": "https://arstechnica.com/?p=1992842", - "pubDate": "Thu, 04 Jan 2024 00:08:31 +0000", - "content:encoded": "
\n
\n \"What\n

What draws us to choose romantic partners? A sweeping new meta-analysis suggests we gravitate toward certain shared traits. (credit: Muramasa)

\n\n\n\n\n

There's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: a broad meta-analysis spanning over a century of studies finds that opposites don't really attract when it comes to choosing a mate.

\n \n\n
\n

We've all heard the common folk wisdom that when it comes to forming romantic partnerships, opposites attract. Researchers at the University of Colorado, Boulder, contend that this proverbial wisdom is largely false, based on the findings of their sweeping September study, published in the journal Nature Human Behavior. The saying, \"birds of a feather flock together,\" is a more apt summation of how we choose our partners.

\n

\u201cThese findings suggest that even in situations where we feel like we have a choice about our relationships, there may be mechanisms happening behind the scenes of which we aren't fully aware,\u201d said co-author Tanya Horwitz, a psychology and neuroscience graduate student at UCB. \u201cWe\u2019re hoping people can use this data to do their own analyses and learn more about how and why people end up in the relationships they do.\u201d

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "What draws us to choose romantic partners? A sweeping new meta-analysis suggests we gravitate toward certain shared traits. (credit: Muramasa)\n \n\n\n\n\n \nThere's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: a broad meta-analysis spanning over a century of studies finds that opposites don't really attract when it comes to choosing a mate.\n\nWe've all heard the common folk wisdom that when it comes to forming romantic partnerships, opposites attract. Researchers at the University of Colorado, Boulder, contend that this proverbial wisdom is largely false, based on the findings of their sweeping September study, published in the journal Nature Human Behavior. The saying, \"birds of a feather flock together,\" is a more apt summation of how we choose our partners.\n\u201cThese findings suggest that even in situations where we feel like we have a choice about our relationships, there may be mechanisms happening behind the scenes of which we aren't fully aware,\u201d said co-author Tanya Horwitz, a psychology and neuroscience graduate student at UCB. \u201cWe\u2019re hoping people can use this data to do their own analyses and learn more about how and why people end up in the relationships they do.\u201d\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/science/2024/01/forget-the-proverbial-wisdom-opposites-dont-really-attract-study-finds/#comments", - "content": "Educational attainment, substance use were most common shared traits among couples.", - "contentSnippet": "Educational attainment, substance use were most common shared traits among couples.", - "guid": "https://arstechnica.com/?p=1992842", - "categories": [ - "Science", - "12 days of Christmas", - "behavioral genetics", - "Human behavior", - "personality traits", - "psychology" - ], - "isoDate": "2024-01-04T00:08:31.000Z" - }, - { - "creator": "Beth Mole", - "title": "ChatGPT bombs test on diagnosing kids\u2019 medical cases with 83% error rate", - "link": "https://arstechnica.com/?p=1993601", - "pubDate": "Wed, 03 Jan 2024 23:46:42 +0000", - "content:encoded": "
\n
\n \"Dr.\n

Enlarge / Dr. Greg House has a better rate of accurately diagnosing patients than ChatGPT. (credit: Getty | Alan Zenuk/NBCU Photo Bank/NBCUniversa)

\n\n\n\n\n\n\n
\n

ChatGPT is still no House, MD.

\n

While the chatty AI bot has previously underwhelmed with its attempts to diagnose challenging medical cases\u2014with an accuracy rate of 39 percent in an analysis last year\u2014a study out this week in JAMA Pediatrics suggests the fourth version of the large language model is especially bad with kids. It had an accuracy rate of just 17 percent when diagnosing pediatric medical cases.

\n

The low success rate suggests human pediatricians won't be out of jobs any time soon, in case that was a concern. As the authors put it: \"[T]his study underscores the invaluable role that clinical experience holds.\" But it also identifies the critical weaknesses that led to ChatGPT's high error rate and ways to transform it into a useful tool in clinical care. With so much interest and experimentation with AI chatbots, many pediatricians and other doctors see their integration into clinical care as inevitable.

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Dr. Greg House has a better rate of accurately diagnosing patients than ChatGPT. (credit: Getty | Alan Zenuk/NBCU Photo Bank/NBCUniversa)\n \n\n\n\n\n\n\n\nChatGPT is still no House, MD.\nWhile the chatty AI bot has previously underwhelmed with its attempts to diagnose challenging medical cases\u2014with an accuracy rate of 39 percent in an analysis last year\u2014a study out this week in JAMA Pediatrics suggests the fourth version of the large language model is especially bad with kids. It had an accuracy rate of just 17 percent when diagnosing pediatric medical cases.\nThe low success rate suggests human pediatricians won't be out of jobs any time soon, in case that was a concern. As the authors put it: \"[T]his study underscores the invaluable role that clinical experience holds.\" But it also identifies the critical weaknesses that led to ChatGPT's high error rate and ways to transform it into a useful tool in clinical care. With so much interest and experimentation with AI chatbots, many pediatricians and other doctors see their integration into clinical care as inevitable.\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/science/2024/01/dont-use-chatgpt-to-diagnose-your-kids-illness-study-finds-83-error-rate/#comments", - "content": "It was bad at recognizing relationships and needs selective training, researchers say.", - "contentSnippet": "It was bad at recognizing relationships and needs selective training, researchers say.", - "guid": "https://arstechnica.com/?p=1993601", - "categories": [ - "AI", - "Health", - "Science", - "ChatGPT", - "pediatric diagnosistics" - ], - "isoDate": "2024-01-03T23:46:42.000Z" - }, - { - "creator": "Kevin Purdy", - "title": "Cobalt Core is a tight, funny roguelike deck-builder deserving of many runs", - "link": "https://arstechnica.com/?p=1993479", - "pubDate": "Wed, 03 Jan 2024 22:45:28 +0000", - "content:encoded": "
\n
\n \"Scene\n

Enlarge / These symbols might not mean anything to you now. But give it a few runs, and you might lose a few minutes strategizing this ship's ideal next turn, based on this image alone. (credit: Brace Yourself Games)

\n\n\n\n\n\n\n
\n\n

Games come and go through my Steam and Nintendo Switch libraries: a twitchy, grim action epic, then a metaphysical puzzle-platformer, and maybe a boomer shooter or turn-based tactical along the way. I try hard not to get stuck in one style or mindset\u2014both for my enjoyment and my writing.

\n

But there is always one type of game that is installed and ready to go for the next trip or idle couch moment: a roguelite deck-builder. Cobalt Core is the latest game in that slot, and it's on Steam for Windows (and definitely Steam Deck) and Switch. It's the most fun I've had in this particular obsession since Monster Train.\u00a0Cobalt Core stretches into other genres, like perfect-knowledge turn-based tactics and space battle, but it's cards and randomness down to its electric-blue center.

\n

Launch trailer for Cobalt Core.

\n

A few years ago, I didn't know what a \"roguelike deck-builder\" was or what either of those compound phrases meant. Then, one day, there was a sale on Slay the Spire. That 2019 game refined the fusion of two game mechanics: constant failure against randomized encounters (a la Rogue, but with a \"lite\" gradual progression) and the refining of a deck of combat-minded cards (as in Magic: The Gathering, Dominion,\u00a0and\u00a0Netrunner). You attack and defend against increasingly tough enemies with your cards, you gain and upgrade and ditch cards as you go, you lose, and then you get slightly better tools on your next do-over.

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / These symbols might not mean anything to you now. But give it a few runs, and you might lose a few minutes strategizing this ship's ideal next turn, based on this image alone. (credit: Brace Yourself Games)\n \n\n\n\n\n\n\n\nGames come and go through my Steam and Nintendo Switch libraries: a twitchy, grim action epic, then a metaphysical puzzle-platformer, and maybe a boomer shooter or turn-based tactical along the way. I try hard not to get stuck in one style or mindset\u2014both for my enjoyment and my writing.\nBut there is always one type of game that is installed and ready to go for the next trip or idle couch moment: a roguelite deck-builder. Cobalt Core is the latest game in that slot, and it's on Steam for Windows (and definitely Steam Deck) and Switch. It's the most fun I've had in this particular obsession since Monster Train.\u00a0Cobalt Core stretches into other genres, like perfect-knowledge turn-based tactics and space battle, but it's cards and randomness down to its electric-blue center.\n\nLaunch trailer for Cobalt Core. \n\nA few years ago, I didn't know what a \"roguelike deck-builder\" was or what either of those compound phrases meant. Then, one day, there was a sale on Slay the Spire. That 2019 game refined the fusion of two game mechanics: constant failure against randomized encounters (a la Rogue, but with a \"lite\" gradual progression) and the refining of a deck of combat-minded cards (as in Magic: The Gathering, Dominion,\u00a0and\u00a0Netrunner). You attack and defend against increasingly tough enemies with your cards, you gain and upgrade and ditch cards as you go, you lose, and then you get slightly better tools on your next do-over.\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Kevin Purdy", - "comments": "https://arstechnica.com/gaming/2024/01/cobalt-core-is-your-next-just-one-more-roguelike-deck-building-habit/#comments", - "content": "It's got style, dialogue, and even a plot on top of procedural card battling.", - "contentSnippet": "It's got style, dialogue, and even a plot on top of procedural card battling.", - "guid": "https://arstechnica.com/?p=1993479", - "categories": [ - "Gaming", - "cobalt core", - "deck-builder", - "nintendo switch", - "PC games", - "roguelike deck-builder", - "roguelikes", - "Steam" - ], - "isoDate": "2024-01-03T22:45:28.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Samsung sets Galaxy S24 launch for Jan. 17; here\u2019s what to expect", - "link": "https://arstechnica.com/?p=1993482", - "pubDate": "Wed, 03 Jan 2024 22:17:08 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The Galaxy S24 render from OnLeaks. This sure does look familiar. (credit: OnLeaks\u00d7SmartPrix)

\n\n\n\n\n\n\n
\n

Samsung is gearing up to launch its next big flagship smartphone, the Galaxy S24. The show has officially been announced for January 17, with Samsung's reservation website promising \"Zoom with Galaxy AI is coming.\" Of course, 2023 was the year of generative AI, and Samsung's interest in the technology is a safe bet.

\n

The show will launch the Galaxy S24, which has already leaked quite a bit, with the big news being a new titanium body. The iPhone made titanium the hot new thing recently with the launch of the iPhone 15, and Samsung has taken notice. The best leak so far has been from Windows Report, which scored official press images of the phones. (The report is no longer online due to a DMCA takedown, which is a good sign of its legitimacy.)

\n

The Windows Report photos showed the smaller Galaxy S24 and S24 Plus are getting flat metal sides, reminiscent of the classic iPhone 4/iPhone 15 design. Samsung's usual design of rounded corners and individual camera lenses complete the phone design, and while they look nice, they also look a lot like an iPhone. Older leaks claimed these two cheaper phones were getting titanium bodies, but well-known Samsung leaker Ice Universe says only the bigger model will be titanium, and these cheaper models will be aluminum.

Read 3 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The Galaxy S24 render from OnLeaks. This sure does look familiar. (credit: OnLeaks\u00d7SmartPrix)\n \n\n\n\n\n\n\n\nSamsung is gearing up to launch its next big flagship smartphone, the Galaxy S24. The show has officially been announced for January 17, with Samsung's reservation website promising \"Zoom with Galaxy AI is coming.\" Of course, 2023 was the year of generative AI, and Samsung's interest in the technology is a safe bet.\nThe show will launch the Galaxy S24, which has already leaked quite a bit, with the big news being a new titanium body. The iPhone made titanium the hot new thing recently with the launch of the iPhone 15, and Samsung has taken notice. The best leak so far has been from Windows Report, which scored official press images of the phones. (The report is no longer online due to a DMCA takedown, which is a good sign of its legitimacy.)\nThe Windows Report photos showed the smaller Galaxy S24 and S24 Plus are getting flat metal sides, reminiscent of the classic iPhone 4/iPhone 15 design. Samsung's usual design of rounded corners and individual camera lenses complete the phone design, and while they look nice, they also look a lot like an iPhone. Older leaks claimed these two cheaper phones were getting titanium bodies, but well-known Samsung leaker Ice Universe says only the bigger model will be titanium, and these cheaper models will be aluminum.\n\nRead 3 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2024/01/rumor-roundup-samsungs-galaxy-s24-launch-is-scheduled-for-jan-17/#comments", - "content": "The S24 Ultra gets a titanium body, while the smaller models look like an iPhone. ", - "contentSnippet": "The S24 Ultra gets a titanium body, while the smaller models look like an iPhone.", - "guid": "https://arstechnica.com/?p=1993482", - "categories": [ - "Tech", - "android phone", - "Galaxy S24", - "samsung galaxy", - "samsung galaxy s24" - ], - "isoDate": "2024-01-03T22:17:08.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "SpaceX charged with illegally firing workers behind anti-Musk open letter", - "link": "https://arstechnica.com/?p=1993522", - "pubDate": "Wed, 03 Jan 2024 21:57:58 +0000", - "content:encoded": "
\n
\n \"Elon\n

Enlarge / Elon Musk speaks with members of the media at the AI Safety Summit on November 1, 2023 in Bletchley, England. (credit: Getty Images | Leon Neal )

\n\n\n\n\n\n\n
\n

SpaceX illegally fired eight employees who criticized CEO Elon Musk in an open letter, a National Labor Relations Board regional director alleged in a complaint filed against the company today.

\n

\"Today, the NLRB Regional Director in Region 31 (Los Angeles) issued a consolidated complaint against SpaceX in Hawthorne, CA, covering eight unfair practice charges,\" the NLRB said in a statement provided to Ars. \"The complaint alleges that the employer unlawfully discharged eight employees who drafted and distributed an open letter detailing workplace concerns.\"

\n

A complaint is not a board decision, the statement noted. It means the regional office investigated the charges and found merit in them. The complaint and notice of hearing is confirmed on the NLRB website, and you can read the complaint here.

Read 12 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Elon Musk speaks with members of the media at the AI Safety Summit on November 1, 2023 in Bletchley, England. (credit: Getty Images | Leon Neal )\n \n\n\n\n\n\n\n\nSpaceX illegally fired eight employees who criticized CEO Elon Musk in an open letter, a National Labor Relations Board regional director alleged in a complaint filed against the company today.\n\"Today, the NLRB Regional Director in Region 31 (Los Angeles) issued a consolidated complaint against SpaceX in Hawthorne, CA, covering eight unfair practice charges,\" the NLRB said in a statement provided to Ars. \"The complaint alleges that the employer unlawfully discharged eight employees who drafted and distributed an open letter detailing workplace concerns.\"\nA complaint is not a board decision, the statement noted. It means the regional office investigated the charges and found merit in them. The complaint and notice of hearing is confirmed on the NLRB website, and you can read the complaint here.\n\nRead 12 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/spacex-illegally-fired-employees-who-criticized-elon-musk-nlrb-alleges/#comments", - "content": "SpaceX fired workers after open letter called Musk's behavior an \"embarrassment.\"", - "contentSnippet": "SpaceX fired workers after open letter called Musk's behavior an \"embarrassment.\"", - "guid": "https://arstechnica.com/?p=1993522", - "categories": [ - "Policy", - "spacex elon musk", - "spacex nlrb" - ], - "isoDate": "2024-01-03T21:57:58.000Z" - }, - { - "creator": "Dan Goodin", - "title": "Millions still haven\u2019t patched Terrapin SSH protocol vulnerability", - "link": "https://arstechnica.com/?p=1993507", - "pubDate": "Wed, 03 Jan 2024 21:49:18 +0000", - "content:encoded": "
\n
\n \"Millions\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Roughly 11 million Internet-exposed servers remain susceptible to a recently discovered vulnerability that allows attackers with a foothold inside affected networks. Once they're in, attackers compromise the integrity of SSH sessions that form the lynchpin for admins to securely connect to computers inside the cloud and other sensitive environments.

\n

Terrapin, as the vulnerability has been named, came to light two weeks ago in a research paper published by academic researchers. Tracked as CVE-2023-48795, the attack the researchers devised works when attackers have an adversary-in-the-middle attack (also abbreviated as AitM and known as man-in-the-middle or MitM), such as when they\u2019re positioned on the same local network and can secretly intercept communications and assume the identity of both the recipient and the sender.

\n

In those instances, Terrapin allows attackers to alter or corrupt information transmitted in the SSH data stream during the handshake\u2014the earliest connection stage, when the two parties negotiate the encryption parameters they will use to establish a secure connection. As such, Terrapin represents the first practical cryptographic attack targeting the integrity of the SSH protocol itself. It works by targeting BPP (Binary Packet Protocol), which is designed to ensure AitMs can\u2019t add or drop messages exchanged during the handshake. This prefix truncation attack works when implementations support either the \"ChaCha20-Poly1305\" or \"CBC with Encrypt-then-MAC,\" cipher modes, which, at the time the paper was published, was found in 77 percent of SSH servers.

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nRoughly 11 million Internet-exposed servers remain susceptible to a recently discovered vulnerability that allows attackers with a foothold inside affected networks. Once they're in, attackers compromise the integrity of SSH sessions that form the lynchpin for admins to securely connect to computers inside the cloud and other sensitive environments.\nTerrapin, as the vulnerability has been named, came to light two weeks ago in a research paper published by academic researchers. Tracked as CVE-2023-48795, the attack the researchers devised works when attackers have an adversary-in-the-middle attack (also abbreviated as AitM and known as man-in-the-middle or MitM), such as when they\u2019re positioned on the same local network and can secretly intercept communications and assume the identity of both the recipient and the sender.\nIn those instances, Terrapin allows attackers to alter or corrupt information transmitted in the SSH data stream during the handshake\u2014the earliest connection stage, when the two parties negotiate the encryption parameters they will use to establish a secure connection. As such, Terrapin represents the first practical cryptographic attack targeting the integrity of the SSH protocol itself. It works by targeting BPP (Binary Packet Protocol), which is designed to ensure AitMs can\u2019t add or drop messages exchanged during the handshake. This prefix truncation attack works when implementations support either the \"ChaCha20-Poly1305\" or \"CBC with Encrypt-then-MAC,\" cipher modes, which, at the time the paper was published, was found in 77 percent of SSH servers.\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2024/01/millions-still-havent-patched-terrapin-ssh-protocol-vulnerability/#comments", - "content": "Terrapin isn't likely to be mass-exploited, but there's little reason not to patch.", - "contentSnippet": "Terrapin isn't likely to be mass-exploited, but there's little reason not to patch.", - "guid": "https://arstechnica.com/?p=1993507", - "categories": [ - "Biz & IT", - "Security", - "patches", - "protocol", - "SSH", - "terrapin", - "vulnerability" - ], - "isoDate": "2024-01-03T21:49:18.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Crypto hedge fund CEO may not exist; probe finds no record of identity", - "link": "https://arstechnica.com/?p=1993491", - "pubDate": "Wed, 03 Jan 2024 20:55:57 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A still from a HyperVerse video featuring CEO Steven Reece Lewis. (credit: @cryptotech607 | YouTube)

\n\n\n\n\n\n\n
\n

For years, rumors spread on social media that Steven Reece Lewis,\u00a0the chief executive officer of a now-shuttered cryptocurrency hedge fund called HyperVerse, was a \"fake person\" who \"doesn't exist.\" After its investigation, The Guardian has confirmed that no organization cited on his resume \"can find any record of him.\"

\n

According to The Guardian, Reece Lewis's qualifications all appear to be falsified in an effort to woo investors to sink money into HyperVerse. After HyperVerse collapsed, accused of operating as a pyramid scheme, the company suspended withdrawals. According to blockchain analysts, Chainalysis consumer losses in 2022 were estimated to exceed $1.3 billion. Thousands of consumers lost millions, The Guardian reported.

\n

In a December 2021 video, Reece Lewis was introduced as CEO and touted for making big moves before joining HyperVerse. He supposedly went from working at Goldman Sachs to selling a web development company to Adobe before launching his own IT startup.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A still from a HyperVerse video featuring CEO Steven Reece Lewis. (credit: @cryptotech607 | YouTube)\n \n\n\n\n\n\n\n\nFor years, rumors spread on social media that Steven Reece Lewis,\u00a0the chief executive officer of a now-shuttered cryptocurrency hedge fund called HyperVerse, was a \"fake person\" who \"doesn't exist.\" After its investigation, The Guardian has confirmed that no organization cited on his resume \"can find any record of him.\"\nAccording to The Guardian, Reece Lewis's qualifications all appear to be falsified in an effort to woo investors to sink money into HyperVerse. After HyperVerse collapsed, accused of operating as a pyramid scheme, the company suspended withdrawals. According to blockchain analysts, Chainalysis consumer losses in 2022 were estimated to exceed $1.3 billion. Thousands of consumers lost millions, The Guardian reported.\nIn a December 2021 video, Reece Lewis was introduced as CEO and touted for making big moves before joining HyperVerse. He supposedly went from working at Goldman Sachs to selling a web development company to Adobe before launching his own IT startup.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2024/01/crypto-hedge-fund-ceo-may-not-exist-probe-finds-no-record-of-identity/#comments", - "content": "HyperVerse's collapse caused an estimated $1.3 billion in customer losses.", - "contentSnippet": "HyperVerse's collapse caused an estimated $1.3 billion in customer losses.", - "guid": "https://arstechnica.com/?p=1993491", - "categories": [ - "Policy", - "cryptocurrency", - "cryptocurrency hedge fund", - "fake identity", - "hyperverse", - "online scam", - "pyramid scheme" - ], - "isoDate": "2024-01-03T20:55:57.000Z" - }, - { - "creator": "John Timmer", - "title": "Fossil evidence of photosynthesis gets a billion years older", - "link": "https://arstechnica.com/?p=1993473", - "pubDate": "Wed, 03 Jan 2024 18:42:08 +0000", - "content:encoded": "
\n
\n \"Greyscale\n

Enlarge / At left, one of the fossils, with stacks of thylakoids highlighted using yellow bars; at right, a higher magnification of the end of the cell. (credit: Demoulin, et. al.)

\n\n\n\n\n\n\n
\n

It's not an exaggeration to suggest that the most significant event on Earth was the evolution of photosynthesis. The ability to harvest energy from light freed life from the need to scavenge energy from its environment. With this new capability, life grew in complexity and invaded new environments, ultimately reshaping the Earth.

\n

For such a pivotal event, we know remarkably little about it. Tracing the presence of oxygen in the atmosphere suggests photosynthesis evolved at least 2.4 billion years ago, although the rise in oxygen levels turns out to be impressively complicated. Tracing the variations of present-day genes places photosynthesis' origin at about 3 billion years ago. That timing is similar to the origin of the photosynthetic cyanobacteria, which both continue to live independently and have been incorporated into plant cells as chloroplasts.

\n

What we don't have is clear evidence of photosynthetic cells of similar age. A few microfossils with similarities to cyanobacteria have been identified, but it's impossible to determine whether they were making the proteins that power photosynthesis. Now, new fossils described by a team at the University of Li\u00e8ge push unambiguous evidence of photosynthesis back over a billion years to 1.7 billion years ago.

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / At left, one of the fossils, with stacks of thylakoids highlighted using yellow bars; at right, a higher magnification of the end of the cell. (credit: Demoulin, et. al.)\n \n\n\n\n\n\n\n\nIt's not an exaggeration to suggest that the most significant event on Earth was the evolution of photosynthesis. The ability to harvest energy from light freed life from the need to scavenge energy from its environment. With this new capability, life grew in complexity and invaded new environments, ultimately reshaping the Earth.\nFor such a pivotal event, we know remarkably little about it. Tracing the presence of oxygen in the atmosphere suggests photosynthesis evolved at least 2.4 billion years ago, although the rise in oxygen levels turns out to be impressively complicated. Tracing the variations of present-day genes places photosynthesis' origin at about 3 billion years ago. That timing is similar to the origin of the photosynthetic cyanobacteria, which both continue to live independently and have been incorporated into plant cells as chloroplasts.\nWhat we don't have is clear evidence of photosynthetic cells of similar age. A few microfossils with similarities to cyanobacteria have been identified, but it's impossible to determine whether they were making the proteins that power photosynthesis. Now, new fossils described by a team at the University of Li\u00e8ge push unambiguous evidence of photosynthesis back over a billion years to 1.7 billion years ago.\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "John Timmer", - "comments": "https://arstechnica.com/science/2024/01/fossil-evidence-of-photosynthesis-from-1-7-billion-years-ago/#comments", - "content": "Remains of cells from two sites show structures similar to those in present cells.", - "contentSnippet": "Remains of cells from two sites show structures similar to those in present cells.", - "guid": "https://arstechnica.com/?p=1993473", - "categories": [ - "Science", - "Biology", - "cell biology", - "paleontology", - "photosynthesis", - "thylakoids" - ], - "isoDate": "2024-01-03T18:42:08.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Ford kills some F-150 Lightning trims, raises prices on others", - "link": "https://arstechnica.com/?p=1993462", - "pubDate": "Wed, 03 Jan 2024 18:12:06 +0000", - "content:encoded": "
\n
\n \"F-150\n

Enlarge / The Ford F-150 Lightning Pro gets a plainer front treatment than the more expensive trims. (credit: Jonathan Gitlin)

\n\n\n\n\n\n\n
\n

Was Ars premature in calling the electric Ford F-150 Lightning pickup truck the most important electric vehicle of the decade? At launch, it seemed like a no-brainer\u2014an all-electric version of the nation's most popular four-wheel vehicle that rode better than any other F-150 and a starting price of just $40,000 sure sounded compelling. In practice, things haven't worked out quite that well. Today, we learned that F-150 Lighting prices are increasing for some trims, and others are being retired altogether.

\n

When Ford first announced Lightning pricing in 2021, the range started at $39,974 for a Lightning Pro\u2014the trim aimed at commercial customers\u2014with the standard range battery, or $49,974 for the Lightning Pro with a larger battery capable of 300 miles of range. The F-150 Lightning XLT was the entry-level model for private customers, which originally cost $52,974, with more expensive Lariat and Platinum trims that topped out at $90,874.

\n

But Ford raised those prices before too long, then raised them again. Coupled with a post-pandemic trend of outrageous additional dealer markups, this spelled bad news for F-150 Lightning sales\u2014the entry-level F-150 Lightning Pro cost $59,974 by the middle of 2023, $20,000 more than the 2021 pricing. In July 2023, the automaker cut F-150 Lightning prices heavily, but prices remained significantly higher than at launch.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The Ford F-150 Lightning Pro gets a plainer front treatment than the more expensive trims. (credit: Jonathan Gitlin)\n \n\n\n\n\n\n\n\nWas Ars premature in calling the electric Ford F-150 Lightning pickup truck the most important electric vehicle of the decade? At launch, it seemed like a no-brainer\u2014an all-electric version of the nation's most popular four-wheel vehicle that rode better than any other F-150 and a starting price of just $40,000 sure sounded compelling. In practice, things haven't worked out quite that well. Today, we learned that F-150 Lighting prices are increasing for some trims, and others are being retired altogether.\nWhen Ford first announced Lightning pricing in 2021, the range started at $39,974 for a Lightning Pro\u2014the trim aimed at commercial customers\u2014with the standard range battery, or $49,974 for the Lightning Pro with a larger battery capable of 300 miles of range. The F-150 Lightning XLT was the entry-level model for private customers, which originally cost $52,974, with more expensive Lariat and Platinum trims that topped out at $90,874.\nBut Ford raised those prices before too long, then raised them again. Coupled with a post-pandemic trend of outrageous additional dealer markups, this spelled bad news for F-150 Lightning sales\u2014the entry-level F-150 Lightning Pro cost $59,974 by the middle of 2023, $20,000 more than the 2021 pricing. In July 2023, the automaker cut F-150 Lightning prices heavily, but prices remained significantly higher than at launch.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2024/01/ford-kills-some-f-150-lightning-trims-raises-prices-on-others/#comments", - "content": "The price increase follows hefty price cutting six months ago.", - "contentSnippet": "The price increase follows hefty price cutting six months ago.", - "guid": "https://arstechnica.com/?p=1993462", - "categories": [ - "Cars", - "Ford F-150 Lightning price" - ], - "isoDate": "2024-01-03T18:12:06.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Pornhub pulls out of Montana, NC as age-verification battle rages on", - "link": "https://arstechnica.com/?p=1993450", - "pubDate": "Wed, 03 Jan 2024 17:59:55 +0000", - "content:encoded": "
\n
\n \"Pornhub\n

Enlarge (credit: Dmitry Mayer | iStock / Getty Images Plus)

\n\n\n\n\n\n\n
\n

To kick off the new year, Montana and North Carolina joined a growing number of states enforcing laws requiring age verification to access adult content online.

\n

In the days before the laws took effect on January 1, Aylo\u2014the owner of adult sites like Pornhub, Youporn, Brazzers, and Redtube\u2014blocked access for users in both states, continuing to argue that requiring ID for every login makes adult sites less safe for everyone.

\n

\u201cAs you may know, your elected officials in your state are requiring us to verify your age before allowing you access to our website,\" adult entertainer Cherie DeVille said in a public service announcement displayed to users attempting to access sites in Montana and North Carolina. \"While safety and compliance are at the forefront of our mission, giving your ID card every time you want to visit an adult platform is not the most effective solution for protecting our users, and in fact, will put children and your privacy at risk.\u201d

Read 14 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Dmitry Mayer | iStock / Getty Images Plus)\n \n\n\n\n\n\n\n\nTo kick off the new year, Montana and North Carolina joined a growing number of states enforcing laws requiring age verification to access adult content online.\nIn the days before the laws took effect on January 1, Aylo\u2014the owner of adult sites like Pornhub, Youporn, Brazzers, and Redtube\u2014blocked access for users in both states, continuing to argue that requiring ID for every login makes adult sites less safe for everyone.\n\u201cAs you may know, your elected officials in your state are requiring us to verify your age before allowing you access to our website,\" adult entertainer Cherie DeVille said in a public service announcement displayed to users attempting to access sites in Montana and North Carolina. \"While safety and compliance are at the forefront of our mission, giving your ID card every time you want to visit an adult platform is not the most effective solution for protecting our users, and in fact, will put children and your privacy at risk.\u201d\n\nRead 14 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2024/01/blocks-users-in-montana-n-c-as-age-verification-laws-take-effect/#comments", - "content": "Pornhub rallies users in eight states to demand device-based age verification.", - "contentSnippet": "Pornhub rallies users in eight states to demand device-based age verification.", - "guid": "https://arstechnica.com/?p=1993450", - "categories": [ - "Policy", - "adult entertainment", - "adult sites", - "age-gating", - "age-verification laws", - "aylo", - "montana", - "North Carolina", - "online privacy", - "pornhub" - ], - "isoDate": "2024-01-03T17:59:55.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Starlink launches first \u201ccellphone towers in space\u201d for use with LTE phones", - "link": "https://arstechnica.com/?p=1993408", - "pubDate": "Wed, 03 Jan 2024 17:09:10 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / Starlink satellites with direct-to-cell capability. (credit: SpaceX)

\n\n\n\n\n\n\n
\n

SpaceX last night launched the first six Starlink satellites that will provide cellular transmissions for customers of T-Mobile and other carriers.

\n

SpaceX said it launched 21 satellites overall, including \"the first six Starlink satellites with Direct to Cell capabilities that enable mobile network operators around the world to provide seamless global access to texting, calling, and browsing wherever you may be on land, lakes, or coastal waters without changing hardware or firmware. The enhanced Starlink satellites have an advanced modem that acts as a cellphone tower in space, eliminating dead zones with network integration similar to a standard roaming partner,\" the company said.

\n

Besides T-Mobile in the US, several carriers in other countries have signed up to use the direct-to-cell satellites. SpaceX said the other carriers are Rogers in Canada, KDDI in Japan, Optus in Australia, One NZ in New Zealand, Salt in Switzerland, and Entel in Chile and Peru.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Starlink satellites with direct-to-cell capability. (credit: SpaceX)\n \n\n\n\n\n\n\n\nSpaceX last night launched the first six Starlink satellites that will provide cellular transmissions for customers of T-Mobile and other carriers.\nSpaceX said it launched 21 satellites overall, including \"the first six Starlink satellites with Direct to Cell capabilities that enable mobile network operators around the world to provide seamless global access to texting, calling, and browsing wherever you may be on land, lakes, or coastal waters without changing hardware or firmware. The enhanced Starlink satellites have an advanced modem that acts as a cellphone tower in space, eliminating dead zones with network integration similar to a standard roaming partner,\" the company said.\nBesides T-Mobile in the US, several carriers in other countries have signed up to use the direct-to-cell satellites. SpaceX said the other carriers are Rogers in Canada, KDDI in Japan, Optus in Australia, One NZ in New Zealand, Salt in Switzerland, and Entel in Chile and Peru.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/spacex-launches-first-starlink-satellites-that-will-work-with-t-mobile-phones/#comments", - "content": "T-Mobile field tests begin soon\u2014texting to be available before voice and data.", - "contentSnippet": "T-Mobile field tests begin soon\u2014texting to be available before voice and data.", - "guid": "https://arstechnica.com/?p=1993408", - "categories": [ - "Policy", - "Space", - "t-mobile spacex", - "t-mobile starlink" - ], - "isoDate": "2024-01-03T17:09:10.000Z" - }, - { - "creator": "Elizabeth Rayne", - "title": "Jellyfish regenerate lost tentacles, and now we know how", - "link": "https://arstechnica.com/?p=1993428", - "pubDate": "Wed, 03 Jan 2024 17:04:50 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Gerard Soury)

\n\n\n\n\n\n\n
\n

The mythical Hydra may have been able to grow one of its many heads back every time it suffered a decapitation, but there are actual creatures capable of regenerating parts of their bodies bitten off by hungry predators. Jellyfish are one of them.

\n

From salamanders to starfish to the actual hydra (a tiny hydrozoan named for the fearsome beast of legend), animals that are capable of regeneration all start the repair process by forming a blastema. This clump of proliferative cells, which are similar to stem cells, can repopulate body parts by dividing over and over again. While the cells are still undifferentiated in the beginning, they eventually form specific cell types like muscle and skin.

\n

The process of blastema formation in some other animals has been studied, but how they form in jellyfish was still a mystery. Led by postdoctoral researcher Sosuke Fujita, the team at the University of Tokyo and Tohoku University in Japan wanted to establish a baseline for non-bilaterian regeneration by finding out how a blastema helps regrow tentacles in jellyfish. Would their blastema formation process be different from that in bilaterians?

Read 10 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Gerard Soury)\n \n\n\n\n\n\n\n\nThe mythical Hydra may have been able to grow one of its many heads back every time it suffered a decapitation, but there are actual creatures capable of regenerating parts of their bodies bitten off by hungry predators. Jellyfish are one of them.\nFrom salamanders to starfish to the actual hydra (a tiny hydrozoan named for the fearsome beast of legend), animals that are capable of regeneration all start the repair process by forming a blastema. This clump of proliferative cells, which are similar to stem cells, can repopulate body parts by dividing over and over again. While the cells are still undifferentiated in the beginning, they eventually form specific cell types like muscle and skin.\nThe process of blastema formation in some other animals has been studied, but how they form in jellyfish was still a mystery. Led by postdoctoral researcher Sosuke Fujita, the team at the University of Tokyo and Tohoku University in Japan wanted to establish a baseline for non-bilaterian regeneration by finding out how a blastema helps regrow tentacles in jellyfish. Would their blastema formation process be different from that in bilaterians?\n\nRead 10 remaining paragraphs | Comments", - "dc:creator": "Elizabeth Rayne", - "comments": "https://arstechnica.com/science/2024/01/jellyfish-regenerate-lost-tentacles-and-now-we-know-how/#comments", - "content": "Jellyfish regeneration looks a lot like that of amphibians and other animals.", - "contentSnippet": "Jellyfish regeneration looks a lot like that of amphibians and other animals.", - "guid": "https://arstechnica.com/?p=1993428", - "categories": [ - "Science", - "Biology", - "cell biology", - "cnidarians", - "jellyfish", - "regeneration" - ], - "isoDate": "2024-01-03T17:04:50.000Z" - }, - { - "creator": "Financial Times", - "title": "Amazon marketplace crackdown has sellers searching for legal help", - "link": "https://arstechnica.com/?p=1993419", - "pubDate": "Wed, 03 Jan 2024 15:38:23 +0000", - "content:encoded": "
\n
\n \"Amazon\n

Enlarge (credit: Leon Neal | Getty Images)

\n\n\n\n\n\n\n
\n

Merchants who have been suspended from selling goods on Amazon\u2019s marketplace are turning to a cottage industry of lawyers to regain access to their accounts and money, amid growing scrutiny of how the retailer treats independents.

\n

Millions of accounts on the leading ecommerce platform have been prevented from engaging in sales for alleged violations of Amazon\u2019s broad range of policies and other bad behavior. Even temporary suspensions can be a critical blow to the small business owners who rely on online sales.

\n

Four ecommerce-focused US law firms told the Financial Times that the majority of the cases they took on were complaints brought by aggrieved Amazon sellers, with each handling hundreds or thousands of cases every year.

Read 24 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Leon Neal | Getty Images)\n \n\n\n\n\n\n\n\nMerchants who have been suspended from selling goods on Amazon\u2019s marketplace are turning to a cottage industry of lawyers to regain access to their accounts and money, amid growing scrutiny of how the retailer treats independents.\nMillions of accounts on the leading ecommerce platform have been prevented from engaging in sales for alleged violations of Amazon\u2019s broad range of policies and other bad behavior. Even temporary suspensions can be a critical blow to the small business owners who rely on online sales.\nFour ecommerce-focused US law firms told the Financial Times that the majority of the cases they took on were complaints brought by aggrieved Amazon sellers, with each handling hundreds or thousands of cases every year.\n\nRead 24 remaining paragraphs | Comments", - "dc:creator": "Financial Times", - "comments": "https://arstechnica.com/tech-policy/2024/01/amazon-marketplace-crackdown-has-sellers-searching-for-legal-help/#comments", - "content": "Clean-up drive has led to some small businesses having their accounts suspended.", - "contentSnippet": "Clean-up drive has led to some small businesses having their accounts suspended.", - "guid": "https://arstechnica.com/?p=1993419", - "categories": [ - "Policy", - "Amazon", - "counterfeit", - "syndication" - ], - "isoDate": "2024-01-03T15:38:23.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Tesla sold 1.8 million electric vehicles in 2023", - "link": "https://arstechnica.com/?p=1993412", - "pubDate": "Wed, 03 Jan 2024 15:31:52 +0000", - "content:encoded": "
\n
\n \"Workers\n

Enlarge (credit: Getty Images | San Francisco Chronicle/Hearst Newspapers)

\n\n\n\n\n\n\n
\n

Tesla found new homes for 1.8 million electric vehicles last year, it revealed on Tuesday afternoon. That will no doubt please CEO Elon Musk\u2014it means the company has met its sales volume goal given to investors when it released its 2022 financial results at the end of last January.

\n

Tesla built 494,989 vehicles in the last quarter of 2023, of which 18,212 were the more expensive but aging Models S and X. More importantly to the bottom line, Tesla built 476,777 Models 3 and Y. For the same three months, it delivered 484,507 EVs, of which 461,538 were the popular Models 3 and Y.

\n

Cumulatively, Tesla built 1,845,985 EVs\u20141,775,159 Models 3 and Y and 70,826 Models S and X. And it delivered 1,808,581 EVs (1,739,707 Models 3 and Y; 68,874 Models S and X)\u2014meeting the 2023 sales goal of 1.8 million cars sold.

Read 3 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | San Francisco Chronicle/Hearst Newspapers)\n \n\n\n\n\n\n\n\nTesla found new homes for 1.8 million electric vehicles last year, it revealed on Tuesday afternoon. That will no doubt please CEO Elon Musk\u2014it means the company has met its sales volume goal given to investors when it released its 2022 financial results at the end of last January.\nTesla built 494,989 vehicles in the last quarter of 2023, of which 18,212 were the more expensive but aging Models S and X. More importantly to the bottom line, Tesla built 476,777 Models 3 and Y. For the same three months, it delivered 484,507 EVs, of which 461,538 were the popular Models 3 and Y.\nCumulatively, Tesla built 1,845,985 EVs\u20141,775,159 Models 3 and Y and 70,826 Models S and X. And it delivered 1,808,581 EVs (1,739,707 Models 3 and Y; 68,874 Models S and X)\u2014meeting the 2023 sales goal of 1.8 million cars sold.\n\nRead 3 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2024/01/tesla-sold-1-8-million-electric-vehicles-in-2023/#comments", - "content": "It met its sales goal, but growth is well below CEO Elon Musk's stated target.", - "contentSnippet": "It met its sales goal, but growth is well below CEO Elon Musk's stated target.", - "guid": "https://arstechnica.com/?p=1993412", - "categories": [ - "Cars", - "BYD", - "Tesla", - "Tesla earnings" - ], - "isoDate": "2024-01-03T15:31:52.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "It\u2019s rebels vs. Imperialist forces in Rebel Moon Part 2: The Scargiver trailer", - "link": "https://arstechnica.com/?p=1993393", - "pubDate": "Wed, 03 Jan 2024 14:49:32 +0000", - "content:encoded": "
\n\n\n\n\n\n
\n

Prepare yourself for Zack Snyder's Rebel Moon Part 2: The Scargiver.

\n

Zack Snyder's Rebel Moon Part 1: Child of Fire racked up an impressive 63 million views over its first 10 days on Netflix despite decidedly negative critical reviews. Now we've got the first full trailer for Rebel Moon Part 2: The Scargiver, continuing the saga of our intrepid heroine Kora (Sofia Boutella) and her plucky band of allies as they take on the imperialist Motherworld.

\n

(Spoilers for Part 1 below.)

\n

As we reported previously, years ago, director Zack Snyder had an idea for an epic Star Wars movie that he pitched to Lucasfilm. That project never panned out for a variety of reasons. But the idea continued to germinate until Netflix got on board. Apart from Star Wars, Snyder has said his influences include the films of Akira Kurosawa, especially Seven Samurai, and The Dirty Dozen. He has set his epic saga in a universe controlled by the ruthless and corrupt government of the Motherworld (the Imperium) with an army led by one Regent Balisarius (Fra Fee). The rebel moon of the title is called Veldt.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Prepare yourself for Zack Snyder's Rebel Moon Part 2: The Scargiver. \n\nZack Snyder's Rebel Moon Part 1: Child of Fire racked up an impressive 63 million views over its first 10 days on Netflix despite decidedly negative critical reviews. Now we've got the first full trailer for Rebel Moon Part 2: The Scargiver, continuing the saga of our intrepid heroine Kora (Sofia Boutella) and her plucky band of allies as they take on the imperialist Motherworld.\n(Spoilers for Part 1 below.)\nAs we reported previously, years ago, director Zack Snyder had an idea for an epic Star Wars movie that he pitched to Lucasfilm. That project never panned out for a variety of reasons. But the idea continued to germinate until Netflix got on board. Apart from Star Wars, Snyder has said his influences include the films of Akira Kurosawa, especially Seven Samurai, and The Dirty Dozen. He has set his epic saga in a universe controlled by the ruthless and corrupt government of the Motherworld (the Imperium) with an army led by one Regent Balisarius (Fra Fee). The rebel moon of the title is called Veldt.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/culture/2024/01/the-full-trailer-for-zack-snyders-rebel-moon-part-2-the-scargiver-is-here/#comments", - "content": "\"Their nightmare is us fighting together to defend something we love.\"", - "contentSnippet": "\"Their nightmare is us fighting together to defend something we love.\"", - "guid": "https://arstechnica.com/?p=1993393", - "categories": [ - "Culture", - "entertainment", - "film trailers", - "Netflix", - "Rebel Moon", - "Zack Snyder" - ], - "isoDate": "2024-01-03T14:49:32.000Z" - }, - { - "creator": "Stephen Clark", - "title": "A commander\u2019s lament on the loss of a historic SpaceX rocket", - "link": "https://arstechnica.com/?p=1993381", - "pubDate": "Wed, 03 Jan 2024 01:38:08 +0000", - "content:encoded": "
\n
\n \"One\n

Enlarge / One of the most historic rockets in SpaceX's fleet toppled over Christmas Day on the return trip to Cape Canaveral, Florida, following its previous mission. (credit: LabPadre)

\n\n\n\n\n\n\n
\n

The Falcon 9 rocket that launched NASA astronauts Doug Hurley and Bob Behnken on SpaceX's first crew mission in 2020 launched and landed for the 19th and final time just before Christmas, then tipped over on its recovery ship during the trip back to Cape Canaveral, Florida.

\n

This particular booster, known by the tail number B1058, was special among SpaceX's fleet of reusable rockets. It was the fleet leader, having tallied 19 missions over the course of more than three-and-a-half years. More importantly, it was the rocket that thundered into space on May 30, 2020, on a flight that made history on several counts.

\n

It was the first time a commercial rocket and spacecraft launched people into orbit, and ended a nine-year gap in America's ability to send astronauts into orbit from US soil, following the retirement of the space shuttle. This mission, known as Demo-2 and launched by SpaceX under contract with NASA, ended US reliance on Russian rockets to send crews to the International Space Station.

Read 20 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / One of the most historic rockets in SpaceX's fleet toppled over Christmas Day on the return trip to Cape Canaveral, Florida, following its previous mission. (credit: LabPadre)\n \n\n\n\n\n\n\n\nThe Falcon 9 rocket that launched NASA astronauts Doug Hurley and Bob Behnken on SpaceX's first crew mission in 2020 launched and landed for the 19th and final time just before Christmas, then tipped over on its recovery ship during the trip back to Cape Canaveral, Florida.\nThis particular booster, known by the tail number B1058, was special among SpaceX's fleet of reusable rockets. It was the fleet leader, having tallied 19 missions over the course of more than three-and-a-half years. More importantly, it was the rocket that thundered into space on May 30, 2020, on a flight that made history on several counts.\nIt was the first time a commercial rocket and spacecraft launched people into orbit, and ended a nine-year gap in America's ability to send astronauts into orbit from US soil, following the retirement of the space shuttle. This mission, known as Demo-2 and launched by SpaceX under contract with NASA, ended US reliance on Russian rockets to send crews to the International Space Station.\n\nRead 20 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2024/01/a-commanders-lament-on-the-loss-of-a-historic-spacex-rocket/#comments", - "content": "This rocket restored NASA crew launches to US soil, then launched 18 more times.", - "contentSnippet": "This rocket restored NASA crew launches to US soil, then launched 18 more times.", - "guid": "https://arstechnica.com/?p=1993381", - "categories": [ - "Science", - "Space", - "Commercial space", - "falcon 9", - "launch", - "Space X", - "spacex" - ], - "isoDate": "2024-01-03T01:38:08.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "Ancient desert mega-structures were planned using carved maps to scale", - "link": "https://arstechnica.com/?p=1993193", - "pubDate": "Tue, 02 Jan 2024 23:45:05 +0000", - "content:encoded": "
\n
\n \"Oblique\n

Enlarge

\n\n\n\n\n

There's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: Archaeologists found two stone engravings in Jordan and Saudi Arabia that may represent the oldest architectural plans for desert kites.

\n \n\n
\n

During the 1920s, aerial photographs revealed the presence of large kite-shaped stone wall mega-structures in deserts in Asia and the Middle East that most archaeologists believe were used to herd and trap wild animals. More than 6,000 of these \"desert kites\" have been identified as of 2018, although very few have been excavated. Archaeologists found two stone engravings\u2014one in Jordan, the other in Saudi Arabia\u2014that they believe represent the oldest architectural plans for these desert kites, according to a May paper published in the journal PLoS ONE.

\n

\"The discovery of these very ancient representations highlights the question of the methods used by kite builders,\" the authors wrote. \"Kites are large material structures that could not be designed without what we call today planning. The ability to transpose large spaces into a small two-dimensional surface represents a milestone in intelligent behavior. Such structures are visible as a whole only from the air, yet this calls for the representation of space in a way not seen at this time.\"

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge \n \n\n\n\n\n \nThere's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: Archaeologists found two stone engravings in Jordan and Saudi Arabia that may represent the oldest architectural plans for desert kites.\n\nDuring the 1920s, aerial photographs revealed the presence of large kite-shaped stone wall mega-structures in deserts in Asia and the Middle East that most archaeologists believe were used to herd and trap wild animals. More than 6,000 of these \"desert kites\" have been identified as of 2018, although very few have been excavated. Archaeologists found two stone engravings\u2014one in Jordan, the other in Saudi Arabia\u2014that they believe represent the oldest architectural plans for these desert kites, according to a May paper published in the journal PLoS ONE.\n\"The discovery of these very ancient representations highlights the question of the methods used by kite builders,\" the authors wrote. \"Kites are large material structures that could not be designed without what we call today planning. The ability to transpose large spaces into a small two-dimensional surface represents a milestone in intelligent behavior. Such structures are visible as a whole only from the air, yet this calls for the representation of space in a way not seen at this time.\"\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/science/2024/01/these-engravings-could-be-oldest-scaled-architectural-plans-for-desert-kites/#comments", - "content": "\"This calls for the representation of space in a way not seen at this time.\"", - "contentSnippet": "\"This calls for the representation of space in a way not seen at this time.\"", - "guid": "https://arstechnica.com/?p=1993193", - "categories": [ - "Science", - "12 days of Christmas", - "anthropology", - "Archaeology", - "desert kites", - "social anthropology" - ], - "isoDate": "2024-01-02T23:45:05.000Z" - }, - { - "creator": "Kyle Orland", - "title": "34 years later, a 13-year-old hits the NES Tetris \u201ckill screen\u201d", - "link": "https://arstechnica.com/?p=1993353", - "pubDate": "Tue, 02 Jan 2024 23:07:06 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A moment in Tetris history.

\n\n\n\n\n\n\n
\n

For decades after its 1989 release, each of the hundreds of millions of standard NES Tetris games ended the same way: A block reaches the top of the screen and triggers a \"game over\" message. That 34-year streak was finally broken on December 21, 2023, when 13-year-old phenom BlueScuti became the first human to reach the game's \"kill screen\" after a 40-minute, 1,511-line performance, crashing the game by reaching its functional limits.

\n

The game-crashing, record-setting performance. Jump to 38:56 for BlueScuti's disbelieving reaction to his achievement and a short interview.

\n

What makes BlueScuti's achievement even more incredible (as noted in some excellent YouTube summaries of the scene) is that, until just a few years ago, the Tetris community at large assumed it was functionally impossible for a human to get much past 290 lines. The road to the first NES Tetris kill screen highlights the surprisingly robust competitive scene that still surrounds the classic game and just how much that competitive community has been able to collectively improve in a relatively short time.

\n

From hypertaps to rolling

\n

If and when a player reaches Level 29 on NES Tetris (after clearing between 230 to 290 lines, depending on the starting level), the game reaches its highest possible speed. At this point, simply holding down left or right on the NES D-pad can't usually get a piece all the way to the side of the well unless the board is extremely \"low\" (i.e., pieces only on the first one or two rows, maximum). Thus, for years, players that reached Level 29 found their games usually \"topped out\" just a few pieces later.

Read 13 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A moment in Tetris history. \n \n\n\n\n\n\n\n\nFor decades after its 1989 release, each of the hundreds of millions of standard NES Tetris games ended the same way: A block reaches the top of the screen and triggers a \"game over\" message. That 34-year streak was finally broken on December 21, 2023, when 13-year-old phenom BlueScuti became the first human to reach the game's \"kill screen\" after a 40-minute, 1,511-line performance, crashing the game by reaching its functional limits.\n\nThe game-crashing, record-setting performance. Jump to 38:56 for BlueScuti's disbelieving reaction to his achievement and a short interview. \n\nWhat makes BlueScuti's achievement even more incredible (as noted in some excellent YouTube summaries of the scene) is that, until just a few years ago, the Tetris community at large assumed it was functionally impossible for a human to get much past 290 lines. The road to the first NES Tetris kill screen highlights the surprisingly robust competitive scene that still surrounds the classic game and just how much that competitive community has been able to collectively improve in a relatively short time.\nFrom hypertaps to rolling\nIf and when a player reaches Level 29 on NES Tetris (after clearing between 230 to 290 lines, depending on the starting level), the game reaches its highest possible speed. At this point, simply holding down left or right on the NES D-pad can't usually get a piece all the way to the side of the well unless the board is extremely \"low\" (i.e., pieces only on the first one or two rows, maximum). Thus, for years, players that reached Level 29 found their games usually \"topped out\" just a few pieces later.\n\nRead 13 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/gaming/2024/01/someone-has-finally-beaten-nes-tetris/#comments", - "content": "BlueScuti forces the game to crash after 40 minutes and 1,511 lines.", - "contentSnippet": "BlueScuti forces the game to crash after 40 minutes and 1,511 lines.", - "guid": "https://arstechnica.com/?p=1993353", - "categories": [ - "Gaming", - "Classic", - "Kill Screen", - "nes tetris", - "record", - "retro", - "Tetris" - ], - "isoDate": "2024-01-02T23:07:06.000Z" - }, - { - "creator": "Eric Berger", - "title": "Daily Telescope: A view of our star as Earth reaches perihelion", - "link": "https://arstechnica.com/?p=1993557", - "pubDate": "Thu, 04 Jan 2024 13:00:31 +0000", - "content:encoded": "
\n
\n \"Sol,\n

Enlarge / Sol, imaged by NASA's Solar Dynamics Observatory. (credit: NASA)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's January 4, and today's image is a photo of our star, Sol. The image was captured by NASA's Solar Dynamics Observatory, a spacecraft in geosynchronous orbit, on Wednesday.

\n

So why a picture of the Sun? Because we've just passed perihelion, the point at which planet Earth reaches its closest point to the Sun. This year perihelion came at 00:38 UTC on Wednesday, January 3. We got to within about 91.4 million miles (147 million km) of the star. Due to its slightly elliptical orbit around the Sun, Earth will reach aphelion this year on July 5, at a distance of 94.5 million miles (152 million km).

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Sol, imaged by NASA's Solar Dynamics Observatory. (credit: NASA)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's January 4, and today's image is a photo of our star, Sol. The image was captured by NASA's Solar Dynamics Observatory, a spacecraft in geosynchronous orbit, on Wednesday.\nSo why a picture of the Sun? Because we've just passed perihelion, the point at which planet Earth reaches its closest point to the Sun. This year perihelion came at 00:38 UTC on Wednesday, January 3. We got to within about 91.4 million miles (147 million km) of the star. Due to its slightly elliptical orbit around the Sun, Earth will reach aphelion this year on July 5, at a distance of 94.5 million miles (152 million km).\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2024/01/daily-telescope-a-view-of-our-star-as-earth-reaches-perihelion/#comments", - "content": "There is a bit of irony for those of us who live in the Northern Hemisphere.", - "contentSnippet": "There is a bit of irony for those of us who live in the Northern Hemisphere.", - "guid": "https://arstechnica.com/?p=1993557", - "categories": [ - "Science", - "Space", - "daily telescope" - ], - "isoDate": "2024-01-04T13:00:31.000Z" - }, - { - "creator": "Ars Contributors", - "title": "Vectrex reborn: How a chance encounter gave new life to a dead console", - "link": "https://arstechnica.com/?p=1992315", - "pubDate": "Thu, 04 Jan 2024 12:00:52 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A Vectrex console and CRT display with a cart for a long-lost game. (credit: Tim Stevens)

\n\n\n\n\n\n\n
\n

The Vectrex may be the most innovative video game console you've never heard of. It had everything it needed to prompt a revolution, including controllers far more sophisticated than the competition and the ability to render polygons a decade before gaming's 3D revolution.

\n

It was years ahead of anything else on the market, yet it could not have launched at a worse time. The Vectrex hit stores at the tail end of 1982. Over the next six months, the then-booming video game market went bust. The Vectrex, a potential revolution in home gaming, was swept into bargain bins, forgotten by all but the most ardent of collectors.

\n

Forty years later, it's having something of a comeback. New developers are breathing fresh code into this aged machine, hardware hackers and tinkerers are ensuring that tired capacitors and CRTs stay functional, and a new game has seen retail release after sitting unplayed for four decades.

Read 58 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A Vectrex console and CRT display with a cart for a long-lost game. (credit: Tim Stevens)\n \n\n\n\n\n\n\n\nThe Vectrex may be the most innovative video game console you've never heard of. It had everything it needed to prompt a revolution, including controllers far more sophisticated than the competition and the ability to render polygons a decade before gaming's 3D revolution.\nIt was years ahead of anything else on the market, yet it could not have launched at a worse time. The Vectrex hit stores at the tail end of 1982. Over the next six months, the then-booming video game market went bust. The Vectrex, a potential revolution in home gaming, was swept into bargain bins, forgotten by all but the most ardent of collectors.\nForty years later, it's having something of a comeback. New developers are breathing fresh code into this aged machine, hardware hackers and tinkerers are ensuring that tired capacitors and CRTs stay functional, and a new game has seen retail release after sitting unplayed for four decades.\n\nRead 58 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/gaming/2024/01/vectrex-reborn-how-a-chance-encounter-gave-new-life-to-a-dead-console/#comments", - "content": "40 years later, it's time for the Vectrex to shine.", - "contentSnippet": "40 years later, it's time for the Vectrex to shine.", - "guid": "https://arstechnica.com/?p=1992315", - "categories": [ - "Features", - "Gaming", - "Tech", - "1980s", - "A Crush of Lucifer", - "console games", - "Game collecting", - "retro", - "retro games", - "Vector graphics", - "vectrex" - ], - "isoDate": "2024-01-04T12:00:52.000Z" - }, - { - "creator": "Scharon Harding", - "title": "The Dell XPS laptop, as we know and love it, is no more", - "link": "https://arstechnica.com/?p=1993478", - "pubDate": "Thu, 04 Jan 2024 11:00:26 +0000", - "content:encoded": "
\n\n\n\n\n\n
\n
    \n
  • \n
    \n
    \"\"
    \n

    \n The 2024 XPS laptop lineup: 13-inch, 14-inch, and 16-inch. [credit:\n Scharon Harding ]\n

    \n
    \n
  • \n
\n\n

Dell\u2019s XPS laptop lineup has long been my go-to for an easy laptop recommendation. With an accessible starting price, a good amount of display options, and an ultrathin build, it was often a fitting choice for the average consumer seeking something with a premium feel and some clout. With the 2024 laptop lineup announced today, the XPS no longer feels like an obvious recommendation.

\n

Dell has reimagined the XPS laptop lineup in the image of what used to be called the Dell XPS 13 Plus. When it launched in 2022, the XPS 13 Plus was a 13.4-inch XPS laptop that was pricier than its non-Plus alternative. The XPS 13 Plus and its 2023 predecessor took extreme design measures, including a capacitive touch function row, unique keyboard, and borderless haptic touchpad to squeeze more power out of its processor.

\n

Those polarizing features are now mandatory in an XPS laptop. The new XPS 13, 14, and 16 look like the XPS 13 Plus. But Dell is no longer calling that design the \"Plus.\" It's now just the standard design of a standard XPS laptop.

Read 23 remaining paragraphs | Comments

", - "content:encodedSnippet": "Dell\u2019s XPS laptop lineup has long been my go-to for an easy laptop recommendation. With an accessible starting price, a good amount of display options, and an ultrathin build, it was often a fitting choice for the average consumer seeking something with a premium feel and some clout. With the 2024 laptop lineup announced today, the XPS no longer feels like an obvious recommendation.\nDell has reimagined the XPS laptop lineup in the image of what used to be called the Dell XPS 13 Plus. When it launched in 2022, the XPS 13 Plus was a 13.4-inch XPS laptop that was pricier than its non-Plus alternative. The XPS 13 Plus and its 2023 predecessor took extreme design measures, including a capacitive touch function row, unique keyboard, and borderless haptic touchpad to squeeze more power out of its processor.\nThose polarizing features are now mandatory in an XPS laptop. The new XPS 13, 14, and 16 look like the XPS 13 Plus. But Dell is no longer calling that design the \"Plus.\" It's now just the standard design of a standard XPS laptop.\n\nRead 23 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/gadgets/2024/01/the-dell-xps-laptop-as-we-know-and-love-it-is-no-more/#comments", - "content": "2024 laptops all look like the XPS 13 Plus. XPS 15, 17, and 2-in-1 going away. ", - "contentSnippet": "2024 laptops all look like the XPS 13 Plus. XPS 15, 17, and 2-in-1 going away.", - "guid": "https://arstechnica.com/?p=1993478", - "categories": [ - "Tech", - "dell", - "dell XPS", - "laptops" - ], - "isoDate": "2024-01-04T11:00:26.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Technical headaches put the brakes on GM\u2019s big EV push", - "link": "https://arstechnica.com/?p=1993652", - "pubDate": "Thu, 04 Jan 2024 14:32:23 +0000", - "content:encoded": "
\n
\n \"Ultium\n

Enlarge / A GM Ultium battery pack like that found in the Lyriq. (credit: Santa Fabio for General Motors)

\n\n\n\n\n\n\n
\n

General Motors ended 2023 as the number one automaker in the United States, selling 2.6 million new vehicles during those 12 months. That's a 14.1 percent increase from its performance in 2022, and comfortably eclipses the 2.3 million cars that Toyota sold during the same period. It had a strong year in terms of electric vehicle sales too\u2014up 93 percent year-on-year.

\n

But a quick look at the data reveals a somewhat less rosy picture. Yes, it was a banner year for GM EVs, with 75,883 deliveries in 2023. But only because of the Chevrolet Bolt EV and Bolt EUV. Chevy delivered 62,045 Bolts in 2023, a 62.8 percent increase on the 38,120 Bolts it sold in 2022.

\n

But as Ars has detailed in the past, the Bolt is no more. Production ended at the Orion Assembly plant in Michigan on December 18, and GM is laying off 945 workers at the plant as it retools the factory to make electric trucks like the Chevy Silverado EV and GMC Sierra EV.

Read 12 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A GM Ultium battery pack like that found in the Lyriq. (credit: Santa Fabio for General Motors)\n \n\n\n\n\n\n\n\nGeneral Motors ended 2023 as the number one automaker in the United States, selling 2.6 million new vehicles during those 12 months. That's a 14.1 percent increase from its performance in 2022, and comfortably eclipses the 2.3 million cars that Toyota sold during the same period. It had a strong year in terms of electric vehicle sales too\u2014up 93 percent year-on-year.\nBut a quick look at the data reveals a somewhat less rosy picture. Yes, it was a banner year for GM EVs, with 75,883 deliveries in 2023. But only because of the Chevrolet Bolt EV and Bolt EUV. Chevy delivered 62,045 Bolts in 2023, a 62.8 percent increase on the 38,120 Bolts it sold in 2022.\nBut as Ars has detailed in the past, the Bolt is no more. Production ended at the Orion Assembly plant in Michigan on December 18, and GM is laying off 945 workers at the plant as it retools the factory to make electric trucks like the Chevy Silverado EV and GMC Sierra EV.\n\nRead 12 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2024/01/general-motors-is-still-struggling-with-new-evs-data-show/#comments", - "content": "GM sold a record number of EVs in 2023, but only thanks to the Bolt EV and Bolt EUV.", - "contentSnippet": "GM sold a record number of EVs in 2023, but only thanks to the Bolt EV and Bolt EUV.", - "guid": "https://arstechnica.com/?p=1993652", - "categories": [ - "Cars", - "Cadillac Lyriq", - "Chevrolet Blazer EV", - "Chevrolet Bolt", - "Chevrolet silverado EV", - "General Motors", - "GM", - "GMC Hummer EV", - "Ultium" - ], - "isoDate": "2024-01-04T14:32:23.000Z" - }, - { - "creator": "Eric Berger", - "title": "Daily Telescope: A crab found in the night sky rather than the world\u2019s oceans", - "link": "https://arstechnica.com/?p=1993748", - "pubDate": "Fri, 05 Jan 2024 13:00:51 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The Crab Nebula in all its glory. (credit: Paul Macklin)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's January 5, and today's photo reveals the Crab Nebula in all of its glory.

\n

This object, known more formally as Messier 1 or M1, earned its colloquial name when Anglo-Irish astronomer William Parsons observed and drew this object in the early 1840s. It looked something like a crab with arms, and the appellation stuck. The nebula had been discovered about a century earlier by English astronomer John Bevis.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The Crab Nebula in all its glory. (credit: Paul Macklin)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's January 5, and today's photo reveals the Crab Nebula in all of its glory.\nThis object, known more formally as Messier 1 or M1, earned its colloquial name when Anglo-Irish astronomer William Parsons observed and drew this object in the early 1840s. It looked something like a crab with arms, and the appellation stuck. The nebula had been discovered about a century earlier by English astronomer John Bevis.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2024/01/daily-telescope-a-crab-found-in-the-night-sky-rather-than-the-worlds-oceans/#comments", - "content": "Oh, to have seen this supernova back in the day.", - "contentSnippet": "Oh, to have seen this supernova back in the day.", - "guid": "https://arstechnica.com/?p=1993748", - "categories": [ - "Science", - "Space", - "Crab Nebula", - "daily telescope" - ], - "isoDate": "2024-01-05T13:00:51.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Rocket Report: SpaceX\u2019s record year; Firefly\u2019s Alpha rocket falls short", - "link": "https://arstechnica.com/?p=1993810", - "pubDate": "Fri, 05 Jan 2024 12:00:30 +0000", - "content:encoded": "
\n
\n \"Firefly\n

Enlarge / Firefly Aerospace's fourth Alpha rocket lifted off December 22 from Vandenberg Space Force Base, California. (credit: Firefly Aerospace/Trevor Mahlmann)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.25 of the Rocket Report! We hope all our readers had a peaceful holiday break. While many of us were enjoying time off work, launch companies like SpaceX kept up the pace until the final days of 2023. Last year saw a record level of global launch activity, with 223 orbital launch attempts and 212 rockets successfully reaching orbit. Nearly half of these missions were by SpaceX.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.

\n
\n

Firefly's fourth launch puts\u00a0payload in wrong orbit.\u00a0The fourth flight of Firefly Aerospace's Alpha rocket on December 22 placed a small Lockheed Martin technology demonstration satellite into a lower-than-planned orbit after lifting off from Vandenberg Space Force Base, California. US military tracking data indicated the Alpha rocket released its payload into an elliptical orbit ranging between 215 and 523 kilometers in altitude, not the mission's intended circular target orbit. Firefly later confirmed the Alpha rocket's second stage, which was supposed to reignite about 50 minutes after liftoff, did not deliver Lockheed Martin's satellite into the proper orbit. This satellite, nicknamed Tantrum, was designed to test Lockheed Martin's new wideband Electronically Steerable Antenna technology to demonstrate faster on-orbit sensor calibration to deliver rapid capabilities to US military forces.

Read 22 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Firefly Aerospace's fourth Alpha rocket lifted off December 22 from Vandenberg Space Force Base, California. (credit: Firefly Aerospace/Trevor Mahlmann)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.25 of the Rocket Report! We hope all our readers had a peaceful holiday break. While many of us were enjoying time off work, launch companies like SpaceX kept up the pace until the final days of 2023. Last year saw a record level of global launch activity, with 223 orbital launch attempts and 212 rockets successfully reaching orbit. Nearly half of these missions were by SpaceX.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.\n\nFirefly's fourth launch puts\u00a0payload in wrong orbit.\u00a0The fourth flight of Firefly Aerospace's Alpha rocket on December 22 placed a small Lockheed Martin technology demonstration satellite into a lower-than-planned orbit after lifting off from Vandenberg Space Force Base, California. US military tracking data indicated the Alpha rocket released its payload into an elliptical orbit ranging between 215 and 523 kilometers in altitude, not the mission's intended circular target orbit. Firefly later confirmed the Alpha rocket's second stage, which was supposed to reignite about 50 minutes after liftoff, did not deliver Lockheed Martin's satellite into the proper orbit. This satellite, nicknamed Tantrum, was designed to test Lockheed Martin's new wideband Electronically Steerable Antenna technology to demonstrate faster on-orbit sensor calibration to deliver rapid capabilities to US military forces.\n\nRead 22 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2024/01/rocket-report-spacexs-record-year-fireflys-alpha-rocket-falls-short/#comments", - "content": "Living downrange from one of China's launch sites sure doesn't seem safe.", - "contentSnippet": "Living downrange from one of China's launch sites sure doesn't seem safe.", - "guid": "https://arstechnica.com/?p=1993810", - "categories": [ - "Science", - "Space", - "china", - "Commercial space", - "falcon heavy", - "firefly", - "india", - "launch", - "spacex", - "starlink" - ], - "isoDate": "2024-01-05T12:00:30.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Elon Musk: SpaceX needs to build Starships as often as Boeing builds 737s", - "link": "https://arstechnica.com/?p=1993759", - "pubDate": "Fri, 05 Jan 2024 01:26:25 +0000", - "content:encoded": "
\n
\n \"Ship\n

Enlarge / Ship 28, the Starship for SpaceX's next full-scale test flight, fires up one of its engines on December 29 in Texas. (credit: SpaceX)

\n\n\n\n\n\n\n
\n

It's no secret that Elon Musk has big ambitions for SpaceX's Starship mega-rocket. This is the vehicle that, with plenty of permutations and upgrades, Musk says will ferry cargo and people across the Solar System to build a settlement on Mars, making humanity a multi-planetary species and achieving the billionaire's long-standing dream.

\n

Of course, that is a long way off. SpaceX is still working on getting Starship into orbit or close to it, an achievement that appears to be possible this year. Then, the company will start launching Starlink satellites on Starship missions while testing in-space refueling technology needed to turn Starship into a human-rated Moon lander for NASA.

\n

SpaceX's South Texas team is progressing toward the third full-scale Starship test flight. On December 20, the Starship's upper stage slated for the next test flight completed a test-firing of its Raptor engines at the Starbase launch site on the Texas Gulf Coast. Nine days later, the 33-engine Super Heavy booster fired up on the launch pad for its own static fire test. On the same day, SpaceX hot-fired the Starship upper stage once again on a test stand next to the launch pad.

Read 18 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Ship 28, the Starship for SpaceX's next full-scale test flight, fires up one of its engines on December 29 in Texas. (credit: SpaceX)\n \n\n\n\n\n\n\n\nIt's no secret that Elon Musk has big ambitions for SpaceX's Starship mega-rocket. This is the vehicle that, with plenty of permutations and upgrades, Musk says will ferry cargo and people across the Solar System to build a settlement on Mars, making humanity a multi-planetary species and achieving the billionaire's long-standing dream.\nOf course, that is a long way off. SpaceX is still working on getting Starship into orbit or close to it, an achievement that appears to be possible this year. Then, the company will start launching Starlink satellites on Starship missions while testing in-space refueling technology needed to turn Starship into a human-rated Moon lander for NASA.\nSpaceX's South Texas team is progressing toward the third full-scale Starship test flight. On December 20, the Starship's upper stage slated for the next test flight completed a test-firing of its Raptor engines at the Starbase launch site on the Texas Gulf Coast. Nine days later, the 33-engine Super Heavy booster fired up on the launch pad for its own static fire test. On the same day, SpaceX hot-fired the Starship upper stage once again on a test stand next to the launch pad.\n\nRead 18 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2024/01/elon-musk-spacex-needs-to-build-starships-as-often-as-boeing-builds-737s/#comments", - "content": "\"Ship production needs to be roughly an order of magnitude higher than booster production.\"", - "contentSnippet": "\"Ship production needs to be roughly an order of magnitude higher than booster production.\"", - "guid": "https://arstechnica.com/?p=1993759", - "categories": [ - "Space", - "Elon Musk", - "Mars", - "spacex", - "starship" - ], - "isoDate": "2024-01-05T01:26:25.000Z" - }, - { - "creator": "Dan Goodin", - "title": "A \u201cridiculously weak\u201c password causes disaster for Spain\u2019s No. 2 mobile carrier", - "link": "https://arstechnica.com/?p=1993801", - "pubDate": "Fri, 05 Jan 2024 00:01:59 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Orange Espa\u00f1a, Spain\u2019s second-biggest mobile operator, suffered a major outage on Wednesday after an unknown party obtained a \u201cridiculously weak\u201d password and used it to access an account for managing the global routing table that controls which networks deliver the company's Internet traffic, researchers said.

\n

The hijacking began around 9:28 Coordinated Universal Time (about 2:28 Pacific time) when the party logged into Orange\u2019s RIPE NCC account using the password \u201cripeadmin\u201d (minus the quotation marks). The RIPE Network Coordination Center is one of five Regional Internet Registries, which are responsible for managing and allocating IP addresses to Internet service providers, telecommunication organizations, and companies that manage their own network infrastructure. RIPE serves 75 countries in Europe, the Middle East, and Central Asia.

\n

\u201cThings got ugly\u201d

\n

The password came to light after the party, using the moniker Snow, posted an image to social media that showed the orange.es email address associated with the RIPE account. RIPE said it's working on ways to beef up account security.

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nOrange Espa\u00f1a, Spain\u2019s second-biggest mobile operator, suffered a major outage on Wednesday after an unknown party obtained a \u201cridiculously weak\u201d password and used it to access an account for managing the global routing table that controls which networks deliver the company's Internet traffic, researchers said.\nThe hijacking began around 9:28 Coordinated Universal Time (about 2:28 Pacific time) when the party logged into Orange\u2019s RIPE NCC account using the password \u201cripeadmin\u201d (minus the quotation marks). The RIPE Network Coordination Center is one of five Regional Internet Registries, which are responsible for managing and allocating IP addresses to Internet service providers, telecommunication organizations, and companies that manage their own network infrastructure. RIPE serves 75 countries in Europe, the Middle East, and Central Asia.\n\u201cThings got ugly\u201d\nThe password came to light after the party, using the moniker Snow, posted an image to social media that showed the orange.es email address associated with the RIPE account. RIPE said it's working on ways to beef up account security.\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2024/01/a-ridiculously-weak-password-causes-disaster-for-spains-no-2-mobile-carrier/#comments", - "content": "BGP tampering caused by poor security hygiene causes major outage for Orange Espa\u00f1a.", - "contentSnippet": "BGP tampering caused by poor security hygiene causes major outage for Orange Espa\u00f1a.", - "guid": "https://arstechnica.com/?p=1993801", - "categories": [ - "Biz & IT", - "Security", - "BGP", - "boder gateway protocol" - ], - "isoDate": "2024-01-05T00:01:59.000Z" - }, - { - "creator": "Kyle Orland", - "title": "1D Pac-Man is the best game I\u2019ve played in 2024 (so far)", - "link": "https://arstechnica.com/?p=1993804", - "pubDate": "Thu, 04 Jan 2024 23:11:11 +0000", - "content:encoded": "
\n
\n \"I\n

Enlarge / I didn't write this story just to share that high score in the corner, but I won't say it had nothing to do with the choice. (credit: ABA Games)

\n\n\n\n\n\n\n
\n

When looking back at the short history of video game design, the '90s and '00s transition from primarily 2D games to primarily 3D games is rightly seen as one of the biggest revolutions in the industry. But my discovery this week of the one-dimensional, Pac-Man-inspired Paku Paku makes me wish that the game industry had some sort of pre-history where clever 1D games like this were the norm. It also makes me wish I had been quicker to discover more of the work of extremely prolific and clever game designer Kenta Cho, who made the game.

\n

In Paku Paku, Pac-Man's 2D maze of 240 dots has been replaced with 16 dots arranged in a single line. Your six-pixel tall dot-muncher (the graphics are 2D, even as the gameplay uses only one dimension) is forced to forever travel either left or right along this line, trying to eat all the dots while avoiding a single red ghost (who moves just a bit faster than the player). To do this, the player can use a single power pellet (which makes the ghost edible for a short while) or the screen-wrapping tunnels on either side of the line (which the ghost can't use).

\n

Read 9 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / I didn't write this story just to share that high score in the corner, but I won't say it had nothing to do with the choice. (credit: ABA Games)\n \n\n\n\n\n\n\n\nWhen looking back at the short history of video game design, the '90s and '00s transition from primarily 2D games to primarily 3D games is rightly seen as one of the biggest revolutions in the industry. But my discovery this week of the one-dimensional, Pac-Man-inspired Paku Paku makes me wish that the game industry had some sort of pre-history where clever 1D games like this were the norm. It also makes me wish I had been quicker to discover more of the work of extremely prolific and clever game designer Kenta Cho, who made the game.\nIn Paku Paku, Pac-Man's 2D maze of 240 dots has been replaced with 16 dots arranged in a single line. Your six-pixel tall dot-muncher (the graphics are 2D, even as the gameplay uses only one dimension) is forced to forever travel either left or right along this line, trying to eat all the dots while avoiding a single red ghost (who moves just a bit faster than the player). To do this, the player can use a single power pellet (which makes the ghost edible for a short while) or the screen-wrapping tunnels on either side of the line (which the ghost can't use).\n\nRead 9 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/gaming/2024/01/1d-pac-man-is-the-best-game-ive-played-in-2024-so-far/#comments", - "content": "An appreciation of \"small games\" and the people who make them.", - "contentSnippet": "An appreciation of \"small games\" and the people who make them.", - "guid": "https://arstechnica.com/?p=1993804", - "categories": [ - "Gaming", - "1D", - "Game Design", - "one-dimensional", - "Pac-Man", - "short games" - ], - "isoDate": "2024-01-04T23:11:11.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "How to avoid the cognitive hooks and habits that make us vulnerable to cons", - "link": "https://arstechnica.com/?p=1993161", - "pubDate": "Thu, 04 Jan 2024 21:49:21 +0000", - "content:encoded": "
\n
\n \"Daniel\n

Enlarge / Daniel Simons and Christopher Chabris are the authors of Nobody's Fool: Why We Get Taken In and What We Can Do About It. (credit: Basic Books)

\n\n\n\n\n

There's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: A conversation with psychologists Daniel Simons and Christopher Chabris on the key habits of thinking and reasoning that may serve us well most of the time, but can make us vulnerable to being fooled.

\n \n\n
\n

It's one of the most famous experiments in psychology. Back in 1999, Daniel Simons and Christopher Chabris conducted an experiment on inattentional blindness. They asked test subjects to watch a short video in which six people\u2014half in white T-shirts, half in black ones\u2014passed basketballs around. The subjects were asked to count the number of passes made by the people in white shirts. Halfway through the video, a person in a gorilla suit walked into the midst of the players and thumped their chest at the camera before strolling off-screen. What surprised the researchers was that fully half the test subjects were so busy counting the number of basketball passes that they never saw the gorilla.

\n

The experiment became a viral sensation\u2014helped by the amusing paper title, \"Gorillas in Our Midst\"\u2014and snagged Simons and Chabris the 2004 Ig Nobel Psychology Prize. It also became the basis of their bestselling 2010 book, The Invisible Gorilla: How Our Intuitions Deceive Us. Thirteen years later, the two psychologists are back with their latest book, published last July, called Nobody's Fool: Why We Get Taken In and What We Can Do About It. \u00a0Simons and Chabris have penned an entertaining examination of key habits of thinking that usually serve us well but also make us vulnerable to cons and scams. They also offer some practical tools based on cognitive science to help us spot deceptions before being taken in.

Read 29 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Daniel Simons and Christopher Chabris are the authors of Nobody's Fool: Why We Get Taken In and What We Can Do About It. (credit: Basic Books)\n \n\n\n\n\n \nThere's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: A conversation with psychologists Daniel Simons and Christopher Chabris on the key habits of thinking and reasoning that may serve us well most of the time, but can make us vulnerable to being fooled.\n\nIt's one of the most famous experiments in psychology. Back in 1999, Daniel Simons and Christopher Chabris conducted an experiment on inattentional blindness. They asked test subjects to watch a short video in which six people\u2014half in white T-shirts, half in black ones\u2014passed basketballs around. The subjects were asked to count the number of passes made by the people in white shirts. Halfway through the video, a person in a gorilla suit walked into the midst of the players and thumped their chest at the camera before strolling off-screen. What surprised the researchers was that fully half the test subjects were so busy counting the number of basketball passes that they never saw the gorilla.\nThe experiment became a viral sensation\u2014helped by the amusing paper title, \"Gorillas in Our Midst\"\u2014and snagged Simons and Chabris the 2004 Ig Nobel Psychology Prize. It also became the basis of their bestselling 2010 book, The Invisible Gorilla: How Our Intuitions Deceive Us. Thirteen years later, the two psychologists are back with their latest book, published last July, called Nobody's Fool: Why We Get Taken In and What We Can Do About It. \u00a0Simons and Chabris have penned an entertaining examination of key habits of thinking that usually serve us well but also make us vulnerable to cons and scams. They also offer some practical tools based on cognitive science to help us spot deceptions before being taken in.\n\nRead 29 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/science/2024/01/how-to-avoid-the-cognitive-hooks-and-habits-that-make-us-vulnerable-to-cons/#comments", - "content": "Psychologists behind \"invisible gorilla\" study are back with a new book: Nobody's Fool.", - "contentSnippet": "Psychologists behind \"invisible gorilla\" study are back with a new book: Nobody's Fool.", - "guid": "https://arstechnica.com/?p=1993161", - "categories": [ - "Science", - "12 days of Christmas", - "books", - "cognitive bias", - "cognitive science", - "human cognition", - "psychology", - "science of cons" - ], - "isoDate": "2024-01-04T21:49:21.000Z" - }, - { - "creator": "Kevin Purdy", - "title": "Portal 64 is an N64 demake of Valve\u2019s classic, now available as a \u201cFirst Slice\u201d", - "link": "https://arstechnica.com/?p=1993742", - "pubDate": "Thu, 04 Jan 2024 20:45:47 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / Remember, this is the N64 platform running a game released at least five years after the console's general life cycle ended. (credit: Valve/James Lambert)

\n\n\n\n\n\n\n
\n

James Lambert has spent years making something with no practical reason to exist: a version of Portal that runs on the Nintendo 64. And not some 2D version, either, but the real, blue-and-orange-oval, see-yourself-sideways Portal experience. And now he has a \"First Slice\" of Portal 64 ready for anyone who wants to try it. It's out of beta, and it's free.

\n

A \"First Slice\" means that 13 of the original game's test chambers are finished. Lambert intends to get to all of the original's 19 chambers. PC Gamer, where we first saw this project, suggests that Lambert might also try to get the additional 14 levels in the Xbox Live-only Portal: Still Alive.

\n

So why is Lambert doing this\u2014and for free? Lambert enlists an AI-trained version of Cave Johnson's voice to answer that question at the start of his announcement video. \"This is Aperture Science,\" it says, \"where we don't ask why. We ask: why the heck not?\"

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Remember, this is the N64 platform running a game released at least five years after the console's general life cycle ended. (credit: Valve/James Lambert)\n \n\n\n\n\n\n\n\nJames Lambert has spent years making something with no practical reason to exist: a version of Portal that runs on the Nintendo 64. And not some 2D version, either, but the real, blue-and-orange-oval, see-yourself-sideways Portal experience. And now he has a \"First Slice\" of Portal 64 ready for anyone who wants to try it. It's out of beta, and it's free.\nA \"First Slice\" means that 13 of the original game's test chambers are finished. Lambert intends to get to all of the original's 19 chambers. PC Gamer, where we first saw this project, suggests that Lambert might also try to get the additional 14 levels in the Xbox Live-only Portal: Still Alive.\nSo why is Lambert doing this\u2014and for free? Lambert enlists an AI-trained version of Cave Johnson's voice to answer that question at the start of his announcement video. \"This is Aperture Science,\" it says, \"where we don't ask why. We ask: why the heck not?\"\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Kevin Purdy", - "comments": "https://arstechnica.com/gaming/2024/01/portal-64-is-an-n64-demake-of-valves-classic-now-available-as-a-first-slice/#comments", - "content": "It's shocking how good the Portal Gun feels on late 1990s tech.", - "contentSnippet": "It's shocking how good the Portal Gun feels on late 1990s tech.", - "guid": "https://arstechnica.com/?p=1993742", - "categories": [ - "Gaming", - "demake", - "Homebrew", - "n64", - "Nintendo 64", - "Portal", - "Valve", - "Valve Software" - ], - "isoDate": "2024-01-04T20:45:47.000Z" - }, - { - "creator": "Elizabeth Rayne", - "title": "Wearable solar-powered gadget automatically regulates body temperature", - "link": "https://arstechnica.com/?p=1993722", - "pubDate": "Thu, 04 Jan 2024 19:44:29 +0000", - "content:encoded": "
\n
\n \"Image\n

Enlarge / While the devices probably aren't compact enough for casual wear, they could integrate with technical clothing. (credit: NASA)

\n\n\n\n\n\n\n
\n

There is only so much heat\u2014or cold\u2014that the human body can take. This can be a problem in extreme environments, from subzero polar temperatures to the ruthless heat of the Sahara, and it doesn\u2019t stop at Earth. Maintaining temperature is also an issue for astronauts. The vacuum of space is a gargantuan freezer, and exposure to direct sunlight out there can be just as brutal as the cold.

\n

Clothing tech that regulates body temperature usually goes only one way: heating or cooling. It also tends to be bulky and needs substantial energy that eventually drains any batteries. What if there was a system that both heat and cool while running on a constant renewable energy source?

\n

A team of researchers, led by Ziyuan Wang of Nankai University in Tianjin, China, has created a flexible, solar-powered device that can be incorporated into clothing and regulate the body by actively heating or cooling the skin. It also works continuously for 24 hours and only needs sunlight to recharge.

Read 9 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / While the devices probably aren't compact enough for casual wear, they could integrate with technical clothing. (credit: NASA)\n \n\n\n\n\n\n\n\nThere is only so much heat\u2014or cold\u2014that the human body can take. This can be a problem in extreme environments, from subzero polar temperatures to the ruthless heat of the Sahara, and it doesn\u2019t stop at Earth. Maintaining temperature is also an issue for astronauts. The vacuum of space is a gargantuan freezer, and exposure to direct sunlight out there can be just as brutal as the cold.\nClothing tech that regulates body temperature usually goes only one way: heating or cooling. It also tends to be bulky and needs substantial energy that eventually drains any batteries. What if there was a system that both heat and cool while running on a constant renewable energy source?\nA team of researchers, led by Ziyuan Wang of Nankai University in Tianjin, China, has created a flexible, solar-powered device that can be incorporated into clothing and regulate the body by actively heating or cooling the skin. It also works continuously for 24 hours and only needs sunlight to recharge.\n\nRead 9 remaining paragraphs | Comments", - "dc:creator": "Elizabeth Rayne", - "comments": "https://arstechnica.com/science/2024/01/wearable-solar-powered-gadget-automatically-regulates-body-temperature/#comments", - "content": "Made of flexible polymers, it could potentially fit in technical clothing.", - "contentSnippet": "Made of flexible polymers, it could potentially fit in technical clothing.", - "guid": "https://arstechnica.com/?p=1993722", - "categories": [ - "Science", - "clothing", - "electrocaloric", - "heat pump", - "materials science", - "photovoltaic" - ], - "isoDate": "2024-01-04T19:44:29.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "TurboTax maker Intuit\u2019s $100 million tax credits challenged by US lawmakers", - "link": "https://arstechnica.com/?p=1993732", - "pubDate": "Thu, 04 Jan 2024 19:29:14 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Getty Images | SOPA Images )

\n\n\n\n\n\n\n
\n

TurboTax maker Intuit's tax breaks are being questioned by four US lawmakers who object to the federal research tax credits claimed by the company. A letter sent this week claims that the amount of Intuit's tax credit could have been used by the Internal Revenue Service to offer free online tax filing to many Americans.

\n

\"We write regarding Intuit's recent disclosure that your company received $94 million in federal research tax credits in 2022,\" the letter said. \"For years, Intuit's corporate lobbyists have argued that the federal government should not set up a program for Americans to file their taxes online and for free because it would be too costly for taxpayers. Your company's disclosure reveals that Intuit's research tax break from 2022 alone could have been enough to fund a year of a free eFile program for millions of Americans.\"

\n

The letter was sent to Intuit CEO Sasan Goodarzi by US Senators Elizabeth Warren (D-Mass.), Richard Blumenthal (D-Conn.), Bernie Sanders (I-Vt.), and US Representative Katie Porter (D-Calif.)

Read 17 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | SOPA Images )\n \n\n\n\n\n\n\n\nTurboTax maker Intuit's tax breaks are being questioned by four US lawmakers who object to the federal research tax credits claimed by the company. A letter sent this week claims that the amount of Intuit's tax credit could have been used by the Internal Revenue Service to offer free online tax filing to many Americans.\n\"We write regarding Intuit's recent disclosure that your company received $94 million in federal research tax credits in 2022,\" the letter said. \"For years, Intuit's corporate lobbyists have argued that the federal government should not set up a program for Americans to file their taxes online and for free because it would be too costly for taxpayers. Your company's disclosure reveals that Intuit's research tax break from 2022 alone could have been enough to fund a year of a free eFile program for millions of Americans.\"\nThe letter was sent to Intuit CEO Sasan Goodarzi by US Senators Elizabeth Warren (D-Mass.), Richard Blumenthal (D-Conn.), Bernie Sanders (I-Vt.), and US Representative Katie Porter (D-Calif.)\n\nRead 17 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/turbotax-maker-intuits-100-million-tax-credits-challenged-by-us-lawmakers/#comments", - "content": "Senators want full accounting of research expenses behind \"massive tax breaks.\"", - "contentSnippet": "Senators want full accounting of research expenses behind \"massive tax breaks.\"", - "guid": "https://arstechnica.com/?p=1993732", - "categories": [ - "Policy", - "elizabeth warren intuit", - "intuit turbotax", - "irs free file" - ], - "isoDate": "2024-01-04T19:29:14.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "23andMe told victims of data breach that suing is futile, letter shows", - "link": "https://arstechnica.com/?p=1993685", - "pubDate": "Thu, 04 Jan 2024 19:13:07 +0000", - "content:encoded": "
\n
\n \"23andMe\n

Enlarge (credit: Bloomberg / Contributor | Bloomberg)

\n\n\n\n\n\n\n
\n

23andMe is \"shamelessly\" blaming victims of a data breach impacting 6.9 million users, a lawyer representing victims pursuing a class-action lawsuit, Hassan Zavareei, told TechCrunch.

\n

Zavareei shared a letter from 23andMe lawyers that urged users suing to \"consider the futility of continuing to pursue an action in this case,\" because their claims are allegedly meritless and \"the information that was potentially accessed cannot be used for any harm.\"

\n

Last year, hackers accessed 14,000 accounts on 23andMe by using passwords that had been previously breached during security incidents on other websites. By using this tactic, known as credential stuffing, hackers could access the personal data of millions of 23andMe users who opted into a DNA Relatives feature, including genetic information like the percentage of DNA shared with compromised users.

Read 24 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Bloomberg / Contributor | Bloomberg)\n \n\n\n\n\n\n\n\n23andMe is \"shamelessly\" blaming victims of a data breach impacting 6.9 million users, a lawyer representing victims pursuing a class-action lawsuit, Hassan Zavareei, told TechCrunch.\nZavareei shared a letter from 23andMe lawyers that urged users suing to \"consider the futility of continuing to pursue an action in this case,\" because their claims are allegedly meritless and \"the information that was potentially accessed cannot be used for any harm.\"\nLast year, hackers accessed 14,000 accounts on 23andMe by using passwords that had been previously breached during security incidents on other websites. By using this tactic, known as credential stuffing, hackers could access the personal data of millions of 23andMe users who opted into a DNA Relatives feature, including genetic information like the percentage of DNA shared with compromised users.\n\nRead 24 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2024/01/23andme-shamelessly-blaming-users-for-data-breach-lawyer-says/#comments", - "content": "Victims are still arguing that 23andMe's security measures were inadequate.", - "contentSnippet": "Victims are still arguing that 23andMe's security measures were inadequate.", - "guid": "https://arstechnica.com/?p=1993685", - "categories": [ - "Policy", - "23andme", - "ancestry data", - "California privacy rights act", - "credential stuffing", - "data breach", - "genetic data", - "online privacy", - "personal identifying information" - ], - "isoDate": "2024-01-04T19:13:07.000Z" - }, - { - "creator": "John Timmer", - "title": "All Science journals will now do an AI-powered check for image fraud", - "link": "https://arstechnica.com/?p=1993687", - "pubDate": "Thu, 04 Jan 2024 19:00:43 +0000", - "content:encoded": "
\n
\n \"All\n

(credit: Aurich Lawson)

\n\n\n\n\n\n\n
\n

On Thursday, the research publisher Science announced that all of its journals will begin using commercial software that automates the process of detecting improperly manipulated images. The move comes many years into our awareness that the transition to digital data and publishing has made it comically easy to commit research fraud by altering images.

\n

While the move is a significant first step, it's important to recognize the software's limitations. While it will catch some of the most egregious cases of image manipulation, enterprising fraudsters can easily avoid being caught if they know how the software operates. Which, unfortunately, we feel compelled to describe (and, to be fair, the company that has developed the software does so on its website).

\n

Fantastic fraud and how to catch it

\n

Much of the image-based fraud we've seen arises from a dilemma faced by many scientists: It's not a problem to run experiments, but the data they generate often isn't the data you want. Maybe only the controls work, or maybe the experiments produce data that is indistinguishable from controls. For the unethical, this doesn't pose a problem since nobody other than you knows what images come from which samples. It's relatively simple to present images of real data as something they're not.

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "(credit: Aurich Lawson)\n \n\n\n\n\n\n\n\nOn Thursday, the research publisher Science announced that all of its journals will begin using commercial software that automates the process of detecting improperly manipulated images. The move comes many years into our awareness that the transition to digital data and publishing has made it comically easy to commit research fraud by altering images.\nWhile the move is a significant first step, it's important to recognize the software's limitations. While it will catch some of the most egregious cases of image manipulation, enterprising fraudsters can easily avoid being caught if they know how the software operates. Which, unfortunately, we feel compelled to describe (and, to be fair, the company that has developed the software does so on its website).\nFantastic fraud and how to catch it\nMuch of the image-based fraud we've seen arises from a dilemma faced by many scientists: It's not a problem to run experiments, but the data they generate often isn't the data you want. Maybe only the controls work, or maybe the experiments produce data that is indistinguishable from controls. For the unethical, this doesn't pose a problem since nobody other than you knows what images come from which samples. It's relatively simple to present images of real data as something they're not.\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "John Timmer", - "comments": "https://arstechnica.com/science/2024/01/all-science-journals-will-now-do-an-ai-powered-check-for-image-fraud/#comments", - "content": "It will only catch the most blatant problems, but it's definitely overdue.", - "contentSnippet": "It will only catch the most blatant problems, but it's definitely overdue.", - "guid": "https://arstechnica.com/?p=1993687", - "categories": [ - "Science", - "AI", - "research fraud", - "science", - "Scientific publishing" - ], - "isoDate": "2024-01-04T19:00:43.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Qualcomm\u2019s XR2+ Gen 2 SoC sets up a wave of Apple Vision Pro competitors", - "link": "https://arstechnica.com/?p=1993664", - "pubDate": "Thu, 04 Jan 2024 18:33:07 +0000", - "content:encoded": "
\n
\n \"Qualcomm's\n

Enlarge / Qualcomm's XR reference device. (credit: Qualcomm)

\n\n\n\n\n\n\n
\n

The Apple Vision Pro is coming out sometime in early 2024, and since it is a VR/AR headset that runs iOS apps, Team Android would like to have a competitor available. Samsung, Google, and Qualcomm vaguely announced a mixed-reality partnership a year ago, which would have Qualcomm building chips, Google building software, and Samsung shipping products. Step 1 of this partnership has been announced: The Qualcomm Snapdragon XR2+ SoC, which will power many of these headsets from Samsung and others.

\n

Perhaps more interesting than the individual specs of Qualcomm's chip is all the partner talk surrounding the launch. Samsung says it's \"thrilled to collaborate with Qualcomm Technologies and Google in revolutionizing the mobile industry once more\" and promises a \"best-in-class XR experience for Galaxy users.\" Google is promising an \"immersive and spatial XR\" experience based on Android. Qualcomm is making a reference headset design based on the chip and says at least five companies have hardware in development, including Samsung, Google, HTC, Immersed, and Play for Dream.

\n\n

The XR2+ Gen 2 is an upgrade over the XR2 Gen 2 (non-plus) that came out in 2023 and shipped in the Meta Quest 3. The most significant difference is a bump in resolution, with the plus model supporting \"4.3K\" resolution per eye at 90 fps. The old chip only did 3K by 3K. The resolution of these headsets is critical, not just because games will look nicer, but if you're trying to display a virtual desktop and read text, you're pushing the resolution limits of current headsets.

Read 2 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Qualcomm's XR reference device. (credit: Qualcomm)\n \n\n\n\n\n\n\n\nThe Apple Vision Pro is coming out sometime in early 2024, and since it is a VR/AR headset that runs iOS apps, Team Android would like to have a competitor available. Samsung, Google, and Qualcomm vaguely announced a mixed-reality partnership a year ago, which would have Qualcomm building chips, Google building software, and Samsung shipping products. Step 1 of this partnership has been announced: The Qualcomm Snapdragon XR2+ SoC, which will power many of these headsets from Samsung and others.\nPerhaps more interesting than the individual specs of Qualcomm's chip is all the partner talk surrounding the launch. Samsung says it's \"thrilled to collaborate with Qualcomm Technologies and Google in revolutionizing the mobile industry once more\" and promises a \"best-in-class XR experience for Galaxy users.\" Google is promising an \"immersive and spatial XR\" experience based on Android. Qualcomm is making a reference headset design based on the chip and says at least five companies have hardware in development, including Samsung, Google, HTC, Immersed, and Play for Dream.\n\nA few specs for the XR2+ Gen 2 (credit: Qualcomm)\n\nThe XR2+ Gen 2 is an upgrade over the XR2 Gen 2 (non-plus) that came out in 2023 and shipped in the Meta Quest 3. The most significant difference is a bump in resolution, with the plus model supporting \"4.3K\" resolution per eye at 90 fps. The old chip only did 3K by 3K. The resolution of these headsets is critical, not just because games will look nicer, but if you're trying to display a virtual desktop and read text, you're pushing the resolution limits of current headsets.\n\nRead 2 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2024/01/qualcomms-xr2-gen-2-soc-sets-up-a-wave-of-apple-vision-pro-competitors/#comments", - "content": "Qualcomm says five companies are working on new headsets. ", - "contentSnippet": "Qualcomm says five companies are working on new headsets.", - "guid": "https://arstechnica.com/?p=1993664", - "categories": [ - "Tech", - "android vr", - "Qualcomm" - ], - "isoDate": "2024-01-04T18:33:07.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "A week with a Ford F-150 Lightning: This truck is too big for city life", - "link": "https://arstechnica.com/?p=1993852", - "pubDate": "Fri, 05 Jan 2024 15:46:07 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Jonathan Gitlin)

\n\n\n\n\n\n\n
\n

I seem to be thinking a lot about Ford's electric pickup truck, the F-150 Lightning. Earlier this week, we got the news of price cuts and price increases. Before that, there was a pending cut to planned production output. Taken as it is, it's just the all-electric version of America's favorite pickup\u2014and arguably the best version unless you need to pull something on the end of a trailer hitch.

\n

But the Lightning doesn't exist in a vacuum. Depending on who you talk to, it's a clever attempt to get Americans to go electric, an utterly familiar wrapper on a slab of new technology that, yes, still requires the owner to adjust their mindset a bit from the gasoline-powered way of thinking. To others, it's a white elephant, one that costs too much and languishes on dealership forecourts, proof positive that electrification is a thing other countries might bother with, but forget that here at home, cowboy.

\n

I've never found life to be quite that simple, and neither is the Lightning. Here in Washington, DC, the vehicle remains a rare sight\u2014the only time I've seen one in the wild, it belonged to the DC government's fleet of vehicles (its job was inspecting abandoned vehicles). Out west, it's much more common to see electric F-150s on the road, and last year, Ford sold about 40,000 Lightnings, despite halting production for a fire and then again to retool part of the line.

Read 14 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Jonathan Gitlin)\n \n\n\n\n\n\n\n\nI seem to be thinking a lot about Ford's electric pickup truck, the F-150 Lightning. Earlier this week, we got the news of price cuts and price increases. Before that, there was a pending cut to planned production output. Taken as it is, it's just the all-electric version of America's favorite pickup\u2014and arguably the best version unless you need to pull something on the end of a trailer hitch.\nBut the Lightning doesn't exist in a vacuum. Depending on who you talk to, it's a clever attempt to get Americans to go electric, an utterly familiar wrapper on a slab of new technology that, yes, still requires the owner to adjust their mindset a bit from the gasoline-powered way of thinking. To others, it's a white elephant, one that costs too much and languishes on dealership forecourts, proof positive that electrification is a thing other countries might bother with, but forget that here at home, cowboy.\nI've never found life to be quite that simple, and neither is the Lightning. Here in Washington, DC, the vehicle remains a rare sight\u2014the only time I've seen one in the wild, it belonged to the DC government's fleet of vehicles (its job was inspecting abandoned vehicles). Out west, it's much more common to see electric F-150s on the road, and last year, Ford sold about 40,000 Lightnings, despite halting production for a fire and then again to retool part of the line.\n\nRead 14 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2024/01/a-week-with-a-ford-f-150-lightning-this-truck-is-too-big-for-city-life/#comments", - "content": "The big electric pickup truck is out of the suburbs and out of its element.", - "contentSnippet": "The big electric pickup truck is out of the suburbs and out of its element.", - "guid": "https://arstechnica.com/?p=1993852", - "categories": [ - "Cars", - "car review", - "electric pickup truck", - "Ford F-150 Lightning" - ], - "isoDate": "2024-01-05T15:46:07.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "US judge blocks Ohio Republicans\u2019 \u201ctroublingly vague\u201d social media law", - "link": "https://arstechnica.com/?p=1995355", - "pubDate": "Thu, 11 Jan 2024 18:05:57 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | Matt Cardy )

\n\n\n\n\n\n\n
\n

A federal judge blocked an Ohio state law that would prevent minors from using social networks without parental consent, calling it a \"troublingly vague\" law that likely violates the First Amendment. Ohio's \"Parental Notification by Social Media Operators Act\" affects websites including Facebook, X (formerly Twitter), and YouTube.

\n

\"Foreclosing minors under sixteen from accessing all content on websites that the Act purports to cover, absent affirmative parental consent, is a breathtakingly blunt instrument for reducing social media's harm to children,\" US District Judge Algenon Marbley wrote in an order issued Tuesday. \"The approach is an untargeted one, as parents must only give one-time approval for the creation of an account, and parents and platforms are otherwise not required to protect against any of the specific dangers that social media might pose.\"

\n

While more in-depth arguments will be made later, Marbley called it \"unlikely that the government will be able to show that the Act is narrowly tailored to any ends that it identifies.\" Marbley, a judge in US District Court for the Southern District of Ohio, granted a motion for a temporary restraining order sought by tech-industry lobby group NetChoice. Marbley did not rule on NetChoice's related motion for a preliminary injunction but scheduled a February 7 hearing on the injunction request.

Read 20 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | Matt Cardy )\n \n\n\n\n\n\n\n\nA federal judge blocked an Ohio state law that would prevent minors from using social networks without parental consent, calling it a \"troublingly vague\" law that likely violates the First Amendment. Ohio's \"Parental Notification by Social Media Operators Act\" affects websites including Facebook, X (formerly Twitter), and YouTube.\n\"Foreclosing minors under sixteen from accessing all content on websites that the Act purports to cover, absent affirmative parental consent, is a breathtakingly blunt instrument for reducing social media's harm to children,\" US District Judge Algenon Marbley wrote in an order issued Tuesday. \"The approach is an untargeted one, as parents must only give one-time approval for the creation of an account, and parents and platforms are otherwise not required to protect against any of the specific dangers that social media might pose.\"\nWhile more in-depth arguments will be made later, Marbley called it \"unlikely that the government will be able to show that the Act is narrowly tailored to any ends that it identifies.\" Marbley, a judge in US District Court for the Southern District of Ohio, granted a motion for a temporary restraining order sought by tech-industry lobby group NetChoice. Marbley did not rule on NetChoice's related motion for a preliminary injunction but scheduled a February 7 hearing on the injunction request.\n\nRead 20 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/us-judge-blocks-ohio-republicans-troublingly-vague-social-media-law/#comments", - "content": "Judge calls law \"breathtakingly blunt instrument\" for reducing harm to children.", - "contentSnippet": "Judge calls law \"breathtakingly blunt instrument\" for reducing harm to children.", - "guid": "https://arstechnica.com/?p=1995355", - "categories": [ - "Policy", - "ohio social media law" - ], - "isoDate": "2024-01-11T18:05:57.000Z" - }, - { - "creator": "Kyle Orland", - "title": "Why more PC gaming handhelds should ditch Windows for SteamOS", - "link": "https://arstechnica.com/?p=1995348", - "pubDate": "Thu, 11 Jan 2024 17:50:11 +0000", - "content:encoded": "
\n
\n \"Yes,\n

Enlarge / Yes, that is SteamOS. No, that is not a Steam Deck. (credit: Ayaneo)

\n\n\n\n\n\n\n
\n

Since the successful launch of the Steam Deck nearly two years ago, we've seen plenty of would-be competitors that have tried to mimic the Deck's portable form factor and ability to run PC games. Thus far, though, these competitors have all been missing one of the Steam Deck's best features: integration with the increasingly robust, Linux-based SteamOS 3.

\n

That's finally set to change with the just-announced Ayaneo Next Lite, the first non-Valve portable hardware set to come with SteamOS pre-installed. We can only hope this is the start of a trend, as Valve's gaming-focused operating system brings many advantages over gaming portables (and maybe desktops) that run a full Windows installation.

\n

A bespoke, portable gaming OS

\n

Ayaneo's announcement highlights a few vague-ish features of the Next Lite, including a 7-inch 800p screen, a 47 Wh battery, and drift-resistant hall-effect joysticks. But even though the announcement doesn't include a specific asking price, Ayaneo promises that the device \"integrates outstanding cost-effectiveness\" and will be \"the all-new cost-effective choice with flagship experiences.\"

Read 12 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Yes, that is SteamOS. No, that is not a Steam Deck. (credit: Ayaneo)\n \n\n\n\n\n\n\n\nSince the successful launch of the Steam Deck nearly two years ago, we've seen plenty of would-be competitors that have tried to mimic the Deck's portable form factor and ability to run PC games. Thus far, though, these competitors have all been missing one of the Steam Deck's best features: integration with the increasingly robust, Linux-based SteamOS 3.\nThat's finally set to change with the just-announced Ayaneo Next Lite, the first non-Valve portable hardware set to come with SteamOS pre-installed. We can only hope this is the start of a trend, as Valve's gaming-focused operating system brings many advantages over gaming portables (and maybe desktops) that run a full Windows installation.\nA bespoke, portable gaming OS\nAyaneo's announcement highlights a few vague-ish features of the Next Lite, including a 7-inch 800p screen, a 47 Wh battery, and drift-resistant hall-effect joysticks. But even though the announcement doesn't include a specific asking price, Ayaneo promises that the device \"integrates outstanding cost-effectiveness\" and will be \"the all-new cost-effective choice with flagship experiences.\"\n\nRead 12 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/gaming/2024/01/why-more-pc-gaming-handhelds-should-ditch-windows-for-steamos/#comments", - "content": "Next up: Could SteamOS 3 be coming to a desktop gaming rig near you?", - "contentSnippet": "Next up: Could SteamOS 3 be coming to a desktop gaming rig near you?", - "guid": "https://arstechnica.com/?p=1995348", - "categories": [ - "Gaming", - "ayaneo", - "steam machines", - "steamos", - "Valve" - ], - "isoDate": "2024-01-11T17:50:11.000Z" - }, - { - "creator": "Benj Edwards", - "title": "At Senate AI hearing, news executives fight against \u201cfair use\u201d claims for AI training data", - "link": "https://arstechnica.com/?p=1995191", - "pubDate": "Thu, 11 Jan 2024 16:37:11 +0000", - "content:encoded": "
\n
\n \"WASHINGTON,\n

Enlarge / Danielle Coffey, president and CEO of News Media Alliance; Professor Jeff Jarvis, CUNY Graduate School of Journalism; Curtis LeGeyt, president and CEO of National Association of Broadcasters; and Roger Lynch, CEO of Cond\u00e9 Nast, are sworn in during a Senate Judiciary Subcommittee on Privacy, Technology, and\u00a0the Law hearing on \u201cArtificial Intelligence and The Future Of Journalism.\u201d (credit: Getty Images)

\n\n\n\n\n\n\n
\n

On Wednesday, news industry executives urged Congress for legal clarification that using journalism to train AI assistants like ChatGPT is not fair use, as claimed by companies such as OpenAI. Instead, they would prefer a licensing regime for AI training content that would force Big Tech companies to pay for content in a method similar to rights clearinghouses for music.

\n\n

The plea for action came during a US Senate Judiciary Committee hearing titled \"Oversight of A.I.: The Future of Journalism,\" chaired by Sen. Richard Blumenthal of Connecticut, with Sen. Josh Hawley of Missouri also playing a large role in the proceedings. Last year, the pair of senators introduced a bipartisan framework for AI legislation and held a series of hearings on the impact of AI.

\n

Blumenthal described the situation as an \"existential crisis\" for the news industry and cited social media as a cautionary tale for legislative inaction about AI. \"We need to move more quickly than we did on social media and learn from our mistakes in the delay there,\" he said.

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Danielle Coffey, president and CEO of News Media Alliance; Professor Jeff Jarvis, CUNY Graduate School of Journalism; Curtis LeGeyt, president and CEO of National Association of Broadcasters; and Roger Lynch, CEO of Cond\u00e9 Nast, are sworn in during a Senate Judiciary Subcommittee on Privacy, Technology, and\u00a0the Law hearing on \u201cArtificial Intelligence and The Future Of Journalism.\u201d (credit: Getty Images)\n \n\n\n\n\n\n\n\nOn Wednesday, news industry executives urged Congress for legal clarification that using journalism to train AI assistants like ChatGPT is not fair use, as claimed by companies such as OpenAI. Instead, they would prefer a licensing regime for AI training content that would force Big Tech companies to pay for content in a method similar to rights clearinghouses for music.\nThe plea for action came during a US Senate Judiciary Committee hearing titled \"Oversight of A.I.: The Future of Journalism,\" chaired by Sen. Richard Blumenthal of Connecticut, with Sen. Josh Hawley of Missouri also playing a large role in the proceedings. Last year, the pair of senators introduced a bipartisan framework for AI legislation and held a series of hearings on the impact of AI.\nBlumenthal described the situation as an \"existential crisis\" for the news industry and cited social media as a cautionary tale for legislative inaction about AI. \"We need to move more quickly than we did on social media and learn from our mistakes in the delay there,\" he said.\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/information-technology/2024/01/at-senate-ai-hearing-news-executives-fight-against-fair-use-claims-for-ai-training-data/#comments", - "content": "Media orgs want AI firms to license content for training, and Congress is sympathetic.", - "contentSnippet": "Media orgs want AI firms to license content for training, and Congress is sympathetic.", - "guid": "https://arstechnica.com/?p=1995191", - "categories": [ - "AI", - "Biz & IT", - "AI regulation", - "ChatGPT", - "chatgtp", - "Conde Nast", - "Curtis LeGeyt", - "Danielle Coffey", - "government", - "Jeff Jarvis", - "Josh Hawley", - "machine learning", - "openai", - "Richard Blumenthal", - "Roger Lynch", - "Section 230", - "Senate Judiciary Committee", - "US government", - "US Senate" - ], - "isoDate": "2024-01-11T16:37:11.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Hertz is selling 20,000 used EVs due to high repair costs", - "link": "https://arstechnica.com/?p=1995291", - "pubDate": "Thu, 11 Jan 2024 15:22:12 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Hertz)

\n\n\n\n\n\n\n
\n

If you're looking for an electric car bargain and you're braver than the average bear, you might want to check out Hertz, the car rental agency. After announcing big plans to purchase tens of thousands of EVs from Tesla and then Polestar, it's now liquidating a third of that fleet, the company told investors.

\n

After Hertz went bankrupt during the early days of the pandemic, its big EV ambitions began in 2021, when the company revealed it wanted more than 20 percent of its rental fleet to be electric by 2022. To that end, it placed an order for 100,000 Tesla Model 3 sedans, then followed up with an order for 65,000 Polestar 2s.

\n

By early 2023, it was still far short of the ambitious goal, in large part due to Tesla's inability to actually fill that order in time, and EVs still represent just 11 percent of the total Hertz rental fleet. In total, the Hertz EV fleet is around 60,000 vehicles. But it may not actually be that upset at falling short\u2014it turns out that the electric rental cars haven't been the panacea it needed.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Hertz)\n \n\n\n\n\n\n\n\nIf you're looking for an electric car bargain and you're braver than the average bear, you might want to check out Hertz, the car rental agency. After announcing big plans to purchase tens of thousands of EVs from Tesla and then Polestar, it's now liquidating a third of that fleet, the company told investors.\nAfter Hertz went bankrupt during the early days of the pandemic, its big EV ambitions began in 2021, when the company revealed it wanted more than 20 percent of its rental fleet to be electric by 2022. To that end, it placed an order for 100,000 Tesla Model 3 sedans, then followed up with an order for 65,000 Polestar 2s.\nBy early 2023, it was still far short of the ambitious goal, in large part due to Tesla's inability to actually fill that order in time, and EVs still represent just 11 percent of the total Hertz rental fleet. In total, the Hertz EV fleet is around 60,000 vehicles. But it may not actually be that upset at falling short\u2014it turns out that the electric rental cars haven't been the panacea it needed.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2024/01/hertz-is-selling-20000-used-evs-due-to-high-repair-costs/#comments", - "content": "The rental car company will replace them with gasoline-powered vehicles.", - "contentSnippet": "The rental car company will replace them with gasoline-powered vehicles.", - "guid": "https://arstechnica.com/?p=1995291", - "categories": [ - "Cars", - "electric vehicle adoption", - "Hertz" - ], - "isoDate": "2024-01-11T15:22:12.000Z" - }, - { - "creator": "WIRED", - "title": "I found David Lynch\u2019s lost Dune II script", - "link": "https://arstechnica.com/?p=1995271", - "pubDate": "Thu, 11 Jan 2024 14:24:55 +0000", - "content:encoded": "
\n
\n \"Kyle\n

Enlarge / Kyle MacLachlan in Dune, 1984. (credit: Everett)

\n\n\n\n\n\n\n
\n

David Lynch\u2019s 1984 sci-fi epic Dune is\u2014in many ways\u2014a misbegotten botch job. Still, as with more than a few ineffectively ambitious films before it, the artistic flourishes Lynch grafted onto Frank Herbert\u2019s sprawling Machiavellian narrative of warring space dynasties have earned it true cult classic status. Today, fans of the film, which earned a paltry $30 million at the box office and truly bruising reviews upon its release, still wonder what Lynch would have done if given the opportunity to adapt the next two novels in Herbert\u2019s cycle: Dune Messiah and Children of Dune.

\n

Franchising was the plan before the first film crashed and burned, with Lynch and star Kyle MacLachlan (playing Paul Atreides) set to shoot both Dune sequels back-to-back in 1986. Miniature spaceship models, costumes, and props from the first film were placed in storage by producer Dino De Laurentiis for use on these follow-ups, while the director hammered away on a Dune II script. \u201cI wrote half a script for the second Dune. I really got into it because it wasn\u2019t a big story,\u201d he says in Lynch on Lynch, \u201cmore like a neighborhood story. It had some really cool things in it.\u201d

\n

During the two years I spent putting together my book A Masterpiece in Disarray: David Lynch\u2019s Dune\u2014An Oral History, I had no luck uncovering Lynch's script for Dune II, despite Frank Herbert telling Prevue magazine in December 1984 that he possessed a copy and was advising Lynch on it. \u201cNow that we speak the same \u2018language,\u2019 it\u2019s much easier for both of us to make progress, especially with the screenplays,\u201d Herbert told the publication. Then, in July 2023, within the Frank Herbert archives at California State University, Fullerton, I came across a slim folder with a sticky note declaring \u201cDune Messiah script revisions,\u201d addressed to the second floor of VFX man Barry Nolan\u2019s office in Burbank where Lynch supervised the final effects shoots and editing on Dune.

Read 44 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Kyle MacLachlan in Dune, 1984. (credit: Everett)\n \n\n\n\n\n\n\n\nDavid Lynch\u2019s 1984 sci-fi epic Dune is\u2014in many ways\u2014a misbegotten botch job. Still, as with more than a few ineffectively ambitious films before it, the artistic flourishes Lynch grafted onto Frank Herbert\u2019s sprawling Machiavellian narrative of warring space dynasties have earned it true cult classic status. Today, fans of the film, which earned a paltry $30 million at the box office and truly bruising reviews upon its release, still wonder what Lynch would have done if given the opportunity to adapt the next two novels in Herbert\u2019s cycle: Dune Messiah and Children of Dune.\nFranchising was the plan before the first film crashed and burned, with Lynch and star Kyle MacLachlan (playing Paul Atreides) set to shoot both Dune sequels back-to-back in 1986. Miniature spaceship models, costumes, and props from the first film were placed in storage by producer Dino De Laurentiis for use on these follow-ups, while the director hammered away on a Dune II script. \u201cI wrote half a script for the second Dune. I really got into it because it wasn\u2019t a big story,\u201d he says in Lynch on Lynch, \u201cmore like a neighborhood story. It had some really cool things in it.\u201d\nDuring the two years I spent putting together my book A Masterpiece in Disarray: David Lynch\u2019s Dune\u2014An Oral History, I had no luck uncovering Lynch's script for Dune II, despite Frank Herbert telling Prevue magazine in December 1984 that he possessed a copy and was advising Lynch on it. \u201cNow that we speak the same \u2018language,\u2019 it\u2019s much easier for both of us to make progress, especially with the screenplays,\u201d Herbert told the publication. Then, in July 2023, within the Frank Herbert archives at California State University, Fullerton, I came across a slim folder with a sticky note declaring \u201cDune Messiah script revisions,\u201d addressed to the second floor of VFX man Barry Nolan\u2019s office in Burbank where Lynch supervised the final effects shoots and editing on Dune.\n\nRead 44 remaining paragraphs | Comments", - "dc:creator": "WIRED", - "comments": "https://arstechnica.com/culture/2024/01/i-found-david-lynchs-lost-dune-ii-script/#comments", - "content": "The unfinished script, found in an archive, shows Lynch's enthusiasm for Dune.", - "contentSnippet": "The unfinished script, found in an archive, shows Lynch's enthusiasm for Dune.", - "guid": "https://arstechnica.com/?p=1995271", - "categories": [ - "Culture", - "David Lynch", - "Dune", - "Dune: Messiah", - "Frank Herbert", - "syndication" - ], - "isoDate": "2024-01-11T14:24:55.000Z" - }, - { - "creator": "Eric Berger", - "title": "Daily Telescope: A monster protostar in a distant nebula", - "link": "https://arstechnica.com/?p=1995207", - "pubDate": "Thu, 11 Jan 2024 13:00:25 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A great view of NGC 7538. (credit: Paul Buckley)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's January 11, and today's image showcases a diffuse nebula known as NGC 7538, found in the constellation Cepheus.

\n

Located some 9,000 light-years from Earth, the nebula is a region of active star formation and produces a large amount of hydrogen\u2014which shows up in this image. The nebula contains a shockingly large protostar that is, astronomers estimate, some 300 times larger than our Solar System and has a mass of 2,000 Suns. Even as astronomical objects go, that's gargantuan.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A great view of NGC 7538. (credit: Paul Buckley)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's January 11, and today's image showcases a diffuse nebula known as NGC 7538, found in the constellation Cepheus.\nLocated some 9,000 light-years from Earth, the nebula is a region of active star formation and produces a large amount of hydrogen\u2014which shows up in this image. The nebula contains a shockingly large protostar that is, astronomers estimate, some 300 times larger than our Solar System and has a mass of 2,000 Suns. Even as astronomical objects go, that's gargantuan.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2024/01/daily-telescope-a-monster-protostar-in-a-distant-nebula/#comments", - "content": "Even as astronomical objects go, that's a gargantuan protostar.", - "contentSnippet": "Even as astronomical objects go, that's a gargantuan protostar.", - "guid": "https://arstechnica.com/?p=1995207", - "categories": [ - "Science", - "Space", - "daily telescope" - ], - "isoDate": "2024-01-11T13:00:25.000Z" - }, - { - "creator": "Ars Contributors", - "title": "The largest US dam-removal effort to date has begun", - "link": "https://arstechnica.com/?p=1994887", - "pubDate": "Thu, 11 Jan 2024 12:00:45 +0000", - "content:encoded": "
\n
\n \"Image\n

Enlarge / The John C. Boyle Dam, one of the dams slated for removal. (credit: NOAA)

\n\n\n\n\n\n\n
\n

Wending its way from the Olympic Mountains to the Strait of Juan de Fuca, Washington\u2019s Elwha River is now free. For about century, the Elwha and Gilnes Canyon Dams corralled these waters. Both have since been removed, and the restoration of the watershed has started.

\n

The dam-removal project was the largest to date in the US\u2014though it won\u2019t hold that position for long. The Klamath River dam removal project has begun, with four of its six dams\u2014J.C. Boyle, Copco No. 1,\u202fCopco No. 2, and Iron Gate\u2014set to be scuppered by the end of the year, and the drawdown started this week. (In fact, Copco No. 2 is already gone.)

\n

Once the project is complete, the Klamath will run from Oregon to northwestern California largely unimpeded, allowing sediment, organic matter, and its restive waters to flow freely downriver while fish like salmon, trout, and other migratory species leap and wriggle their way upstream to spawn.

Read 27 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The John C. Boyle Dam, one of the dams slated for removal. (credit: NOAA)\n \n\n\n\n\n\n\n\nWending its way from the Olympic Mountains to the Strait of Juan de Fuca, Washington\u2019s Elwha River is now free. For about century, the Elwha and Gilnes Canyon Dams corralled these waters. Both have since been removed, and the restoration of the watershed has started.\nThe dam-removal project was the largest to date in the US\u2014though it won\u2019t hold that position for long. The Klamath River dam removal project has begun, with four of its six dams\u2014J.C. Boyle, Copco No. 1,\u202fCopco No. 2, and Iron Gate\u2014set to be scuppered by the end of the year, and the drawdown started this week. (In fact, Copco No. 2 is already gone.)\nOnce the project is complete, the Klamath will run from Oregon to northwestern California largely unimpeded, allowing sediment, organic matter, and its restive waters to flow freely downriver while fish like salmon, trout, and other migratory species leap and wriggle their way upstream to spawn.\n\nRead 27 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/science/2024/01/the-largest-us-dam-removal-effort-to-date-has-begun/#comments", - "content": "As US dams age, removal is always an option\u2014and it can be done well.", - "contentSnippet": "As US dams age, removal is always an option\u2014and it can be done well.", - "guid": "https://arstechnica.com/?p=1994887", - "categories": [ - "Features", - "Science", - "dams", - "geography", - "geology", - "hydrology", - "Sediment", - "water" - ], - "isoDate": "2024-01-11T12:00:45.000Z" - }, - { - "creator": "Scharon Harding", - "title": "VMware customers face uncertain future as Broadcom ends VMware partner programs", - "link": "https://arstechnica.com/?p=1995206", - "pubDate": "Wed, 10 Jan 2024 23:53:41 +0000", - "content:encoded": "
\n
\n \"VMware\n

Enlarge (credit: Getty)

\n\n\n\n\n\n\n
\n

VMware's new owner is ending the virtualization and cloud computing company's partner programs. It's unclear who or how many current partners will be able to sell VMware-related offerings after April 2024, leaving the potential for tens of thousands of businesses to be disrupted.

\n

Broadcom, which closed its VMware acquisition in November, told The Register in late December that \u201ceffective February 5, 2024, Broadcom will be transitioning VMware\u2019s partner programs to the invitation-only Broadcom Advantage Partner Program.\u201d This signaled the end of VMware's partnerships with solution providers, resellers, and distributors. But today\u2019s news reportedly reveals a final closure date for the cloud services provider partner program, which debuted in 2019.

\n

Today, The Register reported that Broadcom recently shared an end-of-partnership date specifically for VMware cloud service provider partners that work with VMware through the VMware Partner Connect Program that launched in 2020.

Read 10 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty)\n \n\n\n\n\n\n\n\nVMware's new owner is ending the virtualization and cloud computing company's partner programs. It's unclear who or how many current partners will be able to sell VMware-related offerings after April 2024, leaving the potential for tens of thousands of businesses to be disrupted.\nBroadcom, which closed its VMware acquisition in November, told The Register in late December that \u201ceffective February 5, 2024, Broadcom will be transitioning VMware\u2019s partner programs to the invitation-only Broadcom Advantage Partner Program.\u201d This signaled the end of VMware's partnerships with solution providers, resellers, and distributors. But today\u2019s news reportedly reveals a final closure date for the cloud services provider partner program, which debuted in 2019.\nToday, The Register reported that Broadcom recently shared an end-of-partnership date specifically for VMware cloud service provider partners that work with VMware through the VMware Partner Connect Program that launched in 2020.\n\nRead 10 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/information-technology/2024/01/broadcom-killing-vmware-partner-program-could-disrupt-thousands-of-businesses/#comments", - "content": "Only Broadcom's favorites will be able to sell VMware-related offerings. ", - "contentSnippet": "Only Broadcom's favorites will be able to sell VMware-related offerings.", - "guid": "https://arstechnica.com/?p=1995206", - "categories": [ - "Biz & IT", - "Broadcom", - "software", - "virtualization", - "vmware" - ], - "isoDate": "2024-01-10T23:53:41.000Z" - }, - { - "creator": "Beth Mole", - "title": "US verges on vaccination tipping point, faces thousands of needless deaths: FDA", - "link": "https://arstechnica.com/?p=1995211", - "pubDate": "Wed, 10 Jan 2024 23:18:29 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A child with measles. (credit: Greene, Charles Lyman)

\n\n\n\n\n\n\n
\n

The US may be heading to a \"dangerous vaccination tipping point,\" with immunization rates falling so low that population-level immunity is now at risk, and we will likely see thousands of needless deaths this respiratory virus season, two top officials for the Food and Drug Administration warned in a recent JAMA commentary.

\n

FDA Commissioner Robert Califf and top FDA vaccine regulator Peter Marks noted the profound benefits of vaccines\u2014which save millions of lives in the US each year\u2014and their established safety, which is monitored both passively and actively through multiple overlapping federal safety monitoring systems. And yet, \"an increasing number of people in the US are now declining vaccination for a variety of reasons, ranging from safety concerns to religious beliefs,\" thanks to the rise of anti-vaccine misinformation spread on social media and elsewhere on the Internet.

\n

Data from the Centers for Disease Control and Prevention last year found that, for the third consecutive year, vaccination rates among kindergartners had continued to slip, with rates of non-medical vaccination exemptions rising to an all-time high. There are now 10 states with vaccination exemption rates over 5 percent, meaning that even if clinicians and health officials manage to vaccinate all non-exempt children, the state will not be able to reach the target of 95 percent coverage needed to curb the spread of disease on a population level.

Read 6 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A child with measles. (credit: Greene, Charles Lyman)\n \n\n\n\n\n\n\n\nThe US may be heading to a \"dangerous vaccination tipping point,\" with immunization rates falling so low that population-level immunity is now at risk, and we will likely see thousands of needless deaths this respiratory virus season, two top officials for the Food and Drug Administration warned in a recent JAMA commentary.\nFDA Commissioner Robert Califf and top FDA vaccine regulator Peter Marks noted the profound benefits of vaccines\u2014which save millions of lives in the US each year\u2014and their established safety, which is monitored both passively and actively through multiple overlapping federal safety monitoring systems. And yet, \"an increasing number of people in the US are now declining vaccination for a variety of reasons, ranging from safety concerns to religious beliefs,\" thanks to the rise of anti-vaccine misinformation spread on social media and elsewhere on the Internet.\nData from the Centers for Disease Control and Prevention last year found that, for the third consecutive year, vaccination rates among kindergartners had continued to slip, with rates of non-medical vaccination exemptions rising to an all-time high. There are now 10 states with vaccination exemption rates over 5 percent, meaning that even if clinicians and health officials manage to vaccinate all non-exempt children, the state will not be able to reach the target of 95 percent coverage needed to curb the spread of disease on a population level.\n\nRead 6 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/science/2024/01/anti-vaccine-nonsense-will-likely-kill-thousands-this-season-fda-officials-say/#comments", - "content": "Top regulatory officials call for clinicians to speak up and drown out misinformation.", - "contentSnippet": "Top regulatory officials call for clinicians to speak up and drown out misinformation.", - "guid": "https://arstechnica.com/?p=1995211", - "categories": [ - "Health", - "Science", - "anti-vaccine", - "COVID-19", - "fda", - "flu", - "measles", - "outbreak", - "RSV", - "vaccination coverage", - "vaccine", - "vaccine hesitancy" - ], - "isoDate": "2024-01-10T23:18:29.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Diesel enginemaker agrees to nearly $2 billion in fines with feds and California", - "link": "https://arstechnica.com/?p=1995218", - "pubDate": "Wed, 10 Jan 2024 23:00:45 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Cummins)

\n\n\n\n\n\n\n
\n

Cummins, which makes diesel engines for trucks, among other products, will pay a record Clean Air Act civil penalty of $1.675 billion in a lawsuit brought by the US Department of Justice, the Environmental Protection Agency, and the California Air Resources Board.

\n

Like Volkswagen before it, Cummins was found to have fitted engines\u2014in this case, diesel engines installed in more than 630,000 Ram 2500 and Ram 3500 pickup trucks built between 2013\u20132019\u2014with illegal \"defeat device\" software that allowed the truck engines to pass emissions tests but then emit much more pollution while in operation. The DOJ said it also found undisclosed emissions software on an additional 330,000 trucks built between 2019 and 2023.

\n

Cummins must recall and repair the non-compliant engine software, extend the warranty period for some parts of those powertrains, fund and develop ways to reduce nitrogen oxides (NOx) from engine emissions, and implement procedures to prevent cheating in the future.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Cummins)\n \n\n\n\n\n\n\n\nCummins, which makes diesel engines for trucks, among other products, will pay a record Clean Air Act civil penalty of $1.675 billion in a lawsuit brought by the US Department of Justice, the Environmental Protection Agency, and the California Air Resources Board.\nLike Volkswagen before it, Cummins was found to have fitted engines\u2014in this case, diesel engines installed in more than 630,000 Ram 2500 and Ram 3500 pickup trucks built between 2013\u20132019\u2014with illegal \"defeat device\" software that allowed the truck engines to pass emissions tests but then emit much more pollution while in operation. The DOJ said it also found undisclosed emissions software on an additional 330,000 trucks built between 2019 and 2023.\nCummins must recall and repair the non-compliant engine software, extend the warranty period for some parts of those powertrains, fund and develop ways to reduce nitrogen oxides (NOx) from engine emissions, and implement procedures to prevent cheating in the future.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2024/01/diesel-enginemaker-agrees-to-nearly-2-billion-in-fines-with-feds-and-california/#comments", - "content": "More than 600,000 Ram trucks have Cummins engines with software defeat devices.", - "contentSnippet": "More than 600,000 Ram trucks have Cummins engines with software defeat devices.", - "guid": "https://arstechnica.com/?p=1995218", - "categories": [ - "Cars", - "Cummins", - "defeat device", - "diesel emissions", - "emissions cheating" - ], - "isoDate": "2024-01-10T23:00:45.000Z" - }, - { - "creator": "Dan Goodin", - "title": "Actively exploited 0-days in Ivanti VPN are letting hackers backdoor networks", - "link": "https://arstechnica.com/?p=1995172", - "pubDate": "Wed, 10 Jan 2024 22:18:15 +0000", - "content:encoded": "
\n
\n \n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Unknown threat actors are actively targeting two critical zero-day vulnerabilities that allow them to bypass two-factor authentication and execute malicious code inside networks that use a widely used virtual private network appliance sold by Ivanti, researchers said Wednesday.

\n

Ivanti reported bare-bones details concerning the zero-days in posts published on Wednesday that urged customers to follow mitigation guidance immediately. Tracked as CVE-2023-46805 and CVE-2024-21887, they reside in Ivanti Connect Secure, a VPN appliance often abbreviated as ICS. Formerly known as Pulse Secure, the widely used VPN has harbored previous zero-days in recent years that came under widespread exploitation, in some cases to devastating effect.

\n

Exploiters: Start your engines

\n

\u201cWhen combined, these two vulnerabilities make it trivial for attackers to run commands on the system,\u201d researchers from security firm Volexity wrote in a post summarizing their investigative findings of an attack that hit a customer last month. \u201cIn this particular incident, the attacker leveraged these exploits to steal configuration data, modify existing files, download remote files, and reverse tunnel from the ICS VPN appliance.\u201d Researchers Matthew Meltzer, Robert Jan Mora, Sean Koessel, Steven Adair, and Thomas Lancaster went on to write:

Read 10 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nUnknown threat actors are actively targeting two critical zero-day vulnerabilities that allow them to bypass two-factor authentication and execute malicious code inside networks that use a widely used virtual private network appliance sold by Ivanti, researchers said Wednesday.\nIvanti reported bare-bones details concerning the zero-days in posts published on Wednesday that urged customers to follow mitigation guidance immediately. Tracked as CVE-2023-46805 and CVE-2024-21887, they reside in Ivanti Connect Secure, a VPN appliance often abbreviated as ICS. Formerly known as Pulse Secure, the widely used VPN has harbored previous zero-days in recent years that came under widespread exploitation, in some cases to devastating effect.\nExploiters: Start your engines\n\u201cWhen combined, these two vulnerabilities make it trivial for attackers to run commands on the system,\u201d researchers from security firm Volexity wrote in a post summarizing their investigative findings of an attack that hit a customer last month. \u201cIn this particular incident, the attacker leveraged these exploits to steal configuration data, modify existing files, download remote files, and reverse tunnel from the ICS VPN appliance.\u201d Researchers Matthew Meltzer, Robert Jan Mora, Sean Koessel, Steven Adair, and Thomas Lancaster went on to write:\n\nRead 10 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2024/01/actively-exploited-0-days-in-ivanti-vpn-are-letting-hackers-backdoor-networks/#comments", - "content": "Organizations using Ivanti Connect Secure should take action at once.", - "contentSnippet": "Organizations using Ivanti Connect Secure should take action at once.", - "guid": "https://arstechnica.com/?p=1995172", - "categories": [ - "Biz & IT", - "Security", - "ivanti", - "ivanti connect secure", - "VPN", - "zerodays" - ], - "isoDate": "2024-01-10T22:18:15.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Detachable Lenovo laptop is two separate computers, runs Windows and Android", - "link": "https://arstechnica.com/?p=1995067", - "pubDate": "Wed, 10 Jan 2024 20:43:43 +0000", - "content:encoded": "
\n\n\n\n\n\n
\n
    \n
  • \n
    \n
    \"\"
    \n

    \n The Lenovo ThinkBook Plus Gen 5 Hybrid. It has two CPUs, two operating systems, and six speakers, and it generally sounds deeply complicated. [credit:\n Lenovo ]\n

    \n
    \n
  • \n
\n\n

Have you ever used a Windows laptop and thought, \"Gee, I really wish this was also an Android tablet\"? Does Lenovo have a product for you!

\n

The Lenovo ThinkBook Plus Gen 5 Hybrid laptop at CES 2024 is both a Windows laptop and an Android tablet. The bottom half contains all the usual Intel laptop parts, while the top half packs a Qualcomm chip and a whole duplicate set of computing components. A detachable screen lets both halves come apart and operate separately, and you'll be spending your life riding the line between the Windows and Android ecosystems. Because you're getting two separate computers, you'll also have to pay for two separate computers\u2014the device costs $2,000.

\n

Because the device houses two computers, you can separate them and run them at the same time. Of course, the tablet acts as an Android tablet when it's detached, but you can also plug the headless laptop base into a monitor and use Windows. Lenovo calls the tablet the \"Hybrid Tab\" while the bottom is the \"Hybrid Station,\" and the whole thing voltroned together forms the \"ThinkBook Plus Gen 5 Hybrid.\" The laptop base runs Windows 11 and has an Intel Core Ultra 7 processor, 32GB of RAM, a 1TB SSD, Intel graphics, and a 75 Whr battery. The tablet runs Android 13 on a Snapdragon 8+ gen 1 SoC, along with 12GB of RAM, 256GB of UFS 3.1 storage, and a 38 Whr battery.

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Have you ever used a Windows laptop and thought, \"Gee, I really wish this was also an Android tablet\"? Does Lenovo have a product for you!\nThe Lenovo ThinkBook Plus Gen 5 Hybrid laptop at CES 2024 is both a Windows laptop and an Android tablet. The bottom half contains all the usual Intel laptop parts, while the top half packs a Qualcomm chip and a whole duplicate set of computing components. A detachable screen lets both halves come apart and operate separately, and you'll be spending your life riding the line between the Windows and Android ecosystems. Because you're getting two separate computers, you'll also have to pay for two separate computers\u2014the device costs $2,000.\nBecause the device houses two computers, you can separate them and run them at the same time. Of course, the tablet acts as an Android tablet when it's detached, but you can also plug the headless laptop base into a monitor and use Windows. Lenovo calls the tablet the \"Hybrid Tab\" while the bottom is the \"Hybrid Station,\" and the whole thing voltroned together forms the \"ThinkBook Plus Gen 5 Hybrid.\" The laptop base runs Windows 11 and has an Intel Core Ultra 7 processor, 32GB of RAM, a 1TB SSD, Intel graphics, and a 75 Whr battery. The tablet runs Android 13 on a Snapdragon 8+ gen 1 SoC, along with 12GB of RAM, 256GB of UFS 3.1 storage, and a 38 Whr battery.\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2024/01/detachable-lenovo-laptop-is-two-separate-computers-runs-windows-and-android/#comments", - "content": "The Lenovo ThinkBook Plus Gen 5 Hybrid combines the best (?) of both worlds. ", - "contentSnippet": "The Lenovo ThinkBook Plus Gen 5 Hybrid combines the best (?) of both worlds.", - "guid": "https://arstechnica.com/?p=1995067", - "categories": [ - "Tech", - "Lenovo" - ], - "isoDate": "2024-01-10T20:43:43.000Z" - }, - { - "creator": "Benj Edwards", - "title": "OpenAI\u2019s GPT Store lets ChatGPT users discover popular user-made chatbot roles", - "link": "https://arstechnica.com/?p=1994230", - "pubDate": "Wed, 10 Jan 2024 19:41:48 +0000", - "content:encoded": "
\n
\n \"Two\n

Enlarge (credit: Getty Images / Benj Edwards)

\n\n\n\n\n\n\n
\n

On Wednesday, OpenAI announced the launch of its GPT Store\u2014a way for ChatGPT users to share and discover custom chatbot roles called \"GPTs\"\u2014and ChatGPT Team, a collaborative ChatGPT workspace and subscription plan. OpenAI bills the new store as a way to \"help you find useful and popular custom versions of ChatGPT\" for members of Plus, Team, or Enterprise subscriptions.

\n\n

\"It\u2019s been two months since we announced GPTs, and users have already created over 3 million custom versions of ChatGPT,\" writes OpenAI in its promotional blog. \"Many builders have shared their GPTs for others to use. Today, we're starting to roll out the GPT Store to ChatGPT Plus, Team and Enterprise users so you can find useful and popular GPTs.\"

\n

OpenAI launched GPTs on November 6, 2023, as part of its DevDay event. Each GPT includes custom instructions and/or access to custom data or external APIs that can potentially make a custom GPT personality more useful than the vanilla ChatGPT-4 model. Before the GPT Store launch, paying ChatGPT users could create and share custom GPTs with others (by setting the GPT public and sharing a link to the GPT), but there was no central repository for browsing and discovering user-designed GPTs on the OpenAI website.

Read 6 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images / Benj Edwards)\n \n\n\n\n\n\n\n\nOn Wednesday, OpenAI announced the launch of its GPT Store\u2014a way for ChatGPT users to share and discover custom chatbot roles called \"GPTs\"\u2014and ChatGPT Team, a collaborative ChatGPT workspace and subscription plan. OpenAI bills the new store as a way to \"help you find useful and popular custom versions of ChatGPT\" for members of Plus, Team, or Enterprise subscriptions.\n\"It\u2019s been two months since we announced GPTs, and users have already created over 3 million custom versions of ChatGPT,\" writes OpenAI in its promotional blog. \"Many builders have shared their GPTs for others to use. Today, we're starting to roll out the GPT Store to ChatGPT Plus, Team and Enterprise users so you can find useful and popular GPTs.\"\nOpenAI launched GPTs on November 6, 2023, as part of its DevDay event. Each GPT includes custom instructions and/or access to custom data or external APIs that can potentially make a custom GPT personality more useful than the vanilla ChatGPT-4 model. Before the GPT Store launch, paying ChatGPT users could create and share custom GPTs with others (by setting the GPT public and sharing a link to the GPT), but there was no central repository for browsing and discovering user-designed GPTs on the OpenAI website.\n\nRead 6 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/information-technology/2024/01/openais-gpt-store-lets-chatgpt-users-discover-popular-user-made-chatbot-roles/#comments", - "content": "Like an app store, people can find novel ChatGPT personalities\u2014and some creators will get paid.", - "contentSnippet": "Like an app store, people can find novel ChatGPT personalities\u2014and some creators will get paid.", - "guid": "https://arstechnica.com/?p=1994230", - "categories": [ - "AI", - "Biz & IT", - "AI language models", - "AI models", - "App Store", - "ChatGPT", - "ChatGPT Enterprise", - "ChatGPT Plus", - "ChatGPT Team", - "chatgtp", - "GPT Store", - "GPTs", - "large language models", - "machine learning", - "openai", - "text synthesis" - ], - "isoDate": "2024-01-10T19:41:48.000Z" - }, - { - "creator": "Scharon Harding", - "title": "Portable monitors could make foldable-screen gadgets finally make sense", - "link": "https://arstechnica.com/?p=1994880", - "pubDate": "Wed, 10 Jan 2024 19:23:18 +0000", - "content:encoded": "
\n\n\n\n\n\n
\n
    \n
  • \n
    \n
    \"\"
    \n

    \n Asus plans to release this foldable OLED monitor in 2024. Electronics retailer Abt Electronics captured footage of it on display at CES. [credit:\n Abt Electronics/YouTube\n ]\n

    \n
    \n
  • \n
\n\n

Foldable screens have been bending their way into consumer gadgets over the last few years. But with skepticism about durability, pricing, image quality, and the necessity of such devices, foldable screens aren't mainstream. With those concerns in mind, I haven't had much interest in owning a foldable-screen gadget, even after using a foldable laptop for a month. However, the foldable portable monitor that Asus is showing at CES in Las Vegas this week is an application of foldable OLED that makes more sense to me than others.

\n

Asus' ZenScreen Fold OLED MQ17QH announced on Tuesday is a 17.3-inch portable monitor that can fold to a 12.5-inch size. The monitor has 2560\u00d71920 pixels for a pixel density of 184.97 pixels per inch. Other specs include a 100 percent DCI-P3 coverage claim and VESA DisplayHDR True Black 500 certification.

\n

When I think of the ways I use portable monitors, foldability makes more sense than it does with other device types. For example, I love working outside when possible, and an extra 17.3-inch screen that's easy to carry would make long work sessions with an ultraportable laptop more feasible. The Fold OLED's 17.3 inches is near the larger size for a portable monitor, but the fold and comparatively light weight should make it feel more transportable than similarly sized monitors that don't fold in half.

Read 25 remaining paragraphs | Comments

", - "content:encodedSnippet": "Abt Electronics/YouTube\n ]\n \nFoldable screens have been bending their way into consumer gadgets over the last few years. But with skepticism about durability, pricing, image quality, and the necessity of such devices, foldable screens aren't mainstream. With those concerns in mind, I haven't had much interest in owning a foldable-screen gadget, even after using a foldable laptop for a month. However, the foldable portable monitor that Asus is showing at CES in Las Vegas this week is an application of foldable OLED that makes more sense to me than others.\nAsus' ZenScreen Fold OLED MQ17QH announced on Tuesday is a 17.3-inch portable monitor that can fold to a 12.5-inch size. The monitor has 2560\u00d71920 pixels for a pixel density of 184.97 pixels per inch. Other specs include a 100 percent DCI-P3 coverage claim and VESA DisplayHDR True Black 500 certification.\nWhen I think of the ways I use portable monitors, foldability makes more sense than it does with other device types. For example, I love working outside when possible, and an extra 17.3-inch screen that's easy to carry would make long work sessions with an ultraportable laptop more feasible. The Fold OLED's 17.3 inches is near the larger size for a portable monitor, but the fold and comparatively light weight should make it feel more transportable than similarly sized monitors that don't fold in half.\n\nRead 25 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/gadgets/2024/01/portable-monitors-could-make-foldable-screen-gadgets-finally-make-sense/#comments", - "content": "Opinion: I'd rather have my secondary, portable screen fold than my phone or PC. ", - "contentSnippet": "Opinion: I'd rather have my secondary, portable screen fold than my phone or PC.", - "guid": "https://arstechnica.com/?p=1994880", - "categories": [ - "Tech", - "ASUS", - "CES", - "foldable", - "Monitors", - "oled" - ], - "isoDate": "2024-01-10T19:23:18.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Amazon lays off 500 Twitch employees, hundreds more at MGM and Prime Video", - "link": "https://arstechnica.com/?p=1995102", - "pubDate": "Wed, 10 Jan 2024 18:29:00 +0000", - "content:encoded": "
\n
\n \"Twitch\n

Enlarge (credit: Getty Images | NurPhoto)

\n\n\n\n\n\n\n
\n

Amazon today is laying off 500 employees at Twitch and several hundred more at its MGM and Prime Video divisions, the company announced. The 500 job cuts at Twitch reportedly amount to 35 percent of the game-focused live-streaming platform's staff.

\n

Twitch CEO Dan Clancy announced the cuts in a blog post and email to staff. \"As you all know, we have worked hard over the last year to run our business as sustainably as possible. Unfortunately, we still have work to do to rightsize our company and I regret having to share that we are taking the painful step to reduce our headcount by just over 500 people across Twitch,\" Clancy wrote.

\n

Twitch is reportedly still unprofitable nine years after Amazon acquired it. Meanwhile, Senior VP of Prime Video and Amazon MGM Studios Mike Hopkins sent a memo to staff announcing the elimination of \"several hundred roles across the Prime Video and Amazon MGM Studios organization.\"

Read 10 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | NurPhoto)\n \n\n\n\n\n\n\n\nAmazon today is laying off 500 employees at Twitch and several hundred more at its MGM and Prime Video divisions, the company announced. The 500 job cuts at Twitch reportedly amount to 35 percent of the game-focused live-streaming platform's staff.\nTwitch CEO Dan Clancy announced the cuts in a blog post and email to staff. \"As you all know, we have worked hard over the last year to run our business as sustainably as possible. Unfortunately, we still have work to do to rightsize our company and I regret having to share that we are taking the painful step to reduce our headcount by just over 500 people across Twitch,\" Clancy wrote.\nTwitch is reportedly still unprofitable nine years after Amazon acquired it. Meanwhile, Senior VP of Prime Video and Amazon MGM Studios Mike Hopkins sent a memo to staff announcing the elimination of \"several hundred roles across the Prime Video and Amazon MGM Studios organization.\"\n\nRead 10 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/amazon-lays-off-500-twitch-employees-hundreds-more-at-mgm-and-prime-video/#comments", - "content": "Twitch reportedly still unprofitable, paid over $1 billion to streamers in 2023.", - "contentSnippet": "Twitch reportedly still unprofitable, paid over $1 billion to streamers in 2023.", - "guid": "https://arstechnica.com/?p=1995102", - "categories": [ - "Policy", - "amazon layoffs", - "twitch layoffs" - ], - "isoDate": "2024-01-10T18:29:00.000Z" - }, - { - "creator": "Eric Berger", - "title": "After its impressive first flight, here\u2019s what\u2019s next for the Vulcan rocket", - "link": "https://arstechnica.com/?p=1994949", - "pubDate": "Wed, 10 Jan 2024 18:20:45 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The business end of the Vulcan rocket performed flawlessly during its debut launch. (credit: United Launch Alliance)

\n\n\n\n\n\n\n
\n

Early Monday morning, the hefty Vulcan rocket streaked into orbit for the first time, nailing its performance targets and delivering a substantial success to United Launch Alliance on the vehicle's first test flight.

\n

Unfortunately for the mission's primary customer, Astrobotic, there was subsequently an issue with the lunar lander's propulsion system. However, Astrobotic was quick to clear Vulcan of any blame, saying the payload was delivered into the planned lunar trajectory without issue. \"There is no indication that the propulsion anomaly occurred as a result of the launch,\" Astrobotic said.

\n

Vulcan's debut was much-anticipated in the US launch community because the rocket provides a potentially viable competitor to the Falcon 9 and Falcon Heavy rockets flown by SpaceX. The US Space Force, in particular, has been waiting on Vulcan to fly dozens of payloads into orbit.

Read 16 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The business end of the Vulcan rocket performed flawlessly during its debut launch. (credit: United Launch Alliance)\n \n\n\n\n\n\n\n\nEarly Monday morning, the hefty Vulcan rocket streaked into orbit for the first time, nailing its performance targets and delivering a substantial success to United Launch Alliance on the vehicle's first test flight.\nUnfortunately for the mission's primary customer, Astrobotic, there was subsequently an issue with the lunar lander's propulsion system. However, Astrobotic was quick to clear Vulcan of any blame, saying the payload was delivered into the planned lunar trajectory without issue. \"There is no indication that the propulsion anomaly occurred as a result of the launch,\" Astrobotic said.\nVulcan's debut was much-anticipated in the US launch community because the rocket provides a potentially viable competitor to the Falcon 9 and Falcon Heavy rockets flown by SpaceX. The US Space Force, in particular, has been waiting on Vulcan to fly dozens of payloads into orbit.\n\nRead 16 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2024/01/after-its-impressive-first-flight-heres-whats-next-for-the-vulcan-rocket/#comments", - "content": "\"We anticipate some movements in the manifest.\"", - "contentSnippet": "\"We anticipate some movements in the manifest.\"", - "guid": "https://arstechnica.com/?p=1994949", - "categories": [ - "Science", - "Space", - "space", - "ula", - "vulcan" - ], - "isoDate": "2024-01-10T18:20:45.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "Astronomers think they finally know origin of enormous \u201ccosmic smoke rings\u201c", - "link": "https://arstechnica.com/?p=1994856", - "pubDate": "Wed, 10 Jan 2024 17:42:13 +0000", - "content:encoded": "
\n
\n \"Odd\n

Enlarge / Odd radio circles are large enough to contain galaxies in their centers and reach hundreds of thousands of light years across. (credit: Jayanne English / University of Manitoba)

\n\n\n\n\n\n\n
\n

The discovery of so-called \"odd radio circles\" several years ago had astronomers scrambling to find an explanation for these enormous regions of radio waves so far-reaching that they have galaxies at their centers. Scientists at the University of California, San Diego, think they have found the answer: outflowing galactic winds from exploding stars in so-called \"starburst\" galaxies. They described their findings in a new paper published in the journal Nature.

\n

\u201cThese galaxies are really interesting,\u201d said Alison Coil of the University of California, San Diego. \u201cThey occur when two big galaxies collide. The merger pushes all the gas into a very small region, which causes an intense burst of star formation. Massive stars burn out quickly, and when they die, they expel their gas as outflowing winds.\u201d

\n

As reported previously, the discovery arose from the Evolutionary Map of the Universe (EMU) project, which aims to take a census of\u00a0radio sources in the sky. Several years ago, Ray Norris, an astronomer at Western Sydney University and CSIRO in Australia, predicted the EMU project would make unexpected discoveries. He dubbed them \"WTFs.\" Anna Kapinska, an astronomer at the National Radio Astronomy Observatory (NRAO) was browsing through radio astronomy data collected by CSIRO's Australian Square Kilometer Array Pathfinder (ASKAP) telescope when she noticed several strange shapes that didn't seem to resemble any known type of object. Following Norris' nomenclature, she labeled them as possible WTFs. One of those was a picture of a ghostly circle of radio emission, \"hanging out in space like a cosmic smoke ring.\"

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Odd radio circles are large enough to contain galaxies in their centers and reach hundreds of thousands of light years across. (credit: Jayanne English / University of Manitoba)\n \n\n\n\n\n\n\n\nThe discovery of so-called \"odd radio circles\" several years ago had astronomers scrambling to find an explanation for these enormous regions of radio waves so far-reaching that they have galaxies at their centers. Scientists at the University of California, San Diego, think they have found the answer: outflowing galactic winds from exploding stars in so-called \"starburst\" galaxies. They described their findings in a new paper published in the journal Nature.\n\u201cThese galaxies are really interesting,\u201d said Alison Coil of the University of California, San Diego. \u201cThey occur when two big galaxies collide. The merger pushes all the gas into a very small region, which causes an intense burst of star formation. Massive stars burn out quickly, and when they die, they expel their gas as outflowing winds.\u201d\nAs reported previously, the discovery arose from the Evolutionary Map of the Universe (EMU) project, which aims to take a census of\u00a0radio sources in the sky. Several years ago, Ray Norris, an astronomer at Western Sydney University and CSIRO in Australia, predicted the EMU project would make unexpected discoveries. He dubbed them \"WTFs.\" Anna Kapinska, an astronomer at the National Radio Astronomy Observatory (NRAO) was browsing through radio astronomy data collected by CSIRO's Australian Square Kilometer Array Pathfinder (ASKAP) telescope when she noticed several strange shapes that didn't seem to resemble any known type of object. Following Norris' nomenclature, she labeled them as possible WTFs. One of those was a picture of a ghostly circle of radio emission, \"hanging out in space like a cosmic smoke ring.\"\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/science/2024/01/astronomers-think-they-finally-know-origin-of-enormous-cosmic-smoke-rings/#comments", - "content": "Massive stars burn out quickly. When they die, they expel their gas as outflowing winds.", - "contentSnippet": "Massive stars burn out quickly. When they die, they expel their gas as outflowing winds.", - "guid": "https://arstechnica.com/?p=1994856", - "categories": [ - "Science", - "astronomy", - "astrophysics", - "galactic winds", - "Odd Radio Circles", - "Physics", - "science" - ], - "isoDate": "2024-01-10T17:42:13.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "SEC says X account was hacked as false post causes bitcoin price swings", - "link": "https://arstechnica.com/?p=1994996", - "pubDate": "Wed, 10 Jan 2024 16:50:55 +0000", - "content:encoded": "
\n
\n \"Gold\n

Enlarge (credit: Getty Images | Chesnot )

\n\n\n\n\n\n\n
\n

The Securities and Exchange Commission's X account was hacked yesterday and briefly displayed a post falsely announcing the approval of bitcoin exchange-traded funds (ETFs), causing an abrupt swing in bitcoin's price.

\n

\"The @SECGov X account was compromised, and an unauthorized post was posted,\" the SEC said after the hack. \"The SEC has not approved the listing and trading of spot bitcoin exchange-traded products.\" SEC Chair Gary Gensler also confirmed the hack and said the commission had not approved bitcoin ETFs.

\n

While the incident highlighted ongoing concerns about the security of government or organizational accounts on X, the social network formerly named Twitter said in a post on its safety account that there was no breach of its systems.

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | Chesnot )\n \n\n\n\n\n\n\n\nThe Securities and Exchange Commission's X account was hacked yesterday and briefly displayed a post falsely announcing the approval of bitcoin exchange-traded funds (ETFs), causing an abrupt swing in bitcoin's price.\n\"The @SECGov X account was compromised, and an unauthorized post was posted,\" the SEC said after the hack. \"The SEC has not approved the listing and trading of spot bitcoin exchange-traded products.\" SEC Chair Gary Gensler also confirmed the hack and said the commission had not approved bitcoin ETFs.\nWhile the incident highlighted ongoing concerns about the security of government or organizational accounts on X, the social network formerly named Twitter said in a post on its safety account that there was no breach of its systems.\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/sec-says-x-account-was-hacked-as-false-post-causes-bitcoin-price-swings/#comments", - "content": "X says hacker had control over phone number associated with SEC account.", - "contentSnippet": "X says hacker had control over phone number associated with SEC account.", - "guid": "https://arstechnica.com/?p=1994996", - "categories": [ - "Policy", - "bitcoin etf", - "sec bitcoin", - "sec hack" - ], - "isoDate": "2024-01-10T16:50:55.000Z" - }, - { - "creator": "Kyle Orland", - "title": "Valve now allows the \u201cvast majority\u201d of AI-powered games on Steam", - "link": "https://arstechnica.com/?p=1995005", - "pubDate": "Wed, 10 Jan 2024 16:44:45 +0000", - "content:encoded": "
\n
\n \"Can\n

Can you tell which of these seemingly identical bits of Steam iconography were generated using AI (trick question, it's none of them). (credit: Aurich Lawson)

\n\n\n\n\n\n\n
\n

Last summer, Valve told Ars Technica that it was worried about potential legal issues surrounding games made with the assistance of AI models trained on copyrighted works and that it was \"working through how to integrate [AI] into our already-existing review policies.\" Today, the company is rolling out the results of that months-long review, announcing a new set of developer policies that it says \"will enable us to release the vast majority of games that use [AI tools].\"

\n

Developers that use AI-powered tools \"in the development [or] execution of your game\" will now be allowed to put their games on Steam so long as they disclose that usage in the standard Content Survey when submitting to Steam. Such AI integration will be separated into categories of \"pre-generated\" content that is \"created with the help of AI tools during development\" (e.g., using DALL-E for in-game images) and \"live-generated\" content that is \"created with the help of AI tools while the game is running\" (e.g., using Nvidia's AI-powered NPC technology).

\n

Those disclosures will be shared on the Steam store pages for these games, which should help players who want to avoid certain types of AI content. But disclosure will not be sufficient for games that use live-generated AI for \"Adult Only Sexual Content,\" which Valve says it is \"unable to release... right now.\"

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Can you tell which of these seemingly identical bits of Steam iconography were generated using AI (trick question, it's none of them). (credit: Aurich Lawson)\n \n\n\n\n\n\n\n\nLast summer, Valve told Ars Technica that it was worried about potential legal issues surrounding games made with the assistance of AI models trained on copyrighted works and that it was \"working through how to integrate [AI] into our already-existing review policies.\" Today, the company is rolling out the results of that months-long review, announcing a new set of developer policies that it says \"will enable us to release the vast majority of games that use [AI tools].\"\nDevelopers that use AI-powered tools \"in the development [or] execution of your game\" will now be allowed to put their games on Steam so long as they disclose that usage in the standard Content Survey when submitting to Steam. Such AI integration will be separated into categories of \"pre-generated\" content that is \"created with the help of AI tools during development\" (e.g., using DALL-E for in-game images) and \"live-generated\" content that is \"created with the help of AI tools while the game is running\" (e.g., using Nvidia's AI-powered NPC technology).\nThose disclosures will be shared on the Steam store pages for these games, which should help players who want to avoid certain types of AI content. But disclosure will not be sufficient for games that use live-generated AI for \"Adult Only Sexual Content,\" which Valve says it is \"unable to release... right now.\"\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/gaming/2024/01/valve-most-games-made-with-ai-tools-are-now-welcome-on-steam/#comments", - "content": "New reporting system will enforce \"guardrails\" for \"live-generated\" AI content.", - "contentSnippet": "New reporting system will enforce \"guardrails\" for \"live-generated\" AI content.", - "guid": "https://arstechnica.com/?p=1995005", - "categories": [ - "AI", - "Gaming", - "Steam", - "vale" - ], - "isoDate": "2024-01-10T16:44:45.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Tesla\u2019s revamped Model 3 sedan has now gone on sale in the US", - "link": "https://arstechnica.com/?p=1994985", - "pubDate": "Wed, 10 Jan 2024 16:26:57 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / Look closely and you'll spot the changes to the 2024 Tesla Model 3. (credit: Tesla)

\n\n\n\n\n\n\n
\n

Tesla might not have the most expansive range among automakers\u2014the vast majority of its sales come from just two models. But it's hard to deny that the company has sold a lot of those EVs; in some areas, the only car you might see more than the Model 3 would be the similar-looking Model Y crossover. But now, the eagle-eyed among you may spot some subtle differences on new Tesla Model 3s as the company finally starts selling the restyled version here in North America.

\n

Tesla CEO Elon Musk unveiled the Model 3 in 2016, with customer deliveries starting the following year. Were Tesla any other automaker, a replacement model would almost certainly be in the works for 2025. But Tesla rarely uses the same playbook as its rivals, and it only gave the electric sedan a styling refresh after six years on sale rather than the more-usual four.

\n

The restyled 3, codenamed Highland, went on sale in China in September 2023, and European customers have been able to buy one since last October. But changes to the federal tax credit for clean vehicles may have delayed the introduction of the revised Model 3 here in the US\u2014for 2024, the car is no longer eligible for the credit.

Read 3 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Look closely and you'll spot the changes to the 2024 Tesla Model 3. (credit: Tesla)\n \n\n\n\n\n\n\n\nTesla might not have the most expansive range among automakers\u2014the vast majority of its sales come from just two models. But it's hard to deny that the company has sold a lot of those EVs; in some areas, the only car you might see more than the Model 3 would be the similar-looking Model Y crossover. But now, the eagle-eyed among you may spot some subtle differences on new Tesla Model 3s as the company finally starts selling the restyled version here in North America.\nTesla CEO Elon Musk unveiled the Model 3 in 2016, with customer deliveries starting the following year. Were Tesla any other automaker, a replacement model would almost certainly be in the works for 2025. But Tesla rarely uses the same playbook as its rivals, and it only gave the electric sedan a styling refresh after six years on sale rather than the more-usual four.\nThe restyled 3, codenamed Highland, went on sale in China in September 2023, and European customers have been able to buy one since last October. But changes to the federal tax credit for clean vehicles may have delayed the introduction of the revised Model 3 here in the US\u2014for 2024, the car is no longer eligible for the credit.\n\nRead 3 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2024/01/tesla-finally-brings-the-refreshed-2024-model-3-to-north-america/#comments", - "content": "The midlife upgrade was available in China and Europe last year.\n", - "contentSnippet": "The midlife upgrade was available in China and Europe last year.", - "guid": "https://arstechnica.com/?p=1994985", - "categories": [ - "Cars", - "Tesla", - "tesla model 3" - ], - "isoDate": "2024-01-10T16:26:57.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Biden administration awards $632M for EV charging in new funding round", - "link": "https://arstechnica.com/?p=1995441", - "pubDate": "Thu, 11 Jan 2024 19:59:27 +0000", - "content:encoded": "
\n
\n \"Young\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

The federal government's Joint Office of Energy and Transportation announced on Thursday $632 million in grants to fund clean vehicle infrastructure. Twenty-two states along with Puerto Rico will be the recipients of this first round of funding from the $2.5 billion Charging and Fueling Infrastructure program, which started accepting applications in March 2023.

\n

Although US carbon emissions fell last year, most of that was achieved through much cleaner energy generation. But when it comes to transportation's contribution to our annual carbon impact, that line is sadly still going up. Which is why it was encouraging that the Infrastructure Investment and Jobs Act of 2022 included $7.5 billion for clean vehicle infrastructure.

\n

Two-thirds of that was set aside for the National Electric Vehicle Infrastructure formula program. That $5 billion is being spent mostly on DC fast charging infrastructure, mostly at regular intervals along highway corridors, but also on charger reliability. Rather than paying for the chargers directly, the federal government is awarding it to states and metropolitan planning organizations the way it does with other highway formula funds.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nThe federal government's Joint Office of Energy and Transportation announced on Thursday $632 million in grants to fund clean vehicle infrastructure. Twenty-two states along with Puerto Rico will be the recipients of this first round of funding from the $2.5 billion Charging and Fueling Infrastructure program, which started accepting applications in March 2023.\nAlthough US carbon emissions fell last year, most of that was achieved through much cleaner energy generation. But when it comes to transportation's contribution to our annual carbon impact, that line is sadly still going up. Which is why it was encouraging that the Infrastructure Investment and Jobs Act of 2022 included $7.5 billion for clean vehicle infrastructure.\nTwo-thirds of that was set aside for the National Electric Vehicle Infrastructure formula program. That $5 billion is being spent mostly on DC fast charging infrastructure, mostly at regular intervals along highway corridors, but also on charger reliability. Rather than paying for the chargers directly, the federal government is awarding it to states and metropolitan planning organizations the way it does with other highway formula funds.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2024/01/biden-administration-awards-632m-for-ev-charging-in-new-funding-round/#comments", - "content": "The Infrastructure Investment and Jobs Act set aside $2.5 billion for underserved and rural areas.", - "contentSnippet": "The Infrastructure Investment and Jobs Act set aside $2.5 billion for underserved and rural areas.", - "guid": "https://arstechnica.com/?p=1995441", - "categories": [ - "Cars", - "CFI", - "charging infrastructure", - "infrastructure investment and jobs act", - "joint office", - "NEVI" - ], - "isoDate": "2024-01-11T19:59:27.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Google lays off \u201chundreds\u201d more employees, strips Google Assistant features", - "link": "https://arstechnica.com/?p=1995278", - "pubDate": "Thu, 11 Jan 2024 19:51:36 +0000", - "content:encoded": "
\n
\n \"Google\n

Enlarge / Google is looking pretty dilapidated these days. (credit: Aurich Lawson)

\n\n\n\n\n\n\n
\n

Google's cost-cutters are still working overtime, with more layoffs this week and cuts to Google Assistant functionality.

\n

First up, The New York Times reports Google laid off \"hundreds\" of workers in \"several divisions\" on Wednesday. Core engineering, the Google Assistant, and the hardware division all lost people. The report says that \"Google said that most of the hardware cuts affected a team working on augmented reality.\" AR cuts are eyebrow-raising since that's quickly going to be one of the highest-profile teams at the company this year, as Google, Samsung, and Qualcomm team up to battle the Apple Vision Pro. FitBit was apparently also a big loser, with 9to5Google reporting that Fitbit co-founders James Park and Eric Friedman and \"other Fitbit leaders\" have left Google.

\n

Over the years, Google has rarely laid off workers, but since January of last year, a new focus on cost-cutting has made layoffs a regular occurrence at Google. The purge started with an announcement of 12,000 layoffs in January, which took until at least March to complete. Then there were more layoffs at Alphabet companies Waymo and Everyday Robots in March, Waze layoffs in June, recruiting layoffs in September, Google News cuts in October, and now these layoffs in January. There are rumors of more layoffs happening this month, too, focusing on the ad sales division.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Google is looking pretty dilapidated these days. (credit: Aurich Lawson)\n \n\n\n\n\n\n\n\nGoogle's cost-cutters are still working overtime, with more layoffs this week and cuts to Google Assistant functionality.\nFirst up, The New York Times reports Google laid off \"hundreds\" of workers in \"several divisions\" on Wednesday. Core engineering, the Google Assistant, and the hardware division all lost people. The report says that \"Google said that most of the hardware cuts affected a team working on augmented reality.\" AR cuts are eyebrow-raising since that's quickly going to be one of the highest-profile teams at the company this year, as Google, Samsung, and Qualcomm team up to battle the Apple Vision Pro. FitBit was apparently also a big loser, with 9to5Google reporting that Fitbit co-founders James Park and Eric Friedman and \"other Fitbit leaders\" have left Google.\nOver the years, Google has rarely laid off workers, but since January of last year, a new focus on cost-cutting has made layoffs a regular occurrence at Google. The purge started with an announcement of 12,000 layoffs in January, which took until at least March to complete. Then there were more layoffs at Alphabet companies Waymo and Everyday Robots in March, Waze layoffs in June, recruiting layoffs in September, Google News cuts in October, and now these layoffs in January. There are rumors of more layoffs happening this month, too, focusing on the ad sales division.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2024/01/google-lays-off-hundreds-more-employees-strips-google-assistant-features/#comments", - "content": "Google's layoffs hit hardware, the Google Assistant, and even the AR division.", - "contentSnippet": "Google's layoffs hit hardware, the Google Assistant, and even the AR division.", - "guid": "https://arstechnica.com/?p=1995278", - "categories": [ - "Tech", - "Google Assistant", - "layoffs" - ], - "isoDate": "2024-01-11T19:51:36.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Actor paid to pose as crypto CEO \u201cdeeply sorry\u201d about $1.3 billion scam", - "link": "https://arstechnica.com/?p=1995403", - "pubDate": "Thu, 11 Jan 2024 19:29:43 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A screenshot from Jack Gamble's video outing Stephen Harrison as HyperVerse's fake CEO, posted on Gamble's \"Nobody Special Finance\" YouTube channel. (credit: Nobody Special Finance | YouTube)

\n\n\n\n\n\n\n
\n

An actor who was hired to pretend to be the highly qualified CEO of a shady, collapsed cryptocurrency hedge fund called HyperVerse has apologized after a YouTuber unmasked his real identity last week.

\n

An Englishman currently living in Thailand, Stephen Harrison confirmed to The Guardian that HyperVerse hired him to pose as CEO Steven Reece Lewis. Harrison told The Guardian that he was \"deeply sorry\" to HyperVerse investors\u2014who lost a reported $1.3 billion after buying into a cryptocurrency-mining operation that promised \"double or triple returns,\" but did not exist, Court Watch reported.

\n

Harrison claimed that he had \u201ccertainly not pocketed\u201d any portion of those funds. Instead, he told The Guardian that he was paid about $7,500 over nine months. To play the part of CEO, he was also given a \"wool and cashmere suit, two business shirts, two ties, and a pair of shoes,\" The Guardian reported.

Read 36 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A screenshot from Jack Gamble's video outing Stephen Harrison as HyperVerse's fake CEO, posted on Gamble's \"Nobody Special Finance\" YouTube channel. (credit: Nobody Special Finance | YouTube)\n \n\n\n\n\n\n\n\nAn actor who was hired to pretend to be the highly qualified CEO of a shady, collapsed cryptocurrency hedge fund called HyperVerse has apologized after a YouTuber unmasked his real identity last week.\nAn Englishman currently living in Thailand, Stephen Harrison confirmed to The Guardian that HyperVerse hired him to pose as CEO Steven Reece Lewis. Harrison told The Guardian that he was \"deeply sorry\" to HyperVerse investors\u2014who lost a reported $1.3 billion after buying into a cryptocurrency-mining operation that promised \"double or triple returns,\" but did not exist, Court Watch reported.\nHarrison claimed that he had \u201ccertainly not pocketed\u201d any portion of those funds. Instead, he told The Guardian that he was paid about $7,500 over nine months. To play the part of CEO, he was also given a \"wool and cashmere suit, two business shirts, two ties, and a pair of shoes,\" The Guardian reported.\n\nRead 36 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2024/01/actor-paid-to-pose-as-crypto-ceo-deeply-sorry-about-1-3-billion-scam/#comments", - "content": "Fake CEO denied profiting off the alleged cryptocurrency scam.", - "contentSnippet": "Fake CEO denied profiting off the alleged cryptocurrency scam.", - "guid": "https://arstechnica.com/?p=1995403", - "categories": [ - "Policy", - "cryptocurrency", - "cryptocurrency hedge fund", - "cryptocurrency mining", - "cryptocurrency scam", - "Facebook", - "hyperverse", - "pimeyes" - ], - "isoDate": "2024-01-11T19:29:43.000Z" - }, - { - "creator": "Kevin Purdy", - "title": "Those Games turns crappy mobile game ads into actually good puzzles", - "link": "https://arstechnica.com/?p=1995453", - "pubDate": "Thu, 11 Jan 2024 22:53:00 +0000", - "content:encoded": "
\n
\n \"Pin-pulling\n

Enlarge / Can you master the ornate physics and inscrutable game theory necessary to overcome this challenge? (credit: D3Publisher)

\n\n\n\n\n\n\n
\n

You've seen them. If you've tried to read almost anything on the Internet, especially on a social media site, you know these mobile game advertisements.

\n

\"Many failed before! Think you can do better?\" one reads, positioned over an auto-playing video of a simple puzzle played by an unseen, incredibly stupid hand. It pulls the wrong pin, melting the gold and drowning the king. Or it can't do elementary math, so it sends a \"10\" fighter to its death against a \"13\" creature, ignoring the \"8\" it could have picked to add up to 18. Sometimes, there are colored liquids in tubes to be poured, and they are selected with an almost elegant idiocy.

\n

They're infuriating, but you know they work, because these ads keep showing up. If you actually downloaded these games, you'd discover they were stuffed with pop-up ads, relentlessly barking micro-transactions, or they're some unrelated and cynically monetized game entirely. What if you could actually play the original bait games, for a reasonable one-time fee, crafted by a developer who was in on the joke?

Read 9 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Can you master the ornate physics and inscrutable game theory necessary to overcome this challenge? (credit: D3Publisher)\n \n\n\n\n\n\n\n\nYou've seen them. If you've tried to read almost anything on the Internet, especially on a social media site, you know these mobile game advertisements.\n\"Many failed before! Think you can do better?\" one reads, positioned over an auto-playing video of a simple puzzle played by an unseen, incredibly stupid hand. It pulls the wrong pin, melting the gold and drowning the king. Or it can't do elementary math, so it sends a \"10\" fighter to its death against a \"13\" creature, ignoring the \"8\" it could have picked to add up to 18. Sometimes, there are colored liquids in tubes to be poured, and they are selected with an almost elegant idiocy.\nThey're infuriating, but you know they work, because these ads keep showing up. If you actually downloaded these games, you'd discover they were stuffed with pop-up ads, relentlessly barking micro-transactions, or they're some unrelated and cynically monetized game entirely. What if you could actually play the original bait games, for a reasonable one-time fee, crafted by a developer who was in on the joke?\n\nRead 9 remaining paragraphs | Comments", - "dc:creator": "Kevin Purdy", - "comments": "https://arstechnica.com/gaming/2024/01/those-games-turns-crappy-mobile-game-ads-into-actually-good-puzzles/#comments", - "content": "It's pin-pulling, color-pouring, fake-but-real fun, and you only pay once.", - "contentSnippet": "It's pin-pulling, color-pouring, fake-but-real fun, and you only pay once.", - "guid": "https://arstechnica.com/?p=1995453", - "categories": [ - "Gaming", - "mobile game ads", - "Puzzle games" - ], - "isoDate": "2024-01-11T22:53:00.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Report: Deepfake porn consistently found atop Google, Bing search results", - "link": "https://arstechnica.com/?p=1995499", - "pubDate": "Thu, 11 Jan 2024 21:55:05 +0000", - "content:encoded": "
\n
\n \"Report:\n

Enlarge (credit: GeorgePeters | iStock / Getty Images Plus)

\n\n\n\n\n\n\n
\n

Popular search engines like Google and Bing are making it easy to surface nonconsensual deepfake pornography by placing it at the top of search results, NBC News reported Thursday.

\n

These controversial deepfakes superimpose faces of real women, often celebrities, onto the bodies of adult entertainers to make them appear to be engaging in real sex. Thanks in part to advances in generative AI, there is now a burgeoning black market for deepfake porn that could be discovered through a Google search, NBC News previously reported.

\n

NBC News uncovered the problem by turning off safe search, then combining the names of 36 female celebrities with obvious search terms like \"deepfakes,\" \"deepfake porn,\" and \"fake nudes.\" Bing generated links to deepfake videos in top results 35 times, while Google did so 34 times. Bing also surfaced \"fake nude photos of former teen Disney Channel female actors\" using images where actors appear to be underaged.

Read 14 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: GeorgePeters | iStock / Getty Images Plus)\n \n\n\n\n\n\n\n\nPopular search engines like Google and Bing are making it easy to surface nonconsensual deepfake pornography by placing it at the top of search results, NBC News reported Thursday.\nThese controversial deepfakes superimpose faces of real women, often celebrities, onto the bodies of adult entertainers to make them appear to be engaging in real sex. Thanks in part to advances in generative AI, there is now a burgeoning black market for deepfake porn that could be discovered through a Google search, NBC News previously reported.\nNBC News uncovered the problem by turning off safe search, then combining the names of 36 female celebrities with obvious search terms like \"deepfakes,\" \"deepfake porn,\" and \"fake nudes.\" Bing generated links to deepfake videos in top results 35 times, while Google did so 34 times. Bing also surfaced \"fake nude photos of former teen Disney Channel female actors\" using images where actors appear to be underaged.\n\nRead 14 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2024/01/report-deepfake-porn-consistently-found-atop-google-bing-search-results/#comments", - "content": "Google vows to create more safeguards to protect victims of deepfake porn.", - "contentSnippet": "Google vows to create more safeguards to protect victims of deepfake porn.", - "guid": "https://arstechnica.com/?p=1995499", - "categories": [ - "Google", - "Policy", - "Bing", - "deepfake porn", - "deepfakes", - "google" - ], - "isoDate": "2024-01-11T21:55:05.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "Astronomers found ultra-hot, Earth-sized exoplanet with a lava hemisphere", - "link": "https://arstechnica.com/?p=1995339", - "pubDate": "Thu, 11 Jan 2024 21:34:01 +0000", - "content:encoded": "
\n
\n \"Like\n

Enlarge / Like Kepler-10 b, illustrated above, newly discovered exoplanet HD 63433 d is a small, rocky planet in a tight orbit of its star. (credit: NASA/Ames/JPL-Caltech/T. Pyle)

\n\n\n\n\n\n\n
\n

Astronomers have discovered an unusual Earth-sized exoplanet they believe has a hemisphere of molten lava, with its other hemisphere tidally locked in perpetual darkness. Co-authors and study leaders Benjamin Capistrant (University of Florida) and Melinda Soares-Furtado (University of Wisconsin-Madison) presented the details yesterday at a meeting of the American Astronomical Society in New Orleans. An associated paper has just been published in The Astronomical Journal. Another paper published today in the journal Astronomy and Astrophysics by a different group described the discovery of a rare small, cold exoplanet with a massive outer companion 100 times the mass of Jupiter.

\n

As previously reported, thanks to the massive trove of exoplanets discovered by the Kepler mission, we now have a good idea of what kinds of planets are out there, where they orbit, and how common the different types are. What we lack is a good sense of what that implies in terms of the conditions on the planets themselves. Kepler can tell us how big a planet is, but it doesn't know what the planet is made of. And planets in the \"habitable zone\" around stars could be consistent with anything from a blazing hell to a frozen rock.

\n

The Transiting Exoplanet Survey Satellite\u00a0(TESS) was launched with the intention of helping us figure out what exoplanets are actually like. TESS is designed to identify planets orbiting bright stars relatively close to Earth, conditions that should allow follow-up observations to figure out their compositions and potentially those of their atmospheres.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Like Kepler-10 b, illustrated above, newly discovered exoplanet HD 63433 d is a small, rocky planet in a tight orbit of its star. (credit: NASA/Ames/JPL-Caltech/T. Pyle)\n \n\n\n\n\n\n\n\nAstronomers have discovered an unusual Earth-sized exoplanet they believe has a hemisphere of molten lava, with its other hemisphere tidally locked in perpetual darkness. Co-authors and study leaders Benjamin Capistrant (University of Florida) and Melinda Soares-Furtado (University of Wisconsin-Madison) presented the details yesterday at a meeting of the American Astronomical Society in New Orleans. An associated paper has just been published in The Astronomical Journal. Another paper published today in the journal Astronomy and Astrophysics by a different group described the discovery of a rare small, cold exoplanet with a massive outer companion 100 times the mass of Jupiter.\nAs previously reported, thanks to the massive trove of exoplanets discovered by the Kepler mission, we now have a good idea of what kinds of planets are out there, where they orbit, and how common the different types are. What we lack is a good sense of what that implies in terms of the conditions on the planets themselves. Kepler can tell us how big a planet is, but it doesn't know what the planet is made of. And planets in the \"habitable zone\" around stars could be consistent with anything from a blazing hell to a frozen rock.\nThe Transiting Exoplanet Survey Satellite\u00a0(TESS) was launched with the intention of helping us figure out what exoplanets are actually like. TESS is designed to identify planets orbiting bright stars relatively close to Earth, conditions that should allow follow-up observations to figure out their compositions and potentially those of their atmospheres.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/science/2024/01/some-like-it-hot-astronomers-spot-an-earth-sized-exoplanet-thats-half-lava/#comments", - "content": "Also: A separate team found a small, cold exoplanet with a massive outer companion.", - "contentSnippet": "Also: A separate team found a small, cold exoplanet with a massive outer companion.", - "guid": "https://arstechnica.com/?p=1995339", - "categories": [ - "Science", - "astronomy", - "astrophysics", - "exoplanets", - "lava worlds", - "Physics", - "science", - "Transiting Exoplanet Survey Satellite" - ], - "isoDate": "2024-01-11T21:34:01.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "\u201cSuch signal, much wow\u201d: Starlink\u2019s first texts via \u201ccellphone towers in space\u201d", - "link": "https://arstechnica.com/?p=1995454", - "pubDate": "Thu, 11 Jan 2024 21:03:21 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / Starlink satellites with direct-to-cell capability. (credit: SpaceX)

\n\n\n\n\n\n\n
\n

SpaceX is showing off the first text messages sent between T-Mobile phones via one of Starlink's low Earth orbit satellites. \"On Monday, January 8, the Starlink team successfully sent and received our first text messages using T-Mobile network spectrum through one of our new Direct to Cell satellites launched six days prior,\" a Starlink update said.

\n

SpaceX last week launched the first six Starlink satellites that can provide cellular transmissions to standard LTE phones. The service from what Starlink calls \"cellphone towers in space\" is expected to provide text messaging sometime this year for customers of T-Mobile in the US and carriers in other countries, with voice and data service beginning sometime in 2025.

\n

SpaceX posted a photo of the two iPhones that exchanged the texts, which included messages such as \"Such signal\" and \"Much wow.\" The process that allowed those texts to be sent was pretty complicated, Starlink said.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Starlink satellites with direct-to-cell capability. (credit: SpaceX)\n \n\n\n\n\n\n\n\nSpaceX is showing off the first text messages sent between T-Mobile phones via one of Starlink's low Earth orbit satellites. \"On Monday, January 8, the Starlink team successfully sent and received our first text messages using T-Mobile network spectrum through one of our new Direct to Cell satellites launched six days prior,\" a Starlink update said.\nSpaceX last week launched the first six Starlink satellites that can provide cellular transmissions to standard LTE phones. The service from what Starlink calls \"cellphone towers in space\" is expected to provide text messaging sometime this year for customers of T-Mobile in the US and carriers in other countries, with voice and data service beginning sometime in 2025.\nSpaceX posted a photo of the two iPhones that exchanged the texts, which included messages such as \"Such signal\" and \"Much wow.\" The process that allowed those texts to be sent was pretty complicated, Starlink said.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/starlink-shows-off-first-texts-to-t-mobile-phones-sent-via-spacex-satellite/#comments", - "content": "Starlink's Direct to Cell satellites to fill in dead spots in T-Mobile network.", - "contentSnippet": "Starlink's Direct to Cell satellites to fill in dead spots in T-Mobile network.", - "guid": "https://arstechnica.com/?p=1995454", - "categories": [ - "Policy", - "spacex starlink", - "starlink t-mobile" - ], - "isoDate": "2024-01-11T21:03:21.000Z" - }, - { - "creator": "Eric Berger", - "title": "Rocket Report: A Chinese launch you must see; Vulcan\u2019s stunning debut", - "link": "https://arstechnica.com/?p=1995251", - "pubDate": "Fri, 12 Jan 2024 13:00:32 +0000", - "content:encoded": "
\n
\n \"Vulcan\n

Enlarge / Vulcan launches from Cape Canaveral Space Force Station on Monday. (credit: United Launch Alliance)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.26 of the Rocket Report! We're just 11 days into the new year, and we've already had two stunning rocket debuts. Vulcan soared into space on Monday morning, and then a medium-lift rocket from China, Gravity-1, made a picture-perfect launch from a mobile pad in the Yellow Sea. It feels like this could be a great year for lift.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets as well as a quick look ahead at the next three launches on the calendar.

\n
\n

Vega C return-to-flight mission gets a date. The European Space Agency said it is targeting November 15 for the return to flight of the grounded Avio-built Vega C launch vehicle, European Spaceflight reports. I'll be honest. I had to double-check the calendar to make sure that it is in fact January, because that's an oddly specific date for a launch 10 months from now. But it appears there is some, ahem, flexibility in that date. ESA director of space transportation Toni Tolker-Nielsen says: \u201cThe nominal date is 15 November. There is a very detailed plan that is leading to this.\u201d

Read 22 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Vulcan launches from Cape Canaveral Space Force Station on Monday. (credit: United Launch Alliance)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.26 of the Rocket Report! We're just 11 days into the new year, and we've already had two stunning rocket debuts. Vulcan soared into space on Monday morning, and then a medium-lift rocket from China, Gravity-1, made a picture-perfect launch from a mobile pad in the Yellow Sea. It feels like this could be a great year for lift.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets as well as a quick look ahead at the next three launches on the calendar.\n\nVega C return-to-flight mission gets a date. The European Space Agency said it is targeting November 15 for the return to flight of the grounded Avio-built Vega C launch vehicle, European Spaceflight reports. I'll be honest. I had to double-check the calendar to make sure that it is in fact January, because that's an oddly specific date for a launch 10 months from now. But it appears there is some, ahem, flexibility in that date. ESA director of space transportation Toni Tolker-Nielsen says: \u201cThe nominal date is 15 November. There is a very detailed plan that is leading to this.\u201d\n\nRead 22 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2024/01/rocket-report-a-chinese-launch-you-must-see-vulcans-stunning-debut/#comments", - "content": "\"I am so proud of this team. Oh my gosh, this has been years of hard work.\"", - "contentSnippet": "\"I am so proud of this team. Oh my gosh, this has been years of hard work.\"", - "guid": "https://arstechnica.com/?p=1995251", - "categories": [ - "Science", - "Space", - "rocket report", - "space" - ], - "isoDate": "2024-01-12T13:00:32.000Z" - }, - { - "creator": "WIRED", - "title": "Child abusers are covering their tracks with better use of crypto", - "link": "https://arstechnica.com/?p=1995594", - "pubDate": "Fri, 12 Jan 2024 14:47:45 +0000", - "content:encoded": "
\n
\n \"silhouette\n

Enlarge (credit: Naufal MQ via Getty Images)

\n\n\n\n\n\n\n
\n

For those who trade in child sexual exploitation images and videos in the darkest recesses of the Internet, cryptocurrency has been both a powerful tool and a treacherous one. Bitcoin, for instance, has allowed denizens of that criminal underground to buy and sell their wares with no involvement from a bank or payment processor that might reveal their activities to law enforcement. But the public and surprisingly traceable transactions recorded in Bitcoin's blockchain have sometimes led financial investigators directly to pedophiles\u2019 doorsteps.

\n

Now, after years of evolution in that grim cat-and-mouse game, new evidence suggests that online vendors of what was once commonly called \u201cchild porn\u201d are learning to use cryptocurrency with significantly more skill and stealth\u2014and that it's helping them survive longer in the Internet's most abusive industry.

\n

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Naufal MQ via Getty Images)\n \n\n\n\n\n\n\n\nFor those who trade in child sexual exploitation images and videos in the darkest recesses of the Internet, cryptocurrency has been both a powerful tool and a treacherous one. Bitcoin, for instance, has allowed denizens of that criminal underground to buy and sell their wares with no involvement from a bank or payment processor that might reveal their activities to law enforcement. But the public and surprisingly traceable transactions recorded in Bitcoin's blockchain have sometimes led financial investigators directly to pedophiles\u2019 doorsteps.\nNow, after years of evolution in that grim cat-and-mouse game, new evidence suggests that online vendors of what was once commonly called \u201cchild porn\u201d are learning to use cryptocurrency with significantly more skill and stealth\u2014and that it's helping them survive longer in the Internet's most abusive industry.\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "WIRED", - "comments": "https://arstechnica.com/tech-policy/2024/01/child-abusers-are-covering-their-tracks-with-better-use-of-crypto/#comments", - "content": "\u201cMixers\u201d and \u201cprivacy coins\u201d like Monero enable them to launder profits, stay online.", - "contentSnippet": "\u201cMixers\u201d and \u201cprivacy coins\u201d like Monero enable them to launder profits, stay online.", - "guid": "https://arstechnica.com/?p=1995594", - "categories": [ - "Policy", - "bitcoin", - "child abuse", - "cryptocurrency", - "csam", - "Monery", - "syndication", - "Zcash" - ], - "isoDate": "2024-01-12T14:47:45.000Z" - }, - { - "creator": "WIRED", - "title": "How a 27-year-old busted the myth of Bitcoin\u2019s anonymity", - "link": "https://arstechnica.com/?p=1996584", - "pubDate": "Thu, 18 Jan 2024 11:00:06 +0000", - "content:encoded": "
\n
\n \"How\n

Enlarge (credit: Sam Rodriguez)

\n\n\n\n\n\n\n
\n

JUST OVER A DECADE AGO, Bitcoin appeared to many of its adherents to be the crypto-anarchist holy grail: truly private digital cash for the Internet.

\n

Satoshi Nakamoto, the cryptocurrency\u2019s mysterious and unidentifiable inventor, had stated in an email introducing Bitcoin that \u201cparticipants can be anonymous.\u201d And the Silk Road dark-web drug market seemed like living proof of that potential, enabling the sale of hundreds of millions of dollars in illegal drugs and other contraband for bitcoin while flaunting its impunity from law enforcement.

\n

This is the story of the revelation in late 2013 that Bitcoin was, in fact, the opposite of untraceable\u2014that its blockchain would actually allow researchers, tech companies, and law enforcement to trace and identify users with even more transparency than the existing financial system. That discovery would upend the world of cybercrime. Bitcoin tracing would, over the next few years, solve the mystery of the theft of a half-billion dollar stash of bitcoins from the world\u2019s first crypto exchange, help enable the biggest dark-web drug market takedown in history, lead to the arrest of hundreds of pedophiles around the world in the bust of the dark web\u2019s largest child sexual abuse video site, and result in the first-, second-, and third-biggest law enforcement monetary seizures in the history of the US Justice Department.

Read 65 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Sam Rodriguez)\n \n\n\n\n\n\n\n\nJUST OVER A DECADE AGO, Bitcoin appeared to many of its adherents to be the crypto-anarchist holy grail: truly private digital cash for the Internet.\nSatoshi Nakamoto, the cryptocurrency\u2019s mysterious and unidentifiable inventor, had stated in an email introducing Bitcoin that \u201cparticipants can be anonymous.\u201d And the Silk Road dark-web drug market seemed like living proof of that potential, enabling the sale of hundreds of millions of dollars in illegal drugs and other contraband for bitcoin while flaunting its impunity from law enforcement.\nThis is the story of the revelation in late 2013 that Bitcoin was, in fact, the opposite of untraceable\u2014that its blockchain would actually allow researchers, tech companies, and law enforcement to trace and identify users with even more transparency than the existing financial system. That discovery would upend the world of cybercrime. Bitcoin tracing would, over the next few years, solve the mystery of the theft of a half-billion dollar stash of bitcoins from the world\u2019s first crypto exchange, help enable the biggest dark-web drug market takedown in history, lead to the arrest of hundreds of pedophiles around the world in the bust of the dark web\u2019s largest child sexual abuse video site, and result in the first-, second-, and third-biggest law enforcement monetary seizures in the history of the US Justice Department.\n\nRead 65 remaining paragraphs | Comments", - "dc:creator": "WIRED", - "comments": "https://arstechnica.com/features/2024/01/how-a-27-year-old-busted-the-myth-of-bitcoins-anonymity/#comments", - "content": "Once, drug dealers and money launderers saw cryptocurrency as perfectly untraceable.", - "contentSnippet": "Once, drug dealers and money launderers saw cryptocurrency as perfectly untraceable.", - "guid": "https://arstechnica.com/?p=1996584", - "categories": [ - "Features", - "Policy", - "bitcoin", - "book excerpt", - "cryptocurrency", - "cybercrime", - "Monero", - "syndication" - ], - "isoDate": "2024-01-18T11:00:06.000Z" - }, - { - "creator": "Beth Mole", - "title": "Hospitals owned by private equity are harming patients, reports find", - "link": "https://arstechnica.com/?p=1996901", - "pubDate": "Thu, 18 Jan 2024 00:34:20 +0000", - "content:encoded": "
\n
\n \"Hospitals\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Private equity firms are increasingly buying hospitals across the US, and when they do, patients suffer, according to two separate reports. Specifically, the equity firms cut corners, slash services, lay off staff, lower quality of care, take on substantial debt, and reduce charity care, leading to lower ratings and more medical errors, the reports collectively find.

\n

Last week, the financial watchdog organization Private Equity Stakeholder Project (PESP) released a report delving into the state of two of the nation's largest hospital systems, Lifepoint and ScionHealth\u2014both owned by private equity firm Apollo Global Management. Through those two systems, Apollo runs 220 hospitals in 36 states, employing around 75,000 people.

\n

The report found that some of Apollo's hospitals were among the worst in their respective states, based on a ranking by The Lown Institute Hospital Index. The index ranks hospitals and health systems based on health equity, value, and outcomes, PESP notes. The hospitals also have dismal readmission rates and government rankings. The Center for Medicare and Medicaid Services (CMS) ranks hospitals on a one-to-five star system, with the national average of 3.2 stars overall and about 30 percent of hospitals at two stars or below. Apollo's overall average is 2.8 stars, with nearly 40 percent of hospitals at two stars or below.

Read 14 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nPrivate equity firms are increasingly buying hospitals across the US, and when they do, patients suffer, according to two separate reports. Specifically, the equity firms cut corners, slash services, lay off staff, lower quality of care, take on substantial debt, and reduce charity care, leading to lower ratings and more medical errors, the reports collectively find.\nLast week, the financial watchdog organization Private Equity Stakeholder Project (PESP) released a report delving into the state of two of the nation's largest hospital systems, Lifepoint and ScionHealth\u2014both owned by private equity firm Apollo Global Management. Through those two systems, Apollo runs 220 hospitals in 36 states, employing around 75,000 people.\nThe report found that some of Apollo's hospitals were among the worst in their respective states, based on a ranking by The Lown Institute Hospital Index. The index ranks hospitals and health systems based on health equity, value, and outcomes, PESP notes. The hospitals also have dismal readmission rates and government rankings. The Center for Medicare and Medicaid Services (CMS) ranks hospitals on a one-to-five star system, with the national average of 3.2 stars overall and about 30 percent of hospitals at two stars or below. Apollo's overall average is 2.8 stars, with nearly 40 percent of hospitals at two stars or below.\n\nRead 14 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/health/2024/01/hospitals-slash-staff-services-quality-of-care-when-private-equity-takes-over/#comments", - "content": "Hospital ratings dive and medical errors rise when private equity firms are in charge.", - "contentSnippet": "Hospital ratings dive and medical errors rise when private equity firms are in charge.", - "guid": "https://arstechnica.com/?p=1996901", - "categories": [ - "Health", - "Science", - "apollo", - "chuck grassley", - "hospitals", - "infections", - "medical errors", - "patient care", - "private equity" - ], - "isoDate": "2024-01-18T00:34:20.000Z" - }, - { - "creator": "Dan Goodin", - "title": "Researcher uncovers one of the biggest password dumps in recent history", - "link": "https://arstechnica.com/?p=1996879", - "pubDate": "Thu, 18 Jan 2024 00:04:26 +0000", - "content:encoded": "
\n
\n \"Calendar\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Nearly 71 million unique credentials stolen for logging into websites such as Facebook, Roblox, eBay, and Yahoo have been circulating on the Internet for at least four months, a researcher said Wednesday.

\n

Troy Hunt, operator of the Have I Been Pwned? breach notification service, said the massive amount of data was posted to a well-known underground market that brokers sales of compromised credentials. Hunt said he often pays little attention to dumps like these because they simply compile and repackage previously published passwords taken in earlier campaigns.

\n\n

Not your typical password dump

\n

Some glaring things prevented Hunt from dismissing this one, specifically the contents indicating that nearly 25 million of the passwords had never been leaked before:

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nNearly 71 million unique credentials stolen for logging into websites such as Facebook, Roblox, eBay, and Yahoo have been circulating on the Internet for at least four months, a researcher said Wednesday.\nTroy Hunt, operator of the Have I Been Pwned? breach notification service, said the massive amount of data was posted to a well-known underground market that brokers sales of compromised credentials. Hunt said he often pays little attention to dumps like these because they simply compile and repackage previously published passwords taken in earlier campaigns.\n\nPost appearing on breach site advertising the availability of naz.api password data. \n\nNot your typical password dump\nSome glaring things prevented Hunt from dismissing this one, specifically the contents indicating that nearly 25 million of the passwords had never been leaked before:\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2024/01/71-million-passwords-for-facebook-coinbase-and-others-found-for-sale/#comments", - "content": "Roughly 25 million of the passwords have never been seen before by widely used service.", - "contentSnippet": "Roughly 25 million of the passwords have never been seen before by widely used service.", - "guid": "https://arstechnica.com/?p=1996879", - "categories": [ - "Biz & IT", - "Security", - "breaches", - "data stealers", - "passwords" - ], - "isoDate": "2024-01-18T00:04:26.000Z" - }, - { - "creator": "Andrew Cunningham", - "title": "Apple lets devs use alternate in-app payment options, still takes commissions", - "link": "https://arstechnica.com/?p=1996686", - "pubDate": "Wed, 17 Jan 2024 23:39:21 +0000", - "content:encoded": "
\n
\n \"App\n

Enlarge (credit: Getty Images | NurPhoto)

\n\n\n\n\n\n\n
\n

A chapter in the ongoing Epic v. Apple court case closed yesterday when the US Supreme Court declined to hear further arguments from either company. This decision leaves the case where it was after the 9th Circuit Court of Appeals ruled on it in April 2023.

\n\n

The main issue at hand\u2014to summarize days of arguments and multiple lengthy, technical court rulings in a couple of sentences\u2014was whether Apple could continue to collect the 15\u201330 percent cut that it takes of all App Store purchases on its platforms and in-app purchases and subscriptions bought inside of those apps. The rulings, largely seen as victories for Apple, didn't open iOS or iPadOS up to third-party app stores or app sideloading as Epic had originally sought. However, the rulings establised that Apple's so-called \"anti-steering\" rules\u2014language prohibiting developers from mentioning cheaper or alternative purchasing options that might be available outside of an app\u2014were anticompetitive.

\n

Apple has updated its App Store rules to allow developers to provide external links to other payment options, technically circumventing its normal fee structure. But they come with many extra conditions that developers have to meet. And instead of paying Apple a 15 or 30 percent cut, Apple will collect a 12\u201327 percent commission instead. After factoring in the fees from whatever non-Apple payment processor these developers decide to use, the revenue they give up will remain essentially unchanged.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | NurPhoto)\n \n\n\n\n\n\n\n\nA chapter in the ongoing Epic v. Apple court case closed yesterday when the US Supreme Court declined to hear further arguments from either company. This decision leaves the case where it was after the 9th Circuit Court of Appeals ruled on it in April 2023.\nThe main issue at hand\u2014to summarize days of arguments and multiple lengthy, technical court rulings in a couple of sentences\u2014was whether Apple could continue to collect the 15\u201330 percent cut that it takes of all App Store purchases on its platforms and in-app purchases and subscriptions bought inside of those apps. The rulings, largely seen as victories for Apple, didn't open iOS or iPadOS up to third-party app stores or app sideloading as Epic had originally sought. However, the rulings establised that Apple's so-called \"anti-steering\" rules\u2014language prohibiting developers from mentioning cheaper or alternative purchasing options that might be available outside of an app\u2014were anticompetitive.\nApple has updated its App Store rules to allow developers to provide external links to other payment options, technically circumventing its normal fee structure. But they come with many extra conditions that developers have to meet. And instead of paying Apple a 15 or 30 percent cut, Apple will collect a 12\u201327 percent commission instead. After factoring in the fees from whatever non-Apple payment processor these developers decide to use, the revenue they give up will remain essentially unchanged.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Andrew Cunningham", - "comments": "https://arstechnica.com/tech-policy/2024/01/apple-lets-devs-use-alternate-in-app-payment-options-still-takes-commissions/#comments", - "content": "Devs must ask permission to use 3rd-party payments, and Apple still wants a cut.", - "contentSnippet": "Devs must ask permission to use 3rd-party payments, and Apple still wants a cut.", - "guid": "https://arstechnica.com/?p=1996686", - "categories": [ - "Apple", - "Policy", - "App Store", - "apple", - "epic", - "epic v. apple", - "in-app purchasing" - ], - "isoDate": "2024-01-17T23:39:21.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Teen sued Utah over social media law requiring curfew for minors", - "link": "https://arstechnica.com/?p=1996850", - "pubDate": "Wed, 17 Jan 2024 23:02:04 +0000", - "content:encoded": "
\n
\n \"Utah\n

Enlarge / Utah high school student Hannah Zoulek sued Utah to block the Social Media Regulation Act from taking effect March 1. (credit: thefire.org)

\n\n\n\n\n\n\n
\n

A Utah high school student, Hannah Zoulek, has joined a lawsuit, fighting to block Utah's vague social media law from taking effect on March 1.

\n

The Social Media Regulation Act requires platforms to verify user ages and then obtain parental consent for minors under 18 to maintain accounts. Once granted access to platforms, minors must be blocked from search results, and no ads can be displayed on their account. Platforms granting access will accept liability for designing any features that the state considers to be addicting or harmful to minors. The law also imposes a curfew blocking minors from accessing platforms between 10:30 pm and 6:30 am.

\n

Because the law \"fails to define what constitutes 'physical, mental, emotional, developmental, or material harms,' or what degree of harm gives rise to liability,\" platforms are left to \"guess as to what behavior crosses the line,\" the complaint said. A platform may be ruled to be causing harm if a teenager gets a headache after scrolling for too long or becomes upset after friends don't like a selfie, the complaint said, \"nobody knows.\"

Read 23 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Utah high school student Hannah Zoulek sued Utah to block the Social Media Regulation Act from taking effect March 1. (credit: thefire.org)\n \n\n\n\n\n\n\n\nA Utah high school student, Hannah Zoulek, has joined a lawsuit, fighting to block Utah's vague social media law from taking effect on March 1.\nThe Social Media Regulation Act requires platforms to verify user ages and then obtain parental consent for minors under 18 to maintain accounts. Once granted access to platforms, minors must be blocked from search results, and no ads can be displayed on their account. Platforms granting access will accept liability for designing any features that the state considers to be addicting or harmful to minors. The law also imposes a curfew blocking minors from accessing platforms between 10:30 pm and 6:30 am.\nBecause the law \"fails to define what constitutes 'physical, mental, emotional, developmental, or material harms,' or what degree of harm gives rise to liability,\" platforms are left to \"guess as to what behavior crosses the line,\" the complaint said. A platform may be ruled to be causing harm if a teenager gets a headache after scrolling for too long or becomes upset after friends don't like a selfie, the complaint said, \"nobody knows.\"\n\nRead 23 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2024/01/teen-sued-utah-over-social-media-law-requiring-curfew-for-minors/#comments", - "content": "Platforms found harming Utah kids will face \"crushing\" fines starting March 1.", - "contentSnippet": "Platforms found harming Utah kids will face \"crushing\" fines starting March 1.", - "guid": "https://arstechnica.com/?p=1996850", - "categories": [ - "Policy", - "social media", - "social media law" - ], - "isoDate": "2024-01-17T23:02:04.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Cable firms to FTC: We shouldn\u2019t have to let users cancel service with a click", - "link": "https://arstechnica.com/?p=1996827", - "pubDate": "Wed, 17 Jan 2024 22:29:33 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | RoyalFive)

\n\n\n\n\n\n\n
\n

Lobbyists for cable companies and advertisers yesterday expressed their displeasure with a proposed \"click-to-cancel\" regulation that aims to make it easier for consumers to cancel services.

\n

Federal Trade Commission Chair Lina Khan has said that changes are needed because \"some businesses too often trick consumers into paying for subscriptions they no longer want or didn't sign up for in the first place.\" The FTC proposed the new set of rules in March 2023, and comments from industry groups were taken yesterday in a hearing presided over by an administrative law judge.

\n

NCTA-The Internet & Television Association, the primary trade group for cable companies like Comcast and Charter, said the rule would make it harder to offer deals to customers who are trying to cancel.

Read 17 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | RoyalFive)\n \n\n\n\n\n\n\n\nLobbyists for cable companies and advertisers yesterday expressed their displeasure with a proposed \"click-to-cancel\" regulation that aims to make it easier for consumers to cancel services.\nFederal Trade Commission Chair Lina Khan has said that changes are needed because \"some businesses too often trick consumers into paying for subscriptions they no longer want or didn't sign up for in the first place.\" The FTC proposed the new set of rules in March 2023, and comments from industry groups were taken yesterday in a hearing presided over by an administrative law judge.\nNCTA-The Internet & Television Association, the primary trade group for cable companies like Comcast and Charter, said the rule would make it harder to offer deals to customers who are trying to cancel.\n\nRead 17 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/cable-firms-to-ftc-we-shouldnt-have-to-let-users-cancel-service-with-a-click/#comments", - "content": "Customers may \"misunderstand the consequences of canceling,\" cable lobby says.", - "contentSnippet": "Customers may \"misunderstand the consequences of canceling,\" cable lobby says.", - "guid": "https://arstechnica.com/?p=1996827", - "categories": [ - "Policy", - "Uncategorized", - "cable lobby", - "click to cancel rule" - ], - "isoDate": "2024-01-17T22:29:33.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Taking stock: Private investment in space companies rebounded in 2023", - "link": "https://arstechnica.com/?p=1996754", - "pubDate": "Wed, 17 Jan 2024 22:13:05 +0000", - "content:encoded": "
\n
\n \"Firefly\n

Enlarge / Firefly Aerospace test-fired its new Miranda engine for the first time last year. Firefly was among the top companies receiving private investment in 2023. (credit: Firefly Aerospace)

\n\n\n\n\n\n\n
\n

Private investors pumped $12.5 billion into space companies last year, around 30 percent more than the year before, but still shy of the space investment boom of 2021.

\n

This is welcome news for cash-hungry startups in the space sector, but investors are becoming more diligent about where they put their money. This has led to a consolidation frenzy, with space companies merging or acquiring one another. And more investors are choosing not to prop up unsuccessful companies, meaning some firms will be doomed to fail.

\n

The latest figures on global private investment come from Space Capital, a venture capital shop that exclusively invests in the space industry. Space Capital publishes a quarterly report outlining trends across several space industry sectors, including infrastructure, applications, distribution, and emerging markets.

Read 23 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Firefly Aerospace test-fired its new Miranda engine for the first time last year. Firefly was among the top companies receiving private investment in 2023. (credit: Firefly Aerospace)\n \n\n\n\n\n\n\n\nPrivate investors pumped $12.5 billion into space companies last year, around 30 percent more than the year before, but still shy of the space investment boom of 2021.\nThis is welcome news for cash-hungry startups in the space sector, but investors are becoming more diligent about where they put their money. This has led to a consolidation frenzy, with space companies merging or acquiring one another. And more investors are choosing not to prop up unsuccessful companies, meaning some firms will be doomed to fail.\nThe latest figures on global private investment come from Space Capital, a venture capital shop that exclusively invests in the space industry. Space Capital publishes a quarterly report outlining trends across several space industry sectors, including infrastructure, applications, distribution, and emerging markets.\n\nRead 23 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2024/01/taking-stock-private-investment-in-space-companies-rebounded-in-2023/#comments", - "content": "Money flows into commercial space stations, logistics, and lunar exploration are lagging.", - "contentSnippet": "Money flows into commercial space stations, logistics, and lunar exploration are lagging.", - "guid": "https://arstechnica.com/?p=1996754", - "categories": [ - "Space" - ], - "isoDate": "2024-01-17T22:13:05.000Z" - }, - { - "creator": "Benj Edwards", - "title": "OpenAI opens the door for military uses but maintains AI weapons ban", - "link": "https://arstechnica.com/?p=1996787", - "pubDate": "Wed, 17 Jan 2024 21:25:51 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge (credit: OpenAI / Getty Images / Benj Edwards)

\n\n\n\n\n\n\n
\n

On Tuesday, ChatGPT developer OpenAI revealed that it is collaborating with the United States Defense Department on cybersecurity projects and exploring ways to prevent veteran suicide, reports Bloomberg. OpenAI revealed the collaboration during an interview with the news outlet at the World Economic Forum in Davos. The AI company recently modified its policies, allowing for certain military applications of its technology, while maintaining prohibitions against using it to develop weapons.

\n

According to Anna Makanju, OpenAI's vice president of global affairs, \"many people thought that [a previous blanket prohibition on military applications] would prohibit many of these use cases, which people think are very much aligned with what we want to see in the world.\" OpenAI removed terms from its service agreement that previously blocked AI use in \"military and warfare\" situations, but the company still upholds a ban on its technology being used to develop weapons or to cause harm or property damage.

\n\n

Under the \"Universal Policies\" section of OpenAI's Usage Policies document, section 2 says, \"Don't use our service to harm yourself or others.\" The prohibition includes using its AI products to \"develop or use weapons.\" Changes to the terms that removed the \"military and warfare\" prohibitions appear to have been made by OpenAI on January 10.

Read 2 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: OpenAI / Getty Images / Benj Edwards)\n \n\n\n\n\n\n\n\nOn Tuesday, ChatGPT developer OpenAI revealed that it is collaborating with the United States Defense Department on cybersecurity projects and exploring ways to prevent veteran suicide, reports Bloomberg. OpenAI revealed the collaboration during an interview with the news outlet at the World Economic Forum in Davos. The AI company recently modified its policies, allowing for certain military applications of its technology, while maintaining prohibitions against using it to develop weapons.\nAccording to Anna Makanju, OpenAI's vice president of global affairs, \"many people thought that [a previous blanket prohibition on military applications] would prohibit many of these use cases, which people think are very much aligned with what we want to see in the world.\" OpenAI removed terms from its service agreement that previously blocked AI use in \"military and warfare\" situations, but the company still upholds a ban on its technology being used to develop weapons or to cause harm or property damage.\nUnder the \"Universal Policies\" section of OpenAI's Usage Policies document, section 2 says, \"Don't use our service to harm yourself or others.\" The prohibition includes using its AI products to \"develop or use weapons.\" Changes to the terms that removed the \"military and warfare\" prohibitions appear to have been made by OpenAI on January 10.\n\nRead 2 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/information-technology/2024/01/openai-reveals-partnership-with-pentagon-on-cybersecurity-suicide-prevention/#comments", - "content": "Despite new Pentagon collab, OpenAI won't allow customers to \"develop or use weapons\" with its tools.", - "contentSnippet": "Despite new Pentagon collab, OpenAI won't allow customers to \"develop or use weapons\" with its tools.", - "guid": "https://arstechnica.com/?p=1996787", - "categories": [ - "AI", - "Biz & IT", - "AI ethics", - "AI safety", - "AI weapons", - "ChatGPT", - "chatgtp", - "cybersecurity", - "large language models", - "machine learning", - "microsoft", - "Military", - "openai", - "Pentagon", - "suicide prevention", - "US Defense Department" - ], - "isoDate": "2024-01-17T21:25:51.000Z" - }, - { - "creator": "Kyle Orland", - "title": "Harmonix is ending Rock Band DLC releases after 16 years, ~2,800 songs", - "link": "https://arstechnica.com/?p=1996795", - "pubDate": "Wed, 17 Jan 2024 21:00:50 +0000", - "content:encoded": "
\n
\n \"After\n

After 16 (nearly unbroken) years of regular DLC releases, Rock Band's avatars haven't aged a day. (credit: Harmonix)

\n\n\n\n\n\n\n
\n

Here at Ars Technica, we remember covering Rock Band's weekly DLC song releases way back in 2007, when such regular content drops were still a new concept for a rhythm game. Now, Harmonix has announced the last of the series' roughly 2,800 downloadable releases will finally come on January 25, marking the end of a nearly 16-year era in music gaming history.

\n

Previously purchased DLC songs will still be playable in Rock Band 4, Harmonix's Daniel Sussman writes in an announcement post. Rock Band 4 live services, including online play, will also continue as normal, after online game modes for earlier Rock Band games were finally shut down in late 2022.

\n

\"Taking a longer look back, I see the Rock Band DLC catalog as a huge achievement in persistence and commitment,\" Sussman writes. \"Over the years we\u2019ve cleared, authored and released nearly 3,000 songs as DLC and well over 3,000 if you include all the game soundtracks. That\u2019s wild.\"

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "After 16 (nearly unbroken) years of regular DLC releases, Rock Band's avatars haven't aged a day. (credit: Harmonix)\n \n\n\n\n\n\n\n\nHere at Ars Technica, we remember covering Rock Band's weekly DLC song releases way back in 2007, when such regular content drops were still a new concept for a rhythm game. Now, Harmonix has announced the last of the series' roughly 2,800 downloadable releases will finally come on January 25, marking the end of a nearly 16-year era in music gaming history.\nPreviously purchased DLC songs will still be playable in Rock Band 4, Harmonix's Daniel Sussman writes in an announcement post. Rock Band 4 live services, including online play, will also continue as normal, after online game modes for earlier Rock Band games were finally shut down in late 2022.\n\"Taking a longer look back, I see the Rock Band DLC catalog as a huge achievement in persistence and commitment,\" Sussman writes. \"Over the years we\u2019ve cleared, authored and released nearly 3,000 songs as DLC and well over 3,000 if you include all the game soundtracks. That\u2019s wild.\"\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/gaming/2024/01/harmonix-is-ending-rock-band-dlc-releases-after-16-years-2800-songs/#comments", - "content": "Previously purchased songs will still be playable via Rock Band 4.", - "contentSnippet": "Previously purchased songs will still be playable via Rock Band 4.", - "guid": "https://arstechnica.com/?p=1996795", - "categories": [ - "Gaming", - "DLC", - "downloads", - "epic", - "Epic Games", - "Harmonix", - "Rock", - "rock band", - "song" - ], - "isoDate": "2024-01-17T21:00:50.000Z" - }, - { - "creator": "Samuel Axon", - "title": "That\u2019s never happened before: Games Done Quick video stars speedrunning dog", - "link": "https://arstechnica.com/?p=1996722", - "pubDate": "Wed, 17 Jan 2024 20:27:06 +0000", - "content:encoded": "
\n\n\n\n\n\n
\n

Peanut Butter the dog speedruns Gyromite at Awesome Games Done Quick 2024.

\n

The twice-a-year video game speedrunning and fundraising live event Games Done Quick has been a source of amazement and joy for years, but we're still saying \"that's never happened before\" even now, more than a decade after the first event.

\n

Case in point: Awesome Games Done Quick 2024, which is streaming live 24 hours a day this week on Twitch, saw the very first speedrun performed by a dog.

\n

A Shiba Inu named Peanut Butter (shortened to PB, also a speedrunner term for \"personal best\" finish time) completed a 30-minute speedrun of the 1985 Nintendo Entertainment System (NES) game Gyromite.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Peanut Butter the dog speedruns Gyromite at Awesome Games Done Quick 2024. \n\nThe twice-a-year video game speedrunning and fundraising live event Games Done Quick has been a source of amazement and joy for years, but we're still saying \"that's never happened before\" even now, more than a decade after the first event.\nCase in point: Awesome Games Done Quick 2024, which is streaming live 24 hours a day this week on Twitch, saw the very first speedrun performed by a dog.\nA Shiba Inu named Peanut Butter (shortened to PB, also a speedrunner term for \"personal best\" finish time) completed a 30-minute speedrun of the 1985 Nintendo Entertainment System (NES) game Gyromite.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Samuel Axon", - "comments": "https://arstechnica.com/gaming/2024/01/thats-never-happened-before-games-done-quick-video-stars-speedrunning-dog/#comments", - "content": "The Shiba Inu was trained to use a custom controller in a game meant for a robot.", - "contentSnippet": "The Shiba Inu was trained to use a custom controller in a game meant for a robot.", - "guid": "https://arstechnica.com/?p=1996722", - "categories": [ - "Gaming", - "games done quick", - "speedrun" - ], - "isoDate": "2024-01-17T20:27:06.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "OpenAI must defend ChatGPT fabrications after failing to defeat libel suit", - "link": "https://arstechnica.com/?p=1996758", - "pubDate": "Wed, 17 Jan 2024 20:10:18 +0000", - "content:encoded": "
\n
\n \"OpenAI\n

Enlarge (credit: Anadolu / Contributor | Anadolu)

\n\n\n\n\n\n\n
\n

OpenAI may finally have to answer for ChatGPT's \"hallucinations\" in court after a Georgia judge recently ruled against the tech company's motion to dismiss a radio host's defamation suit.

\n

OpenAI had argued that ChatGPT's output cannot be considered libel, partly because the chatbot output cannot be considered a \"publication,\" which is a key element of a defamation claim. In its motion to dismiss, OpenAI also argued that Georgia radio host Mark Walters could not prove that the company acted with actual malice or that anyone believed the allegedly libelous statements were true or that he was harmed by the alleged publication.

\n

It's too early to say whether Judge Tracie Cason found OpenAI's arguments persuasive. In her order denying OpenAI's motion to dismiss, which MediaPost shared here, Cason did not specify how she arrived at her decision, saying only that she had \"carefully\" considered arguments and applicable laws.

Read 17 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Anadolu / Contributor | Anadolu)\n \n\n\n\n\n\n\n\nOpenAI may finally have to answer for ChatGPT's \"hallucinations\" in court after a Georgia judge recently ruled against the tech company's motion to dismiss a radio host's defamation suit.\nOpenAI had argued that ChatGPT's output cannot be considered libel, partly because the chatbot output cannot be considered a \"publication,\" which is a key element of a defamation claim. In its motion to dismiss, OpenAI also argued that Georgia radio host Mark Walters could not prove that the company acted with actual malice or that anyone believed the allegedly libelous statements were true or that he was harmed by the alleged publication.\nIt's too early to say whether Judge Tracie Cason found OpenAI's arguments persuasive. In her order denying OpenAI's motion to dismiss, which MediaPost shared here, Cason did not specify how she arrived at her decision, saying only that she had \"carefully\" considered arguments and applicable laws.\n\nRead 17 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2024/01/openai-must-defend-chatgpt-fabrications-after-failing-to-defeat-libel-suit/#comments", - "content": "ChatGPT users may soon learn whether false outputs will be allowed to ruin lives.", - "contentSnippet": "ChatGPT users may soon learn whether false outputs will be allowed to ruin lives.", - "guid": "https://arstechnica.com/?p=1996758", - "categories": [ - "Policy", - "ai hallucinations", - "chatbot", - "ChatGPT", - "chatgpt fabrications", - "chatgpt hallucinations", - "defamation", - "generative ai", - "hallucinations", - "libel", - "libel law", - "openai" - ], - "isoDate": "2024-01-17T20:10:18.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "Watch Godzilla Minus One in dazzling black and white during limited US run", - "link": "https://arstechnica.com/?p=1996704", - "pubDate": "Wed, 17 Jan 2024 19:32:14 +0000", - "content:encoded": "
\n
\n \"Watch\n

Enlarge (credit: Toho Inc.)

\n\n\n\n\n\n\n
\n

The critically acclaimed film, Godzilla Minus One, hit US theaters in early December and racked up $51 million in the US alone and over $96 million globally, shooting past 2016's Shin Godzilla as the most successful Japanese-produced Godzilla film to date. The film is winding down its theatrical run, but director, writer, and VFX supervisor Takashi Yamazaki has remastered a black-and-white version of the film as an homage to the 1954 classic Godzilla, released in Japan last week. And now US audiences will have a chance to see that version when Godzilla Minus One/Minus Color arrives in theaters in the US for a limited run from January 26 through February 1.

\n

(Minor spoilers for Godzilla Minus One below.)

\n

Yamakazi spent three years writing the script for Godzilla Minus One, drawing inspiration not just from the original 1954 film but also Jaws (1975), Godzilla, Mothra and Ghidorah (2001), Shin Godzilla, and the films of Hayao Miyazaki. He opted to set the film in postwar Japan, like the original, rather than more recent events like the Fukushima nuclear accident in 2011, in order to explore themes of postwar trauma and emerging hope. The monster itself was designed to be horrifying, with spiky dorsal fins and a bellowing roar produced by recording an amplified roar in a large stadium.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Toho Inc.)\n \n\n\n\n\n\n\n\nThe critically acclaimed film, Godzilla Minus One, hit US theaters in early December and racked up $51 million in the US alone and over $96 million globally, shooting past 2016's Shin Godzilla as the most successful Japanese-produced Godzilla film to date. The film is winding down its theatrical run, but director, writer, and VFX supervisor Takashi Yamazaki has remastered a black-and-white version of the film as an homage to the 1954 classic Godzilla, released in Japan last week. And now US audiences will have a chance to see that version when Godzilla Minus One/Minus Color arrives in theaters in the US for a limited run from January 26 through February 1.\n(Minor spoilers for Godzilla Minus One below.)\nYamakazi spent three years writing the script for Godzilla Minus One, drawing inspiration not just from the original 1954 film but also Jaws (1975), Godzilla, Mothra and Ghidorah (2001), Shin Godzilla, and the films of Hayao Miyazaki. He opted to set the film in postwar Japan, like the original, rather than more recent events like the Fukushima nuclear accident in 2011, in order to explore themes of postwar trauma and emerging hope. The monster itself was designed to be horrifying, with spiky dorsal fins and a bellowing roar produced by recording an amplified roar in a large stadium.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/culture/2024/01/soon-well-be-able-to-see-godzilla-minus-one-remastered-in-black-and-white/#comments", - "content": "\"By eliminating color, a new sense of reality emerges.\"", - "contentSnippet": "\"By eliminating color, a new sense of reality emerges.\"", - "guid": "https://arstechnica.com/?p=1996704", - "categories": [ - "Culture", - "entertainment", - "films", - "Godzilla", - "Godzilla Minus One", - "Toho International" - ], - "isoDate": "2024-01-17T19:32:14.000Z" - }, - { - "creator": "John Timmer", - "title": "Explaining why a black hole produces light when ripping apart a star", - "link": "https://arstechnica.com/?p=1996716", - "pubDate": "Wed, 17 Jan 2024 18:50:37 +0000", - "content:encoded": "
\n
\n \"Image\n

Enlarge / A model of a tidal disruption, along with some observations of one. (credit: Illustration: CXC/M. Weiss; X-ray: NASA/CXC/UNH/D. Lin et al, Optical: CFHT)

\n\n\n\n\n\n\n
\n

Supermassive black holes appear to be present at the core of nearly every galaxy. Every now and again, a star wanders too close to one of these monsters and experiences what's called a tidal disruption event. The black hole's gravity rips the star to shreds, resulting in a huge burst of radiation. We've observed this happening several times now.

\n

But we don't entirely know why it happens\u2014\"it\" specifically referring to the burst of radiation. After all, stars produce radiation through fusion, and the tidal disruption results in the spaghettification of the star, effectively pulling the plug on the fusion reactions. Black holes brighten when they're feeding on material, but that process doesn't look like the sudden burst of radiation from a tidal disruption event.

\n

It turns out that we don't entirely know how the radiation is produced. There are several competing ideas, but we've not been able to figure out which one of them fits the data best. However, scientists have taken advantage of an updated software package to model a tidal disruption event and show that their improved model fits our observations pretty well.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A model of a tidal disruption, along with some observations of one. (credit: Illustration: CXC/M. Weiss; X-ray: NASA/CXC/UNH/D. Lin et al, Optical: CFHT)\n \n\n\n\n\n\n\n\nSupermassive black holes appear to be present at the core of nearly every galaxy. Every now and again, a star wanders too close to one of these monsters and experiences what's called a tidal disruption event. The black hole's gravity rips the star to shreds, resulting in a huge burst of radiation. We've observed this happening several times now.\nBut we don't entirely know why it happens\u2014\"it\" specifically referring to the burst of radiation. After all, stars produce radiation through fusion, and the tidal disruption results in the spaghettification of the star, effectively pulling the plug on the fusion reactions. Black holes brighten when they're feeding on material, but that process doesn't look like the sudden burst of radiation from a tidal disruption event.\nIt turns out that we don't entirely know how the radiation is produced. There are several competing ideas, but we've not been able to figure out which one of them fits the data best. However, scientists have taken advantage of an updated software package to model a tidal disruption event and show that their improved model fits our observations pretty well.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "John Timmer", - "comments": "https://arstechnica.com/science/2024/01/explaining-why-a-black-hole-produces-light-when-ripping-apart-a-star/#comments", - "content": "New model tracks the remains of a star looping around a black hole.", - "contentSnippet": "New model tracks the remains of a star looping around a black hole.", - "guid": "https://arstechnica.com/?p=1996716", - "categories": [ - "Science", - "astronomy", - "astrophysics", - "black holes", - "tidal disruption" - ], - "isoDate": "2024-01-17T18:50:37.000Z" - }, - { - "creator": "WIRED", - "title": "Just 10 lines of code can steal AI secrets from Apple, AMD, and Qualcomm GPUs", - "link": "https://arstechnica.com/?p=1996672", - "pubDate": "Wed, 17 Jan 2024 18:15:00 +0000", - "content:encoded": "
\n
\n \"ai\n

Enlarge (credit: MEHAU KULYK/Getty Images)

\n\n\n\n\n\n\n
\n

As more companies ramp up development of artificial intelligence systems, they are increasingly turning to graphics processing unit (GPU) chips for the computing power they need to run large language models (LLMs) and to crunch data quickly at massive scale. Between video game processing and AI, demand for GPUs has never been higher, and chipmakers are rushing to bolster supply. In new findings released today, though, researchers are highlighting a vulnerability in multiple brands and models of mainstream GPUs\u2014including Apple, Qualcomm, and AMD chips\u2014that could allow an attacker to steal large quantities of data from a GPU\u2019s memory.

\n

The silicon industry has spent years refining the security of central processing units, or CPUs, so they don\u2019t leak data in memory even when they are built to optimize for speed. However, since GPUs were designed for raw graphics processing power, they haven\u2019t been architected to the same degree with data privacy as a priority. As generative AI and other machine learning applications expand the uses of these chips, though, researchers from New York-based security firm Trail of Bits say that vulnerabilities in GPUs are an increasingly urgent concern.

\n

Read 21 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: MEHAU KULYK/Getty Images)\n \n\n\n\n\n\n\n\nAs more companies ramp up development of artificial intelligence systems, they are increasingly turning to graphics processing unit (GPU) chips for the computing power they need to run large language models (LLMs) and to crunch data quickly at massive scale. Between video game processing and AI, demand for GPUs has never been higher, and chipmakers are rushing to bolster supply. In new findings released today, though, researchers are highlighting a vulnerability in multiple brands and models of mainstream GPUs\u2014including Apple, Qualcomm, and AMD chips\u2014that could allow an attacker to steal large quantities of data from a GPU\u2019s memory.\nThe silicon industry has spent years refining the security of central processing units, or CPUs, so they don\u2019t leak data in memory even when they are built to optimize for speed. However, since GPUs were designed for raw graphics processing power, they haven\u2019t been architected to the same degree with data privacy as a priority. As generative AI and other machine learning applications expand the uses of these chips, though, researchers from New York-based security firm Trail of Bits say that vulnerabilities in GPUs are an increasingly urgent concern.\n\nRead 21 remaining paragraphs | Comments", - "dc:creator": "WIRED", - "comments": "https://arstechnica.com/security/2024/01/new-attack-steals-ai-secrets-from-gpus-made-by-apple-amd-and-qualcomm/#comments", - "content": "Patching all affected devices, which include some Macs and iPhones, may be tough.", - "contentSnippet": "Patching all affected devices, which include some Macs and iPhones, may be tough.", - "guid": "https://arstechnica.com/?p=1996672", - "categories": [ - "Security", - "AI", - "data leaks", - "GPU", - "LLMs", - "syndication" - ], - "isoDate": "2024-01-17T18:15:00.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "The Galaxy S24 gets seven years of updates, $1,300 Titanium \u201cUltra\u201d model", - "link": "https://arstechnica.com/?p=1994407", - "pubDate": "Wed, 17 Jan 2024 18:00:28 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The Galaxy S24 line. (credit: Samsung)

\n\n\n\n\n\n\n
\n

Samsung has unveiled its new flagship phones for 2024: the Galaxy S24, S24+, and S24 Ultra.\u00a0 Considering Samsung's usually conservative year-to-year changes, there are a lot of differences this year.

\n

The S24 Ultra now has a titanium body, just like the iPhone 15. It also has a \"fully flat display,\" ending years of Android's weird curved OLED panel gimmick that only served to distort the sides of the display. Samsung says the new Ultra design has \"42 percent slimmer bezels\" and a front hole-punch camera cutout that is \"11 percent smaller\" than those on the S23 Ultra. The rest of the design looks like Ultra models of past years, with rounded edges and a flat top and bottom. The bottom still houses an S-Pen for handwriting and drawing.

\n

All that titanium will cost you. The S24 Ultra is $100 more than last year, coming to an eye-popping $1,300. An iPhone 15 Pro Max is $1,200, and a Pixel 8 Pro is $1,000, so that's a tough sell.

Read 12 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The Galaxy S24 line. (credit: Samsung)\n \n\n\n\n\n\n\n\nSamsung has unveiled its new flagship phones for 2024: the Galaxy S24, S24+, and S24 Ultra.\u00a0 Considering Samsung's usually conservative year-to-year changes, there are a lot of differences this year.\nThe S24 Ultra now has a titanium body, just like the iPhone 15. It also has a \"fully flat display,\" ending years of Android's weird curved OLED panel gimmick that only served to distort the sides of the display. Samsung says the new Ultra design has \"42 percent slimmer bezels\" and a front hole-punch camera cutout that is \"11 percent smaller\" than those on the S23 Ultra. The rest of the design looks like Ultra models of past years, with rounded edges and a flat top and bottom. The bottom still houses an S-Pen for handwriting and drawing.\nAll that titanium will cost you. The S24 Ultra is $100 more than last year, coming to an eye-popping $1,300. An iPhone 15 Pro Max is $1,200, and a Pixel 8 Pro is $1,000, so that's a tough sell.\n\nRead 12 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2024/01/the-galaxy-s24-gets-seven-years-of-updates-1300-titanium-ultra-model/#comments", - "content": "The new update plan on a Qualcomm SoC is a major ecosystem change. ", - "contentSnippet": "The new update plan on a Qualcomm SoC is a major ecosystem change.", - "guid": "https://arstechnica.com/?p=1994407", - "categories": [ - "Tech" - ], - "isoDate": "2024-01-17T18:00:28.000Z" - }, - { - "creator": "Benj Edwards", - "title": "As 2024 election looms, OpenAI says it is taking steps to prevent AI abuse", - "link": "https://arstechnica.com/?p=1996606", - "pubDate": "Wed, 17 Jan 2024 17:44:39 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | Benj Edwards)

\n\n\n\n\n\n\n
\n

On Monday, ChatGPT maker OpenAI detailed its plans to prevent the misuse of its AI technologies during the upcoming elections in 2024, promising transparency in AI-generated content and enhancing access to reliable voting information. The AI developer says it is working on an approach that involves policy enforcement, collaboration with partners, and the development of new tools aimed at classifying AI-generated media.

\n\n

\"As we prepare for elections in 2024 across the world\u2019s largest democracies, our approach is to continue our platform safety work by elevating accurate voting information, enforcing measured policies, and improving transparency,\" writes OpenAI in its blog post. \"Protecting the integrity of elections requires collaboration from every corner of the democratic process, and we want to make sure our technology is not used in a way that could undermine this process.\"

\n

Initiatives proposed by OpenAI include preventing abuse by means such as deepfakes or bots imitating candidates, refining usage policies, and launching a reporting system for the public to flag potential abuses. For example, OpenAI's image generation tool, DALL-E 3, includes built-in filters that reject requests to create images of real people, including politicians. \"For years, we\u2019ve been iterating on tools to improve factual accuracy, reduce bias, and decline certain requests,\" the company stated.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | Benj Edwards)\n \n\n\n\n\n\n\n\nOn Monday, ChatGPT maker OpenAI detailed its plans to prevent the misuse of its AI technologies during the upcoming elections in 2024, promising transparency in AI-generated content and enhancing access to reliable voting information. The AI developer says it is working on an approach that involves policy enforcement, collaboration with partners, and the development of new tools aimed at classifying AI-generated media.\n\"As we prepare for elections in 2024 across the world\u2019s largest democracies, our approach is to continue our platform safety work by elevating accurate voting information, enforcing measured policies, and improving transparency,\" writes OpenAI in its blog post. \"Protecting the integrity of elections requires collaboration from every corner of the democratic process, and we want to make sure our technology is not used in a way that could undermine this process.\"\nInitiatives proposed by OpenAI include preventing abuse by means such as deepfakes or bots imitating candidates, refining usage policies, and launching a reporting system for the public to flag potential abuses. For example, OpenAI's image generation tool, DALL-E 3, includes built-in filters that reject requests to create images of real people, including politicians. \"For years, we\u2019ve been iterating on tools to improve factual accuracy, reduce bias, and decline certain requests,\" the company stated.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/information-technology/2024/01/as-2024-election-looms-openai-says-it-is-taking-steps-to-prevent-ai-abuse/#comments", - "content": "ChatGPT maker plans transparency for gen AI content and improved access to voting info.", - "contentSnippet": "ChatGPT maker plans transparency for gen AI content and improved access to voting info.", - "guid": "https://arstechnica.com/?p=1996606", - "categories": [ - "AI", - "Biz & IT", - "2024", - "2024 election", - "AI abuse", - "AI ethics", - "AI safety", - "ChatGPT", - "chatgtp", - "dall-e", - "DALL-E 3", - "deepfakes", - "image synthesis", - "large language models", - "machine learning", - "openai", - "text synthesis", - "US presidential election" - ], - "isoDate": "2024-01-17T17:44:39.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Sharing deepfake porn could lead to lengthy prison time under proposed law", - "link": "https://arstechnica.com/?p=1996611", - "pubDate": "Wed, 17 Jan 2024 16:59:37 +0000", - "content:encoded": "
\n
\n \"Sharing\n

Enlarge (credit: Georgijevic | E+)

\n\n\n\n\n\n\n
\n

The US seems to be getting serious about criminalizing deepfake pornography after teen boys at a New Jersey high school used AI image generators to create and share non-consensual fake nude images of female classmates last October.

\n

On Tuesday, Rep. Joseph Morelle (D-NY) announced that he has re-introduced the \u201cPreventing Deepfakes of Intimate Images Act,\u201d which seeks to \"prohibit the non-consensual disclosure of digitally altered intimate images.\" Under the proposed law, anyone sharing deepfake pornography without an individual's consent risks damages that could go as high as $150,000 and imprisonment of up to 10 years if sharing the images facilitates violence or impacts the proceedings of a government agency.

\n

The hope is that steep penalties will deter companies and individuals from allowing the disturbing images to be spread. It creates a criminal offense for sharing deepfake pornography \"with the intent to harass, annoy, threaten, alarm, or cause substantial harm to the finances or reputation of the depicted individual\" or with \"reckless disregard\" or \"actual knowledge\" that images will harm the individual depicted. It also provides a path for victims to sue offenders in civil court.

Read 13 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Georgijevic | E+)\n \n\n\n\n\n\n\n\nThe US seems to be getting serious about criminalizing deepfake pornography after teen boys at a New Jersey high school used AI image generators to create and share non-consensual fake nude images of female classmates last October.\nOn Tuesday, Rep. Joseph Morelle (D-NY) announced that he has re-introduced the \u201cPreventing Deepfakes of Intimate Images Act,\u201d which seeks to \"prohibit the non-consensual disclosure of digitally altered intimate images.\" Under the proposed law, anyone sharing deepfake pornography without an individual's consent risks damages that could go as high as $150,000 and imprisonment of up to 10 years if sharing the images facilitates violence or impacts the proceedings of a government agency.\nThe hope is that steep penalties will deter companies and individuals from allowing the disturbing images to be spread. It creates a criminal offense for sharing deepfake pornography \"with the intent to harass, annoy, threaten, alarm, or cause substantial harm to the finances or reputation of the depicted individual\" or with \"reckless disregard\" or \"actual knowledge\" that images will harm the individual depicted. It also provides a path for victims to sue offenders in civil court.\n\nRead 13 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2024/01/sharing-deepfake-could-lead-to-lengthy-prison-time-under-proposed-law/#comments", - "content": "Teen \u201cshouting for change\u201d after fake nude images spread at NJ high school.", - "contentSnippet": "Teen \u201cshouting for change\u201d after fake nude images spread at NJ high school.", - "guid": "https://arstechnica.com/?p=1996611", - "categories": [ - "Policy", - "ai image generated", - "AI-generated images", - "congress", - "deepfake porn", - "deepfake pornography", - "fake nude images", - "generative ai", - "New Jersey", - "sexual exploitation" - ], - "isoDate": "2024-01-17T16:59:37.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Fujitsu is sorry that its software helped send innocent people to prison", - "link": "https://arstechnica.com/?p=1996588", - "pubDate": "Wed, 17 Jan 2024 16:09:02 +0000", - "content:encoded": "
\n
\n \"Fujitsu\n

Enlarge / Paul Patterson, co-CEO of Fujitsu's European division, giving evidence to the Business and Trade Committee at the Houses of Parliament, London on January 16, 2024. (credit: Getty Images | House of Commons - PA Images)

\n\n\n\n\n\n\n
\n

Fujitsu yesterday apologized for its role in the British Post Office scandal, acknowledging that its buggy accounting software contributed to the wrongful prosecutions of hundreds of postal employees.

\n

\"Fujitsu would like to apologize for our part in this appalling miscarriage of justice,\" Paul Patterson, co-CEO of Fujitsu's European division, said in a hearing held by the UK Parliament's Business and Trade Committee. \"We were involved from the very start. We did have bugs and errors in the system and we did help the Post Office in their prosecutions of the sub-postmasters. For that we are truly sorry.\"

\n

The committee hearing focused on possible compensation for victims of what has been called \"the worst miscarriage of justice in British history.\" Patterson said that Fujitsu has \"a moral obligation\" to contribute to the compensation for victims.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Paul Patterson, co-CEO of Fujitsu's European division, giving evidence to the Business and Trade Committee at the Houses of Parliament, London on January 16, 2024. (credit: Getty Images | House of Commons - PA Images)\n \n\n\n\n\n\n\n\nFujitsu yesterday apologized for its role in the British Post Office scandal, acknowledging that its buggy accounting software contributed to the wrongful prosecutions of hundreds of postal employees.\n\"Fujitsu would like to apologize for our part in this appalling miscarriage of justice,\" Paul Patterson, co-CEO of Fujitsu's European division, said in a hearing held by the UK Parliament's Business and Trade Committee. \"We were involved from the very start. We did have bugs and errors in the system and we did help the Post Office in their prosecutions of the sub-postmasters. For that we are truly sorry.\"\nThe committee hearing focused on possible compensation for victims of what has been called \"the worst miscarriage of justice in British history.\" Patterson said that Fujitsu has \"a moral obligation\" to contribute to the compensation for victims.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/fujitsu-apologizes-for-software-bugs-that-fueled-wrongful-convictions-in-uk/#comments", - "content": "Fujitsu exec: \"Bugs and errors\" aided wrongful prosecutions of UK postal workers.", - "contentSnippet": "Fujitsu exec: \"Bugs and errors\" aided wrongful prosecutions of UK postal workers.", - "guid": "https://arstechnica.com/?p=1996588", - "categories": [ - "Policy", - "british post office scandal", - "fujitsu horizon software" - ], - "isoDate": "2024-01-17T16:09:02.000Z" - }, - { - "creator": "Eric Berger", - "title": "Meet Helios, a new class of space tug with some real muscle", - "link": "https://arstechnica.com/?p=1996443", - "pubDate": "Wed, 17 Jan 2024 14:00:16 +0000", - "content:encoded": "
\n
\n \"Artist's\n

Enlarge / Artist's concept of the Helios space tug. (credit: Impulse Space)

\n\n\n\n\n\n\n
\n

In recent years there have been a number of modest \"tugs\" brought online to ferry small satellites to designated orbits. These miniature spacecraft provide so-called last-mile service and are particularly useful for satellites that launch as a part of rideshare missions and seek to reach a different altitude or inclination than that of the primary payload.

\n

However, these space logistics vehicles, offered by various companies such as D-Orbit, Momentus, Launcher, and several others, are generally designed for satellites with a mass of a few dozen to a few hundred kilograms.

\n

What has been lacking so far is a larger in-space tug that can haul bigger satellites to more distant orbits. That's the market that a new spacecraft built by Impulse Space, Helios, intends to serve.

Read 9 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Artist's concept of the Helios space tug. (credit: Impulse Space)\n \n\n\n\n\n\n\n\nIn recent years there have been a number of modest \"tugs\" brought online to ferry small satellites to designated orbits. These miniature spacecraft provide so-called last-mile service and are particularly useful for satellites that launch as a part of rideshare missions and seek to reach a different altitude or inclination than that of the primary payload.\nHowever, these space logistics vehicles, offered by various companies such as D-Orbit, Momentus, Launcher, and several others, are generally designed for satellites with a mass of a few dozen to a few hundred kilograms.\nWhat has been lacking so far is a larger in-space tug that can haul bigger satellites to more distant orbits. That's the market that a new spacecraft built by Impulse Space, Helios, intends to serve.\n\nRead 9 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2024/01/meet-helios-a-new-class-of-space-tug-with-some-real-muscle/#comments", - "content": "\"Just give us a sip. We'll take our 14 tons and we'll be glad to pay for it.\"", - "contentSnippet": "\"Just give us a sip. We'll take our 14 tons and we'll be glad to pay for it.\"", - "guid": "https://arstechnica.com/?p=1996443", - "categories": [ - "Science", - "Space", - "in-space propulsion", - "space" - ], - "isoDate": "2024-01-17T14:00:16.000Z" - }, - { - "creator": "Ars Contributors", - "title": "BMW showed off hallucination-free AI at CES 2024", - "link": "https://arstechnica.com/?p=1996561", - "pubDate": "Wed, 17 Jan 2024 13:26:18 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: BMW)

\n\n\n\n\n\n\n
\n

The wave of AI hysteria at the 2024 CES in Las Vegas was predictable in many ways. It is, after all, the single biggest tech trend of the moment, and what startup wouldn't want to be part of that buzzy zeitgeist?

\n

To me, the widespread embrace by car manufacturers is a little more surprising. BMW, Mercedes-Benz, and Volkswagen all had AI-related announcements at CES, unexpected because, though exciting, technologies like ChatGPT have proven unreliable when it comes to minor details like delivering useful, factual information.

\n

For its implementation, BMW had a compelling solution to the problem: Take the power of a large language model, like Amazon's Alexa LLM, but only allow it to cite information from internal BMW documentation about the car.

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: BMW)\n \n\n\n\n\n\n\n\nThe wave of AI hysteria at the 2024 CES in Las Vegas was predictable in many ways. It is, after all, the single biggest tech trend of the moment, and what startup wouldn't want to be part of that buzzy zeitgeist?\nTo me, the widespread embrace by car manufacturers is a little more surprising. BMW, Mercedes-Benz, and Volkswagen all had AI-related announcements at CES, unexpected because, though exciting, technologies like ChatGPT have proven unreliable when it comes to minor details like delivering useful, factual information.\nFor its implementation, BMW had a compelling solution to the problem: Take the power of a large language model, like Amazon's Alexa LLM, but only allow it to cite information from internal BMW documentation about the car.\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/cars/2024/01/bmws-ai-powered-voice-assistant-at-ces-2024-sticks-to-the-facts/#comments", - "content": "Limited options make for better conversations.", - "contentSnippet": "Limited options make for better conversations.", - "guid": "https://arstechnica.com/?p=1996561", - "categories": [ - "Cars", - "AI", - "alexa", - "BMW", - "voice controls" - ], - "isoDate": "2024-01-17T13:26:18.000Z" - }, - { - "creator": "Jeanne Timmons", - "title": "An Alaskan mammoth and ancient humans frequented the same areas", - "link": "https://arstechnica.com/?p=1996991", - "pubDate": "Thu, 18 Jan 2024 17:16:37 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Aunt_Spray / GETTY IMAGES)

\n\n\n\n\n\n\n
\n

A single tusk is all that remains of a mammoth that lived approximately 14,000 years ago. Yet that one tusk has enabled scientists to uncover remarkable details about her life. Using ancient DNA, researchers determined her sex and how she was related to mammoths that left fossils nearby. Using analysis of isotopes found in the tusks, they recreated her approximate movements over two decades, from birth to death, learning that she frequented areas once inhabited by ancient humans.

\n

Combined with Indigenous knowledge and earlier work tracking the movements of a male mammoth, we are beginning to gain unparalleled insight into the lives of specific animals, information that has implications for future understanding of Pleistocene ecology and its extinctions.

\n

Long in the tooth

\n

Mammoth tusks are essentially one long tooth, and their growth captures significant moments throughout the mammoth\u2019s life. \"Reading\" information contained within tusks, paleontologists can, for example, determine when and if a mammoth starved, when it was pregnant or going through musth, and the season in which it died. It also contains a record of where it likely roamed throughout its life\u2014if you have the right tools.

Read 28 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Aunt_Spray / GETTY IMAGES)\n \n\n\n\n\n\n\n\nA single tusk is all that remains of a mammoth that lived approximately 14,000 years ago. Yet that one tusk has enabled scientists to uncover remarkable details about her life. Using ancient DNA, researchers determined her sex and how she was related to mammoths that left fossils nearby. Using analysis of isotopes found in the tusks, they recreated her approximate movements over two decades, from birth to death, learning that she frequented areas once inhabited by ancient humans.\nCombined with Indigenous knowledge and earlier work tracking the movements of a male mammoth, we are beginning to gain unparalleled insight into the lives of specific animals, information that has implications for future understanding of Pleistocene ecology and its extinctions.\nLong in the tooth\nMammoth tusks are essentially one long tooth, and their growth captures significant moments throughout the mammoth\u2019s life. \"Reading\" information contained within tusks, paleontologists can, for example, determine when and if a mammoth starved, when it was pregnant or going through musth, and the season in which it died. It also contains a record of where it likely roamed throughout its life\u2014if you have the right tools.\n\nRead 28 remaining paragraphs | Comments", - "dc:creator": "Jeanne Timmons", - "content": "Isotopes trapped in a tusk can be matched to those in the Alaskan landscape.", - "contentSnippet": "Isotopes trapped in a tusk can be matched to those in the Alaskan landscape.", - "guid": "https://arstechnica.com/?p=1996991", - "categories": [ - "Science", - "Alaska", - "Biology", - "isotopes", - "mammoths", - "paleontology" - ], - "isoDate": "2024-01-18T17:16:37.000Z" - }, - { - "creator": "Benj Edwards", - "title": "80 years later, GCHQ releases new images of Nazi code-breaking computer", - "link": "https://arstechnica.com/?p=1996934", - "pubDate": "Thu, 18 Jan 2024 16:48:13 +0000", - "content:encoded": "
\n
\n \"An\n

Enlarge (credit: GCHQ | Benj Edwards)

\n\n\n\n\n\n\n
\n

On Thursday, the UK's Government Communications Headquarters (GCHQ) announced the release of previously unseen images and documents related to Colossus, one of the first digital computers. The release marks the 80th anniversary of the code-breaking machines that significantly aided the Allied forces during World War II. While some in the public knew of the computers earlier, the UK did not formally acknowledge the project's existence until the 2000s.

\n\n

Colossus was not one computer but a series of computers developed by British scientists between 1943 and 1945. These 2-meter-tall electronic beasts played an instrumental role in breaking the Lorenz cipher, a code used for communications between high-ranking German officials in occupied Europe. The computers were said to have allowed allies to \"read Hitler's mind,\" according to The Sydney Morning Herald.

\n
    \n
  • \n
    \n
    \"\"
    \n

    \n A photo of a surviving Colossus computer in 1963. [credit:\n GCHQ\n ]\n

    \n
    \n
  • \n
\n\n

The technology behind Colossus was highly innovative for its time. Tommy Flowers, the engineer behind its construction, used over 2,500 vacuum tubes to create logic gates, a precursor to the semiconductor-based electronic circuits found in modern computers. While 1945's ENIAC was long considered the clear front-runner in digital computing, the revelation of Colossus' earlier existence repositioned it in computing history. (However, it's important to note that ENIAC was a general-purpose computer, and Colossus was not.)

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: GCHQ | Benj Edwards)\n \n\n\n\n\n\n\n\nOn Thursday, the UK's Government Communications Headquarters (GCHQ) announced the release of previously unseen images and documents related to Colossus, one of the first digital computers. The release marks the 80th anniversary of the code-breaking machines that significantly aided the Allied forces during World War II. While some in the public knew of the computers earlier, the UK did not formally acknowledge the project's existence until the 2000s.\nColossus was not one computer but a series of computers developed by British scientists between 1943 and 1945. These 2-meter-tall electronic beasts played an instrumental role in breaking the Lorenz cipher, a code used for communications between high-ranking German officials in occupied Europe. The computers were said to have allowed allies to \"read Hitler's mind,\" according to The Sydney Morning Herald.\n\nGCHQ\n ]\n \nThe technology behind Colossus was highly innovative for its time. Tommy Flowers, the engineer behind its construction, used over 2,500 vacuum tubes to create logic gates, a precursor to the semiconductor-based electronic circuits found in modern computers. While 1945's ENIAC was long considered the clear front-runner in digital computing, the revelation of Colossus' earlier existence repositioned it in computing history. (However, it's important to note that ENIAC was a general-purpose computer, and Colossus was not.)\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/gadgets/2024/01/new-images-of-secret-nazi-busting-computer-emerge-on-80th-anniversary/#comments", - "content": "GCHQ unveils new docs on Colossus, a 1943 marvel that let allies \"read Hitler's mind.\"", - "contentSnippet": "GCHQ unveils new docs on Colossus, a 1943 marvel that let allies \"read Hitler's mind.\"", - "guid": "https://arstechnica.com/?p=1996934", - "categories": [ - "Tech", - "British Intelligence", - "code-breaking", - "Colossus", - "GCHQ", - "mainframe computer", - "Nazi", - "nazis", - "retrotech", - "World War II" - ], - "isoDate": "2024-01-18T16:48:13.000Z" - }, - { - "creator": "Beth Mole", - "title": "1,500 kids got bogus homeopathic pellets instead of lifesaving vaccines in NY", - "link": "https://arstechnica.com/?p=1996962", - "pubDate": "Thu, 18 Jan 2024 16:06:13 +0000", - "content:encoded": "
\n
\n \"Extreme\n

Enlarge / Vials containing pills for homeopathic remedies are displayed at Ainsworths Pharmacy on August 26, 2005, in London. (credit: Getty | Peter Macdiarmid)

\n\n\n\n\n\n\n
\n

A midwife in New York administered nearly 12,500 bogus homeopathic pellets to roughly 1,500 children in lieu of providing standard, life-saving vaccines, the New York State Department of Health reported yesterday.

\n

Jeanette Breen, a licensed midwife who operated Baldwin Midwifery in Nassau County, began providing the oral pellets to children around the start of the 2019\u20132020 school year, just three months after the state eliminated non-medical exemptions for standard school immunizations. She obtained the pellets from a homeopath outside New York and sold them as a series called the \"Real Immunity Homeoprophylaxis Program.\"

\n

The program falsely claimed to protect children against deadly infectious diseases covered by standard vaccination schedules, including diphtheria, tetanus, and pertussis (covered by the DTaP or Tdap vaccine); hepatitis B; measles, mumps and rubella (MMR vaccine); polio; chickenpox; meningococcal disease; Haemophilus influenzae disease (HiB); and pneumococcal diseases (PCV).

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Vials containing pills for homeopathic remedies are displayed at Ainsworths Pharmacy on August 26, 2005, in London. (credit: Getty | Peter Macdiarmid)\n \n\n\n\n\n\n\n\nA midwife in New York administered nearly 12,500 bogus homeopathic pellets to roughly 1,500 children in lieu of providing standard, life-saving vaccines, the New York State Department of Health reported yesterday.\nJeanette Breen, a licensed midwife who operated Baldwin Midwifery in Nassau County, began providing the oral pellets to children around the start of the 2019\u20132020 school year, just three months after the state eliminated non-medical exemptions for standard school immunizations. She obtained the pellets from a homeopath outside New York and sold them as a series called the \"Real Immunity Homeoprophylaxis Program.\"\nThe program falsely claimed to protect children against deadly infectious diseases covered by standard vaccination schedules, including diphtheria, tetanus, and pertussis (covered by the DTaP or Tdap vaccine); hepatitis B; measles, mumps and rubella (MMR vaccine); polio; chickenpox; meningococcal disease; Haemophilus influenzae disease (HiB); and pneumococcal diseases (PCV).\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/science/2024/01/ny-midwife-busted-for-giving-1-5k-kids-homeopathic-pellets-instead-of-vaccines/#comments", - "content": "The midwife paid a fine and is barred from accessing the state's vaccine records system.", - "contentSnippet": "The midwife paid a fine and is barred from accessing the state's vaccine records system.", - "guid": "https://arstechnica.com/?p=1996962", - "categories": [ - "Health", - "Science", - "Uncategorized", - "homeopath", - "homeopathy", - "infectious disases", - "midwife", - "new york", - "pellets", - "routine vaccination", - "vaccination", - "vaccines" - ], - "isoDate": "2024-01-18T16:06:13.000Z" - }, - { - "creator": "Eric Berger", - "title": "Former NASA administrator hates Artemis, wants to party like it\u2019s 2008", - "link": "https://arstechnica.com/?p=1996618", - "pubDate": "Thu, 18 Jan 2024 15:40:50 +0000", - "content:encoded": "
\n
\n \"Mike\n

Enlarge / Mike Griffin's plan for a fast Moon return would use two upgraded SLS rockets. (credit: NASA)

\n\n\n\n\n\n\n
\n

On Wednesday, former NASA Administrator Michael Griffin, 73, put forward a deferential but determined countenance as he addressed a House subcommittee that was conducting a hearing on NASA's Artemis Program to return humans to the Moon.

\n

\u201cI will be direct,\" Griffin said. \"In my judgment, the Artemis Program is excessively complex, unrealistically priced, compromises crew safety, poses very high mission risk of completion, and is highly unlikely to be completed in a timely manner even if successful.\u201d

\n

Essentially, Griffin told the House Space and Aeronautics Subcommittee, NASA could not afford to faff around with a complex, partly commercial plan to put humans back on the Moon, with an eye toward long-term settlement. Instead, he said, the agency must get back to the basics and get to the Moon as fast as possible. China, which has a competing lunar program, must not be allowed to beat NASA and its allies back to the Moon. The space agency, he said, needed to \"restart\" the Moon program and chuck out all of the commercial space nonsense.

Read 19 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Mike Griffin's plan for a fast Moon return would use two upgraded SLS rockets. (credit: NASA)\n \n\n\n\n\n\n\n\nOn Wednesday, former NASA Administrator Michael Griffin, 73, put forward a deferential but determined countenance as he addressed a House subcommittee that was conducting a hearing on NASA's Artemis Program to return humans to the Moon.\n\u201cI will be direct,\" Griffin said. \"In my judgment, the Artemis Program is excessively complex, unrealistically priced, compromises crew safety, poses very high mission risk of completion, and is highly unlikely to be completed in a timely manner even if successful.\u201d\nEssentially, Griffin told the House Space and Aeronautics Subcommittee, NASA could not afford to faff around with a complex, partly commercial plan to put humans back on the Moon, with an eye toward long-term settlement. Instead, he said, the agency must get back to the basics and get to the Moon as fast as possible. China, which has a competing lunar program, must not be allowed to beat NASA and its allies back to the Moon. The space agency, he said, needed to \"restart\" the Moon program and chuck out all of the commercial space nonsense.\n\nRead 19 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2024/01/former-nasa-administrator-hates-artemis-wants-to-party-like-its-2008/#comments", - "content": "\"In my judgment, the Artemis Program is excessively complex.\"", - "contentSnippet": "\"In my judgment, the Artemis Program is excessively complex.\"", - "guid": "https://arstechnica.com/?p=1996618", - "categories": [ - "Science", - "Space" - ], - "isoDate": "2024-01-18T15:40:50.000Z" - }, - { - "creator": "Inside Climate News", - "title": "Supreme Court may overturn precedent governing climate regulations", - "link": "https://arstechnica.com/?p=1996932", - "pubDate": "Thu, 18 Jan 2024 14:39:47 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Getty Images | Rudy Sulgan)

\n\n\n\n\n\n\n
\n

The Supreme Court on Wednesday heard arguments for overturning the so-called Chevron doctrine, one of the most important principles guiding federal regulation for the past 40 years.

\n

The doctrine, named for a 1984 court case involving Environmental Protection Agency air pollution rules, has been high on the agenda of right-wing groups for years. It holds that when the meaning of a law is disputed, the federal agency\u2019s interpretation should be given deference as long as it is reasonable. Environmental groups fear that overturning the precedent will make it easier for courts to block new pollution regulations, especially those addressing climate change.

\n

The cases heard on Wednesday, Loper Bright Enterprises v. Raimondo, and Relentless, Inc. v. Department of Commerce, take on rules put into place in 2020 that require industry-funded federal observers aboard vessels in the northern Atlantic fishing for herring.

Read 21 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images | Rudy Sulgan)\n \n\n\n\n\n\n\n\nThe Supreme Court on Wednesday heard arguments for overturning the so-called Chevron doctrine, one of the most important principles guiding federal regulation for the past 40 years.\nThe doctrine, named for a 1984 court case involving Environmental Protection Agency air pollution rules, has been high on the agenda of right-wing groups for years. It holds that when the meaning of a law is disputed, the federal agency\u2019s interpretation should be given deference as long as it is reasonable. Environmental groups fear that overturning the precedent will make it easier for courts to block new pollution regulations, especially those addressing climate change.\nThe cases heard on Wednesday, Loper Bright Enterprises v. Raimondo, and Relentless, Inc. v. Department of Commerce, take on rules put into place in 2020 that require industry-funded federal observers aboard vessels in the northern Atlantic fishing for herring.\n\nRead 21 remaining paragraphs | Comments", - "dc:creator": "Inside Climate News", - "comments": "https://arstechnica.com/tech-policy/2024/01/supreme-court-may-overturn-precedent-governing-climate-regulations/#comments", - "content": "1984's Chevron doctrine has been a pillar of federal regulatory law.", - "contentSnippet": "1984's Chevron doctrine has been a pillar of federal regulatory law.", - "guid": "https://arstechnica.com/?p=1996932", - "categories": [ - "Policy", - "Chevron", - "EPA", - "regulation", - "Supreme Court", - "syndicaiton", - "syndication" - ], - "isoDate": "2024-01-18T14:39:47.000Z" - }, - { - "creator": "Eric Berger", - "title": "Daily Telescope: In which the space station proves it truly is international", - "link": "https://arstechnica.com/?p=1996568", - "pubDate": "Thu, 18 Jan 2024 13:00:04 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The International Space Station flies high. (credit: Kent Christian)

\n\n\n\n\n\n\n
\n

Good morning. It's January 18, and today, we're looking at the brightest object made by humans in the night sky.

\n

I am speaking, of course, of the International Space Station\u2014a facility that has now been flying in orbit for a quarter of a century thanks to the care of NASA, Roscosmos, the European Space Agency, and the Japanese and Canadian space agencies. Anyone who lives in the mid-latitudes or tropics on Earth can see the station from time to time.

\n

I live in Houston, so the station is near and dear to my heart. Many of the astronauts who fly to the ISS train here, and most of them live here. One of my neighbors was one of the earliest station residents. Many hundreds, if not thousands, of people who live close to me work hard to keep the station soaring high and safe. Astronauts are up there doing basic research, understanding how microgravity ravages the human body, advancing commercial space, and much more.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The International Space Station flies high. (credit: Kent Christian)\n \n\n\n\n\n\n\n\nGood morning. It's January 18, and today, we're looking at the brightest object made by humans in the night sky.\nI am speaking, of course, of the International Space Station\u2014a facility that has now been flying in orbit for a quarter of a century thanks to the care of NASA, Roscosmos, the European Space Agency, and the Japanese and Canadian space agencies. Anyone who lives in the mid-latitudes or tropics on Earth can see the station from time to time.\nI live in Houston, so the station is near and dear to my heart. Many of the astronauts who fly to the ISS train here, and most of them live here. One of my neighbors was one of the earliest station residents. Many hundreds, if not thousands, of people who live close to me work hard to keep the station soaring high and safe. Astronauts are up there doing basic research, understanding how microgravity ravages the human body, advancing commercial space, and much more.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2024/01/daily-telescope-the-space-station-soars-above-a-canal-in-eastern-france/#comments", - "content": "\"We had parked our canal boat for the night...\"", - "contentSnippet": "\"We had parked our canal boat for the night...\"", - "guid": "https://arstechnica.com/?p=1996568", - "categories": [ - "Science", - "Space", - "daily telescope" - ], - "isoDate": "2024-01-18T13:00:04.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Axiom, SpaceX launch third all-private crew mission to space station", - "link": "https://arstechnica.com/?p=1997288", - "pubDate": "Fri, 19 Jan 2024 04:08:41 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A Falcon 9 rocket lifts off from NASA's Kennedy Space Center to begin the Ax-3 commercial crew mission. (credit: Stephen Clark/Ars Technica)

\n\n\n\n\n\n\n
\n

For the third time, an all-private crew is heading for the International Space Station. The four-man team lifted off from NASA's Kennedy Space Center in Florida aboard a SpaceX Falcon 9 rocket Thursday, kicking off a 36-hour pursuit of the orbiting research laboratory. Docking is scheduled for Saturday morning.

\n

This two-week mission is managed by Houston-based Axiom Space, which is conducting private astronaut missions to the ISS as a stepping stone toward building a fully commercial space station in low-Earth orbit by the end of this decade.

\n

Axiom's third mission, called Ax-3, launched at 4:49 pm EST (21:49 UTC) Thursday. The four astronauts were strapped into their seats inside SpaceX's Dragon Freedom spacecraft atop the Falcon 9 rocket. This is the 12th time SpaceX has launched a human spaceflight mission, and could be the first of five Dragon crew missions this year.

Read 23 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A Falcon 9 rocket lifts off from NASA's Kennedy Space Center to begin the Ax-3 commercial crew mission. (credit: Stephen Clark/Ars Technica)\n \n\n\n\n\n\n\n\nFor the third time, an all-private crew is heading for the International Space Station. The four-man team lifted off from NASA's Kennedy Space Center in Florida aboard a SpaceX Falcon 9 rocket Thursday, kicking off a 36-hour pursuit of the orbiting research laboratory. Docking is scheduled for Saturday morning.\nThis two-week mission is managed by Houston-based Axiom Space, which is conducting private astronaut missions to the ISS as a stepping stone toward building a fully commercial space station in low-Earth orbit by the end of this decade.\nAxiom's third mission, called Ax-3, launched at 4:49 pm EST (21:49 UTC) Thursday. The four astronauts were strapped into their seats inside SpaceX's Dragon Freedom spacecraft atop the Falcon 9 rocket. This is the 12th time SpaceX has launched a human spaceflight mission, and could be the first of five Dragon crew missions this year.\n\nRead 23 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2024/01/all-european-crew-takes-aim-on-international-space-station/#comments", - "content": "A US-Spanish dual citizen commands a crew of Italian, Swedish, and Turkish astronauts.", - "contentSnippet": "A US-Spanish dual citizen commands a crew of Italian, Swedish, and Turkish astronauts.", - "guid": "https://arstechnica.com/?p=1997288", - "categories": [ - "Space", - "axiom", - "falcon 9", - "human spaceflight", - "international space station", - "michael lopez-alegria", - "NASA", - "spacex" - ], - "isoDate": "2024-01-19T04:08:41.000Z" - }, - { - "creator": "Timothy B. Lee", - "title": "DeepMind AI rivals the world\u2019s smartest high schoolers at geometry", - "link": "https://arstechnica.com/?p=1997186", - "pubDate": "Thu, 18 Jan 2024 23:55:00 +0000", - "content:encoded": "
\n
\n \"Demis\n

Enlarge / Demis Hassabis, CEO of DeepMind Technologies and developer of AlphaGO, attends the AI Safety Summit at Bletchley Park on November 2, 2023 in Bletchley, England. (credit: Toby Melville - WPA Pool/Getty Images)

\n\n\n\n\n\n\n
\n

A system developed by Google\u2019s DeepMind has set a new record for AI performance on geometry problems. DeepMind\u2019s AlphaGeometry managed to solve 25 of the 30 geometry problems drawn from the International Mathematical Olympiad between 2000 and 2022.

\n

That puts the software ahead of the vast majority of young mathematicians and just shy of IMO gold medalists. DeepMind estimates that the average gold medalist would have solved 26 out of 30 problems. Many view the IMO as the world\u2019s most prestigious math competition for high school students.

\n

\u201cBecause language models excel at identifying general patterns and relationships in data, they can quickly predict potentially useful constructs, but often lack the ability to reason rigorously or explain their decisions,\u201d DeepMind writes. To overcome this difficulty, DeepMind paired a language model with a more traditional symbolic deduction engine that performs algebraic and geometric reasoning.

Read 24 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Demis Hassabis, CEO of DeepMind Technologies and developer of AlphaGO, attends the AI Safety Summit at Bletchley Park on November 2, 2023 in Bletchley, England. (credit: Toby Melville - WPA Pool/Getty Images)\n \n\n\n\n\n\n\n\nA system developed by Google\u2019s DeepMind has set a new record for AI performance on geometry problems. DeepMind\u2019s AlphaGeometry managed to solve 25 of the 30 geometry problems drawn from the International Mathematical Olympiad between 2000 and 2022.\nThat puts the software ahead of the vast majority of young mathematicians and just shy of IMO gold medalists. DeepMind estimates that the average gold medalist would have solved 26 out of 30 problems. Many view the IMO as the world\u2019s most prestigious math competition for high school students.\n\u201cBecause language models excel at identifying general patterns and relationships in data, they can quickly predict potentially useful constructs, but often lack the ability to reason rigorously or explain their decisions,\u201d DeepMind writes. To overcome this difficulty, DeepMind paired a language model with a more traditional symbolic deduction engine that performs algebraic and geometric reasoning.\n\nRead 24 remaining paragraphs | Comments", - "dc:creator": "Timothy B. Lee", - "comments": "https://arstechnica.com/ai/2024/01/deepmind-ai-rivals-the-worlds-smartest-high-schoolers-at-geometry/#comments", - "content": "DeepMind solved 25 out of 30 questions\u2014compared to 26 for a human gold medalist.", - "contentSnippet": "DeepMind solved 25 out of 30 questions\u2014compared to 26 for a human gold medalist.", - "guid": "https://arstechnica.com/?p=1997186", - "categories": [ - "AI", - "Science", - "AlphaGeometry", - "alphago", - "AlphaZero", - "deepmind" - ], - "isoDate": "2024-01-18T23:55:00.000Z" - }, - { - "creator": "Benj Edwards", - "title": "Zuckerberg\u2019s AGI remarks follow trend of downplaying AI dangers", - "link": "https://arstechnica.com/?p=1997158", - "pubDate": "Thu, 18 Jan 2024 23:19:01 +0000", - "content:encoded": "
\n
\n \"Mark\n

Enlarge / Mark Zuckerberg, chief executive officer of Meta Platforms Inc., during the Meta Connect event in Menlo Park, California, on September 27, 2023. (credit: Getty Images)

\n\n\n\n\n\n\n
\n

On Thursday, Meta CEO Mark Zuckerberg announced that his company is working on building \"general intelligence\" for AI assistants and \"open sourcing it responsibly,\" and that Meta is bringing together its two major research groups (FAIR and GenAI) to make it happen.

\n\n

\"It's become clearer that the next generation of services requires building full general intelligence,\" Zuckerberg said in an Instagram Reel. \"This technology is so important, and the opportunities are so great that we should open source and make it as widely available as we responsibly can so that everyone can benefit.\"

\n

Notably, Zuckerberg did not specifically mention the phrase \"artificial general intelligence\" \"AGI\" by name in his announcement, but a report from The Verge seems to suggest he is steering in that direction. AGI is a somewhat nebulous term for a hypothetical technology that is equivalent to human intelligence in performing general tasks without the need for specific training. It's the stated goal of Meta competitor OpenAI, and one that many have feared might pose an existential threat to humanity or replace humans working intellectual jobs.

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Mark Zuckerberg, chief executive officer of Meta Platforms Inc., during the Meta Connect event in Menlo Park, California, on September 27, 2023. (credit: Getty Images)\n \n\n\n\n\n\n\n\nOn Thursday, Meta CEO Mark Zuckerberg announced that his company is working on building \"general intelligence\" for AI assistants and \"open sourcing it responsibly,\" and that Meta is bringing together its two major research groups (FAIR and GenAI) to make it happen.\n\"It's become clearer that the next generation of services requires building full general intelligence,\" Zuckerberg said in an Instagram Reel. \"This technology is so important, and the opportunities are so great that we should open source and make it as widely available as we responsibly can so that everyone can benefit.\"\nNotably, Zuckerberg did not specifically mention the phrase \"artificial general intelligence\" \"AGI\" by name in his announcement, but a report from The Verge seems to suggest he is steering in that direction. AGI is a somewhat nebulous term for a hypothetical technology that is equivalent to human intelligence in performing general tasks without the need for specific training. It's the stated goal of Meta competitor OpenAI, and one that many have feared might pose an existential threat to humanity or replace humans working intellectual jobs.\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Benj Edwards", - "comments": "https://arstechnica.com/information-technology/2024/01/zuckerberg-says-meta-is-working-on-open-source-general-intelligence-for-ai/#comments", - "content": "Zuckeberg and Altman both tamp down fear and hype with casual statements about AGI.", - "contentSnippet": "Zuckeberg and Altman both tamp down fear and hype with casual statements about AGI.", - "guid": "https://arstechnica.com/?p=1997158", - "categories": [ - "AI", - "Biz & IT", - "agi", - "AI ethics", - "AI hype", - "AI safety", - "ChatGPT", - "chatgtp", - "Facebook", - "Instagram", - "Instagram Reel", - "large language models", - "machine learning", - "Mark Zuckerberg", - "meta", - "open source", - "open source AI", - "openai", - "sam altman" - ], - "isoDate": "2024-01-18T23:19:01.000Z" - }, - { - "creator": "Scharon Harding", - "title": "Amazon plans to charge for Alexa in June\u2014unless internal conflict delays revamp", - "link": "https://arstechnica.com/?p=1997184", - "pubDate": "Thu, 18 Jan 2024 23:04:20 +0000", - "content:encoded": "
\n
\n \"Amazon\n

Enlarge / Amazon demoed future generative AI capabilties for Alexa in September. (credit: Getty)

\n\n\n\n\n\n\n
\n

\u201cIf this fails to get revenue, Alexa is in trouble.\u201d

\n

A quote from an anonymous Amazon employee in a Wednesday Business Insider report paints a dire picture. Amazon needs its upcoming subscription version of Alexa to drive revenue in ways that its voice assistant never has before.

\n

Amazon declined Ars' request for comment on the report. But the opening quote in this article could have been uttered by anyone following voice assistants for the past year-plus. All voice assistants have struggled to drive revenue since people tend to use voice assistants for basic queries, like checking the weather, rather than transactions.

Read 17 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Amazon demoed future generative AI capabilties for Alexa in September. (credit: Getty)\n \n\n\n\n\n\n\n\n\u201cIf this fails to get revenue, Alexa is in trouble.\u201d\nA quote from an anonymous Amazon employee in a Wednesday Business Insider report paints a dire picture. Amazon needs its upcoming subscription version of Alexa to drive revenue in ways that its voice assistant never has before.\nAmazon declined Ars' request for comment on the report. But the opening quote in this article could have been uttered by anyone following voice assistants for the past year-plus. All voice assistants have struggled to drive revenue since people tend to use voice assistants for basic queries, like checking the weather, rather than transactions.\n\nRead 17 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/gadgets/2024/01/alexa-is-in-trouble-paid-for-alexa-gives-inaccurate-answers-in-early-demos/#comments", - "content": "Report claims Amazon is struggling to build a subscription version of Alexa. ", - "contentSnippet": "Report claims Amazon is struggling to build a subscription version of Alexa.", - "guid": "https://arstechnica.com/?p=1997184", - "categories": [ - "AI", - "Tech", - "Amazon", - "amazon alexa", - "generative ai", - "voice assistant" - ], - "isoDate": "2024-01-18T23:04:20.000Z" - }, - { - "creator": "Kevin Purdy", - "title": "Indiana Jones and the Great Circle is a new first-person Nazi-whipping journey", - "link": "https://arstechnica.com/?p=1997200", - "pubDate": "Thu, 18 Jan 2024 22:37:13 +0000", - "content:encoded": "
\n
\n \"Indiana\n

Enlarge / CGI Harrison Ford just can't believe he's getting roped into another globe-trotting adventure. (credit: Bethesda/Machine Games)

\n\n\n\n\n\n\n
\n

Almost two years ago to this day, Bethesda told everyone its Machine Games subsidiary was working on a new Indiana Jones game, one with \"an original story.\" Now we can see what Indiana Jones and the Great Circle is\u00a0going to look like, with a gameplay trailer showing up during Microsoft's Developer Direct event, and when it's arriving: \"2024.\" You can now wishlist it on Steam and the Xbox store; it's exclusive to those platforms.

\n

Gameplay reveal trailer for Indiana Jones and the Great Circle.

\n

While the game has Harrison Ford's likeness, it's not Ford voicing your character. Troy Baker, the original voice of Joel in\u00a0The Last of Us, picks up the role of the archaeologist.

\n

From the trailer, Great Circle looks a lot like the modern Wolfenstein games that Machine Games made\u2014and that's a good thing.\u00a0The New Order and\u00a0The New Colossus\u00a0excelled at making you feel more like a human action hero than a shooting tank. They've got a knack for first-person platforming, stunts, and cinematic moments that are nowhere near as painful as in many shooters. They excel at balancing immersing you as a player and letting your character have a personality.

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / CGI Harrison Ford just can't believe he's getting roped into another globe-trotting adventure. (credit: Bethesda/Machine Games)\n \n\n\n\n\n\n\n\nAlmost two years ago to this day, Bethesda told everyone its Machine Games subsidiary was working on a new Indiana Jones game, one with \"an original story.\" Now we can see what Indiana Jones and the Great Circle is\u00a0going to look like, with a gameplay trailer showing up during Microsoft's Developer Direct event, and when it's arriving: \"2024.\" You can now wishlist it on Steam and the Xbox store; it's exclusive to those platforms.\n\nGameplay reveal trailer for Indiana Jones and the Great Circle. \n\nWhile the game has Harrison Ford's likeness, it's not Ford voicing your character. Troy Baker, the original voice of Joel in\u00a0The Last of Us, picks up the role of the archaeologist.\nFrom the trailer, Great Circle looks a lot like the modern Wolfenstein games that Machine Games made\u2014and that's a good thing.\u00a0The New Order and\u00a0The New Colossus\u00a0excelled at making you feel more like a human action hero than a shooting tank. They've got a knack for first-person platforming, stunts, and cinematic moments that are nowhere near as painful as in many shooters. They excel at balancing immersing you as a player and letting your character have a personality.\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Kevin Purdy", - "comments": "https://arstechnica.com/gaming/2024/01/first-look-at-indiana-jones-game-suggests-a-wolfenstein-like-romp/#comments", - "content": "Modern action/FPS is set inside Indy's classic post-Ark, pre-Crusade era.", - "contentSnippet": "Modern action/FPS is set inside Indy's classic post-Ark, pre-Crusade era.", - "guid": "https://arstechnica.com/?p=1997200", - "categories": [ - "Gaming", - "bethesda", - "Bethesda Game Studios", - "Indiana Jones", - "MachineGames", - "nazis" - ], - "isoDate": "2024-01-18T22:37:13.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Samsung\u2019s $1,300 phone might someday have fees for AI usage", - "link": "https://arstechnica.com/?p=1997147", - "pubDate": "Thu, 18 Jan 2024 22:23:48 +0000", - "content:encoded": "
\n
\n \"Samsung\u2019s\n

Enlarge (credit: Samsung)

\n\n\n\n\n\n\n
\n

Samsung's big Galaxy S24 launch was yesterday, and to hear Samsung tell the story, the big highlight of the event was \"Galaxy AI.\" Another view is that Galaxy AI is the usual bundle of baked-in Samsung features skinned on top of Android, but with generative AI being the hot new thing, Samsung went with AI-centric branding. Whatever value you want to place on Samsung's AI features, you might soon have to place an actual monetary value on them: Despite devices like the Galaxy S24 Ultra costing $1,300, Samsung might start charging for some of these AI phone features.

\n

The fine print on Samsung's Galaxy S24 promotional page features 44 asterisks and footnotes, and tucked away in that pile of caveats is the line \"Galaxy AI features will be provided for free until the end of 2025 on supported Samsung Galaxy devices.\" That means Samsung reserves the right to charge for Galaxy AI after 2025.

\n

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Samsung)\n \n\n\n\n\n\n\n\nSamsung's big Galaxy S24 launch was yesterday, and to hear Samsung tell the story, the big highlight of the event was \"Galaxy AI.\" Another view is that Galaxy AI is the usual bundle of baked-in Samsung features skinned on top of Android, but with generative AI being the hot new thing, Samsung went with AI-centric branding. Whatever value you want to place on Samsung's AI features, you might soon have to place an actual monetary value on them: Despite devices like the Galaxy S24 Ultra costing $1,300, Samsung might start charging for some of these AI phone features.\nThe fine print on Samsung's Galaxy S24 promotional page features 44 asterisks and footnotes, and tucked away in that pile of caveats is the line \"Galaxy AI features will be provided for free until the end of 2025 on supported Samsung Galaxy devices.\" That means Samsung reserves the right to charge for Galaxy AI after 2025.\n\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2024/01/samsung-may-charge-users-for-galaxy-s24-ai-features-after-2-years/#comments", - "content": "Samsung says Galaxy S24 AI features are \"free until the end of 2025.\"", - "contentSnippet": "Samsung says Galaxy S24 AI features are \"free until the end of 2025.\"", - "guid": "https://arstechnica.com/?p=1997147", - "categories": [ - "AI", - "Tech", - "Galaxy S24", - "Samsung" - ], - "isoDate": "2024-01-18T22:23:48.000Z" - }, - { - "creator": "Andrew Cunningham", - "title": "Bing Search shows few, if any, signs of market share increase from AI features", - "link": "https://arstechnica.com/?p=1996998", - "pubDate": "Thu, 18 Jan 2024 21:52:22 +0000", - "content:encoded": "
\n
\n \"Bing\n

Enlarge (credit: Microsoft)

\n\n\n\n\n\n\n
\n

Not quite one year ago, Microsoft announced a \"multi-year, multi-billion dollar investment\" in OpenAI, a company that had made waves in 2022 with its ChatGPT chatbot and DALL-E image creator. The next month, Microsoft announced that it was integrating a generative AI chatbot into its Bing search engine and Edge browser, and similar generative AI features were announced for Windows in the apps formerly known as Microsoft Office, Microsoft Teams, and other products.

\n

Adding AI features to Bing was meant to give it an edge over Google, and reports indicated that Google was worried enough about it to accelerate its own internal generative AI efforts. Microsoft announced in March 2023 that Bing surpassed the 100 million monthly active users mark based on interest in Bing Chat and its ilk; by Microsoft's estimates, each percentage of Google's search market share that Bing could siphon away was worth as much as $2 billion to Microsoft.

\n\n

A year later, it looks like Microsoft's AI efforts may have helped Bing on the margins, but they haven't meaningfully eroded Google's search market share, according to Bloomberg. Per Bloomberg's analysis of data from Sensor Tower, Bing usage had been down around 33 percent year over year just before the AI-powered features were added, but those numbers had rebounded by the middle of 2023.

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Microsoft)\n \n\n\n\n\n\n\n\nNot quite one year ago, Microsoft announced a \"multi-year, multi-billion dollar investment\" in OpenAI, a company that had made waves in 2022 with its ChatGPT chatbot and DALL-E image creator. The next month, Microsoft announced that it was integrating a generative AI chatbot into its Bing search engine and Edge browser, and similar generative AI features were announced for Windows in the apps formerly known as Microsoft Office, Microsoft Teams, and other products.\nAdding AI features to Bing was meant to give it an edge over Google, and reports indicated that Google was worried enough about it to accelerate its own internal generative AI efforts. Microsoft announced in March 2023 that Bing surpassed the 100 million monthly active users mark based on interest in Bing Chat and its ilk; by Microsoft's estimates, each percentage of Google's search market share that Bing could siphon away was worth as much as $2 billion to Microsoft.\nA year later, it looks like Microsoft's AI efforts may have helped Bing on the margins, but they haven't meaningfully eroded Google's search market share, according to Bloomberg. Per Bloomberg's analysis of data from Sensor Tower, Bing usage had been down around 33 percent year over year just before the AI-powered features were added, but those numbers had rebounded by the middle of 2023.\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Andrew Cunningham", - "comments": "https://arstechnica.com/ai/2024/01/report-microsofts-ai-infusion-hasnt-helped-bing-take-share-from-google/#comments", - "content": "Bing's US and worldwide market share is about the same as it has been for years.", - "contentSnippet": "Bing's US and worldwide market share is about the same as it has been for years.", - "guid": "https://arstechnica.com/?p=1996998", - "categories": [ - "AI", - "Bing", - "Bing Chat", - "ChatGPT", - "copilot", - "google", - "microsoft", - "windows 11", - "windows copilot" - ], - "isoDate": "2024-01-18T21:52:22.000Z" - }, - { - "creator": "Samuel Axon", - "title": "Netflix won\u2019t have a Vision Pro app, compromising the device\u2019s appeal", - "link": "https://arstechnica.com/?p=1997085", - "pubDate": "Thu, 18 Jan 2024 20:56:54 +0000", - "content:encoded": "
\n
\n \"Vision\n

Enlarge / Vision Pro will allow users to watch movies on a virtual TV set. (credit: Apple)

\n\n\n\n\n\n\n
\n

In the leadup to Vision Pro preorders tomorrow, Apple has seemingly been prioritizing the message that the device will be an ideal way to watch movies and TV shows. In many ways, that might be true, but there's one major caveat: Netflix.

\n

In a statement reported by Bloomberg today, Netflix revealed that it does not plan to offer an app for Vision Pro. Instead, users will have to use a web-based interface to watch the streaming service.

\n

Netflix compares the experience to the Mac, but there are a few reasons this won't be an ideal experience for users. First, the iPad and iPhone mobile apps support offline viewing of downloaded videos. That's particularly handy for when you're flying, which is arguably one of the best use cases for Vision Pro.

Read 9 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Vision Pro will allow users to watch movies on a virtual TV set. (credit: Apple)\n \n\n\n\n\n\n\n\nIn the leadup to Vision Pro preorders tomorrow, Apple has seemingly been prioritizing the message that the device will be an ideal way to watch movies and TV shows. In many ways, that might be true, but there's one major caveat: Netflix.\nIn a statement reported by Bloomberg today, Netflix revealed that it does not plan to offer an app for Vision Pro. Instead, users will have to use a web-based interface to watch the streaming service.\nNetflix compares the experience to the Mac, but there are a few reasons this won't be an ideal experience for users. First, the iPad and iPhone mobile apps support offline viewing of downloaded videos. That's particularly handy for when you're flying, which is arguably one of the best use cases for Vision Pro.\n\nRead 9 remaining paragraphs | Comments", - "dc:creator": "Samuel Axon", - "comments": "https://arstechnica.com/gadgets/2024/01/netflix-wont-have-a-vision-pro-app-compromising-the-devices-appeal/#comments", - "content": "You'll be able to watch via the web browser, but that's far from ideal.", - "contentSnippet": "You'll be able to watch via the web browser, but that's far from ideal.", - "guid": "https://arstechnica.com/?p=1997085", - "categories": [ - "Culture", - "Tech", - "Apple Vision Pro", - "Netflix", - "visionOS" - ], - "isoDate": "2024-01-18T20:56:54.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Google lays off 100 at YouTube; CEO says more layoffs are coming", - "link": "https://arstechnica.com/?p=1996984", - "pubDate": "Thu, 18 Jan 2024 19:25:35 +0000", - "content:encoded": "
\n
\n \"Google\n

Enlarge / Google is looking pretty dilapidated these days. (credit: Aurich Lawson)

\n\n\n\n\n\n\n
\n

Today's Google layoff announcement concerns YouTube, which plans to lay off 100 employees. Tubefilter was the first to report the news. This is the third Google layoff announcement in eight days (the other two were at Google Assistant/Hardware and Google Ads) and the 10th Google layoff announcement we've covered in the past 12 months. It feels like we could be doing this kind of reporting via a template by now.

\n

Google CEO Sundar Pichai says to expect more layoffs. The Verge got hold of an internal memo from Pichai to Google's remaining employees on January 10, telling them to brace for \"tough choices\" in the future and that \"to be upfront, some teams will continue to make specific resource allocation decisions throughout the year where needed, and some roles may be impacted.\" Last year Google cut 12,000 jobs in January and continued to make smaller additional cuts all year. Pichai told his employees that this year, \"these role eliminations are not at the scale of last year\u2019s reductions, and will not touch every team.\"

\n

The January 10 date of the memo means Googlers got a heads up about the Google Assistant, Hardware, Google Ads, and YouTube layoffs, but no one knows when the layoffs will stop. Making investors happy is a big factor in all these layoffs, so if you're interested in the Wall Street perspective on Google's headcount, back in March 2023, activist investor Christopher Hohn of TCI Fund Management wanted to see Pichai cut another 25,000 people after the 12,000 original layoffs. Hohn wants to see Alphabet/Google go back to 150,000 employees, which was the company headcount at the end of 2021.

Read 2 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Google is looking pretty dilapidated these days. (credit: Aurich Lawson)\n \n\n\n\n\n\n\n\nToday's Google layoff announcement concerns YouTube, which plans to lay off 100 employees. Tubefilter was the first to report the news. This is the third Google layoff announcement in eight days (the other two were at Google Assistant/Hardware and Google Ads) and the 10th Google layoff announcement we've covered in the past 12 months. It feels like we could be doing this kind of reporting via a template by now.\nGoogle CEO Sundar Pichai says to expect more layoffs. The Verge got hold of an internal memo from Pichai to Google's remaining employees on January 10, telling them to brace for \"tough choices\" in the future and that \"to be upfront, some teams will continue to make specific resource allocation decisions throughout the year where needed, and some roles may be impacted.\" Last year Google cut 12,000 jobs in January and continued to make smaller additional cuts all year. Pichai told his employees that this year, \"these role eliminations are not at the scale of last year\u2019s reductions, and will not touch every team.\"\nThe January 10 date of the memo means Googlers got a heads up about the Google Assistant, Hardware, Google Ads, and YouTube layoffs, but no one knows when the layoffs will stop. Making investors happy is a big factor in all these layoffs, so if you're interested in the Wall Street perspective on Google's headcount, back in March 2023, activist investor Christopher Hohn of TCI Fund Management wanted to see Pichai cut another 25,000 people after the 12,000 original layoffs. Hohn wants to see Alphabet/Google go back to 150,000 employees, which was the company headcount at the end of 2021.\n\nRead 2 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/google/2024/01/google-ceo-sundar-pichai-promises-another-year-of-google-layoffs/#comments", - "content": "Sundar Pichai tells employees to brace for \"tough choices... throughout the year.\"", - "contentSnippet": "Sundar Pichai tells employees to brace for \"tough choices... throughout the year.\"", - "guid": "https://arstechnica.com/?p=1996984", - "categories": [ - "Google", - "google", - "layoffs", - "Sundar Pichai" - ], - "isoDate": "2024-01-18T19:25:35.000Z" - }, - { - "creator": "Kyle Orland", - "title": "Game developer survey: 50% work at a studio already using generative AI tools", - "link": "https://arstechnica.com/?p=1997119", - "pubDate": "Thu, 18 Jan 2024 19:10:53 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The future of game development? (credit: Getty Images)

\n\n\n\n\n\n\n
\n

A new survey of thousands of game development professionals finds a near-majority saying generative AI tools are already in use at their workplace. But a significant minority of developers say their company has no interest in generative AI tools or has outright banned their use.

\n

The Game Developers Conference's 2024 State of the Industry report, released Thursday, aggregates the thoughts of over 3,000 industry professionals as of last October. While the annual survey (conducted in conjunction with research partner Omdia) has been running for 12 years, this is the first time respondents were asked directly about their use of generative AI tools such as ChatGPT, DALL-E, GitHub Copilot, and Adobe Generative Fill.

\n

Forty-nine percent of the survey's developer respondents said that generative AI tools are currently being used in their workplace. That near-majority includes 31 percent (of all respondents) that say they use those tools themselves and 18 percent that say their colleagues do.

Read 8 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The future of game development? (credit: Getty Images)\n \n\n\n\n\n\n\n\nA new survey of thousands of game development professionals finds a near-majority saying generative AI tools are already in use at their workplace. But a significant minority of developers say their company has no interest in generative AI tools or has outright banned their use.\nThe Game Developers Conference's 2024 State of the Industry report, released Thursday, aggregates the thoughts of over 3,000 industry professionals as of last October. While the annual survey (conducted in conjunction with research partner Omdia) has been running for 12 years, this is the first time respondents were asked directly about their use of generative AI tools such as ChatGPT, DALL-E, GitHub Copilot, and Adobe Generative Fill.\nForty-nine percent of the survey's developer respondents said that generative AI tools are currently being used in their workplace. That near-majority includes 31 percent (of all respondents) that say they use those tools themselves and 18 percent that say their colleagues do.\n\nRead 8 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/gaming/2024/01/game-developer-survey-50-work-at-a-studio-already-using-generative-ai-tools/#comments", - "content": "But 84% of devs are at least somewhat concerned about ethical use of those tools.", - "contentSnippet": "But 84% of devs are at least somewhat concerned about ethical use of those tools.", - "guid": "https://arstechnica.com/?p=1997119", - "categories": [ - "AI", - "Gaming", - "Artificial Intelligence", - "game development", - "generative ai", - "tools" - ], - "isoDate": "2024-01-18T19:10:53.000Z" - }, - { - "creator": "Kevin Purdy", - "title": "Figma\u2019s Creator Micro made me a macro pad person with its colorful, clicky keys", - "link": "https://arstechnica.com/?p=1996996", - "pubDate": "Thu, 18 Jan 2024 18:49:25 +0000", - "content:encoded": "
\n
\n \"Creator\n

Enlarge / It's coded for designers, quite literally, but the Figma Creator Micro is just a rebranded version of the stock Creator Micro from Work Louder. It is quite colorful, though. (credit: Figma)

\n\n\n\n\n\n\n
\n

A number of my friends, friends who aren\u2019t streamers, have picked up Elgato\u2019s Stream Decks. I can understand the impulse to have shortcuts, automation triggers, and fiddly little knobs within arm\u2019s reach, without expanding the keyboard itself. But the Stream Deck\u2019s customizable icons, upright nature, and streaming-focused app support make it a non-starter for my physical desktop. I\u2019m a clicky keyboard person, even if I can see some intriguing non-QWERTY possibilities.

\n

I hadn\u2019t considered looking further into a secondary keyboard until I noticed that the makers of interface design tool Figma had collaborated with Work Louder on a custom tiny keyboard, the Figma Creator Micro. It\u2019s a version of Work Louder\u2019s standard Creator Micro, done up with a Figma-style color scheme and set up with four layers of shortcuts most useful inside that app, for a total of 48. It\u2019s mechanical, it\u2019s colorful, and it\u2014or its more standardized cousin\u2014might do a good bit toward improving your workflow.

\n

Figma sent me a sample of its Creator Micro to test it out. I do not design interfaces, nor use Figma, but for all purposes, you could consider this to also be a test run of the standard Creator Micro. The two are functionally identical, minus the looks, and the pre-programming and custom shortcut keycaps included with the Figma version. Mine came with the \u201cClicky\u201d (Kailh White) keys, though \u201cSilent\u201d (Kailh Brown) is an option.

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / It's coded for designers, quite literally, but the Figma Creator Micro is just a rebranded version of the stock Creator Micro from Work Louder. It is quite colorful, though. (credit: Figma)\n \n\n\n\n\n\n\n\nA number of my friends, friends who aren\u2019t streamers, have picked up Elgato\u2019s Stream Decks. I can understand the impulse to have shortcuts, automation triggers, and fiddly little knobs within arm\u2019s reach, without expanding the keyboard itself. But the Stream Deck\u2019s customizable icons, upright nature, and streaming-focused app support make it a non-starter for my physical desktop. I\u2019m a clicky keyboard person, even if I can see some intriguing non-QWERTY possibilities.\nI hadn\u2019t considered looking further into a secondary keyboard until I noticed that the makers of interface design tool Figma had collaborated with Work Louder on a custom tiny keyboard, the Figma Creator Micro. It\u2019s a version of Work Louder\u2019s standard Creator Micro, done up with a Figma-style color scheme and set up with four layers of shortcuts most useful inside that app, for a total of 48. It\u2019s mechanical, it\u2019s colorful, and it\u2014or its more standardized cousin\u2014might do a good bit toward improving your workflow.\nFigma sent me a sample of its Creator Micro to test it out. I do not design interfaces, nor use Figma, but for all purposes, you could consider this to also be a test run of the standard Creator Micro. The two are functionally identical, minus the looks, and the pre-programming and custom shortcut keycaps included with the Figma version. Mine came with the \u201cClicky\u201d (Kailh White) keys, though \u201cSilent\u201d (Kailh Brown) is an option.\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Kevin Purdy", - "comments": "https://arstechnica.com/gadgets/2024/01/figmas-creator-micro-made-me-a-macro-pad-person-with-its-colorful-clicky-keys/#comments", - "content": "Besides being a fun tool, this pad's layers work great for OS-switching.", - "contentSnippet": "Besides being a fun tool, this pad's layers work great for OS-switching.", - "guid": "https://arstechnica.com/?p=1996996", - "categories": [ - "Tech", - "creator micro", - "figma", - "Glowing keyboards", - "Keyboards", - "macro pad", - "mechanical keyboards", - "work louder" - ], - "isoDate": "2024-01-18T18:49:25.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "TSMC predicts delays, less advanced chips at second Arizona fab", - "link": "https://arstechnica.com/?p=1997084", - "pubDate": "Thu, 18 Jan 2024 18:36:01 +0000", - "content:encoded": "
\n
\n US President Joe Biden speaks during a \"First Tool-In\" ceremony at the Taiwan Semiconductor Manufacturing Co. facility under construction in Phoenix, Arizona, US, on Tuesday, Dec. 6, 2022. TSMC today announced plans to boost its investment in the state to $40 billion and construct a second production facility, following major customers urging the Taiwanese chipmaker to build more advanced semiconductors in the US. \n

Enlarge / US President Joe Biden speaks during a \"First Tool-In\" ceremony at the Taiwan Semiconductor Manufacturing Co. facility under construction in Phoenix, Arizona, US, on Tuesday, Dec. 6, 2022. TSMC today announced plans to boost its investment in the state to $40 billion and construct a second production facility, following major customers urging the Taiwanese chipmaker to build more advanced semiconductors in the US. (credit: Bloomberg / Contributor | Bloomberg)

\n\n\n\n\n\n\n
\n

President Joe Biden's plan to expand America's command of the global chips market hit another setback Thursday when Taiwan Semiconductor Manufacturing Company (TSMC) Chairman Mark Liu announced that he anticipates significant delays at the company's second chips plant in Arizona.

\n

This news follows previous delays announced last year at TSMC's first chips plant, which Liu partly blamed on US workers lacking specialized skills. At Thursday's news conference, Liu \"reiterated\" those complaints, Bloomberg reported, claiming that TSMC is still struggling to hire skilled workers in Arizona.

\n

According to Liu, TSMC's second Arizona plant\u2014which is supposed to become the most advanced facility in the US\u2014likely won't start volume production of advanced chips until 2027 or 2028. That's potentially two years longer than initial projections suggesting that production would start in 2026.

Read 18 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / US President Joe Biden speaks during a \"First Tool-In\" ceremony at the Taiwan Semiconductor Manufacturing Co. facility under construction in Phoenix, Arizona, US, on Tuesday, Dec. 6, 2022. TSMC today announced plans to boost its investment in the state to $40 billion and construct a second production facility, following major customers urging the Taiwanese chipmaker to build more advanced semiconductors in the US. (credit: Bloomberg / Contributor | Bloomberg)\n \n\n\n\n\n\n\n\nPresident Joe Biden's plan to expand America's command of the global chips market hit another setback Thursday when Taiwan Semiconductor Manufacturing Company (TSMC) Chairman Mark Liu announced that he anticipates significant delays at the company's second chips plant in Arizona.\nThis news follows previous delays announced last year at TSMC's first chips plant, which Liu partly blamed on US workers lacking specialized skills. At Thursday's news conference, Liu \"reiterated\" those complaints, Bloomberg reported, claiming that TSMC is still struggling to hire skilled workers in Arizona.\nAccording to Liu, TSMC's second Arizona plant\u2014which is supposed to become the most advanced facility in the US\u2014likely won't start volume production of advanced chips until 2027 or 2028. That's potentially two years longer than initial projections suggesting that production would start in 2026.\n\nRead 18 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2024/01/bidens-plan-to-dominate-chips-market-may-face-delays-downgrades-at-tsmc-fabs/#comments", - "content": "US expected to speed up pace of Chips Act grants in first half of 2024.", - "contentSnippet": "US expected to speed up pace of Chips Act grants in first half of 2024.", - "guid": "https://arstechnica.com/?p=1997084", - "categories": [ - "Policy", - "arizona", - "chips fab", - "chips shortage", - "semiconductors", - "Taiwan Semiconductor Manufacturing Company", - "TSMC" - ], - "isoDate": "2024-01-18T18:36:01.000Z" - }, - { - "creator": "Scharon Harding", - "title": "Apple Watch no longer sold with blood oxygen monitoring after patent battle loss", - "link": "https://arstechnica.com/?p=1997001", - "pubDate": "Thu, 18 Jan 2024 18:15:21 +0000", - "content:encoded": "
\n
\n \"Apple\n

Enlarge / The Apple Watch Ultra 2. (credit: Apple)

\n\n\n\n\n\n\n
\n

Starting today, if you buy an Apple Watch Series 9 or Watch Ultra 2 it won\u2019t be able to tell you your blood oxygen levels, a feature that Apple heavily touted when first introducing the capability in 2020. Although the watches will be less capable than watches of the same model sold before today, Apple is selling the pared-down watches at the same prices as before.

\n

On Wednesday, the US Court of Appeals for the Federal Circuit denied [PDF] Apple\u2019s request that an import ban on the smartwatches be lifted for the duration of Apple\u2019s appeal of the ruling that blocked the watches. Apple expects its appeal to take at least a year to be resolved.

\n

In its ruling, the court said:

Read 16 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The Apple Watch Ultra 2. (credit: Apple)\n \n\n\n\n\n\n\n\nStarting today, if you buy an Apple Watch Series 9 or Watch Ultra 2 it won\u2019t be able to tell you your blood oxygen levels, a feature that Apple heavily touted when first introducing the capability in 2020. Although the watches will be less capable than watches of the same model sold before today, Apple is selling the pared-down watches at the same prices as before.\nOn Wednesday, the US Court of Appeals for the Federal Circuit denied [PDF] Apple\u2019s request that an import ban on the smartwatches be lifted for the duration of Apple\u2019s appeal of the ruling that blocked the watches. Apple expects its appeal to take at least a year to be resolved.\nIn its ruling, the court said:\n\nRead 16 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/gadgets/2024/01/apple-watch-no-longer-sold-with-blood-oxygen-monitoring-after-patent-battle-loss/#comments", - "content": "Apple removes Series 9, Ultra 2 patent-infringing feature to avoid import ban. ", - "contentSnippet": "Apple removes Series 9, Ultra 2 patent-infringing feature to avoid import ban.", - "guid": "https://arstechnica.com/?p=1997001", - "categories": [ - "Apple", - "Policy", - "Tech", - "apple", - "apple watch", - "patent infringement" - ], - "isoDate": "2024-01-18T18:15:21.000Z" - }, - { - "creator": "Jonathan M. Gitlin", - "title": "Ford pushes the off-road button with F-150 Lightning Switchgear", - "link": "https://arstechnica.com/?p=1997045", - "pubDate": "Thu, 18 Jan 2024 18:06:54 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / I normally prefer my performance cars on race circuits, but the Lightning Switchgear impressed this off-road racing novice. (credit: Jonathan Gitlin)

\n\n\n\n\n\n\n
\n\n

CONCORD, NC\u2014The venerable pickup truck can play a multitude of roles these days. For some, it's nothing more than a work vehicle, something to carry around lumber or tools or tow a trailer full of equipment. For others, it's the new American family car. But some truck owners like to leave the tarmac behind to have a little fun in the wilderness. Mostly, that involves low-speed rock crawling, perhaps up the side of a steep mountain. But it doesn't have to be slow\u2014vehicles like Ford's range of Raptors are designed to do highway speeds across expanses of desert wilderness, largely thanks to very clever dampers and plenty of suspension travel to munch up those bumps and bounces.

\n

Ford is yet to make a Raptor version of its F-150 Lightning electric pickup, but we got an idea of what one could be capable of this week thanks to a ride in the Blue Oval's latest electric demonstrator, the F-150 Lightning Switchgear. It's the result of a collaboration between Ford Performance and RTR Vehicles, a tuning company founded and run by drifting champion and off-road racer Vaughn Gittin Jr., and while it's just a one-off for now, the Lightning Switchgear is a testbed for pushing the boundaries of what we can expect from electric trucks, Ford says. (You may remember RTR previously worked with Ford to create a 1,400-hp Mustang Mach-E in 2020.)

\n

\"This is going to focus on chassis and suspension. So to that end, just like you do with any good racing vehicle, you start with the tires,\" explained Sriram Pakkam, head of F1 and EV demonstrators at Ford.

Read 6 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / I normally prefer my performance cars on race circuits, but the Lightning Switchgear impressed this off-road racing novice. (credit: Jonathan Gitlin)\n \n\n\n\n\n\n\n\nFord provided accommodation and flights from Washington to Charlotte so we could attend the 2024 season launch of Ford Performance. Ars does not accept paid editorial content.\nCONCORD, NC\u2014The venerable pickup truck can play a multitude of roles these days. For some, it's nothing more than a work vehicle, something to carry around lumber or tools or tow a trailer full of equipment. For others, it's the new American family car. But some truck owners like to leave the tarmac behind to have a little fun in the wilderness. Mostly, that involves low-speed rock crawling, perhaps up the side of a steep mountain. But it doesn't have to be slow\u2014vehicles like Ford's range of Raptors are designed to do highway speeds across expanses of desert wilderness, largely thanks to very clever dampers and plenty of suspension travel to munch up those bumps and bounces.\nFord is yet to make a Raptor version of its F-150 Lightning electric pickup, but we got an idea of what one could be capable of this week thanks to a ride in the Blue Oval's latest electric demonstrator, the F-150 Lightning Switchgear. It's the result of a collaboration between Ford Performance and RTR Vehicles, a tuning company founded and run by drifting champion and off-road racer Vaughn Gittin Jr., and while it's just a one-off for now, the Lightning Switchgear is a testbed for pushing the boundaries of what we can expect from electric trucks, Ford says. (You may remember RTR previously worked with Ford to create a 1,400-hp Mustang Mach-E in 2020.)\n\"This is going to focus on chassis and suspension. So to that end, just like you do with any good racing vehicle, you start with the tires,\" explained Sriram Pakkam, head of F1 and EV demonstrators at Ford.\n\nRead 6 remaining paragraphs | Comments", - "dc:creator": "Jonathan M. Gitlin", - "comments": "https://arstechnica.com/cars/2024/01/ford-pushes-the-off-road-button-with-f-150-lightning-switchgear/#comments", - "content": "The demonstrator was developed with Vaughn Gittin's RTR Vehicles.", - "contentSnippet": "The demonstrator was developed with Vaughn Gittin's RTR Vehicles.", - "guid": "https://arstechnica.com/?p=1997045", - "categories": [ - "Cars", - "Ford F-150 Lightning", - "Ford F-150 Lightning Switchgear", - "Ford Performance", - "off-road racing" - ], - "isoDate": "2024-01-18T18:06:54.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "FCC chair defends broadband discounts for poor people against Republican attack", - "link": "https://arstechnica.com/?p=1997006", - "pubDate": "Thu, 18 Jan 2024 17:32:12 +0000", - "content:encoded": "
\n
\n \"FCC\n

Enlarge / FCC Chairwoman Jessica Rosenworcel at a Senate subcommittee hearing on September 19, 2023 in Washington, DC. (credit: Getty Images | The Washington Post)

\n\n\n\n\n\n\n
\n

FCC Chairwoman Jessica Rosenworcel defended a low-income discount program against attacks from GOP lawmakers, pointing out that Republicans criticized an aspect of the program that was decided by Congress, not the commission.

\n

In December, Sen. Ted Cruz (R-Texas) and several other Republican lawmakers blasted the Affordable Connectivity Program (ACP), which gives $30 monthly broadband discounts to people with low incomes. The program is set to be discontinued in a few months because Congress hasn't added funding to continue it, though Democrats are pushing a bill that would keep it going.

\n

The Republican letter to Rosenworcel accused the Federal Communications Commission of being \"wasteful,\" saying that \"it appears the vast majority of tax dollars have gone to households that already had broadband prior to the subsidy.\" Rosenworcel has since responded in a letter reminding Republicans that the FCC followed Congress' instructions when it implemented the ACP.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / FCC Chairwoman Jessica Rosenworcel at a Senate subcommittee hearing on September 19, 2023 in Washington, DC. (credit: Getty Images | The Washington Post)\n \n\n\n\n\n\n\n\nFCC Chairwoman Jessica Rosenworcel defended a low-income discount program against attacks from GOP lawmakers, pointing out that Republicans criticized an aspect of the program that was decided by Congress, not the commission.\nIn December, Sen. Ted Cruz (R-Texas) and several other Republican lawmakers blasted the Affordable Connectivity Program (ACP), which gives $30 monthly broadband discounts to people with low incomes. The program is set to be discontinued in a few months because Congress hasn't added funding to continue it, though Democrats are pushing a bill that would keep it going.\nThe Republican letter to Rosenworcel accused the Federal Communications Commission of being \"wasteful,\" saying that \"it appears the vast majority of tax dollars have gone to households that already had broadband prior to the subsidy.\" Rosenworcel has since responded in a letter reminding Republicans that the FCC followed Congress' instructions when it implemented the ACP.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2024/01/fcc-chair-defends-broadband-discounts-for-poor-people-against-republican-attack/#comments", - "content": "Lawmakers criticized FCC for something that was decided by Congress, chair says.", - "contentSnippet": "Lawmakers criticized FCC for something that was decided by Congress, chair says.", - "guid": "https://arstechnica.com/?p=1997006", - "categories": [ - "Policy", - "affordable connectivity program", - "FCC" - ], - "isoDate": "2024-01-18T17:32:12.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "Scientists make non-toxic quantum dots for shortwave infrared image sensors", - "link": "https://arstechnica.com/?p=1996499", - "pubDate": "Thu, 18 Jan 2024 17:25:11 +0000", - "content:encoded": "
\n
\n \"Vials\n

Enlarge / Vials of quantum dots with gradually stepping emission from violet to deep red. (credit: Antipoff/CC BY-SA 3.0)

\n\n\n\n\n\n\n
\n

Shortwave infrared light (SWIR) sensors are desirable in a broad range of applications, particularly in the service robotics, automotive, and consumer electronics sectors. Colloidal quantum dots tuned to SWIR show promise for such sensors since they can be easily integrated into CMOS, but their mass market use has been hampered by the fact that most contain toxic heavy metals like lead or mercury. Now a team of scientists has manufactured quantum dots out of non-toxic materials and tested them in a fabricated lab-scale photodetector, according to a recent paper published in the journal Nature Photonics.

\n

\"SWIR light for sensing and imaging is of paramount importance owing to its unique characteristics,\" the authors wrote. \"It is eye safe; it can penetrate through fog, haze, and other atmospheric conditions, enabling imaging under adverse weather for automotive applications, environmental, and remote sensing; the presence of night glow under night in the SWIR range enables passive night vision; and visual imaging combined with infrared spectroscopy enables machine vision, bio imaging, and food and process quality inspection,\" among other applications.

\n

As previously reported, a\u00a0quantum dot is a small semiconducting bead a few tens of atoms in diameter. Billions could fit on the head of a pin, and the smaller you can make them, the better. At those small scales, quantum effects kick in and give the dots superior electrical and optical properties. They glow brightly when zapped with light, and the color of that light is determined by the size of the quantum dots. Bigger dots emit redder light; smaller dots emit bluer light. So you can tailor quantum dots to specific frequencies of light just by changing their size.

Read 6 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Vials of quantum dots with gradually stepping emission from violet to deep red. (credit: Antipoff/CC BY-SA 3.0)\n \n\n\n\n\n\n\n\nShortwave infrared light (SWIR) sensors are desirable in a broad range of applications, particularly in the service robotics, automotive, and consumer electronics sectors. Colloidal quantum dots tuned to SWIR show promise for such sensors since they can be easily integrated into CMOS, but their mass market use has been hampered by the fact that most contain toxic heavy metals like lead or mercury. Now a team of scientists has manufactured quantum dots out of non-toxic materials and tested them in a fabricated lab-scale photodetector, according to a recent paper published in the journal Nature Photonics.\n\"SWIR light for sensing and imaging is of paramount importance owing to its unique characteristics,\" the authors wrote. \"It is eye safe; it can penetrate through fog, haze, and other atmospheric conditions, enabling imaging under adverse weather for automotive applications, environmental, and remote sensing; the presence of night glow under night in the SWIR range enables passive night vision; and visual imaging combined with infrared spectroscopy enables machine vision, bio imaging, and food and process quality inspection,\" among other applications.\nAs previously reported, a\u00a0quantum dot is a small semiconducting bead a few tens of atoms in diameter. Billions could fit on the head of a pin, and the smaller you can make them, the better. At those small scales, quantum effects kick in and give the dots superior electrical and optical properties. They glow brightly when zapped with light, and the color of that light is determined by the size of the quantum dots. Bigger dots emit redder light; smaller dots emit bluer light. So you can tailor quantum dots to specific frequencies of light just by changing their size.\n\nRead 6 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/science/2024/01/scientists-make-non-toxic-quantum-dots-for-shortwave-infrared-image-sensors/#comments", - "content": "SWIR sensors ideal for service robotics, automotive, consumer electronics sectors.", - "contentSnippet": "SWIR sensors ideal for service robotics, automotive, consumer electronics sectors.", - "guid": "https://arstechnica.com/?p=1996499", - "categories": [ - "Science", - "computer vision", - "infrared image sensors", - "materials science", - "photonics", - "Physics", - "quantum dots", - "science" - ], - "isoDate": "2024-01-18T17:25:11.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Rocket Report: A new estimate of Starship costs; Japan launches spy satellite", - "link": "https://arstechnica.com/?p=1997065", - "pubDate": "Fri, 19 Jan 2024 12:00:56 +0000", - "content:encoded": "
\n
\n \"An\n

Enlarge / An H-IIA rocket lifts off with the IGS Optical-8 spy satellite. (credit: Mitsubishi Heavy Industries)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.27 of the Rocket Report! This week, we discuss an intriguing new report looking at Starship. Most fascinating, the report covers SpaceX's costs to build a Starship and how these costs will come down as the company ramps up its build and launch cadence. At the other end of the spectrum, former NASA Administrator Mike Griffin has a plan to get astronauts back to the Moon that would wholly ignore the opportunities afforded by Starship.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.

\n
\n

The problem at America's military spaceports. The Biden administration is requesting $1.3 billion over the next five years to revamp infrastructure at the Space Force's ranges in Florida and California, Ars reports. This will help address things like roads, bridges, utilities, and airfields that, in many cases, haven't seen an update in decades. But it's not enough, according to the Space Force. Last year, Cape Canaveral was the departure point for 72 orbital rocket launches, and officials anticipate more than 100 this year. The infrastructure and workforce at the Florida spaceport could support about 150 launches in a year without any major changes, but launch activity is likely to exceed that number within a few years.

Read 22 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / An H-IIA rocket lifts off with the IGS Optical-8 spy satellite. (credit: Mitsubishi Heavy Industries)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.27 of the Rocket Report! This week, we discuss an intriguing new report looking at Starship. Most fascinating, the report covers SpaceX's costs to build a Starship and how these costs will come down as the company ramps up its build and launch cadence. At the other end of the spectrum, former NASA Administrator Mike Griffin has a plan to get astronauts back to the Moon that would wholly ignore the opportunities afforded by Starship.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.\n\nThe problem at America's military spaceports. The Biden administration is requesting $1.3 billion over the next five years to revamp infrastructure at the Space Force's ranges in Florida and California, Ars reports. This will help address things like roads, bridges, utilities, and airfields that, in many cases, haven't seen an update in decades. But it's not enough, according to the Space Force. Last year, Cape Canaveral was the departure point for 72 orbital rocket launches, and officials anticipate more than 100 this year. The infrastructure and workforce at the Florida spaceport could support about 150 launches in a year without any major changes, but launch activity is likely to exceed that number within a few years.\n\nRead 22 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2024/01/rocket-report-a-new-estimate-of-starship-costs-japan-launches-spy-satellite/#comments", - "content": "One space tug company runs into financial problems; another says go big or go home.", - "contentSnippet": "One space tug company runs into financial problems; another says go big or go home.", - "guid": "https://arstechnica.com/?p=1997065", - "categories": [ - "Space", - "artemis", - "Elon Musk", - "impulse space", - "Japan", - "launch", - "Momentus", - "NASA", - "orbex", - "space launch system", - "spacex", - "starship", - "tiangong", - "tianzhou" - ], - "isoDate": "2024-01-19T12:00:56.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Japan\u2019s \u201cMoon sniper\u201d mission aims for precise lunar landing", - "link": "https://arstechnica.com/?p=1997302", - "pubDate": "Fri, 19 Jan 2024 13:42:26 +0000", - "content:encoded": "
\n
\n \"This\n

Enlarge / This artist's illustration shows the SLIM spacecraft descending toward the Moon and ejecting two deployable robots onto the lunar surface. (credit: JAXA)

\n\n\n\n\n\n\n
\n

If everything goes according to plan Friday, Japan's reputation as perhaps the world's most robot-obsessed nation will extend a quarter-million miles away, all the way to the austere landscape surrounding an impact crater on the Moon.

\n

Japan's robotic Smart Lander for Investigating Moon (SLIM) mission will descend down to the lunar surface Friday. The spacecraft was in an orbit of less than 400 miles (600 kilometers) over the lunar surface Thursday, with the final descent maneuvers set to begin early Friday.

\n

SLIM will fire its thrusters to lower the closest point of its orbit to the Moon down to an altitude of just 9 miles (15 kilometers). Then the spacecraft will commence its 20-minute final descent using its two hydrazine-fueled engines, culminating in a landing at 10:20 am EST (15:20 UTC) adjacent to a nearly 900-foot (270-meter) crater named Shioli in a region called the Sea of Nectar on the near side of the Moon.

Read 22 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / This artist's illustration shows the SLIM spacecraft descending toward the Moon and ejecting two deployable robots onto the lunar surface. (credit: JAXA)\n \n\n\n\n\n\n\n\nIf everything goes according to plan Friday, Japan's reputation as perhaps the world's most robot-obsessed nation will extend a quarter-million miles away, all the way to the austere landscape surrounding an impact crater on the Moon.\nJapan's robotic Smart Lander for Investigating Moon (SLIM) mission will descend down to the lunar surface Friday. The spacecraft was in an orbit of less than 400 miles (600 kilometers) over the lunar surface Thursday, with the final descent maneuvers set to begin early Friday.\nSLIM will fire its thrusters to lower the closest point of its orbit to the Moon down to an altitude of just 9 miles (15 kilometers). Then the spacecraft will commence its 20-minute final descent using its two hydrazine-fueled engines, culminating in a landing at 10:20 am EST (15:20 UTC) adjacent to a nearly 900-foot (270-meter) crater named Shioli in a region called the Sea of Nectar on the near side of the Moon.\n\nRead 22 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2024/01/japans-moon-sniper-mission-aims-for-precise-lunar-landing/#comments", - "content": "SLIM will attempt to land on the Moon with a precision of less than 100 meters.", - "contentSnippet": "SLIM will attempt to land on the Moon with a precision of less than 100 meters.", - "guid": "https://arstechnica.com/?p=1997302", - "categories": [ - "Space", - "Japan", - "JAXA", - "lunar exploration", - "moon", - "slim" - ], - "isoDate": "2024-01-19T13:42:26.000Z" - }, - { - "creator": "WIRED", - "title": "$40 billion worth of crypto crime enabled by stablecoins since 2022", - "link": "https://arstechnica.com/?p=1997330", - "pubDate": "Fri, 19 Jan 2024 14:48:58 +0000", - "content:encoded": "
\n
\n \"illustration\n

Enlarge (credit: Anjali Nair; Getty Images)

\n\n\n\n\n\n\n
\n

Stablecoins, cryptocurrencies pegged to a stable value like the US dollar, were created with the promise of bringing the frictionless, border-crossing fluidity of Bitcoin to a form of digital money with far less volatility. That combination has proved to be wildly popular, rocketing the total value of stablecoin transactions since 2022 past even that of Bitcoin itself.

\n

It turns out, however, that as stablecoins have become popular among legitimate users over the past two years, they were even more popular among a different kind of user: those exploiting them for billions of dollars of international sanctions evasion and scams.

\n

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Anjali Nair; Getty Images)\n \n\n\n\n\n\n\n\nStablecoins, cryptocurrencies pegged to a stable value like the US dollar, were created with the promise of bringing the frictionless, border-crossing fluidity of Bitcoin to a form of digital money with far less volatility. That combination has proved to be wildly popular, rocketing the total value of stablecoin transactions since 2022 past even that of Bitcoin itself.\nIt turns out, however, that as stablecoins have become popular among legitimate users over the past two years, they were even more popular among a different kind of user: those exploiting them for billions of dollars of international sanctions evasion and scams.\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "WIRED", - "comments": "https://arstechnica.com/information-technology/2024/01/40-billion-worth-of-crypto-crime-enabled-by-stablecoins-since-2022/#comments", - "content": "Stablecoins like Tether also used for scams and sanctions evasion.", - "contentSnippet": "Stablecoins like Tether also used for scams and sanctions evasion.", - "guid": "https://arstechnica.com/?p=1997330", - "categories": [ - "Biz & IT", - "cryptocurrencies", - "pig butchering", - "stablecoin", - "stablecoins", - "syndication" - ], - "isoDate": "2024-01-19T14:48:58.000Z" - }, - { - "creator": "Eric Berger", - "title": "Daily Telescope: Meet the Flying Bat and Squid nebulae", - "link": "https://arstechnica.com/?p=1978974", - "pubDate": "Fri, 27 Oct 2023 12:00:12 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The Flying Bat and Squid nebulae. (credit: Ryan G\u00e9nier)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light\u2014a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we'll take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It is October 27, and today's image takes us 2,000 light-years from Earth. That is very far, but still in our little corner of the Milky Way Galaxy, which stretches about 105,000 light-years from end to end.

\n

In this photo, courtesy of Ryan G\u00e9nier, the large reddish object that covers much of the canvas is the Flying Bat Nebula. It is, essentially, a huge cloud of hydrogen gas. The Squid Nebula is shown in blue, indicating doubly ionized oxygen\u2014which is when you ionize your oxygen once and then ionize it again just to make sure. (In all seriousness, it likely indicates a low-mass star nearing the end of its life).

Read 4 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The Flying Bat and Squid nebulae. (credit: Ryan G\u00e9nier)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light\u2014a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we'll take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It is October 27, and today's image takes us 2,000 light-years from Earth. That is very far, but still in our little corner of the Milky Way Galaxy, which stretches about 105,000 light-years from end to end.\nIn this photo, courtesy of Ryan G\u00e9nier, the large reddish object that covers much of the canvas is the Flying Bat Nebula. It is, essentially, a huge cloud of hydrogen gas. The Squid Nebula is shown in blue, indicating doubly ionized oxygen\u2014which is when you ionize your oxygen once and then ionize it again just to make sure. (In all seriousness, it likely indicates a low-mass star nearing the end of its life).\n\nRead 4 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2023/10/daily-telescope-meet-the-flying-bat-and-squid-nebulae/#comments", - "content": "The Squid Nebula is a recent discovery, first spotted in 2011.", - "contentSnippet": "The Squid Nebula is a recent discovery, first spotted in 2011.", - "guid": "https://arstechnica.com/?p=1978974", - "categories": [ - "Space", - "daily telescope" - ], - "isoDate": "2023-10-27T12:00:12.000Z" - }, - { - "creator": "Stephen Clark", - "title": "Rocket Report: China launches 3-man crew; SpaceX adds to busy manifest", - "link": "https://arstechnica.com/?p=1979086", - "pubDate": "Fri, 27 Oct 2023 11:00:50 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A Long March 2F rocket climbed into space Thursday with a three-man crew heading for China's Tiangong space station. (credit: Pedro Pardo/AFP via Getty Images)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.17 of the Rocket Report! Two Asian powers notched achievements in their human spaceflight programs this week. In China, three astronauts launched to begin a six-month expedition on the Tiangong space station. With this mission, China is settling into a routine of operations on the Tiangong complex. Elsewhere in Asia, India took strides toward launching its own astronauts with a successful test of a launch abort system for the country's Gaganyaan spacecraft, which could fly people into low-Earth orbit in 2025. This is welcome news for US officials because India could help offer a counterweight to China's dominance (among Asian countries) in spaceflight.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.

\n
\n

India tests escape system for human-rated crew capsule.\u00a0India aced the first in-flight test of the crew escape system for the country's Gaganyaan spacecraft Saturday, Ars reports. With this flight, India tested the set of rocket motors and parachutes that would propel the spacecraft away from a failing launch vehicle, a dramatic maneuver that would save the lives of everyone on board. An unpressurized version of the Gaganyaan capsule launched, without anyone aboard, on top of a single-stage liquid-fueled rocket. About a minute later, soon after the rocket surpassed the speed of sound, the vehicle triggered the abort maneuver, and the capsule separated from the booster to parachute into the sea. By all accounts, Indian officials were thrilled with the outcome of the test flight.

Read 24 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A Long March 2F rocket climbed into space Thursday with a three-man crew heading for China's Tiangong space station. (credit: Pedro Pardo/AFP via Getty Images)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.17 of the Rocket Report! Two Asian powers notched achievements in their human spaceflight programs this week. In China, three astronauts launched to begin a six-month expedition on the Tiangong space station. With this mission, China is settling into a routine of operations on the Tiangong complex. Elsewhere in Asia, India took strides toward launching its own astronauts with a successful test of a launch abort system for the country's Gaganyaan spacecraft, which could fly people into low-Earth orbit in 2025. This is welcome news for US officials because India could help offer a counterweight to China's dominance (among Asian countries) in spaceflight.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.\n\nIndia tests escape system for human-rated crew capsule.\u00a0India aced the first in-flight test of the crew escape system for the country's Gaganyaan spacecraft Saturday, Ars reports. With this flight, India tested the set of rocket motors and parachutes that would propel the spacecraft away from a failing launch vehicle, a dramatic maneuver that would save the lives of everyone on board. An unpressurized version of the Gaganyaan capsule launched, without anyone aboard, on top of a single-stage liquid-fueled rocket. About a minute later, soon after the rocket surpassed the speed of sound, the vehicle triggered the abort maneuver, and the capsule separated from the booster to parachute into the sea. By all accounts, Indian officials were thrilled with the outcome of the test flight.\n\nRead 24 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2023/10/rocket-report-china-launches-3-man-crew-spacex-adds-to-busy-manifest/#comments", - "content": "ABL Space Systems has blamed its launch mount for a January rocket failure.", - "contentSnippet": "ABL Space Systems has blamed its launch mount for a January rocket failure.", - "guid": "https://arstechnica.com/?p=1979086", - "categories": [ - "Space", - "ariane 6", - "Arianespace", - "avio", - "china", - "falcon 9", - "india", - "launch", - "rocket report", - "shenzhou", - "spacex", - "tiangong", - "united launch alliance" - ], - "isoDate": "2023-10-27T11:00:50.000Z" - }, - { - "creator": "Dan Goodin", - "title": "iPhones have been exposing your unique MAC despite Apple\u2019s promises otherwise", - "link": "https://arstechnica.com/?p=1979099", - "pubDate": "Thu, 26 Oct 2023 21:48:04 +0000", - "content:encoded": "
\n
\n \"Private\n

Enlarge / Private Wi-Fi address setting on an iPhone. (credit: Apple)

\n\n\n\n\n\n\n
\n

Three years ago, Apple introduced a privacy-enhancing feature that hid the Wi-Fi address of iPhones and iPads when they joined a network. On Wednesday, the world learned that the feature has never worked as advertised. Despite promises that this never-changing address would be hidden and replaced with a private one that was unique to each SSID, Apple devices have continued to display the real one, which in turn got broadcast to every other connected device on the network.

\n

The problem is that a Wi-Fi media access control address\u2014typically called a media access control address or simply a MAC\u2014can be used to track individuals from network to network, in much the way a license plate number can be used to track a vehicle as it moves around a city. Case in point: In 2013, a researcher unveiled a proof-of-concept device that logged the MAC of all devices it came into contact with. The idea was to distribute lots of them throughout a neighborhood or city and build a profile of iPhone users, including the social media sites they visited and the many locations they visited each day.

\n

In the decade since, HTTPS-encrypted communications have become standard, so the ability of people on the same network to monitor other people's traffic is generally not feasible. Still, a permanent MAC provides plenty of trackability, even now.

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Private Wi-Fi address setting on an iPhone. (credit: Apple)\n \n\n\n\n\n\n\n\nThree years ago, Apple introduced a privacy-enhancing feature that hid the Wi-Fi address of iPhones and iPads when they joined a network. On Wednesday, the world learned that the feature has never worked as advertised. Despite promises that this never-changing address would be hidden and replaced with a private one that was unique to each SSID, Apple devices have continued to display the real one, which in turn got broadcast to every other connected device on the network.\nThe problem is that a Wi-Fi media access control address\u2014typically called a media access control address or simply a MAC\u2014can be used to track individuals from network to network, in much the way a license plate number can be used to track a vehicle as it moves around a city. Case in point: In 2013, a researcher unveiled a proof-of-concept device that logged the MAC of all devices it came into contact with. The idea was to distribute lots of them throughout a neighborhood or city and build a profile of iPhone users, including the social media sites they visited and the many locations they visited each day.\nIn the decade since, HTTPS-encrypted communications have become standard, so the ability of people on the same network to monitor other people's traffic is generally not feasible. Still, a permanent MAC provides plenty of trackability, even now.\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2023/10/iphone-privacy-feature-hiding-wi-fi-macs-has-failed-to-work-for-3-years/#comments", - "content": "\u201cFrom the get-go, this feature was useless,\u201d researcher says of feature put into iOS 14.", - "contentSnippet": "\u201cFrom the get-go, this feature was useless,\u201d researcher says of feature put into iOS 14.", - "guid": "https://arstechnica.com/?p=1979099", - "categories": [ - "Biz & IT", - "Security", - "iphone", - "MAC address", - "privacy", - "wi-fi" - ], - "isoDate": "2023-10-26T21:48:04.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Sam Bankman-Fried testifies, says he \u201cskimmed over\u201d FTX terms of service", - "link": "https://arstechnica.com/?p=1979088", - "pubDate": "Thu, 26 Oct 2023 20:54:45 +0000", - "content:encoded": "
\n
\n \"FTX\n

Enlarge / FTX Founder Sam Bankman-Fried arrives at US District Court on March 30, 2023, in New York City after being hit with a criminal charge for allegedly authorizing a bribe of at least $40 million to one or more Chinese government officials. (credit: Getty Images | Michael Santiago )

\n\n\n\n\n\n\n
\n

Sam Bankman-Fried took the stand in his criminal trial today in an attempt to avoid decades in prison for alleged fraud at cryptocurrency exchange FTX and its affiliate Alameda Research.

\n

Providing testimony has been called a risky move for Bankman-Fried by many legal observers. After answering questions posted by his own lawyers, Bankman-Fried will have to face cross-examination from federal prosecutors.\u00a0But after three weeks in which US government attorneys laid out their case, including testimony from former FTX and Alameda executives, Bankman-Fried's legal team announced yesterday that he would take the stand.

\n

Today's testimony was unusual because US District Judge Lewis Kaplan sent the jury home for the day to conduct a hearing on whether certain parts of his testimony are admissible. \"That means Bankman-Fried will give some of his testimony to the judge without the jury present. The judge will then decide whether Bankman-Fried is allowed to say the same testimony in front of a jury,\" The Wall Street Journal wrote in its live coverage. The trial is not being streamed via audio or video.

Read 16 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / FTX Founder Sam Bankman-Fried arrives at US District Court on March 30, 2023, in New York City after being hit with a criminal charge for allegedly authorizing a bribe of at least $40 million to one or more Chinese government officials. (credit: Getty Images | Michael Santiago )\n \n\n\n\n\n\n\n\nSam Bankman-Fried took the stand in his criminal trial today in an attempt to avoid decades in prison for alleged fraud at cryptocurrency exchange FTX and its affiliate Alameda Research.\nProviding testimony has been called a risky move for Bankman-Fried by many legal observers. After answering questions posted by his own lawyers, Bankman-Fried will have to face cross-examination from federal prosecutors.\u00a0But after three weeks in which US government attorneys laid out their case, including testimony from former FTX and Alameda executives, Bankman-Fried's legal team announced yesterday that he would take the stand.\nToday's testimony was unusual because US District Judge Lewis Kaplan sent the jury home for the day to conduct a hearing on whether certain parts of his testimony are admissible. \"That means Bankman-Fried will give some of his testimony to the judge without the jury present. The judge will then decide whether Bankman-Fried is allowed to say the same testimony in front of a jury,\" The Wall Street Journal wrote in its live coverage. The trial is not being streamed via audio or video.\n\nRead 16 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/10/sam-bankman-fried-begins-testifying-in-risky-bid-to-beat-ftx-fraud-charges/#comments", - "content": "SBF said he thought loans were legal but didn't fully read FTX terms of service.", - "contentSnippet": "SBF said he thought loans were legal but didn't fully read FTX terms of service.", - "guid": "https://arstechnica.com/?p=1979088", - "categories": [ - "Policy", - "sam bankman-fried", - "sam bankman-fried ftx" - ], - "isoDate": "2023-10-26T20:54:45.000Z" - }, - { - "creator": "Beth Mole", - "title": "Unprecedented diarrheal outbreak erupts in UK as cases spike 3x above usual", - "link": "https://arstechnica.com/?p=1979074", - "pubDate": "Thu, 26 Oct 2023 20:10:58 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A sign directing people to a toilet facility during the Children's Day Parade, part of the Notting Hill Carnival celebration in west London on Sunday August 27, 2023. (credit: Getty | Yui Mok)

\n\n\n\n\n\n\n
\n

The United Kingdom is experiencing a dramatic outbreak\u2014unprecedented in scale and magnitude\u2014of diarrheal illnesses from the intestinal parasite, Cryptosporidium, aka Crypto.

\n

According to a rapid communication published Thursday in the journal Eurosurveillance, UK health officials report that Crypto cases have exceeded the upper bounds of expected cases since mid-September, and an October peak saw cases roughly threefold above what is usual for this time of year. The outbreak is still ongoing.

\n\n

So far, it's unclear what's driving the extraordinary burst in cases. The outbreak has splattered into almost every region of all four UK nations. \"Given the scale and geographical spread of the [case] exceedance across regions and nations of the UK, a single local exposure is an unlikely cause,\" the authors, led by officials at the United Kingdom Health Security Agency in London, wrote in the rapid report.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A sign directing people to a toilet facility during the Children's Day Parade, part of the Notting Hill Carnival celebration in west London on Sunday August 27, 2023. (credit: Getty | Yui Mok)\n \n\n\n\n\n\n\n\nThe United Kingdom is experiencing a dramatic outbreak\u2014unprecedented in scale and magnitude\u2014of diarrheal illnesses from the intestinal parasite, Cryptosporidium, aka Crypto.\nAccording to a rapid communication published Thursday in the journal Eurosurveillance, UK health officials report that Crypto cases have exceeded the upper bounds of expected cases since mid-September, and an October peak saw cases roughly threefold above what is usual for this time of year. The outbreak is still ongoing.\n\nLaboratory notifications of Cryptosporidium species in England, Wales, and Northern Ireland, by week of specimen, 2023. (credit: Eurosurveillance | Peake et al.)\n\nSo far, it's unclear what's driving the extraordinary burst in cases. The outbreak has splattered into almost every region of all four UK nations. \"Given the scale and geographical spread of the [case] exceedance across regions and nations of the UK, a single local exposure is an unlikely cause,\" the authors, led by officials at the United Kingdom Health Security Agency in London, wrote in the rapid report.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/health/2023/10/the-uk-is-bursting-with-diarrheal-disease-cases-3x-higher-than-usual/#comments", - "content": "Cryptosporidium cases link to travel and swimming, but at unusually high rate.", - "contentSnippet": "Cryptosporidium cases link to travel and swimming, but at unusually high rate.", - "guid": "https://arstechnica.com/?p=1979074", - "categories": [ - "Health", - "Science", - "CDC", - "crypto", - "Cryptosporidium", - "diarrhea", - "infectious diseases", - "outbreak", - "parasite", - "uk", - "water" - ], - "isoDate": "2023-10-26T20:10:58.000Z" - }, - { - "creator": "Ashley Belanger", - "title": "Media outlets win fight to gain faster access to Google trial evidence", - "link": "https://arstechnica.com/?p=1979014", - "pubDate": "Thu, 26 Oct 2023 19:04:44 +0000", - "content:encoded": "
\n
\n \"Media\n

Enlarge (credit: SOPA Images / Contributor | LightRocket)

\n\n\n\n\n\n\n
\n

Slowly but surely, the public will start gaining more access to evidence shared in the Department of Justice's antitrust trial probing Google's search business, following an intervention by press outlets. In a motion to intervene, outlets earlier this month told the court that they were struggling to cover the trial because much of the evidence and proceedings has been withheld, redacted, or closed off entirely to protect industry trade secrets.

\n

Yesterday, Judge Amit Mehta granted some of the demands of outlets\u2014including The New York Times, The Wall Street Journal, Bloomberg, MLex, and Law360\u2014which, among other requests, had asked the court to mandate the sharing of dozens of exhibits that the public has so far been denied access to despite pending press requests.

\n

Mehta said that the supplemental order and other recent orders would allow the court to \"continue facilitating public access to the trial and minimizing the need to close the courtroom while providing for the protection of confidential information.\"

Read 28 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: SOPA Images / Contributor | LightRocket)\n \n\n\n\n\n\n\n\nSlowly but surely, the public will start gaining more access to evidence shared in the Department of Justice's antitrust trial probing Google's search business, following an intervention by press outlets. In a motion to intervene, outlets earlier this month told the court that they were struggling to cover the trial because much of the evidence and proceedings has been withheld, redacted, or closed off entirely to protect industry trade secrets.\nYesterday, Judge Amit Mehta granted some of the demands of outlets\u2014including The New York Times, The Wall Street Journal, Bloomberg, MLex, and Law360\u2014which, among other requests, had asked the court to mandate the sharing of dozens of exhibits that the public has so far been denied access to despite pending press requests.\nMehta said that the supplemental order and other recent orders would allow the court to \"continue facilitating public access to the trial and minimizing the need to close the courtroom while providing for the protection of confidential information.\"\n\nRead 28 remaining paragraphs | Comments", - "dc:creator": "Ashley Belanger", - "comments": "https://arstechnica.com/tech-policy/2023/10/media-outlets-win-fight-to-gain-faster-access-to-google-trial-evidence/#comments", - "content": "Here\u2019s the link to all the Google trial evidence unlocked by media.", - "contentSnippet": "Here\u2019s the link to all the Google trial evidence unlocked by media.", - "guid": "https://arstechnica.com/?p=1979014", - "categories": [ - "Google", - "Policy", - "Antitrust law", - "department of justice", - "freedom of press", - "google", - "google antitrust trial", - "google monopoly trial", - "google search", - "monopoly" - ], - "isoDate": "2023-10-26T19:04:44.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Backlash forces T-Mobile to cancel automatic migrations to pricier plans", - "link": "https://arstechnica.com/?p=1979010", - "pubDate": "Thu, 26 Oct 2023 18:24:20 +0000", - "content:encoded": "
\n
\n \"T-Mobile\n

Enlarge / A T-Mobile store on August 24, 2023 in Washington, DC. (credit: Getty Images | Anna Moneymaker)

\n\n\n\n\n\n\n
\n

T-Mobile has scrapped a plan to automatically switch users to newer, more expensive packages after hearing loads of criticism from customers.

\n

The plan became public knowledge two weeks ago with the leak of internal documents that said customers would be switched to pricier tiers starting with the November bill cycle unless they contacted T-Mobile to opt out. Documents showed that T-Mobile customer service reps were trained to tell users who complained, \"We are not raising the price of any of our plans; we are moving you to a newer plan with more benefits at a different cost.\"

\n

But in an earnings call yesterday (see transcript), T-Mobile CEO Mike Sievert said it's no longer happening because feedback from angry subscribers showed it \"isn't something that our customers are going to love.\"

Read 11 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A T-Mobile store on August 24, 2023 in Washington, DC. (credit: Getty Images | Anna Moneymaker)\n \n\n\n\n\n\n\n\nT-Mobile has scrapped a plan to automatically switch users to newer, more expensive packages after hearing loads of criticism from customers.\nThe plan became public knowledge two weeks ago with the leak of internal documents that said customers would be switched to pricier tiers starting with the November bill cycle unless they contacted T-Mobile to opt out. Documents showed that T-Mobile customer service reps were trained to tell users who complained, \"We are not raising the price of any of our plans; we are moving you to a newer plan with more benefits at a different cost.\"\nBut in an earnings call yesterday (see transcript), T-Mobile CEO Mike Sievert said it's no longer happening because feedback from angry subscribers showed it \"isn't something that our customers are going to love.\"\n\nRead 11 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/10/after-uproar-t-mobile-wont-automatically-switch-users-to-pricier-plans/#comments", - "content": "Firm drops widely panned idea but still aims to move users \"up our price card.\"", - "contentSnippet": "Firm drops widely panned idea but still aims to move users \"up our price card.\"", - "guid": "https://arstechnica.com/?p=1979010", - "categories": [ - "Policy", - "t-mobile", - "t-mobile plans" - ], - "isoDate": "2023-10-26T18:24:20.000Z" - }, - { - "creator": "Ron Amadeo", - "title": "Google Fiber is getting outrageously fast 20Gbps service", - "link": "https://arstechnica.com/?p=1978969", - "pubDate": "Thu, 26 Oct 2023 17:56:54 +0000", - "content:encoded": "
\n
\n \"Google\n

Enlarge / Google Fiber Labs brings quick internet to early adopters. (credit: Google)

\n\n\n\n\n\n\n
\n

Google Fiber is still operating in a handful of cities, and now the bandwidth-rich are getting richer: Fiber plans to upgrade some users to outrageously fast 20Gbps service by the end of the year. Google's Wednesday blog post calls this part of a \"GFiber Labs\" experiment and says the service \"will initially be available as an early access offering to a small group of GFiber customers in select areas.\"

\n

The 20Gbps service is made possible by new networking gear: Nokia's 25G PON (passive optical network) technology, which lets Internet service providers push more bandwidth over existing fiber lines. Google says it's \"one of the first\" ISPs to adopt the technology for consumers, though at least one other US ISP, the Tennessee provider \"EPB,\" has rolled out the technology. Customers will need new networking gear, too, and Google says you'll get a new fiber modem with built-in Wi-Fi 7.

\n

Fierce Telecom spoke with Google's Nick Saporito, head of product at Google Fiber, who said, \u201cWe definitely see a need\" for 20Gbps service. For now, Saporito says the service is \"a very early adopter product,\" but it will eventually roll out \"in most, if not all, of our markets.\"

Read 3 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Google Fiber Labs brings quick internet to early adopters. (credit: Google)\n \n\n\n\n\n\n\n\nGoogle Fiber is still operating in a handful of cities, and now the bandwidth-rich are getting richer: Fiber plans to upgrade some users to outrageously fast 20Gbps service by the end of the year. Google's Wednesday blog post calls this part of a \"GFiber Labs\" experiment and says the service \"will initially be available as an early access offering to a small group of GFiber customers in select areas.\"\nThe 20Gbps service is made possible by new networking gear: Nokia's 25G PON (passive optical network) technology, which lets Internet service providers push more bandwidth over existing fiber lines. Google says it's \"one of the first\" ISPs to adopt the technology for consumers, though at least one other US ISP, the Tennessee provider \"EPB,\" has rolled out the technology. Customers will need new networking gear, too, and Google says you'll get a new fiber modem with built-in Wi-Fi 7.\nFierce Telecom spoke with Google's Nick Saporito, head of product at Google Fiber, who said, \u201cWe definitely see a need\" for 20Gbps service. For now, Saporito says the service is \"a very early adopter product,\" but it will eventually roll out \"in most, if not all, of our markets.\"\n\nRead 3 remaining paragraphs | Comments", - "dc:creator": "Ron Amadeo", - "comments": "https://arstechnica.com/gadgets/2023/10/google-fiber-is-getting-outrageously-fast-20gbps-service/#comments", - "content": "For now this is early access, but \"most\" customers will get upgraded eventually.", - "contentSnippet": "For now this is early access, but \"most\" customers will get upgraded eventually.", - "guid": "https://arstechnica.com/?p=1978969", - "categories": [ - "Google", - "Tech", - "Google Fiber", - "internet speed" - ], - "isoDate": "2023-10-26T17:56:54.000Z" - }, - { - "creator": "Andrew Cunningham", - "title": "The \u201clow-cost MacBook\u201d rumor just won\u2019t die, but it might finally make sense", - "link": "https://arstechnica.com/?p=1978607", - "pubDate": "Thu, 26 Oct 2023 17:15:06 +0000", - "content:encoded": "
\n
\n Could the 12-inch MacBook make a return as some kind of \"lower-cost MacBook\"?\n

Enlarge / Could the 12-inch MacBook make a return as some kind of \"lower-cost MacBook\"? (credit: Andrew Cunningham)

\n\n\n\n\n\n\n
\n

If you want a Mac laptop, you usually need to be ready to spend at least $1,000. Whether we're talking about the white plastic MacBook from 2006, the 11-inch MacBook Air from a decade ago, or the modern M1 MacBook Air, the list price for Apple's cheapest MacBook is usually within $100 or so of that four-digit price barrier (not counting refurbished Macs or ones that go on sale).

\n

Apple has a stated aversion to releasing less-expensive hardware just to hit an attractive price\u2014\"cheap is for other people because we try to build a better product,\" Apple marketing SVP Greg Joswiak told us a few years ago. But rumors of a low-cost MacBook pop up every few years, undeterred, usually conflating \"entry-level\" with \"low-cost.\" Here's a prediction about an $800 MacBook from October 2008 (actual entry-level prices: $999 and $1,299). Here's analyst Ming-Chi Kuo and Bloomberg's Mark Gurman in 2018 predicting a MacBook Air \"with a lower price tag\" that would \"reignite sales\"\u00a0(actual price: $1,199, $200 more than the previous MacBook Air).

\n

This week, Kuo came back with an updated version of that same report, claiming that Apple \"may also consider (but hasn't decided yet) introducing a more affordable MacBook model to boost shipments.\" Mac revenue and unit shipments have indeed been down year over year for a few quarters, though that has more to do with a pandemic- and Apple Silicon-fueled sales spike in 2021 and 2022 than anything (the revenue numbers are still on the high side of normal compared to 2019 and most of 2020).

Read 18 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Could the 12-inch MacBook make a return as some kind of \"lower-cost MacBook\"? (credit: Andrew Cunningham)\n \n\n\n\n\n\n\n\nIf you want a Mac laptop, you usually need to be ready to spend at least $1,000. Whether we're talking about the white plastic MacBook from 2006, the 11-inch MacBook Air from a decade ago, or the modern M1 MacBook Air, the list price for Apple's cheapest MacBook is usually within $100 or so of that four-digit price barrier (not counting refurbished Macs or ones that go on sale).\nApple has a stated aversion to releasing less-expensive hardware just to hit an attractive price\u2014\"cheap is for other people because we try to build a better product,\" Apple marketing SVP Greg Joswiak told us a few years ago. But rumors of a low-cost MacBook pop up every few years, undeterred, usually conflating \"entry-level\" with \"low-cost.\" Here's a prediction about an $800 MacBook from October 2008 (actual entry-level prices: $999 and $1,299). Here's analyst Ming-Chi Kuo and Bloomberg's Mark Gurman in 2018 predicting a MacBook Air \"with a lower price tag\" that would \"reignite sales\"\u00a0(actual price: $1,199, $200 more than the previous MacBook Air).\nThis week, Kuo came back with an updated version of that same report, claiming that Apple \"may also consider (but hasn't decided yet) introducing a more affordable MacBook model to boost shipments.\" Mac revenue and unit shipments have indeed been down year over year for a few quarters, though that has more to do with a pandemic- and Apple Silicon-fueled sales spike in 2021 and 2022 than anything (the revenue numbers are still on the high side of normal compared to 2019 and most of 2020).\n\nRead 18 remaining paragraphs | Comments", - "dc:creator": "Andrew Cunningham", - "comments": "https://arstechnica.com/gadgets/2023/10/the-low-cost-macbook-rumor-just-wont-die-but-it-might-finally-make-sense/#comments", - "content": "Apple doesn't do \"cheap,\" but Apple Silicon could make a cheaper MacBook work.", - "contentSnippet": "Apple doesn't do \"cheap,\" but Apple Silicon could make a cheaper MacBook work.", - "guid": "https://arstechnica.com/?p=1978607", - "categories": [ - "Apple", - "Tech", - "12-inch macbook", - "apple", - "Ars Shopping", - "iphone SE", - "MacBook" - ], - "isoDate": "2023-10-26T17:15:06.000Z" - }, - { - "creator": "Stephen Clark", - "title": "CEO of rocket-maker ULA makes a sales pitch\u2014for the whole company", - "link": "https://arstechnica.com/?p=1978909", - "pubDate": "Thu, 26 Oct 2023 17:14:58 +0000", - "content:encoded": "
\n
\n \"Tory\n

Enlarge / Tory Bruno, ULA's chief executive, inside the company's rocket factory in Decatur, Alabama. (credit: Cameron Carnes for The Washington Post via Getty Images)

\n\n\n\n\n\n\n
\n

It sure sounds like United Launch Alliance is up for sale. Tory Bruno, the rocket builder's CEO, said this week that anyone who purchased ULA would reap the rewards of the company's \"transformation\" over the last few years, a course change primarily driven by geopolitics and the competitive threat of SpaceX.

\n

While Bruno did not disclose details of any negotiations about a potential sale of ULA, he told Bloomberg News this week that the launch operator is primed for a buyer. Boeing and Lockheed Martin each have a 50 percent stake in the Colorado-based rocket company.

\n

\u201cIf I were buying a space business, I\u2019d go look at ULA,\u201d Bruno said. \u201cIt\u2019s already had all the hard work done through the transformation. You\u2019re not buying a Victorian with bad plumbing. It\u2019s all been done. You\u2019re coming in at the end of the remodel, so you can focus on your future.\"

Read 15 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Tory Bruno, ULA's chief executive, inside the company's rocket factory in Decatur, Alabama. (credit: Cameron Carnes for The Washington Post via Getty Images)\n \n\n\n\n\n\n\n\nIt sure sounds like United Launch Alliance is up for sale. Tory Bruno, the rocket builder's CEO, said this week that anyone who purchased ULA would reap the rewards of the company's \"transformation\" over the last few years, a course change primarily driven by geopolitics and the competitive threat of SpaceX.\nWhile Bruno did not disclose details of any negotiations about a potential sale of ULA, he told Bloomberg News this week that the launch operator is primed for a buyer. Boeing and Lockheed Martin each have a 50 percent stake in the Colorado-based rocket company.\n\u201cIf I were buying a space business, I\u2019d go look at ULA,\u201d Bruno said. \u201cIt\u2019s already had all the hard work done through the transformation. You\u2019re not buying a Victorian with bad plumbing. It\u2019s all been done. You\u2019re coming in at the end of the remodel, so you can focus on your future.\"\n\nRead 15 remaining paragraphs | Comments", - "dc:creator": "Stephen Clark", - "comments": "https://arstechnica.com/space/2023/10/ceo-of-rocket-maker-ula-makes-a-sales-pitch-for-the-whole-company/#comments", - "content": "The company's \"complicated\" ownership structure is holding it back.", - "contentSnippet": "The company's \"complicated\" ownership structure is holding it back.", - "guid": "https://arstechnica.com/?p=1978909", - "categories": [ - "Space", - "Boeing", - "launch", - "Lockheed Martin", - "tory bruno", - "united launch alliance" - ], - "isoDate": "2023-10-26T17:14:58.000Z" - }, - { - "creator": "Jon Brodkin", - "title": "Elon Musk\u2019s chaotic first year at Twitter leaves X Corp. with shaky finances", - "link": "https://arstechnica.com/?p=1978912", - "pubDate": "Thu, 26 Oct 2023 17:03:51 +0000", - "content:encoded": "
\n
\n \"Elon\n

Enlarge (credit: Aurich Lawson | Getty Images)

\n\n\n\n\n\n\n
\n

One year after Elon Musk's $44 billion purchase of Twitter, which he completed on October 27, 2022, after months of legal drama, the social media firm that Musk renamed \"X\" is on shaky financial ground.

\n

Musk has expressed ambitions to transform X into an \"everything app\" that includes a digital payments platform and audio and video calling. He told employees that, despite massive cuts eliminating most of Twitter's pre-Musk workforce, he sees \"a clear but difficult path\" to a future valuation of more than $250 billion.

\n

X doesn't provide detailed financial statements or user numbers because Musk took the company private when he bought Twitter. But data leaked to news media and third-party research depicts a platform in decline, which might not be exactly what Musk meant when he called the firm \"an inverse startup.\"

Read 36 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Aurich Lawson | Getty Images)\n \n\n\n\n\n\n\n\nOne year after Elon Musk's $44 billion purchase of Twitter, which he completed on October 27, 2022, after months of legal drama, the social media firm that Musk renamed \"X\" is on shaky financial ground.\nMusk has expressed ambitions to transform X into an \"everything app\" that includes a digital payments platform and audio and video calling. He told employees that, despite massive cuts eliminating most of Twitter's pre-Musk workforce, he sees \"a clear but difficult path\" to a future valuation of more than $250 billion.\nX doesn't provide detailed financial statements or user numbers because Musk took the company private when he bought Twitter. But data leaked to news media and third-party research depicts a platform in decline, which might not be exactly what Musk meant when he called the firm \"an inverse startup.\"\n\nRead 36 remaining paragraphs | Comments", - "dc:creator": "Jon Brodkin", - "comments": "https://arstechnica.com/tech-policy/2023/10/elon-musks-chaotic-first-year-at-twitter-leaves-x-corp-with-shaky-finances/#comments", - "content": "X has fewer users and a big ad-revenue problem on Musk's first anniversary.", - "contentSnippet": "X has fewer users and a big ad-revenue problem on Musk's first anniversary.", - "guid": "https://arstechnica.com/?p=1978912", - "categories": [ - "Features", - "Policy", - "Elon Musk", - "elon musk twitter", - "elon musk x" - ], - "isoDate": "2023-10-26T17:03:51.000Z" - }, - { - "creator": "Kyle Orland", - "title": "Why Unity felt the need to \u201crush out\u201d its controversial install-fee program", - "link": "https://arstechnica.com/?p=1978958", - "pubDate": "Thu, 26 Oct 2023 16:42:40 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A push for more IronSource customers may have been a major motivation behind Unity's controversial install-fee proposals (credit: Unity)

\n\n\n\n\n\n\n
\n

It's been over a month now since Unity partially backtracked on its controversial proposed \"pay per install\" fee structure, a trust-destroying saga that seems to have contributed to the retirement of Unity CEO John Riccitiello. Now, a new report highlights some of the internal divisions over the \"rushed-out\" policy introduction and provides new insight into what may have been motivating the company to even attempt such a plan.

\n

Business-focused site MobileGamer.biz cites multiple \"sources from inside Unity and across the mobile games business\" in reporting that Unity received some significant pushback from senior-level managers before rolling out its initial fee-restructuring plans. \"Half of the people in that meeting said that this model is too complicated, it\u2019s not going to be well-received, and we should talk to people before we do this,\" one anonymous source told the site. \"It felt very rushed. We had this meeting and were told it was happening, but we were not told a date. And then before we knew it, it was out there.\"

\n

After the negative reaction to that initial plan, Unity reportedly considered a modification that would take up to 4 percent of revenue from the largest Unity publishers\u2014slightly under the 5 percent charged by the Unreal Engine. The final policy knocked that cap down to 2.5 percent only after the extent of the backlash became clear.

Read 6 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A push for more IronSource customers may have been a major motivation behind Unity's controversial install-fee proposals (credit: Unity)\n \n\n\n\n\n\n\n\nIt's been over a month now since Unity partially backtracked on its controversial proposed \"pay per install\" fee structure, a trust-destroying saga that seems to have contributed to the retirement of Unity CEO John Riccitiello. Now, a new report highlights some of the internal divisions over the \"rushed-out\" policy introduction and provides new insight into what may have been motivating the company to even attempt such a plan.\nBusiness-focused site MobileGamer.biz cites multiple \"sources from inside Unity and across the mobile games business\" in reporting that Unity received some significant pushback from senior-level managers before rolling out its initial fee-restructuring plans. \"Half of the people in that meeting said that this model is too complicated, it\u2019s not going to be well-received, and we should talk to people before we do this,\" one anonymous source told the site. \"It felt very rushed. We had this meeting and were told it was happening, but we were not told a date. And then before we knew it, it was out there.\"\nAfter the negative reaction to that initial plan, Unity reportedly considered a modification that would take up to 4 percent of revenue from the largest Unity publishers\u2014slightly under the 5 percent charged by the Unreal Engine. The final policy knocked that cap down to 2.5 percent only after the extent of the backlash became clear.\n\nRead 6 remaining paragraphs | Comments", - "dc:creator": "Kyle Orland", - "comments": "https://arstechnica.com/gaming/2023/10/behind-the-scenes-of-unitys-rushed-out-install-fee-program/#comments", - "content": "New report details internal divisions, intense push for mobile ad money.", - "contentSnippet": "New report details internal divisions, intense push for mobile ad money.", - "guid": "https://arstechnica.com/?p=1978958", - "categories": [ - "Gaming", - "advertising", - "applovin", - "game development", - "ironsource", - "mobile ads", - "mobile games", - "Unity" - ], - "isoDate": "2023-10-26T16:42:40.000Z" - }, - { - "creator": "Ars Contributors", - "title": "Trying to make sense of why Otis exploded en route to Acapulco this week", - "link": "https://arstechnica.com/?p=1978886", - "pubDate": "Thu, 26 Oct 2023 15:17:37 +0000", - "content:encoded": "
\n
\n \"Hurricane\n

Enlarge / Hurricane Otis on Tuesday, as it was strengthening before making landfall in Mexico. (credit: NOAA)

\n\n\n\n\n\n\n
\n

The word \"unprecedented\" gets tossed around a lot these days, but what happened with Hurricane Otis and its impact on Acapulco on Tuesday were truly without precedent. And it was with only slight precedent anywhere in terms of how quickly it intensified.

\n

Otis was the textbook definition of rapid intensification, going from a 50 mph tropical storm on Monday evening to a 165 mph Category 5 hurricane last night. Through about mid-morning on Tuesday, everything was going basically as you'd expect for a modest hurricane with Otis. It may have been tracking toward a Category 2 type landfall, or even a Category 3 type landfall in the worst case, if you assumed the general rules of rapid intensification in this region. But Otis did not follow the rules.

\n

Much like an onion, there are layers to this story that are important. First, take it from one of the more seasoned NOAA hurricane hunters\u2014this was not what they expected when they flew their mission on Tuesday. Meteorologist Jeremy DeHart wrote on the site formerly known as Twitter, \"I have arrived to a storm & been surprised by the intensity, but nothing like this. Expected a marginal hurricane, found a Cat 3! Reminiscent of the stories I've heard about flying into Patricia ('05), in the same part of the world.\"

Read 17 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Hurricane Otis on Tuesday, as it was strengthening before making landfall in Mexico. (credit: NOAA)\n \n\n\n\n\n\n\n\nThe word \"unprecedented\" gets tossed around a lot these days, but what happened with Hurricane Otis and its impact on Acapulco on Tuesday were truly without precedent. And it was with only slight precedent anywhere in terms of how quickly it intensified.\nOtis was the textbook definition of rapid intensification, going from a 50 mph tropical storm on Monday evening to a 165 mph Category 5 hurricane last night. Through about mid-morning on Tuesday, everything was going basically as you'd expect for a modest hurricane with Otis. It may have been tracking toward a Category 2 type landfall, or even a Category 3 type landfall in the worst case, if you assumed the general rules of rapid intensification in this region. But Otis did not follow the rules.\nMuch like an onion, there are layers to this story that are important. First, take it from one of the more seasoned NOAA hurricane hunters\u2014this was not what they expected when they flew their mission on Tuesday. Meteorologist Jeremy DeHart wrote on the site formerly known as Twitter, \"I have arrived to a storm & been surprised by the intensity, but nothing like this. Expected a marginal hurricane, found a Cat 3! Reminiscent of the stories I've heard about flying into Patricia ('05), in the same part of the world.\"\n\nRead 17 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/science/2023/10/trying-to-make-sense-of-why-otis-exploded-en-route-to-acapulco-this-week/#comments", - "content": "It feels like this was a combination of bad luck, bad timing, and bad placement.", - "contentSnippet": "It feels like this was a combination of bad luck, bad timing, and bad placement.", - "guid": "https://arstechnica.com/?p=1978886", - "categories": [ - "Science", - "climate change", - "Hurricane Otis", - "hurricanes", - "syndication", - "tropical storms" - ], - "isoDate": "2023-10-26T15:17:37.000Z" - }, - { - "creator": "Ars Contributors", - "title": "Old-school problems, old-school solutions: We help aero-test a Mustang", - "link": "https://arstechnica.com/?p=1978858", - "pubDate": "Thu, 26 Oct 2023 14:59:18 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / OVC's Shelby Mustang recreations are accurate enough to be granted official papers to compete in historic racing. (credit: Michael Teo Van Runkle)

\n\n\n\n\n\n\n
\n

To Shelby Mustang fans, the Original Venice Crew (OVC) is the stuff of legends. This was the actual team that designed and built the original GT350s, Cobras, Daytona Coupes, and GT40s that introduced Carroll Shelby's name to the masses. Today, OVC builds modern Mustang re-creations so accurately that one was approved for last year's Le Mans Classic, which celebrated 100 years of the world's most famous endurance race.

\n

But OVC also offers updated versions of those classics, bringing to life ideas that bounced around the shop back in the day but that Shelby never built in series production. Want a 1965 GT350 with independent rear suspension? OVC can do that, after dialing in a design that Ford originally believed would be too expensive as a replacement for the first-gen Mustang's solid rear axle.

\n

These projects don't quite fit under the \"restomod\" umbrella, instead falling more along the lines of the ideas that OVC founder and boss Jim Marietta remembers from his days back at 1042 Princeton Drive. Think fender flares cut by hand rather than being machined or updated fiberglass front fascias to provide additional airflow.

Read 14 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / OVC's Shelby Mustang recreations are accurate enough to be granted official papers to compete in historic racing. (credit: Michael Teo Van Runkle)\n \n\n\n\n\n\n\n\nTo Shelby Mustang fans, the Original Venice Crew (OVC) is the stuff of legends. This was the actual team that designed and built the original GT350s, Cobras, Daytona Coupes, and GT40s that introduced Carroll Shelby's name to the masses. Today, OVC builds modern Mustang re-creations so accurately that one was approved for last year's Le Mans Classic, which celebrated 100 years of the world's most famous endurance race.\nBut OVC also offers updated versions of those classics, bringing to life ideas that bounced around the shop back in the day but that Shelby never built in series production. Want a 1965 GT350 with independent rear suspension? OVC can do that, after dialing in a design that Ford originally believed would be too expensive as a replacement for the first-gen Mustang's solid rear axle.\nThese projects don't quite fit under the \"restomod\" umbrella, instead falling more along the lines of the ideas that OVC founder and boss Jim Marietta remembers from his days back at 1042 Princeton Drive. Think fender flares cut by hand rather than being machined or updated fiberglass front fascias to provide additional airflow.\n\nRead 14 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/cars/2023/10/1960s-style-aero-testing-with-an-old-school-mustang-restomod/#comments", - "content": "OVC builds re-creations of 1960s Mustangs\u2014we help test a Peter Brock-designed hood.", - "contentSnippet": "OVC builds re-creations of 1960s Mustangs\u2014we help test a Peter Brock-designed hood.", - "guid": "https://arstechnica.com/?p=1978858", - "categories": [ - "Cars", - "aerodynamics", - "Ford Mustang", - "Restomod" - ], - "isoDate": "2023-10-26T14:59:18.000Z" - }, - { - "creator": "Ars Contributors", - "title": "Toyota shows electric concepts at Tokyo show, but it may never build them", - "link": "https://arstechnica.com/?p=1978841", - "pubDate": "Thu, 26 Oct 2023 14:10:23 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / Toyota CEO and President Kaji Sato on stage with the FT-Se (left) and FT-3e (right) concepts. (credit: Toyota)

\n\n\n\n\n\n\n
\n\n

A booth full of concept cars is nothing new at an auto show. This year at the Japan Mobility Show, though, Toyota called its entire booth a concept. The concept was \"Find Your Future,\" and it was meant to show how electric vehicles can be fun and flexible in ways that internal combustion vehicles can't.

\n

Toyota also highlighted an internal combustion vehicle that offers even more flexibility than its concepts. One will go on sale in Asia in the next few months, while the others may never see pavement.

\n
\"The

The FT-Se is very orange. (credit: Toyota )

\n

The highlight was a sharp-looking electric sports car concept called the FT-Se. Toyota didn't provide many details, but it described what the concept means for future production Toyota EVs.

Read 26 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Toyota CEO and President Kaji Sato on stage with the FT-Se (left) and FT-3e (right) concepts. (credit: Toyota)\n \n\n\n\n\n\n\n\nToyota provided flights from Halifax, Canada, to Tokyo, Japan, and five nights in a hotel so we could attend the Japan Mobility Show, plus subsequent briefings and test drives. Ars does not accept paid editorial content.\nA booth full of concept cars is nothing new at an auto show. This year at the Japan Mobility Show, though, Toyota called its entire booth a concept. The concept was \"Find Your Future,\" and it was meant to show how electric vehicles can be fun and flexible in ways that internal combustion vehicles can't.\nToyota also highlighted an internal combustion vehicle that offers even more flexibility than its concepts. One will go on sale in Asia in the next few months, while the others may never see pavement.\n\nThe FT-Se is very orange. (credit: Toyota )\n\nThe highlight was a sharp-looking electric sports car concept called the FT-Se. Toyota didn't provide many details, but it described what the concept means for future production Toyota EVs.\n\nRead 26 remaining paragraphs | Comments", - "dc:creator": "Ars Contributors", - "comments": "https://arstechnica.com/cars/2023/10/toyota-shows-electric-concepts-at-tokyo-show-but-it-may-never-build-them/#comments", - "content": "But an internal combustion engine-powered commercial van is going into production.", - "contentSnippet": "But an internal combustion engine-powered commercial van is going into production.", - "guid": "https://arstechnica.com/?p=1978841", - "categories": [ - "Cars", - "Tokyo Auto Show", - "Toyota" - ], - "isoDate": "2023-10-26T14:10:23.000Z" - }, - { - "creator": "Inside Climate News", - "title": "A new hybrid subspecies of puffin is likely the result of climate change", - "link": "https://arstechnica.com/?p=1978857", - "pubDate": "Thu, 26 Oct 2023 13:49:58 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / Atlantic puffin, Spitsbergen, Svalbard Islands, Norway. (credit: Sergio Pitamitz/VWPics/Universal Images Group via Getty Images)

\n\n\n\n\n\n\n
\n

The brisk increase in warming rates in the Arctic is bringing rapid shifts in range for plants and animals across the region\u2019s tree of life. Researchers say those changes can lead species that normally wouldn\u2019t encounter each other to interbreed, creating new hybrid populations.

\n

Now, scientists have presented the first evidence of large-scale hybridization that appears to have been driven by climate change. In a paper published this month in the journal Science Advances, researchers report that a hybrid Atlantic puffin population on the remote Norwegian island of Bjornoya seems to have emerged in a period coinciding with the onset of a faster pace of global warming.

\n

The hybrid puffins likely arose from the breeding between two subspecies within the past 100 or so years, coinciding with the onset of the 20th-century warming pattern, the study concludes. Strikingly, the hybridization occurred after a subspecies migrated southward, not poleward toward cooler temperatures, as might have been expected, a finding that highlights the complexity of the changes underway in the Arctic ecosystem.

Read 32 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Atlantic puffin, Spitsbergen, Svalbard Islands, Norway. (credit: Sergio Pitamitz/VWPics/Universal Images Group via Getty Images)\n \n\n\n\n\n\n\n\nThe brisk increase in warming rates in the Arctic is bringing rapid shifts in range for plants and animals across the region\u2019s tree of life. Researchers say those changes can lead species that normally wouldn\u2019t encounter each other to interbreed, creating new hybrid populations.\nNow, scientists have presented the first evidence of large-scale hybridization that appears to have been driven by climate change. In a paper published this month in the journal Science Advances, researchers report that a hybrid Atlantic puffin population on the remote Norwegian island of Bjornoya seems to have emerged in a period coinciding with the onset of a faster pace of global warming.\nThe hybrid puffins likely arose from the breeding between two subspecies within the past 100 or so years, coinciding with the onset of the 20th-century warming pattern, the study concludes. Strikingly, the hybridization occurred after a subspecies migrated southward, not poleward toward cooler temperatures, as might have been expected, a finding that highlights the complexity of the changes underway in the Arctic ecosystem.\n\nRead 32 remaining paragraphs | Comments", - "dc:creator": "Inside Climate News", - "comments": "https://arstechnica.com/science/2023/10/a-new-hybrid-subspecies-of-puffin-is-likely-the-result-of-climate-change/#comments", - "content": "Serious loss of genetic diversity still poses risks for their future.", - "contentSnippet": "Serious loss of genetic diversity still poses risks for their future.", - "guid": "https://arstechnica.com/?p=1978857", - "categories": [ - "Science", - "Arctic", - "climate change", - "evolution", - "puffins", - "syndication" - ], - "isoDate": "2023-10-26T13:49:58.000Z" - }, - { - "creator": "Eric Berger", - "title": "Daily Telescope: Snapshot of a brilliant green comet before it left forever", - "link": "https://arstechnica.com/?p=1978811", - "pubDate": "Thu, 26 Oct 2023 12:00:08 +0000", - "content:encoded": "
\n
\n \"A\n

Enlarge / A view of Comet C/2022 E3 (ZTF) taken earlier this year. (credit: Maarten Butter)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light\u2014a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we'll take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It is October 26, and today's image showcases a comet that made its closest approach to Earth on February 1 of this year. The comet has an unwieldy name, Comet C/2022 E3 (ZTF). But this tells us a lot about it, actually. The \"C\" means that it is non-periodic, meaning that it originated in the Oort cloud that lies at the edge of our Solar System.

\n

We can also discern that the comet was discovered in 2022, and was the third comet discovered during the first half of March (E3). Finally, the ZTF refers to its discovery by the Zwicky Transient Facility, where a 1.2-meter telescope is used to survey the night sky for just such objects.

Read 5 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A view of Comet C/2022 E3 (ZTF) taken earlier this year. (credit: Maarten Butter)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light\u2014a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we'll take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It is October 26, and today's image showcases a comet that made its closest approach to Earth on February 1 of this year. The comet has an unwieldy name, Comet C/2022 E3 (ZTF). But this tells us a lot about it, actually. The \"C\" means that it is non-periodic, meaning that it originated in the Oort cloud that lies at the edge of our Solar System.\nWe can also discern that the comet was discovered in 2022, and was the third comet discovered during the first half of March (E3). Finally, the ZTF refers to its discovery by the Zwicky Transient Facility, where a 1.2-meter telescope is used to survey the night sky for just such objects.\n\nRead 5 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2023/10/daily-telescope-snapshot-of-a-brilliant-green-comet-before-it-left-forever/#comments", - "content": "\"My goal was to highlight the comet's journey.\"", - "contentSnippet": "\"My goal was to highlight the comet's journey.\"", - "guid": "https://arstechnica.com/?p=1978811", - "categories": [ - "Space", - "daily telescope" - ], - "isoDate": "2023-10-26T12:00:08.000Z" - }, - { - "creator": "Jennifer Ouellette", - "title": "Leonardo da Vinci used toxic pigments when he painted the Mona Lisa", - "link": "https://arstechnica.com/?p=1978513", - "pubDate": "Wed, 25 Oct 2023 22:50:25 +0000", - "content:encoded": "
\n
\n \"detail\n

Enlarge / A tiny fleck of paint, taken from the Mona Lisa, is revealing insights into previously unknown steps of Leonardo da Vinci's process. (credit: Public domain)

\n\n\n\n\n\n\n
\n

When Leonardo da Vinci was creating his masterpiece, the Mona Lisa, he may have experimented with lead oxide in his base layer, resulting in trace amounts of a compound called plumbonacrite. It forms when lead oxides combine with oil, a common mixture to help paint dry, used by later artists like Rembrandt. But the presence of plumbonacrite in the Mona Lisa is the first time the compound has been detected in an Italian Renaissance painting, suggesting that da Vinci could have pioneered this technique, according to the authors of a recent paper published in the Journal of the American Chemical Society.

\n

Fewer than 20 of da Vinci's paintings have survived, and the Mona Lisa is by far the most famous, inspiring a 1950s hit song by Nat King Cole and featuring prominently in last year's Glass Onion: a Knives Out Mystery, among other pop culture mentions. The painting is in remarkably good condition given its age, but art conservationists and da Vinci scholars alike are eager to learn as much as possible about the materials the Renaissance master used to create his works.

\n

There have been some recent scientific investigations of da Vinci's works, which revealed that he varied the materials used for his paintings, especially concerning the ground layers applied between the wooden panel surface and the subsequent paint layers. For instance, for his Virgin and Child with St. Anne (c. 1503\u20131519), he used a typical Italian Renaissance gesso for the ground layer, followed by a lead white priming layer. But for La Belle Ferronniere (c. 1495\u20131497), da Vinci used an oil-based ground layer made of white and red lead.

Read 10 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A tiny fleck of paint, taken from the Mona Lisa, is revealing insights into previously unknown steps of Leonardo da Vinci's process. (credit: Public domain)\n \n\n\n\n\n\n\n\nWhen Leonardo da Vinci was creating his masterpiece, the Mona Lisa, he may have experimented with lead oxide in his base layer, resulting in trace amounts of a compound called plumbonacrite. It forms when lead oxides combine with oil, a common mixture to help paint dry, used by later artists like Rembrandt. But the presence of plumbonacrite in the Mona Lisa is the first time the compound has been detected in an Italian Renaissance painting, suggesting that da Vinci could have pioneered this technique, according to the authors of a recent paper published in the Journal of the American Chemical Society.\nFewer than 20 of da Vinci's paintings have survived, and the Mona Lisa is by far the most famous, inspiring a 1950s hit song by Nat King Cole and featuring prominently in last year's Glass Onion: a Knives Out Mystery, among other pop culture mentions. The painting is in remarkably good condition given its age, but art conservationists and da Vinci scholars alike are eager to learn as much as possible about the materials the Renaissance master used to create his works.\nThere have been some recent scientific investigations of da Vinci's works, which revealed that he varied the materials used for his paintings, especially concerning the ground layers applied between the wooden panel surface and the subsequent paint layers. For instance, for his Virgin and Child with St. Anne (c. 1503\u20131519), he used a typical Italian Renaissance gesso for the ground layer, followed by a lead white priming layer. But for La Belle Ferronniere (c. 1495\u20131497), da Vinci used an oil-based ground layer made of white and red lead.\n\nRead 10 remaining paragraphs | Comments", - "dc:creator": "Jennifer Ouellette", - "comments": "https://arstechnica.com/science/2023/10/leonardo-da-vinci-used-toxic-pigments-when-he-painted-the-mona-lisa/#comments", - "content": "Plumbonacrite has previously been found in later works by Rembrandt.", - "contentSnippet": "Plumbonacrite has previously been found in later works by Rembrandt.", - "guid": "https://arstechnica.com/?p=1978513", - "categories": [ - "Science", - "art conservation", - "chemical analysis", - "chemistry", - "infrared spectroscopy", - "Leonardo da Vinci", - "Mona Lisa", - "pigments", - "x-ray diffraction" - ], - "isoDate": "2023-10-25T22:50:25.000Z" - }, - { - "creator": "Dan Goodin", - "title": "Pro-Russia hackers target inboxes with 0-day in webmail app used by millions", - "link": "https://arstechnica.com/?p=1978806", - "pubDate": "Wed, 25 Oct 2023 22:21:49 +0000", - "content:encoded": "
\n
\n \"Pro-Russia\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

A relentless team of pro-Russia hackers has been exploiting a zero-day vulnerability in widely used webmail software in attacks targeting governmental entities and a think tank, all in Europe, researchers from security firm ESET said on Wednesday.

\n

The previously unknown vulnerability resulted from a critical cross-site scripting error in Roundcube, a server application used by more than 1,000 webmail services and millions of their end users. Members of a pro-Russia and Belarus hacking group tracked as Winter Vivern used the XSS bug to inject JavaScript into the Roundcube server application. The injection was triggered simply by viewing a malicious email, which caused the server to send emails from selected targets to a server controlled by the threat actor.

\n

No manual interaction required

\n

\u201cIn summary, by sending a specially crafted email message, attackers are able to load arbitrary JavaScript code in the context of the Roundcube user\u2019s browser window,\u201d ESET researcher Matthieu Faou wrote. \u201cNo manual interaction other than viewing the message in a web browser is required.\u201d

Read 7 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nA relentless team of pro-Russia hackers has been exploiting a zero-day vulnerability in widely used webmail software in attacks targeting governmental entities and a think tank, all in Europe, researchers from security firm ESET said on Wednesday.\nThe previously unknown vulnerability resulted from a critical cross-site scripting error in Roundcube, a server application used by more than 1,000 webmail services and millions of their end users. Members of a pro-Russia and Belarus hacking group tracked as Winter Vivern used the XSS bug to inject JavaScript into the Roundcube server application. The injection was triggered simply by viewing a malicious email, which caused the server to send emails from selected targets to a server controlled by the threat actor.\nNo manual interaction required\n\u201cIn summary, by sending a specially crafted email message, attackers are able to load arbitrary JavaScript code in the context of the Roundcube user\u2019s browser window,\u201d ESET researcher Matthieu Faou wrote. \u201cNo manual interaction other than viewing the message in a web browser is required.\u201d\n\nRead 7 remaining paragraphs | Comments", - "dc:creator": "Dan Goodin", - "comments": "https://arstechnica.com/security/2023/10/pro-russia-hackers-target-inboxes-with-0-day-in-webmail-app-used-by-millions/#comments", - "content": "Previously unknown XSS in Roundcube let Winter Vivern steal government emails.", - "contentSnippet": "Previously unknown XSS in Roundcube let Winter Vivern steal government emails.", - "guid": "https://arstechnica.com/?p=1978806", - "categories": [ - "Biz & IT", - "Security", - "roundcube", - "winter vivern", - "xss", - "zero-day" - ], - "isoDate": "2023-10-25T22:21:49.000Z" - }, - { - "creator": "Beth Mole", - "title": "Teeny jumping spider found in woman\u2019s ear after days of torturous racket", - "link": "https://arstechnica.com/?p=1978787", - "pubDate": "Wed, 25 Oct 2023 21:57:24 +0000", - "content:encoded": "
\n
\n \"The\n

Enlarge / The side view of the spider (on the left) in the ear canal with the exoskeleton in the background. (credit: The New England Journal of Medicine \u00a92023.)

\n\n\n\n\n\n\n
\n

While brain worms have made many horrifying headlines this year, the good folks at the New England Journal of Medicine offer some fresh nightmare fuel ahead of Halloween: an ear spider. And there's a video.

\n

In a short clinical report published in this week's issue, doctors in Tainan City, Taiwan, detail the case of a 64-year-old woman who sought care at an otolaryngology (ENT) clinic. She came in complaining of having an incessant ruckus in her left ear for the previous four days. On the first day of symptoms, the woman said she was awoken by a feeling of a wee creature crawling in her ear canal. That feeling was then followed by days of clicking, beating, and rustling noises.

\n

Read 9 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / The side view of the spider (on the left) in the ear canal with the exoskeleton in the background. (credit: The New England Journal of Medicine \u00a92023.)\n \n\n\n\n\n\n\n\nWhile brain worms have made many horrifying headlines this year, the good folks at the New England Journal of Medicine offer some fresh nightmare fuel ahead of Halloween: an ear spider. And there's a video.\nIn a short clinical report published in this week's issue, doctors in Tainan City, Taiwan, detail the case of a 64-year-old woman who sought care at an otolaryngology (ENT) clinic. She came in complaining of having an incessant ruckus in her left ear for the previous four days. On the first day of symptoms, the woman said she was awoken by a feeling of a wee creature crawling in her ear canal. That feeling was then followed by days of clicking, beating, and rustling noises.\n\n\nRead 9 remaining paragraphs | Comments", - "dc:creator": "Beth Mole", - "comments": "https://arstechnica.com/science/2023/10/a-wee-spider-needed-a-safe-place-to-molt-it-chose-a-womans-ear-canal/#comments", - "content": "The spider was nesting on her eardrum\u2014and there's video.", - "contentSnippet": "The spider was nesting on her eardrum\u2014and there's video.", - "guid": "https://arstechnica.com/?p=1978787", - "categories": [ - "Health", - "Science", - "ear", - "NEJM", - "Spider", - "spider in ear" - ], - "isoDate": "2023-10-25T21:57:24.000Z" - }, - { - "creator": "Scharon Harding", - "title": "Leica camera has built-in defense against misleading AI, costs $9,125", - "link": "https://arstechnica.com/?p=1979140", - "pubDate": "Fri, 27 Oct 2023 13:58:53 +0000", - "content:encoded": "
\n
\n \"Leica\n

Enlarge / A photo shot with the M11-P. (credit: CAI)

\n\n\n\n\n\n\n
\n

On Thursday, Leica Camera released the first camera that can take pictures with automatically encrypted metadata and provide features such as an editing history. The company believes this system, called Content Credentials, will help photojournalists protect their work and prove authenticity in a world riddled with AI-manipulated content.

\n

Leica's M11-P can store each captured image with Content Credentials, which is based on the Coalition for Content Provenance and Authenticity's (C2PA's) open standard and is being pushed by the Content Authenticity Initiative\u00a0(CAI). Content Credentials, announced in October, includes encrypted metadata detailing where and when the photo was taken and with what camera and model. It also keeps track of edits and tools used for edits.

\n

When a photographer opts to use the feature, they'll see a Content Credentials logo in the camera's display, and images will be signed through the use of an algorithm.

Read 6 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / A photo shot with the M11-P. (credit: CAI)\n \n\n\n\n\n\n\n\nOn Thursday, Leica Camera released the first camera that can take pictures with automatically encrypted metadata and provide features such as an editing history. The company believes this system, called Content Credentials, will help photojournalists protect their work and prove authenticity in a world riddled with AI-manipulated content.\nLeica's M11-P can store each captured image with Content Credentials, which is based on the Coalition for Content Provenance and Authenticity's (C2PA's) open standard and is being pushed by the Content Authenticity Initiative\u00a0(CAI). Content Credentials, announced in October, includes encrypted metadata detailing where and when the photo was taken and with what camera and model. It also keeps track of edits and tools used for edits.\nWhen a photographer opts to use the feature, they'll see a Content Credentials logo in the camera's display, and images will be signed through the use of an algorithm.\n\nRead 6 remaining paragraphs | Comments", - "dc:creator": "Scharon Harding", - "comments": "https://arstechnica.com/gadgets/2023/10/leicas-9125-camera-automatically-stores-authenticity-proving-metadata/#comments", - "content": "The M11-P is the first camera to integrate Content Credentials.", - "contentSnippet": "The M11-P is the first camera to integrate Content Credentials.", - "guid": "https://arstechnica.com/?p=1979140", - "categories": [ - "AI", - "Tech", - "cameras" - ], - "isoDate": "2023-10-27T13:58:53.000Z" - }, - { - "creator": "WIRED", - "title": "It\u2019s a \u201cfake PR stunt\u201d: Artists hate Meta\u2019s AI data deletion process", - "link": "https://arstechnica.com/?p=1979173", - "pubDate": "Fri, 27 Oct 2023 13:38:52 +0000", - "content:encoded": "
\n
\n \"a\n

Enlarge (credit: Nodar Chernishev/Getty)

\n\n\n\n\n\n\n
\n

As the generative artificial intelligence gold rush intensifies, concerns about the data used to train machine learning tools have grown. Artists and writers are fighting for a say in how AI companies use their work, filing lawsuits and publicly agitating against the way these models scrape the Internet and incorporate their art without consent.

\n

Some companies have responded to this pushback with \u201copt-out\u201d programs that give people a choice to remove their work from future models. OpenAI, for example, debuted an opt-out feature with its latest version of the image-to-text generator Dall-E. This August, when Meta began allowing people to submit requests to delete personal data from third parties used to train Meta\u2019s generative AI models, many artists and journalists interpreted this new process as Meta\u2019s very limited version of an opt-out program. CNBC explicitly referred to the request form as an \u201copt-out tool.\u201d

\n

Read 10 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge (credit: Nodar Chernishev/Getty)\n \n\n\n\n\n\n\n\nAs the generative artificial intelligence gold rush intensifies, concerns about the data used to train machine learning tools have grown. Artists and writers are fighting for a say in how AI companies use their work, filing lawsuits and publicly agitating against the way these models scrape the Internet and incorporate their art without consent.\nSome companies have responded to this pushback with \u201copt-out\u201d programs that give people a choice to remove their work from future models. OpenAI, for example, debuted an opt-out feature with its latest version of the image-to-text generator Dall-E. This August, when Meta began allowing people to submit requests to delete personal data from third parties used to train Meta\u2019s generative AI models, many artists and journalists interpreted this new process as Meta\u2019s very limited version of an opt-out program. CNBC explicitly referred to the request form as an \u201copt-out tool.\u201d\n\nRead 10 remaining paragraphs | Comments", - "dc:creator": "WIRED", - "comments": "https://arstechnica.com/ai/2023/10/its-a-fake-pr-stunt-artists-hate-metas-ai-data-deletion-process/#comments", - "content": "There's no way to opt out, leading artists to believe Meta's system is badly broken.", - "contentSnippet": "There's no way to opt out, leading artists to believe Meta's system is badly broken.", - "guid": "https://arstechnica.com/?p=1979173", - "categories": [ - "AI", - "copyright", - "LLM", - "meta", - "syndication" - ], - "isoDate": "2023-10-27T13:38:52.000Z" - }, - { - "creator": "Eric Berger", - "title": "Russia renamed its ambitious satellite program after Putin misspoke its name", - "link": "https://arstechnica.com/?p=1979142", - "pubDate": "Fri, 27 Oct 2023 13:20:00 +0000", - "content:encoded": "
\n
\n \"Russia\n

Enlarge / Russia President Vladimir Putin and Roscosmos chief Dmitry Rogozin shake hands during a meeting at the Konstantin Palace. (credit: Mikhail MetzelTASS via Getty Images)

\n\n\n\n\n\n\n
\n

It was always abundantly clear that the leader of the Russian space corporation Roscosmos from 2018 to 2022, Dmitry Rogozin, sought to kowtow to Russian President Vladimir Putin. Now we have an anecdote from Putin himself that highlights how much.

\n

The story concerns a satellite constellation now known as Sfera (or Sphere, in English), a modestly ambitious constellation of 264 satellites. The Sphere constellation is intended to provide broadband Internet service from middle-Earth orbit to Russia as well as high-resolution Earth observation satellites.

\n

As is usual with Russian space projects, because they tend to be poorly funded, the timeline for Sphere's deployment has been delayed and its scope reduced. It also underwent an unscheduled name change. Prior to 2018, this satellite program was known as Ehfir (Ether), a reference to the invisible substance once thought to fill the universe and the medium through which light waves propagated.

Read 9 remaining paragraphs | Comments

", - "content:encodedSnippet": "Enlarge / Russia President Vladimir Putin and Roscosmos chief Dmitry Rogozin shake hands during a meeting at the Konstantin Palace. (credit: Mikhail MetzelTASS via Getty Images)\n \n\n\n\n\n\n\n\nIt was always abundantly clear that the leader of the Russian space corporation Roscosmos from 2018 to 2022, Dmitry Rogozin, sought to kowtow to Russian President Vladimir Putin. Now we have an anecdote from Putin himself that highlights how much.\nThe story concerns a satellite constellation now known as Sfera (or Sphere, in English), a modestly ambitious constellation of 264 satellites. The Sphere constellation is intended to provide broadband Internet service from middle-Earth orbit to Russia as well as high-resolution Earth observation satellites.\nAs is usual with Russian space projects, because they tend to be poorly funded, the timeline for Sphere's deployment has been delayed and its scope reduced. It also underwent an unscheduled name change. Prior to 2018, this satellite program was known as Ehfir (Ether), a reference to the invisible substance once thought to fill the universe and the medium through which light waves propagated.\n\nRead 9 remaining paragraphs | Comments", - "dc:creator": "Eric Berger", - "comments": "https://arstechnica.com/space/2023/10/russia-renamed-its-ambitious-satellite-program-after-putin-misspoke-its-name/#comments", - "content": "\"So I didn't even make it back and it's already renamed to Sfera.\"", - "contentSnippet": "\"So I didn't even make it back and it's already renamed to Sfera.\"", - "guid": "https://arstechnica.com/?p=1979142", - "categories": [ - "Science", - "Space", - "Putin", - "rogozin", - "roscosmos", - "russia", - "space" - ], - "isoDate": "2023-10-27T13:20:00.000Z" - } -] \ No newline at end of file + { + "creator": "Samuel Axon", + "title": "Steam drops macOS Mojave support, effectively ending life for many 32-bit games", + "link": "https://arstechnica.com/?p=1987721", + "pubDate": "Thu, 30 Nov 2023 23:10:33 +0000", + "content:encoded": "
\n
\n \"macOS\n

Enlarge / macOS Mojave's wallpaper. (credit: Apple)

\n\n\n\n\n\n\n
\n

Valve Software's Steam gaming marketplace and app will drop support for macOS 10.13 (High Sierra) and 10.14 (Mojave), according to a support page post. The change will go into effect on February 15, 2024.

\n

What will happen exactly? Valve writes:

\n

After that date, existing Steam Client installations on these operating systems will no longer receive updates of any kind including security updates. Steam Support will be unable to offer users technical support for issues related to the old operating systems, and Steam will be unable to guarantee continued functionality of Steam on the unsupported operating system versions.

\n

macOS 10.14 (dubbed Mojave by Apple) shipped more than five years ago, and time has a way of marching on, so this might not seem that momentous at first glance. But there's a reason it's particularly noteworthy as these things go: this change means the end of support for the last versions of macOS that could run 32-bit games.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / macOS Mojave's wallpaper. (credit: Apple)\n \n\n\n\n\n\n\n\nValve Software's Steam gaming marketplace and app will drop support for macOS 10.13 (High Sierra) and 10.14 (Mojave), according to a support page post. The change will go into effect on February 15, 2024.\nWhat will happen exactly? Valve writes:\nAfter that date, existing Steam Client installations on these operating systems will no longer receive updates of any kind including security updates. Steam Support will be unable to offer users technical support for issues related to the old operating systems, and Steam will be unable to guarantee continued functionality of Steam on the unsupported operating system versions.\n\nmacOS 10.14 (dubbed Mojave by Apple) shipped more than five years ago, and time has a way of marching on, so this might not seem that momentous at first glance. But there's a reason it's particularly noteworthy as these things go: this change means the end of support for the last versions of macOS that could run 32-bit games.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Samuel Axon", + "comments": "https://arstechnica.com/gadgets/2023/11/steam-drops-macos-mojave-support-effectively-ending-life-for-many-32-bit-games/#comments", + "content": "After February 15, all bets are off for Steam on High Sierra and Mojave Macs.", + "contentSnippet": "After February 15, all bets are off for Steam on High Sierra and Mojave Macs.", + "guid": "https://arstechnica.com/?p=1987721", + "categories": [ + "Tech", + "gaming", + "Mac", + "Mac gaming", + "MacOS", + "Steam", + "Valve" + ], + "isoDate": "2023-11-30T23:10:33.000Z" + }, + { + "creator": "Kevin Purdy", + "title": "Automatic bike transmission concept is wild and spiky\u2014and could be a big shift", + "link": "https://arstechnica.com/?p=1987481", + "pubDate": "Thu, 30 Nov 2023 22:13:42 +0000", + "content:encoded": "
\n
\n \"Haven\n

Enlarge / Haven Mercer's prototype front assembly for an automatic bike transmission. (credit: Haven Mercer)

\n\n\n\n\n\n\n
\n

Depending on how you look at it, either a lot or not very much has changed about the way bikes shift gears since the mid-19th century.

\n

A lot has been refined along the transmission path, in which your feet push cranks, those cranks turn a big gear, and a chain connects that big gear to a smaller gear on the rear wheel. Shifting has picked up lots of improvements, be they electronic or wireless, as have derailleurs and internal gearboxes. Materials and tolerances have only improved over the decades.

\n

But in almost all cases, you're still manually adjusting something to move the chain and change gears, depending on the resistance you're feeling on the bike. Even the most outlandish recent ideas still involve indexed movement between different-sized gears.

Read 14 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Haven Mercer's prototype front assembly for an automatic bike transmission. (credit: Haven Mercer)\n \n\n\n\n\n\n\n\nDepending on how you look at it, either a lot or not very much has changed about the way bikes shift gears since the mid-19th century.\nA lot has been refined along the transmission path, in which your feet push cranks, those cranks turn a big gear, and a chain connects that big gear to a smaller gear on the rear wheel. Shifting has picked up lots of improvements, be they electronic or wireless, as have derailleurs and internal gearboxes. Materials and tolerances have only improved over the decades.\nBut in almost all cases, you're still manually adjusting something to move the chain and change gears, depending on the resistance you're feeling on the bike. Even the most outlandish recent ideas still involve indexed movement between different-sized gears.\n\nRead 14 remaining paragraphs | Comments", + "dc:creator": "Kevin Purdy", + "comments": "https://arstechnica.com/cars/2023/11/automatic-bike-transmission-concept-is-wild-and-spiky-and-could-be-a-big-shift/#comments", + "content": "Solo inventor says he's not out to replace gears, just offer an alternative.", + "contentSnippet": "Solo inventor says he's not out to replace gears, just offer an alternative.", + "guid": "https://arstechnica.com/?p=1987481", + "categories": [ + "Cars", + "bike gears", + "bikes", + "cycling", + "e-bikes", + "patents", + "Transmission" + ], + "isoDate": "2023-11-30T22:13:42.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Elon\u2019s Edsel? The Tesla Cybertruck went on sale today", + "link": "https://arstechnica.com/?p=1987661", + "pubDate": "Thu, 30 Nov 2023 21:51:41 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / It will probably be a while before you see these on the road, but some Tesla stores now have display Cybertrucks. (credit: Jonathan Gitlin)

\n\n\n\n\n\n\n
\n

On Thursday afternoon, Tesla delivered the first 10 production Cybertrucks to customers at an event livestreamed on X, Tesla CEO Elon Musk's social media network. A demo video featured shots of the Cybertruck negotiating barren wildernesses, including one that was meant to look like Mars. Musk, who has mostly made headlines in recent weeks for endorsing virulent antisemtitic theories on his social media platform, took to the stage almost half an hour late, initially delivering his presentation from the back of a truck with his face hidden in shadow.

\n

Musk claimed the Cybertruck is better than any other truck but also more of a sports car than any other sports car, made of a \"special Tesla designed steel alloy\" that he claimed will never rust and which cannot be stamped but which can also be produced in volume.

\n

Mindful of the window-breaking debacle during the truck's debut in 2019, Tesla designer Franz von Holzhausen came on stage to throw baseballs at its windows. Unlike last time (when presenters used metal balls), the allegedly bulletproof glass did not shatter. Musk made a point of the fact that in a crash with another vehicle, the Cybertruck\u2014which weighs 6,603\u20136,843 lbs (2,995\u20133,104 kg)\u2014will destroy the other vehicle.

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / It will probably be a while before you see these on the road, but some Tesla stores now have display Cybertrucks. (credit: Jonathan Gitlin)\n \n\n\n\n\n\n\n\nOn Thursday afternoon, Tesla delivered the first 10 production Cybertrucks to customers at an event livestreamed on X, Tesla CEO Elon Musk's social media network. A demo video featured shots of the Cybertruck negotiating barren wildernesses, including one that was meant to look like Mars. Musk, who has mostly made headlines in recent weeks for endorsing virulent antisemtitic theories on his social media platform, took to the stage almost half an hour late, initially delivering his presentation from the back of a truck with his face hidden in shadow.\nMusk claimed the Cybertruck is better than any other truck but also more of a sports car than any other sports car, made of a \"special Tesla designed steel alloy\" that he claimed will never rust and which cannot be stamped but which can also be produced in volume.\nMindful of the window-breaking debacle during the truck's debut in 2019, Tesla designer Franz von Holzhausen came on stage to throw baseballs at its windows. Unlike last time (when presenters used metal balls), the allegedly bulletproof glass did not shatter. Musk made a point of the fact that in a crash with another vehicle, the Cybertruck\u2014which weighs 6,603\u20136,843 lbs (2,995\u20133,104 kg)\u2014will destroy the other vehicle.\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2023/11/the-tesla-cybertruck-finally-goes-on-sale-starting-at-60990/#comments", + "content": "Tesla handed over the first 10 trucks to customers, with more deliveries in 2024.", + "contentSnippet": "Tesla handed over the first 10 trucks to customers, with more deliveries in 2024.", + "guid": "https://arstechnica.com/?p=1987661", + "categories": [ + "Cars", + "Cybertruck", + "Elon Musk", + "Tesla", + "Tesla Cybertruck" + ], + "isoDate": "2023-11-30T21:51:41.000Z" + }, + { + "creator": "Scharon Harding", + "title": "Reddit updates look after rough 6 months and ahead of reported IPO", + "link": "https://arstechnica.com/?p=1987576", + "pubDate": "Thu, 30 Nov 2023 21:25:41 +0000", + "content:encoded": "
\n
\n \"Old\n

Enlarge / Left: Reddit's old logo. Right: Reddit's new logo. (credit: Reddit)

\n\n\n\n\n\n\n
\n

Writing a long comment providing detail about Reddit's refreshed logo, mascot, and typeface this week, a Reddit employee seemingly rethought the post and opted to conclude it with choice words. The post's last line currently reads:

\n

\"Edit: Obligatory 'Fuck Spez' for karma.\"

\n

The Reddit employee, going by Acidtwist on Reddit and known as Tavish, says they're Reddit's head of brand creative (Reddit says it doesn't disclose the real identities of its workers on Reddit).

Read 19 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Left: Reddit's old logo. Right: Reddit's new logo. (credit: Reddit)\n \n\n\n\n\n\n\n\nWriting a long comment providing detail about Reddit's refreshed logo, mascot, and typeface this week, a Reddit employee seemingly rethought the post and opted to conclude it with choice words. The post's last line currently reads:\n\"Edit: Obligatory 'Fuck Spez' for karma.\"\nThe Reddit employee, going by Acidtwist on Reddit and known as Tavish, says they're Reddit's head of brand creative (Reddit says it doesn't disclose the real identities of its workers on Reddit).\n\nRead 19 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/gadgets/2023/11/reddit-updates-look-after-rough-6-months-and-ahead-of-reported-ipo/#comments", + "content": "\"Edit: Obligatory 'F--- Spez' for karma.\"", + "contentSnippet": "\"Edit: Obligatory 'F--- Spez' for karma.\"", + "guid": "https://arstechnica.com/?p=1987576", + "categories": ["Culture", "Tech", "reddit", "social media"], + "isoDate": "2023-11-30T21:25:41.000Z" + }, + { + "creator": "Beth Mole", + "title": "Millions of lead pipes would finally be ripped out under proposed EPA rule", + "link": "https://arstechnica.com/?p=1987594", + "pubDate": "Thu, 30 Nov 2023 19:31:55 +0000", + "content:encoded": "
\n
\n \"City\n

Enlarge / City workers unload a truck containing pallets of bottled water to distribute during a water filter distribution event on October 26, 2021 in Hamtramck, Michigan. The state Department of Health and Human Services has begun distributing water filters and bottled water to residents due to elevated levels of lead found in the drinking water due to old and un-maintained water pipes in the city. (credit: Getty | Matthew Hatcher)

\n\n\n\n\n\n\n
\n

The Environmental Protection Agency on Thursday proposed a stricter rule on lead in drinking water that would require that all lead service lines in the country be replaced within 10 years, and would lower the current lead action level in drinking water from 15 parts per billion to 10 parts per billion.

\n

More than 9.2 million American households have water connections that include lead piping, according to the White House. Lead moves from the pipes into the water when the plumbing experiences corrosion, which is most severe when the water is acidic or has low mineral content. There is no safe level of lead, which is a toxic metal with wide-ranging health effects, including neurotoxic effects. In children, lead exposure can damage the brain and nervous system, slow development, lower IQ, and cause learning, behavioral, speech, and hearing problems. In adults, it can increase the risk of high blood pressure, cardiovascular problems, and kidney damage.

\n

The EPA estimates that the rule will generate between $9.8 billion to $34.8 billion in economic benefits each year based on health improvement, including higher IQs in children, healthier newborns, lower cardiovascular risks in adults, and a reduction in care for attention-deficit/hyperactivity disorder.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / City workers unload a truck containing pallets of bottled water to distribute during a water filter distribution event on October 26, 2021 in Hamtramck, Michigan. The state Department of Health and Human Services has begun distributing water filters and bottled water to residents due to elevated levels of lead found in the drinking water due to old and un-maintained water pipes in the city. (credit: Getty | Matthew Hatcher)\n \n\n\n\n\n\n\n\nThe Environmental Protection Agency on Thursday proposed a stricter rule on lead in drinking water that would require that all lead service lines in the country be replaced within 10 years, and would lower the current lead action level in drinking water from 15 parts per billion to 10 parts per billion.\nMore than 9.2 million American households have water connections that include lead piping, according to the White House. Lead moves from the pipes into the water when the plumbing experiences corrosion, which is most severe when the water is acidic or has low mineral content. There is no safe level of lead, which is a toxic metal with wide-ranging health effects, including neurotoxic effects. In children, lead exposure can damage the brain and nervous system, slow development, lower IQ, and cause learning, behavioral, speech, and hearing problems. In adults, it can increase the risk of high blood pressure, cardiovascular problems, and kidney damage.\nThe EPA estimates that the rule will generate between $9.8 billion to $34.8 billion in economic benefits each year based on health improvement, including higher IQs in children, healthier newborns, lower cardiovascular risks in adults, and a reduction in care for attention-deficit/hyperactivity disorder.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/health/2023/11/bidens-epa-proposes-water-rule-to-finally-ditch-lead-pipes-within-10-years/#comments", + "content": "The rule could generate up to $34.8 billion in health benefits each year.", + "contentSnippet": "The rule could generate up to $34.8 billion in health benefits each year.", + "guid": "https://arstechnica.com/?p=1987594", + "categories": [ + "Health", + "Science", + "Biden", + "children", + "drinking water", + "EPA", + "lead", + "pipes", + "toxic", + "water" + ], + "isoDate": "2023-11-30T19:31:55.000Z" + }, + { + "creator": "Andrew Cunningham", + "title": "New chip-packaging facility could save TSMC\u2019s Arizona fab from \u201cpaperweight\u201d status", + "link": "https://arstechnica.com/?p=1987451", + "pubDate": "Thu, 30 Nov 2023 19:25:43 +0000", + "content:encoded": "
\n
\n \"Apple\n

Enlarge / Apple wants to build more of its A- and M-series chips in the United States. (credit: Apple)

\n\n\n\n\n\n\n
\n

Late last year, Apple CEO Tim Cook announced that the company would definitely be buying chips made at Taiwan Semiconductor's new Arizona-based fab once it had opened. Apple working with TSMC isn't new; most, if not all, of the processors currently sold in Apple's products are made on one of TSMC's many manufacturing nodes. But being able to buy them from a US-based facility would be a first.

\n

The issue, as outlined by some TSMC employees speaking to The Information in September, is that the Arizona facility would manufacture chips, but it wouldn't be building a facility to handle packaging. And without packaging, the Arizona factory would essentially be a \"paperweight,\" requiring any chips made there to be shipped to Taiwan for assembly before they could be put in any products.

\n

Today Apple announced that it had solved that particular problem, partnering with a company called Amkor to handle chip packaging in Arizona. Amkor says that it will invest $2 billion to build the facility, which will \"employ approximately 2,000 people\" and \"is targeted to be ready for production within the next two to three years.\" Apple says that it has already worked with Amkor on chip packaging for \"more than a decade.\"

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Apple wants to build more of its A- and M-series chips in the United States. (credit: Apple)\n \n\n\n\n\n\n\n\nLate last year, Apple CEO Tim Cook announced that the company would definitely be buying chips made at Taiwan Semiconductor's new Arizona-based fab once it had opened. Apple working with TSMC isn't new; most, if not all, of the processors currently sold in Apple's products are made on one of TSMC's many manufacturing nodes. But being able to buy them from a US-based facility would be a first.\nThe issue, as outlined by some TSMC employees speaking to The Information in September, is that the Arizona facility would manufacture chips, but it wouldn't be building a facility to handle packaging. And without packaging, the Arizona factory would essentially be a \"paperweight,\" requiring any chips made there to be shipped to Taiwan for assembly before they could be put in any products.\nToday Apple announced that it had solved that particular problem, partnering with a company called Amkor to handle chip packaging in Arizona. Amkor says that it will invest $2 billion to build the facility, which will \"employ approximately 2,000 people\" and \"is targeted to be ready for production within the next two to three years.\" Apple says that it has already worked with Amkor on chip packaging for \"more than a decade.\"\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Andrew Cunningham", + "comments": "https://arstechnica.com/tech-policy/2023/11/new-chip-packaging-facility-could-save-tsmcs-arizona-fab-from-paperweight-status/#comments", + "content": "Apple will be \"first and largest customer\" at new $2 billion packaging facility.", + "contentSnippet": "Apple will be \"first and largest customer\" at new $2 billion packaging facility.", + "guid": "https://arstechnica.com/?p=1987451", + "categories": [ + "Apple", + "Policy", + "AMD", + "apple", + "Intel", + "packaging", + "TSMC" + ], + "isoDate": "2023-11-30T19:25:43.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "The Great Google Account Purge starts tomorrow for inactive users", + "link": "https://arstechnica.com/?p=1987462", + "pubDate": "Thu, 30 Nov 2023 18:59:11 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Bloomberg via Getty Images)

\n\n\n\n\n\n\n
\n

Hello fellow procrastinators. This is your last-minute warning that you have until the end of the day to log in to any inactive Google accounts before they start getting deleted on December 1. Google is going to wipe any accounts that have been \"inactive\" for two years, allowing the company to free up storage space, delete unused personal data, and continue the ongoing journey of intense cost cutting it has been on for the past year.

\n

The plan to do this was announced in May, and Google says inactive accounts should get \"multiple notifications over the months leading up to deletion, to both the account email address and the recovery email (if one has been provided),\" so hopefully this isn't a surprise to anyone. The company says it will \"take a phased approach\" to deleting accounts, starting with \"accounts that were created and never used again,\" so even if you're reading this on December 1, there's probably still time to log in to an old account and save it.

\n

As for the caveats around \"inactivity,\" Google says this will only apply to personal accounts that don't have any subscriptions running, so Google Workspace and Google One users have nothing to fear. The company says you'll count as \"active\" if you \"sign-in at least once every 2 years,\" which is pretty easy to do. Confusingly it also lists certain activities you can perform that will count as \"activity,\" but those seem rather moot, since you would already need to be logged in to do them. The \"Sign in with Google\" OAuth platform on other websites also counts as account activity, and so does being signed in on an Android phone.

Read 2 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Bloomberg via Getty Images)\n \n\n\n\n\n\n\n\nHello fellow procrastinators. This is your last-minute warning that you have until the end of the day to log in to any inactive Google accounts before they start getting deleted on December 1. Google is going to wipe any accounts that have been \"inactive\" for two years, allowing the company to free up storage space, delete unused personal data, and continue the ongoing journey of intense cost cutting it has been on for the past year.\nThe plan to do this was announced in May, and Google says inactive accounts should get \"multiple notifications over the months leading up to deletion, to both the account email address and the recovery email (if one has been provided),\" so hopefully this isn't a surprise to anyone. The company says it will \"take a phased approach\" to deleting accounts, starting with \"accounts that were created and never used again,\" so even if you're reading this on December 1, there's probably still time to log in to an old account and save it.\nAs for the caveats around \"inactivity,\" Google says this will only apply to personal accounts that don't have any subscriptions running, so Google Workspace and Google One users have nothing to fear. The company says you'll count as \"active\" if you \"sign-in at least once every 2 years,\" which is pretty easy to do. Confusingly it also lists certain activities you can perform that will count as \"activity,\" but those seem rather moot, since you would already need to be logged in to do them. The \"Sign in with Google\" OAuth platform on other websites also counts as account activity, and so does being signed in on an Android phone.\n\nRead 2 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2023/11/inactive-google-account-deletions-start-december-1/#comments", + "content": "Any accounts lined up for deletion should have gotten warning emails by now. ", + "contentSnippet": "Any accounts lined up for deletion should have gotten warning emails by now.", + "guid": "https://arstechnica.com/?p=1987462", + "categories": ["Google", "Tech"], + "isoDate": "2023-11-30T18:59:11.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Meta sues FTC, hoping to block ban on monetizing kids\u2019 Facebook data", + "link": "https://arstechnica.com/?p=1987539", + "pubDate": "Thu, 30 Nov 2023 18:50:06 +0000", + "content:encoded": "
\n
\n \"Photo\n

Enlarge (credit: Getty Images | Chesnot)

\n\n\n\n\n\n\n
\n

Meta sued the Federal Trade Commission yesterday in a lawsuit that challenges the FTC's authority to impose new privacy obligations on the social media firm.

\n

The complaint stems from the FTC's May 2023 allegation that Meta-owned Facebook violated a 2020 privacy settlement and the Children's Online Privacy Protection Act. The FTC proposed changes to the 2020 privacy order that would, among other things, prohibit Facebook from monetizing data it collects from users under 18.

\n

Meta's lawsuit against the FTC challenges what it calls \"the structurally unconstitutional authority exercised by the FTC through its Commissioners in an administrative reopening proceeding against Meta.\" It was filed against the FTC, Chair Lina Khan, and other commissioners in US District Court for the District of Columbia. Meta is seeking a preliminary injunction to stop the FTC proceeding pending resolution of the lawsuit.

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | Chesnot)\n \n\n\n\n\n\n\n\nMeta sued the Federal Trade Commission yesterday in a lawsuit that challenges the FTC's authority to impose new privacy obligations on the social media firm.\nThe complaint stems from the FTC's May 2023 allegation that Meta-owned Facebook violated a 2020 privacy settlement and the Children's Online Privacy Protection Act. The FTC proposed changes to the 2020 privacy order that would, among other things, prohibit Facebook from monetizing data it collects from users under 18.\nMeta's lawsuit against the FTC challenges what it calls \"the structurally unconstitutional authority exercised by the FTC through its Commissioners in an administrative reopening proceeding against Meta.\" It was filed against the FTC, Chair Lina Khan, and other commissioners in US District Court for the District of Columbia. Meta is seeking a preliminary injunction to stop the FTC proceeding pending resolution of the lawsuit.\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/11/meta-sues-ftc-hoping-to-block-ban-on-monetizing-kids-facebook-data/#comments", + "content": "Accused of violating kids' privacy, Facebook owner challenges FTC authority.", + "contentSnippet": "Accused of violating kids' privacy, Facebook owner challenges FTC authority.", + "guid": "https://arstechnica.com/?p=1987539", + "categories": [ + "Policy", + "Facebook", + "Facebook privacy", + "federal trade comission", + "meta" + ], + "isoDate": "2023-11-30T18:50:06.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Meta\u2019s \u201coverpriced\u201d ad-free subscriptions make privacy a \u201cluxury good\u201d: EU suit", + "link": "https://arstechnica.com/?p=1987523", + "pubDate": "Thu, 30 Nov 2023 18:37:31 +0000", + "content:encoded": "
\n
\n \"Meta\u2019s\n

Enlarge (credit: NurPhoto / Contributor | NurPhoto)

\n\n\n\n\n\n\n
\n

Backlash over Meta's ad-free subscription model in the European Union has begun just one month into its launch.

\n

On Thursday, Europe's largest consumer group, the European Consumer Organization (BEUC), filed a complaint with the network of consumer protection authorities. In a press release, BEUC alleges that Meta's subscription fees for ad-free access to Facebook and Instagram are so unreasonably high that they breach laws designed to protect user privacy as a fundamental right.

\n

\"Meta has been rolling out changes to its service in the EU in November 2023, which require Facebook and Instagram users to either consent to the processing of their data for advertising purposes by the company or pay in order not to be shown advertisements,\" BEUC's press release said. \"The tech giant\u2019s pay-or-consent approach is unfair and must be stopped.\"

Read 22 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: NurPhoto / Contributor | NurPhoto)\n \n\n\n\n\n\n\n\nBacklash over Meta's ad-free subscription model in the European Union has begun just one month into its launch.\nOn Thursday, Europe's largest consumer group, the European Consumer Organization (BEUC), filed a complaint with the network of consumer protection authorities. In a press release, BEUC alleges that Meta's subscription fees for ad-free access to Facebook and Instagram are so unreasonably high that they breach laws designed to protect user privacy as a fundamental right.\n\"Meta has been rolling out changes to its service in the EU in November 2023, which require Facebook and Instagram users to either consent to the processing of their data for advertising purposes by the company or pay in order not to be shown advertisements,\" BEUC's press release said. \"The tech giant\u2019s pay-or-consent approach is unfair and must be stopped.\"\n\nRead 22 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2023/11/metas-overpriced-ad-free-subscriptions-make-privacy-a-luxury-good-eu-suit/#comments", + "content": "Meta's terms for data collection are still too vague, consumer groups allege.", + "contentSnippet": "Meta's terms for data collection are still too vague, consumer groups allege.", + "guid": "https://arstechnica.com/?p=1987523", + "categories": [ + "Policy", + "ad-free subscriptions", + "data privacy", + "european union", + "Facebook", + "Facebook subscription", + "gdpr", + "Instagram", + "instagram subscription", + "meta", + "online data marketplace" + ], + "isoDate": "2023-11-30T18:37:31.000Z" + }, + { + "creator": "Benj Edwards", + "title": "ChatGPT is one year old. Here\u2019s how it changed the tech world.", + "link": "https://arstechnica.com/?p=1987298", + "pubDate": "Thu, 30 Nov 2023 17:01:19 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / An artist's interpretation of what ChatGPT might look like if embodied in the form of a robot toy blowing out a birthday candle. (credit: Aurich Lawson | Getty Images)

\n\n\n\n\n\n\n
\n

One year ago today, on November 30, 2022, OpenAI released ChatGPT. It's uncommon for a single product to create as much impact on the tech industry as ChatGPT has in just one year.

\n

Imagine a computer that can talk to you. Nothing new, right? Those have been around since the 1960s. But ChatGPT, the application that first bought large language models (LLMs) to a wide audience, felt different. It could compose poetry, seemingly understand the context of your questions and your conversation, and help you solve problems. Within a few months, it became the fastest-growing consumer application of all time. And it created a frenzy in the tech world.

\n\n

During these 365 days, ChatGPT has broadened the public perception of AI, captured imaginations, attracted critics, and stoked existential angst. It emboldened and reoriented Microsoft, made Google dance, spurred fears of AGI taking over the world, captivated world leaders, prompted attempts at government regulation, helped add words to dictionaries, inspired conferences and copycats, led to a crisis for educators, hyper-charged automated defamation, embarrassed lawyers by hallucinating, prompted lawsuits over training data, and much more.

Read 12 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / An artist's interpretation of what ChatGPT might look like if embodied in the form of a robot toy blowing out a birthday candle. (credit: Aurich Lawson | Getty Images)\n \n\n\n\n\n\n\n\nOne year ago today, on November 30, 2022, OpenAI released ChatGPT. It's uncommon for a single product to create as much impact on the tech industry as ChatGPT has in just one year.\nImagine a computer that can talk to you. Nothing new, right? Those have been around since the 1960s. But ChatGPT, the application that first bought large language models (LLMs) to a wide audience, felt different. It could compose poetry, seemingly understand the context of your questions and your conversation, and help you solve problems. Within a few months, it became the fastest-growing consumer application of all time. And it created a frenzy in the tech world.\nDuring these 365 days, ChatGPT has broadened the public perception of AI, captured imaginations, attracted critics, and stoked existential angst. It emboldened and reoriented Microsoft, made Google dance, spurred fears of AGI taking over the world, captivated world leaders, prompted attempts at government regulation, helped add words to dictionaries, inspired conferences and copycats, led to a crisis for educators, hyper-charged automated defamation, embarrassed lawyers by hallucinating, prompted lawsuits over training data, and much more.\n\nRead 12 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/information-technology/2023/11/chatgpt-was-the-spark-that-lit-the-fire-under-generative-ai-one-year-ago-today/#comments", + "content": "Examining 365 days with OpenAI's bot: The good, the bad, the ugly\u2014and the productive?", + "contentSnippet": "Examining 365 days with OpenAI's bot: The good, the bad, the ugly\u2014and the productive?", + "guid": "https://arstechnica.com/?p=1987298", + "categories": [ + "AI", + "Biz & IT", + "Anthropic", + "chatbots", + "ChatGPT", + "ChatGPT Plus", + "chatgtp", + "Claude", + "Galactica", + "google", + "GPT-3", + "GPT-3.5", + "GPT-4", + "large language models", + "LLaMA", + "machine learning", + "meta", + "microsoft", + "openai", + "sam altman" + ], + "isoDate": "2023-11-30T17:01:19.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Hyundai Ioniq 6 tops list of fastest-charging EVs; Chevy Bolt ranks last", + "link": "https://arstechnica.com/?p=1987446", + "pubDate": "Thu, 30 Nov 2023 16:11:44 +0000", + "content:encoded": "
\n
\n \"Symbol\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Despite the fact that most of us generally drive short distances when we get in our cars, the time it takes to fast-charge an electric vehicle remains of paramount importance to potential EV buyers. It's hard to blame them\u2014for more than a century, motorists have come to expect short refueling stops, and until someone actually lives with an EV for a while, it can be hard to make that paradigm shift. And of course, not everyone has the ability to slow-charge an EV at home or at work, your author included.

\n

So with that in mind, the consumer advice publication Edmunds decided to test a whole bunch of EVs to find out which one adds the most miles of range in the fewest minutes possible.

\n

Working with the automotive consultancy P3, Edmunds tested 43 different EVs, running down their batteries on its EV range-testing route to calculate the car's efficiency, then fast-charged them from 10 to 80 percent, measuring peak and average charging power and calculating charging losses in the process. Edmunds says it did this because automakers are inconsistent in advertising fast-charging times\u2014some list charge times from 10 to 80 percent, while others simply say their cars can add 100 miles (160 km) of range in a given time.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nDespite the fact that most of us generally drive short distances when we get in our cars, the time it takes to fast-charge an electric vehicle remains of paramount importance to potential EV buyers. It's hard to blame them\u2014for more than a century, motorists have come to expect short refueling stops, and until someone actually lives with an EV for a while, it can be hard to make that paradigm shift. And of course, not everyone has the ability to slow-charge an EV at home or at work, your author included.\nSo with that in mind, the consumer advice publication Edmunds decided to test a whole bunch of EVs to find out which one adds the most miles of range in the fewest minutes possible.\nWorking with the automotive consultancy P3, Edmunds tested 43 different EVs, running down their batteries on its EV range-testing route to calculate the car's efficiency, then fast-charged them from 10 to 80 percent, measuring peak and average charging power and calculating charging losses in the process. Edmunds says it did this because automakers are inconsistent in advertising fast-charging times\u2014some list charge times from 10 to 80 percent, while others simply say their cars can add 100 miles (160 km) of range in a given time.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2023/11/hyundais-ioniq-6-and-kias-ev6-are-fastest-fast-charging-evs-edmunds-says/#comments", + "content": "The consumer advice publication tested 43 EVs to see which added the most miles fastest.", + "contentSnippet": "The consumer advice publication tested 43 EVs to see which added the most miles fastest.", + "guid": "https://arstechnica.com/?p=1987446", + "categories": [ + "Cars", + "Chevrolet Bolt", + "DC fast charging", + "EV charging", + "ev fast charging", + "Hyundai Ioniq 6" + ], + "isoDate": "2023-11-30T16:11:44.000Z" + }, + { + "creator": "Benj Edwards", + "title": "Sam Altman officially back as OpenAI CEO: \u201cWe didn\u2019t lose a single employee\u201d", + "link": "https://arstechnica.com/?p=1987333", + "pubDate": "Thu, 30 Nov 2023 14:37:58 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: OpenAI / Benj Edwards)

\n\n\n\n\n\n\n
\n

On Wednesday, OpenAI announced that Sam Altman has officially returned to the ChatGPT-maker as CEO\u2014accompanied by Mira Murati as CTO and Greg Brockman as president\u2014resuming their roles from before the shocking firing of Altman that threw the company into turmoil two weeks ago. Altman says the company did not lose a single employee or customer throughout the crisis.

\n\n

\"I have never been more excited about the future. I am extremely grateful for everyone\u2019s hard work in an unclear and unprecedented situation, and I believe our resilience and spirit set us apart in the industry,\" wrote Altman in an official OpenAI news release. \"I feel so, so good about our probability of success for achieving our mission.\"

\n

In the statement, Altman formalized plans that have been underway since last week: ex-Salesforce co-CEO Bret Taylor and economist Larry Summers have officially begun their tenure on the \"new initial\" OpenAI board of directors. Quora CEO Adam D\u2019Angelo is keeping his previous seat on the board. Also on Wednesday, previous board members Tasha McCauley and Helen Toner officially resigned. In addition, a representative from Microsoft (a key OpenAI investor) will have a non-voting observer role on the board of directors.

Read 9 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: OpenAI / Benj Edwards)\n \n\n\n\n\n\n\n\nOn Wednesday, OpenAI announced that Sam Altman has officially returned to the ChatGPT-maker as CEO\u2014accompanied by Mira Murati as CTO and Greg Brockman as president\u2014resuming their roles from before the shocking firing of Altman that threw the company into turmoil two weeks ago. Altman says the company did not lose a single employee or customer throughout the crisis.\n\"I have never been more excited about the future. I am extremely grateful for everyone\u2019s hard work in an unclear and unprecedented situation, and I believe our resilience and spirit set us apart in the industry,\" wrote Altman in an official OpenAI news release. \"I feel so, so good about our probability of success for achieving our mission.\"\nIn the statement, Altman formalized plans that have been underway since last week: ex-Salesforce co-CEO Bret Taylor and economist Larry Summers have officially begun their tenure on the \"new initial\" OpenAI board of directors. Quora CEO Adam D\u2019Angelo is keeping his previous seat on the board. Also on Wednesday, previous board members Tasha McCauley and Helen Toner officially resigned. In addition, a representative from Microsoft (a key OpenAI investor) will have a non-voting observer role on the board of directors.\n\nRead 9 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/information-technology/2023/11/sam-altman-officially-back-as-openai-ceo-we-didnt-lose-a-single-employee/#comments", + "content": "Altman forgives Sutskever; Microsoft will serve observer role on new OpenAI board.", + "contentSnippet": "Altman forgives Sutskever; Microsoft will serve observer role on new OpenAI board.", + "guid": "https://arstechnica.com/?p=1987333", + "categories": [ + "AI", + "Biz & IT", + "Adam D'Angelo", + "Bret Taylor", + "ChatGPT", + "chatgtp", + "Emmett Shear", + "greg brockman", + "Helen Toner", + "Illya Sutskever", + "large language models", + "Larry Summers", + "machine learning", + "mire murati", + "openai", + "sam altman", + "Tasha McCauley" + ], + "isoDate": "2023-11-30T14:37:58.000Z" + }, + { + "creator": "Financial Times", + "title": "How Huawei made a cutting-edge chip in China and surprised the US", + "link": "https://arstechnica.com/?p=1987396", + "pubDate": "Thu, 30 Nov 2023 14:37:39 +0000", + "content:encoded": "
\n
\n \"montage\n

Enlarge (credit: FT)

\n\n\n\n\n\n\n
\n

In late 2020, Huawei was fighting for its survival as a mobile phone maker.

\n

A few months earlier, the Trump administration had hit the Chinese company with crippling sanctions, cutting it off from global semiconductor supply chains.

\n

The sanctions prevented anyone without a permit from making the chips Huawei designed, and the company was struggling to procure new chips to launch more advanced handsets.

Read 65 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: FT)\n \n\n\n\n\n\n\n\nIn late 2020, Huawei was fighting for its survival as a mobile phone maker.\nA few months earlier, the Trump administration had hit the Chinese company with crippling sanctions, cutting it off from global semiconductor supply chains.\nThe sanctions prevented anyone without a permit from making the chips Huawei designed, and the company was struggling to procure new chips to launch more advanced handsets.\n\nRead 65 remaining paragraphs | Comments", + "dc:creator": "Financial Times", + "comments": "https://arstechnica.com/information-technology/2023/11/how-huawei-made-a-cutting-edge-chip-in-china-and-surprised-the-us/#comments", + "content": "China's flagship smartphone maker pulled off the feat despite sanctions.", + "contentSnippet": "China's flagship smartphone maker pulled off the feat despite sanctions.", + "guid": "https://arstechnica.com/?p=1987396", + "categories": [ + "Biz & IT", + "AI chips", + "china", + "Chip making", + "Huawei", + "smartphones", + "syndication" + ], + "isoDate": "2023-11-30T14:37:39.000Z" + }, + { + "creator": "Beth Mole", + "title": "FDA warns chemical company not to mix brake cleaner into hand sanitizer", + "link": "https://arstechnica.com/?p=1987347", + "pubDate": "Thu, 30 Nov 2023 13:13:27 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | Jena Ardell)

\n\n\n\n\n\n\n
\n

A chemical manufacturing facility in Wisconsin has drawn the ire of the Food and Drug Administration for making hand sanitizer with the same equipment it uses to make products with toxic industrial solvents and chemicals, such as automotive brake parts cleaner. The practice is a clear violation of manufacturing standards and could lead to harmful cross-contamination, the FDA said.

\n

The agency sent a warning letter dated October 26 to the maker of the hand sanitizer, Brenntag Great Lakes, LLC, in Wisconsin. The letter, which redacted the name of the hand sanitizer, stated that the agency had found \"significant violations\" in an inspection in the spring and that the company's responses since then were \"inadequate.\"

\n

Toxic hand sanitizers became an alarming problem in the early days of the COVID-19 pandemic, when demand for the germ-fighting gels skyrocketed and manufacturers rushed products to market. Hundreds of products that flooded the market were found to contain methanol, a toxic alcohol that can cause harm via inhalation, ingestion, and skin absorption. Use of the products leads to poisoning, blindness, and even death, the FDA reported.

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | Jena Ardell)\n \n\n\n\n\n\n\n\nA chemical manufacturing facility in Wisconsin has drawn the ire of the Food and Drug Administration for making hand sanitizer with the same equipment it uses to make products with toxic industrial solvents and chemicals, such as automotive brake parts cleaner. The practice is a clear violation of manufacturing standards and could lead to harmful cross-contamination, the FDA said.\nThe agency sent a warning letter dated October 26 to the maker of the hand sanitizer, Brenntag Great Lakes, LLC, in Wisconsin. The letter, which redacted the name of the hand sanitizer, stated that the agency had found \"significant violations\" in an inspection in the spring and that the company's responses since then were \"inadequate.\"\nToxic hand sanitizers became an alarming problem in the early days of the COVID-19 pandemic, when demand for the germ-fighting gels skyrocketed and manufacturers rushed products to market. Hundreds of products that flooded the market were found to contain methanol, a toxic alcohol that can cause harm via inhalation, ingestion, and skin absorption. Use of the products leads to poisoning, blindness, and even death, the FDA reported.\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/health/2023/11/fda-warns-chemical-company-not-to-mix-brake-cleaner-into-hand-sanitizer/#comments", + "content": "It's not the first time the regulatory agency chided the chemical company for this.", + "contentSnippet": "It's not the first time the regulatory agency chided the chemical company for this.", + "guid": "https://arstechnica.com/?p=1987347", + "categories": ["Health", "Science"], + "isoDate": "2023-11-30T13:13:27.000Z" + }, + { + "creator": "Kyle Orland", + "title": "My long quest to revive a \u201990s Windows gaming cult classic", + "link": "https://arstechnica.com/?p=1986792", + "pubDate": "Thu, 30 Nov 2023 12:00:35 +0000", + "content:encoded": "
\n\n\n\n\n\n
\n

The elusive, addictive gameplay that has been haunting my dreams for years.

\n

As 2023 draws to a close\u2014and as we start to finalize our Game of the Year contenders\u2014I really should be catching up on the embarrassingly long list of great recent releases that I haven't put enough time into this year. Instead, over the last few days, I've found myself once again hooked on a simple, addictive, and utterly unique Japanese Windows freeware game from the late '90s that, until recently, I thought I had lost forever.

\n

Pendulumania is a cult classic in the truest sense of the word: Few people have heard of it, even in hardcore gaming circles, but those who have experienced it tend to have very fond memories of it. And while I shared those memories, it wasn't until this week that I've been able to share my effusive praise for a game whose name and playable executable had eluded me for well over a decade.

\n

Timeless design

\n

The mechanics of Pendulumania are incredibly simple. You use the computer mouse to control a metal ring, which is attached via an elastic string to a white ball. The object is to carefully move the ring so the stretchy string and gravity can nudge the ball around a 2D plane, crashing into floating scoring orbs to collect points (colored orbs that randomly appear can make the ball larger or the string stronger as well). Be careful, though; if the elastic string stretches too far, it will break and your game will be over.

Read 18 remaining paragraphs | Comments

", + "content:encodedSnippet": "The elusive, addictive gameplay that has been haunting my dreams for years. \n\nAs 2023 draws to a close\u2014and as we start to finalize our Game of the Year contenders\u2014I really should be catching up on the embarrassingly long list of great recent releases that I haven't put enough time into this year. Instead, over the last few days, I've found myself once again hooked on a simple, addictive, and utterly unique Japanese Windows freeware game from the late '90s that, until recently, I thought I had lost forever.\nPendulumania is a cult classic in the truest sense of the word: Few people have heard of it, even in hardcore gaming circles, but those who have experienced it tend to have very fond memories of it. And while I shared those memories, it wasn't until this week that I've been able to share my effusive praise for a game whose name and playable executable had eluded me for well over a decade.\nTimeless design\nThe mechanics of Pendulumania are incredibly simple. You use the computer mouse to control a metal ring, which is attached via an elastic string to a white ball. The object is to carefully move the ring so the stretchy string and gravity can nudge the ball around a 2D plane, crashing into floating scoring orbs to collect points (colored orbs that randomly appear can make the ball larger or the string stronger as well). Be careful, though; if the elastic string stretches too far, it will break and your game will be over.\n\nRead 18 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/gaming/2023/11/my-long-quest-to-revive-a-90s-windows-gaming-cult-classic/#comments", + "content": "Pendulumania is a testament to addictive game design and Windows app portability.", + "contentSnippet": "Pendulumania is a testament to addictive game design and Windows app portability.", + "guid": "https://arstechnica.com/?p=1986792", + "categories": [ + "Features", + "Gaming", + "addictive", + "Classic", + "gaming", + "Homebrew", + "Japan", + "lost and found", + "Nostalgia", + "pendulumania", + "Windows" + ], + "isoDate": "2023-11-30T12:00:35.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Elon Musk on X antisemitism controversy: \u201cDon\u2019t advertise. Go f*** yourself\u201d", + "link": "https://arstechnica.com/?p=1987322", + "pubDate": "Thu, 30 Nov 2023 00:53:46 +0000", + "content:encoded": "
\n
\n \"Illustration\n

Enlarge (credit: Aurich Lawson | Getty Images)

\n\n\n\n\n\n\n
\n

Elon Musk addressed an antisemitism controversy in characteristically unwise fashion during a public interview today, telling businesses to \"go fuck yourself\" and to stop advertising on the social network formerly named Twitter.

\n

Musk spoke on stage at The New York Times' DealBook Summit in an interview conducted by journalist Andrew Ross Sorkin. Sorkin asked Musk about trying to gain back advertising from businesses that pulled ads from X after Musk posted a favorable response to an antisemitic tweet.

\n

\"I hope they stop. Don't advertise,\" Musk said in response to Sorkin's question (see video).

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Aurich Lawson | Getty Images)\n \n\n\n\n\n\n\n\nElon Musk addressed an antisemitism controversy in characteristically unwise fashion during a public interview today, telling businesses to \"go fuck yourself\" and to stop advertising on the social network formerly named Twitter.\nMusk spoke on stage at The New York Times' DealBook Summit in an interview conducted by journalist Andrew Ross Sorkin. Sorkin asked Musk about trying to gain back advertising from businesses that pulled ads from X after Musk posted a favorable response to an antisemitic tweet.\n\"I hope they stop. Don't advertise,\" Musk said in response to Sorkin's question (see video).\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/11/elon-musk-on-x-antisemitism-controversy-dont-advertise-go-f-yourself/#comments", + "content": "Musk says X advertiser backlash is \"going to kill the company.\"", + "contentSnippet": "Musk says X advertiser backlash is \"going to kill the company.\"", + "guid": "https://arstechnica.com/?p=1987322", + "categories": ["Policy", "Elon Musk"], + "isoDate": "2023-11-30T00:53:46.000Z" + }, + { + "creator": "Dan Goodin", + "title": "2 municipal water facilities report falling to hackers in separate breaches", + "link": "https://arstechnica.com/?p=1987313", + "pubDate": "Thu, 30 Nov 2023 00:42:01 +0000", + "content:encoded": "
\n
\n \"2\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

In the stretch of a few days, two municipal water facilities that serve more than 2 million residents in parts of Pennsylvania and Texas have reported network security breaches that have hamstrung parts of their business or operational processes.

\n

In response to one of the attacks, the Municipal Water Authority of Aliquippa in western Pennsylvania temporarily shut down a pump providing drinking water from the facility\u2019s treatment plant to the townships of Raccoon and Potter, according to reporting by the Beaver Countian. A photo the Water Authority provided to news outlets showed the front panel of a programmable logic controller\u2014a toaster-sized box often abbreviated as PLC that\u2019s used to automate physical processes inside of industrial settings\u2014that displayed an anti-Israeli message. The PLC bore the logo of the manufacturer Unitronics. A sign above it read \u201cPrimary PLC.\u201d

\n

WWS facilities in the crosshairs

\n

The Cybersecurity and Infrastructure Security Administration on Tuesday published an advisory that warned of recent attacks compromising Unitronics PLCs used in Water and Wastewater Systems, which are often abbreviated as WWSes. Although the notice didn\u2019t identify any facilities by name, the account of one hack was almost identical to the one that occurred inside the Aliquippa facility.

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nIn the stretch of a few days, two municipal water facilities that serve more than 2 million residents in parts of Pennsylvania and Texas have reported network security breaches that have hamstrung parts of their business or operational processes.\nIn response to one of the attacks, the Municipal Water Authority of Aliquippa in western Pennsylvania temporarily shut down a pump providing drinking water from the facility\u2019s treatment plant to the townships of Raccoon and Potter, according to reporting by the Beaver Countian. A photo the Water Authority provided to news outlets showed the front panel of a programmable logic controller\u2014a toaster-sized box often abbreviated as PLC that\u2019s used to automate physical processes inside of industrial settings\u2014that displayed an anti-Israeli message. The PLC bore the logo of the manufacturer Unitronics. A sign above it read \u201cPrimary PLC.\u201d\nWWS facilities in the crosshairs\nThe Cybersecurity and Infrastructure Security Administration on Tuesday published an advisory that warned of recent attacks compromising Unitronics PLCs used in Water and Wastewater Systems, which are often abbreviated as WWSes. Although the notice didn\u2019t identify any facilities by name, the account of one hack was almost identical to the one that occurred inside the Aliquippa facility.\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2023/11/2-municipal-water-facilities-report-falling-to-hackers-in-separate-breaches/#comments", + "content": "The facilities in Pennsylvania and Texas serve more than 2 million residents.", + "contentSnippet": "The facilities in Pennsylvania and Texas serve more than 2 million residents.", + "guid": "https://arstechnica.com/?p=1987313", + "categories": ["Biz & IT", "Security"], + "isoDate": "2023-11-30T00:42:01.000Z" + }, + { + "creator": "Stephen Clark", + "title": "With another record broken, the world\u2019s spaceports are busier than ever", + "link": "https://arstechnica.com/?p=1987238", + "pubDate": "Wed, 29 Nov 2023 23:18:15 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A solid-fueled Ceres 1 rocket, developed by the Chinese company Galactic Energy, fires away from an ocean-going launch platform in the Yellow Sea on September 5. (credit: Chen Xiao/VCG via Getty Images)

\n\n\n\n\n\n\n
\n

Led by SpaceX and China, the world's launch providers have put more rockets and payloads into orbit so far in 2023 than in any prior year, continuing an upward trend in launch activity over the last five years.

\n

On Sunday, the Transportation Security Administration reported that it screened more than 2.9 million airline passengers making their way through US airports after Thanksgiving. It was the busiest day in history for US airports.

\n

A few days earlier, the world's spaceports set a new record with the launch of a SpaceX Falcon 9 rocket from Cape Canaveral, Florida, with another batch of Starlink Internet satellites from Florida. This launch on November 22 was the 180th launch of 2023 to put its payload into orbit, eclipsing the mark of 179 successful orbital launches from last year.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A solid-fueled Ceres 1 rocket, developed by the Chinese company Galactic Energy, fires away from an ocean-going launch platform in the Yellow Sea on September 5. (credit: Chen Xiao/VCG via Getty Images)\n \n\n\n\n\n\n\n\nLed by SpaceX and China, the world's launch providers have put more rockets and payloads into orbit so far in 2023 than in any prior year, continuing an upward trend in launch activity over the last five years.\nOn Sunday, the Transportation Security Administration reported that it screened more than 2.9 million airline passengers making their way through US airports after Thanksgiving. It was the busiest day in history for US airports.\nA few days earlier, the world's spaceports set a new record with the launch of a SpaceX Falcon 9 rocket from Cape Canaveral, Florida, with another batch of Starlink Internet satellites from Florida. This launch on November 22 was the 180th launch of 2023 to put its payload into orbit, eclipsing the mark of 179 successful orbital launches from last year.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2023/11/2023-has-been-another-year-with-a-record-number-of-orbital-launches/#comments", + "content": "No turning back? We can expect even more launches worldwide next year.", + "contentSnippet": "No turning back? We can expect even more launches worldwide next year.", + "guid": "https://arstechnica.com/?p=1987238", + "categories": ["Space", "china", "Commercial space", "launches", "spacex"], + "isoDate": "2023-11-29T23:18:15.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Nvidia CEO: US chip independence may take 20 years to achieve", + "link": "https://arstechnica.com/?p=1987284", + "pubDate": "Wed, 29 Nov 2023 22:35:40 +0000", + "content:encoded": "
\n
\n \"Founder\n

Enlarge / Founder and CEO of NVIDIA Jensen Huang speaks during the New York Times annual DealBook summit on November 29, 2023, in New York City. (credit: Michael M. Santiago / Staff | Getty Images North America)

\n\n\n\n\n\n\n
\n

The US could be up to two decades away from maintaining its own domestic chips supply chain, Nvidia Corp.'s CEO, Jensen Huang, told an audience gathered in New York for the New York Times\u2019s DealBook conference.

\n

Nvidia is a giant in the semiconductor industry, and Huang said his company's success depends on \"myriad components that come from different parts of the world,\" Bloomberg reported.\u00a0\"Not just Taiwan,\" Huang said, where Taiwan Semiconductor Manufacturing company makes the world's most advanced semiconductor technology.

\n

\u201cWe are somewhere between a decade and two decades away from supply chain independence,\u201d Huang said. \u201cIt\u2019s not a really practical thing for a decade or two.\u201d

Read 16 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Founder and CEO of NVIDIA Jensen Huang speaks during the New York Times annual DealBook summit on November 29, 2023, in New York City. (credit: Michael M. Santiago / Staff | Getty Images North America)\n \n\n\n\n\n\n\n\nThe US could be up to two decades away from maintaining its own domestic chips supply chain, Nvidia Corp.'s CEO, Jensen Huang, told an audience gathered in New York for the New York Times\u2019s DealBook conference.\nNvidia is a giant in the semiconductor industry, and Huang said his company's success depends on \"myriad components that come from different parts of the world,\" Bloomberg reported.\u00a0\"Not just Taiwan,\" Huang said, where Taiwan Semiconductor Manufacturing company makes the world's most advanced semiconductor technology.\n\u201cWe are somewhere between a decade and two decades away from supply chain independence,\u201d Huang said. \u201cIt\u2019s not a really practical thing for a decade or two.\u201d\n\nRead 16 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2023/11/nvidia-ceo-us-chip-independence-may-take-20-years-to-achieve/#comments", + "content": "US may take twice as long as Biden expects to build its own chip supply chain.", + "contentSnippet": "US may take twice as long as Biden expects to build its own chip supply chain.", + "guid": "https://arstechnica.com/?p=1987284", + "categories": [ + "Policy", + "AI chips", + "biden administration", + "china", + "chips and science act", + "chips industry", + "NVIDIA", + "semiconductor", + "Taiwan", + "Taiwan Semiconductor Manufacturing Company", + "us national security" + ], + "isoDate": "2023-11-29T22:35:40.000Z" + }, + { + "creator": "Samuel Axon", + "title": "Netflix lands its first big-name games with Grand Theft Auto trilogy", + "link": "https://arstechnica.com/?p=1987229", + "pubDate": "Wed, 29 Nov 2023 22:14:04 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / The enhanced edition trilogy includes Grand Theft Auto 3, Grand Theft Auto Vice City, and Grand Theft Auto San Andreas. (credit: Rockstar Games)

\n\n\n\n\n\n\n
\n

Netflix subscribers will be able to play the three original 3D Grand Theft Auto games on iOS and Android starting in December, according to a blog post from the streamer.

\n

The titles included are 2001's Grand Theft Auto III, 2002's Grand Theft Auto: Vice City, and 2004's Grand Theft Auto: San Andreas.

\n

All three released initially on the PS2 and Xbox. The first 3D entry in the series, Grand Theft Auto III, was a crossover cultural sensation when it debuted, and it is credited as one of the main originators of the open-world genre, which remains one of the most popular genres in triple-A games to this day.

Read 9 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The enhanced edition trilogy includes Grand Theft Auto 3, Grand Theft Auto Vice City, and Grand Theft Auto San Andreas. (credit: Rockstar Games)\n \n\n\n\n\n\n\n\nNetflix subscribers will be able to play the three original 3D Grand Theft Auto games on iOS and Android starting in December, according to a blog post from the streamer.\nThe titles included are 2001's Grand Theft Auto III, 2002's Grand Theft Auto: Vice City, and 2004's Grand Theft Auto: San Andreas.\nAll three released initially on the PS2 and Xbox. The first 3D entry in the series, Grand Theft Auto III, was a crossover cultural sensation when it debuted, and it is credited as one of the main originators of the open-world genre, which remains one of the most popular genres in triple-A games to this day.\n\nRead 9 remaining paragraphs | Comments", + "dc:creator": "Samuel Axon", + "comments": "https://arstechnica.com/gaming/2023/11/netflix-lands-its-first-big-name-games-with-grand-theft-auto-trilogy/#comments", + "content": "Package includes GTA 3, GTA Vice City, and GTA San Andreas.", + "contentSnippet": "Package includes GTA 3, GTA Vice City, and GTA San Andreas.", + "guid": "https://arstechnica.com/?p=1987229", + "categories": [ + "Culture", + "Gaming", + "Tech", + "android", + "grand theft auto", + "Grand Theft Auto 3", + "Grand Theft Auto Vice City", + "Grand Theft Auto: San Andreas", + "gta", + "iOS", + "mobile games", + "Netflix", + "netflix games", + "rockstar games" + ], + "isoDate": "2023-11-29T22:14:04.000Z" + }, + { + "creator": "Dan Goodin", + "title": "Google researchers report critical zero-days in Chrome and all Apple OSes", + "link": "https://arstechnica.com/?p=1987731", + "pubDate": "Fri, 01 Dec 2023 00:38:29 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Researchers in Google's Threat Analysis Group have been as busy as ever, with discoveries that have led to the disclosure of three high-severity zero-day vulnerabilities under active exploitation in Apple OSes and the Chrome browser in the span of 48 hours.

\n

Apple on Thursday said it was releasing security updates fixing two vulnerabilities present in iOS, macOS, and iPadOS. Both of them reside in WebKit, the engine that drives Safari and a wide range of other apps, including Apple Mail, the App Store, and all browsers running on iPhones and iPads. While the update applies to all supported versions of Apple OSes, Thursday\u2019s disclosure suggested in-the-wild attacks exploiting the vulnerabilities targeted earlier versions of iOS.

\n

\u201cApple is aware of a report that this issue may have been exploited against versions of iOS before iOS 16.7.1,\u201d Apple officials wrote of both vulnerabilities, which are tracked as CVE-2023-42916 and CVE-2023-42917.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nResearchers in Google's Threat Analysis Group have been as busy as ever, with discoveries that have led to the disclosure of three high-severity zero-day vulnerabilities under active exploitation in Apple OSes and the Chrome browser in the span of 48 hours.\nApple on Thursday said it was releasing security updates fixing two vulnerabilities present in iOS, macOS, and iPadOS. Both of them reside in WebKit, the engine that drives Safari and a wide range of other apps, including Apple Mail, the App Store, and all browsers running on iPhones and iPads. While the update applies to all supported versions of Apple OSes, Thursday\u2019s disclosure suggested in-the-wild attacks exploiting the vulnerabilities targeted earlier versions of iOS.\n\u201cApple is aware of a report that this issue may have been exploited against versions of iOS before iOS 16.7.1,\u201d Apple officials wrote of both vulnerabilities, which are tracked as CVE-2023-42916 and CVE-2023-42917.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2023/11/google-researchers-report-critical-zero-days-in-chrome-and-all-apple-oses/#comments", + "content": "Discoveries made by Google's Threat Analysis Group, which tracks nation-state hacking.", + "contentSnippet": "Discoveries made by Google's Threat Analysis Group, which tracks nation-state hacking.", + "guid": "https://arstechnica.com/?p=1987731", + "categories": [ + "Security", + "apple", + "google", + "vulnerabilities", + "zerodays" + ], + "isoDate": "2023-12-01T00:38:29.000Z" + }, + { + "creator": "Elizabeth Rayne", + "title": "Fungi join the list of organisms that can control when ice forms", + "link": "https://arstechnica.com/?p=1989479", + "pubDate": "Thu, 07 Dec 2023 23:08:09 +0000", + "content:encoded": "
\n
\n \"Image\n

Enlarge / A related species of Fusarium. (credit: Wikimedia Commons)

\n\n\n\n\n\n\n
\n

While it may be the reason behind tires skidding, pipes bursting, and closed roads making traffic a nightmare, ice doesn\u2019t always form as easily as it seems. It often gets an assist from proteins made by fungi.\u00a0

\n

Never mind the common thinking that ice forms at 0\u00b0 C (32\u00b0 F). Though this is water\u2019s freezing point, pure water will only freeze when temperatures plummet as low as minus 46\u00b0 C (minus 50.8\u00b0 F). So why does it usually freeze at zero anyway? Organisms such as bacteria, insects, and fungi produce proteins known as ice nucleators (non-protein nucleators can also be of abiotic origin). These proteins can kick-start the formation, or nucleation, of ice at higher temperatures than pure water would freeze at.

\n

While the exact reason fungi make these proteins remains unknown, researchers Valeria Molinero of the University of Utah and Konrad Meister of Boise State University led a study that has revealed more about how fungal ice nucleators can both promote and hold back ice formation more efficiently than those of many other life-forms.

Read 10 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A related species of Fusarium. (credit: Wikimedia Commons)\n \n\n\n\n\n\n\n\nWhile it may be the reason behind tires skidding, pipes bursting, and closed roads making traffic a nightmare, ice doesn\u2019t always form as easily as it seems. It often gets an assist from proteins made by fungi.\u00a0\nNever mind the common thinking that ice forms at 0\u00b0 C (32\u00b0 F). Though this is water\u2019s freezing point, pure water will only freeze when temperatures plummet as low as minus 46\u00b0 C (minus 50.8\u00b0 F). So why does it usually freeze at zero anyway? Organisms such as bacteria, insects, and fungi produce proteins known as ice nucleators (non-protein nucleators can also be of abiotic origin). These proteins can kick-start the formation, or nucleation, of ice at higher temperatures than pure water would freeze at.\nWhile the exact reason fungi make these proteins remains unknown, researchers Valeria Molinero of the University of Utah and Konrad Meister of Boise State University led a study that has revealed more about how fungal ice nucleators can both promote and hold back ice formation more efficiently than those of many other life-forms.\n\nRead 10 remaining paragraphs | Comments", + "dc:creator": "Elizabeth Rayne", + "comments": "https://arstechnica.com/science/2023/12/frosty-the-mushroom-fungus-make-proteins-that-can-help-ice-form/#comments", + "content": "What's the advantage of triggering ice formation? It's not entirely clear.", + "contentSnippet": "What's the advantage of triggering ice formation? It's not entirely clear.", + "guid": "https://arstechnica.com/?p=1989479", + "categories": [ + "Science", + "biochemistry", + "Biology", + "chemistry", + "fungi", + "ince", + "proteins" + ], + "isoDate": "2023-12-07T23:08:09.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Google calls Drive data loss \u201cfixed,\u201d locks forum threads saying otherwise", + "link": "https://arstechnica.com/?p=1989435", + "pubDate": "Thu, 07 Dec 2023 22:26:51 +0000", + "content:encoded": "
\n
\n \"Google\n

Enlarge (credit: Google Drive)

\n\n\n\n\n\n\n
\n

Google is dealing with its second \"lost data\" fiasco in the past few months. This time, it's Google Drive, which has been mysteriously losing files for some people. Google acknowledged the issue on November 27, and a week later, it posted what it called a fix.

\n

It doesn't feel like Google is describing this issue correctly; the company still calls it a \"syncing issue\" with the Drive desktop app versions 84.0.0.0 through 84.0.4.0. Syncing problems would only mean files don't make it to or from the cloud, and that doesn't explain why people are completely losing files. In the most popular issue thread on the Google Drive Community forums, several users describe spreadsheets and documents going missing, which all would have been created and saved in the web interface, not the desktop app, and it's hard to see how the desktop app could affect that. Many users peg \"May 2023\" as the time documents stopped saving. Some say they've never used the desktop app.

\n

Drive has multiple ways of syncing files, which complicates any explanation or diagnosis of what's going on. The most suspect mode in the whole fiasco is the default \"file streaming,\" mode which is actually cloud-first. Files get removed from your computer and stored in the cloud, saving space and leaving only a web link in their place. Perhaps a \"syncing\" issue could remove files from your computer before uploading (that still doesn't explain the claims of missing web documents, though).

Read 6 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Google Drive)\n \n\n\n\n\n\n\n\nGoogle is dealing with its second \"lost data\" fiasco in the past few months. This time, it's Google Drive, which has been mysteriously losing files for some people. Google acknowledged the issue on November 27, and a week later, it posted what it called a fix.\nIt doesn't feel like Google is describing this issue correctly; the company still calls it a \"syncing issue\" with the Drive desktop app versions 84.0.0.0 through 84.0.4.0. Syncing problems would only mean files don't make it to or from the cloud, and that doesn't explain why people are completely losing files. In the most popular issue thread on the Google Drive Community forums, several users describe spreadsheets and documents going missing, which all would have been created and saved in the web interface, not the desktop app, and it's hard to see how the desktop app could affect that. Many users peg \"May 2023\" as the time documents stopped saving. Some say they've never used the desktop app.\nDrive has multiple ways of syncing files, which complicates any explanation or diagnosis of what's going on. The most suspect mode in the whole fiasco is the default \"file streaming,\" mode which is actually cloud-first. Files get removed from your computer and stored in the cloud, saving space and leaving only a web link in their place. Perhaps a \"syncing\" issue could remove files from your computer before uploading (that still doesn't explain the claims of missing web documents, though).\n\nRead 6 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2023/12/google-calls-drive-data-loss-fixed-locks-forum-threads-saying-otherwise/#comments", + "content": "The fix will sift through app data for cached files, but users say it doesn't work.", + "contentSnippet": "The fix will sift through app data for cached files, but users say it doesn't work.", + "guid": "https://arstechnica.com/?p=1989435", + "categories": ["Google", "Tech", "Google drive"], + "isoDate": "2023-12-07T22:26:51.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "EV battery swaps will be tested with the Fiat 500e in 2024", + "link": "https://arstechnica.com/?p=1989531", + "pubDate": "Thu, 07 Dec 2023 20:44:50 +0000", + "content:encoded": "
\n
\n \"Two\n

Enlarge / This is what Ample's battery modules look like. (credit: Ample)

\n\n\n\n\n\n\n
\n

A small fleet of rideshare Fiat 500e electric vehicles will become testbeds for battery-swap technology in 2024. The experiment is being conducted by Ample, a startup working on battery swaps, and Stellantis, Fiat's parent company, the Verge reported today.

\n

This isn't Ample's first test of its battery-swapping technology; in 2021 it started a small trial in the Bay Area to demo its modular battery, which replaces the existing traction battery in an EV and allows Ample's automated swap stations to switch out depleted packs for charged ones. But the fact that this deal was made with an OEM like Stellantis is still significant.

\n

As we detailed last time we looked at Ample's technology, the EVs require some engineering work for this to all be possible. Ample has to design a structural frame to replace the existing battery pack that will instead contain the swappable modules, while still conforming to the engineering requirements of the original pack\u2014down to the same fasteners, bolts, and connectors.

Read 2 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / This is what Ample's battery modules look like. (credit: Ample)\n \n\n\n\n\n\n\n\nA small fleet of rideshare Fiat 500e electric vehicles will become testbeds for battery-swap technology in 2024. The experiment is being conducted by Ample, a startup working on battery swaps, and Stellantis, Fiat's parent company, the Verge reported today.\nThis isn't Ample's first test of its battery-swapping technology; in 2021 it started a small trial in the Bay Area to demo its modular battery, which replaces the existing traction battery in an EV and allows Ample's automated swap stations to switch out depleted packs for charged ones. But the fact that this deal was made with an OEM like Stellantis is still significant.\nAs we detailed last time we looked at Ample's technology, the EVs require some engineering work for this to all be possible. Ample has to design a structural frame to replace the existing battery pack that will instead contain the swappable modules, while still conforming to the engineering requirements of the original pack\u2014down to the same fasteners, bolts, and connectors.\n\nRead 2 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2023/12/ev-battery-swaps-will-be-tested-with-the-fiat-500e-in-2024/#comments", + "content": "Ample's technology replaces the existing EV battery pack to allow battery swaps.", + "contentSnippet": "Ample's technology replaces the existing EV battery pack to allow battery swaps.", + "guid": "https://arstechnica.com/?p=1989531", + "categories": [ + "Cars", + "Ample", + "battery swap", + "EV battery", + "fiat", + "Fiat 500e", + "Stellantis" + ], + "isoDate": "2023-12-07T20:44:50.000Z" + }, + { + "creator": "Scharon Harding", + "title": "HP misreads room, awkwardly brags about its \u201cless hated\u201d printers", + "link": "https://arstechnica.com/?p=1989448", + "pubDate": "Thu, 07 Dec 2023 20:32:35 +0000", + "content:encoded": "
\n
\n \"hp\n

Enlarge (credit: HP)

\n\n\n\n\n\n\n
\n

HP knows people have grown to hate printers. It even knows that people hate HP printers. But based on a new marketing campaign the company launched, HP is OK with that\u2014so long as it can convince people that there are worse options out there.

\n

The marketing campaign hitting parts of Europe aims to present HP as real and empathetic. The tagline \"Made to be less hated\" seems to acknowledge people's frustration with printers. But HP's a top proponent of the exact sort of money-grabbing, disruptive practices that have turned people against printers.

\n

When did HP printers become \u201cless hated\u201d?

\n

Three short HP video ad campaigns detailed by Marketing Communication News include one with a customer supremely frustrated with his printer's low ink warning. He kicks his hardware off the table before words appear saying, \"No more low ink with HP ink solutions.\" Another HP video brags of \"no more installation fails\" and points to HP's Smart app. Both of these claims fall apart with a look at HP's recent and poorly executed firmware rollouts.

Read 19 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: HP)\n \n\n\n\n\n\n\n\nHP knows people have grown to hate printers. It even knows that people hate HP printers. But based on a new marketing campaign the company launched, HP is OK with that\u2014so long as it can convince people that there are worse options out there.\nThe marketing campaign hitting parts of Europe aims to present HP as real and empathetic. The tagline \"Made to be less hated\" seems to acknowledge people's frustration with printers. But HP's a top proponent of the exact sort of money-grabbing, disruptive practices that have turned people against printers.\nWhen did HP printers become \u201cless hated\u201d?\nThree short HP video ad campaigns detailed by Marketing Communication News include one with a customer supremely frustrated with his printer's low ink warning. He kicks his hardware off the table before words appear saying, \"No more low ink with HP ink solutions.\" Another HP video brags of \"no more installation fails\" and points to HP's Smart app. Both of these claims fall apart with a look at HP's recent and poorly executed firmware rollouts.\n\nRead 19 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/gadgets/2023/12/hp-misreads-room-awkwardly-brags-about-its-less-hated-printers/#comments", + "content": "Opinion: HP's printer business practices have infuriated users for years. ", + "contentSnippet": "Opinion: HP's printer business practices have infuriated users for years.", + "guid": "https://arstechnica.com/?p=1989448", + "categories": ["Tech", "HP", "printers"], + "isoDate": "2023-12-07T20:32:35.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Twitch exit from S. Korea is latest fallout from \u201csending-party-pays\u201d model", + "link": "https://arstechnica.com/?p=1989493", + "pubDate": "Thu, 07 Dec 2023 20:15:56 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Getty Images | NurPhoto)

\n\n\n\n\n\n\n
\n

Amazon-owned Twitch plans to stop providing its streaming platform in South Korea, saying that fees charged by network operators make it impossible to run the service without a significant loss in the country.

\n

The shutdown is scheduled for February 27, 2024, Twitch CEO Dan Clancy announced on Tuesday. Transmitting data in Korea \"is prohibitively expensive\" despite the company's efforts to reduce data usage, he wrote.

\n

\"First, we experimented with a peer-to-peer model for source quality. Then, we adjusted source quality to a maximum of 720p. While we have lowered costs from these efforts, our network fees in Korea are still 10 times more expensive than in most other countries. Twitch has been operating in Korea at a significant loss, and unfortunately there is no pathway forward for our business to run more sustainably in that country,\" Clancy wrote.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | NurPhoto)\n \n\n\n\n\n\n\n\nAmazon-owned Twitch plans to stop providing its streaming platform in South Korea, saying that fees charged by network operators make it impossible to run the service without a significant loss in the country.\nThe shutdown is scheduled for February 27, 2024, Twitch CEO Dan Clancy announced on Tuesday. Transmitting data in Korea \"is prohibitively expensive\" despite the company's efforts to reduce data usage, he wrote.\n\"First, we experimented with a peer-to-peer model for source quality. Then, we adjusted source quality to a maximum of 720p. While we have lowered costs from these efforts, our network fees in Korea are still 10 times more expensive than in most other countries. Twitch has been operating in Korea at a significant loss, and unfortunately there is no pathway forward for our business to run more sustainably in that country,\" Clancy wrote.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/12/twitch-exit-from-s-korea-is-latest-fallout-from-sending-party-pays-model/#comments", + "content": "Twitch: Network fees in Korea 10 times more expensive than in most countries.", + "contentSnippet": "Twitch: Network fees in Korea 10 times more expensive than in most countries.", + "guid": "https://arstechnica.com/?p=1989493", + "categories": [ + "Policy", + "Net Neutrality", + "sending party pays", + "twitch", + "twitch south korea" + ], + "isoDate": "2023-12-07T20:15:56.000Z" + }, + { + "creator": "Andrew Cunningham", + "title": "New systemd update will bring Windows\u2019 infamous Blue Screen of Death to Linux", + "link": "https://arstechnica.com/?p=1989459", + "pubDate": "Thu, 07 Dec 2023 19:22:44 +0000", + "content:encoded": "
\n
\n \"New\n

Enlarge (credit: hdaniel)

\n\n\n\n\n\n\n
\n

Windows' infamous \"Blue Screen of Death\" is a bit of a punchline. People have made a hobby of spotting them out in the wild, and in some circles, they remain a byword for the supposed flakiness and instability of PCs. To this day, networked PCs in macOS are represented by beige CRT monitors displaying a BSOD.

\n

But the BSOD is supposed to be a diagnostic tool, an informational screen that technicians can use to begin homing in on the problem that caused the crash in the first place; that old Windows' BSOD error codes were often so broad and vague as to be useless doesn't make the idea a bad one. Today, version 255 of the Linux systemd project honors that original intent by adding a systemd-bsod component that generates a full-screen display of some error messages when a Linux system crashes.

\n\n

The systemd-bsod component is currently listed as \"experimental\" and \"subject to change.\" But the functionality is simple: any logged error message that reaches the LOG_EMERG level will be displayed full-screen to allow people to take a photo or write it down. Phoronix reports that, as with BSODs in modern Windows, the Linux version will also generate a QR code to make it easier to look up information on your phone.

Read 2 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: hdaniel)\n \n\n\n\n\n\n\n\nWindows' infamous \"Blue Screen of Death\" is a bit of a punchline. People have made a hobby of spotting them out in the wild, and in some circles, they remain a byword for the supposed flakiness and instability of PCs. To this day, networked PCs in macOS are represented by beige CRT monitors displaying a BSOD.\nBut the BSOD is supposed to be a diagnostic tool, an informational screen that technicians can use to begin homing in on the problem that caused the crash in the first place; that old Windows' BSOD error codes were often so broad and vague as to be useless doesn't make the idea a bad one. Today, version 255 of the Linux systemd project honors that original intent by adding a systemd-bsod component that generates a full-screen display of some error messages when a Linux system crashes.\nThe systemd-bsod component is currently listed as \"experimental\" and \"subject to change.\" But the functionality is simple: any logged error message that reaches the LOG_EMERG level will be displayed full-screen to allow people to take a photo or write it down. Phoronix reports that, as with BSODs in modern Windows, the Linux version will also generate a QR code to make it easier to look up information on your phone.\n\nRead 2 remaining paragraphs | Comments", + "dc:creator": "Andrew Cunningham", + "comments": "https://arstechnica.com/gadgets/2023/12/linux-distros-are-about-to-get-a-killer-windows-feature-the-blue-screen-of-death/#comments", + "content": "Systemd is used by Debian, Arch, Fedora, Ubuntu, and many downstream distros.", + "contentSnippet": "Systemd is used by Debian, Arch, Fedora, Ubuntu, and many downstream distros.", + "guid": "https://arstechnica.com/?p=1989459", + "categories": [ + "Tech", + "blue screen of death", + "BSOD", + "Debian", + "Fedora", + "Linux", + "Red Hat Enterprise Linux", + "systemd", + "Ubuntu", + "windows 11" + ], + "isoDate": "2023-12-07T19:22:44.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Meta defies FBI opposition to encryption, brings E2EE to Facebook, Messenger", + "link": "https://arstechnica.com/?p=1989426", + "pubDate": "Thu, 07 Dec 2023 17:06:34 +0000", + "content:encoded": "
\n
\n \"An\n

Enlarge (credit: Getty Images | Chesnot )

\n\n\n\n\n\n\n
\n

Meta has started enabling end-to-end encryption (E2EE) by default for chats and calls on Messenger and Facebook despite protests from the FBI and other law enforcement agencies that oppose the widespread use of encryption technology. \"Today I'm delighted to announce that we are rolling out default end-to-end encryption for personal messages and calls on Messenger and Facebook,\" Meta VP of Messenger Loredana Crisan wrote yesterday.

\n

In April, a consortium of 15 law enforcement agencies from around the world, including the FBI and ICE Homeland Security Investigations, urged Meta to cancel its plan to expand the use of end-to-end encryption. The consortium complained that terrorists, sex traffickers, child abusers, and other criminals will use encrypted messages to evade law enforcement.

\n

Meta held firm, telling Ars in April that \"we don't think people want us reading their private messages\" and that the plan to make end-to-end encryption the default in Facebook Messenger would be completed before the end of 2023. Meta also plans default end-to-end encryption for Instagram messages but has previously said that may not happen this year.

Read 12 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | Chesnot )\n \n\n\n\n\n\n\n\nMeta has started enabling end-to-end encryption (E2EE) by default for chats and calls on Messenger and Facebook despite protests from the FBI and other law enforcement agencies that oppose the widespread use of encryption technology. \"Today I'm delighted to announce that we are rolling out default end-to-end encryption for personal messages and calls on Messenger and Facebook,\" Meta VP of Messenger Loredana Crisan wrote yesterday.\nIn April, a consortium of 15 law enforcement agencies from around the world, including the FBI and ICE Homeland Security Investigations, urged Meta to cancel its plan to expand the use of end-to-end encryption. The consortium complained that terrorists, sex traffickers, child abusers, and other criminals will use encrypted messages to evade law enforcement.\nMeta held firm, telling Ars in April that \"we don't think people want us reading their private messages\" and that the plan to make end-to-end encryption the default in Facebook Messenger would be completed before the end of 2023. Meta also plans default end-to-end encryption for Instagram messages but has previously said that may not happen this year.\n\nRead 12 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/12/meta-defies-fbi-opposition-to-encryption-brings-e2ee-to-facebook-messenger/#comments", + "content": "Default E2EE rolling out now but will take months to reach all 1 billion users.", + "contentSnippet": "Default E2EE rolling out now but will take months to reach all 1 billion users.", + "guid": "https://arstechnica.com/?p=1989426", + "categories": [ + "Policy", + "e2ee", + "encrypted facebook messages", + "end to end encryption", + "end-to-end encryption messenger", + "facebook messenger", + "fb encrypted messages" + ], + "isoDate": "2023-12-07T17:06:34.000Z" + }, + { + "creator": "Andrew Cunningham", + "title": "Report: Early 2024 will bring M3 MacBook Airs and first new iPads in over a year", + "link": "https://arstechnica.com/?p=1989392", + "pubDate": "Thu, 07 Dec 2023 16:57:19 +0000", + "content:encoded": "
\n
\n \"Apple's\n

Enlarge / Apple's 15-inch M2 MacBook Air. (credit: Andrew Cunningham)

\n\n\n\n\n\n\n
\n

The MacBook Air is Apple's most popular laptop, and when the Apple M1 and M2 chips landed, they came to the Air first. That changed with the M3 chip generation, which came to the MacBook Pro and iMac first but left the Air untouched.

\n

That situation should change early next year, according to a report from Bloomberg's Mark Gurman. Apple is reportedly preparing to launch updates to the MacBook Air, as well as several new iPad models, in \"the March time frame.\" Apple hasn't released any new iPads in 2023, and the 13-inch M2 MacBook Air was introduced in July of 2022.

\n\n

Gurman says not to expect design changes from the M3 Air. The M2 version introduced a new non-tapered design with a display notch, a new keyboard, and a MagSafe port, and the M3 Air should look externally identical.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Apple's 15-inch M2 MacBook Air. (credit: Andrew Cunningham)\n \n\n\n\n\n\n\n\nThe MacBook Air is Apple's most popular laptop, and when the Apple M1 and M2 chips landed, they came to the Air first. That changed with the M3 chip generation, which came to the MacBook Pro and iMac first but left the Air untouched.\nThat situation should change early next year, according to a report from Bloomberg's Mark Gurman. Apple is reportedly preparing to launch updates to the MacBook Air, as well as several new iPad models, in \"the March time frame.\" Apple hasn't released any new iPads in 2023, and the 13-inch M2 MacBook Air was introduced in July of 2022.\nGurman says not to expect design changes from the M3 Air. The M2 version introduced a new non-tapered design with a display notch, a new keyboard, and a MagSafe port, and the M3 Air should look externally identical.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Andrew Cunningham", + "comments": "https://arstechnica.com/gadgets/2023/12/report-early-2024-will-bring-m3-macbook-airs-and-first-new-ipads-in-over-a-year/#comments", + "content": "New Airs should arrive alongside redesigned iPad Pros and a 12.9-inch iPad Air.", + "contentSnippet": "New Airs should arrive alongside redesigned iPad Pros and a 12.9-inch iPad Air.", + "guid": "https://arstechnica.com/?p=1989392", + "categories": [ + "Apple", + "Tech", + "Apple silicon", + "ipad", + "iPad Air", + "ipad pro", + "M3", + "MacBook Air", + "MacBook Pro" + ], + "isoDate": "2023-12-07T16:57:19.000Z" + }, + { + "creator": "Elizabeth Rayne", + "title": "The Milky Way will probably devour all the tiny galaxies that surround it", + "link": "https://arstechnica.com/?p=1989422", + "pubDate": "Thu, 07 Dec 2023 16:50:04 +0000", + "content:encoded": "
\n
\n \"a\n

Enlarge / An infrared image of one of the Milky Way's satellite galaxies. (credit: NASA/JPL-Caltech/STScI)

\n\n\n\n\n\n\n
\n

We are not alone\u2014at least as a galaxy. About 50 dwarf galaxies surround the Milky Way. But when its intense gravity inevitably draws them to venture too close, they will probably be annihilated. It\u2019s happened before.

\n

Though scientists used to think that all those dwarf galaxies orbiting the Milky Way were going to stick around for tens of billions of years, that might not be the case. \u201cMost dwarf galaxies are star systems that arrived late in the Milky Way\u2026 in sharp contrast with a long-term satellite hypothesis,\u201d an international team of researchers said in a study recently published in Monthly Notices of the Royal Astronomical Society.

\n

Based on data from the European Space Agency\u2019s Gaia mission, this study has found that many dwarf galaxies that were orbiting the Milky Way only a few billion years ago have ended up destroyed after being pulled in by our much more massive galaxy. It is possible dark matter has something to do with this.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / An infrared image of one of the Milky Way's satellite galaxies. (credit: NASA/JPL-Caltech/STScI)\n \n\n\n\n\n\n\n\nWe are not alone\u2014at least as a galaxy. About 50 dwarf galaxies surround the Milky Way. But when its intense gravity inevitably draws them to venture too close, they will probably be annihilated. It\u2019s happened before.\nThough scientists used to think that all those dwarf galaxies orbiting the Milky Way were going to stick around for tens of billions of years, that might not be the case. \u201cMost dwarf galaxies are star systems that arrived late in the Milky Way\u2026 in sharp contrast with a long-term satellite hypothesis,\u201d an international team of researchers said in a study recently published in Monthly Notices of the Royal Astronomical Society.\nBased on data from the European Space Agency\u2019s Gaia mission, this study has found that many dwarf galaxies that were orbiting the Milky Way only a few billion years ago have ended up destroyed after being pulled in by our much more massive galaxy. It is possible dark matter has something to do with this.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Elizabeth Rayne", + "comments": "https://arstechnica.com/science/2023/12/the-milky-way-will-probably-devour-all-the-tiny-galaxies-that-surround-it/#comments", + "content": "The rapid disruption of smaller galaxies suggests they lack a bit of dark matter.", + "contentSnippet": "The rapid disruption of smaller galaxies suggests they lack a bit of dark matter.", + "guid": "https://arstechnica.com/?p=1989422", + "categories": ["Science", "astronomy", "galaxies", "milky way"], + "isoDate": "2023-12-07T16:50:04.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "White House threatens to veto anti-EV bill just passed by US House", + "link": "https://arstechnica.com/?p=1989420", + "pubDate": "Thu, 07 Dec 2023 16:46:06 +0000", + "content:encoded": "
\n
\n \"U.S.\n

Enlarge (credit: L. Toshio Kishiyama/Getty Images)

\n\n\n\n\n\n\n
\n

The White House's plan to boost electric vehicle adoption came under heavy fire in Congress on Wednesday. Five Democratic Representatives joined the Republican majority to pass a bill that would prohibit the US Environmental Protection Agency from enacting stricter new corporate average fuel efficiency regulations that would require automakers to sell many more EVs by the year 2032.

\n

Its passage in the House follows a letter-writing campaign by some US auto dealers to get the White House to abandon its climate targets as the dealers say they find it too difficult to sell electric vehicles.

\n

As Ars detailed at the time, the tougher new regulations will require automakers to sell four times as many zero-emission vehicles to meet the new fleet averages. If the rules go into effect, two-thirds of all new passenger cars and light trucks would have to be EVs by 2032.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: L. Toshio Kishiyama/Getty Images)\n \n\n\n\n\n\n\n\nThe White House's plan to boost electric vehicle adoption came under heavy fire in Congress on Wednesday. Five Democratic Representatives joined the Republican majority to pass a bill that would prohibit the US Environmental Protection Agency from enacting stricter new corporate average fuel efficiency regulations that would require automakers to sell many more EVs by the year 2032.\nIts passage in the House follows a letter-writing campaign by some US auto dealers to get the White House to abandon its climate targets as the dealers say they find it too difficult to sell electric vehicles.\nAs Ars detailed at the time, the tougher new regulations will require automakers to sell four times as many zero-emission vehicles to meet the new fleet averages. If the rules go into effect, two-thirds of all new passenger cars and light trucks would have to be EVs by 2032.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2023/12/white-house-threatens-to-veto-anti-ev-bill-just-passed-by-us-house/#comments", + "content": "The bill would prevent the EPA from enforcing tougher new pollution standards.", + "contentSnippet": "The bill would prevent the EPA from enforcing tougher new pollution standards.", + "guid": "https://arstechnica.com/?p=1989420", + "categories": [ + "Cars", + "corporate average fuel efficiency", + "electric vehicle adoption", + "US Environmental Protection Agency", + "vehicle emissions", + "vehicle pollution" + ], + "isoDate": "2023-12-07T16:46:06.000Z" + }, + { + "creator": "WIRED", + "title": "US regulators will now have access to years of Binance transaction data", + "link": "https://arstechnica.com/?p=1989378", + "pubDate": "Thu, 07 Dec 2023 14:28:46 +0000", + "content:encoded": "
\n
\n \"sort\n

Enlarge (credit: Wired/Getty)

\n\n\n\n\n\n\n
\n

One attraction of Binance, as the company grew from its 2017 founding into the biggest cryptocurrency exchange in the world, was the firm's freewheeling flouting of rules. As it amassed well over 100 million crypto-trading users globally, it openly told the United States government that, as an offshore operation, it didn't have to comply with the country's financial regulations and money-laundering laws.

\n

Then, late last month, those years of brushing off US regulators caught up with the company in the form of one of the most punitive money-laundering criminal settlements in the history of the US Justice Department. The crackdown doesn't just mean a chastened Binance will have to change its practices going forward. It means that when the company is sentenced in a matter of months, it will be forced to open its past books to regulators, too. What was once a haven for anarchic crypto commerce is about to be transformed into the opposite: perhaps the most fed-friendly business in the cryptocurrency industry, retroactively offering more than a half-decade of users' transaction records to US regulators and law enforcement.

\n

When the Department of Justice announced on November 21 that Binance's executives had agreed to plead guilty to criminal money-laundering charges, much of the attention on that settlement focused on founder Changpeng Zhao giving up his CEO role and on the company's record-breaking $4.3 billion fine. But Binance's settlement agreements with the DOJ and the US Treasury Department also stipulate a strict new regime of data-sharing with law enforcement and regulators. The company has agreed to comply with regulators' \"requests for information\"\u2014a term that carries none of the evidence or suspicion requirements necessary for obtaining a warrant or even a subpoena\u2014to the point of producing any \"information, testimony, document, record, or other tangible evidence.\"

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Wired/Getty)\n \n\n\n\n\n\n\n\nOne attraction of Binance, as the company grew from its 2017 founding into the biggest cryptocurrency exchange in the world, was the firm's freewheeling flouting of rules. As it amassed well over 100 million crypto-trading users globally, it openly told the United States government that, as an offshore operation, it didn't have to comply with the country's financial regulations and money-laundering laws.\nThen, late last month, those years of brushing off US regulators caught up with the company in the form of one of the most punitive money-laundering criminal settlements in the history of the US Justice Department. The crackdown doesn't just mean a chastened Binance will have to change its practices going forward. It means that when the company is sentenced in a matter of months, it will be forced to open its past books to regulators, too. What was once a haven for anarchic crypto commerce is about to be transformed into the opposite: perhaps the most fed-friendly business in the cryptocurrency industry, retroactively offering more than a half-decade of users' transaction records to US regulators and law enforcement.\nWhen the Department of Justice announced on November 21 that Binance's executives had agreed to plead guilty to criminal money-laundering charges, much of the attention on that settlement focused on founder Changpeng Zhao giving up his CEO role and on the company's record-breaking $4.3 billion fine. But Binance's settlement agreements with the DOJ and the US Treasury Department also stipulate a strict new regime of data-sharing with law enforcement and regulators. The company has agreed to comply with regulators' \"requests for information\"\u2014a term that carries none of the evidence or suspicion requirements necessary for obtaining a warrant or even a subpoena\u2014to the point of producing any \"information, testimony, document, record, or other tangible evidence.\"\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "WIRED", + "comments": "https://arstechnica.com/tech-policy/2023/12/us-regulators-will-now-have-access-to-years-of-binance-transaction-data/#comments", + "content": "Binance and its customers will get \"24/7, 365-days-a-year financial colonoscopy.\"", + "contentSnippet": "Binance and its customers will get \"24/7, 365-days-a-year financial colonoscopy.\"", + "guid": "https://arstechnica.com/?p=1989378", + "categories": [ + "Policy", + "Binance", + "bitcoin", + "cryptocurrency", + "syndication" + ], + "isoDate": "2023-12-07T14:28:46.000Z" + }, + { + "creator": "Eric Berger", + "title": "Daily Telescope: A colorful heart with a blue core", + "link": "https://arstechnica.com/?p=1989332", + "pubDate": "Thu, 07 Dec 2023 13:00:23 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The Heart Nebula. (credit: Paul Macklin)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's December 7, and today's photo takes us toward the iconic Cassiopeia constellation. One of the most colorful features in this constellation is the Heart Nebula, which is also known as the Running Dog Nebula because, well, I'll let you figure that out for yourself.

\n

The nebula itself is located about 7,500 light-years from Earth. It is also rather large, spanning 2\u00b0 of the night sky, or an area larger than that covered by the Moon. The Heart Nebula's shape is driven by supermassive stars in its core, with the blue colors produced by ionized oxygen and sulfur.

Read 3 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The Heart Nebula. (credit: Paul Macklin)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's December 7, and today's photo takes us toward the iconic Cassiopeia constellation. One of the most colorful features in this constellation is the Heart Nebula, which is also known as the Running Dog Nebula because, well, I'll let you figure that out for yourself.\nThe nebula itself is located about 7,500 light-years from Earth. It is also rather large, spanning 2\u00b0 of the night sky, or an area larger than that covered by the Moon. The Heart Nebula's shape is driven by supermassive stars in its core, with the blue colors produced by ionized oxygen and sulfur.\n\nRead 3 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2023/12/daily-telescope-journey-into-the-heart-nebula/#comments", + "content": "This nebula is found about 7,500 light-years from Earth. ", + "contentSnippet": "This nebula is found about 7,500 light-years from Earth.", + "guid": "https://arstechnica.com/?p=1989332", + "categories": ["Space", "daily telescope"], + "isoDate": "2023-12-07T13:00:23.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Crossed wires led to high drama as NASA returned asteroid samples to Earth", + "link": "https://arstechnica.com/?p=1989304", + "pubDate": "Wed, 06 Dec 2023 23:08:03 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The OSIRIS-REx sample-return capsule, with its main parachute nearby, shortly after landing in Utah on September 24, 2023. (credit: Keegan Barber/NASA)

\n\n\n\n\n\n\n
\n

This was the moment Dante Lauretta had waited for nearly 20 years to see. A small robotic capsule was on the way back to Earth with rocks scooped from an asteroid, and Lauretta was eager to get his hands on the samples.

\n

Led by Lauretta, scientists carefully designed the billion-dollar mission to bring home pieces of a carbon-rich asteroid thought to contain organic molecules, the building blocks necessary for life to take hold. This NASA mission, known by the acronym OSIRIS-REx, launched from Earth in 2016, collected samples from a roughly 1,600-foot-wide (500-meter) asteroid named Bennu in 2020, then set a course for return to Earth.

\n

On September 24, the OSIRIS-REx spacecraft released the canister containing the asteroid samples to plunge into the Earth's atmosphere, while the mothership steered onto a course to take it safely back into deep space for a follow-up mission to explore a different asteroid at the end of the 2020s.

Read 24 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The OSIRIS-REx sample-return capsule, with its main parachute nearby, shortly after landing in Utah on September 24, 2023. (credit: Keegan Barber/NASA)\n \n\n\n\n\n\n\n\nThis was the moment Dante Lauretta had waited for nearly 20 years to see. A small robotic capsule was on the way back to Earth with rocks scooped from an asteroid, and Lauretta was eager to get his hands on the samples.\nLed by Lauretta, scientists carefully designed the billion-dollar mission to bring home pieces of a carbon-rich asteroid thought to contain organic molecules, the building blocks necessary for life to take hold. This NASA mission, known by the acronym OSIRIS-REx, launched from Earth in 2016, collected samples from a roughly 1,600-foot-wide (500-meter) asteroid named Bennu in 2020, then set a course for return to Earth.\nOn September 24, the OSIRIS-REx spacecraft released the canister containing the asteroid samples to plunge into the Earth's atmosphere, while the mothership steered onto a course to take it safely back into deep space for a follow-up mission to explore a different asteroid at the end of the 2020s.\n\nRead 24 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2023/12/nasas-asteroid-mission-struck-its-target-but-then-dodged-a-bullet/#comments", + "content": "\"I was trying to mentally prepare myself to deal with a crashed capsule in the desert.\"", + "contentSnippet": "\"I was trying to mentally prepare myself to deal with a crashed capsule in the desert.\"", + "guid": "https://arstechnica.com/?p=1989304", + "categories": ["Space", "asteroid retrieval mission", "NASA", "osiris rex"], + "isoDate": "2023-12-06T23:08:03.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Ex-Twitter exec sues Musk, says he was fired for objecting to budget cuts", + "link": "https://arstechnica.com/?p=1989253", + "pubDate": "Wed, 06 Dec 2023 22:33:24 +0000", + "content:encoded": "
\n
\n \"Twitter's\n

Enlarge (credit: Getty Images | NurPhoto )

\n\n\n\n\n\n\n
\n

A former Twitter security executive sued Elon Musk and X Corp. yesterday, alleging that he was unlawfully fired for objecting to steep budget cuts implemented shortly after Musk bought the social network.

\n

Alan Rosa, who was fired on December 6, 2022, \"was Head of Global Information Technology and Information Security and worked remotely for Twitter performing the majority of his job duties from his home in New Jersey,\" said the lawsuit filed in US District Court for the District of New Jersey. He also sometimes worked in Twitter's New York and California offices.

\n

Rosa was required to resolve his claims through arbitration and says that he filed a demand for arbitration in April 2023 and paid his arbitration filing fee. Rosa alleges that \"Twitter has refused to pay its portion of the arbitration fees despite being ordered by JAMS [Judicial Arbitration and Mediation Services] to do so.\"

Read 17 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | NurPhoto )\n \n\n\n\n\n\n\n\nA former Twitter security executive sued Elon Musk and X Corp. yesterday, alleging that he was unlawfully fired for objecting to steep budget cuts implemented shortly after Musk bought the social network.\nAlan Rosa, who was fired on December 6, 2022, \"was Head of Global Information Technology and Information Security and worked remotely for Twitter performing the majority of his job duties from his home in New Jersey,\" said the lawsuit filed in US District Court for the District of New Jersey. He also sometimes worked in Twitter's New York and California offices.\nRosa was required to resolve his claims through arbitration and says that he filed a demand for arbitration in April 2023 and paid his arbitration filing fee. Rosa alleges that \"Twitter has refused to pay its portion of the arbitration fees despite being ordered by JAMS [Judicial Arbitration and Mediation Services] to do so.\"\n\nRead 17 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/12/ex-twitter-exec-sues-musk-says-he-was-fired-for-objecting-to-budget-cuts/#comments", + "content": "Fired exec suing Musk says he warned that budget cuts would harm FTC compliance.", + "contentSnippet": "Fired exec suing Musk says he warned that budget cuts would harm FTC compliance.", + "guid": "https://arstechnica.com/?p=1989253", + "categories": ["Policy", "Elon Musk", "elon musk twitter"], + "isoDate": "2023-12-06T22:33:24.000Z" + }, + { + "creator": "Andrew Cunningham", + "title": "Intel, of all companies, knocks AMD\u2019s CPU numbering in now-deleted presentation", + "link": "https://arstechnica.com/?p=1989028", + "pubDate": "Wed, 06 Dec 2023 22:19:17 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A now-deleted Intel presentation makes a good point, but with a side of disingenuousness.

\n\n\n\n\n\n\n
\n

AMD changed the way it numbers its Ryzen laptop processors last year, switching to a new system that simultaneously provides more concrete information than the old one while also partially obfuscating the exact age of the various CPU and GPU architectures being mixed-and-matched.

\n

For instance, a knowledgeable buyer can look at the \"3\" in the Ryzen 5 7530U processor and determine that it uses an older Zen 3-based CPU core. But a less-knowledgeable buyer could be forgiven for looking at the \"7000\" part and assuming that the chip is significantly newer and better than 2021's Ryzen 5600U, when in reality the two are substantially identical.

\n

Intel came out swinging against this naming scheme in a confrontational slide deck this week\u2014now deleted, but preserved for posterity by VideoCardz\u2014where it accuses AMD of selling \"snake oil\" by using older processor architectures in ostensibly \"new\" chips.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A now-deleted Intel presentation makes a good point, but with a side of disingenuousness. \n \n\n\n\n\n\n\n\nAMD changed the way it numbers its Ryzen laptop processors last year, switching to a new system that simultaneously provides more concrete information than the old one while also partially obfuscating the exact age of the various CPU and GPU architectures being mixed-and-matched.\nFor instance, a knowledgeable buyer can look at the \"3\" in the Ryzen 5 7530U processor and determine that it uses an older Zen 3-based CPU core. But a less-knowledgeable buyer could be forgiven for looking at the \"7000\" part and assuming that the chip is significantly newer and better than 2021's Ryzen 5600U, when in reality the two are substantially identical.\nIntel came out swinging against this naming scheme in a confrontational slide deck this week\u2014now deleted, but preserved for posterity by VideoCardz\u2014where it accuses AMD of selling \"snake oil\" by using older processor architectures in ostensibly \"new\" chips.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Andrew Cunningham", + "comments": "https://arstechnica.com/gadgets/2023/12/intel-accuses-amd-of-selling-old-cpus-with-new-model-numbers-which-intel-also-does/#comments", + "content": "When it comes to recycling and rebranding old chips, no one's hands are clean.", + "contentSnippet": "When it comes to recycling and rebranding old chips, no one's hands are clean.", + "guid": "https://arstechnica.com/?p=1989028", + "categories": ["Tech", "AMD", "AMD Ryzen", "CPUs", "Intel", "intel core"], + "isoDate": "2023-12-06T22:19:17.000Z" + }, + { + "creator": "John Timmer", + "title": "Quantum computer performs error-resistant operations with logical qubits", + "link": "https://arstechnica.com/?p=1989292", + "pubDate": "Wed, 06 Dec 2023 22:05:29 +0000", + "content:encoded": "
\n
\n \"Image\n

Enlarge / The hardware used for these experiments. (credit: Harvard)

\n\n\n\n\n\n\n
\n

There's widespread agreement that most useful quantum computing will have to wait for the development of error-corrected qubits. Error correction involves distributing a bit of quantum information\u2014termed a logical qubit\u2014among a small collection of hardware qubits. The disagreements mostly focus on how best to implement it and how long it will take.

\n

A key step toward that future is described in a paper released in Nature today. A large team of researchers, primarily based at Harvard University, have now demonstrated the ability to perform multiple operations on as many as 48 logical qubits. The work shows that the system, which shares a heritage with the quantum computing system made by the company QuEra, can correctly identify the occurrence of errors, and this can significantly improve the results of calculations.

\n

Yuval Boger, QuEra's chief marketing officer, told Ars: \"We feel it is a very significant milestone on the path to where we all want to be, which is large-scale, fault-tolerant quantum computers.

Read 24 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The hardware used for these experiments. (credit: Harvard)\n \n\n\n\n\n\n\n\nThere's widespread agreement that most useful quantum computing will have to wait for the development of error-corrected qubits. Error correction involves distributing a bit of quantum information\u2014termed a logical qubit\u2014among a small collection of hardware qubits. The disagreements mostly focus on how best to implement it and how long it will take.\nA key step toward that future is described in a paper released in Nature today. A large team of researchers, primarily based at Harvard University, have now demonstrated the ability to perform multiple operations on as many as 48 logical qubits. The work shows that the system, which shares a heritage with the quantum computing system made by the company QuEra, can correctly identify the occurrence of errors, and this can significantly improve the results of calculations.\nYuval Boger, QuEra's chief marketing officer, told Ars: \"We feel it is a very significant milestone on the path to where we all want to be, which is large-scale, fault-tolerant quantum computers.\n\nRead 24 remaining paragraphs | Comments", + "dc:creator": "John Timmer", + "comments": "https://arstechnica.com/science/2023/12/quantum-computer-performs-error-resistant-operations-with-logical-qubits/#comments", + "content": "Harvard and QuEra get ready for error correction, run operations on 48 logical qubits.", + "contentSnippet": "Harvard and QuEra get ready for error correction, run operations on 48 logical qubits.", + "guid": "https://arstechnica.com/?p=1989292", + "categories": [ + "Science", + "Computer science", + "Error correction", + "quantum computing", + "quantum mechanics", + "qubits", + "QuEra" + ], + "isoDate": "2023-12-06T22:05:29.000Z" + }, + { + "creator": "Benj Edwards", + "title": "Meta\u2019s new AI image generator was trained on 1.1 billion Instagram and Facebook photos", + "link": "https://arstechnica.com/?p=1989150", + "pubDate": "Wed, 06 Dec 2023 21:52:14 +0000", + "content:encoded": "
\n
\n \"Three\n

Enlarge / Three images generated by \"Imagine with Meta AI\" using the Emu AI model. (credit: Meta | Benj Edwards)

\n\n\n\n\n\n\n
\n

On Wednesday, Meta released a free standalone AI image-generator website, \"Imagine with Meta AI,\" based on its Emu image-synthesis model. Meta used 1.1 billion publicly visible Facebook and Instagram images to train the AI model, which can render a novel image from a written prompt. Previously, Meta's version of this technology\u2014using the same data\u2014was only available in messaging and social networking apps such as Instagram.

\n\n

If you're on Facebook or Instagram, it's quite possible a picture of you (or that you took) helped train Emu. In a way, the old saying, \"If you're not paying for it, you are the product\" has taken on a whole new meaning. Although, as of 2016, Instagram users uploaded over 95 million photos a day, so the dataset Meta used to train its AI model was a small subset of its overall photo library.

\n

Since Meta says it only uses publicly available photos for training, setting your photos private on Instagram or Facebook should prevent their inclusion in the company's future AI model training (unless it changes that policy, of course).

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Three images generated by \"Imagine with Meta AI\" using the Emu AI model. (credit: Meta | Benj Edwards)\n \n\n\n\n\n\n\n\nOn Wednesday, Meta released a free standalone AI image-generator website, \"Imagine with Meta AI,\" based on its Emu image-synthesis model. Meta used 1.1 billion publicly visible Facebook and Instagram images to train the AI model, which can render a novel image from a written prompt. Previously, Meta's version of this technology\u2014using the same data\u2014was only available in messaging and social networking apps such as Instagram.\nIf you're on Facebook or Instagram, it's quite possible a picture of you (or that you took) helped train Emu. In a way, the old saying, \"If you're not paying for it, you are the product\" has taken on a whole new meaning. Although, as of 2016, Instagram users uploaded over 95 million photos a day, so the dataset Meta used to train its AI model was a small subset of its overall photo library.\nSince Meta says it only uses publicly available photos for training, setting your photos private on Instagram or Facebook should prevent their inclusion in the company's future AI model training (unless it changes that policy, of course).\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/information-technology/2023/12/metas-new-ai-image-generator-was-trained-on-1-1-billion-instagram-and-facebook-photos/#comments", + "content": "\"Imagine with Meta AI\" turns prompts into images, trained using public Facebook data.", + "contentSnippet": "\"Imagine with Meta AI\" turns prompts into images, trained using public Facebook data.", + "guid": "https://arstechnica.com/?p=1989150", + "categories": [ + "AI", + "Biz & IT", + "AI image generator", + "DALL-E 3", + "image synthesis", + "machine learning", + "meta", + "Meta Emu", + "MidJourney", + "Stable Diffusion" + ], + "isoDate": "2023-12-06T21:52:14.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "After hack, 23andMe gives users 30 days to opt out of class-action waiver", + "link": "https://arstechnica.com/?p=1989247", + "pubDate": "Wed, 06 Dec 2023 21:20:29 +0000", + "content:encoded": "
\n
\n \"After\n

Enlarge (credit: Bloomberg / Contributor | Bloomberg)

\n\n\n\n\n\n\n
\n

Shortly after 23andMe confirmed that hackers stole ancestry data of 6.9 million users, 23andMe has updated its terms of service, seemingly cutting off a path previously granted to users seeking public accountability when resolving disputes.

\n

According to a post on Hacker News, the \"23andMe Team\" notified users in an email that \"important updates were made to the Dispute Resolution and Arbitration section\" of 23andMe's terms of service on November 30. This was done, 23andMe told users, \"to include procedures that will encourage a prompt resolution of any disputes and to streamline arbitration proceedings where multiple similar claims are filed.\"

\n

In the email, 23andMe told users that they had 30 days to notify the ancestry site that they disagree with the new terms. Otherwise, 23andMe users \"will be deemed to have agreed to the new terms.\" The process for opting out is detailed in the site's terms of service, instructing users to send written notice of their decision to opt out in an email to arbitrationoptout@23andme.com.

Read 10 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Bloomberg / Contributor | Bloomberg)\n \n\n\n\n\n\n\n\nShortly after 23andMe confirmed that hackers stole ancestry data of 6.9 million users, 23andMe has updated its terms of service, seemingly cutting off a path previously granted to users seeking public accountability when resolving disputes.\nAccording to a post on Hacker News, the \"23andMe Team\" notified users in an email that \"important updates were made to the Dispute Resolution and Arbitration section\" of 23andMe's terms of service on November 30. This was done, 23andMe told users, \"to include procedures that will encourage a prompt resolution of any disputes and to streamline arbitration proceedings where multiple similar claims are filed.\"\nIn the email, 23andMe told users that they had 30 days to notify the ancestry site that they disagree with the new terms. Otherwise, 23andMe users \"will be deemed to have agreed to the new terms.\" The process for opting out is detailed in the site's terms of service, instructing users to send written notice of their decision to opt out in an email to arbitrationoptout@23andme.com.\n\nRead 10 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2023/12/23andme-changes-arbitration-terms-after-hack-impacting-millions/#comments", + "content": "Anyone who fails to opt out \"will be deemed to have agreed to the new terms.\"", + "contentSnippet": "Anyone who fails to opt out \"will be deemed to have agreed to the new terms.\"", + "guid": "https://arstechnica.com/?p=1989247", + "categories": [ + "Policy", + "23andme", + "ancestry data", + "class action", + "cyberattack", + "dna test kit", + "hackers", + "mass arbitration", + "online privacy" + ], + "isoDate": "2023-12-06T21:20:29.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "iMessage will reportedly dodge EU regulations, won\u2019t have to open up", + "link": "https://arstechnica.com/?p=1989111", + "pubDate": "Wed, 06 Dec 2023 20:47:58 +0000", + "content:encoded": "
\n
\n \"iMessage\n

Enlarge (credit: Jakub Porzycki/NurPhoto via Getty Images)

\n\n\n\n\n\n\n
\n

Android users' hopes that Apple's iMessage would be forced to open up in the European Union have been dashed. Bloomberg reports that iMessage won't qualify for the EU's new \"Digital Markets Act,\" allowing Apple to keep iMessage exclusive to Apple users.

\n

The EU is deciding what should and shouldn't be under the new rules set out by the \"Digital Markets Act.\" The idea is that Big Tech \"gatekeepers\" will be subject to certain interoperability, fairness, and privacy rules. So far the wide-ranging rules have targeted 22 different services, including app stores on iOS and Android, browsers like Chrome and Safari, the Android, iOS, and Windows OSes, ad platforms from Google, Amazon, and Meta, video sites YouTube and TikTok, and instant messaging apps like WhatsApp and Facebook Messenger.

\n

Google recently rolled out a campaign to implore the EU to qualify iMessage for regulation, as Android's iMessage incompatibility is a big deal in the US. iMessage hasn't made the list, though, and that's despite meeting the popularity metrics of 45 million monthly active EU users. In the EU and most other parts of the world, the dominant messaging platform is WhatsApp, and with the Digital Market Act's focus on business usage, not general consumers, iMessage will just squeak by. Right now the EU is \"investigating\" a handful of borderline additions to the Digital Markets Act, with a deadline in February 2024.

Read 3 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Jakub Porzycki/NurPhoto via Getty Images)\n \n\n\n\n\n\n\n\nAndroid users' hopes that Apple's iMessage would be forced to open up in the European Union have been dashed. Bloomberg reports that iMessage won't qualify for the EU's new \"Digital Markets Act,\" allowing Apple to keep iMessage exclusive to Apple users.\nThe EU is deciding what should and shouldn't be under the new rules set out by the \"Digital Markets Act.\" The idea is that Big Tech \"gatekeepers\" will be subject to certain interoperability, fairness, and privacy rules. So far the wide-ranging rules have targeted 22 different services, including app stores on iOS and Android, browsers like Chrome and Safari, the Android, iOS, and Windows OSes, ad platforms from Google, Amazon, and Meta, video sites YouTube and TikTok, and instant messaging apps like WhatsApp and Facebook Messenger.\nGoogle recently rolled out a campaign to implore the EU to qualify iMessage for regulation, as Android's iMessage incompatibility is a big deal in the US. iMessage hasn't made the list, though, and that's despite meeting the popularity metrics of 45 million monthly active EU users. In the EU and most other parts of the world, the dominant messaging platform is WhatsApp, and with the Digital Market Act's focus on business usage, not general consumers, iMessage will just squeak by. Right now the EU is \"investigating\" a handful of borderline additions to the Digital Markets Act, with a deadline in February 2024.\n\nRead 3 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/apple/2023/12/imessage-will-reportedly-dodge-eu-regulations-wont-have-to-open-up/#comments", + "content": "iMessage isn't popular enough with businesses to force interoperability. ", + "contentSnippet": "iMessage isn't popular enough with businesses to force interoperability.", + "guid": "https://arstechnica.com/?p=1989111", + "categories": ["Apple", "Tech"], + "isoDate": "2023-12-06T20:47:58.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "Study: Why a spritz of water before grinding coffee yields less waste, tastier espresso", + "link": "https://arstechnica.com/?p=1988445", + "pubDate": "Wed, 06 Dec 2023 20:40:50 +0000", + "content:encoded": "
\n\n\n\n\n\n
\n
\n
\n
\n
\n
Researchers demonstrate how adding a splash of water reduces static electricity when grinding coffee. Credit: University of Oregon
\n
\n
\n

Scientific inspiration can strike at any time. For Christopher Hendon, a computational materials chemist at the University of Oregon, inspiration struck at a local coffee bar where his lab holds regular coffee hours for the Eugene campus community\u2014a fitting venue since Hendon's research specialties include investigating the scientific principles behind really good coffee. The regulars included two volcanologists, Josef Dufek and Joshua M\u00e9ndez Harper, who noted striking similarities between the science of coffee and plumes of volcanic ash, magma, and water. Thus, an unusual collaboration was born.

\n

\u201cIt\u2019s sort of like the start of a joke\u2014a volcanologist and a coffee expert walk into a bar and then come out with a paper,\u201d said M\u00e9ndez Harper, a volcanologist at Portland State University. \u201cBut I think there are a lot more opportunities for this sort of collaboration, and there\u2019s a lot more to know about how coffee breaks, how it flows as particles, and how it interacts with water. These investigations may help resolve parallel issues in geophysics\u2014whether it\u2019s landslides, volcanic eruptions, or how water percolates through soil.\u201d

\n

The result is a new paper published in the journal Matter demonstrating how adding a single squirt of water to coffee beans before grinding can significantly reduce the static electric charge on the resulting grounds. This, in turn, reduces clumping during brewing, yielding less waste and the strong, consistent flow needed to produce a tasty cup of espresso. Good baristas already employ the water trick; it's known as the Ross droplet technique, per Hendon. But this is the first time scientists have rigorously tested that well-known hack and measured the actual charge on different types of coffee.

Read 12 remaining paragraphs | Comments

", + "content:encodedSnippet": "Researchers demonstrate how adding a splash of water reduces static electricity when grinding coffee. Credit: University of Oregon \nResearchers demonstrate how adding a splash of water reduces static electricity when grinding coffee. Credit: University of Oregon \nScientific inspiration can strike at any time. For Christopher Hendon, a computational materials chemist at the University of Oregon, inspiration struck at a local coffee bar where his lab holds regular coffee hours for the Eugene campus community\u2014a fitting venue since Hendon's research specialties include investigating the scientific principles behind really good coffee. The regulars included two volcanologists, Josef Dufek and Joshua M\u00e9ndez Harper, who noted striking similarities between the science of coffee and plumes of volcanic ash, magma, and water. Thus, an unusual collaboration was born.\n\u201cIt\u2019s sort of like the start of a joke\u2014a volcanologist and a coffee expert walk into a bar and then come out with a paper,\u201d said M\u00e9ndez Harper, a volcanologist at Portland State University. \u201cBut I think there are a lot more opportunities for this sort of collaboration, and there\u2019s a lot more to know about how coffee breaks, how it flows as particles, and how it interacts with water. These investigations may help resolve parallel issues in geophysics\u2014whether it\u2019s landslides, volcanic eruptions, or how water percolates through soil.\u201d\nThe result is a new paper published in the journal Matter demonstrating how adding a single squirt of water to coffee beans before grinding can significantly reduce the static electric charge on the resulting grounds. This, in turn, reduces clumping during brewing, yielding less waste and the strong, consistent flow needed to produce a tasty cup of espresso. Good baristas already employ the water trick; it's known as the Ross droplet technique, per Hendon. But this is the first time scientists have rigorously tested that well-known hack and measured the actual charge on different types of coffee.\n\nRead 12 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/science/2023/12/study-why-a-spritz-of-water-before-grinding-coffee-yields-less-waste-tastier-espresso/#comments", + "content": "\"It turns out you can\u2019t cut corners if you want to achieve excellence.\u201d", + "contentSnippet": "\"It turns out you can\u2019t cut corners if you want to achieve excellence.\u201d", + "guid": "https://arstechnica.com/?p=1988445", + "categories": [ + "Science", + "chemistry", + "coffee", + "espresso", + "Food science", + "granular media", + "Physics" + ], + "isoDate": "2023-12-06T20:40:50.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "Yes, some cats like to play fetch. It\u2019s science!", + "link": "https://arstechnica.com/?p=1990305", + "pubDate": "Thu, 14 Dec 2023 16:39:15 +0000", + "content:encoded": "
\n\n\n\n\n\n
\n

A cat owner throws a tinfoil ball a few feet in front of their expectant cat twice. The cat chases after the tinfoil ball and retrieves it back to the owner both times, carrying it in its mouth. Credit: Elizabeth Renner.

\n

Cats have a well-deserved reputation for being independent-minded and aloof, preferring to interact with humans on their own quirky terms. So you'd never see a cat playing fetch like a dog, right? Wrong. That sort of play behavior is more common than you might think\u2014one of our cats was an avid fetcher in her younger years, although she's slowed down a bit with age. However, the evidence to date for specific fetching behaviors in cats is largely anecdotal.

\n

That's why a team of British scientists set out to study this unusual feline play behavior more extensively, reporting their findings in a new paper published in the journal Scientific Reports. The researchers concluded that most cats who like to play fetch learned how to do so without any explicit training and that cats are generally in control when playing fetch with their humans. Specifically, cats will play fetch longer and retrieve the thrown object more times when they initiate the game rather than their owners. In other words, cats are still gonna be cats.

\n

Many different animal species exhibit play behavior, according to the authors, and it's most common in mammals and birds. When cats play, their behavior tends to resemble hunting behavior commonly seen in European wildcats and lynxes: rapid approach and retreat, leaping, chasing, pouncing, and stalking. Initially, as kittens, they engage in more social forms of play with their littermates like wrestling, and they tend to engage in more solitary play as adults\u2014the opposite of dogs, who usually start playing with objects alone before transitioning to social play.

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "A cat owner throws a tinfoil ball a few feet in front of their expectant cat twice. The cat chases after the tinfoil ball and retrieves it back to the owner both times, carrying it in its mouth. Credit: Elizabeth Renner. \n\nCats have a well-deserved reputation for being independent-minded and aloof, preferring to interact with humans on their own quirky terms. So you'd never see a cat playing fetch like a dog, right? Wrong. That sort of play behavior is more common than you might think\u2014one of our cats was an avid fetcher in her younger years, although she's slowed down a bit with age. However, the evidence to date for specific fetching behaviors in cats is largely anecdotal.\nThat's why a team of British scientists set out to study this unusual feline play behavior more extensively, reporting their findings in a new paper published in the journal Scientific Reports. The researchers concluded that most cats who like to play fetch learned how to do so without any explicit training and that cats are generally in control when playing fetch with their humans. Specifically, cats will play fetch longer and retrieve the thrown object more times when they initiate the game rather than their owners. In other words, cats are still gonna be cats.\nMany different animal species exhibit play behavior, according to the authors, and it's most common in mammals and birds. When cats play, their behavior tends to resemble hunting behavior commonly seen in European wildcats and lynxes: rapid approach and retreat, leaping, chasing, pouncing, and stalking. Initially, as kittens, they engage in more social forms of play with their littermates like wrestling, and they tend to engage in more solitary play as adults\u2014the opposite of dogs, who usually start playing with objects alone before transitioning to social play.\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/science/2023/12/yes-some-cats-like-to-play-fetch-its-science/#comments", + "content": "Cats play fetch longer, with more retrievals, when they initiate the game.", + "contentSnippet": "Cats play fetch longer, with more retrievals, when they initiate the game.", + "guid": "https://arstechnica.com/?p=1990305", + "categories": [ + "Science", + "animal behavior", + "animal cognition", + "animal psychology", + "Biology", + "Cats", + "fabulous felines" + ], + "isoDate": "2023-12-14T16:39:15.000Z" + }, + { + "creator": "Kyle Orland", + "title": "Reminder: Donate to win swag in our annual Charity Drive sweepstakes", + "link": "https://arstechnica.com/?p=1991113", + "pubDate": "Thu, 14 Dec 2023 15:56:33 +0000", + "content:encoded": "
\n
\n \"Reminder:\n

Enlarge

\n\n\n\n\n\n\n
\n

If you've been too busy mourning the death of E3\u00a0to take part in this year's Ars Technica Charity Drive sweepstakes, don't worry. You still have time to donate to a good cause and get a chance to win your share of over $2,500 worth of swag (no purchase necessary to win).

\n

So far, in the first few weeks of the drive, over 215 readers have contributed over $17,000 to either the Electronic Frontier Foundation or Child's Play as part of the charity drive (EFF is now leading in the donation totals by nearly $6,000). That's a long way from 2020's record haul of over $58,000, but there's still plenty of time until the Charity Drive wraps up on Tuesday, January 2, 2024.

\n

That doesn't mean you should put your donation off, though. Do yourself and the charities involved a favor and give now while you're thinking about it.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge \n \n\n\n\n\n\n\n\nIf you've been too busy mourning the death of E3\u00a0to take part in this year's Ars Technica Charity Drive sweepstakes, don't worry. You still have time to donate to a good cause and get a chance to win your share of over $2,500 worth of swag (no purchase necessary to win).\nSo far, in the first few weeks of the drive, over 215 readers have contributed over $17,000 to either the Electronic Frontier Foundation or Child's Play as part of the charity drive (EFF is now leading in the donation totals by nearly $6,000). That's a long way from 2020's record haul of over $58,000, but there's still plenty of time until the Charity Drive wraps up on Tuesday, January 2, 2024.\nThat doesn't mean you should put your donation off, though. Do yourself and the charities involved a favor and give now while you're thinking about it.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "content": "Add to a charity haul that's already raised over $17,000 in just a few weeks.", + "contentSnippet": "Add to a charity haul that's already raised over $17,000 in just a few weeks.", + "guid": "https://arstechnica.com/?p=1991113", + "categories": ["Gaming", "charity", "charity drive"], + "isoDate": "2023-12-14T15:56:33.000Z" + }, + { + "creator": "Kyle Orland", + "title": "Doom\u2019s creators reminisce about \u201cas close to a perfect game as anything we made\u201d", + "link": "https://arstechnica.com/?p=1991059", + "pubDate": "Thu, 14 Dec 2023 15:47:50 +0000", + "content:encoded": "
\n\n\n\n\n\n
\n

The archived hour-long chat is a must-watch for any long-time Doom fan.

\n

While Doom can sometimes feel like an overnight smash success, the seminal first-person shooter was far from the first game created by id co-founders John Carmack and John Romero. Now, in a rare joint interview that was livestreamed during last weekend's 30th-anniversary celebration, the pair waxed philosophical about how Doom struck a perfect balance between technology and simplicity that they hadn't been able to capture previously and have struggled to recapture since.

\n

Carmack said that Doom-precursor Wolfenstein 3D, for instance, \"was done under these extreme, extraordinary design constraints\" because of the technology available at the time. \"There just wasn't that much we could do.\"

\n
\"<em>Wolfenstein

Wolfenstein 3D's grid-based mapping led to a lot of boring rectangular rooms connected by long corridors. (credit: Steam)

\n

One of the biggest constraints in Wolfenstein 3D was a grid-based mapping system that forced walls to be at 90-degree angles, leading to a lot of large, rectangular rooms connected by long corridors. \"Making the levels for the original Wolfenstein had to be the most boring level design job ever because it was so simple,\" Romero said. \"Even [2D platformer Commander Keen] was more rewarding to make levels for.\"

Read 17 remaining paragraphs | Comments

", + "content:encodedSnippet": "The archived hour-long chat is a must-watch for any long-time Doom fan. \n\nWhile Doom can sometimes feel like an overnight smash success, the seminal first-person shooter was far from the first game created by id co-founders John Carmack and John Romero. Now, in a rare joint interview that was livestreamed during last weekend's 30th-anniversary celebration, the pair waxed philosophical about how Doom struck a perfect balance between technology and simplicity that they hadn't been able to capture previously and have struggled to recapture since.\nCarmack said that Doom-precursor Wolfenstein 3D, for instance, \"was done under these extreme, extraordinary design constraints\" because of the technology available at the time. \"There just wasn't that much we could do.\"\n\nWolfenstein 3D's grid-based mapping led to a lot of boring rectangular rooms connected by long corridors. (credit: Steam)\n\nOne of the biggest constraints in Wolfenstein 3D was a grid-based mapping system that forced walls to be at 90-degree angles, leading to a lot of large, rectangular rooms connected by long corridors. \"Making the levels for the original Wolfenstein had to be the most boring level design job ever because it was so simple,\" Romero said. \"Even [2D platformer Commander Keen] was more rewarding to make levels for.\"\n\nRead 17 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/gaming/2023/12/dooms-creators-reminisce-about-as-close-to-a-perfect-game-as-anything-we-made/#comments", + "content": "In 30th anniversary stream, Carmack and Romero recall a game dev \"perfect storm.\"", + "contentSnippet": "In 30th anniversary stream, Carmack and Romero recall a game dev \"perfect storm.\"", + "guid": "https://arstechnica.com/?p=1991059", + "categories": [ + "Gaming", + "Anniversary", + "Carmack", + "Doom", + "dos gaming", + "id Software", + "Nostalgia", + "romero" + ], + "isoDate": "2023-12-14T15:47:50.000Z" + }, + { + "creator": "Ars Contributors", + "title": "An Internet video purportedly shows a tornado being blown up. Is that possible?", + "link": "https://arstechnica.com/?p=1991064", + "pubDate": "Thu, 14 Dec 2023 15:23:37 +0000", + "content:encoded": "
\n
\n \"Severe\n

Enlarge / Severe weather reports from Saturday across Tennessee and Kentucky. Note the cluster of tornado reports north of Nashville. (credit: NOAA)

\n\n\n\n\n\n\n
\n

Last weekend saw a tragic outbreak of tornadoes in Tennessee that killed six people and injured more than 80. In the aftermath of these deadly storms, video has emerged showing one of the tornadoes striking a power station, which appears to disrupt the circulation of the twister.

\n

This has led to rampant online speculation\u2014as tends to happen in 2023\u2014about whether it\u2019s possible to \u201cblow up\u201d a tornado. Take a gander at the video below:

\n
\n

Tennessee tornado 2023. Please be safe.

\n

Friend from my wrestling academy captured this insane video in Madison. Please be safe. pic.twitter.com/2JDWNznfUn

\n

\u2014 BD (@BrandonDavisBD) December 9, 2023

\n

This tornado occurred between Madison and Goodlettsville, just north of Nashville, east of I-65. What you see is the tornado striking a power substation, followed by an explosion. The power substation belonged to Nashville Electric Service, which subsequently released a video from the substation on Monday showing the strike and explosion.

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Severe weather reports from Saturday across Tennessee and Kentucky. Note the cluster of tornado reports north of Nashville. (credit: NOAA)\n \n\n\n\n\n\n\n\nLast weekend saw a tragic outbreak of tornadoes in Tennessee that killed six people and injured more than 80. In the aftermath of these deadly storms, video has emerged showing one of the tornadoes striking a power station, which appears to disrupt the circulation of the twister.\nThis has led to rampant online speculation\u2014as tends to happen in 2023\u2014about whether it\u2019s possible to \u201cblow up\u201d a tornado. Take a gander at the video below:\nTennessee tornado 2023. Please be safe.\nFriend from my wrestling academy captured this insane video in Madison. Please be safe. pic.twitter.com/2JDWNznfUn\n\u2014 BD (@BrandonDavisBD) December 9, 2023\n\nThis tornado occurred between Madison and Goodlettsville, just north of Nashville, east of I-65. What you see is the tornado striking a power substation, followed by an explosion. The power substation belonged to Nashville Electric Service, which subsequently released a video from the substation on Monday showing the strike and explosion.\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/science/2023/12/wait-can-you-actually-blow-up-a-tornado/#comments", + "content": "Seriously, in a theoretical world without risk to lives or property, could you do it?", + "contentSnippet": "Seriously, in a theoretical world without risk to lives or property, could you do it?", + "guid": "https://arstechnica.com/?p=1991064", + "categories": ["Science", "science", "the eyewall", "tornado"], + "isoDate": "2023-12-14T15:23:37.000Z" + }, + { + "creator": "Andrew Cunningham", + "title": "Intel intros first Meteor Lake chips with faster GPUs and worse single-core speed", + "link": "https://arstechnica.com/?p=1989886", + "pubDate": "Thu, 14 Dec 2023 15:00:43 +0000", + "content:encoded": "
\n
\n \"Intel's\n

Enlarge / Intel's Core Ultra CPUs combine multiple silicon dies into a single chip. (credit: Intel)

\n\n\n\n\n\n\n
\n

Intel announced technical details about its next-generation Core CPUs a few months ago. Codenamed Meteor Lake, the chips are good and bad news for Intel's chip manufacturing ambitions\u2014they're simultaneously the first chips to use the brand-new Intel 4 process and the first of Intel's mass-market consumer processors to use silicon manufactured by someone other than Intel (in this case, TSMC). They're also a showcase for Intel's Foveros packaging technology, which welds together several pieces of silicon (\"tiles,\" in Intel's words) rather than integrating everything into a single monolithic die.

\n\n

Today, Intel is announcing the first wave of actual Meteor Lake processors, which Intel says will be available in some PCs starting today\u2014expect to see quite a few of these PC designs announced this week, and even more of them at CES next month.

\n

The lineup includes 11 chips across two different product families: H-series processors for thin-and-light workstation and gaming laptops and U-series chips that will end up in Ultrabooks. Eight of these are launching today, and three more are expected in Q1 of 2024. The two families share many similarities, including Intel's first built-in neural processing unit (NPU) for accelerating machine learning and AI workloads, but in short, the H-series chips use more power and include more P-cores and GPU cores.

Read 14 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Intel's Core Ultra CPUs combine multiple silicon dies into a single chip. (credit: Intel)\n \n\n\n\n\n\n\n\nIntel announced technical details about its next-generation Core CPUs a few months ago. Codenamed Meteor Lake, the chips are good and bad news for Intel's chip manufacturing ambitions\u2014they're simultaneously the first chips to use the brand-new Intel 4 process and the first of Intel's mass-market consumer processors to use silicon manufactured by someone other than Intel (in this case, TSMC). They're also a showcase for Intel's Foveros packaging technology, which welds together several pieces of silicon (\"tiles,\" in Intel's words) rather than integrating everything into a single monolithic die.\nToday, Intel is announcing the first wave of actual Meteor Lake processors, which Intel says will be available in some PCs starting today\u2014expect to see quite a few of these PC designs announced this week, and even more of them at CES next month.\nThe lineup includes 11 chips across two different product families: H-series processors for thin-and-light workstation and gaming laptops and U-series chips that will end up in Ultrabooks. Eight of these are launching today, and three more are expected in Q1 of 2024. The two families share many similarities, including Intel's first built-in neural processing unit (NPU) for accelerating machine learning and AI workloads, but in short, the H-series chips use more power and include more P-cores and GPU cores.\n\nRead 14 remaining paragraphs | Comments", + "dc:creator": "Andrew Cunningham", + "comments": "https://arstechnica.com/gadgets/2023/12/intel-intros-first-meteor-lake-chips-with-faster-gpus-and-worse-single-core-speed/#comments", + "content": "They're Intel's first CPUs with a neural processing unit for on-device AI tasks.", + "contentSnippet": "They're Intel's first CPUs with a neural processing unit for on-device AI tasks.", + "guid": "https://arstechnica.com/?p=1989886", + "categories": [ + "Tech", + "intel core", + "intel core ultra", + "intel meteor lake", + "meteor lake" + ], + "isoDate": "2023-12-14T15:00:43.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Cadillac announces fourth new electric SUV due in 2026 : The Vistiq", + "link": "https://arstechnica.com/?p=1991048", + "pubDate": "Thu, 14 Dec 2023 14:00:44 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / I'm not 100 percent sure, but it looks a lot like the Vistiq will be a three-row SUV. (credit: Cadillac)

\n\n\n\n\n\n\n
\n

Cadillac's product planners sure love the letter Q. Last year, the American luxury automaker started building the Lyriq, a rather competent midsize electric SUV. Last month, it revealed plans for an entry-level electric crossover called the Optiq, which goes on sale next year. And today, it tells us there's another new SUV due in model year 2026, called the Vistiq.

\n

Size-wize, the Vistiq slots between the Lyriq and the ginormous Escalade IQ due for model year 2025\u2014the brand recognition on that name is far too good to Q-icize it directly. Although we have no details other than the model year and the name right now, there's a fairly good chance the Vistiq will be an electric analogue to the Cadillac XT6.

\n

(Similarly we have no further details on the Optiq yet other than that it will share the same smaller crossover architecture as the forthcoming Chevrolet Equinox and will arrive in 2024.)

Read 2 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / I'm not 100 percent sure, but it looks a lot like the Vistiq will be a three-row SUV. (credit: Cadillac)\n \n\n\n\n\n\n\n\nCadillac's product planners sure love the letter Q. Last year, the American luxury automaker started building the Lyriq, a rather competent midsize electric SUV. Last month, it revealed plans for an entry-level electric crossover called the Optiq, which goes on sale next year. And today, it tells us there's another new SUV due in model year 2026, called the Vistiq.\nSize-wize, the Vistiq slots between the Lyriq and the ginormous Escalade IQ due for model year 2025\u2014the brand recognition on that name is far too good to Q-icize it directly. Although we have no details other than the model year and the name right now, there's a fairly good chance the Vistiq will be an electric analogue to the Cadillac XT6.\n(Similarly we have no further details on the Optiq yet other than that it will share the same smaller crossover architecture as the forthcoming Chevrolet Equinox and will arrive in 2024.)\n\nRead 2 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2023/12/cadillac-plans-new-electric-suv-to-fit-between-the-lyriq-and-escalade-ev/#comments", + "content": "The news follows last month's reveal of the entry-level Cadillac Optiq EV.", + "contentSnippet": "The news follows last month's reveal of the entry-level Cadillac Optiq EV.", + "guid": "https://arstechnica.com/?p=1991048", + "categories": ["Cars", "cadillac", "Cadillac Escalade IQ"], + "isoDate": "2023-12-14T14:00:44.000Z" + }, + { + "creator": "Eric Berger", + "title": "Daily Telescope: How small can the smallest star be?", + "link": "https://arstechnica.com/?p=1990921", + "pubDate": "Thu, 14 Dec 2023 13:00:58 +0000", + "content:encoded": "
\n
\n \"This\n

Enlarge / This image from the NIRCam on the James Webb Space Telescope shows the central portion of the star cluster IC 348. (credit: NASA, ESA, CSA, STScI, and K. Luhman and C. Alves de Oliveira)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's December 14, and today we're traveling about 1,000 light-years from Earth to a star cluster in the constellation Perseus. Astronomers using the James Webb Space Telescope have looked there as part of their search to answer a simple question: How small can a star be?

\n

Webb is an ideal tool for such a search because the smallest stars\u2014brown dwarfs, which emit light from the fusion of deuterium\u2014are most visible in infrared light. Astronomers focused on this star cluster, IC 348, because it is young and should have new brown dwarfs. Such small stars emit the most light when they're young, so the smallest stars would be at the most visible point of their lifetime.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / This image from the NIRCam on the James Webb Space Telescope shows the central portion of the star cluster IC 348. (credit: NASA, ESA, CSA, STScI, and K. Luhman and C. Alves de Oliveira)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's December 14, and today we're traveling about 1,000 light-years from Earth to a star cluster in the constellation Perseus. Astronomers using the James Webb Space Telescope have looked there as part of their search to answer a simple question: How small can a star be?\nWebb is an ideal tool for such a search because the smallest stars\u2014brown dwarfs, which emit light from the fusion of deuterium\u2014are most visible in infrared light. Astronomers focused on this star cluster, IC 348, because it is young and should have new brown dwarfs. Such small stars emit the most light when they're young, so the smallest stars would be at the most visible point of their lifetime.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2023/12/daily-telescope-how-small-can-the-smallest-star-be/#comments", + "content": "So tiny you can barely see it.", + "contentSnippet": "So tiny you can barely see it.", + "guid": "https://arstechnica.com/?p=1990921", + "categories": ["Science", "Space", "daily telescope"], + "isoDate": "2023-12-14T13:00:58.000Z" + }, + { + "creator": "Scharon Harding", + "title": "I\u2019ve used a foldable laptop for a month, and I\u2019m ready to return to a clamshell", + "link": "https://arstechnica.com/?p=1978971", + "pubDate": "Thu, 14 Dec 2023 12:20:54 +0000", + "content:encoded": "
\n
\n \"HP\n

Enlarge / Reflective screens and creases aren't the only concerns with foldable PCs. (credit: Scharon Harding)

\n\n\n\n\n\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Specs at a glance: HP Spectre Foldable 17-cs0097nr
\n
Screen17-inch 1920\u00d72560 OLED touchscreen
OSWindows 11 Home
CPUIntel Core i7-1250U
RAM16GB LPDDR5-5200
Storage1TB PCIe 4.0 SSD
NetworkingWi-Fi 6E, Bluetooth 5.3
Ports2x Thunderbolt 4
Size (folded)10.91\u00d77.53\u00d70.84 inches
Weight (with keyboard)3.58 lbs
Battery94.3 Wh
Warranty1 year
Price (MSRP)$5,000
OtherHP Rechargeable MPP2.0 Tilt Pen, Bluetooth keyboard, and HP Envy USB-C Hub included
\n

Although foldable smartphones have been available for five years, the devices are still trying to justify themselves. And after using a foldable-screen laptop as my primary PC for about four weeks, I'm not sure they're ready for prime time.

\n

I'm leaving my time with HP's first foldable laptop with a sense of anticipation for the future of laptops, which I think would benefit from a resurgence of creative ideas that cater to the unique ways people use their computers. But I seriously question if the benefits of having a 17-inch screen in a 12-inch laptop body are worth the trade-offs inherent in today's foldable PCs.

\n

Early participants in the foldable laptop world have an opportunity to define the space, while consumers can decide if this is something they even want. HP's foldable is the most beefed-up option ever, and weeks of use have shown me a lot about what I want and don't want to see when the dust settles.

Read 44 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Reflective screens and creases aren't the only concerns with foldable PCs. (credit: Scharon Harding)\n \n\n\n\n\n\n\n\nSpecs at a glance: HP Spectre Foldable 17-cs0097nr\n\n\n\nScreen\n17-inch 1920\u00d72560 OLED touchscreen\n\n\nOS\nWindows 11 Home\n\n\nCPU\nIntel Core i7-1250U\n\n\nRAM\n16GB LPDDR5-5200\n\n\nStorage\n1TB PCIe 4.0 SSD\n\n\nNetworking\nWi-Fi 6E, Bluetooth 5.3\n\n\nPorts\n2x Thunderbolt 4\n\n\nSize (folded)\n10.91\u00d77.53\u00d70.84 inches\n\n\nWeight (with keyboard)\n3.58 lbs\n\n\nBattery\n94.3 Wh\n\n\nWarranty\n1 year\n\n\nPrice (MSRP)\n$5,000\n\n\nOther\nHP Rechargeable MPP2.0 Tilt Pen, Bluetooth keyboard, and HP Envy USB-C Hub included\n\n\n\nAlthough foldable smartphones have been available for five years, the devices are still trying to justify themselves. And after using a foldable-screen laptop as my primary PC for about four weeks, I'm not sure they're ready for prime time.\nI'm leaving my time with HP's first foldable laptop with a sense of anticipation for the future of laptops, which I think would benefit from a resurgence of creative ideas that cater to the unique ways people use their computers. But I seriously question if the benefits of having a 17-inch screen in a 12-inch laptop body are worth the trade-offs inherent in today's foldable PCs.\nEarly participants in the foldable laptop world have an opportunity to define the space, while consumers can decide if this is something they even want. HP's foldable is the most beefed-up option ever, and weeks of use have shown me a lot about what I want and don't want to see when the dust settles.\n\nRead 44 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/gadgets/2023/12/hp-shows-what-a-foldable-screen-laptop-should-and-shouldnt-be/#comments", + "content": "Foldable PCs unite superior portablility with distinctive design challenges. ", + "contentSnippet": "Foldable PCs unite superior portablility with distinctive design challenges.", + "guid": "https://arstechnica.com/?p=1978971", + "categories": [ + "Features", + "Reviews", + "Tech", + "foldable", + "HP", + "laptops", + "oled" + ], + "isoDate": "2023-12-14T12:20:54.000Z" + }, + { + "creator": "Dan Goodin", + "title": "Ukrainian cellular and Internet still out, 1 day after suspected Russian cyberattack", + "link": "https://arstechnica.com/?p=1991011", + "pubDate": "Thu, 14 Dec 2023 01:33:41 +0000", + "content:encoded": "
\n
\n A service center for \"Kyivstar\", a Ukrainian telecommunications company, that provides communication services and data transmission based on a broad range of fixed and mobile technologies.\n

Enlarge / A service center for \"Kyivstar\", a Ukrainian telecommunications company, that provides communication services and data transmission based on a broad range of fixed and mobile technologies. (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Ukrainian civilians on Wednesday grappled for a second day of widespread cellular phone and Internet outages after a cyberattack, purportedly carried out by Kremlin-supported hackers, hit the country\u2019s biggest mobile phone and Internet provider a day earlier.

\n

Two separate hacking groups with ties to the Russian government took responsibility for Tuesday\u2019s attack striking Kyivstar, which has said it serves 24.3 million mobile subscribers and more than 1.1 million home Internet users. One group, calling itself Killnet, said on Telegram that \u201can attack was carried out on Ukrainian mobile operators, as well as on some banks,\u201d but didn\u2019t elaborate or provide any evidence. A separate group known as Solntsepek said on the same site that it took \u201cfull responsibility for the cyberattack on Kyivstar\u201d and had \u201cdestroyed 10,000 computers, more than 4,000 servers, and all cloud storage and backup systems.\u201d The post was accompanied by screenshots purporting to show someone with control over the Kyivstar systems.

\n

In the city of Lviv, street lights remained on after sunrise and had to be disconnected manually, because Internet-dependent automated power switches didn\u2019t work, according to NBC News. Additionally, the outage prevented shops throughout the country from processing credit payments and many ATMs from functioning, the Kyiv Post said.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A service center for \"Kyivstar\", a Ukrainian telecommunications company, that provides communication services and data transmission based on a broad range of fixed and mobile technologies. (credit: Getty Images)\n \n\n\n\n\n\n\n\nUkrainian civilians on Wednesday grappled for a second day of widespread cellular phone and Internet outages after a cyberattack, purportedly carried out by Kremlin-supported hackers, hit the country\u2019s biggest mobile phone and Internet provider a day earlier.\nTwo separate hacking groups with ties to the Russian government took responsibility for Tuesday\u2019s attack striking Kyivstar, which has said it serves 24.3 million mobile subscribers and more than 1.1 million home Internet users. One group, calling itself Killnet, said on Telegram that \u201can attack was carried out on Ukrainian mobile operators, as well as on some banks,\u201d but didn\u2019t elaborate or provide any evidence. A separate group known as Solntsepek said on the same site that it took \u201cfull responsibility for the cyberattack on Kyivstar\u201d and had \u201cdestroyed 10,000 computers, more than 4,000 servers, and all cloud storage and backup systems.\u201d The post was accompanied by screenshots purporting to show someone with control over the Kyivstar systems.\nIn the city of Lviv, street lights remained on after sunrise and had to be disconnected manually, because Internet-dependent automated power switches didn\u2019t work, according to NBC News. Additionally, the outage prevented shops throughout the country from processing credit payments and many ATMs from functioning, the Kyiv Post said.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2023/12/ukrainian-cells-and-internet-still-out-1-day-after-suspected-russian-cyberattack/#comments", + "content": "Hackers tied to Russian military take responsibility for hack on Ukraine's biggest provider.", + "contentSnippet": "Hackers tied to Russian military take responsibility for hack on Ukraine's biggest provider.", + "guid": "https://arstechnica.com/?p=1991011", + "categories": [ + "Biz & IT", + "Security", + "cellular", + "cyberattack", + "Internet", + "russia", + "Ukraine" + ], + "isoDate": "2023-12-14T01:33:41.000Z" + }, + { + "creator": "Samuel Axon", + "title": "Guidemaster: A cheat sheet for comparing the iPhone 15 lineup\u2019s cameras", + "link": "https://arstechnica.com/?p=1987647", + "pubDate": "Thu, 14 Dec 2023 00:08:18 +0000", + "content:encoded": "
\n
\n \"iPhone\n

Enlarge / The iPhone 15 lineup.

\n\n\n\n\n\n\n
\n

Over the past couple of years of reviewing the iPhone, we've often jokingly called them \"smartcameras\" rather than smartphones, as the camera features are really what sell people on upgrading to new models.

\n

So, for our final Apple gift guide, we'll revisit some of what we explored in our iPhone 15 and iPhone 15 Pro review with a special focus on the cameras. If you're looking to grab a new iPhone for yourself or someone in your family, which camera is best?

\n

The idea here is to provide a top-level, quick summary of the features of each iPhone camera as they pertain to specific uses to make for an easy buying guide for last-minute holiday shoppers who want a quick answer. We'll go over each phone and survey its features, detailing their relevant uses and noting some recommendations and considerations along the way.

Read 44 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The iPhone 15 lineup. \n \n\n\n\n\n\n\n\nOver the past couple of years of reviewing the iPhone, we've often jokingly called them \"smartcameras\" rather than smartphones, as the camera features are really what sell people on upgrading to new models.\nSo, for our final Apple gift guide, we'll revisit some of what we explored in our iPhone 15 and iPhone 15 Pro review with a special focus on the cameras. If you're looking to grab a new iPhone for yourself or someone in your family, which camera is best?\nThe idea here is to provide a top-level, quick summary of the features of each iPhone camera as they pertain to specific uses to make for an easy buying guide for last-minute holiday shoppers who want a quick answer. We'll go over each phone and survey its features, detailing their relevant uses and noting some recommendations and considerations along the way.\n\nRead 44 remaining paragraphs | Comments", + "dc:creator": "Samuel Axon", + "comments": "https://arstechnica.com/gadgets/2023/12/guidemaster-a-cheat-sheet-for-comparing-the-iphone-15-lineups-cameras/#comments", + "content": "Most folks don't need the Pros, but there are some use cases where it matters.", + "contentSnippet": "Most folks don't need the Pros, but there are some use cases where it matters.", + "guid": "https://arstechnica.com/?p=1987647", + "categories": [ + "Shopping", + "Tech", + "guidemaster", + "iphone", + "iPhone 15", + "iPhone 15 Pro", + "iphone 15 pro max" + ], + "isoDate": "2023-12-14T00:08:18.000Z" + }, + { + "creator": "Scharon Harding", + "title": "You can now access Apple\u2019s official diagnostics tool online for DIY repairs", + "link": "https://arstechnica.com/?p=1990929", + "pubDate": "Wed, 13 Dec 2023 23:20:41 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The iPhone 15 is part of Apple's self-repair program now. (credit: Samuel Axon)

\n\n\n\n\n\n\n
\n

Apple today expanded the Self Service Repair program it launched in April to include access to Apple's diagnostics tool online and the iPhone 15 series and M2 Macs.

\n

The online tool, Apple said in today's announcement, provides \"the same ability as Apple Authorized Service Providers and Independent Repair Providers to test devices for optimal part functionality and performance, as well as identify which parts may need repair.\" The troubleshooting tool is only available in the US and will hit Europe in 2024, according to Apple.

\n

Upon visiting the tool's website, you'll be prompted to put your device in diagnostic mode before entering the device's serial number. Then, you'll have access to a diagnostic suite, including things like a mobile resource inspector for checking software and validating components' presence, testing for audio output and \"display pixel anomalies,\" and tests for cameras and Face ID.

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The iPhone 15 is part of Apple's self-repair program now. (credit: Samuel Axon)\n \n\n\n\n\n\n\n\nApple today expanded the Self Service Repair program it launched in April to include access to Apple's diagnostics tool online and the iPhone 15 series and M2 Macs.\nThe online tool, Apple said in today's announcement, provides \"the same ability as Apple Authorized Service Providers and Independent Repair Providers to test devices for optimal part functionality and performance, as well as identify which parts may need repair.\" The troubleshooting tool is only available in the US and will hit Europe in 2024, according to Apple.\nUpon visiting the tool's website, you'll be prompted to put your device in diagnostic mode before entering the device's serial number. Then, you'll have access to a diagnostic suite, including things like a mobile resource inspector for checking software and validating components' presence, testing for audio output and \"display pixel anomalies,\" and tests for cameras and Face ID.\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/gadgets/2023/12/you-can-now-access-apples-official-diagnostics-tool-online-for-diy-repairs/#comments", + "content": "Parts pairing still irks right-to-repair activists, though. ", + "contentSnippet": "Parts pairing still irks right-to-repair activists, though.", + "guid": "https://arstechnica.com/?p=1990929", + "categories": [ + "Apple", + "Tech", + "apple", + "iphone", + "Mac", + "MacBook", + "repairability", + "right to repair" + ], + "isoDate": "2023-12-13T23:20:41.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Effects of Falcon Heavy launch delay could ripple to downstream missions", + "link": "https://arstechnica.com/?p=1990914", + "pubDate": "Wed, 13 Dec 2023 22:41:36 +0000", + "content:encoded": "
\n
\n \"A\n

A SpaceX Falcon Heavy rocket is seen outside the company's hangar at Kennedy Space Center, Florida. (credit: SpaceX)

\n\n\n\n\n\n\n
\n

SpaceX and the US Space Force thought they were ready to launch the military's mysterious X-37B spaceplane this week, but ground teams in Florida need to roll the Falcon Heavy rocket back into its hangar for servicing.

\n

This is expected to push back the launch until at least late December, perhaps longer. SpaceX and Space Force officials have not divulged details about the problems causing the delay.

\n

SpaceX called off a launch attempt Monday night at NASA's Kennedy Space Center in Florida to resolve a problem with a ground system. A senior Space Force official told Ars on Wednesday that additional issues will cause an additional delay in the launch.

Read 16 remaining paragraphs | Comments

", + "content:encodedSnippet": "A SpaceX Falcon Heavy rocket is seen outside the company's hangar at Kennedy Space Center, Florida. (credit: SpaceX)\n \n\n\n\n\n\n\n\nSpaceX and the US Space Force thought they were ready to launch the military's mysterious X-37B spaceplane this week, but ground teams in Florida need to roll the Falcon Heavy rocket back into its hangar for servicing.\nThis is expected to push back the launch until at least late December, perhaps longer. SpaceX and Space Force officials have not divulged details about the problems causing the delay.\nSpaceX called off a launch attempt Monday night at NASA's Kennedy Space Center in Florida to resolve a problem with a ground system. A senior Space Force official told Ars on Wednesday that additional issues will cause an additional delay in the launch.\n\nRead 16 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2023/12/technical-problems-ground-spacex-launch-of-us-military-spaceplane/#comments", + "content": "Officials hope to launch before the end of the year, but a longer delay is possible.", + "contentSnippet": "Officials hope to launch before the end of the year, but a longer delay is possible.", + "guid": "https://arstechnica.com/?p=1990914", + "categories": [ + "Space", + "falcon heavy", + "launch", + "military space", + "space force", + "spaceplane", + "spacex", + "X-37b" + ], + "isoDate": "2023-12-13T22:41:36.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Trains were designed to break down after third-party repairs, hackers find", + "link": "https://arstechnica.com/?p=1990928", + "pubDate": "Wed, 13 Dec 2023 22:14:20 +0000", + "content:encoded": "
\n
\n Dragon Sector uploaded a video to social media after discovering an \"undocumented \u2018unlock code\u2019 which you could enter from the train driver\u2019s panel\" fixed \"mysterious issues\" impacting trains in Poland.\n

Enlarge / Dragon Sector uploaded a video to social media after discovering an \"undocumented \u2018unlock code\u2019 which you could enter from the train driver\u2019s panel\" fixed \"mysterious issues\" impacting trains in Poland. (credit: Adam Haertle on YouTube)

\n\n\n\n\n\n\n
\n

An unusual right-to-repair drama is disrupting railroad travel in Poland despite efforts by hackers who helped repair trains that allegedly were designed to stop functioning when serviced by anyone but Newag, the train manufacturer.

\n

Members of an ethical hacking group called Dragon Sector, including Sergiusz Baza\u0144ski and Micha\u0142 Kowalczyk, were called upon by a train repair shop, Serwis Pojazd\u00f3w Szynowych (SPS), to analyze train software in June 2022. SPS was desperate to figure out what was causing \"mysterious failures\" that shut down several vehicles owned by Polish train operator the Lower Silesian Railway, Polish infrastructure trade publication Rynek Kolejowy reported. At that point, the shortage of trains had already become \"a serious problem\" for carriers and passengers, as fewer available cars meant shorter trains and reduced rider capacity, Rynek Kolejowy reported.

\n

Dragon Sector spent two months analyzing the software, finding that \"the manufacturer's interference\" led to \"forced failures and to the fact that the trains did not start,\" and concluding that bricking the trains \"was a deliberate action on Newag's part.\"

Read 19 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Dragon Sector uploaded a video to social media after discovering an \"undocumented \u2018unlock code\u2019 which you could enter from the train driver\u2019s panel\" fixed \"mysterious issues\" impacting trains in Poland. (credit: Adam Haertle on YouTube)\n \n\n\n\n\n\n\n\nAn unusual right-to-repair drama is disrupting railroad travel in Poland despite efforts by hackers who helped repair trains that allegedly were designed to stop functioning when serviced by anyone but Newag, the train manufacturer.\nMembers of an ethical hacking group called Dragon Sector, including Sergiusz Baza\u0144ski and Micha\u0142 Kowalczyk, were called upon by a train repair shop, Serwis Pojazd\u00f3w Szynowych (SPS), to analyze train software in June 2022. SPS was desperate to figure out what was causing \"mysterious failures\" that shut down several vehicles owned by Polish train operator the Lower Silesian Railway, Polish infrastructure trade publication Rynek Kolejowy reported. At that point, the shortage of trains had already become \"a serious problem\" for carriers and passengers, as fewer available cars meant shorter trains and reduced rider capacity, Rynek Kolejowy reported.\nDragon Sector spent two months analyzing the software, finding that \"the manufacturer's interference\" led to \"forced failures and to the fact that the trains did not start,\" and concluding that bricking the trains \"was a deliberate action on Newag's part.\"\n\nRead 19 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2023/12/manufacturer-deliberately-bricked-trains-repaired-by-competitors-hackers-find/#comments", + "content": "The train manufacturer accused the hackers of slander.", + "contentSnippet": "The train manufacturer accused the hackers of slander.", + "guid": "https://arstechnica.com/?p=1990928", + "categories": [ + "Policy", + "DRM", + "gps tracker", + "Newag", + "Poland", + "right to repair", + "trains" + ], + "isoDate": "2023-12-13T22:14:20.000Z" + }, + { + "creator": "Beth Mole", + "title": "Humana also using AI tool with 90% error rate to deny care, lawsuit claims", + "link": "https://arstechnica.com/?p=1990918", + "pubDate": "Wed, 13 Dec 2023 21:40:34 +0000", + "content:encoded": "
\n
\n \"Signage\n

Enlarge / Signage is displayed outside the Humana Inc. office building in Louisville, Kentucky, US, in 2016. (credit: Getty | Luke Sharrett)

\n\n\n\n\n\n\n
\n

Humana, one the nation's largest health insurance providers, is allegedly using an artificial intelligence model with a 90 percent error rate to override doctors' medical judgment and wrongfully deny care to elderly people on the company's Medicare Advantage plans.

\n

According to a lawsuit filed Tuesday, Humana's use of the AI model constitutes a \"fraudulent scheme\" that leaves elderly beneficiaries with either overwhelming medical debt or without needed care that is covered by their plans. Meanwhile, the insurance behemoth reaps a \"financial windfall.\"

\n

The lawsuit, filed in the US District Court in western Kentucky, is led by two people who had a Humana Medicare Advantage Plan policy and said they were wrongfully denied needed and covered care, harming their health and finances. The suit seeks class-action status for an unknown number of other beneficiaries nationwide who may be in similar situations. Humana provides Medicare Advantage plans for 5.1 million people in the US.

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Signage is displayed outside the Humana Inc. office building in Louisville, Kentucky, US, in 2016. (credit: Getty | Luke Sharrett)\n \n\n\n\n\n\n\n\nHumana, one the nation's largest health insurance providers, is allegedly using an artificial intelligence model with a 90 percent error rate to override doctors' medical judgment and wrongfully deny care to elderly people on the company's Medicare Advantage plans.\nAccording to a lawsuit filed Tuesday, Humana's use of the AI model constitutes a \"fraudulent scheme\" that leaves elderly beneficiaries with either overwhelming medical debt or without needed care that is covered by their plans. Meanwhile, the insurance behemoth reaps a \"financial windfall.\"\nThe lawsuit, filed in the US District Court in western Kentucky, is led by two people who had a Humana Medicare Advantage Plan policy and said they were wrongfully denied needed and covered care, harming their health and finances. The suit seeks class-action status for an unknown number of other beneficiaries nationwide who may be in similar situations. Humana provides Medicare Advantage plans for 5.1 million people in the US.\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/science/2023/12/humana-also-using-ai-tool-with-90-error-rate-to-deny-care-lawsuit-claims/#comments", + "content": "The AI model, nH Predict, is the focus of another lawsuit against UnitedHealth.", + "contentSnippet": "The AI model, nH Predict, is the focus of another lawsuit against UnitedHealth.", + "guid": "https://arstechnica.com/?p=1990918", + "categories": [ + "Health", + "Science", + "AI", + "claim denial", + "coverage", + "humana", + "insurance", + "insurance coverage", + "Medicare", + "medicare advantage", + "nH Predict", + "nursing home", + "post-acute care", + "unitedhealth" + ], + "isoDate": "2023-12-13T21:40:34.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "SpaceX blasts FCC as it refuses to reinstate Starlink\u2019s $886 million grant", + "link": "https://arstechnica.com/?p=1990908", + "pubDate": "Wed, 13 Dec 2023 20:54:42 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / Starlink satellite dish. (credit: Getty Images | olegda88)

\n\n\n\n\n\n\n
\n

SpaceX is furious at the Federal Communications Commission after the agency refused to reinstate an $886 million broadband grant that was tentatively awarded to Starlink during the previous administration.

\n

The FCC announced yesterday that it rejected SpaceX's appeal. \"The FCC followed a careful legal, technical and policy review to determine that this applicant had failed to meet its burden to be entitled to nearly $900 million in universal service funds for almost a decade,\" FCC Chairwoman Jessica Rosenworcel said.

\n

In December 2020, shortly before the departure of then-FCC Chairman Ajit Pai, Starlink was tentatively awarded $885.51 million in broadband funding from the Rural Digital Opportunity Fund (RDOF). But the satellite provider still needed FCC approval of a long-form application to receive the money, which is meant to subsidize deployment in areas with little or no high-speed broadband access.

Read 17 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Starlink satellite dish. (credit: Getty Images | olegda88)\n \n\n\n\n\n\n\n\nSpaceX is furious at the Federal Communications Commission after the agency refused to reinstate an $886 million broadband grant that was tentatively awarded to Starlink during the previous administration.\nThe FCC announced yesterday that it rejected SpaceX's appeal. \"The FCC followed a careful legal, technical and policy review to determine that this applicant had failed to meet its burden to be entitled to nearly $900 million in universal service funds for almost a decade,\" FCC Chairwoman Jessica Rosenworcel said.\nIn December 2020, shortly before the departure of then-FCC Chairman Ajit Pai, Starlink was tentatively awarded $885.51 million in broadband funding from the Rural Digital Opportunity Fund (RDOF). But the satellite provider still needed FCC approval of a long-form application to receive the money, which is meant to subsidize deployment in areas with little or no high-speed broadband access.\n\nRead 17 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/12/spacex-blasts-fcc-as-it-refuses-to-reinstate-starlinks-886-million-grant/#comments", + "content": "FCC doubts ability to provide high-speed, low-latency service in all grant areas.", + "contentSnippet": "FCC doubts ability to provide high-speed, low-latency service in all grant areas.", + "guid": "https://arstechnica.com/?p=1990908", + "categories": ["Policy", "FCC", "spacex starlink"], + "isoDate": "2023-12-13T20:54:42.000Z" + }, + { + "creator": "Ars Contributors", + "title": "New survey: Nearly 30% of ESA workers experience workplace harassment", + "link": "https://arstechnica.com/?p=1990895", + "pubDate": "Wed, 13 Dec 2023 20:51:11 +0000", + "content:encoded": "
\n
\n \"Image\n

Enlarge / The ESA headquarters in Paris. (credit: ESA - P. Sebirot)

\n\n\n\n\n\n\n
\n

According to a new internal survey conducted by the European Space Agency\u2019s (ESA) staff association, about 30 percent of ESA\u2019s employees have either experienced or witnessed harassment in the workplace. The survey, published internally on December 6 and seen by Ars Technica, confirms the findings of our recent investigation into allegations of harassment and bullying at the agency.

\n

The internal survey ran from July 19 to September 15 of this year and collected the responses of 2,751 workers, representing nearly half of all ESA employees across its six main centers in France, Germany, the Netherlands, the UK, Spain, and Italy. The ESA staff association was set up by ESA to represent staff members, but the survey included both staff members and on-site contractors who are loaned to the agency through a network of cooperating manpower companies in Europe.

\n

Among the respondents, nearly a third said they had witnessed harassment during their time at the agency, while 28 percent said they had directly experienced it. The report states that a \u201ccomplementary analysis of 1,200 comments\u201d provided by the respondents suggests that about 20 percent of the ESA workers experienced harassment within the past 24 months. The types of harassment disclosed in the survey included bullying and mobbing (60 percent of cases), moral harassment (30 percent of cases) and sexual harassment (10 percent cases).

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The ESA headquarters in Paris. (credit: ESA - P. Sebirot)\n \n\n\n\n\n\n\n\nAccording to a new internal survey conducted by the European Space Agency\u2019s (ESA) staff association, about 30 percent of ESA\u2019s employees have either experienced or witnessed harassment in the workplace. The survey, published internally on December 6 and seen by Ars Technica, confirms the findings of our recent investigation into allegations of harassment and bullying at the agency.\nThe internal survey ran from July 19 to September 15 of this year and collected the responses of 2,751 workers, representing nearly half of all ESA employees across its six main centers in France, Germany, the Netherlands, the UK, Spain, and Italy. The ESA staff association was set up by ESA to represent staff members, but the survey included both staff members and on-site contractors who are loaned to the agency through a network of cooperating manpower companies in Europe.\nAmong the respondents, nearly a third said they had witnessed harassment during their time at the agency, while 28 percent said they had directly experienced it. The report states that a \u201ccomplementary analysis of 1,200 comments\u201d provided by the respondents suggests that about 20 percent of the ESA workers experienced harassment within the past 24 months. The types of harassment disclosed in the survey included bullying and mobbing (60 percent of cases), moral harassment (30 percent of cases) and sexual harassment (10 percent cases).\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/space/2023/12/new-survey-nearly-30-of-esa-workers-experience-workplace-harassment/#comments", + "content": "A new internal survey, leaked to Ars, shows continued problems at the space agency.", + "contentSnippet": "A new internal survey, leaked to Ars, shows continued problems at the space agency.", + "guid": "https://arstechnica.com/?p=1990895", + "categories": ["Space", "ESA", "workplace harassment"], + "isoDate": "2023-12-13T20:51:11.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Let\u2019s attempt to decode Google\u2019s confusing new location data settings", + "link": "https://arstechnica.com/?p=1990758", + "pubDate": "Wed, 13 Dec 2023 19:51:26 +0000", + "content:encoded": "
\n
\n \"Let\u2019s\n

Enlarge

\n\n\n\n\n\n\n
\n

Google announced big changes to its most legally fraught set of user settings: your location data. Google's misleading Location History descriptions in Google Maps have earned it several lawsuits in the US and worldwide. A quick count involves individual lawsuits in California, Arizona, Washington, a joint lawsuit in Texas, Indiana, and the District of Columbia, and another joint lawsuit across 40 additional US states. Internationally, Google has also been sued in Australia over its location settings. The point is that any change to Google's location settings must have some motive behind it, so bear with us while we try to decode everything.

\n

Google's big new location data change is a new, duplicate data store that will live exclusively on your device. Google's new blog post says data for the long-running Google Maps Timeline feature will now \"be saved right on your device\u2014giving you even more control over your data.\" That's right, one of the world's biggest Internet data companies advocates for local storage of your location data.

\n

The company continues, \"If you\u2019re getting a new phone or are worried about losing your existing one, you can always choose to back up your data to the cloud so it doesn\u2019t get lost. We\u2019ll automatically encrypt your backed-up data so no one can read it, including Google.\" Users will apparently have lots of control over this new locally stored data, with Google saying, \"Soon, you\u2019ll be able to see all your recent activity on Maps... in one central place, and easily delete your searches, directions, visits, and shares with just a few taps. The ability to delete place-related activity from Maps starts rolling out on Android and iOS in the coming weeks.\"

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge \n \n\n\n\n\n\n\n\nGoogle announced big changes to its most legally fraught set of user settings: your location data. Google's misleading Location History descriptions in Google Maps have earned it several lawsuits in the US and worldwide. A quick count involves individual lawsuits in California, Arizona, Washington, a joint lawsuit in Texas, Indiana, and the District of Columbia, and another joint lawsuit across 40 additional US states. Internationally, Google has also been sued in Australia over its location settings. The point is that any change to Google's location settings must have some motive behind it, so bear with us while we try to decode everything.\nGoogle's big new location data change is a new, duplicate data store that will live exclusively on your device. Google's new blog post says data for the long-running Google Maps Timeline feature will now \"be saved right on your device\u2014giving you even more control over your data.\" That's right, one of the world's biggest Internet data companies advocates for local storage of your location data.\nThe company continues, \"If you\u2019re getting a new phone or are worried about losing your existing one, you can always choose to back up your data to the cloud so it doesn\u2019t get lost. We\u2019ll automatically encrypt your backed-up data so no one can read it, including Google.\" Users will apparently have lots of control over this new locally stored data, with Google saying, \"Soon, you\u2019ll be able to see all your recent activity on Maps... in one central place, and easily delete your searches, directions, visits, and shares with just a few taps. The ability to delete place-related activity from Maps starts rolling out on Android and iOS in the coming weeks.\"\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2023/12/googles-confusing-new-location-settings-hide-data-in-two-different-places/#comments", + "content": "The new Google Maps Timeline plays a game of three-card monte with your location data.", + "contentSnippet": "The new Google Maps Timeline plays a game of three-card monte with your location data.", + "guid": "https://arstechnica.com/?p=1990758", + "categories": [ + "Google", + "Tech", + "data security", + "google", + "google cloud", + "google maps", + "location data" + ], + "isoDate": "2023-12-13T19:51:26.000Z" + }, + { + "creator": "Benj Edwards", + "title": "Dropbox spooks users with new AI features that send data to OpenAI when used", + "link": "https://arstechnica.com/?p=1990819", + "pubDate": "Wed, 13 Dec 2023 19:41:35 +0000", + "content:encoded": "
\n
\n \"Photo\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

On Wednesday, news quickly spread on social media about a new enabled-by-default Dropbox setting that shares Dropbox data with OpenAI for an experimental AI-powered search feature, but Dropbox says data is only shared if the feature is actively being used. Dropbox says that user data shared with third-party AI partners isn't used to train AI models and is deleted within 30 days.

\n\n

Even with assurances of data privacy laid out by Dropbox on an AI privacy FAQ page, the discovery that the setting had been enabled by default upset some Dropbox users. The setting was first noticed by writer Winifred Burton, who shared information about the Third-party AI setting through Bluesky on Tuesday, and frequent AI critic Karla Ortiz shared more information about it on X.

\n

Wednesday afternoon, Drew Houston, the CEO of Dropbox, apologized for customer confusion in a post on X and wrote, \"The third-party AI toggle in the settings menu enables or disables access to DBX AI features and functionality. Neither this nor any other setting automatically or passively sends any Dropbox customer data to a third-party AI service.\"

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nOn Wednesday, news quickly spread on social media about a new enabled-by-default Dropbox setting that shares Dropbox data with OpenAI for an experimental AI-powered search feature, but Dropbox says data is only shared if the feature is actively being used. Dropbox says that user data shared with third-party AI partners isn't used to train AI models and is deleted within 30 days.\nEven with assurances of data privacy laid out by Dropbox on an AI privacy FAQ page, the discovery that the setting had been enabled by default upset some Dropbox users. The setting was first noticed by writer Winifred Burton, who shared information about the Third-party AI setting through Bluesky on Tuesday, and frequent AI critic Karla Ortiz shared more information about it on X.\nWednesday afternoon, Drew Houston, the CEO of Dropbox, apologized for customer confusion in a post on X and wrote, \"The third-party AI toggle in the settings menu enables or disables access to DBX AI features and functionality. Neither this nor any other setting automatically or passively sends any Dropbox customer data to a third-party AI service.\"\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/information-technology/2023/12/dropbox-spooks-users-by-sending-data-to-openai-for-ai-search-features/#comments", + "content": "AI feature turned on by default worries users; Dropbox responds to concerns.", + "contentSnippet": "AI feature turned on by default worries users; Dropbox responds to concerns.", + "guid": "https://arstechnica.com/?p=1990819", + "categories": [ + "AI", + "Biz & IT", + "AI privacy", + "ChatGPT", + "chatgtp", + "data privacy", + "dropbox", + "large language models", + "machine learning", + "openai", + "privacy" + ], + "isoDate": "2023-12-13T19:41:35.000Z" + }, + { + "creator": "John Timmer", + "title": "Back to reality: COP28 calls for getting fossil fuels out of energy", + "link": "https://arstechnica.com/?p=1990834", + "pubDate": "Wed, 13 Dec 2023 19:01:27 +0000", + "content:encoded": "
\n
\n \"Image\n

Enlarge / Sultan Ahmed Al Jaber defied expectations to deliver a document that explicitly calls for limits on fossil fuel use. (credit: Fadel Dawod)

\n\n\n\n\n\n\n
\n

On Wednesday, the UN's COP28 meeting wrapped up with a major success: Despite a bruising fight with OPEC nations, the closing agreement included a call for a transition away from fossil fuels. There's still plenty here for various parties to dislike, but this is the first agreement that makes the implications of the Paris Treaty explicit: We can't limit climate change and continue to burn fossil fuels at anything close to the rate we currently do.

\n

Beyond that, however, the report has something to disappoint everyone. It catalogs strong signs of incremental progress toward the Paris goals while acknowledging we're running out of time for further increments. And the steps it calls for will likely keep changes on a similar trajectory.

\n

Taking stock

\n

The new document is called a \"Global Stocktake\" in reference to checking the world's progress toward the goals of the Paris Agreement: limit climate change to 2\u00b0 C above preindustrial temperatures and try to keep it to 1.5\u00b0 C. That agreement called for nations to make pledges to limit greenhouse gas emissions; initial pledges were insufficient, but regular meetings of the Conference of the Parties (COP) would allow the pledges to be updated, raising their aggressiveness until the world is on a trajectory toward meeting its goals.

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Sultan Ahmed Al Jaber defied expectations to deliver a document that explicitly calls for limits on fossil fuel use. (credit: Fadel Dawod)\n \n\n\n\n\n\n\n\nOn Wednesday, the UN's COP28 meeting wrapped up with a major success: Despite a bruising fight with OPEC nations, the closing agreement included a call for a transition away from fossil fuels. There's still plenty here for various parties to dislike, but this is the first agreement that makes the implications of the Paris Treaty explicit: We can't limit climate change and continue to burn fossil fuels at anything close to the rate we currently do.\nBeyond that, however, the report has something to disappoint everyone. It catalogs strong signs of incremental progress toward the Paris goals while acknowledging we're running out of time for further increments. And the steps it calls for will likely keep changes on a similar trajectory.\nTaking stock\nThe new document is called a \"Global Stocktake\" in reference to checking the world's progress toward the goals of the Paris Agreement: limit climate change to 2\u00b0 C above preindustrial temperatures and try to keep it to 1.5\u00b0 C. That agreement called for nations to make pledges to limit greenhouse gas emissions; initial pledges were insufficient, but regular meetings of the Conference of the Parties (COP) would allow the pledges to be updated, raising their aggressiveness until the world is on a trajectory toward meeting its goals.\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "John Timmer", + "comments": "https://arstechnica.com/tech-policy/2023/12/new-cop28-agreement-calls-for-transitioning-away-from-fossil-fuels/#comments", + "content": "Some details moderate its impact, but it marks a major step.", + "contentSnippet": "Some details moderate its impact, but it marks a major step.", + "guid": "https://arstechnica.com/?p=1990834", + "categories": [ + "Policy", + "Science", + "carbon emissions", + "climate change", + "COP28", + "Diplomacy", + "paris agreement" + ], + "isoDate": "2023-12-13T19:01:27.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Elon Musk\u2019s X ad revenue reportedly fell $1.5B this year amid boycotts", + "link": "https://arstechnica.com/?p=1990797", + "pubDate": "Wed, 13 Dec 2023 18:23:11 +0000", + "content:encoded": "
\n
\n \"Elon\n

Enlarge (credit: Leon Neal / Staff | Getty Images Europe)

\n\n\n\n\n\n\n
\n

It's hard to know exactly how dire the financial situation is at Elon Musk's X (formerly Twitter). However, insider sources recently revealed to Bloomberg that the social media platform expects to end 2023 with \"roughly\" $2.5 billion in advertising revenue.

\n

That's \"a significant slump from prior years,\" sources said. It's also about half a billion short of the $3 billion that X executives expected to make in ad sales in 2023, one source said.

\n

Last year, Twitter raked in more than $1 billion in ad revenue per quarter, sources said. But in each of the first three quarters of 2023, X only managed to generate \"a little more than $600 million\" in ad revenue. Now, the most recent advertiser fallout over antisemitic content on X\u2014estimated in November as triggering a sudden $75 million loss\u2014is still casting a shadow on what could become an even more dismal fourth quarter.

Read 13 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Leon Neal / Staff | Getty Images Europe)\n \n\n\n\n\n\n\n\nIt's hard to know exactly how dire the financial situation is at Elon Musk's X (formerly Twitter). However, insider sources recently revealed to Bloomberg that the social media platform expects to end 2023 with \"roughly\" $2.5 billion in advertising revenue.\nThat's \"a significant slump from prior years,\" sources said. It's also about half a billion short of the $3 billion that X executives expected to make in ad sales in 2023, one source said.\nLast year, Twitter raked in more than $1 billion in ad revenue per quarter, sources said. But in each of the first three quarters of 2023, X only managed to generate \"a little more than $600 million\" in ad revenue. Now, the most recent advertiser fallout over antisemitic content on X\u2014estimated in November as triggering a sudden $75 million loss\u2014is still casting a shadow on what could become an even more dismal fourth quarter.\n\nRead 13 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2023/12/stop-comparing-xs-dismal-ad-sales-to-twitters-past-success-x-exec-says/#comments", + "content": "\"We are not Twitter any longer,\" X exec said.", + "contentSnippet": "\"We are not Twitter any longer,\" X exec said.", + "guid": "https://arstechnica.com/?p=1990797", + "categories": [ + "Policy", + "advertiser boycott", + "Bob Iger", + "Disney", + "Elon Musk", + "Twitter", + "X" + ], + "isoDate": "2023-12-13T18:23:11.000Z" + }, + { + "creator": "Eric Berger", + "title": "Daily Telescope: One of the most stunning Andromeda photos I\u2019ve ever seen", + "link": "https://arstechnica.com/?p=1991241", + "pubDate": "Fri, 15 Dec 2023 13:00:20 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The Andromeda Galaxy. (credit: The Association of Widefield Astrophotographers)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's December 15, and I have a real treat for you today. This is an image of the Andromeda Galaxy, the nearest major galaxy to our Milky Way. Astronomers believe our galaxy is shaped much as this one is.

\n

The photograph comes from a group that calls itself the Association of Widefield Astrophotographers, and the photo was a 100-hour project by six participants in the United States, Poland, and the United Kingdom. They collected data over several months to produce the image.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The Andromeda Galaxy. (credit: The Association of Widefield Astrophotographers)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's December 15, and I have a real treat for you today. This is an image of the Andromeda Galaxy, the nearest major galaxy to our Milky Way. Astronomers believe our galaxy is shaped much as this one is.\nThe photograph comes from a group that calls itself the Association of Widefield Astrophotographers, and the photo was a 100-hour project by six participants in the United States, Poland, and the United Kingdom. They collected data over several months to produce the image.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "content": "The image is the result of 100 hours of observing.", + "contentSnippet": "The image is the result of 100 hours of observing.", + "guid": "https://arstechnica.com/?p=1991241", + "categories": ["Science", "Space", "daily telescope"], + "isoDate": "2023-12-15T13:00:20.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Rocket Report: Signs of life from Blue Origin; SpaceX preps next Starship", + "link": "https://arstechnica.com/?p=1991267", + "pubDate": "Fri, 15 Dec 2023 12:00:37 +0000", + "content:encoded": "
\n
\n \"Relativity\n

Enlarge / Relativity Space's Aeon R engine fires up on a test stand in Mississippi. (credit: Relativity Space)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.23 of the Rocket Report! In last week's report, my colleague Eric Berger mentioned what a year 2023 has been for rocket debuts. Several new launch vehicles flew for the first time this year, including SpaceX's Starship and Japan's H3. In this week's report, we have some news on some major rocket debuts planned for 2024, namely United Launch Alliance's Vulcan (now set for January) and Blue Origin's long-awaited New Glenn.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.

\n
\n

Lost tanks will delay final Vega launch.\u00a0Remember last week's report that Avio, the Italian rocket-maker, lost track of propellant tanks needed for the final launch of Europe's Vega rocket? Well, it looks like Avio and the European Space Agency have a plan to remedy the situation, but it's risky and will delay the Vega launch by several months, Space News reports.\u00a0\u201cAvio has confirmed to ESA that there is an issue with tanks for the last Vega flight,\u201d said Toni Tolker-Nielsen, ESA director of space transportation, without addressing the earlier report that the tanks for Vega's upper stage were found in a landfill, crushed and unusable.

Read 24 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Relativity Space's Aeon R engine fires up on a test stand in Mississippi. (credit: Relativity Space)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.23 of the Rocket Report! In last week's report, my colleague Eric Berger mentioned what a year 2023 has been for rocket debuts. Several new launch vehicles flew for the first time this year, including SpaceX's Starship and Japan's H3. In this week's report, we have some news on some major rocket debuts planned for 2024, namely United Launch Alliance's Vulcan (now set for January) and Blue Origin's long-awaited New Glenn.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.\n\nLost tanks will delay final Vega launch.\u00a0Remember last week's report that Avio, the Italian rocket-maker, lost track of propellant tanks needed for the final launch of Europe's Vega rocket? Well, it looks like Avio and the European Space Agency have a plan to remedy the situation, but it's risky and will delay the Vega launch by several months, Space News reports.\u00a0\u201cAvio has confirmed to ESA that there is an issue with tanks for the last Vega flight,\u201d said Toni Tolker-Nielsen, ESA director of space transportation, without addressing the earlier report that the tanks for Vega's upper stage were found in a landfill, crushed and unusable.\n\nRead 24 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2023/12/rocket-report-next-starship-to-fly-in-early-2024-ulas-vulcan-delayed/#comments", + "content": "Baguette One isn't a joke, but it sure sounds like one.", + "contentSnippet": "Baguette One isn't a joke, but it sure sounds like one.", + "guid": "https://arstechnica.com/?p=1991267", + "categories": ["Space"], + "isoDate": "2023-12-15T12:00:37.000Z" + }, + { + "creator": "Ars Contributors", + "title": "If AI is making the Turing test obsolete, what might be better?", + "link": "https://arstechnica.com/?p=1991004", + "pubDate": "Fri, 15 Dec 2023 00:16:24 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: mevans)

\n\n\n\n\n\n\n
\n

If a machine or an AI program matches or surpasses human intelligence, does that mean it can simulate humans perfectly? If yes, then what about reasoning\u2014our ability to apply logic and think rationally before making decisions? How could we even identify whether an AI program can reason? To try to answer this question, a team of researchers has proposed a novel framework that works like a psychological study for software.

\n

\"This test treats an 'intelligent' program as though it were a participant in a psychological study and has three steps: (a) test the program in a set of experiments examining its inferences, (b) test its understanding of its own way of reasoning, and (c) examine, if possible, the cognitive adequacy of the source code for the program,\" the researchers note.

\n

They suggest the standard methods of evaluating a machine\u2019s intelligence, such as the Turing Test, can only tell you if the machine is good at processing information and mimicking human responses. The current generations of AI programs, such as Google\u2019s LaMDA and OpenAI\u2019s ChatGPT, for example, have come close to passing the Turing Test, yet the test results don\u2019t imply these programs can think and reason like humans.

Read 22 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: mevans)\n \n\n\n\n\n\n\n\nIf a machine or an AI program matches or surpasses human intelligence, does that mean it can simulate humans perfectly? If yes, then what about reasoning\u2014our ability to apply logic and think rationally before making decisions? How could we even identify whether an AI program can reason? To try to answer this question, a team of researchers has proposed a novel framework that works like a psychological study for software.\n\"This test treats an 'intelligent' program as though it were a participant in a psychological study and has three steps: (a) test the program in a set of experiments examining its inferences, (b) test its understanding of its own way of reasoning, and (c) examine, if possible, the cognitive adequacy of the source code for the program,\" the researchers note.\nThey suggest the standard methods of evaluating a machine\u2019s intelligence, such as the Turing Test, can only tell you if the machine is good at processing information and mimicking human responses. The current generations of AI programs, such as Google\u2019s LaMDA and OpenAI\u2019s ChatGPT, for example, have come close to passing the Turing Test, yet the test results don\u2019t imply these programs can think and reason like humans.\n\nRead 22 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/ai/2023/12/do-ai-improvements-call-for-something-better-than-the-turing-test/#comments", + "content": "The Turing test focuses on the ability to chat\u2014can we test the ability to think?", + "contentSnippet": "The Turing test focuses on the ability to chat\u2014can we test the ability to think?", + "guid": "https://arstechnica.com/?p=1991004", + "categories": ["AI", "Science", "Computer science", "Turing test"], + "isoDate": "2023-12-15T00:16:24.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Suspects can refuse to provide phone passcodes to police, court rules", + "link": "https://arstechnica.com/?p=1991289", + "pubDate": "Thu, 14 Dec 2023 23:30:43 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | releon8211)

\n\n\n\n\n\n\n
\n

Criminal suspects can refuse to provide phone passcodes to police under the US Constitution's Fifth Amendment privilege against self-incrimination, according to a unanimous ruling issued today by Utah's state Supreme Court. The questions addressed in the ruling could eventually be taken up by the US Supreme Court, whether through review of this case or a similar one.

\n

The case involves Alfonso Valdez, who was arrested for kidnapping and assaulting his ex-girlfriend. Police officers obtained a search warrant for the contents of Valdez's phone but couldn't crack his passcode.

\n

Valdez refused to provide his passcode to a police detective. At his trial, the state \"elicited testimony from the detective about Valdez's refusal to provide his passcode when asked,\" today's ruling said. \"And during closing arguments, the State argued in rebuttal that Valdez's refusal and the resulting lack of evidence from his cell phone undermined the veracity of one of his defenses. The jury convicted Valdez.\"

Read 18 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | releon8211)\n \n\n\n\n\n\n\n\nCriminal suspects can refuse to provide phone passcodes to police under the US Constitution's Fifth Amendment privilege against self-incrimination, according to a unanimous ruling issued today by Utah's state Supreme Court. The questions addressed in the ruling could eventually be taken up by the US Supreme Court, whether through review of this case or a similar one.\nThe case involves Alfonso Valdez, who was arrested for kidnapping and assaulting his ex-girlfriend. Police officers obtained a search warrant for the contents of Valdez's phone but couldn't crack his passcode.\nValdez refused to provide his passcode to a police detective. At his trial, the state \"elicited testimony from the detective about Valdez's refusal to provide his passcode when asked,\" today's ruling said. \"And during closing arguments, the State argued in rebuttal that Valdez's refusal and the resulting lack of evidence from his cell phone undermined the veracity of one of his defenses. The jury convicted Valdez.\"\n\nRead 18 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/12/suspects-can-refuse-to-provide-phone-passcodes-to-police-court-rules/#comments", + "content": "Phone-unlocking case law is \"total mess,\" may be ripe for Supreme Court review.", + "contentSnippet": "Phone-unlocking case law is \"total mess,\" may be ripe for Supreme Court review.", + "guid": "https://arstechnica.com/?p=1991289", + "categories": ["Policy", "Fifth Amendment", "phone passcode"], + "isoDate": "2023-12-14T23:30:43.000Z" + }, + { + "creator": "Beth Mole", + "title": "MDMA\u2014aka ecstasy\u2014submitted to FDA as part of PTSD therapy", + "link": "https://arstechnica.com/?p=1991296", + "pubDate": "Thu, 14 Dec 2023 22:57:07 +0000", + "content:encoded": "
\n
\n \"Girl\n

Enlarge / Girl with an ecstasy tablet on her tongue. (credit: Getty | UniversalImagesGroup)

\n\n\n\n\n\n\n
\n

A corporation dedicated to studying the benefits of psychedelic drugs filed an application with the Food and Drug Administration this week for approval to use MDMA\u2014aka ecstasy or molly\u2014in combination with talk therapy to treat post-traumatic stress disorder.

\n

If approved, it would be the first-of-its-kind combination treatment\u2014a psychedelic-assisted therapy. An approval would also require the Drug Enforcement Administration to reclassify MDMA, which is currently in the DEA's most restricted category, Schedule I, which is defined as drugs \"with no currently accepted medical use and a high potential for abuse.\" The category also includes LSD, heroin, and marijuana.

\n

The public benefit corporation (PBC) that filed the FDA application was created by MAPS, The Multidisciplinary Association for Psychedelic Studies, which has been supporting this type of work since 1986. The application is based on positive data from two randomized, double-blind, placebo-controlled Phase III studies, which were funded and organized by MAPS and MAPS PBC.

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Girl with an ecstasy tablet on her tongue. (credit: Getty | UniversalImagesGroup)\n \n\n\n\n\n\n\n\nA corporation dedicated to studying the benefits of psychedelic drugs filed an application with the Food and Drug Administration this week for approval to use MDMA\u2014aka ecstasy or molly\u2014in combination with talk therapy to treat post-traumatic stress disorder.\nIf approved, it would be the first-of-its-kind combination treatment\u2014a psychedelic-assisted therapy. An approval would also require the Drug Enforcement Administration to reclassify MDMA, which is currently in the DEA's most restricted category, Schedule I, which is defined as drugs \"with no currently accepted medical use and a high potential for abuse.\" The category also includes LSD, heroin, and marijuana.\nThe public benefit corporation (PBC) that filed the FDA application was created by MAPS, The Multidisciplinary Association for Psychedelic Studies, which has been supporting this type of work since 1986. The application is based on positive data from two randomized, double-blind, placebo-controlled Phase III studies, which were funded and organized by MAPS and MAPS PBC.\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/science/2023/12/mdma-aka-ecstasy-submitted-to-fda-as-part-of-ptsd-therapy/#comments", + "content": "If FDA approved, it would require the DEA to reclassify MDMA.", + "contentSnippet": "If FDA approved, it would require the DEA to reclassify MDMA.", + "guid": "https://arstechnica.com/?p=1991296", + "categories": [ + "Health", + "Science", + "fda", + "maps", + "mdma", + "psychedelics", + "PTSD", + "therapy" + ], + "isoDate": "2023-12-14T22:57:07.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Space Force chief: Timing of Chinese spaceplane launch \u201cno coincidence\u201d", + "link": "https://arstechnica.com/?p=1991189", + "pubDate": "Thu, 14 Dec 2023 22:04:13 +0000", + "content:encoded": "
\n
\n \"File\n

File photo of the US military's X-37B test vehicle after a landing in 2012. (credit: Boeing)

\n\n\n\n\n\n\n
\n

China has launched its top-secret military spaceplane for a third time, days after the US military's winged spacecraft was grounded for several weeks due to problems with its SpaceX rocket.

\n

Observers believe China's spaceplane looks much like the US military's X-37B, a reusable craft that Pentagon officials are similarly tight-lipped about. But there's a distinction in that US officials will publicly discuss, at least in broad terms, the purpose of the X-37B and release images of the spacecraft.

\n

The US military has two X-37Bs in its inventory, each with a cargo bay that could fit a large refrigerator. They resemble small space shuttles, with dimensions about one-quarter those of NASA's retired shuttle orbiters. The X-37B spaceplanes have flown in space six times, logging missions as long as two-and-a-half years, thanks to deployable solar panels that generate power for greater endurance.

Read 23 remaining paragraphs | Comments

", + "content:encodedSnippet": "File photo of the US military's X-37B test vehicle after a landing in 2012. (credit: Boeing)\n \n\n\n\n\n\n\n\nChina has launched its top-secret military spaceplane for a third time, days after the US military's winged spacecraft was grounded for several weeks due to problems with its SpaceX rocket.\nObservers believe China's spaceplane looks much like the US military's X-37B, a reusable craft that Pentagon officials are similarly tight-lipped about. But there's a distinction in that US officials will publicly discuss, at least in broad terms, the purpose of the X-37B and release images of the spacecraft.\nThe US military has two X-37Bs in its inventory, each with a cargo bay that could fit a large refrigerator. They resemble small space shuttles, with dimensions about one-quarter those of NASA's retired shuttle orbiters. The X-37B spaceplanes have flown in space six times, logging missions as long as two-and-a-half years, thanks to deployable solar panels that generate power for greater endurance.\n\nRead 23 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2023/12/space-force-chief-timing-of-chinese-spaceplane-launch-no-coincidence/#comments", + "content": "US and Chinese spaceplanes are \"two of the most watched objects\" in orbit.", + "contentSnippet": "US and Chinese spaceplanes are \"two of the most watched objects\" in orbit.", + "guid": "https://arstechnica.com/?p=1991189", + "categories": ["Space", "chinese space program", "spaceplane", "X-37b"], + "isoDate": "2023-12-14T22:04:13.000Z" + }, + { + "creator": "Dan Goodin", + "title": "UniFi devices broadcasted private video to other users\u2019 accounts", + "link": "https://arstechnica.com/?p=1991239", + "pubDate": "Thu, 14 Dec 2023 21:34:03 +0000", + "content:encoded": "
\n
\n \"an\n

Enlarge / An assortment of Ubiquiti cameras. (credit: Ubiquiti)

\n\n\n\n\n\n\n
\n

Users of UniFi, the popular line of wireless devices from manufacturer Ubiquiti, are reporting receiving private camera feeds from, and control over, devices belonging to other users, posts published to social media site Reddit over the past 24 hours show.

\n

\u201cRecently, my wife received a notification from UniFi Protect, which included an image from a security camera,\u201d one Reddit user reported. \u201cHowever, here's the twist\u2014this camera doesn't belong to us.\u201d

\n

Stoking concern and anxiety

\n

The post included two images. The first showed a notification pushed to the person\u2019s phone reporting that their UDM Pro, a network controller and network gateway used by tech-enthusiast consumers, had detected someone moving in the backyard. A still shot of video recorded by a connected surveillance camera showed a three-story house surrounded by trees. The second image showed the dashboard belonging to the Reddit user. The user\u2019s connected device was a UDM SE, and the video it captured showed a completely different house.

Read 13 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / An assortment of Ubiquiti cameras. (credit: Ubiquiti)\n \n\n\n\n\n\n\n\nUsers of UniFi, the popular line of wireless devices from manufacturer Ubiquiti, are reporting receiving private camera feeds from, and control over, devices belonging to other users, posts published to social media site Reddit over the past 24 hours show.\n\u201cRecently, my wife received a notification from UniFi Protect, which included an image from a security camera,\u201d one Reddit user reported. \u201cHowever, here's the twist\u2014this camera doesn't belong to us.\u201d\nStoking concern and anxiety\nThe post included two images. The first showed a notification pushed to the person\u2019s phone reporting that their UDM Pro, a network controller and network gateway used by tech-enthusiast consumers, had detected someone moving in the backyard. A still shot of video recorded by a connected surveillance camera showed a three-story house surrounded by trees. The second image showed the dashboard belonging to the Reddit user. The user\u2019s connected device was a UDM SE, and the video it captured showed a completely different house.\n\nRead 13 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2023/12/unifi-devices-broadcasted-private-video-to-other-users-accounts/#comments", + "content": "\"I was presented with 88 consoles from another account,\" one user reports.", + "contentSnippet": "\"I was presented with 88 consoles from another account,\" one user reports.", + "guid": "https://arstechnica.com/?p=1991239", + "categories": [ + "Biz & IT", + "Security", + "privacy", + "security", + "ubiquiti", + "unifi", + "video" + ], + "isoDate": "2023-12-14T21:34:03.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Four years after Apple, Google will finally kill third-party cookies in 2024", + "link": "https://arstechnica.com/?p=1991199", + "pubDate": "Thu, 14 Dec 2023 21:00:30 +0000", + "content:encoded": "
\n
\n \"Extreme\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Chrome has finally announced plans to kill third-party cookies. It's been almost four years since third-party cookies have been disabled in Firefox and Safari, but Google, one of the world's largest ad companies, has been slow-rolling the death of the tracking cookie. Ad companies use third-party cookies to track users across the web, and that web activity is used to show users relevant ads. Now that Google's alternative user-tracking ad system, the \"Privacy Sandbox,\" has launched in Chrome, it's finally ready to do away with the previous form of ad tracking. The new timeline to kill third-party cookies is the second half of 2024.

\n

Google's blog post calls the rollout \"Tracking Protection\" and says the first tests will begin on January 4, where 1 percent of Chrome users will get the feature. By the second half of 2024, the rollout should hit everyone on desktop Chrome and Android (Chrome on iOS is just a reskinned Safari and is not applicable). The rollout comes with some new UI bits for Chrome, with Google saying, \"If a site doesn\u2019t work without third-party cookies and Chrome notices you\u2019re having issues\u2014like if you refresh a page multiple times\u2014we\u2019ll prompt you with an option to temporarily re-enable third-party cookies for that website from the eye icon on the right side of your address bar.\" Since other browsers have been doing this for four years, it's hard to imagine many web admins not being ready for it.

\n\n

Google says the rollout is \"subject to addressing any remaining competition concerns from the UK\u2019s Competition and Markets Authority.\" Chrome's Privacy Sandbox switch represents the world's most popular browser (Google Chrome) integrating with the web's biggest advertising platform (Google Ads) and shutting down alternative tracking methods used by competing ad companies. So, some regulators are naturally interested in the whole process.

Read 1 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nChrome has finally announced plans to kill third-party cookies. It's been almost four years since third-party cookies have been disabled in Firefox and Safari, but Google, one of the world's largest ad companies, has been slow-rolling the death of the tracking cookie. Ad companies use third-party cookies to track users across the web, and that web activity is used to show users relevant ads. Now that Google's alternative user-tracking ad system, the \"Privacy Sandbox,\" has launched in Chrome, it's finally ready to do away with the previous form of ad tracking. The new timeline to kill third-party cookies is the second half of 2024.\nGoogle's blog post calls the rollout \"Tracking Protection\" and says the first tests will begin on January 4, where 1 percent of Chrome users will get the feature. By the second half of 2024, the rollout should hit everyone on desktop Chrome and Android (Chrome on iOS is just a reskinned Safari and is not applicable). The rollout comes with some new UI bits for Chrome, with Google saying, \"If a site doesn\u2019t work without third-party cookies and Chrome notices you\u2019re having issues\u2014like if you refresh a page multiple times\u2014we\u2019ll prompt you with an option to temporarily re-enable third-party cookies for that website from the eye icon on the right side of your address bar.\" Since other browsers have been doing this for four years, it's hard to imagine many web admins not being ready for it.\n\nChrome's new third-party cookies controls. (credit: Google)\n\nGoogle says the rollout is \"subject to addressing any remaining competition concerns from the UK\u2019s Competition and Markets Authority.\" Chrome's Privacy Sandbox switch represents the world's most popular browser (Google Chrome) integrating with the web's biggest advertising platform (Google Ads) and shutting down alternative tracking methods used by competing ad companies. So, some regulators are naturally interested in the whole process.\n\nRead 1 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2023/12/chrome-will-finally-kill-third-party-tracking-cookies-in-2024/#comments", + "content": "Google delayed long enough to secure its ad business with new tracking methods.", + "contentSnippet": "Google delayed long enough to secure its ad business with new tracking methods.", + "guid": "https://arstechnica.com/?p=1991199", + "categories": [ + "Google", + "Tech", + "browser cookies", + "google ad business", + "google ads", + "google advertising", + "Google Chrome", + "privacy sandbox", + "third party cookies" + ], + "isoDate": "2023-12-14T21:00:30.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Twitch allowing more nudity after disproportionately banning female streamers", + "link": "https://arstechnica.com/?p=1991225", + "pubDate": "Thu, 14 Dec 2023 20:44:59 +0000", + "content:encoded": "
\n
\n \"Twitch\n

Enlarge (credit: SOPA Images / Contributor | LightRocket)

\n\n\n\n\n\n\n
\n

Twitch users have finally pushed the interactive livestreaming service to allow more nudity after years of banning mostly female-presenting streamers who were penalized for violating sexual content policies that Twitch now admits were too confusing.

\n

In one prominent example, just two days before the policy change, Twitch banned OnlyFans model Morgpie for posting \"topless\" streams. Although Morgpie's videos were shot to imply nudity, they \"never actually showed content that explicitly violated Twitch\u2019s sexual content policies,\" TechCrunch reported. To critics, Twitch's rationale for banning Morgpie remains unclear.

\n

In a blog, Twitch Chief Customer Trust Officer Angela Hession wrote that Twitch \"received consistent feedback from streamers that our current policies around sexual content are confusing and that it can be difficult to know how their content will be interpreted based on these policies.\"

Read 12 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: SOPA Images / Contributor | LightRocket)\n \n\n\n\n\n\n\n\nTwitch users have finally pushed the interactive livestreaming service to allow more nudity after years of banning mostly female-presenting streamers who were penalized for violating sexual content policies that Twitch now admits were too confusing.\nIn one prominent example, just two days before the policy change, Twitch banned OnlyFans model Morgpie for posting \"topless\" streams. Although Morgpie's videos were shot to imply nudity, they \"never actually showed content that explicitly violated Twitch\u2019s sexual content policies,\" TechCrunch reported. To critics, Twitch's rationale for banning Morgpie remains unclear.\nIn a blog, Twitch Chief Customer Trust Officer Angela Hession wrote that Twitch \"received consistent feedback from streamers that our current policies around sexual content are confusing and that it can be difficult to know how their content will be interpreted based on these policies.\"\n\nRead 12 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2023/12/twitch-finally-updates-overly-punitive-confusing-sexual-content-policy/#comments", + "content": "Twitch confirmed its policy banning nudity was sexist.", + "contentSnippet": "Twitch confirmed its policy banning nudity was sexist.", + "guid": "https://arstechnica.com/?p=1991225", + "categories": [ + "Policy", + "adult content", + "adult entertainment", + "live streaming", + "mature content", + "twitch" + ], + "isoDate": "2023-12-14T20:44:59.000Z" + }, + { + "creator": "Eric Berger", + "title": "Jeff Bezos says what we\u2019re all thinking: \u201cBlue Origin needs to be much faster\u201d", + "link": "https://arstechnica.com/?p=1991193", + "pubDate": "Thu, 14 Dec 2023 20:37:25 +0000", + "content:encoded": "
\n
\n \"Jeff\n

Enlarge / Jeff Bezos, shortly after he rode on New Shepard to space. (credit: Joe Raedle/Getty Images)

\n\n\n\n\n\n\n
\n

Amazon founder Jeff Bezos gives very few interviews, but he recently sat down with the computer scientist and podcaster Lex Fridman for a two-hour interview about Amazon, Blue Origin, his business practices, and more.

\n

The discussion meanders somewhat, but there are some interesting tidbits about spaceflight, especially when the conversation turns to Blue Origin. This is the space company Bezos founded more than 23 years ago. He has invested an extraordinary amount of money into Blue Origin\u2014likely somewhere between $10 billion and $20 billion\u2014and it truly is a passion project.

\n

But the inescapable truth about Blue Origin is that to date, it has been a disappointment in terms of execution. At present, Blue Origin employs approximately 11,000 people, about the same total as SpaceX. However, Blue Origin has launched zero rockets this year, whereas SpaceX has launched nearly 100, as well as building and launching thousands of satellites.

Read 12 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Jeff Bezos, shortly after he rode on New Shepard to space. (credit: Joe Raedle/Getty Images)\n \n\n\n\n\n\n\n\nAmazon founder Jeff Bezos gives very few interviews, but he recently sat down with the computer scientist and podcaster Lex Fridman for a two-hour interview about Amazon, Blue Origin, his business practices, and more.\nThe discussion meanders somewhat, but there are some interesting tidbits about spaceflight, especially when the conversation turns to Blue Origin. This is the space company Bezos founded more than 23 years ago. He has invested an extraordinary amount of money into Blue Origin\u2014likely somewhere between $10 billion and $20 billion\u2014and it truly is a passion project.\nBut the inescapable truth about Blue Origin is that to date, it has been a disappointment in terms of execution. At present, Blue Origin employs approximately 11,000 people, about the same total as SpaceX. However, Blue Origin has launched zero rockets this year, whereas SpaceX has launched nearly 100, as well as building and launching thousands of satellites.\n\nRead 12 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2023/12/jeff-bezos-says-what-were-all-thinking-blue-origin-needs-to-be-much-faster/#comments", + "content": "\"We're going to become the world's most decisive company across any industry.\"", + "contentSnippet": "\"We're going to become the world's most decisive company across any industry.\"", + "guid": "https://arstechnica.com/?p=1991193", + "categories": ["Science", "Space", "blue origin", "Jeff Bezos", "space"], + "isoDate": "2023-12-14T20:37:25.000Z" + }, + { + "creator": "Kevin Purdy", + "title": "Apple partly halts Beeper\u2019s iMessage app again, suggesting a long fight ahead", + "link": "https://arstechnica.com/?p=1991118", + "pubDate": "Thu, 14 Dec 2023 19:59:07 +0000", + "content:encoded": "
\n
\n \"Beeper\n

Enlarge / The dream of everybody having blue bubbles, and epic photos of perfectly digestible meals, as proffered by Beeper. (credit: Beeper)

\n\n\n\n\n\n\n
\n

A friend of mine had been using Beeper's iMessage-for-Android app, Beeper Mini to keep up on group chats where she was the only Android user. It worked great until last Friday, when it didn't work at all.

\n

What stung her wasn't the return to being the Android interloper in the chats again. It wasn't the resulting lower-quality images, loss of encryption, and strange \"Emphasized your message\" reaction texts. It was losing messages during the outage and never being entirely certain they had been sent or received. There was a gathering on Saturday, and she had to double-check with a couple people about the details after showing up inadvertently early at the wrong spot.

\n

That kind of grievance is why, after Apple on Wednesday appeared to have blocked what Beeper described as \"~5% of Beeper Mini users\" from accessing iMessages, both co-founder Eric Migicovksy and the app told users they understood if people wanted out. The app had already suspended its plans to charge customers $1.99 per month, following the first major outage. But this was something more about \"how ridiculously annoying this uncertainty is for our users,\" Migicovsky posted.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The dream of everybody having blue bubbles, and epic photos of perfectly digestible meals, as proffered by Beeper. (credit: Beeper)\n \n\n\n\n\n\n\n\nA friend of mine had been using Beeper's iMessage-for-Android app, Beeper Mini to keep up on group chats where she was the only Android user. It worked great until last Friday, when it didn't work at all.\nWhat stung her wasn't the return to being the Android interloper in the chats again. It wasn't the resulting lower-quality images, loss of encryption, and strange \"Emphasized your message\" reaction texts. It was losing messages during the outage and never being entirely certain they had been sent or received. There was a gathering on Saturday, and she had to double-check with a couple people about the details after showing up inadvertently early at the wrong spot.\nThat kind of grievance is why, after Apple on Wednesday appeared to have blocked what Beeper described as \"~5% of Beeper Mini users\" from accessing iMessages, both co-founder Eric Migicovksy and the app told users they understood if people wanted out. The app had already suspended its plans to charge customers $1.99 per month, following the first major outage. But this was something more about \"how ridiculously annoying this uncertainty is for our users,\" Migicovsky posted.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Kevin Purdy", + "comments": "https://arstechnica.com/gadgets/2023/12/apple-partly-halts-beepers-imessage-app-again-suggesting-a-long-fight-ahead/#comments", + "content": "Opinion: Beeper isn't just fighting Apple, it's pushing against human instincts.", + "contentSnippet": "Opinion: Beeper isn't just fighting Apple, it's pushing against human instincts.", + "guid": "https://arstechnica.com/?p=1991118", + "categories": [ + "Apple", + "Tech", + "android", + "beeper", + "beeper mini", + "encrypted chat", + "encryption", + "iMessage", + "imessages", + "iOS", + "iphone" + ], + "isoDate": "2023-12-14T19:59:07.000Z" + }, + { + "creator": "Ars Contributors", + "title": "What happens in a crow\u2019s brain when it uses tools?\u00a0", + "link": "https://arstechnica.com/?p=1990999", + "pubDate": "Thu, 14 Dec 2023 19:41:25 +0000", + "content:encoded": "
\n
\n \"Three\n

Enlarge / Sure, they can use tools, but do they know where the nearest subway stop is? (credit: Jonas Adner)

\n\n\n\n\n\n\n
\n

\"A thirsty crow wanted water from a pitcher, so he filled it with pebbles to raise the water level to drink,\" summarizes a famous Aesop Fable. While this tale is thousands of years old, animal behaviorists still use this challenge to study corvids (which include crows, ravens, jays, and magpies) and their use of tools. In a recent Nature Communications study, researchers from a collaboration of universities across Washington, Florida, and Utah used radioactive tracers within the brains of several American crows to see which parts of their brains were active when they used stones to obtain food from the bottom of a water-filled tube.

\n

Their results indicate that the motor learning and tactile control centers were activated in the brains of the more proficient crows, while the sensory and higher-order processing centers lit up in the brains of less proficient crows. These results suggest that competence with tools is linked to certain memories and muscle control, which the researchers claimed is similar to a ski jumper visualizing the course before jumping.

\n

The researchers also found that out of their avian test subjects, female crows were especially proficient at tool usage, succeeding in the challenge quickly. \u201c[A] follow-up question is whether female crows actually have more need for creative thinking relative to male crows,\u201d elaborates Loma Pendergraft, the study\u2019s first author and a graduate student at the University of Washington, who wants to understand if the caregiving and less dominant role of female crows gives them a higher capacity for tool use.

Read 13 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Sure, they can use tools, but do they know where the nearest subway stop is? (credit: Jonas Adner)\n \n\n\n\n\n\n\n\n\"A thirsty crow wanted water from a pitcher, so he filled it with pebbles to raise the water level to drink,\" summarizes a famous Aesop Fable. While this tale is thousands of years old, animal behaviorists still use this challenge to study corvids (which include crows, ravens, jays, and magpies) and their use of tools. In a recent Nature Communications study, researchers from a collaboration of universities across Washington, Florida, and Utah used radioactive tracers within the brains of several American crows to see which parts of their brains were active when they used stones to obtain food from the bottom of a water-filled tube.\nTheir results indicate that the motor learning and tactile control centers were activated in the brains of the more proficient crows, while the sensory and higher-order processing centers lit up in the brains of less proficient crows. These results suggest that competence with tools is linked to certain memories and muscle control, which the researchers claimed is similar to a ski jumper visualizing the course before jumping.\nThe researchers also found that out of their avian test subjects, female crows were especially proficient at tool usage, succeeding in the challenge quickly. \u201c[A] follow-up question is whether female crows actually have more need for creative thinking relative to male crows,\u201d elaborates Loma Pendergraft, the study\u2019s first author and a graduate student at the University of Washington, who wants to understand if the caregiving and less dominant role of female crows gives them a higher capacity for tool use.\n\nRead 13 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/science/2023/12/what-happens-in-a-crows-brain-when-it-uses-tools/#comments", + "content": "Researchers trace the areas of the brain that are active when birds are using tools.", + "contentSnippet": "Researchers trace the areas of the brain that are active when birds are using tools.", + "guid": "https://arstechnica.com/?p=1990999", + "categories": [ + "Science", + "Behavioral science", + "Biology", + "birds", + "Crows", + "neurobiology", + "tool use" + ], + "isoDate": "2023-12-14T19:41:25.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "\u201cRenew Home\u201d company brings power grid data to your smart home", + "link": "https://arstechnica.com/?p=1991139", + "pubDate": "Thu, 14 Dec 2023 18:15:05 +0000", + "content:encoded": "
\n
\n \"\u201cRenew\n

Enlarge (credit: Alphabet)

\n\n\n\n\n\n\n
\n

Google's Nest Renue energy tracking feature is being spun off into a new company called \"Renew Home.\" The core concept is partnering with power companies to obtain data about the current condition of the power grid and using that data to change consumer habits. Usually, when a company gets spun out of Google it becomes an Alphabet company, but that's not the case here. Google is transferring assets to a new independent company, of which Sidewalk Infrastructure Partners (SIP) is an investor, and Alphabet is an investor in SIP.

\n\n

The first existing service getting pulled into Renew Home is Nest Renew. This service for Nest Thermostats uses power company data to tell consumers how their electricity is being generated and what it costs. That data lets your thermostat do things like automatically shift heating and cooling to times of day when energy is cheaper or cleaner, and shows various reports about the cleanness of the energy you've been using. (Nest's feature that lets utility companies remotely take control of your thermostat, Rush Hour Rewards, does not seem to be part of Renew Home.)

\n

Another service being pulled into Renew Home is the SIP-owned OhmConnect, which is the same basic idea as Nest's grid data-power thermostat adjustments but for more than just your thermostat. OhmConnect is compatible with a very small list of smart devices, like Nest-rival Ecobee and Honeywell thermostats, TP-Link's \"Kasa\" smart home system, and Tesla vehicles. The backbone of the service appears to be the in-house \"OhmPlug\" smart outlet, which can monitor the energy usage of anything that plugs into the wall. By seeing that you've turned these smart devices during peak usage times, OhmConnect offers people rewards like gift cards or cash for not using power when the grid is at capacity.

Read 2 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Alphabet)\n \n\n\n\n\n\n\n\nGoogle's Nest Renue energy tracking feature is being spun off into a new company called \"Renew Home.\" The core concept is partnering with power companies to obtain data about the current condition of the power grid and using that data to change consumer habits. Usually, when a company gets spun out of Google it becomes an Alphabet company, but that's not the case here. Google is transferring assets to a new independent company, of which Sidewalk Infrastructure Partners (SIP) is an investor, and Alphabet is an investor in SIP.\nThe first existing service getting pulled into Renew Home is Nest Renew. This service for Nest Thermostats uses power company data to tell consumers how their electricity is being generated and what it costs. That data lets your thermostat do things like automatically shift heating and cooling to times of day when energy is cheaper or cleaner, and shows various reports about the cleanness of the energy you've been using. (Nest's feature that lets utility companies remotely take control of your thermostat, Rush Hour Rewards, does not seem to be part of Renew Home.)\nAnother service being pulled into Renew Home is the SIP-owned OhmConnect, which is the same basic idea as Nest's grid data-power thermostat adjustments but for more than just your thermostat. OhmConnect is compatible with a very small list of smart devices, like Nest-rival Ecobee and Honeywell thermostats, TP-Link's \"Kasa\" smart home system, and Tesla vehicles. The backbone of the service appears to be the in-house \"OhmPlug\" smart outlet, which can monitor the energy usage of anything that plugs into the wall. By seeing that you've turned these smart devices during peak usage times, OhmConnect offers people rewards like gift cards or cash for not using power when the grid is at capacity.\n\nRead 2 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2023/12/alphabets-renew-home-company-brings-power-grid-data-to-your-smart-home/#comments", + "content": "Renew Home tracks power usage, rewards users for cutting use during peak times. ", + "contentSnippet": "Renew Home tracks power usage, rewards users for cutting use during peak times.", + "guid": "https://arstechnica.com/?p=1991139", + "categories": [ + "Google", + "Tech", + "alphabet", + "google", + "google nest", + "power grid" + ], + "isoDate": "2023-12-14T18:15:05.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Cable lobby and Republicans fight proposed ban on early termination fees", + "link": "https://arstechnica.com/?p=1991147", + "pubDate": "Thu, 14 Dec 2023 17:57:10 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | RoyalFive)

\n\n\n\n\n\n\n
\n

The Federal Communications Commission has taken a step toward prohibiting early termination fees charged by cable and satellite TV providers. If given final approval, the FCC action would also require cable and satellite providers to provide a prorated credit or rebate to customers who cancel before a billing period ends.

\n

The new rules are being floated in a Notice of Proposed Rulemaking (NPRM) that the FCC voted to approve yesterday in a 3\u20132 vote, with both Republicans dissenting. The NPRM seeks public comment on the proposed rules and could lead to a final vote in a few months or so.

\n

\"Today's action proposes to adopt customer service protections that prohibit cable operators and DBS (Direct Broadcast Satellite) providers from imposing a fee for the early termination of a cable or DBS video service contract,\" the FCC said. \"Additionally, the NPRM recommends the adoption of customer service protections to require cable and DBS providers to grant subscribers a prorated credit or rebate for the remaining whole days in a monthly or periodic billing cycle after the subscriber cancels service.\"

Read 17 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | RoyalFive)\n \n\n\n\n\n\n\n\nThe Federal Communications Commission has taken a step toward prohibiting early termination fees charged by cable and satellite TV providers. If given final approval, the FCC action would also require cable and satellite providers to provide a prorated credit or rebate to customers who cancel before a billing period ends.\nThe new rules are being floated in a Notice of Proposed Rulemaking (NPRM) that the FCC voted to approve yesterday in a 3\u20132 vote, with both Republicans dissenting. The NPRM seeks public comment on the proposed rules and could lead to a final vote in a few months or so.\n\"Today's action proposes to adopt customer service protections that prohibit cable operators and DBS (Direct Broadcast Satellite) providers from imposing a fee for the early termination of a cable or DBS video service contract,\" the FCC said. \"Additionally, the NPRM recommends the adoption of customer service protections to require cable and DBS providers to grant subscribers a prorated credit or rebate for the remaining whole days in a monthly or periodic billing cycle after the subscriber cancels service.\"\n\nRead 17 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/12/fcc-floats-ban-on-cable-tv-junk-fees-that-make-it-hard-to-ditch-contracts/#comments", + "content": "Customers should be allowed to cancel cable TV without penalty, Democrats say.", + "contentSnippet": "Customers should be allowed to cancel cable TV without penalty, Democrats say.", + "guid": "https://arstechnica.com/?p=1991147", + "categories": ["Policy", "cable fees", "FCC"], + "isoDate": "2023-12-14T17:57:10.000Z" + }, + { + "creator": "Kyle Orland", + "title": "These AI-generated news anchors are freaking me out", + "link": "https://arstechnica.com/?p=1991279", + "pubDate": "Fri, 15 Dec 2023 15:57:14 +0000", + "content:encoded": "
\n
\n \"Max\n

Enlarge / Max Headroom as prophecy. (credit: Aurich Lawson | Channel 1)

\n\n\n\n\n\n\n
\n

Here at Ars, we've long covered the interesting potential and significant peril (and occasional silliness) of AI-generated video featuring increasingly realistic human avatars. Heck, we even went to the trouble of making our own \"deepfake\" Mark Zuckerberg back in 2019, when the underlying technology wasn't nearly as robust as it is today.

\n

But even with all that background, startup Channel 1's vision of a near-future where AI-generated avatars read you the news was a bit of a shock to the system. The company's recent proof-of-concept \"showcase\" newscast reveals just how far AI-generated videos of humans have come in a short time and how those realistic avatars could shake up a lot more than just the job market for talking heads.

\n

\u201c...the newscasters have been changed to protect the innocent\u201d

\n
\n

See the highest quality AI footage in the world.

\n

\"\ud83e\udd2f\" - Our generated anchors deliver stories that are informative, heartfelt and entertaining.

\n

Watch the showcase episode of our upcoming news network now. pic.twitter.com/61TaG6Kix3

\n

\u2014 Channel 1 (@channel1_ai) December 12, 2023

\n

To be clear, Channel 1 isn't trying to fool people with \"deepfakes\" of existing news anchors or anything like that. In the first few seconds of its sample newscast, it identifies its talking heads as a \"team of AI-generated reporters.\" A few seconds later, one of those talking heads explains further: \"You can hear us and see our lips moving, but no one was recorded saying what we're all saying. I'm powered by sophisticated systems behind the scenes.\"

Read 20 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Max Headroom as prophecy. (credit: Aurich Lawson | Channel 1)\n \n\n\n\n\n\n\n\nHere at Ars, we've long covered the interesting potential and significant peril (and occasional silliness) of AI-generated video featuring increasingly realistic human avatars. Heck, we even went to the trouble of making our own \"deepfake\" Mark Zuckerberg back in 2019, when the underlying technology wasn't nearly as robust as it is today.\nBut even with all that background, startup Channel 1's vision of a near-future where AI-generated avatars read you the news was a bit of a shock to the system. The company's recent proof-of-concept \"showcase\" newscast reveals just how far AI-generated videos of humans have come in a short time and how those realistic avatars could shake up a lot more than just the job market for talking heads.\n\u201c...the newscasters have been changed to protect the innocent\u201d\nSee the highest quality AI footage in the world.\n - Our generated anchors deliver stories that are informative, heartfelt and entertaining.\nWatch the showcase episode of our upcoming news network now. pic.twitter.com/61TaG6Kix3\n\u2014 Channel 1 (@channel1_ai) December 12, 2023\n\nTo be clear, Channel 1 isn't trying to fool people with \"deepfakes\" of existing news anchors or anything like that. In the first few seconds of its sample newscast, it identifies its talking heads as a \"team of AI-generated reporters.\" A few seconds later, one of those talking heads explains further: \"You can hear us and see our lips moving, but no one was recorded saying what we're all saying. I'm powered by sophisticated systems behind the scenes.\"\n\nRead 20 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/ai/2023/12/these-ai-generated-news-anchors-are-freaking-me-out/#comments", + "content": "Channel 1's eerily real newscasters suggest a tumultuous future for online video.", + "contentSnippet": "Channel 1's eerily real newscasters suggest a tumultuous future for online video.", + "guid": "https://arstechnica.com/?p=1991279", + "categories": [ + "AI", + "Tech", + "anchors", + "Channel 1", + "nescasters", + "news", + "TV news" + ], + "isoDate": "2023-12-15T15:57:14.000Z" + }, + { + "creator": "Financial Times", + "title": "Elon Musk told bankers they wouldn\u2019t lose any money on Twitter purchase", + "link": "https://arstechnica.com/?p=1991371", + "pubDate": "Fri, 15 Dec 2023 15:06:22 +0000", + "content:encoded": "
\n
\n \"Elon\n

Enlarge (credit: Anadolu Agency via Getty Images)

\n\n\n\n\n\n\n
\n

Elon Musk privately told some of the bankers who lent him $13 billion to fund his leveraged buyout of Twitter that they would not lose any money on the deal, according to five people familiar with the matter.

\n

The verbal guarantees were made by Musk to banks as a way to reassure the lenders as the value of the social media site, now rebranded as X, fell sharply after he completed the acquisition last year.

\n

Despite the assurances, the seven banks that lent money to the billionaire for his buyout\u2014Morgan Stanley, Bank of America, Barclays, MUFG, BNP Paribas, Mizuho and Soci\u00e9t\u00e9 G\u00e9n\u00e9rale\u2014are facing serious losses on the debt if and when they eventually sell it.

Read 16 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Anadolu Agency via Getty Images)\n \n\n\n\n\n\n\n\nElon Musk privately told some of the bankers who lent him $13 billion to fund his leveraged buyout of Twitter that they would not lose any money on the deal, according to five people familiar with the matter.\nThe verbal guarantees were made by Musk to banks as a way to reassure the lenders as the value of the social media site, now rebranded as X, fell sharply after he completed the acquisition last year.\nDespite the assurances, the seven banks that lent money to the billionaire for his buyout\u2014Morgan Stanley, Bank of America, Barclays, MUFG, BNP Paribas, Mizuho and Soci\u00e9t\u00e9 G\u00e9n\u00e9rale\u2014are facing serious losses on the debt if and when they eventually sell it.\n\nRead 16 remaining paragraphs | Comments", + "dc:creator": "Financial Times", + "comments": "https://arstechnica.com/tech-policy/2023/12/elon-musk-told-bankers-they-wouldnt-lose-any-money-on-twitter-purchase/#comments", + "content": "Lenders unlikely to get even 60 cents on the dollar for the bonds and loans. ", + "contentSnippet": "Lenders unlikely to get even 60 cents on the dollar for the bonds and loans.", + "guid": "https://arstechnica.com/?p=1991371", + "categories": ["Policy", "Elon Musk", "syndication", "Twitter", "X"], + "isoDate": "2023-12-15T15:06:22.000Z" + }, + { + "creator": "Andrew Cunningham", + "title": "Microsoft is adding a new key to PC keyboards for the first time since 1994", + "link": "https://arstechnica.com/?p=1993416", + "pubDate": "Thu, 04 Jan 2024 08:01:20 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A rendering of Microsoft's Copilot key, as seen on a Surface-esque laptop keyboard. (credit: Microsoft)

\n\n\n\n\n\n\n
\n

Microsoft pushed throughout 2023 to add generative AI capabilities to its software, even extending its new Copilot AI assistant to Windows 10 late last year. Now, those efforts to transform PCs at a software level is extending to the hardware: Microsoft is adding a dedicated Copilot key to PC keyboards, adjusting the standard Windows keyboard layout for the first time since the Windows key first appeared on its Natural Keyboard in 1994.

\n

The Copilot key will, predictably, open up the Copilot generative AI assistant within Windows 10 and Windows 11. On an up-to-date Windows PC with Copilot enabled, you can currently do the same thing by pressing Windows + C. For PCs without Copilot enabled, including those that aren't signed into Microsoft accounts, the Copilot key will open Windows Search instead (though this is sort of redundant, since pressing the Windows key and then typing directly into the Start menu also activates the Search function).

\n

A quick Microsoft demo video shows the Copilot key in between the cluster of arrow keys and the right Alt button, a place where many keyboards usually put a menu button, a right Ctrl key, another Windows key, or something similar. The exact positioning, and the key being replaced, may vary depending on the size and layout of the keyboard.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A rendering of Microsoft's Copilot key, as seen on a Surface-esque laptop keyboard. (credit: Microsoft)\n \n\n\n\n\n\n\n\nMicrosoft pushed throughout 2023 to add generative AI capabilities to its software, even extending its new Copilot AI assistant to Windows 10 late last year. Now, those efforts to transform PCs at a software level is extending to the hardware: Microsoft is adding a dedicated Copilot key to PC keyboards, adjusting the standard Windows keyboard layout for the first time since the Windows key first appeared on its Natural Keyboard in 1994.\nThe Copilot key will, predictably, open up the Copilot generative AI assistant within Windows 10 and Windows 11. On an up-to-date Windows PC with Copilot enabled, you can currently do the same thing by pressing Windows + C. For PCs without Copilot enabled, including those that aren't signed into Microsoft accounts, the Copilot key will open Windows Search instead (though this is sort of redundant, since pressing the Windows key and then typing directly into the Start menu also activates the Search function).\nA quick Microsoft demo video shows the Copilot key in between the cluster of arrow keys and the right Alt button, a place where many keyboards usually put a menu button, a right Ctrl key, another Windows key, or something similar. The exact positioning, and the key being replaced, may vary depending on the size and layout of the keyboard.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Andrew Cunningham", + "comments": "https://arstechnica.com/gadgets/2024/01/ai-comes-for-your-pcs-keyboard-as-microsoft-adds-dedicated-copilot-key/#comments", + "content": "Copilot key will eventually be required in new PC keyboards, though not yet.", + "contentSnippet": "Copilot key will eventually be required in new PC keyboards, though not yet.", + "guid": "https://arstechnica.com/?p=1993416", + "categories": [ + "Tech", + "copilot", + "microsoft", + "openai", + "windows 10", + "windows 11" + ], + "isoDate": "2024-01-04T08:01:20.000Z" + }, + { + "creator": "Dan Goodin", + "title": "Mandiant, the security firm Google bought for $5.4 billion, gets its X account hacked", + "link": "https://arstechnica.com/?p=1993618", + "pubDate": "Thu, 04 Jan 2024 01:32:14 +0000", + "content:encoded": "
\n
\n \"Mandiant,\n

Enlarge

\n\n\n\n\n\n\n
\n

Google-owned security firm Mandiant spent several hours trying to regain control of its account on X (formerly known as Twitter) on Wednesday after an unknown scammer hijacked it and used it to spread a link that attempted to steal cryptocurrency from people who clicked on it.

\n

\u201cWe are aware of the incident impacting the Mandiant X account and are working to resolve the issue,\u201d company officials wrote in a statement. \u201cWe've since regained control over the account and are currently working on restoring it.\u201d The statement didn\u2019t answer questions asking if the company had determined how the account was compromised.

\n

The hacked Mandiant account was initially used to masquerade as one belonging to Phantom, a company that offers a wallet for storing cryptocurrency. Posts on X encouraged people to visit a malicious website to see if their wallet was one of 250,000 that were eligible for an award of tokens. Over several hours, X employees played tug-of-war with the unknown scammer, with scam posts being removed only to reappear, according to people who followed the events.

Read 6 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge \n \n\n\n\n\n\n\n\nGoogle-owned security firm Mandiant spent several hours trying to regain control of its account on X (formerly known as Twitter) on Wednesday after an unknown scammer hijacked it and used it to spread a link that attempted to steal cryptocurrency from people who clicked on it.\n\u201cWe are aware of the incident impacting the Mandiant X account and are working to resolve the issue,\u201d company officials wrote in a statement. \u201cWe've since regained control over the account and are currently working on restoring it.\u201d The statement didn\u2019t answer questions asking if the company had determined how the account was compromised.\nThe hacked Mandiant account was initially used to masquerade as one belonging to Phantom, a company that offers a wallet for storing cryptocurrency. Posts on X encouraged people to visit a malicious website to see if their wallet was one of 250,000 that were eligible for an award of tokens. Over several hours, X employees played tug-of-war with the unknown scammer, with scam posts being removed only to reappear, according to people who followed the events.\n\nRead 6 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2024/01/hacked-x-account-for-google-owned-security-firm-mandiant-pushes-cryptocurrency-scam/#comments", + "content": "Scammer impersonates legitimate cryptocurrency wallet, then pivots to trolling Mandiant.", + "contentSnippet": "Scammer impersonates legitimate cryptocurrency wallet, then pivots to trolling Mandiant.", + "guid": "https://arstechnica.com/?p=1993618", + "categories": [ + "Biz & IT", + "Security", + "account hijack", + "google", + "Mandiant", + "Twitter" + ], + "isoDate": "2024-01-04T01:32:14.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "Forget the proverbial wisdom: Opposites don\u2019t really attract, study finds", + "link": "https://arstechnica.com/?p=1992842", + "pubDate": "Thu, 04 Jan 2024 00:08:31 +0000", + "content:encoded": "
\n
\n \"What\n

What draws us to choose romantic partners? A sweeping new meta-analysis suggests we gravitate toward certain shared traits. (credit: Muramasa)

\n\n\n\n\n

There's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: a broad meta-analysis spanning over a century of studies finds that opposites don't really attract when it comes to choosing a mate.

\n \n\n
\n

We've all heard the common folk wisdom that when it comes to forming romantic partnerships, opposites attract. Researchers at the University of Colorado, Boulder, contend that this proverbial wisdom is largely false, based on the findings of their sweeping September study, published in the journal Nature Human Behavior. The saying, \"birds of a feather flock together,\" is a more apt summation of how we choose our partners.

\n

\u201cThese findings suggest that even in situations where we feel like we have a choice about our relationships, there may be mechanisms happening behind the scenes of which we aren't fully aware,\u201d said co-author Tanya Horwitz, a psychology and neuroscience graduate student at UCB. \u201cWe\u2019re hoping people can use this data to do their own analyses and learn more about how and why people end up in the relationships they do.\u201d

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "What draws us to choose romantic partners? A sweeping new meta-analysis suggests we gravitate toward certain shared traits. (credit: Muramasa)\n \n\n\n\n\n \nThere's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: a broad meta-analysis spanning over a century of studies finds that opposites don't really attract when it comes to choosing a mate.\n\nWe've all heard the common folk wisdom that when it comes to forming romantic partnerships, opposites attract. Researchers at the University of Colorado, Boulder, contend that this proverbial wisdom is largely false, based on the findings of their sweeping September study, published in the journal Nature Human Behavior. The saying, \"birds of a feather flock together,\" is a more apt summation of how we choose our partners.\n\u201cThese findings suggest that even in situations where we feel like we have a choice about our relationships, there may be mechanisms happening behind the scenes of which we aren't fully aware,\u201d said co-author Tanya Horwitz, a psychology and neuroscience graduate student at UCB. \u201cWe\u2019re hoping people can use this data to do their own analyses and learn more about how and why people end up in the relationships they do.\u201d\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/science/2024/01/forget-the-proverbial-wisdom-opposites-dont-really-attract-study-finds/#comments", + "content": "Educational attainment, substance use were most common shared traits among couples.", + "contentSnippet": "Educational attainment, substance use were most common shared traits among couples.", + "guid": "https://arstechnica.com/?p=1992842", + "categories": [ + "Science", + "12 days of Christmas", + "behavioral genetics", + "Human behavior", + "personality traits", + "psychology" + ], + "isoDate": "2024-01-04T00:08:31.000Z" + }, + { + "creator": "Beth Mole", + "title": "ChatGPT bombs test on diagnosing kids\u2019 medical cases with 83% error rate", + "link": "https://arstechnica.com/?p=1993601", + "pubDate": "Wed, 03 Jan 2024 23:46:42 +0000", + "content:encoded": "
\n
\n \"Dr.\n

Enlarge / Dr. Greg House has a better rate of accurately diagnosing patients than ChatGPT. (credit: Getty | Alan Zenuk/NBCU Photo Bank/NBCUniversa)

\n\n\n\n\n\n\n
\n

ChatGPT is still no House, MD.

\n

While the chatty AI bot has previously underwhelmed with its attempts to diagnose challenging medical cases\u2014with an accuracy rate of 39 percent in an analysis last year\u2014a study out this week in JAMA Pediatrics suggests the fourth version of the large language model is especially bad with kids. It had an accuracy rate of just 17 percent when diagnosing pediatric medical cases.

\n

The low success rate suggests human pediatricians won't be out of jobs any time soon, in case that was a concern. As the authors put it: \"[T]his study underscores the invaluable role that clinical experience holds.\" But it also identifies the critical weaknesses that led to ChatGPT's high error rate and ways to transform it into a useful tool in clinical care. With so much interest and experimentation with AI chatbots, many pediatricians and other doctors see their integration into clinical care as inevitable.

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Dr. Greg House has a better rate of accurately diagnosing patients than ChatGPT. (credit: Getty | Alan Zenuk/NBCU Photo Bank/NBCUniversa)\n \n\n\n\n\n\n\n\nChatGPT is still no House, MD.\nWhile the chatty AI bot has previously underwhelmed with its attempts to diagnose challenging medical cases\u2014with an accuracy rate of 39 percent in an analysis last year\u2014a study out this week in JAMA Pediatrics suggests the fourth version of the large language model is especially bad with kids. It had an accuracy rate of just 17 percent when diagnosing pediatric medical cases.\nThe low success rate suggests human pediatricians won't be out of jobs any time soon, in case that was a concern. As the authors put it: \"[T]his study underscores the invaluable role that clinical experience holds.\" But it also identifies the critical weaknesses that led to ChatGPT's high error rate and ways to transform it into a useful tool in clinical care. With so much interest and experimentation with AI chatbots, many pediatricians and other doctors see their integration into clinical care as inevitable.\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/science/2024/01/dont-use-chatgpt-to-diagnose-your-kids-illness-study-finds-83-error-rate/#comments", + "content": "It was bad at recognizing relationships and needs selective training, researchers say.", + "contentSnippet": "It was bad at recognizing relationships and needs selective training, researchers say.", + "guid": "https://arstechnica.com/?p=1993601", + "categories": [ + "AI", + "Health", + "Science", + "ChatGPT", + "pediatric diagnosistics" + ], + "isoDate": "2024-01-03T23:46:42.000Z" + }, + { + "creator": "Kevin Purdy", + "title": "Cobalt Core is a tight, funny roguelike deck-builder deserving of many runs", + "link": "https://arstechnica.com/?p=1993479", + "pubDate": "Wed, 03 Jan 2024 22:45:28 +0000", + "content:encoded": "
\n
\n \"Scene\n

Enlarge / These symbols might not mean anything to you now. But give it a few runs, and you might lose a few minutes strategizing this ship's ideal next turn, based on this image alone. (credit: Brace Yourself Games)

\n\n\n\n\n\n\n
\n\n

Games come and go through my Steam and Nintendo Switch libraries: a twitchy, grim action epic, then a metaphysical puzzle-platformer, and maybe a boomer shooter or turn-based tactical along the way. I try hard not to get stuck in one style or mindset\u2014both for my enjoyment and my writing.

\n

But there is always one type of game that is installed and ready to go for the next trip or idle couch moment: a roguelite deck-builder. Cobalt Core is the latest game in that slot, and it's on Steam for Windows (and definitely Steam Deck) and Switch. It's the most fun I've had in this particular obsession since Monster Train.\u00a0Cobalt Core stretches into other genres, like perfect-knowledge turn-based tactics and space battle, but it's cards and randomness down to its electric-blue center.

\n

Launch trailer for Cobalt Core.

\n

A few years ago, I didn't know what a \"roguelike deck-builder\" was or what either of those compound phrases meant. Then, one day, there was a sale on Slay the Spire. That 2019 game refined the fusion of two game mechanics: constant failure against randomized encounters (a la Rogue, but with a \"lite\" gradual progression) and the refining of a deck of combat-minded cards (as in Magic: The Gathering, Dominion,\u00a0and\u00a0Netrunner). You attack and defend against increasingly tough enemies with your cards, you gain and upgrade and ditch cards as you go, you lose, and then you get slightly better tools on your next do-over.

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / These symbols might not mean anything to you now. But give it a few runs, and you might lose a few minutes strategizing this ship's ideal next turn, based on this image alone. (credit: Brace Yourself Games)\n \n\n\n\n\n\n\n\nGames come and go through my Steam and Nintendo Switch libraries: a twitchy, grim action epic, then a metaphysical puzzle-platformer, and maybe a boomer shooter or turn-based tactical along the way. I try hard not to get stuck in one style or mindset\u2014both for my enjoyment and my writing.\nBut there is always one type of game that is installed and ready to go for the next trip or idle couch moment: a roguelite deck-builder. Cobalt Core is the latest game in that slot, and it's on Steam for Windows (and definitely Steam Deck) and Switch. It's the most fun I've had in this particular obsession since Monster Train.\u00a0Cobalt Core stretches into other genres, like perfect-knowledge turn-based tactics and space battle, but it's cards and randomness down to its electric-blue center.\n\nLaunch trailer for Cobalt Core. \n\nA few years ago, I didn't know what a \"roguelike deck-builder\" was or what either of those compound phrases meant. Then, one day, there was a sale on Slay the Spire. That 2019 game refined the fusion of two game mechanics: constant failure against randomized encounters (a la Rogue, but with a \"lite\" gradual progression) and the refining of a deck of combat-minded cards (as in Magic: The Gathering, Dominion,\u00a0and\u00a0Netrunner). You attack and defend against increasingly tough enemies with your cards, you gain and upgrade and ditch cards as you go, you lose, and then you get slightly better tools on your next do-over.\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Kevin Purdy", + "comments": "https://arstechnica.com/gaming/2024/01/cobalt-core-is-your-next-just-one-more-roguelike-deck-building-habit/#comments", + "content": "It's got style, dialogue, and even a plot on top of procedural card battling.", + "contentSnippet": "It's got style, dialogue, and even a plot on top of procedural card battling.", + "guid": "https://arstechnica.com/?p=1993479", + "categories": [ + "Gaming", + "cobalt core", + "deck-builder", + "nintendo switch", + "PC games", + "roguelike deck-builder", + "roguelikes", + "Steam" + ], + "isoDate": "2024-01-03T22:45:28.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Samsung sets Galaxy S24 launch for Jan. 17; here\u2019s what to expect", + "link": "https://arstechnica.com/?p=1993482", + "pubDate": "Wed, 03 Jan 2024 22:17:08 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The Galaxy S24 render from OnLeaks. This sure does look familiar. (credit: OnLeaks\u00d7SmartPrix)

\n\n\n\n\n\n\n
\n

Samsung is gearing up to launch its next big flagship smartphone, the Galaxy S24. The show has officially been announced for January 17, with Samsung's reservation website promising \"Zoom with Galaxy AI is coming.\" Of course, 2023 was the year of generative AI, and Samsung's interest in the technology is a safe bet.

\n

The show will launch the Galaxy S24, which has already leaked quite a bit, with the big news being a new titanium body. The iPhone made titanium the hot new thing recently with the launch of the iPhone 15, and Samsung has taken notice. The best leak so far has been from Windows Report, which scored official press images of the phones. (The report is no longer online due to a DMCA takedown, which is a good sign of its legitimacy.)

\n

The Windows Report photos showed the smaller Galaxy S24 and S24 Plus are getting flat metal sides, reminiscent of the classic iPhone 4/iPhone 15 design. Samsung's usual design of rounded corners and individual camera lenses complete the phone design, and while they look nice, they also look a lot like an iPhone. Older leaks claimed these two cheaper phones were getting titanium bodies, but well-known Samsung leaker Ice Universe says only the bigger model will be titanium, and these cheaper models will be aluminum.

Read 3 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The Galaxy S24 render from OnLeaks. This sure does look familiar. (credit: OnLeaks\u00d7SmartPrix)\n \n\n\n\n\n\n\n\nSamsung is gearing up to launch its next big flagship smartphone, the Galaxy S24. The show has officially been announced for January 17, with Samsung's reservation website promising \"Zoom with Galaxy AI is coming.\" Of course, 2023 was the year of generative AI, and Samsung's interest in the technology is a safe bet.\nThe show will launch the Galaxy S24, which has already leaked quite a bit, with the big news being a new titanium body. The iPhone made titanium the hot new thing recently with the launch of the iPhone 15, and Samsung has taken notice. The best leak so far has been from Windows Report, which scored official press images of the phones. (The report is no longer online due to a DMCA takedown, which is a good sign of its legitimacy.)\nThe Windows Report photos showed the smaller Galaxy S24 and S24 Plus are getting flat metal sides, reminiscent of the classic iPhone 4/iPhone 15 design. Samsung's usual design of rounded corners and individual camera lenses complete the phone design, and while they look nice, they also look a lot like an iPhone. Older leaks claimed these two cheaper phones were getting titanium bodies, but well-known Samsung leaker Ice Universe says only the bigger model will be titanium, and these cheaper models will be aluminum.\n\nRead 3 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2024/01/rumor-roundup-samsungs-galaxy-s24-launch-is-scheduled-for-jan-17/#comments", + "content": "The S24 Ultra gets a titanium body, while the smaller models look like an iPhone. ", + "contentSnippet": "The S24 Ultra gets a titanium body, while the smaller models look like an iPhone.", + "guid": "https://arstechnica.com/?p=1993482", + "categories": [ + "Tech", + "android phone", + "Galaxy S24", + "samsung galaxy", + "samsung galaxy s24" + ], + "isoDate": "2024-01-03T22:17:08.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "SpaceX charged with illegally firing workers behind anti-Musk open letter", + "link": "https://arstechnica.com/?p=1993522", + "pubDate": "Wed, 03 Jan 2024 21:57:58 +0000", + "content:encoded": "
\n
\n \"Elon\n

Enlarge / Elon Musk speaks with members of the media at the AI Safety Summit on November 1, 2023 in Bletchley, England. (credit: Getty Images | Leon Neal )

\n\n\n\n\n\n\n
\n

SpaceX illegally fired eight employees who criticized CEO Elon Musk in an open letter, a National Labor Relations Board regional director alleged in a complaint filed against the company today.

\n

\"Today, the NLRB Regional Director in Region 31 (Los Angeles) issued a consolidated complaint against SpaceX in Hawthorne, CA, covering eight unfair practice charges,\" the NLRB said in a statement provided to Ars. \"The complaint alleges that the employer unlawfully discharged eight employees who drafted and distributed an open letter detailing workplace concerns.\"

\n

A complaint is not a board decision, the statement noted. It means the regional office investigated the charges and found merit in them. The complaint and notice of hearing is confirmed on the NLRB website, and you can read the complaint here.

Read 12 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Elon Musk speaks with members of the media at the AI Safety Summit on November 1, 2023 in Bletchley, England. (credit: Getty Images | Leon Neal )\n \n\n\n\n\n\n\n\nSpaceX illegally fired eight employees who criticized CEO Elon Musk in an open letter, a National Labor Relations Board regional director alleged in a complaint filed against the company today.\n\"Today, the NLRB Regional Director in Region 31 (Los Angeles) issued a consolidated complaint against SpaceX in Hawthorne, CA, covering eight unfair practice charges,\" the NLRB said in a statement provided to Ars. \"The complaint alleges that the employer unlawfully discharged eight employees who drafted and distributed an open letter detailing workplace concerns.\"\nA complaint is not a board decision, the statement noted. It means the regional office investigated the charges and found merit in them. The complaint and notice of hearing is confirmed on the NLRB website, and you can read the complaint here.\n\nRead 12 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/spacex-illegally-fired-employees-who-criticized-elon-musk-nlrb-alleges/#comments", + "content": "SpaceX fired workers after open letter called Musk's behavior an \"embarrassment.\"", + "contentSnippet": "SpaceX fired workers after open letter called Musk's behavior an \"embarrassment.\"", + "guid": "https://arstechnica.com/?p=1993522", + "categories": ["Policy", "spacex elon musk", "spacex nlrb"], + "isoDate": "2024-01-03T21:57:58.000Z" + }, + { + "creator": "Dan Goodin", + "title": "Millions still haven\u2019t patched Terrapin SSH protocol vulnerability", + "link": "https://arstechnica.com/?p=1993507", + "pubDate": "Wed, 03 Jan 2024 21:49:18 +0000", + "content:encoded": "
\n
\n \"Millions\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Roughly 11 million Internet-exposed servers remain susceptible to a recently discovered vulnerability that allows attackers with a foothold inside affected networks. Once they're in, attackers compromise the integrity of SSH sessions that form the lynchpin for admins to securely connect to computers inside the cloud and other sensitive environments.

\n

Terrapin, as the vulnerability has been named, came to light two weeks ago in a research paper published by academic researchers. Tracked as CVE-2023-48795, the attack the researchers devised works when attackers have an adversary-in-the-middle attack (also abbreviated as AitM and known as man-in-the-middle or MitM), such as when they\u2019re positioned on the same local network and can secretly intercept communications and assume the identity of both the recipient and the sender.

\n

In those instances, Terrapin allows attackers to alter or corrupt information transmitted in the SSH data stream during the handshake\u2014the earliest connection stage, when the two parties negotiate the encryption parameters they will use to establish a secure connection. As such, Terrapin represents the first practical cryptographic attack targeting the integrity of the SSH protocol itself. It works by targeting BPP (Binary Packet Protocol), which is designed to ensure AitMs can\u2019t add or drop messages exchanged during the handshake. This prefix truncation attack works when implementations support either the \"ChaCha20-Poly1305\" or \"CBC with Encrypt-then-MAC,\" cipher modes, which, at the time the paper was published, was found in 77 percent of SSH servers.

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nRoughly 11 million Internet-exposed servers remain susceptible to a recently discovered vulnerability that allows attackers with a foothold inside affected networks. Once they're in, attackers compromise the integrity of SSH sessions that form the lynchpin for admins to securely connect to computers inside the cloud and other sensitive environments.\nTerrapin, as the vulnerability has been named, came to light two weeks ago in a research paper published by academic researchers. Tracked as CVE-2023-48795, the attack the researchers devised works when attackers have an adversary-in-the-middle attack (also abbreviated as AitM and known as man-in-the-middle or MitM), such as when they\u2019re positioned on the same local network and can secretly intercept communications and assume the identity of both the recipient and the sender.\nIn those instances, Terrapin allows attackers to alter or corrupt information transmitted in the SSH data stream during the handshake\u2014the earliest connection stage, when the two parties negotiate the encryption parameters they will use to establish a secure connection. As such, Terrapin represents the first practical cryptographic attack targeting the integrity of the SSH protocol itself. It works by targeting BPP (Binary Packet Protocol), which is designed to ensure AitMs can\u2019t add or drop messages exchanged during the handshake. This prefix truncation attack works when implementations support either the \"ChaCha20-Poly1305\" or \"CBC with Encrypt-then-MAC,\" cipher modes, which, at the time the paper was published, was found in 77 percent of SSH servers.\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2024/01/millions-still-havent-patched-terrapin-ssh-protocol-vulnerability/#comments", + "content": "Terrapin isn't likely to be mass-exploited, but there's little reason not to patch.", + "contentSnippet": "Terrapin isn't likely to be mass-exploited, but there's little reason not to patch.", + "guid": "https://arstechnica.com/?p=1993507", + "categories": [ + "Biz & IT", + "Security", + "patches", + "protocol", + "SSH", + "terrapin", + "vulnerability" + ], + "isoDate": "2024-01-03T21:49:18.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Crypto hedge fund CEO may not exist; probe finds no record of identity", + "link": "https://arstechnica.com/?p=1993491", + "pubDate": "Wed, 03 Jan 2024 20:55:57 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A still from a HyperVerse video featuring CEO Steven Reece Lewis. (credit: @cryptotech607 | YouTube)

\n\n\n\n\n\n\n
\n

For years, rumors spread on social media that Steven Reece Lewis,\u00a0the chief executive officer of a now-shuttered cryptocurrency hedge fund called HyperVerse, was a \"fake person\" who \"doesn't exist.\" After its investigation, The Guardian has confirmed that no organization cited on his resume \"can find any record of him.\"

\n

According to The Guardian, Reece Lewis's qualifications all appear to be falsified in an effort to woo investors to sink money into HyperVerse. After HyperVerse collapsed, accused of operating as a pyramid scheme, the company suspended withdrawals. According to blockchain analysts, Chainalysis consumer losses in 2022 were estimated to exceed $1.3 billion. Thousands of consumers lost millions, The Guardian reported.

\n

In a December 2021 video, Reece Lewis was introduced as CEO and touted for making big moves before joining HyperVerse. He supposedly went from working at Goldman Sachs to selling a web development company to Adobe before launching his own IT startup.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A still from a HyperVerse video featuring CEO Steven Reece Lewis. (credit: @cryptotech607 | YouTube)\n \n\n\n\n\n\n\n\nFor years, rumors spread on social media that Steven Reece Lewis,\u00a0the chief executive officer of a now-shuttered cryptocurrency hedge fund called HyperVerse, was a \"fake person\" who \"doesn't exist.\" After its investigation, The Guardian has confirmed that no organization cited on his resume \"can find any record of him.\"\nAccording to The Guardian, Reece Lewis's qualifications all appear to be falsified in an effort to woo investors to sink money into HyperVerse. After HyperVerse collapsed, accused of operating as a pyramid scheme, the company suspended withdrawals. According to blockchain analysts, Chainalysis consumer losses in 2022 were estimated to exceed $1.3 billion. Thousands of consumers lost millions, The Guardian reported.\nIn a December 2021 video, Reece Lewis was introduced as CEO and touted for making big moves before joining HyperVerse. He supposedly went from working at Goldman Sachs to selling a web development company to Adobe before launching his own IT startup.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2024/01/crypto-hedge-fund-ceo-may-not-exist-probe-finds-no-record-of-identity/#comments", + "content": "HyperVerse's collapse caused an estimated $1.3 billion in customer losses.", + "contentSnippet": "HyperVerse's collapse caused an estimated $1.3 billion in customer losses.", + "guid": "https://arstechnica.com/?p=1993491", + "categories": [ + "Policy", + "cryptocurrency", + "cryptocurrency hedge fund", + "fake identity", + "hyperverse", + "online scam", + "pyramid scheme" + ], + "isoDate": "2024-01-03T20:55:57.000Z" + }, + { + "creator": "John Timmer", + "title": "Fossil evidence of photosynthesis gets a billion years older", + "link": "https://arstechnica.com/?p=1993473", + "pubDate": "Wed, 03 Jan 2024 18:42:08 +0000", + "content:encoded": "
\n
\n \"Greyscale\n

Enlarge / At left, one of the fossils, with stacks of thylakoids highlighted using yellow bars; at right, a higher magnification of the end of the cell. (credit: Demoulin, et. al.)

\n\n\n\n\n\n\n
\n

It's not an exaggeration to suggest that the most significant event on Earth was the evolution of photosynthesis. The ability to harvest energy from light freed life from the need to scavenge energy from its environment. With this new capability, life grew in complexity and invaded new environments, ultimately reshaping the Earth.

\n

For such a pivotal event, we know remarkably little about it. Tracing the presence of oxygen in the atmosphere suggests photosynthesis evolved at least 2.4 billion years ago, although the rise in oxygen levels turns out to be impressively complicated. Tracing the variations of present-day genes places photosynthesis' origin at about 3 billion years ago. That timing is similar to the origin of the photosynthetic cyanobacteria, which both continue to live independently and have been incorporated into plant cells as chloroplasts.

\n

What we don't have is clear evidence of photosynthetic cells of similar age. A few microfossils with similarities to cyanobacteria have been identified, but it's impossible to determine whether they were making the proteins that power photosynthesis. Now, new fossils described by a team at the University of Li\u00e8ge push unambiguous evidence of photosynthesis back over a billion years to 1.7 billion years ago.

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / At left, one of the fossils, with stacks of thylakoids highlighted using yellow bars; at right, a higher magnification of the end of the cell. (credit: Demoulin, et. al.)\n \n\n\n\n\n\n\n\nIt's not an exaggeration to suggest that the most significant event on Earth was the evolution of photosynthesis. The ability to harvest energy from light freed life from the need to scavenge energy from its environment. With this new capability, life grew in complexity and invaded new environments, ultimately reshaping the Earth.\nFor such a pivotal event, we know remarkably little about it. Tracing the presence of oxygen in the atmosphere suggests photosynthesis evolved at least 2.4 billion years ago, although the rise in oxygen levels turns out to be impressively complicated. Tracing the variations of present-day genes places photosynthesis' origin at about 3 billion years ago. That timing is similar to the origin of the photosynthetic cyanobacteria, which both continue to live independently and have been incorporated into plant cells as chloroplasts.\nWhat we don't have is clear evidence of photosynthetic cells of similar age. A few microfossils with similarities to cyanobacteria have been identified, but it's impossible to determine whether they were making the proteins that power photosynthesis. Now, new fossils described by a team at the University of Li\u00e8ge push unambiguous evidence of photosynthesis back over a billion years to 1.7 billion years ago.\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "John Timmer", + "comments": "https://arstechnica.com/science/2024/01/fossil-evidence-of-photosynthesis-from-1-7-billion-years-ago/#comments", + "content": "Remains of cells from two sites show structures similar to those in present cells.", + "contentSnippet": "Remains of cells from two sites show structures similar to those in present cells.", + "guid": "https://arstechnica.com/?p=1993473", + "categories": [ + "Science", + "Biology", + "cell biology", + "paleontology", + "photosynthesis", + "thylakoids" + ], + "isoDate": "2024-01-03T18:42:08.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Ford kills some F-150 Lightning trims, raises prices on others", + "link": "https://arstechnica.com/?p=1993462", + "pubDate": "Wed, 03 Jan 2024 18:12:06 +0000", + "content:encoded": "
\n
\n \"F-150\n

Enlarge / The Ford F-150 Lightning Pro gets a plainer front treatment than the more expensive trims. (credit: Jonathan Gitlin)

\n\n\n\n\n\n\n
\n

Was Ars premature in calling the electric Ford F-150 Lightning pickup truck the most important electric vehicle of the decade? At launch, it seemed like a no-brainer\u2014an all-electric version of the nation's most popular four-wheel vehicle that rode better than any other F-150 and a starting price of just $40,000 sure sounded compelling. In practice, things haven't worked out quite that well. Today, we learned that F-150 Lighting prices are increasing for some trims, and others are being retired altogether.

\n

When Ford first announced Lightning pricing in 2021, the range started at $39,974 for a Lightning Pro\u2014the trim aimed at commercial customers\u2014with the standard range battery, or $49,974 for the Lightning Pro with a larger battery capable of 300 miles of range. The F-150 Lightning XLT was the entry-level model for private customers, which originally cost $52,974, with more expensive Lariat and Platinum trims that topped out at $90,874.

\n

But Ford raised those prices before too long, then raised them again. Coupled with a post-pandemic trend of outrageous additional dealer markups, this spelled bad news for F-150 Lightning sales\u2014the entry-level F-150 Lightning Pro cost $59,974 by the middle of 2023, $20,000 more than the 2021 pricing. In July 2023, the automaker cut F-150 Lightning prices heavily, but prices remained significantly higher than at launch.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The Ford F-150 Lightning Pro gets a plainer front treatment than the more expensive trims. (credit: Jonathan Gitlin)\n \n\n\n\n\n\n\n\nWas Ars premature in calling the electric Ford F-150 Lightning pickup truck the most important electric vehicle of the decade? At launch, it seemed like a no-brainer\u2014an all-electric version of the nation's most popular four-wheel vehicle that rode better than any other F-150 and a starting price of just $40,000 sure sounded compelling. In practice, things haven't worked out quite that well. Today, we learned that F-150 Lighting prices are increasing for some trims, and others are being retired altogether.\nWhen Ford first announced Lightning pricing in 2021, the range started at $39,974 for a Lightning Pro\u2014the trim aimed at commercial customers\u2014with the standard range battery, or $49,974 for the Lightning Pro with a larger battery capable of 300 miles of range. The F-150 Lightning XLT was the entry-level model for private customers, which originally cost $52,974, with more expensive Lariat and Platinum trims that topped out at $90,874.\nBut Ford raised those prices before too long, then raised them again. Coupled with a post-pandemic trend of outrageous additional dealer markups, this spelled bad news for F-150 Lightning sales\u2014the entry-level F-150 Lightning Pro cost $59,974 by the middle of 2023, $20,000 more than the 2021 pricing. In July 2023, the automaker cut F-150 Lightning prices heavily, but prices remained significantly higher than at launch.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2024/01/ford-kills-some-f-150-lightning-trims-raises-prices-on-others/#comments", + "content": "The price increase follows hefty price cutting six months ago.", + "contentSnippet": "The price increase follows hefty price cutting six months ago.", + "guid": "https://arstechnica.com/?p=1993462", + "categories": ["Cars", "Ford F-150 Lightning price"], + "isoDate": "2024-01-03T18:12:06.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Pornhub pulls out of Montana, NC as age-verification battle rages on", + "link": "https://arstechnica.com/?p=1993450", + "pubDate": "Wed, 03 Jan 2024 17:59:55 +0000", + "content:encoded": "
\n
\n \"Pornhub\n

Enlarge (credit: Dmitry Mayer | iStock / Getty Images Plus)

\n\n\n\n\n\n\n
\n

To kick off the new year, Montana and North Carolina joined a growing number of states enforcing laws requiring age verification to access adult content online.

\n

In the days before the laws took effect on January 1, Aylo\u2014the owner of adult sites like Pornhub, Youporn, Brazzers, and Redtube\u2014blocked access for users in both states, continuing to argue that requiring ID for every login makes adult sites less safe for everyone.

\n

\u201cAs you may know, your elected officials in your state are requiring us to verify your age before allowing you access to our website,\" adult entertainer Cherie DeVille said in a public service announcement displayed to users attempting to access sites in Montana and North Carolina. \"While safety and compliance are at the forefront of our mission, giving your ID card every time you want to visit an adult platform is not the most effective solution for protecting our users, and in fact, will put children and your privacy at risk.\u201d

Read 14 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Dmitry Mayer | iStock / Getty Images Plus)\n \n\n\n\n\n\n\n\nTo kick off the new year, Montana and North Carolina joined a growing number of states enforcing laws requiring age verification to access adult content online.\nIn the days before the laws took effect on January 1, Aylo\u2014the owner of adult sites like Pornhub, Youporn, Brazzers, and Redtube\u2014blocked access for users in both states, continuing to argue that requiring ID for every login makes adult sites less safe for everyone.\n\u201cAs you may know, your elected officials in your state are requiring us to verify your age before allowing you access to our website,\" adult entertainer Cherie DeVille said in a public service announcement displayed to users attempting to access sites in Montana and North Carolina. \"While safety and compliance are at the forefront of our mission, giving your ID card every time you want to visit an adult platform is not the most effective solution for protecting our users, and in fact, will put children and your privacy at risk.\u201d\n\nRead 14 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2024/01/blocks-users-in-montana-n-c-as-age-verification-laws-take-effect/#comments", + "content": "Pornhub rallies users in eight states to demand device-based age verification.", + "contentSnippet": "Pornhub rallies users in eight states to demand device-based age verification.", + "guid": "https://arstechnica.com/?p=1993450", + "categories": [ + "Policy", + "adult entertainment", + "adult sites", + "age-gating", + "age-verification laws", + "aylo", + "montana", + "North Carolina", + "online privacy", + "pornhub" + ], + "isoDate": "2024-01-03T17:59:55.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Starlink launches first \u201ccellphone towers in space\u201d for use with LTE phones", + "link": "https://arstechnica.com/?p=1993408", + "pubDate": "Wed, 03 Jan 2024 17:09:10 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / Starlink satellites with direct-to-cell capability. (credit: SpaceX)

\n\n\n\n\n\n\n
\n

SpaceX last night launched the first six Starlink satellites that will provide cellular transmissions for customers of T-Mobile and other carriers.

\n

SpaceX said it launched 21 satellites overall, including \"the first six Starlink satellites with Direct to Cell capabilities that enable mobile network operators around the world to provide seamless global access to texting, calling, and browsing wherever you may be on land, lakes, or coastal waters without changing hardware or firmware. The enhanced Starlink satellites have an advanced modem that acts as a cellphone tower in space, eliminating dead zones with network integration similar to a standard roaming partner,\" the company said.

\n

Besides T-Mobile in the US, several carriers in other countries have signed up to use the direct-to-cell satellites. SpaceX said the other carriers are Rogers in Canada, KDDI in Japan, Optus in Australia, One NZ in New Zealand, Salt in Switzerland, and Entel in Chile and Peru.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Starlink satellites with direct-to-cell capability. (credit: SpaceX)\n \n\n\n\n\n\n\n\nSpaceX last night launched the first six Starlink satellites that will provide cellular transmissions for customers of T-Mobile and other carriers.\nSpaceX said it launched 21 satellites overall, including \"the first six Starlink satellites with Direct to Cell capabilities that enable mobile network operators around the world to provide seamless global access to texting, calling, and browsing wherever you may be on land, lakes, or coastal waters without changing hardware or firmware. The enhanced Starlink satellites have an advanced modem that acts as a cellphone tower in space, eliminating dead zones with network integration similar to a standard roaming partner,\" the company said.\nBesides T-Mobile in the US, several carriers in other countries have signed up to use the direct-to-cell satellites. SpaceX said the other carriers are Rogers in Canada, KDDI in Japan, Optus in Australia, One NZ in New Zealand, Salt in Switzerland, and Entel in Chile and Peru.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/spacex-launches-first-starlink-satellites-that-will-work-with-t-mobile-phones/#comments", + "content": "T-Mobile field tests begin soon\u2014texting to be available before voice and data.", + "contentSnippet": "T-Mobile field tests begin soon\u2014texting to be available before voice and data.", + "guid": "https://arstechnica.com/?p=1993408", + "categories": ["Policy", "Space", "t-mobile spacex", "t-mobile starlink"], + "isoDate": "2024-01-03T17:09:10.000Z" + }, + { + "creator": "Elizabeth Rayne", + "title": "Jellyfish regenerate lost tentacles, and now we know how", + "link": "https://arstechnica.com/?p=1993428", + "pubDate": "Wed, 03 Jan 2024 17:04:50 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Gerard Soury)

\n\n\n\n\n\n\n
\n

The mythical Hydra may have been able to grow one of its many heads back every time it suffered a decapitation, but there are actual creatures capable of regenerating parts of their bodies bitten off by hungry predators. Jellyfish are one of them.

\n

From salamanders to starfish to the actual hydra (a tiny hydrozoan named for the fearsome beast of legend), animals that are capable of regeneration all start the repair process by forming a blastema. This clump of proliferative cells, which are similar to stem cells, can repopulate body parts by dividing over and over again. While the cells are still undifferentiated in the beginning, they eventually form specific cell types like muscle and skin.

\n

The process of blastema formation in some other animals has been studied, but how they form in jellyfish was still a mystery. Led by postdoctoral researcher Sosuke Fujita, the team at the University of Tokyo and Tohoku University in Japan wanted to establish a baseline for non-bilaterian regeneration by finding out how a blastema helps regrow tentacles in jellyfish. Would their blastema formation process be different from that in bilaterians?

Read 10 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Gerard Soury)\n \n\n\n\n\n\n\n\nThe mythical Hydra may have been able to grow one of its many heads back every time it suffered a decapitation, but there are actual creatures capable of regenerating parts of their bodies bitten off by hungry predators. Jellyfish are one of them.\nFrom salamanders to starfish to the actual hydra (a tiny hydrozoan named for the fearsome beast of legend), animals that are capable of regeneration all start the repair process by forming a blastema. This clump of proliferative cells, which are similar to stem cells, can repopulate body parts by dividing over and over again. While the cells are still undifferentiated in the beginning, they eventually form specific cell types like muscle and skin.\nThe process of blastema formation in some other animals has been studied, but how they form in jellyfish was still a mystery. Led by postdoctoral researcher Sosuke Fujita, the team at the University of Tokyo and Tohoku University in Japan wanted to establish a baseline for non-bilaterian regeneration by finding out how a blastema helps regrow tentacles in jellyfish. Would their blastema formation process be different from that in bilaterians?\n\nRead 10 remaining paragraphs | Comments", + "dc:creator": "Elizabeth Rayne", + "comments": "https://arstechnica.com/science/2024/01/jellyfish-regenerate-lost-tentacles-and-now-we-know-how/#comments", + "content": "Jellyfish regeneration looks a lot like that of amphibians and other animals.", + "contentSnippet": "Jellyfish regeneration looks a lot like that of amphibians and other animals.", + "guid": "https://arstechnica.com/?p=1993428", + "categories": [ + "Science", + "Biology", + "cell biology", + "cnidarians", + "jellyfish", + "regeneration" + ], + "isoDate": "2024-01-03T17:04:50.000Z" + }, + { + "creator": "Financial Times", + "title": "Amazon marketplace crackdown has sellers searching for legal help", + "link": "https://arstechnica.com/?p=1993419", + "pubDate": "Wed, 03 Jan 2024 15:38:23 +0000", + "content:encoded": "
\n
\n \"Amazon\n

Enlarge (credit: Leon Neal | Getty Images)

\n\n\n\n\n\n\n
\n

Merchants who have been suspended from selling goods on Amazon\u2019s marketplace are turning to a cottage industry of lawyers to regain access to their accounts and money, amid growing scrutiny of how the retailer treats independents.

\n

Millions of accounts on the leading ecommerce platform have been prevented from engaging in sales for alleged violations of Amazon\u2019s broad range of policies and other bad behavior. Even temporary suspensions can be a critical blow to the small business owners who rely on online sales.

\n

Four ecommerce-focused US law firms told the Financial Times that the majority of the cases they took on were complaints brought by aggrieved Amazon sellers, with each handling hundreds or thousands of cases every year.

Read 24 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Leon Neal | Getty Images)\n \n\n\n\n\n\n\n\nMerchants who have been suspended from selling goods on Amazon\u2019s marketplace are turning to a cottage industry of lawyers to regain access to their accounts and money, amid growing scrutiny of how the retailer treats independents.\nMillions of accounts on the leading ecommerce platform have been prevented from engaging in sales for alleged violations of Amazon\u2019s broad range of policies and other bad behavior. Even temporary suspensions can be a critical blow to the small business owners who rely on online sales.\nFour ecommerce-focused US law firms told the Financial Times that the majority of the cases they took on were complaints brought by aggrieved Amazon sellers, with each handling hundreds or thousands of cases every year.\n\nRead 24 remaining paragraphs | Comments", + "dc:creator": "Financial Times", + "comments": "https://arstechnica.com/tech-policy/2024/01/amazon-marketplace-crackdown-has-sellers-searching-for-legal-help/#comments", + "content": "Clean-up drive has led to some small businesses having their accounts suspended.", + "contentSnippet": "Clean-up drive has led to some small businesses having their accounts suspended.", + "guid": "https://arstechnica.com/?p=1993419", + "categories": ["Policy", "Amazon", "counterfeit", "syndication"], + "isoDate": "2024-01-03T15:38:23.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Tesla sold 1.8 million electric vehicles in 2023", + "link": "https://arstechnica.com/?p=1993412", + "pubDate": "Wed, 03 Jan 2024 15:31:52 +0000", + "content:encoded": "
\n
\n \"Workers\n

Enlarge (credit: Getty Images | San Francisco Chronicle/Hearst Newspapers)

\n\n\n\n\n\n\n
\n

Tesla found new homes for 1.8 million electric vehicles last year, it revealed on Tuesday afternoon. That will no doubt please CEO Elon Musk\u2014it means the company has met its sales volume goal given to investors when it released its 2022 financial results at the end of last January.

\n

Tesla built 494,989 vehicles in the last quarter of 2023, of which 18,212 were the more expensive but aging Models S and X. More importantly to the bottom line, Tesla built 476,777 Models 3 and Y. For the same three months, it delivered 484,507 EVs, of which 461,538 were the popular Models 3 and Y.

\n

Cumulatively, Tesla built 1,845,985 EVs\u20141,775,159 Models 3 and Y and 70,826 Models S and X. And it delivered 1,808,581 EVs (1,739,707 Models 3 and Y; 68,874 Models S and X)\u2014meeting the 2023 sales goal of 1.8 million cars sold.

Read 3 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | San Francisco Chronicle/Hearst Newspapers)\n \n\n\n\n\n\n\n\nTesla found new homes for 1.8 million electric vehicles last year, it revealed on Tuesday afternoon. That will no doubt please CEO Elon Musk\u2014it means the company has met its sales volume goal given to investors when it released its 2022 financial results at the end of last January.\nTesla built 494,989 vehicles in the last quarter of 2023, of which 18,212 were the more expensive but aging Models S and X. More importantly to the bottom line, Tesla built 476,777 Models 3 and Y. For the same three months, it delivered 484,507 EVs, of which 461,538 were the popular Models 3 and Y.\nCumulatively, Tesla built 1,845,985 EVs\u20141,775,159 Models 3 and Y and 70,826 Models S and X. And it delivered 1,808,581 EVs (1,739,707 Models 3 and Y; 68,874 Models S and X)\u2014meeting the 2023 sales goal of 1.8 million cars sold.\n\nRead 3 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2024/01/tesla-sold-1-8-million-electric-vehicles-in-2023/#comments", + "content": "It met its sales goal, but growth is well below CEO Elon Musk's stated target.", + "contentSnippet": "It met its sales goal, but growth is well below CEO Elon Musk's stated target.", + "guid": "https://arstechnica.com/?p=1993412", + "categories": ["Cars", "BYD", "Tesla", "Tesla earnings"], + "isoDate": "2024-01-03T15:31:52.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "It\u2019s rebels vs. Imperialist forces in Rebel Moon Part 2: The Scargiver trailer", + "link": "https://arstechnica.com/?p=1993393", + "pubDate": "Wed, 03 Jan 2024 14:49:32 +0000", + "content:encoded": "
\n\n\n\n\n\n
\n

Prepare yourself for Zack Snyder's Rebel Moon Part 2: The Scargiver.

\n

Zack Snyder's Rebel Moon Part 1: Child of Fire racked up an impressive 63 million views over its first 10 days on Netflix despite decidedly negative critical reviews. Now we've got the first full trailer for Rebel Moon Part 2: The Scargiver, continuing the saga of our intrepid heroine Kora (Sofia Boutella) and her plucky band of allies as they take on the imperialist Motherworld.

\n

(Spoilers for Part 1 below.)

\n

As we reported previously, years ago, director Zack Snyder had an idea for an epic Star Wars movie that he pitched to Lucasfilm. That project never panned out for a variety of reasons. But the idea continued to germinate until Netflix got on board. Apart from Star Wars, Snyder has said his influences include the films of Akira Kurosawa, especially Seven Samurai, and The Dirty Dozen. He has set his epic saga in a universe controlled by the ruthless and corrupt government of the Motherworld (the Imperium) with an army led by one Regent Balisarius (Fra Fee). The rebel moon of the title is called Veldt.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Prepare yourself for Zack Snyder's Rebel Moon Part 2: The Scargiver. \n\nZack Snyder's Rebel Moon Part 1: Child of Fire racked up an impressive 63 million views over its first 10 days on Netflix despite decidedly negative critical reviews. Now we've got the first full trailer for Rebel Moon Part 2: The Scargiver, continuing the saga of our intrepid heroine Kora (Sofia Boutella) and her plucky band of allies as they take on the imperialist Motherworld.\n(Spoilers for Part 1 below.)\nAs we reported previously, years ago, director Zack Snyder had an idea for an epic Star Wars movie that he pitched to Lucasfilm. That project never panned out for a variety of reasons. But the idea continued to germinate until Netflix got on board. Apart from Star Wars, Snyder has said his influences include the films of Akira Kurosawa, especially Seven Samurai, and The Dirty Dozen. He has set his epic saga in a universe controlled by the ruthless and corrupt government of the Motherworld (the Imperium) with an army led by one Regent Balisarius (Fra Fee). The rebel moon of the title is called Veldt.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/culture/2024/01/the-full-trailer-for-zack-snyders-rebel-moon-part-2-the-scargiver-is-here/#comments", + "content": "\"Their nightmare is us fighting together to defend something we love.\"", + "contentSnippet": "\"Their nightmare is us fighting together to defend something we love.\"", + "guid": "https://arstechnica.com/?p=1993393", + "categories": [ + "Culture", + "entertainment", + "film trailers", + "Netflix", + "Rebel Moon", + "Zack Snyder" + ], + "isoDate": "2024-01-03T14:49:32.000Z" + }, + { + "creator": "Stephen Clark", + "title": "A commander\u2019s lament on the loss of a historic SpaceX rocket", + "link": "https://arstechnica.com/?p=1993381", + "pubDate": "Wed, 03 Jan 2024 01:38:08 +0000", + "content:encoded": "
\n
\n \"One\n

Enlarge / One of the most historic rockets in SpaceX's fleet toppled over Christmas Day on the return trip to Cape Canaveral, Florida, following its previous mission. (credit: LabPadre)

\n\n\n\n\n\n\n
\n

The Falcon 9 rocket that launched NASA astronauts Doug Hurley and Bob Behnken on SpaceX's first crew mission in 2020 launched and landed for the 19th and final time just before Christmas, then tipped over on its recovery ship during the trip back to Cape Canaveral, Florida.

\n

This particular booster, known by the tail number B1058, was special among SpaceX's fleet of reusable rockets. It was the fleet leader, having tallied 19 missions over the course of more than three-and-a-half years. More importantly, it was the rocket that thundered into space on May 30, 2020, on a flight that made history on several counts.

\n

It was the first time a commercial rocket and spacecraft launched people into orbit, and ended a nine-year gap in America's ability to send astronauts into orbit from US soil, following the retirement of the space shuttle. This mission, known as Demo-2 and launched by SpaceX under contract with NASA, ended US reliance on Russian rockets to send crews to the International Space Station.

Read 20 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / One of the most historic rockets in SpaceX's fleet toppled over Christmas Day on the return trip to Cape Canaveral, Florida, following its previous mission. (credit: LabPadre)\n \n\n\n\n\n\n\n\nThe Falcon 9 rocket that launched NASA astronauts Doug Hurley and Bob Behnken on SpaceX's first crew mission in 2020 launched and landed for the 19th and final time just before Christmas, then tipped over on its recovery ship during the trip back to Cape Canaveral, Florida.\nThis particular booster, known by the tail number B1058, was special among SpaceX's fleet of reusable rockets. It was the fleet leader, having tallied 19 missions over the course of more than three-and-a-half years. More importantly, it was the rocket that thundered into space on May 30, 2020, on a flight that made history on several counts.\nIt was the first time a commercial rocket and spacecraft launched people into orbit, and ended a nine-year gap in America's ability to send astronauts into orbit from US soil, following the retirement of the space shuttle. This mission, known as Demo-2 and launched by SpaceX under contract with NASA, ended US reliance on Russian rockets to send crews to the International Space Station.\n\nRead 20 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2024/01/a-commanders-lament-on-the-loss-of-a-historic-spacex-rocket/#comments", + "content": "This rocket restored NASA crew launches to US soil, then launched 18 more times.", + "contentSnippet": "This rocket restored NASA crew launches to US soil, then launched 18 more times.", + "guid": "https://arstechnica.com/?p=1993381", + "categories": [ + "Science", + "Space", + "Commercial space", + "falcon 9", + "launch", + "Space X", + "spacex" + ], + "isoDate": "2024-01-03T01:38:08.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "Ancient desert mega-structures were planned using carved maps to scale", + "link": "https://arstechnica.com/?p=1993193", + "pubDate": "Tue, 02 Jan 2024 23:45:05 +0000", + "content:encoded": "
\n
\n \"Oblique\n

Enlarge

\n\n\n\n\n

There's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: Archaeologists found two stone engravings in Jordan and Saudi Arabia that may represent the oldest architectural plans for desert kites.

\n \n\n
\n

During the 1920s, aerial photographs revealed the presence of large kite-shaped stone wall mega-structures in deserts in Asia and the Middle East that most archaeologists believe were used to herd and trap wild animals. More than 6,000 of these \"desert kites\" have been identified as of 2018, although very few have been excavated. Archaeologists found two stone engravings\u2014one in Jordan, the other in Saudi Arabia\u2014that they believe represent the oldest architectural plans for these desert kites, according to a May paper published in the journal PLoS ONE.

\n

\"The discovery of these very ancient representations highlights the question of the methods used by kite builders,\" the authors wrote. \"Kites are large material structures that could not be designed without what we call today planning. The ability to transpose large spaces into a small two-dimensional surface represents a milestone in intelligent behavior. Such structures are visible as a whole only from the air, yet this calls for the representation of space in a way not seen at this time.\"

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge \n \n\n\n\n\n \nThere's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: Archaeologists found two stone engravings in Jordan and Saudi Arabia that may represent the oldest architectural plans for desert kites.\n\nDuring the 1920s, aerial photographs revealed the presence of large kite-shaped stone wall mega-structures in deserts in Asia and the Middle East that most archaeologists believe were used to herd and trap wild animals. More than 6,000 of these \"desert kites\" have been identified as of 2018, although very few have been excavated. Archaeologists found two stone engravings\u2014one in Jordan, the other in Saudi Arabia\u2014that they believe represent the oldest architectural plans for these desert kites, according to a May paper published in the journal PLoS ONE.\n\"The discovery of these very ancient representations highlights the question of the methods used by kite builders,\" the authors wrote. \"Kites are large material structures that could not be designed without what we call today planning. The ability to transpose large spaces into a small two-dimensional surface represents a milestone in intelligent behavior. Such structures are visible as a whole only from the air, yet this calls for the representation of space in a way not seen at this time.\"\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/science/2024/01/these-engravings-could-be-oldest-scaled-architectural-plans-for-desert-kites/#comments", + "content": "\"This calls for the representation of space in a way not seen at this time.\"", + "contentSnippet": "\"This calls for the representation of space in a way not seen at this time.\"", + "guid": "https://arstechnica.com/?p=1993193", + "categories": [ + "Science", + "12 days of Christmas", + "anthropology", + "Archaeology", + "desert kites", + "social anthropology" + ], + "isoDate": "2024-01-02T23:45:05.000Z" + }, + { + "creator": "Kyle Orland", + "title": "34 years later, a 13-year-old hits the NES Tetris \u201ckill screen\u201d", + "link": "https://arstechnica.com/?p=1993353", + "pubDate": "Tue, 02 Jan 2024 23:07:06 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A moment in Tetris history.

\n\n\n\n\n\n\n
\n

For decades after its 1989 release, each of the hundreds of millions of standard NES Tetris games ended the same way: A block reaches the top of the screen and triggers a \"game over\" message. That 34-year streak was finally broken on December 21, 2023, when 13-year-old phenom BlueScuti became the first human to reach the game's \"kill screen\" after a 40-minute, 1,511-line performance, crashing the game by reaching its functional limits.

\n

The game-crashing, record-setting performance. Jump to 38:56 for BlueScuti's disbelieving reaction to his achievement and a short interview.

\n

What makes BlueScuti's achievement even more incredible (as noted in some excellent YouTube summaries of the scene) is that, until just a few years ago, the Tetris community at large assumed it was functionally impossible for a human to get much past 290 lines. The road to the first NES Tetris kill screen highlights the surprisingly robust competitive scene that still surrounds the classic game and just how much that competitive community has been able to collectively improve in a relatively short time.

\n

From hypertaps to rolling

\n

If and when a player reaches Level 29 on NES Tetris (after clearing between 230 to 290 lines, depending on the starting level), the game reaches its highest possible speed. At this point, simply holding down left or right on the NES D-pad can't usually get a piece all the way to the side of the well unless the board is extremely \"low\" (i.e., pieces only on the first one or two rows, maximum). Thus, for years, players that reached Level 29 found their games usually \"topped out\" just a few pieces later.

Read 13 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A moment in Tetris history. \n \n\n\n\n\n\n\n\nFor decades after its 1989 release, each of the hundreds of millions of standard NES Tetris games ended the same way: A block reaches the top of the screen and triggers a \"game over\" message. That 34-year streak was finally broken on December 21, 2023, when 13-year-old phenom BlueScuti became the first human to reach the game's \"kill screen\" after a 40-minute, 1,511-line performance, crashing the game by reaching its functional limits.\n\nThe game-crashing, record-setting performance. Jump to 38:56 for BlueScuti's disbelieving reaction to his achievement and a short interview. \n\nWhat makes BlueScuti's achievement even more incredible (as noted in some excellent YouTube summaries of the scene) is that, until just a few years ago, the Tetris community at large assumed it was functionally impossible for a human to get much past 290 lines. The road to the first NES Tetris kill screen highlights the surprisingly robust competitive scene that still surrounds the classic game and just how much that competitive community has been able to collectively improve in a relatively short time.\nFrom hypertaps to rolling\nIf and when a player reaches Level 29 on NES Tetris (after clearing between 230 to 290 lines, depending on the starting level), the game reaches its highest possible speed. At this point, simply holding down left or right on the NES D-pad can't usually get a piece all the way to the side of the well unless the board is extremely \"low\" (i.e., pieces only on the first one or two rows, maximum). Thus, for years, players that reached Level 29 found their games usually \"topped out\" just a few pieces later.\n\nRead 13 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/gaming/2024/01/someone-has-finally-beaten-nes-tetris/#comments", + "content": "BlueScuti forces the game to crash after 40 minutes and 1,511 lines.", + "contentSnippet": "BlueScuti forces the game to crash after 40 minutes and 1,511 lines.", + "guid": "https://arstechnica.com/?p=1993353", + "categories": [ + "Gaming", + "Classic", + "Kill Screen", + "nes tetris", + "record", + "retro", + "Tetris" + ], + "isoDate": "2024-01-02T23:07:06.000Z" + }, + { + "creator": "Eric Berger", + "title": "Daily Telescope: A view of our star as Earth reaches perihelion", + "link": "https://arstechnica.com/?p=1993557", + "pubDate": "Thu, 04 Jan 2024 13:00:31 +0000", + "content:encoded": "
\n
\n \"Sol,\n

Enlarge / Sol, imaged by NASA's Solar Dynamics Observatory. (credit: NASA)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's January 4, and today's image is a photo of our star, Sol. The image was captured by NASA's Solar Dynamics Observatory, a spacecraft in geosynchronous orbit, on Wednesday.

\n

So why a picture of the Sun? Because we've just passed perihelion, the point at which planet Earth reaches its closest point to the Sun. This year perihelion came at 00:38 UTC on Wednesday, January 3. We got to within about 91.4 million miles (147 million km) of the star. Due to its slightly elliptical orbit around the Sun, Earth will reach aphelion this year on July 5, at a distance of 94.5 million miles (152 million km).

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Sol, imaged by NASA's Solar Dynamics Observatory. (credit: NASA)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's January 4, and today's image is a photo of our star, Sol. The image was captured by NASA's Solar Dynamics Observatory, a spacecraft in geosynchronous orbit, on Wednesday.\nSo why a picture of the Sun? Because we've just passed perihelion, the point at which planet Earth reaches its closest point to the Sun. This year perihelion came at 00:38 UTC on Wednesday, January 3. We got to within about 91.4 million miles (147 million km) of the star. Due to its slightly elliptical orbit around the Sun, Earth will reach aphelion this year on July 5, at a distance of 94.5 million miles (152 million km).\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2024/01/daily-telescope-a-view-of-our-star-as-earth-reaches-perihelion/#comments", + "content": "There is a bit of irony for those of us who live in the Northern Hemisphere.", + "contentSnippet": "There is a bit of irony for those of us who live in the Northern Hemisphere.", + "guid": "https://arstechnica.com/?p=1993557", + "categories": ["Science", "Space", "daily telescope"], + "isoDate": "2024-01-04T13:00:31.000Z" + }, + { + "creator": "Ars Contributors", + "title": "Vectrex reborn: How a chance encounter gave new life to a dead console", + "link": "https://arstechnica.com/?p=1992315", + "pubDate": "Thu, 04 Jan 2024 12:00:52 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A Vectrex console and CRT display with a cart for a long-lost game. (credit: Tim Stevens)

\n\n\n\n\n\n\n
\n

The Vectrex may be the most innovative video game console you've never heard of. It had everything it needed to prompt a revolution, including controllers far more sophisticated than the competition and the ability to render polygons a decade before gaming's 3D revolution.

\n

It was years ahead of anything else on the market, yet it could not have launched at a worse time. The Vectrex hit stores at the tail end of 1982. Over the next six months, the then-booming video game market went bust. The Vectrex, a potential revolution in home gaming, was swept into bargain bins, forgotten by all but the most ardent of collectors.

\n

Forty years later, it's having something of a comeback. New developers are breathing fresh code into this aged machine, hardware hackers and tinkerers are ensuring that tired capacitors and CRTs stay functional, and a new game has seen retail release after sitting unplayed for four decades.

Read 58 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A Vectrex console and CRT display with a cart for a long-lost game. (credit: Tim Stevens)\n \n\n\n\n\n\n\n\nThe Vectrex may be the most innovative video game console you've never heard of. It had everything it needed to prompt a revolution, including controllers far more sophisticated than the competition and the ability to render polygons a decade before gaming's 3D revolution.\nIt was years ahead of anything else on the market, yet it could not have launched at a worse time. The Vectrex hit stores at the tail end of 1982. Over the next six months, the then-booming video game market went bust. The Vectrex, a potential revolution in home gaming, was swept into bargain bins, forgotten by all but the most ardent of collectors.\nForty years later, it's having something of a comeback. New developers are breathing fresh code into this aged machine, hardware hackers and tinkerers are ensuring that tired capacitors and CRTs stay functional, and a new game has seen retail release after sitting unplayed for four decades.\n\nRead 58 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/gaming/2024/01/vectrex-reborn-how-a-chance-encounter-gave-new-life-to-a-dead-console/#comments", + "content": "40 years later, it's time for the Vectrex to shine.", + "contentSnippet": "40 years later, it's time for the Vectrex to shine.", + "guid": "https://arstechnica.com/?p=1992315", + "categories": [ + "Features", + "Gaming", + "Tech", + "1980s", + "A Crush of Lucifer", + "console games", + "Game collecting", + "retro", + "retro games", + "Vector graphics", + "vectrex" + ], + "isoDate": "2024-01-04T12:00:52.000Z" + }, + { + "creator": "Scharon Harding", + "title": "The Dell XPS laptop, as we know and love it, is no more", + "link": "https://arstechnica.com/?p=1993478", + "pubDate": "Thu, 04 Jan 2024 11:00:26 +0000", + "content:encoded": "
\n\n\n\n\n\n
\n
    \n
  • \n
    \n
    \"\"
    \n

    \n The 2024 XPS laptop lineup: 13-inch, 14-inch, and 16-inch. [credit:\n Scharon Harding ]\n

    \n
    \n
  • \n
\n\n

Dell\u2019s XPS laptop lineup has long been my go-to for an easy laptop recommendation. With an accessible starting price, a good amount of display options, and an ultrathin build, it was often a fitting choice for the average consumer seeking something with a premium feel and some clout. With the 2024 laptop lineup announced today, the XPS no longer feels like an obvious recommendation.

\n

Dell has reimagined the XPS laptop lineup in the image of what used to be called the Dell XPS 13 Plus. When it launched in 2022, the XPS 13 Plus was a 13.4-inch XPS laptop that was pricier than its non-Plus alternative. The XPS 13 Plus and its 2023 predecessor took extreme design measures, including a capacitive touch function row, unique keyboard, and borderless haptic touchpad to squeeze more power out of its processor.

\n

Those polarizing features are now mandatory in an XPS laptop. The new XPS 13, 14, and 16 look like the XPS 13 Plus. But Dell is no longer calling that design the \"Plus.\" It's now just the standard design of a standard XPS laptop.

Read 23 remaining paragraphs | Comments

", + "content:encodedSnippet": "Dell\u2019s XPS laptop lineup has long been my go-to for an easy laptop recommendation. With an accessible starting price, a good amount of display options, and an ultrathin build, it was often a fitting choice for the average consumer seeking something with a premium feel and some clout. With the 2024 laptop lineup announced today, the XPS no longer feels like an obvious recommendation.\nDell has reimagined the XPS laptop lineup in the image of what used to be called the Dell XPS 13 Plus. When it launched in 2022, the XPS 13 Plus was a 13.4-inch XPS laptop that was pricier than its non-Plus alternative. The XPS 13 Plus and its 2023 predecessor took extreme design measures, including a capacitive touch function row, unique keyboard, and borderless haptic touchpad to squeeze more power out of its processor.\nThose polarizing features are now mandatory in an XPS laptop. The new XPS 13, 14, and 16 look like the XPS 13 Plus. But Dell is no longer calling that design the \"Plus.\" It's now just the standard design of a standard XPS laptop.\n\nRead 23 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/gadgets/2024/01/the-dell-xps-laptop-as-we-know-and-love-it-is-no-more/#comments", + "content": "2024 laptops all look like the XPS 13 Plus. XPS 15, 17, and 2-in-1 going away. ", + "contentSnippet": "2024 laptops all look like the XPS 13 Plus. XPS 15, 17, and 2-in-1 going away.", + "guid": "https://arstechnica.com/?p=1993478", + "categories": ["Tech", "dell", "dell XPS", "laptops"], + "isoDate": "2024-01-04T11:00:26.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Technical headaches put the brakes on GM\u2019s big EV push", + "link": "https://arstechnica.com/?p=1993652", + "pubDate": "Thu, 04 Jan 2024 14:32:23 +0000", + "content:encoded": "
\n
\n \"Ultium\n

Enlarge / A GM Ultium battery pack like that found in the Lyriq. (credit: Santa Fabio for General Motors)

\n\n\n\n\n\n\n
\n

General Motors ended 2023 as the number one automaker in the United States, selling 2.6 million new vehicles during those 12 months. That's a 14.1 percent increase from its performance in 2022, and comfortably eclipses the 2.3 million cars that Toyota sold during the same period. It had a strong year in terms of electric vehicle sales too\u2014up 93 percent year-on-year.

\n

But a quick look at the data reveals a somewhat less rosy picture. Yes, it was a banner year for GM EVs, with 75,883 deliveries in 2023. But only because of the Chevrolet Bolt EV and Bolt EUV. Chevy delivered 62,045 Bolts in 2023, a 62.8 percent increase on the 38,120 Bolts it sold in 2022.

\n

But as Ars has detailed in the past, the Bolt is no more. Production ended at the Orion Assembly plant in Michigan on December 18, and GM is laying off 945 workers at the plant as it retools the factory to make electric trucks like the Chevy Silverado EV and GMC Sierra EV.

Read 12 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A GM Ultium battery pack like that found in the Lyriq. (credit: Santa Fabio for General Motors)\n \n\n\n\n\n\n\n\nGeneral Motors ended 2023 as the number one automaker in the United States, selling 2.6 million new vehicles during those 12 months. That's a 14.1 percent increase from its performance in 2022, and comfortably eclipses the 2.3 million cars that Toyota sold during the same period. It had a strong year in terms of electric vehicle sales too\u2014up 93 percent year-on-year.\nBut a quick look at the data reveals a somewhat less rosy picture. Yes, it was a banner year for GM EVs, with 75,883 deliveries in 2023. But only because of the Chevrolet Bolt EV and Bolt EUV. Chevy delivered 62,045 Bolts in 2023, a 62.8 percent increase on the 38,120 Bolts it sold in 2022.\nBut as Ars has detailed in the past, the Bolt is no more. Production ended at the Orion Assembly plant in Michigan on December 18, and GM is laying off 945 workers at the plant as it retools the factory to make electric trucks like the Chevy Silverado EV and GMC Sierra EV.\n\nRead 12 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2024/01/general-motors-is-still-struggling-with-new-evs-data-show/#comments", + "content": "GM sold a record number of EVs in 2023, but only thanks to the Bolt EV and Bolt EUV.", + "contentSnippet": "GM sold a record number of EVs in 2023, but only thanks to the Bolt EV and Bolt EUV.", + "guid": "https://arstechnica.com/?p=1993652", + "categories": [ + "Cars", + "Cadillac Lyriq", + "Chevrolet Blazer EV", + "Chevrolet Bolt", + "Chevrolet silverado EV", + "General Motors", + "GM", + "GMC Hummer EV", + "Ultium" + ], + "isoDate": "2024-01-04T14:32:23.000Z" + }, + { + "creator": "Eric Berger", + "title": "Daily Telescope: A crab found in the night sky rather than the world\u2019s oceans", + "link": "https://arstechnica.com/?p=1993748", + "pubDate": "Fri, 05 Jan 2024 13:00:51 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The Crab Nebula in all its glory. (credit: Paul Macklin)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's January 5, and today's photo reveals the Crab Nebula in all of its glory.

\n

This object, known more formally as Messier 1 or M1, earned its colloquial name when Anglo-Irish astronomer William Parsons observed and drew this object in the early 1840s. It looked something like a crab with arms, and the appellation stuck. The nebula had been discovered about a century earlier by English astronomer John Bevis.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The Crab Nebula in all its glory. (credit: Paul Macklin)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's January 5, and today's photo reveals the Crab Nebula in all of its glory.\nThis object, known more formally as Messier 1 or M1, earned its colloquial name when Anglo-Irish astronomer William Parsons observed and drew this object in the early 1840s. It looked something like a crab with arms, and the appellation stuck. The nebula had been discovered about a century earlier by English astronomer John Bevis.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2024/01/daily-telescope-a-crab-found-in-the-night-sky-rather-than-the-worlds-oceans/#comments", + "content": "Oh, to have seen this supernova back in the day.", + "contentSnippet": "Oh, to have seen this supernova back in the day.", + "guid": "https://arstechnica.com/?p=1993748", + "categories": ["Science", "Space", "Crab Nebula", "daily telescope"], + "isoDate": "2024-01-05T13:00:51.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Rocket Report: SpaceX\u2019s record year; Firefly\u2019s Alpha rocket falls short", + "link": "https://arstechnica.com/?p=1993810", + "pubDate": "Fri, 05 Jan 2024 12:00:30 +0000", + "content:encoded": "
\n
\n \"Firefly\n

Enlarge / Firefly Aerospace's fourth Alpha rocket lifted off December 22 from Vandenberg Space Force Base, California. (credit: Firefly Aerospace/Trevor Mahlmann)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.25 of the Rocket Report! We hope all our readers had a peaceful holiday break. While many of us were enjoying time off work, launch companies like SpaceX kept up the pace until the final days of 2023. Last year saw a record level of global launch activity, with 223 orbital launch attempts and 212 rockets successfully reaching orbit. Nearly half of these missions were by SpaceX.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.

\n
\n

Firefly's fourth launch puts\u00a0payload in wrong orbit.\u00a0The fourth flight of Firefly Aerospace's Alpha rocket on December 22 placed a small Lockheed Martin technology demonstration satellite into a lower-than-planned orbit after lifting off from Vandenberg Space Force Base, California. US military tracking data indicated the Alpha rocket released its payload into an elliptical orbit ranging between 215 and 523 kilometers in altitude, not the mission's intended circular target orbit. Firefly later confirmed the Alpha rocket's second stage, which was supposed to reignite about 50 minutes after liftoff, did not deliver Lockheed Martin's satellite into the proper orbit. This satellite, nicknamed Tantrum, was designed to test Lockheed Martin's new wideband Electronically Steerable Antenna technology to demonstrate faster on-orbit sensor calibration to deliver rapid capabilities to US military forces.

Read 22 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Firefly Aerospace's fourth Alpha rocket lifted off December 22 from Vandenberg Space Force Base, California. (credit: Firefly Aerospace/Trevor Mahlmann)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.25 of the Rocket Report! We hope all our readers had a peaceful holiday break. While many of us were enjoying time off work, launch companies like SpaceX kept up the pace until the final days of 2023. Last year saw a record level of global launch activity, with 223 orbital launch attempts and 212 rockets successfully reaching orbit. Nearly half of these missions were by SpaceX.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.\n\nFirefly's fourth launch puts\u00a0payload in wrong orbit.\u00a0The fourth flight of Firefly Aerospace's Alpha rocket on December 22 placed a small Lockheed Martin technology demonstration satellite into a lower-than-planned orbit after lifting off from Vandenberg Space Force Base, California. US military tracking data indicated the Alpha rocket released its payload into an elliptical orbit ranging between 215 and 523 kilometers in altitude, not the mission's intended circular target orbit. Firefly later confirmed the Alpha rocket's second stage, which was supposed to reignite about 50 minutes after liftoff, did not deliver Lockheed Martin's satellite into the proper orbit. This satellite, nicknamed Tantrum, was designed to test Lockheed Martin's new wideband Electronically Steerable Antenna technology to demonstrate faster on-orbit sensor calibration to deliver rapid capabilities to US military forces.\n\nRead 22 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2024/01/rocket-report-spacexs-record-year-fireflys-alpha-rocket-falls-short/#comments", + "content": "Living downrange from one of China's launch sites sure doesn't seem safe.", + "contentSnippet": "Living downrange from one of China's launch sites sure doesn't seem safe.", + "guid": "https://arstechnica.com/?p=1993810", + "categories": [ + "Science", + "Space", + "china", + "Commercial space", + "falcon heavy", + "firefly", + "india", + "launch", + "spacex", + "starlink" + ], + "isoDate": "2024-01-05T12:00:30.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Elon Musk: SpaceX needs to build Starships as often as Boeing builds 737s", + "link": "https://arstechnica.com/?p=1993759", + "pubDate": "Fri, 05 Jan 2024 01:26:25 +0000", + "content:encoded": "
\n
\n \"Ship\n

Enlarge / Ship 28, the Starship for SpaceX's next full-scale test flight, fires up one of its engines on December 29 in Texas. (credit: SpaceX)

\n\n\n\n\n\n\n
\n

It's no secret that Elon Musk has big ambitions for SpaceX's Starship mega-rocket. This is the vehicle that, with plenty of permutations and upgrades, Musk says will ferry cargo and people across the Solar System to build a settlement on Mars, making humanity a multi-planetary species and achieving the billionaire's long-standing dream.

\n

Of course, that is a long way off. SpaceX is still working on getting Starship into orbit or close to it, an achievement that appears to be possible this year. Then, the company will start launching Starlink satellites on Starship missions while testing in-space refueling technology needed to turn Starship into a human-rated Moon lander for NASA.

\n

SpaceX's South Texas team is progressing toward the third full-scale Starship test flight. On December 20, the Starship's upper stage slated for the next test flight completed a test-firing of its Raptor engines at the Starbase launch site on the Texas Gulf Coast. Nine days later, the 33-engine Super Heavy booster fired up on the launch pad for its own static fire test. On the same day, SpaceX hot-fired the Starship upper stage once again on a test stand next to the launch pad.

Read 18 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Ship 28, the Starship for SpaceX's next full-scale test flight, fires up one of its engines on December 29 in Texas. (credit: SpaceX)\n \n\n\n\n\n\n\n\nIt's no secret that Elon Musk has big ambitions for SpaceX's Starship mega-rocket. This is the vehicle that, with plenty of permutations and upgrades, Musk says will ferry cargo and people across the Solar System to build a settlement on Mars, making humanity a multi-planetary species and achieving the billionaire's long-standing dream.\nOf course, that is a long way off. SpaceX is still working on getting Starship into orbit or close to it, an achievement that appears to be possible this year. Then, the company will start launching Starlink satellites on Starship missions while testing in-space refueling technology needed to turn Starship into a human-rated Moon lander for NASA.\nSpaceX's South Texas team is progressing toward the third full-scale Starship test flight. On December 20, the Starship's upper stage slated for the next test flight completed a test-firing of its Raptor engines at the Starbase launch site on the Texas Gulf Coast. Nine days later, the 33-engine Super Heavy booster fired up on the launch pad for its own static fire test. On the same day, SpaceX hot-fired the Starship upper stage once again on a test stand next to the launch pad.\n\nRead 18 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2024/01/elon-musk-spacex-needs-to-build-starships-as-often-as-boeing-builds-737s/#comments", + "content": "\"Ship production needs to be roughly an order of magnitude higher than booster production.\"", + "contentSnippet": "\"Ship production needs to be roughly an order of magnitude higher than booster production.\"", + "guid": "https://arstechnica.com/?p=1993759", + "categories": ["Space", "Elon Musk", "Mars", "spacex", "starship"], + "isoDate": "2024-01-05T01:26:25.000Z" + }, + { + "creator": "Dan Goodin", + "title": "A \u201cridiculously weak\u201c password causes disaster for Spain\u2019s No. 2 mobile carrier", + "link": "https://arstechnica.com/?p=1993801", + "pubDate": "Fri, 05 Jan 2024 00:01:59 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Orange Espa\u00f1a, Spain\u2019s second-biggest mobile operator, suffered a major outage on Wednesday after an unknown party obtained a \u201cridiculously weak\u201d password and used it to access an account for managing the global routing table that controls which networks deliver the company's Internet traffic, researchers said.

\n

The hijacking began around 9:28 Coordinated Universal Time (about 2:28 Pacific time) when the party logged into Orange\u2019s RIPE NCC account using the password \u201cripeadmin\u201d (minus the quotation marks). The RIPE Network Coordination Center is one of five Regional Internet Registries, which are responsible for managing and allocating IP addresses to Internet service providers, telecommunication organizations, and companies that manage their own network infrastructure. RIPE serves 75 countries in Europe, the Middle East, and Central Asia.

\n

\u201cThings got ugly\u201d

\n

The password came to light after the party, using the moniker Snow, posted an image to social media that showed the orange.es email address associated with the RIPE account. RIPE said it's working on ways to beef up account security.

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nOrange Espa\u00f1a, Spain\u2019s second-biggest mobile operator, suffered a major outage on Wednesday after an unknown party obtained a \u201cridiculously weak\u201d password and used it to access an account for managing the global routing table that controls which networks deliver the company's Internet traffic, researchers said.\nThe hijacking began around 9:28 Coordinated Universal Time (about 2:28 Pacific time) when the party logged into Orange\u2019s RIPE NCC account using the password \u201cripeadmin\u201d (minus the quotation marks). The RIPE Network Coordination Center is one of five Regional Internet Registries, which are responsible for managing and allocating IP addresses to Internet service providers, telecommunication organizations, and companies that manage their own network infrastructure. RIPE serves 75 countries in Europe, the Middle East, and Central Asia.\n\u201cThings got ugly\u201d\nThe password came to light after the party, using the moniker Snow, posted an image to social media that showed the orange.es email address associated with the RIPE account. RIPE said it's working on ways to beef up account security.\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2024/01/a-ridiculously-weak-password-causes-disaster-for-spains-no-2-mobile-carrier/#comments", + "content": "BGP tampering caused by poor security hygiene causes major outage for Orange Espa\u00f1a.", + "contentSnippet": "BGP tampering caused by poor security hygiene causes major outage for Orange Espa\u00f1a.", + "guid": "https://arstechnica.com/?p=1993801", + "categories": ["Biz & IT", "Security", "BGP", "boder gateway protocol"], + "isoDate": "2024-01-05T00:01:59.000Z" + }, + { + "creator": "Kyle Orland", + "title": "1D Pac-Man is the best game I\u2019ve played in 2024 (so far)", + "link": "https://arstechnica.com/?p=1993804", + "pubDate": "Thu, 04 Jan 2024 23:11:11 +0000", + "content:encoded": "
\n
\n \"I\n

Enlarge / I didn't write this story just to share that high score in the corner, but I won't say it had nothing to do with the choice. (credit: ABA Games)

\n\n\n\n\n\n\n
\n

When looking back at the short history of video game design, the '90s and '00s transition from primarily 2D games to primarily 3D games is rightly seen as one of the biggest revolutions in the industry. But my discovery this week of the one-dimensional, Pac-Man-inspired Paku Paku makes me wish that the game industry had some sort of pre-history where clever 1D games like this were the norm. It also makes me wish I had been quicker to discover more of the work of extremely prolific and clever game designer Kenta Cho, who made the game.

\n

In Paku Paku, Pac-Man's 2D maze of 240 dots has been replaced with 16 dots arranged in a single line. Your six-pixel tall dot-muncher (the graphics are 2D, even as the gameplay uses only one dimension) is forced to forever travel either left or right along this line, trying to eat all the dots while avoiding a single red ghost (who moves just a bit faster than the player). To do this, the player can use a single power pellet (which makes the ghost edible for a short while) or the screen-wrapping tunnels on either side of the line (which the ghost can't use).

\n

Read 9 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / I didn't write this story just to share that high score in the corner, but I won't say it had nothing to do with the choice. (credit: ABA Games)\n \n\n\n\n\n\n\n\nWhen looking back at the short history of video game design, the '90s and '00s transition from primarily 2D games to primarily 3D games is rightly seen as one of the biggest revolutions in the industry. But my discovery this week of the one-dimensional, Pac-Man-inspired Paku Paku makes me wish that the game industry had some sort of pre-history where clever 1D games like this were the norm. It also makes me wish I had been quicker to discover more of the work of extremely prolific and clever game designer Kenta Cho, who made the game.\nIn Paku Paku, Pac-Man's 2D maze of 240 dots has been replaced with 16 dots arranged in a single line. Your six-pixel tall dot-muncher (the graphics are 2D, even as the gameplay uses only one dimension) is forced to forever travel either left or right along this line, trying to eat all the dots while avoiding a single red ghost (who moves just a bit faster than the player). To do this, the player can use a single power pellet (which makes the ghost edible for a short while) or the screen-wrapping tunnels on either side of the line (which the ghost can't use).\n\nRead 9 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/gaming/2024/01/1d-pac-man-is-the-best-game-ive-played-in-2024-so-far/#comments", + "content": "An appreciation of \"small games\" and the people who make them.", + "contentSnippet": "An appreciation of \"small games\" and the people who make them.", + "guid": "https://arstechnica.com/?p=1993804", + "categories": [ + "Gaming", + "1D", + "Game Design", + "one-dimensional", + "Pac-Man", + "short games" + ], + "isoDate": "2024-01-04T23:11:11.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "How to avoid the cognitive hooks and habits that make us vulnerable to cons", + "link": "https://arstechnica.com/?p=1993161", + "pubDate": "Thu, 04 Jan 2024 21:49:21 +0000", + "content:encoded": "
\n
\n \"Daniel\n

Enlarge / Daniel Simons and Christopher Chabris are the authors of Nobody's Fool: Why We Get Taken In and What We Can Do About It. (credit: Basic Books)

\n\n\n\n\n

There's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: A conversation with psychologists Daniel Simons and Christopher Chabris on the key habits of thinking and reasoning that may serve us well most of the time, but can make us vulnerable to being fooled.

\n \n\n
\n

It's one of the most famous experiments in psychology. Back in 1999, Daniel Simons and Christopher Chabris conducted an experiment on inattentional blindness. They asked test subjects to watch a short video in which six people\u2014half in white T-shirts, half in black ones\u2014passed basketballs around. The subjects were asked to count the number of passes made by the people in white shirts. Halfway through the video, a person in a gorilla suit walked into the midst of the players and thumped their chest at the camera before strolling off-screen. What surprised the researchers was that fully half the test subjects were so busy counting the number of basketball passes that they never saw the gorilla.

\n

The experiment became a viral sensation\u2014helped by the amusing paper title, \"Gorillas in Our Midst\"\u2014and snagged Simons and Chabris the 2004 Ig Nobel Psychology Prize. It also became the basis of their bestselling 2010 book, The Invisible Gorilla: How Our Intuitions Deceive Us. Thirteen years later, the two psychologists are back with their latest book, published last July, called Nobody's Fool: Why We Get Taken In and What We Can Do About It. \u00a0Simons and Chabris have penned an entertaining examination of key habits of thinking that usually serve us well but also make us vulnerable to cons and scams. They also offer some practical tools based on cognitive science to help us spot deceptions before being taken in.

Read 29 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Daniel Simons and Christopher Chabris are the authors of Nobody's Fool: Why We Get Taken In and What We Can Do About It. (credit: Basic Books)\n \n\n\n\n\n \nThere's rarely time to write about every cool science-y story that comes our way. So this year, we're once again running a special Twelve Days of Christmas series of posts, highlighting one science story that fell through the cracks in 2023, each day from December 25 through January 5. Today: A conversation with psychologists Daniel Simons and Christopher Chabris on the key habits of thinking and reasoning that may serve us well most of the time, but can make us vulnerable to being fooled.\n\nIt's one of the most famous experiments in psychology. Back in 1999, Daniel Simons and Christopher Chabris conducted an experiment on inattentional blindness. They asked test subjects to watch a short video in which six people\u2014half in white T-shirts, half in black ones\u2014passed basketballs around. The subjects were asked to count the number of passes made by the people in white shirts. Halfway through the video, a person in a gorilla suit walked into the midst of the players and thumped their chest at the camera before strolling off-screen. What surprised the researchers was that fully half the test subjects were so busy counting the number of basketball passes that they never saw the gorilla.\nThe experiment became a viral sensation\u2014helped by the amusing paper title, \"Gorillas in Our Midst\"\u2014and snagged Simons and Chabris the 2004 Ig Nobel Psychology Prize. It also became the basis of their bestselling 2010 book, The Invisible Gorilla: How Our Intuitions Deceive Us. Thirteen years later, the two psychologists are back with their latest book, published last July, called Nobody's Fool: Why We Get Taken In and What We Can Do About It. \u00a0Simons and Chabris have penned an entertaining examination of key habits of thinking that usually serve us well but also make us vulnerable to cons and scams. They also offer some practical tools based on cognitive science to help us spot deceptions before being taken in.\n\nRead 29 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/science/2024/01/how-to-avoid-the-cognitive-hooks-and-habits-that-make-us-vulnerable-to-cons/#comments", + "content": "Psychologists behind \"invisible gorilla\" study are back with a new book: Nobody's Fool.", + "contentSnippet": "Psychologists behind \"invisible gorilla\" study are back with a new book: Nobody's Fool.", + "guid": "https://arstechnica.com/?p=1993161", + "categories": [ + "Science", + "12 days of Christmas", + "books", + "cognitive bias", + "cognitive science", + "human cognition", + "psychology", + "science of cons" + ], + "isoDate": "2024-01-04T21:49:21.000Z" + }, + { + "creator": "Kevin Purdy", + "title": "Portal 64 is an N64 demake of Valve\u2019s classic, now available as a \u201cFirst Slice\u201d", + "link": "https://arstechnica.com/?p=1993742", + "pubDate": "Thu, 04 Jan 2024 20:45:47 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / Remember, this is the N64 platform running a game released at least five years after the console's general life cycle ended. (credit: Valve/James Lambert)

\n\n\n\n\n\n\n
\n

James Lambert has spent years making something with no practical reason to exist: a version of Portal that runs on the Nintendo 64. And not some 2D version, either, but the real, blue-and-orange-oval, see-yourself-sideways Portal experience. And now he has a \"First Slice\" of Portal 64 ready for anyone who wants to try it. It's out of beta, and it's free.

\n

A \"First Slice\" means that 13 of the original game's test chambers are finished. Lambert intends to get to all of the original's 19 chambers. PC Gamer, where we first saw this project, suggests that Lambert might also try to get the additional 14 levels in the Xbox Live-only Portal: Still Alive.

\n

So why is Lambert doing this\u2014and for free? Lambert enlists an AI-trained version of Cave Johnson's voice to answer that question at the start of his announcement video. \"This is Aperture Science,\" it says, \"where we don't ask why. We ask: why the heck not?\"

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Remember, this is the N64 platform running a game released at least five years after the console's general life cycle ended. (credit: Valve/James Lambert)\n \n\n\n\n\n\n\n\nJames Lambert has spent years making something with no practical reason to exist: a version of Portal that runs on the Nintendo 64. And not some 2D version, either, but the real, blue-and-orange-oval, see-yourself-sideways Portal experience. And now he has a \"First Slice\" of Portal 64 ready for anyone who wants to try it. It's out of beta, and it's free.\nA \"First Slice\" means that 13 of the original game's test chambers are finished. Lambert intends to get to all of the original's 19 chambers. PC Gamer, where we first saw this project, suggests that Lambert might also try to get the additional 14 levels in the Xbox Live-only Portal: Still Alive.\nSo why is Lambert doing this\u2014and for free? Lambert enlists an AI-trained version of Cave Johnson's voice to answer that question at the start of his announcement video. \"This is Aperture Science,\" it says, \"where we don't ask why. We ask: why the heck not?\"\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Kevin Purdy", + "comments": "https://arstechnica.com/gaming/2024/01/portal-64-is-an-n64-demake-of-valves-classic-now-available-as-a-first-slice/#comments", + "content": "It's shocking how good the Portal Gun feels on late 1990s tech.", + "contentSnippet": "It's shocking how good the Portal Gun feels on late 1990s tech.", + "guid": "https://arstechnica.com/?p=1993742", + "categories": [ + "Gaming", + "demake", + "Homebrew", + "n64", + "Nintendo 64", + "Portal", + "Valve", + "Valve Software" + ], + "isoDate": "2024-01-04T20:45:47.000Z" + }, + { + "creator": "Elizabeth Rayne", + "title": "Wearable solar-powered gadget automatically regulates body temperature", + "link": "https://arstechnica.com/?p=1993722", + "pubDate": "Thu, 04 Jan 2024 19:44:29 +0000", + "content:encoded": "
\n
\n \"Image\n

Enlarge / While the devices probably aren't compact enough for casual wear, they could integrate with technical clothing. (credit: NASA)

\n\n\n\n\n\n\n
\n

There is only so much heat\u2014or cold\u2014that the human body can take. This can be a problem in extreme environments, from subzero polar temperatures to the ruthless heat of the Sahara, and it doesn\u2019t stop at Earth. Maintaining temperature is also an issue for astronauts. The vacuum of space is a gargantuan freezer, and exposure to direct sunlight out there can be just as brutal as the cold.

\n

Clothing tech that regulates body temperature usually goes only one way: heating or cooling. It also tends to be bulky and needs substantial energy that eventually drains any batteries. What if there was a system that both heat and cool while running on a constant renewable energy source?

\n

A team of researchers, led by Ziyuan Wang of Nankai University in Tianjin, China, has created a flexible, solar-powered device that can be incorporated into clothing and regulate the body by actively heating or cooling the skin. It also works continuously for 24 hours and only needs sunlight to recharge.

Read 9 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / While the devices probably aren't compact enough for casual wear, they could integrate with technical clothing. (credit: NASA)\n \n\n\n\n\n\n\n\nThere is only so much heat\u2014or cold\u2014that the human body can take. This can be a problem in extreme environments, from subzero polar temperatures to the ruthless heat of the Sahara, and it doesn\u2019t stop at Earth. Maintaining temperature is also an issue for astronauts. The vacuum of space is a gargantuan freezer, and exposure to direct sunlight out there can be just as brutal as the cold.\nClothing tech that regulates body temperature usually goes only one way: heating or cooling. It also tends to be bulky and needs substantial energy that eventually drains any batteries. What if there was a system that both heat and cool while running on a constant renewable energy source?\nA team of researchers, led by Ziyuan Wang of Nankai University in Tianjin, China, has created a flexible, solar-powered device that can be incorporated into clothing and regulate the body by actively heating or cooling the skin. It also works continuously for 24 hours and only needs sunlight to recharge.\n\nRead 9 remaining paragraphs | Comments", + "dc:creator": "Elizabeth Rayne", + "comments": "https://arstechnica.com/science/2024/01/wearable-solar-powered-gadget-automatically-regulates-body-temperature/#comments", + "content": "Made of flexible polymers, it could potentially fit in technical clothing.", + "contentSnippet": "Made of flexible polymers, it could potentially fit in technical clothing.", + "guid": "https://arstechnica.com/?p=1993722", + "categories": [ + "Science", + "clothing", + "electrocaloric", + "heat pump", + "materials science", + "photovoltaic" + ], + "isoDate": "2024-01-04T19:44:29.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "TurboTax maker Intuit\u2019s $100 million tax credits challenged by US lawmakers", + "link": "https://arstechnica.com/?p=1993732", + "pubDate": "Thu, 04 Jan 2024 19:29:14 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Getty Images | SOPA Images )

\n\n\n\n\n\n\n
\n

TurboTax maker Intuit's tax breaks are being questioned by four US lawmakers who object to the federal research tax credits claimed by the company. A letter sent this week claims that the amount of Intuit's tax credit could have been used by the Internal Revenue Service to offer free online tax filing to many Americans.

\n

\"We write regarding Intuit's recent disclosure that your company received $94 million in federal research tax credits in 2022,\" the letter said. \"For years, Intuit's corporate lobbyists have argued that the federal government should not set up a program for Americans to file their taxes online and for free because it would be too costly for taxpayers. Your company's disclosure reveals that Intuit's research tax break from 2022 alone could have been enough to fund a year of a free eFile program for millions of Americans.\"

\n

The letter was sent to Intuit CEO Sasan Goodarzi by US Senators Elizabeth Warren (D-Mass.), Richard Blumenthal (D-Conn.), Bernie Sanders (I-Vt.), and US Representative Katie Porter (D-Calif.)

Read 17 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | SOPA Images )\n \n\n\n\n\n\n\n\nTurboTax maker Intuit's tax breaks are being questioned by four US lawmakers who object to the federal research tax credits claimed by the company. A letter sent this week claims that the amount of Intuit's tax credit could have been used by the Internal Revenue Service to offer free online tax filing to many Americans.\n\"We write regarding Intuit's recent disclosure that your company received $94 million in federal research tax credits in 2022,\" the letter said. \"For years, Intuit's corporate lobbyists have argued that the federal government should not set up a program for Americans to file their taxes online and for free because it would be too costly for taxpayers. Your company's disclosure reveals that Intuit's research tax break from 2022 alone could have been enough to fund a year of a free eFile program for millions of Americans.\"\nThe letter was sent to Intuit CEO Sasan Goodarzi by US Senators Elizabeth Warren (D-Mass.), Richard Blumenthal (D-Conn.), Bernie Sanders (I-Vt.), and US Representative Katie Porter (D-Calif.)\n\nRead 17 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/turbotax-maker-intuits-100-million-tax-credits-challenged-by-us-lawmakers/#comments", + "content": "Senators want full accounting of research expenses behind \"massive tax breaks.\"", + "contentSnippet": "Senators want full accounting of research expenses behind \"massive tax breaks.\"", + "guid": "https://arstechnica.com/?p=1993732", + "categories": [ + "Policy", + "elizabeth warren intuit", + "intuit turbotax", + "irs free file" + ], + "isoDate": "2024-01-04T19:29:14.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "23andMe told victims of data breach that suing is futile, letter shows", + "link": "https://arstechnica.com/?p=1993685", + "pubDate": "Thu, 04 Jan 2024 19:13:07 +0000", + "content:encoded": "
\n
\n \"23andMe\n

Enlarge (credit: Bloomberg / Contributor | Bloomberg)

\n\n\n\n\n\n\n
\n

23andMe is \"shamelessly\" blaming victims of a data breach impacting 6.9 million users, a lawyer representing victims pursuing a class-action lawsuit, Hassan Zavareei, told TechCrunch.

\n

Zavareei shared a letter from 23andMe lawyers that urged users suing to \"consider the futility of continuing to pursue an action in this case,\" because their claims are allegedly meritless and \"the information that was potentially accessed cannot be used for any harm.\"

\n

Last year, hackers accessed 14,000 accounts on 23andMe by using passwords that had been previously breached during security incidents on other websites. By using this tactic, known as credential stuffing, hackers could access the personal data of millions of 23andMe users who opted into a DNA Relatives feature, including genetic information like the percentage of DNA shared with compromised users.

Read 24 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Bloomberg / Contributor | Bloomberg)\n \n\n\n\n\n\n\n\n23andMe is \"shamelessly\" blaming victims of a data breach impacting 6.9 million users, a lawyer representing victims pursuing a class-action lawsuit, Hassan Zavareei, told TechCrunch.\nZavareei shared a letter from 23andMe lawyers that urged users suing to \"consider the futility of continuing to pursue an action in this case,\" because their claims are allegedly meritless and \"the information that was potentially accessed cannot be used for any harm.\"\nLast year, hackers accessed 14,000 accounts on 23andMe by using passwords that had been previously breached during security incidents on other websites. By using this tactic, known as credential stuffing, hackers could access the personal data of millions of 23andMe users who opted into a DNA Relatives feature, including genetic information like the percentage of DNA shared with compromised users.\n\nRead 24 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2024/01/23andme-shamelessly-blaming-users-for-data-breach-lawyer-says/#comments", + "content": "Victims are still arguing that 23andMe's security measures were inadequate.", + "contentSnippet": "Victims are still arguing that 23andMe's security measures were inadequate.", + "guid": "https://arstechnica.com/?p=1993685", + "categories": [ + "Policy", + "23andme", + "ancestry data", + "California privacy rights act", + "credential stuffing", + "data breach", + "genetic data", + "online privacy", + "personal identifying information" + ], + "isoDate": "2024-01-04T19:13:07.000Z" + }, + { + "creator": "John Timmer", + "title": "All Science journals will now do an AI-powered check for image fraud", + "link": "https://arstechnica.com/?p=1993687", + "pubDate": "Thu, 04 Jan 2024 19:00:43 +0000", + "content:encoded": "
\n
\n \"All\n

(credit: Aurich Lawson)

\n\n\n\n\n\n\n
\n

On Thursday, the research publisher Science announced that all of its journals will begin using commercial software that automates the process of detecting improperly manipulated images. The move comes many years into our awareness that the transition to digital data and publishing has made it comically easy to commit research fraud by altering images.

\n

While the move is a significant first step, it's important to recognize the software's limitations. While it will catch some of the most egregious cases of image manipulation, enterprising fraudsters can easily avoid being caught if they know how the software operates. Which, unfortunately, we feel compelled to describe (and, to be fair, the company that has developed the software does so on its website).

\n

Fantastic fraud and how to catch it

\n

Much of the image-based fraud we've seen arises from a dilemma faced by many scientists: It's not a problem to run experiments, but the data they generate often isn't the data you want. Maybe only the controls work, or maybe the experiments produce data that is indistinguishable from controls. For the unethical, this doesn't pose a problem since nobody other than you knows what images come from which samples. It's relatively simple to present images of real data as something they're not.

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "(credit: Aurich Lawson)\n \n\n\n\n\n\n\n\nOn Thursday, the research publisher Science announced that all of its journals will begin using commercial software that automates the process of detecting improperly manipulated images. The move comes many years into our awareness that the transition to digital data and publishing has made it comically easy to commit research fraud by altering images.\nWhile the move is a significant first step, it's important to recognize the software's limitations. While it will catch some of the most egregious cases of image manipulation, enterprising fraudsters can easily avoid being caught if they know how the software operates. Which, unfortunately, we feel compelled to describe (and, to be fair, the company that has developed the software does so on its website).\nFantastic fraud and how to catch it\nMuch of the image-based fraud we've seen arises from a dilemma faced by many scientists: It's not a problem to run experiments, but the data they generate often isn't the data you want. Maybe only the controls work, or maybe the experiments produce data that is indistinguishable from controls. For the unethical, this doesn't pose a problem since nobody other than you knows what images come from which samples. It's relatively simple to present images of real data as something they're not.\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "John Timmer", + "comments": "https://arstechnica.com/science/2024/01/all-science-journals-will-now-do-an-ai-powered-check-for-image-fraud/#comments", + "content": "It will only catch the most blatant problems, but it's definitely overdue.", + "contentSnippet": "It will only catch the most blatant problems, but it's definitely overdue.", + "guid": "https://arstechnica.com/?p=1993687", + "categories": [ + "Science", + "AI", + "research fraud", + "science", + "Scientific publishing" + ], + "isoDate": "2024-01-04T19:00:43.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Qualcomm\u2019s XR2+ Gen 2 SoC sets up a wave of Apple Vision Pro competitors", + "link": "https://arstechnica.com/?p=1993664", + "pubDate": "Thu, 04 Jan 2024 18:33:07 +0000", + "content:encoded": "
\n
\n \"Qualcomm's\n

Enlarge / Qualcomm's XR reference device. (credit: Qualcomm)

\n\n\n\n\n\n\n
\n

The Apple Vision Pro is coming out sometime in early 2024, and since it is a VR/AR headset that runs iOS apps, Team Android would like to have a competitor available. Samsung, Google, and Qualcomm vaguely announced a mixed-reality partnership a year ago, which would have Qualcomm building chips, Google building software, and Samsung shipping products. Step 1 of this partnership has been announced: The Qualcomm Snapdragon XR2+ SoC, which will power many of these headsets from Samsung and others.

\n

Perhaps more interesting than the individual specs of Qualcomm's chip is all the partner talk surrounding the launch. Samsung says it's \"thrilled to collaborate with Qualcomm Technologies and Google in revolutionizing the mobile industry once more\" and promises a \"best-in-class XR experience for Galaxy users.\" Google is promising an \"immersive and spatial XR\" experience based on Android. Qualcomm is making a reference headset design based on the chip and says at least five companies have hardware in development, including Samsung, Google, HTC, Immersed, and Play for Dream.

\n\n

The XR2+ Gen 2 is an upgrade over the XR2 Gen 2 (non-plus) that came out in 2023 and shipped in the Meta Quest 3. The most significant difference is a bump in resolution, with the plus model supporting \"4.3K\" resolution per eye at 90 fps. The old chip only did 3K by 3K. The resolution of these headsets is critical, not just because games will look nicer, but if you're trying to display a virtual desktop and read text, you're pushing the resolution limits of current headsets.

Read 2 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Qualcomm's XR reference device. (credit: Qualcomm)\n \n\n\n\n\n\n\n\nThe Apple Vision Pro is coming out sometime in early 2024, and since it is a VR/AR headset that runs iOS apps, Team Android would like to have a competitor available. Samsung, Google, and Qualcomm vaguely announced a mixed-reality partnership a year ago, which would have Qualcomm building chips, Google building software, and Samsung shipping products. Step 1 of this partnership has been announced: The Qualcomm Snapdragon XR2+ SoC, which will power many of these headsets from Samsung and others.\nPerhaps more interesting than the individual specs of Qualcomm's chip is all the partner talk surrounding the launch. Samsung says it's \"thrilled to collaborate with Qualcomm Technologies and Google in revolutionizing the mobile industry once more\" and promises a \"best-in-class XR experience for Galaxy users.\" Google is promising an \"immersive and spatial XR\" experience based on Android. Qualcomm is making a reference headset design based on the chip and says at least five companies have hardware in development, including Samsung, Google, HTC, Immersed, and Play for Dream.\n\nA few specs for the XR2+ Gen 2 (credit: Qualcomm)\n\nThe XR2+ Gen 2 is an upgrade over the XR2 Gen 2 (non-plus) that came out in 2023 and shipped in the Meta Quest 3. The most significant difference is a bump in resolution, with the plus model supporting \"4.3K\" resolution per eye at 90 fps. The old chip only did 3K by 3K. The resolution of these headsets is critical, not just because games will look nicer, but if you're trying to display a virtual desktop and read text, you're pushing the resolution limits of current headsets.\n\nRead 2 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2024/01/qualcomms-xr2-gen-2-soc-sets-up-a-wave-of-apple-vision-pro-competitors/#comments", + "content": "Qualcomm says five companies are working on new headsets. ", + "contentSnippet": "Qualcomm says five companies are working on new headsets.", + "guid": "https://arstechnica.com/?p=1993664", + "categories": ["Tech", "android vr", "Qualcomm"], + "isoDate": "2024-01-04T18:33:07.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "A week with a Ford F-150 Lightning: This truck is too big for city life", + "link": "https://arstechnica.com/?p=1993852", + "pubDate": "Fri, 05 Jan 2024 15:46:07 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Jonathan Gitlin)

\n\n\n\n\n\n\n
\n

I seem to be thinking a lot about Ford's electric pickup truck, the F-150 Lightning. Earlier this week, we got the news of price cuts and price increases. Before that, there was a pending cut to planned production output. Taken as it is, it's just the all-electric version of America's favorite pickup\u2014and arguably the best version unless you need to pull something on the end of a trailer hitch.

\n

But the Lightning doesn't exist in a vacuum. Depending on who you talk to, it's a clever attempt to get Americans to go electric, an utterly familiar wrapper on a slab of new technology that, yes, still requires the owner to adjust their mindset a bit from the gasoline-powered way of thinking. To others, it's a white elephant, one that costs too much and languishes on dealership forecourts, proof positive that electrification is a thing other countries might bother with, but forget that here at home, cowboy.

\n

I've never found life to be quite that simple, and neither is the Lightning. Here in Washington, DC, the vehicle remains a rare sight\u2014the only time I've seen one in the wild, it belonged to the DC government's fleet of vehicles (its job was inspecting abandoned vehicles). Out west, it's much more common to see electric F-150s on the road, and last year, Ford sold about 40,000 Lightnings, despite halting production for a fire and then again to retool part of the line.

Read 14 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Jonathan Gitlin)\n \n\n\n\n\n\n\n\nI seem to be thinking a lot about Ford's electric pickup truck, the F-150 Lightning. Earlier this week, we got the news of price cuts and price increases. Before that, there was a pending cut to planned production output. Taken as it is, it's just the all-electric version of America's favorite pickup\u2014and arguably the best version unless you need to pull something on the end of a trailer hitch.\nBut the Lightning doesn't exist in a vacuum. Depending on who you talk to, it's a clever attempt to get Americans to go electric, an utterly familiar wrapper on a slab of new technology that, yes, still requires the owner to adjust their mindset a bit from the gasoline-powered way of thinking. To others, it's a white elephant, one that costs too much and languishes on dealership forecourts, proof positive that electrification is a thing other countries might bother with, but forget that here at home, cowboy.\nI've never found life to be quite that simple, and neither is the Lightning. Here in Washington, DC, the vehicle remains a rare sight\u2014the only time I've seen one in the wild, it belonged to the DC government's fleet of vehicles (its job was inspecting abandoned vehicles). Out west, it's much more common to see electric F-150s on the road, and last year, Ford sold about 40,000 Lightnings, despite halting production for a fire and then again to retool part of the line.\n\nRead 14 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2024/01/a-week-with-a-ford-f-150-lightning-this-truck-is-too-big-for-city-life/#comments", + "content": "The big electric pickup truck is out of the suburbs and out of its element.", + "contentSnippet": "The big electric pickup truck is out of the suburbs and out of its element.", + "guid": "https://arstechnica.com/?p=1993852", + "categories": [ + "Cars", + "car review", + "electric pickup truck", + "Ford F-150 Lightning" + ], + "isoDate": "2024-01-05T15:46:07.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "US judge blocks Ohio Republicans\u2019 \u201ctroublingly vague\u201d social media law", + "link": "https://arstechnica.com/?p=1995355", + "pubDate": "Thu, 11 Jan 2024 18:05:57 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | Matt Cardy )

\n\n\n\n\n\n\n
\n

A federal judge blocked an Ohio state law that would prevent minors from using social networks without parental consent, calling it a \"troublingly vague\" law that likely violates the First Amendment. Ohio's \"Parental Notification by Social Media Operators Act\" affects websites including Facebook, X (formerly Twitter), and YouTube.

\n

\"Foreclosing minors under sixteen from accessing all content on websites that the Act purports to cover, absent affirmative parental consent, is a breathtakingly blunt instrument for reducing social media's harm to children,\" US District Judge Algenon Marbley wrote in an order issued Tuesday. \"The approach is an untargeted one, as parents must only give one-time approval for the creation of an account, and parents and platforms are otherwise not required to protect against any of the specific dangers that social media might pose.\"

\n

While more in-depth arguments will be made later, Marbley called it \"unlikely that the government will be able to show that the Act is narrowly tailored to any ends that it identifies.\" Marbley, a judge in US District Court for the Southern District of Ohio, granted a motion for a temporary restraining order sought by tech-industry lobby group NetChoice. Marbley did not rule on NetChoice's related motion for a preliminary injunction but scheduled a February 7 hearing on the injunction request.

Read 20 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | Matt Cardy )\n \n\n\n\n\n\n\n\nA federal judge blocked an Ohio state law that would prevent minors from using social networks without parental consent, calling it a \"troublingly vague\" law that likely violates the First Amendment. Ohio's \"Parental Notification by Social Media Operators Act\" affects websites including Facebook, X (formerly Twitter), and YouTube.\n\"Foreclosing minors under sixteen from accessing all content on websites that the Act purports to cover, absent affirmative parental consent, is a breathtakingly blunt instrument for reducing social media's harm to children,\" US District Judge Algenon Marbley wrote in an order issued Tuesday. \"The approach is an untargeted one, as parents must only give one-time approval for the creation of an account, and parents and platforms are otherwise not required to protect against any of the specific dangers that social media might pose.\"\nWhile more in-depth arguments will be made later, Marbley called it \"unlikely that the government will be able to show that the Act is narrowly tailored to any ends that it identifies.\" Marbley, a judge in US District Court for the Southern District of Ohio, granted a motion for a temporary restraining order sought by tech-industry lobby group NetChoice. Marbley did not rule on NetChoice's related motion for a preliminary injunction but scheduled a February 7 hearing on the injunction request.\n\nRead 20 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/us-judge-blocks-ohio-republicans-troublingly-vague-social-media-law/#comments", + "content": "Judge calls law \"breathtakingly blunt instrument\" for reducing harm to children.", + "contentSnippet": "Judge calls law \"breathtakingly blunt instrument\" for reducing harm to children.", + "guid": "https://arstechnica.com/?p=1995355", + "categories": ["Policy", "ohio social media law"], + "isoDate": "2024-01-11T18:05:57.000Z" + }, + { + "creator": "Kyle Orland", + "title": "Why more PC gaming handhelds should ditch Windows for SteamOS", + "link": "https://arstechnica.com/?p=1995348", + "pubDate": "Thu, 11 Jan 2024 17:50:11 +0000", + "content:encoded": "
\n
\n \"Yes,\n

Enlarge / Yes, that is SteamOS. No, that is not a Steam Deck. (credit: Ayaneo)

\n\n\n\n\n\n\n
\n

Since the successful launch of the Steam Deck nearly two years ago, we've seen plenty of would-be competitors that have tried to mimic the Deck's portable form factor and ability to run PC games. Thus far, though, these competitors have all been missing one of the Steam Deck's best features: integration with the increasingly robust, Linux-based SteamOS 3.

\n

That's finally set to change with the just-announced Ayaneo Next Lite, the first non-Valve portable hardware set to come with SteamOS pre-installed. We can only hope this is the start of a trend, as Valve's gaming-focused operating system brings many advantages over gaming portables (and maybe desktops) that run a full Windows installation.

\n

A bespoke, portable gaming OS

\n

Ayaneo's announcement highlights a few vague-ish features of the Next Lite, including a 7-inch 800p screen, a 47 Wh battery, and drift-resistant hall-effect joysticks. But even though the announcement doesn't include a specific asking price, Ayaneo promises that the device \"integrates outstanding cost-effectiveness\" and will be \"the all-new cost-effective choice with flagship experiences.\"

Read 12 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Yes, that is SteamOS. No, that is not a Steam Deck. (credit: Ayaneo)\n \n\n\n\n\n\n\n\nSince the successful launch of the Steam Deck nearly two years ago, we've seen plenty of would-be competitors that have tried to mimic the Deck's portable form factor and ability to run PC games. Thus far, though, these competitors have all been missing one of the Steam Deck's best features: integration with the increasingly robust, Linux-based SteamOS 3.\nThat's finally set to change with the just-announced Ayaneo Next Lite, the first non-Valve portable hardware set to come with SteamOS pre-installed. We can only hope this is the start of a trend, as Valve's gaming-focused operating system brings many advantages over gaming portables (and maybe desktops) that run a full Windows installation.\nA bespoke, portable gaming OS\nAyaneo's announcement highlights a few vague-ish features of the Next Lite, including a 7-inch 800p screen, a 47 Wh battery, and drift-resistant hall-effect joysticks. But even though the announcement doesn't include a specific asking price, Ayaneo promises that the device \"integrates outstanding cost-effectiveness\" and will be \"the all-new cost-effective choice with flagship experiences.\"\n\nRead 12 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/gaming/2024/01/why-more-pc-gaming-handhelds-should-ditch-windows-for-steamos/#comments", + "content": "Next up: Could SteamOS 3 be coming to a desktop gaming rig near you?", + "contentSnippet": "Next up: Could SteamOS 3 be coming to a desktop gaming rig near you?", + "guid": "https://arstechnica.com/?p=1995348", + "categories": ["Gaming", "ayaneo", "steam machines", "steamos", "Valve"], + "isoDate": "2024-01-11T17:50:11.000Z" + }, + { + "creator": "Benj Edwards", + "title": "At Senate AI hearing, news executives fight against \u201cfair use\u201d claims for AI training data", + "link": "https://arstechnica.com/?p=1995191", + "pubDate": "Thu, 11 Jan 2024 16:37:11 +0000", + "content:encoded": "
\n
\n \"WASHINGTON,\n

Enlarge / Danielle Coffey, president and CEO of News Media Alliance; Professor Jeff Jarvis, CUNY Graduate School of Journalism; Curtis LeGeyt, president and CEO of National Association of Broadcasters; and Roger Lynch, CEO of Cond\u00e9 Nast, are sworn in during a Senate Judiciary Subcommittee on Privacy, Technology, and\u00a0the Law hearing on \u201cArtificial Intelligence and The Future Of Journalism.\u201d (credit: Getty Images)

\n\n\n\n\n\n\n
\n

On Wednesday, news industry executives urged Congress for legal clarification that using journalism to train AI assistants like ChatGPT is not fair use, as claimed by companies such as OpenAI. Instead, they would prefer a licensing regime for AI training content that would force Big Tech companies to pay for content in a method similar to rights clearinghouses for music.

\n\n

The plea for action came during a US Senate Judiciary Committee hearing titled \"Oversight of A.I.: The Future of Journalism,\" chaired by Sen. Richard Blumenthal of Connecticut, with Sen. Josh Hawley of Missouri also playing a large role in the proceedings. Last year, the pair of senators introduced a bipartisan framework for AI legislation and held a series of hearings on the impact of AI.

\n

Blumenthal described the situation as an \"existential crisis\" for the news industry and cited social media as a cautionary tale for legislative inaction about AI. \"We need to move more quickly than we did on social media and learn from our mistakes in the delay there,\" he said.

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Danielle Coffey, president and CEO of News Media Alliance; Professor Jeff Jarvis, CUNY Graduate School of Journalism; Curtis LeGeyt, president and CEO of National Association of Broadcasters; and Roger Lynch, CEO of Cond\u00e9 Nast, are sworn in during a Senate Judiciary Subcommittee on Privacy, Technology, and\u00a0the Law hearing on \u201cArtificial Intelligence and The Future Of Journalism.\u201d (credit: Getty Images)\n \n\n\n\n\n\n\n\nOn Wednesday, news industry executives urged Congress for legal clarification that using journalism to train AI assistants like ChatGPT is not fair use, as claimed by companies such as OpenAI. Instead, they would prefer a licensing regime for AI training content that would force Big Tech companies to pay for content in a method similar to rights clearinghouses for music.\nThe plea for action came during a US Senate Judiciary Committee hearing titled \"Oversight of A.I.: The Future of Journalism,\" chaired by Sen. Richard Blumenthal of Connecticut, with Sen. Josh Hawley of Missouri also playing a large role in the proceedings. Last year, the pair of senators introduced a bipartisan framework for AI legislation and held a series of hearings on the impact of AI.\nBlumenthal described the situation as an \"existential crisis\" for the news industry and cited social media as a cautionary tale for legislative inaction about AI. \"We need to move more quickly than we did on social media and learn from our mistakes in the delay there,\" he said.\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/information-technology/2024/01/at-senate-ai-hearing-news-executives-fight-against-fair-use-claims-for-ai-training-data/#comments", + "content": "Media orgs want AI firms to license content for training, and Congress is sympathetic.", + "contentSnippet": "Media orgs want AI firms to license content for training, and Congress is sympathetic.", + "guid": "https://arstechnica.com/?p=1995191", + "categories": [ + "AI", + "Biz & IT", + "AI regulation", + "ChatGPT", + "chatgtp", + "Conde Nast", + "Curtis LeGeyt", + "Danielle Coffey", + "government", + "Jeff Jarvis", + "Josh Hawley", + "machine learning", + "openai", + "Richard Blumenthal", + "Roger Lynch", + "Section 230", + "Senate Judiciary Committee", + "US government", + "US Senate" + ], + "isoDate": "2024-01-11T16:37:11.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Hertz is selling 20,000 used EVs due to high repair costs", + "link": "https://arstechnica.com/?p=1995291", + "pubDate": "Thu, 11 Jan 2024 15:22:12 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Hertz)

\n\n\n\n\n\n\n
\n

If you're looking for an electric car bargain and you're braver than the average bear, you might want to check out Hertz, the car rental agency. After announcing big plans to purchase tens of thousands of EVs from Tesla and then Polestar, it's now liquidating a third of that fleet, the company told investors.

\n

After Hertz went bankrupt during the early days of the pandemic, its big EV ambitions began in 2021, when the company revealed it wanted more than 20 percent of its rental fleet to be electric by 2022. To that end, it placed an order for 100,000 Tesla Model 3 sedans, then followed up with an order for 65,000 Polestar 2s.

\n

By early 2023, it was still far short of the ambitious goal, in large part due to Tesla's inability to actually fill that order in time, and EVs still represent just 11 percent of the total Hertz rental fleet. In total, the Hertz EV fleet is around 60,000 vehicles. But it may not actually be that upset at falling short\u2014it turns out that the electric rental cars haven't been the panacea it needed.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Hertz)\n \n\n\n\n\n\n\n\nIf you're looking for an electric car bargain and you're braver than the average bear, you might want to check out Hertz, the car rental agency. After announcing big plans to purchase tens of thousands of EVs from Tesla and then Polestar, it's now liquidating a third of that fleet, the company told investors.\nAfter Hertz went bankrupt during the early days of the pandemic, its big EV ambitions began in 2021, when the company revealed it wanted more than 20 percent of its rental fleet to be electric by 2022. To that end, it placed an order for 100,000 Tesla Model 3 sedans, then followed up with an order for 65,000 Polestar 2s.\nBy early 2023, it was still far short of the ambitious goal, in large part due to Tesla's inability to actually fill that order in time, and EVs still represent just 11 percent of the total Hertz rental fleet. In total, the Hertz EV fleet is around 60,000 vehicles. But it may not actually be that upset at falling short\u2014it turns out that the electric rental cars haven't been the panacea it needed.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2024/01/hertz-is-selling-20000-used-evs-due-to-high-repair-costs/#comments", + "content": "The rental car company will replace them with gasoline-powered vehicles.", + "contentSnippet": "The rental car company will replace them with gasoline-powered vehicles.", + "guid": "https://arstechnica.com/?p=1995291", + "categories": ["Cars", "electric vehicle adoption", "Hertz"], + "isoDate": "2024-01-11T15:22:12.000Z" + }, + { + "creator": "WIRED", + "title": "I found David Lynch\u2019s lost Dune II script", + "link": "https://arstechnica.com/?p=1995271", + "pubDate": "Thu, 11 Jan 2024 14:24:55 +0000", + "content:encoded": "
\n
\n \"Kyle\n

Enlarge / Kyle MacLachlan in Dune, 1984. (credit: Everett)

\n\n\n\n\n\n\n
\n

David Lynch\u2019s 1984 sci-fi epic Dune is\u2014in many ways\u2014a misbegotten botch job. Still, as with more than a few ineffectively ambitious films before it, the artistic flourishes Lynch grafted onto Frank Herbert\u2019s sprawling Machiavellian narrative of warring space dynasties have earned it true cult classic status. Today, fans of the film, which earned a paltry $30 million at the box office and truly bruising reviews upon its release, still wonder what Lynch would have done if given the opportunity to adapt the next two novels in Herbert\u2019s cycle: Dune Messiah and Children of Dune.

\n

Franchising was the plan before the first film crashed and burned, with Lynch and star Kyle MacLachlan (playing Paul Atreides) set to shoot both Dune sequels back-to-back in 1986. Miniature spaceship models, costumes, and props from the first film were placed in storage by producer Dino De Laurentiis for use on these follow-ups, while the director hammered away on a Dune II script. \u201cI wrote half a script for the second Dune. I really got into it because it wasn\u2019t a big story,\u201d he says in Lynch on Lynch, \u201cmore like a neighborhood story. It had some really cool things in it.\u201d

\n

During the two years I spent putting together my book A Masterpiece in Disarray: David Lynch\u2019s Dune\u2014An Oral History, I had no luck uncovering Lynch's script for Dune II, despite Frank Herbert telling Prevue magazine in December 1984 that he possessed a copy and was advising Lynch on it. \u201cNow that we speak the same \u2018language,\u2019 it\u2019s much easier for both of us to make progress, especially with the screenplays,\u201d Herbert told the publication. Then, in July 2023, within the Frank Herbert archives at California State University, Fullerton, I came across a slim folder with a sticky note declaring \u201cDune Messiah script revisions,\u201d addressed to the second floor of VFX man Barry Nolan\u2019s office in Burbank where Lynch supervised the final effects shoots and editing on Dune.

Read 44 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Kyle MacLachlan in Dune, 1984. (credit: Everett)\n \n\n\n\n\n\n\n\nDavid Lynch\u2019s 1984 sci-fi epic Dune is\u2014in many ways\u2014a misbegotten botch job. Still, as with more than a few ineffectively ambitious films before it, the artistic flourishes Lynch grafted onto Frank Herbert\u2019s sprawling Machiavellian narrative of warring space dynasties have earned it true cult classic status. Today, fans of the film, which earned a paltry $30 million at the box office and truly bruising reviews upon its release, still wonder what Lynch would have done if given the opportunity to adapt the next two novels in Herbert\u2019s cycle: Dune Messiah and Children of Dune.\nFranchising was the plan before the first film crashed and burned, with Lynch and star Kyle MacLachlan (playing Paul Atreides) set to shoot both Dune sequels back-to-back in 1986. Miniature spaceship models, costumes, and props from the first film were placed in storage by producer Dino De Laurentiis for use on these follow-ups, while the director hammered away on a Dune II script. \u201cI wrote half a script for the second Dune. I really got into it because it wasn\u2019t a big story,\u201d he says in Lynch on Lynch, \u201cmore like a neighborhood story. It had some really cool things in it.\u201d\nDuring the two years I spent putting together my book A Masterpiece in Disarray: David Lynch\u2019s Dune\u2014An Oral History, I had no luck uncovering Lynch's script for Dune II, despite Frank Herbert telling Prevue magazine in December 1984 that he possessed a copy and was advising Lynch on it. \u201cNow that we speak the same \u2018language,\u2019 it\u2019s much easier for both of us to make progress, especially with the screenplays,\u201d Herbert told the publication. Then, in July 2023, within the Frank Herbert archives at California State University, Fullerton, I came across a slim folder with a sticky note declaring \u201cDune Messiah script revisions,\u201d addressed to the second floor of VFX man Barry Nolan\u2019s office in Burbank where Lynch supervised the final effects shoots and editing on Dune.\n\nRead 44 remaining paragraphs | Comments", + "dc:creator": "WIRED", + "comments": "https://arstechnica.com/culture/2024/01/i-found-david-lynchs-lost-dune-ii-script/#comments", + "content": "The unfinished script, found in an archive, shows Lynch's enthusiasm for Dune.", + "contentSnippet": "The unfinished script, found in an archive, shows Lynch's enthusiasm for Dune.", + "guid": "https://arstechnica.com/?p=1995271", + "categories": [ + "Culture", + "David Lynch", + "Dune", + "Dune: Messiah", + "Frank Herbert", + "syndication" + ], + "isoDate": "2024-01-11T14:24:55.000Z" + }, + { + "creator": "Eric Berger", + "title": "Daily Telescope: A monster protostar in a distant nebula", + "link": "https://arstechnica.com/?p=1995207", + "pubDate": "Thu, 11 Jan 2024 13:00:25 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A great view of NGC 7538. (credit: Paul Buckley)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It's January 11, and today's image showcases a diffuse nebula known as NGC 7538, found in the constellation Cepheus.

\n

Located some 9,000 light-years from Earth, the nebula is a region of active star formation and produces a large amount of hydrogen\u2014which shows up in this image. The nebula contains a shockingly large protostar that is, astronomers estimate, some 300 times larger than our Solar System and has a mass of 2,000 Suns. Even as astronomical objects go, that's gargantuan.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A great view of NGC 7538. (credit: Paul Buckley)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light, a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we're going to take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It's January 11, and today's image showcases a diffuse nebula known as NGC 7538, found in the constellation Cepheus.\nLocated some 9,000 light-years from Earth, the nebula is a region of active star formation and produces a large amount of hydrogen\u2014which shows up in this image. The nebula contains a shockingly large protostar that is, astronomers estimate, some 300 times larger than our Solar System and has a mass of 2,000 Suns. Even as astronomical objects go, that's gargantuan.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2024/01/daily-telescope-a-monster-protostar-in-a-distant-nebula/#comments", + "content": "Even as astronomical objects go, that's a gargantuan protostar.", + "contentSnippet": "Even as astronomical objects go, that's a gargantuan protostar.", + "guid": "https://arstechnica.com/?p=1995207", + "categories": ["Science", "Space", "daily telescope"], + "isoDate": "2024-01-11T13:00:25.000Z" + }, + { + "creator": "Ars Contributors", + "title": "The largest US dam-removal effort to date has begun", + "link": "https://arstechnica.com/?p=1994887", + "pubDate": "Thu, 11 Jan 2024 12:00:45 +0000", + "content:encoded": "
\n
\n \"Image\n

Enlarge / The John C. Boyle Dam, one of the dams slated for removal. (credit: NOAA)

\n\n\n\n\n\n\n
\n

Wending its way from the Olympic Mountains to the Strait of Juan de Fuca, Washington\u2019s Elwha River is now free. For about century, the Elwha and Gilnes Canyon Dams corralled these waters. Both have since been removed, and the restoration of the watershed has started.

\n

The dam-removal project was the largest to date in the US\u2014though it won\u2019t hold that position for long. The Klamath River dam removal project has begun, with four of its six dams\u2014J.C. Boyle, Copco No. 1,\u202fCopco No. 2, and Iron Gate\u2014set to be scuppered by the end of the year, and the drawdown started this week. (In fact, Copco No. 2 is already gone.)

\n

Once the project is complete, the Klamath will run from Oregon to northwestern California largely unimpeded, allowing sediment, organic matter, and its restive waters to flow freely downriver while fish like salmon, trout, and other migratory species leap and wriggle their way upstream to spawn.

Read 27 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The John C. Boyle Dam, one of the dams slated for removal. (credit: NOAA)\n \n\n\n\n\n\n\n\nWending its way from the Olympic Mountains to the Strait of Juan de Fuca, Washington\u2019s Elwha River is now free. For about century, the Elwha and Gilnes Canyon Dams corralled these waters. Both have since been removed, and the restoration of the watershed has started.\nThe dam-removal project was the largest to date in the US\u2014though it won\u2019t hold that position for long. The Klamath River dam removal project has begun, with four of its six dams\u2014J.C. Boyle, Copco No. 1,\u202fCopco No. 2, and Iron Gate\u2014set to be scuppered by the end of the year, and the drawdown started this week. (In fact, Copco No. 2 is already gone.)\nOnce the project is complete, the Klamath will run from Oregon to northwestern California largely unimpeded, allowing sediment, organic matter, and its restive waters to flow freely downriver while fish like salmon, trout, and other migratory species leap and wriggle their way upstream to spawn.\n\nRead 27 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/science/2024/01/the-largest-us-dam-removal-effort-to-date-has-begun/#comments", + "content": "As US dams age, removal is always an option\u2014and it can be done well.", + "contentSnippet": "As US dams age, removal is always an option\u2014and it can be done well.", + "guid": "https://arstechnica.com/?p=1994887", + "categories": [ + "Features", + "Science", + "dams", + "geography", + "geology", + "hydrology", + "Sediment", + "water" + ], + "isoDate": "2024-01-11T12:00:45.000Z" + }, + { + "creator": "Scharon Harding", + "title": "VMware customers face uncertain future as Broadcom ends VMware partner programs", + "link": "https://arstechnica.com/?p=1995206", + "pubDate": "Wed, 10 Jan 2024 23:53:41 +0000", + "content:encoded": "
\n
\n \"VMware\n

Enlarge (credit: Getty)

\n\n\n\n\n\n\n
\n

VMware's new owner is ending the virtualization and cloud computing company's partner programs. It's unclear who or how many current partners will be able to sell VMware-related offerings after April 2024, leaving the potential for tens of thousands of businesses to be disrupted.

\n

Broadcom, which closed its VMware acquisition in November, told The Register in late December that \u201ceffective February 5, 2024, Broadcom will be transitioning VMware\u2019s partner programs to the invitation-only Broadcom Advantage Partner Program.\u201d This signaled the end of VMware's partnerships with solution providers, resellers, and distributors. But today\u2019s news reportedly reveals a final closure date for the cloud services provider partner program, which debuted in 2019.

\n

Today, The Register reported that Broadcom recently shared an end-of-partnership date specifically for VMware cloud service provider partners that work with VMware through the VMware Partner Connect Program that launched in 2020.

Read 10 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty)\n \n\n\n\n\n\n\n\nVMware's new owner is ending the virtualization and cloud computing company's partner programs. It's unclear who or how many current partners will be able to sell VMware-related offerings after April 2024, leaving the potential for tens of thousands of businesses to be disrupted.\nBroadcom, which closed its VMware acquisition in November, told The Register in late December that \u201ceffective February 5, 2024, Broadcom will be transitioning VMware\u2019s partner programs to the invitation-only Broadcom Advantage Partner Program.\u201d This signaled the end of VMware's partnerships with solution providers, resellers, and distributors. But today\u2019s news reportedly reveals a final closure date for the cloud services provider partner program, which debuted in 2019.\nToday, The Register reported that Broadcom recently shared an end-of-partnership date specifically for VMware cloud service provider partners that work with VMware through the VMware Partner Connect Program that launched in 2020.\n\nRead 10 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/information-technology/2024/01/broadcom-killing-vmware-partner-program-could-disrupt-thousands-of-businesses/#comments", + "content": "Only Broadcom's favorites will be able to sell VMware-related offerings. ", + "contentSnippet": "Only Broadcom's favorites will be able to sell VMware-related offerings.", + "guid": "https://arstechnica.com/?p=1995206", + "categories": [ + "Biz & IT", + "Broadcom", + "software", + "virtualization", + "vmware" + ], + "isoDate": "2024-01-10T23:53:41.000Z" + }, + { + "creator": "Beth Mole", + "title": "US verges on vaccination tipping point, faces thousands of needless deaths: FDA", + "link": "https://arstechnica.com/?p=1995211", + "pubDate": "Wed, 10 Jan 2024 23:18:29 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A child with measles. (credit: Greene, Charles Lyman)

\n\n\n\n\n\n\n
\n

The US may be heading to a \"dangerous vaccination tipping point,\" with immunization rates falling so low that population-level immunity is now at risk, and we will likely see thousands of needless deaths this respiratory virus season, two top officials for the Food and Drug Administration warned in a recent JAMA commentary.

\n

FDA Commissioner Robert Califf and top FDA vaccine regulator Peter Marks noted the profound benefits of vaccines\u2014which save millions of lives in the US each year\u2014and their established safety, which is monitored both passively and actively through multiple overlapping federal safety monitoring systems. And yet, \"an increasing number of people in the US are now declining vaccination for a variety of reasons, ranging from safety concerns to religious beliefs,\" thanks to the rise of anti-vaccine misinformation spread on social media and elsewhere on the Internet.

\n

Data from the Centers for Disease Control and Prevention last year found that, for the third consecutive year, vaccination rates among kindergartners had continued to slip, with rates of non-medical vaccination exemptions rising to an all-time high. There are now 10 states with vaccination exemption rates over 5 percent, meaning that even if clinicians and health officials manage to vaccinate all non-exempt children, the state will not be able to reach the target of 95 percent coverage needed to curb the spread of disease on a population level.

Read 6 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A child with measles. (credit: Greene, Charles Lyman)\n \n\n\n\n\n\n\n\nThe US may be heading to a \"dangerous vaccination tipping point,\" with immunization rates falling so low that population-level immunity is now at risk, and we will likely see thousands of needless deaths this respiratory virus season, two top officials for the Food and Drug Administration warned in a recent JAMA commentary.\nFDA Commissioner Robert Califf and top FDA vaccine regulator Peter Marks noted the profound benefits of vaccines\u2014which save millions of lives in the US each year\u2014and their established safety, which is monitored both passively and actively through multiple overlapping federal safety monitoring systems. And yet, \"an increasing number of people in the US are now declining vaccination for a variety of reasons, ranging from safety concerns to religious beliefs,\" thanks to the rise of anti-vaccine misinformation spread on social media and elsewhere on the Internet.\nData from the Centers for Disease Control and Prevention last year found that, for the third consecutive year, vaccination rates among kindergartners had continued to slip, with rates of non-medical vaccination exemptions rising to an all-time high. There are now 10 states with vaccination exemption rates over 5 percent, meaning that even if clinicians and health officials manage to vaccinate all non-exempt children, the state will not be able to reach the target of 95 percent coverage needed to curb the spread of disease on a population level.\n\nRead 6 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/science/2024/01/anti-vaccine-nonsense-will-likely-kill-thousands-this-season-fda-officials-say/#comments", + "content": "Top regulatory officials call for clinicians to speak up and drown out misinformation.", + "contentSnippet": "Top regulatory officials call for clinicians to speak up and drown out misinformation.", + "guid": "https://arstechnica.com/?p=1995211", + "categories": [ + "Health", + "Science", + "anti-vaccine", + "COVID-19", + "fda", + "flu", + "measles", + "outbreak", + "RSV", + "vaccination coverage", + "vaccine", + "vaccine hesitancy" + ], + "isoDate": "2024-01-10T23:18:29.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Diesel enginemaker agrees to nearly $2 billion in fines with feds and California", + "link": "https://arstechnica.com/?p=1995218", + "pubDate": "Wed, 10 Jan 2024 23:00:45 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Cummins)

\n\n\n\n\n\n\n
\n

Cummins, which makes diesel engines for trucks, among other products, will pay a record Clean Air Act civil penalty of $1.675 billion in a lawsuit brought by the US Department of Justice, the Environmental Protection Agency, and the California Air Resources Board.

\n

Like Volkswagen before it, Cummins was found to have fitted engines\u2014in this case, diesel engines installed in more than 630,000 Ram 2500 and Ram 3500 pickup trucks built between 2013\u20132019\u2014with illegal \"defeat device\" software that allowed the truck engines to pass emissions tests but then emit much more pollution while in operation. The DOJ said it also found undisclosed emissions software on an additional 330,000 trucks built between 2019 and 2023.

\n

Cummins must recall and repair the non-compliant engine software, extend the warranty period for some parts of those powertrains, fund and develop ways to reduce nitrogen oxides (NOx) from engine emissions, and implement procedures to prevent cheating in the future.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Cummins)\n \n\n\n\n\n\n\n\nCummins, which makes diesel engines for trucks, among other products, will pay a record Clean Air Act civil penalty of $1.675 billion in a lawsuit brought by the US Department of Justice, the Environmental Protection Agency, and the California Air Resources Board.\nLike Volkswagen before it, Cummins was found to have fitted engines\u2014in this case, diesel engines installed in more than 630,000 Ram 2500 and Ram 3500 pickup trucks built between 2013\u20132019\u2014with illegal \"defeat device\" software that allowed the truck engines to pass emissions tests but then emit much more pollution while in operation. The DOJ said it also found undisclosed emissions software on an additional 330,000 trucks built between 2019 and 2023.\nCummins must recall and repair the non-compliant engine software, extend the warranty period for some parts of those powertrains, fund and develop ways to reduce nitrogen oxides (NOx) from engine emissions, and implement procedures to prevent cheating in the future.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2024/01/diesel-enginemaker-agrees-to-nearly-2-billion-in-fines-with-feds-and-california/#comments", + "content": "More than 600,000 Ram trucks have Cummins engines with software defeat devices.", + "contentSnippet": "More than 600,000 Ram trucks have Cummins engines with software defeat devices.", + "guid": "https://arstechnica.com/?p=1995218", + "categories": [ + "Cars", + "Cummins", + "defeat device", + "diesel emissions", + "emissions cheating" + ], + "isoDate": "2024-01-10T23:00:45.000Z" + }, + { + "creator": "Dan Goodin", + "title": "Actively exploited 0-days in Ivanti VPN are letting hackers backdoor networks", + "link": "https://arstechnica.com/?p=1995172", + "pubDate": "Wed, 10 Jan 2024 22:18:15 +0000", + "content:encoded": "
\n
\n \n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Unknown threat actors are actively targeting two critical zero-day vulnerabilities that allow them to bypass two-factor authentication and execute malicious code inside networks that use a widely used virtual private network appliance sold by Ivanti, researchers said Wednesday.

\n

Ivanti reported bare-bones details concerning the zero-days in posts published on Wednesday that urged customers to follow mitigation guidance immediately. Tracked as CVE-2023-46805 and CVE-2024-21887, they reside in Ivanti Connect Secure, a VPN appliance often abbreviated as ICS. Formerly known as Pulse Secure, the widely used VPN has harbored previous zero-days in recent years that came under widespread exploitation, in some cases to devastating effect.

\n

Exploiters: Start your engines

\n

\u201cWhen combined, these two vulnerabilities make it trivial for attackers to run commands on the system,\u201d researchers from security firm Volexity wrote in a post summarizing their investigative findings of an attack that hit a customer last month. \u201cIn this particular incident, the attacker leveraged these exploits to steal configuration data, modify existing files, download remote files, and reverse tunnel from the ICS VPN appliance.\u201d Researchers Matthew Meltzer, Robert Jan Mora, Sean Koessel, Steven Adair, and Thomas Lancaster went on to write:

Read 10 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nUnknown threat actors are actively targeting two critical zero-day vulnerabilities that allow them to bypass two-factor authentication and execute malicious code inside networks that use a widely used virtual private network appliance sold by Ivanti, researchers said Wednesday.\nIvanti reported bare-bones details concerning the zero-days in posts published on Wednesday that urged customers to follow mitigation guidance immediately. Tracked as CVE-2023-46805 and CVE-2024-21887, they reside in Ivanti Connect Secure, a VPN appliance often abbreviated as ICS. Formerly known as Pulse Secure, the widely used VPN has harbored previous zero-days in recent years that came under widespread exploitation, in some cases to devastating effect.\nExploiters: Start your engines\n\u201cWhen combined, these two vulnerabilities make it trivial for attackers to run commands on the system,\u201d researchers from security firm Volexity wrote in a post summarizing their investigative findings of an attack that hit a customer last month. \u201cIn this particular incident, the attacker leveraged these exploits to steal configuration data, modify existing files, download remote files, and reverse tunnel from the ICS VPN appliance.\u201d Researchers Matthew Meltzer, Robert Jan Mora, Sean Koessel, Steven Adair, and Thomas Lancaster went on to write:\n\nRead 10 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2024/01/actively-exploited-0-days-in-ivanti-vpn-are-letting-hackers-backdoor-networks/#comments", + "content": "Organizations using Ivanti Connect Secure should take action at once.", + "contentSnippet": "Organizations using Ivanti Connect Secure should take action at once.", + "guid": "https://arstechnica.com/?p=1995172", + "categories": [ + "Biz & IT", + "Security", + "ivanti", + "ivanti connect secure", + "VPN", + "zerodays" + ], + "isoDate": "2024-01-10T22:18:15.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Detachable Lenovo laptop is two separate computers, runs Windows and Android", + "link": "https://arstechnica.com/?p=1995067", + "pubDate": "Wed, 10 Jan 2024 20:43:43 +0000", + "content:encoded": "
\n\n\n\n\n\n
\n
    \n
  • \n
    \n
    \"\"
    \n

    \n The Lenovo ThinkBook Plus Gen 5 Hybrid. It has two CPUs, two operating systems, and six speakers, and it generally sounds deeply complicated. [credit:\n Lenovo ]\n

    \n
    \n
  • \n
\n\n

Have you ever used a Windows laptop and thought, \"Gee, I really wish this was also an Android tablet\"? Does Lenovo have a product for you!

\n

The Lenovo ThinkBook Plus Gen 5 Hybrid laptop at CES 2024 is both a Windows laptop and an Android tablet. The bottom half contains all the usual Intel laptop parts, while the top half packs a Qualcomm chip and a whole duplicate set of computing components. A detachable screen lets both halves come apart and operate separately, and you'll be spending your life riding the line between the Windows and Android ecosystems. Because you're getting two separate computers, you'll also have to pay for two separate computers\u2014the device costs $2,000.

\n

Because the device houses two computers, you can separate them and run them at the same time. Of course, the tablet acts as an Android tablet when it's detached, but you can also plug the headless laptop base into a monitor and use Windows. Lenovo calls the tablet the \"Hybrid Tab\" while the bottom is the \"Hybrid Station,\" and the whole thing voltroned together forms the \"ThinkBook Plus Gen 5 Hybrid.\" The laptop base runs Windows 11 and has an Intel Core Ultra 7 processor, 32GB of RAM, a 1TB SSD, Intel graphics, and a 75 Whr battery. The tablet runs Android 13 on a Snapdragon 8+ gen 1 SoC, along with 12GB of RAM, 256GB of UFS 3.1 storage, and a 38 Whr battery.

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Have you ever used a Windows laptop and thought, \"Gee, I really wish this was also an Android tablet\"? Does Lenovo have a product for you!\nThe Lenovo ThinkBook Plus Gen 5 Hybrid laptop at CES 2024 is both a Windows laptop and an Android tablet. The bottom half contains all the usual Intel laptop parts, while the top half packs a Qualcomm chip and a whole duplicate set of computing components. A detachable screen lets both halves come apart and operate separately, and you'll be spending your life riding the line between the Windows and Android ecosystems. Because you're getting two separate computers, you'll also have to pay for two separate computers\u2014the device costs $2,000.\nBecause the device houses two computers, you can separate them and run them at the same time. Of course, the tablet acts as an Android tablet when it's detached, but you can also plug the headless laptop base into a monitor and use Windows. Lenovo calls the tablet the \"Hybrid Tab\" while the bottom is the \"Hybrid Station,\" and the whole thing voltroned together forms the \"ThinkBook Plus Gen 5 Hybrid.\" The laptop base runs Windows 11 and has an Intel Core Ultra 7 processor, 32GB of RAM, a 1TB SSD, Intel graphics, and a 75 Whr battery. The tablet runs Android 13 on a Snapdragon 8+ gen 1 SoC, along with 12GB of RAM, 256GB of UFS 3.1 storage, and a 38 Whr battery.\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2024/01/detachable-lenovo-laptop-is-two-separate-computers-runs-windows-and-android/#comments", + "content": "The Lenovo ThinkBook Plus Gen 5 Hybrid combines the best (?) of both worlds. ", + "contentSnippet": "The Lenovo ThinkBook Plus Gen 5 Hybrid combines the best (?) of both worlds.", + "guid": "https://arstechnica.com/?p=1995067", + "categories": ["Tech", "Lenovo"], + "isoDate": "2024-01-10T20:43:43.000Z" + }, + { + "creator": "Benj Edwards", + "title": "OpenAI\u2019s GPT Store lets ChatGPT users discover popular user-made chatbot roles", + "link": "https://arstechnica.com/?p=1994230", + "pubDate": "Wed, 10 Jan 2024 19:41:48 +0000", + "content:encoded": "
\n
\n \"Two\n

Enlarge (credit: Getty Images / Benj Edwards)

\n\n\n\n\n\n\n
\n

On Wednesday, OpenAI announced the launch of its GPT Store\u2014a way for ChatGPT users to share and discover custom chatbot roles called \"GPTs\"\u2014and ChatGPT Team, a collaborative ChatGPT workspace and subscription plan. OpenAI bills the new store as a way to \"help you find useful and popular custom versions of ChatGPT\" for members of Plus, Team, or Enterprise subscriptions.

\n\n

\"It\u2019s been two months since we announced GPTs, and users have already created over 3 million custom versions of ChatGPT,\" writes OpenAI in its promotional blog. \"Many builders have shared their GPTs for others to use. Today, we're starting to roll out the GPT Store to ChatGPT Plus, Team and Enterprise users so you can find useful and popular GPTs.\"

\n

OpenAI launched GPTs on November 6, 2023, as part of its DevDay event. Each GPT includes custom instructions and/or access to custom data or external APIs that can potentially make a custom GPT personality more useful than the vanilla ChatGPT-4 model. Before the GPT Store launch, paying ChatGPT users could create and share custom GPTs with others (by setting the GPT public and sharing a link to the GPT), but there was no central repository for browsing and discovering user-designed GPTs on the OpenAI website.

Read 6 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images / Benj Edwards)\n \n\n\n\n\n\n\n\nOn Wednesday, OpenAI announced the launch of its GPT Store\u2014a way for ChatGPT users to share and discover custom chatbot roles called \"GPTs\"\u2014and ChatGPT Team, a collaborative ChatGPT workspace and subscription plan. OpenAI bills the new store as a way to \"help you find useful and popular custom versions of ChatGPT\" for members of Plus, Team, or Enterprise subscriptions.\n\"It\u2019s been two months since we announced GPTs, and users have already created over 3 million custom versions of ChatGPT,\" writes OpenAI in its promotional blog. \"Many builders have shared their GPTs for others to use. Today, we're starting to roll out the GPT Store to ChatGPT Plus, Team and Enterprise users so you can find useful and popular GPTs.\"\nOpenAI launched GPTs on November 6, 2023, as part of its DevDay event. Each GPT includes custom instructions and/or access to custom data or external APIs that can potentially make a custom GPT personality more useful than the vanilla ChatGPT-4 model. Before the GPT Store launch, paying ChatGPT users could create and share custom GPTs with others (by setting the GPT public and sharing a link to the GPT), but there was no central repository for browsing and discovering user-designed GPTs on the OpenAI website.\n\nRead 6 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/information-technology/2024/01/openais-gpt-store-lets-chatgpt-users-discover-popular-user-made-chatbot-roles/#comments", + "content": "Like an app store, people can find novel ChatGPT personalities\u2014and some creators will get paid.", + "contentSnippet": "Like an app store, people can find novel ChatGPT personalities\u2014and some creators will get paid.", + "guid": "https://arstechnica.com/?p=1994230", + "categories": [ + "AI", + "Biz & IT", + "AI language models", + "AI models", + "App Store", + "ChatGPT", + "ChatGPT Enterprise", + "ChatGPT Plus", + "ChatGPT Team", + "chatgtp", + "GPT Store", + "GPTs", + "large language models", + "machine learning", + "openai", + "text synthesis" + ], + "isoDate": "2024-01-10T19:41:48.000Z" + }, + { + "creator": "Scharon Harding", + "title": "Portable monitors could make foldable-screen gadgets finally make sense", + "link": "https://arstechnica.com/?p=1994880", + "pubDate": "Wed, 10 Jan 2024 19:23:18 +0000", + "content:encoded": "
\n\n\n\n\n\n
\n
    \n
  • \n
    \n
    \"\"
    \n

    \n Asus plans to release this foldable OLED monitor in 2024. Electronics retailer Abt Electronics captured footage of it on display at CES. [credit:\n Abt Electronics/YouTube\n ]\n

    \n
    \n
  • \n
\n\n

Foldable screens have been bending their way into consumer gadgets over the last few years. But with skepticism about durability, pricing, image quality, and the necessity of such devices, foldable screens aren't mainstream. With those concerns in mind, I haven't had much interest in owning a foldable-screen gadget, even after using a foldable laptop for a month. However, the foldable portable monitor that Asus is showing at CES in Las Vegas this week is an application of foldable OLED that makes more sense to me than others.

\n

Asus' ZenScreen Fold OLED MQ17QH announced on Tuesday is a 17.3-inch portable monitor that can fold to a 12.5-inch size. The monitor has 2560\u00d71920 pixels for a pixel density of 184.97 pixels per inch. Other specs include a 100 percent DCI-P3 coverage claim and VESA DisplayHDR True Black 500 certification.

\n

When I think of the ways I use portable monitors, foldability makes more sense than it does with other device types. For example, I love working outside when possible, and an extra 17.3-inch screen that's easy to carry would make long work sessions with an ultraportable laptop more feasible. The Fold OLED's 17.3 inches is near the larger size for a portable monitor, but the fold and comparatively light weight should make it feel more transportable than similarly sized monitors that don't fold in half.

Read 25 remaining paragraphs | Comments

", + "content:encodedSnippet": "Abt Electronics/YouTube\n ]\n \nFoldable screens have been bending their way into consumer gadgets over the last few years. But with skepticism about durability, pricing, image quality, and the necessity of such devices, foldable screens aren't mainstream. With those concerns in mind, I haven't had much interest in owning a foldable-screen gadget, even after using a foldable laptop for a month. However, the foldable portable monitor that Asus is showing at CES in Las Vegas this week is an application of foldable OLED that makes more sense to me than others.\nAsus' ZenScreen Fold OLED MQ17QH announced on Tuesday is a 17.3-inch portable monitor that can fold to a 12.5-inch size. The monitor has 2560\u00d71920 pixels for a pixel density of 184.97 pixels per inch. Other specs include a 100 percent DCI-P3 coverage claim and VESA DisplayHDR True Black 500 certification.\nWhen I think of the ways I use portable monitors, foldability makes more sense than it does with other device types. For example, I love working outside when possible, and an extra 17.3-inch screen that's easy to carry would make long work sessions with an ultraportable laptop more feasible. The Fold OLED's 17.3 inches is near the larger size for a portable monitor, but the fold and comparatively light weight should make it feel more transportable than similarly sized monitors that don't fold in half.\n\nRead 25 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/gadgets/2024/01/portable-monitors-could-make-foldable-screen-gadgets-finally-make-sense/#comments", + "content": "Opinion: I'd rather have my secondary, portable screen fold than my phone or PC. ", + "contentSnippet": "Opinion: I'd rather have my secondary, portable screen fold than my phone or PC.", + "guid": "https://arstechnica.com/?p=1994880", + "categories": ["Tech", "ASUS", "CES", "foldable", "Monitors", "oled"], + "isoDate": "2024-01-10T19:23:18.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Amazon lays off 500 Twitch employees, hundreds more at MGM and Prime Video", + "link": "https://arstechnica.com/?p=1995102", + "pubDate": "Wed, 10 Jan 2024 18:29:00 +0000", + "content:encoded": "
\n
\n \"Twitch\n

Enlarge (credit: Getty Images | NurPhoto)

\n\n\n\n\n\n\n
\n

Amazon today is laying off 500 employees at Twitch and several hundred more at its MGM and Prime Video divisions, the company announced. The 500 job cuts at Twitch reportedly amount to 35 percent of the game-focused live-streaming platform's staff.

\n

Twitch CEO Dan Clancy announced the cuts in a blog post and email to staff. \"As you all know, we have worked hard over the last year to run our business as sustainably as possible. Unfortunately, we still have work to do to rightsize our company and I regret having to share that we are taking the painful step to reduce our headcount by just over 500 people across Twitch,\" Clancy wrote.

\n

Twitch is reportedly still unprofitable nine years after Amazon acquired it. Meanwhile, Senior VP of Prime Video and Amazon MGM Studios Mike Hopkins sent a memo to staff announcing the elimination of \"several hundred roles across the Prime Video and Amazon MGM Studios organization.\"

Read 10 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | NurPhoto)\n \n\n\n\n\n\n\n\nAmazon today is laying off 500 employees at Twitch and several hundred more at its MGM and Prime Video divisions, the company announced. The 500 job cuts at Twitch reportedly amount to 35 percent of the game-focused live-streaming platform's staff.\nTwitch CEO Dan Clancy announced the cuts in a blog post and email to staff. \"As you all know, we have worked hard over the last year to run our business as sustainably as possible. Unfortunately, we still have work to do to rightsize our company and I regret having to share that we are taking the painful step to reduce our headcount by just over 500 people across Twitch,\" Clancy wrote.\nTwitch is reportedly still unprofitable nine years after Amazon acquired it. Meanwhile, Senior VP of Prime Video and Amazon MGM Studios Mike Hopkins sent a memo to staff announcing the elimination of \"several hundred roles across the Prime Video and Amazon MGM Studios organization.\"\n\nRead 10 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/amazon-lays-off-500-twitch-employees-hundreds-more-at-mgm-and-prime-video/#comments", + "content": "Twitch reportedly still unprofitable, paid over $1 billion to streamers in 2023.", + "contentSnippet": "Twitch reportedly still unprofitable, paid over $1 billion to streamers in 2023.", + "guid": "https://arstechnica.com/?p=1995102", + "categories": ["Policy", "amazon layoffs", "twitch layoffs"], + "isoDate": "2024-01-10T18:29:00.000Z" + }, + { + "creator": "Eric Berger", + "title": "After its impressive first flight, here\u2019s what\u2019s next for the Vulcan rocket", + "link": "https://arstechnica.com/?p=1994949", + "pubDate": "Wed, 10 Jan 2024 18:20:45 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The business end of the Vulcan rocket performed flawlessly during its debut launch. (credit: United Launch Alliance)

\n\n\n\n\n\n\n
\n

Early Monday morning, the hefty Vulcan rocket streaked into orbit for the first time, nailing its performance targets and delivering a substantial success to United Launch Alliance on the vehicle's first test flight.

\n

Unfortunately for the mission's primary customer, Astrobotic, there was subsequently an issue with the lunar lander's propulsion system. However, Astrobotic was quick to clear Vulcan of any blame, saying the payload was delivered into the planned lunar trajectory without issue. \"There is no indication that the propulsion anomaly occurred as a result of the launch,\" Astrobotic said.

\n

Vulcan's debut was much-anticipated in the US launch community because the rocket provides a potentially viable competitor to the Falcon 9 and Falcon Heavy rockets flown by SpaceX. The US Space Force, in particular, has been waiting on Vulcan to fly dozens of payloads into orbit.

Read 16 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The business end of the Vulcan rocket performed flawlessly during its debut launch. (credit: United Launch Alliance)\n \n\n\n\n\n\n\n\nEarly Monday morning, the hefty Vulcan rocket streaked into orbit for the first time, nailing its performance targets and delivering a substantial success to United Launch Alliance on the vehicle's first test flight.\nUnfortunately for the mission's primary customer, Astrobotic, there was subsequently an issue with the lunar lander's propulsion system. However, Astrobotic was quick to clear Vulcan of any blame, saying the payload was delivered into the planned lunar trajectory without issue. \"There is no indication that the propulsion anomaly occurred as a result of the launch,\" Astrobotic said.\nVulcan's debut was much-anticipated in the US launch community because the rocket provides a potentially viable competitor to the Falcon 9 and Falcon Heavy rockets flown by SpaceX. The US Space Force, in particular, has been waiting on Vulcan to fly dozens of payloads into orbit.\n\nRead 16 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2024/01/after-its-impressive-first-flight-heres-whats-next-for-the-vulcan-rocket/#comments", + "content": "\"We anticipate some movements in the manifest.\"", + "contentSnippet": "\"We anticipate some movements in the manifest.\"", + "guid": "https://arstechnica.com/?p=1994949", + "categories": ["Science", "Space", "space", "ula", "vulcan"], + "isoDate": "2024-01-10T18:20:45.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "Astronomers think they finally know origin of enormous \u201ccosmic smoke rings\u201c", + "link": "https://arstechnica.com/?p=1994856", + "pubDate": "Wed, 10 Jan 2024 17:42:13 +0000", + "content:encoded": "
\n
\n \"Odd\n

Enlarge / Odd radio circles are large enough to contain galaxies in their centers and reach hundreds of thousands of light years across. (credit: Jayanne English / University of Manitoba)

\n\n\n\n\n\n\n
\n

The discovery of so-called \"odd radio circles\" several years ago had astronomers scrambling to find an explanation for these enormous regions of radio waves so far-reaching that they have galaxies at their centers. Scientists at the University of California, San Diego, think they have found the answer: outflowing galactic winds from exploding stars in so-called \"starburst\" galaxies. They described their findings in a new paper published in the journal Nature.

\n

\u201cThese galaxies are really interesting,\u201d said Alison Coil of the University of California, San Diego. \u201cThey occur when two big galaxies collide. The merger pushes all the gas into a very small region, which causes an intense burst of star formation. Massive stars burn out quickly, and when they die, they expel their gas as outflowing winds.\u201d

\n

As reported previously, the discovery arose from the Evolutionary Map of the Universe (EMU) project, which aims to take a census of\u00a0radio sources in the sky. Several years ago, Ray Norris, an astronomer at Western Sydney University and CSIRO in Australia, predicted the EMU project would make unexpected discoveries. He dubbed them \"WTFs.\" Anna Kapinska, an astronomer at the National Radio Astronomy Observatory (NRAO) was browsing through radio astronomy data collected by CSIRO's Australian Square Kilometer Array Pathfinder (ASKAP) telescope when she noticed several strange shapes that didn't seem to resemble any known type of object. Following Norris' nomenclature, she labeled them as possible WTFs. One of those was a picture of a ghostly circle of radio emission, \"hanging out in space like a cosmic smoke ring.\"

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Odd radio circles are large enough to contain galaxies in their centers and reach hundreds of thousands of light years across. (credit: Jayanne English / University of Manitoba)\n \n\n\n\n\n\n\n\nThe discovery of so-called \"odd radio circles\" several years ago had astronomers scrambling to find an explanation for these enormous regions of radio waves so far-reaching that they have galaxies at their centers. Scientists at the University of California, San Diego, think they have found the answer: outflowing galactic winds from exploding stars in so-called \"starburst\" galaxies. They described their findings in a new paper published in the journal Nature.\n\u201cThese galaxies are really interesting,\u201d said Alison Coil of the University of California, San Diego. \u201cThey occur when two big galaxies collide. The merger pushes all the gas into a very small region, which causes an intense burst of star formation. Massive stars burn out quickly, and when they die, they expel their gas as outflowing winds.\u201d\nAs reported previously, the discovery arose from the Evolutionary Map of the Universe (EMU) project, which aims to take a census of\u00a0radio sources in the sky. Several years ago, Ray Norris, an astronomer at Western Sydney University and CSIRO in Australia, predicted the EMU project would make unexpected discoveries. He dubbed them \"WTFs.\" Anna Kapinska, an astronomer at the National Radio Astronomy Observatory (NRAO) was browsing through radio astronomy data collected by CSIRO's Australian Square Kilometer Array Pathfinder (ASKAP) telescope when she noticed several strange shapes that didn't seem to resemble any known type of object. Following Norris' nomenclature, she labeled them as possible WTFs. One of those was a picture of a ghostly circle of radio emission, \"hanging out in space like a cosmic smoke ring.\"\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/science/2024/01/astronomers-think-they-finally-know-origin-of-enormous-cosmic-smoke-rings/#comments", + "content": "Massive stars burn out quickly. When they die, they expel their gas as outflowing winds.", + "contentSnippet": "Massive stars burn out quickly. When they die, they expel their gas as outflowing winds.", + "guid": "https://arstechnica.com/?p=1994856", + "categories": [ + "Science", + "astronomy", + "astrophysics", + "galactic winds", + "Odd Radio Circles", + "Physics", + "science" + ], + "isoDate": "2024-01-10T17:42:13.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "SEC says X account was hacked as false post causes bitcoin price swings", + "link": "https://arstechnica.com/?p=1994996", + "pubDate": "Wed, 10 Jan 2024 16:50:55 +0000", + "content:encoded": "
\n
\n \"Gold\n

Enlarge (credit: Getty Images | Chesnot )

\n\n\n\n\n\n\n
\n

The Securities and Exchange Commission's X account was hacked yesterday and briefly displayed a post falsely announcing the approval of bitcoin exchange-traded funds (ETFs), causing an abrupt swing in bitcoin's price.

\n

\"The @SECGov X account was compromised, and an unauthorized post was posted,\" the SEC said after the hack. \"The SEC has not approved the listing and trading of spot bitcoin exchange-traded products.\" SEC Chair Gary Gensler also confirmed the hack and said the commission had not approved bitcoin ETFs.

\n

While the incident highlighted ongoing concerns about the security of government or organizational accounts on X, the social network formerly named Twitter said in a post on its safety account that there was no breach of its systems.

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | Chesnot )\n \n\n\n\n\n\n\n\nThe Securities and Exchange Commission's X account was hacked yesterday and briefly displayed a post falsely announcing the approval of bitcoin exchange-traded funds (ETFs), causing an abrupt swing in bitcoin's price.\n\"The @SECGov X account was compromised, and an unauthorized post was posted,\" the SEC said after the hack. \"The SEC has not approved the listing and trading of spot bitcoin exchange-traded products.\" SEC Chair Gary Gensler also confirmed the hack and said the commission had not approved bitcoin ETFs.\nWhile the incident highlighted ongoing concerns about the security of government or organizational accounts on X, the social network formerly named Twitter said in a post on its safety account that there was no breach of its systems.\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/sec-says-x-account-was-hacked-as-false-post-causes-bitcoin-price-swings/#comments", + "content": "X says hacker had control over phone number associated with SEC account.", + "contentSnippet": "X says hacker had control over phone number associated with SEC account.", + "guid": "https://arstechnica.com/?p=1994996", + "categories": ["Policy", "bitcoin etf", "sec bitcoin", "sec hack"], + "isoDate": "2024-01-10T16:50:55.000Z" + }, + { + "creator": "Kyle Orland", + "title": "Valve now allows the \u201cvast majority\u201d of AI-powered games on Steam", + "link": "https://arstechnica.com/?p=1995005", + "pubDate": "Wed, 10 Jan 2024 16:44:45 +0000", + "content:encoded": "
\n
\n \"Can\n

Can you tell which of these seemingly identical bits of Steam iconography were generated using AI (trick question, it's none of them). (credit: Aurich Lawson)

\n\n\n\n\n\n\n
\n

Last summer, Valve told Ars Technica that it was worried about potential legal issues surrounding games made with the assistance of AI models trained on copyrighted works and that it was \"working through how to integrate [AI] into our already-existing review policies.\" Today, the company is rolling out the results of that months-long review, announcing a new set of developer policies that it says \"will enable us to release the vast majority of games that use [AI tools].\"

\n

Developers that use AI-powered tools \"in the development [or] execution of your game\" will now be allowed to put their games on Steam so long as they disclose that usage in the standard Content Survey when submitting to Steam. Such AI integration will be separated into categories of \"pre-generated\" content that is \"created with the help of AI tools during development\" (e.g., using DALL-E for in-game images) and \"live-generated\" content that is \"created with the help of AI tools while the game is running\" (e.g., using Nvidia's AI-powered NPC technology).

\n

Those disclosures will be shared on the Steam store pages for these games, which should help players who want to avoid certain types of AI content. But disclosure will not be sufficient for games that use live-generated AI for \"Adult Only Sexual Content,\" which Valve says it is \"unable to release... right now.\"

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Can you tell which of these seemingly identical bits of Steam iconography were generated using AI (trick question, it's none of them). (credit: Aurich Lawson)\n \n\n\n\n\n\n\n\nLast summer, Valve told Ars Technica that it was worried about potential legal issues surrounding games made with the assistance of AI models trained on copyrighted works and that it was \"working through how to integrate [AI] into our already-existing review policies.\" Today, the company is rolling out the results of that months-long review, announcing a new set of developer policies that it says \"will enable us to release the vast majority of games that use [AI tools].\"\nDevelopers that use AI-powered tools \"in the development [or] execution of your game\" will now be allowed to put their games on Steam so long as they disclose that usage in the standard Content Survey when submitting to Steam. Such AI integration will be separated into categories of \"pre-generated\" content that is \"created with the help of AI tools during development\" (e.g., using DALL-E for in-game images) and \"live-generated\" content that is \"created with the help of AI tools while the game is running\" (e.g., using Nvidia's AI-powered NPC technology).\nThose disclosures will be shared on the Steam store pages for these games, which should help players who want to avoid certain types of AI content. But disclosure will not be sufficient for games that use live-generated AI for \"Adult Only Sexual Content,\" which Valve says it is \"unable to release... right now.\"\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/gaming/2024/01/valve-most-games-made-with-ai-tools-are-now-welcome-on-steam/#comments", + "content": "New reporting system will enforce \"guardrails\" for \"live-generated\" AI content.", + "contentSnippet": "New reporting system will enforce \"guardrails\" for \"live-generated\" AI content.", + "guid": "https://arstechnica.com/?p=1995005", + "categories": ["AI", "Gaming", "Steam", "vale"], + "isoDate": "2024-01-10T16:44:45.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Tesla\u2019s revamped Model 3 sedan has now gone on sale in the US", + "link": "https://arstechnica.com/?p=1994985", + "pubDate": "Wed, 10 Jan 2024 16:26:57 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / Look closely and you'll spot the changes to the 2024 Tesla Model 3. (credit: Tesla)

\n\n\n\n\n\n\n
\n

Tesla might not have the most expansive range among automakers\u2014the vast majority of its sales come from just two models. But it's hard to deny that the company has sold a lot of those EVs; in some areas, the only car you might see more than the Model 3 would be the similar-looking Model Y crossover. But now, the eagle-eyed among you may spot some subtle differences on new Tesla Model 3s as the company finally starts selling the restyled version here in North America.

\n

Tesla CEO Elon Musk unveiled the Model 3 in 2016, with customer deliveries starting the following year. Were Tesla any other automaker, a replacement model would almost certainly be in the works for 2025. But Tesla rarely uses the same playbook as its rivals, and it only gave the electric sedan a styling refresh after six years on sale rather than the more-usual four.

\n

The restyled 3, codenamed Highland, went on sale in China in September 2023, and European customers have been able to buy one since last October. But changes to the federal tax credit for clean vehicles may have delayed the introduction of the revised Model 3 here in the US\u2014for 2024, the car is no longer eligible for the credit.

Read 3 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Look closely and you'll spot the changes to the 2024 Tesla Model 3. (credit: Tesla)\n \n\n\n\n\n\n\n\nTesla might not have the most expansive range among automakers\u2014the vast majority of its sales come from just two models. But it's hard to deny that the company has sold a lot of those EVs; in some areas, the only car you might see more than the Model 3 would be the similar-looking Model Y crossover. But now, the eagle-eyed among you may spot some subtle differences on new Tesla Model 3s as the company finally starts selling the restyled version here in North America.\nTesla CEO Elon Musk unveiled the Model 3 in 2016, with customer deliveries starting the following year. Were Tesla any other automaker, a replacement model would almost certainly be in the works for 2025. But Tesla rarely uses the same playbook as its rivals, and it only gave the electric sedan a styling refresh after six years on sale rather than the more-usual four.\nThe restyled 3, codenamed Highland, went on sale in China in September 2023, and European customers have been able to buy one since last October. But changes to the federal tax credit for clean vehicles may have delayed the introduction of the revised Model 3 here in the US\u2014for 2024, the car is no longer eligible for the credit.\n\nRead 3 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2024/01/tesla-finally-brings-the-refreshed-2024-model-3-to-north-america/#comments", + "content": "The midlife upgrade was available in China and Europe last year.\n", + "contentSnippet": "The midlife upgrade was available in China and Europe last year.", + "guid": "https://arstechnica.com/?p=1994985", + "categories": ["Cars", "Tesla", "tesla model 3"], + "isoDate": "2024-01-10T16:26:57.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Biden administration awards $632M for EV charging in new funding round", + "link": "https://arstechnica.com/?p=1995441", + "pubDate": "Thu, 11 Jan 2024 19:59:27 +0000", + "content:encoded": "
\n
\n \"Young\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

The federal government's Joint Office of Energy and Transportation announced on Thursday $632 million in grants to fund clean vehicle infrastructure. Twenty-two states along with Puerto Rico will be the recipients of this first round of funding from the $2.5 billion Charging and Fueling Infrastructure program, which started accepting applications in March 2023.

\n

Although US carbon emissions fell last year, most of that was achieved through much cleaner energy generation. But when it comes to transportation's contribution to our annual carbon impact, that line is sadly still going up. Which is why it was encouraging that the Infrastructure Investment and Jobs Act of 2022 included $7.5 billion for clean vehicle infrastructure.

\n

Two-thirds of that was set aside for the National Electric Vehicle Infrastructure formula program. That $5 billion is being spent mostly on DC fast charging infrastructure, mostly at regular intervals along highway corridors, but also on charger reliability. Rather than paying for the chargers directly, the federal government is awarding it to states and metropolitan planning organizations the way it does with other highway formula funds.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nThe federal government's Joint Office of Energy and Transportation announced on Thursday $632 million in grants to fund clean vehicle infrastructure. Twenty-two states along with Puerto Rico will be the recipients of this first round of funding from the $2.5 billion Charging and Fueling Infrastructure program, which started accepting applications in March 2023.\nAlthough US carbon emissions fell last year, most of that was achieved through much cleaner energy generation. But when it comes to transportation's contribution to our annual carbon impact, that line is sadly still going up. Which is why it was encouraging that the Infrastructure Investment and Jobs Act of 2022 included $7.5 billion for clean vehicle infrastructure.\nTwo-thirds of that was set aside for the National Electric Vehicle Infrastructure formula program. That $5 billion is being spent mostly on DC fast charging infrastructure, mostly at regular intervals along highway corridors, but also on charger reliability. Rather than paying for the chargers directly, the federal government is awarding it to states and metropolitan planning organizations the way it does with other highway formula funds.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2024/01/biden-administration-awards-632m-for-ev-charging-in-new-funding-round/#comments", + "content": "The Infrastructure Investment and Jobs Act set aside $2.5 billion for underserved and rural areas.", + "contentSnippet": "The Infrastructure Investment and Jobs Act set aside $2.5 billion for underserved and rural areas.", + "guid": "https://arstechnica.com/?p=1995441", + "categories": [ + "Cars", + "CFI", + "charging infrastructure", + "infrastructure investment and jobs act", + "joint office", + "NEVI" + ], + "isoDate": "2024-01-11T19:59:27.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Google lays off \u201chundreds\u201d more employees, strips Google Assistant features", + "link": "https://arstechnica.com/?p=1995278", + "pubDate": "Thu, 11 Jan 2024 19:51:36 +0000", + "content:encoded": "
\n
\n \"Google\n

Enlarge / Google is looking pretty dilapidated these days. (credit: Aurich Lawson)

\n\n\n\n\n\n\n
\n

Google's cost-cutters are still working overtime, with more layoffs this week and cuts to Google Assistant functionality.

\n

First up, The New York Times reports Google laid off \"hundreds\" of workers in \"several divisions\" on Wednesday. Core engineering, the Google Assistant, and the hardware division all lost people. The report says that \"Google said that most of the hardware cuts affected a team working on augmented reality.\" AR cuts are eyebrow-raising since that's quickly going to be one of the highest-profile teams at the company this year, as Google, Samsung, and Qualcomm team up to battle the Apple Vision Pro. FitBit was apparently also a big loser, with 9to5Google reporting that Fitbit co-founders James Park and Eric Friedman and \"other Fitbit leaders\" have left Google.

\n

Over the years, Google has rarely laid off workers, but since January of last year, a new focus on cost-cutting has made layoffs a regular occurrence at Google. The purge started with an announcement of 12,000 layoffs in January, which took until at least March to complete. Then there were more layoffs at Alphabet companies Waymo and Everyday Robots in March, Waze layoffs in June, recruiting layoffs in September, Google News cuts in October, and now these layoffs in January. There are rumors of more layoffs happening this month, too, focusing on the ad sales division.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Google is looking pretty dilapidated these days. (credit: Aurich Lawson)\n \n\n\n\n\n\n\n\nGoogle's cost-cutters are still working overtime, with more layoffs this week and cuts to Google Assistant functionality.\nFirst up, The New York Times reports Google laid off \"hundreds\" of workers in \"several divisions\" on Wednesday. Core engineering, the Google Assistant, and the hardware division all lost people. The report says that \"Google said that most of the hardware cuts affected a team working on augmented reality.\" AR cuts are eyebrow-raising since that's quickly going to be one of the highest-profile teams at the company this year, as Google, Samsung, and Qualcomm team up to battle the Apple Vision Pro. FitBit was apparently also a big loser, with 9to5Google reporting that Fitbit co-founders James Park and Eric Friedman and \"other Fitbit leaders\" have left Google.\nOver the years, Google has rarely laid off workers, but since January of last year, a new focus on cost-cutting has made layoffs a regular occurrence at Google. The purge started with an announcement of 12,000 layoffs in January, which took until at least March to complete. Then there were more layoffs at Alphabet companies Waymo and Everyday Robots in March, Waze layoffs in June, recruiting layoffs in September, Google News cuts in October, and now these layoffs in January. There are rumors of more layoffs happening this month, too, focusing on the ad sales division.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2024/01/google-lays-off-hundreds-more-employees-strips-google-assistant-features/#comments", + "content": "Google's layoffs hit hardware, the Google Assistant, and even the AR division.", + "contentSnippet": "Google's layoffs hit hardware, the Google Assistant, and even the AR division.", + "guid": "https://arstechnica.com/?p=1995278", + "categories": ["Tech", "Google Assistant", "layoffs"], + "isoDate": "2024-01-11T19:51:36.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Actor paid to pose as crypto CEO \u201cdeeply sorry\u201d about $1.3 billion scam", + "link": "https://arstechnica.com/?p=1995403", + "pubDate": "Thu, 11 Jan 2024 19:29:43 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A screenshot from Jack Gamble's video outing Stephen Harrison as HyperVerse's fake CEO, posted on Gamble's \"Nobody Special Finance\" YouTube channel. (credit: Nobody Special Finance | YouTube)

\n\n\n\n\n\n\n
\n

An actor who was hired to pretend to be the highly qualified CEO of a shady, collapsed cryptocurrency hedge fund called HyperVerse has apologized after a YouTuber unmasked his real identity last week.

\n

An Englishman currently living in Thailand, Stephen Harrison confirmed to The Guardian that HyperVerse hired him to pose as CEO Steven Reece Lewis. Harrison told The Guardian that he was \"deeply sorry\" to HyperVerse investors\u2014who lost a reported $1.3 billion after buying into a cryptocurrency-mining operation that promised \"double or triple returns,\" but did not exist, Court Watch reported.

\n

Harrison claimed that he had \u201ccertainly not pocketed\u201d any portion of those funds. Instead, he told The Guardian that he was paid about $7,500 over nine months. To play the part of CEO, he was also given a \"wool and cashmere suit, two business shirts, two ties, and a pair of shoes,\" The Guardian reported.

Read 36 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A screenshot from Jack Gamble's video outing Stephen Harrison as HyperVerse's fake CEO, posted on Gamble's \"Nobody Special Finance\" YouTube channel. (credit: Nobody Special Finance | YouTube)\n \n\n\n\n\n\n\n\nAn actor who was hired to pretend to be the highly qualified CEO of a shady, collapsed cryptocurrency hedge fund called HyperVerse has apologized after a YouTuber unmasked his real identity last week.\nAn Englishman currently living in Thailand, Stephen Harrison confirmed to The Guardian that HyperVerse hired him to pose as CEO Steven Reece Lewis. Harrison told The Guardian that he was \"deeply sorry\" to HyperVerse investors\u2014who lost a reported $1.3 billion after buying into a cryptocurrency-mining operation that promised \"double or triple returns,\" but did not exist, Court Watch reported.\nHarrison claimed that he had \u201ccertainly not pocketed\u201d any portion of those funds. Instead, he told The Guardian that he was paid about $7,500 over nine months. To play the part of CEO, he was also given a \"wool and cashmere suit, two business shirts, two ties, and a pair of shoes,\" The Guardian reported.\n\nRead 36 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2024/01/actor-paid-to-pose-as-crypto-ceo-deeply-sorry-about-1-3-billion-scam/#comments", + "content": "Fake CEO denied profiting off the alleged cryptocurrency scam.", + "contentSnippet": "Fake CEO denied profiting off the alleged cryptocurrency scam.", + "guid": "https://arstechnica.com/?p=1995403", + "categories": [ + "Policy", + "cryptocurrency", + "cryptocurrency hedge fund", + "cryptocurrency mining", + "cryptocurrency scam", + "Facebook", + "hyperverse", + "pimeyes" + ], + "isoDate": "2024-01-11T19:29:43.000Z" + }, + { + "creator": "Kevin Purdy", + "title": "Those Games turns crappy mobile game ads into actually good puzzles", + "link": "https://arstechnica.com/?p=1995453", + "pubDate": "Thu, 11 Jan 2024 22:53:00 +0000", + "content:encoded": "
\n
\n \"Pin-pulling\n

Enlarge / Can you master the ornate physics and inscrutable game theory necessary to overcome this challenge? (credit: D3Publisher)

\n\n\n\n\n\n\n
\n

You've seen them. If you've tried to read almost anything on the Internet, especially on a social media site, you know these mobile game advertisements.

\n

\"Many failed before! Think you can do better?\" one reads, positioned over an auto-playing video of a simple puzzle played by an unseen, incredibly stupid hand. It pulls the wrong pin, melting the gold and drowning the king. Or it can't do elementary math, so it sends a \"10\" fighter to its death against a \"13\" creature, ignoring the \"8\" it could have picked to add up to 18. Sometimes, there are colored liquids in tubes to be poured, and they are selected with an almost elegant idiocy.

\n

They're infuriating, but you know they work, because these ads keep showing up. If you actually downloaded these games, you'd discover they were stuffed with pop-up ads, relentlessly barking micro-transactions, or they're some unrelated and cynically monetized game entirely. What if you could actually play the original bait games, for a reasonable one-time fee, crafted by a developer who was in on the joke?

Read 9 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Can you master the ornate physics and inscrutable game theory necessary to overcome this challenge? (credit: D3Publisher)\n \n\n\n\n\n\n\n\nYou've seen them. If you've tried to read almost anything on the Internet, especially on a social media site, you know these mobile game advertisements.\n\"Many failed before! Think you can do better?\" one reads, positioned over an auto-playing video of a simple puzzle played by an unseen, incredibly stupid hand. It pulls the wrong pin, melting the gold and drowning the king. Or it can't do elementary math, so it sends a \"10\" fighter to its death against a \"13\" creature, ignoring the \"8\" it could have picked to add up to 18. Sometimes, there are colored liquids in tubes to be poured, and they are selected with an almost elegant idiocy.\nThey're infuriating, but you know they work, because these ads keep showing up. If you actually downloaded these games, you'd discover they were stuffed with pop-up ads, relentlessly barking micro-transactions, or they're some unrelated and cynically monetized game entirely. What if you could actually play the original bait games, for a reasonable one-time fee, crafted by a developer who was in on the joke?\n\nRead 9 remaining paragraphs | Comments", + "dc:creator": "Kevin Purdy", + "comments": "https://arstechnica.com/gaming/2024/01/those-games-turns-crappy-mobile-game-ads-into-actually-good-puzzles/#comments", + "content": "It's pin-pulling, color-pouring, fake-but-real fun, and you only pay once.", + "contentSnippet": "It's pin-pulling, color-pouring, fake-but-real fun, and you only pay once.", + "guid": "https://arstechnica.com/?p=1995453", + "categories": ["Gaming", "mobile game ads", "Puzzle games"], + "isoDate": "2024-01-11T22:53:00.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Report: Deepfake porn consistently found atop Google, Bing search results", + "link": "https://arstechnica.com/?p=1995499", + "pubDate": "Thu, 11 Jan 2024 21:55:05 +0000", + "content:encoded": "
\n
\n \"Report:\n

Enlarge (credit: GeorgePeters | iStock / Getty Images Plus)

\n\n\n\n\n\n\n
\n

Popular search engines like Google and Bing are making it easy to surface nonconsensual deepfake pornography by placing it at the top of search results, NBC News reported Thursday.

\n

These controversial deepfakes superimpose faces of real women, often celebrities, onto the bodies of adult entertainers to make them appear to be engaging in real sex. Thanks in part to advances in generative AI, there is now a burgeoning black market for deepfake porn that could be discovered through a Google search, NBC News previously reported.

\n

NBC News uncovered the problem by turning off safe search, then combining the names of 36 female celebrities with obvious search terms like \"deepfakes,\" \"deepfake porn,\" and \"fake nudes.\" Bing generated links to deepfake videos in top results 35 times, while Google did so 34 times. Bing also surfaced \"fake nude photos of former teen Disney Channel female actors\" using images where actors appear to be underaged.

Read 14 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: GeorgePeters | iStock / Getty Images Plus)\n \n\n\n\n\n\n\n\nPopular search engines like Google and Bing are making it easy to surface nonconsensual deepfake pornography by placing it at the top of search results, NBC News reported Thursday.\nThese controversial deepfakes superimpose faces of real women, often celebrities, onto the bodies of adult entertainers to make them appear to be engaging in real sex. Thanks in part to advances in generative AI, there is now a burgeoning black market for deepfake porn that could be discovered through a Google search, NBC News previously reported.\nNBC News uncovered the problem by turning off safe search, then combining the names of 36 female celebrities with obvious search terms like \"deepfakes,\" \"deepfake porn,\" and \"fake nudes.\" Bing generated links to deepfake videos in top results 35 times, while Google did so 34 times. Bing also surfaced \"fake nude photos of former teen Disney Channel female actors\" using images where actors appear to be underaged.\n\nRead 14 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2024/01/report-deepfake-porn-consistently-found-atop-google-bing-search-results/#comments", + "content": "Google vows to create more safeguards to protect victims of deepfake porn.", + "contentSnippet": "Google vows to create more safeguards to protect victims of deepfake porn.", + "guid": "https://arstechnica.com/?p=1995499", + "categories": [ + "Google", + "Policy", + "Bing", + "deepfake porn", + "deepfakes", + "google" + ], + "isoDate": "2024-01-11T21:55:05.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "Astronomers found ultra-hot, Earth-sized exoplanet with a lava hemisphere", + "link": "https://arstechnica.com/?p=1995339", + "pubDate": "Thu, 11 Jan 2024 21:34:01 +0000", + "content:encoded": "
\n
\n \"Like\n

Enlarge / Like Kepler-10 b, illustrated above, newly discovered exoplanet HD 63433 d is a small, rocky planet in a tight orbit of its star. (credit: NASA/Ames/JPL-Caltech/T. Pyle)

\n\n\n\n\n\n\n
\n

Astronomers have discovered an unusual Earth-sized exoplanet they believe has a hemisphere of molten lava, with its other hemisphere tidally locked in perpetual darkness. Co-authors and study leaders Benjamin Capistrant (University of Florida) and Melinda Soares-Furtado (University of Wisconsin-Madison) presented the details yesterday at a meeting of the American Astronomical Society in New Orleans. An associated paper has just been published in The Astronomical Journal. Another paper published today in the journal Astronomy and Astrophysics by a different group described the discovery of a rare small, cold exoplanet with a massive outer companion 100 times the mass of Jupiter.

\n

As previously reported, thanks to the massive trove of exoplanets discovered by the Kepler mission, we now have a good idea of what kinds of planets are out there, where they orbit, and how common the different types are. What we lack is a good sense of what that implies in terms of the conditions on the planets themselves. Kepler can tell us how big a planet is, but it doesn't know what the planet is made of. And planets in the \"habitable zone\" around stars could be consistent with anything from a blazing hell to a frozen rock.

\n

The Transiting Exoplanet Survey Satellite\u00a0(TESS) was launched with the intention of helping us figure out what exoplanets are actually like. TESS is designed to identify planets orbiting bright stars relatively close to Earth, conditions that should allow follow-up observations to figure out their compositions and potentially those of their atmospheres.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Like Kepler-10 b, illustrated above, newly discovered exoplanet HD 63433 d is a small, rocky planet in a tight orbit of its star. (credit: NASA/Ames/JPL-Caltech/T. Pyle)\n \n\n\n\n\n\n\n\nAstronomers have discovered an unusual Earth-sized exoplanet they believe has a hemisphere of molten lava, with its other hemisphere tidally locked in perpetual darkness. Co-authors and study leaders Benjamin Capistrant (University of Florida) and Melinda Soares-Furtado (University of Wisconsin-Madison) presented the details yesterday at a meeting of the American Astronomical Society in New Orleans. An associated paper has just been published in The Astronomical Journal. Another paper published today in the journal Astronomy and Astrophysics by a different group described the discovery of a rare small, cold exoplanet with a massive outer companion 100 times the mass of Jupiter.\nAs previously reported, thanks to the massive trove of exoplanets discovered by the Kepler mission, we now have a good idea of what kinds of planets are out there, where they orbit, and how common the different types are. What we lack is a good sense of what that implies in terms of the conditions on the planets themselves. Kepler can tell us how big a planet is, but it doesn't know what the planet is made of. And planets in the \"habitable zone\" around stars could be consistent with anything from a blazing hell to a frozen rock.\nThe Transiting Exoplanet Survey Satellite\u00a0(TESS) was launched with the intention of helping us figure out what exoplanets are actually like. TESS is designed to identify planets orbiting bright stars relatively close to Earth, conditions that should allow follow-up observations to figure out their compositions and potentially those of their atmospheres.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/science/2024/01/some-like-it-hot-astronomers-spot-an-earth-sized-exoplanet-thats-half-lava/#comments", + "content": "Also: A separate team found a small, cold exoplanet with a massive outer companion.", + "contentSnippet": "Also: A separate team found a small, cold exoplanet with a massive outer companion.", + "guid": "https://arstechnica.com/?p=1995339", + "categories": [ + "Science", + "astronomy", + "astrophysics", + "exoplanets", + "lava worlds", + "Physics", + "science", + "Transiting Exoplanet Survey Satellite" + ], + "isoDate": "2024-01-11T21:34:01.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "\u201cSuch signal, much wow\u201d: Starlink\u2019s first texts via \u201ccellphone towers in space\u201d", + "link": "https://arstechnica.com/?p=1995454", + "pubDate": "Thu, 11 Jan 2024 21:03:21 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / Starlink satellites with direct-to-cell capability. (credit: SpaceX)

\n\n\n\n\n\n\n
\n

SpaceX is showing off the first text messages sent between T-Mobile phones via one of Starlink's low Earth orbit satellites. \"On Monday, January 8, the Starlink team successfully sent and received our first text messages using T-Mobile network spectrum through one of our new Direct to Cell satellites launched six days prior,\" a Starlink update said.

\n

SpaceX last week launched the first six Starlink satellites that can provide cellular transmissions to standard LTE phones. The service from what Starlink calls \"cellphone towers in space\" is expected to provide text messaging sometime this year for customers of T-Mobile in the US and carriers in other countries, with voice and data service beginning sometime in 2025.

\n

SpaceX posted a photo of the two iPhones that exchanged the texts, which included messages such as \"Such signal\" and \"Much wow.\" The process that allowed those texts to be sent was pretty complicated, Starlink said.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Starlink satellites with direct-to-cell capability. (credit: SpaceX)\n \n\n\n\n\n\n\n\nSpaceX is showing off the first text messages sent between T-Mobile phones via one of Starlink's low Earth orbit satellites. \"On Monday, January 8, the Starlink team successfully sent and received our first text messages using T-Mobile network spectrum through one of our new Direct to Cell satellites launched six days prior,\" a Starlink update said.\nSpaceX last week launched the first six Starlink satellites that can provide cellular transmissions to standard LTE phones. The service from what Starlink calls \"cellphone towers in space\" is expected to provide text messaging sometime this year for customers of T-Mobile in the US and carriers in other countries, with voice and data service beginning sometime in 2025.\nSpaceX posted a photo of the two iPhones that exchanged the texts, which included messages such as \"Such signal\" and \"Much wow.\" The process that allowed those texts to be sent was pretty complicated, Starlink said.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/starlink-shows-off-first-texts-to-t-mobile-phones-sent-via-spacex-satellite/#comments", + "content": "Starlink's Direct to Cell satellites to fill in dead spots in T-Mobile network.", + "contentSnippet": "Starlink's Direct to Cell satellites to fill in dead spots in T-Mobile network.", + "guid": "https://arstechnica.com/?p=1995454", + "categories": ["Policy", "spacex starlink", "starlink t-mobile"], + "isoDate": "2024-01-11T21:03:21.000Z" + }, + { + "creator": "Eric Berger", + "title": "Rocket Report: A Chinese launch you must see; Vulcan\u2019s stunning debut", + "link": "https://arstechnica.com/?p=1995251", + "pubDate": "Fri, 12 Jan 2024 13:00:32 +0000", + "content:encoded": "
\n
\n \"Vulcan\n

Enlarge / Vulcan launches from Cape Canaveral Space Force Station on Monday. (credit: United Launch Alliance)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.26 of the Rocket Report! We're just 11 days into the new year, and we've already had two stunning rocket debuts. Vulcan soared into space on Monday morning, and then a medium-lift rocket from China, Gravity-1, made a picture-perfect launch from a mobile pad in the Yellow Sea. It feels like this could be a great year for lift.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets as well as a quick look ahead at the next three launches on the calendar.

\n
\n

Vega C return-to-flight mission gets a date. The European Space Agency said it is targeting November 15 for the return to flight of the grounded Avio-built Vega C launch vehicle, European Spaceflight reports. I'll be honest. I had to double-check the calendar to make sure that it is in fact January, because that's an oddly specific date for a launch 10 months from now. But it appears there is some, ahem, flexibility in that date. ESA director of space transportation Toni Tolker-Nielsen says: \u201cThe nominal date is 15 November. There is a very detailed plan that is leading to this.\u201d

Read 22 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Vulcan launches from Cape Canaveral Space Force Station on Monday. (credit: United Launch Alliance)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.26 of the Rocket Report! We're just 11 days into the new year, and we've already had two stunning rocket debuts. Vulcan soared into space on Monday morning, and then a medium-lift rocket from China, Gravity-1, made a picture-perfect launch from a mobile pad in the Yellow Sea. It feels like this could be a great year for lift.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets as well as a quick look ahead at the next three launches on the calendar.\n\nVega C return-to-flight mission gets a date. The European Space Agency said it is targeting November 15 for the return to flight of the grounded Avio-built Vega C launch vehicle, European Spaceflight reports. I'll be honest. I had to double-check the calendar to make sure that it is in fact January, because that's an oddly specific date for a launch 10 months from now. But it appears there is some, ahem, flexibility in that date. ESA director of space transportation Toni Tolker-Nielsen says: \u201cThe nominal date is 15 November. There is a very detailed plan that is leading to this.\u201d\n\nRead 22 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2024/01/rocket-report-a-chinese-launch-you-must-see-vulcans-stunning-debut/#comments", + "content": "\"I am so proud of this team. Oh my gosh, this has been years of hard work.\"", + "contentSnippet": "\"I am so proud of this team. Oh my gosh, this has been years of hard work.\"", + "guid": "https://arstechnica.com/?p=1995251", + "categories": ["Science", "Space", "rocket report", "space"], + "isoDate": "2024-01-12T13:00:32.000Z" + }, + { + "creator": "WIRED", + "title": "Child abusers are covering their tracks with better use of crypto", + "link": "https://arstechnica.com/?p=1995594", + "pubDate": "Fri, 12 Jan 2024 14:47:45 +0000", + "content:encoded": "
\n
\n \"silhouette\n

Enlarge (credit: Naufal MQ via Getty Images)

\n\n\n\n\n\n\n
\n

For those who trade in child sexual exploitation images and videos in the darkest recesses of the Internet, cryptocurrency has been both a powerful tool and a treacherous one. Bitcoin, for instance, has allowed denizens of that criminal underground to buy and sell their wares with no involvement from a bank or payment processor that might reveal their activities to law enforcement. But the public and surprisingly traceable transactions recorded in Bitcoin's blockchain have sometimes led financial investigators directly to pedophiles\u2019 doorsteps.

\n

Now, after years of evolution in that grim cat-and-mouse game, new evidence suggests that online vendors of what was once commonly called \u201cchild porn\u201d are learning to use cryptocurrency with significantly more skill and stealth\u2014and that it's helping them survive longer in the Internet's most abusive industry.

\n

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Naufal MQ via Getty Images)\n \n\n\n\n\n\n\n\nFor those who trade in child sexual exploitation images and videos in the darkest recesses of the Internet, cryptocurrency has been both a powerful tool and a treacherous one. Bitcoin, for instance, has allowed denizens of that criminal underground to buy and sell their wares with no involvement from a bank or payment processor that might reveal their activities to law enforcement. But the public and surprisingly traceable transactions recorded in Bitcoin's blockchain have sometimes led financial investigators directly to pedophiles\u2019 doorsteps.\nNow, after years of evolution in that grim cat-and-mouse game, new evidence suggests that online vendors of what was once commonly called \u201cchild porn\u201d are learning to use cryptocurrency with significantly more skill and stealth\u2014and that it's helping them survive longer in the Internet's most abusive industry.\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "WIRED", + "comments": "https://arstechnica.com/tech-policy/2024/01/child-abusers-are-covering-their-tracks-with-better-use-of-crypto/#comments", + "content": "\u201cMixers\u201d and \u201cprivacy coins\u201d like Monero enable them to launder profits, stay online.", + "contentSnippet": "\u201cMixers\u201d and \u201cprivacy coins\u201d like Monero enable them to launder profits, stay online.", + "guid": "https://arstechnica.com/?p=1995594", + "categories": [ + "Policy", + "bitcoin", + "child abuse", + "cryptocurrency", + "csam", + "Monery", + "syndication", + "Zcash" + ], + "isoDate": "2024-01-12T14:47:45.000Z" + }, + { + "creator": "WIRED", + "title": "How a 27-year-old busted the myth of Bitcoin\u2019s anonymity", + "link": "https://arstechnica.com/?p=1996584", + "pubDate": "Thu, 18 Jan 2024 11:00:06 +0000", + "content:encoded": "
\n
\n \"How\n

Enlarge (credit: Sam Rodriguez)

\n\n\n\n\n\n\n
\n

JUST OVER A DECADE AGO, Bitcoin appeared to many of its adherents to be the crypto-anarchist holy grail: truly private digital cash for the Internet.

\n

Satoshi Nakamoto, the cryptocurrency\u2019s mysterious and unidentifiable inventor, had stated in an email introducing Bitcoin that \u201cparticipants can be anonymous.\u201d And the Silk Road dark-web drug market seemed like living proof of that potential, enabling the sale of hundreds of millions of dollars in illegal drugs and other contraband for bitcoin while flaunting its impunity from law enforcement.

\n

This is the story of the revelation in late 2013 that Bitcoin was, in fact, the opposite of untraceable\u2014that its blockchain would actually allow researchers, tech companies, and law enforcement to trace and identify users with even more transparency than the existing financial system. That discovery would upend the world of cybercrime. Bitcoin tracing would, over the next few years, solve the mystery of the theft of a half-billion dollar stash of bitcoins from the world\u2019s first crypto exchange, help enable the biggest dark-web drug market takedown in history, lead to the arrest of hundreds of pedophiles around the world in the bust of the dark web\u2019s largest child sexual abuse video site, and result in the first-, second-, and third-biggest law enforcement monetary seizures in the history of the US Justice Department.

Read 65 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Sam Rodriguez)\n \n\n\n\n\n\n\n\nJUST OVER A DECADE AGO, Bitcoin appeared to many of its adherents to be the crypto-anarchist holy grail: truly private digital cash for the Internet.\nSatoshi Nakamoto, the cryptocurrency\u2019s mysterious and unidentifiable inventor, had stated in an email introducing Bitcoin that \u201cparticipants can be anonymous.\u201d And the Silk Road dark-web drug market seemed like living proof of that potential, enabling the sale of hundreds of millions of dollars in illegal drugs and other contraband for bitcoin while flaunting its impunity from law enforcement.\nThis is the story of the revelation in late 2013 that Bitcoin was, in fact, the opposite of untraceable\u2014that its blockchain would actually allow researchers, tech companies, and law enforcement to trace and identify users with even more transparency than the existing financial system. That discovery would upend the world of cybercrime. Bitcoin tracing would, over the next few years, solve the mystery of the theft of a half-billion dollar stash of bitcoins from the world\u2019s first crypto exchange, help enable the biggest dark-web drug market takedown in history, lead to the arrest of hundreds of pedophiles around the world in the bust of the dark web\u2019s largest child sexual abuse video site, and result in the first-, second-, and third-biggest law enforcement monetary seizures in the history of the US Justice Department.\n\nRead 65 remaining paragraphs | Comments", + "dc:creator": "WIRED", + "comments": "https://arstechnica.com/features/2024/01/how-a-27-year-old-busted-the-myth-of-bitcoins-anonymity/#comments", + "content": "Once, drug dealers and money launderers saw cryptocurrency as perfectly untraceable.", + "contentSnippet": "Once, drug dealers and money launderers saw cryptocurrency as perfectly untraceable.", + "guid": "https://arstechnica.com/?p=1996584", + "categories": [ + "Features", + "Policy", + "bitcoin", + "book excerpt", + "cryptocurrency", + "cybercrime", + "Monero", + "syndication" + ], + "isoDate": "2024-01-18T11:00:06.000Z" + }, + { + "creator": "Beth Mole", + "title": "Hospitals owned by private equity are harming patients, reports find", + "link": "https://arstechnica.com/?p=1996901", + "pubDate": "Thu, 18 Jan 2024 00:34:20 +0000", + "content:encoded": "
\n
\n \"Hospitals\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Private equity firms are increasingly buying hospitals across the US, and when they do, patients suffer, according to two separate reports. Specifically, the equity firms cut corners, slash services, lay off staff, lower quality of care, take on substantial debt, and reduce charity care, leading to lower ratings and more medical errors, the reports collectively find.

\n

Last week, the financial watchdog organization Private Equity Stakeholder Project (PESP) released a report delving into the state of two of the nation's largest hospital systems, Lifepoint and ScionHealth\u2014both owned by private equity firm Apollo Global Management. Through those two systems, Apollo runs 220 hospitals in 36 states, employing around 75,000 people.

\n

The report found that some of Apollo's hospitals were among the worst in their respective states, based on a ranking by The Lown Institute Hospital Index. The index ranks hospitals and health systems based on health equity, value, and outcomes, PESP notes. The hospitals also have dismal readmission rates and government rankings. The Center for Medicare and Medicaid Services (CMS) ranks hospitals on a one-to-five star system, with the national average of 3.2 stars overall and about 30 percent of hospitals at two stars or below. Apollo's overall average is 2.8 stars, with nearly 40 percent of hospitals at two stars or below.

Read 14 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nPrivate equity firms are increasingly buying hospitals across the US, and when they do, patients suffer, according to two separate reports. Specifically, the equity firms cut corners, slash services, lay off staff, lower quality of care, take on substantial debt, and reduce charity care, leading to lower ratings and more medical errors, the reports collectively find.\nLast week, the financial watchdog organization Private Equity Stakeholder Project (PESP) released a report delving into the state of two of the nation's largest hospital systems, Lifepoint and ScionHealth\u2014both owned by private equity firm Apollo Global Management. Through those two systems, Apollo runs 220 hospitals in 36 states, employing around 75,000 people.\nThe report found that some of Apollo's hospitals were among the worst in their respective states, based on a ranking by The Lown Institute Hospital Index. The index ranks hospitals and health systems based on health equity, value, and outcomes, PESP notes. The hospitals also have dismal readmission rates and government rankings. The Center for Medicare and Medicaid Services (CMS) ranks hospitals on a one-to-five star system, with the national average of 3.2 stars overall and about 30 percent of hospitals at two stars or below. Apollo's overall average is 2.8 stars, with nearly 40 percent of hospitals at two stars or below.\n\nRead 14 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/health/2024/01/hospitals-slash-staff-services-quality-of-care-when-private-equity-takes-over/#comments", + "content": "Hospital ratings dive and medical errors rise when private equity firms are in charge.", + "contentSnippet": "Hospital ratings dive and medical errors rise when private equity firms are in charge.", + "guid": "https://arstechnica.com/?p=1996901", + "categories": [ + "Health", + "Science", + "apollo", + "chuck grassley", + "hospitals", + "infections", + "medical errors", + "patient care", + "private equity" + ], + "isoDate": "2024-01-18T00:34:20.000Z" + }, + { + "creator": "Dan Goodin", + "title": "Researcher uncovers one of the biggest password dumps in recent history", + "link": "https://arstechnica.com/?p=1996879", + "pubDate": "Thu, 18 Jan 2024 00:04:26 +0000", + "content:encoded": "
\n
\n \"Calendar\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

Nearly 71 million unique credentials stolen for logging into websites such as Facebook, Roblox, eBay, and Yahoo have been circulating on the Internet for at least four months, a researcher said Wednesday.

\n

Troy Hunt, operator of the Have I Been Pwned? breach notification service, said the massive amount of data was posted to a well-known underground market that brokers sales of compromised credentials. Hunt said he often pays little attention to dumps like these because they simply compile and repackage previously published passwords taken in earlier campaigns.

\n\n

Not your typical password dump

\n

Some glaring things prevented Hunt from dismissing this one, specifically the contents indicating that nearly 25 million of the passwords had never been leaked before:

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nNearly 71 million unique credentials stolen for logging into websites such as Facebook, Roblox, eBay, and Yahoo have been circulating on the Internet for at least four months, a researcher said Wednesday.\nTroy Hunt, operator of the Have I Been Pwned? breach notification service, said the massive amount of data was posted to a well-known underground market that brokers sales of compromised credentials. Hunt said he often pays little attention to dumps like these because they simply compile and repackage previously published passwords taken in earlier campaigns.\n\nPost appearing on breach site advertising the availability of naz.api password data. \n\nNot your typical password dump\nSome glaring things prevented Hunt from dismissing this one, specifically the contents indicating that nearly 25 million of the passwords had never been leaked before:\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2024/01/71-million-passwords-for-facebook-coinbase-and-others-found-for-sale/#comments", + "content": "Roughly 25 million of the passwords have never been seen before by widely used service.", + "contentSnippet": "Roughly 25 million of the passwords have never been seen before by widely used service.", + "guid": "https://arstechnica.com/?p=1996879", + "categories": [ + "Biz & IT", + "Security", + "breaches", + "data stealers", + "passwords" + ], + "isoDate": "2024-01-18T00:04:26.000Z" + }, + { + "creator": "Andrew Cunningham", + "title": "Apple lets devs use alternate in-app payment options, still takes commissions", + "link": "https://arstechnica.com/?p=1996686", + "pubDate": "Wed, 17 Jan 2024 23:39:21 +0000", + "content:encoded": "
\n
\n \"App\n

Enlarge (credit: Getty Images | NurPhoto)

\n\n\n\n\n\n\n
\n

A chapter in the ongoing Epic v. Apple court case closed yesterday when the US Supreme Court declined to hear further arguments from either company. This decision leaves the case where it was after the 9th Circuit Court of Appeals ruled on it in April 2023.

\n\n

The main issue at hand\u2014to summarize days of arguments and multiple lengthy, technical court rulings in a couple of sentences\u2014was whether Apple could continue to collect the 15\u201330 percent cut that it takes of all App Store purchases on its platforms and in-app purchases and subscriptions bought inside of those apps. The rulings, largely seen as victories for Apple, didn't open iOS or iPadOS up to third-party app stores or app sideloading as Epic had originally sought. However, the rulings establised that Apple's so-called \"anti-steering\" rules\u2014language prohibiting developers from mentioning cheaper or alternative purchasing options that might be available outside of an app\u2014were anticompetitive.

\n

Apple has updated its App Store rules to allow developers to provide external links to other payment options, technically circumventing its normal fee structure. But they come with many extra conditions that developers have to meet. And instead of paying Apple a 15 or 30 percent cut, Apple will collect a 12\u201327 percent commission instead. After factoring in the fees from whatever non-Apple payment processor these developers decide to use, the revenue they give up will remain essentially unchanged.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | NurPhoto)\n \n\n\n\n\n\n\n\nA chapter in the ongoing Epic v. Apple court case closed yesterday when the US Supreme Court declined to hear further arguments from either company. This decision leaves the case where it was after the 9th Circuit Court of Appeals ruled on it in April 2023.\nThe main issue at hand\u2014to summarize days of arguments and multiple lengthy, technical court rulings in a couple of sentences\u2014was whether Apple could continue to collect the 15\u201330 percent cut that it takes of all App Store purchases on its platforms and in-app purchases and subscriptions bought inside of those apps. The rulings, largely seen as victories for Apple, didn't open iOS or iPadOS up to third-party app stores or app sideloading as Epic had originally sought. However, the rulings establised that Apple's so-called \"anti-steering\" rules\u2014language prohibiting developers from mentioning cheaper or alternative purchasing options that might be available outside of an app\u2014were anticompetitive.\nApple has updated its App Store rules to allow developers to provide external links to other payment options, technically circumventing its normal fee structure. But they come with many extra conditions that developers have to meet. And instead of paying Apple a 15 or 30 percent cut, Apple will collect a 12\u201327 percent commission instead. After factoring in the fees from whatever non-Apple payment processor these developers decide to use, the revenue they give up will remain essentially unchanged.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Andrew Cunningham", + "comments": "https://arstechnica.com/tech-policy/2024/01/apple-lets-devs-use-alternate-in-app-payment-options-still-takes-commissions/#comments", + "content": "Devs must ask permission to use 3rd-party payments, and Apple still wants a cut.", + "contentSnippet": "Devs must ask permission to use 3rd-party payments, and Apple still wants a cut.", + "guid": "https://arstechnica.com/?p=1996686", + "categories": [ + "Apple", + "Policy", + "App Store", + "apple", + "epic", + "epic v. apple", + "in-app purchasing" + ], + "isoDate": "2024-01-17T23:39:21.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Teen sued Utah over social media law requiring curfew for minors", + "link": "https://arstechnica.com/?p=1996850", + "pubDate": "Wed, 17 Jan 2024 23:02:04 +0000", + "content:encoded": "
\n
\n \"Utah\n

Enlarge / Utah high school student Hannah Zoulek sued Utah to block the Social Media Regulation Act from taking effect March 1. (credit: thefire.org)

\n\n\n\n\n\n\n
\n

A Utah high school student, Hannah Zoulek, has joined a lawsuit, fighting to block Utah's vague social media law from taking effect on March 1.

\n

The Social Media Regulation Act requires platforms to verify user ages and then obtain parental consent for minors under 18 to maintain accounts. Once granted access to platforms, minors must be blocked from search results, and no ads can be displayed on their account. Platforms granting access will accept liability for designing any features that the state considers to be addicting or harmful to minors. The law also imposes a curfew blocking minors from accessing platforms between 10:30 pm and 6:30 am.

\n

Because the law \"fails to define what constitutes 'physical, mental, emotional, developmental, or material harms,' or what degree of harm gives rise to liability,\" platforms are left to \"guess as to what behavior crosses the line,\" the complaint said. A platform may be ruled to be causing harm if a teenager gets a headache after scrolling for too long or becomes upset after friends don't like a selfie, the complaint said, \"nobody knows.\"

Read 23 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Utah high school student Hannah Zoulek sued Utah to block the Social Media Regulation Act from taking effect March 1. (credit: thefire.org)\n \n\n\n\n\n\n\n\nA Utah high school student, Hannah Zoulek, has joined a lawsuit, fighting to block Utah's vague social media law from taking effect on March 1.\nThe Social Media Regulation Act requires platforms to verify user ages and then obtain parental consent for minors under 18 to maintain accounts. Once granted access to platforms, minors must be blocked from search results, and no ads can be displayed on their account. Platforms granting access will accept liability for designing any features that the state considers to be addicting or harmful to minors. The law also imposes a curfew blocking minors from accessing platforms between 10:30 pm and 6:30 am.\nBecause the law \"fails to define what constitutes 'physical, mental, emotional, developmental, or material harms,' or what degree of harm gives rise to liability,\" platforms are left to \"guess as to what behavior crosses the line,\" the complaint said. A platform may be ruled to be causing harm if a teenager gets a headache after scrolling for too long or becomes upset after friends don't like a selfie, the complaint said, \"nobody knows.\"\n\nRead 23 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2024/01/teen-sued-utah-over-social-media-law-requiring-curfew-for-minors/#comments", + "content": "Platforms found harming Utah kids will face \"crushing\" fines starting March 1.", + "contentSnippet": "Platforms found harming Utah kids will face \"crushing\" fines starting March 1.", + "guid": "https://arstechnica.com/?p=1996850", + "categories": ["Policy", "social media", "social media law"], + "isoDate": "2024-01-17T23:02:04.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Cable firms to FTC: We shouldn\u2019t have to let users cancel service with a click", + "link": "https://arstechnica.com/?p=1996827", + "pubDate": "Wed, 17 Jan 2024 22:29:33 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | RoyalFive)

\n\n\n\n\n\n\n
\n

Lobbyists for cable companies and advertisers yesterday expressed their displeasure with a proposed \"click-to-cancel\" regulation that aims to make it easier for consumers to cancel services.

\n

Federal Trade Commission Chair Lina Khan has said that changes are needed because \"some businesses too often trick consumers into paying for subscriptions they no longer want or didn't sign up for in the first place.\" The FTC proposed the new set of rules in March 2023, and comments from industry groups were taken yesterday in a hearing presided over by an administrative law judge.

\n

NCTA-The Internet & Television Association, the primary trade group for cable companies like Comcast and Charter, said the rule would make it harder to offer deals to customers who are trying to cancel.

Read 17 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | RoyalFive)\n \n\n\n\n\n\n\n\nLobbyists for cable companies and advertisers yesterday expressed their displeasure with a proposed \"click-to-cancel\" regulation that aims to make it easier for consumers to cancel services.\nFederal Trade Commission Chair Lina Khan has said that changes are needed because \"some businesses too often trick consumers into paying for subscriptions they no longer want or didn't sign up for in the first place.\" The FTC proposed the new set of rules in March 2023, and comments from industry groups were taken yesterday in a hearing presided over by an administrative law judge.\nNCTA-The Internet & Television Association, the primary trade group for cable companies like Comcast and Charter, said the rule would make it harder to offer deals to customers who are trying to cancel.\n\nRead 17 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/cable-firms-to-ftc-we-shouldnt-have-to-let-users-cancel-service-with-a-click/#comments", + "content": "Customers may \"misunderstand the consequences of canceling,\" cable lobby says.", + "contentSnippet": "Customers may \"misunderstand the consequences of canceling,\" cable lobby says.", + "guid": "https://arstechnica.com/?p=1996827", + "categories": [ + "Policy", + "Uncategorized", + "cable lobby", + "click to cancel rule" + ], + "isoDate": "2024-01-17T22:29:33.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Taking stock: Private investment in space companies rebounded in 2023", + "link": "https://arstechnica.com/?p=1996754", + "pubDate": "Wed, 17 Jan 2024 22:13:05 +0000", + "content:encoded": "
\n
\n \"Firefly\n

Enlarge / Firefly Aerospace test-fired its new Miranda engine for the first time last year. Firefly was among the top companies receiving private investment in 2023. (credit: Firefly Aerospace)

\n\n\n\n\n\n\n
\n

Private investors pumped $12.5 billion into space companies last year, around 30 percent more than the year before, but still shy of the space investment boom of 2021.

\n

This is welcome news for cash-hungry startups in the space sector, but investors are becoming more diligent about where they put their money. This has led to a consolidation frenzy, with space companies merging or acquiring one another. And more investors are choosing not to prop up unsuccessful companies, meaning some firms will be doomed to fail.

\n

The latest figures on global private investment come from Space Capital, a venture capital shop that exclusively invests in the space industry. Space Capital publishes a quarterly report outlining trends across several space industry sectors, including infrastructure, applications, distribution, and emerging markets.

Read 23 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Firefly Aerospace test-fired its new Miranda engine for the first time last year. Firefly was among the top companies receiving private investment in 2023. (credit: Firefly Aerospace)\n \n\n\n\n\n\n\n\nPrivate investors pumped $12.5 billion into space companies last year, around 30 percent more than the year before, but still shy of the space investment boom of 2021.\nThis is welcome news for cash-hungry startups in the space sector, but investors are becoming more diligent about where they put their money. This has led to a consolidation frenzy, with space companies merging or acquiring one another. And more investors are choosing not to prop up unsuccessful companies, meaning some firms will be doomed to fail.\nThe latest figures on global private investment come from Space Capital, a venture capital shop that exclusively invests in the space industry. Space Capital publishes a quarterly report outlining trends across several space industry sectors, including infrastructure, applications, distribution, and emerging markets.\n\nRead 23 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2024/01/taking-stock-private-investment-in-space-companies-rebounded-in-2023/#comments", + "content": "Money flows into commercial space stations, logistics, and lunar exploration are lagging.", + "contentSnippet": "Money flows into commercial space stations, logistics, and lunar exploration are lagging.", + "guid": "https://arstechnica.com/?p=1996754", + "categories": ["Space"], + "isoDate": "2024-01-17T22:13:05.000Z" + }, + { + "creator": "Benj Edwards", + "title": "OpenAI opens the door for military uses but maintains AI weapons ban", + "link": "https://arstechnica.com/?p=1996787", + "pubDate": "Wed, 17 Jan 2024 21:25:51 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge (credit: OpenAI / Getty Images / Benj Edwards)

\n\n\n\n\n\n\n
\n

On Tuesday, ChatGPT developer OpenAI revealed that it is collaborating with the United States Defense Department on cybersecurity projects and exploring ways to prevent veteran suicide, reports Bloomberg. OpenAI revealed the collaboration during an interview with the news outlet at the World Economic Forum in Davos. The AI company recently modified its policies, allowing for certain military applications of its technology, while maintaining prohibitions against using it to develop weapons.

\n

According to Anna Makanju, OpenAI's vice president of global affairs, \"many people thought that [a previous blanket prohibition on military applications] would prohibit many of these use cases, which people think are very much aligned with what we want to see in the world.\" OpenAI removed terms from its service agreement that previously blocked AI use in \"military and warfare\" situations, but the company still upholds a ban on its technology being used to develop weapons or to cause harm or property damage.

\n\n

Under the \"Universal Policies\" section of OpenAI's Usage Policies document, section 2 says, \"Don't use our service to harm yourself or others.\" The prohibition includes using its AI products to \"develop or use weapons.\" Changes to the terms that removed the \"military and warfare\" prohibitions appear to have been made by OpenAI on January 10.

Read 2 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: OpenAI / Getty Images / Benj Edwards)\n \n\n\n\n\n\n\n\nOn Tuesday, ChatGPT developer OpenAI revealed that it is collaborating with the United States Defense Department on cybersecurity projects and exploring ways to prevent veteran suicide, reports Bloomberg. OpenAI revealed the collaboration during an interview with the news outlet at the World Economic Forum in Davos. The AI company recently modified its policies, allowing for certain military applications of its technology, while maintaining prohibitions against using it to develop weapons.\nAccording to Anna Makanju, OpenAI's vice president of global affairs, \"many people thought that [a previous blanket prohibition on military applications] would prohibit many of these use cases, which people think are very much aligned with what we want to see in the world.\" OpenAI removed terms from its service agreement that previously blocked AI use in \"military and warfare\" situations, but the company still upholds a ban on its technology being used to develop weapons or to cause harm or property damage.\nUnder the \"Universal Policies\" section of OpenAI's Usage Policies document, section 2 says, \"Don't use our service to harm yourself or others.\" The prohibition includes using its AI products to \"develop or use weapons.\" Changes to the terms that removed the \"military and warfare\" prohibitions appear to have been made by OpenAI on January 10.\n\nRead 2 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/information-technology/2024/01/openai-reveals-partnership-with-pentagon-on-cybersecurity-suicide-prevention/#comments", + "content": "Despite new Pentagon collab, OpenAI won't allow customers to \"develop or use weapons\" with its tools.", + "contentSnippet": "Despite new Pentagon collab, OpenAI won't allow customers to \"develop or use weapons\" with its tools.", + "guid": "https://arstechnica.com/?p=1996787", + "categories": [ + "AI", + "Biz & IT", + "AI ethics", + "AI safety", + "AI weapons", + "ChatGPT", + "chatgtp", + "cybersecurity", + "large language models", + "machine learning", + "microsoft", + "Military", + "openai", + "Pentagon", + "suicide prevention", + "US Defense Department" + ], + "isoDate": "2024-01-17T21:25:51.000Z" + }, + { + "creator": "Kyle Orland", + "title": "Harmonix is ending Rock Band DLC releases after 16 years, ~2,800 songs", + "link": "https://arstechnica.com/?p=1996795", + "pubDate": "Wed, 17 Jan 2024 21:00:50 +0000", + "content:encoded": "
\n
\n \"After\n

After 16 (nearly unbroken) years of regular DLC releases, Rock Band's avatars haven't aged a day. (credit: Harmonix)

\n\n\n\n\n\n\n
\n

Here at Ars Technica, we remember covering Rock Band's weekly DLC song releases way back in 2007, when such regular content drops were still a new concept for a rhythm game. Now, Harmonix has announced the last of the series' roughly 2,800 downloadable releases will finally come on January 25, marking the end of a nearly 16-year era in music gaming history.

\n

Previously purchased DLC songs will still be playable in Rock Band 4, Harmonix's Daniel Sussman writes in an announcement post. Rock Band 4 live services, including online play, will also continue as normal, after online game modes for earlier Rock Band games were finally shut down in late 2022.

\n

\"Taking a longer look back, I see the Rock Band DLC catalog as a huge achievement in persistence and commitment,\" Sussman writes. \"Over the years we\u2019ve cleared, authored and released nearly 3,000 songs as DLC and well over 3,000 if you include all the game soundtracks. That\u2019s wild.\"

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "After 16 (nearly unbroken) years of regular DLC releases, Rock Band's avatars haven't aged a day. (credit: Harmonix)\n \n\n\n\n\n\n\n\nHere at Ars Technica, we remember covering Rock Band's weekly DLC song releases way back in 2007, when such regular content drops were still a new concept for a rhythm game. Now, Harmonix has announced the last of the series' roughly 2,800 downloadable releases will finally come on January 25, marking the end of a nearly 16-year era in music gaming history.\nPreviously purchased DLC songs will still be playable in Rock Band 4, Harmonix's Daniel Sussman writes in an announcement post. Rock Band 4 live services, including online play, will also continue as normal, after online game modes for earlier Rock Band games were finally shut down in late 2022.\n\"Taking a longer look back, I see the Rock Band DLC catalog as a huge achievement in persistence and commitment,\" Sussman writes. \"Over the years we\u2019ve cleared, authored and released nearly 3,000 songs as DLC and well over 3,000 if you include all the game soundtracks. That\u2019s wild.\"\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/gaming/2024/01/harmonix-is-ending-rock-band-dlc-releases-after-16-years-2800-songs/#comments", + "content": "Previously purchased songs will still be playable via Rock Band 4.", + "contentSnippet": "Previously purchased songs will still be playable via Rock Band 4.", + "guid": "https://arstechnica.com/?p=1996795", + "categories": [ + "Gaming", + "DLC", + "downloads", + "epic", + "Epic Games", + "Harmonix", + "Rock", + "rock band", + "song" + ], + "isoDate": "2024-01-17T21:00:50.000Z" + }, + { + "creator": "Samuel Axon", + "title": "That\u2019s never happened before: Games Done Quick video stars speedrunning dog", + "link": "https://arstechnica.com/?p=1996722", + "pubDate": "Wed, 17 Jan 2024 20:27:06 +0000", + "content:encoded": "
\n\n\n\n\n\n
\n

Peanut Butter the dog speedruns Gyromite at Awesome Games Done Quick 2024.

\n

The twice-a-year video game speedrunning and fundraising live event Games Done Quick has been a source of amazement and joy for years, but we're still saying \"that's never happened before\" even now, more than a decade after the first event.

\n

Case in point: Awesome Games Done Quick 2024, which is streaming live 24 hours a day this week on Twitch, saw the very first speedrun performed by a dog.

\n

A Shiba Inu named Peanut Butter (shortened to PB, also a speedrunner term for \"personal best\" finish time) completed a 30-minute speedrun of the 1985 Nintendo Entertainment System (NES) game Gyromite.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Peanut Butter the dog speedruns Gyromite at Awesome Games Done Quick 2024. \n\nThe twice-a-year video game speedrunning and fundraising live event Games Done Quick has been a source of amazement and joy for years, but we're still saying \"that's never happened before\" even now, more than a decade after the first event.\nCase in point: Awesome Games Done Quick 2024, which is streaming live 24 hours a day this week on Twitch, saw the very first speedrun performed by a dog.\nA Shiba Inu named Peanut Butter (shortened to PB, also a speedrunner term for \"personal best\" finish time) completed a 30-minute speedrun of the 1985 Nintendo Entertainment System (NES) game Gyromite.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Samuel Axon", + "comments": "https://arstechnica.com/gaming/2024/01/thats-never-happened-before-games-done-quick-video-stars-speedrunning-dog/#comments", + "content": "The Shiba Inu was trained to use a custom controller in a game meant for a robot.", + "contentSnippet": "The Shiba Inu was trained to use a custom controller in a game meant for a robot.", + "guid": "https://arstechnica.com/?p=1996722", + "categories": ["Gaming", "games done quick", "speedrun"], + "isoDate": "2024-01-17T20:27:06.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "OpenAI must defend ChatGPT fabrications after failing to defeat libel suit", + "link": "https://arstechnica.com/?p=1996758", + "pubDate": "Wed, 17 Jan 2024 20:10:18 +0000", + "content:encoded": "
\n
\n \"OpenAI\n

Enlarge (credit: Anadolu / Contributor | Anadolu)

\n\n\n\n\n\n\n
\n

OpenAI may finally have to answer for ChatGPT's \"hallucinations\" in court after a Georgia judge recently ruled against the tech company's motion to dismiss a radio host's defamation suit.

\n

OpenAI had argued that ChatGPT's output cannot be considered libel, partly because the chatbot output cannot be considered a \"publication,\" which is a key element of a defamation claim. In its motion to dismiss, OpenAI also argued that Georgia radio host Mark Walters could not prove that the company acted with actual malice or that anyone believed the allegedly libelous statements were true or that he was harmed by the alleged publication.

\n

It's too early to say whether Judge Tracie Cason found OpenAI's arguments persuasive. In her order denying OpenAI's motion to dismiss, which MediaPost shared here, Cason did not specify how she arrived at her decision, saying only that she had \"carefully\" considered arguments and applicable laws.

Read 17 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Anadolu / Contributor | Anadolu)\n \n\n\n\n\n\n\n\nOpenAI may finally have to answer for ChatGPT's \"hallucinations\" in court after a Georgia judge recently ruled against the tech company's motion to dismiss a radio host's defamation suit.\nOpenAI had argued that ChatGPT's output cannot be considered libel, partly because the chatbot output cannot be considered a \"publication,\" which is a key element of a defamation claim. In its motion to dismiss, OpenAI also argued that Georgia radio host Mark Walters could not prove that the company acted with actual malice or that anyone believed the allegedly libelous statements were true or that he was harmed by the alleged publication.\nIt's too early to say whether Judge Tracie Cason found OpenAI's arguments persuasive. In her order denying OpenAI's motion to dismiss, which MediaPost shared here, Cason did not specify how she arrived at her decision, saying only that she had \"carefully\" considered arguments and applicable laws.\n\nRead 17 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2024/01/openai-must-defend-chatgpt-fabrications-after-failing-to-defeat-libel-suit/#comments", + "content": "ChatGPT users may soon learn whether false outputs will be allowed to ruin lives.", + "contentSnippet": "ChatGPT users may soon learn whether false outputs will be allowed to ruin lives.", + "guid": "https://arstechnica.com/?p=1996758", + "categories": [ + "Policy", + "ai hallucinations", + "chatbot", + "ChatGPT", + "chatgpt fabrications", + "chatgpt hallucinations", + "defamation", + "generative ai", + "hallucinations", + "libel", + "libel law", + "openai" + ], + "isoDate": "2024-01-17T20:10:18.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "Watch Godzilla Minus One in dazzling black and white during limited US run", + "link": "https://arstechnica.com/?p=1996704", + "pubDate": "Wed, 17 Jan 2024 19:32:14 +0000", + "content:encoded": "
\n
\n \"Watch\n

Enlarge (credit: Toho Inc.)

\n\n\n\n\n\n\n
\n

The critically acclaimed film, Godzilla Minus One, hit US theaters in early December and racked up $51 million in the US alone and over $96 million globally, shooting past 2016's Shin Godzilla as the most successful Japanese-produced Godzilla film to date. The film is winding down its theatrical run, but director, writer, and VFX supervisor Takashi Yamazaki has remastered a black-and-white version of the film as an homage to the 1954 classic Godzilla, released in Japan last week. And now US audiences will have a chance to see that version when Godzilla Minus One/Minus Color arrives in theaters in the US for a limited run from January 26 through February 1.

\n

(Minor spoilers for Godzilla Minus One below.)

\n

Yamakazi spent three years writing the script for Godzilla Minus One, drawing inspiration not just from the original 1954 film but also Jaws (1975), Godzilla, Mothra and Ghidorah (2001), Shin Godzilla, and the films of Hayao Miyazaki. He opted to set the film in postwar Japan, like the original, rather than more recent events like the Fukushima nuclear accident in 2011, in order to explore themes of postwar trauma and emerging hope. The monster itself was designed to be horrifying, with spiky dorsal fins and a bellowing roar produced by recording an amplified roar in a large stadium.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Toho Inc.)\n \n\n\n\n\n\n\n\nThe critically acclaimed film, Godzilla Minus One, hit US theaters in early December and racked up $51 million in the US alone and over $96 million globally, shooting past 2016's Shin Godzilla as the most successful Japanese-produced Godzilla film to date. The film is winding down its theatrical run, but director, writer, and VFX supervisor Takashi Yamazaki has remastered a black-and-white version of the film as an homage to the 1954 classic Godzilla, released in Japan last week. And now US audiences will have a chance to see that version when Godzilla Minus One/Minus Color arrives in theaters in the US for a limited run from January 26 through February 1.\n(Minor spoilers for Godzilla Minus One below.)\nYamakazi spent three years writing the script for Godzilla Minus One, drawing inspiration not just from the original 1954 film but also Jaws (1975), Godzilla, Mothra and Ghidorah (2001), Shin Godzilla, and the films of Hayao Miyazaki. He opted to set the film in postwar Japan, like the original, rather than more recent events like the Fukushima nuclear accident in 2011, in order to explore themes of postwar trauma and emerging hope. The monster itself was designed to be horrifying, with spiky dorsal fins and a bellowing roar produced by recording an amplified roar in a large stadium.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/culture/2024/01/soon-well-be-able-to-see-godzilla-minus-one-remastered-in-black-and-white/#comments", + "content": "\"By eliminating color, a new sense of reality emerges.\"", + "contentSnippet": "\"By eliminating color, a new sense of reality emerges.\"", + "guid": "https://arstechnica.com/?p=1996704", + "categories": [ + "Culture", + "entertainment", + "films", + "Godzilla", + "Godzilla Minus One", + "Toho International" + ], + "isoDate": "2024-01-17T19:32:14.000Z" + }, + { + "creator": "John Timmer", + "title": "Explaining why a black hole produces light when ripping apart a star", + "link": "https://arstechnica.com/?p=1996716", + "pubDate": "Wed, 17 Jan 2024 18:50:37 +0000", + "content:encoded": "
\n
\n \"Image\n

Enlarge / A model of a tidal disruption, along with some observations of one. (credit: Illustration: CXC/M. Weiss; X-ray: NASA/CXC/UNH/D. Lin et al, Optical: CFHT)

\n\n\n\n\n\n\n
\n

Supermassive black holes appear to be present at the core of nearly every galaxy. Every now and again, a star wanders too close to one of these monsters and experiences what's called a tidal disruption event. The black hole's gravity rips the star to shreds, resulting in a huge burst of radiation. We've observed this happening several times now.

\n

But we don't entirely know why it happens\u2014\"it\" specifically referring to the burst of radiation. After all, stars produce radiation through fusion, and the tidal disruption results in the spaghettification of the star, effectively pulling the plug on the fusion reactions. Black holes brighten when they're feeding on material, but that process doesn't look like the sudden burst of radiation from a tidal disruption event.

\n

It turns out that we don't entirely know how the radiation is produced. There are several competing ideas, but we've not been able to figure out which one of them fits the data best. However, scientists have taken advantage of an updated software package to model a tidal disruption event and show that their improved model fits our observations pretty well.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A model of a tidal disruption, along with some observations of one. (credit: Illustration: CXC/M. Weiss; X-ray: NASA/CXC/UNH/D. Lin et al, Optical: CFHT)\n \n\n\n\n\n\n\n\nSupermassive black holes appear to be present at the core of nearly every galaxy. Every now and again, a star wanders too close to one of these monsters and experiences what's called a tidal disruption event. The black hole's gravity rips the star to shreds, resulting in a huge burst of radiation. We've observed this happening several times now.\nBut we don't entirely know why it happens\u2014\"it\" specifically referring to the burst of radiation. After all, stars produce radiation through fusion, and the tidal disruption results in the spaghettification of the star, effectively pulling the plug on the fusion reactions. Black holes brighten when they're feeding on material, but that process doesn't look like the sudden burst of radiation from a tidal disruption event.\nIt turns out that we don't entirely know how the radiation is produced. There are several competing ideas, but we've not been able to figure out which one of them fits the data best. However, scientists have taken advantage of an updated software package to model a tidal disruption event and show that their improved model fits our observations pretty well.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "John Timmer", + "comments": "https://arstechnica.com/science/2024/01/explaining-why-a-black-hole-produces-light-when-ripping-apart-a-star/#comments", + "content": "New model tracks the remains of a star looping around a black hole.", + "contentSnippet": "New model tracks the remains of a star looping around a black hole.", + "guid": "https://arstechnica.com/?p=1996716", + "categories": [ + "Science", + "astronomy", + "astrophysics", + "black holes", + "tidal disruption" + ], + "isoDate": "2024-01-17T18:50:37.000Z" + }, + { + "creator": "WIRED", + "title": "Just 10 lines of code can steal AI secrets from Apple, AMD, and Qualcomm GPUs", + "link": "https://arstechnica.com/?p=1996672", + "pubDate": "Wed, 17 Jan 2024 18:15:00 +0000", + "content:encoded": "
\n
\n \"ai\n

Enlarge (credit: MEHAU KULYK/Getty Images)

\n\n\n\n\n\n\n
\n

As more companies ramp up development of artificial intelligence systems, they are increasingly turning to graphics processing unit (GPU) chips for the computing power they need to run large language models (LLMs) and to crunch data quickly at massive scale. Between video game processing and AI, demand for GPUs has never been higher, and chipmakers are rushing to bolster supply. In new findings released today, though, researchers are highlighting a vulnerability in multiple brands and models of mainstream GPUs\u2014including Apple, Qualcomm, and AMD chips\u2014that could allow an attacker to steal large quantities of data from a GPU\u2019s memory.

\n

The silicon industry has spent years refining the security of central processing units, or CPUs, so they don\u2019t leak data in memory even when they are built to optimize for speed. However, since GPUs were designed for raw graphics processing power, they haven\u2019t been architected to the same degree with data privacy as a priority. As generative AI and other machine learning applications expand the uses of these chips, though, researchers from New York-based security firm Trail of Bits say that vulnerabilities in GPUs are an increasingly urgent concern.

\n

Read 21 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: MEHAU KULYK/Getty Images)\n \n\n\n\n\n\n\n\nAs more companies ramp up development of artificial intelligence systems, they are increasingly turning to graphics processing unit (GPU) chips for the computing power they need to run large language models (LLMs) and to crunch data quickly at massive scale. Between video game processing and AI, demand for GPUs has never been higher, and chipmakers are rushing to bolster supply. In new findings released today, though, researchers are highlighting a vulnerability in multiple brands and models of mainstream GPUs\u2014including Apple, Qualcomm, and AMD chips\u2014that could allow an attacker to steal large quantities of data from a GPU\u2019s memory.\nThe silicon industry has spent years refining the security of central processing units, or CPUs, so they don\u2019t leak data in memory even when they are built to optimize for speed. However, since GPUs were designed for raw graphics processing power, they haven\u2019t been architected to the same degree with data privacy as a priority. As generative AI and other machine learning applications expand the uses of these chips, though, researchers from New York-based security firm Trail of Bits say that vulnerabilities in GPUs are an increasingly urgent concern.\n\nRead 21 remaining paragraphs | Comments", + "dc:creator": "WIRED", + "comments": "https://arstechnica.com/security/2024/01/new-attack-steals-ai-secrets-from-gpus-made-by-apple-amd-and-qualcomm/#comments", + "content": "Patching all affected devices, which include some Macs and iPhones, may be tough.", + "contentSnippet": "Patching all affected devices, which include some Macs and iPhones, may be tough.", + "guid": "https://arstechnica.com/?p=1996672", + "categories": [ + "Security", + "AI", + "data leaks", + "GPU", + "LLMs", + "syndication" + ], + "isoDate": "2024-01-17T18:15:00.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "The Galaxy S24 gets seven years of updates, $1,300 Titanium \u201cUltra\u201d model", + "link": "https://arstechnica.com/?p=1994407", + "pubDate": "Wed, 17 Jan 2024 18:00:28 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The Galaxy S24 line. (credit: Samsung)

\n\n\n\n\n\n\n
\n

Samsung has unveiled its new flagship phones for 2024: the Galaxy S24, S24+, and S24 Ultra.\u00a0 Considering Samsung's usually conservative year-to-year changes, there are a lot of differences this year.

\n

The S24 Ultra now has a titanium body, just like the iPhone 15. It also has a \"fully flat display,\" ending years of Android's weird curved OLED panel gimmick that only served to distort the sides of the display. Samsung says the new Ultra design has \"42 percent slimmer bezels\" and a front hole-punch camera cutout that is \"11 percent smaller\" than those on the S23 Ultra. The rest of the design looks like Ultra models of past years, with rounded edges and a flat top and bottom. The bottom still houses an S-Pen for handwriting and drawing.

\n

All that titanium will cost you. The S24 Ultra is $100 more than last year, coming to an eye-popping $1,300. An iPhone 15 Pro Max is $1,200, and a Pixel 8 Pro is $1,000, so that's a tough sell.

Read 12 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The Galaxy S24 line. (credit: Samsung)\n \n\n\n\n\n\n\n\nSamsung has unveiled its new flagship phones for 2024: the Galaxy S24, S24+, and S24 Ultra.\u00a0 Considering Samsung's usually conservative year-to-year changes, there are a lot of differences this year.\nThe S24 Ultra now has a titanium body, just like the iPhone 15. It also has a \"fully flat display,\" ending years of Android's weird curved OLED panel gimmick that only served to distort the sides of the display. Samsung says the new Ultra design has \"42 percent slimmer bezels\" and a front hole-punch camera cutout that is \"11 percent smaller\" than those on the S23 Ultra. The rest of the design looks like Ultra models of past years, with rounded edges and a flat top and bottom. The bottom still houses an S-Pen for handwriting and drawing.\nAll that titanium will cost you. The S24 Ultra is $100 more than last year, coming to an eye-popping $1,300. An iPhone 15 Pro Max is $1,200, and a Pixel 8 Pro is $1,000, so that's a tough sell.\n\nRead 12 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2024/01/the-galaxy-s24-gets-seven-years-of-updates-1300-titanium-ultra-model/#comments", + "content": "The new update plan on a Qualcomm SoC is a major ecosystem change. ", + "contentSnippet": "The new update plan on a Qualcomm SoC is a major ecosystem change.", + "guid": "https://arstechnica.com/?p=1994407", + "categories": ["Tech"], + "isoDate": "2024-01-17T18:00:28.000Z" + }, + { + "creator": "Benj Edwards", + "title": "As 2024 election looms, OpenAI says it is taking steps to prevent AI abuse", + "link": "https://arstechnica.com/?p=1996606", + "pubDate": "Wed, 17 Jan 2024 17:44:39 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Getty Images | Benj Edwards)

\n\n\n\n\n\n\n
\n

On Monday, ChatGPT maker OpenAI detailed its plans to prevent the misuse of its AI technologies during the upcoming elections in 2024, promising transparency in AI-generated content and enhancing access to reliable voting information. The AI developer says it is working on an approach that involves policy enforcement, collaboration with partners, and the development of new tools aimed at classifying AI-generated media.

\n\n

\"As we prepare for elections in 2024 across the world\u2019s largest democracies, our approach is to continue our platform safety work by elevating accurate voting information, enforcing measured policies, and improving transparency,\" writes OpenAI in its blog post. \"Protecting the integrity of elections requires collaboration from every corner of the democratic process, and we want to make sure our technology is not used in a way that could undermine this process.\"

\n

Initiatives proposed by OpenAI include preventing abuse by means such as deepfakes or bots imitating candidates, refining usage policies, and launching a reporting system for the public to flag potential abuses. For example, OpenAI's image generation tool, DALL-E 3, includes built-in filters that reject requests to create images of real people, including politicians. \"For years, we\u2019ve been iterating on tools to improve factual accuracy, reduce bias, and decline certain requests,\" the company stated.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | Benj Edwards)\n \n\n\n\n\n\n\n\nOn Monday, ChatGPT maker OpenAI detailed its plans to prevent the misuse of its AI technologies during the upcoming elections in 2024, promising transparency in AI-generated content and enhancing access to reliable voting information. The AI developer says it is working on an approach that involves policy enforcement, collaboration with partners, and the development of new tools aimed at classifying AI-generated media.\n\"As we prepare for elections in 2024 across the world\u2019s largest democracies, our approach is to continue our platform safety work by elevating accurate voting information, enforcing measured policies, and improving transparency,\" writes OpenAI in its blog post. \"Protecting the integrity of elections requires collaboration from every corner of the democratic process, and we want to make sure our technology is not used in a way that could undermine this process.\"\nInitiatives proposed by OpenAI include preventing abuse by means such as deepfakes or bots imitating candidates, refining usage policies, and launching a reporting system for the public to flag potential abuses. For example, OpenAI's image generation tool, DALL-E 3, includes built-in filters that reject requests to create images of real people, including politicians. \"For years, we\u2019ve been iterating on tools to improve factual accuracy, reduce bias, and decline certain requests,\" the company stated.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/information-technology/2024/01/as-2024-election-looms-openai-says-it-is-taking-steps-to-prevent-ai-abuse/#comments", + "content": "ChatGPT maker plans transparency for gen AI content and improved access to voting info.", + "contentSnippet": "ChatGPT maker plans transparency for gen AI content and improved access to voting info.", + "guid": "https://arstechnica.com/?p=1996606", + "categories": [ + "AI", + "Biz & IT", + "2024", + "2024 election", + "AI abuse", + "AI ethics", + "AI safety", + "ChatGPT", + "chatgtp", + "dall-e", + "DALL-E 3", + "deepfakes", + "image synthesis", + "large language models", + "machine learning", + "openai", + "text synthesis", + "US presidential election" + ], + "isoDate": "2024-01-17T17:44:39.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Sharing deepfake porn could lead to lengthy prison time under proposed law", + "link": "https://arstechnica.com/?p=1996611", + "pubDate": "Wed, 17 Jan 2024 16:59:37 +0000", + "content:encoded": "
\n
\n \"Sharing\n

Enlarge (credit: Georgijevic | E+)

\n\n\n\n\n\n\n
\n

The US seems to be getting serious about criminalizing deepfake pornography after teen boys at a New Jersey high school used AI image generators to create and share non-consensual fake nude images of female classmates last October.

\n

On Tuesday, Rep. Joseph Morelle (D-NY) announced that he has re-introduced the \u201cPreventing Deepfakes of Intimate Images Act,\u201d which seeks to \"prohibit the non-consensual disclosure of digitally altered intimate images.\" Under the proposed law, anyone sharing deepfake pornography without an individual's consent risks damages that could go as high as $150,000 and imprisonment of up to 10 years if sharing the images facilitates violence or impacts the proceedings of a government agency.

\n

The hope is that steep penalties will deter companies and individuals from allowing the disturbing images to be spread. It creates a criminal offense for sharing deepfake pornography \"with the intent to harass, annoy, threaten, alarm, or cause substantial harm to the finances or reputation of the depicted individual\" or with \"reckless disregard\" or \"actual knowledge\" that images will harm the individual depicted. It also provides a path for victims to sue offenders in civil court.

Read 13 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Georgijevic | E+)\n \n\n\n\n\n\n\n\nThe US seems to be getting serious about criminalizing deepfake pornography after teen boys at a New Jersey high school used AI image generators to create and share non-consensual fake nude images of female classmates last October.\nOn Tuesday, Rep. Joseph Morelle (D-NY) announced that he has re-introduced the \u201cPreventing Deepfakes of Intimate Images Act,\u201d which seeks to \"prohibit the non-consensual disclosure of digitally altered intimate images.\" Under the proposed law, anyone sharing deepfake pornography without an individual's consent risks damages that could go as high as $150,000 and imprisonment of up to 10 years if sharing the images facilitates violence or impacts the proceedings of a government agency.\nThe hope is that steep penalties will deter companies and individuals from allowing the disturbing images to be spread. It creates a criminal offense for sharing deepfake pornography \"with the intent to harass, annoy, threaten, alarm, or cause substantial harm to the finances or reputation of the depicted individual\" or with \"reckless disregard\" or \"actual knowledge\" that images will harm the individual depicted. It also provides a path for victims to sue offenders in civil court.\n\nRead 13 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2024/01/sharing-deepfake-could-lead-to-lengthy-prison-time-under-proposed-law/#comments", + "content": "Teen \u201cshouting for change\u201d after fake nude images spread at NJ high school.", + "contentSnippet": "Teen \u201cshouting for change\u201d after fake nude images spread at NJ high school.", + "guid": "https://arstechnica.com/?p=1996611", + "categories": [ + "Policy", + "ai image generated", + "AI-generated images", + "congress", + "deepfake porn", + "deepfake pornography", + "fake nude images", + "generative ai", + "New Jersey", + "sexual exploitation" + ], + "isoDate": "2024-01-17T16:59:37.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Fujitsu is sorry that its software helped send innocent people to prison", + "link": "https://arstechnica.com/?p=1996588", + "pubDate": "Wed, 17 Jan 2024 16:09:02 +0000", + "content:encoded": "
\n
\n \"Fujitsu\n

Enlarge / Paul Patterson, co-CEO of Fujitsu's European division, giving evidence to the Business and Trade Committee at the Houses of Parliament, London on January 16, 2024. (credit: Getty Images | House of Commons - PA Images)

\n\n\n\n\n\n\n
\n

Fujitsu yesterday apologized for its role in the British Post Office scandal, acknowledging that its buggy accounting software contributed to the wrongful prosecutions of hundreds of postal employees.

\n

\"Fujitsu would like to apologize for our part in this appalling miscarriage of justice,\" Paul Patterson, co-CEO of Fujitsu's European division, said in a hearing held by the UK Parliament's Business and Trade Committee. \"We were involved from the very start. We did have bugs and errors in the system and we did help the Post Office in their prosecutions of the sub-postmasters. For that we are truly sorry.\"

\n

The committee hearing focused on possible compensation for victims of what has been called \"the worst miscarriage of justice in British history.\" Patterson said that Fujitsu has \"a moral obligation\" to contribute to the compensation for victims.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Paul Patterson, co-CEO of Fujitsu's European division, giving evidence to the Business and Trade Committee at the Houses of Parliament, London on January 16, 2024. (credit: Getty Images | House of Commons - PA Images)\n \n\n\n\n\n\n\n\nFujitsu yesterday apologized for its role in the British Post Office scandal, acknowledging that its buggy accounting software contributed to the wrongful prosecutions of hundreds of postal employees.\n\"Fujitsu would like to apologize for our part in this appalling miscarriage of justice,\" Paul Patterson, co-CEO of Fujitsu's European division, said in a hearing held by the UK Parliament's Business and Trade Committee. \"We were involved from the very start. We did have bugs and errors in the system and we did help the Post Office in their prosecutions of the sub-postmasters. For that we are truly sorry.\"\nThe committee hearing focused on possible compensation for victims of what has been called \"the worst miscarriage of justice in British history.\" Patterson said that Fujitsu has \"a moral obligation\" to contribute to the compensation for victims.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/fujitsu-apologizes-for-software-bugs-that-fueled-wrongful-convictions-in-uk/#comments", + "content": "Fujitsu exec: \"Bugs and errors\" aided wrongful prosecutions of UK postal workers.", + "contentSnippet": "Fujitsu exec: \"Bugs and errors\" aided wrongful prosecutions of UK postal workers.", + "guid": "https://arstechnica.com/?p=1996588", + "categories": [ + "Policy", + "british post office scandal", + "fujitsu horizon software" + ], + "isoDate": "2024-01-17T16:09:02.000Z" + }, + { + "creator": "Eric Berger", + "title": "Meet Helios, a new class of space tug with some real muscle", + "link": "https://arstechnica.com/?p=1996443", + "pubDate": "Wed, 17 Jan 2024 14:00:16 +0000", + "content:encoded": "
\n
\n \"Artist's\n

Enlarge / Artist's concept of the Helios space tug. (credit: Impulse Space)

\n\n\n\n\n\n\n
\n

In recent years there have been a number of modest \"tugs\" brought online to ferry small satellites to designated orbits. These miniature spacecraft provide so-called last-mile service and are particularly useful for satellites that launch as a part of rideshare missions and seek to reach a different altitude or inclination than that of the primary payload.

\n

However, these space logistics vehicles, offered by various companies such as D-Orbit, Momentus, Launcher, and several others, are generally designed for satellites with a mass of a few dozen to a few hundred kilograms.

\n

What has been lacking so far is a larger in-space tug that can haul bigger satellites to more distant orbits. That's the market that a new spacecraft built by Impulse Space, Helios, intends to serve.

Read 9 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Artist's concept of the Helios space tug. (credit: Impulse Space)\n \n\n\n\n\n\n\n\nIn recent years there have been a number of modest \"tugs\" brought online to ferry small satellites to designated orbits. These miniature spacecraft provide so-called last-mile service and are particularly useful for satellites that launch as a part of rideshare missions and seek to reach a different altitude or inclination than that of the primary payload.\nHowever, these space logistics vehicles, offered by various companies such as D-Orbit, Momentus, Launcher, and several others, are generally designed for satellites with a mass of a few dozen to a few hundred kilograms.\nWhat has been lacking so far is a larger in-space tug that can haul bigger satellites to more distant orbits. That's the market that a new spacecraft built by Impulse Space, Helios, intends to serve.\n\nRead 9 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2024/01/meet-helios-a-new-class-of-space-tug-with-some-real-muscle/#comments", + "content": "\"Just give us a sip. We'll take our 14 tons and we'll be glad to pay for it.\"", + "contentSnippet": "\"Just give us a sip. We'll take our 14 tons and we'll be glad to pay for it.\"", + "guid": "https://arstechnica.com/?p=1996443", + "categories": ["Science", "Space", "in-space propulsion", "space"], + "isoDate": "2024-01-17T14:00:16.000Z" + }, + { + "creator": "Ars Contributors", + "title": "BMW showed off hallucination-free AI at CES 2024", + "link": "https://arstechnica.com/?p=1996561", + "pubDate": "Wed, 17 Jan 2024 13:26:18 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: BMW)

\n\n\n\n\n\n\n
\n

The wave of AI hysteria at the 2024 CES in Las Vegas was predictable in many ways. It is, after all, the single biggest tech trend of the moment, and what startup wouldn't want to be part of that buzzy zeitgeist?

\n

To me, the widespread embrace by car manufacturers is a little more surprising. BMW, Mercedes-Benz, and Volkswagen all had AI-related announcements at CES, unexpected because, though exciting, technologies like ChatGPT have proven unreliable when it comes to minor details like delivering useful, factual information.

\n

For its implementation, BMW had a compelling solution to the problem: Take the power of a large language model, like Amazon's Alexa LLM, but only allow it to cite information from internal BMW documentation about the car.

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: BMW)\n \n\n\n\n\n\n\n\nThe wave of AI hysteria at the 2024 CES in Las Vegas was predictable in many ways. It is, after all, the single biggest tech trend of the moment, and what startup wouldn't want to be part of that buzzy zeitgeist?\nTo me, the widespread embrace by car manufacturers is a little more surprising. BMW, Mercedes-Benz, and Volkswagen all had AI-related announcements at CES, unexpected because, though exciting, technologies like ChatGPT have proven unreliable when it comes to minor details like delivering useful, factual information.\nFor its implementation, BMW had a compelling solution to the problem: Take the power of a large language model, like Amazon's Alexa LLM, but only allow it to cite information from internal BMW documentation about the car.\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/cars/2024/01/bmws-ai-powered-voice-assistant-at-ces-2024-sticks-to-the-facts/#comments", + "content": "Limited options make for better conversations.", + "contentSnippet": "Limited options make for better conversations.", + "guid": "https://arstechnica.com/?p=1996561", + "categories": ["Cars", "AI", "alexa", "BMW", "voice controls"], + "isoDate": "2024-01-17T13:26:18.000Z" + }, + { + "creator": "Jeanne Timmons", + "title": "An Alaskan mammoth and ancient humans frequented the same areas", + "link": "https://arstechnica.com/?p=1996991", + "pubDate": "Thu, 18 Jan 2024 17:16:37 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge (credit: Aunt_Spray / GETTY IMAGES)

\n\n\n\n\n\n\n
\n

A single tusk is all that remains of a mammoth that lived approximately 14,000 years ago. Yet that one tusk has enabled scientists to uncover remarkable details about her life. Using ancient DNA, researchers determined her sex and how she was related to mammoths that left fossils nearby. Using analysis of isotopes found in the tusks, they recreated her approximate movements over two decades, from birth to death, learning that she frequented areas once inhabited by ancient humans.

\n

Combined with Indigenous knowledge and earlier work tracking the movements of a male mammoth, we are beginning to gain unparalleled insight into the lives of specific animals, information that has implications for future understanding of Pleistocene ecology and its extinctions.

\n

Long in the tooth

\n

Mammoth tusks are essentially one long tooth, and their growth captures significant moments throughout the mammoth\u2019s life. \"Reading\" information contained within tusks, paleontologists can, for example, determine when and if a mammoth starved, when it was pregnant or going through musth, and the season in which it died. It also contains a record of where it likely roamed throughout its life\u2014if you have the right tools.

Read 28 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Aunt_Spray / GETTY IMAGES)\n \n\n\n\n\n\n\n\nA single tusk is all that remains of a mammoth that lived approximately 14,000 years ago. Yet that one tusk has enabled scientists to uncover remarkable details about her life. Using ancient DNA, researchers determined her sex and how she was related to mammoths that left fossils nearby. Using analysis of isotopes found in the tusks, they recreated her approximate movements over two decades, from birth to death, learning that she frequented areas once inhabited by ancient humans.\nCombined with Indigenous knowledge and earlier work tracking the movements of a male mammoth, we are beginning to gain unparalleled insight into the lives of specific animals, information that has implications for future understanding of Pleistocene ecology and its extinctions.\nLong in the tooth\nMammoth tusks are essentially one long tooth, and their growth captures significant moments throughout the mammoth\u2019s life. \"Reading\" information contained within tusks, paleontologists can, for example, determine when and if a mammoth starved, when it was pregnant or going through musth, and the season in which it died. It also contains a record of where it likely roamed throughout its life\u2014if you have the right tools.\n\nRead 28 remaining paragraphs | Comments", + "dc:creator": "Jeanne Timmons", + "content": "Isotopes trapped in a tusk can be matched to those in the Alaskan landscape.", + "contentSnippet": "Isotopes trapped in a tusk can be matched to those in the Alaskan landscape.", + "guid": "https://arstechnica.com/?p=1996991", + "categories": [ + "Science", + "Alaska", + "Biology", + "isotopes", + "mammoths", + "paleontology" + ], + "isoDate": "2024-01-18T17:16:37.000Z" + }, + { + "creator": "Benj Edwards", + "title": "80 years later, GCHQ releases new images of Nazi code-breaking computer", + "link": "https://arstechnica.com/?p=1996934", + "pubDate": "Thu, 18 Jan 2024 16:48:13 +0000", + "content:encoded": "
\n
\n \"An\n

Enlarge (credit: GCHQ | Benj Edwards)

\n\n\n\n\n\n\n
\n

On Thursday, the UK's Government Communications Headquarters (GCHQ) announced the release of previously unseen images and documents related to Colossus, one of the first digital computers. The release marks the 80th anniversary of the code-breaking machines that significantly aided the Allied forces during World War II. While some in the public knew of the computers earlier, the UK did not formally acknowledge the project's existence until the 2000s.

\n\n

Colossus was not one computer but a series of computers developed by British scientists between 1943 and 1945. These 2-meter-tall electronic beasts played an instrumental role in breaking the Lorenz cipher, a code used for communications between high-ranking German officials in occupied Europe. The computers were said to have allowed allies to \"read Hitler's mind,\" according to The Sydney Morning Herald.

\n
    \n
  • \n
    \n
    \"\"
    \n

    \n A photo of a surviving Colossus computer in 1963. [credit:\n GCHQ\n ]\n

    \n
    \n
  • \n
\n\n

The technology behind Colossus was highly innovative for its time. Tommy Flowers, the engineer behind its construction, used over 2,500 vacuum tubes to create logic gates, a precursor to the semiconductor-based electronic circuits found in modern computers. While 1945's ENIAC was long considered the clear front-runner in digital computing, the revelation of Colossus' earlier existence repositioned it in computing history. (However, it's important to note that ENIAC was a general-purpose computer, and Colossus was not.)

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: GCHQ | Benj Edwards)\n \n\n\n\n\n\n\n\nOn Thursday, the UK's Government Communications Headquarters (GCHQ) announced the release of previously unseen images and documents related to Colossus, one of the first digital computers. The release marks the 80th anniversary of the code-breaking machines that significantly aided the Allied forces during World War II. While some in the public knew of the computers earlier, the UK did not formally acknowledge the project's existence until the 2000s.\nColossus was not one computer but a series of computers developed by British scientists between 1943 and 1945. These 2-meter-tall electronic beasts played an instrumental role in breaking the Lorenz cipher, a code used for communications between high-ranking German officials in occupied Europe. The computers were said to have allowed allies to \"read Hitler's mind,\" according to The Sydney Morning Herald.\n\nGCHQ\n ]\n \nThe technology behind Colossus was highly innovative for its time. Tommy Flowers, the engineer behind its construction, used over 2,500 vacuum tubes to create logic gates, a precursor to the semiconductor-based electronic circuits found in modern computers. While 1945's ENIAC was long considered the clear front-runner in digital computing, the revelation of Colossus' earlier existence repositioned it in computing history. (However, it's important to note that ENIAC was a general-purpose computer, and Colossus was not.)\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/gadgets/2024/01/new-images-of-secret-nazi-busting-computer-emerge-on-80th-anniversary/#comments", + "content": "GCHQ unveils new docs on Colossus, a 1943 marvel that let allies \"read Hitler's mind.\"", + "contentSnippet": "GCHQ unveils new docs on Colossus, a 1943 marvel that let allies \"read Hitler's mind.\"", + "guid": "https://arstechnica.com/?p=1996934", + "categories": [ + "Tech", + "British Intelligence", + "code-breaking", + "Colossus", + "GCHQ", + "mainframe computer", + "Nazi", + "nazis", + "retrotech", + "World War II" + ], + "isoDate": "2024-01-18T16:48:13.000Z" + }, + { + "creator": "Beth Mole", + "title": "1,500 kids got bogus homeopathic pellets instead of lifesaving vaccines in NY", + "link": "https://arstechnica.com/?p=1996962", + "pubDate": "Thu, 18 Jan 2024 16:06:13 +0000", + "content:encoded": "
\n
\n \"Extreme\n

Enlarge / Vials containing pills for homeopathic remedies are displayed at Ainsworths Pharmacy on August 26, 2005, in London. (credit: Getty | Peter Macdiarmid)

\n\n\n\n\n\n\n
\n

A midwife in New York administered nearly 12,500 bogus homeopathic pellets to roughly 1,500 children in lieu of providing standard, life-saving vaccines, the New York State Department of Health reported yesterday.

\n

Jeanette Breen, a licensed midwife who operated Baldwin Midwifery in Nassau County, began providing the oral pellets to children around the start of the 2019\u20132020 school year, just three months after the state eliminated non-medical exemptions for standard school immunizations. She obtained the pellets from a homeopath outside New York and sold them as a series called the \"Real Immunity Homeoprophylaxis Program.\"

\n

The program falsely claimed to protect children against deadly infectious diseases covered by standard vaccination schedules, including diphtheria, tetanus, and pertussis (covered by the DTaP or Tdap vaccine); hepatitis B; measles, mumps and rubella (MMR vaccine); polio; chickenpox; meningococcal disease; Haemophilus influenzae disease (HiB); and pneumococcal diseases (PCV).

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Vials containing pills for homeopathic remedies are displayed at Ainsworths Pharmacy on August 26, 2005, in London. (credit: Getty | Peter Macdiarmid)\n \n\n\n\n\n\n\n\nA midwife in New York administered nearly 12,500 bogus homeopathic pellets to roughly 1,500 children in lieu of providing standard, life-saving vaccines, the New York State Department of Health reported yesterday.\nJeanette Breen, a licensed midwife who operated Baldwin Midwifery in Nassau County, began providing the oral pellets to children around the start of the 2019\u20132020 school year, just three months after the state eliminated non-medical exemptions for standard school immunizations. She obtained the pellets from a homeopath outside New York and sold them as a series called the \"Real Immunity Homeoprophylaxis Program.\"\nThe program falsely claimed to protect children against deadly infectious diseases covered by standard vaccination schedules, including diphtheria, tetanus, and pertussis (covered by the DTaP or Tdap vaccine); hepatitis B; measles, mumps and rubella (MMR vaccine); polio; chickenpox; meningococcal disease; Haemophilus influenzae disease (HiB); and pneumococcal diseases (PCV).\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/science/2024/01/ny-midwife-busted-for-giving-1-5k-kids-homeopathic-pellets-instead-of-vaccines/#comments", + "content": "The midwife paid a fine and is barred from accessing the state's vaccine records system.", + "contentSnippet": "The midwife paid a fine and is barred from accessing the state's vaccine records system.", + "guid": "https://arstechnica.com/?p=1996962", + "categories": [ + "Health", + "Science", + "Uncategorized", + "homeopath", + "homeopathy", + "infectious disases", + "midwife", + "new york", + "pellets", + "routine vaccination", + "vaccination", + "vaccines" + ], + "isoDate": "2024-01-18T16:06:13.000Z" + }, + { + "creator": "Eric Berger", + "title": "Former NASA administrator hates Artemis, wants to party like it\u2019s 2008", + "link": "https://arstechnica.com/?p=1996618", + "pubDate": "Thu, 18 Jan 2024 15:40:50 +0000", + "content:encoded": "
\n
\n \"Mike\n

Enlarge / Mike Griffin's plan for a fast Moon return would use two upgraded SLS rockets. (credit: NASA)

\n\n\n\n\n\n\n
\n

On Wednesday, former NASA Administrator Michael Griffin, 73, put forward a deferential but determined countenance as he addressed a House subcommittee that was conducting a hearing on NASA's Artemis Program to return humans to the Moon.

\n

\u201cI will be direct,\" Griffin said. \"In my judgment, the Artemis Program is excessively complex, unrealistically priced, compromises crew safety, poses very high mission risk of completion, and is highly unlikely to be completed in a timely manner even if successful.\u201d

\n

Essentially, Griffin told the House Space and Aeronautics Subcommittee, NASA could not afford to faff around with a complex, partly commercial plan to put humans back on the Moon, with an eye toward long-term settlement. Instead, he said, the agency must get back to the basics and get to the Moon as fast as possible. China, which has a competing lunar program, must not be allowed to beat NASA and its allies back to the Moon. The space agency, he said, needed to \"restart\" the Moon program and chuck out all of the commercial space nonsense.

Read 19 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Mike Griffin's plan for a fast Moon return would use two upgraded SLS rockets. (credit: NASA)\n \n\n\n\n\n\n\n\nOn Wednesday, former NASA Administrator Michael Griffin, 73, put forward a deferential but determined countenance as he addressed a House subcommittee that was conducting a hearing on NASA's Artemis Program to return humans to the Moon.\n\u201cI will be direct,\" Griffin said. \"In my judgment, the Artemis Program is excessively complex, unrealistically priced, compromises crew safety, poses very high mission risk of completion, and is highly unlikely to be completed in a timely manner even if successful.\u201d\nEssentially, Griffin told the House Space and Aeronautics Subcommittee, NASA could not afford to faff around with a complex, partly commercial plan to put humans back on the Moon, with an eye toward long-term settlement. Instead, he said, the agency must get back to the basics and get to the Moon as fast as possible. China, which has a competing lunar program, must not be allowed to beat NASA and its allies back to the Moon. The space agency, he said, needed to \"restart\" the Moon program and chuck out all of the commercial space nonsense.\n\nRead 19 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2024/01/former-nasa-administrator-hates-artemis-wants-to-party-like-its-2008/#comments", + "content": "\"In my judgment, the Artemis Program is excessively complex.\"", + "contentSnippet": "\"In my judgment, the Artemis Program is excessively complex.\"", + "guid": "https://arstechnica.com/?p=1996618", + "categories": ["Science", "Space"], + "isoDate": "2024-01-18T15:40:50.000Z" + }, + { + "creator": "Inside Climate News", + "title": "Supreme Court may overturn precedent governing climate regulations", + "link": "https://arstechnica.com/?p=1996932", + "pubDate": "Thu, 18 Jan 2024 14:39:47 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge (credit: Getty Images | Rudy Sulgan)

\n\n\n\n\n\n\n
\n

The Supreme Court on Wednesday heard arguments for overturning the so-called Chevron doctrine, one of the most important principles guiding federal regulation for the past 40 years.

\n

The doctrine, named for a 1984 court case involving Environmental Protection Agency air pollution rules, has been high on the agenda of right-wing groups for years. It holds that when the meaning of a law is disputed, the federal agency\u2019s interpretation should be given deference as long as it is reasonable. Environmental groups fear that overturning the precedent will make it easier for courts to block new pollution regulations, especially those addressing climate change.

\n

The cases heard on Wednesday, Loper Bright Enterprises v. Raimondo, and Relentless, Inc. v. Department of Commerce, take on rules put into place in 2020 that require industry-funded federal observers aboard vessels in the northern Atlantic fishing for herring.

Read 21 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images | Rudy Sulgan)\n \n\n\n\n\n\n\n\nThe Supreme Court on Wednesday heard arguments for overturning the so-called Chevron doctrine, one of the most important principles guiding federal regulation for the past 40 years.\nThe doctrine, named for a 1984 court case involving Environmental Protection Agency air pollution rules, has been high on the agenda of right-wing groups for years. It holds that when the meaning of a law is disputed, the federal agency\u2019s interpretation should be given deference as long as it is reasonable. Environmental groups fear that overturning the precedent will make it easier for courts to block new pollution regulations, especially those addressing climate change.\nThe cases heard on Wednesday, Loper Bright Enterprises v. Raimondo, and Relentless, Inc. v. Department of Commerce, take on rules put into place in 2020 that require industry-funded federal observers aboard vessels in the northern Atlantic fishing for herring.\n\nRead 21 remaining paragraphs | Comments", + "dc:creator": "Inside Climate News", + "comments": "https://arstechnica.com/tech-policy/2024/01/supreme-court-may-overturn-precedent-governing-climate-regulations/#comments", + "content": "1984's Chevron doctrine has been a pillar of federal regulatory law.", + "contentSnippet": "1984's Chevron doctrine has been a pillar of federal regulatory law.", + "guid": "https://arstechnica.com/?p=1996932", + "categories": [ + "Policy", + "Chevron", + "EPA", + "regulation", + "Supreme Court", + "syndicaiton", + "syndication" + ], + "isoDate": "2024-01-18T14:39:47.000Z" + }, + { + "creator": "Eric Berger", + "title": "Daily Telescope: In which the space station proves it truly is international", + "link": "https://arstechnica.com/?p=1996568", + "pubDate": "Thu, 18 Jan 2024 13:00:04 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The International Space Station flies high. (credit: Kent Christian)

\n\n\n\n\n\n\n
\n

Good morning. It's January 18, and today, we're looking at the brightest object made by humans in the night sky.

\n

I am speaking, of course, of the International Space Station\u2014a facility that has now been flying in orbit for a quarter of a century thanks to the care of NASA, Roscosmos, the European Space Agency, and the Japanese and Canadian space agencies. Anyone who lives in the mid-latitudes or tropics on Earth can see the station from time to time.

\n

I live in Houston, so the station is near and dear to my heart. Many of the astronauts who fly to the ISS train here, and most of them live here. One of my neighbors was one of the earliest station residents. Many hundreds, if not thousands, of people who live close to me work hard to keep the station soaring high and safe. Astronauts are up there doing basic research, understanding how microgravity ravages the human body, advancing commercial space, and much more.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The International Space Station flies high. (credit: Kent Christian)\n \n\n\n\n\n\n\n\nGood morning. It's January 18, and today, we're looking at the brightest object made by humans in the night sky.\nI am speaking, of course, of the International Space Station\u2014a facility that has now been flying in orbit for a quarter of a century thanks to the care of NASA, Roscosmos, the European Space Agency, and the Japanese and Canadian space agencies. Anyone who lives in the mid-latitudes or tropics on Earth can see the station from time to time.\nI live in Houston, so the station is near and dear to my heart. Many of the astronauts who fly to the ISS train here, and most of them live here. One of my neighbors was one of the earliest station residents. Many hundreds, if not thousands, of people who live close to me work hard to keep the station soaring high and safe. Astronauts are up there doing basic research, understanding how microgravity ravages the human body, advancing commercial space, and much more.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2024/01/daily-telescope-the-space-station-soars-above-a-canal-in-eastern-france/#comments", + "content": "\"We had parked our canal boat for the night...\"", + "contentSnippet": "\"We had parked our canal boat for the night...\"", + "guid": "https://arstechnica.com/?p=1996568", + "categories": ["Science", "Space", "daily telescope"], + "isoDate": "2024-01-18T13:00:04.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Axiom, SpaceX launch third all-private crew mission to space station", + "link": "https://arstechnica.com/?p=1997288", + "pubDate": "Fri, 19 Jan 2024 04:08:41 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A Falcon 9 rocket lifts off from NASA's Kennedy Space Center to begin the Ax-3 commercial crew mission. (credit: Stephen Clark/Ars Technica)

\n\n\n\n\n\n\n
\n

For the third time, an all-private crew is heading for the International Space Station. The four-man team lifted off from NASA's Kennedy Space Center in Florida aboard a SpaceX Falcon 9 rocket Thursday, kicking off a 36-hour pursuit of the orbiting research laboratory. Docking is scheduled for Saturday morning.

\n

This two-week mission is managed by Houston-based Axiom Space, which is conducting private astronaut missions to the ISS as a stepping stone toward building a fully commercial space station in low-Earth orbit by the end of this decade.

\n

Axiom's third mission, called Ax-3, launched at 4:49 pm EST (21:49 UTC) Thursday. The four astronauts were strapped into their seats inside SpaceX's Dragon Freedom spacecraft atop the Falcon 9 rocket. This is the 12th time SpaceX has launched a human spaceflight mission, and could be the first of five Dragon crew missions this year.

Read 23 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A Falcon 9 rocket lifts off from NASA's Kennedy Space Center to begin the Ax-3 commercial crew mission. (credit: Stephen Clark/Ars Technica)\n \n\n\n\n\n\n\n\nFor the third time, an all-private crew is heading for the International Space Station. The four-man team lifted off from NASA's Kennedy Space Center in Florida aboard a SpaceX Falcon 9 rocket Thursday, kicking off a 36-hour pursuit of the orbiting research laboratory. Docking is scheduled for Saturday morning.\nThis two-week mission is managed by Houston-based Axiom Space, which is conducting private astronaut missions to the ISS as a stepping stone toward building a fully commercial space station in low-Earth orbit by the end of this decade.\nAxiom's third mission, called Ax-3, launched at 4:49 pm EST (21:49 UTC) Thursday. The four astronauts were strapped into their seats inside SpaceX's Dragon Freedom spacecraft atop the Falcon 9 rocket. This is the 12th time SpaceX has launched a human spaceflight mission, and could be the first of five Dragon crew missions this year.\n\nRead 23 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2024/01/all-european-crew-takes-aim-on-international-space-station/#comments", + "content": "A US-Spanish dual citizen commands a crew of Italian, Swedish, and Turkish astronauts.", + "contentSnippet": "A US-Spanish dual citizen commands a crew of Italian, Swedish, and Turkish astronauts.", + "guid": "https://arstechnica.com/?p=1997288", + "categories": [ + "Space", + "axiom", + "falcon 9", + "human spaceflight", + "international space station", + "michael lopez-alegria", + "NASA", + "spacex" + ], + "isoDate": "2024-01-19T04:08:41.000Z" + }, + { + "creator": "Timothy B. Lee", + "title": "DeepMind AI rivals the world\u2019s smartest high schoolers at geometry", + "link": "https://arstechnica.com/?p=1997186", + "pubDate": "Thu, 18 Jan 2024 23:55:00 +0000", + "content:encoded": "
\n
\n \"Demis\n

Enlarge / Demis Hassabis, CEO of DeepMind Technologies and developer of AlphaGO, attends the AI Safety Summit at Bletchley Park on November 2, 2023 in Bletchley, England. (credit: Toby Melville - WPA Pool/Getty Images)

\n\n\n\n\n\n\n
\n

A system developed by Google\u2019s DeepMind has set a new record for AI performance on geometry problems. DeepMind\u2019s AlphaGeometry managed to solve 25 of the 30 geometry problems drawn from the International Mathematical Olympiad between 2000 and 2022.

\n

That puts the software ahead of the vast majority of young mathematicians and just shy of IMO gold medalists. DeepMind estimates that the average gold medalist would have solved 26 out of 30 problems. Many view the IMO as the world\u2019s most prestigious math competition for high school students.

\n

\u201cBecause language models excel at identifying general patterns and relationships in data, they can quickly predict potentially useful constructs, but often lack the ability to reason rigorously or explain their decisions,\u201d DeepMind writes. To overcome this difficulty, DeepMind paired a language model with a more traditional symbolic deduction engine that performs algebraic and geometric reasoning.

Read 24 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Demis Hassabis, CEO of DeepMind Technologies and developer of AlphaGO, attends the AI Safety Summit at Bletchley Park on November 2, 2023 in Bletchley, England. (credit: Toby Melville - WPA Pool/Getty Images)\n \n\n\n\n\n\n\n\nA system developed by Google\u2019s DeepMind has set a new record for AI performance on geometry problems. DeepMind\u2019s AlphaGeometry managed to solve 25 of the 30 geometry problems drawn from the International Mathematical Olympiad between 2000 and 2022.\nThat puts the software ahead of the vast majority of young mathematicians and just shy of IMO gold medalists. DeepMind estimates that the average gold medalist would have solved 26 out of 30 problems. Many view the IMO as the world\u2019s most prestigious math competition for high school students.\n\u201cBecause language models excel at identifying general patterns and relationships in data, they can quickly predict potentially useful constructs, but often lack the ability to reason rigorously or explain their decisions,\u201d DeepMind writes. To overcome this difficulty, DeepMind paired a language model with a more traditional symbolic deduction engine that performs algebraic and geometric reasoning.\n\nRead 24 remaining paragraphs | Comments", + "dc:creator": "Timothy B. Lee", + "comments": "https://arstechnica.com/ai/2024/01/deepmind-ai-rivals-the-worlds-smartest-high-schoolers-at-geometry/#comments", + "content": "DeepMind solved 25 out of 30 questions\u2014compared to 26 for a human gold medalist.", + "contentSnippet": "DeepMind solved 25 out of 30 questions\u2014compared to 26 for a human gold medalist.", + "guid": "https://arstechnica.com/?p=1997186", + "categories": [ + "AI", + "Science", + "AlphaGeometry", + "alphago", + "AlphaZero", + "deepmind" + ], + "isoDate": "2024-01-18T23:55:00.000Z" + }, + { + "creator": "Benj Edwards", + "title": "Zuckerberg\u2019s AGI remarks follow trend of downplaying AI dangers", + "link": "https://arstechnica.com/?p=1997158", + "pubDate": "Thu, 18 Jan 2024 23:19:01 +0000", + "content:encoded": "
\n
\n \"Mark\n

Enlarge / Mark Zuckerberg, chief executive officer of Meta Platforms Inc., during the Meta Connect event in Menlo Park, California, on September 27, 2023. (credit: Getty Images)

\n\n\n\n\n\n\n
\n

On Thursday, Meta CEO Mark Zuckerberg announced that his company is working on building \"general intelligence\" for AI assistants and \"open sourcing it responsibly,\" and that Meta is bringing together its two major research groups (FAIR and GenAI) to make it happen.

\n\n

\"It's become clearer that the next generation of services requires building full general intelligence,\" Zuckerberg said in an Instagram Reel. \"This technology is so important, and the opportunities are so great that we should open source and make it as widely available as we responsibly can so that everyone can benefit.\"

\n

Notably, Zuckerberg did not specifically mention the phrase \"artificial general intelligence\" \"AGI\" by name in his announcement, but a report from The Verge seems to suggest he is steering in that direction. AGI is a somewhat nebulous term for a hypothetical technology that is equivalent to human intelligence in performing general tasks without the need for specific training. It's the stated goal of Meta competitor OpenAI, and one that many have feared might pose an existential threat to humanity or replace humans working intellectual jobs.

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Mark Zuckerberg, chief executive officer of Meta Platforms Inc., during the Meta Connect event in Menlo Park, California, on September 27, 2023. (credit: Getty Images)\n \n\n\n\n\n\n\n\nOn Thursday, Meta CEO Mark Zuckerberg announced that his company is working on building \"general intelligence\" for AI assistants and \"open sourcing it responsibly,\" and that Meta is bringing together its two major research groups (FAIR and GenAI) to make it happen.\n\"It's become clearer that the next generation of services requires building full general intelligence,\" Zuckerberg said in an Instagram Reel. \"This technology is so important, and the opportunities are so great that we should open source and make it as widely available as we responsibly can so that everyone can benefit.\"\nNotably, Zuckerberg did not specifically mention the phrase \"artificial general intelligence\" \"AGI\" by name in his announcement, but a report from The Verge seems to suggest he is steering in that direction. AGI is a somewhat nebulous term for a hypothetical technology that is equivalent to human intelligence in performing general tasks without the need for specific training. It's the stated goal of Meta competitor OpenAI, and one that many have feared might pose an existential threat to humanity or replace humans working intellectual jobs.\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Benj Edwards", + "comments": "https://arstechnica.com/information-technology/2024/01/zuckerberg-says-meta-is-working-on-open-source-general-intelligence-for-ai/#comments", + "content": "Zuckeberg and Altman both tamp down fear and hype with casual statements about AGI.", + "contentSnippet": "Zuckeberg and Altman both tamp down fear and hype with casual statements about AGI.", + "guid": "https://arstechnica.com/?p=1997158", + "categories": [ + "AI", + "Biz & IT", + "agi", + "AI ethics", + "AI hype", + "AI safety", + "ChatGPT", + "chatgtp", + "Facebook", + "Instagram", + "Instagram Reel", + "large language models", + "machine learning", + "Mark Zuckerberg", + "meta", + "open source", + "open source AI", + "openai", + "sam altman" + ], + "isoDate": "2024-01-18T23:19:01.000Z" + }, + { + "creator": "Scharon Harding", + "title": "Amazon plans to charge for Alexa in June\u2014unless internal conflict delays revamp", + "link": "https://arstechnica.com/?p=1997184", + "pubDate": "Thu, 18 Jan 2024 23:04:20 +0000", + "content:encoded": "
\n
\n \"Amazon\n

Enlarge / Amazon demoed future generative AI capabilties for Alexa in September. (credit: Getty)

\n\n\n\n\n\n\n
\n

\u201cIf this fails to get revenue, Alexa is in trouble.\u201d

\n

A quote from an anonymous Amazon employee in a Wednesday Business Insider report paints a dire picture. Amazon needs its upcoming subscription version of Alexa to drive revenue in ways that its voice assistant never has before.

\n

Amazon declined Ars' request for comment on the report. But the opening quote in this article could have been uttered by anyone following voice assistants for the past year-plus. All voice assistants have struggled to drive revenue since people tend to use voice assistants for basic queries, like checking the weather, rather than transactions.

Read 17 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Amazon demoed future generative AI capabilties for Alexa in September. (credit: Getty)\n \n\n\n\n\n\n\n\n\u201cIf this fails to get revenue, Alexa is in trouble.\u201d\nA quote from an anonymous Amazon employee in a Wednesday Business Insider report paints a dire picture. Amazon needs its upcoming subscription version of Alexa to drive revenue in ways that its voice assistant never has before.\nAmazon declined Ars' request for comment on the report. But the opening quote in this article could have been uttered by anyone following voice assistants for the past year-plus. All voice assistants have struggled to drive revenue since people tend to use voice assistants for basic queries, like checking the weather, rather than transactions.\n\nRead 17 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/gadgets/2024/01/alexa-is-in-trouble-paid-for-alexa-gives-inaccurate-answers-in-early-demos/#comments", + "content": "Report claims Amazon is struggling to build a subscription version of Alexa. ", + "contentSnippet": "Report claims Amazon is struggling to build a subscription version of Alexa.", + "guid": "https://arstechnica.com/?p=1997184", + "categories": [ + "AI", + "Tech", + "Amazon", + "amazon alexa", + "generative ai", + "voice assistant" + ], + "isoDate": "2024-01-18T23:04:20.000Z" + }, + { + "creator": "Kevin Purdy", + "title": "Indiana Jones and the Great Circle is a new first-person Nazi-whipping journey", + "link": "https://arstechnica.com/?p=1997200", + "pubDate": "Thu, 18 Jan 2024 22:37:13 +0000", + "content:encoded": "
\n
\n \"Indiana\n

Enlarge / CGI Harrison Ford just can't believe he's getting roped into another globe-trotting adventure. (credit: Bethesda/Machine Games)

\n\n\n\n\n\n\n
\n

Almost two years ago to this day, Bethesda told everyone its Machine Games subsidiary was working on a new Indiana Jones game, one with \"an original story.\" Now we can see what Indiana Jones and the Great Circle is\u00a0going to look like, with a gameplay trailer showing up during Microsoft's Developer Direct event, and when it's arriving: \"2024.\" You can now wishlist it on Steam and the Xbox store; it's exclusive to those platforms.

\n

Gameplay reveal trailer for Indiana Jones and the Great Circle.

\n

While the game has Harrison Ford's likeness, it's not Ford voicing your character. Troy Baker, the original voice of Joel in\u00a0The Last of Us, picks up the role of the archaeologist.

\n

From the trailer, Great Circle looks a lot like the modern Wolfenstein games that Machine Games made\u2014and that's a good thing.\u00a0The New Order and\u00a0The New Colossus\u00a0excelled at making you feel more like a human action hero than a shooting tank. They've got a knack for first-person platforming, stunts, and cinematic moments that are nowhere near as painful as in many shooters. They excel at balancing immersing you as a player and letting your character have a personality.

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / CGI Harrison Ford just can't believe he's getting roped into another globe-trotting adventure. (credit: Bethesda/Machine Games)\n \n\n\n\n\n\n\n\nAlmost two years ago to this day, Bethesda told everyone its Machine Games subsidiary was working on a new Indiana Jones game, one with \"an original story.\" Now we can see what Indiana Jones and the Great Circle is\u00a0going to look like, with a gameplay trailer showing up during Microsoft's Developer Direct event, and when it's arriving: \"2024.\" You can now wishlist it on Steam and the Xbox store; it's exclusive to those platforms.\n\nGameplay reveal trailer for Indiana Jones and the Great Circle. \n\nWhile the game has Harrison Ford's likeness, it's not Ford voicing your character. Troy Baker, the original voice of Joel in\u00a0The Last of Us, picks up the role of the archaeologist.\nFrom the trailer, Great Circle looks a lot like the modern Wolfenstein games that Machine Games made\u2014and that's a good thing.\u00a0The New Order and\u00a0The New Colossus\u00a0excelled at making you feel more like a human action hero than a shooting tank. They've got a knack for first-person platforming, stunts, and cinematic moments that are nowhere near as painful as in many shooters. They excel at balancing immersing you as a player and letting your character have a personality.\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Kevin Purdy", + "comments": "https://arstechnica.com/gaming/2024/01/first-look-at-indiana-jones-game-suggests-a-wolfenstein-like-romp/#comments", + "content": "Modern action/FPS is set inside Indy's classic post-Ark, pre-Crusade era.", + "contentSnippet": "Modern action/FPS is set inside Indy's classic post-Ark, pre-Crusade era.", + "guid": "https://arstechnica.com/?p=1997200", + "categories": [ + "Gaming", + "bethesda", + "Bethesda Game Studios", + "Indiana Jones", + "MachineGames", + "nazis" + ], + "isoDate": "2024-01-18T22:37:13.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Samsung\u2019s $1,300 phone might someday have fees for AI usage", + "link": "https://arstechnica.com/?p=1997147", + "pubDate": "Thu, 18 Jan 2024 22:23:48 +0000", + "content:encoded": "
\n
\n \"Samsung\u2019s\n

Enlarge (credit: Samsung)

\n\n\n\n\n\n\n
\n

Samsung's big Galaxy S24 launch was yesterday, and to hear Samsung tell the story, the big highlight of the event was \"Galaxy AI.\" Another view is that Galaxy AI is the usual bundle of baked-in Samsung features skinned on top of Android, but with generative AI being the hot new thing, Samsung went with AI-centric branding. Whatever value you want to place on Samsung's AI features, you might soon have to place an actual monetary value on them: Despite devices like the Galaxy S24 Ultra costing $1,300, Samsung might start charging for some of these AI phone features.

\n

The fine print on Samsung's Galaxy S24 promotional page features 44 asterisks and footnotes, and tucked away in that pile of caveats is the line \"Galaxy AI features will be provided for free until the end of 2025 on supported Samsung Galaxy devices.\" That means Samsung reserves the right to charge for Galaxy AI after 2025.

\n

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Samsung)\n \n\n\n\n\n\n\n\nSamsung's big Galaxy S24 launch was yesterday, and to hear Samsung tell the story, the big highlight of the event was \"Galaxy AI.\" Another view is that Galaxy AI is the usual bundle of baked-in Samsung features skinned on top of Android, but with generative AI being the hot new thing, Samsung went with AI-centric branding. Whatever value you want to place on Samsung's AI features, you might soon have to place an actual monetary value on them: Despite devices like the Galaxy S24 Ultra costing $1,300, Samsung might start charging for some of these AI phone features.\nThe fine print on Samsung's Galaxy S24 promotional page features 44 asterisks and footnotes, and tucked away in that pile of caveats is the line \"Galaxy AI features will be provided for free until the end of 2025 on supported Samsung Galaxy devices.\" That means Samsung reserves the right to charge for Galaxy AI after 2025.\n\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2024/01/samsung-may-charge-users-for-galaxy-s24-ai-features-after-2-years/#comments", + "content": "Samsung says Galaxy S24 AI features are \"free until the end of 2025.\"", + "contentSnippet": "Samsung says Galaxy S24 AI features are \"free until the end of 2025.\"", + "guid": "https://arstechnica.com/?p=1997147", + "categories": ["AI", "Tech", "Galaxy S24", "Samsung"], + "isoDate": "2024-01-18T22:23:48.000Z" + }, + { + "creator": "Andrew Cunningham", + "title": "Bing Search shows few, if any, signs of market share increase from AI features", + "link": "https://arstechnica.com/?p=1996998", + "pubDate": "Thu, 18 Jan 2024 21:52:22 +0000", + "content:encoded": "
\n
\n \"Bing\n

Enlarge (credit: Microsoft)

\n\n\n\n\n\n\n
\n

Not quite one year ago, Microsoft announced a \"multi-year, multi-billion dollar investment\" in OpenAI, a company that had made waves in 2022 with its ChatGPT chatbot and DALL-E image creator. The next month, Microsoft announced that it was integrating a generative AI chatbot into its Bing search engine and Edge browser, and similar generative AI features were announced for Windows in the apps formerly known as Microsoft Office, Microsoft Teams, and other products.

\n

Adding AI features to Bing was meant to give it an edge over Google, and reports indicated that Google was worried enough about it to accelerate its own internal generative AI efforts. Microsoft announced in March 2023 that Bing surpassed the 100 million monthly active users mark based on interest in Bing Chat and its ilk; by Microsoft's estimates, each percentage of Google's search market share that Bing could siphon away was worth as much as $2 billion to Microsoft.

\n\n

A year later, it looks like Microsoft's AI efforts may have helped Bing on the margins, but they haven't meaningfully eroded Google's search market share, according to Bloomberg. Per Bloomberg's analysis of data from Sensor Tower, Bing usage had been down around 33 percent year over year just before the AI-powered features were added, but those numbers had rebounded by the middle of 2023.

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Microsoft)\n \n\n\n\n\n\n\n\nNot quite one year ago, Microsoft announced a \"multi-year, multi-billion dollar investment\" in OpenAI, a company that had made waves in 2022 with its ChatGPT chatbot and DALL-E image creator. The next month, Microsoft announced that it was integrating a generative AI chatbot into its Bing search engine and Edge browser, and similar generative AI features were announced for Windows in the apps formerly known as Microsoft Office, Microsoft Teams, and other products.\nAdding AI features to Bing was meant to give it an edge over Google, and reports indicated that Google was worried enough about it to accelerate its own internal generative AI efforts. Microsoft announced in March 2023 that Bing surpassed the 100 million monthly active users mark based on interest in Bing Chat and its ilk; by Microsoft's estimates, each percentage of Google's search market share that Bing could siphon away was worth as much as $2 billion to Microsoft.\nA year later, it looks like Microsoft's AI efforts may have helped Bing on the margins, but they haven't meaningfully eroded Google's search market share, according to Bloomberg. Per Bloomberg's analysis of data from Sensor Tower, Bing usage had been down around 33 percent year over year just before the AI-powered features were added, but those numbers had rebounded by the middle of 2023.\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Andrew Cunningham", + "comments": "https://arstechnica.com/ai/2024/01/report-microsofts-ai-infusion-hasnt-helped-bing-take-share-from-google/#comments", + "content": "Bing's US and worldwide market share is about the same as it has been for years.", + "contentSnippet": "Bing's US and worldwide market share is about the same as it has been for years.", + "guid": "https://arstechnica.com/?p=1996998", + "categories": [ + "AI", + "Bing", + "Bing Chat", + "ChatGPT", + "copilot", + "google", + "microsoft", + "windows 11", + "windows copilot" + ], + "isoDate": "2024-01-18T21:52:22.000Z" + }, + { + "creator": "Samuel Axon", + "title": "Netflix won\u2019t have a Vision Pro app, compromising the device\u2019s appeal", + "link": "https://arstechnica.com/?p=1997085", + "pubDate": "Thu, 18 Jan 2024 20:56:54 +0000", + "content:encoded": "
\n
\n \"Vision\n

Enlarge / Vision Pro will allow users to watch movies on a virtual TV set. (credit: Apple)

\n\n\n\n\n\n\n
\n

In the leadup to Vision Pro preorders tomorrow, Apple has seemingly been prioritizing the message that the device will be an ideal way to watch movies and TV shows. In many ways, that might be true, but there's one major caveat: Netflix.

\n

In a statement reported by Bloomberg today, Netflix revealed that it does not plan to offer an app for Vision Pro. Instead, users will have to use a web-based interface to watch the streaming service.

\n

Netflix compares the experience to the Mac, but there are a few reasons this won't be an ideal experience for users. First, the iPad and iPhone mobile apps support offline viewing of downloaded videos. That's particularly handy for when you're flying, which is arguably one of the best use cases for Vision Pro.

Read 9 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Vision Pro will allow users to watch movies on a virtual TV set. (credit: Apple)\n \n\n\n\n\n\n\n\nIn the leadup to Vision Pro preorders tomorrow, Apple has seemingly been prioritizing the message that the device will be an ideal way to watch movies and TV shows. In many ways, that might be true, but there's one major caveat: Netflix.\nIn a statement reported by Bloomberg today, Netflix revealed that it does not plan to offer an app for Vision Pro. Instead, users will have to use a web-based interface to watch the streaming service.\nNetflix compares the experience to the Mac, but there are a few reasons this won't be an ideal experience for users. First, the iPad and iPhone mobile apps support offline viewing of downloaded videos. That's particularly handy for when you're flying, which is arguably one of the best use cases for Vision Pro.\n\nRead 9 remaining paragraphs | Comments", + "dc:creator": "Samuel Axon", + "comments": "https://arstechnica.com/gadgets/2024/01/netflix-wont-have-a-vision-pro-app-compromising-the-devices-appeal/#comments", + "content": "You'll be able to watch via the web browser, but that's far from ideal.", + "contentSnippet": "You'll be able to watch via the web browser, but that's far from ideal.", + "guid": "https://arstechnica.com/?p=1997085", + "categories": [ + "Culture", + "Tech", + "Apple Vision Pro", + "Netflix", + "visionOS" + ], + "isoDate": "2024-01-18T20:56:54.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Google lays off 100 at YouTube; CEO says more layoffs are coming", + "link": "https://arstechnica.com/?p=1996984", + "pubDate": "Thu, 18 Jan 2024 19:25:35 +0000", + "content:encoded": "
\n
\n \"Google\n

Enlarge / Google is looking pretty dilapidated these days. (credit: Aurich Lawson)

\n\n\n\n\n\n\n
\n

Today's Google layoff announcement concerns YouTube, which plans to lay off 100 employees. Tubefilter was the first to report the news. This is the third Google layoff announcement in eight days (the other two were at Google Assistant/Hardware and Google Ads) and the 10th Google layoff announcement we've covered in the past 12 months. It feels like we could be doing this kind of reporting via a template by now.

\n

Google CEO Sundar Pichai says to expect more layoffs. The Verge got hold of an internal memo from Pichai to Google's remaining employees on January 10, telling them to brace for \"tough choices\" in the future and that \"to be upfront, some teams will continue to make specific resource allocation decisions throughout the year where needed, and some roles may be impacted.\" Last year Google cut 12,000 jobs in January and continued to make smaller additional cuts all year. Pichai told his employees that this year, \"these role eliminations are not at the scale of last year\u2019s reductions, and will not touch every team.\"

\n

The January 10 date of the memo means Googlers got a heads up about the Google Assistant, Hardware, Google Ads, and YouTube layoffs, but no one knows when the layoffs will stop. Making investors happy is a big factor in all these layoffs, so if you're interested in the Wall Street perspective on Google's headcount, back in March 2023, activist investor Christopher Hohn of TCI Fund Management wanted to see Pichai cut another 25,000 people after the 12,000 original layoffs. Hohn wants to see Alphabet/Google go back to 150,000 employees, which was the company headcount at the end of 2021.

Read 2 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Google is looking pretty dilapidated these days. (credit: Aurich Lawson)\n \n\n\n\n\n\n\n\nToday's Google layoff announcement concerns YouTube, which plans to lay off 100 employees. Tubefilter was the first to report the news. This is the third Google layoff announcement in eight days (the other two were at Google Assistant/Hardware and Google Ads) and the 10th Google layoff announcement we've covered in the past 12 months. It feels like we could be doing this kind of reporting via a template by now.\nGoogle CEO Sundar Pichai says to expect more layoffs. The Verge got hold of an internal memo from Pichai to Google's remaining employees on January 10, telling them to brace for \"tough choices\" in the future and that \"to be upfront, some teams will continue to make specific resource allocation decisions throughout the year where needed, and some roles may be impacted.\" Last year Google cut 12,000 jobs in January and continued to make smaller additional cuts all year. Pichai told his employees that this year, \"these role eliminations are not at the scale of last year\u2019s reductions, and will not touch every team.\"\nThe January 10 date of the memo means Googlers got a heads up about the Google Assistant, Hardware, Google Ads, and YouTube layoffs, but no one knows when the layoffs will stop. Making investors happy is a big factor in all these layoffs, so if you're interested in the Wall Street perspective on Google's headcount, back in March 2023, activist investor Christopher Hohn of TCI Fund Management wanted to see Pichai cut another 25,000 people after the 12,000 original layoffs. Hohn wants to see Alphabet/Google go back to 150,000 employees, which was the company headcount at the end of 2021.\n\nRead 2 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/google/2024/01/google-ceo-sundar-pichai-promises-another-year-of-google-layoffs/#comments", + "content": "Sundar Pichai tells employees to brace for \"tough choices... throughout the year.\"", + "contentSnippet": "Sundar Pichai tells employees to brace for \"tough choices... throughout the year.\"", + "guid": "https://arstechnica.com/?p=1996984", + "categories": ["Google", "google", "layoffs", "Sundar Pichai"], + "isoDate": "2024-01-18T19:25:35.000Z" + }, + { + "creator": "Kyle Orland", + "title": "Game developer survey: 50% work at a studio already using generative AI tools", + "link": "https://arstechnica.com/?p=1997119", + "pubDate": "Thu, 18 Jan 2024 19:10:53 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The future of game development? (credit: Getty Images)

\n\n\n\n\n\n\n
\n

A new survey of thousands of game development professionals finds a near-majority saying generative AI tools are already in use at their workplace. But a significant minority of developers say their company has no interest in generative AI tools or has outright banned their use.

\n

The Game Developers Conference's 2024 State of the Industry report, released Thursday, aggregates the thoughts of over 3,000 industry professionals as of last October. While the annual survey (conducted in conjunction with research partner Omdia) has been running for 12 years, this is the first time respondents were asked directly about their use of generative AI tools such as ChatGPT, DALL-E, GitHub Copilot, and Adobe Generative Fill.

\n

Forty-nine percent of the survey's developer respondents said that generative AI tools are currently being used in their workplace. That near-majority includes 31 percent (of all respondents) that say they use those tools themselves and 18 percent that say their colleagues do.

Read 8 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The future of game development? (credit: Getty Images)\n \n\n\n\n\n\n\n\nA new survey of thousands of game development professionals finds a near-majority saying generative AI tools are already in use at their workplace. But a significant minority of developers say their company has no interest in generative AI tools or has outright banned their use.\nThe Game Developers Conference's 2024 State of the Industry report, released Thursday, aggregates the thoughts of over 3,000 industry professionals as of last October. While the annual survey (conducted in conjunction with research partner Omdia) has been running for 12 years, this is the first time respondents were asked directly about their use of generative AI tools such as ChatGPT, DALL-E, GitHub Copilot, and Adobe Generative Fill.\nForty-nine percent of the survey's developer respondents said that generative AI tools are currently being used in their workplace. That near-majority includes 31 percent (of all respondents) that say they use those tools themselves and 18 percent that say their colleagues do.\n\nRead 8 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/gaming/2024/01/game-developer-survey-50-work-at-a-studio-already-using-generative-ai-tools/#comments", + "content": "But 84% of devs are at least somewhat concerned about ethical use of those tools.", + "contentSnippet": "But 84% of devs are at least somewhat concerned about ethical use of those tools.", + "guid": "https://arstechnica.com/?p=1997119", + "categories": [ + "AI", + "Gaming", + "Artificial Intelligence", + "game development", + "generative ai", + "tools" + ], + "isoDate": "2024-01-18T19:10:53.000Z" + }, + { + "creator": "Kevin Purdy", + "title": "Figma\u2019s Creator Micro made me a macro pad person with its colorful, clicky keys", + "link": "https://arstechnica.com/?p=1996996", + "pubDate": "Thu, 18 Jan 2024 18:49:25 +0000", + "content:encoded": "
\n
\n \"Creator\n

Enlarge / It's coded for designers, quite literally, but the Figma Creator Micro is just a rebranded version of the stock Creator Micro from Work Louder. It is quite colorful, though. (credit: Figma)

\n\n\n\n\n\n\n
\n

A number of my friends, friends who aren\u2019t streamers, have picked up Elgato\u2019s Stream Decks. I can understand the impulse to have shortcuts, automation triggers, and fiddly little knobs within arm\u2019s reach, without expanding the keyboard itself. But the Stream Deck\u2019s customizable icons, upright nature, and streaming-focused app support make it a non-starter for my physical desktop. I\u2019m a clicky keyboard person, even if I can see some intriguing non-QWERTY possibilities.

\n

I hadn\u2019t considered looking further into a secondary keyboard until I noticed that the makers of interface design tool Figma had collaborated with Work Louder on a custom tiny keyboard, the Figma Creator Micro. It\u2019s a version of Work Louder\u2019s standard Creator Micro, done up with a Figma-style color scheme and set up with four layers of shortcuts most useful inside that app, for a total of 48. It\u2019s mechanical, it\u2019s colorful, and it\u2014or its more standardized cousin\u2014might do a good bit toward improving your workflow.

\n

Figma sent me a sample of its Creator Micro to test it out. I do not design interfaces, nor use Figma, but for all purposes, you could consider this to also be a test run of the standard Creator Micro. The two are functionally identical, minus the looks, and the pre-programming and custom shortcut keycaps included with the Figma version. Mine came with the \u201cClicky\u201d (Kailh White) keys, though \u201cSilent\u201d (Kailh Brown) is an option.

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / It's coded for designers, quite literally, but the Figma Creator Micro is just a rebranded version of the stock Creator Micro from Work Louder. It is quite colorful, though. (credit: Figma)\n \n\n\n\n\n\n\n\nA number of my friends, friends who aren\u2019t streamers, have picked up Elgato\u2019s Stream Decks. I can understand the impulse to have shortcuts, automation triggers, and fiddly little knobs within arm\u2019s reach, without expanding the keyboard itself. But the Stream Deck\u2019s customizable icons, upright nature, and streaming-focused app support make it a non-starter for my physical desktop. I\u2019m a clicky keyboard person, even if I can see some intriguing non-QWERTY possibilities.\nI hadn\u2019t considered looking further into a secondary keyboard until I noticed that the makers of interface design tool Figma had collaborated with Work Louder on a custom tiny keyboard, the Figma Creator Micro. It\u2019s a version of Work Louder\u2019s standard Creator Micro, done up with a Figma-style color scheme and set up with four layers of shortcuts most useful inside that app, for a total of 48. It\u2019s mechanical, it\u2019s colorful, and it\u2014or its more standardized cousin\u2014might do a good bit toward improving your workflow.\nFigma sent me a sample of its Creator Micro to test it out. I do not design interfaces, nor use Figma, but for all purposes, you could consider this to also be a test run of the standard Creator Micro. The two are functionally identical, minus the looks, and the pre-programming and custom shortcut keycaps included with the Figma version. Mine came with the \u201cClicky\u201d (Kailh White) keys, though \u201cSilent\u201d (Kailh Brown) is an option.\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Kevin Purdy", + "comments": "https://arstechnica.com/gadgets/2024/01/figmas-creator-micro-made-me-a-macro-pad-person-with-its-colorful-clicky-keys/#comments", + "content": "Besides being a fun tool, this pad's layers work great for OS-switching.", + "contentSnippet": "Besides being a fun tool, this pad's layers work great for OS-switching.", + "guid": "https://arstechnica.com/?p=1996996", + "categories": [ + "Tech", + "creator micro", + "figma", + "Glowing keyboards", + "Keyboards", + "macro pad", + "mechanical keyboards", + "work louder" + ], + "isoDate": "2024-01-18T18:49:25.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "TSMC predicts delays, less advanced chips at second Arizona fab", + "link": "https://arstechnica.com/?p=1997084", + "pubDate": "Thu, 18 Jan 2024 18:36:01 +0000", + "content:encoded": "
\n
\n US President Joe Biden speaks during a \"First Tool-In\" ceremony at the Taiwan Semiconductor Manufacturing Co. facility under construction in Phoenix, Arizona, US, on Tuesday, Dec. 6, 2022. TSMC today announced plans to boost its investment in the state to $40 billion and construct a second production facility, following major customers urging the Taiwanese chipmaker to build more advanced semiconductors in the US. \n

Enlarge / US President Joe Biden speaks during a \"First Tool-In\" ceremony at the Taiwan Semiconductor Manufacturing Co. facility under construction in Phoenix, Arizona, US, on Tuesday, Dec. 6, 2022. TSMC today announced plans to boost its investment in the state to $40 billion and construct a second production facility, following major customers urging the Taiwanese chipmaker to build more advanced semiconductors in the US. (credit: Bloomberg / Contributor | Bloomberg)

\n\n\n\n\n\n\n
\n

President Joe Biden's plan to expand America's command of the global chips market hit another setback Thursday when Taiwan Semiconductor Manufacturing Company (TSMC) Chairman Mark Liu announced that he anticipates significant delays at the company's second chips plant in Arizona.

\n

This news follows previous delays announced last year at TSMC's first chips plant, which Liu partly blamed on US workers lacking specialized skills. At Thursday's news conference, Liu \"reiterated\" those complaints, Bloomberg reported, claiming that TSMC is still struggling to hire skilled workers in Arizona.

\n

According to Liu, TSMC's second Arizona plant\u2014which is supposed to become the most advanced facility in the US\u2014likely won't start volume production of advanced chips until 2027 or 2028. That's potentially two years longer than initial projections suggesting that production would start in 2026.

Read 18 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / US President Joe Biden speaks during a \"First Tool-In\" ceremony at the Taiwan Semiconductor Manufacturing Co. facility under construction in Phoenix, Arizona, US, on Tuesday, Dec. 6, 2022. TSMC today announced plans to boost its investment in the state to $40 billion and construct a second production facility, following major customers urging the Taiwanese chipmaker to build more advanced semiconductors in the US. (credit: Bloomberg / Contributor | Bloomberg)\n \n\n\n\n\n\n\n\nPresident Joe Biden's plan to expand America's command of the global chips market hit another setback Thursday when Taiwan Semiconductor Manufacturing Company (TSMC) Chairman Mark Liu announced that he anticipates significant delays at the company's second chips plant in Arizona.\nThis news follows previous delays announced last year at TSMC's first chips plant, which Liu partly blamed on US workers lacking specialized skills. At Thursday's news conference, Liu \"reiterated\" those complaints, Bloomberg reported, claiming that TSMC is still struggling to hire skilled workers in Arizona.\nAccording to Liu, TSMC's second Arizona plant\u2014which is supposed to become the most advanced facility in the US\u2014likely won't start volume production of advanced chips until 2027 or 2028. That's potentially two years longer than initial projections suggesting that production would start in 2026.\n\nRead 18 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2024/01/bidens-plan-to-dominate-chips-market-may-face-delays-downgrades-at-tsmc-fabs/#comments", + "content": "US expected to speed up pace of Chips Act grants in first half of 2024.", + "contentSnippet": "US expected to speed up pace of Chips Act grants in first half of 2024.", + "guid": "https://arstechnica.com/?p=1997084", + "categories": [ + "Policy", + "arizona", + "chips fab", + "chips shortage", + "semiconductors", + "Taiwan Semiconductor Manufacturing Company", + "TSMC" + ], + "isoDate": "2024-01-18T18:36:01.000Z" + }, + { + "creator": "Scharon Harding", + "title": "Apple Watch no longer sold with blood oxygen monitoring after patent battle loss", + "link": "https://arstechnica.com/?p=1997001", + "pubDate": "Thu, 18 Jan 2024 18:15:21 +0000", + "content:encoded": "
\n
\n \"Apple\n

Enlarge / The Apple Watch Ultra 2. (credit: Apple)

\n\n\n\n\n\n\n
\n

Starting today, if you buy an Apple Watch Series 9 or Watch Ultra 2 it won\u2019t be able to tell you your blood oxygen levels, a feature that Apple heavily touted when first introducing the capability in 2020. Although the watches will be less capable than watches of the same model sold before today, Apple is selling the pared-down watches at the same prices as before.

\n

On Wednesday, the US Court of Appeals for the Federal Circuit denied [PDF] Apple\u2019s request that an import ban on the smartwatches be lifted for the duration of Apple\u2019s appeal of the ruling that blocked the watches. Apple expects its appeal to take at least a year to be resolved.

\n

In its ruling, the court said:

Read 16 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The Apple Watch Ultra 2. (credit: Apple)\n \n\n\n\n\n\n\n\nStarting today, if you buy an Apple Watch Series 9 or Watch Ultra 2 it won\u2019t be able to tell you your blood oxygen levels, a feature that Apple heavily touted when first introducing the capability in 2020. Although the watches will be less capable than watches of the same model sold before today, Apple is selling the pared-down watches at the same prices as before.\nOn Wednesday, the US Court of Appeals for the Federal Circuit denied [PDF] Apple\u2019s request that an import ban on the smartwatches be lifted for the duration of Apple\u2019s appeal of the ruling that blocked the watches. Apple expects its appeal to take at least a year to be resolved.\nIn its ruling, the court said:\n\nRead 16 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/gadgets/2024/01/apple-watch-no-longer-sold-with-blood-oxygen-monitoring-after-patent-battle-loss/#comments", + "content": "Apple removes Series 9, Ultra 2 patent-infringing feature to avoid import ban. ", + "contentSnippet": "Apple removes Series 9, Ultra 2 patent-infringing feature to avoid import ban.", + "guid": "https://arstechnica.com/?p=1997001", + "categories": [ + "Apple", + "Policy", + "Tech", + "apple", + "apple watch", + "patent infringement" + ], + "isoDate": "2024-01-18T18:15:21.000Z" + }, + { + "creator": "Jonathan M. Gitlin", + "title": "Ford pushes the off-road button with F-150 Lightning Switchgear", + "link": "https://arstechnica.com/?p=1997045", + "pubDate": "Thu, 18 Jan 2024 18:06:54 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / I normally prefer my performance cars on race circuits, but the Lightning Switchgear impressed this off-road racing novice. (credit: Jonathan Gitlin)

\n\n\n\n\n\n\n
\n\n

CONCORD, NC\u2014The venerable pickup truck can play a multitude of roles these days. For some, it's nothing more than a work vehicle, something to carry around lumber or tools or tow a trailer full of equipment. For others, it's the new American family car. But some truck owners like to leave the tarmac behind to have a little fun in the wilderness. Mostly, that involves low-speed rock crawling, perhaps up the side of a steep mountain. But it doesn't have to be slow\u2014vehicles like Ford's range of Raptors are designed to do highway speeds across expanses of desert wilderness, largely thanks to very clever dampers and plenty of suspension travel to munch up those bumps and bounces.

\n

Ford is yet to make a Raptor version of its F-150 Lightning electric pickup, but we got an idea of what one could be capable of this week thanks to a ride in the Blue Oval's latest electric demonstrator, the F-150 Lightning Switchgear. It's the result of a collaboration between Ford Performance and RTR Vehicles, a tuning company founded and run by drifting champion and off-road racer Vaughn Gittin Jr., and while it's just a one-off for now, the Lightning Switchgear is a testbed for pushing the boundaries of what we can expect from electric trucks, Ford says. (You may remember RTR previously worked with Ford to create a 1,400-hp Mustang Mach-E in 2020.)

\n

\"This is going to focus on chassis and suspension. So to that end, just like you do with any good racing vehicle, you start with the tires,\" explained Sriram Pakkam, head of F1 and EV demonstrators at Ford.

Read 6 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / I normally prefer my performance cars on race circuits, but the Lightning Switchgear impressed this off-road racing novice. (credit: Jonathan Gitlin)\n \n\n\n\n\n\n\n\nFord provided accommodation and flights from Washington to Charlotte so we could attend the 2024 season launch of Ford Performance. Ars does not accept paid editorial content.\nCONCORD, NC\u2014The venerable pickup truck can play a multitude of roles these days. For some, it's nothing more than a work vehicle, something to carry around lumber or tools or tow a trailer full of equipment. For others, it's the new American family car. But some truck owners like to leave the tarmac behind to have a little fun in the wilderness. Mostly, that involves low-speed rock crawling, perhaps up the side of a steep mountain. But it doesn't have to be slow\u2014vehicles like Ford's range of Raptors are designed to do highway speeds across expanses of desert wilderness, largely thanks to very clever dampers and plenty of suspension travel to munch up those bumps and bounces.\nFord is yet to make a Raptor version of its F-150 Lightning electric pickup, but we got an idea of what one could be capable of this week thanks to a ride in the Blue Oval's latest electric demonstrator, the F-150 Lightning Switchgear. It's the result of a collaboration between Ford Performance and RTR Vehicles, a tuning company founded and run by drifting champion and off-road racer Vaughn Gittin Jr., and while it's just a one-off for now, the Lightning Switchgear is a testbed for pushing the boundaries of what we can expect from electric trucks, Ford says. (You may remember RTR previously worked with Ford to create a 1,400-hp Mustang Mach-E in 2020.)\n\"This is going to focus on chassis and suspension. So to that end, just like you do with any good racing vehicle, you start with the tires,\" explained Sriram Pakkam, head of F1 and EV demonstrators at Ford.\n\nRead 6 remaining paragraphs | Comments", + "dc:creator": "Jonathan M. Gitlin", + "comments": "https://arstechnica.com/cars/2024/01/ford-pushes-the-off-road-button-with-f-150-lightning-switchgear/#comments", + "content": "The demonstrator was developed with Vaughn Gittin's RTR Vehicles.", + "contentSnippet": "The demonstrator was developed with Vaughn Gittin's RTR Vehicles.", + "guid": "https://arstechnica.com/?p=1997045", + "categories": [ + "Cars", + "Ford F-150 Lightning", + "Ford F-150 Lightning Switchgear", + "Ford Performance", + "off-road racing" + ], + "isoDate": "2024-01-18T18:06:54.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "FCC chair defends broadband discounts for poor people against Republican attack", + "link": "https://arstechnica.com/?p=1997006", + "pubDate": "Thu, 18 Jan 2024 17:32:12 +0000", + "content:encoded": "
\n
\n \"FCC\n

Enlarge / FCC Chairwoman Jessica Rosenworcel at a Senate subcommittee hearing on September 19, 2023 in Washington, DC. (credit: Getty Images | The Washington Post)

\n\n\n\n\n\n\n
\n

FCC Chairwoman Jessica Rosenworcel defended a low-income discount program against attacks from GOP lawmakers, pointing out that Republicans criticized an aspect of the program that was decided by Congress, not the commission.

\n

In December, Sen. Ted Cruz (R-Texas) and several other Republican lawmakers blasted the Affordable Connectivity Program (ACP), which gives $30 monthly broadband discounts to people with low incomes. The program is set to be discontinued in a few months because Congress hasn't added funding to continue it, though Democrats are pushing a bill that would keep it going.

\n

The Republican letter to Rosenworcel accused the Federal Communications Commission of being \"wasteful,\" saying that \"it appears the vast majority of tax dollars have gone to households that already had broadband prior to the subsidy.\" Rosenworcel has since responded in a letter reminding Republicans that the FCC followed Congress' instructions when it implemented the ACP.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / FCC Chairwoman Jessica Rosenworcel at a Senate subcommittee hearing on September 19, 2023 in Washington, DC. (credit: Getty Images | The Washington Post)\n \n\n\n\n\n\n\n\nFCC Chairwoman Jessica Rosenworcel defended a low-income discount program against attacks from GOP lawmakers, pointing out that Republicans criticized an aspect of the program that was decided by Congress, not the commission.\nIn December, Sen. Ted Cruz (R-Texas) and several other Republican lawmakers blasted the Affordable Connectivity Program (ACP), which gives $30 monthly broadband discounts to people with low incomes. The program is set to be discontinued in a few months because Congress hasn't added funding to continue it, though Democrats are pushing a bill that would keep it going.\nThe Republican letter to Rosenworcel accused the Federal Communications Commission of being \"wasteful,\" saying that \"it appears the vast majority of tax dollars have gone to households that already had broadband prior to the subsidy.\" Rosenworcel has since responded in a letter reminding Republicans that the FCC followed Congress' instructions when it implemented the ACP.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2024/01/fcc-chair-defends-broadband-discounts-for-poor-people-against-republican-attack/#comments", + "content": "Lawmakers criticized FCC for something that was decided by Congress, chair says.", + "contentSnippet": "Lawmakers criticized FCC for something that was decided by Congress, chair says.", + "guid": "https://arstechnica.com/?p=1997006", + "categories": ["Policy", "affordable connectivity program", "FCC"], + "isoDate": "2024-01-18T17:32:12.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "Scientists make non-toxic quantum dots for shortwave infrared image sensors", + "link": "https://arstechnica.com/?p=1996499", + "pubDate": "Thu, 18 Jan 2024 17:25:11 +0000", + "content:encoded": "
\n
\n \"Vials\n

Enlarge / Vials of quantum dots with gradually stepping emission from violet to deep red. (credit: Antipoff/CC BY-SA 3.0)

\n\n\n\n\n\n\n
\n

Shortwave infrared light (SWIR) sensors are desirable in a broad range of applications, particularly in the service robotics, automotive, and consumer electronics sectors. Colloidal quantum dots tuned to SWIR show promise for such sensors since they can be easily integrated into CMOS, but their mass market use has been hampered by the fact that most contain toxic heavy metals like lead or mercury. Now a team of scientists has manufactured quantum dots out of non-toxic materials and tested them in a fabricated lab-scale photodetector, according to a recent paper published in the journal Nature Photonics.

\n

\"SWIR light for sensing and imaging is of paramount importance owing to its unique characteristics,\" the authors wrote. \"It is eye safe; it can penetrate through fog, haze, and other atmospheric conditions, enabling imaging under adverse weather for automotive applications, environmental, and remote sensing; the presence of night glow under night in the SWIR range enables passive night vision; and visual imaging combined with infrared spectroscopy enables machine vision, bio imaging, and food and process quality inspection,\" among other applications.

\n

As previously reported, a\u00a0quantum dot is a small semiconducting bead a few tens of atoms in diameter. Billions could fit on the head of a pin, and the smaller you can make them, the better. At those small scales, quantum effects kick in and give the dots superior electrical and optical properties. They glow brightly when zapped with light, and the color of that light is determined by the size of the quantum dots. Bigger dots emit redder light; smaller dots emit bluer light. So you can tailor quantum dots to specific frequencies of light just by changing their size.

Read 6 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Vials of quantum dots with gradually stepping emission from violet to deep red. (credit: Antipoff/CC BY-SA 3.0)\n \n\n\n\n\n\n\n\nShortwave infrared light (SWIR) sensors are desirable in a broad range of applications, particularly in the service robotics, automotive, and consumer electronics sectors. Colloidal quantum dots tuned to SWIR show promise for such sensors since they can be easily integrated into CMOS, but their mass market use has been hampered by the fact that most contain toxic heavy metals like lead or mercury. Now a team of scientists has manufactured quantum dots out of non-toxic materials and tested them in a fabricated lab-scale photodetector, according to a recent paper published in the journal Nature Photonics.\n\"SWIR light for sensing and imaging is of paramount importance owing to its unique characteristics,\" the authors wrote. \"It is eye safe; it can penetrate through fog, haze, and other atmospheric conditions, enabling imaging under adverse weather for automotive applications, environmental, and remote sensing; the presence of night glow under night in the SWIR range enables passive night vision; and visual imaging combined with infrared spectroscopy enables machine vision, bio imaging, and food and process quality inspection,\" among other applications.\nAs previously reported, a\u00a0quantum dot is a small semiconducting bead a few tens of atoms in diameter. Billions could fit on the head of a pin, and the smaller you can make them, the better. At those small scales, quantum effects kick in and give the dots superior electrical and optical properties. They glow brightly when zapped with light, and the color of that light is determined by the size of the quantum dots. Bigger dots emit redder light; smaller dots emit bluer light. So you can tailor quantum dots to specific frequencies of light just by changing their size.\n\nRead 6 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/science/2024/01/scientists-make-non-toxic-quantum-dots-for-shortwave-infrared-image-sensors/#comments", + "content": "SWIR sensors ideal for service robotics, automotive, consumer electronics sectors.", + "contentSnippet": "SWIR sensors ideal for service robotics, automotive, consumer electronics sectors.", + "guid": "https://arstechnica.com/?p=1996499", + "categories": [ + "Science", + "computer vision", + "infrared image sensors", + "materials science", + "photonics", + "Physics", + "quantum dots", + "science" + ], + "isoDate": "2024-01-18T17:25:11.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Rocket Report: A new estimate of Starship costs; Japan launches spy satellite", + "link": "https://arstechnica.com/?p=1997065", + "pubDate": "Fri, 19 Jan 2024 12:00:56 +0000", + "content:encoded": "
\n
\n \"An\n

Enlarge / An H-IIA rocket lifts off with the IGS Optical-8 spy satellite. (credit: Mitsubishi Heavy Industries)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.27 of the Rocket Report! This week, we discuss an intriguing new report looking at Starship. Most fascinating, the report covers SpaceX's costs to build a Starship and how these costs will come down as the company ramps up its build and launch cadence. At the other end of the spectrum, former NASA Administrator Mike Griffin has a plan to get astronauts back to the Moon that would wholly ignore the opportunities afforded by Starship.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.

\n
\n

The problem at America's military spaceports. The Biden administration is requesting $1.3 billion over the next five years to revamp infrastructure at the Space Force's ranges in Florida and California, Ars reports. This will help address things like roads, bridges, utilities, and airfields that, in many cases, haven't seen an update in decades. But it's not enough, according to the Space Force. Last year, Cape Canaveral was the departure point for 72 orbital rocket launches, and officials anticipate more than 100 this year. The infrastructure and workforce at the Florida spaceport could support about 150 launches in a year without any major changes, but launch activity is likely to exceed that number within a few years.

Read 22 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / An H-IIA rocket lifts off with the IGS Optical-8 spy satellite. (credit: Mitsubishi Heavy Industries)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.27 of the Rocket Report! This week, we discuss an intriguing new report looking at Starship. Most fascinating, the report covers SpaceX's costs to build a Starship and how these costs will come down as the company ramps up its build and launch cadence. At the other end of the spectrum, former NASA Administrator Mike Griffin has a plan to get astronauts back to the Moon that would wholly ignore the opportunities afforded by Starship.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.\n\nThe problem at America's military spaceports. The Biden administration is requesting $1.3 billion over the next five years to revamp infrastructure at the Space Force's ranges in Florida and California, Ars reports. This will help address things like roads, bridges, utilities, and airfields that, in many cases, haven't seen an update in decades. But it's not enough, according to the Space Force. Last year, Cape Canaveral was the departure point for 72 orbital rocket launches, and officials anticipate more than 100 this year. The infrastructure and workforce at the Florida spaceport could support about 150 launches in a year without any major changes, but launch activity is likely to exceed that number within a few years.\n\nRead 22 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2024/01/rocket-report-a-new-estimate-of-starship-costs-japan-launches-spy-satellite/#comments", + "content": "One space tug company runs into financial problems; another says go big or go home.", + "contentSnippet": "One space tug company runs into financial problems; another says go big or go home.", + "guid": "https://arstechnica.com/?p=1997065", + "categories": [ + "Space", + "artemis", + "Elon Musk", + "impulse space", + "Japan", + "launch", + "Momentus", + "NASA", + "orbex", + "space launch system", + "spacex", + "starship", + "tiangong", + "tianzhou" + ], + "isoDate": "2024-01-19T12:00:56.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Japan\u2019s \u201cMoon sniper\u201d mission aims for precise lunar landing", + "link": "https://arstechnica.com/?p=1997302", + "pubDate": "Fri, 19 Jan 2024 13:42:26 +0000", + "content:encoded": "
\n
\n \"This\n

Enlarge / This artist's illustration shows the SLIM spacecraft descending toward the Moon and ejecting two deployable robots onto the lunar surface. (credit: JAXA)

\n\n\n\n\n\n\n
\n

If everything goes according to plan Friday, Japan's reputation as perhaps the world's most robot-obsessed nation will extend a quarter-million miles away, all the way to the austere landscape surrounding an impact crater on the Moon.

\n

Japan's robotic Smart Lander for Investigating Moon (SLIM) mission will descend down to the lunar surface Friday. The spacecraft was in an orbit of less than 400 miles (600 kilometers) over the lunar surface Thursday, with the final descent maneuvers set to begin early Friday.

\n

SLIM will fire its thrusters to lower the closest point of its orbit to the Moon down to an altitude of just 9 miles (15 kilometers). Then the spacecraft will commence its 20-minute final descent using its two hydrazine-fueled engines, culminating in a landing at 10:20 am EST (15:20 UTC) adjacent to a nearly 900-foot (270-meter) crater named Shioli in a region called the Sea of Nectar on the near side of the Moon.

Read 22 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / This artist's illustration shows the SLIM spacecraft descending toward the Moon and ejecting two deployable robots onto the lunar surface. (credit: JAXA)\n \n\n\n\n\n\n\n\nIf everything goes according to plan Friday, Japan's reputation as perhaps the world's most robot-obsessed nation will extend a quarter-million miles away, all the way to the austere landscape surrounding an impact crater on the Moon.\nJapan's robotic Smart Lander for Investigating Moon (SLIM) mission will descend down to the lunar surface Friday. The spacecraft was in an orbit of less than 400 miles (600 kilometers) over the lunar surface Thursday, with the final descent maneuvers set to begin early Friday.\nSLIM will fire its thrusters to lower the closest point of its orbit to the Moon down to an altitude of just 9 miles (15 kilometers). Then the spacecraft will commence its 20-minute final descent using its two hydrazine-fueled engines, culminating in a landing at 10:20 am EST (15:20 UTC) adjacent to a nearly 900-foot (270-meter) crater named Shioli in a region called the Sea of Nectar on the near side of the Moon.\n\nRead 22 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2024/01/japans-moon-sniper-mission-aims-for-precise-lunar-landing/#comments", + "content": "SLIM will attempt to land on the Moon with a precision of less than 100 meters.", + "contentSnippet": "SLIM will attempt to land on the Moon with a precision of less than 100 meters.", + "guid": "https://arstechnica.com/?p=1997302", + "categories": [ + "Space", + "Japan", + "JAXA", + "lunar exploration", + "moon", + "slim" + ], + "isoDate": "2024-01-19T13:42:26.000Z" + }, + { + "creator": "WIRED", + "title": "$40 billion worth of crypto crime enabled by stablecoins since 2022", + "link": "https://arstechnica.com/?p=1997330", + "pubDate": "Fri, 19 Jan 2024 14:48:58 +0000", + "content:encoded": "
\n
\n \"illustration\n

Enlarge (credit: Anjali Nair; Getty Images)

\n\n\n\n\n\n\n
\n

Stablecoins, cryptocurrencies pegged to a stable value like the US dollar, were created with the promise of bringing the frictionless, border-crossing fluidity of Bitcoin to a form of digital money with far less volatility. That combination has proved to be wildly popular, rocketing the total value of stablecoin transactions since 2022 past even that of Bitcoin itself.

\n

It turns out, however, that as stablecoins have become popular among legitimate users over the past two years, they were even more popular among a different kind of user: those exploiting them for billions of dollars of international sanctions evasion and scams.

\n

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Anjali Nair; Getty Images)\n \n\n\n\n\n\n\n\nStablecoins, cryptocurrencies pegged to a stable value like the US dollar, were created with the promise of bringing the frictionless, border-crossing fluidity of Bitcoin to a form of digital money with far less volatility. That combination has proved to be wildly popular, rocketing the total value of stablecoin transactions since 2022 past even that of Bitcoin itself.\nIt turns out, however, that as stablecoins have become popular among legitimate users over the past two years, they were even more popular among a different kind of user: those exploiting them for billions of dollars of international sanctions evasion and scams.\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "WIRED", + "comments": "https://arstechnica.com/information-technology/2024/01/40-billion-worth-of-crypto-crime-enabled-by-stablecoins-since-2022/#comments", + "content": "Stablecoins like Tether also used for scams and sanctions evasion.", + "contentSnippet": "Stablecoins like Tether also used for scams and sanctions evasion.", + "guid": "https://arstechnica.com/?p=1997330", + "categories": [ + "Biz & IT", + "cryptocurrencies", + "pig butchering", + "stablecoin", + "stablecoins", + "syndication" + ], + "isoDate": "2024-01-19T14:48:58.000Z" + }, + { + "creator": "Eric Berger", + "title": "Daily Telescope: Meet the Flying Bat and Squid nebulae", + "link": "https://arstechnica.com/?p=1978974", + "pubDate": "Fri, 27 Oct 2023 12:00:12 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The Flying Bat and Squid nebulae. (credit: Ryan G\u00e9nier)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light\u2014a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we'll take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It is October 27, and today's image takes us 2,000 light-years from Earth. That is very far, but still in our little corner of the Milky Way Galaxy, which stretches about 105,000 light-years from end to end.

\n

In this photo, courtesy of Ryan G\u00e9nier, the large reddish object that covers much of the canvas is the Flying Bat Nebula. It is, essentially, a huge cloud of hydrogen gas. The Squid Nebula is shown in blue, indicating doubly ionized oxygen\u2014which is when you ionize your oxygen once and then ionize it again just to make sure. (In all seriousness, it likely indicates a low-mass star nearing the end of its life).

Read 4 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The Flying Bat and Squid nebulae. (credit: Ryan G\u00e9nier)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light\u2014a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we'll take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It is October 27, and today's image takes us 2,000 light-years from Earth. That is very far, but still in our little corner of the Milky Way Galaxy, which stretches about 105,000 light-years from end to end.\nIn this photo, courtesy of Ryan G\u00e9nier, the large reddish object that covers much of the canvas is the Flying Bat Nebula. It is, essentially, a huge cloud of hydrogen gas. The Squid Nebula is shown in blue, indicating doubly ionized oxygen\u2014which is when you ionize your oxygen once and then ionize it again just to make sure. (In all seriousness, it likely indicates a low-mass star nearing the end of its life).\n\nRead 4 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2023/10/daily-telescope-meet-the-flying-bat-and-squid-nebulae/#comments", + "content": "The Squid Nebula is a recent discovery, first spotted in 2011.", + "contentSnippet": "The Squid Nebula is a recent discovery, first spotted in 2011.", + "guid": "https://arstechnica.com/?p=1978974", + "categories": ["Space", "daily telescope"], + "isoDate": "2023-10-27T12:00:12.000Z" + }, + { + "creator": "Stephen Clark", + "title": "Rocket Report: China launches 3-man crew; SpaceX adds to busy manifest", + "link": "https://arstechnica.com/?p=1979086", + "pubDate": "Fri, 27 Oct 2023 11:00:50 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A Long March 2F rocket climbed into space Thursday with a three-man crew heading for China's Tiangong space station. (credit: Pedro Pardo/AFP via Getty Images)

\n\n\n\n\n\n\n
\n

Welcome to Edition 6.17 of the Rocket Report! Two Asian powers notched achievements in their human spaceflight programs this week. In China, three astronauts launched to begin a six-month expedition on the Tiangong space station. With this mission, China is settling into a routine of operations on the Tiangong complex. Elsewhere in Asia, India took strides toward launching its own astronauts with a successful test of a launch abort system for the country's Gaganyaan spacecraft, which could fly people into low-Earth orbit in 2025. This is welcome news for US officials because India could help offer a counterweight to China's dominance (among Asian countries) in spaceflight.

\n

As always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.

\n
\n

India tests escape system for human-rated crew capsule.\u00a0India aced the first in-flight test of the crew escape system for the country's Gaganyaan spacecraft Saturday, Ars reports. With this flight, India tested the set of rocket motors and parachutes that would propel the spacecraft away from a failing launch vehicle, a dramatic maneuver that would save the lives of everyone on board. An unpressurized version of the Gaganyaan capsule launched, without anyone aboard, on top of a single-stage liquid-fueled rocket. About a minute later, soon after the rocket surpassed the speed of sound, the vehicle triggered the abort maneuver, and the capsule separated from the booster to parachute into the sea. By all accounts, Indian officials were thrilled with the outcome of the test flight.

Read 24 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A Long March 2F rocket climbed into space Thursday with a three-man crew heading for China's Tiangong space station. (credit: Pedro Pardo/AFP via Getty Images)\n \n\n\n\n\n\n\n\nWelcome to Edition 6.17 of the Rocket Report! Two Asian powers notched achievements in their human spaceflight programs this week. In China, three astronauts launched to begin a six-month expedition on the Tiangong space station. With this mission, China is settling into a routine of operations on the Tiangong complex. Elsewhere in Asia, India took strides toward launching its own astronauts with a successful test of a launch abort system for the country's Gaganyaan spacecraft, which could fly people into low-Earth orbit in 2025. This is welcome news for US officials because India could help offer a counterweight to China's dominance (among Asian countries) in spaceflight.\nAs always, we welcome reader submissions, and if you don't want to miss an issue, please subscribe using the box below (the form will not appear on AMP-enabled versions of the site). Each report will include information on small-, medium-, and heavy-lift rockets, as well as a quick look ahead at the next three launches on the calendar.\n\nIndia tests escape system for human-rated crew capsule.\u00a0India aced the first in-flight test of the crew escape system for the country's Gaganyaan spacecraft Saturday, Ars reports. With this flight, India tested the set of rocket motors and parachutes that would propel the spacecraft away from a failing launch vehicle, a dramatic maneuver that would save the lives of everyone on board. An unpressurized version of the Gaganyaan capsule launched, without anyone aboard, on top of a single-stage liquid-fueled rocket. About a minute later, soon after the rocket surpassed the speed of sound, the vehicle triggered the abort maneuver, and the capsule separated from the booster to parachute into the sea. By all accounts, Indian officials were thrilled with the outcome of the test flight.\n\nRead 24 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2023/10/rocket-report-china-launches-3-man-crew-spacex-adds-to-busy-manifest/#comments", + "content": "ABL Space Systems has blamed its launch mount for a January rocket failure.", + "contentSnippet": "ABL Space Systems has blamed its launch mount for a January rocket failure.", + "guid": "https://arstechnica.com/?p=1979086", + "categories": [ + "Space", + "ariane 6", + "Arianespace", + "avio", + "china", + "falcon 9", + "india", + "launch", + "rocket report", + "shenzhou", + "spacex", + "tiangong", + "united launch alliance" + ], + "isoDate": "2023-10-27T11:00:50.000Z" + }, + { + "creator": "Dan Goodin", + "title": "iPhones have been exposing your unique MAC despite Apple\u2019s promises otherwise", + "link": "https://arstechnica.com/?p=1979099", + "pubDate": "Thu, 26 Oct 2023 21:48:04 +0000", + "content:encoded": "
\n
\n \"Private\n

Enlarge / Private Wi-Fi address setting on an iPhone. (credit: Apple)

\n\n\n\n\n\n\n
\n

Three years ago, Apple introduced a privacy-enhancing feature that hid the Wi-Fi address of iPhones and iPads when they joined a network. On Wednesday, the world learned that the feature has never worked as advertised. Despite promises that this never-changing address would be hidden and replaced with a private one that was unique to each SSID, Apple devices have continued to display the real one, which in turn got broadcast to every other connected device on the network.

\n

The problem is that a Wi-Fi media access control address\u2014typically called a media access control address or simply a MAC\u2014can be used to track individuals from network to network, in much the way a license plate number can be used to track a vehicle as it moves around a city. Case in point: In 2013, a researcher unveiled a proof-of-concept device that logged the MAC of all devices it came into contact with. The idea was to distribute lots of them throughout a neighborhood or city and build a profile of iPhone users, including the social media sites they visited and the many locations they visited each day.

\n

In the decade since, HTTPS-encrypted communications have become standard, so the ability of people on the same network to monitor other people's traffic is generally not feasible. Still, a permanent MAC provides plenty of trackability, even now.

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Private Wi-Fi address setting on an iPhone. (credit: Apple)\n \n\n\n\n\n\n\n\nThree years ago, Apple introduced a privacy-enhancing feature that hid the Wi-Fi address of iPhones and iPads when they joined a network. On Wednesday, the world learned that the feature has never worked as advertised. Despite promises that this never-changing address would be hidden and replaced with a private one that was unique to each SSID, Apple devices have continued to display the real one, which in turn got broadcast to every other connected device on the network.\nThe problem is that a Wi-Fi media access control address\u2014typically called a media access control address or simply a MAC\u2014can be used to track individuals from network to network, in much the way a license plate number can be used to track a vehicle as it moves around a city. Case in point: In 2013, a researcher unveiled a proof-of-concept device that logged the MAC of all devices it came into contact with. The idea was to distribute lots of them throughout a neighborhood or city and build a profile of iPhone users, including the social media sites they visited and the many locations they visited each day.\nIn the decade since, HTTPS-encrypted communications have become standard, so the ability of people on the same network to monitor other people's traffic is generally not feasible. Still, a permanent MAC provides plenty of trackability, even now.\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2023/10/iphone-privacy-feature-hiding-wi-fi-macs-has-failed-to-work-for-3-years/#comments", + "content": "\u201cFrom the get-go, this feature was useless,\u201d researcher says of feature put into iOS 14.", + "contentSnippet": "\u201cFrom the get-go, this feature was useless,\u201d researcher says of feature put into iOS 14.", + "guid": "https://arstechnica.com/?p=1979099", + "categories": [ + "Biz & IT", + "Security", + "iphone", + "MAC address", + "privacy", + "wi-fi" + ], + "isoDate": "2023-10-26T21:48:04.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Sam Bankman-Fried testifies, says he \u201cskimmed over\u201d FTX terms of service", + "link": "https://arstechnica.com/?p=1979088", + "pubDate": "Thu, 26 Oct 2023 20:54:45 +0000", + "content:encoded": "
\n
\n \"FTX\n

Enlarge / FTX Founder Sam Bankman-Fried arrives at US District Court on March 30, 2023, in New York City after being hit with a criminal charge for allegedly authorizing a bribe of at least $40 million to one or more Chinese government officials. (credit: Getty Images | Michael Santiago )

\n\n\n\n\n\n\n
\n

Sam Bankman-Fried took the stand in his criminal trial today in an attempt to avoid decades in prison for alleged fraud at cryptocurrency exchange FTX and its affiliate Alameda Research.

\n

Providing testimony has been called a risky move for Bankman-Fried by many legal observers. After answering questions posted by his own lawyers, Bankman-Fried will have to face cross-examination from federal prosecutors.\u00a0But after three weeks in which US government attorneys laid out their case, including testimony from former FTX and Alameda executives, Bankman-Fried's legal team announced yesterday that he would take the stand.

\n

Today's testimony was unusual because US District Judge Lewis Kaplan sent the jury home for the day to conduct a hearing on whether certain parts of his testimony are admissible. \"That means Bankman-Fried will give some of his testimony to the judge without the jury present. The judge will then decide whether Bankman-Fried is allowed to say the same testimony in front of a jury,\" The Wall Street Journal wrote in its live coverage. The trial is not being streamed via audio or video.

Read 16 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / FTX Founder Sam Bankman-Fried arrives at US District Court on March 30, 2023, in New York City after being hit with a criminal charge for allegedly authorizing a bribe of at least $40 million to one or more Chinese government officials. (credit: Getty Images | Michael Santiago )\n \n\n\n\n\n\n\n\nSam Bankman-Fried took the stand in his criminal trial today in an attempt to avoid decades in prison for alleged fraud at cryptocurrency exchange FTX and its affiliate Alameda Research.\nProviding testimony has been called a risky move for Bankman-Fried by many legal observers. After answering questions posted by his own lawyers, Bankman-Fried will have to face cross-examination from federal prosecutors.\u00a0But after three weeks in which US government attorneys laid out their case, including testimony from former FTX and Alameda executives, Bankman-Fried's legal team announced yesterday that he would take the stand.\nToday's testimony was unusual because US District Judge Lewis Kaplan sent the jury home for the day to conduct a hearing on whether certain parts of his testimony are admissible. \"That means Bankman-Fried will give some of his testimony to the judge without the jury present. The judge will then decide whether Bankman-Fried is allowed to say the same testimony in front of a jury,\" The Wall Street Journal wrote in its live coverage. The trial is not being streamed via audio or video.\n\nRead 16 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/10/sam-bankman-fried-begins-testifying-in-risky-bid-to-beat-ftx-fraud-charges/#comments", + "content": "SBF said he thought loans were legal but didn't fully read FTX terms of service.", + "contentSnippet": "SBF said he thought loans were legal but didn't fully read FTX terms of service.", + "guid": "https://arstechnica.com/?p=1979088", + "categories": ["Policy", "sam bankman-fried", "sam bankman-fried ftx"], + "isoDate": "2023-10-26T20:54:45.000Z" + }, + { + "creator": "Beth Mole", + "title": "Unprecedented diarrheal outbreak erupts in UK as cases spike 3x above usual", + "link": "https://arstechnica.com/?p=1979074", + "pubDate": "Thu, 26 Oct 2023 20:10:58 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A sign directing people to a toilet facility during the Children's Day Parade, part of the Notting Hill Carnival celebration in west London on Sunday August 27, 2023. (credit: Getty | Yui Mok)

\n\n\n\n\n\n\n
\n

The United Kingdom is experiencing a dramatic outbreak\u2014unprecedented in scale and magnitude\u2014of diarrheal illnesses from the intestinal parasite, Cryptosporidium, aka Crypto.

\n

According to a rapid communication published Thursday in the journal Eurosurveillance, UK health officials report that Crypto cases have exceeded the upper bounds of expected cases since mid-September, and an October peak saw cases roughly threefold above what is usual for this time of year. The outbreak is still ongoing.

\n\n

So far, it's unclear what's driving the extraordinary burst in cases. The outbreak has splattered into almost every region of all four UK nations. \"Given the scale and geographical spread of the [case] exceedance across regions and nations of the UK, a single local exposure is an unlikely cause,\" the authors, led by officials at the United Kingdom Health Security Agency in London, wrote in the rapid report.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A sign directing people to a toilet facility during the Children's Day Parade, part of the Notting Hill Carnival celebration in west London on Sunday August 27, 2023. (credit: Getty | Yui Mok)\n \n\n\n\n\n\n\n\nThe United Kingdom is experiencing a dramatic outbreak\u2014unprecedented in scale and magnitude\u2014of diarrheal illnesses from the intestinal parasite, Cryptosporidium, aka Crypto.\nAccording to a rapid communication published Thursday in the journal Eurosurveillance, UK health officials report that Crypto cases have exceeded the upper bounds of expected cases since mid-September, and an October peak saw cases roughly threefold above what is usual for this time of year. The outbreak is still ongoing.\n\nLaboratory notifications of Cryptosporidium species in England, Wales, and Northern Ireland, by week of specimen, 2023. (credit: Eurosurveillance | Peake et al.)\n\nSo far, it's unclear what's driving the extraordinary burst in cases. The outbreak has splattered into almost every region of all four UK nations. \"Given the scale and geographical spread of the [case] exceedance across regions and nations of the UK, a single local exposure is an unlikely cause,\" the authors, led by officials at the United Kingdom Health Security Agency in London, wrote in the rapid report.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/health/2023/10/the-uk-is-bursting-with-diarrheal-disease-cases-3x-higher-than-usual/#comments", + "content": "Cryptosporidium cases link to travel and swimming, but at unusually high rate.", + "contentSnippet": "Cryptosporidium cases link to travel and swimming, but at unusually high rate.", + "guid": "https://arstechnica.com/?p=1979074", + "categories": [ + "Health", + "Science", + "CDC", + "crypto", + "Cryptosporidium", + "diarrhea", + "infectious diseases", + "outbreak", + "parasite", + "uk", + "water" + ], + "isoDate": "2023-10-26T20:10:58.000Z" + }, + { + "creator": "Ashley Belanger", + "title": "Media outlets win fight to gain faster access to Google trial evidence", + "link": "https://arstechnica.com/?p=1979014", + "pubDate": "Thu, 26 Oct 2023 19:04:44 +0000", + "content:encoded": "
\n
\n \"Media\n

Enlarge (credit: SOPA Images / Contributor | LightRocket)

\n\n\n\n\n\n\n
\n

Slowly but surely, the public will start gaining more access to evidence shared in the Department of Justice's antitrust trial probing Google's search business, following an intervention by press outlets. In a motion to intervene, outlets earlier this month told the court that they were struggling to cover the trial because much of the evidence and proceedings has been withheld, redacted, or closed off entirely to protect industry trade secrets.

\n

Yesterday, Judge Amit Mehta granted some of the demands of outlets\u2014including The New York Times, The Wall Street Journal, Bloomberg, MLex, and Law360\u2014which, among other requests, had asked the court to mandate the sharing of dozens of exhibits that the public has so far been denied access to despite pending press requests.

\n

Mehta said that the supplemental order and other recent orders would allow the court to \"continue facilitating public access to the trial and minimizing the need to close the courtroom while providing for the protection of confidential information.\"

Read 28 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: SOPA Images / Contributor | LightRocket)\n \n\n\n\n\n\n\n\nSlowly but surely, the public will start gaining more access to evidence shared in the Department of Justice's antitrust trial probing Google's search business, following an intervention by press outlets. In a motion to intervene, outlets earlier this month told the court that they were struggling to cover the trial because much of the evidence and proceedings has been withheld, redacted, or closed off entirely to protect industry trade secrets.\nYesterday, Judge Amit Mehta granted some of the demands of outlets\u2014including The New York Times, The Wall Street Journal, Bloomberg, MLex, and Law360\u2014which, among other requests, had asked the court to mandate the sharing of dozens of exhibits that the public has so far been denied access to despite pending press requests.\nMehta said that the supplemental order and other recent orders would allow the court to \"continue facilitating public access to the trial and minimizing the need to close the courtroom while providing for the protection of confidential information.\"\n\nRead 28 remaining paragraphs | Comments", + "dc:creator": "Ashley Belanger", + "comments": "https://arstechnica.com/tech-policy/2023/10/media-outlets-win-fight-to-gain-faster-access-to-google-trial-evidence/#comments", + "content": "Here\u2019s the link to all the Google trial evidence unlocked by media.", + "contentSnippet": "Here\u2019s the link to all the Google trial evidence unlocked by media.", + "guid": "https://arstechnica.com/?p=1979014", + "categories": [ + "Google", + "Policy", + "Antitrust law", + "department of justice", + "freedom of press", + "google", + "google antitrust trial", + "google monopoly trial", + "google search", + "monopoly" + ], + "isoDate": "2023-10-26T19:04:44.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Backlash forces T-Mobile to cancel automatic migrations to pricier plans", + "link": "https://arstechnica.com/?p=1979010", + "pubDate": "Thu, 26 Oct 2023 18:24:20 +0000", + "content:encoded": "
\n
\n \"T-Mobile\n

Enlarge / A T-Mobile store on August 24, 2023 in Washington, DC. (credit: Getty Images | Anna Moneymaker)

\n\n\n\n\n\n\n
\n

T-Mobile has scrapped a plan to automatically switch users to newer, more expensive packages after hearing loads of criticism from customers.

\n

The plan became public knowledge two weeks ago with the leak of internal documents that said customers would be switched to pricier tiers starting with the November bill cycle unless they contacted T-Mobile to opt out. Documents showed that T-Mobile customer service reps were trained to tell users who complained, \"We are not raising the price of any of our plans; we are moving you to a newer plan with more benefits at a different cost.\"

\n

But in an earnings call yesterday (see transcript), T-Mobile CEO Mike Sievert said it's no longer happening because feedback from angry subscribers showed it \"isn't something that our customers are going to love.\"

Read 11 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A T-Mobile store on August 24, 2023 in Washington, DC. (credit: Getty Images | Anna Moneymaker)\n \n\n\n\n\n\n\n\nT-Mobile has scrapped a plan to automatically switch users to newer, more expensive packages after hearing loads of criticism from customers.\nThe plan became public knowledge two weeks ago with the leak of internal documents that said customers would be switched to pricier tiers starting with the November bill cycle unless they contacted T-Mobile to opt out. Documents showed that T-Mobile customer service reps were trained to tell users who complained, \"We are not raising the price of any of our plans; we are moving you to a newer plan with more benefits at a different cost.\"\nBut in an earnings call yesterday (see transcript), T-Mobile CEO Mike Sievert said it's no longer happening because feedback from angry subscribers showed it \"isn't something that our customers are going to love.\"\n\nRead 11 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/10/after-uproar-t-mobile-wont-automatically-switch-users-to-pricier-plans/#comments", + "content": "Firm drops widely panned idea but still aims to move users \"up our price card.\"", + "contentSnippet": "Firm drops widely panned idea but still aims to move users \"up our price card.\"", + "guid": "https://arstechnica.com/?p=1979010", + "categories": ["Policy", "t-mobile", "t-mobile plans"], + "isoDate": "2023-10-26T18:24:20.000Z" + }, + { + "creator": "Ron Amadeo", + "title": "Google Fiber is getting outrageously fast 20Gbps service", + "link": "https://arstechnica.com/?p=1978969", + "pubDate": "Thu, 26 Oct 2023 17:56:54 +0000", + "content:encoded": "
\n
\n \"Google\n

Enlarge / Google Fiber Labs brings quick internet to early adopters. (credit: Google)

\n\n\n\n\n\n\n
\n

Google Fiber is still operating in a handful of cities, and now the bandwidth-rich are getting richer: Fiber plans to upgrade some users to outrageously fast 20Gbps service by the end of the year. Google's Wednesday blog post calls this part of a \"GFiber Labs\" experiment and says the service \"will initially be available as an early access offering to a small group of GFiber customers in select areas.\"

\n

The 20Gbps service is made possible by new networking gear: Nokia's 25G PON (passive optical network) technology, which lets Internet service providers push more bandwidth over existing fiber lines. Google says it's \"one of the first\" ISPs to adopt the technology for consumers, though at least one other US ISP, the Tennessee provider \"EPB,\" has rolled out the technology. Customers will need new networking gear, too, and Google says you'll get a new fiber modem with built-in Wi-Fi 7.

\n

Fierce Telecom spoke with Google's Nick Saporito, head of product at Google Fiber, who said, \u201cWe definitely see a need\" for 20Gbps service. For now, Saporito says the service is \"a very early adopter product,\" but it will eventually roll out \"in most, if not all, of our markets.\"

Read 3 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Google Fiber Labs brings quick internet to early adopters. (credit: Google)\n \n\n\n\n\n\n\n\nGoogle Fiber is still operating in a handful of cities, and now the bandwidth-rich are getting richer: Fiber plans to upgrade some users to outrageously fast 20Gbps service by the end of the year. Google's Wednesday blog post calls this part of a \"GFiber Labs\" experiment and says the service \"will initially be available as an early access offering to a small group of GFiber customers in select areas.\"\nThe 20Gbps service is made possible by new networking gear: Nokia's 25G PON (passive optical network) technology, which lets Internet service providers push more bandwidth over existing fiber lines. Google says it's \"one of the first\" ISPs to adopt the technology for consumers, though at least one other US ISP, the Tennessee provider \"EPB,\" has rolled out the technology. Customers will need new networking gear, too, and Google says you'll get a new fiber modem with built-in Wi-Fi 7.\nFierce Telecom spoke with Google's Nick Saporito, head of product at Google Fiber, who said, \u201cWe definitely see a need\" for 20Gbps service. For now, Saporito says the service is \"a very early adopter product,\" but it will eventually roll out \"in most, if not all, of our markets.\"\n\nRead 3 remaining paragraphs | Comments", + "dc:creator": "Ron Amadeo", + "comments": "https://arstechnica.com/gadgets/2023/10/google-fiber-is-getting-outrageously-fast-20gbps-service/#comments", + "content": "For now this is early access, but \"most\" customers will get upgraded eventually.", + "contentSnippet": "For now this is early access, but \"most\" customers will get upgraded eventually.", + "guid": "https://arstechnica.com/?p=1978969", + "categories": ["Google", "Tech", "Google Fiber", "internet speed"], + "isoDate": "2023-10-26T17:56:54.000Z" + }, + { + "creator": "Andrew Cunningham", + "title": "The \u201clow-cost MacBook\u201d rumor just won\u2019t die, but it might finally make sense", + "link": "https://arstechnica.com/?p=1978607", + "pubDate": "Thu, 26 Oct 2023 17:15:06 +0000", + "content:encoded": "
\n
\n Could the 12-inch MacBook make a return as some kind of \"lower-cost MacBook\"?\n

Enlarge / Could the 12-inch MacBook make a return as some kind of \"lower-cost MacBook\"? (credit: Andrew Cunningham)

\n\n\n\n\n\n\n
\n

If you want a Mac laptop, you usually need to be ready to spend at least $1,000. Whether we're talking about the white plastic MacBook from 2006, the 11-inch MacBook Air from a decade ago, or the modern M1 MacBook Air, the list price for Apple's cheapest MacBook is usually within $100 or so of that four-digit price barrier (not counting refurbished Macs or ones that go on sale).

\n

Apple has a stated aversion to releasing less-expensive hardware just to hit an attractive price\u2014\"cheap is for other people because we try to build a better product,\" Apple marketing SVP Greg Joswiak told us a few years ago. But rumors of a low-cost MacBook pop up every few years, undeterred, usually conflating \"entry-level\" with \"low-cost.\" Here's a prediction about an $800 MacBook from October 2008 (actual entry-level prices: $999 and $1,299). Here's analyst Ming-Chi Kuo and Bloomberg's Mark Gurman in 2018 predicting a MacBook Air \"with a lower price tag\" that would \"reignite sales\"\u00a0(actual price: $1,199, $200 more than the previous MacBook Air).

\n

This week, Kuo came back with an updated version of that same report, claiming that Apple \"may also consider (but hasn't decided yet) introducing a more affordable MacBook model to boost shipments.\" Mac revenue and unit shipments have indeed been down year over year for a few quarters, though that has more to do with a pandemic- and Apple Silicon-fueled sales spike in 2021 and 2022 than anything (the revenue numbers are still on the high side of normal compared to 2019 and most of 2020).

Read 18 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Could the 12-inch MacBook make a return as some kind of \"lower-cost MacBook\"? (credit: Andrew Cunningham)\n \n\n\n\n\n\n\n\nIf you want a Mac laptop, you usually need to be ready to spend at least $1,000. Whether we're talking about the white plastic MacBook from 2006, the 11-inch MacBook Air from a decade ago, or the modern M1 MacBook Air, the list price for Apple's cheapest MacBook is usually within $100 or so of that four-digit price barrier (not counting refurbished Macs or ones that go on sale).\nApple has a stated aversion to releasing less-expensive hardware just to hit an attractive price\u2014\"cheap is for other people because we try to build a better product,\" Apple marketing SVP Greg Joswiak told us a few years ago. But rumors of a low-cost MacBook pop up every few years, undeterred, usually conflating \"entry-level\" with \"low-cost.\" Here's a prediction about an $800 MacBook from October 2008 (actual entry-level prices: $999 and $1,299). Here's analyst Ming-Chi Kuo and Bloomberg's Mark Gurman in 2018 predicting a MacBook Air \"with a lower price tag\" that would \"reignite sales\"\u00a0(actual price: $1,199, $200 more than the previous MacBook Air).\nThis week, Kuo came back with an updated version of that same report, claiming that Apple \"may also consider (but hasn't decided yet) introducing a more affordable MacBook model to boost shipments.\" Mac revenue and unit shipments have indeed been down year over year for a few quarters, though that has more to do with a pandemic- and Apple Silicon-fueled sales spike in 2021 and 2022 than anything (the revenue numbers are still on the high side of normal compared to 2019 and most of 2020).\n\nRead 18 remaining paragraphs | Comments", + "dc:creator": "Andrew Cunningham", + "comments": "https://arstechnica.com/gadgets/2023/10/the-low-cost-macbook-rumor-just-wont-die-but-it-might-finally-make-sense/#comments", + "content": "Apple doesn't do \"cheap,\" but Apple Silicon could make a cheaper MacBook work.", + "contentSnippet": "Apple doesn't do \"cheap,\" but Apple Silicon could make a cheaper MacBook work.", + "guid": "https://arstechnica.com/?p=1978607", + "categories": [ + "Apple", + "Tech", + "12-inch macbook", + "apple", + "Ars Shopping", + "iphone SE", + "MacBook" + ], + "isoDate": "2023-10-26T17:15:06.000Z" + }, + { + "creator": "Stephen Clark", + "title": "CEO of rocket-maker ULA makes a sales pitch\u2014for the whole company", + "link": "https://arstechnica.com/?p=1978909", + "pubDate": "Thu, 26 Oct 2023 17:14:58 +0000", + "content:encoded": "
\n
\n \"Tory\n

Enlarge / Tory Bruno, ULA's chief executive, inside the company's rocket factory in Decatur, Alabama. (credit: Cameron Carnes for The Washington Post via Getty Images)

\n\n\n\n\n\n\n
\n

It sure sounds like United Launch Alliance is up for sale. Tory Bruno, the rocket builder's CEO, said this week that anyone who purchased ULA would reap the rewards of the company's \"transformation\" over the last few years, a course change primarily driven by geopolitics and the competitive threat of SpaceX.

\n

While Bruno did not disclose details of any negotiations about a potential sale of ULA, he told Bloomberg News this week that the launch operator is primed for a buyer. Boeing and Lockheed Martin each have a 50 percent stake in the Colorado-based rocket company.

\n

\u201cIf I were buying a space business, I\u2019d go look at ULA,\u201d Bruno said. \u201cIt\u2019s already had all the hard work done through the transformation. You\u2019re not buying a Victorian with bad plumbing. It\u2019s all been done. You\u2019re coming in at the end of the remodel, so you can focus on your future.\"

Read 15 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Tory Bruno, ULA's chief executive, inside the company's rocket factory in Decatur, Alabama. (credit: Cameron Carnes for The Washington Post via Getty Images)\n \n\n\n\n\n\n\n\nIt sure sounds like United Launch Alliance is up for sale. Tory Bruno, the rocket builder's CEO, said this week that anyone who purchased ULA would reap the rewards of the company's \"transformation\" over the last few years, a course change primarily driven by geopolitics and the competitive threat of SpaceX.\nWhile Bruno did not disclose details of any negotiations about a potential sale of ULA, he told Bloomberg News this week that the launch operator is primed for a buyer. Boeing and Lockheed Martin each have a 50 percent stake in the Colorado-based rocket company.\n\u201cIf I were buying a space business, I\u2019d go look at ULA,\u201d Bruno said. \u201cIt\u2019s already had all the hard work done through the transformation. You\u2019re not buying a Victorian with bad plumbing. It\u2019s all been done. You\u2019re coming in at the end of the remodel, so you can focus on your future.\"\n\nRead 15 remaining paragraphs | Comments", + "dc:creator": "Stephen Clark", + "comments": "https://arstechnica.com/space/2023/10/ceo-of-rocket-maker-ula-makes-a-sales-pitch-for-the-whole-company/#comments", + "content": "The company's \"complicated\" ownership structure is holding it back.", + "contentSnippet": "The company's \"complicated\" ownership structure is holding it back.", + "guid": "https://arstechnica.com/?p=1978909", + "categories": [ + "Space", + "Boeing", + "launch", + "Lockheed Martin", + "tory bruno", + "united launch alliance" + ], + "isoDate": "2023-10-26T17:14:58.000Z" + }, + { + "creator": "Jon Brodkin", + "title": "Elon Musk\u2019s chaotic first year at Twitter leaves X Corp. with shaky finances", + "link": "https://arstechnica.com/?p=1978912", + "pubDate": "Thu, 26 Oct 2023 17:03:51 +0000", + "content:encoded": "
\n
\n \"Elon\n

Enlarge (credit: Aurich Lawson | Getty Images)

\n\n\n\n\n\n\n
\n

One year after Elon Musk's $44 billion purchase of Twitter, which he completed on October 27, 2022, after months of legal drama, the social media firm that Musk renamed \"X\" is on shaky financial ground.

\n

Musk has expressed ambitions to transform X into an \"everything app\" that includes a digital payments platform and audio and video calling. He told employees that, despite massive cuts eliminating most of Twitter's pre-Musk workforce, he sees \"a clear but difficult path\" to a future valuation of more than $250 billion.

\n

X doesn't provide detailed financial statements or user numbers because Musk took the company private when he bought Twitter. But data leaked to news media and third-party research depicts a platform in decline, which might not be exactly what Musk meant when he called the firm \"an inverse startup.\"

Read 36 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Aurich Lawson | Getty Images)\n \n\n\n\n\n\n\n\nOne year after Elon Musk's $44 billion purchase of Twitter, which he completed on October 27, 2022, after months of legal drama, the social media firm that Musk renamed \"X\" is on shaky financial ground.\nMusk has expressed ambitions to transform X into an \"everything app\" that includes a digital payments platform and audio and video calling. He told employees that, despite massive cuts eliminating most of Twitter's pre-Musk workforce, he sees \"a clear but difficult path\" to a future valuation of more than $250 billion.\nX doesn't provide detailed financial statements or user numbers because Musk took the company private when he bought Twitter. But data leaked to news media and third-party research depicts a platform in decline, which might not be exactly what Musk meant when he called the firm \"an inverse startup.\"\n\nRead 36 remaining paragraphs | Comments", + "dc:creator": "Jon Brodkin", + "comments": "https://arstechnica.com/tech-policy/2023/10/elon-musks-chaotic-first-year-at-twitter-leaves-x-corp-with-shaky-finances/#comments", + "content": "X has fewer users and a big ad-revenue problem on Musk's first anniversary.", + "contentSnippet": "X has fewer users and a big ad-revenue problem on Musk's first anniversary.", + "guid": "https://arstechnica.com/?p=1978912", + "categories": [ + "Features", + "Policy", + "Elon Musk", + "elon musk twitter", + "elon musk x" + ], + "isoDate": "2023-10-26T17:03:51.000Z" + }, + { + "creator": "Kyle Orland", + "title": "Why Unity felt the need to \u201crush out\u201d its controversial install-fee program", + "link": "https://arstechnica.com/?p=1978958", + "pubDate": "Thu, 26 Oct 2023 16:42:40 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A push for more IronSource customers may have been a major motivation behind Unity's controversial install-fee proposals (credit: Unity)

\n\n\n\n\n\n\n
\n

It's been over a month now since Unity partially backtracked on its controversial proposed \"pay per install\" fee structure, a trust-destroying saga that seems to have contributed to the retirement of Unity CEO John Riccitiello. Now, a new report highlights some of the internal divisions over the \"rushed-out\" policy introduction and provides new insight into what may have been motivating the company to even attempt such a plan.

\n

Business-focused site MobileGamer.biz cites multiple \"sources from inside Unity and across the mobile games business\" in reporting that Unity received some significant pushback from senior-level managers before rolling out its initial fee-restructuring plans. \"Half of the people in that meeting said that this model is too complicated, it\u2019s not going to be well-received, and we should talk to people before we do this,\" one anonymous source told the site. \"It felt very rushed. We had this meeting and were told it was happening, but we were not told a date. And then before we knew it, it was out there.\"

\n

After the negative reaction to that initial plan, Unity reportedly considered a modification that would take up to 4 percent of revenue from the largest Unity publishers\u2014slightly under the 5 percent charged by the Unreal Engine. The final policy knocked that cap down to 2.5 percent only after the extent of the backlash became clear.

Read 6 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A push for more IronSource customers may have been a major motivation behind Unity's controversial install-fee proposals (credit: Unity)\n \n\n\n\n\n\n\n\nIt's been over a month now since Unity partially backtracked on its controversial proposed \"pay per install\" fee structure, a trust-destroying saga that seems to have contributed to the retirement of Unity CEO John Riccitiello. Now, a new report highlights some of the internal divisions over the \"rushed-out\" policy introduction and provides new insight into what may have been motivating the company to even attempt such a plan.\nBusiness-focused site MobileGamer.biz cites multiple \"sources from inside Unity and across the mobile games business\" in reporting that Unity received some significant pushback from senior-level managers before rolling out its initial fee-restructuring plans. \"Half of the people in that meeting said that this model is too complicated, it\u2019s not going to be well-received, and we should talk to people before we do this,\" one anonymous source told the site. \"It felt very rushed. We had this meeting and were told it was happening, but we were not told a date. And then before we knew it, it was out there.\"\nAfter the negative reaction to that initial plan, Unity reportedly considered a modification that would take up to 4 percent of revenue from the largest Unity publishers\u2014slightly under the 5 percent charged by the Unreal Engine. The final policy knocked that cap down to 2.5 percent only after the extent of the backlash became clear.\n\nRead 6 remaining paragraphs | Comments", + "dc:creator": "Kyle Orland", + "comments": "https://arstechnica.com/gaming/2023/10/behind-the-scenes-of-unitys-rushed-out-install-fee-program/#comments", + "content": "New report details internal divisions, intense push for mobile ad money.", + "contentSnippet": "New report details internal divisions, intense push for mobile ad money.", + "guid": "https://arstechnica.com/?p=1978958", + "categories": [ + "Gaming", + "advertising", + "applovin", + "game development", + "ironsource", + "mobile ads", + "mobile games", + "Unity" + ], + "isoDate": "2023-10-26T16:42:40.000Z" + }, + { + "creator": "Ars Contributors", + "title": "Trying to make sense of why Otis exploded en route to Acapulco this week", + "link": "https://arstechnica.com/?p=1978886", + "pubDate": "Thu, 26 Oct 2023 15:17:37 +0000", + "content:encoded": "
\n
\n \"Hurricane\n

Enlarge / Hurricane Otis on Tuesday, as it was strengthening before making landfall in Mexico. (credit: NOAA)

\n\n\n\n\n\n\n
\n

The word \"unprecedented\" gets tossed around a lot these days, but what happened with Hurricane Otis and its impact on Acapulco on Tuesday were truly without precedent. And it was with only slight precedent anywhere in terms of how quickly it intensified.

\n

Otis was the textbook definition of rapid intensification, going from a 50 mph tropical storm on Monday evening to a 165 mph Category 5 hurricane last night. Through about mid-morning on Tuesday, everything was going basically as you'd expect for a modest hurricane with Otis. It may have been tracking toward a Category 2 type landfall, or even a Category 3 type landfall in the worst case, if you assumed the general rules of rapid intensification in this region. But Otis did not follow the rules.

\n

Much like an onion, there are layers to this story that are important. First, take it from one of the more seasoned NOAA hurricane hunters\u2014this was not what they expected when they flew their mission on Tuesday. Meteorologist Jeremy DeHart wrote on the site formerly known as Twitter, \"I have arrived to a storm & been surprised by the intensity, but nothing like this. Expected a marginal hurricane, found a Cat 3! Reminiscent of the stories I've heard about flying into Patricia ('05), in the same part of the world.\"

Read 17 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Hurricane Otis on Tuesday, as it was strengthening before making landfall in Mexico. (credit: NOAA)\n \n\n\n\n\n\n\n\nThe word \"unprecedented\" gets tossed around a lot these days, but what happened with Hurricane Otis and its impact on Acapulco on Tuesday were truly without precedent. And it was with only slight precedent anywhere in terms of how quickly it intensified.\nOtis was the textbook definition of rapid intensification, going from a 50 mph tropical storm on Monday evening to a 165 mph Category 5 hurricane last night. Through about mid-morning on Tuesday, everything was going basically as you'd expect for a modest hurricane with Otis. It may have been tracking toward a Category 2 type landfall, or even a Category 3 type landfall in the worst case, if you assumed the general rules of rapid intensification in this region. But Otis did not follow the rules.\nMuch like an onion, there are layers to this story that are important. First, take it from one of the more seasoned NOAA hurricane hunters\u2014this was not what they expected when they flew their mission on Tuesday. Meteorologist Jeremy DeHart wrote on the site formerly known as Twitter, \"I have arrived to a storm & been surprised by the intensity, but nothing like this. Expected a marginal hurricane, found a Cat 3! Reminiscent of the stories I've heard about flying into Patricia ('05), in the same part of the world.\"\n\nRead 17 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/science/2023/10/trying-to-make-sense-of-why-otis-exploded-en-route-to-acapulco-this-week/#comments", + "content": "It feels like this was a combination of bad luck, bad timing, and bad placement.", + "contentSnippet": "It feels like this was a combination of bad luck, bad timing, and bad placement.", + "guid": "https://arstechnica.com/?p=1978886", + "categories": [ + "Science", + "climate change", + "Hurricane Otis", + "hurricanes", + "syndication", + "tropical storms" + ], + "isoDate": "2023-10-26T15:17:37.000Z" + }, + { + "creator": "Ars Contributors", + "title": "Old-school problems, old-school solutions: We help aero-test a Mustang", + "link": "https://arstechnica.com/?p=1978858", + "pubDate": "Thu, 26 Oct 2023 14:59:18 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / OVC's Shelby Mustang recreations are accurate enough to be granted official papers to compete in historic racing. (credit: Michael Teo Van Runkle)

\n\n\n\n\n\n\n
\n

To Shelby Mustang fans, the Original Venice Crew (OVC) is the stuff of legends. This was the actual team that designed and built the original GT350s, Cobras, Daytona Coupes, and GT40s that introduced Carroll Shelby's name to the masses. Today, OVC builds modern Mustang re-creations so accurately that one was approved for last year's Le Mans Classic, which celebrated 100 years of the world's most famous endurance race.

\n

But OVC also offers updated versions of those classics, bringing to life ideas that bounced around the shop back in the day but that Shelby never built in series production. Want a 1965 GT350 with independent rear suspension? OVC can do that, after dialing in a design that Ford originally believed would be too expensive as a replacement for the first-gen Mustang's solid rear axle.

\n

These projects don't quite fit under the \"restomod\" umbrella, instead falling more along the lines of the ideas that OVC founder and boss Jim Marietta remembers from his days back at 1042 Princeton Drive. Think fender flares cut by hand rather than being machined or updated fiberglass front fascias to provide additional airflow.

Read 14 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / OVC's Shelby Mustang recreations are accurate enough to be granted official papers to compete in historic racing. (credit: Michael Teo Van Runkle)\n \n\n\n\n\n\n\n\nTo Shelby Mustang fans, the Original Venice Crew (OVC) is the stuff of legends. This was the actual team that designed and built the original GT350s, Cobras, Daytona Coupes, and GT40s that introduced Carroll Shelby's name to the masses. Today, OVC builds modern Mustang re-creations so accurately that one was approved for last year's Le Mans Classic, which celebrated 100 years of the world's most famous endurance race.\nBut OVC also offers updated versions of those classics, bringing to life ideas that bounced around the shop back in the day but that Shelby never built in series production. Want a 1965 GT350 with independent rear suspension? OVC can do that, after dialing in a design that Ford originally believed would be too expensive as a replacement for the first-gen Mustang's solid rear axle.\nThese projects don't quite fit under the \"restomod\" umbrella, instead falling more along the lines of the ideas that OVC founder and boss Jim Marietta remembers from his days back at 1042 Princeton Drive. Think fender flares cut by hand rather than being machined or updated fiberglass front fascias to provide additional airflow.\n\nRead 14 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/cars/2023/10/1960s-style-aero-testing-with-an-old-school-mustang-restomod/#comments", + "content": "OVC builds re-creations of 1960s Mustangs\u2014we help test a Peter Brock-designed hood.", + "contentSnippet": "OVC builds re-creations of 1960s Mustangs\u2014we help test a Peter Brock-designed hood.", + "guid": "https://arstechnica.com/?p=1978858", + "categories": ["Cars", "aerodynamics", "Ford Mustang", "Restomod"], + "isoDate": "2023-10-26T14:59:18.000Z" + }, + { + "creator": "Ars Contributors", + "title": "Toyota shows electric concepts at Tokyo show, but it may never build them", + "link": "https://arstechnica.com/?p=1978841", + "pubDate": "Thu, 26 Oct 2023 14:10:23 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / Toyota CEO and President Kaji Sato on stage with the FT-Se (left) and FT-3e (right) concepts. (credit: Toyota)

\n\n\n\n\n\n\n
\n\n

A booth full of concept cars is nothing new at an auto show. This year at the Japan Mobility Show, though, Toyota called its entire booth a concept. The concept was \"Find Your Future,\" and it was meant to show how electric vehicles can be fun and flexible in ways that internal combustion vehicles can't.

\n

Toyota also highlighted an internal combustion vehicle that offers even more flexibility than its concepts. One will go on sale in Asia in the next few months, while the others may never see pavement.

\n
\"The

The FT-Se is very orange. (credit: Toyota )

\n

The highlight was a sharp-looking electric sports car concept called the FT-Se. Toyota didn't provide many details, but it described what the concept means for future production Toyota EVs.

Read 26 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Toyota CEO and President Kaji Sato on stage with the FT-Se (left) and FT-3e (right) concepts. (credit: Toyota)\n \n\n\n\n\n\n\n\nToyota provided flights from Halifax, Canada, to Tokyo, Japan, and five nights in a hotel so we could attend the Japan Mobility Show, plus subsequent briefings and test drives. Ars does not accept paid editorial content.\nA booth full of concept cars is nothing new at an auto show. This year at the Japan Mobility Show, though, Toyota called its entire booth a concept. The concept was \"Find Your Future,\" and it was meant to show how electric vehicles can be fun and flexible in ways that internal combustion vehicles can't.\nToyota also highlighted an internal combustion vehicle that offers even more flexibility than its concepts. One will go on sale in Asia in the next few months, while the others may never see pavement.\n\nThe FT-Se is very orange. (credit: Toyota )\n\nThe highlight was a sharp-looking electric sports car concept called the FT-Se. Toyota didn't provide many details, but it described what the concept means for future production Toyota EVs.\n\nRead 26 remaining paragraphs | Comments", + "dc:creator": "Ars Contributors", + "comments": "https://arstechnica.com/cars/2023/10/toyota-shows-electric-concepts-at-tokyo-show-but-it-may-never-build-them/#comments", + "content": "But an internal combustion engine-powered commercial van is going into production.", + "contentSnippet": "But an internal combustion engine-powered commercial van is going into production.", + "guid": "https://arstechnica.com/?p=1978841", + "categories": ["Cars", "Tokyo Auto Show", "Toyota"], + "isoDate": "2023-10-26T14:10:23.000Z" + }, + { + "creator": "Inside Climate News", + "title": "A new hybrid subspecies of puffin is likely the result of climate change", + "link": "https://arstechnica.com/?p=1978857", + "pubDate": "Thu, 26 Oct 2023 13:49:58 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / Atlantic puffin, Spitsbergen, Svalbard Islands, Norway. (credit: Sergio Pitamitz/VWPics/Universal Images Group via Getty Images)

\n\n\n\n\n\n\n
\n

The brisk increase in warming rates in the Arctic is bringing rapid shifts in range for plants and animals across the region\u2019s tree of life. Researchers say those changes can lead species that normally wouldn\u2019t encounter each other to interbreed, creating new hybrid populations.

\n

Now, scientists have presented the first evidence of large-scale hybridization that appears to have been driven by climate change. In a paper published this month in the journal Science Advances, researchers report that a hybrid Atlantic puffin population on the remote Norwegian island of Bjornoya seems to have emerged in a period coinciding with the onset of a faster pace of global warming.

\n

The hybrid puffins likely arose from the breeding between two subspecies within the past 100 or so years, coinciding with the onset of the 20th-century warming pattern, the study concludes. Strikingly, the hybridization occurred after a subspecies migrated southward, not poleward toward cooler temperatures, as might have been expected, a finding that highlights the complexity of the changes underway in the Arctic ecosystem.

Read 32 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Atlantic puffin, Spitsbergen, Svalbard Islands, Norway. (credit: Sergio Pitamitz/VWPics/Universal Images Group via Getty Images)\n \n\n\n\n\n\n\n\nThe brisk increase in warming rates in the Arctic is bringing rapid shifts in range for plants and animals across the region\u2019s tree of life. Researchers say those changes can lead species that normally wouldn\u2019t encounter each other to interbreed, creating new hybrid populations.\nNow, scientists have presented the first evidence of large-scale hybridization that appears to have been driven by climate change. In a paper published this month in the journal Science Advances, researchers report that a hybrid Atlantic puffin population on the remote Norwegian island of Bjornoya seems to have emerged in a period coinciding with the onset of a faster pace of global warming.\nThe hybrid puffins likely arose from the breeding between two subspecies within the past 100 or so years, coinciding with the onset of the 20th-century warming pattern, the study concludes. Strikingly, the hybridization occurred after a subspecies migrated southward, not poleward toward cooler temperatures, as might have been expected, a finding that highlights the complexity of the changes underway in the Arctic ecosystem.\n\nRead 32 remaining paragraphs | Comments", + "dc:creator": "Inside Climate News", + "comments": "https://arstechnica.com/science/2023/10/a-new-hybrid-subspecies-of-puffin-is-likely-the-result-of-climate-change/#comments", + "content": "Serious loss of genetic diversity still poses risks for their future.", + "contentSnippet": "Serious loss of genetic diversity still poses risks for their future.", + "guid": "https://arstechnica.com/?p=1978857", + "categories": [ + "Science", + "Arctic", + "climate change", + "evolution", + "puffins", + "syndication" + ], + "isoDate": "2023-10-26T13:49:58.000Z" + }, + { + "creator": "Eric Berger", + "title": "Daily Telescope: Snapshot of a brilliant green comet before it left forever", + "link": "https://arstechnica.com/?p=1978811", + "pubDate": "Thu, 26 Oct 2023 12:00:08 +0000", + "content:encoded": "
\n
\n \"A\n

Enlarge / A view of Comet C/2022 E3 (ZTF) taken earlier this year. (credit: Maarten Butter)

\n\n\n\n\n

Welcome to the Daily Telescope. There is a little too much darkness in this world and not enough light\u2014a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we'll take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.

\n \n\n
\n

Good morning. It is October 26, and today's image showcases a comet that made its closest approach to Earth on February 1 of this year. The comet has an unwieldy name, Comet C/2022 E3 (ZTF). But this tells us a lot about it, actually. The \"C\" means that it is non-periodic, meaning that it originated in the Oort cloud that lies at the edge of our Solar System.

\n

We can also discern that the comet was discovered in 2022, and was the third comet discovered during the first half of March (E3). Finally, the ZTF refers to its discovery by the Zwicky Transient Facility, where a 1.2-meter telescope is used to survey the night sky for just such objects.

Read 5 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A view of Comet C/2022 E3 (ZTF) taken earlier this year. (credit: Maarten Butter)\n \n\n\n\n\n \nWelcome to the Daily Telescope. There is a little too much darkness in this world and not enough light\u2014a little too much pseudoscience and not enough science. We'll let other publications offer you a daily horoscope. At Ars Technica, we'll take a different route, finding inspiration from very real images of a universe that is filled with stars and wonder.\n\nGood morning. It is October 26, and today's image showcases a comet that made its closest approach to Earth on February 1 of this year. The comet has an unwieldy name, Comet C/2022 E3 (ZTF). But this tells us a lot about it, actually. The \"C\" means that it is non-periodic, meaning that it originated in the Oort cloud that lies at the edge of our Solar System.\nWe can also discern that the comet was discovered in 2022, and was the third comet discovered during the first half of March (E3). Finally, the ZTF refers to its discovery by the Zwicky Transient Facility, where a 1.2-meter telescope is used to survey the night sky for just such objects.\n\nRead 5 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2023/10/daily-telescope-snapshot-of-a-brilliant-green-comet-before-it-left-forever/#comments", + "content": "\"My goal was to highlight the comet's journey.\"", + "contentSnippet": "\"My goal was to highlight the comet's journey.\"", + "guid": "https://arstechnica.com/?p=1978811", + "categories": ["Space", "daily telescope"], + "isoDate": "2023-10-26T12:00:08.000Z" + }, + { + "creator": "Jennifer Ouellette", + "title": "Leonardo da Vinci used toxic pigments when he painted the Mona Lisa", + "link": "https://arstechnica.com/?p=1978513", + "pubDate": "Wed, 25 Oct 2023 22:50:25 +0000", + "content:encoded": "
\n
\n \"detail\n

Enlarge / A tiny fleck of paint, taken from the Mona Lisa, is revealing insights into previously unknown steps of Leonardo da Vinci's process. (credit: Public domain)

\n\n\n\n\n\n\n
\n

When Leonardo da Vinci was creating his masterpiece, the Mona Lisa, he may have experimented with lead oxide in his base layer, resulting in trace amounts of a compound called plumbonacrite. It forms when lead oxides combine with oil, a common mixture to help paint dry, used by later artists like Rembrandt. But the presence of plumbonacrite in the Mona Lisa is the first time the compound has been detected in an Italian Renaissance painting, suggesting that da Vinci could have pioneered this technique, according to the authors of a recent paper published in the Journal of the American Chemical Society.

\n

Fewer than 20 of da Vinci's paintings have survived, and the Mona Lisa is by far the most famous, inspiring a 1950s hit song by Nat King Cole and featuring prominently in last year's Glass Onion: a Knives Out Mystery, among other pop culture mentions. The painting is in remarkably good condition given its age, but art conservationists and da Vinci scholars alike are eager to learn as much as possible about the materials the Renaissance master used to create his works.

\n

There have been some recent scientific investigations of da Vinci's works, which revealed that he varied the materials used for his paintings, especially concerning the ground layers applied between the wooden panel surface and the subsequent paint layers. For instance, for his Virgin and Child with St. Anne (c. 1503\u20131519), he used a typical Italian Renaissance gesso for the ground layer, followed by a lead white priming layer. But for La Belle Ferronniere (c. 1495\u20131497), da Vinci used an oil-based ground layer made of white and red lead.

Read 10 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A tiny fleck of paint, taken from the Mona Lisa, is revealing insights into previously unknown steps of Leonardo da Vinci's process. (credit: Public domain)\n \n\n\n\n\n\n\n\nWhen Leonardo da Vinci was creating his masterpiece, the Mona Lisa, he may have experimented with lead oxide in his base layer, resulting in trace amounts of a compound called plumbonacrite. It forms when lead oxides combine with oil, a common mixture to help paint dry, used by later artists like Rembrandt. But the presence of plumbonacrite in the Mona Lisa is the first time the compound has been detected in an Italian Renaissance painting, suggesting that da Vinci could have pioneered this technique, according to the authors of a recent paper published in the Journal of the American Chemical Society.\nFewer than 20 of da Vinci's paintings have survived, and the Mona Lisa is by far the most famous, inspiring a 1950s hit song by Nat King Cole and featuring prominently in last year's Glass Onion: a Knives Out Mystery, among other pop culture mentions. The painting is in remarkably good condition given its age, but art conservationists and da Vinci scholars alike are eager to learn as much as possible about the materials the Renaissance master used to create his works.\nThere have been some recent scientific investigations of da Vinci's works, which revealed that he varied the materials used for his paintings, especially concerning the ground layers applied between the wooden panel surface and the subsequent paint layers. For instance, for his Virgin and Child with St. Anne (c. 1503\u20131519), he used a typical Italian Renaissance gesso for the ground layer, followed by a lead white priming layer. But for La Belle Ferronniere (c. 1495\u20131497), da Vinci used an oil-based ground layer made of white and red lead.\n\nRead 10 remaining paragraphs | Comments", + "dc:creator": "Jennifer Ouellette", + "comments": "https://arstechnica.com/science/2023/10/leonardo-da-vinci-used-toxic-pigments-when-he-painted-the-mona-lisa/#comments", + "content": "Plumbonacrite has previously been found in later works by Rembrandt.", + "contentSnippet": "Plumbonacrite has previously been found in later works by Rembrandt.", + "guid": "https://arstechnica.com/?p=1978513", + "categories": [ + "Science", + "art conservation", + "chemical analysis", + "chemistry", + "infrared spectroscopy", + "Leonardo da Vinci", + "Mona Lisa", + "pigments", + "x-ray diffraction" + ], + "isoDate": "2023-10-25T22:50:25.000Z" + }, + { + "creator": "Dan Goodin", + "title": "Pro-Russia hackers target inboxes with 0-day in webmail app used by millions", + "link": "https://arstechnica.com/?p=1978806", + "pubDate": "Wed, 25 Oct 2023 22:21:49 +0000", + "content:encoded": "
\n
\n \"Pro-Russia\n

Enlarge (credit: Getty Images)

\n\n\n\n\n\n\n
\n

A relentless team of pro-Russia hackers has been exploiting a zero-day vulnerability in widely used webmail software in attacks targeting governmental entities and a think tank, all in Europe, researchers from security firm ESET said on Wednesday.

\n

The previously unknown vulnerability resulted from a critical cross-site scripting error in Roundcube, a server application used by more than 1,000 webmail services and millions of their end users. Members of a pro-Russia and Belarus hacking group tracked as Winter Vivern used the XSS bug to inject JavaScript into the Roundcube server application. The injection was triggered simply by viewing a malicious email, which caused the server to send emails from selected targets to a server controlled by the threat actor.

\n

No manual interaction required

\n

\u201cIn summary, by sending a specially crafted email message, attackers are able to load arbitrary JavaScript code in the context of the Roundcube user\u2019s browser window,\u201d ESET researcher Matthieu Faou wrote. \u201cNo manual interaction other than viewing the message in a web browser is required.\u201d

Read 7 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Getty Images)\n \n\n\n\n\n\n\n\nA relentless team of pro-Russia hackers has been exploiting a zero-day vulnerability in widely used webmail software in attacks targeting governmental entities and a think tank, all in Europe, researchers from security firm ESET said on Wednesday.\nThe previously unknown vulnerability resulted from a critical cross-site scripting error in Roundcube, a server application used by more than 1,000 webmail services and millions of their end users. Members of a pro-Russia and Belarus hacking group tracked as Winter Vivern used the XSS bug to inject JavaScript into the Roundcube server application. The injection was triggered simply by viewing a malicious email, which caused the server to send emails from selected targets to a server controlled by the threat actor.\nNo manual interaction required\n\u201cIn summary, by sending a specially crafted email message, attackers are able to load arbitrary JavaScript code in the context of the Roundcube user\u2019s browser window,\u201d ESET researcher Matthieu Faou wrote. \u201cNo manual interaction other than viewing the message in a web browser is required.\u201d\n\nRead 7 remaining paragraphs | Comments", + "dc:creator": "Dan Goodin", + "comments": "https://arstechnica.com/security/2023/10/pro-russia-hackers-target-inboxes-with-0-day-in-webmail-app-used-by-millions/#comments", + "content": "Previously unknown XSS in Roundcube let Winter Vivern steal government emails.", + "contentSnippet": "Previously unknown XSS in Roundcube let Winter Vivern steal government emails.", + "guid": "https://arstechnica.com/?p=1978806", + "categories": [ + "Biz & IT", + "Security", + "roundcube", + "winter vivern", + "xss", + "zero-day" + ], + "isoDate": "2023-10-25T22:21:49.000Z" + }, + { + "creator": "Beth Mole", + "title": "Teeny jumping spider found in woman\u2019s ear after days of torturous racket", + "link": "https://arstechnica.com/?p=1978787", + "pubDate": "Wed, 25 Oct 2023 21:57:24 +0000", + "content:encoded": "
\n
\n \"The\n

Enlarge / The side view of the spider (on the left) in the ear canal with the exoskeleton in the background. (credit: The New England Journal of Medicine \u00a92023.)

\n\n\n\n\n\n\n
\n

While brain worms have made many horrifying headlines this year, the good folks at the New England Journal of Medicine offer some fresh nightmare fuel ahead of Halloween: an ear spider. And there's a video.

\n

In a short clinical report published in this week's issue, doctors in Tainan City, Taiwan, detail the case of a 64-year-old woman who sought care at an otolaryngology (ENT) clinic. She came in complaining of having an incessant ruckus in her left ear for the previous four days. On the first day of symptoms, the woman said she was awoken by a feeling of a wee creature crawling in her ear canal. That feeling was then followed by days of clicking, beating, and rustling noises.

\n

Read 9 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / The side view of the spider (on the left) in the ear canal with the exoskeleton in the background. (credit: The New England Journal of Medicine \u00a92023.)\n \n\n\n\n\n\n\n\nWhile brain worms have made many horrifying headlines this year, the good folks at the New England Journal of Medicine offer some fresh nightmare fuel ahead of Halloween: an ear spider. And there's a video.\nIn a short clinical report published in this week's issue, doctors in Tainan City, Taiwan, detail the case of a 64-year-old woman who sought care at an otolaryngology (ENT) clinic. She came in complaining of having an incessant ruckus in her left ear for the previous four days. On the first day of symptoms, the woman said she was awoken by a feeling of a wee creature crawling in her ear canal. That feeling was then followed by days of clicking, beating, and rustling noises.\n\n\nRead 9 remaining paragraphs | Comments", + "dc:creator": "Beth Mole", + "comments": "https://arstechnica.com/science/2023/10/a-wee-spider-needed-a-safe-place-to-molt-it-chose-a-womans-ear-canal/#comments", + "content": "The spider was nesting on her eardrum\u2014and there's video.", + "contentSnippet": "The spider was nesting on her eardrum\u2014and there's video.", + "guid": "https://arstechnica.com/?p=1978787", + "categories": [ + "Health", + "Science", + "ear", + "NEJM", + "Spider", + "spider in ear" + ], + "isoDate": "2023-10-25T21:57:24.000Z" + }, + { + "creator": "Scharon Harding", + "title": "Leica camera has built-in defense against misleading AI, costs $9,125", + "link": "https://arstechnica.com/?p=1979140", + "pubDate": "Fri, 27 Oct 2023 13:58:53 +0000", + "content:encoded": "
\n
\n \"Leica\n

Enlarge / A photo shot with the M11-P. (credit: CAI)

\n\n\n\n\n\n\n
\n

On Thursday, Leica Camera released the first camera that can take pictures with automatically encrypted metadata and provide features such as an editing history. The company believes this system, called Content Credentials, will help photojournalists protect their work and prove authenticity in a world riddled with AI-manipulated content.

\n

Leica's M11-P can store each captured image with Content Credentials, which is based on the Coalition for Content Provenance and Authenticity's (C2PA's) open standard and is being pushed by the Content Authenticity Initiative\u00a0(CAI). Content Credentials, announced in October, includes encrypted metadata detailing where and when the photo was taken and with what camera and model. It also keeps track of edits and tools used for edits.

\n

When a photographer opts to use the feature, they'll see a Content Credentials logo in the camera's display, and images will be signed through the use of an algorithm.

Read 6 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / A photo shot with the M11-P. (credit: CAI)\n \n\n\n\n\n\n\n\nOn Thursday, Leica Camera released the first camera that can take pictures with automatically encrypted metadata and provide features such as an editing history. The company believes this system, called Content Credentials, will help photojournalists protect their work and prove authenticity in a world riddled with AI-manipulated content.\nLeica's M11-P can store each captured image with Content Credentials, which is based on the Coalition for Content Provenance and Authenticity's (C2PA's) open standard and is being pushed by the Content Authenticity Initiative\u00a0(CAI). Content Credentials, announced in October, includes encrypted metadata detailing where and when the photo was taken and with what camera and model. It also keeps track of edits and tools used for edits.\nWhen a photographer opts to use the feature, they'll see a Content Credentials logo in the camera's display, and images will be signed through the use of an algorithm.\n\nRead 6 remaining paragraphs | Comments", + "dc:creator": "Scharon Harding", + "comments": "https://arstechnica.com/gadgets/2023/10/leicas-9125-camera-automatically-stores-authenticity-proving-metadata/#comments", + "content": "The M11-P is the first camera to integrate Content Credentials.", + "contentSnippet": "The M11-P is the first camera to integrate Content Credentials.", + "guid": "https://arstechnica.com/?p=1979140", + "categories": ["AI", "Tech", "cameras"], + "isoDate": "2023-10-27T13:58:53.000Z" + }, + { + "creator": "WIRED", + "title": "It\u2019s a \u201cfake PR stunt\u201d: Artists hate Meta\u2019s AI data deletion process", + "link": "https://arstechnica.com/?p=1979173", + "pubDate": "Fri, 27 Oct 2023 13:38:52 +0000", + "content:encoded": "
\n
\n \"a\n

Enlarge (credit: Nodar Chernishev/Getty)

\n\n\n\n\n\n\n
\n

As the generative artificial intelligence gold rush intensifies, concerns about the data used to train machine learning tools have grown. Artists and writers are fighting for a say in how AI companies use their work, filing lawsuits and publicly agitating against the way these models scrape the Internet and incorporate their art without consent.

\n

Some companies have responded to this pushback with \u201copt-out\u201d programs that give people a choice to remove their work from future models. OpenAI, for example, debuted an opt-out feature with its latest version of the image-to-text generator Dall-E. This August, when Meta began allowing people to submit requests to delete personal data from third parties used to train Meta\u2019s generative AI models, many artists and journalists interpreted this new process as Meta\u2019s very limited version of an opt-out program. CNBC explicitly referred to the request form as an \u201copt-out tool.\u201d

\n

Read 10 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge (credit: Nodar Chernishev/Getty)\n \n\n\n\n\n\n\n\nAs the generative artificial intelligence gold rush intensifies, concerns about the data used to train machine learning tools have grown. Artists and writers are fighting for a say in how AI companies use their work, filing lawsuits and publicly agitating against the way these models scrape the Internet and incorporate their art without consent.\nSome companies have responded to this pushback with \u201copt-out\u201d programs that give people a choice to remove their work from future models. OpenAI, for example, debuted an opt-out feature with its latest version of the image-to-text generator Dall-E. This August, when Meta began allowing people to submit requests to delete personal data from third parties used to train Meta\u2019s generative AI models, many artists and journalists interpreted this new process as Meta\u2019s very limited version of an opt-out program. CNBC explicitly referred to the request form as an \u201copt-out tool.\u201d\n\nRead 10 remaining paragraphs | Comments", + "dc:creator": "WIRED", + "comments": "https://arstechnica.com/ai/2023/10/its-a-fake-pr-stunt-artists-hate-metas-ai-data-deletion-process/#comments", + "content": "There's no way to opt out, leading artists to believe Meta's system is badly broken.", + "contentSnippet": "There's no way to opt out, leading artists to believe Meta's system is badly broken.", + "guid": "https://arstechnica.com/?p=1979173", + "categories": ["AI", "copyright", "LLM", "meta", "syndication"], + "isoDate": "2023-10-27T13:38:52.000Z" + }, + { + "creator": "Eric Berger", + "title": "Russia renamed its ambitious satellite program after Putin misspoke its name", + "link": "https://arstechnica.com/?p=1979142", + "pubDate": "Fri, 27 Oct 2023 13:20:00 +0000", + "content:encoded": "
\n
\n \"Russia\n

Enlarge / Russia President Vladimir Putin and Roscosmos chief Dmitry Rogozin shake hands during a meeting at the Konstantin Palace. (credit: Mikhail MetzelTASS via Getty Images)

\n\n\n\n\n\n\n
\n

It was always abundantly clear that the leader of the Russian space corporation Roscosmos from 2018 to 2022, Dmitry Rogozin, sought to kowtow to Russian President Vladimir Putin. Now we have an anecdote from Putin himself that highlights how much.

\n

The story concerns a satellite constellation now known as Sfera (or Sphere, in English), a modestly ambitious constellation of 264 satellites. The Sphere constellation is intended to provide broadband Internet service from middle-Earth orbit to Russia as well as high-resolution Earth observation satellites.

\n

As is usual with Russian space projects, because they tend to be poorly funded, the timeline for Sphere's deployment has been delayed and its scope reduced. It also underwent an unscheduled name change. Prior to 2018, this satellite program was known as Ehfir (Ether), a reference to the invisible substance once thought to fill the universe and the medium through which light waves propagated.

Read 9 remaining paragraphs | Comments

", + "content:encodedSnippet": "Enlarge / Russia President Vladimir Putin and Roscosmos chief Dmitry Rogozin shake hands during a meeting at the Konstantin Palace. (credit: Mikhail MetzelTASS via Getty Images)\n \n\n\n\n\n\n\n\nIt was always abundantly clear that the leader of the Russian space corporation Roscosmos from 2018 to 2022, Dmitry Rogozin, sought to kowtow to Russian President Vladimir Putin. Now we have an anecdote from Putin himself that highlights how much.\nThe story concerns a satellite constellation now known as Sfera (or Sphere, in English), a modestly ambitious constellation of 264 satellites. The Sphere constellation is intended to provide broadband Internet service from middle-Earth orbit to Russia as well as high-resolution Earth observation satellites.\nAs is usual with Russian space projects, because they tend to be poorly funded, the timeline for Sphere's deployment has been delayed and its scope reduced. It also underwent an unscheduled name change. Prior to 2018, this satellite program was known as Ehfir (Ether), a reference to the invisible substance once thought to fill the universe and the medium through which light waves propagated.\n\nRead 9 remaining paragraphs | Comments", + "dc:creator": "Eric Berger", + "comments": "https://arstechnica.com/space/2023/10/russia-renamed-its-ambitious-satellite-program-after-putin-misspoke-its-name/#comments", + "content": "\"So I didn't even make it back and it's already renamed to Sfera.\"", + "contentSnippet": "\"So I didn't even make it back and it's already renamed to Sfera.\"", + "guid": "https://arstechnica.com/?p=1979142", + "categories": [ + "Science", + "Space", + "Putin", + "rogozin", + "roscosmos", + "russia", + "space" + ], + "isoDate": "2023-10-27T13:20:00.000Z" + } +] diff --git a/intro to react/newData/oldNews/77469d9c400326a387454d532f38628c5fff38379b2d45add5ed8c83a6d503f1.json b/intro to react/newData/oldNews/77469d9c400326a387454d532f38628c5fff38379b2d45add5ed8c83a6d503f1.json index d929a4c..efddc4f 100644 --- a/intro to react/newData/oldNews/77469d9c400326a387454d532f38628c5fff38379b2d45add5ed8c83a6d503f1.json +++ b/intro to react/newData/oldNews/77469d9c400326a387454d532f38628c5fff38379b2d45add5ed8c83a6d503f1.json @@ -1,2350 +1,2350 @@ [ - { - "title": "Hamas drugged children; burned legs with exhaust for identification", - "link": "https://www.reddit.com/r/worldnews/comments/187rqdd/hamas_drugged_children_burned_legs_with_exhaust/", - "pubDate": "2023-11-30T20:06:44.000Z", - "author": "/u/openupi", - "content": "
\"Hamas submitted by /u/openupi
[link] [comments]
", - "contentSnippet": "submitted by /u/openupi \n [link] [comments]", - "id": "t3_187rqdd", - "isoDate": "2023-11-30T20:06:44.000Z" - }, - { - "title": "UN will investigate sexual assault, rape, in Hamas' October 7 attack, Guterres assures", - "link": "https://www.reddit.com/r/worldnews/comments/187q8qz/un_will_investigate_sexual_assault_rape_in_hamas/", - "pubDate": "2023-11-30T19:03:53.000Z", - "author": "/u/clarkhunterparks", - "content": "
\"UN submitted by /u/clarkhunterparks
[link] [comments]
", - "contentSnippet": "submitted by /u/clarkhunterparks \n [link] [comments]", - "id": "t3_187q8qz", - "isoDate": "2023-11-30T19:03:53.000Z" - }, - { - "title": "Revenues of Russia's top oil and gas producers fall 41% in first 9 months of 2023", - "link": "https://www.reddit.com/r/worldnews/comments/187p9d3/revenues_of_russias_top_oil_and_gas_producers/", - "pubDate": "2023-11-30T18:21:58.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"Revenues submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_187p9d3", - "isoDate": "2023-11-30T18:21:58.000Z" - }, - { - "title": "\u2018Oct. 7 was just a rehearsal,' warns Sinwar", - "link": "https://www.reddit.com/r/worldnews/comments/187oyc9/oct_7_was_just_a_rehearsal_warns_sinwar/", - "pubDate": "2023-11-30T18:08:41.000Z", - "author": "/u/ConsistentDrummer284", - "content": " submitted by /u/ConsistentDrummer284
[link] [comments]", - "contentSnippet": "submitted by /u/ConsistentDrummer284 \n [link] [comments]", - "id": "t3_187oyc9", - "isoDate": "2023-11-30T18:08:41.000Z" - }, - { - "title": "Argentina's incoming foreign minister says country will not join BRICS bloc", - "link": "https://www.reddit.com/r/worldnews/comments/187o2iq/argentinas_incoming_foreign_minister_says_country/", - "pubDate": "2023-11-30T17:31:55.000Z", - "author": "/u/BastianMobile", - "content": "
\"Argentina's submitted by /u/BastianMobile
[link] [comments]
", - "contentSnippet": "submitted by /u/BastianMobile \n [link] [comments]", - "id": "t3_187o2iq", - "isoDate": "2023-11-30T17:31:55.000Z" - }, - { - "title": "Russia bans international LGBT movement as \u2018extremist\u2019", - "link": "https://www.reddit.com/r/worldnews/comments/187mrr7/russia_bans_international_lgbt_movement_as/", - "pubDate": "2023-11-30T16:36:06.000Z", - "author": "/u/washingtonpost", - "content": "
\"Russia submitted by /u/washingtonpost
[link] [comments]
", - "contentSnippet": "submitted by /u/washingtonpost \n [link] [comments]", - "id": "t3_187mrr7", - "isoDate": "2023-11-30T16:36:06.000Z" - }, - { - "title": "Russia's Lavrov faces Western critics at security meeting, walks out after speech", - "link": "https://www.reddit.com/r/worldnews/comments/187jqdz/russias_lavrov_faces_western_critics_at_security/", - "pubDate": "2023-11-30T14:25:04.000Z", - "author": "/u/panbio102", - "content": "
\"Russia's submitted by /u/panbio102
[link] [comments]
", - "contentSnippet": "submitted by /u/panbio102 \n [link] [comments]", - "id": "t3_187jqdz", - "isoDate": "2023-11-30T14:25:04.000Z" - }, - { - "title": "Indigenous community in Ecuador wins legal fight to reclaim ancestral land after more than 80 years", - "link": "https://www.reddit.com/r/worldnews/comments/187jgy5/indigenous_community_in_ecuador_wins_legal_fight/", - "pubDate": "2023-11-30T14:13:23.000Z", - "author": "/u/zsreport", - "content": "
\"Indigenous submitted by /u/zsreport
[link] [comments]
", - "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", - "id": "t3_187jgy5", - "isoDate": "2023-11-30T14:13:23.000Z" - }, - { - "title": "Blinken: 'No Fatigue' in NATO Support of Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/187j75k/blinken_no_fatigue_in_nato_support_of_ukraine/", - "pubDate": "2023-11-30T14:00:59.000Z", - "author": "/u/Red_Franklin", - "content": "
\"Blinken: submitted by /u/Red_Franklin
[link] [comments]
", - "contentSnippet": "submitted by /u/Red_Franklin \n [link] [comments]", - "id": "t3_187j75k", - "isoDate": "2023-11-30T14:00:59.000Z" - }, - { - "title": "Putin is urging women to have as many as 8 children after so many Russians died in his war with Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/187i3z8/putin_is_urging_women_to_have_as_many_as_8/", - "pubDate": "2023-11-30T13:06:42.000Z", - "author": "/u/blllrrrrr", - "content": "
\"Putin submitted by /u/blllrrrrr
[link] [comments]
", - "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", - "id": "t3_187i3z8", - "isoDate": "2023-11-30T13:06:42.000Z" - }, - { - "title": "Top Russian court bans LGBT movement as \"extremist\"", - "link": "https://www.reddit.com/r/worldnews/comments/187haky/top_russian_court_bans_lgbt_movement_as_extremist/", - "pubDate": "2023-11-30T12:22:29.000Z", - "author": "/u/giuliomagnifico", - "content": "
\"Top submitted by /u/giuliomagnifico
[link] [comments]
", - "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", - "id": "t3_187haky", - "isoDate": "2023-11-30T12:22:29.000Z" - }, - { - "title": "Germany: Right-wing extremist group leader sentenced to jail", - "link": "https://www.reddit.com/r/worldnews/comments/187gtb9/germany_rightwing_extremist_group_leader/", - "pubDate": "2023-11-30T11:54:40.000Z", - "author": "/u/donutloop", - "content": "
\"Germany: submitted by /u/donutloop
[link] [comments]
", - "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", - "id": "t3_187gtb9", - "isoDate": "2023-11-30T11:54:40.000Z" - }, - { - "title": "Ukraine\u2019s SBU Blows Up Freight Train in Rail Tunnel Deep Inside Russia", - "link": "https://www.reddit.com/r/worldnews/comments/187f7um/ukraines_sbu_blows_up_freight_train_in_rail/", - "pubDate": "2023-11-30T10:09:20.000Z", - "author": "/u/yorkiecd", - "content": "
\"Ukraine\u2019s submitted by /u/yorkiecd
[link] [comments]
", - "contentSnippet": "submitted by /u/yorkiecd \n [link] [comments]", - "id": "t3_187f7um", - "isoDate": "2023-11-30T10:09:20.000Z" - }, - { - "title": "Nepal becomes first South Asian country to officially register same-sex marriage", - "link": "https://www.reddit.com/r/worldnews/comments/187e4ha/nepal_becomes_first_south_asian_country_to/", - "pubDate": "2023-11-30T08:53:31.000Z", - "author": "/u/2be_0r_not2be", - "content": "
\"Nepal submitted by /u/2be_0r_not2be
[link] [comments]
", - "contentSnippet": "submitted by /u/2be_0r_not2be \n [link] [comments]", - "id": "t3_187e4ha", - "isoDate": "2023-11-30T08:53:31.000Z" - }, - { - "title": "Seven wounded in Jerusalem shooting attack, terrorists killed", - "link": "https://www.reddit.com/r/worldnews/comments/187bqtq/seven_wounded_in_jerusalem_shooting_attack/", - "pubDate": "2023-11-30T06:17:37.000Z", - "author": "/u/NamelessForce", - "content": "
\"Seven submitted by /u/NamelessForce
[link] [comments]
", - "contentSnippet": "submitted by /u/NamelessForce \n [link] [comments]", - "id": "t3_187bqtq", - "isoDate": "2023-11-30T06:17:37.000Z" - }, - { - "title": "Truce in Israel-Hamas war extended by a day, minutes before it was set to expire", - "link": "https://www.reddit.com/r/worldnews/comments/187ajxs/truce_in_israelhamas_war_extended_by_a_day/", - "pubDate": "2023-11-30T05:11:21.000Z", - "author": "/u/RepresentativeTwo967", - "content": "
\"Truce submitted by /u/RepresentativeTwo967
[link] [comments]
", - "contentSnippet": "submitted by /u/RepresentativeTwo967 \n [link] [comments]", - "id": "t3_187ajxs", - "isoDate": "2023-11-30T05:11:21.000Z" - }, - { - "title": "New Zealand plans to ban cellphone use in schools", - "link": "https://www.reddit.com/r/worldnews/comments/1879l8o/new_zealand_plans_to_ban_cellphone_use_in_schools/", - "pubDate": "2023-11-30T04:19:37.000Z", - "author": "/u/galaxystars1", - "content": "
\"New submitted by /u/galaxystars1
[link] [comments]
", - "contentSnippet": "submitted by /u/galaxystars1 \n [link] [comments]", - "id": "t3_1879l8o", - "isoDate": "2023-11-30T04:19:37.000Z" - }, - { - "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 645, Part 1 (Thread #791)", - "link": "https://www.reddit.com/r/worldnews/comments/18799n4/rworldnews_live_thread_russian_invasion_of/", - "pubDate": "2023-11-30T04:02:24.000Z", - "author": "/u/WorldNewsMods", - "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", - "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", - "id": "t3_18799n4", - "isoDate": "2023-11-30T04:02:24.000Z" - }, - { - "title": "Israel-Hamas war: UK sending one of its most lethal warships to Gulf to deter Iran-backed groups | UK News", - "link": "https://www.reddit.com/r/worldnews/comments/187949z/israelhamas_war_uk_sending_one_of_its_most_lethal/", - "pubDate": "2023-11-30T03:54:47.000Z", - "author": "/u/scottmache025", - "content": "
\"Israel-Hamas submitted by /u/scottmache025
[link] [comments]
", - "contentSnippet": "submitted by /u/scottmache025 \n [link] [comments]", - "id": "t3_187949z", - "isoDate": "2023-11-30T03:54:47.000Z" - }, - { - "title": "Hostages held in homes of Hamas-sympathetic UNRWA employees", - "link": "https://www.reddit.com/r/worldnews/comments/1878tq7/hostages_held_in_homes_of_hamassympathetic_unrwa/", - "pubDate": "2023-11-30T03:39:30.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"Hostages submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_1878tq7", - "isoDate": "2023-11-30T03:39:30.000Z" - }, - { - "title": "Japan plans to suspend its own Osprey flights after a fatal US Air Force crash of the aircraft", - "link": "https://www.reddit.com/r/worldnews/comments/1878itv/japan_plans_to_suspend_its_own_osprey_flights/", - "pubDate": "2023-11-30T03:24:23.000Z", - "author": "/u/mrwhiskeyrum", - "content": "
\"Japan submitted by /u/mrwhiskeyrum
[link] [comments]
", - "contentSnippet": "submitted by /u/mrwhiskeyrum \n [link] [comments]", - "id": "t3_1878itv", - "isoDate": "2023-11-30T03:24:23.000Z" - }, - { - "title": "Taiwan president: China too overwhelmed to consider invasion", - "link": "https://www.reddit.com/r/worldnews/comments/1878fte/taiwan_president_china_too_overwhelmed_to/", - "pubDate": "2023-11-30T03:20:21.000Z", - "author": "/u/scottmache025", - "content": "
\"Taiwan submitted by /u/scottmache025
[link] [comments]
", - "contentSnippet": "submitted by /u/scottmache025 \n [link] [comments]", - "id": "t3_1878fte", - "isoDate": "2023-11-30T03:20:21.000Z" - }, - { - "title": "US Navy warship shoots down a drone launched by Houthis from Yemen", - "link": "https://www.reddit.com/r/worldnews/comments/1878buw/us_navy_warship_shoots_down_a_drone_launched_by/", - "pubDate": "2023-11-30T03:14:52.000Z", - "author": "/u/sexychineseguy", - "content": "
\"US submitted by /u/sexychineseguy
[link] [comments]
", - "contentSnippet": "submitted by /u/sexychineseguy \n [link] [comments]", - "id": "t3_1878buw", - "isoDate": "2023-11-30T03:14:52.000Z" - }, - { - "title": "Candy company Mars uses cocoa harvested by kids as young as 5 in Ghana: CBS News investigation", - "link": "https://www.reddit.com/r/worldnews/comments/1875ng1/candy_company_mars_uses_cocoa_harvested_by_kids/", - "pubDate": "2023-11-30T01:10:08.000Z", - "author": "/u/CBSnews", - "content": "
\"Candy submitted by /u/CBSnews
[link] [comments]
", - "contentSnippet": "submitted by /u/CBSnews \n [link] [comments]", - "id": "t3_1875ng1", - "isoDate": "2023-11-30T01:10:08.000Z" - }, - { - "title": "Plans to present meat as \u2018sustainable nutrition\u2019 at Cop28 revealed. Documents show industry intends to go \u2018full force\u2019 in arguing meat is beneficial to the environment at climate summit.", - "link": "https://www.reddit.com/r/worldnews/comments/1874iv3/plans_to_present_meat_as_sustainable_nutrition_at/", - "pubDate": "2023-11-30T00:17:59.000Z", - "author": "/u/lamdefinitelynotadog", - "content": "
\"Plans submitted by /u/lamdefinitelynotadog
[link] [comments]
", - "contentSnippet": "submitted by /u/lamdefinitelynotadog \n [link] [comments]", - "id": "t3_1874iv3", - "isoDate": "2023-11-30T00:17:59.000Z" - }, - { - "title": "Canada\u2019s homicide rate is at the highest level in 30 years", - "link": "https://www.reddit.com/r/worldnews/comments/187rfkk/canadas_homicide_rate_is_at_the_highest_level_in/", - "pubDate": "2023-11-30T19:54:20.000Z", - "author": "/u/Vegetable-Frame2342", - "content": "
\"Canada\u2019s submitted by /u/Vegetable-Frame2342
[link] [comments]
", - "contentSnippet": "submitted by /u/Vegetable-Frame2342 \n [link] [comments]", - "id": "t3_187rfkk", - "isoDate": "2023-11-30T19:54:20.000Z" - }, - { - "title": "Blinken said to tell Israel to change strategy for southern Gaza, suggest it won\u2019t have months to win war", - "link": "https://www.reddit.com/r/worldnews/comments/187q6zo/blinken_said_to_tell_israel_to_change_strategy/", - "pubDate": "2023-11-30T19:01:48.000Z", - "author": "/u/clarkhunterparks", - "content": " submitted by /u/clarkhunterparks
[link] [comments]", - "contentSnippet": "submitted by /u/clarkhunterparks \n [link] [comments]", - "id": "t3_187q6zo", - "isoDate": "2023-11-30T19:01:48.000Z" - }, - { - "title": "EU set to push Xi Jinping to stop Chinese firms getting around sanctions on Russia", - "link": "https://www.reddit.com/r/worldnews/comments/187nec3/eu_set_to_push_xi_jinping_to_stop_chinese_firms/", - "pubDate": "2023-11-30T17:02:42.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"EU submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_187nec3", - "isoDate": "2023-11-30T17:02:42.000Z" - }, - { - "title": "EU approves ban on destruction of unsold clothing", - "link": "https://www.reddit.com/r/worldnews/comments/18dd3ky/eu_approves_ban_on_destruction_of_unsold_clothing/", - "pubDate": "2023-12-08T03:05:22.000Z", - "author": "/u/Sandstorm400", - "content": "
\"EU submitted by /u/Sandstorm400
[link] [comments]
", - "contentSnippet": "submitted by /u/Sandstorm400 \n [link] [comments]", - "id": "t3_18dd3ky", - "isoDate": "2023-12-08T03:05:22.000Z" - }, - { - "title": "Belgium wants to deny entry to violent Israeli settlers from occupied West Bank", - "link": "https://www.reddit.com/r/worldnews/comments/18dcnk2/belgium_wants_to_deny_entry_to_violent_israeli/", - "pubDate": "2023-12-08T02:42:33.000Z", - "author": "/u/leeta0028", - "content": "
\"Belgium submitted by /u/leeta0028
[link] [comments]
", - "contentSnippet": "submitted by /u/leeta0028 \n [link] [comments]", - "id": "t3_18dcnk2", - "isoDate": "2023-12-08T02:42:33.000Z" - }, - { - "title": "Spain Expels US Diplomats Over Spy Scandal", - "link": "https://www.reddit.com/r/worldnews/comments/18d9ctx/spain_expels_us_diplomats_over_spy_scandal/", - "pubDate": "2023-12-07T23:54:30.000Z", - "author": "/u/s4Nn1Ng0r0shi", - "content": "
\"Spain submitted by /u/s4Nn1Ng0r0shi
[link] [comments]
", - "contentSnippet": "submitted by /u/s4Nn1Ng0r0shi \n [link] [comments]", - "id": "t3_18d9ctx", - "isoDate": "2023-12-07T23:54:30.000Z" - }, - { - "title": "Apple admits to secretly giving governments push notification data", - "link": "https://www.reddit.com/r/worldnews/comments/18d7ns0/apple_admits_to_secretly_giving_governments_push/", - "pubDate": "2023-12-07T22:35:36.000Z", - "author": "/u/Far_Nature_8527", - "content": "
\"Apple submitted by /u/Far_Nature_8527
[link] [comments]
", - "contentSnippet": "submitted by /u/Far_Nature_8527 \n [link] [comments]", - "id": "t3_18d7ns0", - "isoDate": "2023-12-07T22:35:36.000Z" - }, - { - "title": "Russia tricks US actors into appearing in propaganda videos", - "link": "https://www.reddit.com/r/worldnews/comments/18d6h5m/russia_tricks_us_actors_into_appearing_in/", - "pubDate": "2023-12-07T21:43:22.000Z", - "author": "/u/AcademicPattern2737", - "content": "
\"Russia submitted by /u/AcademicPattern2737
[link] [comments]
", - "contentSnippet": "submitted by /u/AcademicPattern2737 \n [link] [comments]", - "id": "t3_18d6h5m", - "isoDate": "2023-12-07T21:43:22.000Z" - }, - { - "title": "Ukrainian President Volodymyr Zelensky has called off a high-profile briefing with US lawmakers amid an impasse over future US funding for the country", - "link": "https://www.reddit.com/r/worldnews/comments/18d5rkn/ukrainian_president_volodymyr_zelensky_has_called/", - "pubDate": "2023-12-07T21:12:32.000Z", - "author": "/u/maxleslies", - "content": "
\"Ukrainian submitted by /u/maxleslies
[link] [comments]
", - "contentSnippet": "submitted by /u/maxleslies \n [link] [comments]", - "id": "t3_18d5rkn", - "isoDate": "2023-12-07T21:12:32.000Z" - }, - { - "title": "Venezuela Brands US-Guyana Military Drills 'Provocation'", - "link": "https://www.reddit.com/r/worldnews/comments/18d5b7w/venezuela_brands_usguyana_military_drills/", - "pubDate": "2023-12-07T20:53:26.000Z", - "author": "/u/Gari_305", - "content": "
\"Venezuela submitted by /u/Gari_305
[link] [comments]
", - "contentSnippet": "submitted by /u/Gari_305 \n [link] [comments]", - "id": "t3_18d5b7w", - "isoDate": "2023-12-07T20:53:26.000Z" - }, - { - "title": "U.K. says Russia's intelligence service behind sustained attempts to meddle in British democracy", - "link": "https://www.reddit.com/r/worldnews/comments/18d3qme/uk_says_russias_intelligence_service_behind/", - "pubDate": "2023-12-07T19:45:00.000Z", - "author": "/u/blllrrrrr", - "content": "
\"U.K. submitted by /u/blllrrrrr
[link] [comments]
", - "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", - "id": "t3_18d3qme", - "isoDate": "2023-12-07T19:45:00.000Z" - }, - { - "title": "Germany's chancellor lights first Hanukkah candle on a huge menorah at Berlin's Brandenburg Gate", - "link": "https://www.reddit.com/r/worldnews/comments/18d3qh9/germanys_chancellor_lights_first_hanukkah_candle/", - "pubDate": "2023-12-07T19:44:50.000Z", - "author": "/u/Kimber80", - "content": "
\"Germany's submitted by /u/Kimber80
[link] [comments]
", - "contentSnippet": "submitted by /u/Kimber80 \n [link] [comments]", - "id": "t3_18d3qh9", - "isoDate": "2023-12-07T19:44:50.000Z" - }, - { - "title": "IDF says Hamas firing rockets from Gaza safe zones as civilian scramble for shelter", - "link": "https://www.reddit.com/r/worldnews/comments/18d2xeh/idf_says_hamas_firing_rockets_from_gaza_safe/", - "pubDate": "2023-12-07T19:09:17.000Z", - "author": "/u/HariSeldonOlivaw", - "content": "
\"IDF submitted by /u/HariSeldonOlivaw
[link] [comments]
", - "contentSnippet": "submitted by /u/HariSeldonOlivaw \n [link] [comments]", - "id": "t3_18d2xeh", - "isoDate": "2023-12-07T19:09:17.000Z" - }, - { - "title": "Tesla loses legal action in Sweden as dispute with Nordic unions escalates", - "link": "https://www.reddit.com/r/worldnews/comments/18d2h9o/tesla_loses_legal_action_in_sweden_as_dispute/", - "pubDate": "2023-12-07T18:49:59.000Z", - "author": "/u/3kOlen", - "content": "
\"Tesla submitted by /u/3kOlen
[link] [comments]
", - "contentSnippet": "submitted by /u/3kOlen \n [link] [comments]", - "id": "t3_18d2h9o", - "isoDate": "2023-12-07T18:49:59.000Z" - }, - { - "title": "Israel pressures Egypt to accept Gazan refugees after war, report says", - "link": "https://www.reddit.com/r/worldnews/comments/18d1wdc/israel_pressures_egypt_to_accept_gazan_refugees/", - "pubDate": "2023-12-07T18:26:59.000Z", - "author": "/u/Bangex", - "content": "
\"Israel submitted by /u/Bangex
[link] [comments]
", - "contentSnippet": "submitted by /u/Bangex \n [link] [comments]", - "id": "t3_18d1wdc", - "isoDate": "2023-12-07T18:26:59.000Z" - }, - { - "title": "Earth on verge of five catastrophic climate tipping points, scientists warn", - "link": "https://www.reddit.com/r/worldnews/comments/18d0rw5/earth_on_verge_of_five_catastrophic_climate/", - "pubDate": "2023-12-07T17:32:29.000Z", - "author": "/u/Havvocck2", - "content": "
\"Earth submitted by /u/Havvocck2
[link] [comments]
", - "contentSnippet": "submitted by /u/Havvocck2 \n [link] [comments]", - "id": "t3_18d0rw5", - "isoDate": "2023-12-07T17:32:29.000Z" - }, - { - "title": "Attack on Pakistan highway to China shakes key Belt and Road link", - "link": "https://www.reddit.com/r/worldnews/comments/18d0nd6/attack_on_pakistan_highway_to_china_shakes_key/", - "pubDate": "2023-12-07T17:26:52.000Z", - "author": "/u/MaleficentParfait863", - "content": "
\"Attack submitted by /u/MaleficentParfait863
[link] [comments]
", - "contentSnippet": "submitted by /u/MaleficentParfait863 \n [link] [comments]", - "id": "t3_18d0nd6", - "isoDate": "2023-12-07T17:26:52.000Z" - }, - { - "title": "Russia warns US that Ukraine will be its \u2018second Vietnam\u2019", - "link": "https://www.reddit.com/r/worldnews/comments/18czctd/russia_warns_us_that_ukraine_will_be_its_second/", - "pubDate": "2023-12-07T16:28:16.000Z", - "author": "/u/blllrrrrr", - "content": "
\"Russia submitted by /u/blllrrrrr
[link] [comments]
", - "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", - "id": "t3_18czctd", - "isoDate": "2023-12-07T16:28:16.000Z" - }, - { - "title": "Japan to provide $ 4.5 billion to Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/18cyckz/japan_to_provide_45_billion_to_ukraine/", - "pubDate": "2023-12-07T15:42:24.000Z", - "author": "/u/PjeterPannos", - "content": "
\"Japan submitted by /u/PjeterPannos
[link] [comments]
", - "contentSnippet": "submitted by /u/PjeterPannos \n [link] [comments]", - "id": "t3_18cyckz", - "isoDate": "2023-12-07T15:42:24.000Z" - }, - { - "title": "New Footage shows dozens of Gaza men said to have surrendered to IDF; reportedly may be Hamas suspects", - "link": "https://www.reddit.com/r/worldnews/comments/18cxdld/new_footage_shows_dozens_of_gaza_men_said_to_have/", - "pubDate": "2023-12-07T14:57:55.000Z", - "author": "/u/gimiCv2", - "content": "
\"New submitted by /u/gimiCv2
[link] [comments]
", - "contentSnippet": "submitted by /u/gimiCv2 \n [link] [comments]", - "id": "t3_18cxdld", - "isoDate": "2023-12-07T14:57:55.000Z" - }, - { - "title": "Number of Deserting Russian Troops Surges", - "link": "https://www.reddit.com/r/worldnews/comments/18cx9z0/number_of_deserting_russian_troops_surges/", - "pubDate": "2023-12-07T14:53:09.000Z", - "author": "/u/yorkiecd", - "content": "
\"Number submitted by /u/yorkiecd
[link] [comments]
", - "contentSnippet": "submitted by /u/yorkiecd \n [link] [comments]", - "id": "t3_18cx9z0", - "isoDate": "2023-12-07T14:53:09.000Z" - }, - { - "title": "Russian Presidential Election Set For March 17; Navalny Says Putin Victory Could 'Destroy' Country", - "link": "https://www.reddit.com/r/worldnews/comments/18cwzln/russian_presidential_election_set_for_march_17/", - "pubDate": "2023-12-07T14:38:59.000Z", - "author": "/u/Red_Franklin", - "content": "
\"Russian submitted by /u/Red_Franklin
[link] [comments]
", - "contentSnippet": "submitted by /u/Red_Franklin \n [link] [comments]", - "id": "t3_18cwzln", - "isoDate": "2023-12-07T14:38:59.000Z" - }, - { - "title": "US military Southern Command conducting flight operations over Guyana", - "link": "https://www.reddit.com/r/worldnews/comments/18cva4j/us_military_southern_command_conducting_flight/", - "pubDate": "2023-12-07T13:11:11.000Z", - "author": "/u/julveon", - "content": "
\"US submitted by /u/julveon
[link] [comments]
", - "contentSnippet": "submitted by /u/julveon \n [link] [comments]", - "id": "t3_18cva4j", - "isoDate": "2023-12-07T13:11:11.000Z" - }, - { - "title": "Andrew Forrest calls for fossil fuel bosses' 'heads on spikes' in extraordinary outburst on sidelines of UN COP28 climate conference", - "link": "https://www.reddit.com/r/worldnews/comments/18cv9w3/andrew_forrest_calls_for_fossil_fuel_bosses_heads/", - "pubDate": "2023-12-07T13:10:49.000Z", - "author": "/u/fungussa", - "content": "
\"Andrew submitted by /u/fungussa
[link] [comments]
", - "contentSnippet": "submitted by /u/fungussa \n [link] [comments]", - "id": "t3_18cv9w3", - "isoDate": "2023-12-07T13:10:49.000Z" - }, - { - "title": "Brazil urges Venezuela not to attack Guyana", - "link": "https://www.reddit.com/r/worldnews/comments/18cus8m/brazil_urges_venezuela_not_to_attack_guyana/", - "pubDate": "2023-12-07T12:42:45.000Z", - "author": "/u/loggiews", - "content": "
\"Brazil submitted by /u/loggiews
[link] [comments]
", - "contentSnippet": "submitted by /u/loggiews \n [link] [comments]", - "id": "t3_18cus8m", - "isoDate": "2023-12-07T12:42:45.000Z" - }, - { - "title": "Hamas leader asks \u2018brave\u2019 Pakistan for help; says it can force Israel to retreat from Gaza", - "link": "https://www.reddit.com/r/worldnews/comments/18ctee0/hamas_leader_asks_brave_pakistan_for_help_says_it/", - "pubDate": "2023-12-07T11:14:17.000Z", - "author": "/u/AcademicPattern2737", - "content": "
\"Hamas submitted by /u/AcademicPattern2737
[link] [comments]
", - "contentSnippet": "submitted by /u/AcademicPattern2737 \n [link] [comments]", - "id": "t3_18ctee0", - "isoDate": "2023-12-07T11:14:17.000Z" - }, - { - "title": "Navalny urges Russians to vote for anyone but Putin in March\u2019s presidential election", - "link": "https://www.reddit.com/r/worldnews/comments/18ct5yw/navalny_urges_russians_to_vote_for_anyone_but/", - "pubDate": "2023-12-07T10:58:43.000Z", - "author": "/u/duckanroll", - "content": "
\"Navalny submitted by /u/duckanroll
[link] [comments]
", - "contentSnippet": "submitted by /u/duckanroll \n [link] [comments]", - "id": "t3_18ct5yw", - "isoDate": "2023-12-07T10:58:43.000Z" - }, - { - "title": "Iran uses rape, torture to silence detained Mahsa Amini protesters, Amnesty says", - "link": "https://www.reddit.com/r/worldnews/comments/18crrbl/iran_uses_rape_torture_to_silence_detained_mahsa/", - "pubDate": "2023-12-07T09:14:51.000Z", - "author": "/u/Saltedline", - "content": "
\"Iran submitted by /u/Saltedline
[link] [comments]
", - "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", - "id": "t3_18crrbl", - "isoDate": "2023-12-07T09:14:51.000Z" - }, - { - "title": "Russian military used Ukrainian POWs as human shields, Prosecutor\u2019s Office confirms", - "link": "https://www.reddit.com/r/worldnews/comments/18iwnn5/russian_military_used_ukrainian_pows_as_human/", - "pubDate": "2023-12-15T09:56:09.000Z", - "author": "/u/PjeterPannos", - "content": "
\"Russian submitted by /u/PjeterPannos
[link] [comments]
", - "contentSnippet": "submitted by /u/PjeterPannos \n [link] [comments]", - "id": "t3_18iwnn5", - "isoDate": "2023-12-15T09:56:09.000Z" - }, - { - "title": "U.S. warns Houthis to stop attacks in Red Sea", - "link": "https://www.reddit.com/r/worldnews/comments/18iw1lm/us_warns_houthis_to_stop_attacks_in_red_sea/", - "pubDate": "2023-12-15T09:09:49.000Z", - "author": "/u/ganbaro", - "content": "
\"U.S. submitted by /u/ganbaro
[link] [comments]
", - "contentSnippet": "submitted by /u/ganbaro \n [link] [comments]", - "id": "t3_18iw1lm", - "isoDate": "2023-12-15T09:09:49.000Z" - }, - { - "title": "Canada's new dental care plan could impact nearly 9 million Canadians", - "link": "https://www.reddit.com/r/worldnews/comments/18iunfm/canadas_new_dental_care_plan_could_impact_nearly/", - "pubDate": "2023-12-15T07:28:19.000Z", - "author": "/u/yimmy51", - "content": "
\"Canada's submitted by /u/yimmy51
[link] [comments]
", - "contentSnippet": "submitted by /u/yimmy51 \n [link] [comments]", - "id": "t3_18iunfm", - "isoDate": "2023-12-15T07:28:19.000Z" - }, - { - "title": "Charles McGonigal: Ex-FBI counterintelligence chief sentenced to over four years in prison for work with Russian oligarch.", - "link": "https://www.reddit.com/r/worldnews/comments/18iu9wm/charles_mcgonigal_exfbi_counterintelligence_chief/", - "pubDate": "2023-12-15T07:02:51.000Z", - "author": "/u/JustMyOpinionz", - "content": "
\"Charles submitted by /u/JustMyOpinionz
[link] [comments]
", - "contentSnippet": "submitted by /u/JustMyOpinionz \n [link] [comments]", - "id": "t3_18iu9wm", - "isoDate": "2023-12-15T07:02:51.000Z" - }, - { - "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 660, Part 1 (Thread #806)", - "link": "https://www.reddit.com/r/worldnews/comments/18iravx/rworldnews_live_thread_russian_invasion_of/", - "pubDate": "2023-12-15T04:02:30.000Z", - "author": "/u/WorldNewsMods", - "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", - "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", - "id": "t3_18iravx", - "isoDate": "2023-12-15T04:02:30.000Z" - }, - { - "title": "Hungary blocks \u20ac50bn of EU funding for Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/18ipc5t/hungary_blocks_50bn_of_eu_funding_for_ukraine/", - "pubDate": "2023-12-15T02:18:12.000Z", - "author": "/u/CurrentIndependent42", - "content": "
\"Hungary submitted by /u/CurrentIndependent42
[link] [comments]
", - "contentSnippet": "submitted by /u/CurrentIndependent42 \n [link] [comments]", - "id": "t3_18ipc5t", - "isoDate": "2023-12-15T02:18:12.000Z" - }, - { - "title": "Pakistan Minister Proposes Drone Bases to US for Counterterrorism", - "link": "https://www.reddit.com/r/worldnews/comments/18io4yr/pakistan_minister_proposes_drone_bases_to_us_for/", - "pubDate": "2023-12-15T01:16:44.000Z", - "author": "/u/mrwhiskeyrum", - "content": "
\"Pakistan submitted by /u/mrwhiskeyrum
[link] [comments]
", - "contentSnippet": "submitted by /u/mrwhiskeyrum \n [link] [comments]", - "id": "t3_18io4yr", - "isoDate": "2023-12-15T01:16:44.000Z" - }, - { - "title": "Congress approves bill barring any president from unilaterally withdrawing from NATO", - "link": "https://www.reddit.com/r/worldnews/comments/18ilg53/congress_approves_bill_barring_any_president_from/", - "pubDate": "2023-12-14T23:07:13.000Z", - "author": "/u/JKKIDD231", - "content": "
\"Congress submitted by /u/JKKIDD231
[link] [comments]
", - "contentSnippet": "submitted by /u/JKKIDD231 \n [link] [comments]", - "id": "t3_18ilg53", - "isoDate": "2023-12-14T23:07:13.000Z" - }, - { - "title": "Germany says it foiled alleged Hamas plot", - "link": "https://www.reddit.com/r/worldnews/comments/18ikgew/germany_says_it_foiled_alleged_hamas_plot/", - "pubDate": "2023-12-14T22:24:05.000Z", - "author": "/u/craywelp", - "content": "
\"Germany submitted by /u/craywelp
[link] [comments]
", - "contentSnippet": "submitted by /u/craywelp \n [link] [comments]", - "id": "t3_18ikgew", - "isoDate": "2023-12-14T22:24:05.000Z" - }, - { - "title": "Putin apologizes for the price of eggs as Russian inflation soars", - "link": "https://www.reddit.com/r/worldnews/comments/18ijmxa/putin_apologizes_for_the_price_of_eggs_as_russian/", - "pubDate": "2023-12-14T21:48:28.000Z", - "author": "/u/thisisinsider", - "content": "
\"Putin submitted by /u/thisisinsider
[link] [comments]
", - "contentSnippet": "submitted by /u/thisisinsider \n [link] [comments]", - "id": "t3_18ijmxa", - "isoDate": "2023-12-14T21:48:28.000Z" - }, - { - "title": "\u201cOrb\u00e1n left the room when we voted\u201d: EU official explains how decision to open accession talks with Ukraine was made", - "link": "https://www.reddit.com/r/worldnews/comments/18ihs07/orb\u00e1n_left_the_room_when_we_voted_eu_official/", - "pubDate": "2023-12-14T20:25:21.000Z", - "author": "/u/Kimber80", - "content": "
\"\u201cOrb\u00e1n submitted by /u/Kimber80
[link] [comments]
", - "contentSnippet": "submitted by /u/Kimber80 \n [link] [comments]", - "id": "t3_18ihs07", - "isoDate": "2023-12-14T20:25:21.000Z" - }, - { - "title": "Hands raised: About 70 terror suspects left a Gaza hospital and handed over their weapons", - "link": "https://www.reddit.com/r/worldnews/comments/18ih26t/hands_raised_about_70_terror_suspects_left_a_gaza/", - "pubDate": "2023-12-14T19:53:38.000Z", - "author": "/u/shillforyou", - "content": "
\"Hands submitted by /u/shillforyou
[link] [comments]
", - "contentSnippet": "submitted by /u/shillforyou \n [link] [comments]", - "id": "t3_18ih26t", - "isoDate": "2023-12-14T19:53:38.000Z" - }, - { - "title": "Russia Appointed a New Commander for Flagship Moskva Six Months After Ukraine Sank It", - "link": "https://www.reddit.com/r/worldnews/comments/18igmk4/russia_appointed_a_new_commander_for_flagship/", - "pubDate": "2023-12-14T19:34:20.000Z", - "author": "/u/Ask4MD", - "content": "
\"Russia submitted by /u/Ask4MD
[link] [comments]
", - "contentSnippet": "submitted by /u/Ask4MD \n [link] [comments]", - "id": "t3_18igmk4", - "isoDate": "2023-12-14T19:34:20.000Z" - }, - { - "title": "Hamas operatives arrested in Germany after planning attack", - "link": "https://www.reddit.com/r/worldnews/comments/18igk92/hamas_operatives_arrested_in_germany_after/", - "pubDate": "2023-12-14T19:31:22.000Z", - "author": "/u/Ask4MD", - "content": "
\"Hamas submitted by /u/Ask4MD
[link] [comments]
", - "contentSnippet": "submitted by /u/Ask4MD \n [link] [comments]", - "id": "t3_18igk92", - "isoDate": "2023-12-14T19:31:22.000Z" - }, - { - "title": "Joe Biden \u2018drops out of high-profile India visit\u2019 after claims of Indian murder plot on US soil", - "link": "https://www.reddit.com/r/worldnews/comments/18ig3qe/joe_biden_drops_out_of_highprofile_india_visit/", - "pubDate": "2023-12-14T19:10:47.000Z", - "author": "/u/deadpools0", - "content": "
\"Joe submitted by /u/deadpools0
[link] [comments]
", - "contentSnippet": "submitted by /u/deadpools0 \n [link] [comments]", - "id": "t3_18ig3qe", - "isoDate": "2023-12-14T19:10:47.000Z" - }, - { - "title": "Hungary\u2019s Orban Says He Yielded to EU Majority on Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/18iezvh/hungarys_orban_says_he_yielded_to_eu_majority_on/", - "pubDate": "2023-12-14T18:21:10.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"Hungary\u2019s submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_18iezvh", - "isoDate": "2023-12-14T18:21:10.000Z" - }, - { - "title": "Maersk Demands \"Political Action\" After Another Houthi Attack On Ship In Red Sea", - "link": "https://www.reddit.com/r/worldnews/comments/18ie8zj/maersk_demands_political_action_after_another/", - "pubDate": "2023-12-14T17:49:14.000Z", - "author": "/u/illiterate01", - "content": "
\"Maersk submitted by /u/illiterate01
[link] [comments]
", - "contentSnippet": "submitted by /u/illiterate01 \n [link] [comments]", - "id": "t3_18ie8zj", - "isoDate": "2023-12-14T17:49:14.000Z" - }, - { - "title": "Two Germans go on trial for handing Ukraine war secrets to Russia", - "link": "https://www.reddit.com/r/worldnews/comments/18idcw6/two_germans_go_on_trial_for_handing_ukraine_war/", - "pubDate": "2023-12-14T17:10:15.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"Two submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_18idcw6", - "isoDate": "2023-12-14T17:10:15.000Z" - }, - { - "title": "\u2018Real Risk\u2019 Putin Won\u2019t Stop with Ukraine: NATO Chief", - "link": "https://www.reddit.com/r/worldnews/comments/18idbn2/real_risk_putin_wont_stop_with_ukraine_nato_chief/", - "pubDate": "2023-12-14T17:08:40.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"\u2018Real submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_18idbn2", - "isoDate": "2023-12-14T17:08:40.000Z" - }, - { - "title": "Zelenskyy arrives in Germany on unannounced visit", - "link": "https://www.reddit.com/r/worldnews/comments/18id1wg/zelenskyy_arrives_in_germany_on_unannounced_visit/", - "pubDate": "2023-12-14T16:57:00.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"Zelenskyy submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_18id1wg", - "isoDate": "2023-12-14T16:57:00.000Z" - }, - { - "title": "Finland announces new Russian border closure", - "link": "https://www.reddit.com/r/worldnews/comments/18icxn2/finland_announces_new_russian_border_closure/", - "pubDate": "2023-12-14T16:51:38.000Z", - "author": "/u/SendoTarget", - "content": "
\"Finland submitted by /u/SendoTarget
[link] [comments]
", - "contentSnippet": "submitted by /u/SendoTarget \n [link] [comments]", - "id": "t3_18icxn2", - "isoDate": "2023-12-14T16:51:38.000Z" - }, - { - "title": "Germany to stop accepting imams trained in Turkey", - "link": "https://www.reddit.com/r/worldnews/comments/18ic8f0/germany_to_stop_accepting_imams_trained_in_turkey/", - "pubDate": "2023-12-14T16:20:22.000Z", - "author": "/u/donutloop", - "content": "
\"Germany submitted by /u/donutloop
[link] [comments]
", - "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", - "id": "t3_18ic8f0", - "isoDate": "2023-12-14T16:20:22.000Z" - }, - { - "title": "Germany: 4 Hamas members arrested in Berlin, Netherlands", - "link": "https://www.reddit.com/r/worldnews/comments/18ic0wq/germany_4_hamas_members_arrested_in_berlin/", - "pubDate": "2023-12-14T16:10:47.000Z", - "author": "/u/3kOlen", - "content": "
\"Germany: submitted by /u/3kOlen
[link] [comments]
", - "contentSnippet": "submitted by /u/3kOlen \n [link] [comments]", - "id": "t3_18ic0wq", - "isoDate": "2023-12-14T16:10:47.000Z" - }, - { - "title": "Finland to sign defence pact with US", - "link": "https://www.reddit.com/r/worldnews/comments/18ib6yo/finland_to_sign_defence_pact_with_us/", - "pubDate": "2023-12-14T15:32:08.000Z", - "author": "/u/PjeterPannos", - "content": " submitted by /u/PjeterPannos
[link] [comments]", - "contentSnippet": "submitted by /u/PjeterPannos \n [link] [comments]", - "id": "t3_18ib6yo", - "isoDate": "2023-12-14T15:32:08.000Z" - }, - { - "title": "Alex Batty: Boy missing for six years found in France, authorities say", - "link": "https://www.reddit.com/r/worldnews/comments/18iaqt7/alex_batty_boy_missing_for_six_years_found_in/", - "pubDate": "2023-12-14T15:11:14.000Z", - "author": "/u/ObiWanKenobiNil", - "content": "
\"Alex submitted by /u/ObiWanKenobiNil
[link] [comments]
", - "contentSnippet": "submitted by /u/ObiWanKenobiNil \n [link] [comments]", - "id": "t3_18iaqt7", - "isoDate": "2023-12-14T15:11:14.000Z" - }, - { - "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 680, Part 1 (Thread #826)", - "link": "https://www.reddit.com/r/worldnews/comments/18y3psw/rworldnews_live_thread_russian_invasion_of/", - "pubDate": "2024-01-04T04:02:53.000Z", - "author": "/u/WorldNewsMods", - "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", - "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", - "id": "t3_18y3psw", - "isoDate": "2024-01-04T04:02:53.000Z" - }, - { - "title": "State Department says neither US nor Israel behind Iran blasts that killed over 100", - "link": "https://www.reddit.com/r/worldnews/comments/18y3089/state_department_says_neither_us_nor_israel/", - "pubDate": "2024-01-04T03:27:39.000Z", - "author": "/u/Technical_Soil4193", - "content": "
\"State submitted by /u/Technical_Soil4193
[link] [comments]
", - "contentSnippet": "submitted by /u/Technical_Soil4193 \n [link] [comments]", - "id": "t3_18y3089", - "isoDate": "2024-01-04T03:27:39.000Z" - }, - { - "title": "Israel denies it is talking to other countries about absorbing Gazan immigrants", - "link": "https://www.reddit.com/r/worldnews/comments/18y1ujc/israel_denies_it_is_talking_to_other_countries/", - "pubDate": "2024-01-04T02:32:28.000Z", - "author": "/u/Needforspeed4", - "content": "
\"Israel submitted by /u/Needforspeed4
[link] [comments]
", - "contentSnippet": "submitted by /u/Needforspeed4 \n [link] [comments]", - "id": "t3_18y1ujc", - "isoDate": "2024-01-04T02:32:28.000Z" - }, - { - "title": "Hezbollah confirms: Senior member of the organization killed in Israeli strike", - "link": "https://www.reddit.com/r/worldnews/comments/18xzg5o/hezbollah_confirms_senior_member_of_the/", - "pubDate": "2024-01-04T00:45:25.000Z", - "author": "/u/DatDudeOverThere", - "content": "
\"Hezbollah submitted by /u/DatDudeOverThere
[link] [comments]
", - "contentSnippet": "submitted by /u/DatDudeOverThere \n [link] [comments]", - "id": "t3_18xzg5o", - "isoDate": "2024-01-04T00:45:25.000Z" - }, - { - "title": "EU targets world's biggest diamond miner as part of Russia war sanctions", - "link": "https://www.reddit.com/r/worldnews/comments/18xz599/eu_targets_worlds_biggest_diamond_miner_as_part/", - "pubDate": "2024-01-04T00:32:23.000Z", - "author": "/u/eleventy5thRejection", - "content": "
\"EU submitted by /u/eleventy5thRejection
[link] [comments]
", - "contentSnippet": "submitted by /u/eleventy5thRejection \n [link] [comments]", - "id": "t3_18xz599", - "isoDate": "2024-01-04T00:32:23.000Z" - }, - { - "title": "NASA and Russia will keep launching each other's astronauts to ISS until 2025: report", - "link": "https://www.reddit.com/r/worldnews/comments/18xsftw/nasa_and_russia_will_keep_launching_each_others/", - "pubDate": "2024-01-03T19:59:11.000Z", - "author": "/u/Electrical_Break_984", - "content": "
\"NASA submitted by /u/Electrical_Break_984
[link] [comments]
", - "contentSnippet": "submitted by /u/Electrical_Break_984 \n [link] [comments]", - "id": "t3_18xsftw", - "isoDate": "2024-01-03T19:59:11.000Z" - }, - { - "title": "Over 17,000 Russians Crossed Poland\u2019s Border With Kaliningrad in a Period of 5 Days", - "link": "https://www.reddit.com/r/worldnews/comments/18xs7rr/over_17000_russians_crossed_polands_border_with/", - "pubDate": "2024-01-03T19:50:06.000Z", - "author": "/u/ubcstaffer123", - "content": " submitted by /u/ubcstaffer123
[link] [comments]", - "contentSnippet": "submitted by /u/ubcstaffer123 \n [link] [comments]", - "id": "t3_18xs7rr", - "isoDate": "2024-01-03T19:50:06.000Z" - }, - { - "title": "Javier Milei sweeps away 22 army generals in Argentina's largest military shake-up in 20 years", - "link": "https://www.reddit.com/r/worldnews/comments/18xrm09/javier_milei_sweeps_away_22_army_generals_in/", - "pubDate": "2024-01-03T19:26:10.000Z", - "author": "/u/DoremusJessup", - "content": "
\"Javier submitted by /u/DoremusJessup
[link] [comments]
", - "contentSnippet": "submitted by /u/DoremusJessup \n [link] [comments]", - "id": "t3_18xrm09", - "isoDate": "2024-01-03T19:26:10.000Z" - }, - { - "title": "NATO-Ukraine Council to hold emergency meeting in response to Russia\u2019s mass strikes on Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/18xqk2v/natoukraine_council_to_hold_emergency_meeting_in/", - "pubDate": "2024-01-03T18:45:12.000Z", - "author": "/u/blllrrrrr", - "content": "
\"NATO-Ukraine submitted by /u/blllrrrrr
[link] [comments]
", - "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", - "id": "t3_18xqk2v", - "isoDate": "2024-01-03T18:45:12.000Z" - }, - { - "title": "Joint Statement Regarding Red Sea from the Governments of the United States, Australia, Bahrain, Belgium, Canada, Denmark, Germany, Italy, Japan, Netherlands, New Zealand, and the United Kingdom", - "link": "https://www.reddit.com/r/worldnews/comments/18xqi5p/joint_statement_regarding_red_sea_from_the/", - "pubDate": "2024-01-03T18:43:02.000Z", - "author": "/u/VictorEmmanuelIV", - "content": "
\"Joint submitted by /u/VictorEmmanuelIV
[link] [comments]
", - "contentSnippet": "submitted by /u/VictorEmmanuelIV \n [link] [comments]", - "id": "t3_18xqi5p", - "isoDate": "2024-01-03T18:43:02.000Z" - }, - { - "title": "Japan Coast Guard plane not cleared for takeoff before JAL crash", - "link": "https://www.reddit.com/r/worldnews/comments/18xpx5l/japan_coast_guard_plane_not_cleared_for_takeoff/", - "pubDate": "2024-01-03T18:19:31.000Z", - "author": "/u/PandaMuffin1", - "content": "
\"Japan submitted by /u/PandaMuffin1
[link] [comments]
", - "contentSnippet": "submitted by /u/PandaMuffin1 \n [link] [comments]", - "id": "t3_18xpx5l", - "isoDate": "2024-01-03T18:19:31.000Z" - }, - { - "title": "Berlin decries Russian strikes on Ukraine, but Scholz still opposes supplying Taurus missiles to Kyiv", - "link": "https://www.reddit.com/r/worldnews/comments/18xpmui/berlin_decries_russian_strikes_on_ukraine_but/", - "pubDate": "2024-01-03T18:07:57.000Z", - "author": "/u/FanPractical9683", - "content": "
\"Berlin submitted by /u/FanPractical9683
[link] [comments]
", - "contentSnippet": "submitted by /u/FanPractical9683 \n [link] [comments]", - "id": "t3_18xpmui", - "isoDate": "2024-01-03T18:07:57.000Z" - }, - { - "title": "Nearly same number of Ukrainians who left country in 2023 returned", - "link": "https://www.reddit.com/r/worldnews/comments/18xplzu/nearly_same_number_of_ukrainians_who_left_country/", - "pubDate": "2024-01-03T18:06:59.000Z", - "author": "/u/FanPractical9683", - "content": "
\"Nearly submitted by /u/FanPractical9683
[link] [comments]
", - "contentSnippet": "submitted by /u/FanPractical9683 \n [link] [comments]", - "id": "t3_18xplzu", - "isoDate": "2024-01-03T18:06:59.000Z" - }, - { - "title": "Iran Vows Response After Explosions Kill More Than 100 Near Ceremony For Slain General", - "link": "https://www.reddit.com/r/worldnews/comments/18xnhs9/iran_vows_response_after_explosions_kill_more/", - "pubDate": "2024-01-03T16:32:11.000Z", - "author": "/u/Red_Franklin", - "content": "
\"Iran submitted by /u/Red_Franklin
[link] [comments]
", - "contentSnippet": "submitted by /u/Red_Franklin \n [link] [comments]", - "id": "t3_18xnhs9", - "isoDate": "2024-01-03T16:32:11.000Z" - }, - { - "title": "US condemns far-right Israeli ministers\u2019 call for Palestinians to \u2018emigrate\u2019 from Gaza", - "link": "https://www.reddit.com/r/worldnews/comments/18xn4yg/us_condemns_farright_israeli_ministers_call_for/", - "pubDate": "2024-01-03T16:17:23.000Z", - "author": "/u/blllrrrrr", - "content": "
\"US submitted by /u/blllrrrrr
[link] [comments]
", - "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", - "id": "t3_18xn4yg", - "isoDate": "2024-01-03T16:17:23.000Z" - }, - { - "title": "Protests in the West Bank over the killing of Hamas deputy political leader in Lebanon", - "link": "https://www.reddit.com/r/worldnews/comments/18xlfbk/protests_in_the_west_bank_over_the_killing_of/", - "pubDate": "2024-01-03T15:03:19.000Z", - "author": "/u/Stress-Rough", - "content": "
\"Protests submitted by /u/Stress-Rough
[link] [comments]
", - "contentSnippet": "submitted by /u/Stress-Rough \n [link] [comments]", - "id": "t3_18xlfbk", - "isoDate": "2024-01-03T15:03:19.000Z" - }, - { - "title": "NATO to buy 1,000 Patriot missiles in face of Russia threat", - "link": "https://www.reddit.com/r/worldnews/comments/18xlf52/nato_to_buy_1000_patriot_missiles_in_face_of/", - "pubDate": "2024-01-03T15:03:06.000Z", - "author": "/u/giuliomagnifico", - "content": "
\"NATO submitted by /u/giuliomagnifico
[link] [comments]
", - "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", - "id": "t3_18xlf52", - "isoDate": "2024-01-03T15:03:06.000Z" - }, - { - "title": "Houthis claim attack on French container ship in Red Sea", - "link": "https://www.reddit.com/r/worldnews/comments/18xl7th/houthis_claim_attack_on_french_container_ship_in/", - "pubDate": "2024-01-03T14:54:09.000Z", - "author": "/u/clarkhunterparks", - "content": "
\"Houthis submitted by /u/clarkhunterparks
[link] [comments]
", - "contentSnippet": "submitted by /u/clarkhunterparks \n [link] [comments]", - "id": "t3_18xl7th", - "isoDate": "2024-01-03T14:54:09.000Z" - }, - { - "title": "Agency confirms GPS jamming in Finland on NYE", - "link": "https://www.reddit.com/r/worldnews/comments/18xkk0c/agency_confirms_gps_jamming_in_finland_on_nye/", - "pubDate": "2024-01-03T14:23:29.000Z", - "author": "/u/JPR_FI", - "content": "
\"Agency submitted by /u/JPR_FI
[link] [comments]
", - "contentSnippet": "submitted by /u/JPR_FI \n [link] [comments]", - "id": "t3_18xkk0c", - "isoDate": "2024-01-03T14:23:29.000Z" - }, - { - "title": "Iran says at least 73 people killed, 40 wounded in blasts at ceremony honoring slain general", - "link": "https://www.reddit.com/r/worldnews/comments/18xjel1/iran_says_at_least_73_people_killed_40_wounded_in/", - "pubDate": "2024-01-03T13:28:26.000Z", - "author": "/u/RusynSlovak", - "content": "
\"Iran submitted by /u/RusynSlovak
[link] [comments]
", - "contentSnippet": "submitted by /u/RusynSlovak \n [link] [comments]", - "id": "t3_18xjel1", - "isoDate": "2024-01-03T13:28:26.000Z" - }, - { - "title": "Head of notorious Russian torture prison in Donetsk sentenced to 15 years", - "link": "https://www.reddit.com/r/worldnews/comments/18xj5mb/head_of_notorious_russian_torture_prison_in/", - "pubDate": "2024-01-03T13:15:40.000Z", - "author": "/u/HelloSlowly", - "content": "
\"Head submitted by /u/HelloSlowly
[link] [comments]
", - "contentSnippet": "submitted by /u/HelloSlowly \n [link] [comments]", - "id": "t3_18xj5mb", - "isoDate": "2024-01-03T13:15:40.000Z" - }, - { - "title": "Mossad chief: Those who took part in massacre signed their own death warrant", - "link": "https://www.reddit.com/r/worldnews/comments/18xhwuu/mossad_chief_those_who_took_part_in_massacre/", - "pubDate": "2024-01-03T12:07:45.000Z", - "author": "/u/clarkhunterparks", - "content": "
\"Mossad submitted by /u/clarkhunterparks
[link] [comments]
", - "contentSnippet": "submitted by /u/clarkhunterparks \n [link] [comments]", - "id": "t3_18xhwuu", - "isoDate": "2024-01-03T12:07:45.000Z" - }, - { - "title": "Thousands of migrants detained in Russia to recruit \"volunteers\" for war", - "link": "https://www.reddit.com/r/worldnews/comments/18xhvnj/thousands_of_migrants_detained_in_russia_to/", - "pubDate": "2024-01-03T12:05:50.000Z", - "author": "/u/new974517", - "content": "
\"Thousands submitted by /u/new974517
[link] [comments]
", - "contentSnippet": "submitted by /u/new974517 \n [link] [comments]", - "id": "t3_18xhvnj", - "isoDate": "2024-01-03T12:05:50.000Z" - }, - { - "title": "Israel in talks with Congo and other countries on Gaza \u2018voluntary migration\u2019 plan", - "link": "https://www.reddit.com/r/worldnews/comments/18xhioi/israel_in_talks_with_congo_and_other_countries_on/", - "pubDate": "2024-01-03T11:44:45.000Z", - "author": "/u/blllrrrrr", - "content": "
\"Israel submitted by /u/blllrrrrr
[link] [comments]
", - "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", - "id": "t3_18xhioi", - "isoDate": "2024-01-03T11:44:45.000Z" - }, - { - "title": "Polish FM: We should respond to the latest onslaught on Ukraine in language that Putin understands", - "link": "https://www.reddit.com/r/worldnews/comments/18xfxja/polish_fm_we_should_respond_to_the_latest/", - "pubDate": "2024-01-03T10:04:43.000Z", - "author": "/u/AD2023August", - "content": "
\"Polish submitted by /u/AD2023August
[link] [comments]
", - "contentSnippet": "submitted by /u/AD2023August \n [link] [comments]", - "id": "t3_18xfxja", - "isoDate": "2024-01-03T10:04:43.000Z" - }, - { - "title": "Zuckerberg's Bunker Plans Fuel Speculation on Billionaires Building Bunkers", - "link": "https://www.reddit.com/r/worldnews/comments/18y7y0i/zuckerbergs_bunker_plans_fuel_speculation_on/", - "pubDate": "2024-01-04T08:08:11.000Z", - "author": "/u/InstructionNo83", - "content": "
\"Zuckerberg's submitted by /u/InstructionNo83
[link] [comments]
", - "contentSnippet": "submitted by /u/InstructionNo83 \n [link] [comments]", - "id": "t3_18y7y0i", - "isoDate": "2024-01-04T08:08:11.000Z" - }, - { - "title": "Scientists had a 20-minute \"conversation\" with a humpback whale named Twain", - "link": "https://www.reddit.com/r/worldnews/comments/18z2bcr/scientists_had_a_20minute_conversation_with_a/", - "pubDate": "2024-01-05T08:47:34.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"Scientists submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_18z2bcr", - "isoDate": "2024-01-05T08:47:34.000Z" - }, - { - "title": "Netanyahu: Israel \"committed to fundamental change to Lebanon border\" - I24NEWS", - "link": "https://www.reddit.com/r/worldnews/comments/18yyg6a/netanyahu_israel_committed_to_fundamental_change/", - "pubDate": "2024-01-05T04:55:02.000Z", - "author": "/u/Red_Franklin", - "content": "
\"Netanyahu: submitted by /u/Red_Franklin
[link] [comments]
", - "contentSnippet": "submitted by /u/Red_Franklin \n [link] [comments]", - "id": "t3_18yyg6a", - "isoDate": "2024-01-05T04:55:02.000Z" - }, - { - "title": "S.Korea orders evacuation on island near North Korea border", - "link": "https://www.reddit.com/r/worldnews/comments/18yyd7d/skorea_orders_evacuation_on_island_near_north/", - "pubDate": "2024-01-05T04:50:32.000Z", - "author": "/u/GeminiArk", - "content": " submitted by /u/GeminiArk
[link] [comments]", - "contentSnippet": "submitted by /u/GeminiArk \n [link] [comments]", - "id": "t3_18yyd7d", - "isoDate": "2024-01-05T04:50:32.000Z" - }, - { - "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 681, Part 1 (Thread #827)", - "link": "https://www.reddit.com/r/worldnews/comments/18yxg1i/rworldnews_live_thread_russian_invasion_of/", - "pubDate": "2024-01-05T04:02:42.000Z", - "author": "/u/WorldNewsMods", - "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", - "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", - "id": "t3_18yxg1i", - "isoDate": "2024-01-05T04:02:42.000Z" - }, - { - "title": "World will look back at 2023 as year humanity exposed its inability to tackle climate crisis, scientists say", - "link": "https://www.reddit.com/r/worldnews/comments/18yw6el/world_will_look_back_at_2023_as_year_humanity/", - "pubDate": "2024-01-05T02:59:55.000Z", - "author": "/u/ballgameskeith", - "content": "
\"World submitted by /u/ballgameskeith
[link] [comments]
", - "contentSnippet": "submitted by /u/ballgameskeith \n [link] [comments]", - "id": "t3_18yw6el", - "isoDate": "2024-01-05T02:59:55.000Z" - }, - { - "title": "Ukraine Strikes Russian Command Post and Military Unit in Crimea", - "link": "https://www.reddit.com/r/worldnews/comments/18yvii1/ukraine_strikes_russian_command_post_and_military/", - "pubDate": "2024-01-05T02:28:35.000Z", - "author": "/u/Ask4MD", - "content": "
\"Ukraine submitted by /u/Ask4MD
[link] [comments]
", - "contentSnippet": "submitted by /u/Ask4MD \n [link] [comments]", - "id": "t3_18yvii1", - "isoDate": "2024-01-05T02:28:35.000Z" - }, - { - "title": "Neo-Nazi podcasters sent to prison on terror charges for targeting Prince Harry and his young son", - "link": "https://www.reddit.com/r/worldnews/comments/18yuiuz/neonazi_podcasters_sent_to_prison_on_terror/", - "pubDate": "2024-01-05T01:41:29.000Z", - "author": "/u/ColtonSlade", - "content": "
\"Neo-Nazi submitted by /u/ColtonSlade
[link] [comments]
", - "contentSnippet": "submitted by /u/ColtonSlade \n [link] [comments]", - "id": "t3_18yuiuz", - "isoDate": "2024-01-05T01:41:29.000Z" - }, - { - "title": "Gallant's post-war Gaza plan: Palestinians to run civil affairs with global task force", - "link": "https://www.reddit.com/r/worldnews/comments/18yra07/gallants_postwar_gaza_plan_palestinians_to_run/", - "pubDate": "2024-01-04T23:20:46.000Z", - "author": "/u/appealouterhaven", - "content": "
\"Gallant's submitted by /u/appealouterhaven
[link] [comments]
", - "contentSnippet": "submitted by /u/appealouterhaven \n [link] [comments]", - "id": "t3_18yra07", - "isoDate": "2024-01-04T23:20:46.000Z" - }, - { - "title": "Germany announced new military aid to Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/18yqicn/germany_announced_new_military_aid_to_ukraine/", - "pubDate": "2024-01-04T22:49:02.000Z", - "author": "/u/PjeterPannos", - "content": "
\"Germany submitted by /u/PjeterPannos
[link] [comments]
", - "contentSnippet": "submitted by /u/PjeterPannos \n [link] [comments]", - "id": "t3_18yqicn", - "isoDate": "2024-01-04T22:49:02.000Z" - }, - { - "title": "Russians actively change ethnic composition of occupied territories' population", - "link": "https://www.reddit.com/r/worldnews/comments/18yozlo/russians_actively_change_ethnic_composition_of/", - "pubDate": "2024-01-04T21:49:39.000Z", - "author": "/u/IWasWearingEyeliner", - "content": "
\"Russians submitted by /u/IWasWearingEyeliner
[link] [comments]
", - "contentSnippet": "submitted by /u/IWasWearingEyeliner \n [link] [comments]", - "id": "t3_18yozlo", - "isoDate": "2024-01-04T21:49:39.000Z" - }, - { - "title": "A Strange Plastic Rock Has Ominously Invaded 5 Continents", - "link": "https://www.reddit.com/r/worldnews/comments/18yo27y/a_strange_plastic_rock_has_ominously_invaded_5/", - "pubDate": "2024-01-04T21:11:15.000Z", - "author": "/u/Free_Swimming", - "content": "
\"A submitted by /u/Free_Swimming
[link] [comments]
", - "contentSnippet": "submitted by /u/Free_Swimming \n [link] [comments]", - "id": "t3_18yo27y", - "isoDate": "2024-01-04T21:11:15.000Z" - }, - { - "title": "Belarusian president signs law granting him lifelong immunity from prosecution", - "link": "https://www.reddit.com/r/worldnews/comments/18ykgls/belarusian_president_signs_law_granting_him/", - "pubDate": "2024-01-04T18:44:04.000Z", - "author": "/u/3kOlen", - "content": "
\"Belarusian submitted by /u/3kOlen
[link] [comments]
", - "contentSnippet": "submitted by /u/3kOlen \n [link] [comments]", - "id": "t3_18ykgls", - "isoDate": "2024-01-04T18:44:04.000Z" - }, - { - "title": "Russia fires North Korean missiles into Ukraine, says U.S. intelligence", - "link": "https://www.reddit.com/r/worldnews/comments/18yk190/russia_fires_north_korean_missiles_into_ukraine/", - "pubDate": "2024-01-04T18:26:55.000Z", - "author": "/u/giuliomagnifico", - "content": "
\"Russia submitted by /u/giuliomagnifico
[link] [comments]
", - "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", - "id": "t3_18yk190", - "isoDate": "2024-01-04T18:26:55.000Z" - }, - { - "title": "N. Korea recently sent missile launchers, several dozen ballistic missiles to Russia: U.S. official", - "link": "https://www.reddit.com/r/worldnews/comments/18yjqyq/n_korea_recently_sent_missile_launchers_several/", - "pubDate": "2024-01-04T18:15:27.000Z", - "author": "/u/Saltedline", - "content": "
\"N. submitted by /u/Saltedline
[link] [comments]
", - "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", - "id": "t3_18yjqyq", - "isoDate": "2024-01-04T18:15:27.000Z" - }, - { - "title": "Houthis launch sea drone to attack ships hours after US, allies issue 'final warning'", - "link": "https://www.reddit.com/r/worldnews/comments/18yjmwh/houthis_launch_sea_drone_to_attack_ships_hours/", - "pubDate": "2024-01-04T18:10:45.000Z", - "author": "/u/TheDarthSnarf", - "content": "
\"Houthis submitted by /u/TheDarthSnarf
[link] [comments]
", - "contentSnippet": "submitted by /u/TheDarthSnarf \n [link] [comments]", - "id": "t3_18yjmwh", - "isoDate": "2024-01-04T18:10:45.000Z" - }, - { - "title": "North Korean leader Kim Jong-un's daughter, known as Ju-ae, is deemed the most likely successor to the dynastic communist regime, according to South Korea's spy agency", - "link": "https://www.reddit.com/r/worldnews/comments/18yicnh/north_korean_leader_kim_jonguns_daughter_known_as/", - "pubDate": "2024-01-04T17:17:58.000Z", - "author": "/u/giuliomagnifico", - "content": "
\"North submitted by /u/giuliomagnifico
[link] [comments]
", - "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", - "id": "t3_18yicnh", - "isoDate": "2024-01-04T17:17:58.000Z" - }, - { - "title": "Joe Biden boots Uganda from trade deal over horrific \u201cKill the Gays\u201d law", - "link": "https://www.reddit.com/r/worldnews/comments/18yhwwn/joe_biden_boots_uganda_from_trade_deal_over/", - "pubDate": "2024-01-04T17:00:05.000Z", - "author": "/u/KC_8580", - "content": "
\"Joe submitted by /u/KC_8580
[link] [comments]
", - "contentSnippet": "submitted by /u/KC_8580 \n [link] [comments]", - "id": "t3_18yhwwn", - "isoDate": "2024-01-04T17:00:05.000Z" - }, - { - "title": "EU still buying $1bn of Russian Arctic LNG a month", - "link": "https://www.reddit.com/r/worldnews/comments/18yhdhq/eu_still_buying_1bn_of_russian_arctic_lng_a_month/", - "pubDate": "2024-01-04T16:37:24.000Z", - "author": "/u/openmango_", - "content": "
\"EU submitted by /u/openmango_
[link] [comments]
", - "contentSnippet": "submitted by /u/openmango_ \n [link] [comments]", - "id": "t3_18yhdhq", - "isoDate": "2024-01-04T16:37:24.000Z" - }, - { - "title": "IS claims responsibility for Iran attack", - "link": "https://www.reddit.com/r/worldnews/comments/18ygvni/is_claims_responsibility_for_iran_attack/", - "pubDate": "2024-01-04T16:16:42.000Z", - "author": "/u/penguinpizzaparty", - "content": " submitted by /u/penguinpizzaparty
[link] [comments]", - "contentSnippet": "submitted by /u/penguinpizzaparty \n [link] [comments]", - "id": "t3_18ygvni", - "isoDate": "2024-01-04T16:16:42.000Z" - }, - { - "title": "Putin offers citizenship to foreigners who fight for Russia", - "link": "https://www.reddit.com/r/worldnews/comments/18ygitr/putin_offers_citizenship_to_foreigners_who_fight/", - "pubDate": "2024-01-04T16:01:45.000Z", - "author": "/u/Kindred87", - "content": " submitted by /u/Kindred87
[link] [comments]", - "contentSnippet": "submitted by /u/Kindred87 \n [link] [comments]", - "id": "t3_18ygitr", - "isoDate": "2024-01-04T16:01:45.000Z" - }, - { - "title": "Germany's 2023 CO2 emissions fall to lowest in 70 years, now 46% below 1990 levels", - "link": "https://www.reddit.com/r/worldnews/comments/18yf0vr/germanys_2023_co2_emissions_fall_to_lowest_in_70/", - "pubDate": "2024-01-04T14:55:19.000Z", - "author": "/u/PopeSaintHilarius", - "content": " submitted by /u/PopeSaintHilarius
[link] [comments]", - "contentSnippet": "submitted by /u/PopeSaintHilarius \n [link] [comments]", - "id": "t3_18yf0vr", - "isoDate": "2024-01-04T14:55:19.000Z" - }, - { - "title": "US rebukes South Africa for 'meritless' genocide suit against Israel", - "link": "https://www.reddit.com/r/worldnews/comments/18yer8w/us_rebukes_south_africa_for_meritless_genocide/", - "pubDate": "2024-01-04T14:43:04.000Z", - "author": "/u/punchinglines", - "content": "
\"US submitted by /u/punchinglines
[link] [comments]
", - "contentSnippet": "submitted by /u/punchinglines \n [link] [comments]", - "id": "t3_18yer8w", - "isoDate": "2024-01-04T14:43:04.000Z" - }, - { - "title": "'They violated Islamic values': Taliban arrest women for wearing 'bad hijab' in Afghanistan", - "link": "https://www.reddit.com/r/worldnews/comments/18ye2or/they_violated_islamic_values_taliban_arrest_women/", - "pubDate": "2024-01-04T14:11:00.000Z", - "author": "/u/TheDarthSnarf", - "content": "
\"'They submitted by /u/TheDarthSnarf
[link] [comments]
", - "contentSnippet": "submitted by /u/TheDarthSnarf \n [link] [comments]", - "id": "t3_18ye2or", - "isoDate": "2024-01-04T14:11:00.000Z" - }, - { - "title": "Report: Russia Plans To Acquire Iranian Short-Range Missiles, Already Getting North Korean Ones", - "link": "https://www.reddit.com/r/worldnews/comments/18yds29/report_russia_plans_to_acquire_iranian_shortrange/", - "pubDate": "2024-01-04T13:57:46.000Z", - "author": "/u/Less-Study5669", - "content": "
\"Report: submitted by /u/Less-Study5669
[link] [comments]
", - "contentSnippet": "submitted by /u/Less-Study5669 \n [link] [comments]", - "id": "t3_18yds29", - "isoDate": "2024-01-04T13:57:46.000Z" - }, - { - "title": "US carries out strike in Baghdad against militia leader", - "link": "https://www.reddit.com/r/worldnews/comments/18ycy7f/us_carries_out_strike_in_baghdad_against_militia/", - "pubDate": "2024-01-04T13:16:55.000Z", - "author": "/u/Glum-Promotion8084", - "content": " submitted by /u/Glum-Promotion8084
[link] [comments]", - "contentSnippet": "submitted by /u/Glum-Promotion8084 \n [link] [comments]", - "id": "t3_18ycy7f", - "isoDate": "2024-01-04T13:16:55.000Z" - }, - { - "title": "US Demands Iran Release Seized Oil Tanker 'Immediately'", - "link": "https://www.reddit.com/r/worldnews/comments/19481l1/us_demands_iran_release_seized_oil_tanker/", - "pubDate": "2024-01-11T18:02:49.000Z", - "author": "/u/Majano57", - "content": "
\"US submitted by /u/Majano57
[link] [comments]
", - "contentSnippet": "submitted by /u/Majano57 \n [link] [comments]", - "id": "t3_19481l1", - "isoDate": "2024-01-11T18:02:49.000Z" - }, - { - "title": "German far-right met to plan 'mass deportations'", - "link": "https://www.reddit.com/r/worldnews/comments/1945ad1/german_farright_met_to_plan_mass_deportations/", - "pubDate": "2024-01-11T16:10:41.000Z", - "author": "/u/aaaronbrown", - "content": "
\"German submitted by /u/aaaronbrown
[link] [comments]
", - "contentSnippet": "submitted by /u/aaaronbrown \n [link] [comments]", - "id": "t3_1945ad1", - "isoDate": "2024-01-11T16:10:41.000Z" - }, - { - "title": "U.S. Military Aid to Ukraine Was Poorly Tracked, Pentagon Report Concludes", - "link": "https://www.reddit.com/r/worldnews/comments/1944o5n/us_military_aid_to_ukraine_was_poorly_tracked/", - "pubDate": "2024-01-11T15:43:55.000Z", - "author": "/u/DavidCarraway", - "content": "
\"U.S. submitted by /u/DavidCarraway
[link] [comments]
", - "contentSnippet": "submitted by /u/DavidCarraway \n [link] [comments]", - "id": "t3_1944o5n", - "isoDate": "2024-01-11T15:43:55.000Z" - }, - { - "title": "Russia's Medvedev warns of nuclear response if Ukraine hits missile launch sites", - "link": "https://www.reddit.com/r/worldnews/comments/1943hzl/russias_medvedev_warns_of_nuclear_response_if/", - "pubDate": "2024-01-11T14:52:01.000Z", - "author": "/u/Fun-Lawfulness4653", - "content": " submitted by /u/Fun-Lawfulness4653
[link] [comments]", - "contentSnippet": "submitted by /u/Fun-Lawfulness4653 \n [link] [comments]", - "id": "t3_1943hzl", - "isoDate": "2024-01-11T14:52:01.000Z" - }, - { - "title": "Shin Bet, police foil ISIS supporters' terror plot", - "link": "https://www.reddit.com/r/worldnews/comments/19431jb/shin_bet_police_foil_isis_supporters_terror_plot/", - "pubDate": "2024-01-11T14:31:22.000Z", - "author": "/u/Glassounds", - "content": "
\"Shin submitted by /u/Glassounds
[link] [comments]
", - "contentSnippet": "submitted by /u/Glassounds \n [link] [comments]", - "id": "t3_19431jb", - "isoDate": "2024-01-11T14:31:22.000Z" - }, - { - "title": "Israel calls SA accusations to ICJ baseless lies, historically hypocritical", - "link": "https://www.reddit.com/r/worldnews/comments/1942rih/israel_calls_sa_accusations_to_icj_baseless_lies/", - "pubDate": "2024-01-11T14:18:45.000Z", - "author": "/u/Glassounds", - "content": "
\"Israel submitted by /u/Glassounds
[link] [comments]
", - "contentSnippet": "submitted by /u/Glassounds \n [link] [comments]", - "id": "t3_1942rih", - "isoDate": "2024-01-11T14:18:45.000Z" - }, - { - "title": "Far-right mob hunts woman for defacing Stalin icon in Georgian church", - "link": "https://www.reddit.com/r/worldnews/comments/194264g/farright_mob_hunts_woman_for_defacing_stalin_icon/", - "pubDate": "2024-01-11T13:50:43.000Z", - "author": "/u/WhoIsJolyonWest", - "content": "
\"Far-right submitted by /u/WhoIsJolyonWest
[link] [comments]
", - "contentSnippet": "submitted by /u/WhoIsJolyonWest \n [link] [comments]", - "id": "t3_194264g", - "isoDate": "2024-01-11T13:50:43.000Z" - }, - { - "title": "Iran confirms its navy seized tanker in Gulf of Oman that was boarded by men in military uniforms", - "link": "https://www.reddit.com/r/worldnews/comments/1941rzt/iran_confirms_its_navy_seized_tanker_in_gulf_of/", - "pubDate": "2024-01-11T13:31:40.000Z", - "author": "/u/Kejmarcz", - "content": "
\"Iran submitted by /u/Kejmarcz
[link] [comments]
", - "contentSnippet": "submitted by /u/Kejmarcz \n [link] [comments]", - "id": "t3_1941rzt", - "isoDate": "2024-01-11T13:31:40.000Z" - }, - { - "title": "Ship hijacked off Oman appears to change course toward Iran waters", - "link": "https://www.reddit.com/r/worldnews/comments/19413sj/ship_hijacked_off_oman_appears_to_change_course/", - "pubDate": "2024-01-11T12:57:33.000Z", - "author": "/u/golanor", - "content": "
\"Ship submitted by /u/golanor
[link] [comments]
", - "contentSnippet": "submitted by /u/golanor \n [link] [comments]", - "id": "t3_19413sj", - "isoDate": "2024-01-11T12:57:33.000Z" - }, - { - "title": "Russia says it's detained U.S. citizen Robert Woodland on drug charges that carry possible 20-year sentence", - "link": "https://www.reddit.com/r/worldnews/comments/193zoxi/russia_says_its_detained_us_citizen_robert/", - "pubDate": "2024-01-11T11:37:50.000Z", - "author": "/u/nayanki", - "content": "
\"Russia submitted by /u/nayanki
[link] [comments]
", - "contentSnippet": "submitted by /u/nayanki \n [link] [comments]", - "id": "t3_193zoxi", - "isoDate": "2024-01-11T11:37:50.000Z" - }, - { - "title": "Zelenskyy: Russia is short of weapons, so no pause should be provided", - "link": "https://www.reddit.com/r/worldnews/comments/193zbkw/zelenskyy_russia_is_short_of_weapons_so_no_pause/", - "pubDate": "2024-01-11T11:15:20.000Z", - "author": "/u/Pravda_UA", - "content": "
\"Zelenskyy: submitted by /u/Pravda_UA
[link] [comments]
", - "contentSnippet": "submitted by /u/Pravda_UA \n [link] [comments]", - "id": "t3_193zbkw", - "isoDate": "2024-01-11T11:15:20.000Z" - }, - { - "title": "Brexit Erased \u00a3140 Billion From UK Economy, London Mayor to Say", - "link": "https://www.reddit.com/r/worldnews/comments/193z3rk/brexit_erased_140_billion_from_uk_economy_london/", - "pubDate": "2024-01-11T11:01:57.000Z", - "author": "/u/bloomberg", - "content": "
\"Brexit submitted by /u/bloomberg
[link] [comments]
", - "contentSnippet": "submitted by /u/bloomberg \n [link] [comments]", - "id": "t3_193z3rk", - "isoDate": "2024-01-11T11:01:57.000Z" - }, - { - "title": "Ukraine Adds Sandwich Chain Subway to List of \u2018War Sponsors\u2019", - "link": "https://www.reddit.com/r/worldnews/comments/193yk8s/ukraine_adds_sandwich_chain_subway_to_list_of_war/", - "pubDate": "2024-01-11T10:25:56.000Z", - "author": "/u/bloomberg", - "content": "
\"Ukraine submitted by /u/bloomberg
[link] [comments]
", - "contentSnippet": "submitted by /u/bloomberg \n [link] [comments]", - "id": "t3_193yk8s", - "isoDate": "2024-01-11T10:25:56.000Z" - }, - { - "title": "White House supports seizing Russian assets in favour of Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/193xvji/white_house_supports_seizing_russian_assets_in/", - "pubDate": "2024-01-11T09:39:54.000Z", - "author": "/u/Pravda_UA", - "content": "
\"White submitted by /u/Pravda_UA
[link] [comments]
", - "contentSnippet": "submitted by /u/Pravda_UA \n [link] [comments]", - "id": "t3_193xvji", - "isoDate": "2024-01-11T09:39:54.000Z" - }, - { - "title": "Oil tanker in the Gulf of Oman boarded by 'unauthorised' men in military uniforms", - "link": "https://www.reddit.com/r/worldnews/comments/193x02q/oil_tanker_in_the_gulf_of_oman_boarded_by/", - "pubDate": "2024-01-11T08:37:31.000Z", - "author": "/u/falconfalcon7", - "content": "
\"Oil submitted by /u/falconfalcon7
[link] [comments]
", - "contentSnippet": "submitted by /u/falconfalcon7 \n [link] [comments]", - "id": "t3_193x02q", - "isoDate": "2024-01-11T08:37:31.000Z" - }, - { - "title": "Saudi Arabia wants peace with Israel after Gaza war, envoy tells BBC.", - "link": "https://www.reddit.com/r/worldnews/comments/193v4op/saudi_arabia_wants_peace_with_israel_after_gaza/", - "pubDate": "2024-01-11T06:32:11.000Z", - "author": "/u/PhilosopherAnxious23", - "content": "
\"Saudi submitted by /u/PhilosopherAnxious23
[link] [comments]
", - "contentSnippet": "submitted by /u/PhilosopherAnxious23 \n [link] [comments]", - "id": "t3_193v4op", - "isoDate": "2024-01-11T06:32:11.000Z" - }, - { - "title": "WHO says 10,000 died from COVID-19 in December", - "link": "https://www.reddit.com/r/worldnews/comments/193taa0/who_says_10000_died_from_covid19_in_december/", - "pubDate": "2024-01-11T04:46:44.000Z", - "author": "/u/DoremusJessup", - "content": "
\"WHO submitted by /u/DoremusJessup
[link] [comments]
", - "contentSnippet": "submitted by /u/DoremusJessup \n [link] [comments]", - "id": "t3_193taa0", - "isoDate": "2024-01-11T04:46:44.000Z" - }, - { - "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 687, Part 1 (Thread #833)", - "link": "https://www.reddit.com/r/worldnews/comments/193sgw1/rworldnews_live_thread_russian_invasion_of/", - "pubDate": "2024-01-11T04:03:08.000Z", - "author": "/u/WorldNewsMods", - "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", - "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", - "id": "t3_193sgw1", - "isoDate": "2024-01-11T04:03:08.000Z" - }, - { - "title": "South Korea to provide $3 million aid to Japan for quake relief", - "link": "https://www.reddit.com/r/worldnews/comments/193qr5g/south_korea_to_provide_3_million_aid_to_japan_for/", - "pubDate": "2024-01-11T02:37:53.000Z", - "author": "/u/vxqkfs", - "content": "
\"South submitted by /u/vxqkfs
[link] [comments]
", - "contentSnippet": "submitted by /u/vxqkfs \n [link] [comments]", - "id": "t3_193qr5g", - "isoDate": "2024-01-11T02:37:53.000Z" - }, - { - "title": "US urges China not to interfere in Taiwan elections", - "link": "https://www.reddit.com/r/worldnews/comments/193qnxl/us_urges_china_not_to_interfere_in_taiwan/", - "pubDate": "2024-01-11T02:33:22.000Z", - "author": "/u/vxqkfs", - "content": "
\"US submitted by /u/vxqkfs
[link] [comments]
", - "contentSnippet": "submitted by /u/vxqkfs \n [link] [comments]", - "id": "t3_193qnxl", - "isoDate": "2024-01-11T02:33:22.000Z" - }, - { - "title": "Israel faces accusation of genocide against Palestinians in Gaza in case brought by South Africa at U.N. court ~ Israel presents defense on Friday, first time at ICJ, says case is \"preposterous\" & Hamas should be in the dock", - "link": "https://www.reddit.com/r/worldnews/comments/193q15a/israel_faces_accusation_of_genocide_against/", - "pubDate": "2024-01-11T02:02:56.000Z", - "author": "/u/pamelafalkcbs", - "content": "
\"Israel submitted by /u/pamelafalkcbs
[link] [comments]
", - "contentSnippet": "submitted by /u/pamelafalkcbs \n [link] [comments]", - "id": "t3_193q15a", - "isoDate": "2024-01-11T02:02:56.000Z" - }, - { - "title": "Soldiers patrol streets in Ecuador as government and cartels declare war on each other", - "link": "https://www.reddit.com/r/worldnews/comments/193p4g8/soldiers_patrol_streets_in_ecuador_as_government/", - "pubDate": "2024-01-11T01:19:53.000Z", - "author": "/u/lurker_bee", - "content": "
\"Soldiers submitted by /u/lurker_bee
[link] [comments]
", - "contentSnippet": "submitted by /u/lurker_bee \n [link] [comments]", - "id": "t3_193p4g8", - "isoDate": "2024-01-11T01:19:53.000Z" - }, - { - "title": "NATO members pledge further support to Ukraine in 2024, outline plans for billions in aid", - "link": "https://www.reddit.com/r/worldnews/comments/193mhw7/nato_members_pledge_further_support_to_ukraine_in/", - "pubDate": "2024-01-10T23:22:11.000Z", - "author": "/u/HelloSlowly", - "content": "
\"NATO submitted by /u/HelloSlowly
[link] [comments]
", - "contentSnippet": "submitted by /u/HelloSlowly \n [link] [comments]", - "id": "t3_193mhw7", - "isoDate": "2024-01-10T23:22:11.000Z" - }, - { - "title": "Russia\u2019s fabled war ally \u2018General Frost\u2019 turns on Moscow", - "link": "https://www.reddit.com/r/worldnews/comments/193kwxp/russias_fabled_war_ally_general_frost_turns_on/", - "pubDate": "2024-01-10T22:16:37.000Z", - "author": "/u/boomership", - "content": "
\"Russia\u2019s submitted by /u/boomership
[link] [comments]
", - "contentSnippet": "submitted by /u/boomership \n [link] [comments]", - "id": "t3_193kwxp", - "isoDate": "2024-01-10T22:16:37.000Z" - }, - { - "title": "Netanyahu: Let me be clear \u2014 Israel has no intention of displacing Gaza\u2019s population", - "link": "https://www.reddit.com/r/worldnews/comments/193kp46/netanyahu_let_me_be_clear_israel_has_no_intention/", - "pubDate": "2024-01-10T22:07:41.000Z", - "author": "/u/Less-Study5669", - "content": "
\"Netanyahu: submitted by /u/Less-Study5669
[link] [comments]
", - "contentSnippet": "submitted by /u/Less-Study5669 \n [link] [comments]", - "id": "t3_193kp46", - "isoDate": "2024-01-10T22:07:41.000Z" - }, - { - "title": "Ukraine Confirms St Petersburg Attack, Claims Drone Flew Over Putin\u2019s Valdai Residence", - "link": "https://www.reddit.com/r/worldnews/comments/199mwh6/ukraine_confirms_st_petersburg_attack_claims/", - "pubDate": "2024-01-18T10:13:32.000Z", - "author": "/u/yorkiecd", - "content": "
\"Ukraine submitted by /u/yorkiecd
[link] [comments]
", - "contentSnippet": "submitted by /u/yorkiecd \n [link] [comments]", - "id": "t3_199mwh6", - "isoDate": "2024-01-18T10:13:32.000Z" - }, - { - "title": "Beheaded on Oct 7 then put up for sale in Gaza: Father finally finds \u2018missing part\u2019 of son", - "link": "https://www.reddit.com/r/worldnews/comments/199iy0i/beheaded_on_oct_7_then_put_up_for_sale_in_gaza/", - "pubDate": "2024-01-18T05:47:12.000Z", - "author": "/u/LowRevolution6175", - "content": "
\"Beheaded submitted by /u/LowRevolution6175
[link] [comments]
", - "contentSnippet": "submitted by /u/LowRevolution6175 \n [link] [comments]", - "id": "t3_199iy0i", - "isoDate": "2024-01-18T05:47:12.000Z" - }, - { - "title": "Pakistan Retaliates With Strikes Inside Iran as Tensions Spill Over", - "link": "https://www.reddit.com/r/worldnews/comments/199isbk/pakistan_retaliates_with_strikes_inside_iran_as/", - "pubDate": "2024-01-18T05:38:00.000Z", - "author": "/u/kickballaDesign", - "content": "
\"Pakistan submitted by /u/kickballaDesign
[link] [comments]
", - "contentSnippet": "submitted by /u/kickballaDesign \n [link] [comments]", - "id": "t3_199isbk", - "isoDate": "2024-01-18T05:38:00.000Z" - }, - { - "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 694, Part 1 (Thread #840)", - "link": "https://www.reddit.com/r/worldnews/comments/199h1hr/rworldnews_live_thread_russian_invasion_of/", - "pubDate": "2024-01-18T04:03:08.000Z", - "author": "/u/WorldNewsMods", - "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", - "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", - "id": "t3_199h1hr", - "isoDate": "2024-01-18T04:03:08.000Z" - }, - { - "title": "Pakistan Strikes Militant Groups in Iran in Response to Tehran's Missile Attacks", - "link": "https://www.reddit.com/r/worldnews/comments/199g7mh/pakistan_strikes_militant_groups_in_iran_in/", - "pubDate": "2024-01-18T03:20:50.000Z", - "author": "/u/SolRon25", - "content": "
\"Pakistan submitted by /u/SolRon25
[link] [comments]
", - "contentSnippet": "submitted by /u/SolRon25 \n [link] [comments]", - "id": "t3_199g7mh", - "isoDate": "2024-01-18T03:20:50.000Z" - }, - { - "title": "US military launches another barrage of missiles against Houthi sites in Yemen", - "link": "https://www.reddit.com/r/worldnews/comments/199ccwm/us_military_launches_another_barrage_of_missiles/", - "pubDate": "2024-01-18T00:18:57.000Z", - "author": "/u/RepresentativeTwo967", - "content": "
\"US submitted by /u/RepresentativeTwo967
[link] [comments]
", - "contentSnippet": "submitted by /u/RepresentativeTwo967 \n [link] [comments]", - "id": "t3_199ccwm", - "isoDate": "2024-01-18T00:18:57.000Z" - }, - { - "title": "Greenland Melting Faster Than Forecasted, Has Lost 1 Trillion Tons More Ice Than Thought", - "link": "https://www.reddit.com/r/worldnews/comments/199adrz/greenland_melting_faster_than_forecasted_has_lost/", - "pubDate": "2024-01-17T22:54:02.000Z", - "author": "/u/s1n0d3utscht3k", - "content": "
\"Greenland submitted by /u/s1n0d3utscht3k
[link] [comments]
", - "contentSnippet": "submitted by /u/s1n0d3utscht3k \n [link] [comments]", - "id": "t3_199adrz", - "isoDate": "2024-01-17T22:54:02.000Z" - }, - { - "title": "Israel becomes first in the world to give regulatory approval to cultured beef", - "link": "https://www.reddit.com/r/worldnews/comments/1998qrz/israel_becomes_first_in_the_world_to_give/", - "pubDate": "2024-01-17T21:46:20.000Z", - "author": "/u/Glassounds", - "content": "
\"Israel submitted by /u/Glassounds
[link] [comments]
", - "contentSnippet": "submitted by /u/Glassounds \n [link] [comments]", - "id": "t3_1998qrz", - "isoDate": "2024-01-17T21:46:20.000Z" - }, - { - "title": "Thailand moves to ban recreational cannabis use, 18 months after historic decriminalization", - "link": "https://www.reddit.com/r/worldnews/comments/199847d/thailand_moves_to_ban_recreational_cannabis_use/", - "pubDate": "2024-01-17T21:20:45.000Z", - "content": "
\"Thailand
[link] [comments]
", - "contentSnippet": "[link] [comments]", - "id": "t3_199847d", - "isoDate": "2024-01-17T21:20:45.000Z" - }, - { - "title": "A new attack on a ship in the Gulf of Aden probably was a Houthi drone, UK military says", - "link": "https://www.reddit.com/r/worldnews/comments/1996e6s/a_new_attack_on_a_ship_in_the_gulf_of_aden/", - "pubDate": "2024-01-17T20:12:09.000Z", - "author": "/u/Technical_Soil4193", - "content": "
\"A submitted by /u/Technical_Soil4193
[link] [comments]
", - "contentSnippet": "submitted by /u/Technical_Soil4193 \n [link] [comments]", - "id": "t3_1996e6s", - "isoDate": "2024-01-17T20:12:09.000Z" - }, - { - "title": "British Home Secretary Announces Ban Against \u2018Antisemitic\u2019 Hizb ut-Tahrir Organization", - "link": "https://www.reddit.com/r/worldnews/comments/1995m1k/british_home_secretary_announces_ban_against/", - "pubDate": "2024-01-17T19:41:47.000Z", - "author": "/u/GhostOfKlinghoffer", - "content": "
\"British submitted by /u/GhostOfKlinghoffer
[link] [comments]
", - "contentSnippet": "submitted by /u/GhostOfKlinghoffer \n [link] [comments]", - "id": "t3_1995m1k", - "isoDate": "2024-01-17T19:41:47.000Z" - }, - { - "title": "Top NATO military officer urges allies and leaders to plan for the unexpected in Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/1995e7o/top_nato_military_officer_urges_allies_and/", - "pubDate": "2024-01-17T19:33:03.000Z", - "author": "/u/DocMoochal", - "content": "
\"Top submitted by /u/DocMoochal
[link] [comments]
", - "contentSnippet": "submitted by /u/DocMoochal \n [link] [comments]", - "id": "t3_1995e7o", - "isoDate": "2024-01-17T19:33:03.000Z" - }, - { - "title": "Grabbing $300 billion of Russian assets is no panacea, West cautions in Davos", - "link": "https://www.reddit.com/r/worldnews/comments/1994oph/grabbing_300_billion_of_russian_assets_is_no/", - "pubDate": "2024-01-17T19:04:51.000Z", - "author": "/u/TheMisterClo", - "content": " submitted by /u/TheMisterClo
[link] [comments]", - "contentSnippet": "submitted by /u/TheMisterClo \n [link] [comments]", - "id": "t3_1994oph", - "isoDate": "2024-01-17T19:04:51.000Z" - }, - { - "title": "Turkey bombed 80 centres in North-East Syria in three days, targeting civilian areas", - "link": "https://www.reddit.com/r/worldnews/comments/1993sbc/turkey_bombed_80_centres_in_northeast_syria_in/", - "pubDate": "2024-01-17T18:29:19.000Z", - "author": "/u/uanar", - "content": "
\"Turkey submitted by /u/uanar
[link] [comments]
", - "contentSnippet": "submitted by /u/uanar \n [link] [comments]", - "id": "t3_1993sbc", - "isoDate": "2024-01-17T18:29:19.000Z" - }, - { - "title": "Greenland losing 30m tonnes of ice an hour. 20% higher than previously thought, and may affect north Atlantic ocean currents.", - "link": "https://www.reddit.com/r/worldnews/comments/1993mj1/greenland_losing_30m_tonnes_of_ice_an_hour_20/", - "pubDate": "2024-01-17T18:22:50.000Z", - "author": "/u/IntrepidGentian", - "content": "
\"Greenland submitted by /u/IntrepidGentian
[link] [comments]
", - "contentSnippet": "submitted by /u/IntrepidGentian \n [link] [comments]", - "id": "t3_1993mj1", - "isoDate": "2024-01-17T18:22:50.000Z" - }, - { - "title": "James Webb Telescope detects earliest known black hole \u2014 it's really big for its age", - "link": "https://www.reddit.com/r/worldnews/comments/1991iia/james_webb_telescope_detects_earliest_known_black/", - "pubDate": "2024-01-17T17:01:54.000Z", - "author": "/u/randolphquell", - "content": "
\"James submitted by /u/randolphquell
[link] [comments]
", - "contentSnippet": "submitted by /u/randolphquell \n [link] [comments]", - "id": "t3_1991iia", - "isoDate": "2024-01-17T17:01:54.000Z" - }, - { - "title": "Putin claims Russians return to country because of gender neutral toilets abroad", - "link": "https://www.reddit.com/r/worldnews/comments/1990vsb/putin_claims_russians_return_to_country_because/", - "pubDate": "2024-01-17T16:37:33.000Z", - "author": "/u/IWasWearingEyeliner", - "content": "
\"Putin submitted by /u/IWasWearingEyeliner
[link] [comments]
", - "contentSnippet": "submitted by /u/IWasWearingEyeliner \n [link] [comments]", - "id": "t3_1990vsb", - "isoDate": "2024-01-17T16:37:33.000Z" - }, - { - "title": "Philippines to Ramp Up US Military Ties Amid \u2018Aggressive\u2019 China", - "link": "https://www.reddit.com/r/worldnews/comments/1990g1n/philippines_to_ramp_up_us_military_ties_amid/", - "pubDate": "2024-01-17T16:20:50.000Z", - "author": "/u/Cloud_Drago", - "content": "
\"Philippines submitted by /u/Cloud_Drago
[link] [comments]
", - "contentSnippet": "submitted by /u/Cloud_Drago \n [link] [comments]", - "id": "t3_1990g1n", - "isoDate": "2024-01-17T16:20:50.000Z" - }, - { - "title": "From an Arctic prison, Navalny says Putin's Russia will one day crumble", - "link": "https://www.reddit.com/r/worldnews/comments/19908u9/from_an_arctic_prison_navalny_says_putins_russia/", - "pubDate": "2024-01-17T16:13:06.000Z", - "author": "/u/eaglemaxie", - "content": " submitted by /u/eaglemaxie
[link] [comments]", - "contentSnippet": "submitted by /u/eaglemaxie \n [link] [comments]", - "id": "t3_19908u9", - "isoDate": "2024-01-17T16:13:06.000Z" - }, - { - "title": "National Security Advisor Jake Sullivan Declares Houthi Militants as Global Terrorists", - "link": "https://www.reddit.com/r/worldnews/comments/198zhi3/national_security_advisor_jake_sullivan_declares/", - "pubDate": "2024-01-17T15:41:55.000Z", - "author": "/u/Glum-Promotion8084", - "content": "
\"National submitted by /u/Glum-Promotion8084
[link] [comments]
", - "contentSnippet": "submitted by /u/Glum-Promotion8084 \n [link] [comments]", - "id": "t3_198zhi3", - "isoDate": "2024-01-17T15:41:55.000Z" - }, - { - "title": "In 2024, Ukraine should deprive Russia of control over sky - Kuleba", - "link": "https://www.reddit.com/r/worldnews/comments/198z8ap/in_2024_ukraine_should_deprive_russia_of_control/", - "pubDate": "2024-01-17T15:31:39.000Z", - "author": "/u/blllrrrrr", - "content": "
\"In submitted by /u/blllrrrrr
[link] [comments]
", - "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", - "id": "t3_198z8ap", - "isoDate": "2024-01-17T15:31:39.000Z" - }, - { - "title": "Kenya begins relocating 21 black rhinos to save them from extinction", - "link": "https://www.reddit.com/r/worldnews/comments/198yng3/kenya_begins_relocating_21_black_rhinos_to_save/", - "pubDate": "2024-01-17T15:06:54.000Z", - "author": "/u/semafornews", - "content": "
\"Kenya submitted by /u/semafornews
[link] [comments]
", - "contentSnippet": "submitted by /u/semafornews \n [link] [comments]", - "id": "t3_198yng3", - "isoDate": "2024-01-17T15:06:54.000Z" - }, - { - "title": "Ukraine\u2019s existence will be pretext for Russia\u2019s attack in 10 and 50 years, - Medvedev", - "link": "https://www.reddit.com/r/worldnews/comments/198wgb3/ukraines_existence_will_be_pretext_for_russias/", - "pubDate": "2024-01-17T13:23:48.000Z", - "author": "/u/HydrolicKrane", - "content": " submitted by /u/HydrolicKrane
[link] [comments]", - "contentSnippet": "submitted by /u/HydrolicKrane \n [link] [comments]", - "id": "t3_198wgb3", - "isoDate": "2024-01-17T13:23:48.000Z" - }, - { - "title": "Russia protest: Crowds clash with riot police as activist jailed", - "link": "https://www.reddit.com/r/worldnews/comments/198w5q9/russia_protest_crowds_clash_with_riot_police_as/", - "pubDate": "2024-01-17T13:08:18.000Z", - "author": "/u/Acceptable_Fail2015", - "content": "
\"Russia submitted by /u/Acceptable_Fail2015
[link] [comments]
", - "contentSnippet": "submitted by /u/Acceptable_Fail2015 \n [link] [comments]", - "id": "t3_198w5q9", - "isoDate": "2024-01-17T13:08:18.000Z" - }, - { - "title": "'Nazis, no thank you'; Germans take to streets to call for far-right party AfD ban", - "link": "https://www.reddit.com/r/worldnews/comments/198vgf5/nazis_no_thank_you_germans_take_to_streets_to/", - "pubDate": "2024-01-17T12:29:31.000Z", - "author": "/u/Stev-svart-88", - "content": " submitted by /u/Stev-svart-88
[link] [comments]", - "contentSnippet": "submitted by /u/Stev-svart-88 \n [link] [comments]", - "id": "t3_198vgf5", - "isoDate": "2024-01-17T12:29:31.000Z" - }, - { - "title": "Ukrainian Intel Confirms It Struck Russian Oil Depot and Gunpowder Factory", - "link": "https://www.reddit.com/r/worldnews/comments/19agvl7/ukrainian_intel_confirms_it_struck_russian_oil/", - "pubDate": "2024-01-19T11:20:28.000Z", - "author": "/u/yorkiecd", - "content": "
\"Ukrainian submitted by /u/yorkiecd
[link] [comments]
", - "contentSnippet": "submitted by /u/yorkiecd \n [link] [comments]", - "id": "t3_19agvl7", - "isoDate": "2024-01-19T11:20:28.000Z" - }, - { - "title": "Putin Orders Hunt for Property of Russian Empire, Soviet Union", - "link": "https://www.reddit.com/r/worldnews/comments/19agn35/putin_orders_hunt_for_property_of_russian_empire/", - "pubDate": "2024-01-19T11:05:13.000Z", - "author": "/u/HydrolicKrane", - "content": "
\"Putin submitted by /u/HydrolicKrane
[link] [comments]
", - "contentSnippet": "submitted by /u/HydrolicKrane \n [link] [comments]", - "id": "t3_19agn35", - "isoDate": "2024-01-19T11:05:13.000Z" - }, - { - "title": "Evidence points to systematic use of rape and sexual violence by Hamas in 7 October attacks", - "link": "https://www.reddit.com/r/worldnews/comments/19ag0ml/evidence_points_to_systematic_use_of_rape_and/", - "pubDate": "2024-01-19T10:21:56.000Z", - "author": "/u/ElayRaider", - "content": " submitted by /u/ElayRaider
[link] [comments]", - "contentSnippet": "submitted by /u/ElayRaider \n [link] [comments]", - "id": "t3_19ag0ml", - "isoDate": "2024-01-19T10:21:56.000Z" - }, - { - "title": "Houthi official promises safe passage for Russian and Chinese ships", - "link": "https://www.reddit.com/r/worldnews/comments/19af43t/houthi_official_promises_safe_passage_for_russian/", - "pubDate": "2024-01-19T09:18:44.000Z", - "author": "/u/Resident_Advisor_773", - "content": "
\"Houthi submitted by /u/Resident_Advisor_773
[link] [comments]
", - "contentSnippet": "submitted by /u/Resident_Advisor_773 \n [link] [comments]", - "id": "t3_19af43t", - "isoDate": "2024-01-19T09:18:44.000Z" - }, - { - "title": "Nato warns of all-out war with Russia in next 20 years", - "link": "https://www.reddit.com/r/worldnews/comments/19af3vr/nato_warns_of_allout_war_with_russia_in_next_20/", - "pubDate": "2024-01-19T09:18:15.000Z", - "author": "/u/TheTelegraph", - "content": "
\"Nato submitted by /u/TheTelegraph
[link] [comments]
", - "contentSnippet": "submitted by /u/TheTelegraph \n [link] [comments]", - "id": "t3_19af3vr", - "isoDate": "2024-01-19T09:18:15.000Z" - }, - { - "title": "NATO official warns West: Be ready for \u2018anything\u2019", - "link": "https://www.reddit.com/r/worldnews/comments/19acjdn/nato_official_warns_west_be_ready_for_anything/", - "pubDate": "2024-01-19T06:22:01.000Z", - "author": "/u/urmomsloosevag", - "content": "
\"NATO submitted by /u/urmomsloosevag
[link] [comments]
", - "contentSnippet": "submitted by /u/urmomsloosevag \n [link] [comments]", - "id": "t3_19acjdn", - "isoDate": "2024-01-19T06:22:01.000Z" - }, - { - "title": "Trudeau pushes back after Netanyahu again rejects two-state solution", - "link": "https://www.reddit.com/r/worldnews/comments/19aa8wx/trudeau_pushes_back_after_netanyahu_again_rejects/", - "pubDate": "2024-01-19T04:13:18.000Z", - "author": "/u/MarkG_108", - "content": "
\"Trudeau submitted by /u/MarkG_108
[link] [comments]
", - "contentSnippet": "submitted by /u/MarkG_108 \n [link] [comments]", - "id": "t3_19aa8wx", - "isoDate": "2024-01-19T04:13:18.000Z" - }, - { - "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 695, Part 1 (Thread #841)", - "link": "https://www.reddit.com/r/worldnews/comments/19aa1o3/rworldnews_live_thread_russian_invasion_of/", - "pubDate": "2024-01-19T04:02:50.000Z", - "author": "/u/WorldNewsMods", - "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", - "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", - "id": "t3_19aa1o3", - "isoDate": "2024-01-19T04:02:50.000Z" - }, - { - "title": "US says 'no way' to solve Israel security, Gaza war without Palestinian state", - "link": "https://www.reddit.com/r/worldnews/comments/19a96bp/us_says_no_way_to_solve_israel_security_gaza_war/", - "pubDate": "2024-01-19T03:17:56.000Z", - "author": "/u/Pneterexxy", - "content": " submitted by /u/Pneterexxy
[link] [comments]", - "contentSnippet": "submitted by /u/Pneterexxy \n [link] [comments]", - "id": "t3_19a96bp", - "isoDate": "2024-01-19T03:17:56.000Z" - }, - { - "title": "Taliban talks peace, urges Pakistan and Iran to show restraint", - "link": "https://www.reddit.com/r/worldnews/comments/19a6kkf/taliban_talks_peace_urges_pakistan_and_iran_to/", - "pubDate": "2024-01-19T01:12:08.000Z", - "author": "/u/Cuddlyaxe", - "content": "
\"Taliban submitted by /u/Cuddlyaxe
[link] [comments]
", - "contentSnippet": "submitted by /u/Cuddlyaxe \n [link] [comments]", - "id": "t3_19a6kkf", - "isoDate": "2024-01-19T01:12:08.000Z" - }, - { - "title": "Japan agrees to purchase 400 Tomahawk missiles as US envoy lauds defense buildup", - "link": "https://www.reddit.com/r/worldnews/comments/19a4yqi/japan_agrees_to_purchase_400_tomahawk_missiles_as/", - "pubDate": "2024-01-18T23:58:32.000Z", - "author": "/u/gym_fun", - "content": "
\"Japan submitted by /u/gym_fun
[link] [comments]
", - "contentSnippet": "submitted by /u/gym_fun \n [link] [comments]", - "id": "t3_19a4yqi", - "isoDate": "2024-01-18T23:58:32.000Z" - }, - { - "title": "EU adopts Gaza cease-fire resolution requiring hostage release, Hamas dismantling", - "link": "https://www.reddit.com/r/worldnews/comments/19a0sz1/eu_adopts_gaza_ceasefire_resolution_requiring/", - "pubDate": "2024-01-18T21:04:20.000Z", - "author": "/u/FYoCouchEddie", - "content": "
\"EU submitted by /u/FYoCouchEddie
[link] [comments]
", - "contentSnippet": "submitted by /u/FYoCouchEddie \n [link] [comments]", - "id": "t3_19a0sz1", - "isoDate": "2024-01-18T21:04:20.000Z" - }, - { - "title": "Israel says it is exhuming bodies in Gaza to determine if they\u2019re hostages", - "link": "https://www.reddit.com/r/worldnews/comments/199zd4x/israel_says_it_is_exhuming_bodies_in_gaza_to/", - "pubDate": "2024-01-18T20:06:05.000Z", - "author": "/u/Dramatic_Cable_6000", - "content": "
\"Israel submitted by /u/Dramatic_Cable_6000
[link] [comments]
", - "contentSnippet": "submitted by /u/Dramatic_Cable_6000 \n [link] [comments]", - "id": "t3_199zd4x", - "isoDate": "2024-01-18T20:06:05.000Z" - }, - { - "title": "Russian lawmaker flees country after decrying \u2018monster\u2019 Putin", - "link": "https://www.reddit.com/r/worldnews/comments/199z5az/russian_lawmaker_flees_country_after_decrying/", - "pubDate": "2024-01-18T19:57:20.000Z", - "author": "/u/4920185", - "content": "
\"Russian submitted by /u/4920185
[link] [comments]
", - "contentSnippet": "submitted by /u/4920185 \n [link] [comments]", - "id": "t3_199z5az", - "isoDate": "2024-01-18T19:57:20.000Z" - }, - { - "title": "EU Parliament calls to strip Hungary of voting rights in rule-of-law clash", - "link": "https://www.reddit.com/r/worldnews/comments/199y3f6/eu_parliament_calls_to_strip_hungary_of_voting/", - "pubDate": "2024-01-18T19:14:20.000Z", - "author": "/u/nopedoesntwork", - "content": "
\"EU submitted by /u/nopedoesntwork
[link] [comments]
", - "contentSnippet": "submitted by /u/nopedoesntwork \n [link] [comments]", - "id": "t3_199y3f6", - "isoDate": "2024-01-18T19:14:20.000Z" - }, - { - "title": "Oldest Known Homo Sapiens Outside Africa Found in Greece", - "link": "https://www.reddit.com/r/worldnews/comments/199xq3m/oldest_known_homo_sapiens_outside_africa_found_in/", - "pubDate": "2024-01-18T18:59:18.000Z", - "author": "/u/Agmm-cr", - "content": "
\"Oldest submitted by /u/Agmm-cr
[link] [comments]
", - "contentSnippet": "submitted by /u/Agmm-cr \n [link] [comments]", - "id": "t3_199xq3m", - "isoDate": "2024-01-18T18:59:18.000Z" - }, - { - "title": "Washington to Israel: Turn the lights back on in Gaza", - "link": "https://www.reddit.com/r/worldnews/comments/199xjpw/washington_to_israel_turn_the_lights_back_on_in/", - "pubDate": "2024-01-18T18:51:59.000Z", - "author": "/u/SnooHedgehogs2050", - "content": "
\"Washington submitted by /u/SnooHedgehogs2050
[link] [comments]
", - "contentSnippet": "submitted by /u/SnooHedgehogs2050 \n [link] [comments]", - "id": "t3_199xjpw", - "isoDate": "2024-01-18T18:51:59.000Z" - }, - { - "title": "Biden says US strikes against Houthi rebels will continue as bombardment has yet to deter militants", - "link": "https://www.reddit.com/r/worldnews/comments/199wjep/biden_says_us_strikes_against_houthi_rebels_will/", - "pubDate": "2024-01-18T18:10:49.000Z", - "author": "/u/Glum-Promotion8084", - "content": "
\"Biden submitted by /u/Glum-Promotion8084
[link] [comments]
", - "contentSnippet": "submitted by /u/Glum-Promotion8084 \n [link] [comments]", - "id": "t3_199wjep", - "isoDate": "2024-01-18T18:10:49.000Z" - }, - { - "title": "Netanyahu says he has told U.S. that he opposes Palestinian state in any scenario after Israel-Hamas war", - "link": "https://www.reddit.com/r/worldnews/comments/199vthf/netanyahu_says_he_has_told_us_that_he_opposes/", - "pubDate": "2024-01-18T17:41:25.000Z", - "author": "/u/sheeshing123", - "content": "
\"Netanyahu submitted by /u/sheeshing123
[link] [comments]
", - "contentSnippet": "submitted by /u/sheeshing123 \n [link] [comments]", - "id": "t3_199vthf", - "isoDate": "2024-01-18T17:41:25.000Z" - }, - { - "title": "Hezbollah has rejected moving its forces away from border -- US, Lebanese officials", - "link": "https://www.reddit.com/r/worldnews/comments/199vh3i/hezbollah_has_rejected_moving_its_forces_away/", - "pubDate": "2024-01-18T17:26:58.000Z", - "author": "/u/NamelessForce", - "content": "
\"Hezbollah submitted by /u/NamelessForce
[link] [comments]
", - "contentSnippet": "submitted by /u/NamelessForce \n [link] [comments]", - "id": "t3_199vh3i", - "isoDate": "2024-01-18T17:26:58.000Z" - }, - { - "title": "Ukraine: Germany will not supply Taurus cruise missiles", - "link": "https://www.reddit.com/r/worldnews/comments/199uvlj/ukraine_germany_will_not_supply_taurus_cruise/", - "pubDate": "2024-01-18T17:02:11.000Z", - "author": "/u/donutloop", - "content": "
\"Ukraine: submitted by /u/donutloop
[link] [comments]
", - "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", - "id": "t3_199uvlj", - "isoDate": "2024-01-18T17:02:11.000Z" - }, - { - "title": "NATO to kick off biggest drills in decades with some 90,000 troops", - "link": "https://www.reddit.com/r/worldnews/comments/199u1hj/nato_to_kick_off_biggest_drills_in_decades_with/", - "pubDate": "2024-01-18T16:27:30.000Z", - "author": "/u/Vantensman", - "content": " submitted by /u/Vantensman
[link] [comments]", - "contentSnippet": "submitted by /u/Vantensman \n [link] [comments]", - "id": "t3_199u1hj", - "isoDate": "2024-01-18T16:27:30.000Z" - }, - { - "title": "Estonia sees first year without Russian airspace violations since 2014", - "link": "https://www.reddit.com/r/worldnews/comments/199tkxi/estonia_sees_first_year_without_russian_airspace/", - "pubDate": "2024-01-18T16:07:37.000Z", - "author": "/u/IWasWearingEyeliner", - "content": "
\"Estonia submitted by /u/IWasWearingEyeliner
[link] [comments]
", - "contentSnippet": "submitted by /u/IWasWearingEyeliner \n [link] [comments]", - "id": "t3_199tkxi", - "isoDate": "2024-01-18T16:07:37.000Z" - }, - { - "title": "Estonia to stop funding Russian-language education", - "link": "https://www.reddit.com/r/worldnews/comments/199sglz/estonia_to_stop_funding_russianlanguage_education/", - "pubDate": "2024-01-18T15:18:30.000Z", - "content": "
\"Estonia
[link] [comments]
", - "contentSnippet": "[link] [comments]", - "id": "t3_199sglz", - "isoDate": "2024-01-18T15:18:30.000Z" - }, - { - "title": "Duda says Putin will attack other countries if he prevails in Ukraine", - "link": "https://www.reddit.com/r/worldnews/comments/199s7s0/duda_says_putin_will_attack_other_countries_if_he/", - "pubDate": "2024-01-18T15:07:22.000Z", - "author": "/u/blllrrrrr", - "content": "
\"Duda submitted by /u/blllrrrrr
[link] [comments]
", - "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", - "id": "t3_199s7s0", - "isoDate": "2024-01-18T15:07:22.000Z" - }, - { - "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 611, Part 1 (Thread #757)", - "link": "https://www.reddit.com/r/worldnews/comments/17hf1wd/rworldnews_live_thread_russian_invasion_of/", - "pubDate": "2023-10-27T04:02:40.000Z", - "author": "/u/WorldNewsMods", - "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", - "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", - "id": "t3_17hf1wd", - "isoDate": "2023-10-27T04:02:40.000Z" - }, - { - "title": "This is not a war with Palestinians but Hamas: Israel envoy at UNGA", - "link": "https://www.reddit.com/r/worldnews/comments/17hdjpy/this_is_not_a_war_with_palestinians_but_hamas/", - "pubDate": "2023-10-27T02:38:00.000Z", - "author": "/u/2be_0r_not2be", - "content": "
\"This submitted by /u/2be_0r_not2be
[link] [comments]
", - "contentSnippet": "submitted by /u/2be_0r_not2be \n [link] [comments]", - "id": "t3_17hdjpy", - "isoDate": "2023-10-27T02:38:00.000Z" - }, - { - "title": "US Strikes Iran-Linked Sites In Syria In Retaliation For Attacks On US Troops", - "link": "https://www.reddit.com/r/worldnews/comments/17hd49u/us_strikes_iranlinked_sites_in_syria_in/", - "pubDate": "2023-10-27T02:15:34.000Z", - "author": "/u/babinyar", - "content": "
\"US submitted by /u/babinyar
[link] [comments]
", - "contentSnippet": "submitted by /u/babinyar \n [link] [comments]", - "id": "t3_17hd49u", - "isoDate": "2023-10-27T02:15:34.000Z" - }, - { - "title": "Gaza hospital blast evidence shows it was caused by rocket, not airstrike - WaPo", - "link": "https://www.reddit.com/r/worldnews/comments/17hbtca/gaza_hospital_blast_evidence_shows_it_was_caused/", - "pubDate": "2023-10-27T01:08:00.000Z", - "author": "/u/yesyesitswayexpired", - "content": "
\"Gaza submitted by /u/yesyesitswayexpired
[link] [comments]
", - "contentSnippet": "submitted by /u/yesyesitswayexpired \n [link] [comments]", - "id": "t3_17hbtca", - "isoDate": "2023-10-27T01:08:00.000Z" - }, - { - "title": "Visa holders face expulsion from UK for inciting anti-Semitism", - "link": "https://www.reddit.com/r/worldnews/comments/17hay6j/visa_holders_face_expulsion_from_uk_for_inciting/", - "pubDate": "2023-10-27T00:23:35.000Z", - "author": "/u/CsrfingSafari", - "content": "
\"Visa submitted by /u/CsrfingSafari
[link] [comments]
", - "contentSnippet": "submitted by /u/CsrfingSafari \n [link] [comments]", - "id": "t3_17hay6j", - "isoDate": "2023-10-27T00:23:35.000Z" - }, - { - "title": "Biden condemns retaliatory attacks by Israeli settlers against Palestinians in the West Bank", - "link": "https://www.reddit.com/r/worldnews/comments/17hauev/biden_condemns_retaliatory_attacks_by_israeli/", - "pubDate": "2023-10-27T00:18:13.000Z", - "author": "/u/NoLengthiness4892", - "content": "
\"Biden submitted by /u/NoLengthiness4892
[link] [comments]
", - "contentSnippet": "submitted by /u/NoLengthiness4892 \n [link] [comments]", - "id": "t3_17hauev", - "isoDate": "2023-10-27T00:18:13.000Z" - }, - { - "title": "19 US troops have Traumatic Brain Injury after drone attacks in Iraq and Syria", - "link": "https://www.reddit.com/r/worldnews/comments/17has78/19_us_troops_have_traumatic_brain_injury_after/", - "pubDate": "2023-10-27T00:15:06.000Z", - "author": "/u/Cold_Zero_", - "content": "
\"19 submitted by /u/Cold_Zero_
[link] [comments]
", - "contentSnippet": "submitted by /u/Cold_Zero_ \n [link] [comments]", - "id": "t3_17has78", - "isoDate": "2023-10-27T00:15:06.000Z" - }, - { - "title": "Ukraine war: Russia executing own retreating soldiers", - "link": "https://www.reddit.com/r/worldnews/comments/17h8ye7/ukraine_war_russia_executing_own_retreating/", - "pubDate": "2023-10-26T22:46:21.000Z", - "author": "/u/KungFuFightingOwlMan", - "content": "
\"Ukraine submitted by /u/KungFuFightingOwlMan
[link] [comments]
", - "contentSnippet": "submitted by /u/KungFuFightingOwlMan \n [link] [comments]", - "id": "t3_17h8ye7", - "isoDate": "2023-10-26T22:46:21.000Z" - }, - { - "title": "Russia and China at war with Canada, says Gen. Wayne Eyre", - "link": "https://www.reddit.com/r/worldnews/comments/17h8lmg/russia_and_china_at_war_with_canada_says_gen/", - "pubDate": "2023-10-26T22:30:22.000Z", - "author": "/u/Thanato26", - "content": "
\"Russia submitted by /u/Thanato26
[link] [comments]
", - "contentSnippet": "submitted by /u/Thanato26 \n [link] [comments]", - "id": "t3_17h8lmg", - "isoDate": "2023-10-26T22:30:22.000Z" - }, - { - "title": "Israeli ambassador to UN Erdan shows UNGA video of Hamas decapitation at ceasefire debate", - "link": "https://www.reddit.com/r/worldnews/comments/17h8jhn/israeli_ambassador_to_un_erdan_shows_unga_video/", - "pubDate": "2023-10-26T22:27:41.000Z", - "author": "/u/Ask4MD", - "content": "
\"Israeli submitted by /u/Ask4MD
[link] [comments]
", - "contentSnippet": "submitted by /u/Ask4MD \n [link] [comments]", - "id": "t3_17h8jhn", - "isoDate": "2023-10-26T22:27:41.000Z" - }, - { - "title": "Biden warns Iran against targeting US troops in Middle East", - "link": "https://www.reddit.com/r/worldnews/comments/17h8h9g/biden_warns_iran_against_targeting_us_troops_in/", - "pubDate": "2023-10-26T22:24:55.000Z", - "author": "/u/VictorEmmanuelIV", - "content": "
\"Biden submitted by /u/VictorEmmanuelIV
[link] [comments]
", - "contentSnippet": "submitted by /u/VictorEmmanuelIV \n [link] [comments]", - "id": "t3_17h8h9g", - "isoDate": "2023-10-26T22:24:55.000Z" - }, - { - "title": "Germany arrests businessman suspected of selling drone engines to Russia", - "link": "https://www.reddit.com/r/worldnews/comments/17h66cv/germany_arrests_businessman_suspected_of_selling/", - "pubDate": "2023-10-26T20:44:10.000Z", - "author": "/u/JKKIDD231", - "content": "
\"Germany submitted by /u/JKKIDD231
[link] [comments]
", - "contentSnippet": "submitted by /u/JKKIDD231 \n [link] [comments]", - "id": "t3_17h66cv", - "isoDate": "2023-10-26T20:44:10.000Z" - }, - { - "title": "Young Europeans more likely to quit driving and have fewer children to save planet", - "link": "https://www.reddit.com/r/worldnews/comments/17h6191/young_europeans_more_likely_to_quit_driving_and/", - "pubDate": "2023-10-26T20:37:55.000Z", - "author": "/u/bunditbundit", - "content": "
\"Young submitted by /u/bunditbundit
[link] [comments]
", - "contentSnippet": "submitted by /u/bunditbundit \n [link] [comments]", - "id": "t3_17h6191", - "isoDate": "2023-10-26T20:37:55.000Z" - }, - { - "title": "At UN, Iran warns US will 'not be spared' if war in Gaza continues", - "link": "https://www.reddit.com/r/worldnews/comments/17h2l25/at_un_iran_warns_us_will_not_be_spared_if_war_in/", - "pubDate": "2023-10-26T18:06:34.000Z", - "author": "/u/Super_Camel_3254", - "content": "
\"At submitted by /u/Super_Camel_3254
[link] [comments]
", - "contentSnippet": "submitted by /u/Super_Camel_3254 \n [link] [comments]", - "id": "t3_17h2l25", - "isoDate": "2023-10-26T18:06:34.000Z" - }, - { - "title": "Taiwan found retired air force colonel guilty of operating an espionage network for China, handing him a 20-year prison term", - "link": "https://www.reddit.com/r/worldnews/comments/17h1qqt/taiwan_found_retired_air_force_colonel_guilty_of/", - "pubDate": "2023-10-26T17:28:43.000Z", - "author": "/u/giuliomagnifico", - "content": "
\"Taiwan submitted by /u/giuliomagnifico
[link] [comments]
", - "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", - "id": "t3_17h1qqt", - "isoDate": "2023-10-26T17:28:43.000Z" - }, - { - "title": "After U.S., U.K., Australia, Five eyes member New Zealand too criticises India on order expelling Canadian diplomats", - "link": "https://www.reddit.com/r/worldnews/comments/17h1h4y/after_us_uk_australia_five_eyes_member_new/", - "pubDate": "2023-10-26T17:16:12.000Z", - "author": "/u/ficerck", - "content": "
\"After submitted by /u/ficerck
[link] [comments]
", - "contentSnippet": "submitted by /u/ficerck \n [link] [comments]", - "id": "t3_17h1h4y", - "isoDate": "2023-10-26T17:16:12.000Z" - }, - { - "title": "Lithuania moves to ditch controversial Russian-style 'anti-gay propaganda' law", - "link": "https://www.reddit.com/r/worldnews/comments/17h1fl5/lithuania_moves_to_ditch_controversial/", - "pubDate": "2023-10-26T17:14:12.000Z", - "author": "/u/KC_8580", - "content": "
\"Lithuania submitted by /u/KC_8580
[link] [comments]
", - "contentSnippet": "submitted by /u/KC_8580 \n [link] [comments]", - "id": "t3_17h1fl5", - "isoDate": "2023-10-26T17:14:12.000Z" - }, - { - "title": "Ukraine says its Black Sea grain corridor is working", - "link": "https://www.reddit.com/r/worldnews/comments/17gztvp/ukraine_says_its_black_sea_grain_corridor_is/", - "pubDate": "2023-10-26T16:02:53.000Z", - "author": "/u/TheDarthSnarf", - "content": "
\"Ukraine submitted by /u/TheDarthSnarf
[link] [comments]
", - "contentSnippet": "submitted by /u/TheDarthSnarf \n [link] [comments]", - "id": "t3_17gztvp", - "isoDate": "2023-10-26T16:02:53.000Z" - }, - { - "title": "Hamas Armed Wing Says 'Almost 50' Israeli Hostages Killed In Raids", - "link": "https://www.reddit.com/r/worldnews/comments/17gyub8/hamas_armed_wing_says_almost_50_israeli_hostages/", - "pubDate": "2023-10-26T15:17:48.000Z", - "author": "/u/the-zoidberg", - "content": "
\"Hamas submitted by /u/the-zoidberg
[link] [comments]
", - "contentSnippet": "submitted by /u/the-zoidberg \n [link] [comments]", - "id": "t3_17gyub8", - "isoDate": "2023-10-26T15:17:48.000Z" - }, - { - "title": "Macron: France to send navy ship to support Gaza hospitals", - "link": "https://www.reddit.com/r/worldnews/comments/17gymtw/macron_france_to_send_navy_ship_to_support_gaza/", - "pubDate": "2023-10-26T15:07:50.000Z", - "author": "/u/Free_Swimming", - "content": "
\"Macron: submitted by /u/Free_Swimming
[link] [comments]
", - "contentSnippet": "submitted by /u/Free_Swimming \n [link] [comments]", - "id": "t3_17gymtw", - "isoDate": "2023-10-26T15:07:50.000Z" - }, - { - "title": "Germany: Nationwide raids target neo-Nazi music scene", - "link": "https://www.reddit.com/r/worldnews/comments/17gxp4z/germany_nationwide_raids_target_neonazi_music/", - "pubDate": "2023-10-26T14:24:08.000Z", - "author": "/u/DoremusJessup", - "content": "
\"Germany: submitted by /u/DoremusJessup
[link] [comments]
", - "contentSnippet": "submitted by /u/DoremusJessup \n [link] [comments]", - "id": "t3_17gxp4z", - "isoDate": "2023-10-26T14:24:08.000Z" - }, - { - "title": "Russian media say Hamas delegation has arrived in Moscow", - "link": "https://www.reddit.com/r/worldnews/comments/17gxgcp/russian_media_say_hamas_delegation_has_arrived_in/", - "pubDate": "2023-10-26T14:12:17.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"Russian submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_17gxgcp", - "isoDate": "2023-10-26T14:12:17.000Z" - }, - { - "title": "India 'exploring all legal options' after Qatari court sentences 8 Indians to death for spying", - "link": "https://www.reddit.com/r/worldnews/comments/17gwk09/india_exploring_all_legal_options_after_qatari/", - "pubDate": "2023-10-26T13:29:22.000Z", - "author": "/u/Infidel8", - "content": "
\"India submitted by /u/Infidel8
[link] [comments]
", - "contentSnippet": "submitted by /u/Infidel8 \n [link] [comments]", - "id": "t3_17gwk09", - "isoDate": "2023-10-26T13:29:22.000Z" - }, - { - "title": "Nazi symbols resurface in Huwara for second time in 10 days", - "link": "https://www.reddit.com/r/worldnews/comments/17gvf95/nazi_symbols_resurface_in_huwara_for_second_time/", - "pubDate": "2023-10-26T12:31:21.000Z", - "author": "/u/omega3111", - "content": "
\"Nazi submitted by /u/omega3111
[link] [comments]
", - "contentSnippet": "submitted by /u/omega3111 \n [link] [comments]", - "id": "t3_17gvf95", - "isoDate": "2023-10-26T12:31:21.000Z" - }, - { - "title": "Qatar court sentences 8 ex-Indian Navy officers to death", - "link": "https://www.reddit.com/r/worldnews/comments/17gvbbn/qatar_court_sentences_8_exindian_navy_officers_to/", - "pubDate": "2023-10-26T12:25:24.000Z", - "author": "/u/chacko96", - "content": "
\"Qatar submitted by /u/chacko96
[link] [comments]
", - "contentSnippet": "submitted by /u/chacko96 \n [link] [comments]", - "id": "t3_17gvbbn", - "isoDate": "2023-10-26T12:25:24.000Z" - }, - { - "title": "Hamas spox storms off interview after question on massacre of civilians", - "link": "https://www.reddit.com/r/worldnews/comments/17hlyd0/hamas_spox_storms_off_interview_after_question_on/", - "pubDate": "2023-10-27T12:00:58.000Z", - "author": "/u/chedderbob234", - "content": "
\"Hamas submitted by /u/chedderbob234
[link] [comments]
", - "contentSnippet": "submitted by /u/chedderbob234 \n [link] [comments]", - "id": "t3_17hlyd0", - "isoDate": "2023-10-27T12:00:58.000Z" - }, - { - "title": "Blinken asks Qatar to \"tone down the rhetoric\" of Al Jazeera", - "link": "https://www.reddit.com/r/worldnews/comments/17hlc7r/blinken_asks_qatar_to_tone_down_the_rhetoric_of/", - "pubDate": "2023-10-27T11:22:59.000Z", - "author": "/u/Dependent-Luck6905", - "content": "
\"Blinken submitted by /u/Dependent-Luck6905
[link] [comments]
", - "contentSnippet": "submitted by /u/Dependent-Luck6905 \n [link] [comments]", - "id": "t3_17hlc7r", - "isoDate": "2023-10-27T11:22:59.000Z" - }, - { - "title": "Russian Navy mine hunter reportedly explodes in bay at Russian-occupied Sevastopol", - "link": "https://www.reddit.com/r/worldnews/comments/17hl96z/russian_navy_mine_hunter_reportedly_explodes_in/", - "pubDate": "2023-10-27T11:17:52.000Z", - "author": "/u/Silly-avocatoe", - "content": "
\"Russian submitted by /u/Silly-avocatoe
[link] [comments]
", - "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", - "id": "t3_17hl96z", - "isoDate": "2023-10-27T11:17:52.000Z" - }, - { - "title": "War in Ukraine: Russia suffering 'significant losses' in new offensive, White House says", - "link": "https://www.reddit.com/r/worldnews/comments/17hiyau/war_in_ukraine_russia_suffering_significant/", - "pubDate": "2023-10-27T08:34:28.000Z", - "author": "/u/gloriasilk", - "content": "
\"War submitted by /u/gloriasilk
[link] [comments]
", - "contentSnippet": "submitted by /u/gloriasilk \n [link] [comments]", - "id": "t3_17hiyau", - "isoDate": "2023-10-27T08:34:28.000Z" - }, - { - "title": "Quran-burning protester is ordered to leave Sweden but deportation on hold for now", - "link": "https://www.reddit.com/r/worldnews/comments/17hfg7m/quranburning_protester_is_ordered_to_leave_sweden/", - "pubDate": "2023-10-27T04:27:10.000Z", - "author": "/u/jussulent_tummy", - "content": "
\"Quran-burning submitted by /u/jussulent_tummy
[link] [comments]
", - "contentSnippet": "submitted by /u/jussulent_tummy \n [link] [comments]", - "id": "t3_17hfg7m", - "isoDate": "2023-10-27T04:27:10.000Z" - }, - { - "title": "Li Keqiang, former premier of China, dead after heart attack", - "link": "https://www.reddit.com/r/worldnews/comments/17hbjs2/li_keqiang_former_premier_of_china_dead_after/", - "pubDate": "2023-10-27T00:54:15.000Z", - "author": "/u/uhungma", - "content": "
\"Li submitted by /u/uhungma
[link] [comments]
", - "contentSnippet": "submitted by /u/uhungma \n [link] [comments]", - "id": "t3_17hbjs2", - "isoDate": "2023-10-27T00:54:15.000Z" - } -] \ No newline at end of file + { + "title": "Hamas drugged children; burned legs with exhaust for identification", + "link": "https://www.reddit.com/r/worldnews/comments/187rqdd/hamas_drugged_children_burned_legs_with_exhaust/", + "pubDate": "2023-11-30T20:06:44.000Z", + "author": "/u/openupi", + "content": "
\"Hamas submitted by /u/openupi
[link] [comments]
", + "contentSnippet": "submitted by /u/openupi \n [link] [comments]", + "id": "t3_187rqdd", + "isoDate": "2023-11-30T20:06:44.000Z" + }, + { + "title": "UN will investigate sexual assault, rape, in Hamas' October 7 attack, Guterres assures", + "link": "https://www.reddit.com/r/worldnews/comments/187q8qz/un_will_investigate_sexual_assault_rape_in_hamas/", + "pubDate": "2023-11-30T19:03:53.000Z", + "author": "/u/clarkhunterparks", + "content": "
\"UN submitted by /u/clarkhunterparks
[link] [comments]
", + "contentSnippet": "submitted by /u/clarkhunterparks \n [link] [comments]", + "id": "t3_187q8qz", + "isoDate": "2023-11-30T19:03:53.000Z" + }, + { + "title": "Revenues of Russia's top oil and gas producers fall 41% in first 9 months of 2023", + "link": "https://www.reddit.com/r/worldnews/comments/187p9d3/revenues_of_russias_top_oil_and_gas_producers/", + "pubDate": "2023-11-30T18:21:58.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"Revenues submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_187p9d3", + "isoDate": "2023-11-30T18:21:58.000Z" + }, + { + "title": "\u2018Oct. 7 was just a rehearsal,' warns Sinwar", + "link": "https://www.reddit.com/r/worldnews/comments/187oyc9/oct_7_was_just_a_rehearsal_warns_sinwar/", + "pubDate": "2023-11-30T18:08:41.000Z", + "author": "/u/ConsistentDrummer284", + "content": " submitted by /u/ConsistentDrummer284
[link] [comments]", + "contentSnippet": "submitted by /u/ConsistentDrummer284 \n [link] [comments]", + "id": "t3_187oyc9", + "isoDate": "2023-11-30T18:08:41.000Z" + }, + { + "title": "Argentina's incoming foreign minister says country will not join BRICS bloc", + "link": "https://www.reddit.com/r/worldnews/comments/187o2iq/argentinas_incoming_foreign_minister_says_country/", + "pubDate": "2023-11-30T17:31:55.000Z", + "author": "/u/BastianMobile", + "content": "
\"Argentina's submitted by /u/BastianMobile
[link] [comments]
", + "contentSnippet": "submitted by /u/BastianMobile \n [link] [comments]", + "id": "t3_187o2iq", + "isoDate": "2023-11-30T17:31:55.000Z" + }, + { + "title": "Russia bans international LGBT movement as \u2018extremist\u2019", + "link": "https://www.reddit.com/r/worldnews/comments/187mrr7/russia_bans_international_lgbt_movement_as/", + "pubDate": "2023-11-30T16:36:06.000Z", + "author": "/u/washingtonpost", + "content": "
\"Russia submitted by /u/washingtonpost
[link] [comments]
", + "contentSnippet": "submitted by /u/washingtonpost \n [link] [comments]", + "id": "t3_187mrr7", + "isoDate": "2023-11-30T16:36:06.000Z" + }, + { + "title": "Russia's Lavrov faces Western critics at security meeting, walks out after speech", + "link": "https://www.reddit.com/r/worldnews/comments/187jqdz/russias_lavrov_faces_western_critics_at_security/", + "pubDate": "2023-11-30T14:25:04.000Z", + "author": "/u/panbio102", + "content": "
\"Russia's submitted by /u/panbio102
[link] [comments]
", + "contentSnippet": "submitted by /u/panbio102 \n [link] [comments]", + "id": "t3_187jqdz", + "isoDate": "2023-11-30T14:25:04.000Z" + }, + { + "title": "Indigenous community in Ecuador wins legal fight to reclaim ancestral land after more than 80 years", + "link": "https://www.reddit.com/r/worldnews/comments/187jgy5/indigenous_community_in_ecuador_wins_legal_fight/", + "pubDate": "2023-11-30T14:13:23.000Z", + "author": "/u/zsreport", + "content": "
\"Indigenous submitted by /u/zsreport
[link] [comments]
", + "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", + "id": "t3_187jgy5", + "isoDate": "2023-11-30T14:13:23.000Z" + }, + { + "title": "Blinken: 'No Fatigue' in NATO Support of Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/187j75k/blinken_no_fatigue_in_nato_support_of_ukraine/", + "pubDate": "2023-11-30T14:00:59.000Z", + "author": "/u/Red_Franklin", + "content": "
\"Blinken: submitted by /u/Red_Franklin
[link] [comments]
", + "contentSnippet": "submitted by /u/Red_Franklin \n [link] [comments]", + "id": "t3_187j75k", + "isoDate": "2023-11-30T14:00:59.000Z" + }, + { + "title": "Putin is urging women to have as many as 8 children after so many Russians died in his war with Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/187i3z8/putin_is_urging_women_to_have_as_many_as_8/", + "pubDate": "2023-11-30T13:06:42.000Z", + "author": "/u/blllrrrrr", + "content": "
\"Putin submitted by /u/blllrrrrr
[link] [comments]
", + "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", + "id": "t3_187i3z8", + "isoDate": "2023-11-30T13:06:42.000Z" + }, + { + "title": "Top Russian court bans LGBT movement as \"extremist\"", + "link": "https://www.reddit.com/r/worldnews/comments/187haky/top_russian_court_bans_lgbt_movement_as_extremist/", + "pubDate": "2023-11-30T12:22:29.000Z", + "author": "/u/giuliomagnifico", + "content": "
\"Top submitted by /u/giuliomagnifico
[link] [comments]
", + "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", + "id": "t3_187haky", + "isoDate": "2023-11-30T12:22:29.000Z" + }, + { + "title": "Germany: Right-wing extremist group leader sentenced to jail", + "link": "https://www.reddit.com/r/worldnews/comments/187gtb9/germany_rightwing_extremist_group_leader/", + "pubDate": "2023-11-30T11:54:40.000Z", + "author": "/u/donutloop", + "content": "
\"Germany: submitted by /u/donutloop
[link] [comments]
", + "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", + "id": "t3_187gtb9", + "isoDate": "2023-11-30T11:54:40.000Z" + }, + { + "title": "Ukraine\u2019s SBU Blows Up Freight Train in Rail Tunnel Deep Inside Russia", + "link": "https://www.reddit.com/r/worldnews/comments/187f7um/ukraines_sbu_blows_up_freight_train_in_rail/", + "pubDate": "2023-11-30T10:09:20.000Z", + "author": "/u/yorkiecd", + "content": "
\"Ukraine\u2019s submitted by /u/yorkiecd
[link] [comments]
", + "contentSnippet": "submitted by /u/yorkiecd \n [link] [comments]", + "id": "t3_187f7um", + "isoDate": "2023-11-30T10:09:20.000Z" + }, + { + "title": "Nepal becomes first South Asian country to officially register same-sex marriage", + "link": "https://www.reddit.com/r/worldnews/comments/187e4ha/nepal_becomes_first_south_asian_country_to/", + "pubDate": "2023-11-30T08:53:31.000Z", + "author": "/u/2be_0r_not2be", + "content": "
\"Nepal submitted by /u/2be_0r_not2be
[link] [comments]
", + "contentSnippet": "submitted by /u/2be_0r_not2be \n [link] [comments]", + "id": "t3_187e4ha", + "isoDate": "2023-11-30T08:53:31.000Z" + }, + { + "title": "Seven wounded in Jerusalem shooting attack, terrorists killed", + "link": "https://www.reddit.com/r/worldnews/comments/187bqtq/seven_wounded_in_jerusalem_shooting_attack/", + "pubDate": "2023-11-30T06:17:37.000Z", + "author": "/u/NamelessForce", + "content": "
\"Seven submitted by /u/NamelessForce
[link] [comments]
", + "contentSnippet": "submitted by /u/NamelessForce \n [link] [comments]", + "id": "t3_187bqtq", + "isoDate": "2023-11-30T06:17:37.000Z" + }, + { + "title": "Truce in Israel-Hamas war extended by a day, minutes before it was set to expire", + "link": "https://www.reddit.com/r/worldnews/comments/187ajxs/truce_in_israelhamas_war_extended_by_a_day/", + "pubDate": "2023-11-30T05:11:21.000Z", + "author": "/u/RepresentativeTwo967", + "content": "
\"Truce submitted by /u/RepresentativeTwo967
[link] [comments]
", + "contentSnippet": "submitted by /u/RepresentativeTwo967 \n [link] [comments]", + "id": "t3_187ajxs", + "isoDate": "2023-11-30T05:11:21.000Z" + }, + { + "title": "New Zealand plans to ban cellphone use in schools", + "link": "https://www.reddit.com/r/worldnews/comments/1879l8o/new_zealand_plans_to_ban_cellphone_use_in_schools/", + "pubDate": "2023-11-30T04:19:37.000Z", + "author": "/u/galaxystars1", + "content": "
\"New submitted by /u/galaxystars1
[link] [comments]
", + "contentSnippet": "submitted by /u/galaxystars1 \n [link] [comments]", + "id": "t3_1879l8o", + "isoDate": "2023-11-30T04:19:37.000Z" + }, + { + "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 645, Part 1 (Thread #791)", + "link": "https://www.reddit.com/r/worldnews/comments/18799n4/rworldnews_live_thread_russian_invasion_of/", + "pubDate": "2023-11-30T04:02:24.000Z", + "author": "/u/WorldNewsMods", + "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", + "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", + "id": "t3_18799n4", + "isoDate": "2023-11-30T04:02:24.000Z" + }, + { + "title": "Israel-Hamas war: UK sending one of its most lethal warships to Gulf to deter Iran-backed groups | UK News", + "link": "https://www.reddit.com/r/worldnews/comments/187949z/israelhamas_war_uk_sending_one_of_its_most_lethal/", + "pubDate": "2023-11-30T03:54:47.000Z", + "author": "/u/scottmache025", + "content": "
\"Israel-Hamas submitted by /u/scottmache025
[link] [comments]
", + "contentSnippet": "submitted by /u/scottmache025 \n [link] [comments]", + "id": "t3_187949z", + "isoDate": "2023-11-30T03:54:47.000Z" + }, + { + "title": "Hostages held in homes of Hamas-sympathetic UNRWA employees", + "link": "https://www.reddit.com/r/worldnews/comments/1878tq7/hostages_held_in_homes_of_hamassympathetic_unrwa/", + "pubDate": "2023-11-30T03:39:30.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"Hostages submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_1878tq7", + "isoDate": "2023-11-30T03:39:30.000Z" + }, + { + "title": "Japan plans to suspend its own Osprey flights after a fatal US Air Force crash of the aircraft", + "link": "https://www.reddit.com/r/worldnews/comments/1878itv/japan_plans_to_suspend_its_own_osprey_flights/", + "pubDate": "2023-11-30T03:24:23.000Z", + "author": "/u/mrwhiskeyrum", + "content": "
\"Japan submitted by /u/mrwhiskeyrum
[link] [comments]
", + "contentSnippet": "submitted by /u/mrwhiskeyrum \n [link] [comments]", + "id": "t3_1878itv", + "isoDate": "2023-11-30T03:24:23.000Z" + }, + { + "title": "Taiwan president: China too overwhelmed to consider invasion", + "link": "https://www.reddit.com/r/worldnews/comments/1878fte/taiwan_president_china_too_overwhelmed_to/", + "pubDate": "2023-11-30T03:20:21.000Z", + "author": "/u/scottmache025", + "content": "
\"Taiwan submitted by /u/scottmache025
[link] [comments]
", + "contentSnippet": "submitted by /u/scottmache025 \n [link] [comments]", + "id": "t3_1878fte", + "isoDate": "2023-11-30T03:20:21.000Z" + }, + { + "title": "US Navy warship shoots down a drone launched by Houthis from Yemen", + "link": "https://www.reddit.com/r/worldnews/comments/1878buw/us_navy_warship_shoots_down_a_drone_launched_by/", + "pubDate": "2023-11-30T03:14:52.000Z", + "author": "/u/sexychineseguy", + "content": "
\"US submitted by /u/sexychineseguy
[link] [comments]
", + "contentSnippet": "submitted by /u/sexychineseguy \n [link] [comments]", + "id": "t3_1878buw", + "isoDate": "2023-11-30T03:14:52.000Z" + }, + { + "title": "Candy company Mars uses cocoa harvested by kids as young as 5 in Ghana: CBS News investigation", + "link": "https://www.reddit.com/r/worldnews/comments/1875ng1/candy_company_mars_uses_cocoa_harvested_by_kids/", + "pubDate": "2023-11-30T01:10:08.000Z", + "author": "/u/CBSnews", + "content": "
\"Candy submitted by /u/CBSnews
[link] [comments]
", + "contentSnippet": "submitted by /u/CBSnews \n [link] [comments]", + "id": "t3_1875ng1", + "isoDate": "2023-11-30T01:10:08.000Z" + }, + { + "title": "Plans to present meat as \u2018sustainable nutrition\u2019 at Cop28 revealed. Documents show industry intends to go \u2018full force\u2019 in arguing meat is beneficial to the environment at climate summit.", + "link": "https://www.reddit.com/r/worldnews/comments/1874iv3/plans_to_present_meat_as_sustainable_nutrition_at/", + "pubDate": "2023-11-30T00:17:59.000Z", + "author": "/u/lamdefinitelynotadog", + "content": "
\"Plans submitted by /u/lamdefinitelynotadog
[link] [comments]
", + "contentSnippet": "submitted by /u/lamdefinitelynotadog \n [link] [comments]", + "id": "t3_1874iv3", + "isoDate": "2023-11-30T00:17:59.000Z" + }, + { + "title": "Canada\u2019s homicide rate is at the highest level in 30 years", + "link": "https://www.reddit.com/r/worldnews/comments/187rfkk/canadas_homicide_rate_is_at_the_highest_level_in/", + "pubDate": "2023-11-30T19:54:20.000Z", + "author": "/u/Vegetable-Frame2342", + "content": "
\"Canada\u2019s submitted by /u/Vegetable-Frame2342
[link] [comments]
", + "contentSnippet": "submitted by /u/Vegetable-Frame2342 \n [link] [comments]", + "id": "t3_187rfkk", + "isoDate": "2023-11-30T19:54:20.000Z" + }, + { + "title": "Blinken said to tell Israel to change strategy for southern Gaza, suggest it won\u2019t have months to win war", + "link": "https://www.reddit.com/r/worldnews/comments/187q6zo/blinken_said_to_tell_israel_to_change_strategy/", + "pubDate": "2023-11-30T19:01:48.000Z", + "author": "/u/clarkhunterparks", + "content": " submitted by /u/clarkhunterparks
[link] [comments]", + "contentSnippet": "submitted by /u/clarkhunterparks \n [link] [comments]", + "id": "t3_187q6zo", + "isoDate": "2023-11-30T19:01:48.000Z" + }, + { + "title": "EU set to push Xi Jinping to stop Chinese firms getting around sanctions on Russia", + "link": "https://www.reddit.com/r/worldnews/comments/187nec3/eu_set_to_push_xi_jinping_to_stop_chinese_firms/", + "pubDate": "2023-11-30T17:02:42.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"EU submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_187nec3", + "isoDate": "2023-11-30T17:02:42.000Z" + }, + { + "title": "EU approves ban on destruction of unsold clothing", + "link": "https://www.reddit.com/r/worldnews/comments/18dd3ky/eu_approves_ban_on_destruction_of_unsold_clothing/", + "pubDate": "2023-12-08T03:05:22.000Z", + "author": "/u/Sandstorm400", + "content": "
\"EU submitted by /u/Sandstorm400
[link] [comments]
", + "contentSnippet": "submitted by /u/Sandstorm400 \n [link] [comments]", + "id": "t3_18dd3ky", + "isoDate": "2023-12-08T03:05:22.000Z" + }, + { + "title": "Belgium wants to deny entry to violent Israeli settlers from occupied West Bank", + "link": "https://www.reddit.com/r/worldnews/comments/18dcnk2/belgium_wants_to_deny_entry_to_violent_israeli/", + "pubDate": "2023-12-08T02:42:33.000Z", + "author": "/u/leeta0028", + "content": "
\"Belgium submitted by /u/leeta0028
[link] [comments]
", + "contentSnippet": "submitted by /u/leeta0028 \n [link] [comments]", + "id": "t3_18dcnk2", + "isoDate": "2023-12-08T02:42:33.000Z" + }, + { + "title": "Spain Expels US Diplomats Over Spy Scandal", + "link": "https://www.reddit.com/r/worldnews/comments/18d9ctx/spain_expels_us_diplomats_over_spy_scandal/", + "pubDate": "2023-12-07T23:54:30.000Z", + "author": "/u/s4Nn1Ng0r0shi", + "content": "
\"Spain submitted by /u/s4Nn1Ng0r0shi
[link] [comments]
", + "contentSnippet": "submitted by /u/s4Nn1Ng0r0shi \n [link] [comments]", + "id": "t3_18d9ctx", + "isoDate": "2023-12-07T23:54:30.000Z" + }, + { + "title": "Apple admits to secretly giving governments push notification data", + "link": "https://www.reddit.com/r/worldnews/comments/18d7ns0/apple_admits_to_secretly_giving_governments_push/", + "pubDate": "2023-12-07T22:35:36.000Z", + "author": "/u/Far_Nature_8527", + "content": "
\"Apple submitted by /u/Far_Nature_8527
[link] [comments]
", + "contentSnippet": "submitted by /u/Far_Nature_8527 \n [link] [comments]", + "id": "t3_18d7ns0", + "isoDate": "2023-12-07T22:35:36.000Z" + }, + { + "title": "Russia tricks US actors into appearing in propaganda videos", + "link": "https://www.reddit.com/r/worldnews/comments/18d6h5m/russia_tricks_us_actors_into_appearing_in/", + "pubDate": "2023-12-07T21:43:22.000Z", + "author": "/u/AcademicPattern2737", + "content": "
\"Russia submitted by /u/AcademicPattern2737
[link] [comments]
", + "contentSnippet": "submitted by /u/AcademicPattern2737 \n [link] [comments]", + "id": "t3_18d6h5m", + "isoDate": "2023-12-07T21:43:22.000Z" + }, + { + "title": "Ukrainian President Volodymyr Zelensky has called off a high-profile briefing with US lawmakers amid an impasse over future US funding for the country", + "link": "https://www.reddit.com/r/worldnews/comments/18d5rkn/ukrainian_president_volodymyr_zelensky_has_called/", + "pubDate": "2023-12-07T21:12:32.000Z", + "author": "/u/maxleslies", + "content": "
\"Ukrainian submitted by /u/maxleslies
[link] [comments]
", + "contentSnippet": "submitted by /u/maxleslies \n [link] [comments]", + "id": "t3_18d5rkn", + "isoDate": "2023-12-07T21:12:32.000Z" + }, + { + "title": "Venezuela Brands US-Guyana Military Drills 'Provocation'", + "link": "https://www.reddit.com/r/worldnews/comments/18d5b7w/venezuela_brands_usguyana_military_drills/", + "pubDate": "2023-12-07T20:53:26.000Z", + "author": "/u/Gari_305", + "content": "
\"Venezuela submitted by /u/Gari_305
[link] [comments]
", + "contentSnippet": "submitted by /u/Gari_305 \n [link] [comments]", + "id": "t3_18d5b7w", + "isoDate": "2023-12-07T20:53:26.000Z" + }, + { + "title": "U.K. says Russia's intelligence service behind sustained attempts to meddle in British democracy", + "link": "https://www.reddit.com/r/worldnews/comments/18d3qme/uk_says_russias_intelligence_service_behind/", + "pubDate": "2023-12-07T19:45:00.000Z", + "author": "/u/blllrrrrr", + "content": "
\"U.K. submitted by /u/blllrrrrr
[link] [comments]
", + "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", + "id": "t3_18d3qme", + "isoDate": "2023-12-07T19:45:00.000Z" + }, + { + "title": "Germany's chancellor lights first Hanukkah candle on a huge menorah at Berlin's Brandenburg Gate", + "link": "https://www.reddit.com/r/worldnews/comments/18d3qh9/germanys_chancellor_lights_first_hanukkah_candle/", + "pubDate": "2023-12-07T19:44:50.000Z", + "author": "/u/Kimber80", + "content": "
\"Germany's submitted by /u/Kimber80
[link] [comments]
", + "contentSnippet": "submitted by /u/Kimber80 \n [link] [comments]", + "id": "t3_18d3qh9", + "isoDate": "2023-12-07T19:44:50.000Z" + }, + { + "title": "IDF says Hamas firing rockets from Gaza safe zones as civilian scramble for shelter", + "link": "https://www.reddit.com/r/worldnews/comments/18d2xeh/idf_says_hamas_firing_rockets_from_gaza_safe/", + "pubDate": "2023-12-07T19:09:17.000Z", + "author": "/u/HariSeldonOlivaw", + "content": "
\"IDF submitted by /u/HariSeldonOlivaw
[link] [comments]
", + "contentSnippet": "submitted by /u/HariSeldonOlivaw \n [link] [comments]", + "id": "t3_18d2xeh", + "isoDate": "2023-12-07T19:09:17.000Z" + }, + { + "title": "Tesla loses legal action in Sweden as dispute with Nordic unions escalates", + "link": "https://www.reddit.com/r/worldnews/comments/18d2h9o/tesla_loses_legal_action_in_sweden_as_dispute/", + "pubDate": "2023-12-07T18:49:59.000Z", + "author": "/u/3kOlen", + "content": "
\"Tesla submitted by /u/3kOlen
[link] [comments]
", + "contentSnippet": "submitted by /u/3kOlen \n [link] [comments]", + "id": "t3_18d2h9o", + "isoDate": "2023-12-07T18:49:59.000Z" + }, + { + "title": "Israel pressures Egypt to accept Gazan refugees after war, report says", + "link": "https://www.reddit.com/r/worldnews/comments/18d1wdc/israel_pressures_egypt_to_accept_gazan_refugees/", + "pubDate": "2023-12-07T18:26:59.000Z", + "author": "/u/Bangex", + "content": "
\"Israel submitted by /u/Bangex
[link] [comments]
", + "contentSnippet": "submitted by /u/Bangex \n [link] [comments]", + "id": "t3_18d1wdc", + "isoDate": "2023-12-07T18:26:59.000Z" + }, + { + "title": "Earth on verge of five catastrophic climate tipping points, scientists warn", + "link": "https://www.reddit.com/r/worldnews/comments/18d0rw5/earth_on_verge_of_five_catastrophic_climate/", + "pubDate": "2023-12-07T17:32:29.000Z", + "author": "/u/Havvocck2", + "content": "
\"Earth submitted by /u/Havvocck2
[link] [comments]
", + "contentSnippet": "submitted by /u/Havvocck2 \n [link] [comments]", + "id": "t3_18d0rw5", + "isoDate": "2023-12-07T17:32:29.000Z" + }, + { + "title": "Attack on Pakistan highway to China shakes key Belt and Road link", + "link": "https://www.reddit.com/r/worldnews/comments/18d0nd6/attack_on_pakistan_highway_to_china_shakes_key/", + "pubDate": "2023-12-07T17:26:52.000Z", + "author": "/u/MaleficentParfait863", + "content": "
\"Attack submitted by /u/MaleficentParfait863
[link] [comments]
", + "contentSnippet": "submitted by /u/MaleficentParfait863 \n [link] [comments]", + "id": "t3_18d0nd6", + "isoDate": "2023-12-07T17:26:52.000Z" + }, + { + "title": "Russia warns US that Ukraine will be its \u2018second Vietnam\u2019", + "link": "https://www.reddit.com/r/worldnews/comments/18czctd/russia_warns_us_that_ukraine_will_be_its_second/", + "pubDate": "2023-12-07T16:28:16.000Z", + "author": "/u/blllrrrrr", + "content": "
\"Russia submitted by /u/blllrrrrr
[link] [comments]
", + "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", + "id": "t3_18czctd", + "isoDate": "2023-12-07T16:28:16.000Z" + }, + { + "title": "Japan to provide $ 4.5 billion to Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/18cyckz/japan_to_provide_45_billion_to_ukraine/", + "pubDate": "2023-12-07T15:42:24.000Z", + "author": "/u/PjeterPannos", + "content": "
\"Japan submitted by /u/PjeterPannos
[link] [comments]
", + "contentSnippet": "submitted by /u/PjeterPannos \n [link] [comments]", + "id": "t3_18cyckz", + "isoDate": "2023-12-07T15:42:24.000Z" + }, + { + "title": "New Footage shows dozens of Gaza men said to have surrendered to IDF; reportedly may be Hamas suspects", + "link": "https://www.reddit.com/r/worldnews/comments/18cxdld/new_footage_shows_dozens_of_gaza_men_said_to_have/", + "pubDate": "2023-12-07T14:57:55.000Z", + "author": "/u/gimiCv2", + "content": "
\"New submitted by /u/gimiCv2
[link] [comments]
", + "contentSnippet": "submitted by /u/gimiCv2 \n [link] [comments]", + "id": "t3_18cxdld", + "isoDate": "2023-12-07T14:57:55.000Z" + }, + { + "title": "Number of Deserting Russian Troops Surges", + "link": "https://www.reddit.com/r/worldnews/comments/18cx9z0/number_of_deserting_russian_troops_surges/", + "pubDate": "2023-12-07T14:53:09.000Z", + "author": "/u/yorkiecd", + "content": "
\"Number submitted by /u/yorkiecd
[link] [comments]
", + "contentSnippet": "submitted by /u/yorkiecd \n [link] [comments]", + "id": "t3_18cx9z0", + "isoDate": "2023-12-07T14:53:09.000Z" + }, + { + "title": "Russian Presidential Election Set For March 17; Navalny Says Putin Victory Could 'Destroy' Country", + "link": "https://www.reddit.com/r/worldnews/comments/18cwzln/russian_presidential_election_set_for_march_17/", + "pubDate": "2023-12-07T14:38:59.000Z", + "author": "/u/Red_Franklin", + "content": "
\"Russian submitted by /u/Red_Franklin
[link] [comments]
", + "contentSnippet": "submitted by /u/Red_Franklin \n [link] [comments]", + "id": "t3_18cwzln", + "isoDate": "2023-12-07T14:38:59.000Z" + }, + { + "title": "US military Southern Command conducting flight operations over Guyana", + "link": "https://www.reddit.com/r/worldnews/comments/18cva4j/us_military_southern_command_conducting_flight/", + "pubDate": "2023-12-07T13:11:11.000Z", + "author": "/u/julveon", + "content": "
\"US submitted by /u/julveon
[link] [comments]
", + "contentSnippet": "submitted by /u/julveon \n [link] [comments]", + "id": "t3_18cva4j", + "isoDate": "2023-12-07T13:11:11.000Z" + }, + { + "title": "Andrew Forrest calls for fossil fuel bosses' 'heads on spikes' in extraordinary outburst on sidelines of UN COP28 climate conference", + "link": "https://www.reddit.com/r/worldnews/comments/18cv9w3/andrew_forrest_calls_for_fossil_fuel_bosses_heads/", + "pubDate": "2023-12-07T13:10:49.000Z", + "author": "/u/fungussa", + "content": "
\"Andrew submitted by /u/fungussa
[link] [comments]
", + "contentSnippet": "submitted by /u/fungussa \n [link] [comments]", + "id": "t3_18cv9w3", + "isoDate": "2023-12-07T13:10:49.000Z" + }, + { + "title": "Brazil urges Venezuela not to attack Guyana", + "link": "https://www.reddit.com/r/worldnews/comments/18cus8m/brazil_urges_venezuela_not_to_attack_guyana/", + "pubDate": "2023-12-07T12:42:45.000Z", + "author": "/u/loggiews", + "content": "
\"Brazil submitted by /u/loggiews
[link] [comments]
", + "contentSnippet": "submitted by /u/loggiews \n [link] [comments]", + "id": "t3_18cus8m", + "isoDate": "2023-12-07T12:42:45.000Z" + }, + { + "title": "Hamas leader asks \u2018brave\u2019 Pakistan for help; says it can force Israel to retreat from Gaza", + "link": "https://www.reddit.com/r/worldnews/comments/18ctee0/hamas_leader_asks_brave_pakistan_for_help_says_it/", + "pubDate": "2023-12-07T11:14:17.000Z", + "author": "/u/AcademicPattern2737", + "content": "
\"Hamas submitted by /u/AcademicPattern2737
[link] [comments]
", + "contentSnippet": "submitted by /u/AcademicPattern2737 \n [link] [comments]", + "id": "t3_18ctee0", + "isoDate": "2023-12-07T11:14:17.000Z" + }, + { + "title": "Navalny urges Russians to vote for anyone but Putin in March\u2019s presidential election", + "link": "https://www.reddit.com/r/worldnews/comments/18ct5yw/navalny_urges_russians_to_vote_for_anyone_but/", + "pubDate": "2023-12-07T10:58:43.000Z", + "author": "/u/duckanroll", + "content": "
\"Navalny submitted by /u/duckanroll
[link] [comments]
", + "contentSnippet": "submitted by /u/duckanroll \n [link] [comments]", + "id": "t3_18ct5yw", + "isoDate": "2023-12-07T10:58:43.000Z" + }, + { + "title": "Iran uses rape, torture to silence detained Mahsa Amini protesters, Amnesty says", + "link": "https://www.reddit.com/r/worldnews/comments/18crrbl/iran_uses_rape_torture_to_silence_detained_mahsa/", + "pubDate": "2023-12-07T09:14:51.000Z", + "author": "/u/Saltedline", + "content": "
\"Iran submitted by /u/Saltedline
[link] [comments]
", + "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", + "id": "t3_18crrbl", + "isoDate": "2023-12-07T09:14:51.000Z" + }, + { + "title": "Russian military used Ukrainian POWs as human shields, Prosecutor\u2019s Office confirms", + "link": "https://www.reddit.com/r/worldnews/comments/18iwnn5/russian_military_used_ukrainian_pows_as_human/", + "pubDate": "2023-12-15T09:56:09.000Z", + "author": "/u/PjeterPannos", + "content": "
\"Russian submitted by /u/PjeterPannos
[link] [comments]
", + "contentSnippet": "submitted by /u/PjeterPannos \n [link] [comments]", + "id": "t3_18iwnn5", + "isoDate": "2023-12-15T09:56:09.000Z" + }, + { + "title": "U.S. warns Houthis to stop attacks in Red Sea", + "link": "https://www.reddit.com/r/worldnews/comments/18iw1lm/us_warns_houthis_to_stop_attacks_in_red_sea/", + "pubDate": "2023-12-15T09:09:49.000Z", + "author": "/u/ganbaro", + "content": "
\"U.S. submitted by /u/ganbaro
[link] [comments]
", + "contentSnippet": "submitted by /u/ganbaro \n [link] [comments]", + "id": "t3_18iw1lm", + "isoDate": "2023-12-15T09:09:49.000Z" + }, + { + "title": "Canada's new dental care plan could impact nearly 9 million Canadians", + "link": "https://www.reddit.com/r/worldnews/comments/18iunfm/canadas_new_dental_care_plan_could_impact_nearly/", + "pubDate": "2023-12-15T07:28:19.000Z", + "author": "/u/yimmy51", + "content": "
\"Canada's submitted by /u/yimmy51
[link] [comments]
", + "contentSnippet": "submitted by /u/yimmy51 \n [link] [comments]", + "id": "t3_18iunfm", + "isoDate": "2023-12-15T07:28:19.000Z" + }, + { + "title": "Charles McGonigal: Ex-FBI counterintelligence chief sentenced to over four years in prison for work with Russian oligarch.", + "link": "https://www.reddit.com/r/worldnews/comments/18iu9wm/charles_mcgonigal_exfbi_counterintelligence_chief/", + "pubDate": "2023-12-15T07:02:51.000Z", + "author": "/u/JustMyOpinionz", + "content": "
\"Charles submitted by /u/JustMyOpinionz
[link] [comments]
", + "contentSnippet": "submitted by /u/JustMyOpinionz \n [link] [comments]", + "id": "t3_18iu9wm", + "isoDate": "2023-12-15T07:02:51.000Z" + }, + { + "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 660, Part 1 (Thread #806)", + "link": "https://www.reddit.com/r/worldnews/comments/18iravx/rworldnews_live_thread_russian_invasion_of/", + "pubDate": "2023-12-15T04:02:30.000Z", + "author": "/u/WorldNewsMods", + "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", + "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", + "id": "t3_18iravx", + "isoDate": "2023-12-15T04:02:30.000Z" + }, + { + "title": "Hungary blocks \u20ac50bn of EU funding for Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/18ipc5t/hungary_blocks_50bn_of_eu_funding_for_ukraine/", + "pubDate": "2023-12-15T02:18:12.000Z", + "author": "/u/CurrentIndependent42", + "content": "
\"Hungary submitted by /u/CurrentIndependent42
[link] [comments]
", + "contentSnippet": "submitted by /u/CurrentIndependent42 \n [link] [comments]", + "id": "t3_18ipc5t", + "isoDate": "2023-12-15T02:18:12.000Z" + }, + { + "title": "Pakistan Minister Proposes Drone Bases to US for Counterterrorism", + "link": "https://www.reddit.com/r/worldnews/comments/18io4yr/pakistan_minister_proposes_drone_bases_to_us_for/", + "pubDate": "2023-12-15T01:16:44.000Z", + "author": "/u/mrwhiskeyrum", + "content": "
\"Pakistan submitted by /u/mrwhiskeyrum
[link] [comments]
", + "contentSnippet": "submitted by /u/mrwhiskeyrum \n [link] [comments]", + "id": "t3_18io4yr", + "isoDate": "2023-12-15T01:16:44.000Z" + }, + { + "title": "Congress approves bill barring any president from unilaterally withdrawing from NATO", + "link": "https://www.reddit.com/r/worldnews/comments/18ilg53/congress_approves_bill_barring_any_president_from/", + "pubDate": "2023-12-14T23:07:13.000Z", + "author": "/u/JKKIDD231", + "content": "
\"Congress submitted by /u/JKKIDD231
[link] [comments]
", + "contentSnippet": "submitted by /u/JKKIDD231 \n [link] [comments]", + "id": "t3_18ilg53", + "isoDate": "2023-12-14T23:07:13.000Z" + }, + { + "title": "Germany says it foiled alleged Hamas plot", + "link": "https://www.reddit.com/r/worldnews/comments/18ikgew/germany_says_it_foiled_alleged_hamas_plot/", + "pubDate": "2023-12-14T22:24:05.000Z", + "author": "/u/craywelp", + "content": "
\"Germany submitted by /u/craywelp
[link] [comments]
", + "contentSnippet": "submitted by /u/craywelp \n [link] [comments]", + "id": "t3_18ikgew", + "isoDate": "2023-12-14T22:24:05.000Z" + }, + { + "title": "Putin apologizes for the price of eggs as Russian inflation soars", + "link": "https://www.reddit.com/r/worldnews/comments/18ijmxa/putin_apologizes_for_the_price_of_eggs_as_russian/", + "pubDate": "2023-12-14T21:48:28.000Z", + "author": "/u/thisisinsider", + "content": "
\"Putin submitted by /u/thisisinsider
[link] [comments]
", + "contentSnippet": "submitted by /u/thisisinsider \n [link] [comments]", + "id": "t3_18ijmxa", + "isoDate": "2023-12-14T21:48:28.000Z" + }, + { + "title": "\u201cOrb\u00e1n left the room when we voted\u201d: EU official explains how decision to open accession talks with Ukraine was made", + "link": "https://www.reddit.com/r/worldnews/comments/18ihs07/orb\u00e1n_left_the_room_when_we_voted_eu_official/", + "pubDate": "2023-12-14T20:25:21.000Z", + "author": "/u/Kimber80", + "content": "
\"\u201cOrb\u00e1n submitted by /u/Kimber80
[link] [comments]
", + "contentSnippet": "submitted by /u/Kimber80 \n [link] [comments]", + "id": "t3_18ihs07", + "isoDate": "2023-12-14T20:25:21.000Z" + }, + { + "title": "Hands raised: About 70 terror suspects left a Gaza hospital and handed over their weapons", + "link": "https://www.reddit.com/r/worldnews/comments/18ih26t/hands_raised_about_70_terror_suspects_left_a_gaza/", + "pubDate": "2023-12-14T19:53:38.000Z", + "author": "/u/shillforyou", + "content": "
\"Hands submitted by /u/shillforyou
[link] [comments]
", + "contentSnippet": "submitted by /u/shillforyou \n [link] [comments]", + "id": "t3_18ih26t", + "isoDate": "2023-12-14T19:53:38.000Z" + }, + { + "title": "Russia Appointed a New Commander for Flagship Moskva Six Months After Ukraine Sank It", + "link": "https://www.reddit.com/r/worldnews/comments/18igmk4/russia_appointed_a_new_commander_for_flagship/", + "pubDate": "2023-12-14T19:34:20.000Z", + "author": "/u/Ask4MD", + "content": "
\"Russia submitted by /u/Ask4MD
[link] [comments]
", + "contentSnippet": "submitted by /u/Ask4MD \n [link] [comments]", + "id": "t3_18igmk4", + "isoDate": "2023-12-14T19:34:20.000Z" + }, + { + "title": "Hamas operatives arrested in Germany after planning attack", + "link": "https://www.reddit.com/r/worldnews/comments/18igk92/hamas_operatives_arrested_in_germany_after/", + "pubDate": "2023-12-14T19:31:22.000Z", + "author": "/u/Ask4MD", + "content": "
\"Hamas submitted by /u/Ask4MD
[link] [comments]
", + "contentSnippet": "submitted by /u/Ask4MD \n [link] [comments]", + "id": "t3_18igk92", + "isoDate": "2023-12-14T19:31:22.000Z" + }, + { + "title": "Joe Biden \u2018drops out of high-profile India visit\u2019 after claims of Indian murder plot on US soil", + "link": "https://www.reddit.com/r/worldnews/comments/18ig3qe/joe_biden_drops_out_of_highprofile_india_visit/", + "pubDate": "2023-12-14T19:10:47.000Z", + "author": "/u/deadpools0", + "content": "
\"Joe submitted by /u/deadpools0
[link] [comments]
", + "contentSnippet": "submitted by /u/deadpools0 \n [link] [comments]", + "id": "t3_18ig3qe", + "isoDate": "2023-12-14T19:10:47.000Z" + }, + { + "title": "Hungary\u2019s Orban Says He Yielded to EU Majority on Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/18iezvh/hungarys_orban_says_he_yielded_to_eu_majority_on/", + "pubDate": "2023-12-14T18:21:10.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"Hungary\u2019s submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_18iezvh", + "isoDate": "2023-12-14T18:21:10.000Z" + }, + { + "title": "Maersk Demands \"Political Action\" After Another Houthi Attack On Ship In Red Sea", + "link": "https://www.reddit.com/r/worldnews/comments/18ie8zj/maersk_demands_political_action_after_another/", + "pubDate": "2023-12-14T17:49:14.000Z", + "author": "/u/illiterate01", + "content": "
\"Maersk submitted by /u/illiterate01
[link] [comments]
", + "contentSnippet": "submitted by /u/illiterate01 \n [link] [comments]", + "id": "t3_18ie8zj", + "isoDate": "2023-12-14T17:49:14.000Z" + }, + { + "title": "Two Germans go on trial for handing Ukraine war secrets to Russia", + "link": "https://www.reddit.com/r/worldnews/comments/18idcw6/two_germans_go_on_trial_for_handing_ukraine_war/", + "pubDate": "2023-12-14T17:10:15.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"Two submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_18idcw6", + "isoDate": "2023-12-14T17:10:15.000Z" + }, + { + "title": "\u2018Real Risk\u2019 Putin Won\u2019t Stop with Ukraine: NATO Chief", + "link": "https://www.reddit.com/r/worldnews/comments/18idbn2/real_risk_putin_wont_stop_with_ukraine_nato_chief/", + "pubDate": "2023-12-14T17:08:40.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"\u2018Real submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_18idbn2", + "isoDate": "2023-12-14T17:08:40.000Z" + }, + { + "title": "Zelenskyy arrives in Germany on unannounced visit", + "link": "https://www.reddit.com/r/worldnews/comments/18id1wg/zelenskyy_arrives_in_germany_on_unannounced_visit/", + "pubDate": "2023-12-14T16:57:00.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"Zelenskyy submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_18id1wg", + "isoDate": "2023-12-14T16:57:00.000Z" + }, + { + "title": "Finland announces new Russian border closure", + "link": "https://www.reddit.com/r/worldnews/comments/18icxn2/finland_announces_new_russian_border_closure/", + "pubDate": "2023-12-14T16:51:38.000Z", + "author": "/u/SendoTarget", + "content": "
\"Finland submitted by /u/SendoTarget
[link] [comments]
", + "contentSnippet": "submitted by /u/SendoTarget \n [link] [comments]", + "id": "t3_18icxn2", + "isoDate": "2023-12-14T16:51:38.000Z" + }, + { + "title": "Germany to stop accepting imams trained in Turkey", + "link": "https://www.reddit.com/r/worldnews/comments/18ic8f0/germany_to_stop_accepting_imams_trained_in_turkey/", + "pubDate": "2023-12-14T16:20:22.000Z", + "author": "/u/donutloop", + "content": "
\"Germany submitted by /u/donutloop
[link] [comments]
", + "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", + "id": "t3_18ic8f0", + "isoDate": "2023-12-14T16:20:22.000Z" + }, + { + "title": "Germany: 4 Hamas members arrested in Berlin, Netherlands", + "link": "https://www.reddit.com/r/worldnews/comments/18ic0wq/germany_4_hamas_members_arrested_in_berlin/", + "pubDate": "2023-12-14T16:10:47.000Z", + "author": "/u/3kOlen", + "content": "
\"Germany: submitted by /u/3kOlen
[link] [comments]
", + "contentSnippet": "submitted by /u/3kOlen \n [link] [comments]", + "id": "t3_18ic0wq", + "isoDate": "2023-12-14T16:10:47.000Z" + }, + { + "title": "Finland to sign defence pact with US", + "link": "https://www.reddit.com/r/worldnews/comments/18ib6yo/finland_to_sign_defence_pact_with_us/", + "pubDate": "2023-12-14T15:32:08.000Z", + "author": "/u/PjeterPannos", + "content": " submitted by /u/PjeterPannos
[link] [comments]", + "contentSnippet": "submitted by /u/PjeterPannos \n [link] [comments]", + "id": "t3_18ib6yo", + "isoDate": "2023-12-14T15:32:08.000Z" + }, + { + "title": "Alex Batty: Boy missing for six years found in France, authorities say", + "link": "https://www.reddit.com/r/worldnews/comments/18iaqt7/alex_batty_boy_missing_for_six_years_found_in/", + "pubDate": "2023-12-14T15:11:14.000Z", + "author": "/u/ObiWanKenobiNil", + "content": "
\"Alex submitted by /u/ObiWanKenobiNil
[link] [comments]
", + "contentSnippet": "submitted by /u/ObiWanKenobiNil \n [link] [comments]", + "id": "t3_18iaqt7", + "isoDate": "2023-12-14T15:11:14.000Z" + }, + { + "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 680, Part 1 (Thread #826)", + "link": "https://www.reddit.com/r/worldnews/comments/18y3psw/rworldnews_live_thread_russian_invasion_of/", + "pubDate": "2024-01-04T04:02:53.000Z", + "author": "/u/WorldNewsMods", + "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", + "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", + "id": "t3_18y3psw", + "isoDate": "2024-01-04T04:02:53.000Z" + }, + { + "title": "State Department says neither US nor Israel behind Iran blasts that killed over 100", + "link": "https://www.reddit.com/r/worldnews/comments/18y3089/state_department_says_neither_us_nor_israel/", + "pubDate": "2024-01-04T03:27:39.000Z", + "author": "/u/Technical_Soil4193", + "content": "
\"State submitted by /u/Technical_Soil4193
[link] [comments]
", + "contentSnippet": "submitted by /u/Technical_Soil4193 \n [link] [comments]", + "id": "t3_18y3089", + "isoDate": "2024-01-04T03:27:39.000Z" + }, + { + "title": "Israel denies it is talking to other countries about absorbing Gazan immigrants", + "link": "https://www.reddit.com/r/worldnews/comments/18y1ujc/israel_denies_it_is_talking_to_other_countries/", + "pubDate": "2024-01-04T02:32:28.000Z", + "author": "/u/Needforspeed4", + "content": "
\"Israel submitted by /u/Needforspeed4
[link] [comments]
", + "contentSnippet": "submitted by /u/Needforspeed4 \n [link] [comments]", + "id": "t3_18y1ujc", + "isoDate": "2024-01-04T02:32:28.000Z" + }, + { + "title": "Hezbollah confirms: Senior member of the organization killed in Israeli strike", + "link": "https://www.reddit.com/r/worldnews/comments/18xzg5o/hezbollah_confirms_senior_member_of_the/", + "pubDate": "2024-01-04T00:45:25.000Z", + "author": "/u/DatDudeOverThere", + "content": "
\"Hezbollah submitted by /u/DatDudeOverThere
[link] [comments]
", + "contentSnippet": "submitted by /u/DatDudeOverThere \n [link] [comments]", + "id": "t3_18xzg5o", + "isoDate": "2024-01-04T00:45:25.000Z" + }, + { + "title": "EU targets world's biggest diamond miner as part of Russia war sanctions", + "link": "https://www.reddit.com/r/worldnews/comments/18xz599/eu_targets_worlds_biggest_diamond_miner_as_part/", + "pubDate": "2024-01-04T00:32:23.000Z", + "author": "/u/eleventy5thRejection", + "content": "
\"EU submitted by /u/eleventy5thRejection
[link] [comments]
", + "contentSnippet": "submitted by /u/eleventy5thRejection \n [link] [comments]", + "id": "t3_18xz599", + "isoDate": "2024-01-04T00:32:23.000Z" + }, + { + "title": "NASA and Russia will keep launching each other's astronauts to ISS until 2025: report", + "link": "https://www.reddit.com/r/worldnews/comments/18xsftw/nasa_and_russia_will_keep_launching_each_others/", + "pubDate": "2024-01-03T19:59:11.000Z", + "author": "/u/Electrical_Break_984", + "content": "
\"NASA submitted by /u/Electrical_Break_984
[link] [comments]
", + "contentSnippet": "submitted by /u/Electrical_Break_984 \n [link] [comments]", + "id": "t3_18xsftw", + "isoDate": "2024-01-03T19:59:11.000Z" + }, + { + "title": "Over 17,000 Russians Crossed Poland\u2019s Border With Kaliningrad in a Period of 5 Days", + "link": "https://www.reddit.com/r/worldnews/comments/18xs7rr/over_17000_russians_crossed_polands_border_with/", + "pubDate": "2024-01-03T19:50:06.000Z", + "author": "/u/ubcstaffer123", + "content": " submitted by /u/ubcstaffer123
[link] [comments]", + "contentSnippet": "submitted by /u/ubcstaffer123 \n [link] [comments]", + "id": "t3_18xs7rr", + "isoDate": "2024-01-03T19:50:06.000Z" + }, + { + "title": "Javier Milei sweeps away 22 army generals in Argentina's largest military shake-up in 20 years", + "link": "https://www.reddit.com/r/worldnews/comments/18xrm09/javier_milei_sweeps_away_22_army_generals_in/", + "pubDate": "2024-01-03T19:26:10.000Z", + "author": "/u/DoremusJessup", + "content": "
\"Javier submitted by /u/DoremusJessup
[link] [comments]
", + "contentSnippet": "submitted by /u/DoremusJessup \n [link] [comments]", + "id": "t3_18xrm09", + "isoDate": "2024-01-03T19:26:10.000Z" + }, + { + "title": "NATO-Ukraine Council to hold emergency meeting in response to Russia\u2019s mass strikes on Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/18xqk2v/natoukraine_council_to_hold_emergency_meeting_in/", + "pubDate": "2024-01-03T18:45:12.000Z", + "author": "/u/blllrrrrr", + "content": "
\"NATO-Ukraine submitted by /u/blllrrrrr
[link] [comments]
", + "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", + "id": "t3_18xqk2v", + "isoDate": "2024-01-03T18:45:12.000Z" + }, + { + "title": "Joint Statement Regarding Red Sea from the Governments of the United States, Australia, Bahrain, Belgium, Canada, Denmark, Germany, Italy, Japan, Netherlands, New Zealand, and the United Kingdom", + "link": "https://www.reddit.com/r/worldnews/comments/18xqi5p/joint_statement_regarding_red_sea_from_the/", + "pubDate": "2024-01-03T18:43:02.000Z", + "author": "/u/VictorEmmanuelIV", + "content": "
\"Joint submitted by /u/VictorEmmanuelIV
[link] [comments]
", + "contentSnippet": "submitted by /u/VictorEmmanuelIV \n [link] [comments]", + "id": "t3_18xqi5p", + "isoDate": "2024-01-03T18:43:02.000Z" + }, + { + "title": "Japan Coast Guard plane not cleared for takeoff before JAL crash", + "link": "https://www.reddit.com/r/worldnews/comments/18xpx5l/japan_coast_guard_plane_not_cleared_for_takeoff/", + "pubDate": "2024-01-03T18:19:31.000Z", + "author": "/u/PandaMuffin1", + "content": "
\"Japan submitted by /u/PandaMuffin1
[link] [comments]
", + "contentSnippet": "submitted by /u/PandaMuffin1 \n [link] [comments]", + "id": "t3_18xpx5l", + "isoDate": "2024-01-03T18:19:31.000Z" + }, + { + "title": "Berlin decries Russian strikes on Ukraine, but Scholz still opposes supplying Taurus missiles to Kyiv", + "link": "https://www.reddit.com/r/worldnews/comments/18xpmui/berlin_decries_russian_strikes_on_ukraine_but/", + "pubDate": "2024-01-03T18:07:57.000Z", + "author": "/u/FanPractical9683", + "content": "
\"Berlin submitted by /u/FanPractical9683
[link] [comments]
", + "contentSnippet": "submitted by /u/FanPractical9683 \n [link] [comments]", + "id": "t3_18xpmui", + "isoDate": "2024-01-03T18:07:57.000Z" + }, + { + "title": "Nearly same number of Ukrainians who left country in 2023 returned", + "link": "https://www.reddit.com/r/worldnews/comments/18xplzu/nearly_same_number_of_ukrainians_who_left_country/", + "pubDate": "2024-01-03T18:06:59.000Z", + "author": "/u/FanPractical9683", + "content": "
\"Nearly submitted by /u/FanPractical9683
[link] [comments]
", + "contentSnippet": "submitted by /u/FanPractical9683 \n [link] [comments]", + "id": "t3_18xplzu", + "isoDate": "2024-01-03T18:06:59.000Z" + }, + { + "title": "Iran Vows Response After Explosions Kill More Than 100 Near Ceremony For Slain General", + "link": "https://www.reddit.com/r/worldnews/comments/18xnhs9/iran_vows_response_after_explosions_kill_more/", + "pubDate": "2024-01-03T16:32:11.000Z", + "author": "/u/Red_Franklin", + "content": "
\"Iran submitted by /u/Red_Franklin
[link] [comments]
", + "contentSnippet": "submitted by /u/Red_Franklin \n [link] [comments]", + "id": "t3_18xnhs9", + "isoDate": "2024-01-03T16:32:11.000Z" + }, + { + "title": "US condemns far-right Israeli ministers\u2019 call for Palestinians to \u2018emigrate\u2019 from Gaza", + "link": "https://www.reddit.com/r/worldnews/comments/18xn4yg/us_condemns_farright_israeli_ministers_call_for/", + "pubDate": "2024-01-03T16:17:23.000Z", + "author": "/u/blllrrrrr", + "content": "
\"US submitted by /u/blllrrrrr
[link] [comments]
", + "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", + "id": "t3_18xn4yg", + "isoDate": "2024-01-03T16:17:23.000Z" + }, + { + "title": "Protests in the West Bank over the killing of Hamas deputy political leader in Lebanon", + "link": "https://www.reddit.com/r/worldnews/comments/18xlfbk/protests_in_the_west_bank_over_the_killing_of/", + "pubDate": "2024-01-03T15:03:19.000Z", + "author": "/u/Stress-Rough", + "content": "
\"Protests submitted by /u/Stress-Rough
[link] [comments]
", + "contentSnippet": "submitted by /u/Stress-Rough \n [link] [comments]", + "id": "t3_18xlfbk", + "isoDate": "2024-01-03T15:03:19.000Z" + }, + { + "title": "NATO to buy 1,000 Patriot missiles in face of Russia threat", + "link": "https://www.reddit.com/r/worldnews/comments/18xlf52/nato_to_buy_1000_patriot_missiles_in_face_of/", + "pubDate": "2024-01-03T15:03:06.000Z", + "author": "/u/giuliomagnifico", + "content": "
\"NATO submitted by /u/giuliomagnifico
[link] [comments]
", + "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", + "id": "t3_18xlf52", + "isoDate": "2024-01-03T15:03:06.000Z" + }, + { + "title": "Houthis claim attack on French container ship in Red Sea", + "link": "https://www.reddit.com/r/worldnews/comments/18xl7th/houthis_claim_attack_on_french_container_ship_in/", + "pubDate": "2024-01-03T14:54:09.000Z", + "author": "/u/clarkhunterparks", + "content": "
\"Houthis submitted by /u/clarkhunterparks
[link] [comments]
", + "contentSnippet": "submitted by /u/clarkhunterparks \n [link] [comments]", + "id": "t3_18xl7th", + "isoDate": "2024-01-03T14:54:09.000Z" + }, + { + "title": "Agency confirms GPS jamming in Finland on NYE", + "link": "https://www.reddit.com/r/worldnews/comments/18xkk0c/agency_confirms_gps_jamming_in_finland_on_nye/", + "pubDate": "2024-01-03T14:23:29.000Z", + "author": "/u/JPR_FI", + "content": "
\"Agency submitted by /u/JPR_FI
[link] [comments]
", + "contentSnippet": "submitted by /u/JPR_FI \n [link] [comments]", + "id": "t3_18xkk0c", + "isoDate": "2024-01-03T14:23:29.000Z" + }, + { + "title": "Iran says at least 73 people killed, 40 wounded in blasts at ceremony honoring slain general", + "link": "https://www.reddit.com/r/worldnews/comments/18xjel1/iran_says_at_least_73_people_killed_40_wounded_in/", + "pubDate": "2024-01-03T13:28:26.000Z", + "author": "/u/RusynSlovak", + "content": "
\"Iran submitted by /u/RusynSlovak
[link] [comments]
", + "contentSnippet": "submitted by /u/RusynSlovak \n [link] [comments]", + "id": "t3_18xjel1", + "isoDate": "2024-01-03T13:28:26.000Z" + }, + { + "title": "Head of notorious Russian torture prison in Donetsk sentenced to 15 years", + "link": "https://www.reddit.com/r/worldnews/comments/18xj5mb/head_of_notorious_russian_torture_prison_in/", + "pubDate": "2024-01-03T13:15:40.000Z", + "author": "/u/HelloSlowly", + "content": "
\"Head submitted by /u/HelloSlowly
[link] [comments]
", + "contentSnippet": "submitted by /u/HelloSlowly \n [link] [comments]", + "id": "t3_18xj5mb", + "isoDate": "2024-01-03T13:15:40.000Z" + }, + { + "title": "Mossad chief: Those who took part in massacre signed their own death warrant", + "link": "https://www.reddit.com/r/worldnews/comments/18xhwuu/mossad_chief_those_who_took_part_in_massacre/", + "pubDate": "2024-01-03T12:07:45.000Z", + "author": "/u/clarkhunterparks", + "content": "
\"Mossad submitted by /u/clarkhunterparks
[link] [comments]
", + "contentSnippet": "submitted by /u/clarkhunterparks \n [link] [comments]", + "id": "t3_18xhwuu", + "isoDate": "2024-01-03T12:07:45.000Z" + }, + { + "title": "Thousands of migrants detained in Russia to recruit \"volunteers\" for war", + "link": "https://www.reddit.com/r/worldnews/comments/18xhvnj/thousands_of_migrants_detained_in_russia_to/", + "pubDate": "2024-01-03T12:05:50.000Z", + "author": "/u/new974517", + "content": "
\"Thousands submitted by /u/new974517
[link] [comments]
", + "contentSnippet": "submitted by /u/new974517 \n [link] [comments]", + "id": "t3_18xhvnj", + "isoDate": "2024-01-03T12:05:50.000Z" + }, + { + "title": "Israel in talks with Congo and other countries on Gaza \u2018voluntary migration\u2019 plan", + "link": "https://www.reddit.com/r/worldnews/comments/18xhioi/israel_in_talks_with_congo_and_other_countries_on/", + "pubDate": "2024-01-03T11:44:45.000Z", + "author": "/u/blllrrrrr", + "content": "
\"Israel submitted by /u/blllrrrrr
[link] [comments]
", + "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", + "id": "t3_18xhioi", + "isoDate": "2024-01-03T11:44:45.000Z" + }, + { + "title": "Polish FM: We should respond to the latest onslaught on Ukraine in language that Putin understands", + "link": "https://www.reddit.com/r/worldnews/comments/18xfxja/polish_fm_we_should_respond_to_the_latest/", + "pubDate": "2024-01-03T10:04:43.000Z", + "author": "/u/AD2023August", + "content": "
\"Polish submitted by /u/AD2023August
[link] [comments]
", + "contentSnippet": "submitted by /u/AD2023August \n [link] [comments]", + "id": "t3_18xfxja", + "isoDate": "2024-01-03T10:04:43.000Z" + }, + { + "title": "Zuckerberg's Bunker Plans Fuel Speculation on Billionaires Building Bunkers", + "link": "https://www.reddit.com/r/worldnews/comments/18y7y0i/zuckerbergs_bunker_plans_fuel_speculation_on/", + "pubDate": "2024-01-04T08:08:11.000Z", + "author": "/u/InstructionNo83", + "content": "
\"Zuckerberg's submitted by /u/InstructionNo83
[link] [comments]
", + "contentSnippet": "submitted by /u/InstructionNo83 \n [link] [comments]", + "id": "t3_18y7y0i", + "isoDate": "2024-01-04T08:08:11.000Z" + }, + { + "title": "Scientists had a 20-minute \"conversation\" with a humpback whale named Twain", + "link": "https://www.reddit.com/r/worldnews/comments/18z2bcr/scientists_had_a_20minute_conversation_with_a/", + "pubDate": "2024-01-05T08:47:34.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"Scientists submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_18z2bcr", + "isoDate": "2024-01-05T08:47:34.000Z" + }, + { + "title": "Netanyahu: Israel \"committed to fundamental change to Lebanon border\" - I24NEWS", + "link": "https://www.reddit.com/r/worldnews/comments/18yyg6a/netanyahu_israel_committed_to_fundamental_change/", + "pubDate": "2024-01-05T04:55:02.000Z", + "author": "/u/Red_Franklin", + "content": "
\"Netanyahu: submitted by /u/Red_Franklin
[link] [comments]
", + "contentSnippet": "submitted by /u/Red_Franklin \n [link] [comments]", + "id": "t3_18yyg6a", + "isoDate": "2024-01-05T04:55:02.000Z" + }, + { + "title": "S.Korea orders evacuation on island near North Korea border", + "link": "https://www.reddit.com/r/worldnews/comments/18yyd7d/skorea_orders_evacuation_on_island_near_north/", + "pubDate": "2024-01-05T04:50:32.000Z", + "author": "/u/GeminiArk", + "content": " submitted by /u/GeminiArk
[link] [comments]", + "contentSnippet": "submitted by /u/GeminiArk \n [link] [comments]", + "id": "t3_18yyd7d", + "isoDate": "2024-01-05T04:50:32.000Z" + }, + { + "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 681, Part 1 (Thread #827)", + "link": "https://www.reddit.com/r/worldnews/comments/18yxg1i/rworldnews_live_thread_russian_invasion_of/", + "pubDate": "2024-01-05T04:02:42.000Z", + "author": "/u/WorldNewsMods", + "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", + "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", + "id": "t3_18yxg1i", + "isoDate": "2024-01-05T04:02:42.000Z" + }, + { + "title": "World will look back at 2023 as year humanity exposed its inability to tackle climate crisis, scientists say", + "link": "https://www.reddit.com/r/worldnews/comments/18yw6el/world_will_look_back_at_2023_as_year_humanity/", + "pubDate": "2024-01-05T02:59:55.000Z", + "author": "/u/ballgameskeith", + "content": "
\"World submitted by /u/ballgameskeith
[link] [comments]
", + "contentSnippet": "submitted by /u/ballgameskeith \n [link] [comments]", + "id": "t3_18yw6el", + "isoDate": "2024-01-05T02:59:55.000Z" + }, + { + "title": "Ukraine Strikes Russian Command Post and Military Unit in Crimea", + "link": "https://www.reddit.com/r/worldnews/comments/18yvii1/ukraine_strikes_russian_command_post_and_military/", + "pubDate": "2024-01-05T02:28:35.000Z", + "author": "/u/Ask4MD", + "content": "
\"Ukraine submitted by /u/Ask4MD
[link] [comments]
", + "contentSnippet": "submitted by /u/Ask4MD \n [link] [comments]", + "id": "t3_18yvii1", + "isoDate": "2024-01-05T02:28:35.000Z" + }, + { + "title": "Neo-Nazi podcasters sent to prison on terror charges for targeting Prince Harry and his young son", + "link": "https://www.reddit.com/r/worldnews/comments/18yuiuz/neonazi_podcasters_sent_to_prison_on_terror/", + "pubDate": "2024-01-05T01:41:29.000Z", + "author": "/u/ColtonSlade", + "content": "
\"Neo-Nazi submitted by /u/ColtonSlade
[link] [comments]
", + "contentSnippet": "submitted by /u/ColtonSlade \n [link] [comments]", + "id": "t3_18yuiuz", + "isoDate": "2024-01-05T01:41:29.000Z" + }, + { + "title": "Gallant's post-war Gaza plan: Palestinians to run civil affairs with global task force", + "link": "https://www.reddit.com/r/worldnews/comments/18yra07/gallants_postwar_gaza_plan_palestinians_to_run/", + "pubDate": "2024-01-04T23:20:46.000Z", + "author": "/u/appealouterhaven", + "content": "
\"Gallant's submitted by /u/appealouterhaven
[link] [comments]
", + "contentSnippet": "submitted by /u/appealouterhaven \n [link] [comments]", + "id": "t3_18yra07", + "isoDate": "2024-01-04T23:20:46.000Z" + }, + { + "title": "Germany announced new military aid to Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/18yqicn/germany_announced_new_military_aid_to_ukraine/", + "pubDate": "2024-01-04T22:49:02.000Z", + "author": "/u/PjeterPannos", + "content": "
\"Germany submitted by /u/PjeterPannos
[link] [comments]
", + "contentSnippet": "submitted by /u/PjeterPannos \n [link] [comments]", + "id": "t3_18yqicn", + "isoDate": "2024-01-04T22:49:02.000Z" + }, + { + "title": "Russians actively change ethnic composition of occupied territories' population", + "link": "https://www.reddit.com/r/worldnews/comments/18yozlo/russians_actively_change_ethnic_composition_of/", + "pubDate": "2024-01-04T21:49:39.000Z", + "author": "/u/IWasWearingEyeliner", + "content": "
\"Russians submitted by /u/IWasWearingEyeliner
[link] [comments]
", + "contentSnippet": "submitted by /u/IWasWearingEyeliner \n [link] [comments]", + "id": "t3_18yozlo", + "isoDate": "2024-01-04T21:49:39.000Z" + }, + { + "title": "A Strange Plastic Rock Has Ominously Invaded 5 Continents", + "link": "https://www.reddit.com/r/worldnews/comments/18yo27y/a_strange_plastic_rock_has_ominously_invaded_5/", + "pubDate": "2024-01-04T21:11:15.000Z", + "author": "/u/Free_Swimming", + "content": "
\"A submitted by /u/Free_Swimming
[link] [comments]
", + "contentSnippet": "submitted by /u/Free_Swimming \n [link] [comments]", + "id": "t3_18yo27y", + "isoDate": "2024-01-04T21:11:15.000Z" + }, + { + "title": "Belarusian president signs law granting him lifelong immunity from prosecution", + "link": "https://www.reddit.com/r/worldnews/comments/18ykgls/belarusian_president_signs_law_granting_him/", + "pubDate": "2024-01-04T18:44:04.000Z", + "author": "/u/3kOlen", + "content": "
\"Belarusian submitted by /u/3kOlen
[link] [comments]
", + "contentSnippet": "submitted by /u/3kOlen \n [link] [comments]", + "id": "t3_18ykgls", + "isoDate": "2024-01-04T18:44:04.000Z" + }, + { + "title": "Russia fires North Korean missiles into Ukraine, says U.S. intelligence", + "link": "https://www.reddit.com/r/worldnews/comments/18yk190/russia_fires_north_korean_missiles_into_ukraine/", + "pubDate": "2024-01-04T18:26:55.000Z", + "author": "/u/giuliomagnifico", + "content": "
\"Russia submitted by /u/giuliomagnifico
[link] [comments]
", + "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", + "id": "t3_18yk190", + "isoDate": "2024-01-04T18:26:55.000Z" + }, + { + "title": "N. Korea recently sent missile launchers, several dozen ballistic missiles to Russia: U.S. official", + "link": "https://www.reddit.com/r/worldnews/comments/18yjqyq/n_korea_recently_sent_missile_launchers_several/", + "pubDate": "2024-01-04T18:15:27.000Z", + "author": "/u/Saltedline", + "content": "
\"N. submitted by /u/Saltedline
[link] [comments]
", + "contentSnippet": "submitted by /u/Saltedline \n [link] [comments]", + "id": "t3_18yjqyq", + "isoDate": "2024-01-04T18:15:27.000Z" + }, + { + "title": "Houthis launch sea drone to attack ships hours after US, allies issue 'final warning'", + "link": "https://www.reddit.com/r/worldnews/comments/18yjmwh/houthis_launch_sea_drone_to_attack_ships_hours/", + "pubDate": "2024-01-04T18:10:45.000Z", + "author": "/u/TheDarthSnarf", + "content": "
\"Houthis submitted by /u/TheDarthSnarf
[link] [comments]
", + "contentSnippet": "submitted by /u/TheDarthSnarf \n [link] [comments]", + "id": "t3_18yjmwh", + "isoDate": "2024-01-04T18:10:45.000Z" + }, + { + "title": "North Korean leader Kim Jong-un's daughter, known as Ju-ae, is deemed the most likely successor to the dynastic communist regime, according to South Korea's spy agency", + "link": "https://www.reddit.com/r/worldnews/comments/18yicnh/north_korean_leader_kim_jonguns_daughter_known_as/", + "pubDate": "2024-01-04T17:17:58.000Z", + "author": "/u/giuliomagnifico", + "content": "
\"North submitted by /u/giuliomagnifico
[link] [comments]
", + "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", + "id": "t3_18yicnh", + "isoDate": "2024-01-04T17:17:58.000Z" + }, + { + "title": "Joe Biden boots Uganda from trade deal over horrific \u201cKill the Gays\u201d law", + "link": "https://www.reddit.com/r/worldnews/comments/18yhwwn/joe_biden_boots_uganda_from_trade_deal_over/", + "pubDate": "2024-01-04T17:00:05.000Z", + "author": "/u/KC_8580", + "content": "
\"Joe submitted by /u/KC_8580
[link] [comments]
", + "contentSnippet": "submitted by /u/KC_8580 \n [link] [comments]", + "id": "t3_18yhwwn", + "isoDate": "2024-01-04T17:00:05.000Z" + }, + { + "title": "EU still buying $1bn of Russian Arctic LNG a month", + "link": "https://www.reddit.com/r/worldnews/comments/18yhdhq/eu_still_buying_1bn_of_russian_arctic_lng_a_month/", + "pubDate": "2024-01-04T16:37:24.000Z", + "author": "/u/openmango_", + "content": "
\"EU submitted by /u/openmango_
[link] [comments]
", + "contentSnippet": "submitted by /u/openmango_ \n [link] [comments]", + "id": "t3_18yhdhq", + "isoDate": "2024-01-04T16:37:24.000Z" + }, + { + "title": "IS claims responsibility for Iran attack", + "link": "https://www.reddit.com/r/worldnews/comments/18ygvni/is_claims_responsibility_for_iran_attack/", + "pubDate": "2024-01-04T16:16:42.000Z", + "author": "/u/penguinpizzaparty", + "content": " submitted by /u/penguinpizzaparty
[link] [comments]", + "contentSnippet": "submitted by /u/penguinpizzaparty \n [link] [comments]", + "id": "t3_18ygvni", + "isoDate": "2024-01-04T16:16:42.000Z" + }, + { + "title": "Putin offers citizenship to foreigners who fight for Russia", + "link": "https://www.reddit.com/r/worldnews/comments/18ygitr/putin_offers_citizenship_to_foreigners_who_fight/", + "pubDate": "2024-01-04T16:01:45.000Z", + "author": "/u/Kindred87", + "content": " submitted by /u/Kindred87
[link] [comments]", + "contentSnippet": "submitted by /u/Kindred87 \n [link] [comments]", + "id": "t3_18ygitr", + "isoDate": "2024-01-04T16:01:45.000Z" + }, + { + "title": "Germany's 2023 CO2 emissions fall to lowest in 70 years, now 46% below 1990 levels", + "link": "https://www.reddit.com/r/worldnews/comments/18yf0vr/germanys_2023_co2_emissions_fall_to_lowest_in_70/", + "pubDate": "2024-01-04T14:55:19.000Z", + "author": "/u/PopeSaintHilarius", + "content": " submitted by /u/PopeSaintHilarius
[link] [comments]", + "contentSnippet": "submitted by /u/PopeSaintHilarius \n [link] [comments]", + "id": "t3_18yf0vr", + "isoDate": "2024-01-04T14:55:19.000Z" + }, + { + "title": "US rebukes South Africa for 'meritless' genocide suit against Israel", + "link": "https://www.reddit.com/r/worldnews/comments/18yer8w/us_rebukes_south_africa_for_meritless_genocide/", + "pubDate": "2024-01-04T14:43:04.000Z", + "author": "/u/punchinglines", + "content": "
\"US submitted by /u/punchinglines
[link] [comments]
", + "contentSnippet": "submitted by /u/punchinglines \n [link] [comments]", + "id": "t3_18yer8w", + "isoDate": "2024-01-04T14:43:04.000Z" + }, + { + "title": "'They violated Islamic values': Taliban arrest women for wearing 'bad hijab' in Afghanistan", + "link": "https://www.reddit.com/r/worldnews/comments/18ye2or/they_violated_islamic_values_taliban_arrest_women/", + "pubDate": "2024-01-04T14:11:00.000Z", + "author": "/u/TheDarthSnarf", + "content": "
\"'They submitted by /u/TheDarthSnarf
[link] [comments]
", + "contentSnippet": "submitted by /u/TheDarthSnarf \n [link] [comments]", + "id": "t3_18ye2or", + "isoDate": "2024-01-04T14:11:00.000Z" + }, + { + "title": "Report: Russia Plans To Acquire Iranian Short-Range Missiles, Already Getting North Korean Ones", + "link": "https://www.reddit.com/r/worldnews/comments/18yds29/report_russia_plans_to_acquire_iranian_shortrange/", + "pubDate": "2024-01-04T13:57:46.000Z", + "author": "/u/Less-Study5669", + "content": "
\"Report: submitted by /u/Less-Study5669
[link] [comments]
", + "contentSnippet": "submitted by /u/Less-Study5669 \n [link] [comments]", + "id": "t3_18yds29", + "isoDate": "2024-01-04T13:57:46.000Z" + }, + { + "title": "US carries out strike in Baghdad against militia leader", + "link": "https://www.reddit.com/r/worldnews/comments/18ycy7f/us_carries_out_strike_in_baghdad_against_militia/", + "pubDate": "2024-01-04T13:16:55.000Z", + "author": "/u/Glum-Promotion8084", + "content": " submitted by /u/Glum-Promotion8084
[link] [comments]", + "contentSnippet": "submitted by /u/Glum-Promotion8084 \n [link] [comments]", + "id": "t3_18ycy7f", + "isoDate": "2024-01-04T13:16:55.000Z" + }, + { + "title": "US Demands Iran Release Seized Oil Tanker 'Immediately'", + "link": "https://www.reddit.com/r/worldnews/comments/19481l1/us_demands_iran_release_seized_oil_tanker/", + "pubDate": "2024-01-11T18:02:49.000Z", + "author": "/u/Majano57", + "content": "
\"US submitted by /u/Majano57
[link] [comments]
", + "contentSnippet": "submitted by /u/Majano57 \n [link] [comments]", + "id": "t3_19481l1", + "isoDate": "2024-01-11T18:02:49.000Z" + }, + { + "title": "German far-right met to plan 'mass deportations'", + "link": "https://www.reddit.com/r/worldnews/comments/1945ad1/german_farright_met_to_plan_mass_deportations/", + "pubDate": "2024-01-11T16:10:41.000Z", + "author": "/u/aaaronbrown", + "content": "
\"German submitted by /u/aaaronbrown
[link] [comments]
", + "contentSnippet": "submitted by /u/aaaronbrown \n [link] [comments]", + "id": "t3_1945ad1", + "isoDate": "2024-01-11T16:10:41.000Z" + }, + { + "title": "U.S. Military Aid to Ukraine Was Poorly Tracked, Pentagon Report Concludes", + "link": "https://www.reddit.com/r/worldnews/comments/1944o5n/us_military_aid_to_ukraine_was_poorly_tracked/", + "pubDate": "2024-01-11T15:43:55.000Z", + "author": "/u/DavidCarraway", + "content": "
\"U.S. submitted by /u/DavidCarraway
[link] [comments]
", + "contentSnippet": "submitted by /u/DavidCarraway \n [link] [comments]", + "id": "t3_1944o5n", + "isoDate": "2024-01-11T15:43:55.000Z" + }, + { + "title": "Russia's Medvedev warns of nuclear response if Ukraine hits missile launch sites", + "link": "https://www.reddit.com/r/worldnews/comments/1943hzl/russias_medvedev_warns_of_nuclear_response_if/", + "pubDate": "2024-01-11T14:52:01.000Z", + "author": "/u/Fun-Lawfulness4653", + "content": " submitted by /u/Fun-Lawfulness4653
[link] [comments]", + "contentSnippet": "submitted by /u/Fun-Lawfulness4653 \n [link] [comments]", + "id": "t3_1943hzl", + "isoDate": "2024-01-11T14:52:01.000Z" + }, + { + "title": "Shin Bet, police foil ISIS supporters' terror plot", + "link": "https://www.reddit.com/r/worldnews/comments/19431jb/shin_bet_police_foil_isis_supporters_terror_plot/", + "pubDate": "2024-01-11T14:31:22.000Z", + "author": "/u/Glassounds", + "content": "
\"Shin submitted by /u/Glassounds
[link] [comments]
", + "contentSnippet": "submitted by /u/Glassounds \n [link] [comments]", + "id": "t3_19431jb", + "isoDate": "2024-01-11T14:31:22.000Z" + }, + { + "title": "Israel calls SA accusations to ICJ baseless lies, historically hypocritical", + "link": "https://www.reddit.com/r/worldnews/comments/1942rih/israel_calls_sa_accusations_to_icj_baseless_lies/", + "pubDate": "2024-01-11T14:18:45.000Z", + "author": "/u/Glassounds", + "content": "
\"Israel submitted by /u/Glassounds
[link] [comments]
", + "contentSnippet": "submitted by /u/Glassounds \n [link] [comments]", + "id": "t3_1942rih", + "isoDate": "2024-01-11T14:18:45.000Z" + }, + { + "title": "Far-right mob hunts woman for defacing Stalin icon in Georgian church", + "link": "https://www.reddit.com/r/worldnews/comments/194264g/farright_mob_hunts_woman_for_defacing_stalin_icon/", + "pubDate": "2024-01-11T13:50:43.000Z", + "author": "/u/WhoIsJolyonWest", + "content": "
\"Far-right submitted by /u/WhoIsJolyonWest
[link] [comments]
", + "contentSnippet": "submitted by /u/WhoIsJolyonWest \n [link] [comments]", + "id": "t3_194264g", + "isoDate": "2024-01-11T13:50:43.000Z" + }, + { + "title": "Iran confirms its navy seized tanker in Gulf of Oman that was boarded by men in military uniforms", + "link": "https://www.reddit.com/r/worldnews/comments/1941rzt/iran_confirms_its_navy_seized_tanker_in_gulf_of/", + "pubDate": "2024-01-11T13:31:40.000Z", + "author": "/u/Kejmarcz", + "content": "
\"Iran submitted by /u/Kejmarcz
[link] [comments]
", + "contentSnippet": "submitted by /u/Kejmarcz \n [link] [comments]", + "id": "t3_1941rzt", + "isoDate": "2024-01-11T13:31:40.000Z" + }, + { + "title": "Ship hijacked off Oman appears to change course toward Iran waters", + "link": "https://www.reddit.com/r/worldnews/comments/19413sj/ship_hijacked_off_oman_appears_to_change_course/", + "pubDate": "2024-01-11T12:57:33.000Z", + "author": "/u/golanor", + "content": "
\"Ship submitted by /u/golanor
[link] [comments]
", + "contentSnippet": "submitted by /u/golanor \n [link] [comments]", + "id": "t3_19413sj", + "isoDate": "2024-01-11T12:57:33.000Z" + }, + { + "title": "Russia says it's detained U.S. citizen Robert Woodland on drug charges that carry possible 20-year sentence", + "link": "https://www.reddit.com/r/worldnews/comments/193zoxi/russia_says_its_detained_us_citizen_robert/", + "pubDate": "2024-01-11T11:37:50.000Z", + "author": "/u/nayanki", + "content": "
\"Russia submitted by /u/nayanki
[link] [comments]
", + "contentSnippet": "submitted by /u/nayanki \n [link] [comments]", + "id": "t3_193zoxi", + "isoDate": "2024-01-11T11:37:50.000Z" + }, + { + "title": "Zelenskyy: Russia is short of weapons, so no pause should be provided", + "link": "https://www.reddit.com/r/worldnews/comments/193zbkw/zelenskyy_russia_is_short_of_weapons_so_no_pause/", + "pubDate": "2024-01-11T11:15:20.000Z", + "author": "/u/Pravda_UA", + "content": "
\"Zelenskyy: submitted by /u/Pravda_UA
[link] [comments]
", + "contentSnippet": "submitted by /u/Pravda_UA \n [link] [comments]", + "id": "t3_193zbkw", + "isoDate": "2024-01-11T11:15:20.000Z" + }, + { + "title": "Brexit Erased \u00a3140 Billion From UK Economy, London Mayor to Say", + "link": "https://www.reddit.com/r/worldnews/comments/193z3rk/brexit_erased_140_billion_from_uk_economy_london/", + "pubDate": "2024-01-11T11:01:57.000Z", + "author": "/u/bloomberg", + "content": "
\"Brexit submitted by /u/bloomberg
[link] [comments]
", + "contentSnippet": "submitted by /u/bloomberg \n [link] [comments]", + "id": "t3_193z3rk", + "isoDate": "2024-01-11T11:01:57.000Z" + }, + { + "title": "Ukraine Adds Sandwich Chain Subway to List of \u2018War Sponsors\u2019", + "link": "https://www.reddit.com/r/worldnews/comments/193yk8s/ukraine_adds_sandwich_chain_subway_to_list_of_war/", + "pubDate": "2024-01-11T10:25:56.000Z", + "author": "/u/bloomberg", + "content": "
\"Ukraine submitted by /u/bloomberg
[link] [comments]
", + "contentSnippet": "submitted by /u/bloomberg \n [link] [comments]", + "id": "t3_193yk8s", + "isoDate": "2024-01-11T10:25:56.000Z" + }, + { + "title": "White House supports seizing Russian assets in favour of Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/193xvji/white_house_supports_seizing_russian_assets_in/", + "pubDate": "2024-01-11T09:39:54.000Z", + "author": "/u/Pravda_UA", + "content": "
\"White submitted by /u/Pravda_UA
[link] [comments]
", + "contentSnippet": "submitted by /u/Pravda_UA \n [link] [comments]", + "id": "t3_193xvji", + "isoDate": "2024-01-11T09:39:54.000Z" + }, + { + "title": "Oil tanker in the Gulf of Oman boarded by 'unauthorised' men in military uniforms", + "link": "https://www.reddit.com/r/worldnews/comments/193x02q/oil_tanker_in_the_gulf_of_oman_boarded_by/", + "pubDate": "2024-01-11T08:37:31.000Z", + "author": "/u/falconfalcon7", + "content": "
\"Oil submitted by /u/falconfalcon7
[link] [comments]
", + "contentSnippet": "submitted by /u/falconfalcon7 \n [link] [comments]", + "id": "t3_193x02q", + "isoDate": "2024-01-11T08:37:31.000Z" + }, + { + "title": "Saudi Arabia wants peace with Israel after Gaza war, envoy tells BBC.", + "link": "https://www.reddit.com/r/worldnews/comments/193v4op/saudi_arabia_wants_peace_with_israel_after_gaza/", + "pubDate": "2024-01-11T06:32:11.000Z", + "author": "/u/PhilosopherAnxious23", + "content": "
\"Saudi submitted by /u/PhilosopherAnxious23
[link] [comments]
", + "contentSnippet": "submitted by /u/PhilosopherAnxious23 \n [link] [comments]", + "id": "t3_193v4op", + "isoDate": "2024-01-11T06:32:11.000Z" + }, + { + "title": "WHO says 10,000 died from COVID-19 in December", + "link": "https://www.reddit.com/r/worldnews/comments/193taa0/who_says_10000_died_from_covid19_in_december/", + "pubDate": "2024-01-11T04:46:44.000Z", + "author": "/u/DoremusJessup", + "content": "
\"WHO submitted by /u/DoremusJessup
[link] [comments]
", + "contentSnippet": "submitted by /u/DoremusJessup \n [link] [comments]", + "id": "t3_193taa0", + "isoDate": "2024-01-11T04:46:44.000Z" + }, + { + "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 687, Part 1 (Thread #833)", + "link": "https://www.reddit.com/r/worldnews/comments/193sgw1/rworldnews_live_thread_russian_invasion_of/", + "pubDate": "2024-01-11T04:03:08.000Z", + "author": "/u/WorldNewsMods", + "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", + "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", + "id": "t3_193sgw1", + "isoDate": "2024-01-11T04:03:08.000Z" + }, + { + "title": "South Korea to provide $3 million aid to Japan for quake relief", + "link": "https://www.reddit.com/r/worldnews/comments/193qr5g/south_korea_to_provide_3_million_aid_to_japan_for/", + "pubDate": "2024-01-11T02:37:53.000Z", + "author": "/u/vxqkfs", + "content": "
\"South submitted by /u/vxqkfs
[link] [comments]
", + "contentSnippet": "submitted by /u/vxqkfs \n [link] [comments]", + "id": "t3_193qr5g", + "isoDate": "2024-01-11T02:37:53.000Z" + }, + { + "title": "US urges China not to interfere in Taiwan elections", + "link": "https://www.reddit.com/r/worldnews/comments/193qnxl/us_urges_china_not_to_interfere_in_taiwan/", + "pubDate": "2024-01-11T02:33:22.000Z", + "author": "/u/vxqkfs", + "content": "
\"US submitted by /u/vxqkfs
[link] [comments]
", + "contentSnippet": "submitted by /u/vxqkfs \n [link] [comments]", + "id": "t3_193qnxl", + "isoDate": "2024-01-11T02:33:22.000Z" + }, + { + "title": "Israel faces accusation of genocide against Palestinians in Gaza in case brought by South Africa at U.N. court ~ Israel presents defense on Friday, first time at ICJ, says case is \"preposterous\" & Hamas should be in the dock", + "link": "https://www.reddit.com/r/worldnews/comments/193q15a/israel_faces_accusation_of_genocide_against/", + "pubDate": "2024-01-11T02:02:56.000Z", + "author": "/u/pamelafalkcbs", + "content": "
\"Israel submitted by /u/pamelafalkcbs
[link] [comments]
", + "contentSnippet": "submitted by /u/pamelafalkcbs \n [link] [comments]", + "id": "t3_193q15a", + "isoDate": "2024-01-11T02:02:56.000Z" + }, + { + "title": "Soldiers patrol streets in Ecuador as government and cartels declare war on each other", + "link": "https://www.reddit.com/r/worldnews/comments/193p4g8/soldiers_patrol_streets_in_ecuador_as_government/", + "pubDate": "2024-01-11T01:19:53.000Z", + "author": "/u/lurker_bee", + "content": "
\"Soldiers submitted by /u/lurker_bee
[link] [comments]
", + "contentSnippet": "submitted by /u/lurker_bee \n [link] [comments]", + "id": "t3_193p4g8", + "isoDate": "2024-01-11T01:19:53.000Z" + }, + { + "title": "NATO members pledge further support to Ukraine in 2024, outline plans for billions in aid", + "link": "https://www.reddit.com/r/worldnews/comments/193mhw7/nato_members_pledge_further_support_to_ukraine_in/", + "pubDate": "2024-01-10T23:22:11.000Z", + "author": "/u/HelloSlowly", + "content": "
\"NATO submitted by /u/HelloSlowly
[link] [comments]
", + "contentSnippet": "submitted by /u/HelloSlowly \n [link] [comments]", + "id": "t3_193mhw7", + "isoDate": "2024-01-10T23:22:11.000Z" + }, + { + "title": "Russia\u2019s fabled war ally \u2018General Frost\u2019 turns on Moscow", + "link": "https://www.reddit.com/r/worldnews/comments/193kwxp/russias_fabled_war_ally_general_frost_turns_on/", + "pubDate": "2024-01-10T22:16:37.000Z", + "author": "/u/boomership", + "content": "
\"Russia\u2019s submitted by /u/boomership
[link] [comments]
", + "contentSnippet": "submitted by /u/boomership \n [link] [comments]", + "id": "t3_193kwxp", + "isoDate": "2024-01-10T22:16:37.000Z" + }, + { + "title": "Netanyahu: Let me be clear \u2014 Israel has no intention of displacing Gaza\u2019s population", + "link": "https://www.reddit.com/r/worldnews/comments/193kp46/netanyahu_let_me_be_clear_israel_has_no_intention/", + "pubDate": "2024-01-10T22:07:41.000Z", + "author": "/u/Less-Study5669", + "content": "
\"Netanyahu: submitted by /u/Less-Study5669
[link] [comments]
", + "contentSnippet": "submitted by /u/Less-Study5669 \n [link] [comments]", + "id": "t3_193kp46", + "isoDate": "2024-01-10T22:07:41.000Z" + }, + { + "title": "Ukraine Confirms St Petersburg Attack, Claims Drone Flew Over Putin\u2019s Valdai Residence", + "link": "https://www.reddit.com/r/worldnews/comments/199mwh6/ukraine_confirms_st_petersburg_attack_claims/", + "pubDate": "2024-01-18T10:13:32.000Z", + "author": "/u/yorkiecd", + "content": "
\"Ukraine submitted by /u/yorkiecd
[link] [comments]
", + "contentSnippet": "submitted by /u/yorkiecd \n [link] [comments]", + "id": "t3_199mwh6", + "isoDate": "2024-01-18T10:13:32.000Z" + }, + { + "title": "Beheaded on Oct 7 then put up for sale in Gaza: Father finally finds \u2018missing part\u2019 of son", + "link": "https://www.reddit.com/r/worldnews/comments/199iy0i/beheaded_on_oct_7_then_put_up_for_sale_in_gaza/", + "pubDate": "2024-01-18T05:47:12.000Z", + "author": "/u/LowRevolution6175", + "content": "
\"Beheaded submitted by /u/LowRevolution6175
[link] [comments]
", + "contentSnippet": "submitted by /u/LowRevolution6175 \n [link] [comments]", + "id": "t3_199iy0i", + "isoDate": "2024-01-18T05:47:12.000Z" + }, + { + "title": "Pakistan Retaliates With Strikes Inside Iran as Tensions Spill Over", + "link": "https://www.reddit.com/r/worldnews/comments/199isbk/pakistan_retaliates_with_strikes_inside_iran_as/", + "pubDate": "2024-01-18T05:38:00.000Z", + "author": "/u/kickballaDesign", + "content": "
\"Pakistan submitted by /u/kickballaDesign
[link] [comments]
", + "contentSnippet": "submitted by /u/kickballaDesign \n [link] [comments]", + "id": "t3_199isbk", + "isoDate": "2024-01-18T05:38:00.000Z" + }, + { + "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 694, Part 1 (Thread #840)", + "link": "https://www.reddit.com/r/worldnews/comments/199h1hr/rworldnews_live_thread_russian_invasion_of/", + "pubDate": "2024-01-18T04:03:08.000Z", + "author": "/u/WorldNewsMods", + "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", + "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", + "id": "t3_199h1hr", + "isoDate": "2024-01-18T04:03:08.000Z" + }, + { + "title": "Pakistan Strikes Militant Groups in Iran in Response to Tehran's Missile Attacks", + "link": "https://www.reddit.com/r/worldnews/comments/199g7mh/pakistan_strikes_militant_groups_in_iran_in/", + "pubDate": "2024-01-18T03:20:50.000Z", + "author": "/u/SolRon25", + "content": "
\"Pakistan submitted by /u/SolRon25
[link] [comments]
", + "contentSnippet": "submitted by /u/SolRon25 \n [link] [comments]", + "id": "t3_199g7mh", + "isoDate": "2024-01-18T03:20:50.000Z" + }, + { + "title": "US military launches another barrage of missiles against Houthi sites in Yemen", + "link": "https://www.reddit.com/r/worldnews/comments/199ccwm/us_military_launches_another_barrage_of_missiles/", + "pubDate": "2024-01-18T00:18:57.000Z", + "author": "/u/RepresentativeTwo967", + "content": "
\"US submitted by /u/RepresentativeTwo967
[link] [comments]
", + "contentSnippet": "submitted by /u/RepresentativeTwo967 \n [link] [comments]", + "id": "t3_199ccwm", + "isoDate": "2024-01-18T00:18:57.000Z" + }, + { + "title": "Greenland Melting Faster Than Forecasted, Has Lost 1 Trillion Tons More Ice Than Thought", + "link": "https://www.reddit.com/r/worldnews/comments/199adrz/greenland_melting_faster_than_forecasted_has_lost/", + "pubDate": "2024-01-17T22:54:02.000Z", + "author": "/u/s1n0d3utscht3k", + "content": "
\"Greenland submitted by /u/s1n0d3utscht3k
[link] [comments]
", + "contentSnippet": "submitted by /u/s1n0d3utscht3k \n [link] [comments]", + "id": "t3_199adrz", + "isoDate": "2024-01-17T22:54:02.000Z" + }, + { + "title": "Israel becomes first in the world to give regulatory approval to cultured beef", + "link": "https://www.reddit.com/r/worldnews/comments/1998qrz/israel_becomes_first_in_the_world_to_give/", + "pubDate": "2024-01-17T21:46:20.000Z", + "author": "/u/Glassounds", + "content": "
\"Israel submitted by /u/Glassounds
[link] [comments]
", + "contentSnippet": "submitted by /u/Glassounds \n [link] [comments]", + "id": "t3_1998qrz", + "isoDate": "2024-01-17T21:46:20.000Z" + }, + { + "title": "Thailand moves to ban recreational cannabis use, 18 months after historic decriminalization", + "link": "https://www.reddit.com/r/worldnews/comments/199847d/thailand_moves_to_ban_recreational_cannabis_use/", + "pubDate": "2024-01-17T21:20:45.000Z", + "content": "
\"Thailand
[link] [comments]
", + "contentSnippet": "[link] [comments]", + "id": "t3_199847d", + "isoDate": "2024-01-17T21:20:45.000Z" + }, + { + "title": "A new attack on a ship in the Gulf of Aden probably was a Houthi drone, UK military says", + "link": "https://www.reddit.com/r/worldnews/comments/1996e6s/a_new_attack_on_a_ship_in_the_gulf_of_aden/", + "pubDate": "2024-01-17T20:12:09.000Z", + "author": "/u/Technical_Soil4193", + "content": "
\"A submitted by /u/Technical_Soil4193
[link] [comments]
", + "contentSnippet": "submitted by /u/Technical_Soil4193 \n [link] [comments]", + "id": "t3_1996e6s", + "isoDate": "2024-01-17T20:12:09.000Z" + }, + { + "title": "British Home Secretary Announces Ban Against \u2018Antisemitic\u2019 Hizb ut-Tahrir Organization", + "link": "https://www.reddit.com/r/worldnews/comments/1995m1k/british_home_secretary_announces_ban_against/", + "pubDate": "2024-01-17T19:41:47.000Z", + "author": "/u/GhostOfKlinghoffer", + "content": "
\"British submitted by /u/GhostOfKlinghoffer
[link] [comments]
", + "contentSnippet": "submitted by /u/GhostOfKlinghoffer \n [link] [comments]", + "id": "t3_1995m1k", + "isoDate": "2024-01-17T19:41:47.000Z" + }, + { + "title": "Top NATO military officer urges allies and leaders to plan for the unexpected in Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/1995e7o/top_nato_military_officer_urges_allies_and/", + "pubDate": "2024-01-17T19:33:03.000Z", + "author": "/u/DocMoochal", + "content": "
\"Top submitted by /u/DocMoochal
[link] [comments]
", + "contentSnippet": "submitted by /u/DocMoochal \n [link] [comments]", + "id": "t3_1995e7o", + "isoDate": "2024-01-17T19:33:03.000Z" + }, + { + "title": "Grabbing $300 billion of Russian assets is no panacea, West cautions in Davos", + "link": "https://www.reddit.com/r/worldnews/comments/1994oph/grabbing_300_billion_of_russian_assets_is_no/", + "pubDate": "2024-01-17T19:04:51.000Z", + "author": "/u/TheMisterClo", + "content": " submitted by /u/TheMisterClo
[link] [comments]", + "contentSnippet": "submitted by /u/TheMisterClo \n [link] [comments]", + "id": "t3_1994oph", + "isoDate": "2024-01-17T19:04:51.000Z" + }, + { + "title": "Turkey bombed 80 centres in North-East Syria in three days, targeting civilian areas", + "link": "https://www.reddit.com/r/worldnews/comments/1993sbc/turkey_bombed_80_centres_in_northeast_syria_in/", + "pubDate": "2024-01-17T18:29:19.000Z", + "author": "/u/uanar", + "content": "
\"Turkey submitted by /u/uanar
[link] [comments]
", + "contentSnippet": "submitted by /u/uanar \n [link] [comments]", + "id": "t3_1993sbc", + "isoDate": "2024-01-17T18:29:19.000Z" + }, + { + "title": "Greenland losing 30m tonnes of ice an hour. 20% higher than previously thought, and may affect north Atlantic ocean currents.", + "link": "https://www.reddit.com/r/worldnews/comments/1993mj1/greenland_losing_30m_tonnes_of_ice_an_hour_20/", + "pubDate": "2024-01-17T18:22:50.000Z", + "author": "/u/IntrepidGentian", + "content": "
\"Greenland submitted by /u/IntrepidGentian
[link] [comments]
", + "contentSnippet": "submitted by /u/IntrepidGentian \n [link] [comments]", + "id": "t3_1993mj1", + "isoDate": "2024-01-17T18:22:50.000Z" + }, + { + "title": "James Webb Telescope detects earliest known black hole \u2014 it's really big for its age", + "link": "https://www.reddit.com/r/worldnews/comments/1991iia/james_webb_telescope_detects_earliest_known_black/", + "pubDate": "2024-01-17T17:01:54.000Z", + "author": "/u/randolphquell", + "content": "
\"James submitted by /u/randolphquell
[link] [comments]
", + "contentSnippet": "submitted by /u/randolphquell \n [link] [comments]", + "id": "t3_1991iia", + "isoDate": "2024-01-17T17:01:54.000Z" + }, + { + "title": "Putin claims Russians return to country because of gender neutral toilets abroad", + "link": "https://www.reddit.com/r/worldnews/comments/1990vsb/putin_claims_russians_return_to_country_because/", + "pubDate": "2024-01-17T16:37:33.000Z", + "author": "/u/IWasWearingEyeliner", + "content": "
\"Putin submitted by /u/IWasWearingEyeliner
[link] [comments]
", + "contentSnippet": "submitted by /u/IWasWearingEyeliner \n [link] [comments]", + "id": "t3_1990vsb", + "isoDate": "2024-01-17T16:37:33.000Z" + }, + { + "title": "Philippines to Ramp Up US Military Ties Amid \u2018Aggressive\u2019 China", + "link": "https://www.reddit.com/r/worldnews/comments/1990g1n/philippines_to_ramp_up_us_military_ties_amid/", + "pubDate": "2024-01-17T16:20:50.000Z", + "author": "/u/Cloud_Drago", + "content": "
\"Philippines submitted by /u/Cloud_Drago
[link] [comments]
", + "contentSnippet": "submitted by /u/Cloud_Drago \n [link] [comments]", + "id": "t3_1990g1n", + "isoDate": "2024-01-17T16:20:50.000Z" + }, + { + "title": "From an Arctic prison, Navalny says Putin's Russia will one day crumble", + "link": "https://www.reddit.com/r/worldnews/comments/19908u9/from_an_arctic_prison_navalny_says_putins_russia/", + "pubDate": "2024-01-17T16:13:06.000Z", + "author": "/u/eaglemaxie", + "content": " submitted by /u/eaglemaxie
[link] [comments]", + "contentSnippet": "submitted by /u/eaglemaxie \n [link] [comments]", + "id": "t3_19908u9", + "isoDate": "2024-01-17T16:13:06.000Z" + }, + { + "title": "National Security Advisor Jake Sullivan Declares Houthi Militants as Global Terrorists", + "link": "https://www.reddit.com/r/worldnews/comments/198zhi3/national_security_advisor_jake_sullivan_declares/", + "pubDate": "2024-01-17T15:41:55.000Z", + "author": "/u/Glum-Promotion8084", + "content": "
\"National submitted by /u/Glum-Promotion8084
[link] [comments]
", + "contentSnippet": "submitted by /u/Glum-Promotion8084 \n [link] [comments]", + "id": "t3_198zhi3", + "isoDate": "2024-01-17T15:41:55.000Z" + }, + { + "title": "In 2024, Ukraine should deprive Russia of control over sky - Kuleba", + "link": "https://www.reddit.com/r/worldnews/comments/198z8ap/in_2024_ukraine_should_deprive_russia_of_control/", + "pubDate": "2024-01-17T15:31:39.000Z", + "author": "/u/blllrrrrr", + "content": "
\"In submitted by /u/blllrrrrr
[link] [comments]
", + "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", + "id": "t3_198z8ap", + "isoDate": "2024-01-17T15:31:39.000Z" + }, + { + "title": "Kenya begins relocating 21 black rhinos to save them from extinction", + "link": "https://www.reddit.com/r/worldnews/comments/198yng3/kenya_begins_relocating_21_black_rhinos_to_save/", + "pubDate": "2024-01-17T15:06:54.000Z", + "author": "/u/semafornews", + "content": "
\"Kenya submitted by /u/semafornews
[link] [comments]
", + "contentSnippet": "submitted by /u/semafornews \n [link] [comments]", + "id": "t3_198yng3", + "isoDate": "2024-01-17T15:06:54.000Z" + }, + { + "title": "Ukraine\u2019s existence will be pretext for Russia\u2019s attack in 10 and 50 years, - Medvedev", + "link": "https://www.reddit.com/r/worldnews/comments/198wgb3/ukraines_existence_will_be_pretext_for_russias/", + "pubDate": "2024-01-17T13:23:48.000Z", + "author": "/u/HydrolicKrane", + "content": " submitted by /u/HydrolicKrane
[link] [comments]", + "contentSnippet": "submitted by /u/HydrolicKrane \n [link] [comments]", + "id": "t3_198wgb3", + "isoDate": "2024-01-17T13:23:48.000Z" + }, + { + "title": "Russia protest: Crowds clash with riot police as activist jailed", + "link": "https://www.reddit.com/r/worldnews/comments/198w5q9/russia_protest_crowds_clash_with_riot_police_as/", + "pubDate": "2024-01-17T13:08:18.000Z", + "author": "/u/Acceptable_Fail2015", + "content": "
\"Russia submitted by /u/Acceptable_Fail2015
[link] [comments]
", + "contentSnippet": "submitted by /u/Acceptable_Fail2015 \n [link] [comments]", + "id": "t3_198w5q9", + "isoDate": "2024-01-17T13:08:18.000Z" + }, + { + "title": "'Nazis, no thank you'; Germans take to streets to call for far-right party AfD ban", + "link": "https://www.reddit.com/r/worldnews/comments/198vgf5/nazis_no_thank_you_germans_take_to_streets_to/", + "pubDate": "2024-01-17T12:29:31.000Z", + "author": "/u/Stev-svart-88", + "content": " submitted by /u/Stev-svart-88
[link] [comments]", + "contentSnippet": "submitted by /u/Stev-svart-88 \n [link] [comments]", + "id": "t3_198vgf5", + "isoDate": "2024-01-17T12:29:31.000Z" + }, + { + "title": "Ukrainian Intel Confirms It Struck Russian Oil Depot and Gunpowder Factory", + "link": "https://www.reddit.com/r/worldnews/comments/19agvl7/ukrainian_intel_confirms_it_struck_russian_oil/", + "pubDate": "2024-01-19T11:20:28.000Z", + "author": "/u/yorkiecd", + "content": "
\"Ukrainian submitted by /u/yorkiecd
[link] [comments]
", + "contentSnippet": "submitted by /u/yorkiecd \n [link] [comments]", + "id": "t3_19agvl7", + "isoDate": "2024-01-19T11:20:28.000Z" + }, + { + "title": "Putin Orders Hunt for Property of Russian Empire, Soviet Union", + "link": "https://www.reddit.com/r/worldnews/comments/19agn35/putin_orders_hunt_for_property_of_russian_empire/", + "pubDate": "2024-01-19T11:05:13.000Z", + "author": "/u/HydrolicKrane", + "content": "
\"Putin submitted by /u/HydrolicKrane
[link] [comments]
", + "contentSnippet": "submitted by /u/HydrolicKrane \n [link] [comments]", + "id": "t3_19agn35", + "isoDate": "2024-01-19T11:05:13.000Z" + }, + { + "title": "Evidence points to systematic use of rape and sexual violence by Hamas in 7 October attacks", + "link": "https://www.reddit.com/r/worldnews/comments/19ag0ml/evidence_points_to_systematic_use_of_rape_and/", + "pubDate": "2024-01-19T10:21:56.000Z", + "author": "/u/ElayRaider", + "content": " submitted by /u/ElayRaider
[link] [comments]", + "contentSnippet": "submitted by /u/ElayRaider \n [link] [comments]", + "id": "t3_19ag0ml", + "isoDate": "2024-01-19T10:21:56.000Z" + }, + { + "title": "Houthi official promises safe passage for Russian and Chinese ships", + "link": "https://www.reddit.com/r/worldnews/comments/19af43t/houthi_official_promises_safe_passage_for_russian/", + "pubDate": "2024-01-19T09:18:44.000Z", + "author": "/u/Resident_Advisor_773", + "content": "
\"Houthi submitted by /u/Resident_Advisor_773
[link] [comments]
", + "contentSnippet": "submitted by /u/Resident_Advisor_773 \n [link] [comments]", + "id": "t3_19af43t", + "isoDate": "2024-01-19T09:18:44.000Z" + }, + { + "title": "Nato warns of all-out war with Russia in next 20 years", + "link": "https://www.reddit.com/r/worldnews/comments/19af3vr/nato_warns_of_allout_war_with_russia_in_next_20/", + "pubDate": "2024-01-19T09:18:15.000Z", + "author": "/u/TheTelegraph", + "content": "
\"Nato submitted by /u/TheTelegraph
[link] [comments]
", + "contentSnippet": "submitted by /u/TheTelegraph \n [link] [comments]", + "id": "t3_19af3vr", + "isoDate": "2024-01-19T09:18:15.000Z" + }, + { + "title": "NATO official warns West: Be ready for \u2018anything\u2019", + "link": "https://www.reddit.com/r/worldnews/comments/19acjdn/nato_official_warns_west_be_ready_for_anything/", + "pubDate": "2024-01-19T06:22:01.000Z", + "author": "/u/urmomsloosevag", + "content": "
\"NATO submitted by /u/urmomsloosevag
[link] [comments]
", + "contentSnippet": "submitted by /u/urmomsloosevag \n [link] [comments]", + "id": "t3_19acjdn", + "isoDate": "2024-01-19T06:22:01.000Z" + }, + { + "title": "Trudeau pushes back after Netanyahu again rejects two-state solution", + "link": "https://www.reddit.com/r/worldnews/comments/19aa8wx/trudeau_pushes_back_after_netanyahu_again_rejects/", + "pubDate": "2024-01-19T04:13:18.000Z", + "author": "/u/MarkG_108", + "content": "
\"Trudeau submitted by /u/MarkG_108
[link] [comments]
", + "contentSnippet": "submitted by /u/MarkG_108 \n [link] [comments]", + "id": "t3_19aa8wx", + "isoDate": "2024-01-19T04:13:18.000Z" + }, + { + "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 695, Part 1 (Thread #841)", + "link": "https://www.reddit.com/r/worldnews/comments/19aa1o3/rworldnews_live_thread_russian_invasion_of/", + "pubDate": "2024-01-19T04:02:50.000Z", + "author": "/u/WorldNewsMods", + "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", + "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", + "id": "t3_19aa1o3", + "isoDate": "2024-01-19T04:02:50.000Z" + }, + { + "title": "US says 'no way' to solve Israel security, Gaza war without Palestinian state", + "link": "https://www.reddit.com/r/worldnews/comments/19a96bp/us_says_no_way_to_solve_israel_security_gaza_war/", + "pubDate": "2024-01-19T03:17:56.000Z", + "author": "/u/Pneterexxy", + "content": " submitted by /u/Pneterexxy
[link] [comments]", + "contentSnippet": "submitted by /u/Pneterexxy \n [link] [comments]", + "id": "t3_19a96bp", + "isoDate": "2024-01-19T03:17:56.000Z" + }, + { + "title": "Taliban talks peace, urges Pakistan and Iran to show restraint", + "link": "https://www.reddit.com/r/worldnews/comments/19a6kkf/taliban_talks_peace_urges_pakistan_and_iran_to/", + "pubDate": "2024-01-19T01:12:08.000Z", + "author": "/u/Cuddlyaxe", + "content": "
\"Taliban submitted by /u/Cuddlyaxe
[link] [comments]
", + "contentSnippet": "submitted by /u/Cuddlyaxe \n [link] [comments]", + "id": "t3_19a6kkf", + "isoDate": "2024-01-19T01:12:08.000Z" + }, + { + "title": "Japan agrees to purchase 400 Tomahawk missiles as US envoy lauds defense buildup", + "link": "https://www.reddit.com/r/worldnews/comments/19a4yqi/japan_agrees_to_purchase_400_tomahawk_missiles_as/", + "pubDate": "2024-01-18T23:58:32.000Z", + "author": "/u/gym_fun", + "content": "
\"Japan submitted by /u/gym_fun
[link] [comments]
", + "contentSnippet": "submitted by /u/gym_fun \n [link] [comments]", + "id": "t3_19a4yqi", + "isoDate": "2024-01-18T23:58:32.000Z" + }, + { + "title": "EU adopts Gaza cease-fire resolution requiring hostage release, Hamas dismantling", + "link": "https://www.reddit.com/r/worldnews/comments/19a0sz1/eu_adopts_gaza_ceasefire_resolution_requiring/", + "pubDate": "2024-01-18T21:04:20.000Z", + "author": "/u/FYoCouchEddie", + "content": "
\"EU submitted by /u/FYoCouchEddie
[link] [comments]
", + "contentSnippet": "submitted by /u/FYoCouchEddie \n [link] [comments]", + "id": "t3_19a0sz1", + "isoDate": "2024-01-18T21:04:20.000Z" + }, + { + "title": "Israel says it is exhuming bodies in Gaza to determine if they\u2019re hostages", + "link": "https://www.reddit.com/r/worldnews/comments/199zd4x/israel_says_it_is_exhuming_bodies_in_gaza_to/", + "pubDate": "2024-01-18T20:06:05.000Z", + "author": "/u/Dramatic_Cable_6000", + "content": "
\"Israel submitted by /u/Dramatic_Cable_6000
[link] [comments]
", + "contentSnippet": "submitted by /u/Dramatic_Cable_6000 \n [link] [comments]", + "id": "t3_199zd4x", + "isoDate": "2024-01-18T20:06:05.000Z" + }, + { + "title": "Russian lawmaker flees country after decrying \u2018monster\u2019 Putin", + "link": "https://www.reddit.com/r/worldnews/comments/199z5az/russian_lawmaker_flees_country_after_decrying/", + "pubDate": "2024-01-18T19:57:20.000Z", + "author": "/u/4920185", + "content": "
\"Russian submitted by /u/4920185
[link] [comments]
", + "contentSnippet": "submitted by /u/4920185 \n [link] [comments]", + "id": "t3_199z5az", + "isoDate": "2024-01-18T19:57:20.000Z" + }, + { + "title": "EU Parliament calls to strip Hungary of voting rights in rule-of-law clash", + "link": "https://www.reddit.com/r/worldnews/comments/199y3f6/eu_parliament_calls_to_strip_hungary_of_voting/", + "pubDate": "2024-01-18T19:14:20.000Z", + "author": "/u/nopedoesntwork", + "content": "
\"EU submitted by /u/nopedoesntwork
[link] [comments]
", + "contentSnippet": "submitted by /u/nopedoesntwork \n [link] [comments]", + "id": "t3_199y3f6", + "isoDate": "2024-01-18T19:14:20.000Z" + }, + { + "title": "Oldest Known Homo Sapiens Outside Africa Found in Greece", + "link": "https://www.reddit.com/r/worldnews/comments/199xq3m/oldest_known_homo_sapiens_outside_africa_found_in/", + "pubDate": "2024-01-18T18:59:18.000Z", + "author": "/u/Agmm-cr", + "content": "
\"Oldest submitted by /u/Agmm-cr
[link] [comments]
", + "contentSnippet": "submitted by /u/Agmm-cr \n [link] [comments]", + "id": "t3_199xq3m", + "isoDate": "2024-01-18T18:59:18.000Z" + }, + { + "title": "Washington to Israel: Turn the lights back on in Gaza", + "link": "https://www.reddit.com/r/worldnews/comments/199xjpw/washington_to_israel_turn_the_lights_back_on_in/", + "pubDate": "2024-01-18T18:51:59.000Z", + "author": "/u/SnooHedgehogs2050", + "content": "
\"Washington submitted by /u/SnooHedgehogs2050
[link] [comments]
", + "contentSnippet": "submitted by /u/SnooHedgehogs2050 \n [link] [comments]", + "id": "t3_199xjpw", + "isoDate": "2024-01-18T18:51:59.000Z" + }, + { + "title": "Biden says US strikes against Houthi rebels will continue as bombardment has yet to deter militants", + "link": "https://www.reddit.com/r/worldnews/comments/199wjep/biden_says_us_strikes_against_houthi_rebels_will/", + "pubDate": "2024-01-18T18:10:49.000Z", + "author": "/u/Glum-Promotion8084", + "content": "
\"Biden submitted by /u/Glum-Promotion8084
[link] [comments]
", + "contentSnippet": "submitted by /u/Glum-Promotion8084 \n [link] [comments]", + "id": "t3_199wjep", + "isoDate": "2024-01-18T18:10:49.000Z" + }, + { + "title": "Netanyahu says he has told U.S. that he opposes Palestinian state in any scenario after Israel-Hamas war", + "link": "https://www.reddit.com/r/worldnews/comments/199vthf/netanyahu_says_he_has_told_us_that_he_opposes/", + "pubDate": "2024-01-18T17:41:25.000Z", + "author": "/u/sheeshing123", + "content": "
\"Netanyahu submitted by /u/sheeshing123
[link] [comments]
", + "contentSnippet": "submitted by /u/sheeshing123 \n [link] [comments]", + "id": "t3_199vthf", + "isoDate": "2024-01-18T17:41:25.000Z" + }, + { + "title": "Hezbollah has rejected moving its forces away from border -- US, Lebanese officials", + "link": "https://www.reddit.com/r/worldnews/comments/199vh3i/hezbollah_has_rejected_moving_its_forces_away/", + "pubDate": "2024-01-18T17:26:58.000Z", + "author": "/u/NamelessForce", + "content": "
\"Hezbollah submitted by /u/NamelessForce
[link] [comments]
", + "contentSnippet": "submitted by /u/NamelessForce \n [link] [comments]", + "id": "t3_199vh3i", + "isoDate": "2024-01-18T17:26:58.000Z" + }, + { + "title": "Ukraine: Germany will not supply Taurus cruise missiles", + "link": "https://www.reddit.com/r/worldnews/comments/199uvlj/ukraine_germany_will_not_supply_taurus_cruise/", + "pubDate": "2024-01-18T17:02:11.000Z", + "author": "/u/donutloop", + "content": "
\"Ukraine: submitted by /u/donutloop
[link] [comments]
", + "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", + "id": "t3_199uvlj", + "isoDate": "2024-01-18T17:02:11.000Z" + }, + { + "title": "NATO to kick off biggest drills in decades with some 90,000 troops", + "link": "https://www.reddit.com/r/worldnews/comments/199u1hj/nato_to_kick_off_biggest_drills_in_decades_with/", + "pubDate": "2024-01-18T16:27:30.000Z", + "author": "/u/Vantensman", + "content": " submitted by /u/Vantensman
[link] [comments]", + "contentSnippet": "submitted by /u/Vantensman \n [link] [comments]", + "id": "t3_199u1hj", + "isoDate": "2024-01-18T16:27:30.000Z" + }, + { + "title": "Estonia sees first year without Russian airspace violations since 2014", + "link": "https://www.reddit.com/r/worldnews/comments/199tkxi/estonia_sees_first_year_without_russian_airspace/", + "pubDate": "2024-01-18T16:07:37.000Z", + "author": "/u/IWasWearingEyeliner", + "content": "
\"Estonia submitted by /u/IWasWearingEyeliner
[link] [comments]
", + "contentSnippet": "submitted by /u/IWasWearingEyeliner \n [link] [comments]", + "id": "t3_199tkxi", + "isoDate": "2024-01-18T16:07:37.000Z" + }, + { + "title": "Estonia to stop funding Russian-language education", + "link": "https://www.reddit.com/r/worldnews/comments/199sglz/estonia_to_stop_funding_russianlanguage_education/", + "pubDate": "2024-01-18T15:18:30.000Z", + "content": "
\"Estonia
[link] [comments]
", + "contentSnippet": "[link] [comments]", + "id": "t3_199sglz", + "isoDate": "2024-01-18T15:18:30.000Z" + }, + { + "title": "Duda says Putin will attack other countries if he prevails in Ukraine", + "link": "https://www.reddit.com/r/worldnews/comments/199s7s0/duda_says_putin_will_attack_other_countries_if_he/", + "pubDate": "2024-01-18T15:07:22.000Z", + "author": "/u/blllrrrrr", + "content": "
\"Duda submitted by /u/blllrrrrr
[link] [comments]
", + "contentSnippet": "submitted by /u/blllrrrrr \n [link] [comments]", + "id": "t3_199s7s0", + "isoDate": "2024-01-18T15:07:22.000Z" + }, + { + "title": "/r/WorldNews Live Thread: Russian Invasion of Ukraine Day 611, Part 1 (Thread #757)", + "link": "https://www.reddit.com/r/worldnews/comments/17hf1wd/rworldnews_live_thread_russian_invasion_of/", + "pubDate": "2023-10-27T04:02:40.000Z", + "author": "/u/WorldNewsMods", + "content": "
\"/r/WorldNews submitted by /u/WorldNewsMods
[link] [comments]
", + "contentSnippet": "submitted by /u/WorldNewsMods \n [link] [comments]", + "id": "t3_17hf1wd", + "isoDate": "2023-10-27T04:02:40.000Z" + }, + { + "title": "This is not a war with Palestinians but Hamas: Israel envoy at UNGA", + "link": "https://www.reddit.com/r/worldnews/comments/17hdjpy/this_is_not_a_war_with_palestinians_but_hamas/", + "pubDate": "2023-10-27T02:38:00.000Z", + "author": "/u/2be_0r_not2be", + "content": "
\"This submitted by /u/2be_0r_not2be
[link] [comments]
", + "contentSnippet": "submitted by /u/2be_0r_not2be \n [link] [comments]", + "id": "t3_17hdjpy", + "isoDate": "2023-10-27T02:38:00.000Z" + }, + { + "title": "US Strikes Iran-Linked Sites In Syria In Retaliation For Attacks On US Troops", + "link": "https://www.reddit.com/r/worldnews/comments/17hd49u/us_strikes_iranlinked_sites_in_syria_in/", + "pubDate": "2023-10-27T02:15:34.000Z", + "author": "/u/babinyar", + "content": "
\"US submitted by /u/babinyar
[link] [comments]
", + "contentSnippet": "submitted by /u/babinyar \n [link] [comments]", + "id": "t3_17hd49u", + "isoDate": "2023-10-27T02:15:34.000Z" + }, + { + "title": "Gaza hospital blast evidence shows it was caused by rocket, not airstrike - WaPo", + "link": "https://www.reddit.com/r/worldnews/comments/17hbtca/gaza_hospital_blast_evidence_shows_it_was_caused/", + "pubDate": "2023-10-27T01:08:00.000Z", + "author": "/u/yesyesitswayexpired", + "content": "
\"Gaza submitted by /u/yesyesitswayexpired
[link] [comments]
", + "contentSnippet": "submitted by /u/yesyesitswayexpired \n [link] [comments]", + "id": "t3_17hbtca", + "isoDate": "2023-10-27T01:08:00.000Z" + }, + { + "title": "Visa holders face expulsion from UK for inciting anti-Semitism", + "link": "https://www.reddit.com/r/worldnews/comments/17hay6j/visa_holders_face_expulsion_from_uk_for_inciting/", + "pubDate": "2023-10-27T00:23:35.000Z", + "author": "/u/CsrfingSafari", + "content": "
\"Visa submitted by /u/CsrfingSafari
[link] [comments]
", + "contentSnippet": "submitted by /u/CsrfingSafari \n [link] [comments]", + "id": "t3_17hay6j", + "isoDate": "2023-10-27T00:23:35.000Z" + }, + { + "title": "Biden condemns retaliatory attacks by Israeli settlers against Palestinians in the West Bank", + "link": "https://www.reddit.com/r/worldnews/comments/17hauev/biden_condemns_retaliatory_attacks_by_israeli/", + "pubDate": "2023-10-27T00:18:13.000Z", + "author": "/u/NoLengthiness4892", + "content": "
\"Biden submitted by /u/NoLengthiness4892
[link] [comments]
", + "contentSnippet": "submitted by /u/NoLengthiness4892 \n [link] [comments]", + "id": "t3_17hauev", + "isoDate": "2023-10-27T00:18:13.000Z" + }, + { + "title": "19 US troops have Traumatic Brain Injury after drone attacks in Iraq and Syria", + "link": "https://www.reddit.com/r/worldnews/comments/17has78/19_us_troops_have_traumatic_brain_injury_after/", + "pubDate": "2023-10-27T00:15:06.000Z", + "author": "/u/Cold_Zero_", + "content": "
\"19 submitted by /u/Cold_Zero_
[link] [comments]
", + "contentSnippet": "submitted by /u/Cold_Zero_ \n [link] [comments]", + "id": "t3_17has78", + "isoDate": "2023-10-27T00:15:06.000Z" + }, + { + "title": "Ukraine war: Russia executing own retreating soldiers", + "link": "https://www.reddit.com/r/worldnews/comments/17h8ye7/ukraine_war_russia_executing_own_retreating/", + "pubDate": "2023-10-26T22:46:21.000Z", + "author": "/u/KungFuFightingOwlMan", + "content": "
\"Ukraine submitted by /u/KungFuFightingOwlMan
[link] [comments]
", + "contentSnippet": "submitted by /u/KungFuFightingOwlMan \n [link] [comments]", + "id": "t3_17h8ye7", + "isoDate": "2023-10-26T22:46:21.000Z" + }, + { + "title": "Russia and China at war with Canada, says Gen. Wayne Eyre", + "link": "https://www.reddit.com/r/worldnews/comments/17h8lmg/russia_and_china_at_war_with_canada_says_gen/", + "pubDate": "2023-10-26T22:30:22.000Z", + "author": "/u/Thanato26", + "content": "
\"Russia submitted by /u/Thanato26
[link] [comments]
", + "contentSnippet": "submitted by /u/Thanato26 \n [link] [comments]", + "id": "t3_17h8lmg", + "isoDate": "2023-10-26T22:30:22.000Z" + }, + { + "title": "Israeli ambassador to UN Erdan shows UNGA video of Hamas decapitation at ceasefire debate", + "link": "https://www.reddit.com/r/worldnews/comments/17h8jhn/israeli_ambassador_to_un_erdan_shows_unga_video/", + "pubDate": "2023-10-26T22:27:41.000Z", + "author": "/u/Ask4MD", + "content": "
\"Israeli submitted by /u/Ask4MD
[link] [comments]
", + "contentSnippet": "submitted by /u/Ask4MD \n [link] [comments]", + "id": "t3_17h8jhn", + "isoDate": "2023-10-26T22:27:41.000Z" + }, + { + "title": "Biden warns Iran against targeting US troops in Middle East", + "link": "https://www.reddit.com/r/worldnews/comments/17h8h9g/biden_warns_iran_against_targeting_us_troops_in/", + "pubDate": "2023-10-26T22:24:55.000Z", + "author": "/u/VictorEmmanuelIV", + "content": "
\"Biden submitted by /u/VictorEmmanuelIV
[link] [comments]
", + "contentSnippet": "submitted by /u/VictorEmmanuelIV \n [link] [comments]", + "id": "t3_17h8h9g", + "isoDate": "2023-10-26T22:24:55.000Z" + }, + { + "title": "Germany arrests businessman suspected of selling drone engines to Russia", + "link": "https://www.reddit.com/r/worldnews/comments/17h66cv/germany_arrests_businessman_suspected_of_selling/", + "pubDate": "2023-10-26T20:44:10.000Z", + "author": "/u/JKKIDD231", + "content": "
\"Germany submitted by /u/JKKIDD231
[link] [comments]
", + "contentSnippet": "submitted by /u/JKKIDD231 \n [link] [comments]", + "id": "t3_17h66cv", + "isoDate": "2023-10-26T20:44:10.000Z" + }, + { + "title": "Young Europeans more likely to quit driving and have fewer children to save planet", + "link": "https://www.reddit.com/r/worldnews/comments/17h6191/young_europeans_more_likely_to_quit_driving_and/", + "pubDate": "2023-10-26T20:37:55.000Z", + "author": "/u/bunditbundit", + "content": "
\"Young submitted by /u/bunditbundit
[link] [comments]
", + "contentSnippet": "submitted by /u/bunditbundit \n [link] [comments]", + "id": "t3_17h6191", + "isoDate": "2023-10-26T20:37:55.000Z" + }, + { + "title": "At UN, Iran warns US will 'not be spared' if war in Gaza continues", + "link": "https://www.reddit.com/r/worldnews/comments/17h2l25/at_un_iran_warns_us_will_not_be_spared_if_war_in/", + "pubDate": "2023-10-26T18:06:34.000Z", + "author": "/u/Super_Camel_3254", + "content": "
\"At submitted by /u/Super_Camel_3254
[link] [comments]
", + "contentSnippet": "submitted by /u/Super_Camel_3254 \n [link] [comments]", + "id": "t3_17h2l25", + "isoDate": "2023-10-26T18:06:34.000Z" + }, + { + "title": "Taiwan found retired air force colonel guilty of operating an espionage network for China, handing him a 20-year prison term", + "link": "https://www.reddit.com/r/worldnews/comments/17h1qqt/taiwan_found_retired_air_force_colonel_guilty_of/", + "pubDate": "2023-10-26T17:28:43.000Z", + "author": "/u/giuliomagnifico", + "content": "
\"Taiwan submitted by /u/giuliomagnifico
[link] [comments]
", + "contentSnippet": "submitted by /u/giuliomagnifico \n [link] [comments]", + "id": "t3_17h1qqt", + "isoDate": "2023-10-26T17:28:43.000Z" + }, + { + "title": "After U.S., U.K., Australia, Five eyes member New Zealand too criticises India on order expelling Canadian diplomats", + "link": "https://www.reddit.com/r/worldnews/comments/17h1h4y/after_us_uk_australia_five_eyes_member_new/", + "pubDate": "2023-10-26T17:16:12.000Z", + "author": "/u/ficerck", + "content": "
\"After submitted by /u/ficerck
[link] [comments]
", + "contentSnippet": "submitted by /u/ficerck \n [link] [comments]", + "id": "t3_17h1h4y", + "isoDate": "2023-10-26T17:16:12.000Z" + }, + { + "title": "Lithuania moves to ditch controversial Russian-style 'anti-gay propaganda' law", + "link": "https://www.reddit.com/r/worldnews/comments/17h1fl5/lithuania_moves_to_ditch_controversial/", + "pubDate": "2023-10-26T17:14:12.000Z", + "author": "/u/KC_8580", + "content": "
\"Lithuania submitted by /u/KC_8580
[link] [comments]
", + "contentSnippet": "submitted by /u/KC_8580 \n [link] [comments]", + "id": "t3_17h1fl5", + "isoDate": "2023-10-26T17:14:12.000Z" + }, + { + "title": "Ukraine says its Black Sea grain corridor is working", + "link": "https://www.reddit.com/r/worldnews/comments/17gztvp/ukraine_says_its_black_sea_grain_corridor_is/", + "pubDate": "2023-10-26T16:02:53.000Z", + "author": "/u/TheDarthSnarf", + "content": "
\"Ukraine submitted by /u/TheDarthSnarf
[link] [comments]
", + "contentSnippet": "submitted by /u/TheDarthSnarf \n [link] [comments]", + "id": "t3_17gztvp", + "isoDate": "2023-10-26T16:02:53.000Z" + }, + { + "title": "Hamas Armed Wing Says 'Almost 50' Israeli Hostages Killed In Raids", + "link": "https://www.reddit.com/r/worldnews/comments/17gyub8/hamas_armed_wing_says_almost_50_israeli_hostages/", + "pubDate": "2023-10-26T15:17:48.000Z", + "author": "/u/the-zoidberg", + "content": "
\"Hamas submitted by /u/the-zoidberg
[link] [comments]
", + "contentSnippet": "submitted by /u/the-zoidberg \n [link] [comments]", + "id": "t3_17gyub8", + "isoDate": "2023-10-26T15:17:48.000Z" + }, + { + "title": "Macron: France to send navy ship to support Gaza hospitals", + "link": "https://www.reddit.com/r/worldnews/comments/17gymtw/macron_france_to_send_navy_ship_to_support_gaza/", + "pubDate": "2023-10-26T15:07:50.000Z", + "author": "/u/Free_Swimming", + "content": "
\"Macron: submitted by /u/Free_Swimming
[link] [comments]
", + "contentSnippet": "submitted by /u/Free_Swimming \n [link] [comments]", + "id": "t3_17gymtw", + "isoDate": "2023-10-26T15:07:50.000Z" + }, + { + "title": "Germany: Nationwide raids target neo-Nazi music scene", + "link": "https://www.reddit.com/r/worldnews/comments/17gxp4z/germany_nationwide_raids_target_neonazi_music/", + "pubDate": "2023-10-26T14:24:08.000Z", + "author": "/u/DoremusJessup", + "content": "
\"Germany: submitted by /u/DoremusJessup
[link] [comments]
", + "contentSnippet": "submitted by /u/DoremusJessup \n [link] [comments]", + "id": "t3_17gxp4z", + "isoDate": "2023-10-26T14:24:08.000Z" + }, + { + "title": "Russian media say Hamas delegation has arrived in Moscow", + "link": "https://www.reddit.com/r/worldnews/comments/17gxgcp/russian_media_say_hamas_delegation_has_arrived_in/", + "pubDate": "2023-10-26T14:12:17.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"Russian submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_17gxgcp", + "isoDate": "2023-10-26T14:12:17.000Z" + }, + { + "title": "India 'exploring all legal options' after Qatari court sentences 8 Indians to death for spying", + "link": "https://www.reddit.com/r/worldnews/comments/17gwk09/india_exploring_all_legal_options_after_qatari/", + "pubDate": "2023-10-26T13:29:22.000Z", + "author": "/u/Infidel8", + "content": "
\"India submitted by /u/Infidel8
[link] [comments]
", + "contentSnippet": "submitted by /u/Infidel8 \n [link] [comments]", + "id": "t3_17gwk09", + "isoDate": "2023-10-26T13:29:22.000Z" + }, + { + "title": "Nazi symbols resurface in Huwara for second time in 10 days", + "link": "https://www.reddit.com/r/worldnews/comments/17gvf95/nazi_symbols_resurface_in_huwara_for_second_time/", + "pubDate": "2023-10-26T12:31:21.000Z", + "author": "/u/omega3111", + "content": "
\"Nazi submitted by /u/omega3111
[link] [comments]
", + "contentSnippet": "submitted by /u/omega3111 \n [link] [comments]", + "id": "t3_17gvf95", + "isoDate": "2023-10-26T12:31:21.000Z" + }, + { + "title": "Qatar court sentences 8 ex-Indian Navy officers to death", + "link": "https://www.reddit.com/r/worldnews/comments/17gvbbn/qatar_court_sentences_8_exindian_navy_officers_to/", + "pubDate": "2023-10-26T12:25:24.000Z", + "author": "/u/chacko96", + "content": "
\"Qatar submitted by /u/chacko96
[link] [comments]
", + "contentSnippet": "submitted by /u/chacko96 \n [link] [comments]", + "id": "t3_17gvbbn", + "isoDate": "2023-10-26T12:25:24.000Z" + }, + { + "title": "Hamas spox storms off interview after question on massacre of civilians", + "link": "https://www.reddit.com/r/worldnews/comments/17hlyd0/hamas_spox_storms_off_interview_after_question_on/", + "pubDate": "2023-10-27T12:00:58.000Z", + "author": "/u/chedderbob234", + "content": "
\"Hamas submitted by /u/chedderbob234
[link] [comments]
", + "contentSnippet": "submitted by /u/chedderbob234 \n [link] [comments]", + "id": "t3_17hlyd0", + "isoDate": "2023-10-27T12:00:58.000Z" + }, + { + "title": "Blinken asks Qatar to \"tone down the rhetoric\" of Al Jazeera", + "link": "https://www.reddit.com/r/worldnews/comments/17hlc7r/blinken_asks_qatar_to_tone_down_the_rhetoric_of/", + "pubDate": "2023-10-27T11:22:59.000Z", + "author": "/u/Dependent-Luck6905", + "content": "
\"Blinken submitted by /u/Dependent-Luck6905
[link] [comments]
", + "contentSnippet": "submitted by /u/Dependent-Luck6905 \n [link] [comments]", + "id": "t3_17hlc7r", + "isoDate": "2023-10-27T11:22:59.000Z" + }, + { + "title": "Russian Navy mine hunter reportedly explodes in bay at Russian-occupied Sevastopol", + "link": "https://www.reddit.com/r/worldnews/comments/17hl96z/russian_navy_mine_hunter_reportedly_explodes_in/", + "pubDate": "2023-10-27T11:17:52.000Z", + "author": "/u/Silly-avocatoe", + "content": "
\"Russian submitted by /u/Silly-avocatoe
[link] [comments]
", + "contentSnippet": "submitted by /u/Silly-avocatoe \n [link] [comments]", + "id": "t3_17hl96z", + "isoDate": "2023-10-27T11:17:52.000Z" + }, + { + "title": "War in Ukraine: Russia suffering 'significant losses' in new offensive, White House says", + "link": "https://www.reddit.com/r/worldnews/comments/17hiyau/war_in_ukraine_russia_suffering_significant/", + "pubDate": "2023-10-27T08:34:28.000Z", + "author": "/u/gloriasilk", + "content": "
\"War submitted by /u/gloriasilk
[link] [comments]
", + "contentSnippet": "submitted by /u/gloriasilk \n [link] [comments]", + "id": "t3_17hiyau", + "isoDate": "2023-10-27T08:34:28.000Z" + }, + { + "title": "Quran-burning protester is ordered to leave Sweden but deportation on hold for now", + "link": "https://www.reddit.com/r/worldnews/comments/17hfg7m/quranburning_protester_is_ordered_to_leave_sweden/", + "pubDate": "2023-10-27T04:27:10.000Z", + "author": "/u/jussulent_tummy", + "content": "
\"Quran-burning submitted by /u/jussulent_tummy
[link] [comments]
", + "contentSnippet": "submitted by /u/jussulent_tummy \n [link] [comments]", + "id": "t3_17hfg7m", + "isoDate": "2023-10-27T04:27:10.000Z" + }, + { + "title": "Li Keqiang, former premier of China, dead after heart attack", + "link": "https://www.reddit.com/r/worldnews/comments/17hbjs2/li_keqiang_former_premier_of_china_dead_after/", + "pubDate": "2023-10-27T00:54:15.000Z", + "author": "/u/uhungma", + "content": "
\"Li submitted by /u/uhungma
[link] [comments]
", + "contentSnippet": "submitted by /u/uhungma \n [link] [comments]", + "id": "t3_17hbjs2", + "isoDate": "2023-10-27T00:54:15.000Z" + } +] diff --git a/intro to react/newData/oldNews/78f77fae2e1ffc14f759d22ea8b749b905e90fd6e981b1383905af956f7a06ce.json b/intro to react/newData/oldNews/78f77fae2e1ffc14f759d22ea8b749b905e90fd6e981b1383905af956f7a06ce.json index f66fb0d..d155d49 100644 --- a/intro to react/newData/oldNews/78f77fae2e1ffc14f759d22ea8b749b905e90fd6e981b1383905af956f7a06ce.json +++ b/intro to react/newData/oldNews/78f77fae2e1ffc14f759d22ea8b749b905e90fd6e981b1383905af956f7a06ce.json @@ -1,26636 +1,26636 @@ [ - { - "creator": "Zachary Woolfe", - "title": "When Henry Kissinger Became an Opera Character", - "link": "https://www.nytimes.com/2023/11/30/arts/music/henry-kissinger-nixon-in-china-opera.html", - "pubDate": "Thu, 30 Nov 2023 23:24:43 +0000", - "dc:creator": "Zachary Woolfe", - "content": "In 1987, \u201cNixon in China\u201d meditated on what was then recent history, depicting Kissinger as a smooth diplomat with a brutal side.", - "contentSnippet": "In 1987, \u201cNixon in China\u201d meditated on what was then recent history, depicting Kissinger as a smooth diplomat with a brutal side.", - "guid": "https://www.nytimes.com/2023/11/30/arts/music/henry-kissinger-nixon-in-china-opera.html", - "categories": [ - { - "_": "Opera", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kissinger, Henry A", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Adams, John (1947- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sellars, Peter", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nixon in China (Opera)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - } - ], - "isoDate": "2023-11-30T23:24:43.000Z" - }, - { - "creator": "The New York Times", - "title": "Israel-Hamas War: Blinken Urges Israel to Protect Gaza\u2019s Civilians if Truce Ends", - "link": "https://www.nytimes.com/live/2023/11/30/world/israel-hamas-gaza-war-news", - "pubDate": "Thu, 30 Nov 2023 23:01:07 +0000", - "dc:creator": "The New York Times", - "content": "The U.S. secretary of state went to Israel as part of a diplomatic push to extend a tenuous truce with Hamas, but in comments in Tel Aviv, he focused more on the next phase of Israel\u2019s offensive.", - "contentSnippet": "The U.S. secretary of state went to Israel as part of a diplomatic push to extend a tenuous truce with Hamas, but in comments in Tel Aviv, he focused more on the next phase of Israel\u2019s offensive.", - "guid": "https://www.nytimes.com/live/2023/11/30/world/israel-hamas-gaza-war-news", - "isoDate": "2023-11-30T23:01:07.000Z" - }, - { - "creator": "Alan Cowell", - "title": "Alistair Darling, Guiding Hand in Britain\u2019s Financial Crisis, Dies at 70", - "link": "https://www.nytimes.com/2023/11/30/world/europe/alistair-darling-dead.html", - "pubDate": "Thu, 30 Nov 2023 22:59:06 +0000", - "dc:creator": "Alan Cowell", - "content": "As the government\u2019s chief financial cabinet member, he helped stave off a broader economic collapse amid the global turmoil set off in 2008", - "contentSnippet": "As the government\u2019s chief financial cabinet member, he helped stave off a broader economic collapse amid the global turmoil set off in 2008", - "guid": "https://www.nytimes.com/2023/11/30/world/europe/alistair-darling-dead.html", - "categories": [ - { - "_": "Brown, Gordon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Recession and Depression", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Subprime Mortgage Crisis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "2008 financial crisis", - "$": { - "domain": "" - } - }, - { - "_": "Darling, Alistair", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-30T22:59:06.000Z" - }, - { - "creator": "Derek M. Norman", - "title": "A Timeline of Plots Against Sikh Activists, According to Canada and the U.S.", - "link": "https://www.nytimes.com/2023/11/30/world/asia/india-sikh-plot-timeline.html", - "pubDate": "Thu, 30 Nov 2023 22:52:44 +0000", - "dc:creator": "Derek M. Norman", - "content": "Officials in the United States and Canada have described two assassination attempts: the killing of a Sikh leader in British Columbia and a plan to murder an activist in New York.", - "contentSnippet": "Officials in the United States and Canada have described two assassination attempts: the killing of a Sikh leader in British Columbia and a plan to murder an activist in New York.", - "guid": "https://www.nytimes.com/2023/11/30/world/asia/india-sikh-plot-timeline.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Murders, Attempted Murders and Homicides", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Modi, Narendra", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nijjar, Hardeep Singh (1977-2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Pannun, Gurpatwant Singh", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Trudeau, Justin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "British Columbia (Canada)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Canada", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "India", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T22:52:44.000Z" - }, - { - "creator": "Talya Minsberg and Matthew Mpoke Bigg", - "title": "What We Know About the Israeli Hostages Hamas Released on Thursday", - "link": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hostages-released-thursday.html", - "pubDate": "Thu, 30 Nov 2023 22:45:12 +0000", - "dc:creator": "Talya Minsberg and Matthew Mpoke Bigg", - "content": "Eight Israeli hostages were freed, including dual nationals from Mexico, Russia and Uruguay.", - "contentSnippet": "Eight Israeli hostages were freed, including dual nationals from Mexico, Russia and Uruguay.", - "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hostages-released-thursday.html", - "categories": [ - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T22:45:12.000Z" - }, - { - "creator": "Norimitsu Onishi", - "title": "Sikh Assassination Plot in NY Bolsters Canada\u2019s Accusations Against India", - "link": "https://www.nytimes.com/2023/11/30/world/canada/india-assassination-plot-canada-sikh.html", - "pubDate": "Thu, 30 Nov 2023 21:58:30 +0000", - "dc:creator": "Norimitsu Onishi", - "content": "An indictment in a plot against a Sikh separatist in the United States provides details in a killing that has strained relations between Canada and India.", - "contentSnippet": "An indictment in a plot against a Sikh separatist in the United States provides details in a killing that has strained relations between Canada and India.", - "guid": "https://www.nytimes.com/2023/11/30/world/canada/india-assassination-plot-canada-sikh.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sikhs and Sikhism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carleton University", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Nijjar, Hardeep Singh (1977-2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gupta, Nikhil", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Trudeau, Justin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Canada", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "India", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T21:58:30.000Z" - }, - { - "creator": "Motoko Rich", - "title": "Daisaku Ikeda, Who Led Influential Japanese Buddhist Group, Dies at 95", - "link": "https://www.nytimes.com/2023/11/29/world/asia/daisaku-ikeda-dead.html", - "pubDate": "Thu, 30 Nov 2023 21:52:08 +0000", - "dc:creator": "Motoko Rich", - "content": "He grew Soka Gakkai International\u2019s following over two decades and helped create a coalition partner for the country\u2019s dominant Liberal Democratic Party.", - "contentSnippet": "He grew Soka Gakkai International\u2019s following over two decades and helped create a coalition partner for the country\u2019s dominant Liberal Democratic Party.", - "guid": "https://www.nytimes.com/2023/11/29/world/asia/daisaku-ikeda-dead.html", - "categories": [ - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Buddhism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ikeda, Daisaku (1928-2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Soka Gakkai", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Liberal Democratic Party (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T21:52:08.000Z" - }, - { - "creator": "Anushka Patil", - "title": "Palestinian Activist Ahed Tamimi Freed From Israeli Prison in Hostage Exchange", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/ahed-tamimi-prisoner-exchange.html", - "pubDate": "Thu, 30 Nov 2023 21:13:09 +0000", - "dc:creator": "Anushka Patil", - "content": "The 22-year-old activist was jailed for three weeks without being charged. Her arrest was one of thousands made during the Israeli military\u2019s crackdown in the occupied West Bank after the Hamas attacks on Oct. 7.", - "contentSnippet": "The 22-year-old activist was jailed for three weeks without being charged. Her arrest was one of thousands made during the Israeli military\u2019s crackdown in the occupied West Bank after the Hamas attacks on Oct. 7.", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/ahed-tamimi-prisoner-exchange.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Political Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T21:13:09.000Z" - }, - { - "creator": "Justin Porter", - "title": "Friday Briefing: A New Climate Fund Approved", - "link": "https://www.nytimes.com/2023/11/30/briefing/cop28-climate-talks-kissinger-hamas-israel-war.html", - "pubDate": "Thu, 30 Nov 2023 21:03:32 +0000", - "dc:creator": "Justin Porter", - "content": "Plus the best albums of 2023.", - "contentSnippet": "Plus the best albums of 2023.", - "guid": "https://www.nytimes.com/2023/11/30/briefing/cop28-climate-talks-kissinger-hamas-israel-war.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kissinger, Henry A", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T21:03:32.000Z" - }, - { - "creator": "The New York Times", - "title": "Kissinger Death: Diplomat Who Long Held the Global Stage Was Both Celebrated and Reviled", - "link": "https://www.nytimes.com/live/2023/11/29/us/henry-kissinger-death-news", - "pubDate": "Thu, 30 Nov 2023 20:56:46 +0000", - "dc:creator": "The New York Times", - "content": "In a reflection of Henry Kissinger\u2019s complicated legacy, his passing elicited sharply divergent opinions from admirers and critics.", - "contentSnippet": "In a reflection of Henry Kissinger\u2019s complicated legacy, his passing elicited sharply divergent opinions from admirers and critics.", - "guid": "https://www.nytimes.com/live/2023/11/29/us/henry-kissinger-death-news", - "isoDate": "2023-11-30T20:56:46.000Z" - }, - { - "creator": "John Yoon", - "title": "Why Some Korean Basketball Players Love the Bank Shot", - "link": "https://www.nytimes.com/2023/11/30/sports/basketball/bank-shot-south-korea-basketball.html", - "pubDate": "Thu, 30 Nov 2023 20:24:25 +0000", - "dc:creator": "John Yoon", - "content": "Banked free throws, an unorthodox technique, have a cult following in the Korean Basketball League.", - "contentSnippet": "Banked free throws, an unorthodox technique, have a cult following in the Korean Basketball League.", - "guid": "https://www.nytimes.com/2023/11/30/sports/basketball/bank-shot-south-korea-basketball.html", - "categories": [ - { - "_": "Basketball", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Korean Basketball League", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "North Carolina State University", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T20:24:25.000Z" - }, - { - "creator": "Abdi Latif Dahir and Elizabeth Paton", - "title": "Kenya Curbs Kenneth Kaunda\u2019s Famous Suit", - "link": "https://www.nytimes.com/2023/11/30/world/africa/kenya-kaunda-suit-parliament.html", - "pubDate": "Thu, 30 Nov 2023 19:29:40 +0000", - "dc:creator": "Abdi Latif Dahir and Elizabeth Paton", - "content": "A favorite of President William Ruto, the suit was banned along with other traditional African attire for violating parliamentary dress codes. Proper attire, the speaker decreed, is a Western suit and tie.", - "contentSnippet": "A favorite of President William Ruto, the suit was banned along with other traditional African attire for violating parliamentary dress codes. Proper attire, the speaker decreed, is a Western suit and tie.", - "guid": "https://www.nytimes.com/2023/11/30/world/africa/kenya-kaunda-suit-parliament.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Black People", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dress Codes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fashion and Apparel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits (Apparel)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Jonathan, Goodluck", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kagame, Paul", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kaunda, Kenneth D", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mandela, Nelson", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ruto, William", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Nairobi (Kenya)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kenya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T19:29:40.000Z" - }, - { - "creator": "David E. Sanger", - "title": "Henry Kissinger, Who Shaped U.S. Cold War History, Dies at 100", - "link": "https://www.nytimes.com/2023/11/29/us/henry-kissinger-dead.html", - "pubDate": "Thu, 30 Nov 2023 18:58:38 +0000", - "dc:creator": "David E. Sanger", - "content": "The most powerful secretary of state of the postwar era, he was both celebrated and reviled. His complicated legacy still resonates in relations with China, Russia and the Middle East.", - "contentSnippet": "The most powerful secretary of state of the postwar era, he was both celebrated and reviled. His complicated legacy still resonates in relations with China, Russia and the Middle East.", - "guid": "https://www.nytimes.com/2023/11/29/us/henry-kissinger-dead.html", - "categories": [ - { - "_": "Kissinger, Henry A", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "State Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Vietnam War", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "National Security Council", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Nixon, Richard Milhous", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Cold War Era", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Harvard University", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "USSR (Former Soviet Union)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T18:58:38.000Z" - }, - { - "creator": "Mujib Mashal and Hari Kumar", - "title": "An Alleged Plot\u2019s Burning Question: Why Would India Take the Risk?", - "link": "https://www.nytimes.com/2023/11/30/world/asia/india-us-sikh-new-york.html", - "pubDate": "Thu, 30 Nov 2023 18:39:29 +0000", - "dc:creator": "Mujib Mashal and Hari Kumar", - "content": "After an indictment accuses an Indian official of ordering an assassination on U.S. soil, diplomats and experts debate how far up the chain the scheme went.", - "contentSnippet": "After an indictment accuses an Indian official of ordering an assassination on U.S. soil, diplomats and experts debate how far up the chain the scheme went.", - "guid": "https://www.nytimes.com/2023/11/30/world/asia/india-us-sikh-new-york.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sikhs and Sikhism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Murders, Attempted Murders and Homicides", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Secession and Independence Movements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "India", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Modi, Narendra", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-30T18:39:29.000Z" - }, - { - "creator": "Katherine Rosman, Emma Bubola, Rachel Abrams and Russell Goldman", - "title": "Hostages Freed From Gaza Recount Violence, Hunger and Fear", - "link": "https://www.nytimes.com/2023/11/30/world/middleeast/israeli-hostages-stories.html", - "pubDate": "Thu, 30 Nov 2023 17:09:28 +0000", - "dc:creator": "Katherine Rosman, Emma Bubola, Rachel Abrams and Russell Goldman", - "content": "Hostages who have returned to Israel in the past week have come home malnourished, ill, injured and bearing psychological wounds.", - "contentSnippet": "Hostages who have returned to Israel in the past week have come home malnourished, ill, injured and bearing psychological wounds.", - "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/israeli-hostages-stories.html", - "categories": [ - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Idan, Avigail (2019- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-30T17:09:28.000Z" - }, - { - "creator": "Neil MacFarquhar", - "title": "Russia Asks Court to Label Gay Rights Movement as \u2018Extremist\u2019", - "link": "https://www.nytimes.com/2023/11/30/world/europe/russia-gay-rights-law.html", - "pubDate": "Thu, 30 Nov 2023 16:49:05 +0000", - "dc:creator": "Neil MacFarquhar", - "content": "Activists said the designation could put L.G.B.T.Q. people and their organizations under threat of criminal prosecution for something as simple as displaying the rainbow flag.", - "contentSnippet": "Activists said the designation could put L.G.B.T.Q. people and their organizations under threat of criminal prosecution for something as simple as displaying the rainbow flag.", - "guid": "https://www.nytimes.com/2023/11/30/world/europe/russia-gay-rights-law.html", - "categories": [ - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Homosexuality and Bisexuality", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Courts and the Judiciary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Discrimination", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Minorities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supreme Court of Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-11-30T16:49:05.000Z" - }, - { - "creator": "David Gelles", - "title": "Emirati Fund to Invest Billions in U.S. Firms for Climate Projects", - "link": "https://www.nytimes.com/2023/11/30/climate/emirati-fund-climate-cop28.html", - "pubDate": "Thu, 30 Nov 2023 16:39:28 +0000", - "dc:creator": "David Gelles", - "content": "An Abu Dhabi fund is expected to invest at least $30 billion in climate projects with some of the biggest names in North American finance.", - "contentSnippet": "An Abu Dhabi fund is expected to invest at least $30 billion in climate projects with some of the biggest names in North American finance.", - "guid": "https://www.nytimes.com/2023/11/30/climate/emirati-fund-climate-cop28.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United Nations Framework Convention on Climate Change", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alternative and Renewable Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "BlackRock Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Brookfield Asset Management", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-11-30T16:39:28.000Z" - }, - { - "creator": "Mark Landler", - "title": "How a Book Publishing \u2018Mistake\u2019 Reignited the U.K.\u2019s Royal Racism Furor", - "link": "https://www.nytimes.com/2023/11/30/world/europe/uk-royals-book-endgame-racism.html", - "pubDate": "Thu, 30 Nov 2023 16:38:36 +0000", - "dc:creator": "Mark Landler", - "content": "The rollout of \u201cEndgame\u201d caused a scandal after a quickly withdrawn translation named family members said to have asked about the skin color of Prince Harry and Meghan\u2019s future son.", - "contentSnippet": "The rollout of \u201cEndgame\u201d caused a scandal after a quickly withdrawn translation named family members said to have asked about the skin color of Prince Harry and Meghan\u2019s future son.", - "guid": "https://www.nytimes.com/2023/11/30/world/europe/uk-royals-book-endgame-racism.html", - "categories": [ - { - "_": "Royal Families", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Books and Literature", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Endgame: Inside the Royal Family and the Monarchy's Fight for Survival (Book)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Scobie, Omid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Book Trade and Publishing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Race and Ethnicity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Harry, Duke of Sussex", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Markle, Meghan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Charles III, King of the United Kingdom", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Catherine, Duchess of Cambridge", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Morgan, Piers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netherlands", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T16:38:36.000Z" - }, - { - "creator": "Aaron Boxerman", - "title": "Jerusalem Shooting Kills at Least 3 People, Israeli Officials Say", - "link": "https://www.nytimes.com/2023/11/30/world/middleeast/jerusalem-shooting.html", - "pubDate": "Thu, 30 Nov 2023 16:24:06 +0000", - "dc:creator": "Aaron Boxerman", - "content": "Israel\u2019s Shin Bet security service said the gunmen were Palestinian brothers from East Jerusalem who were affiliated with Hamas.", - "contentSnippet": "Israel\u2019s Shin Bet security service said the gunmen were Palestinian brothers from East Jerusalem who were affiliated with Hamas.", - "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/jerusalem-shooting.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Jerusalem (Israel)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "East Jerusalem", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Magen David Adom", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Shin Bet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-11-30T16:24:06.000Z" - }, - { - "creator": "The New York Times", - "title": "Henry Kissinger\u2019s Life and Work in Photos", - "link": "https://www.nytimes.com/2023/11/30/world/asia/henry-kissingers-photos.html", - "pubDate": "Thu, 30 Nov 2023 16:17:26 +0000", - "dc:creator": "The New York Times", - "content": "The U.S. diplomat rose from a bookish childhood in Germany to become a power player in the halls of American politics.", - "contentSnippet": "The U.S. diplomat rose from a bookish childhood in Germany to become a power player in the halls of American politics.", - "guid": "https://www.nytimes.com/2023/11/30/world/asia/henry-kissingers-photos.html", - "categories": [ - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kissinger, Henry A", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-30T16:17:26.000Z" - }, - { - "creator": "Roni Rabin, Gaya Gupta, Rachel Abrams and Katherine Rosman", - "title": "What We Know About Israeli Hostages Hamas Released on Wednesday", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/hostages-released-wednesday-hamas-israel.html", - "pubDate": "Thu, 30 Nov 2023 14:36:07 +0000", - "dc:creator": "Roni Rabin, Gaya Gupta, Rachel Abrams and Katherine Rosman", - "content": "The sixth round of hostage releases since the cease-fire began involved 10 Israelis, four Thai nationals and two Israeli-Russian dual citizens.", - "contentSnippet": "The sixth round of hostage releases since the cease-fire began involved 10 Israelis, four Thai nationals and two Israeli-Russian dual citizens.", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/hostages-released-wednesday-hamas-israel.html", - "categories": [ - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "USSR (Former Soviet Union)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-30T14:36:07.000Z" - }, - { - "creator": "Stephanie Nolen", - "title": "Climate Change Drives New Cases of Malaria, Complicating Efforts to Fight the Disease", - "link": "https://www.nytimes.com/2023/11/30/health/malaria-climate-change.html", - "pubDate": "Thu, 30 Nov 2023 14:09:18 +0000", - "dc:creator": "Stephanie Nolen", - "content": "The number of malaria cases rose again in 2022, propelled by flooding and warmer weather in areas once free of the illness.", - "contentSnippet": "The number of malaria cases rose again in 2022, propelled by flooding and warmer weather in areas once free of the illness.", - "guid": "https://www.nytimes.com/2023/11/30/health/malaria-climate-change.html", - "categories": [ - { - "_": "Malaria", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Floods", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supply Chain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Disease Rates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pesticides", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Two Thousand Twenty Two", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Vaccination and Immunization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Weather", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World Health Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ethiopia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pakistan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Nigeria", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Uganda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-30T14:09:18.000Z" - }, - { - "creator": "Christina Goldbaum and Hiba Yazbek", - "title": "West Bank Residents Praise Hamas for Palestinian Prisoners\u2019 Release", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/west-bank-hamas-prisoners.html", - "pubDate": "Thu, 30 Nov 2023 12:49:55 +0000", - "dc:creator": "Christina Goldbaum and Hiba Yazbek", - "content": "Some people in the West Bank, where frustration with the Palestinian Authority has been simmering for years, believe Hamas and other armed groups are the only ones they can trust to protect them.", - "contentSnippet": "Some people in the West Bank, where frustration with the Palestinian Authority has been simmering for years, believe Hamas and other armed groups are the only ones they can trust to protect them.", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/west-bank-hamas-prisoners.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "West Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "audio-neutral-informative", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-30T12:49:55.000Z" - }, - { - "creator": "Justin Porter", - "title": "Thursday Briefing: A Race to Extend the Gaza Truce", - "link": "https://www.nytimes.com/2023/11/29/briefing/hamas-israel-ceasefire-us-india-sikh-opec.html", - "pubDate": "Thu, 30 Nov 2023 12:49:08 +0000", - "dc:creator": "Justin Porter", - "content": "Plus the U.S. charges an Indian man in an assassination plot.", - "contentSnippet": "Plus the U.S. charges an Indian man in an assassination plot.", - "guid": "https://www.nytimes.com/2023/11/29/briefing/hamas-israel-ceasefire-us-india-sikh-opec.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Organization of the Petroleum Exporting Countries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "India", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sikhs and Sikhism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nijjar, Hardeep Singh (1977-2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-30T12:49:08.000Z" - }, - { - "creator": "Justin Porter", - "title": "Wednesday Briefing: What to Watch at the U.N. Climate Talks", - "link": "https://www.nytimes.com/2023/11/28/briefing/cop28-un-climate-summit-israel-hamas-truce-china-economy.html", - "pubDate": "Thu, 30 Nov 2023 12:48:52 +0000", - "dc:creator": "Justin Porter", - "content": "Plus how New Zealand\u2019s Maori Wardens keep the peace.", - "contentSnippet": "Plus how New Zealand\u2019s Maori Wardens keep the peace.", - "guid": "https://www.nytimes.com/2023/11/28/briefing/cop28-un-climate-summit-israel-hamas-truce-china-economy.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T12:48:52.000Z" - }, - { - "creator": "Mike Ives", - "title": "Kissinger\u2019s Legacy Still Ripples Through Vietnam and Cambodia", - "link": "https://www.nytimes.com/2023/11/30/world/asia/kissinger-cambodia-vietnam-war-crimes.html", - "pubDate": "Thu, 30 Nov 2023 12:38:48 +0000", - "dc:creator": "Mike Ives", - "content": "His decision to authorize the bombing of Cambodia, efforts to extricate the U.S. from the Vietnam War and role in the rapprochement with China continue to be felt in Southeast Asia.", - "contentSnippet": "His decision to authorize the bombing of Cambodia, efforts to extricate the U.S. from the Vietnam War and role in the rapprochement with China continue to be felt in Southeast Asia.", - "guid": "https://www.nytimes.com/2023/11/30/world/asia/kissinger-cambodia-vietnam-war-crimes.html", - "categories": [ - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cambodia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Vietnam War", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kissinger, Henry A", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Khmer Rouge", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-11-30T12:38:48.000Z" - }, - { - "creator": "Edward Wong", - "title": "Paul Whelan Attacked in Russian Prison, His Family Says", - "link": "https://www.nytimes.com/2023/11/30/world/europe/paul-whelan-attack-russia-prison.html", - "pubDate": "Thu, 30 Nov 2023 12:14:58 +0000", - "dc:creator": "Edward Wong", - "content": "Mr. Whelan, who is serving a 16-year sentence in a labor camp, told his family that another inmate struck him in the face.", - "contentSnippet": "Mr. Whelan, who is serving a 16-year sentence in a labor camp, told his family that another inmate struck him in the face.", - "guid": "https://www.nytimes.com/2023/11/30/world/europe/paul-whelan-attack-russia-prison.html", - "categories": [ - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Political Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Whelan, Paul N", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T12:14:58.000Z" - }, - { - "creator": "Jason Horowitz", - "title": "Pope\u2019s Critics Feel the Sting After His Patience Runs Out", - "link": "https://www.nytimes.com/2023/11/29/world/europe/pope-francis-american-cardinals.html", - "pubDate": "Thu, 30 Nov 2023 10:31:11 +0000", - "dc:creator": "Jason Horowitz", - "content": "Vatican observers see a leader more willing to crack down on those seeking to derail his agenda for the Roman Catholic Church.", - "contentSnippet": "Vatican observers see a leader more willing to crack down on those seeking to derail his agenda for the Roman Catholic Church.", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/pope-francis-american-cardinals.html", - "categories": [ - { - "_": "Cardinals (Roman Catholic Prelates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Priests", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Roman Catholic Church", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Benedict XVI", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Burke, Raymond L", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Francis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-30T10:31:11.000Z" - }, - { - "creator": "David Gelles", - "title": "COP28 Begins With Fossil Fuels, and Frustration, Going Strong", - "link": "https://www.nytimes.com/2023/11/30/climate/cop28-climate-dubai-un.html", - "pubDate": "Thu, 30 Nov 2023 09:00:15 +0000", - "dc:creator": "David Gelles", - "content": "After decades of meetings, nations still haven\u2019t agreed to curb the main driver of global warming.", - "contentSnippet": "After decades of meetings, nations still haven\u2019t agreed to curb the main driver of global warming.", - "guid": "https://www.nytimes.com/2023/11/30/climate/cop28-climate-dubai-un.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United Nations Framework Convention on Climate Change", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Developing Countries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alternative and Renewable Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Al Jaber, Sultan (1973- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Dubai (United Arab Emirates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pollution", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-30T09:00:15.000Z" - }, - { - "creator": "Brad Plumer and Nadja Popovich", - "title": "Where the World Is (and Isn\u2019t) Making Progress on Climate Change", - "link": "https://www.nytimes.com/2023/11/30/climate/cop28-global-progress-carbon-emissions.html", - "pubDate": "Thu, 30 Nov 2023 09:00:03 +0000", - "dc:creator": "Brad Plumer and Nadja Popovich", - "content": "Emissions from electricity and transportation are projected to fall over time, a new report finds, but industry remains a major climate challenge.", - "contentSnippet": "Emissions from electricity and transportation are projected to fall over time, a new report finds, but industry remains a major climate challenge.", - "guid": "https://www.nytimes.com/2023/11/30/climate/cop28-global-progress-carbon-emissions.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carbon Dioxide", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Energy and Power", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fuel Emissions (Transportation)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rhodium Group LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations Framework Convention on Climate Change", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-30T09:00:03.000Z" - }, - { - "creator": "Vivian Nereim", - "title": "The Dilemmas of the U.A.E., a Petrostate, Preparing to Host COP28", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/uae-un-climate-summit-cop28.html", - "pubDate": "Thu, 30 Nov 2023 08:30:53 +0000", - "dc:creator": "Vivian Nereim", - "content": "Climate activists have balked at the fact that a leading oil producer, the United Arab Emirates, is hosting this year\u2019s U.N. climate talks. But Emirati officials say they, too, are grappling with hard questions.", - "contentSnippet": "Climate activists have balked at the fact that a leading oil producer, the United Arab Emirates, is hosting this year\u2019s U.N. climate talks. But Emirati officials say they, too, are grappling with hard questions.", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/uae-un-climate-summit-cop28.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United Nations Framework Convention on Climate Change", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alternative and Renewable Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Al Jaber, Sultan (1973- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Abu Dhabi (United Arab Emirates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Dubai (United Arab Emirates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United Arab Emirates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T08:30:53.000Z" - }, - { - "creator": "Emma Bubola", - "title": "Government Offices in E.U. Can Ban Wearing of Religious Symbols", - "link": "https://www.nytimes.com/2023/11/29/world/europe/eu-religious-symbols-ban-government.html", - "pubDate": "Thu, 30 Nov 2023 07:15:21 +0000", - "dc:creator": "Emma Bubola", - "content": "The bloc\u2019s Court of Justice, ruling in the case of a female employee in Belgium who was told she could not wear a hijab in the office, said the restriction was lawful.", - "contentSnippet": "The bloc\u2019s Court of Justice, ruling in the case of a female employee in Belgium who was told she could not wear a hijab in the office, said the restriction was lawful.", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/eu-religious-symbols-ban-government.html", - "categories": [ - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "European Court of Justice", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Courts and the Judiciary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Belgium", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Government Employees", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Muslims and Islam", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Religion and Belief", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freedom of Religion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-30T07:15:21.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Thursday Briefing", - "link": "https://www.nytimes.com/2023/11/30/briefing/climate-kissinger-hamas-truce.html", - "pubDate": "Thu, 30 Nov 2023 05:54:40 +0000", - "dc:creator": "Natasha Frost", - "content": "The U.N. climate summit.", - "contentSnippet": "The U.N. climate summit.", - "guid": "https://www.nytimes.com/2023/11/30/briefing/climate-kissinger-hamas-truce.html", - "isoDate": "2023-11-30T05:54:40.000Z" - }, - { - "creator": "Matthew Mpoke Bigg", - "title": "Freed Israeli Hostages Feel Cycles of Emotion After Captivity, Families Say", - "link": "https://www.nytimes.com/2023/11/28/world/middleeast/hostages-hamas-israel-captivity.html", - "pubDate": "Thu, 30 Nov 2023 05:30:36 +0000", - "dc:creator": "Matthew Mpoke Bigg", - "content": "\u2018Everything is just so fragile,\u2019 said a cousin of the first two hostages freed last month.", - "contentSnippet": "\u2018Everything is just so fragile,\u2019 said a cousin of the first two hostages freed last month.", - "guid": "https://www.nytimes.com/2023/11/28/world/middleeast/hostages-hamas-israel-captivity.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-30T05:30:36.000Z" - }, - { - "creator": "Talya Minsberg", - "title": "Fears Grow Over Fate of Bibas Family in Gaza", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/bibas-family-israel-gaza.html", - "pubDate": "Thu, 30 Nov 2023 05:04:53 +0000", - "dc:creator": "Talya Minsberg", - "content": "Hamas\u2019s armed wing said a mother and her two young children had been killed in Israeli airstrikes. Israel\u2019s military said it was assessing the claim.", - "contentSnippet": "Hamas\u2019s armed wing said a mother and her two young children had been killed in Israeli airstrikes. Israel\u2019s military said it was assessing the claim.", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/bibas-family-israel-gaza.html", - "categories": [ - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-11-30T05:04:53.000Z" - }, - { - "creator": "Stanley Reed", - "title": "In a Shaky Oil Market, OPEC Has Bitter Decisions to Make", - "link": "https://www.nytimes.com/2023/11/29/business/energy-environment/opec-oil-prices.html", - "pubDate": "Thu, 30 Nov 2023 04:31:24 +0000", - "dc:creator": "Stanley Reed", - "content": "Anticipating a drop in demand for 2024, major producers, led by Saudi Arabia, are trying to reduce supply.", - "contentSnippet": "Anticipating a drop in demand for 2024, major producers, led by Saudi Arabia, are trying to reduce supply.", - "guid": "https://www.nytimes.com/2023/11/29/business/energy-environment/opec-oil-prices.html", - "categories": [ - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Production", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Organization of the Petroleum Exporting Countries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Saudi Aramco", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Saudi Arabia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-30T04:31:24.000Z" - }, - { - "creator": "Ben Hubbard", - "title": "Gaza Mediators Seek Cease-Fire Extension", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/israel-hamas-hostages-gaza.html", - "pubDate": "Thu, 30 Nov 2023 02:08:33 +0000", - "dc:creator": "Ben Hubbard", - "content": "Officials from Qatar, Egypt and the U.S. hope that a succession of pauses will pave the way toward a larger goal: bringing the war to a close.", - "contentSnippet": "Officials from Qatar, Egypt and the U.S. hope that a succession of pauses will pave the way toward a larger goal: bringing the war to a close.", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/israel-hamas-hostages-gaza.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Peace Process", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-30T02:08:33.000Z" - }, - { - "creator": "Vjosa Isai", - "title": "Google Agrees to Pay Canadian Media for Using Their Content", - "link": "https://www.nytimes.com/2023/11/29/world/americas/google-canada-news-media-deal.html", - "pubDate": "Wed, 29 Nov 2023 23:37:49 +0000", - "dc:creator": "Vjosa Isai", - "content": "The Canadian government reached a deal with Google before a new law compelling tech giants to compensate news organizations comes into effect late next month.", - "contentSnippet": "The Canadian government reached a deal with Google before a new law compelling tech giants to compensate news organizations comes into effect late next month.", - "guid": "https://www.nytimes.com/2023/11/29/world/americas/google-canada-news-media-deal.html", - "categories": [ - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Instagram Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Canada", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T23:37:49.000Z" - }, - { - "creator": "Eduardo Medina", - "title": "Britain Says Bye-Bye to Its Only Pandas as They\u2019ll Soon Depart for China", - "link": "https://www.nytimes.com/2023/11/29/world/europe/uk-pandas-return-china.html", - "pubDate": "Wed, 29 Nov 2023 22:57:16 +0000", - "dc:creator": "Eduardo Medina", - "content": "The playful, waddling bears charmed millions of people at the Edinburgh Zoo of the Royal Zoological Society of Scotland.", - "contentSnippet": "The playful, waddling bears charmed millions of people at the Edinburgh Zoo of the Royal Zoological Society of Scotland.", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/uk-pandas-return-china.html", - "categories": [ - { - "_": "Zoos", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pandas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Animals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Edinburgh (Scotland)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Scotland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T22:57:16.000Z" - }, - { - "creator": "Motoko Rich, Hikari Hida and Hisako Ueno", - "title": "1 Dead as U.S. Air Force Osprey Crashes in Southern Japan", - "link": "https://www.nytimes.com/2023/11/29/world/asia/us-osprey-crash-japan.html", - "pubDate": "Wed, 29 Nov 2023 22:18:19 +0000", - "dc:creator": "Motoko Rich, Hikari Hida and Hisako Ueno", - "content": "The incident comes three months after three Marines died in an Osprey crash in Australia.", - "contentSnippet": "The incident comes three months after three Marines died in an Osprey crash in Australia.", - "guid": "https://www.nytimes.com/2023/11/29/world/asia/us-osprey-crash-japan.html", - "categories": [ - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Aviation Accidents, Safety and Disasters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rescues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Air Force", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T22:18:19.000Z" - }, - { - "creator": "Catherine Porter and Aurelien Breeden", - "title": "\u00c9ric Dupond-Moretti, France\u2019s Justice Minister, Is Cleared of Abuse of Power", - "link": "https://www.nytimes.com/2023/11/29/world/europe/france-justice-minister-verdict.html", - "pubDate": "Wed, 29 Nov 2023 22:10:31 +0000", - "dc:creator": "Catherine Porter and Aurelien Breeden", - "content": "\u00c9ric Dupond-Moretti was charged with using his position as a weapon to order investigations into four magistrates he had recently clashed with.", - "contentSnippet": "\u00c9ric Dupond-Moretti was charged with using his position as a weapon to order investigations into four magistrates he had recently clashed with.", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/france-justice-minister-verdict.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Courts and the Judiciary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ethics and Official Misconduct", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conflicts of Interest", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dupond-Moretti, Eric", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Macron, Emmanuel (1977- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T22:10:31.000Z" - }, - { - "creator": "Amanda Taub", - "title": "Paris, 1919: History\u2019s Slingshot", - "link": "https://www.nytimes.com/2023/11/29/world/europe/paris-1919-historys-slingshot.html", - "pubDate": "Wed, 29 Nov 2023 21:56:07 +0000", - "dc:creator": "Amanda Taub", - "content": "What happened in early 20th century Europe still propels much of modern politics, including the conflict in Gaza and Israel.", - "contentSnippet": "What happened in early 20th century Europe still propels much of modern politics, including the conflict in Gaza and Israel.", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/paris-1919-historys-slingshot.html", - "categories": [ - { - "_": "internal-sub-only-nl", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Books and Literature", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World War I (1914-18)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Treaty of Versailles (1919)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "MacMillan, Margaret O (1943- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Lansing, Robert", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Tony Judt", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-29T21:56:07.000Z" - }, - { - "creator": "Yara Bayoumy", - "title": "Israeli Raid Kills 4 in West Bank, Palestinian Officials Say", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/israeli-raid-two-children-dead-jenin.html", - "pubDate": "Wed, 29 Nov 2023 21:37:31 +0000", - "dc:creator": "Yara Bayoumy", - "content": "Two children, ages 8 and 15, and two members of armed groups were killed in a raid in Jenin, according to the Palestinian health ministry and a camp official.", - "contentSnippet": "Two children, ages 8 and 15, and two members of armed groups were killed in a raid in Jenin, according to the Palestinian health ministry and a camp official.", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/israeli-raid-two-children-dead-jenin.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Jenin (West Bank)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T21:37:31.000Z" - }, - { - "creator": "Helene Cooper, Eric Schmitt and Julian E. Barnes", - "title": "Iranian and U.S. Attacks Could Lead to Larger War, Officials Say", - "link": "https://www.nytimes.com/2023/11/29/us/politics/israel-iran-gaza-us-attacks.html", - "pubDate": "Wed, 29 Nov 2023 21:32:58 +0000", - "dc:creator": "Helene Cooper, Eric Schmitt and Julian E. Barnes", - "content": "U.S. forces and militias backed by Iran have launched tit-for-tat attacks, fueling concerns as Israeli forces have also clashed with Iranian-backed groups.", - "contentSnippet": "U.S. forces and militias backed by Iran have launched tit-for-tat attacks, fueling concerns as Israeli forces have also clashed with Iranian-backed groups.", - "guid": "https://www.nytimes.com/2023/11/29/us/politics/israel-iran-gaza-us-attacks.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drones (Pilotless Planes)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-29T21:32:58.000Z" - }, - { - "creator": "Karoun Demirjian", - "title": "As Congress Weighs Aid to Israel, Some Democrats Want Strings Attached", - "link": "https://www.nytimes.com/2023/11/29/us/politics/israel-aid-senate.html", - "pubDate": "Wed, 29 Nov 2023 20:35:57 +0000", - "dc:creator": "Karoun Demirjian", - "content": "Democrats are clashing with each other and the Biden administration over whether to attach conditions, including measures to avoid civilian casualties, to security assistance.", - "contentSnippet": "Democrats are clashing with each other and the Biden administration over whether to attach conditions, including measures to avoid civilian casualties, to security assistance.", - "guid": "https://www.nytimes.com/2023/11/29/us/politics/israel-aid-senate.html", - "categories": [ - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Democratic Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T20:35:57.000Z" - }, - { - "creator": "Katherine Rosman", - "title": "Aunt of 4-Year-Old Israeli Hostage Talks About Her Time in Captivity", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/avigail-idan-israeli-hostage.html", - "pubDate": "Wed, 29 Nov 2023 19:16:12 +0000", - "dc:creator": "Katherine Rosman", - "content": "Avigail Idan shared one piece of pita bread per day with four others, and did not have a shower or bath during her 50 days in captivity, her aunt said.", - "contentSnippet": "Avigail Idan shared one piece of pita bread per day with four others, and did not have a shower or bath during her 50 days in captivity, her aunt said.", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/avigail-idan-israeli-hostage.html", - "categories": [ - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T19:16:12.000Z" - }, - { - "creator": "Isabella Kwai", - "title": "London\u2019s Black Cabs Can Soon Join Uber. But Will They?", - "link": "https://www.nytimes.com/2023/11/29/world/europe/uber-black-cab-taxi-london.html", - "pubDate": "Wed, 29 Nov 2023 18:59:25 +0000", - "dc:creator": "Isabella Kwai", - "content": "In 2024, passengers are set to have the option to book black cabs through Uber. After longstanding tensions, a union for drivers said they \u201chave no interest.\u201d", - "contentSnippet": "In 2024, passengers are set to have the option to book black cabs through Uber. After longstanding tensions, a union for drivers said they \u201chave no interest.\u201d", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/uber-black-cab-taxi-london.html", - "categories": [ - { - "_": "Taxicabs and Taxicab Drivers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Uber Technologies Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "London (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T18:59:25.000Z" - }, - { - "creator": "Elena Shao and Lazaro Gamio", - "title": "Here Are the Statuses of 240 Israeli Hostages Taken Into Gaza on Oct. 7", - "link": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-hamas-hostages-status.html", - "pubDate": "Wed, 29 Nov 2023 18:11:00 +0000", - "dc:creator": "Elena Shao and Lazaro Gamio", - "content": "Eighty-five of the roughly 240 people captured have now been released.", - "contentSnippet": "Eighty-five of the roughly 240 people captured have now been released.", - "guid": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-hamas-hostages-status.html", - "categories": [ - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "West Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T18:11:00.000Z" - }, - { - "creator": "Claire Moses", - "title": "Scottish Country Music Venue Ends Display of Confederate Flag", - "link": "https://www.nytimes.com/2023/11/29/world/europe/confederate-flag-grand-ole-opry-glasgow.html", - "pubDate": "Wed, 29 Nov 2023 18:05:46 +0000", - "dc:creator": "Claire Moses", - "content": "The flag, and efforts to ban it, had caused a rift among members of the Grand Ole Opry in Glasgow.", - "contentSnippet": "The flag, and efforts to ban it, had caused a rift among members of the Grand Ole Opry in Glasgow.", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/confederate-flag-grand-ole-opry-glasgow.html", - "categories": [ - { - "_": "Flags, Emblems and Insignia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Country Music", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Organizations, Societies and Clubs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civil War (US) (1861-65)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bars and Nightclubs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Glasgow (Scotland)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Confederate States of America", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T18:05:46.000Z" - }, - { - "creator": "Sheera Frenkel", - "title": "Some in Netanyahu\u2019s Government Pressure Him to Reject Longer Cease-Fire", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/netanyahu-cease-fire-politics.html", - "pubDate": "Wed, 29 Nov 2023 17:03:59 +0000", - "dc:creator": "Sheera Frenkel", - "content": "\u201cStopping the war = breaking apart the government,\u201d said Itamar Ben-Gvir, Israel\u2019s far-right national security minister, who threatened to leave the governing coalition.", - "contentSnippet": "\u201cStopping the war = breaking apart the government,\u201d said Itamar Ben-Gvir, Israel\u2019s far-right national security minister, who threatened to leave the governing coalition.", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/netanyahu-cease-fire-politics.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ben-Gvir, Itamar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T17:03:59.000Z" - }, - { - "creator": "Lara Jakes and Michael Crowley", - "title": "NATO Ministers Vow to Maintain Support for Ukraine", - "link": "https://www.nytimes.com/2023/11/29/world/europe/nato-blinken-ukraine.html", - "pubDate": "Wed, 29 Nov 2023 16:16:19 +0000", - "dc:creator": "Lara Jakes and Michael Crowley", - "content": "Amid questions over Western resolve, Secretary of State Antony J. Blinken and other diplomats stressed their commitment to Kyiv\u2019s bid to join the alliance.", - "contentSnippet": "Amid questions over Western resolve, Secretary of State Antony J. Blinken and other diplomats stressed their commitment to Kyiv\u2019s bid to join the alliance.", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/nato-blinken-ukraine.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Blinken, Antony J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Stoltenberg, Jens", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Brussels (Belgium)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "North Atlantic Treaty Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-11-29T16:16:19.000Z" - }, - { - "creator": "Mujib Mashal and Suhasini Raj", - "title": "India Ignored Repeated Warnings Before Tunnel Trapped 41 Men", - "link": "https://www.nytimes.com/2023/11/29/world/asia/india-tunnel-trapped.html", - "pubDate": "Wed, 29 Nov 2023 15:58:59 +0000", - "dc:creator": "Mujib Mashal and Suhasini Raj", - "content": "Environmentalists argued that a road project was destabilizing the fragile Himalayan landscape. The government maneuvered to continue it.", - "contentSnippet": "Environmentalists argued that a road project was destabilizing the fragile Himalayan landscape. The government maneuvered to continue it.", - "guid": "https://www.nytimes.com/2023/11/29/world/asia/india-tunnel-trapped.html", - "categories": [ - { - "_": "India", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Bridges and Tunnels", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rescues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Infrastructure (Public Works)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Modi, Narendra", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Uttarakhand (India)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T15:58:59.000Z" - }, - { - "creator": "Ben Hubbard, Thomas Fuller and Talya Minsberg", - "title": "Hamas Releases 12 More Hostages as Nations\u2019 Spy Chiefs Go to Qatar for Talks", - "link": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-hamas-hostages-prisoners-exchange.html", - "pubDate": "Wed, 29 Nov 2023 13:06:50 +0000", - "dc:creator": "Ben Hubbard, Thomas Fuller and Talya Minsberg", - "content": "Mediators hope the current model of a daily cease-fire with the release of Israeli captives in exchange for freeing Palestinian prisoners would create the conditions for longer-term discussions.", - "contentSnippet": "Mediators hope the current model of a daily cease-fire with the release of Israeli captives in exchange for freeing Palestinian prisoners would create the conditions for longer-term discussions.", - "guid": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-hamas-hostages-prisoners-exchange.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Qatar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T13:06:50.000Z" - }, - { - "creator": "Andr\u00e9s R. Mart\u00ednez", - "title": "The truce between Israel and Hamas held for another day.", - "link": "https://www.nytimes.com/2023/11/29/world/middleeast/the-truce-between-israel-and-hamas-appeared-to-hold-for-another-day.html", - "pubDate": "Wed, 29 Nov 2023 11:09:08 +0000", - "dc:creator": "Andr\u00e9s R. Mart\u00ednez", - "content": "", - "contentSnippet": "", - "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/the-truce-between-israel-and-hamas-appeared-to-hold-for-another-day.html", - "isoDate": "2023-11-29T11:09:08.000Z" - }, - { - "creator": "Christopher F. Schuetze", - "title": "Germany\u2019s Much-Vaunted Strategic Pivot Stalls", - "link": "https://www.nytimes.com/2023/11/29/world/europe/germany-military-strategic-pivot-stalls.html", - "pubDate": "Wed, 29 Nov 2023 10:02:48 +0000", - "dc:creator": "Christopher F. Schuetze", - "content": "In the days after Russia\u2019s invasion of Ukraine, Chancellor Olaf Scholz promised to revitalize Germany\u2019s military. Nearly two years on, major change has yet to be felt.", - "contentSnippet": "In the days after Russia\u2019s invasion of Ukraine, Chancellor Olaf Scholz promised to revitalize Germany\u2019s military. Nearly two years on, major change has yet to be felt.", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/germany-military-strategic-pivot-stalls.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Infrastructure (Public Works)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Scholz, Olaf (1958- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Germany", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T10:02:48.000Z" - }, - { - "creator": "Abdi Latif Dahir", - "title": "Kenya\u2019s Leader Lifts His Global Profile. At Home, the Public Fumes.", - "link": "https://www.nytimes.com/2023/11/29/world/africa/kenya-president-ruto.html", - "pubDate": "Wed, 29 Nov 2023 08:17:05 +0000", - "dc:creator": "Abdi Latif Dahir", - "content": "President William Ruto has drawn attention internationally as a climate champion and peace mediator but faces domestic discontent over rising food and fuel prices, and new taxes.", - "contentSnippet": "President William Ruto has drawn attention internationally as a climate champion and peace mediator but faces domestic discontent over rising food and fuel prices, and new taxes.", - "guid": "https://www.nytimes.com/2023/11/29/world/africa/kenya-president-ruto.html", - "categories": [ - { - "_": "Kenya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Nairobi (Kenya)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ruto, William", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation (Economics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Floods", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Haiti", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Police Brutality, Misconduct and Shootings", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kenyatta, Uhuru Muigai", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T08:17:05.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Wednesday Briefing", - "link": "https://www.nytimes.com/2023/11/29/briefing/biden-israel-climate-dubai.html", - "pubDate": "Wed, 29 Nov 2023 05:23:36 +0000", - "dc:creator": "Natasha Frost", - "content": "President Biden\u2019s solidarity with Israel.", - "contentSnippet": "President Biden\u2019s solidarity with Israel.", - "guid": "https://www.nytimes.com/2023/11/29/briefing/biden-israel-climate-dubai.html", - "isoDate": "2023-11-29T05:23:36.000Z" - }, - { - "creator": "Patrick Kingsley", - "title": "A Gaza Truce Aids Both Israel and Hamas. Until the Calculus Changes.", - "link": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-gaza-truce-analysis.html", - "pubDate": "Wed, 29 Nov 2023 01:22:24 +0000", - "dc:creator": "Patrick Kingsley", - "content": "Both Israel and Hamas are reaping benefits from the cease-fire, but as the hostage-for-prisoner exchanges continue, Israeli leaders may feel growing pressure to resume the war.", - "contentSnippet": "Both Israel and Hamas are reaping benefits from the cease-fire, but as the hostage-for-prisoner exchanges continue, Israeli leaders may feel growing pressure to resume the war.", - "guid": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-gaza-truce-analysis.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Peace Process", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T01:22:24.000Z" - }, - { - "creator": "Jason Horowitz and Ruth Graham", - "title": "Reports Say Pope Francis Is Removing Cardinal Burke\u2019s Vatican Home and Salary", - "link": "https://www.nytimes.com/2023/11/28/world/europe/pope-francis-cardinal-burke-vatican.html", - "pubDate": "Tue, 28 Nov 2023 22:54:16 +0000", - "dc:creator": "Jason Horowitz and Ruth Graham", - "content": "Word of the action against Cardinal Raymond Burke came after the prelate\u2019s increasingly pointed critiques of the reform-minded pope.", - "contentSnippet": "Word of the action against Cardinal Raymond Burke came after the prelate\u2019s increasingly pointed critiques of the reform-minded pope.", - "guid": "https://www.nytimes.com/2023/11/28/world/europe/pope-francis-cardinal-burke-vatican.html", - "categories": [ - { - "_": "Roman Catholic Church", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Francis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Popes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cardinals (Roman Catholic Prelates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Burke, Raymond L", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Vatican City", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-28T22:54:16.000Z" - }, - { - "creator": "Elisabetta Povoledo", - "title": "Pope Francis Cancels Trip to COP28 Climate Summit After Getting Sick", - "link": "https://www.nytimes.com/2023/11/28/world/europe/pope-francis-cop28.html", - "pubDate": "Tue, 28 Nov 2023 21:19:31 +0000", - "dc:creator": "Elisabetta Povoledo", - "content": "Days after the pontiff was forced to slow down because of a flu, his doctors advised him to not travel to Dubai for COP28. Francis has made climate activism a hallmark of his papacy.", - "contentSnippet": "Days after the pontiff was forced to slow down because of a flu, his doctors advised him to not travel to Dubai for COP28. Francis has made climate activism a hallmark of his papacy.", - "guid": "https://www.nytimes.com/2023/11/28/world/europe/pope-francis-cop28.html", - "categories": [ - { - "_": "Francis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Roman Catholic Church", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations Framework Convention on Climate Change", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Popes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dubai (United Arab Emirates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Vatican City", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-28T21:19:31.000Z" - }, - { - "creator": "James Wagner", - "title": "Return to Haiti of a Coup Leader Raises Concerns of More Turmoil", - "link": "https://www.nytimes.com/2023/11/30/world/americas/guy-philippe-haiti-return.html", - "pubDate": "Fri, 01 Dec 2023 01:24:00 +0000", - "dc:creator": "James Wagner", - "content": "Guy Philippe, who helped lead the coup that ousted President Jean-Bertrand Aristide in 2004, is back in the politically unstable country after serving time in a U.S. prison.", - "contentSnippet": "Guy Philippe, who helped lead the coup that ousted President Jean-Bertrand Aristide in 2004, is back in the politically unstable country after serving time in a U.S. prison.", - "guid": "https://www.nytimes.com/2023/11/30/world/americas/guy-philippe-haiti-return.html", - "categories": [ - { - "_": "Haiti", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Philippe, Guy (1968- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Moise, Jovenel (1968- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Aristide, Jean-Bertrand", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Coups D'Etat and Attempted Coups D'Etat", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-01T01:24:00.000Z" - }, - { - "creator": "Michael Crowley and Thomas Fuller", - "title": "Blinken Urges Israel to Reduce Civilian Deaths as More Hostages Are Freed", - "link": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hamas-peace-process.html", - "pubDate": "Fri, 01 Dec 2023 01:12:30 +0000", - "dc:creator": "Michael Crowley and Thomas Fuller", - "content": "Secretary of State Antony J. Blinken met with Israeli officials and a Palestinian leader on Thursday to seek improved conditions for Gaza\u2019s civilians and to try to exert influence over Israel\u2019s expected military offensive.", - "contentSnippet": "Secretary of State Antony J. Blinken met with Israeli officials and a Palestinian leader on Thursday to seek improved conditions for Gaza\u2019s civilians and to try to exert influence over Israel\u2019s expected military offensive.", - "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hamas-peace-process.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Peace Process", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-01T01:12:30.000Z" - }, - { - "creator": "Katie Rogers, Julian E. Barnes and Glenn Thrush", - "title": "Biden\u2019s Bond With Modi, India\u2019s Leader, Is Tested by Alleged Plot", - "link": "https://www.nytimes.com/2023/11/30/us/politics/biden-india-modi-sikh-plot.html", - "pubDate": "Fri, 01 Dec 2023 01:03:40 +0000", - "dc:creator": "Katie Rogers, Julian E. Barnes and Glenn Thrush", - "content": "The charges illustrate how complicated it can be for American presidents to balance their relationships with deeply imperfect allies.", - "contentSnippet": "The charges illustrate how complicated it can be for American presidents to balance their relationships with deeply imperfect allies.", - "guid": "https://www.nytimes.com/2023/11/30/us/politics/biden-india-modi-sikh-plot.html", - "categories": [ - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sikhs and Sikhism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Justice Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Canada", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "India", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "New York State", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-01T01:03:40.000Z" - }, - { - "creator": "Ronen Bergman and Adam Goldman", - "title": "Israel Knew Hamas\u2019s Attack Plan Over a Year Ago", - "link": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hamas-attack-intelligence.html", - "pubDate": "Fri, 01 Dec 2023 00:24:33 +0000", - "dc:creator": "Ronen Bergman and Adam Goldman", - "content": "A blueprint reviewed by The Times laid out the attack in detail. Israeli officials dismissed it as aspirational and ignored specific warnings.", - "contentSnippet": "A blueprint reviewed by The Times laid out the attack in detail. Israeli officials dismissed it as aspirational and ignored specific warnings.", - "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hamas-attack-intelligence.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Border Barriers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-01T00:24:33.000Z" - }, - { - "creator": "Adam Satariano, Megan Specia and Glenn Thrush", - "title": "UK Accuses Russia of Yearslong Cyberattacks", - "link": "https://www.nytimes.com/2023/12/07/world/europe/uk-russia-cyberattacks.html", - "pubDate": "Fri, 08 Dec 2023 08:13:40 +0000", - "dc:creator": "Adam Satariano, Megan Specia and Glenn Thrush", - "content": "The government said a group linked to Russia\u2019s intelligence service carried out sustained operations to undermine trust in Britain\u2019s political system.", - "contentSnippet": "The government said a group linked to Russia\u2019s intelligence service carried out sustained operations to undermine trust in Britain\u2019s political system.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/uk-russia-cyberattacks.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cyberwarfare and Defense", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Cameron, David", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Federal Security Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-08T08:13:40.000Z" - }, - { - "creator": "The New York Times", - "title": "Israel-Hamas War: Israel Releases Evidence It Says Shows Hamas Operates Near Civilian Shelters", - "link": "https://www.nytimes.com/live/2023/12/07/world/israel-hamas-war-gaza-news", - "pubDate": "Fri, 08 Dec 2023 07:42:35 +0000", - "dc:creator": "The New York Times", - "content": "The Israeli military posted unverified videos and maps that it claims showed rockets had been fired from areas in southern Gaza where civilians were seeking shelter.", - "contentSnippet": "The Israeli military posted unverified videos and maps that it claims showed rockets had been fired from areas in southern Gaza where civilians were seeking shelter.", - "guid": "https://www.nytimes.com/live/2023/12/07/world/israel-hamas-war-gaza-news", - "isoDate": "2023-12-08T07:42:35.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Friday Briefing", - "link": "https://www.nytimes.com/2023/12/08/briefing/hamas-israel-ukraine-sunak.html", - "pubDate": "Fri, 08 Dec 2023 05:21:35 +0000", - "dc:creator": "Natasha Frost", - "content": "Israeli allegations about Hamas\u2019s tactics.", - "contentSnippet": "Israeli allegations about Hamas\u2019s tactics.", - "guid": "https://www.nytimes.com/2023/12/08/briefing/hamas-israel-ukraine-sunak.html", - "isoDate": "2023-12-08T05:21:35.000Z" - }, - { - "creator": "Talya Minsberg", - "title": "In Israel, Hanukkah Begins in the Shadow of Two Months of War", - "link": "https://www.nytimes.com/2023/12/07/world/middleeast/hanukkah-israel-war.html", - "pubDate": "Fri, 08 Dec 2023 04:36:58 +0000", - "dc:creator": "Talya Minsberg", - "content": "The holiday held a new meaning for many Israelis in the wake of the Oct. 7 terrorist attacks, including relatives of people still held hostage in Gaza and reservists called up to fight against Hamas.", - "contentSnippet": "The holiday held a new meaning for many Israelis in the wake of the Oct. 7 terrorist attacks, including relatives of people still held hostage in Gaza and reservists called up to fight against Hamas.", - "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/hanukkah-israel-war.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hanukkah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Jews and Judaism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Tel Aviv (Israel)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-08T04:36:58.000Z" - }, - { - "creator": "Zolan Kanno-Youngs", - "title": "Biden Tied Ukraine Aid to Border Security, and It Backfired on Him", - "link": "https://www.nytimes.com/2023/12/07/us/politics/biden-immigration-ukraine.html", - "pubDate": "Fri, 08 Dec 2023 01:44:28 +0000", - "dc:creator": "Zolan Kanno-Youngs", - "content": "President Biden faces difficult choices about how far to go in giving in to conservative demands that he choke off the number of migrants admitted to the United States.", - "contentSnippet": "President Biden faces difficult choices about how far to go in giving in to conservative demands that he choke off the number of migrants admitted to the United States.", - "guid": "https://www.nytimes.com/2023/12/07/us/politics/biden-immigration-ukraine.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asylum, Right of", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-08T01:44:28.000Z" - }, - { - "creator": "Liam Stack, Yara Bayoumy, Aric Toler, Lauren Leatherby and Michael Levenson", - "title": "Israel Says Hamas Fired Rockets From Near Gaza Shelters", - "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-hamas-gaza-rockets.html", - "pubDate": "Fri, 08 Dec 2023 00:40:38 +0000", - "dc:creator": "Liam Stack, Yara Bayoumy, Aric Toler, Lauren Leatherby and Michael Levenson", - "content": "The claim adds to the growing concerns that there is no safe place in the enclave for those who have been displaced since the war began.", - "contentSnippet": "The claim adds to the growing concerns that there is no safe place in the enclave for those who have been displaced since the war began.", - "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-hamas-gaza-rockets.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-08T00:40:38.000Z" - }, - { - "creator": "Ana Swanson", - "title": "Lawmakers Press Biden Administration for Tougher Curbs on China Tech", - "link": "https://www.nytimes.com/2023/12/07/us/politics/lawmakers-biden-china-tech.html", - "pubDate": "Thu, 07 Dec 2023 23:57:02 +0000", - "dc:creator": "Ana Swanson", - "content": "Republican legislators argue that the Biden administration has been ill-equipped and unmotivated in a technology fight with Beijing.", - "contentSnippet": "Republican legislators argue that the Biden administration has been ill-equipped and unmotivated in a technology fight with Beijing.", - "guid": "https://www.nytimes.com/2023/12/07/us/politics/lawmakers-biden-china-tech.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Trade and World Market", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Chips", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Commerce Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "House Committee on Foreign Affairs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T23:57:02.000Z" - }, - { - "creator": "Niki Kitsantonis and Safak Timur", - "title": "Greece and Turkey, Long at Odds, Vow to Work Together Peacefully", - "link": "https://www.nytimes.com/2023/12/07/world/europe/greece-turkey-declaration-of-friendly-relations.html", - "pubDate": "Thu, 07 Dec 2023 22:59:07 +0000", - "dc:creator": "Niki Kitsantonis and Safak Timur", - "content": "The two rivals have been at the brink of military conflict several times in recent decades. An agreement signed by the countries\u2019 leaders on Thursday aims to change that.", - "contentSnippet": "The two rivals have been at the brink of military conflict several times in recent decades. An agreement signed by the countries\u2019 leaders on Thursday aims to change that.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/greece-turkey-declaration-of-friendly-relations.html", - "categories": [ - { - "_": "Greece", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Turkey", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Erdogan, Recep Tayyip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mitsotakis, Kyriakos", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-07T22:59:07.000Z" - }, - { - "creator": "Claire Moses", - "title": "Benjamin Zephaniah, Poet of Social Justice Issues, Dies at 65", - "link": "https://www.nytimes.com/2023/12/07/world/europe/benjamin-zephaniah-dead.html", - "pubDate": "Thu, 07 Dec 2023 22:32:37 +0000", - "dc:creator": "Claire Moses", - "content": "He opened the door for future generations of poets of color to use their own voices.", - "contentSnippet": "He opened the door for future generations of poets of color to use their own voices.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/benjamin-zephaniah-dead.html", - "categories": [ - { - "_": "Zephaniah, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Poetry and Poets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Books and Literature", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Race and Ethnicity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Black People", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T22:32:37.000Z" - }, - { - "creator": "Maya Tekeli and Emma Bubola", - "title": "Denmark Bans Quran Burning", - "link": "https://www.nytimes.com/2023/12/07/world/europe/denmark-quran-burning-ban.html", - "pubDate": "Thu, 07 Dec 2023 21:46:43 +0000", - "dc:creator": "Maya Tekeli and Emma Bubola", - "content": "The law came after a series of public Quran burnings in Scandinavia caused uproar in Muslim communities.", - "contentSnippet": "The law came after a series of public Quran burnings in Scandinavia caused uproar in Muslim communities.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/denmark-quran-burning-ban.html", - "categories": [ - { - "_": "Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Koran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freedom of Speech and Expression", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sweden", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T21:46:43.000Z" - }, - { - "creator": "Mark Landler and Stephen Castle", - "title": "What Kevin McCarthy and Rishi Sunak Have in Common: Unmanageable Parties", - "link": "https://www.nytimes.com/2023/12/07/world/europe/kevin-mccarthy-rishi-sunak-rwanda-gop.html", - "pubDate": "Thu, 07 Dec 2023 21:42:21 +0000", - "dc:creator": "Mark Landler and Stephen Castle", - "content": "A former speaker of the U.S. House and the British prime minister have struggled to corral the extreme right factions of their parties.", - "contentSnippet": "A former speaker of the U.S. House and the British prime minister have struggled to corral the extreme right factions of their parties.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/kevin-mccarthy-rishi-sunak-rwanda-gop.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain Withdrawal from EU (Brexit)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asylum, Right of", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Legislatures and Parliaments", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "McCarthy, Kevin (1965- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sunak, Rishi (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T21:42:21.000Z" - }, - { - "creator": "Isabel Kershner", - "title": "Son of Israeli War Cabinet Member Killed in Action in Gaza", - "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-war-cabinet-member-son-killed.html", - "pubDate": "Thu, 07 Dec 2023 21:34:41 +0000", - "dc:creator": "Isabel Kershner", - "content": "Gal Meir Eisenkot, 25, was the son of Lt. Gen. Gadi Eisenkot, a former military chief who went into politics and is part of the group directing the war effort.", - "contentSnippet": "Gal Meir Eisenkot, 25, was the son of Lt. Gen. Gadi Eisenkot, a former military chief who went into politics and is part of the group directing the war effort.", - "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-war-cabinet-member-son-killed.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Eisenkot, Gadi", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-07T21:34:41.000Z" - }, - { - "creator": "Jonathan Wolfe", - "title": "Friday Briefing: Israel Says Hamas Fired Rockets From Near Shelters", - "link": "https://www.nytimes.com/2023/12/07/briefing/friday-briefing-israel-says-hamas-fired-rockets-from-near-shelters.html", - "pubDate": "Thu, 07 Dec 2023 21:17:05 +0000", - "dc:creator": "Jonathan Wolfe", - "content": "Plus, \u201cOppenheimer\u201d is coming to Japan.", - "contentSnippet": "Plus, \u201cOppenheimer\u201d is coming to Japan.", - "guid": "https://www.nytimes.com/2023/12/07/briefing/friday-briefing-israel-says-hamas-fired-rockets-from-near-shelters.html", - "isoDate": "2023-12-07T21:17:05.000Z" - }, - { - "creator": "Alan Rappeport and Zolan Kanno-Youngs", - "title": "U.S. and Mexico Try to Promote Trade While Curbing Flow of Fentanyl", - "link": "https://www.nytimes.com/2023/12/07/us/politics/us-mexico-trade-fentanyl.html", - "pubDate": "Thu, 07 Dec 2023 21:08:52 +0000", - "dc:creator": "Alan Rappeport and Zolan Kanno-Youngs", - "content": "In her Mexico City visit, Treasury Secretary Janet L. Yellen sought to deepen economic ties while countering drug trafficking.", - "contentSnippet": "In her Mexico City visit, Treasury Secretary Janet L. Yellen sought to deepen economic ties while countering drug trafficking.", - "guid": "https://www.nytimes.com/2023/12/07/us/politics/us-mexico-trade-fentanyl.html", - "categories": [ - { - "_": "Fentanyl", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Economy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supply Chain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Investments", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation Reduction Act of 2022", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Treasury Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Yellen, Janet L", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Lopez Obrador, Andres Manuel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mexico", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T21:08:52.000Z" - }, - { - "creator": "Dennis Overbye and Katrina Miller", - "title": "Particle Physicists Offer a Road Map For the Next Decade", - "link": "https://www.nytimes.com/2023/12/07/science/particle-physics-muon-collider.html", - "pubDate": "Thu, 07 Dec 2023 20:12:19 +0000", - "dc:creator": "Dennis Overbye and Katrina Miller", - "content": "A \u201cmuon shot\u201d aims to study the basic forces of the cosmos. But meager federal budgets could limit its ambitions.", - "contentSnippet": "A \u201cmuon shot\u201d aims to study the basic forces of the cosmos. But meager federal budgets could limit its ambitions.", - "guid": "https://www.nytimes.com/2023/12/07/science/particle-physics-muon-collider.html", - "categories": [ - { - "_": "Federal Budget (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Physics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Large Hadron Collider", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Higgs Boson", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dark Matter (Astronomy)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "CERN", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Energy Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Fermi National Accelerator Laboratory", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Science Foundation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Illinois", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T20:12:19.000Z" - }, - { - "creator": "Matthew Mpoke Bigg", - "title": "Key Events in Israel and Gaza Since Oct. 7 Attack", - "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-gaza-hamas-war-timeline.html", - "pubDate": "Thu, 07 Dec 2023 20:11:52 +0000", - "dc:creator": "Matthew Mpoke Bigg", - "content": "On Oct. 7, Hamas and other militant groups launched an attack in Israel that killed hundreds. Israel responded with a military campaign that has devastated Gaza.", - "contentSnippet": "On Oct. 7, Hamas and other militant groups launched an attack in Israel that killed hundreds. Israel responded with a military campaign that has devastated Gaza.", - "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-gaza-hamas-war-timeline.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-07T20:11:52.000Z" - }, - { - "creator": "Victor Mather", - "title": "A City-Size Iceberg Is Moving Out of Antarctic Waters", - "link": "https://www.nytimes.com/2023/12/07/climate/iceberg-antarctica-a23a.html", - "pubDate": "Thu, 07 Dec 2023 20:05:49 +0000", - "dc:creator": "Victor Mather", - "content": "Next up, a yearslong ramble through the Southern Ocean and, eventually, a big melt.", - "contentSnippet": "Next up, a yearslong ramble through the Southern Ocean and, eventually, a big melt.", - "guid": "https://www.nytimes.com/2023/12/07/climate/iceberg-antarctica-a23a.html", - "categories": [ - { - "_": "Ice", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Antarctic Regions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Glaciers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oceans and Seas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Lamont-Doherty Earth Observatory", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Southern Ocean", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T20:05:49.000Z" - }, - { - "creator": "Megan Specia", - "title": "Ireland\u2019s Riot Was Not a Surprise to Those Who Watch the Far Right", - "link": "https://www.nytimes.com/2023/12/07/world/europe/dublin-riot-far-right.html", - "pubDate": "Thu, 07 Dec 2023 19:55:49 +0000", - "dc:creator": "Megan Specia", - "content": "The disorder in Dublin on Nov. 23 may have appeared to come from nowhere. But experts say it reflected long-running social problems and an emboldened anti-immigrant movement.", - "contentSnippet": "The disorder in Dublin on Nov. 23 may have appeared to come from nowhere. But experts say it reflected long-running social problems and an emboldened anti-immigrant movement.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/dublin-riot-far-right.html", - "categories": [ - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Varadkar, Leo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Dublin (Ireland)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ireland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T19:55:49.000Z" - }, - { - "creator": "Aric Toler and Lauren Leatherby", - "title": "Here is what we know about Israel\u2019s evidence that Hamas fired rockets from safe zones.", - "link": "https://www.nytimes.com/2023/12/08/world/middleeast/here-is-what-we-know-about-israels-evidence-that-hamas-fired-rockets-from-safe-zones.html", - "pubDate": "Thu, 07 Dec 2023 19:37:03 +0000", - "dc:creator": "Aric Toler and Lauren Leatherby", - "content": "", - "contentSnippet": "", - "guid": "https://www.nytimes.com/2023/12/08/world/middleeast/here-is-what-we-know-about-israels-evidence-that-hamas-fired-rockets-from-safe-zones.html", - "isoDate": "2023-12-07T19:37:03.000Z" - }, - { - "creator": "Marc Santora, Lara Jakes and Andrew E. Kramer", - "title": "Ukraine Carries On Fight While Pondering an Erosion of U.S. Aid", - "link": "https://www.nytimes.com/2023/12/07/world/europe/ukraine-us-aid-senate.html", - "pubDate": "Thu, 07 Dec 2023 19:19:22 +0000", - "dc:creator": "Marc Santora, Lara Jakes and Andrew E. Kramer", - "content": "The government in Kyiv remains hopeful of further American assistance, but it is also looking to other resources \u2014 and trying to make clear what could be at stake.", - "contentSnippet": "The government in Kyiv remains hopeful of further American assistance, but it is also looking to other resources \u2014 and trying to make clear what could be at stake.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/ukraine-us-aid-senate.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Borrell Fontelles, Josep", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-07T19:19:22.000Z" - }, - { - "creator": "Matthew Mpoke Bigg and Hwaida Saad", - "title": "Strike That Killed Reuters Journalist Was \u2018Apparently Deliberate\u2019 Israeli Attack, Group Says", - "link": "https://www.nytimes.com/2023/12/07/world/middleeast/reuters-journalist-killed-lebanon-israel-hrw.html", - "pubDate": "Thu, 07 Dec 2023 18:45:36 +0000", - "dc:creator": "Matthew Mpoke Bigg and Hwaida Saad", - "content": "Human Rights Watch found that the slain journalist and six colleagues were not near active fighting in southern Lebanon and would have been clearly visible to Israeli forces.", - "contentSnippet": "Human Rights Watch found that the slain journalist and six colleagues were not near active fighting in southern Lebanon and would have been clearly visible to Israeli forces.", - "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/reuters-journalist-killed-lebanon-israel-hrw.html", - "categories": [ - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Lebanon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Thomson Reuters Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T18:45:36.000Z" - }, - { - "creator": "Abdi Latif Dahir and John Yoon", - "title": "Seychelles Declares State of Emergency After Blast at Explosives Depot", - "link": "https://www.nytimes.com/2023/12/07/world/africa/seychelles-explosion-emergency.html", - "pubDate": "Thu, 07 Dec 2023 18:22:22 +0000", - "dc:creator": "Abdi Latif Dahir and John Yoon", - "content": "Seychelles declared a state of emergency after the explosion, which came on the heels of deadly flooding in the country.", - "contentSnippet": "Seychelles declared a state of emergency after the explosion, which came on the heels of deadly flooding in the country.", - "guid": "https://www.nytimes.com/2023/12/07/world/africa/seychelles-explosion-emergency.html", - "categories": [ - { - "_": "Seychelles Islands", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Explosions (Accidental)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Disasters and Emergencies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Indian Ocean", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T18:22:22.000Z" - }, - { - "creator": "Stephen Castle and Abdi Latif Dahir", - "title": "New U.K. Asylum Bill Aims to Override Some Human Rights Law", - "link": "https://www.nytimes.com/2023/12/06/world/europe/uk-bill-asylum-rwanda.html", - "pubDate": "Thu, 07 Dec 2023 18:13:21 +0000", - "dc:creator": "Stephen Castle and Abdi Latif Dahir", - "content": "Britain\u2019s prime minister unveiled emergency legislation to salvage a highly contested scheme to deport asylum seekers to the African country. It wasn\u2019t enough for his immigration minister.", - "contentSnippet": "Britain\u2019s prime minister unveiled emergency legislation to salvage a highly contested scheme to deport asylum seekers to the African country. It wasn\u2019t enough for his immigration minister.", - "guid": "https://www.nytimes.com/2023/12/06/world/europe/uk-bill-asylum-rwanda.html", - "categories": [ - { - "_": "Asylum, Right of", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Human Rights and Human Rights Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sunak, Rishi (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Rwanda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kagame, Paul", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-07T18:13:21.000Z" - }, - { - "creator": "Ivan Nechepurenko", - "title": "Russia Sets Date for Presidential Election", - "link": "https://www.nytimes.com/2023/12/07/world/europe/russia-presidential-election.html", - "pubDate": "Thu, 07 Dec 2023 17:26:09 +0000", - "dc:creator": "Ivan Nechepurenko", - "content": "The winner of the contest is widely seen as a foregone conclusion: Vladimir V. Putin.", - "contentSnippet": "The winner of the contest is widely seen as a foregone conclusion: Vladimir V. Putin.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/russia-presidential-election.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Elections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T17:26:09.000Z" - }, - { - "creator": "Farnaz Fassihi", - "title": "U.N. Secretary General Invokes Article 99, Asking to Declare a Cease-Fire in Gaza", - "link": "https://www.nytimes.com/2023/12/07/world/middleeast/un-article-99-gaza-cease-fire.html", - "pubDate": "Thu, 07 Dec 2023 15:47:47 +0000", - "dc:creator": "Farnaz Fassihi", - "content": "The move was a major step by the secretary general, Ant\u00f3nio Guterres, in his efforts to stop the war, which he described as a humanitarian disaster that threatened international security.", - "contentSnippet": "The move was a major step by the secretary general, Ant\u00f3nio Guterres, in his efforts to stop the war, which he described as a humanitarian disaster that threatened international security.", - "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/un-article-99-gaza-cease-fire.html", - "categories": [ - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Security Council (UN)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Guterres, Antonio", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-07T15:47:47.000Z" - }, - { - "creator": "Claire Moses", - "title": "U.S. Marshal Arrested After Unruly Behavior on Flight to London", - "link": "https://www.nytimes.com/2023/12/07/world/europe/us-marshal-sexual-assault-flight-london.html", - "pubDate": "Thu, 07 Dec 2023 15:45:59 +0000", - "dc:creator": "Claire Moses", - "content": "The police in London said the 39-year-old \u201cwas disruptive and had sexually assaulted other passengers and crew.\u201d", - "contentSnippet": "The police in London said the 39-year-old \u201cwas disruptive and had sexually assaulted other passengers and crew.\u201d", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/us-marshal-sexual-assault-flight-london.html", - "categories": [ - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Marshals Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-07T15:45:59.000Z" - }, - { - "creator": "Maria Varenikova and Marc Santora", - "title": "Ukrainian Troops Feel the Bite of Polish Truckers\u2019 Protest", - "link": "https://www.nytimes.com/2023/12/07/world/europe/poland-ukraine-truckers-blockade.html", - "pubDate": "Thu, 07 Dec 2023 15:33:33 +0000", - "dc:creator": "Maria Varenikova and Marc Santora", - "content": "A border blockade by haulers angry that the European Union has suspended a permit system for their Ukrainian counterparts has led to problems with deliveries of wartime supplies.", - "contentSnippet": "A border blockade by haulers angry that the European Union has suspended a permit system for their Ukrainian counterparts has led to problems with deliveries of wartime supplies.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/poland-ukraine-truckers-blockade.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Trucks and Trucking", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Poland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T15:33:33.000Z" - }, - { - "creator": "Isabella Kwai", - "title": "\u2018Oppenheimer\u2019 Will Be Released in Japan After Earlier Backlash", - "link": "https://www.nytimes.com/2023/12/07/world/asia/japan-barbenheimer-oppenheimer-release.html", - "pubDate": "Thu, 07 Dec 2023 15:28:50 +0000", - "dc:creator": "Isabella Kwai", - "content": "Critics said the film\u2019s cross-promotion with \u201cBarbie\u201d trivialized the U.S. nuclear attacks on Japan during World War II, but the biopic will be released in 2024.", - "contentSnippet": "Critics said the film\u2019s cross-promotion with \u201cBarbie\u201d trivialized the U.S. nuclear attacks on Japan during World War II, but the biopic will be released in 2024.", - "guid": "https://www.nytimes.com/2023/12/07/world/asia/japan-barbenheimer-oppenheimer-release.html", - "categories": [ - { - "_": "Movies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nuclear Weapons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Warner Brothers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-07T15:28:50.000Z" - }, - { - "creator": "Delger Erdenesanaa", - "title": "Climate Change Makes East Africa\u2019s Deadly Floods Worse, Study Finds", - "link": "https://www.nytimes.com/2023/12/07/climate/climate-change-flooding-east-africa.html", - "pubDate": "Thu, 07 Dec 2023 14:43:10 +0000", - "dc:creator": "Delger Erdenesanaa", - "content": "The extreme rain and flooding in Ethiopia, Kenya and Somalia this fall has been made twice as intense by climate change, according to a new study.", - "contentSnippet": "The extreme rain and flooding in Ethiopia, Kenya and Somalia this fall has been made twice as intense by climate change, according to a new study.", - "guid": "https://www.nytimes.com/2023/12/07/climate/climate-change-flooding-east-africa.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Floods", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Weather", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World Weather Attribution", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Dadaab (Kenya)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "East Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kenya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T14:43:10.000Z" - }, - { - "creator": "Adam Goldman", - "title": "Israel Is Targeting Hamas With Battlefield Intelligence", - "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-hamas-battlefield-intelligence.html", - "pubDate": "Thu, 07 Dec 2023 14:40:58 +0000", - "dc:creator": "Adam Goldman", - "content": "Israel has recovered a trove of material that its military has used to assess the extent of the group\u2019s attack plans, and its tactics and abilities, information reviewed by The Times shows.", - "contentSnippet": "Israel has recovered a trove of material that its military has used to assess the extent of the group\u2019s attack plans, and its tactics and abilities, information reviewed by The Times shows.", - "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-hamas-battlefield-intelligence.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Khan Younis (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T14:40:58.000Z" - }, - { - "creator": "David Pierson, Olivia Wang and Keith Bradsher", - "title": "China and E.U. Leaders Met as Tensions Rise Over Russia", - "link": "https://www.nytimes.com/2023/12/07/world/asia/china-eu-xi-michel.html", - "pubDate": "Thu, 07 Dec 2023 13:47:12 +0000", - "dc:creator": "David Pierson, Olivia Wang and Keith Bradsher", - "content": "The European summit with China\u2019s leader comes as relations have cooled over Beijing\u2019s alignment with Russia in its war on Ukraine and a surge in Chinese exports.", - "contentSnippet": "The European summit with China\u2019s leader comes as relations have cooled over Beijing\u2019s alignment with Russia in its war on Ukraine and a surge in Chinese exports.", - "guid": "https://www.nytimes.com/2023/12/07/world/asia/china-eu-xi-michel.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "European Council", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "von der Leyen, Ursula", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Xi Jinping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-07T13:47:12.000Z" - }, - { - "creator": "Victoria Kim, Liam Stack and Aaron Boxerman", - "title": "Hundreds of thousands are sheltering in Al-Mawasi and the surrounding region, aid workers say.", - "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-says-it-is-continuing-to-pursue-top-hamas-leaders-in-southern-gaza.html", - "pubDate": "Thu, 07 Dec 2023 12:31:36 +0000", - "dc:creator": "Victoria Kim, Liam Stack and Aaron Boxerman", - "content": "", - "contentSnippet": "", - "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-says-it-is-continuing-to-pursue-top-hamas-leaders-in-southern-gaza.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sinwar, Yehya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-07T12:31:36.000Z" - }, - { - "creator": "Ana Swanson, Jeanna Smialek, Alan Rappeport and Eshe Nelson", - "title": "Europe and Asia React to U.S. Push for Tech and Clean Energy", - "link": "https://www.nytimes.com/2023/12/07/business/economy/clean-energy-us-europe.html", - "pubDate": "Thu, 07 Dec 2023 12:22:26 +0000", - "dc:creator": "Ana Swanson, Jeanna Smialek, Alan Rappeport and Eshe Nelson", - "content": "Other governments, particularly in Europe, are trying to counter the Biden administration\u2019s industrial policies with their own incentives.", - "contentSnippet": "Other governments, particularly in Europe, are trying to counter the Biden administration\u2019s industrial policies with their own incentives.", - "guid": "https://www.nytimes.com/2023/12/07/business/economy/clean-energy-us-europe.html", - "categories": [ - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Alternative and Renewable Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation Reduction Act of 2022", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tax Credits, Deductions and Exemptions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Economy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Solar Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation (Economics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supply Chain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "internal-storyline-no", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T12:22:26.000Z" - }, - { - "creator": "Reuters", - "title": "Girl Kills Schoolmate and Wounds 5 in Russia Shooting", - "link": "https://www.nytimes.com/2023/12/07/world/europe/bryansk-russia-shooting.html", - "pubDate": "Thu, 07 Dec 2023 11:37:47 +0000", - "dc:creator": "Reuters", - "content": "The authorities said investigators were working to establish the motive for the shooting, which took place in the city of Bryansk, near the border with Ukraine.", - "contentSnippet": "The authorities said investigators were working to establish the motive for the shooting, which took place in the city of Bryansk, near the border with Ukraine.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/bryansk-russia-shooting.html", - "categories": [ - { - "_": "Murders, Attempted Murders and Homicides", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Children and Childhood", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "School Shootings and Armed Attacks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Investigative Committee (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bryansk (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T11:37:47.000Z" - }, - { - "creator": "Vivian Nereim", - "title": "Gaza War Widens Gap Between Arab Rulers and Citizens", - "link": "https://www.nytimes.com/2023/12/06/world/middleeast/gaza-israel-hamas-war-bahrain.html", - "pubDate": "Thu, 07 Dec 2023 09:33:06 +0000", - "dc:creator": "Vivian Nereim", - "content": "Bahrain, a small Gulf monarchy, faces growing pressure from citizens to cut its recently established ties with Israel \u2014 a microcosm of the tensions spreading across the Mideast.", - "contentSnippet": "Bahrain, a small Gulf monarchy, faces growing pressure from citizens to cut its recently established ties with Israel \u2014 a microcosm of the tensions spreading across the Mideast.", - "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/gaza-israel-hamas-war-bahrain.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bahrain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T09:33:06.000Z" - }, - { - "creator": "Hikari Hida and Aishvarya Kavi", - "title": "U.S. Military Grounds Hundreds of Ospreys After Fatal Crash Off Japan", - "link": "https://www.nytimes.com/2023/12/06/world/asia/us-osprey-japan-air-force-crew.html", - "pubDate": "Thu, 07 Dec 2023 06:34:30 +0000", - "dc:creator": "Hikari Hida and Aishvarya Kavi", - "content": "The Air Force, Navy and Marine Corps said a problem with the aircraft may have caused the crash last week, which is believed to have killed eight airmen.", - "contentSnippet": "The Air Force, Navy and Marine Corps said a problem with the aircraft may have caused the crash last week, which is believed to have killed eight airmen.", - "guid": "https://www.nytimes.com/2023/12/06/world/asia/us-osprey-japan-air-force-crew.html", - "categories": [ - { - "_": "United States Air Force", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Military Aircraft", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Aviation Accidents, Safety and Disasters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Yakushima (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Marine Corps", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-07T06:34:30.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Thursday Briefing", - "link": "https://www.nytimes.com/2023/12/07/briefing/gaza-crisis-ukraine-aid.html", - "pubDate": "Thu, 07 Dec 2023 05:19:51 +0000", - "dc:creator": "Natasha Frost", - "content": "A growing humanitarian crisis in Gaza.", - "contentSnippet": "A growing humanitarian crisis in Gaza.", - "guid": "https://www.nytimes.com/2023/12/07/briefing/gaza-crisis-ukraine-aid.html", - "isoDate": "2023-12-07T05:19:51.000Z" - }, - { - "creator": "Steven Lee Myers", - "title": "Russia\u2019s Latest Disinformation Tactic Exploits American Celebrities", - "link": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", - "pubDate": "Thu, 07 Dec 2023 05:02:00 +0000", - "dc:creator": "Steven Lee Myers", - "content": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", - "contentSnippet": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", - "guid": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", - "categories": [ - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Propaganda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Celebrities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cameo (Mobile App)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T05:02:00.000Z" - }, - { - "creator": "Carl Hulse", - "title": "Despite McConnell Legacy Push, Ukraine Funding in Increasing Jeopardy", - "link": "https://www.nytimes.com/2023/12/06/us/politics/mcconnell-legacy-ukraine-funding.html", - "pubDate": "Thu, 07 Dec 2023 00:30:41 +0000", - "dc:creator": "Carl Hulse", - "content": "The minority leader, who many believe could step down next year, has found himself out of step with many fellow Senate Republicans on the question of keeping money flowing to the U.S. ally.", - "contentSnippet": "The minority leader, who many believe could step down next year, has found himself out of step with many fellow Senate Republicans on the question of keeping money flowing to the U.S. ally.", - "guid": "https://www.nytimes.com/2023/12/06/us/politics/mcconnell-legacy-ukraine-funding.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "McConnell, Mitch", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T00:30:41.000Z" - }, - { - "creator": "Karoun Demirjian", - "title": "Republicans Block Aid to Ukraine, Jeopardizing Its Fight Against Russia", - "link": "https://www.nytimes.com/2023/12/06/us/politics/senate-ukraine-aid-bill.html", - "pubDate": "Thu, 07 Dec 2023 00:21:33 +0000", - "dc:creator": "Karoun Demirjian", - "content": "The vote spotlighted waning support in Congress for backing Ukraine in the war, and left the fate of the effort uncertain.", - "contentSnippet": "The vote spotlighted waning support in Congress for backing Ukraine in the war, and left the fate of the effort uncertain.", - "guid": "https://www.nytimes.com/2023/12/06/us/politics/senate-ukraine-aid-bill.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "McConnell, Mitch", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Johnson, Mike (1972- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Schumer, Charles E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T00:21:33.000Z" - }, - { - "creator": "Peter Baker", - "title": "Biden Calls on Congress to Approve Aid to Ukraine: \u2018This Cannot Wait\u2019", - "link": "https://www.nytimes.com/2023/12/06/us/politics/biden-ukraine-funding.html", - "pubDate": "Wed, 06 Dec 2023 23:57:41 +0000", - "dc:creator": "Peter Baker", - "content": "The administration has already alerted Congress that money for Ukraine will run out by the end of the year.", - "contentSnippet": "The administration has already alerted Congress that money for Ukraine will run out by the end of the year.", - "guid": "https://www.nytimes.com/2023/12/06/us/politics/biden-ukraine-funding.html", - "categories": [ - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Democratic Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-06T23:57:41.000Z" - }, - { - "creator": "Seth Mydans", - "title": "Nguyen Qui Duc, Whose Salon Became a Hanoi Hub, Dies at 65", - "link": "https://www.nytimes.com/2023/12/06/world/asia/nguyen-qui-duc-dead.html", - "pubDate": "Wed, 06 Dec 2023 23:53:22 +0000", - "dc:creator": "Seth Mydans", - "content": "A former refugee who found radio success in the U.S., he opened an exhibition space in his native Vietnam that drew artists and ambassadors. Anthony Bourdain dropped in.", - "contentSnippet": "A former refugee who found radio success in the U.S., he opened an exhibition space in his native Vietnam that drew artists and ambassadors. Anthony Bourdain dropped in.", - "guid": "https://www.nytimes.com/2023/12/06/world/asia/nguyen-qui-duc-dead.html", - "categories": [ - { - "_": "Duc, Nguyen Qui (1958-2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Vietnamese-Americans", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "National Public Radio", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hanoi (Vietnam)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T23:53:22.000Z" - }, - { - "creator": "Genevieve Glatsky and Isayen Herrera", - "title": "Venezuela Orders Arrest of Top Opposition Figures on Treason", - "link": "https://www.nytimes.com/2023/12/06/world/americas/venezuela-opposition-arrest-orders.html", - "pubDate": "Wed, 06 Dec 2023 23:35:23 +0000", - "dc:creator": "Genevieve Glatsky and Isayen Herrera", - "content": "The move is the latest of several that undercut prospects of free elections next year, despite commitments made to the Biden administration in return for sanctions relief.", - "contentSnippet": "The move is the latest of several that undercut prospects of free elections next year, despite commitments made to the Biden administration in return for sanctions relief.", - "guid": "https://www.nytimes.com/2023/12/06/world/americas/venezuela-opposition-arrest-orders.html", - "categories": [ - { - "_": "Elections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Referendums", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Maduro, Nicolas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Machado, Maria Corina", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Treason and Sedition", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Venezuela", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Guyana", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Money Laundering", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Legislatures and Parliaments", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-06T23:35:23.000Z" - }, - { - "creator": "Liam Stack and Yara Bayoumy", - "title": "Gazans Flee Fighting to Al-Mawasi, but Find Little Shelter There", - "link": "https://www.nytimes.com/2023/12/06/world/middleeast/gaza-al-mawasi.html", - "pubDate": "Wed, 06 Dec 2023 23:02:58 +0000", - "dc:creator": "Liam Stack and Yara Bayoumy", - "content": "Palestinians were told to go to the seaside village of Al-Mawasi to escape the fighting, but once they got there they found they were on their own.", - "contentSnippet": "Palestinians were told to go to the seaside village of Al-Mawasi to escape the fighting, but once they got there they found they were on their own.", - "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/gaza-al-mawasi.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-06T23:02:58.000Z" - }, - { - "creator": "Adam Goldman", - "title": "Israel Claims It Has Killed 5 Hamas Commanders Seen in Rare Photo", - "link": "https://www.nytimes.com/2023/12/06/world/middleeast/israel-hamas-commanders-gaza-photo.html", - "pubDate": "Wed, 06 Dec 2023 22:47:40 +0000", - "dc:creator": "Adam Goldman", - "content": "Israeli forces have been targeting the Hamas leadership since the group launched an attack on southern Israel on Oct. 7.", - "contentSnippet": "Israeli forces have been targeting the Hamas leadership since the group launched an attack on southern Israel on Oct. 7.", - "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/israel-hamas-commanders-gaza-photo.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deif, Muhammad", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sinwar, Yehya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Khan Younis (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T22:47:40.000Z" - }, - { - "creator": "Liam Stack, Shashank Bengali and Michael Levenson", - "title": "Israel and Hamas Battle for a City in Gaza, Sparking Another Exodus", - "link": "https://www.nytimes.com/2023/12/06/world/middleeast/israel-hamas-battle-gaza-khan-younis.html", - "pubDate": "Wed, 06 Dec 2023 22:34:58 +0000", - "dc:creator": "Liam Stack, Shashank Bengali and Michael Levenson", - "content": "Thousands of people heeded Israeli orders to flee Khan Younis and nearby areas, but the places they were told to go had little shelter, water or food.", - "contentSnippet": "Thousands of people heeded Israeli orders to flee Khan Younis and nearby areas, but the places they were told to go had little shelter, water or food.", - "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/israel-hamas-battle-gaza-khan-younis.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Khan Younis (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shortages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-06T22:34:58.000Z" - }, - { - "creator": "Vivian Nereim and Ivan Nechepurenko", - "title": "Putin Travels to U.A.E. and Saudi Arabia on Rare Trip to Mideast", - "link": "https://www.nytimes.com/2023/12/06/world/europe/putin-saudi-arabia-visit.html", - "pubDate": "Wed, 06 Dec 2023 22:34:19 +0000", - "dc:creator": "Vivian Nereim and Ivan Nechepurenko", - "content": "President Vladimir V. Putin of Russia stopped first in the United Arab Emirates and went on to Saudi Arabia. He said the Israel-Hamas war will figure prominently in his discussions.", - "contentSnippet": "President Vladimir V. Putin of Russia stopped first in the United Arab Emirates and went on to Saudi Arabia. He said the Israel-Hamas war will figure prominently in his discussions.", - "guid": "https://www.nytimes.com/2023/12/06/world/europe/putin-saudi-arabia-visit.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mohammed bin Salman (1985- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Abu Dhabi (United Arab Emirates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Dubai (United Arab Emirates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T22:34:19.000Z" - }, - { - "creator": "Ivan Nechepurenko and Marc Santora", - "title": "Illia Kyva Is Killed Near Moscow", - "link": "https://www.nytimes.com/2023/12/06/world/europe/illia-kyva-ukrainian-lawmaker-killed.html", - "pubDate": "Wed, 06 Dec 2023 21:38:29 +0000", - "dc:creator": "Ivan Nechepurenko and Marc Santora", - "content": "The lawmaker, Illia Kyva, called for Ukraine to surrender after Russia invaded. He was living in Russia, but Ukrainian authorities had sentenced him to prison in absentia on charges including treason.", - "contentSnippet": "The lawmaker, Illia Kyva, called for Ukraine to surrender after Russia invaded. He was living in Russia, but Ukrainian authorities had sentenced him to prison in absentia on charges including treason.", - "guid": "https://www.nytimes.com/2023/12/06/world/europe/illia-kyva-ukrainian-lawmaker-killed.html", - "categories": [ - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defectors (Political)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Treason and Sedition", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kyva, Illia (d 2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T21:38:29.000Z" - }, - { - "creator": "Yan Zhuang and Christine Hauser", - "title": "Arizona Man Is Arrested in Connection With Australia Shooting", - "link": "https://www.nytimes.com/2023/12/06/world/australia/wieambilla-queensland-shooting-arrest-arizona.html", - "pubDate": "Wed, 06 Dec 2023 21:31:56 +0000", - "dc:creator": "Yan Zhuang and Christine Hauser", - "content": "Two police officers and a bystander died in the shootout in Queensland last year.", - "contentSnippet": "Two police officers and a bystander died in the shootout in Queensland last year.", - "guid": "https://www.nytimes.com/2023/12/06/world/australia/wieambilla-queensland-shooting-arrest-arizona.html", - "categories": [ - { - "_": "Australia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Queensland (Australia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Melbourne (Australia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Federal Bureau of Investigation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Attacks on Police", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arizona", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T21:31:56.000Z" - }, - { - "creator": "Jonathan Wolfe", - "title": "Thursday Briefing: Gazans Flee Khan Younis", - "link": "https://www.nytimes.com/2023/12/06/briefing/gaza-israel-ukraine.html", - "pubDate": "Wed, 06 Dec 2023 21:02:37 +0000", - "dc:creator": "Jonathan Wolfe", - "content": "Plus, remembering Norman Lear.", - "contentSnippet": "Plus, remembering Norman Lear.", - "guid": "https://www.nytimes.com/2023/12/06/briefing/gaza-israel-ukraine.html", - "isoDate": "2023-12-06T21:02:37.000Z" - }, - { - "creator": "Talya Minsberg", - "title": "Gaza Hostage Families Urge Israeli Government to Help", - "link": "https://www.nytimes.com/2023/12/06/world/middleeast/hamas-hostages-israel.html", - "pubDate": "Wed, 06 Dec 2023 20:46:16 +0000", - "dc:creator": "Talya Minsberg", - "content": "Released hostages met for the first time with Israel\u2019s war cabinet, painting a grim portrait of captivity in Gaza.", - "contentSnippet": "Released hostages met for the first time with Israel\u2019s war cabinet, painting a grim portrait of captivity in Gaza.", - "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/hamas-hostages-israel.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-06T20:46:16.000Z" - }, - { - "creator": "Glenn Thrush", - "title": "U.S. Charges 4 Russian Soldiers With War Crimes Against an American", - "link": "https://www.nytimes.com/2023/12/06/us/russia-ukraine-war-crimes-hamas.html", - "pubDate": "Wed, 06 Dec 2023 20:29:32 +0000", - "dc:creator": "Glenn Thrush", - "content": "The Justice Department also said it had begun investigating the \u201cmurder of more than 30 Americans\u201d by Hamas fighters during the Oct. 7 attack in Israel.", - "contentSnippet": "The Justice Department also said it had begun investigating the \u201cmurder of more than 30 Americans\u201d by Hamas fighters during the Oct. 7 attack in Israel.", - "guid": "https://www.nytimes.com/2023/12/06/us/russia-ukraine-war-crimes-hamas.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Garland, Merrick B", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T20:29:32.000Z" - }, - { - "creator": "Aurelien Breeden", - "title": "Bordeaux Botulism Outbreak: Criminal Charges Announced", - "link": "https://www.nytimes.com/2023/12/06/world/europe/france-bordeaux-botulism-sardines.html", - "pubDate": "Wed, 06 Dec 2023 19:47:25 +0000", - "dc:creator": "Aurelien Breeden", - "content": "One person died and 15 others were sickened in September after eating homemade sardine preserves at an organic wine bar in Bordeaux. Prosecutors say hygiene rules were violated.", - "contentSnippet": "One person died and 15 others were sickened in September after eating homemade sardine preserves at an organic wine bar in Bordeaux. Prosecutors say hygiene rules were violated.", - "guid": "https://www.nytimes.com/2023/12/06/world/europe/france-bordeaux-botulism-sardines.html", - "categories": [ - { - "_": "Botulism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Bordeaux (France)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Wine Bars", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hazardous and Toxic Substances", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "truecrime", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T19:47:25.000Z" - }, - { - "creator": "Brad Plumer and Nadja Popovich", - "title": "Can Carbon Capture Live Up to the Hype?", - "link": "https://www.nytimes.com/2023/12/06/climate/cop28-carbon-capture.html", - "pubDate": "Wed, 06 Dec 2023 19:33:08 +0000", - "dc:creator": "Brad Plumer and Nadja Popovich", - "content": "The technology to capture and bury carbon dioxide has struggled to ramp up and has real limits. But experts say it could play a valuable role.", - "contentSnippet": "The technology to capture and bury carbon dioxide has struggled to ramp up and has real limits. But experts say it could play a valuable role.", - "guid": "https://www.nytimes.com/2023/12/06/climate/cop28-carbon-capture.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carbon Capture and Sequestration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carbon Dioxide", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United Nations Framework Convention on Climate Change", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Coal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Steel and Iron", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-06T19:33:08.000Z" - }, - { - "creator": "Mark Landler and Stephen Castle", - "title": "Boris Johnson Apologizes at U.K. Covid Inquiry for \u2018Pain and Suffering\u2019", - "link": "https://www.nytimes.com/2023/12/06/world/europe/uk-boris-johnson-covid-inquiry.html", - "pubDate": "Wed, 06 Dec 2023 18:24:37 +0000", - "dc:creator": "Mark Landler and Stephen Castle", - "content": "The former prime minister said his government had initially underestimated the coronavirus. But he insisted that he and his aides had done the best they could at the time.", - "contentSnippet": "The former prime minister said his government had initially underestimated the coronavirus. But he insisted that he and his aides had done the best they could at the time.", - "guid": "https://www.nytimes.com/2023/12/06/world/europe/uk-boris-johnson-covid-inquiry.html", - "categories": [ - { - "_": "Johnson, Boris", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Coronavirus (2019-nCoV)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Quarantines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ethics and Official Misconduct", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sunak, Rishi (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T18:24:37.000Z" - }, - { - "creator": "Amanda Taub", - "title": "Snob summer is dead. Long live mystery winter.", - "link": "https://www.nytimes.com/2023/12/06/world/europe/snob-summer-is-dead-long-live-mystery-winter.html", - "pubDate": "Wed, 06 Dec 2023 15:22:52 +0000", - "dc:creator": "Amanda Taub", - "content": "Settling in for a cozy season of whodunnits.", - "contentSnippet": "Settling in for a cozy season of whodunnits.", - "guid": "https://www.nytimes.com/2023/12/06/world/europe/snob-summer-is-dead-long-live-mystery-winter.html", - "categories": [ - { - "_": "internal-sub-only-nl", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Books and Literature", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Batmanglij, Zal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Chandler, Raymond", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hallett, Janice", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Marling, Brit", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-06T15:22:52.000Z" - }, - { - "creator": "Carlotta Gall", - "title": "As Political Turmoil Intensifies in Ukraine, Opposition Leader Calls for Unity", - "link": "https://www.nytimes.com/2023/12/06/world/europe/ukraine-war-support-opposition.html", - "pubDate": "Wed, 06 Dec 2023 14:29:06 +0000", - "dc:creator": "Carlotta Gall", - "content": "Tensions between Ukrainian leaders, including between President Volodymyr Zelensky and his military chief, come as the country seeks emergency aid from Washington.", - "contentSnippet": "Tensions between Ukrainian leaders, including between President Volodymyr Zelensky and his military chief, come as the country seeks emergency aid from Washington.", - "guid": "https://www.nytimes.com/2023/12/06/world/europe/ukraine-war-support-opposition.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Poroshenko, Petro Olekseyevich", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zaluzhny, Valery", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T14:29:06.000Z" - }, - { - "creator": "Rebecca Carballo", - "title": "Woman Shot and Killed in East London", - "link": "https://www.nytimes.com/2023/12/05/world/europe/london-hackney-shooting.html", - "pubDate": "Wed, 06 Dec 2023 13:30:11 +0000", - "dc:creator": "Rebecca Carballo", - "content": "Two other people were shot and injured in the shooting, a rarity in Britain. They were taken to a hospital and their status was not immediately clear.", - "contentSnippet": "Two other people were shot and injured in the shooting, a rarity in Britain. They were taken to a hospital and their status was not immediately clear.", - "guid": "https://www.nytimes.com/2023/12/05/world/europe/london-hackney-shooting.html", - "categories": [ - { - "_": "Murders, Attempted Murders and Homicides", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Police", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "London (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T13:30:11.000Z" - }, - { - "creator": "Elena Medel", - "title": "Read Your Way Through Madrid", - "link": "https://www.nytimes.com/2023/12/06/books/madrid-spain-books-elena-medel.html", - "pubDate": "Wed, 06 Dec 2023 10:00:10 +0000", - "dc:creator": "Elena Medel", - "content": "Like many who call Madrid home, Elena Medel was born elsewhere, but forged her identity in the Spanish capital. Here, she recommends books about this city that \u201crefuses to be reduced to an ideal.\u201d", - "contentSnippet": "Like many who call Madrid home, Elena Medel was born elsewhere, but forged her identity in the Spanish capital. Here, she recommends books about this city that \u201crefuses to be reduced to an ideal.\u201d", - "guid": "https://www.nytimes.com/2023/12/06/books/madrid-spain-books-elena-medel.html", - "categories": [ - { - "_": "Madrid (Spain)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Books and Literature", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Spanish Civil War (1936-39)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Poetry and Poets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Theater", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Writing and Writers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Libraries and Librarians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Culture (Arts)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Garcia Lorca, Federico", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Grandes, Almudena (1960-2021)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hemingway, Ernest", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Lerner, Ben", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Lindo, Elvira", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Benito Perez Galdos", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Cela, Camilo Jose", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Carmen Martin Gaite", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ramon Maria del Valle-Inclan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Rosa Chacel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Navarro, Elvira", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Irene Vallejo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "The Ages of Lulu (Book)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "The Hive (Book)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "The Wonders (Book)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "literaryguides", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-06T10:00:10.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Wednesday Briefing", - "link": "https://www.nytimes.com/2023/12/06/briefing/hamas-sexual-violence-ukraine-trump.html", - "pubDate": "Wed, 06 Dec 2023 05:12:28 +0000", - "dc:creator": "Natasha Frost", - "content": "Accounts of sexual violence by Hamas.", - "contentSnippet": "Accounts of sexual violence by Hamas.", - "guid": "https://www.nytimes.com/2023/12/06/briefing/hamas-sexual-violence-ukraine-trump.html", - "isoDate": "2023-12-06T05:12:28.000Z" - }, - { - "creator": "Mitra Taj and Genevieve Glatsky", - "title": "Alberto Fujimori Is Ordered Released From Prison in Peru", - "link": "https://www.nytimes.com/2023/12/05/world/americas/peru-fujimori-released-prison.html", - "pubDate": "Wed, 06 Dec 2023 00:33:36 +0000", - "dc:creator": "Mitra Taj and Genevieve Glatsky", - "content": "The ruling, which affirms a decision to reinstate a pardon, defies an order by an international court that former President Alberto Fujimori continue to serve his sentence for human rights violations.", - "contentSnippet": "The ruling, which affirms a decision to reinstate a pardon, defies an order by an international court that former President Alberto Fujimori continue to serve his sentence for human rights violations.", - "guid": "https://www.nytimes.com/2023/12/05/world/americas/peru-fujimori-released-prison.html", - "categories": [ - { - "_": "Amnesties, Commutations and Pardons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Human Rights and Human Rights Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fujimori, Alberto K", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Boluarte, Dina", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Inter-American Court of Human Rights", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Peru", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T00:33:36.000Z" - }, - { - "creator": "Matthew Mpoke Bigg, Ben Hubbard and Michael Levenson", - "title": "Israel-Hamas War Intensifies in Southern Gaza; Civilians Say No Place Is Safe", - "link": "https://www.nytimes.com/2023/12/05/world/middleeast/israel-hamas-gaza-khan-younis.html", - "pubDate": "Wed, 06 Dec 2023 00:00:19 +0000", - "dc:creator": "Matthew Mpoke Bigg, Ben Hubbard and Michael Levenson", - "content": "Amid some of the war\u2019s heaviest bombing, Israeli forces battled Hamas deep into the city of Khan Younis, with few signs that Israel was heeding Biden administration calls to show more restraint.", - "contentSnippet": "Amid some of the war\u2019s heaviest bombing, Israeli forces battled Hamas deep into the city of Khan Younis, with few signs that Israel was heeding Biden administration calls to show more restraint.", - "guid": "https://www.nytimes.com/2023/12/05/world/middleeast/israel-hamas-gaza-khan-younis.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Evacuations and Evacuees", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Khan Younis (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-06T00:00:19.000Z" - }, - { - "creator": "Constant M\u00e9heut and Andrew E. Kramer", - "title": "E.U. Accession Talks Lift Morale in Ukraine", - "link": "https://www.nytimes.com/2023/12/15/world/europe/ukraine-eu-membership.html", - "pubDate": "Fri, 15 Dec 2023 15:33:50 +0000", - "dc:creator": "Constant M\u00e9heut and Andrew E. Kramer", - "content": "The European Union\u2019s willingness to open accession talks will lift morale, but the more immediate prospects for financial support from allies is sobering.", - "contentSnippet": "The European Union\u2019s willingness to open accession talks will lift morale, but the more immediate prospects for financial support from allies is sobering.", - "guid": "https://www.nytimes.com/2023/12/15/world/europe/ukraine-eu-membership.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hungary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T15:33:50.000Z" - }, - { - "creator": "The New York Times", - "title": "Israel-Hamas War: Biden Adviser Plays Down Differences With Israel Over War Effort", - "link": "https://www.nytimes.com/live/2023/12/15/world/israel-hamas-war-gaza-news", - "pubDate": "Fri, 15 Dec 2023 15:32:13 +0000", - "dc:creator": "The New York Times", - "content": "National Security Adviser Jake Sullivan, in Tel Aviv, sought to demonstrate that the U.S. and Israel are on the same page in the war against Hamas in Gaza.", - "contentSnippet": "National Security Adviser Jake Sullivan, in Tel Aviv, sought to demonstrate that the U.S. and Israel are on the same page in the war against Hamas in Gaza.", - "guid": "https://www.nytimes.com/live/2023/12/15/world/israel-hamas-war-gaza-news", - "isoDate": "2023-12-15T15:32:13.000Z" - }, - { - "creator": "Ivan Nechepurenko", - "title": "Russia\u2019s Central Bank Raises Rates to 16 Percent", - "link": "https://www.nytimes.com/2023/12/15/world/europe/russia-interest-rates-inflation.html", - "pubDate": "Fri, 15 Dec 2023 15:14:03 +0000", - "dc:creator": "Ivan Nechepurenko", - "content": "The bank warned that its tight monetary policy would continue \u201cfor a long period\u201d as it attempts slow an economy in danger of overheating.", - "contentSnippet": "The bank warned that its tight monetary policy would continue \u201cfor a long period\u201d as it attempts slow an economy in danger of overheating.", - "guid": "https://www.nytimes.com/2023/12/15/world/europe/russia-interest-rates-inflation.html", - "categories": [ - { - "_": "Banking and Financial Institutions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Interest Rates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Central Bank of Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Nabiullina, Elvira S", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T15:14:03.000Z" - }, - { - "creator": "Emily Anthes", - "title": "Bird Flu Is Still Causing Havoc. Here\u2019s The Latest.", - "link": "https://www.nytimes.com/2023/12/15/science/birds-flu-h5n1.html", - "pubDate": "Fri, 15 Dec 2023 14:55:49 +0000", - "dc:creator": "Emily Anthes", - "content": "The virus, which recently reached the Antarctic region for the first time, is surging again in North America.", - "contentSnippet": "The virus, which recently reached the Antarctic region for the first time, is surging again in North America.", - "guid": "https://www.nytimes.com/2023/12/15/science/birds-flu-h5n1.html", - "categories": [ - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Avian Influenza", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mammals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Birds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Viruses", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wildlife Die-Offs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Antarctic Regions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "your-feed-health", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "your-feed-animals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-15T14:55:49.000Z" - }, - { - "creator": "Isabel Kershner", - "title": "As Israel Weighs Honoring Oct. 7 Victims, Exhibit Memorializes Trance Festival", - "link": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-hamas-nova-festival-exhibition.html", - "pubDate": "Fri, 15 Dec 2023 14:43:00 +0000", - "dc:creator": "Isabel Kershner", - "content": "Israelis seeking to memorialize the hundreds killed in the Hamas assault on a trance festival, and help the survivors, retrieved hundreds of objects from the site.", - "contentSnippet": "Israelis seeking to memorialize the hundreds killed in the Hamas assault on a trance festival, and help the survivors, retrieved hundreds of objects from the site.", - "guid": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-hamas-nova-festival-exhibition.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Assaults", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mass Shootings", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Monuments and Memorials (Structures)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T14:43:00.000Z" - }, - { - "creator": "Alan Feuer", - "title": "U.S. Officials and Garc\u00eda Luna Met Often, Records Show", - "link": "https://www.nytimes.com/2023/12/15/world/americas/us-mexico-genaro-garcia-luna.html", - "pubDate": "Fri, 15 Dec 2023 14:30:09 +0000", - "dc:creator": "Alan Feuer", - "content": "Genaro Garc\u00eda Luna filed a new trial bid saying the former Mexican official met with U.S. officials more than 180 times and was also \u201cextensively vetted\u201d by the C.I.A. and D.E.A.", - "contentSnippet": "Genaro Garc\u00eda Luna filed a new trial bid saying the former Mexican official met with U.S. officials more than 180 times and was also \u201cextensively vetted\u201d by the C.I.A. and D.E.A.", - "guid": "https://www.nytimes.com/2023/12/15/world/americas/us-mexico-genaro-garcia-luna.html", - "categories": [ - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Central Intelligence Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Drug Enforcement Administration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Sinaloa Cartel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Garcia Luna, Genaro", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mexico", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T14:30:09.000Z" - }, - { - "creator": "Thomas Gibbons-Neff", - "title": "Ukraine Military Recruiters Use Harsh Tactics to Fill Ranks", - "link": "https://www.nytimes.com/2023/12/15/world/europe/ukraine-military-recruitment.html", - "pubDate": "Fri, 15 Dec 2023 14:20:00 +0000", - "dc:creator": "Thomas Gibbons-Neff", - "content": "Ukrainian men are reporting incidents of wrongful draft notices, unprofessional medical commissions and coercive mobilization tactics.", - "contentSnippet": "Ukrainian men are reporting incidents of wrongful draft notices, unprofessional medical commissions and coercive mobilization tactics.", - "guid": "https://www.nytimes.com/2023/12/15/world/europe/ukraine-military-recruitment.html", - "categories": [ - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Draft and Recruitment (Military)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-15T14:20:00.000Z" - }, - { - "creator": "Damien Cave and Mark Abramson", - "title": "U.S. Military Returns to the Jungle, Training for Future Threats", - "link": "https://www.nytimes.com/2023/12/15/world/asia/us-military-jungle-training.html", - "pubDate": "Fri, 15 Dec 2023 14:13:32 +0000", - "dc:creator": "Damien Cave and Mark Abramson", - "content": "Far from the deserts of the Middle East, the Army is instructing troops in Hawaii on the skills needed for a potential clash with China.", - "contentSnippet": "Far from the deserts of the Middle East, the Army is instructing troops in Hawaii on the skills needed for a potential clash with China.", - "guid": "https://www.nytimes.com/2023/12/15/world/asia/us-military-jungle-training.html", - "categories": [ - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Army", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States Marine Corps", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hawaii", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T14:13:32.000Z" - }, - { - "creator": "Megan Specia", - "title": "Prince Harry\u2019s Phone Was Hacked by U.K. Tabloid, Judge Rules in Landmark Case", - "link": "https://www.nytimes.com/2023/12/15/world/europe/prince-harry-tabloid-hacking-lawsuit-ruling.html", - "pubDate": "Fri, 15 Dec 2023 13:38:23 +0000", - "dc:creator": "Megan Specia", - "content": "The ruling was a major victory for the royal in his long-running campaign against media intrusion into his life \u2014 and a blow to Britain\u2019s tabloid press.", - "contentSnippet": "The ruling was a major victory for the royal in his long-running campaign against media intrusion into his life \u2014 and a blow to Britain\u2019s tabloid press.", - "guid": "https://www.nytimes.com/2023/12/15/world/europe/prince-harry-tabloid-hacking-lawsuit-ruling.html", - "categories": [ - { - "_": "Royal Families", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Newspapers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mirror Group Newspapers PLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Harry, Duke of Sussex", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T13:38:23.000Z" - }, - { - "creator": "Stephen Castle", - "title": "Missing Boy Who Was Found in France Is Expected Back in U.K. Soon", - "link": "https://www.nytimes.com/2023/12/15/world/europe/alex-batty-missing-boy-france-uk.html", - "pubDate": "Fri, 15 Dec 2023 13:36:17 +0000", - "dc:creator": "Stephen Castle", - "content": "Alex Batty vanished six years ago when he was 11 on a family trip. The police want to question his mother and grandfather about his disappearance.", - "contentSnippet": "Alex Batty vanished six years ago when he was 11 on a family trip. The police want to question his mother and grandfather about his disappearance.", - "guid": "https://www.nytimes.com/2023/12/15/world/europe/alex-batty-missing-boy-france-uk.html", - "categories": [ - { - "_": "Missing Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Police", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pyrenees Mountains", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Toulouse (France)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T13:36:17.000Z" - }, - { - "creator": "Christopher F. Schuetze", - "title": "German Spy Official Goes on Trial Accused of Selling Secrets to Russia", - "link": "https://www.nytimes.com/2023/12/14/world/europe/germany-spy-trial-russia.html", - "pubDate": "Fri, 15 Dec 2023 13:27:00 +0000", - "dc:creator": "Christopher F. Schuetze", - "content": "The trial, held under stringent security conditions and expected to last months, caps one of the gravest espionage scandals in recent German history.", - "contentSnippet": "The trial, held under stringent security conditions and expected to last months, caps one of the gravest espionage scandals in recent German history.", - "guid": "https://www.nytimes.com/2023/12/14/world/europe/germany-spy-trial-russia.html", - "categories": [ - { - "_": "Germany", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Classified Information and State Secrets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Linke, Carsten", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Federal Intelligence Service (Germany)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Federal Security Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T13:27:00.000Z" - }, - { - "creator": "Victor Mather", - "title": "A British Boy, Missing for 6 Years, Turns Up in France", - "link": "https://www.nytimes.com/2023/12/14/world/europe/british-boy-alex-batty-missing-found-france.html", - "pubDate": "Fri, 15 Dec 2023 13:19:16 +0000", - "dc:creator": "Victor Mather", - "content": "Alex Batty, of Oldham, England, now a teenager, was found by a delivery driver walking on a rainy night in Chalabre. His mother and grandfather are wanted in connection with his disappearance.", - "contentSnippet": "Alex Batty, of Oldham, England, now a teenager, was found by a delivery driver walking on a rainy night in Chalabre. His mother and grandfather are wanted in connection with his disappearance.", - "guid": "https://www.nytimes.com/2023/12/14/world/europe/british-boy-alex-batty-missing-found-france.html", - "categories": [ - { - "_": "Missing Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "England", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T13:19:16.000Z" - }, - { - "creator": "John Yoon", - "title": "Israel Recovers the Bodies of 3 Hostages in Gaza", - "link": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-hostages-gaza-soldiers-elia-toledano.html", - "pubDate": "Fri, 15 Dec 2023 10:47:30 +0000", - "dc:creator": "John Yoon", - "content": "The Israeli military said it had retrieved the bodies of two soldiers and a civilian who were kidnapped during the Hamas-led attacks on Oct. 7.", - "contentSnippet": "The Israeli military said it had retrieved the bodies of two soldiers and a civilian who were kidnapped during the Hamas-led attacks on Oct. 7.", - "guid": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-hostages-gaza-soldiers-elia-toledano.html", - "categories": [ - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T10:47:30.000Z" - }, - { - "creator": "Ben Hubbard", - "title": "Displaced Gazans Put Pressure on Egypt\u2019s Border", - "link": "https://www.nytimes.com/2023/12/14/world/middleeast/gaza-border-rafah-egypt.html", - "pubDate": "Fri, 15 Dec 2023 10:22:25 +0000", - "dc:creator": "Ben Hubbard", - "content": "Hundreds of thousands of Palestinians have fled to southern Gaza, but they cannot cross into Egypt because the border is heavily fortified and Cairo is determined to keep it closed.", - "contentSnippet": "Hundreds of thousands of Palestinians have fled to southern Gaza, but they cannot cross into Egypt because the border is heavily fortified and Cairo is determined to keep it closed.", - "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/gaza-border-rafah-egypt.html", - "categories": [ - { - "_": "Rafah (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Border Barriers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Egypt", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sinai Peninsula (Egypt)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T10:22:25.000Z" - }, - { - "creator": "Tavares Cebola and John Eligon", - "title": "Using Dance to Tell the Story of Mozambique\u2019s Struggles", - "link": "https://www.nytimes.com/2023/12/15/world/africa/mozambique-dance-choreographer-canda.html", - "pubDate": "Fri, 15 Dec 2023 10:03:07 +0000", - "dc:creator": "Tavares Cebola and John Eligon", - "content": "Mozambique\u2019s most influential contemporary choreographer uses bodies in motion to artfully \u2014 and clearly \u2014 trace the complex recent history of his country.", - "contentSnippet": "Mozambique\u2019s most influential contemporary choreographer uses bodies in motion to artfully \u2014 and clearly \u2014 trace the complex recent history of his country.", - "guid": "https://www.nytimes.com/2023/12/15/world/africa/mozambique-dance-choreographer-canda.html", - "categories": [ - { - "_": "Mozambique", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Dancing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Panaibra Gabriel Canda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Frelimo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Colonization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Culture (Arts)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-15T10:03:07.000Z" - }, - { - "creator": "Victoria Kim and Aaron Boxerman", - "title": "Sullivan says both the U.S. and Israel expect fighting to slow down eventually.", - "link": "https://www.nytimes.com/2023/12/15/world/middleeast/jake-sullivan-will-meet-israels-president-as-the-allies-diverge-on-war-strategy.html", - "pubDate": "Fri, 15 Dec 2023 10:02:19 +0000", - "dc:creator": "Victoria Kim and Aaron Boxerman", - "content": "", - "contentSnippet": "", - "guid": "https://www.nytimes.com/2023/12/15/world/middleeast/jake-sullivan-will-meet-israels-president-as-the-allies-diverge-on-war-strategy.html", - "isoDate": "2023-12-15T10:02:19.000Z" - }, - { - "creator": "Aaron Boxerman and Talya Minsberg", - "title": "Private Gun Ownership in Israel Spikes After Hamas Attacks", - "link": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-gun-ownership-spikes.html", - "pubDate": "Fri, 15 Dec 2023 10:02:10 +0000", - "dc:creator": "Aaron Boxerman and Talya Minsberg", - "content": "In a country already bristling with armed soldiers and reservists, a new sense of insecurity is pushing civilians to seek more personal weapons.", - "contentSnippet": "In a country already bristling with armed soldiers and reservists, a new sense of insecurity is pushing civilians to seek more personal weapons.", - "guid": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-gun-ownership-spikes.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Firearms", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gun Control", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Jewish Power Party (Otzma Yehudit)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ben-Gvir, Itamar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "West Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T10:02:10.000Z" - }, - { - "creator": "Matina Stevis-Gridneff and Steven Erlanger", - "title": "Hungary Blocks E.U. Aid for Ukraine", - "link": "https://www.nytimes.com/2023/12/14/world/europe/eu-ukraine-hungary-aid.html", - "pubDate": "Fri, 15 Dec 2023 08:22:38 +0000", - "dc:creator": "Matina Stevis-Gridneff and Steven Erlanger", - "content": "President Volodymyr Zelensky of Ukraine welcomed the breakthrough as talks on joining the bloc officially opened. Securing more financial aid will have to wait.", - "contentSnippet": "President Volodymyr Zelensky of Ukraine welcomed the breakthrough as talks on joining the bloc officially opened. Securing more financial aid will have to wait.", - "guid": "https://www.nytimes.com/2023/12/14/world/europe/eu-ukraine-hungary-aid.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Orban, Viktor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hungary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T08:22:38.000Z" - }, - { - "creator": "Johanna Lemola and Emma Bubola", - "title": "Finland Closes Border With Russia Again", - "link": "https://www.nytimes.com/2023/12/14/world/europe/finland-border-russia.html", - "pubDate": "Fri, 15 Dec 2023 08:02:57 +0000", - "dc:creator": "Johanna Lemola and Emma Bubola", - "content": "The country accused Russia of resuming an effort to funnel mostly African and Middle Eastern migrants into Finland in an effort to destabilize it.", - "contentSnippet": "The country accused Russia of resuming an effort to funnel mostly African and Middle Eastern migrants into Finland in an effort to destabilize it.", - "guid": "https://www.nytimes.com/2023/12/14/world/europe/finland-border-russia.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Frontex", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Finland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-15T08:02:57.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Friday Briefing", - "link": "https://www.nytimes.com/2023/12/15/briefing/gaza-israel-biden-ukraine-hungary.html", - "pubDate": "Fri, 15 Dec 2023 05:04:25 +0000", - "dc:creator": "Natasha Frost", - "content": "A U.S. response as conditions deteriorate in Gaza.", - "contentSnippet": "A U.S. response as conditions deteriorate in Gaza.", - "guid": "https://www.nytimes.com/2023/12/15/briefing/gaza-israel-biden-ukraine-hungary.html", - "isoDate": "2023-12-15T05:04:25.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Stories About Wonder, Fireworks and Vegemite", - "link": "https://www.nytimes.com/2023/12/14/world/australia/australia-letter-wonder-fireworks-vegemite.html", - "pubDate": "Fri, 15 Dec 2023 02:40:26 +0000", - "dc:creator": "Natasha Frost", - "content": "Twelve months of counterprogramming from the Australia bureau.", - "contentSnippet": "Twelve months of counterprogramming from the Australia bureau.", - "guid": "https://www.nytimes.com/2023/12/14/world/australia/australia-letter-wonder-fireworks-vegemite.html", - "categories": [ - { - "_": "Australia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T02:40:26.000Z" - }, - { - "creator": "Christopher F. Schuetze", - "title": "Germany Accuses Four Men It Links to Hamas of Plotting Attacks on Jews", - "link": "https://www.nytimes.com/2023/12/14/world/middleeast/four-men-hamas-attack-plot-jews.html", - "pubDate": "Fri, 15 Dec 2023 01:07:58 +0000", - "dc:creator": "Christopher F. Schuetze", - "content": "Three of the men were taken into custody in Berlin and another was arrested by Dutch police in the port city of Rotterdam, according to Germany\u2019s justice minister.", - "contentSnippet": "Three of the men were taken into custody in Berlin and another was arrested by Dutch police in the port city of Rotterdam, according to Germany\u2019s justice minister.", - "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/four-men-hamas-attack-plot-jews.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Berlin (Germany)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Rotterdam (Netherlands)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T01:07:58.000Z" - }, - { - "creator": "Adam Entous, Aaron Boxerman and Thomas Fuller", - "title": "Biden Administration Urges Israel to Scale Down Its War in Gaza", - "link": "https://www.nytimes.com/2023/12/14/us/politics/israel-gaza-hamas-us.html", - "pubDate": "Fri, 15 Dec 2023 01:05:17 +0000", - "dc:creator": "Adam Entous, Aaron Boxerman and Thomas Fuller", - "content": "The call for a more targeted phase in the war appeared to be the most definitive effort yet by the United States to restrain Israel in its retaliation against Hamas for the attacks it led on Oct. 7.", - "contentSnippet": "The call for a more targeted phase in the war appeared to be the most definitive effort yet by the United States to restrain Israel in its retaliation against Hamas for the attacks it led on Oct. 7.", - "guid": "https://www.nytimes.com/2023/12/14/us/politics/israel-gaza-hamas-us.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T01:05:17.000Z" - }, - { - "creator": "Hiba Yazbek, Ephrat Livni and Aaron Boxerman", - "title": "At Least 12 Killed in Israeli Raid in West Bank, Palestinians Say", - "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-jenin-12-killed.html", - "pubDate": "Fri, 15 Dec 2023 00:28:57 +0000", - "dc:creator": "Hiba Yazbek, Ephrat Livni and Aaron Boxerman", - "content": "Israel said three soldiers were disciplined for video showing some of them singing a Jewish prayer in a mosque in Jenin, where Israeli forces concluded a 60-hour raid.", - "contentSnippet": "Israel said three soldiers were disciplined for video showing some of them singing a Jewish prayer in a mosque in Jenin, where Israeli forces concluded a 60-hour raid.", - "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-jenin-12-killed.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mosques", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-15T00:28:57.000Z" - }, - { - "creator": "Fl\u00e1via Milhorance and Paulo Motoryn", - "title": "Brazil\u2019s Congress Weakens Protection of Indigenous Lands, Defying Lula", - "link": "https://www.nytimes.com/2023/12/14/world/americas/brazil-indigenous-land-law.html", - "pubDate": "Thu, 14 Dec 2023 23:41:28 +0000", - "dc:creator": "Fl\u00e1via Milhorance and Paulo Motoryn", - "content": "While Brazil vows to fight climate change, lawmakers approved a law making it harder for Indigenous tribes to block deforestation, overriding a veto by President Luiz In\u00e1cio Lula da Silva.", - "contentSnippet": "While Brazil vows to fight climate change, lawmakers approved a law making it harder for Indigenous tribes to block deforestation, overriding a veto by President Luiz In\u00e1cio Lula da Silva.", - "guid": "https://www.nytimes.com/2023/12/14/world/americas/brazil-indigenous-land-law.html", - "categories": [ - { - "_": "Indigenous People", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United Nations Framework Convention on Climate Change", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Forests and Forestry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Da Silva, Luiz Inacio Lula", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Amazon Jungle", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Brazil", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-14T23:41:28.000Z" - }, - { - "creator": "Michael D. Shear", - "title": "U.S. Naval Officer Is Released From Jail in Japan After Yearslong Effort", - "link": "https://www.nytimes.com/2023/12/14/us/politics/alkonis-us-japan.html", - "pubDate": "Thu, 14 Dec 2023 23:39:10 +0000", - "dc:creator": "Michael D. Shear", - "content": "The fallout over the case has strained diplomatic ties between Japan and the United States.", - "contentSnippet": "The fallout over the case has strained diplomatic ties between Japan and the United States.", - "guid": "https://www.nytimes.com/2023/12/14/us/politics/alkonis-us-japan.html", - "categories": [ - { - "_": "Alkonis, Ridge", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sentences (Criminal)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Navy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Justice Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T23:39:10.000Z" - }, - { - "creator": "Christoph Koettl and Christiaan Triebert", - "title": "Satellite Imagery and Video Shows Some Gazan Cemeteries Razed by Israeli Forces", - "link": "https://www.nytimes.com/2023/12/14/world/middleeast/gaza-cemeteries-damage-israel.html", - "pubDate": "Thu, 14 Dec 2023 23:08:50 +0000", - "dc:creator": "Christoph Koettl and Christiaan Triebert", - "content": "The laws of armed conflict consider the intentional destruction of religious sites without military necessity a possible war crime.", - "contentSnippet": "The laws of armed conflict consider the intentional destruction of religious sites without military necessity a possible war crime.", - "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/gaza-cemeteries-damage-israel.html", - "categories": [ - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Jabaliya Refugee Camp (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T23:08:50.000Z" - }, - { - "creator": "Justin Porter", - "title": "Friday Briefing: U.S. Urges Israel to Scale Back Its War", - "link": "https://www.nytimes.com/2023/12/14/briefing/israel-hamas-ukraine-eu-china-youtube.html", - "pubDate": "Thu, 14 Dec 2023 22:23:40 +0000", - "dc:creator": "Justin Porter", - "content": "Plus, why you might be an early riser.", - "contentSnippet": "Plus, why you might be an early riser.", - "guid": "https://www.nytimes.com/2023/12/14/briefing/israel-hamas-ukraine-eu-china-youtube.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "YouTube.com", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T22:23:40.000Z" - }, - { - "creator": "Hiba Yazbek", - "title": "3-Day Israeli Raid in Jenin Kills at Least 12, Palestinian Officials Say", - "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-west-bank-jenin-raid.html", - "pubDate": "Thu, 14 Dec 2023 22:12:34 +0000", - "dc:creator": "Hiba Yazbek", - "content": "Residents said Israeli military vehicles left the city on Thursday, signaling an end to the operation inside Jenin, a stronghold of Palestinian resistance in the occupied West Bank.", - "contentSnippet": "Residents said Israeli military vehicles left the city on Thursday, signaling an end to the operation inside Jenin, a stronghold of Palestinian resistance in the occupied West Bank.", - "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-west-bank-jenin-raid.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Jenin (West Bank)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "West Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hospitals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T22:12:34.000Z" - }, - { - "creator": "Valerie Hopkins and Anton Troianovski", - "title": "Takeaways From Putin\u2019s Address on the Ukraine War and More", - "link": "https://www.nytimes.com/2023/12/14/world/europe/putin-speech-russia.html", - "pubDate": "Thu, 14 Dec 2023 22:02:33 +0000", - "dc:creator": "Valerie Hopkins and Anton Troianovski", - "content": "The Russian leader suggested that Western support for Ukraine was drying up and also gave his first comments about Evan Gershkovich, an American reporter detained in Russia.", - "contentSnippet": "The Russian leader suggested that Western support for Ukraine was drying up and also gave his first comments about Evan Gershkovich, an American reporter detained in Russia.", - "guid": "https://www.nytimes.com/2023/12/14/world/europe/putin-speech-russia.html", - "categories": [ - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-14T22:02:33.000Z" - }, - { - "creator": "Ephrat Livni and Aaron Boxerman", - "title": "Israel Says It Disciplined Soldiers Who Sang a Jewish Prayer at a Mosque in Jenin", - "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-soldiers-prayer-jenin-mosque.html", - "pubDate": "Thu, 14 Dec 2023 21:39:01 +0000", - "dc:creator": "Ephrat Livni and Aaron Boxerman", - "content": "With tensions in the area already high, the soldiers were \u201cremoved from operational activity\u201d because of behavior that stood in \u201ccomplete opposition\u201d to the Israeli military\u2019s values, it said.", - "contentSnippet": "With tensions in the area already high, the soldiers were \u201cremoved from operational activity\u201d because of behavior that stood in \u201ccomplete opposition\u201d to the Israeli military\u2019s values, it said.", - "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-soldiers-prayer-jenin-mosque.html", - "categories": [ - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Jenin (West Bank)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "West Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T21:39:01.000Z" - }, - { - "creator": "Valerie Hopkins and Anton Troianovski", - "title": "Putin Suggests He Has a Winning Hand in His War in Ukraine", - "link": "https://www.nytimes.com/2023/12/14/world/europe/putin-news-conference-russia-ukraine.html", - "pubDate": "Thu, 14 Dec 2023 21:35:14 +0000", - "dc:creator": "Valerie Hopkins and Anton Troianovski", - "content": "The Russian leader, in his annual news conference, said he was open to peace talks but showed no hint of compromise. \u201cPeace will come when we achieve our goals,\u201d he said.", - "contentSnippet": "The Russian leader, in his annual news conference, said he was open to peace talks but showed no hint of compromise. \u201cPeace will come when we achieve our goals,\u201d he said.", - "guid": "https://www.nytimes.com/2023/12/14/world/europe/putin-news-conference-russia-ukraine.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gershkovich, Evan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Political Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wall Street Journal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Whelan, Paul N", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T21:35:14.000Z" - }, - { - "creator": "Eshe Nelson", - "title": "Bank of England Keeps Interest Rates at 5.25%, a 15-Year High", - "link": "https://www.nytimes.com/2023/12/14/business/bank-of-england-interest-rates.html", - "pubDate": "Thu, 14 Dec 2023 17:29:12 +0000", - "dc:creator": "Eshe Nelson", - "content": "The Bank of England and European Central Bank both held their benchmark rates steady. Even though inflation has been slowing, they gave no indication of when rates would start to come down.", - "contentSnippet": "The Bank of England and European Central Bank both held their benchmark rates steady. Even though inflation has been slowing, they gave no indication of when rates would start to come down.", - "guid": "https://www.nytimes.com/2023/12/14/business/bank-of-england-interest-rates.html", - "categories": [ - { - "_": "Banking and Financial Institutions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation (Economics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bank of England", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-14T17:29:12.000Z" - }, - { - "creator": "Claire Moses", - "title": "The North Sea Can Be Scary. But Maybe Not TikTok Scary.", - "link": "https://www.nytimes.com/2023/12/14/style/north-sea-tiktok.html", - "pubDate": "Thu, 14 Dec 2023 16:57:33 +0000", - "dc:creator": "Claire Moses", - "content": "A trend nobody asked for is here: Terrifying videos of unruly waves.", - "contentSnippet": "A trend nobody asked for is here: Terrifying videos of unruly waves.", - "guid": "https://www.nytimes.com/2023/12/14/style/north-sea-tiktok.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ships and Shipping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fish and Other Marine Life", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oceans and Seas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "North Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-14T16:57:33.000Z" - }, - { - "creator": "Abdi Latif Dahir", - "title": "Second Tanzanian Is Confirmed Killed in Oct. 7 Attacks in Israel", - "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-hamas-hostage-joshua-mollel.html", - "pubDate": "Thu, 14 Dec 2023 16:43:16 +0000", - "dc:creator": "Abdi Latif Dahir", - "content": "Tanzania\u2019s foreign minister said that Joshua Mollel, an agricultural student, was \u201cimmediately killed after being kidnapped by Hamas.\u201d", - "contentSnippet": "Tanzania\u2019s foreign minister said that Joshua Mollel, an agricultural student, was \u201cimmediately killed after being kidnapped by Hamas.\u201d", - "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-hamas-hostage-joshua-mollel.html", - "categories": [ - { - "_": "Tanzania", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Agriculture and Farming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-14T16:43:16.000Z" - }, - { - "creator": "Isabel Kershner", - "title": "To Fight Hamas, Israel\u2019s Leaders Stopped Fighting One Another. For Now.", - "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-war-cabinet-gaza-netanyahu.html", - "pubDate": "Thu, 14 Dec 2023 12:03:30 +0000", - "dc:creator": "Isabel Kershner", - "content": "A team of rivals joined together in Prime Minister Benjamin Netanyahu\u2019s war cabinet. But beneath the veneer of unity, there are political differences and old resentments.", - "contentSnippet": "A team of rivals joined together in Prime Minister Benjamin Netanyahu\u2019s war cabinet. But beneath the veneer of unity, there are political differences and old resentments.", - "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-war-cabinet-gaza-netanyahu.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gallant, Yoav", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Eisenkot, Gadi", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gantz, Benny", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Dermer, Ron", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Lebanon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "West Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-14T12:03:30.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Thursday Briefing", - "link": "https://www.nytimes.com/2023/12/14/briefing/climate-summit-israel-ukraine.html", - "pubDate": "Thu, 14 Dec 2023 06:24:20 +0000", - "dc:creator": "Natasha Frost", - "content": "An agreement at the U.N. climate summit.", - "contentSnippet": "An agreement at the U.N. climate summit.", - "guid": "https://www.nytimes.com/2023/12/14/briefing/climate-summit-israel-ukraine.html", - "isoDate": "2023-12-14T06:24:20.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Australian Court Throws Out Conviction of Mother Accused of Killing 4 Children", - "link": "https://www.nytimes.com/2023/12/13/world/australia/australia-folbigg-conviction-overturned.html", - "pubDate": "Thu, 14 Dec 2023 05:29:46 +0000", - "dc:creator": "Natasha Frost", - "content": "Kathleen Folbigg, who spent years in prison, was pardoned in June, after an inquiry found that her children had most likely died of natural causes.", - "contentSnippet": "Kathleen Folbigg, who spent years in prison, was pardoned in June, after an inquiry found that her children had most likely died of natural causes.", - "guid": "https://www.nytimes.com/2023/12/13/world/australia/australia-folbigg-conviction-overturned.html", - "categories": [ - { - "_": "Australia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Murders, Attempted Murders and Homicides", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Child Abuse and Neglect", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Amnesties, Commutations and Pardons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kathleen Folbigg", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "New South Wales (Australia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-14T05:29:46.000Z" - }, - { - "creator": "Constant M\u00e9heut and John Yoon", - "title": "Russian Missile Attack on Kyiv Injures Dozens", - "link": "https://www.nytimes.com/2023/12/12/world/europe/ukraine-kyiv-missile-strike.html", - "pubDate": "Thu, 14 Dec 2023 05:06:49 +0000", - "dc:creator": "Constant M\u00e9heut and John Yoon", - "content": "Ukraine\u2019s military said that it had shot down all the ballistic missiles targeting the capital, but that falling debris caused significant damage.", - "contentSnippet": "Ukraine\u2019s military said that it had shot down all the ballistic missiles targeting the capital, but that falling debris caused significant damage.", - "guid": "https://www.nytimes.com/2023/12/12/world/europe/ukraine-kyiv-missile-strike.html", - "categories": [ - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kyiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T05:06:49.000Z" - }, - { - "creator": "Hannah Beech, Muktita Suhartono and Lauren DeCicca", - "title": "Held Hostage in Gaza, a Thai Worker\u2019s Prayers for Freedom Come True", - "link": "https://www.nytimes.com/2023/12/13/world/asia/thailand-hostages-gaza-hamas.html", - "pubDate": "Thu, 14 Dec 2023 03:55:16 +0000", - "dc:creator": "Hannah Beech, Muktita Suhartono and Lauren DeCicca", - "content": "A Thai farmworker clung to hope during her nearly 50 days of captivity in Gaza by befriending a young Israeli girl and dreaming of reuniting with her boyfriend, who had also been abducted.", - "contentSnippet": "A Thai farmworker clung to hope during her nearly 50 days of captivity in Gaza by befriending a young Israeli girl and dreaming of reuniting with her boyfriend, who had also been abducted.", - "guid": "https://www.nytimes.com/2023/12/13/world/asia/thailand-hostages-gaza-hamas.html", - "categories": [ - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Workers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Buddhism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Monasteries and Monks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Thai Food (Cuisine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Agriculture and Farming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Thailand", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-14T03:55:16.000Z" - }, - { - "creator": "Zolan Kanno-Youngs and Karoun Demirjian", - "title": "Inside the Border Talks That Could Decide the Fate of Ukraine Aid", - "link": "https://www.nytimes.com/2023/12/13/us/politics/congress-biden-border-ukraine.html", - "pubDate": "Thu, 14 Dec 2023 00:31:54 +0000", - "dc:creator": "Zolan Kanno-Youngs and Karoun Demirjian", - "content": "Negotiators are racing to reach a deal before Congress is expected to head home for the holidays at the end of the week.", - "contentSnippet": "Negotiators are racing to reach a deal before Congress is expected to head home for the holidays at the end of the week.", - "guid": "https://www.nytimes.com/2023/12/13/us/politics/congress-biden-border-ukraine.html", - "categories": [ - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asylum, Right of", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Democratic Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-14T00:31:54.000Z" - }, - { - "creator": "Adam Sella", - "title": "10 Israeli Soldiers Killed in Gaza ", - "link": "https://www.nytimes.com/2023/12/13/world/middleeast/israel-soldiers-killed-gaza-hamas.html", - "pubDate": "Thu, 14 Dec 2023 00:15:46 +0000", - "dc:creator": "Adam Sella", - "content": "The military said that 10 of its soldiers had died in fighting in the north of the enclave.", - "contentSnippet": "The military said that 10 of its soldiers had died in fighting in the north of the enclave.", - "guid": "https://www.nytimes.com/2023/12/13/world/middleeast/israel-soldiers-killed-gaza-hamas.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-14T00:15:46.000Z" - }, - { - "creator": "Amanda Taub", - "title": "Britain\u2019s dangerous game of constitutional hardball", - "link": "https://www.nytimes.com/2023/12/13/world/europe/sunak-rwanda-constitutional-hardball.html", - "pubDate": "Wed, 13 Dec 2023 22:40:57 +0000", - "dc:creator": "Amanda Taub", - "content": "In seeking to override the U.K.\u2019s highest court, Rishi Sunak\u2019s government is following other nations in a trend that can damage democracy, experts say.", - "contentSnippet": "In seeking to override the U.K.\u2019s highest court, Rishi Sunak\u2019s government is following other nations in a trend that can damage democracy, experts say.", - "guid": "https://www.nytimes.com/2023/12/13/world/europe/sunak-rwanda-constitutional-hardball.html", - "categories": [ - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Rwanda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asylum, Right of", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Constitutions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Democracy (Theory and Philosophy)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Courts and the Judiciary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Human Rights and Human Rights Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Legislatures and Parliaments", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conservative Party (Great Britain)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Supreme Court of the United Kingdom", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Sunak, Rishi (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Johnson, Boris", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-13T22:40:57.000Z" - }, - { - "creator": "Patrick Kingsley", - "title": "Israel\u2019s Netanyahu, Sparring With Biden on Gaza, Faces Risk and Reward", - "link": "https://www.nytimes.com/2023/12/13/world/middleeast/netanyahu-biden-israel-hamas-war.html", - "pubDate": "Wed, 13 Dec 2023 20:56:39 +0000", - "dc:creator": "Patrick Kingsley", - "content": "Israel\u2019s prime minister said he disagreed with President Biden about what should happen in Gaza after the war, and analysts say he might try to use the rift to shore up domestic support.", - "contentSnippet": "Israel\u2019s prime minister said he disagreed with President Biden about what should happen in Gaza after the war, and analysts say he might try to use the rift to shore up domestic support.", - "guid": "https://www.nytimes.com/2023/12/13/world/middleeast/netanyahu-biden-israel-hamas-war.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fatah, Al", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-13T20:56:39.000Z" - }, - { - "creator": "Meg Felling and Nicolas Axelrod", - "title": "\u2018She Gave Me Hope\u2019: Thai Hostage\u2019s Friendship With an Israeli Child", - "link": "https://www.nytimes.com/video/world/asia/100000009221568/thailand-hostages-gaza-hamas.html", - "pubDate": "Wed, 13 Dec 2023 20:37:19 +0000", - "dc:creator": "Meg Felling and Nicolas Axelrod", - "content": "Thai hostage Nutthawaree Munkan was held by Hamas for nearly 50 days. During her time underground, a 5-year-old Israeli child gave her hope that she\u2019d make it out alive.", - "contentSnippet": "Thai hostage Nutthawaree Munkan was held by Hamas for nearly 50 days. During her time underground, a 5-year-old Israeli child gave her hope that she\u2019d make it out alive.", - "guid": "https://www.nytimes.com/video/world/asia/100000009221568/thailand-hostages-gaza-hamas.html", - "categories": [ - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Thailand", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T20:37:19.000Z" - }, - { - "creator": "Jack Nicas, Natalie Alcoba and Luc\u00eda Cholakian Herrera", - "title": "Argentina\u2019s New \u2018Anarcho-Capitalist\u2019 President Starts Slashing", - "link": "https://www.nytimes.com/2023/12/12/world/americas/argentina-javier-milei-cuts.html", - "pubDate": "Wed, 13 Dec 2023 20:05:08 +0000", - "dc:creator": "Jack Nicas, Natalie Alcoba and Luc\u00eda Cholakian Herrera", - "content": "Javier Milei has railed against Argentina\u2019s government for years. In his first week in charge, he\u2019s begun cutting it down.", - "contentSnippet": "Javier Milei has railed against Argentina\u2019s government for years. In his first week in charge, he\u2019s begun cutting it down.", - "guid": "https://www.nytimes.com/2023/12/12/world/americas/argentina-javier-milei-cuts.html", - "categories": [ - { - "_": "Argentina", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Milei, Javier", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation (Economics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Infrastructure (Public Works)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Currency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-13T20:05:08.000Z" - }, - { - "creator": "Andrew Higgins", - "title": "With a New Leader, Poland Prepares for a Course Change in Europe", - "link": "https://www.nytimes.com/2023/12/13/world/europe/donald-tusk-poland-eu.html", - "pubDate": "Wed, 13 Dec 2023 18:07:47 +0000", - "dc:creator": "Andrew Higgins", - "content": "Prime Minister Donald Tusk is sworn in and vows to try to invigorate flagging European support for Ukraine and push for \u201cfull mobilization\u201d against Russia\u2019s military assault.", - "contentSnippet": "Prime Minister Donald Tusk is sworn in and vows to try to invigorate flagging European support for Ukraine and push for \u201cfull mobilization\u201d against Russia\u2019s military assault.", - "guid": "https://www.nytimes.com/2023/12/13/world/europe/donald-tusk-poland-eu.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Tusk, Donald", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Orban, Viktor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Morawiecki, Mateusz", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Poland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T18:07:47.000Z" - }, - { - "creator": "Livia Albeck-Ripka", - "title": "Canadian Town Hosts Passengers From Diverted Delta Flight", - "link": "https://www.nytimes.com/2023/12/13/world/canada/delta-flight-diverted-newfoundland.html", - "pubDate": "Wed, 13 Dec 2023 16:42:14 +0000", - "dc:creator": "Livia Albeck-Ripka", - "content": "The flight was forced to land because of a \u201cmechanical issue,\u201d the company said, leaving hundreds of passengers stranded.", - "contentSnippet": "The flight was forced to land because of a \u201cmechanical issue,\u201d the company said, leaving hundreds of passengers stranded.", - "guid": "https://www.nytimes.com/2023/12/13/world/canada/delta-flight-diverted-newfoundland.html", - "categories": [ - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "September 11 (2001)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Airports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Delta Air Lines Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Canada", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Labrador (Canada)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Newfoundland (Canada)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T16:42:14.000Z" - }, - { - "creator": "Victoria Kim", - "title": "The U.S. criticizes Israel for \u2018indiscriminate\u2019 bombing in Gaza.", - "link": "https://www.nytimes.com/2023/12/13/world/middleeast/us-criticizes-israel-for-indiscriminate-bombing-in-gaza.html", - "pubDate": "Wed, 13 Dec 2023 15:23:23 +0000", - "dc:creator": "Victoria Kim", - "content": "bombing approach in Gaza.", - "contentSnippet": "bombing approach in Gaza.", - "guid": "https://www.nytimes.com/2023/12/13/world/middleeast/us-criticizes-israel-for-indiscriminate-bombing-in-gaza.html", - "isoDate": "2023-12-13T15:23:23.000Z" - }, - { - "creator": "Alan Rappeport", - "title": "World Bank Warns Record Debt Burdens Haunt Developing Economies", - "link": "https://www.nytimes.com/2023/12/13/us/politics/world-bank-debt-developing-nations.html", - "pubDate": "Wed, 13 Dec 2023 14:30:07 +0000", - "dc:creator": "Alan Rappeport", - "content": "Surging interest rates and waning financing options threaten a \u201clost decade\u201d for poor countries.", - "contentSnippet": "Surging interest rates and waning financing options threaten a \u201clost decade\u201d for poor countries.", - "guid": "https://www.nytimes.com/2023/12/13/us/politics/world-bank-debt-developing-nations.html", - "categories": [ - { - "_": "Developing Countries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Credit and Debt", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Poverty", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Interest Rates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-13T14:30:07.000Z" - }, - { - "creator": "Paul Sonne and Andrew E. Kramer", - "title": "Ukraine Faces Critical Tests as It Duels With Russia for Stamina", - "link": "https://www.nytimes.com/2023/12/13/world/europe/ukraine-under-pressure-russia.html", - "pubDate": "Wed, 13 Dec 2023 14:16:02 +0000", - "dc:creator": "Paul Sonne and Andrew E. Kramer", - "content": "With Western support for Kyiv softening and Congress holding up urgently needed aid, Vladimir Putin\u2019s bet on outlasting Ukraine and its allies is looking stronger.", - "contentSnippet": "With Western support for Kyiv softening and Congress holding up urgently needed aid, Vladimir Putin\u2019s bet on outlasting Ukraine and its allies is looking stronger.", - "guid": "https://www.nytimes.com/2023/12/13/world/europe/ukraine-under-pressure-russia.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "North Atlantic Treaty Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Johnson, Mike (1972- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-13T14:16:02.000Z" - }, - { - "creator": "Steven Erlanger", - "title": "Under Rules of War, \u2018Proportionality\u2019 in Gaza Is Not About Evening the Score", - "link": "https://www.nytimes.com/2023/12/13/world/middleeast/israel-gaza-proportionality-law-of-war.html", - "pubDate": "Wed, 13 Dec 2023 13:55:32 +0000", - "dc:creator": "Steven Erlanger", - "content": "The concept, important for determining the legality of an act of war, is about weighing civilian harm against military objectives, not about achieving a balanced number of casualties.", - "contentSnippet": "The concept, important for determining the legality of an act of war, is about weighing civilian harm against military objectives, not about achieving a balanced number of casualties.", - "guid": "https://www.nytimes.com/2023/12/13/world/middleeast/israel-gaza-proportionality-law-of-war.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T13:55:32.000Z" - }, - { - "creator": "Cara Buckley", - "title": "In Real vs. Fake Christmas Tree Debate: Consider the Wildlife", - "link": "https://www.nytimes.com/2023/12/13/climate/christmas-tree-farms-wildlife.html", - "pubDate": "Wed, 13 Dec 2023 11:38:58 +0000", - "dc:creator": "Cara Buckley", - "content": "It may seem counterintuitive to support the annual culling of trees, but environmentalists say Christmas tree farms have ecological benefits.", - "contentSnippet": "It may seem counterintuitive to support the annual culling of trees, but environmentalists say Christmas tree farms have ecological benefits.", - "guid": "https://www.nytimes.com/2023/12/13/climate/christmas-tree-farms-wildlife.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Forests and Forestry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Christmas Trees", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conservation of Resources", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Endangered and Extinct Species", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Birds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-13T11:38:58.000Z" - }, - { - "creator": "Farnaz Fassihi", - "title": "U.N. General Assembly Votes for Israel-Hamas Cease-Fire, Countering U.S. Veto", - "link": "https://www.nytimes.com/2023/12/12/world/middleeast/un-general-assembly-israel-cease-fire.html", - "pubDate": "Wed, 13 Dec 2023 08:50:49 +0000", - "dc:creator": "Farnaz Fassihi", - "content": "About three-quarters of the body\u2019s members voted in favor of the nonbinding resolution. The result underscored the isolation of Israel and the United States.", - "contentSnippet": "About three-quarters of the body\u2019s members voted in favor of the nonbinding resolution. The result underscored the isolation of Israel and the United States.", - "guid": "https://www.nytimes.com/2023/12/12/world/middleeast/un-general-assembly-israel-cease-fire.html", - "categories": [ - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "General Assembly (UN)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T08:50:49.000Z" - }, - { - "creator": "Yan Zhuang", - "title": "Tropical Cyclone Jasper Nears Australia Amid Wave of Extreme Weather", - "link": "https://www.nytimes.com/2023/12/12/world/australia/cyclone-jasper-queensland-australia.html", - "pubDate": "Wed, 13 Dec 2023 07:53:37 +0000", - "dc:creator": "Yan Zhuang", - "content": "The storm is part of a stretch of wild weather the continent has been experiencing, which includes heat waves, fires and floods.", - "contentSnippet": "The storm is part of a stretch of wild weather the continent has been experiencing, which includes heat waves, fires and floods.", - "guid": "https://www.nytimes.com/2023/12/12/world/australia/cyclone-jasper-queensland-australia.html", - "categories": [ - { - "_": "Australia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Cyclones", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bureau of Meteorology (Australia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Weather", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Heat and Heat Waves", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-13T07:53:37.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Wednesday Briefing", - "link": "https://www.nytimes.com/2023/12/13/briefing/biden-israel-sunak-rwanda.html", - "pubDate": "Wed, 13 Dec 2023 05:11:59 +0000", - "dc:creator": "Natasha Frost", - "content": "President Biden\u2019s warning to Israel.", - "contentSnippet": "President Biden\u2019s warning to Israel.", - "guid": "https://www.nytimes.com/2023/12/13/briefing/biden-israel-sunak-rwanda.html", - "isoDate": "2023-12-13T05:11:59.000Z" - }, - { - "creator": "Motoko Rich, Hikari Hida and Chang W. Lee", - "title": "Japan Wants a Stronger Military. Can It Find Enough Troops?", - "link": "https://www.nytimes.com/2023/12/13/world/asia/japan-military.html", - "pubDate": "Wed, 13 Dec 2023 05:01:54 +0000", - "dc:creator": "Motoko Rich, Hikari Hida and Chang W. Lee", - "content": "A shrinking, aging population poses an obstacle as the nation tries to counter security threats from China and North Korea.", - "contentSnippet": "A shrinking, aging population poses an obstacle as the nation tries to counter security threats from China and North Korea.", - "guid": "https://www.nytimes.com/2023/12/13/world/asia/japan-military.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cyberwarfare and Defense", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Population", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Draft and Recruitment (Military)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T05:01:54.000Z" - }, - { - "creator": "Talya Minsberg and Ephrat Livni", - "title": "Israel Announces Discovery of 2 Hostages\u2019 Bodies in Gaza", - "link": "https://www.nytimes.com/2023/12/12/world/middleeast/israel-hostages-bodies-gaza.html", - "pubDate": "Tue, 12 Dec 2023 22:18:24 +0000", - "dc:creator": "Talya Minsberg and Ephrat Livni", - "content": "The remains of Eden Zakaria, 27, and Master Sgt. Ziv Dado, 36, were repatriated to Israel, officials said.", - "contentSnippet": "The remains of Eden Zakaria, 27, and Master Sgt. Ziv Dado, 36, were repatriated to Israel, officials said.", - "guid": "https://www.nytimes.com/2023/12/12/world/middleeast/israel-hostages-bodies-gaza.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-12T22:18:24.000Z" - }, - { - "creator": "Jonathan Wolfe", - "title": "Wednesday Briefing: Biden Says Israel Is Losing Support", - "link": "https://www.nytimes.com/2023/12/12/briefing/israel-gaza-ukraine.html", - "pubDate": "Tue, 12 Dec 2023 21:01:20 +0000", - "dc:creator": "Jonathan Wolfe", - "content": "Plus, Volodymyr Zelensky pleaded for more aid in Washington.", - "contentSnippet": "Plus, Volodymyr Zelensky pleaded for more aid in Washington.", - "guid": "https://www.nytimes.com/2023/12/12/briefing/israel-gaza-ukraine.html", - "isoDate": "2023-12-12T21:01:20.000Z" - }, - { - "creator": "Andrew Higgins", - "title": "Putin\u2019s Drive to Rewrite History Snares a Retired Lithuanian Judge", - "link": "https://www.nytimes.com/2024/01/04/world/europe/putin-russia-lithuania-judge.html", - "pubDate": "Thu, 04 Jan 2024 10:04:03 +0000", - "dc:creator": "Andrew Higgins", - "content": "A few years ago, Kornelija Maceviciene ruled against Soviet officers for a brutal crackdown on pro-independence protesters in her country in 1991. That has made her a target for a Russian court.", - "contentSnippet": "A few years ago, Kornelija Maceviciene ruled against Soviet officers for a brutal crackdown on pro-independence protesters in her country in 1991. That has made her a target for a Russian court.", - "guid": "https://www.nytimes.com/2024/01/04/world/europe/putin-russia-lithuania-judge.html", - "categories": [ - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Lithuania", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "USSR (Former Soviet Union)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T10:04:03.000Z" - }, - { - "creator": "The New York Times", - "title": "Israel-Hamas War: Killing of Senior Leader Carries Risks for Israel, Analysts Say", - "link": "https://www.nytimes.com/live/2024/01/03/world/israel-hamas-war-gaza-news", - "pubDate": "Thu, 04 Jan 2024 09:56:04 +0000", - "dc:creator": "The New York Times", - "content": "Saleh al-Arouri was a key Hamas strategist and a liaison to its Iranian sponsors. But his assassination was likely to set back talks on freeing the remaining hostages in Gaza.", - "contentSnippet": "Saleh al-Arouri was a key Hamas strategist and a liaison to its Iranian sponsors. But his assassination was likely to set back talks on freeing the remaining hostages in Gaza.", - "guid": "https://www.nytimes.com/live/2024/01/03/world/israel-hamas-war-gaza-news", - "isoDate": "2024-01-04T09:56:04.000Z" - }, - { - "creator": "Ivan Nechepurenko and Constant M\u00e9heut", - "title": "Russia and Ukraine Exchange Record Number of P.O.W.s", - "link": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-russia-prisoner-exchange.html", - "pubDate": "Thu, 04 Jan 2024 05:59:39 +0000", - "dc:creator": "Ivan Nechepurenko and Constant M\u00e9heut", - "content": "The exchange of prisoners was the first in months and came as both sides were engaged in an escalating cycle of air assaults.", - "contentSnippet": "The exchange of prisoners was the first in months and came as both sides were engaged in an escalating cycle of air assaults.", - "guid": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-russia-prisoner-exchange.html", - "categories": [ - { - "_": "Prisoners of War", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Budanov, Kyrylo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-04T05:59:39.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Thursday Briefing", - "link": "https://www.nytimes.com/2024/01/04/briefing/iran-bombing-hamas-leader.html", - "pubDate": "Thu, 04 Jan 2024 05:14:48 +0000", - "dc:creator": "Natasha Frost", - "content": "A deadly blast in Iran.", - "contentSnippet": "A deadly blast in Iran.", - "guid": "https://www.nytimes.com/2024/01/04/briefing/iran-bombing-hamas-leader.html", - "isoDate": "2024-01-04T05:14:48.000Z" - }, - { - "creator": "Natasha Frost and Maya Tekeli", - "title": "Princess Mary of Denmark, Australia\u2019s Homegrown Heroine", - "link": "https://www.nytimes.com/2024/01/03/world/australia/denmark-princess-mary-queen.html", - "pubDate": "Thu, 04 Jan 2024 05:03:51 +0000", - "dc:creator": "Natasha Frost and Maya Tekeli", - "content": "\u201cI don\u2019t recall wishing that one day I would be a princess,\u201d Princess Mary told reporters. \u201cI wanted to be a veterinarian.\u201d", - "contentSnippet": "\u201cI don\u2019t recall wishing that one day I would be a princess,\u201d Princess Mary told reporters. \u201cI wanted to be a veterinarian.\u201d", - "guid": "https://www.nytimes.com/2024/01/03/world/australia/denmark-princess-mary-queen.html", - "categories": [ - { - "_": "Mary, Princess of Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Australia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Royal Families", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Polls and Public Opinion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-04T05:03:51.000Z" - }, - { - "creator": "Ian Austen and Vjosa Isai", - "title": "Canada\u2019s Boreal Forests Badly Damaged by Logging", - "link": "https://www.nytimes.com/2024/01/04/world/canada/canada-boreal-forest-logging.html", - "pubDate": "Thu, 04 Jan 2024 05:01:26 +0000", - "dc:creator": "Ian Austen and Vjosa Isai", - "content": "A study finds that logging has inflicted severe damage to the vast boreal forests in Ontario and Quebec, two of the country\u2019s main commercial logging regions.", - "contentSnippet": "A study finds that logging has inflicted severe damage to the vast boreal forests in Ontario and Quebec, two of the country\u2019s main commercial logging regions.", - "guid": "https://www.nytimes.com/2024/01/04/world/canada/canada-boreal-forest-logging.html", - "categories": [ - { - "_": "Forests and Forestry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conservation of Resources", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Logging Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carbon Capture and Sequestration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Griffith University (Queensland, Australia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Natural Resources Defense Council", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Canada", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ontario (Canada)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Quebec Province (Canada)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T05:01:26.000Z" - }, - { - "creator": "Roni Caryn Rabin", - "title": "Killing of Hostages Leads Israelis to Question How Army Conducts Battle", - "link": "https://www.nytimes.com/2024/01/04/world/middleeast/israel-hamas-rules-of-engagement-hostages.html", - "pubDate": "Thu, 04 Jan 2024 05:01:26 +0000", - "dc:creator": "Roni Caryn Rabin", - "content": "Israel\u2019s military said that soldiers who shot hostages, while they waved a white flag, violated its rules of engagement. Human rights activists say the rules are good, but enforcement is lax.", - "contentSnippet": "Israel\u2019s military said that soldiers who shot hostages, while they waved a white flag, violated its rules of engagement. Human rights activists say the rules are good, but enforcement is lax.", - "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/israel-hamas-rules-of-engagement-hostages.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Friendly Fire (Military and Law Enforcement)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T05:01:26.000Z" - }, - { - "creator": "Christina Anderson", - "title": "A Swedish Teenager Was on Japan Airlines Flight 516. Here\u2019s His Story.", - "link": "https://www.nytimes.com/2024/01/03/world/asia/japan-plane-flight-516-passenger.html", - "pubDate": "Thu, 04 Jan 2024 04:17:20 +0000", - "dc:creator": "Christina Anderson", - "content": "Anton Deibe, 17, and his family were flying into Tokyo when their plane collided with a Coast Guard aircraft.", - "contentSnippet": "Anton Deibe, 17, and his family were flying into Tokyo when their plane collided with a Coast Guard aircraft.", - "guid": "https://www.nytimes.com/2024/01/03/world/asia/japan-plane-flight-516-passenger.html", - "categories": [ - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Aviation Accidents, Safety and Disasters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Japan Airlines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Tokyo (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T04:17:20.000Z" - }, - { - "creator": "Vivian Yee and Farnaz Fassihi", - "title": "Over 100 Killed in Iran Blasts at Qassim Suleimani Memorial", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/iran-explosion-qassim-suleimani-ceremony.html", - "pubDate": "Thu, 04 Jan 2024 03:44:39 +0000", - "dc:creator": "Vivian Yee and Farnaz Fassihi", - "content": "No one claimed responsibility for the bombing at a memorial for Qassim Suleimani, the top commander killed by a U.S. drone strike four years ago.", - "contentSnippet": "No one claimed responsibility for the bombing at a memorial for Qassim Suleimani, the top commander killed by a U.S. drone strike four years ago.", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/iran-explosion-qassim-suleimani-ceremony.html", - "categories": [ - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Bombs and Explosives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suleimani, Qassim", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-04T03:44:39.000Z" - }, - { - "creator": "Eric Schmitt, Julian E. Barnes, Helene Cooper and David E. Sanger", - "title": "Attacks Heighten Fears of a Wider War for the Middle East and U.S.", - "link": "https://www.nytimes.com/2024/01/03/us/politics/war-israel-iran-hezbollah-yemen.html", - "pubDate": "Thu, 04 Jan 2024 03:17:06 +0000", - "dc:creator": "Eric Schmitt, Julian E. Barnes, Helene Cooper and David E. Sanger", - "content": "The killing of a top Hamas leader in Lebanon and mysterious twin explosions in Iran heighten fears of a regional war that could draw in the United States.", - "contentSnippet": "The killing of a top Hamas leader in Lebanon and mysterious twin explosions in Iran heighten fears of a regional war that could draw in the United States.", - "guid": "https://www.nytimes.com/2024/01/03/us/politics/war-israel-iran-hezbollah-yemen.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ships and Shipping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Targeted Killings", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fringe Groups and Movements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Khamenei, Ali", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Beirut (Lebanon)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-04T03:17:06.000Z" - }, - { - "creator": "Motoko Rich and Hisako Ueno", - "title": "Order and Calm Eased Evacuation from Burning Japan Airlines Jet", - "link": "https://www.nytimes.com/2024/01/03/world/asia/japan-airlines-fire.html", - "pubDate": "Thu, 04 Jan 2024 01:50:19 +0000", - "dc:creator": "Motoko Rich and Hisako Ueno", - "content": "In addition to a well-trained crew and an advanced plane, the safe evacuation of 367 passengers came down to a relative absence of panic.", - "contentSnippet": "In addition to a well-trained crew and an advanced plane, the safe evacuation of 367 passengers came down to a relative absence of panic.", - "guid": "https://www.nytimes.com/2024/01/03/world/asia/japan-airlines-fire.html", - "categories": [ - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Evacuations and Evacuees", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Aviation Accidents, Safety and Disasters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Japan Airlines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T01:50:19.000Z" - }, - { - "creator": "Roni Caryn Rabin", - "title": "Israelis Fear Assassination of Hamas Deputy May Disrupt Hostage Talks", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-hamas-assassination.html", - "pubDate": "Thu, 04 Jan 2024 00:26:37 +0000", - "dc:creator": "Roni Caryn Rabin", - "content": "Israelis welcomed news that a top Palestinian militant had been killed, but feared that it might impede the release of hostages and kindle a broader war.", - "contentSnippet": "Israelis welcomed news that a top Palestinian militant had been killed, but feared that it might impede the release of hostages and kindle a broader war.", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-hamas-assassination.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arouri, Saleh al- (1966-2024)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Lebanon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Nasrallah, Hassan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-04T00:26:37.000Z" - }, - { - "creator": "Vivian Nereim and Tariq Panja", - "title": "Menendez Case Focuses on How Qatar Trades Its Riches for Clout", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/menendez-indictment-qatar.html", - "pubDate": "Wed, 03 Jan 2024 23:42:04 +0000", - "dc:creator": "Vivian Nereim and Tariq Panja", - "content": "The tiny Gulf state has cultivated relationships with powerful people and institutions to raise its global profile, and to protect its interests.", - "contentSnippet": "The tiny Gulf state has cultivated relationships with powerful people and institutions to raise its global profile, and to protect its interests.", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/menendez-indictment-qatar.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Menendez, Robert", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Qatar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Daibes, Fred", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bribery and Kickbacks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World Cup 2022 (Soccer)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-03T23:42:04.000Z" - }, - { - "creator": "Mike Ives, Rin Hindryati and Ulet Ifansasti", - "title": "\u2018World\u2019s Oldest Pyramid\u2019? A Study\u2019s Claim Troubles Archaeologists", - "link": "https://www.nytimes.com/2024/01/03/world/asia/oldest-pyramid-indonesia-netflix.html", - "pubDate": "Wed, 03 Jan 2024 23:10:43 +0000", - "dc:creator": "Mike Ives, Rin Hindryati and Ulet Ifansasti", - "content": "The study, under investigation by its publisher, has fueled a dispute over the age of a partially excavated site and prompted warnings about the dangers of nationalist mythmaking.", - "contentSnippet": "The study, under investigation by its publisher, has fueled a dispute over the age of a partially excavated site and prompted warnings about the dangers of nationalist mythmaking.", - "guid": "https://www.nytimes.com/2024/01/03/world/asia/oldest-pyramid-indonesia-netflix.html", - "categories": [ - { - "_": "Archaeology and Anthropology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Geology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carbon Dating", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Academic and Scientific Journals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ethics and Official Misconduct", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netflix Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Society for American Archaeology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bandung (Indonesia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "John Wiley & Sons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-03T23:10:43.000Z" - }, - { - "creator": "Dionne Searcey", - "title": "Indiana\u2019s Plan to Pipe In Groundwater for Microchip-Making Draws Fire", - "link": "https://www.nytimes.com/2024/01/02/climate/indiana-leap-groundwater-pipe-microchips.html", - "pubDate": "Wed, 03 Jan 2024 22:51:29 +0000", - "dc:creator": "Dionne Searcey", - "content": "The state is courting high-tech investments, but a new industrial park may lack enough water. Opponents say piping it from miles away might dry out residential wells.", - "contentSnippet": "The state is courting high-tech investments, but a new industrial park may lack enough water. Opponents say piping it from miles away might dry out residential wells.", - "guid": "https://www.nytimes.com/2024/01/02/climate/indiana-leap-groundwater-pipe-microchips.html", - "categories": [ - { - "_": "Indiana", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Water", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Aquifers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Chips", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conservation of Resources", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tippecanoe County (Ind)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "audio-neutral-informative", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-03T22:51:29.000Z" - }, - { - "creator": "Simon Romero and Emiliano Rodr\u00edguez Mega", - "title": "Mexico Officials Rescue 31 Migrants Abducted Near U.S. Border", - "link": "https://www.nytimes.com/2024/01/03/us/migrants-abducted-mexico-us-border.html", - "pubDate": "Wed, 03 Jan 2024 22:47:38 +0000", - "dc:creator": "Simon Romero and Emiliano Rodr\u00edguez Mega", - "content": "Cartels are preying on asylum seekers and migrants from around the world as they crowd northern Mexico, creating a kidnap-for-ransom revenue stream.", - "contentSnippet": "Cartels are preying on asylum seekers and migrants from around the world as they crowd northern Mexico, creating a kidnap-for-ransom revenue stream.", - "guid": "https://www.nytimes.com/2024/01/03/us/migrants-abducted-mexico-us-border.html", - "categories": [ - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Organized Crime", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Human Rights First", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Lopez Obrador, Andres Manuel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mexico", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Tamaulipas (Mexico)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T22:47:38.000Z" - }, - { - "creator": "Euan Ward, Hwaida Saad and Ben Hubbard", - "title": "Hezbollah\u2019s Leader Pledges Revenge for Killing of a Hamas Leader in Beirut", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/hezbollah-hassan-nasrallah-speech-israel.html", - "pubDate": "Wed, 03 Jan 2024 22:20:00 +0000", - "dc:creator": "Euan Ward, Hwaida Saad and Ben Hubbard", - "content": "\u201cYesterday\u2019s crime will not go unpunished,\u201d Hassan Nasrallah warned ominously, but he gave no specifics, saying he would speak again on Friday.", - "contentSnippet": "\u201cYesterday\u2019s crime will not go unpunished,\u201d Hassan Nasrallah warned ominously, but he gave no specifics, saying he would speak again on Friday.", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/hezbollah-hassan-nasrallah-speech-israel.html", - "categories": [ - { - "_": "Nasrallah, Hassan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Arouri, Saleh al- (1966-2024)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Suleimani, Qassim", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Beirut (Lebanon)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T22:20:00.000Z" - }, - { - "creator": "Chris Buckley", - "title": "Dismissals Point to Xi Jinping\u2019s Quiet Shake-Up of China\u2019s Military", - "link": "https://www.nytimes.com/2024/01/03/world/asia/xi-jinping-military-purge.html", - "pubDate": "Wed, 03 Jan 2024 21:57:45 +0000", - "dc:creator": "Chris Buckley", - "content": "The purge of several commanders from China\u2019s legislature was the latest sign of widening investigations focused on the sensitive arms sector, experts say.", - "contentSnippet": "The purge of several commanders from China\u2019s legislature was the latest sign of widening investigations focused on the sensitive arms sector, experts say.", - "guid": "https://www.nytimes.com/2024/01/03/world/asia/xi-jinping-military-purge.html", - "categories": [ - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Xi Jinping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Central Military Commission (China)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National People's Congress (China)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "People's Liberation Army (China)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Chinese People's Political Consultative Conference", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Government Contracts and Procurement", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Li Shangfu", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "South China Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T21:57:45.000Z" - }, - { - "creator": "Alex Traub", - "title": "Maureen Flavin Sweeney Dies at 100; Her Weather Report Delayed D-Day", - "link": "https://www.nytimes.com/2024/01/02/world/europe/maureen-sweeney-dead.html", - "pubDate": "Wed, 03 Jan 2024 21:42:57 +0000", - "dc:creator": "Alex Traub", - "content": "She helped save General Eisenhower\u2019s invasion from potential disaster, enabling the Allies to gain a foothold in France that was essential to victory in World War II.", - "contentSnippet": "She helped save General Eisenhower\u2019s invasion from potential disaster, enabling the Allies to gain a foothold in France that was essential to victory in World War II.", - "guid": "https://www.nytimes.com/2024/01/02/world/europe/maureen-sweeney-dead.html", - "categories": [ - { - "_": "Sweeney, Maureen (1923-2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World War II (1939-45)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Weather", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "D-Day", - "$": { - "domain": "" - } - }, - { - "_": "Eisenhower, Dwight David", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Normandy (France)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ireland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T21:42:57.000Z" - }, - { - "creator": "Justin Porter", - "title": "Thursday Briefing: Blasts in Iran Kill Dozens", - "link": "https://www.nytimes.com/2024/01/03/briefing/iran-blasts-suleimani-japan-airlines-evacuation-china-military.html", - "pubDate": "Wed, 03 Jan 2024 21:32:00 +0000", - "dc:creator": "Justin Porter", - "content": "Plus, China shakes up its military.", - "contentSnippet": "Plus, China shakes up its military.", - "guid": "https://www.nytimes.com/2024/01/03/briefing/iran-blasts-suleimani-japan-airlines-evacuation-china-military.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Suleimani, Qassim", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Japan Airlines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Xi Jinping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T21:32:00.000Z" - }, - { - "creator": "Talya Minsberg", - "title": "Israel Supreme Court Delivers Setback to Campaign to Remove Checks on Netanyahu", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-supreme-court-netanyahu.html", - "pubDate": "Wed, 03 Jan 2024 21:08:58 +0000", - "dc:creator": "Talya Minsberg", - "content": "The country\u2019s Supreme Court ruled to postpone the adoption of a new law making it harder to designate a sitting prime minister unfit for office, a direct blow to Prime Minister Benjamin Netanyahu.", - "contentSnippet": "The country\u2019s Supreme Court ruled to postpone the adoption of a new law making it harder to designate a sitting prime minister unfit for office, a direct blow to Prime Minister Benjamin Netanyahu.", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-supreme-court-netanyahu.html", - "categories": [ - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Likud Party (Israel)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Supreme Court of Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-03T21:08:58.000Z" - }, - { - "creator": "Daniel Victor", - "title": "Israel Says It Dismantled a Hamas Tunnel Under Gaza\u2019s Al-Shifa Hospital ", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-hamas-tunnel-al-shifa-hospital.html", - "pubDate": "Wed, 03 Jan 2024 20:55:07 +0000", - "dc:creator": "Daniel Victor", - "content": "The Israeli military says the tearing down was done in November and that hospital wasn\u2019t damaged in the process.", - "contentSnippet": "The Israeli military says the tearing down was done in November and that hospital wasn\u2019t damaged in the process.", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-hamas-tunnel-al-shifa-hospital.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T20:55:07.000Z" - }, - { - "creator": "Constant M\u00e9heut and Daria Mitiuk", - "title": "\u2018It\u2019s State Propaganda\u2019: Ukrainians Shun TV News as War Drags on", - "link": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-war-tv-news-telemarathon.html", - "pubDate": "Wed, 03 Jan 2024 20:30:13 +0000", - "dc:creator": "Constant M\u00e9heut and Daria Mitiuk", - "content": "A government-approved news program intended to counter Russian disinformation and boost morale is coming under criticism for painting a rosy picture of the war.", - "contentSnippet": "A government-approved news program intended to counter Russian disinformation and boost morale is coming under criticism for painting a rosy picture of the war.", - "guid": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-war-tv-news-telemarathon.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Censorship", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freedom of Speech and Expression", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Television Sets and Media Devices", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T20:30:13.000Z" - }, - { - "creator": "Mark Landler", - "title": "Junior Doctors at N.H.S. Begin 6-Day Strike", - "link": "https://www.nytimes.com/2024/01/03/world/europe/national-health-service-doctors-strike.html", - "pubDate": "Wed, 03 Jan 2024 19:31:49 +0000", - "dc:creator": "Mark Landler", - "content": "The young doctors\u2019 walkout could result in numerous canceled medical visits and surgical procedures, undoing recent progress in cutting wait times.", - "contentSnippet": "The young doctors\u2019 walkout could result in numerous canceled medical visits and surgical procedures, undoing recent progress in cutting wait times.", - "guid": "https://www.nytimes.com/2024/01/03/world/europe/national-health-service-doctors-strike.html", - "categories": [ - { - "_": "National Health Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Labour Party (Great Britain)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "England", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sunak, Rishi (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Strikes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Medicine and Health", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-03T19:31:49.000Z" - }, - { - "creator": "Ben Hubbard", - "title": "Leader\u2019s Killing Is a Blow, but Not a Knockout, for Hamas", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/hamas-leader-saleh-al-arouri-killed-ramifications.html", - "pubDate": "Wed, 03 Jan 2024 19:10:34 +0000", - "dc:creator": "Ben Hubbard", - "content": "The killing of Saleh al-Arouri, a key Hamas strategist, in Lebanon sets the organization back at a vulnerable time. The group has rebuilt after the assassination of other leaders, though.", - "contentSnippet": "The killing of Saleh al-Arouri, a key Hamas strategist, in Lebanon sets the organization back at a vulnerable time. The group has rebuilt after the assassination of other leaders, though.", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/hamas-leader-saleh-al-arouri-killed-ramifications.html", - "categories": [ - { - "_": "Arouri, Saleh al- (1966-2024)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-03T19:10:34.000Z" - }, - { - "creator": "Emma Bubola", - "title": "Who Was the Iranian General Qassim Suleimani?", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/who-is-qassim-suleimani.html", - "pubDate": "Wed, 03 Jan 2024 18:33:56 +0000", - "dc:creator": "Emma Bubola", - "content": "General Suleimani, the powerful commander heading Iran\u2019s Quds Force, was considered a hero by some in the country. The anniversary of his death has attracted horrific violence.", - "contentSnippet": "General Suleimani, the powerful commander heading Iran\u2019s Quds Force, was considered a hero by some in the country. The anniversary of his death has attracted horrific violence.", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/who-is-qassim-suleimani.html", - "categories": [ - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suleimani, Qassim", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-03T18:33:56.000Z" - }, - { - "creator": "Tiffany May", - "title": "Jimmy Lai Pleads Not Guilty to Hong Kong Security Law Charges", - "link": "https://www.nytimes.com/2024/01/02/world/asia/hong-kong-jimmy-lai-trial.html", - "pubDate": "Wed, 03 Jan 2024 18:22:35 +0000", - "dc:creator": "Tiffany May", - "content": "The prosecution accused him of colluding with U.S. officials to undermine Hong Kong\u2019s interests, citing private messages, meetings and social media posts.", - "contentSnippet": "The prosecution accused him of colluding with U.S. officials to undermine Hong Kong\u2019s interests, citing private messages, meetings and social media posts.", - "guid": "https://www.nytimes.com/2024/01/02/world/asia/hong-kong-jimmy-lai-trial.html", - "categories": [ - { - "_": "Political Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hong Kong Protests (2019)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Apple Daily", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Lai, Jimmy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hong Kong", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T18:22:35.000Z" - }, - { - "creator": "Emily Anthes", - "title": "First Case of Lethal Bird Flu in Polar Bears Reported in Alaska", - "link": "https://www.nytimes.com/2024/01/03/science/bird-flu-polar-bears.html", - "pubDate": "Wed, 03 Jan 2024 17:30:15 +0000", - "dc:creator": "Emily Anthes", - "content": "Tissue samples from a polar bear that was found dead have tested positive for the virus.", - "contentSnippet": "Tissue samples from a polar bear that was found dead have tested positive for the virus.", - "guid": "https://www.nytimes.com/2024/01/03/science/bird-flu-polar-bears.html", - "categories": [ - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "your-feed-animals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Polar Bears", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Avian Influenza", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Endangered and Extinct Species", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wildlife Die-Offs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bears", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conservation of Resources", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Viruses", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alaska", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Arctic Regions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T17:30:15.000Z" - }, - { - "creator": "Ben Hubbard", - "title": "Al-Arouri\u2019s killing is a blow to Hamas, though likely not a debilitating one, analysts say.", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/al-arouris-killing-is-a-blow-to-hamas-though-likely-not-a-debilitating-one-analysts-say.html", - "pubDate": "Wed, 03 Jan 2024 15:17:05 +0000", - "dc:creator": "Ben Hubbard", - "content": "", - "contentSnippet": "", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/al-arouris-killing-is-a-blow-to-hamas-though-likely-not-a-debilitating-one-analysts-say.html", - "isoDate": "2024-01-03T15:17:05.000Z" - }, - { - "creator": "Daniel Victor", - "title": "Who Was Saleh al-Arouri, the Senior Hamas Leader Killed in Beirut?", - "link": "https://www.nytimes.com/2024/01/02/world/middleeast/hamas-leader-beirut-killed.html", - "pubDate": "Wed, 03 Jan 2024 14:22:50 +0000", - "dc:creator": "Daniel Victor", - "content": "The Hamas deputy, who the group said had been killed, helped usher in closer ties with the Iran-backed Hezbollah militia and was accused of masterminding attacks in Israel.", - "contentSnippet": "The Hamas deputy, who the group said had been killed, helped usher in closer ties with the Iran-backed Hezbollah militia and was accused of masterminding attacks in Israel.", - "guid": "https://www.nytimes.com/2024/01/02/world/middleeast/hamas-leader-beirut-killed.html", - "categories": [ - { - "_": "Arouri, Saleh al- (1966-2024)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Beirut (Lebanon)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Lebanon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T14:22:50.000Z" - }, - { - "creator": "Motoko Rich, Hisako Ueno, Kaly Soto and Emma Bubola", - "title": "5 Killed After Japan Airlines Plane Collision at Tokyo Airport", - "link": "https://www.nytimes.com/2024/01/02/world/asia/tokyo-haneda-plane-fire.html", - "pubDate": "Wed, 03 Jan 2024 12:21:14 +0000", - "dc:creator": "Motoko Rich, Hisako Ueno, Kaly Soto and Emma Bubola", - "content": "Japan Airlines said all 367 passengers and 12 crew members had safely evacuated the jet. But five crew members on a Japanese Coast Guard plane that collided with it were killed.", - "contentSnippet": "Japan Airlines said all 367 passengers and 12 crew members had safely evacuated the jet. But five crew members on a Japanese Coast Guard plane that collided with it were killed.", - "guid": "https://www.nytimes.com/2024/01/02/world/asia/tokyo-haneda-plane-fire.html", - "categories": [ - { - "_": "Japan Airlines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Aviation Accidents, Safety and Disasters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fires and Firefighters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Airports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tokyo (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-03T12:21:14.000Z" - }, - { - "creator": "Choe Sang-Hun and John Yoon", - "title": "Attack on Opposition Leader Raises Alarms in Divided South Korea", - "link": "https://www.nytimes.com/2024/01/03/world/asia/south-korea-opposition-leader-stabbing.html", - "pubDate": "Wed, 03 Jan 2024 10:50:08 +0000", - "dc:creator": "Choe Sang-Hun and John Yoon", - "content": "The attack on Lee Jae-myung, who narrowly lost the 2022 presidential vote, came amid a deepening political divide and increasingly extreme discourse in South Korea.", - "contentSnippet": "The attack on Lee Jae-myung, who narrowly lost the 2022 presidential vote, came amid a deepening political divide and increasingly extreme discourse in South Korea.", - "guid": "https://www.nytimes.com/2024/01/03/world/asia/south-korea-opposition-leader-stabbing.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stalking (Crime)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Elections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Lee Jae-myung", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Yoon Suk-yeol", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-03T10:50:08.000Z" - }, - { - "creator": "The New York Times", - "title": "Hamas blames Israel for the death of a senior official in Lebanon.", - "link": "https://www.nytimes.com/2024/01/03/world/middleeast/hamas-blames-israel-for-the-death-of-a-senior-official-in-lebanon.html", - "pubDate": "Wed, 03 Jan 2024 09:00:01 +0000", - "dc:creator": "The New York Times", - "content": "", - "contentSnippet": "", - "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/hamas-blames-israel-for-the-death-of-a-senior-official-in-lebanon.html", - "isoDate": "2024-01-03T09:00:01.000Z" - }, - { - "creator": "Maya Tekeli and Emma Bubola", - "title": "Denmark\u2019s Prince Frederik Represents a New Generation of Monarchs", - "link": "https://www.nytimes.com/2024/01/02/world/europe/denmark-prince-frederik-royal-family.html", - "pubDate": "Wed, 03 Jan 2024 08:24:38 +0000", - "dc:creator": "Maya Tekeli and Emma Bubola", - "content": "Like King Charles III of Britain, Prince Frederik, who will soon ascend to his country\u2019s throne, is part of a younger generation of royals who have embraced environmental issues.", - "contentSnippet": "Like King Charles III of Britain, Prince Frederik, who will soon ascend to his country\u2019s throne, is part of a younger generation of royals who have embraced environmental issues.", - "guid": "https://www.nytimes.com/2024/01/02/world/europe/denmark-prince-frederik-royal-family.html", - "categories": [ - { - "_": "Royal Families", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Environment", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Frederik, Prince of Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T08:24:38.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Wednesday Briefing", - "link": "https://www.nytimes.com/2024/01/03/briefing/hamas-japan-ukraine-strikes.html", - "pubDate": "Wed, 03 Jan 2024 05:16:59 +0000", - "dc:creator": "Natasha Frost", - "content": "The killing of a Hamas leader.", - "contentSnippet": "The killing of a Hamas leader.", - "guid": "https://www.nytimes.com/2024/01/03/briefing/hamas-japan-ukraine-strikes.html", - "isoDate": "2024-01-03T05:16:59.000Z" - }, - { - "creator": "Choe Sang-Hun", - "title": "Lee Jae-myung, South Korea Opposition Leader, Is Stabbed", - "link": "https://www.nytimes.com/2024/01/01/world/asia/south-korea-opposition-lee-jae-myung.html", - "pubDate": "Wed, 03 Jan 2024 05:00:59 +0000", - "dc:creator": "Choe Sang-Hun", - "content": "Lee Jae-myung, the Democratic Party head, was attacked by a 66-year-old man in the city of Busan, the police said. Mr. Lee is now recovering from surgery.", - "contentSnippet": "Lee Jae-myung, the Democratic Party head, was attacked by a 66-year-old man in the city of Busan, the police said. Mr. Lee is now recovering from surgery.", - "guid": "https://www.nytimes.com/2024/01/01/world/asia/south-korea-opposition-lee-jae-myung.html", - "categories": [ - { - "_": "Assaults", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Lee Jae-myung", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Busan (South Korea)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-03T05:00:59.000Z" - }, - { - "creator": "Ben Hubbard, Ronen Bergman, Aaron Boxerman, Euan Ward and Eric Schmitt", - "title": "Deputy Hamas Leader Is Killed in Lebanon as Fears Grow of a Wider War", - "link": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-hamas-leader-war.html", - "pubDate": "Wed, 03 Jan 2024 02:27:13 +0000", - "dc:creator": "Ben Hubbard, Ronen Bergman, Aaron Boxerman, Euan Ward and Eric Schmitt", - "content": "The Israeli government would not comment on the death of Saleh al-Arouri. But a U.S. official said to expect Israel to assassinate Hamas officials \u201cfor years.\u201d", - "contentSnippet": "The Israeli government would not comment on the death of Saleh al-Arouri. But a U.S. official said to expect Israel to assassinate Hamas officials \u201cfor years.\u201d", - "guid": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-hamas-leader-war.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Arouri, Saleh al- (1966-2024)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Beirut (Lebanon)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T02:27:13.000Z" - }, - { - "creator": "Julian E. Barnes", - "title": "Hamas Used Gaza Hospital as a Command Center, U.S. Intelligence Says", - "link": "https://www.nytimes.com/2024/01/02/us/politics/gaza-hospital-hamas.html", - "pubDate": "Tue, 02 Jan 2024 23:50:48 +0000", - "dc:creator": "Julian E. Barnes", - "content": "Israeli forces stormed the site in November, drawing intense international scrutiny and criticism.", - "contentSnippet": "Israeli forces stormed the site in November, drawing intense international scrutiny and criticism.", - "guid": "https://www.nytimes.com/2024/01/02/us/politics/gaza-hospital-hamas.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Classified Information and State Secrets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Al Shifa Hospital (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-02T23:50:48.000Z" - }, - { - "creator": "Isabel Kershner and Roni Rabin", - "title": "Netanyahu Allies Signal No Immediate Countermoves to Supreme Court Ruling", - "link": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-supreme-court.html", - "pubDate": "Tue, 02 Jan 2024 22:10:37 +0000", - "dc:creator": "Isabel Kershner and Roni Rabin", - "content": "With Israel fighting in Gaza, people on both sides of the judiciary debate appear unwilling to return to the domestic upheaval that preceded the war.", - "contentSnippet": "With Israel fighting in Gaza, people on both sides of the judiciary debate appear unwilling to return to the domestic upheaval that preceded the war.", - "guid": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-supreme-court.html", - "categories": [ - { - "_": "Supreme Court of Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-02T22:10:37.000Z" - }, - { - "creator": "Rachel Chaundler", - "title": "Spanish Soccer Star Testifies About Unwanted Kiss", - "link": "https://www.nytimes.com/2024/01/02/world/europe/spain-soccer-jennifer-hermoso.html", - "pubDate": "Tue, 02 Jan 2024 21:50:59 +0000", - "dc:creator": "Rachel Chaundler", - "content": "Jennifer Hermoso, who was kissed on the mouth by Spain\u2019s former soccer boss, Luis Rubiales, gave evidence at a hearing to determine whether Mr. Rubiales will be charged.", - "contentSnippet": "Jennifer Hermoso, who was kissed on the mouth by Spain\u2019s former soccer boss, Luis Rubiales, gave evidence at a hearing to determine whether Mr. Rubiales will be charged.", - "guid": "https://www.nytimes.com/2024/01/02/world/europe/spain-soccer-jennifer-hermoso.html", - "categories": [ - { - "_": "Soccer", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hermoso, Jennifer (1990- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Rubiales, Luis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Spain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sex Crimes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Coaches and Managers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Women's World Cup (Soccer)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "UEFA Nations League (Soccer)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Barcelona (Soccer Team)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Federation of Association Football (FIFA)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Court (Spain)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Vilda, Jorge (1981- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Workplace Hazards and Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-02T21:50:59.000Z" - }, - { - "creator": "Alan Cowell", - "title": "Peter Magubane, 91, Who Fought Apartheid With His Camera, Is Dead", - "link": "https://www.nytimes.com/2024/01/01/world/africa/peter-magubane-dead.html", - "pubDate": "Tue, 02 Jan 2024 21:48:13 +0000", - "dc:creator": "Alan Cowell", - "content": "He documented the cruelties of white South African rule, and he was made to pay for it, enduring beatings and 586 consecutive days in solitary confinement.", - "contentSnippet": "He documented the cruelties of white South African rule, and he was made to pay for it, enduring beatings and 586 consecutive days in solitary confinement.", - "guid": "https://www.nytimes.com/2024/01/01/world/africa/peter-magubane-dead.html", - "categories": [ - { - "_": "Magubane, Peter (1932-2024)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Photography", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Apartheid (Policy)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Solitary Confinement", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Black People", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "South Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Photojournalism", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-02T21:48:13.000Z" - }, - { - "creator": "Justin Porter", - "title": "Wednesday Briefing: Beirut Blast Kills Senior Hamas Leader", - "link": "https://www.nytimes.com/2024/01/02/briefing/hamas-leaders-beirut-japan-plane-india-economy.html", - "pubDate": "Tue, 02 Jan 2024 20:43:36 +0000", - "dc:creator": "Justin Porter", - "content": "Plus the great winter festivals of Asia.", - "contentSnippet": "Plus the great winter festivals of Asia.", - "guid": "https://www.nytimes.com/2024/01/02/briefing/hamas-leaders-beirut-japan-plane-india-economy.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Beirut (Lebanon)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Japan Airlines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "India", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-02T20:43:36.000Z" - }, - { - "creator": "Constant M\u00e9heut and Anatoly Kurmanaev", - "title": "Russian Missiles Hammer Kyiv in Large-Scale Attack on Ukraine", - "link": "https://www.nytimes.com/2024/01/02/world/europe/missiles-ukraine-war-attack-russia.html", - "pubDate": "Tue, 02 Jan 2024 17:48:12 +0000", - "dc:creator": "Constant M\u00e9heut and Anatoly Kurmanaev", - "content": "Russia said that Ukraine retaliated hours later with missile attacks on Russian territory, part of an escalating cycle of air assaults between the two countries.", - "contentSnippet": "Russia said that Ukraine retaliated hours later with missile attacks on Russian territory, part of an escalating cycle of air assaults between the two countries.", - "guid": "https://www.nytimes.com/2024/01/02/world/europe/missiles-ukraine-war-attack-russia.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drones (Pilotless Planes)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kyiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-02T17:48:12.000Z" - }, - { - "creator": "Motoko Rich and Hisako Ueno", - "title": "Japan Earthquake Death Toll Rises to at Least 55", - "link": "https://www.nytimes.com/2024/01/02/world/asia/japan-earthquake.html", - "pubDate": "Tue, 02 Jan 2024 17:44:49 +0000", - "dc:creator": "Motoko Rich and Hisako Ueno", - "content": "The authorities continued to look for people buried in the rubble of collapsed and burned buildings in the coastal epicenter of the disaster.", - "contentSnippet": "The authorities continued to look for people buried in the rubble of collapsed and burned buildings in the coastal epicenter of the disaster.", - "guid": "https://www.nytimes.com/2024/01/02/world/asia/japan-earthquake.html", - "categories": [ - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Earthquakes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Power Failures and Blackouts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Evacuations and Evacuees", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-02T17:44:49.000Z" - }, - { - "creator": "Steven Erlanger", - "title": "Supreme Court Ruling Adds to Questions Over Kind of State Israel Will Be", - "link": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-supreme-court-netanyahu.html", - "pubDate": "Tue, 02 Jan 2024 17:06:23 +0000", - "dc:creator": "Steven Erlanger", - "content": "Monday\u2019s court ruling joined the war in Gaza in a widening crisis over what kind of state Israel will be.", - "contentSnippet": "Monday\u2019s court ruling joined the war in Gaza in a widening crisis over what kind of state Israel will be.", - "guid": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-supreme-court-netanyahu.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Supreme Court of Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Likud Party (Israel)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Courts and the Judiciary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Right-Wing Extremism and Alt-Right", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Democracy (Theory and Philosophy)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-02T17:06:23.000Z" - }, - { - "creator": "Abdi Latif Dahir", - "title": "Somaliland Deal to Grant Ethiopia Red Sea Access Draws Condemnation", - "link": "https://www.nytimes.com/2024/01/02/world/africa/ethiopia-somaliland-port-deal.html", - "pubDate": "Tue, 02 Jan 2024 15:46:42 +0000", - "dc:creator": "Abdi Latif Dahir", - "content": "A landmark pact between Ethiopia and the breakaway region of Somaliland has drawn condemnation from Somalia. Other neighbors also worry about allowing potential naval access to the Red Sea.", - "contentSnippet": "A landmark pact between Ethiopia and the breakaway region of Somaliland has drawn condemnation from Somalia. Other neighbors also worry about allowing potential naval access to the Red Sea.", - "guid": "https://www.nytimes.com/2024/01/02/world/africa/ethiopia-somaliland-port-deal.html", - "categories": [ - { - "_": "Ethiopia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Somaliland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Somalia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Horn of Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Red Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ahmed, Abiy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gulf of Aden", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Abdi, Muse Bihi", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-02T15:46:42.000Z" - }, - { - "creator": "Aaron Boxerman", - "title": "What Israel\u2019s Supreme Court Justices Wrote in Their Landmark Ruling", - "link": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-supreme-court-justices-ruling.html", - "pubDate": "Tue, 02 Jan 2024 08:38:36 +0000", - "dc:creator": "Aaron Boxerman", - "content": "The full decision, which exceeded 250,000 words, marked the first time that Israel\u2019s highest court had struck down a quasi-constitutional Basic Law.", - "contentSnippet": "The full decision, which exceeded 250,000 words, marked the first time that Israel\u2019s highest court had struck down a quasi-constitutional Basic Law.", - "guid": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-supreme-court-justices-ruling.html", - "categories": [ - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Courts and the Judiciary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-02T08:38:36.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Tuesday Briefing", - "link": "https://www.nytimes.com/2024/01/02/briefing/israel-judiciary-japan-earthquake.html", - "pubDate": "Tue, 02 Jan 2024 05:13:05 +0000", - "dc:creator": "Natasha Frost", - "content": "A landmark court ruling in Israel.", - "contentSnippet": "A landmark court ruling in Israel.", - "guid": "https://www.nytimes.com/2024/01/02/briefing/israel-judiciary-japan-earthquake.html", - "isoDate": "2024-01-02T05:13:05.000Z" - }, - { - "creator": "Motoko Rich", - "title": "Powerful Earthquake Hits Japan, and Officials Warn of Aftershocks", - "link": "https://www.nytimes.com/2024/01/01/world/asia/japan-earthquake.html", - "pubDate": "Tue, 02 Jan 2024 02:51:12 +0000", - "dc:creator": "Motoko Rich", - "content": "There were reports of collapsed buildings and people being trapped underneath them. The quake disrupted electricity and phone service, and initially raised fears of a tsunami.", - "contentSnippet": "There were reports of collapsed buildings and people being trapped underneath them. The quake disrupted electricity and phone service, and initially raised fears of a tsunami.", - "guid": "https://www.nytimes.com/2024/01/01/world/asia/japan-earthquake.html", - "categories": [ - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Earthquakes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "vis-video", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-02T02:51:12.000Z" - }, - { - "creator": "Anatoly Kurmanaev and Constant M\u00e9heut", - "title": "Putin Vows to Keep Up Bombardment After a Russian City Is Hit", - "link": "https://www.nytimes.com/2024/01/01/world/europe/ukraine-russia-putin-belgorod.html", - "pubDate": "Mon, 01 Jan 2024 23:48:31 +0000", - "dc:creator": "Anatoly Kurmanaev and Constant M\u00e9heut", - "content": "President Vladimir V. Putin of Russia says his country will continue targeting Ukrainian cities in retaliation for a deadly attack on the city of Belgorod on Saturday.", - "contentSnippet": "President Vladimir V. Putin of Russia says his country will continue targeting Ukrainian cities in retaliation for a deadly attack on the city of Belgorod on Saturday.", - "guid": "https://www.nytimes.com/2024/01/01/world/europe/ukraine-russia-putin-belgorod.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Belgorod (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kharkiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Lviv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-01T23:48:31.000Z" - }, - { - "creator": "Elisabetta Povoledo", - "title": "Pope Raises Concerns About Church in Nicaragua", - "link": "https://www.nytimes.com/2024/01/01/world/europe/nicaragua-pope-francis-church.html", - "pubDate": "Mon, 01 Jan 2024 23:15:32 +0000", - "dc:creator": "Elisabetta Povoledo", - "content": "Speaking at his traditional New Year\u2019s Day message, Francis highlighted the arrests and expulsion of clergy.", - "contentSnippet": "Speaking at his traditional New Year\u2019s Day message, Francis highlighted the arrests and expulsion of clergy.", - "guid": "https://www.nytimes.com/2024/01/01/world/europe/nicaragua-pope-francis-church.html", - "categories": [ - { - "_": "New Year", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Religion-State Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Churches (Buildings)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Clergy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Political Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cardinals (Roman Catholic Prelates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Human Rights and Human Rights Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missionaries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Priests", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Roman Catholic Church", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Alvarez, Rolando", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Casaroli, Cardinal Agostino", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Francis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ortega, Daniel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nicaragua", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-01T23:15:32.000Z" - }, - { - "creator": "Isabel Kershner, Aaron Boxerman and Thomas Fuller", - "title": "Israel\u2019s Supreme Court Strikes Down Judiciary Law", - "link": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-supreme-court-netanyahu.html", - "pubDate": "Mon, 01 Jan 2024 22:44:44 +0000", - "dc:creator": "Isabel Kershner, Aaron Boxerman and Thomas Fuller", - "content": "The Supreme Court, by the narrowest of margins, rejected a law pushed by Netanyahu allies that limited its authority to review government decisions.", - "contentSnippet": "The Supreme Court, by the narrowest of margins, rejected a law pushed by Netanyahu allies that limited its authority to review government decisions.", - "guid": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-supreme-court-netanyahu.html", - "categories": [ - { - "_": "Supreme Court of Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Levin, Yariv (1969- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-01T22:44:44.000Z" - }, - { - "creator": "Justin Porter", - "title": "Tuesday Briefing: Israel\u2019s Top Court Rejects Move to Limit It", - "link": "https://www.nytimes.com/2024/01/01/briefing/israel-judicial-overhaul-japan-earthquake-china-us.html", - "pubDate": "Mon, 01 Jan 2024 20:41:37 +0000", - "dc:creator": "Justin Porter", - "content": "Plus New Year\u2019s offerings to the sea in Brazil.", - "contentSnippet": "Plus New Year\u2019s offerings to the sea in Brazil.", - "guid": "https://www.nytimes.com/2024/01/01/briefing/israel-judicial-overhaul-japan-earthquake-china-us.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-01T20:41:37.000Z" - }, - { - "creator": "Aaron Boxerman, Isabel Kershner and Eric Schmitt", - "title": "Israel Plans to Withdraw Some Troops From Gaza", - "link": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-gaza-troop-withdrawal.html", - "pubDate": "Mon, 01 Jan 2024 20:13:41 +0000", - "dc:creator": "Aaron Boxerman, Isabel Kershner and Eric Schmitt", - "content": "Analysts say the announcement could signal a shift to the more limited and targeted war against Hamas that the United States has been urging.", - "contentSnippet": "Analysts say the announcement could signal a shift to the more limited and targeted war against Hamas that the United States has been urging.", - "guid": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-gaza-troop-withdrawal.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-01T20:13:41.000Z" - }, - { - "creator": "Emma Bubola", - "title": "Fukushima Disaster Still Looms Large in Japan Years After Quake", - "link": "https://www.nytimes.com/2024/01/01/world/asia/japan-fukushima-quake-tsunami.html", - "pubDate": "Mon, 01 Jan 2024 11:37:23 +0000", - "dc:creator": "Emma Bubola", - "content": "As another major quake struck Japan, the country was still reckoning with the nuclear crisis triggered by the 8.9-magnitude earthquake and a tsunami of 13 years ago.", - "contentSnippet": "As another major quake struck Japan, the country was still reckoning with the nuclear crisis triggered by the 8.9-magnitude earthquake and a tsunami of 13 years ago.", - "guid": "https://www.nytimes.com/2024/01/01/world/asia/japan-fukushima-quake-tsunami.html", - "categories": [ - { - "_": "Fukushima Daiichi Nuclear Power Plant (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Fukushima (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Earthquakes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Japan Earthquake and Tsunami (2011)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tidal Waves and Tsunamis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-01T11:37:23.000Z" - }, - { - "creator": "Vivian Yee", - "title": "Iran Holds Day of Mourning for Those Killed at Suleimani Memorial", - "link": "https://www.nytimes.com/2024/01/04/world/middleeast/iran-mourns-general-suleimani.html", - "pubDate": "Thu, 04 Jan 2024 11:07:36 +0000", - "dc:creator": "Vivian Yee", - "content": "Officials lowered the death toll from the two blasts from 103 to 84, but said the count could still rise with so many people having been badly injured.", - "contentSnippet": "Officials lowered the death toll from the two blasts from 103 to 84, but said the count could still rise with so many people having been badly injured.", - "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/iran-mourns-general-suleimani.html", - "categories": [ - { - "_": "Amir Abdollahian, Hossein", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Suleimani, Qassim", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T11:07:36.000Z" - }, - { - "creator": "The New York Times", - "title": "Israel-Hamas War: Blinken Heads to Middle East With Goal of Defusing Tensions", - "link": "https://www.nytimes.com/live/2024/01/05/world/israel-hamas-war-gaza-news", - "pubDate": "Fri, 05 Jan 2024 13:39:32 +0000", - "dc:creator": "The New York Times", - "content": "The assassination of a Hamas leader in Lebanon and explosions in Iran that killed dozens of people this week appeared to deepen fears that the war could spiral into a broader conflict.", - "contentSnippet": "The assassination of a Hamas leader in Lebanon and explosions in Iran that killed dozens of people this week appeared to deepen fears that the war could spiral into a broader conflict.", - "guid": "https://www.nytimes.com/live/2024/01/05/world/israel-hamas-war-gaza-news", - "isoDate": "2024-01-05T13:39:32.000Z" - }, - { - "creator": "Derrick Bryson Taylor", - "title": "U.K. Rain Causes Hundreds of Flood Warnings and Travel Disruptions", - "link": "https://www.nytimes.com/2024/01/05/world/europe/uk-flooding.html", - "pubDate": "Fri, 05 Jan 2024 13:24:39 +0000", - "dc:creator": "Derrick Bryson Taylor", - "content": "In London, around 50 people were evacuated from rising waters. Heavy rain brought similar scenes to parts of France and Germany.", - "contentSnippet": "In London, around 50 people were evacuated from rising waters. Heavy rain brought similar scenes to parts of France and Germany.", - "guid": "https://www.nytimes.com/2024/01/05/world/europe/uk-flooding.html", - "categories": [ - { - "_": "Floods", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Evacuations and Evacuees", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Weather", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Met Office (United Kingdom)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "England", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "London (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "River Thames (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T13:24:39.000Z" - }, - { - "creator": "Muktita Suhartono and Mike Ives", - "title": "Indonesia Train Crash Kills at Least 2, Official Says", - "link": "https://www.nytimes.com/2024/01/04/world/asia/indonesia-train-crash-west-java.html", - "pubDate": "Fri, 05 Jan 2024 12:39:07 +0000", - "dc:creator": "Muktita Suhartono and Mike Ives", - "content": "Hundreds of passengers were evacuated from the crash near the city of Bandung. The cause of the accident was not immediately clear, and the authorities have opened an investigation.", - "contentSnippet": "Hundreds of passengers were evacuated from the crash near the city of Bandung. The cause of the accident was not immediately clear, and the authorities have opened an investigation.", - "guid": "https://www.nytimes.com/2024/01/04/world/asia/indonesia-train-crash-west-java.html", - "categories": [ - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Railroad Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Surabaya (Indonesia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Indonesia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Bandung (Indonesia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T12:39:07.000Z" - }, - { - "creator": "Lynsey Chutel", - "title": "Oscar Pistorius, Olympic Athlete Convicted of Murder, Is Released", - "link": "https://www.nytimes.com/2024/01/05/world/africa/oscar-pistorius-released.html", - "pubDate": "Fri, 05 Jan 2024 12:34:39 +0000", - "dc:creator": "Lynsey Chutel", - "content": "The South African sprinter, whose trial for the 2013 killing of his girlfriend drew intense global interest, served more than seven years in prison.", - "contentSnippet": "The South African sprinter, whose trial for the 2013 killing of his girlfriend drew intense global interest, served more than seven years in prison.", - "guid": "https://www.nytimes.com/2024/01/05/world/africa/oscar-pistorius-released.html", - "categories": [ - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Murders, Attempted Murders and Homicides", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Probation and Parole", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pistorius, Oscar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Steenkamp, Reeva", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "South Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pretoria (South Africa)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T12:34:39.000Z" - }, - { - "creator": "Melissa Eddy", - "title": "Eurozone Price Pressures Edged Higher to End the Year", - "link": "https://www.nytimes.com/2024/01/05/world/europe/eurozone-inflation-december.html", - "pubDate": "Fri, 05 Jan 2024 12:05:52 +0000", - "dc:creator": "Melissa Eddy", - "content": "Inflation in the countries that use the euro rose to 2.9 percent in December, but the underlying rate continued a downward trend.", - "contentSnippet": "Inflation in the countries that use the euro rose to 2.9 percent in December, but the underlying rate continued a downward trend.", - "guid": "https://www.nytimes.com/2024/01/05/world/europe/eurozone-inflation-december.html", - "categories": [ - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation (Economics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Eurozone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Germany", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T12:05:52.000Z" - }, - { - "creator": "Mujib Mashal and Saif Hasnat", - "title": "Election Will Further Test Bangladesh\u2019s Ailing Democracy", - "link": "https://www.nytimes.com/2024/01/05/world/asia/bangladesh-election.html", - "pubDate": "Fri, 05 Jan 2024 11:43:01 +0000", - "dc:creator": "Mujib Mashal and Saif Hasnat", - "content": "Prime Minister Sheikh Hasina is expected to roll to a fourth consecutive term as the gutted opposition boycotts what it calls an unfair election.", - "contentSnippet": "Prime Minister Sheikh Hasina is expected to roll to a fourth consecutive term as the gutted opposition boycotts what it calls an unfair election.", - "guid": "https://www.nytimes.com/2024/01/05/world/asia/bangladesh-election.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Boycotts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Democracy (Theory and Philosophy)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Elections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bangladesh Awami League", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bangladesh Nationalist Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Zia, Khaleda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bangladesh", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T11:43:01.000Z" - }, - { - "creator": "Euan Ward, Roni Rabin, Hwaida Saad and Michael Levenson", - "title": "Lebanese and Israelis Flee Homes Along Border Amid Fighting", - "link": "https://www.nytimes.com/2024/01/04/world/middleeast/israel-lebanon-hezbollah-civilians.html", - "pubDate": "Fri, 05 Jan 2024 10:36:26 +0000", - "dc:creator": "Euan Ward, Roni Rabin, Hwaida Saad and Michael Levenson", - "content": "More than 150,000 people have been driven from their homes on both sides of the frontier as Israeli forces clash with Hezbollah militants.", - "contentSnippet": "More than 150,000 people have been driven from their homes on both sides of the frontier as Israeli forces clash with Hezbollah militants.", - "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/israel-lebanon-hezbollah-civilians.html", - "categories": [ - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Lebanon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arouri, Saleh al- (1966-2024)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nasrallah, Hassan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Haniya, Ismail", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gallant, Yoav", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Agriculture and Farming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Shatila Refugee Camp (Lebanon)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T10:36:26.000Z" - }, - { - "creator": "Natan Odenheimer", - "title": "A Palestinian Man Vanished Oct. 7. His Family Wants to Know Who Killed Him.", - "link": "https://www.nytimes.com/2024/01/05/world/middleeast/israel-gaza-palestinian-abducted.html", - "pubDate": "Fri, 05 Jan 2024 10:00:30 +0000", - "dc:creator": "Natan Odenheimer", - "content": "Soheib Abu Amar, who lived in East Jerusalem, was captured by Hamas during its attack on Israel. His brothers spent weeks investigating what happened next.", - "contentSnippet": "Soheib Abu Amar, who lived in East Jerusalem, was captured by Hamas during its attack on Israel. His brothers spent weeks investigating what happened next.", - "guid": "https://www.nytimes.com/2024/01/05/world/middleeast/israel-gaza-palestinian-abducted.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Murders, Attempted Murders and Homicides", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-05T10:00:30.000Z" - }, - { - "creator": "Isabel Kershner", - "title": "Unauthorized Settlement Surges in Occupied West Bank, Advocacy Group Says", - "link": "https://www.nytimes.com/2024/01/05/world/middleeast/israel-west-bank-settlements.html", - "pubDate": "Fri, 05 Jan 2024 07:43:26 +0000", - "dc:creator": "Isabel Kershner", - "content": "Peace Now, which monitors settler activity in the West Bank, said it had recorded nine new outposts and several roads not authorized by Israel, fueling tensions in the area.", - "contentSnippet": "Peace Now, which monitors settler activity in the West Bank, said it had recorded nine new outposts and several roads not authorized by Israel, fueling tensions in the area.", - "guid": "https://www.nytimes.com/2024/01/05/world/middleeast/israel-west-bank-settlements.html", - "categories": [ - { - "_": "East Jerusalem", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "West Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Peace Now", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israeli Settlements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-05T07:43:26.000Z" - }, - { - "creator": "Choe Sang-Hun", - "title": "North Korea Fires Artillery Near Border With South Korea", - "link": "https://www.nytimes.com/2024/01/05/world/asia/south-korea-island-north.html", - "pubDate": "Fri, 05 Jan 2024 07:42:54 +0000", - "dc:creator": "Choe Sang-Hun", - "content": "The South asked nearby islanders to seek shelter before it launched a military exercise in the disputed waters and chided the North for \u201cthreatening peace.\u201d", - "contentSnippet": "The South asked nearby islanders to seek shelter before it launched a military exercise in the disputed waters and chided the North for \u201cthreatening peace.\u201d", - "guid": "https://www.nytimes.com/2024/01/05/world/asia/south-korea-island-north.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "North Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Yeonpyeong Island (South Korea)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T07:42:54.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Friday Briefing", - "link": "https://www.nytimes.com/2024/01/05/briefing/war-middle-east-ukraine-russia.html", - "pubDate": "Fri, 05 Jan 2024 05:21:42 +0000", - "dc:creator": "Natasha Frost", - "content": "The threat of a regional war.", - "contentSnippet": "The threat of a regional war.", - "guid": "https://www.nytimes.com/2024/01/05/briefing/war-middle-east-ukraine-russia.html", - "isoDate": "2024-01-05T05:21:42.000Z" - }, - { - "creator": "Vivian Yee, Hwaida Saad and Eric Schmitt", - "title": "Islamic State Claims Responsibility for Deadly Bombings in Iran", - "link": "https://www.nytimes.com/2024/01/04/world/middleeast/us-isis-iran-general-suleimani.html", - "pubDate": "Fri, 05 Jan 2024 02:57:38 +0000", - "dc:creator": "Vivian Yee, Hwaida Saad and Eric Schmitt", - "content": "The group, which has struck before in Iran, has a long history of division with the country.", - "contentSnippet": "The group, which has struck before in Iran, has a long history of division with the country.", - "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/us-isis-iran-general-suleimani.html", - "categories": [ - { - "_": "Amir Abdollahian, Hossein", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Suleimani, Qassim", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T02:57:38.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "A Trophy in Ruins: Evidence Grows That Russia Controls Marinka", - "link": "https://www.nytimes.com/2024/01/04/world/europe/ukraine-war-marinka-russia.html", - "pubDate": "Fri, 05 Jan 2024 02:42:31 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "Ukraine said it was defending territory behind the eastern frontline town. Its capture would be Russia\u2019s most significant territorial advance in Ukraine in more than six months.", - "contentSnippet": "Ukraine said it was defending territory behind the eastern frontline town. Its capture would be Russia\u2019s most significant territorial advance in Ukraine in more than six months.", - "guid": "https://www.nytimes.com/2024/01/04/world/europe/ukraine-war-marinka-russia.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Donbas (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Donetsk (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Marinka (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T02:42:31.000Z" - }, - { - "creator": "Chris Buckley and Amy Chang Chien", - "title": "Experts See a Message in Chinese Balloons Flying Over Taiwan", - "link": "https://www.nytimes.com/2024/01/04/world/asia/taiwan-china-balloons.html", - "pubDate": "Fri, 05 Jan 2024 00:27:44 +0000", - "dc:creator": "Chris Buckley and Amy Chang Chien", - "content": "Some analysts see the objects as a calculatedly ambiguous reminder to voters that Beijing is watching.", - "contentSnippet": "Some analysts see the objects as a calculatedly ambiguous reminder to voters that Beijing is watching.", - "guid": "https://www.nytimes.com/2024/01/04/world/asia/taiwan-china-balloons.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Elections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Balloons (Aeronautics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Democratic Progressive Party (Taiwan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Taiwan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-05T00:27:44.000Z" - }, - { - "creator": "Justin Porter", - "title": "Friday Briefing: Islamic State Claims the Iran Bombing", - "link": "https://www.nytimes.com/2024/01/04/briefing/iran-bombing-islamic-state-taiwan-china-north-korea.html", - "pubDate": "Thu, 04 Jan 2024 23:58:36 +0000", - "dc:creator": "Justin Porter", - "content": "Plus the seven keys to longevity.", - "contentSnippet": "Plus the seven keys to longevity.", - "guid": "https://www.nytimes.com/2024/01/04/briefing/iran-bombing-islamic-state-taiwan-china-north-korea.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Islamic State in Iraq and Syria (ISIS)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Taiwan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Balloons (Aeronautics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kim Jong-un", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "North Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T23:58:36.000Z" - }, - { - "creator": "Alissa J. Rubin and Eric Schmitt", - "title": "Iraq Condemns U.S. After Drone Strike in Baghdad", - "link": "https://www.nytimes.com/2024/01/04/world/middleeast/us-drone-strike-baghdad-iraq.html", - "pubDate": "Thu, 04 Jan 2024 23:11:26 +0000", - "dc:creator": "Alissa J. Rubin and Eric Schmitt", - "content": "The attack, acknowledged by the Pentagon, killed a senior militant leader of an Iran-allied group with ties to the Iraqi government\u2019s security apparatus.", - "contentSnippet": "The attack, acknowledged by the Pentagon, killed a senior militant leader of an Iran-allied group with ties to the Iraqi government\u2019s security apparatus.", - "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/us-drone-strike-baghdad-iraq.html", - "categories": [ - { - "_": "Drones (Pilotless Planes)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Targeted Killings", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Popular Mobilization Forces (Iraq)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Baghdad (Iraq)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iraq", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-04T23:11:26.000Z" - }, - { - "creator": "Robert D. McFadden", - "title": "Mike Sadler, Intrepid Desert Navigator in World War II, Dies at 103", - "link": "https://www.nytimes.com/2024/01/04/world/europe/mike-sadler-intrepid-dead.html", - "pubDate": "Thu, 04 Jan 2024 23:01:22 +0000", - "dc:creator": "Robert D. McFadden", - "content": "Like a human GPS, he guided Britain\u2019s first special forces across the vast Sahara for hit-and-run raids on enemy bases in the battle against Rommel\u2019s forces.", - "contentSnippet": "Like a human GPS, he guided Britain\u2019s first special forces across the vast Sahara for hit-and-run raids on enemy bases in the battle against Rommel\u2019s forces.", - "guid": "https://www.nytimes.com/2024/01/04/world/europe/mike-sadler-intrepid-dead.html", - "categories": [ - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World War II (1939-45)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Navigation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "$": { - "domain": "" - } - }, - { - "_": "Sahara Desert", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "North Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T23:01:22.000Z" - }, - { - "creator": "Michael D. Shear and David E. Sanger", - "title": "White House Says North Korea Providing Russia With Ballistic Missiles", - "link": "https://www.nytimes.com/2024/01/04/us/politics/north-korea-russia-missiles.html", - "pubDate": "Thu, 04 Jan 2024 21:23:15 +0000", - "dc:creator": "Michael D. Shear and David E. Sanger", - "content": "Russia has rebuilt its own domestic supply of cruise missiles, but to keep up with the intensity of the barrage against Ukraine, it has been turning to North Korea and Iran.", - "contentSnippet": "Russia has rebuilt its own domestic supply of cruise missiles, but to keep up with the intensity of the barrage against Ukraine, it has been turning to North Korea and Iran.", - "guid": "https://www.nytimes.com/2024/01/04/us/politics/north-korea-russia-missiles.html", - "categories": [ - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kim Jong-un", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kirby, John F", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "North Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T21:23:15.000Z" - }, - { - "creator": "Erica L. Green", - "title": "Education Dept. Official Resigns Over Biden\u2019s Policies on Israel and Gaza", - "link": "https://www.nytimes.com/2024/01/04/us/politics/education-department-official-resigns-israel-gaza.html", - "pubDate": "Thu, 04 Jan 2024 21:09:32 +0000", - "dc:creator": "Erica L. Green", - "content": "Tariq Habash, who is Palestinian American, said the Biden administration \u201cdoes not value all human life equally.\u201d", - "contentSnippet": "Tariq Habash, who is Palestinian American, said the Biden administration \u201cdoes not value all human life equally.\u201d", - "guid": "https://www.nytimes.com/2024/01/04/us/politics/education-department-official-resigns-israel-gaza.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinian-Americans", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Education Department (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Habash, Tariq", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T21:09:32.000Z" - }, - { - "creator": "Jason Horowitz", - "title": "Vatican Defends Gay Blessings, but Offers Critics Some Leeway", - "link": "https://www.nytimes.com/2024/01/04/world/europe/vatican-pope-lgbtq-blessings.html", - "pubDate": "Thu, 04 Jan 2024 19:33:48 +0000", - "dc:creator": "Jason Horowitz", - "content": "The clarification on a declaration issued in December seemed designed to soothe critics while also showing that this is the way forward.", - "contentSnippet": "The clarification on a declaration issued in December seemed designed to soothe critics while also showing that this is the way forward.", - "guid": "https://www.nytimes.com/2024/01/04/world/europe/vatican-pope-lgbtq-blessings.html", - "categories": [ - { - "_": "Same-Sex Marriage, Civil Unions and Domestic Partnerships", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Homosexuality and Bisexuality", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Priests", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Roman Catholic Church", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Fernandez, Victor Manuel (1962- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Francis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-04T19:33:48.000Z" - }, - { - "creator": "Christina Anderson", - "title": "Winter Storm Traps Hundreds of Motorists Overnight in Sweden", - "link": "https://www.nytimes.com/2024/01/04/world/europe/snow-storm-sweden-road.html", - "pubDate": "Thu, 04 Jan 2024 18:26:06 +0000", - "dc:creator": "Christina Anderson", - "content": "Truck drivers and other motorists were locked in blankets of snow on a major roadway overnight after nearly 10 inches of snow fell within 24 hours.", - "contentSnippet": "Truck drivers and other motorists were locked in blankets of snow on a major roadway overnight after nearly 10 inches of snow fell within 24 hours.", - "guid": "https://www.nytimes.com/2024/01/04/world/europe/snow-storm-sweden-road.html", - "categories": [ - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Snow and Snowstorms", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rescues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Roads and Traffic", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sweden", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T18:26:06.000Z" - }, - { - "creator": "Isabella Kwai", - "title": "Why London\u2019s Tube Is Shutting Down Next Week", - "link": "https://www.nytimes.com/2024/01/04/world/europe/london-tube-strikes.html", - "pubDate": "Thu, 04 Jan 2024 17:31:10 +0000", - "dc:creator": "Isabella Kwai", - "content": "Large strikes by workers on the London Underground are expected to cripple the capital\u2019s transportation network for several days.", - "contentSnippet": "Large strikes by workers on the London Underground are expected to cripple the capital\u2019s transportation network for several days.", - "guid": "https://www.nytimes.com/2024/01/04/world/europe/london-tube-strikes.html", - "categories": [ - { - "_": "Railroads", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Subways", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "London Underground", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Transport for London", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Strikes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "London (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T17:31:10.000Z" - }, - { - "creator": "Choe Sang-Hun", - "title": "Kim Jong-un\u2019s Daughter Is His Likely Successor, South Korea Says", - "link": "https://www.nytimes.com/2024/01/04/world/asia/kim-jong-un-daughter-north-korea.html", - "pubDate": "Thu, 04 Jan 2024 14:11:46 +0000", - "dc:creator": "Choe Sang-Hun", - "content": "Kim Ju-ae has long accompanied her dictator father to important state events, like long-range missile tests and military parades.", - "contentSnippet": "Kim Ju-ae has long accompanied her dictator father to important state events, like long-range missile tests and military parades.", - "guid": "https://www.nytimes.com/2024/01/04/world/asia/kim-jong-un-daughter-north-korea.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kim Jong-un", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kim Ju-ae", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "North Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Workers' Party of Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "succession plans", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-04T14:11:46.000Z" - }, - { - "creator": "Edward Wong and Patrick Kingsley", - "title": "Blinken Talks a Grand Vision for Mideast Peace but Hits a Wall in Israel", - "link": "https://www.nytimes.com/2024/01/11/us/politics/blinken-israel-gaza-middle-east-peace.html", - "pubDate": "Thu, 11 Jan 2024 21:07:14 +0000", - "dc:creator": "Edward Wong and Patrick Kingsley", - "content": "Secretary of State Antony J. Blinken conducted marathon diplomacy around the region, but Israeli leaders, focused on war with Hamas, showed no interest in meeting demands like Palestinian statehood.", - "contentSnippet": "Secretary of State Antony J. Blinken conducted marathon diplomacy around the region, but Israeli leaders, focused on war with Hamas, showed no interest in meeting demands like Palestinian statehood.", - "guid": "https://www.nytimes.com/2024/01/11/us/politics/blinken-israel-gaza-middle-east-peace.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Blinken, Antony J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Saudi Arabia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-11T21:07:14.000Z" - }, - { - "creator": "Justin Porter and Amelia Nierenberg", - "title": "Friday Briefing: Taiwan Prepares to Vote", - "link": "https://www.nytimes.com/2024/01/11/world/taiwan-vote-israel-genocide-asia.html", - "pubDate": "Thu, 11 Jan 2024 20:48:39 +0000", - "dc:creator": "Justin Porter and Amelia Nierenberg", - "content": "Also, an interview with Naomi Osaka.", - "contentSnippet": "Also, an interview with Naomi Osaka.", - "guid": "https://www.nytimes.com/2024/01/11/world/taiwan-vote-israel-genocide-asia.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T20:48:39.000Z" - }, - { - "creator": "Jenny Gross and Farnaz Fassihi", - "title": "Iranian Navy Says It Seized an Oil Tanker Off the Coast of Oman", - "link": "https://www.nytimes.com/2024/01/11/world/middleeast/oil-vessel-gulf-oman-iran.html", - "pubDate": "Thu, 11 Jan 2024 20:41:36 +0000", - "dc:creator": "Jenny Gross and Farnaz Fassihi", - "content": "The same vessel was involved last year in the U.S. government seizure of Iranian oil that was being transported in violation of American sanctions.", - "contentSnippet": "The same vessel was involved last year in the U.S. government seizure of Iranian oil that was being transported in violation of American sanctions.", - "guid": "https://www.nytimes.com/2024/01/11/world/middleeast/oil-vessel-gulf-oman-iran.html", - "categories": [ - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gulf of Oman", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Oman", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T20:41:36.000Z" - }, - { - "creator": "The New York Times", - "title": "Israel-Hamas War: U.N.\u2019s Top Court Hears Genocide Case Against Israel", - "link": "https://www.nytimes.com/live/2024/01/11/world/israel-hamas-war-gaza-news", - "pubDate": "Thu, 11 Jan 2024 20:37:55 +0000", - "dc:creator": "The New York Times", - "content": "The accusation of genocide in Gaza, which Israel denies, has particular significance in a country founded in the wake of the Holocaust.", - "contentSnippet": "The accusation of genocide in Gaza, which Israel denies, has particular significance in a country founded in the wake of the Holocaust.", - "guid": "https://www.nytimes.com/live/2024/01/11/world/israel-hamas-war-gaza-news", - "isoDate": "2024-01-11T20:37:55.000Z" - }, - { - "creator": "Adam Rasgon", - "title": "Israel and Hamas Are in Talks to Deliver Medicine to Hostages in Gaza", - "link": "https://www.nytimes.com/2024/01/11/world/middleeast/israel-hamas-gaza-hostages-medicine.html", - "pubDate": "Thu, 11 Jan 2024 19:55:47 +0000", - "dc:creator": "Adam Rasgon", - "content": "More than 120 hostages are believed to still be held in Gaza and many suffer from health conditions that require regular medical care.", - "contentSnippet": "More than 120 hostages are believed to still be held in Gaza and many suffer from health conditions that require regular medical care.", - "guid": "https://www.nytimes.com/2024/01/11/world/middleeast/israel-hamas-gaza-hostages-medicine.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-11T19:55:47.000Z" - }, - { - "creator": "Lara Jakes", - "title": "U.S. Military Aid to Ukraine Was Poorly Tracked, Pentagon Report Says", - "link": "https://www.nytimes.com/2024/01/11/world/europe/us-military-aid-ukraine.html", - "pubDate": "Thu, 11 Jan 2024 19:18:07 +0000", - "dc:creator": "Lara Jakes", - "content": "The report found that American officials and diplomats had failed to quickly or fully account for all of the nearly 40,000 weapons sent to the front.", - "contentSnippet": "The report found that American officials and diplomats had failed to quickly or fully account for all of the nearly 40,000 weapons sent to the front.", - "guid": "https://www.nytimes.com/2024/01/11/world/europe/us-military-aid-ukraine.html", - "categories": [ - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-11T19:18:07.000Z" - }, - { - "creator": "Eduardo Medina", - "title": "Red Double-Decker Bus Catches Fire During London Rush Hour", - "link": "https://www.nytimes.com/2024/01/11/world/europe/london-wimbledon-bus-fire.html", - "pubDate": "Thu, 11 Jan 2024 18:28:56 +0000", - "dc:creator": "Eduardo Medina", - "content": "There were no injuries, and the London Fire Brigade said it would investigate the cause of the fire on the iconic red double-decker bus.", - "contentSnippet": "There were no injuries, and the London Fire Brigade said it would investigate the cause of the fire on the iconic red double-decker bus.", - "guid": "https://www.nytimes.com/2024/01/11/world/europe/london-wimbledon-bus-fire.html", - "categories": [ - { - "_": "Fires and Firefighters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Buses", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "London (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T18:28:56.000Z" - }, - { - "creator": "Amanda Holpuch", - "title": "Heiress Seeks 50 Austrians to Give Away $27 Million", - "link": "https://www.nytimes.com/2024/01/11/world/europe/austria-heiress-engelhorn-inheritance-giveaway.html", - "pubDate": "Thu, 11 Jan 2024 17:54:06 +0000", - "dc:creator": "Amanda Holpuch", - "content": "Marlene Engelhorn has sent invitations to 10,000 Austrians. Once that group is narrowed to 50, it will spend six weekends this year discussing the best way to spend the money.", - "contentSnippet": "Marlene Engelhorn has sent invitations to 10,000 Austrians. Once that group is narrowed to 50, it will spend six weekends this year discussing the best way to spend the money.", - "guid": "https://www.nytimes.com/2024/01/11/world/europe/austria-heiress-engelhorn-inheritance-giveaway.html", - "categories": [ - { - "_": "Income Inequality", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "High Net Worth Individuals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wills and Estates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "BASF SE", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Boehringer Mannheim GmbH", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Engelhorn, Marlene", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Austria", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T17:54:06.000Z" - }, - { - "creator": "Victor Mather", - "title": "Scotland, Joining England and Wales, Will Restrict Bully XL Dogs", - "link": "https://www.nytimes.com/2024/01/11/world/europe/xl-bully-dogs-ban-scotland.html", - "pubDate": "Thu, 11 Jan 2024 17:13:17 +0000", - "dc:creator": "Victor Mather", - "content": "The dogs, seen as dangerous by many, will have to be muzzled in public, neutered and microchipped, among other regulations.", - "contentSnippet": "The dogs, seen as dangerous by many, will have to be muzzled in public, neutered and microchipped, among other regulations.", - "guid": "https://www.nytimes.com/2024/01/11/world/europe/xl-bully-dogs-ban-scotland.html", - "categories": [ - { - "_": "Bullies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dogs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Animal Attacks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Scotland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T17:13:17.000Z" - }, - { - "creator": "Stephanie Nolen", - "title": "What Happens When There Is No Food: Experts Say Severe Malnutrition Could Set in Swiftly in Gaza", - "link": "https://www.nytimes.com/2024/01/11/health/gaza-hunger-starvation.html", - "pubDate": "Thu, 11 Jan 2024 17:03:57 +0000", - "dc:creator": "Stephanie Nolen", - "content": "Nutrition experts say the progression from hunger to severe malnutrition can be rapid, especially in children.", - "contentSnippet": "Nutrition experts say the progression from hunger to severe malnutrition can be rapid, especially in children.", - "guid": "https://www.nytimes.com/2024/01/11/health/gaza-hunger-starvation.html", - "categories": [ - { - "_": "Malnutrition", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Diet and Nutrition", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Food Insecurity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shortages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Famine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Children and Childhood", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United Nations Children's Fund", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T17:03:57.000Z" - }, - { - "creator": "Isabel Kershner and John Eligon", - "title": "ICJ to Hear Israel Genocide Accusation Case Brought by South Africa", - "link": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-genocide-case-south-africa-icj.html", - "pubDate": "Thu, 11 Jan 2024 16:26:44 +0000", - "dc:creator": "Isabel Kershner and John Eligon", - "content": "Israel has categorically rejected the allegations being brought this week in the International Court of Justice by South Africa.", - "contentSnippet": "Israel has categorically rejected the allegations being brought this week in the International Court of Justice by South Africa.", - "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-genocide-case-south-africa-icj.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Court of Justice (UN)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "South Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T16:26:44.000Z" - }, - { - "creator": "Vivian Yee, Adam Sella and Roni Caryn Rabin", - "title": "Gaza Aid Faces Lengthy Inspections and Logistical Issues", - "link": "https://www.nytimes.com/2024/01/11/world/middleeast/israel-gaza-aid-trucks.html", - "pubDate": "Thu, 11 Jan 2024 15:05:08 +0000", - "dc:creator": "Vivian Yee, Adam Sella and Roni Caryn Rabin", - "content": "Obstacles at two border crossings are exacerbating a growing humanitarian crisis, according to two U.S. senators and officials with the U.N. and other groups.", - "contentSnippet": "Obstacles at two border crossings are exacerbating a growing humanitarian crisis, according to two U.S. senators and officials with the U.N. and other groups.", - "guid": "https://www.nytimes.com/2024/01/11/world/middleeast/israel-gaza-aid-trucks.html", - "categories": [ - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rafah (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-11T15:05:08.000Z" - }, - { - "creator": "Chris Buckley, Amy Chang Chien and Lam Yik Fei", - "title": "Taiwan Democracy Is Loud and Proud", - "link": "https://www.nytimes.com/2024/01/11/world/asia/taiwan-election-democracy-loud.html", - "pubDate": "Thu, 11 Jan 2024 14:20:43 +0000", - "dc:creator": "Chris Buckley, Amy Chang Chien and Lam Yik Fei", - "content": "At the island\u2019s election rallies, warming up the crowd for candidates is crucial. \u201cYou have to light a fire in their hearts,\u201d one host says.", - "contentSnippet": "At the island\u2019s election rallies, warming up the crowd for candidates is crucial. \u201cYou have to light a fire in their hearts,\u201d one host says.", - "guid": "https://www.nytimes.com/2024/01/11/world/asia/taiwan-election-democracy-loud.html", - "categories": [ - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Elections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Chinese Nationalist Party (Taiwan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Democratic Progressive Party (Taiwan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ko Wen-je", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Tainan (Taiwan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Taiwan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Chiayi (Taiwan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Lai Ching-te", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hou Yu-ih (1957- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-11T14:20:43.000Z" - }, - { - "creator": "Emma Bubola and Johanna Lemola", - "title": "Finland Extends Closure of Border With Russia", - "link": "https://www.nytimes.com/2024/01/11/world/europe/finland-russia-border.html", - "pubDate": "Thu, 11 Jan 2024 14:02:17 +0000", - "dc:creator": "Emma Bubola and Johanna Lemola", - "content": "Late last year, Finland accused Moscow of facilitating an influx of migrants and shut its land border crossings with Russia.", - "contentSnippet": "Late last year, Finland accused Moscow of facilitating an influx of migrants and shut its land border crossings with Russia.", - "guid": "https://www.nytimes.com/2024/01/11/world/europe/finland-russia-border.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asylum, Right of", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Finland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T14:02:17.000Z" - }, - { - "creator": "Christopher Cottrell", - "title": "Papua New Guinea Declares State of Emergency After Riots, Looting", - "link": "https://www.nytimes.com/2024/01/11/world/australia/papua-new-guinea-state-emergency-riots.html", - "pubDate": "Thu, 11 Jan 2024 12:27:24 +0000", - "dc:creator": "Christopher Cottrell", - "content": "There were signs the authorities had regained some control, but the extent of damage and casualties from the unrest remained unclear.", - "contentSnippet": "There were signs the authorities had regained some control, but the extent of damage and casualties from the unrest remained unclear.", - "guid": "https://www.nytimes.com/2024/01/11/world/australia/papua-new-guinea-state-emergency-riots.html", - "categories": [ - { - "_": "Marape, James", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Papua New Guinea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Looting (Crime)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-11T12:27:24.000Z" - }, - { - "creator": "Edward Wong", - "title": "Blinken Meets el-Sisi in Egypt to Discuss Palestinians in Gaza", - "link": "https://www.nytimes.com/2024/01/11/world/middleeast/blinken-gaza-egypt-sisi.html", - "pubDate": "Thu, 11 Jan 2024 11:47:09 +0000", - "dc:creator": "Edward Wong", - "content": "The U.S. secretary of state also planned to talk about how to prevent the violence in the Mideast from escalating further, as Iran-backed militias ramp up attacks.", - "contentSnippet": "The U.S. secretary of state also planned to talk about how to prevent the violence in the Mideast from escalating further, as Iran-backed militias ramp up attacks.", - "guid": "https://www.nytimes.com/2024/01/11/world/middleeast/blinken-gaza-egypt-sisi.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Blinken, Antony J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sisi, Abdel Fattah el-", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Cairo (Egypt)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T11:47:09.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Israel Adesanya of M.M.A. Fame Avoids Drunk-Driving Conviction", - "link": "https://www.nytimes.com/2024/01/11/world/australia/new-zealand-israel-adesanya-mma.html", - "pubDate": "Thu, 11 Jan 2024 11:34:58 +0000", - "dc:creator": "Natasha Frost", - "content": "Within hours, the former middleweight mixed martial arts champion risked more legal trouble by posting provocative content on social media.", - "contentSnippet": "Within hours, the former middleweight mixed martial arts champion risked more legal trouble by posting provocative content on social media.", - "guid": "https://www.nytimes.com/2024/01/11/world/australia/new-zealand-israel-adesanya-mma.html", - "categories": [ - { - "_": "Adesanya, Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "New Zealand", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mixed Martial Arts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drunken and Reckless Driving", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "internal-storyline-no", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-11T11:34:58.000Z" - }, - { - "creator": "Hwaida Saad", - "title": "Hamas Says Hostages Won\u2019t Go Home Alive While Israeli Forces Remain in Gaza", - "link": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-hostages-hamas-gaza.html", - "pubDate": "Thu, 11 Jan 2024 10:41:03 +0000", - "dc:creator": "Hwaida Saad", - "content": "Netanyahu faces growing pressure to get the more than 100 hostages still held in Gaza home safely.", - "contentSnippet": "Netanyahu faces growing pressure to get the more than 100 hostages still held in Gaza home safely.", - "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-hostages-hamas-gaza.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-11T10:41:03.000Z" - }, - { - "creator": "Andrew Higgins", - "title": "Standoff at Presidential Palace Shows Poland\u2019s Right Won\u2019t Go Quietly", - "link": "https://www.nytimes.com/2024/01/10/world/europe/poland-standoff-presidential-palace.html", - "pubDate": "Thu, 11 Jan 2024 08:42:34 +0000", - "dc:creator": "Andrew Higgins", - "content": "The incident escalated a campaign by the ousted Law and Justice party to resist the transfer of power after it lost its parliamentary majority in October.", - "contentSnippet": "The incident escalated a campaign by the ousted Law and Justice party to resist the transfer of power after it lost its parliamentary majority in October.", - "guid": "https://www.nytimes.com/2024/01/10/world/europe/poland-standoff-presidential-palace.html", - "categories": [ - { - "_": "Poland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kaminski, Mariusz", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Law and Justice (Poland)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Right-Wing Extremism and Alt-Right", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tusk, Donald", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ethics and Official Misconduct", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-11T08:42:34.000Z" - }, - { - "creator": "Stephen Castle", - "title": "How a TV Show Forced Britain\u2019s Devastating Post Office Scandal Into the Light", - "link": "https://www.nytimes.com/2024/01/10/world/europe/uk-itv-mr-bates-vs-post-office.html", - "pubDate": "Thu, 11 Jan 2024 06:40:20 +0000", - "dc:creator": "Stephen Castle", - "content": "After years of delays, victims of one of the U.K.\u2019s worst miscarriages of justice are finally being exonerated \u2014 thanks to a TV drama.", - "contentSnippet": "After years of delays, victims of one of the U.K.\u2019s worst miscarriages of justice are finally being exonerated \u2014 thanks to a TV drama.", - "guid": "https://www.nytimes.com/2024/01/10/world/europe/uk-itv-mr-bates-vs-post-office.html", - "categories": [ - { - "_": "Television", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "False Arrests, Convictions and Imprisonments", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Compensation for Damages (Law)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Polls and Public Opinion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ITV (TV Network)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Fujitsu Limited", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Jones, Toby", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Postal Service and Post Offices", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mr Bates vs the Post Office (TV Program)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - } - ], - "isoDate": "2024-01-11T06:40:20.000Z" - }, - { - "creator": "Annie Correal and Genevieve Glatsky", - "title": "Ecuador Shaken by Days of Terror After Gang Leader\u2019s Disappearance", - "link": "https://www.nytimes.com/2024/01/10/world/americas/ecuador-violence-gangs-prison.html", - "pubDate": "Thu, 11 Jan 2024 06:29:46 +0000", - "dc:creator": "Annie Correal and Genevieve Glatsky", - "content": "Vowing to bring peace back to a shattered country, President Daniel Noboa has deployed the military to take on what he calls \u201cterrorist\u201d groups.", - "contentSnippet": "Vowing to bring peace back to a shattered country, President Daniel Noboa has deployed the military to take on what he calls \u201cterrorist\u201d groups.", - "guid": "https://www.nytimes.com/2024/01/10/world/americas/ecuador-violence-gangs-prison.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prison Escapes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gangs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drug Abuse and Traffic", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fugitives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Noboa, Daniel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Macias, Adolfo (Fito)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Los Choneros (Gang)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Los Lobos (Gang)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Colon Pico, Fabricio", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Guayaquil (Ecuador)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Quito (Ecuador)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ecuador", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T06:29:46.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Thursday Briefing", - "link": "https://www.nytimes.com/2024/01/10/briefing/houthi-red-sea-trump-ecuador.html", - "pubDate": "Thu, 11 Jan 2024 04:57:10 +0000", - "dc:creator": "Natasha Frost", - "content": "Houthi attacks in the Red Sea.", - "contentSnippet": "Houthi attacks in the Red Sea.", - "guid": "https://www.nytimes.com/2024/01/10/briefing/houthi-red-sea-trump-ecuador.html", - "isoDate": "2024-01-11T04:57:10.000Z" - }, - { - "creator": "Abdi Latif Dahir", - "title": "Al Shabab Terrorist Group Captures U.N. Helicopter in Somalia", - "link": "https://www.nytimes.com/2024/01/10/world/africa/al-shabab-un-helicopter-somalia.html", - "pubDate": "Thu, 11 Jan 2024 04:15:25 +0000", - "dc:creator": "Abdi Latif Dahir", - "content": "Somali officials said the helicopter was carrying nine passengers, one of whom was killed. The Horn of Africa nation is now grappling with how to rescue hostages from a group known for mistreating them.", - "contentSnippet": "Somali officials said the helicopter was carrying nine passengers, one of whom was killed. The Horn of Africa nation is now grappling with how to rescue hostages from a group known for mistreating them.", - "guid": "https://www.nytimes.com/2024/01/10/world/africa/al-shabab-un-helicopter-somalia.html", - "categories": [ - { - "_": "Somalia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Mogadishu (Somalia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Shabab", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Mohamud, Hassan Sheikh", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-11T04:15:25.000Z" - }, - { - "creator": "Adam Sella", - "title": "U.N. Expert Will Investigate Sex Crimes by Hamas, Israel Says", - "link": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-hamas-sex-crimes.html", - "pubDate": "Thu, 11 Jan 2024 04:14:39 +0000", - "dc:creator": "Adam Sella", - "content": "The official accepted Israel\u2019s invitation and is expected to go there soon, the foreign ministry said. Hamas has denied that its fighters committed sex crimes during the Oct. 7 attacks.", - "contentSnippet": "The official accepted Israel\u2019s invitation and is expected to go there soon, the foreign ministry said. Hamas has denied that its fighters committed sex crimes during the Oct. 7 attacks.", - "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-hamas-sex-crimes.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sex Crimes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T04:14:39.000Z" - }, - { - "creator": "Mike Ives", - "title": "U.S. Navy Officer Who Helped China Is Sentenced to 2 Years", - "link": "https://www.nytimes.com/2024/01/09/us/navy-officer-china-spy.html", - "pubDate": "Thu, 11 Jan 2024 04:14:06 +0000", - "dc:creator": "Mike Ives", - "content": "Wenheng Zhao pleaded guilty to charges that he sent photos of American military installations and details of U.S. military exercises to an intelligence officer working for China.", - "contentSnippet": "Wenheng Zhao pleaded guilty to charges that he sent photos of American military installations and details of U.S. military exercises to an intelligence officer working for China.", - "guid": "https://www.nytimes.com/2024/01/09/us/navy-officer-china-spy.html", - "categories": [ - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Military Bases and Installations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Classified Information and State Secrets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bribery and Kickbacks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wei, Jinchao (Patrick)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zhao, Wenheng", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Justice Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States Navy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-11T04:14:06.000Z" - }, - { - "creator": "Choe Sang-Hun", - "title": "Knife Attacker Hoped to End Lee\u2019s Presidential Ambitions, South Korean Police Say", - "link": "https://www.nytimes.com/2024/01/10/world/asia/south-korea-knife-attack.html", - "pubDate": "Thu, 11 Jan 2024 00:21:17 +0000", - "dc:creator": "Choe Sang-Hun", - "content": "The suspect had planned the attack last week on the country\u2019s opposition leader for months, the police said, and had written an eight-page manifesto.", - "contentSnippet": "The suspect had planned the attack last week on the country\u2019s opposition leader for months, the police said, and had written an eight-page manifesto.", - "guid": "https://www.nytimes.com/2024/01/10/world/asia/south-korea-knife-attack.html", - "categories": [ - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Lee Jae-myung", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stalking (Crime)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Yoon Suk-yeol", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-11T00:21:17.000Z" - }, - { - "creator": "Roni Rabin", - "title": "How the War With Hamas Has Damaged Israel\u2019s Tech Firms and Economy", - "link": "https://www.nytimes.com/2024/01/10/business/israel-economy-gaza-war.html", - "pubDate": "Wed, 10 Jan 2024 23:44:40 +0000", - "dc:creator": "Roni Rabin", - "content": "Israel\u2019s technology sector, a key part of the economy, has been jolted by worker shortages and funding fears, which could drive a wider slowdown in 2024.", - "contentSnippet": "Israel\u2019s technology sector, a key part of the economy, has been jolted by worker shortages and funding fears, which could drive a wider slowdown in 2024.", - "guid": "https://www.nytimes.com/2024/01/10/business/israel-economy-gaza-war.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Labor and Jobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Workers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shortages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Migrant Labor (Non-Agriculture)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bank of Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-10T23:44:40.000Z" - }, - { - "creator": "Eric Schmitt, Thomas Fuller and Edward Wong", - "title": "U.S. and British Forces Fend Off Houthi Attack in Red Sea", - "link": "https://www.nytimes.com/2024/01/10/world/middleeast/houthis-red-sea-us-response.html", - "pubDate": "Wed, 10 Jan 2024 22:52:55 +0000", - "dc:creator": "Eric Schmitt, Thomas Fuller and Edward Wong", - "content": "American officials and their allies warned that there would be consequences for the Houthis, the Iranian-backed armed group that has disrupted shipping in the Red Sea.", - "contentSnippet": "American officials and their allies warned that there would be consequences for the Houthis, the Iranian-backed armed group that has disrupted shipping in the Red Sea.", - "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/houthis-red-sea-us-response.html", - "categories": [ - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ships and Shipping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Red Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Yemen", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T22:52:55.000Z" - }, - { - "creator": "Jin Yu Young", - "title": "Ecuador in Crisis: What to Know", - "link": "https://www.nytimes.com/2024/01/10/world/americas/ecuador-emergency-prisons-gangs.html", - "pubDate": "Wed, 10 Jan 2024 20:54:16 +0000", - "dc:creator": "Jin Yu Young", - "content": "Violence erupted across the South American country this week after a notorious gang leader disappeared from prison. The president has declared a state of emergency.", - "contentSnippet": "Violence erupted across the South American country this week after a notorious gang leader disappeared from prison. The president has declared a state of emergency.", - "guid": "https://www.nytimes.com/2024/01/10/world/americas/ecuador-emergency-prisons-gangs.html", - "categories": [ - { - "_": "Ecuador", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Guayaquil (Ecuador)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Noboa, Daniel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gangs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-10T20:54:16.000Z" - }, - { - "creator": "Amelia Nierenberg", - "title": "Thursday Briefing: The Fight Against Houthi Rebels", - "link": "https://www.nytimes.com/2024/01/10/world/us-houthi-red-sea-asia.html", - "pubDate": "Wed, 10 Jan 2024 20:50:35 +0000", - "dc:creator": "Amelia Nierenberg", - "content": "Preview: Also, violence in Ecuador.", - "contentSnippet": "Preview: Also, violence in Ecuador.", - "guid": "https://www.nytimes.com/2024/01/10/world/us-houthi-red-sea-asia.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T20:50:35.000Z" - }, - { - "creator": "Edward Wong", - "title": "Blinken Talks About Gaza\u2019s Future in Meeting With Palestinian Authority Leader", - "link": "https://www.nytimes.com/2024/01/10/world/middleeast/blinken-visit-palestinian-gaza-abbas.html", - "pubDate": "Wed, 10 Jan 2024 19:29:07 +0000", - "dc:creator": "Edward Wong", - "content": "The U.S. secretary of state spoke with Mahmoud Abbas, the leader of the Palestinian Authority, about the role the authority might play after Israel\u2019s war with Hamas.", - "contentSnippet": "The U.S. secretary of state spoke with Mahmoud Abbas, the leader of the Palestinian Authority, about the role the authority might play after Israel\u2019s war with Hamas.", - "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/blinken-visit-palestinian-gaza-abbas.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ramallah (West Bank)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T19:29:07.000Z" - }, - { - "creator": "Brad Plumer", - "title": "U.S. Carbon Emissions Fell in 2023 as Coal Use Tumbled to New Lows", - "link": "https://www.nytimes.com/2024/01/10/climate/us-carbon-emissions-2023-climate.html", - "pubDate": "Wed, 10 Jan 2024 17:29:04 +0000", - "dc:creator": "Brad Plumer", - "content": "The drop was big, but emissions will need to fall three times as fast for the rest of the decade if the country wants to meet its climate goals.", - "contentSnippet": "The drop was big, but emissions will need to fall three times as fast for the rest of the decade if the country wants to meet its climate goals.", - "guid": "https://www.nytimes.com/2024/01/10/climate/us-carbon-emissions-2023-climate.html", - "categories": [ - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Coal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Natural Gas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alternative and Renewable Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carbon Dioxide", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rhodium Group LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-10T17:29:04.000Z" - }, - { - "creator": "Victor Mather", - "title": "Blocked Toilets Close Eton, Boarding School for Britain\u2019s Elite Sons", - "link": "https://www.nytimes.com/2024/01/10/world/europe/eton-college-flooding-toilets.html", - "pubDate": "Wed, 10 Jan 2024 17:20:46 +0000", - "dc:creator": "Victor Mather", - "content": "Flooding and a sewer backup have delayed the start of the new term. Classes at the school, which has educated princes and prime ministers, will move online.", - "contentSnippet": "Flooding and a sewer backup have delayed the start of the new term. Classes at the school, which has educated princes and prime ministers, will move online.", - "guid": "https://www.nytimes.com/2024/01/10/world/europe/eton-college-flooding-toilets.html", - "categories": [ - { - "_": "Eton College", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Sewers and Sewage", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Floods", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Private and Sectarian Schools", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bathrooms and Toilets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Thames Water", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "River Thames (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T17:20:46.000Z" - }, - { - "creator": "Lara Jakes and Christopher F. Schuetze", - "title": "Zelensky Visits Baltic Nations to Rally Support for Ukraine", - "link": "https://www.nytimes.com/2024/01/10/world/europe/ukraine-war-support-europe.html", - "pubDate": "Wed, 10 Jan 2024 14:02:04 +0000", - "dc:creator": "Lara Jakes and Christopher F. Schuetze", - "content": "President Volodymyr Zelensky of Ukraine is likely to find strong backing on a trip to the Baltic States, but other nations are increasingly wary.", - "contentSnippet": "President Volodymyr Zelensky of Ukraine is likely to find strong backing on a trip to the Baltic States, but other nations are increasingly wary.", - "guid": "https://www.nytimes.com/2024/01/10/world/europe/ukraine-war-support-europe.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Baltic Region", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "European Commission", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "North Atlantic Treaty Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T14:02:04.000Z" - }, - { - "creator": "Christopher Cottrell", - "title": "Papua New Guinea Orders Military to Restore Order After Unrest", - "link": "https://www.nytimes.com/2024/01/10/world/australia/papua-new-guinea-protest-military.html", - "pubDate": "Wed, 10 Jan 2024 12:21:54 +0000", - "dc:creator": "Christopher Cottrell", - "content": "Angry protests started after hundreds of police officers and other public servants appeared to walk off their jobs over a wage dispute.", - "contentSnippet": "Angry protests started after hundreds of police officers and other public servants appeared to walk off their jobs over a wage dispute.", - "guid": "https://www.nytimes.com/2024/01/10/world/australia/papua-new-guinea-protest-military.html", - "categories": [ - { - "_": "Papua New Guinea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Looting (Crime)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Marape, James", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-10T12:21:54.000Z" - }, - { - "creator": "Euan Ward, Anushka Patil and Matthew Mpoke Bigg", - "title": "Israel Says It Killed Another Hezbollah Commander in an Airstrike", - "link": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-hezbollah-commander-airstrike.html", - "pubDate": "Wed, 10 Jan 2024 08:44:33 +0000", - "dc:creator": "Euan Ward, Anushka Patil and Matthew Mpoke Bigg", - "content": "A deadly airstrike", - "contentSnippet": "A deadly airstrike", - "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-hezbollah-commander-airstrike.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Lebanon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Funerals and Memorials", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-10T08:44:33.000Z" - }, - { - "creator": "Mark Landler", - "title": "MSG Withdraws Bid to Build Vegas-Style Sphere in London", - "link": "https://www.nytimes.com/2024/01/09/world/europe/london-sphere-msg-vegas.html", - "pubDate": "Wed, 10 Jan 2024 07:48:57 +0000", - "dc:creator": "Mark Landler", - "content": "The American developer MSG Entertainment withdrew its bid to build a sister arena in Britain after opposition from Londoners and the city\u2019s mayor.", - "contentSnippet": "The American developer MSG Entertainment withdrew its bid to build a sister arena in Britain after opposition from Londoners and the city\u2019s mayor.", - "guid": "https://www.nytimes.com/2024/01/09/world/europe/london-sphere-msg-vegas.html", - "categories": [ - { - "_": "Local Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Outdoor Advertising", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Parks and Other Recreation Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sphere (Las Vegas, Nev)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Dolan, James L", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Khan, Sadiq", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "England", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Las Vegas (Nev)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "London (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T07:48:57.000Z" - }, - { - "creator": "Annie Correal, Genevieve Glatsky and Jos\u00e9 Mar\u00eda Le\u00f3n Cabrera", - "title": "Ecuador Plunges Into Crisis Amid Prison Riots, Kidnappings", - "link": "https://www.nytimes.com/2024/01/09/world/americas/ecuador-gang-prison-emergency.html", - "pubDate": "Wed, 10 Jan 2024 05:29:02 +0000", - "dc:creator": "Annie Correal, Genevieve Glatsky and Jos\u00e9 Mar\u00eda Le\u00f3n Cabrera", - "content": "The president declared a state of emergency and ordered the military to \u201cneutralize\u201d dozens of gangs. Gunmen stormed a TV studio as cameras rolled.", - "contentSnippet": "The president declared a state of emergency and ordered the military to \u201cneutralize\u201d dozens of gangs. Gunmen stormed a TV studio as cameras rolled.", - "guid": "https://www.nytimes.com/2024/01/09/world/americas/ecuador-gang-prison-emergency.html", - "categories": [ - { - "_": "Gangs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drug Cartels", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prison Escapes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fugitives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drug Abuse and Traffic", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Macias, Adolfo (Fito)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Noboa, Daniel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Los Choneros (Gang)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ecuador", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Guayaquil (Ecuador)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Quito (Ecuador)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T05:29:02.000Z" - }, - { - "creator": "Patrick Kingsley and Johnatan Reiss", - "title": "Israel, Shifting War Tempo, Offers Different Explanations at Home and Abroad", - "link": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-gaza-war-new-phase.html", - "pubDate": "Wed, 10 Jan 2024 05:21:02 +0000", - "dc:creator": "Patrick Kingsley and Johnatan Reiss", - "content": "Israeli officials have told foreign journalists that they are starting to slow military operations in Gaza, while assuring the Israeli public that the war against Hamas will go on.", - "contentSnippet": "Israeli officials have told foreign journalists that they are starting to slow military operations in Gaza, while assuring the Israeli public that the war against Hamas will go on.", - "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-gaza-war-new-phase.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Polls and Public Opinion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T05:21:02.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Wednesday Briefing", - "link": "https://www.nytimes.com/2024/01/10/briefing/trump-court-immunity-israel-heat.html", - "pubDate": "Wed, 10 Jan 2024 05:18:48 +0000", - "dc:creator": "Natasha Frost", - "content": "Donald Trump\u2019s immunity claim in court.", - "contentSnippet": "Donald Trump\u2019s immunity claim in court.", - "guid": "https://www.nytimes.com/2024/01/10/briefing/trump-court-immunity-israel-heat.html", - "isoDate": "2024-01-10T05:18:48.000Z" - }, - { - "creator": "Elisabetta Povoledo", - "title": "Italian Town Hitches Its Wagon to Plants That Bloom (Even in Winter)", - "link": "https://www.nytimes.com/2024/01/10/world/europe/italy-verbania-tourism-flowers-camillias.html", - "pubDate": "Wed, 10 Jan 2024 05:01:15 +0000", - "dc:creator": "Elisabetta Povoledo", - "content": "Lakefront Verbania in Italy\u2019s Piedmont seeks to attract flower lovers with its mild climate, spectacular gardens and wild nature.", - "contentSnippet": "Lakefront Verbania in Italy\u2019s Piedmont seeks to attract flower lovers with its mild climate, spectacular gardens and wild nature.", - "guid": "https://www.nytimes.com/2024/01/10/world/europe/italy-verbania-tourism-flowers-camillias.html", - "categories": [ - { - "_": "Gardens and Gardening", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Flowers and Plants", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Travel and Vacations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Italy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Piedmont (Italy)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T05:01:15.000Z" - }, - { - "creator": "Claire Moses", - "title": "Why Are California\u2019s Waters Lighting Up in Blue?", - "link": "https://www.nytimes.com/2024/01/09/science/blue-algae-california-bioluminescence.html", - "pubDate": "Wed, 10 Jan 2024 01:44:41 +0000", - "dc:creator": "Claire Moses", - "content": "It looks like the trailer for \u201cAvatar: The Way of Water,\u201d but it\u2019s a natural phenomenon. And spotting it is getting increasingly popular.", - "contentSnippet": "It looks like the trailer for \u201cAvatar: The Way of Water,\u201d but it\u2019s a natural phenomenon. And spotting it is getting increasingly popular.", - "guid": "https://www.nytimes.com/2024/01/09/science/blue-algae-california-bioluminescence.html", - "categories": [ - { - "_": "Algae", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bacteria", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fish and Other Marine Life", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Water", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Microbiology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oceans and Seas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "California", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "San Francisco Bay Area (Calif)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T01:44:41.000Z" - }, - { - "creator": "Niraj Chokshi and Mark Walker", - "title": "737 Max Inspections Delayed as Boeing Revises Guidance", - "link": "https://www.nytimes.com/2024/01/09/business/boeing-737-max-9-inspections-delayed.html", - "pubDate": "Wed, 10 Jan 2024 01:15:43 +0000", - "dc:creator": "Niraj Chokshi and Mark Walker", - "content": "The Federal Aviation Administration said that Boeing\u2019s instructions for how airlines should check the planes were insufficient and that the company would revise them.", - "contentSnippet": "The Federal Aviation Administration said that Boeing\u2019s instructions for how airlines should check the planes were insufficient and that the company would revise them.", - "guid": "https://www.nytimes.com/2024/01/09/business/boeing-737-max-9-inspections-delayed.html", - "categories": [ - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Aviation Accidents, Safety and Disasters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Boeing 737 Max Groundings and Safety Concerns (2019)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alaska Airlines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Boeing Company", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Federal Aviation Administration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Airlines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-10T01:15:43.000Z" - }, - { - "creator": "Roni Rabin", - "title": "\u2018Fauda\u2019 Actor Idan Amedi Is Seriously Injured Fighting in Gaza", - "link": "https://www.nytimes.com/2024/01/09/world/middleeast/idan-amedi-fauda-injured-gaza-israel.html", - "pubDate": "Wed, 10 Jan 2024 00:36:28 +0000", - "dc:creator": "Roni Rabin", - "content": "The actor, Idan Amedi, underwent surgery to remove shrapnel from his body and was expected to recover, Israeli news media reported.", - "contentSnippet": "The actor, Idan Amedi, underwent surgery to remove shrapnel from his body and was expected to recover, Israeli news media reported.", - "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/idan-amedi-fauda-injured-gaza-israel.html", - "categories": [ - { - "_": "Netflix Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Fauda (TV Program)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-10T00:36:28.000Z" - }, - { - "creator": "Edward Wong and Vivian Nereim", - "title": "Saudi-Israel Ties Depend on Steps Toward a Palestinian State, Blinken Says", - "link": "https://www.nytimes.com/2024/01/09/world/middleeast/blinken-israel-saudi-palestinian-state.html", - "pubDate": "Wed, 10 Jan 2024 00:07:44 +0000", - "dc:creator": "Edward Wong and Vivian Nereim", - "content": "In meetings with Israeli leaders, the U.S. secretary of state held out the prospect of Saudi recognition to prod Israel to curb combat operations in Gaza and accept a path to Palestinian statehood.", - "contentSnippet": "In meetings with Israeli leaders, the U.S. secretary of state held out the prospect of Saudi recognition to prod Israel to curb combat operations in Gaza and accept a path to Palestinian statehood.", - "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/blinken-israel-saudi-palestinian-state.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Saudi Arabia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Blinken, Antony J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mohammed bin Salman (1985- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-10T00:07:44.000Z" - }, - { - "creator": "Amelia Nierenberg", - "title": "Wednesday Briefing: Trump\u2019s Immunity Claim in Court", - "link": "https://www.nytimes.com/2024/01/09/world/trump-immunity-claim-asia.html", - "pubDate": "Tue, 09 Jan 2024 21:08:14 +0000", - "dc:creator": "Amelia Nierenberg", - "content": "Plus, 52 travel destinations for 2024.", - "contentSnippet": "Plus, 52 travel destinations for 2024.", - "guid": "https://www.nytimes.com/2024/01/09/world/trump-immunity-claim-asia.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-09T21:08:14.000Z" - }, - { - "creator": "Roger Cohen", - "title": "Gabriel Attal Is France\u2019s Youngest and First Openly Gay Prime Minister", - "link": "https://www.nytimes.com/2024/01/09/world/europe/gabriel-attal-france-prime-minister.html", - "pubDate": "Tue, 09 Jan 2024 20:22:22 +0000", - "dc:creator": "Roger Cohen", - "content": "Gabriel Attal, 34, replaces \u00c9lisabeth Borne in a cabinet shuffle that President Emmanuel Macron hopes can reinvigorate a term marked by drift and division.", - "contentSnippet": "Gabriel Attal, 34, replaces \u00c9lisabeth Borne in a cabinet shuffle that President Emmanuel Macron hopes can reinvigorate a term marked by drift and division.", - "guid": "https://www.nytimes.com/2024/01/09/world/europe/gabriel-attal-france-prime-minister.html", - "categories": [ - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Attal, Gabriel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Homosexuality and Bisexuality", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Legislatures and Parliaments", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Macron, Emmanuel (1977- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Borne, Elisabeth", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-09T20:22:22.000Z" - }, - { - "creator": "Eric Lipton", - "title": "Norway Moves to Allow Seabed Mining Exploration", - "link": "https://www.nytimes.com/2024/01/09/climate/seabed-mining-norway-oceans.html", - "pubDate": "Tue, 09 Jan 2024 18:56:12 +0000", - "dc:creator": "Eric Lipton", - "content": "The decision in Parliament, opposed by environmentalists, will allow prospectors to start surveying the country\u2019s waters.", - "contentSnippet": "The decision in Parliament, opposed by environmentalists, will allow prospectors to start surveying the country\u2019s waters.", - "guid": "https://www.nytimes.com/2024/01/09/climate/seabed-mining-norway-oceans.html", - "categories": [ - { - "_": "Norway", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Offshore Drilling and Exploration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oceans and Seas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Metals and Minerals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Seabed Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-09T18:56:12.000Z" - }, - { - "creator": "Alan Rappeport", - "title": "World Bank Warns of Energy Price Surge if Mideast War Spreads", - "link": "https://www.nytimes.com/2024/01/09/business/world-bank-global-economic-prospects.html", - "pubDate": "Tue, 09 Jan 2024 18:48:44 +0000", - "dc:creator": "Alan Rappeport", - "content": "A new economic report predicted a year of weak growth and said the world faced a decade of \u201cwasted opportunity.\u201d", - "contentSnippet": "A new economic report predicted a year of weak growth and said the world faced a decade of \u201cwasted opportunity.\u201d", - "guid": "https://www.nytimes.com/2024/01/09/business/world-bank-global-economic-prospects.html", - "categories": [ - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation (Economics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Economy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Two Thousand Twenties (Decade)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-09T18:48:44.000Z" - }, - { - "creator": "Raymond Zhong and Keith Collins", - "title": "2023 Was Hottest Year on Record by a Lot", - "link": "https://www.nytimes.com/2024/01/09/climate/2023-warmest-year-record.html", - "pubDate": "Tue, 09 Jan 2024 15:46:13 +0000", - "dc:creator": "Raymond Zhong and Keith Collins", - "content": "Month after month global temperatures didn\u2019t just break records, they surpassed them by far. This year could be even warmer.", - "contentSnippet": "Month after month global temperatures didn\u2019t just break records, they surpassed them by far. This year could be even warmer.", - "guid": "https://www.nytimes.com/2024/01/09/climate/2023-warmest-year-record.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Copernicus Climate Change Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Heat and Heat Waves", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Two Thousand Twenty Three", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-09T15:46:13.000Z" - }, - { - "creator": "Edward Wong, Mark Mazzetti and Paul Mozur", - "title": "A.I. Giant Tied to China Under Scrutiny", - "link": "https://www.nytimes.com/2024/01/09/us/politics/ai-china-uae-g42.html", - "pubDate": "Tue, 09 Jan 2024 12:36:40 +0000", - "dc:creator": "Edward Wong, Mark Mazzetti and Paul Mozur", - "content": "A congressional committee made the demand of the Commerce Department after The Times reported on concerns among U.S. intelligence officials over the Emirati company, G42.", - "contentSnippet": "A congressional committee made the demand of the Commerce Department after The Times reported on concerns among U.S. intelligence officials over the Emirati company, G42.", - "guid": "https://www.nytimes.com/2024/01/09/us/politics/ai-china-uae-g42.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Surveillance of Citizens by Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Classified Information and State Secrets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Commerce Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Arab Emirates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Yitu Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "ToTok (Mobile App)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Dark Matter LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-09T12:36:40.000Z" - }, - { - "creator": "Patrick Kingsley and Avishag Shaar-Yashuv", - "title": "New York Times journalists get a glimpse inside a devastated Gaza.", - "link": "https://www.nytimes.com/2024/01/09/world/middleeast/new-york-times-journalists-get-a-glimpse-inside-a-devastated-gaza.html", - "pubDate": "Tue, 09 Jan 2024 12:02:36 +0000", - "dc:creator": "Patrick Kingsley and Avishag Shaar-Yashuv", - "content": "", - "contentSnippet": "", - "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/new-york-times-journalists-get-a-glimpse-inside-a-devastated-gaza.html", - "isoDate": "2024-01-09T12:02:36.000Z" - }, - { - "creator": "Damien Cave", - "title": "Taiwan Raised an Alarm About a Chinese Satellite. Chaos Ensued.", - "link": "https://www.nytimes.com/2024/01/09/world/asia/taiwan-alert-chinese-flyover.html", - "pubDate": "Tue, 09 Jan 2024 11:56:18 +0000", - "dc:creator": "Damien Cave", - "content": "A warning from Taiwan about a satellite, erroneously called a missile in English, raised concerns about Chinese harassment days before an election.", - "contentSnippet": "A warning from Taiwan about a satellite, erroneously called a missile in English, raised concerns about Chinese harassment days before an election.", - "guid": "https://www.nytimes.com/2024/01/09/world/asia/taiwan-alert-chinese-flyover.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Chinese Nationalist Party (Taiwan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Democratic Progressive Party (Taiwan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Taiwan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Satellites", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "False Alarms", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Security and Warning Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-09T11:56:18.000Z" - }, - { - "creator": "Patrick Kingsley and Avishag Shaar-Yashuv", - "title": "A Glimpse Inside a Devastated Gaza", - "link": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-military-gaza-ruins.html", - "pubDate": "Tue, 09 Jan 2024 11:36:59 +0000", - "dc:creator": "Patrick Kingsley and Avishag Shaar-Yashuv", - "content": "In the ruins of two Gazan towns, New York Times journalists witnessed the sheer destruction that Israel\u2019s war has wrought and the devastation of Hamas\u2019s operations.", - "contentSnippet": "In the ruins of two Gazan towns, New York Times journalists witnessed the sheer destruction that Israel\u2019s war has wrought and the devastation of Hamas\u2019s operations.", - "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-military-gaza-ruins.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Court of Justice (UN)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Graffiti", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Maghazi (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Bureij (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "vis-photo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-09T11:36:59.000Z" - }, - { - "creator": "John Yoon", - "title": "South Korea Bans Dog Meat, a Now-Unpopular Food", - "link": "https://www.nytimes.com/2024/01/09/world/asia/south-korea-dog-meat-ban.html", - "pubDate": "Tue, 09 Jan 2024 08:48:16 +0000", - "dc:creator": "John Yoon", - "content": "Breeding, killing and selling dogs for their meat will be banned in a country where it has fallen out of favor. Hundreds of thousands of the animal were still being bred for human consumption.", - "contentSnippet": "Breeding, killing and selling dogs for their meat will be banned in a country where it has fallen out of favor. Hundreds of thousands of the animal were still being bred for human consumption.", - "guid": "https://www.nytimes.com/2024/01/09/world/asia/south-korea-dog-meat-ban.html", - "categories": [ - { - "_": "Meat", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dogs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Breeding of Animals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Animal Abuse, Rights and Welfare", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humane Society International", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Yoon Suk-yeol", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-09T08:48:16.000Z" - }, - { - "creator": "Victoria Kim", - "title": "Blinken begins meetings in Israel amid deepening disagreements over the war.", - "link": "https://www.nytimes.com/2024/01/09/world/middleeast/blinken-to-meet-with-israeli-leaders-amid-deepening-disagreements-over-the-war.html", - "pubDate": "Tue, 09 Jan 2024 08:15:49 +0000", - "dc:creator": "Victoria Kim", - "content": "", - "contentSnippet": "", - "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/blinken-to-meet-with-israeli-leaders-amid-deepening-disagreements-over-the-war.html", - "isoDate": "2024-01-09T08:15:49.000Z" - }, - { - "creator": "Talya Minsberg", - "title": "Oct. 7 Assaults, Including Sexual Violence, Could Be Crimes Against Humanity, U.N. Experts Say", - "link": "https://www.nytimes.com/2024/01/08/world/middleeast/hamas-sexual-violence-un-israel.html", - "pubDate": "Tue, 09 Jan 2024 06:54:52 +0000", - "dc:creator": "Talya Minsberg", - "content": "The experts\u2019 statement came after the United Nations had been the focus of months of frustrated accusations that it was ignoring the rape and mutilation of women during the Oct. 7 attacks.", - "contentSnippet": "The experts\u2019 statement came after the United Nations had been the focus of months of frustrated accusations that it was ignoring the rape and mutilation of women during the Oct. 7 attacks.", - "guid": "https://www.nytimes.com/2024/01/08/world/middleeast/hamas-sexual-violence-un-israel.html", - "categories": [ - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sex Crimes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-09T06:54:52.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Tuesday Briefing", - "link": "https://www.nytimes.com/2024/01/09/briefing/israel-gaza-france-prime-minister.html", - "pubDate": "Tue, 09 Jan 2024 05:31:14 +0000", - "dc:creator": "Natasha Frost", - "content": "Israel\u2019s next phase of the war in Gaza.", - "contentSnippet": "Israel\u2019s next phase of the war in Gaza.", - "guid": "https://www.nytimes.com/2024/01/09/briefing/israel-gaza-france-prime-minister.html", - "isoDate": "2024-01-09T05:31:14.000Z" - }, - { - "creator": "The New York Times", - "title": "Israel-Hamas War: U.S. Strikes Houthis Again as Tensions in Region Rise", - "link": "https://www.nytimes.com/live/2024/01/18/world/israel-hamas-news", - "pubDate": "Thu, 18 Jan 2024 12:20:59 +0000", - "dc:creator": "The New York Times", - "content": "The U.S. has attacked Houthi targets four times in the past week as it tries to limit the Iran-backed group\u2019s ability to strike ships in the Red Sea.", - "contentSnippet": "The U.S. has attacked Houthi targets four times in the past week as it tries to limit the Iran-backed group\u2019s ability to strike ships in the Red Sea.", - "guid": "https://www.nytimes.com/live/2024/01/18/world/israel-hamas-news", - "isoDate": "2024-01-18T12:20:59.000Z" - }, - { - "creator": "Salman Masood", - "title": "Pakistan Retaliates With Strikes Inside Iran as Tensions Boil", - "link": "https://www.nytimes.com/2024/01/17/world/asia/pakistan-iran-strike.html", - "pubDate": "Thu, 18 Jan 2024 12:17:38 +0000", - "dc:creator": "Salman Masood", - "content": "The exchange of attacks came as the upheaval sweeping the Middle East threatened to expand.", - "contentSnippet": "The exchange of attacks came as the upheaval sweeping the Middle East threatened to expand.", - "guid": "https://www.nytimes.com/2024/01/17/world/asia/pakistan-iran-strike.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T12:17:38.000Z" - }, - { - "creator": "Lara Jakes and David E. Sanger", - "title": "Iran\u2019s Missile Capability Is Forcing the West to Weigh a Response", - "link": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-missile-program.html", - "pubDate": "Thu, 18 Jan 2024 11:32:14 +0000", - "dc:creator": "Lara Jakes and David E. Sanger", - "content": "Last year, the world discovered that Iran\u2019s drones were becoming world-class threats and a favorite of the Russians. Now, its revived missile fleet is drawing attention, too.", - "contentSnippet": "Last year, the world discovered that Iran\u2019s drones were becoming world-class threats and a favorite of the Russians. Now, its revived missile fleet is drawing attention, too.", - "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-missile-program.html", - "categories": [ - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Syria", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Islamic Revolutionary Guards Corps", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Iraq", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Abu Dhabi (United Arab Emirates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Baluchistan (Pakistan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "internal-storyline-no", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T11:32:14.000Z" - }, - { - "creator": "Sui-Lee Wee", - "title": "In a Rare Move, Singapore Charges Official With Corruption", - "link": "https://www.nytimes.com/2024/01/18/world/asia/singapore-iswaran-corruption-charges.html", - "pubDate": "Thu, 18 Jan 2024 10:56:20 +0000", - "dc:creator": "Sui-Lee Wee", - "content": "Accused of accepting tickets to \u201cHamilton,\u201d air travel and soccer games in Britain, the transport official resigned before he pleaded not guilty in court.", - "contentSnippet": "Accused of accepting tickets to \u201cHamilton,\u201d air travel and soccer games in Britain, the transport official resigned before he pleaded not guilty in court.", - "guid": "https://www.nytimes.com/2024/01/18/world/asia/singapore-iswaran-corruption-charges.html", - "categories": [ - { - "_": "Singapore", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Corruption (Institutional)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T10:56:20.000Z" - }, - { - "creator": "Ceylan Yeginsu", - "title": "Where Are People Going This Year?", - "link": "https://www.nytimes.com/2024/01/18/travel/destinations-2024.html", - "pubDate": "Thu, 18 Jan 2024 10:01:06 +0000", - "dc:creator": "Ceylan Yeginsu", - "content": "Popular spots from years past are still favorites, but 2023\u2019s crowds and heat waves are sparking interest in alternative destinations.", - "contentSnippet": "Popular spots from years past are still favorites, but 2023\u2019s crowds and heat waves are sparking interest in alternative destinations.", - "guid": "https://www.nytimes.com/2024/01/18/travel/destinations-2024.html", - "categories": [ - { - "_": "Travel and Vacations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Eclipses", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Scandinavia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-18T10:01:06.000Z" - }, - { - "creator": "Paige McClanahan", - "title": "Will My Next Trip Be by Train Instead of Plane?", - "link": "https://www.nytimes.com/2024/01/18/travel/new-train-routes.html", - "pubDate": "Thu, 18 Jan 2024 10:00:55 +0000", - "dc:creator": "Paige McClanahan", - "content": "In Europe, Asia and the U.S., new and expanded train service is making rail a viable alternative to flying.", - "contentSnippet": "In Europe, Asia and the U.S., new and expanded train service is making rail a viable alternative to flying.", - "guid": "https://www.nytimes.com/2024/01/18/travel/new-train-routes.html", - "categories": [ - { - "_": "Railroads", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Travel and Vacations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "High-Speed Rail Projects", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Malaysia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-18T10:00:55.000Z" - }, - { - "creator": "Christopher Cottrell and Natasha Frost", - "title": "How Violent Riots Engulfed Papua New Guinea\u2019s Capital", - "link": "https://www.nytimes.com/2024/01/18/world/asia/papua-new-guinea-unrest-poverty.html", - "pubDate": "Thu, 18 Jan 2024 06:57:49 +0000", - "dc:creator": "Christopher Cottrell and Natasha Frost", - "content": "A wage dispute prompted violent unrest in the Pacific nation, which experts call evidence of the effects of its demographic challenges.", - "contentSnippet": "A wage dispute prompted violent unrest in the Pacific nation, which experts call evidence of the effects of its demographic challenges.", - "guid": "https://www.nytimes.com/2024/01/18/world/asia/papua-new-guinea-unrest-poverty.html", - "categories": [ - { - "_": "Papua New Guinea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Marape, James", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Poverty", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Youth", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T06:57:49.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Thursday Briefing", - "link": "https://www.nytimes.com/2024/01/18/briefing/iran-strikes-gaza-hospital.html", - "pubDate": "Thu, 18 Jan 2024 05:07:24 +0000", - "dc:creator": "Natasha Frost", - "content": "Missile strikes by Iran.", - "contentSnippet": "Missile strikes by Iran.", - "guid": "https://www.nytimes.com/2024/01/18/briefing/iran-strikes-gaza-hospital.html", - "isoDate": "2024-01-18T05:07:24.000Z" - }, - { - "creator": "Simon Romero, Jody Garc\u00eda and Daniele Volpe", - "title": "In Guatemala, New Utopian Neighborhood? Or a Testament to Inequality?", - "link": "https://www.nytimes.com/2024/01/18/world/americas/cayala-guatemala.html", - "pubDate": "Thu, 18 Jan 2024 05:01:28 +0000", - "dc:creator": "Simon Romero, Jody Garc\u00eda and Daniele Volpe", - "content": "The development of Cayal\u00e1 is utopian, serene and prizewinning. As an elite stronghold in one of Latin America\u2019s most unequal nations, it is also divisive.", - "contentSnippet": "The development of Cayal\u00e1 is utopian, serene and prizewinning. As an elite stronghold in one of Latin America\u2019s most unequal nations, it is also divisive.", - "guid": "https://www.nytimes.com/2024/01/18/world/americas/cayala-guatemala.html", - "categories": [ - { - "_": "Income Inequality", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Urban Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Architecture", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Guatemala City (Guatemala)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Guatemala", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Arevalo, Bernardo (1958- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-18T05:01:28.000Z" - }, - { - "creator": "Melissa Eddy", - "title": "Germany\u2019s Economy Stalls Amid Falling Output and Political Bickering", - "link": "https://www.nytimes.com/2024/01/18/world/europe/german-economy-standstill.html", - "pubDate": "Thu, 18 Jan 2024 05:01:21 +0000", - "dc:creator": "Melissa Eddy", - "content": "The economy shrank last year and is not predicted to grow much in 2024. Farmers are angry, industrial output is falling and the government is bickering.", - "contentSnippet": "The economy shrank last year and is not predicted to grow much in 2024. Farmers are angry, industrial output is falling and the government is bickering.", - "guid": "https://www.nytimes.com/2024/01/18/world/europe/german-economy-standstill.html", - "categories": [ - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Strikes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gross National Product (GNP)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Group of Twenty", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Scholz, Olaf (1958- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Germany", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-18T05:01:21.000Z" - }, - { - "creator": "Karoun Demirjian and Erica L. Green", - "title": "Johnson Casts Doubt on Border Deal to Unlock Ukraine Aid, Defying Biden", - "link": "https://www.nytimes.com/2024/01/17/us/politics/johnson-biden-border-ukraine.html", - "pubDate": "Thu, 18 Jan 2024 02:37:29 +0000", - "dc:creator": "Karoun Demirjian and Erica L. Green", - "content": "A White House meeting between the president and congressional leaders did little to break the stalemate over aid to Ukraine, as the Republican speaker insisted on a tougher immigration crackdown.", - "contentSnippet": "A White House meeting between the president and congressional leaders did little to break the stalemate over aid to Ukraine, as the Republican speaker insisted on a tougher immigration crackdown.", - "guid": "https://www.nytimes.com/2024/01/17/us/politics/johnson-biden-border-ukraine.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Johnson, Mike (1972- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T02:37:29.000Z" - }, - { - "creator": "Simon Romero", - "title": "U.S. Moves to Bar Alejandro Giammattei, Ex-Guatemalan Leader", - "link": "https://www.nytimes.com/2024/01/17/world/americas/us-guatemala-giammattei-barred.html", - "pubDate": "Thu, 18 Jan 2024 01:57:13 +0000", - "dc:creator": "Simon Romero", - "content": "The decision against Alejandro Giammattei, who is accused of accepting bribes, signaled U.S. support for a new anticorruption drive in Guatemala.", - "contentSnippet": "The decision against Alejandro Giammattei, who is accused of accepting bribes, signaled U.S. support for a new anticorruption drive in Guatemala.", - "guid": "https://www.nytimes.com/2024/01/17/world/americas/us-guatemala-giammattei-barred.html", - "categories": [ - { - "_": "Guatemala", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Giammattei, Alejandro", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "State Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bribery and Kickbacks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Corruption (Institutional)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arevalo, Bernardo (1958- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Elections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T01:57:13.000Z" - }, - { - "creator": "Sui-Lee Wee", - "title": "Explosion at Thailand Fireworks Factory Kills at Least 20", - "link": "https://www.nytimes.com/2024/01/17/world/asia/thailand-fireworks-factory-explosion.html", - "pubDate": "Thu, 18 Jan 2024 01:55:43 +0000", - "dc:creator": "Sui-Lee Wee", - "content": "The blast leveled the facility and was the second such deadly accident in the country since 2022. The police are investigating the cause.", - "contentSnippet": "The blast leveled the facility and was the second such deadly accident in the country since 2022. The police are investigating the cause.", - "guid": "https://www.nytimes.com/2024/01/17/world/asia/thailand-fireworks-factory-explosion.html", - "categories": [ - { - "_": "Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Thailand", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T01:55:43.000Z" - }, - { - "creator": "Adam Rasgon, Aaron Boxerman and Thomas Fuller", - "title": "Palestinians Flee Gaza Hospital Refuge as Fighting Intensifies", - "link": "https://www.nytimes.com/2024/01/17/world/middleeast/israel-hamas-gaza-hospital.html", - "pubDate": "Thu, 18 Jan 2024 01:00:14 +0000", - "dc:creator": "Adam Rasgon, Aaron Boxerman and Thomas Fuller", - "content": "Israel and Hamas are battling near a hospital in Khan Younis, near where the military said it had detected mortar fire. About 7,000 people had sought shelter on the hospital grounds, the U.N. said.", - "contentSnippet": "Israel and Hamas are battling near a hospital in Khan Younis, near where the military said it had detected mortar fire. About 7,000 people had sought shelter on the hospital grounds, the U.N. said.", - "guid": "https://www.nytimes.com/2024/01/17/world/middleeast/israel-hamas-gaza-hospital.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hospitals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sinwar, Yehya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Blinken, Antony J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nasser Medical Center", - "$": { - "domain": "" - } - } - ], - "isoDate": "2024-01-18T01:00:14.000Z" - }, - { - "creator": "John Yoon and Victor Mather", - "title": "Heavy Snow and Freezing Rain Ground Hundreds of Flights in Germany", - "link": "https://www.nytimes.com/2024/01/17/world/europe/germany-flights-canceled-weather.html", - "pubDate": "Wed, 17 Jan 2024 22:55:04 +0000", - "dc:creator": "John Yoon and Victor Mather", - "content": "About 700 flights were canceled on Wednesday at Germany\u2019s largest airport because of severe weather. Departures resumed later in the day.", - "contentSnippet": "About 700 flights were canceled on Wednesday at Germany\u2019s largest airport because of severe weather. Departures resumed later in the day.", - "guid": "https://www.nytimes.com/2024/01/17/world/europe/germany-flights-canceled-weather.html", - "categories": [ - { - "_": "Airports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Frankfurt (Germany)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Weather", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Snow and Snowstorms", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Frankfurt Airport", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Munich (Germany)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Deutsche Lufthansa AG", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-17T22:55:04.000Z" - }, - { - "creator": "Stephen Castle and Mark Landler", - "title": "Sunak\u2019s Rwanda Immigration Plan Passes Vote in U.K. Parliament", - "link": "https://www.nytimes.com/2024/01/17/world/europe/britain-immigration-vote-rwanda.html", - "pubDate": "Wed, 17 Jan 2024 22:53:35 +0000", - "dc:creator": "Stephen Castle and Mark Landler", - "content": "The British prime minister\u2019s plan to send refugees to Rwanda passed a critical vote, but more hurdles lie ahead.", - "contentSnippet": "The British prime minister\u2019s plan to send refugees to Rwanda passed a critical vote, but more hurdles lie ahead.", - "guid": "https://www.nytimes.com/2024/01/17/world/europe/britain-immigration-vote-rwanda.html", - "categories": [ - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain Withdrawal from EU (Brexit)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conservative Party (Great Britain)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "House of Lords (Great Britain)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Labour Party (Great Britain)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Sunak, Rishi (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Starmer, Keir", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Rwanda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-17T22:53:35.000Z" - }, - { - "creator": "Michael Crowley", - "title": "U.S. to Return Houthis to Terrorism List", - "link": "https://www.nytimes.com/2024/01/16/us/politics/houthis-terrorism-designation.html", - "pubDate": "Wed, 17 Jan 2024 22:50:16 +0000", - "dc:creator": "Michael Crowley", - "content": "The move is a partial return to a tougher Trump administration stance toward the Iran-backed group, which has attacked commercial ships in the Red Sea and the Gulf of Aden.", - "contentSnippet": "The move is a partial return to a tougher Trump administration stance toward the Iran-backed group, which has attacked commercial ships in the Red Sea and the Gulf of Aden.", - "guid": "https://www.nytimes.com/2024/01/16/us/politics/houthis-terrorism-designation.html", - "categories": [ - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Blinken, Antony J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Trump, Donald J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Red Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Yemen", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-17T22:50:16.000Z" - }, - { - "creator": "Valeriya Safronova", - "title": "Nadya Tolokonnikova of Pussy Riot Marries John Caldwell", - "link": "https://www.nytimes.com/2024/01/17/style/nadya-tolokonnikova-john-caldwell-pussy-riot-wedding.html", - "pubDate": "Wed, 17 Jan 2024 22:05:14 +0000", - "dc:creator": "Valeriya Safronova", - "content": "Nadya Tolokonnikova, a founding member of Pussy Riot, and John Caldwell have always prioritized being \u201chelpful,\u201d he said, over being happy.", - "contentSnippet": "Nadya Tolokonnikova, a founding member of Pussy Riot, and John Caldwell have always prioritized being \u201chelpful,\u201d he said, over being happy.", - "guid": "https://www.nytimes.com/2024/01/17/style/nadya-tolokonnikova-john-caldwell-pussy-riot-wedding.html", - "categories": [ - { - "_": "Weddings and Engagements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tolokonnikova, Nadezhda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T22:05:14.000Z" - }, - { - "creator": "Mark Landler and Stephen Castle", - "title": "Why Rishi Sunak\u2019s Conservatives Have Splintered Into Factions", - "link": "https://www.nytimes.com/2024/01/17/world/europe/sunak-parliament-conservatives-five-families.html", - "pubDate": "Wed, 17 Jan 2024 21:46:34 +0000", - "dc:creator": "Mark Landler and Stephen Castle", - "content": "The biggest challenge to Britain\u2019s prime minister comes from his own divided party, which is triggering resignations and a mutiny over immigration.", - "contentSnippet": "The biggest challenge to Britain\u2019s prime minister comes from his own divided party, which is triggering resignations and a mutiny over immigration.", - "guid": "https://www.nytimes.com/2024/01/17/world/europe/sunak-parliament-conservatives-five-families.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conservative Party (Great Britain)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Asylum, Right of", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Francois, Mark (1965- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sunak, Rishi (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Timothy, Nicholas (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Braverman, Suella", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Johnson, Boris", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "England", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Rwanda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T21:46:34.000Z" - }, - { - "creator": "Mark Landler", - "title": "Kate, Princess of Wales, Is in the Hospital After Abdominal Surgery", - "link": "https://www.nytimes.com/2024/01/17/world/europe/princess-kate-middleton-abdominal-surgery.html", - "pubDate": "Wed, 17 Jan 2024 21:43:21 +0000", - "dc:creator": "Mark Landler", - "content": "Kensington Palace said Catherine, the wife of Prince William, would not return to public duties until after Easter. Separately, King Charles will receive prostate treatment next week.", - "contentSnippet": "Kensington Palace said Catherine, the wife of Prince William, would not return to public duties until after Easter. Separately, King Charles will receive prostate treatment next week.", - "guid": "https://www.nytimes.com/2024/01/17/world/europe/princess-kate-middleton-abdominal-surgery.html", - "categories": [ - { - "_": "Royal Families", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Catherine, Duchess of Cambridge", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "William, Duke of Cambridge", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Charles III, King of the United Kingdom", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T21:43:21.000Z" - }, - { - "creator": "Anushka Patil and Adam Rasgon", - "title": "Gaza\u2019s Phone and Internet Service Is Down for a Sixth Day", - "link": "https://www.nytimes.com/2024/01/17/world/middleeast/gaza-telecom-blackout.html", - "pubDate": "Wed, 17 Jan 2024 21:32:18 +0000", - "dc:creator": "Anushka Patil and Adam Rasgon", - "content": "It is the longest blackout since the start of the war, according to the strip\u2019s main communications company, which says it is unable to make repairs amid the fighting.", - "contentSnippet": "It is the longest blackout since the start of the war, according to the strip\u2019s main communications company, which says it is unable to make repairs amid the fighting.", - "guid": "https://www.nytimes.com/2024/01/17/world/middleeast/gaza-telecom-blackout.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Communications and Media Blackouts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Khan Younis (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T21:32:18.000Z" - }, - { - "creator": "Vivian Yee and Farnaz Fassihi", - "title": "Iran Says It Won\u2019t Hold Back on Using Military Power After Strikes", - "link": "https://www.nytimes.com/2024/01/17/world/middleeast/iran-missiles-pakistan-iraq.html", - "pubDate": "Wed, 17 Jan 2024 21:21:14 +0000", - "dc:creator": "Vivian Yee and Farnaz Fassihi", - "content": "The country has hit targets in Syria, Iraq and Pakistan with missiles this week, signaling to hard-line supporters that it is not passive in the face of threats.", - "contentSnippet": "The country has hit targets in Syria, Iraq and Pakistan with missiles this week, signaling to hard-line supporters that it is not passive in the face of threats.", - "guid": "https://www.nytimes.com/2024/01/17/world/middleeast/iran-missiles-pakistan-iraq.html", - "categories": [ - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pakistan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iraq", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Islamic State in Iraq and Syria (ISIS)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Baluchistan (Pakistan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Syria", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Khamenei, Ali", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T21:21:14.000Z" - }, - { - "creator": "Amelia Nierenberg", - "title": "Thursday Briefing: Iran Raises Military Threats", - "link": "https://www.nytimes.com/2024/01/17/world/asia/iran-pakistan-iraq-china-asia.html", - "pubDate": "Wed, 17 Jan 2024 21:04:39 +0000", - "dc:creator": "Amelia Nierenberg", - "content": "Also, how language affects memory as we age.", - "contentSnippet": "Also, how language affects memory as we age.", - "guid": "https://www.nytimes.com/2024/01/17/world/asia/iran-pakistan-iraq-china-asia.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T21:04:39.000Z" - }, - { - "creator": "Aurelien Breeden", - "title": "France Rejects Genocide Accusations Against Israel in Gaza", - "link": "https://www.nytimes.com/2024/01/17/world/middleeast/france-israel-genocide-gaza.html", - "pubDate": "Wed, 17 Jan 2024 20:28:13 +0000", - "dc:creator": "Aurelien Breeden", - "content": "\u201cTo accuse the Jewish state of genocide is to cross a moral threshold,\u201d France\u2019s foreign minister said on Wednesday.", - "contentSnippet": "\u201cTo accuse the Jewish state of genocide is to cross a moral threshold,\u201d France\u2019s foreign minister said on Wednesday.", - "guid": "https://www.nytimes.com/2024/01/17/world/middleeast/france-israel-genocide-gaza.html", - "categories": [ - { - "_": "Macron, Emmanuel (1977- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sejourne, Stephane", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "International Court of Justice (UN)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "South Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-17T20:28:13.000Z" - }, - { - "creator": "Siobhan Roberts", - "title": "A.I.\u2019s Latest Challenge: the Math Olympics", - "link": "https://www.nytimes.com/2024/01/17/science/ai-computers-mathematics-olympiad.html", - "pubDate": "Wed, 17 Jan 2024 19:49:55 +0000", - "dc:creator": "Siobhan Roberts", - "content": "Watch out, nerdy high schoolers, AlphaGeometry is coming for your mathematical lunch.", - "contentSnippet": "Watch out, nerdy high schoolers, AlphaGeometry is coming for your mathematical lunch.", - "guid": "https://www.nytimes.com/2024/01/17/science/ai-computers-mathematics-olympiad.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mathematics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "DeepMind Technologies Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Tao, Terence (1975- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "California", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T19:49:55.000Z" - }, - { - "creator": "Safak Timur", - "title": "Softer Penalty for Somali Leader\u2019s Son After Fatal Crash Prompts Outrage in Turkey", - "link": "https://www.nytimes.com/2024/01/17/world/europe/somalia-president-son-turkey-crash.html", - "pubDate": "Wed, 17 Jan 2024 18:47:51 +0000", - "dc:creator": "Safak Timur", - "content": "After a crash that killed a motorcycle courier, a son of Somalia\u2019s president faced prison. Now it will be a fine of about $900.", - "contentSnippet": "After a crash that killed a motorcycle courier, a son of Somalia\u2019s president faced prison. Now it will be a fine of about $900.", - "guid": "https://www.nytimes.com/2024/01/17/world/europe/somalia-president-son-turkey-crash.html", - "categories": [ - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Amnesties, Commutations and Pardons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mohamud, Hassan Sheikh", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Somalia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Turkey", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T18:47:51.000Z" - }, - { - "creator": "Mark Landler", - "title": "King Charles to Have \u2018Corrective Procedure\u2019 for Enlarged Prostate Next Week", - "link": "https://www.nytimes.com/2024/01/17/world/europe/king-charles-surgery-prostate.html", - "pubDate": "Wed, 17 Jan 2024 17:42:30 +0000", - "dc:creator": "Mark Landler", - "content": "The announcement from Buckingham Palace came shortly after the news that Catherine, Princess of Wales, had abdominal surgery on Tuesday.", - "contentSnippet": "The announcement from Buckingham Palace came shortly after the news that Catherine, Princess of Wales, had abdominal surgery on Tuesday.", - "guid": "https://www.nytimes.com/2024/01/17/world/europe/king-charles-surgery-prostate.html", - "categories": [ - { - "_": "Prostate Gland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Royal Families", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Charles III, King of the United Kingdom", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T17:42:30.000Z" - }, - { - "creator": "Ali Watkins", - "title": "In Norway, a Proposed Ban on Foreign Adoptions Rattles All Sides of a Heated Debate", - "link": "https://www.nytimes.com/2024/01/17/world/europe/foreign-adoptions-ban-norway-denmark.html", - "pubDate": "Wed, 17 Jan 2024 16:50:39 +0000", - "dc:creator": "Ali Watkins", - "content": "A policy body recommended this week that the country halt all foreign adoptions amid allegations of stolen children, falsified paperwork and for-profit adoption schemes.", - "contentSnippet": "A policy body recommended this week that the country halt all foreign adoptions amid allegations of stolen children, falsified paperwork and for-profit adoption schemes.", - "guid": "https://www.nytimes.com/2024/01/17/world/europe/foreign-adoptions-ban-norway-denmark.html", - "categories": [ - { - "_": "Norway", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Adoptions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T16:50:39.000Z" - }, - { - "creator": "Mohamed Ahmed and Emma Bubola", - "title": "Kenyan Cult Leader Will Face 191 Charges of Child Murder", - "link": "https://www.nytimes.com/2024/01/17/world/africa/kenya-cult-leader-murders-mackenzie.html", - "pubDate": "Wed, 17 Jan 2024 16:23:22 +0000", - "dc:creator": "Mohamed Ahmed and Emma Bubola", - "content": "The authorities say Paul Nthenge Mackenzie told his followers to starve themselves and their children to death in the Shakahola Forest, where hundreds of bodies have been exhumed.", - "contentSnippet": "The authorities say Paul Nthenge Mackenzie told his followers to starve themselves and their children to death in the Shakahola Forest, where hundreds of bodies have been exhumed.", - "guid": "https://www.nytimes.com/2024/01/17/world/africa/kenya-cult-leader-murders-mackenzie.html", - "categories": [ - { - "_": "Evangelical Movement", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Religious Cults", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Doomsday", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mackenzie, Paul Nthenge", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kenya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Malindi (Kenya)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T16:23:22.000Z" - }, - { - "creator": "Delger Erdenesanaa", - "title": "Greenland\u2019s Ice Sheet May Be Losing 20% More Ice Than Previously Measured", - "link": "https://www.nytimes.com/2024/01/17/climate/greenland-ice-sheet-melting.html", - "pubDate": "Wed, 17 Jan 2024 16:22:03 +0000", - "dc:creator": "Delger Erdenesanaa", - "content": "The island is shedding 20 percent more than previously estimated, a study found, potentially threatening ocean currents that help to regulate global temperatures.", - "contentSnippet": "The island is shedding 20 percent more than previously estimated, a study found, potentially threatening ocean currents that help to regulate global temperatures.", - "guid": "https://www.nytimes.com/2024/01/17/climate/greenland-ice-sheet-melting.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Glaciers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nature (Journal)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Oceans and Seas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greene, Chad", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-17T16:22:03.000Z" - }, - { - "creator": "Salman Masood", - "title": "After Iran Strikes, Pakistan Weighs Options for Response", - "link": "https://www.nytimes.com/2024/01/17/world/asia/iran-pakistan-strike.html", - "pubDate": "Wed, 17 Jan 2024 14:05:26 +0000", - "dc:creator": "Salman Masood", - "content": "Retaliation could risk drawing the country, which is already mired in political and economic crises, into Middle East upheaval that it has so far avoided.", - "contentSnippet": "Retaliation could risk drawing the country, which is already mired in political and economic crises, into Middle East upheaval that it has so far avoided.", - "guid": "https://www.nytimes.com/2024/01/17/world/asia/iran-pakistan-strike.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pakistan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T14:05:26.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Polish Truckers Lift Border Blockade With Ukraine", - "link": "https://www.nytimes.com/2024/01/17/world/europe/ukraine-poland-truckers-blockade.html", - "pubDate": "Wed, 17 Jan 2024 11:49:57 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "The suspension of the protest until March, while its leaders talk with the Polish government, promises some relief for Ukraine\u2019s flagging economy.", - "contentSnippet": "The suspension of the protest until March, while its leaders talk with the Polish government, promises some relief for Ukraine\u2019s flagging economy.", - "guid": "https://www.nytimes.com/2024/01/17/world/europe/ukraine-poland-truckers-blockade.html", - "categories": [ - { - "_": "Trucks and Trucking", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kyiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Poland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T11:49:57.000Z" - }, - { - "creator": "Ceylan Yeginsu", - "title": "3-Year Cruise Passengers Seek Fraud Charges Over Cancellation", - "link": "https://www.nytimes.com/2024/01/17/travel/criminal-complaint-three-year-cruise.html", - "pubDate": "Wed, 17 Jan 2024 11:36:55 +0000", - "dc:creator": "Ceylan Yeginsu", - "content": "After more than a month of missed deadlines for refunds, a group of hard-hit passengers who signed up for the failed Life at Sea cruise are pursuing legal intervention.", - "contentSnippet": "After more than a month of missed deadlines for refunds, a group of hard-hit passengers who signed up for the failed Life at Sea cruise are pursuing legal intervention.", - "guid": "https://www.nytimes.com/2024/01/17/travel/criminal-complaint-three-year-cruise.html", - "categories": [ - { - "_": "Travel and Vacations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cruises", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Life at Sea Cruise", - "$": { - "domain": "" - } - }, - { - "_": "Miray International Cruises & Management", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-17T11:36:55.000Z" - }, - { - "creator": "Alissa J. Rubin", - "title": "Iranian Strikes in Iraq and Pakistan Inflame Regional Tensions", - "link": "https://www.nytimes.com/2024/01/16/world/middleeast/iraq-us-europe-iran-attack-kurdistan.html", - "pubDate": "Wed, 17 Jan 2024 10:44:04 +0000", - "dc:creator": "Alissa J. Rubin", - "content": "Iran says its missile strikes were aimed at militant groups behind attacks on its territory, but Pakistan and Iraq rejected that explanation.", - "contentSnippet": "Iran says its missile strikes were aimed at militant groups behind attacks on its territory, but Pakistan and Iraq rejected that explanation.", - "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/iraq-us-europe-iran-attack-kurdistan.html", - "categories": [ - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kurds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Islamic Revolutionary Guards Corps", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Islamic State in Iraq and Syria (ISIS)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Erbil (Iraq)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iraq", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pakistan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T10:44:04.000Z" - }, - { - "creator": "Emma Bubola", - "title": "New Zealand Lawmaker Golriz Ghahraman Resigns After Shoplifting Allegations", - "link": "https://www.nytimes.com/2024/01/16/world/asia/new-zealand-lawmaker-shoplifting-golriz-ghahraman.html", - "pubDate": "Wed, 17 Jan 2024 10:30:45 +0000", - "dc:creator": "Emma Bubola", - "content": "Golriz Ghahraman was the first refugee to be sworn in as a member of the country\u2019s Parliament. She did not directly address the accusations but said her behavior \u201cfell short.\u201d", - "contentSnippet": "Golriz Ghahraman was the first refugee to be sworn in as a member of the country\u2019s Parliament. She did not directly address the accusations but said her behavior \u201cfell short.\u201d", - "guid": "https://www.nytimes.com/2024/01/16/world/asia/new-zealand-lawmaker-shoplifting-golriz-ghahraman.html", - "categories": [ - { - "_": "New Zealand", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shoplifting and Employee Theft (Retail)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Legislatures and Parliaments", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ghahraman, Golriz", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-17T10:30:45.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Wednesday Briefing", - "link": "https://www.nytimes.com/2024/01/17/briefing/yemen-attacks-trump-zelensky-davos.html", - "pubDate": "Wed, 17 Jan 2024 05:05:58 +0000", - "dc:creator": "Natasha Frost", - "content": "U.S. attacks in Yemen.", - "contentSnippet": "U.S. attacks in Yemen.", - "guid": "https://www.nytimes.com/2024/01/17/briefing/yemen-attacks-trump-zelensky-davos.html", - "isoDate": "2024-01-17T05:05:58.000Z" - }, - { - "creator": "Eric Schmitt and Saeed Al-Batati", - "title": "U.S. Strikes Houthi Targets in Yemen for a Third Time", - "link": "https://www.nytimes.com/2024/01/16/world/middleeast/us-strikes-houthis-yemen.html", - "pubDate": "Wed, 17 Jan 2024 04:37:12 +0000", - "dc:creator": "Eric Schmitt and Saeed Al-Batati", - "content": "The American strikes destroyed four missiles that posed a threat to ships in the Red Sea, the Pentagon said. They came on the third day in a row the Houthis have defiantly fired at passing ships.", - "contentSnippet": "The American strikes destroyed four missiles that posed a threat to ships in the Red Sea, the Pentagon said. They came on the third day in a row the Houthis have defiantly fired at passing ships.", - "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/us-strikes-houthis-yemen.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ships and Shipping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Yemen", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Red Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T04:37:12.000Z" - }, - { - "creator": "Carol Rosenberg", - "title": "Malaysian Prisoners Plead Guilty to Conspiring in 2002 Bali Bombing", - "link": "https://www.nytimes.com/2024/01/16/us/politics/bali-bombing-case.html", - "pubDate": "Wed, 17 Jan 2024 02:31:08 +0000", - "dc:creator": "Carol Rosenberg", - "content": "The men, who have been held by the United States for two decades as lieutenants to a Southeast Asian terrorist, entered pleas at Guant\u00e1namo Bay.", - "contentSnippet": "The men, who have been held by the United States for two decades as lieutenants to a Southeast Asian terrorist, entered pleas at Guant\u00e1namo Bay.", - "guid": "https://www.nytimes.com/2024/01/16/us/politics/bali-bombing-case.html", - "categories": [ - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "September 11 (2001)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Detainees", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Torture", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Military Tribunals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Al Qaeda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Central Intelligence Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Jemaah Islamiyah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "bin Laden, Osama", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bali (Indonesia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Guantanamo Bay Naval Base (Cuba)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Jakarta (Indonesia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T02:31:08.000Z" - }, - { - "creator": "Catie Edmondson", - "title": "Senate Advances Stopgap Bill to Avert a Partial Shutdown", - "link": "https://www.nytimes.com/2024/01/16/world/europe/senate-government-shutdown-bill.html", - "pubDate": "Wed, 17 Jan 2024 02:15:21 +0000", - "dc:creator": "Catie Edmondson", - "content": "The lopsided vote reflected broad backing for the measure in the Senate. It faces a more fraught reception in the House, where hard-right Republicans are opposed.", - "contentSnippet": "The lopsided vote reflected broad backing for the measure in the Senate. It faces a more fraught reception in the House, where hard-right Republicans are opposed.", - "guid": "https://www.nytimes.com/2024/01/16/world/europe/senate-government-shutdown-bill.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shutdowns (Institutional)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Federal Budget (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "House Freedom Caucus", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Johnson, Mike (1972- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Schumer, Charles E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-17T02:15:21.000Z" - }, - { - "creator": "Roger Cohen", - "title": "Macron Vows to Break France\u2019s Taboos and Fight the Far Right", - "link": "https://www.nytimes.com/2024/01/16/world/europe/macron-france-taboos.html", - "pubDate": "Wed, 17 Jan 2024 01:26:54 +0000", - "dc:creator": "Roger Cohen", - "content": "The president also said during a televised appearance he would fight to the last to prevent the far-right leader Marine Le Pen from succeeding him.", - "contentSnippet": "The president also said during a televised appearance he would fight to the last to prevent the far-right leader Marine Le Pen from succeeding him.", - "guid": "https://www.nytimes.com/2024/01/16/world/europe/macron-france-taboos.html", - "categories": [ - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Macron, Emmanuel (1977- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Le Pen, Marine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-17T01:26:54.000Z" - }, - { - "creator": "Karoun Demirjian", - "title": "Senate Rejects Israel Human Rights Measure, but Skepticism on Aid Persists", - "link": "https://www.nytimes.com/2024/01/16/us/politics/senate-israel-aid.html", - "pubDate": "Wed, 17 Jan 2024 01:19:22 +0000", - "dc:creator": "Karoun Demirjian", - "content": "Senators voted to kill a resolution that would have ordered the administration to assess whether Israel has violated human rights. But the debate highlighted Democratic resistance to providing unfettered aid.", - "contentSnippet": "Senators voted to kill a resolution that would have ordered the administration to assess whether Israel has violated human rights. But the debate highlighted Democratic resistance to providing unfettered aid.", - "guid": "https://www.nytimes.com/2024/01/16/us/politics/senate-israel-aid.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Human Rights and Human Rights Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Democratic Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Sanders, Bernard", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T01:19:22.000Z" - }, - { - "creator": "Aaron Boxerman and Adam Rasgon", - "title": "Hamas Rocket Barrage Stirs Debate in Israel Over Direction of War", - "link": "https://www.nytimes.com/2024/01/16/world/middleeast/hamas-rocket-barrage-israel-war.html", - "pubDate": "Wed, 17 Jan 2024 01:00:13 +0000", - "dc:creator": "Aaron Boxerman and Adam Rasgon", - "content": "Right-wing lawmakers said the attack on Tuesday showed the folly of withdrawing some troops from the Gaza Strip, while Israel\u2019s government faces international pressure to scale back further.", - "contentSnippet": "Right-wing lawmakers said the attack on Tuesday showed the folly of withdrawing some troops from the Gaza Strip, while Israel\u2019s government faces international pressure to scale back further.", - "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/hamas-rocket-barrage-israel-war.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ben-Gvir, Itamar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gallant, Yoav", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ziv, Israel (1957- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-17T01:00:13.000Z" - }, - { - "creator": "Cassandra Vinograd", - "title": "2 Planes Collide at Japan Airport Amid Heavy Snow, Weeks After Tokyo Episode", - "link": "https://www.nytimes.com/2024/01/16/world/asia/japan-hokkaido-planes.html", - "pubDate": "Tue, 16 Jan 2024 23:02:05 +0000", - "dc:creator": "Cassandra Vinograd", - "content": "Nobody was injured in the episode on Tuesday, which took place on the country\u2019s northern island of Hokkaido amid heavy snow.", - "contentSnippet": "Nobody was injured in the episode on Tuesday, which took place on the country\u2019s northern island of Hokkaido amid heavy snow.", - "guid": "https://www.nytimes.com/2024/01/16/world/asia/japan-hokkaido-planes.html", - "categories": [ - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Aviation Accidents, Safety and Disasters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Snow and Snowstorms", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hokkaido (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Tokyo (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Cathay Pacific Airways Limited", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-16T23:02:05.000Z" - }, - { - "creator": "Amelia Nierenberg", - "title": "Wednesday Briefing: Trump\u2019s Momentum After Iowa", - "link": "https://www.nytimes.com/2024/01/16/world/asia/iowa-trump-hamas-korea-asia.html", - "pubDate": "Tue, 16 Jan 2024 22:51:52 +0000", - "dc:creator": "Amelia Nierenberg", - "content": "Also, the afterlife of a Japanese marvel.", - "contentSnippet": "Also, the afterlife of a Japanese marvel.", - "guid": "https://www.nytimes.com/2024/01/16/world/asia/iowa-trump-hamas-korea-asia.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-16T22:51:52.000Z" - }, - { - "creator": "Eric Schmitt", - "title": "2 Missing Navy SEALs Were Stopping Weapons Going to Yemen From Iran", - "link": "https://www.nytimes.com/2024/01/16/world/middleeast/navy-seals-houthis-iran.html", - "pubDate": "Tue, 16 Jan 2024 19:29:56 +0000", - "dc:creator": "Eric Schmitt", - "content": "The seized items, including missile guidance systems and warheads, were for the Iran-backed Houthi militia, which has been targeting ships in the Red Sea, the Pentagon said.", - "contentSnippet": "The seized items, including missile guidance systems and warheads, were for the Iran-backed Houthi militia, which has been targeting ships in the Red Sea, the Pentagon said.", - "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/navy-seals-houthis-iran.html", - "categories": [ - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Navy Seals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States Navy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Red Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Yemen", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Somalia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-16T19:29:56.000Z" - }, - { - "creator": "Victor Mather", - "title": "Was Bobi Really the World\u2019s Oldest Dog? His Guinness Record Is in Doubt.", - "link": "https://www.nytimes.com/2024/01/16/world/europe/worlds-oldest-dog-bobi.html", - "pubDate": "Tue, 16 Jan 2024 19:15:45 +0000", - "dc:creator": "Victor Mather", - "content": "His owner\u2019s claim that Bobi, a Rafeiro do Alentejo from Portugal, was more than 31 drew skepticism. His title is on hold pending an investigation.", - "contentSnippet": "His owner\u2019s claim that Bobi, a Rafeiro do Alentejo from Portugal, was more than 31 drew skepticism. His title is on hold pending an investigation.", - "guid": "https://www.nytimes.com/2024/01/16/world/europe/worlds-oldest-dog-bobi.html", - "categories": [ - { - "_": "Dogs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Records and Achievements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Guinness World Records", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Portugal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Guinness World Records (Book)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Longevity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-16T19:15:45.000Z" - }, - { - "creator": "Richard Sandomir", - "title": "Zvi Zamir, Israeli Spy Chief in a Critical Period, Dies at 98", - "link": "https://www.nytimes.com/2024/01/16/world/middleeast/zvi-zamir-dead.html", - "pubDate": "Tue, 16 Jan 2024 18:15:08 +0000", - "dc:creator": "Richard Sandomir", - "content": "He led the Mossad\u2019s response to the massacre of 11 Israelis at the 1972 Olympics. A year later, he learned that Egypt and Syria were about to attack Israel.", - "contentSnippet": "He led the Mossad\u2019s response to the massacre of 11 Israelis at the 1972 Olympics. A year later, he learned that Egypt and Syria were about to attack Israel.", - "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/zvi-zamir-dead.html", - "categories": [ - { - "_": "Zamir, Zvi (1925-2024)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Olympic Games (1972)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arab-Israeli War (1973)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mossad", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Black September Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Munich (Germany)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Munich (Movie)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-16T18:15:08.000Z" - }, - { - "creator": "Andrew E. Kramer, Jim Tankersley and Jordyn Holman", - "title": "Zelensky Calls for Peace, Not More Weapons, in Davos", - "link": "https://www.nytimes.com/2024/01/16/world/europe/ukraine-zelensky-davos-switzerland-peace.html", - "pubDate": "Tue, 16 Jan 2024 17:40:53 +0000", - "dc:creator": "Andrew E. Kramer, Jim Tankersley and Jordyn Holman", - "content": "In a speech in Switzerland, the Ukrainian president asked for more sanctions on Moscow, but he did not appeal for weaponry for new offenses.", - "contentSnippet": "In a speech in Switzerland, the Ukrainian president asked for more sanctions on Moscow, but he did not appeal for weaponry for new offenses.", - "guid": "https://www.nytimes.com/2024/01/16/world/europe/ukraine-zelensky-davos-switzerland-peace.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Peace Process", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World Economic Forum", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Switzerland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-16T17:40:53.000Z" - }, - { - "creator": "Megan Specia", - "title": "Three Myths Around the U.K.\u2019s Rwanda Plan for Asylum Seekers", - "link": "https://www.nytimes.com/2024/01/16/world/europe/uk-rwanda-asylum.html", - "pubDate": "Tue, 16 Jan 2024 17:10:08 +0000", - "dc:creator": "Megan Specia", - "content": "The British government\u2019s plan to send asylum seekers to Africa is back in Parliament this week. Here\u2019s a guide to some of the difficult realities behind the issue.", - "contentSnippet": "The British government\u2019s plan to send asylum seekers to Africa is back in Parliament this week. Here\u2019s a guide to some of the difficult realities behind the issue.", - "guid": "https://www.nytimes.com/2024/01/16/world/europe/uk-rwanda-asylum.html", - "categories": [ - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asylum, Right of", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-16T17:10:08.000Z" - }, - { - "creator": "Nadav Gavrielov", - "title": "Israeli Teenager Recounts Her Time as a Hostage in Gaza", - "link": "https://www.nytimes.com/2024/01/16/world/middleeast/israel-hostage-hamas-gaza.html", - "pubDate": "Tue, 16 Jan 2024 15:30:29 +0000", - "dc:creator": "Nadav Gavrielov", - "content": "Hila Rotem Shoshani, 13, is the youngest of the hostages freed from Gaza to speak out about the harsh conditions in which they were held.", - "contentSnippet": "Hila Rotem Shoshani, 13, is the youngest of the hostages freed from Gaza to speak out about the harsh conditions in which they were held.", - "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/israel-hostage-hamas-gaza.html", - "categories": [ - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-16T15:30:29.000Z" - }, - { - "creator": "Adam Goldman, Ronen Bergman, Patrick Kingsley and Gal Koplewitz", - "title": "Israel Unearths More of a Subterranean Fortress Under Gaza", - "link": "https://www.nytimes.com/2024/01/16/us/politics/israel-gaza-tunnels.html", - "pubDate": "Tue, 16 Jan 2024 15:00:20 +0000", - "dc:creator": "Adam Goldman, Ronen Bergman, Patrick Kingsley and Gal Koplewitz", - "content": "The Israeli military has been surprised by the extent, depth and quality of the tunnel network beneath Gaza.", - "contentSnippet": "The Israeli military has been surprised by the extent, depth and quality of the tunnel network beneath Gaza.", - "guid": "https://www.nytimes.com/2024/01/16/us/politics/israel-gaza-tunnels.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bridges and Tunnels", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-16T15:00:20.000Z" - }, - { - "creator": "Showkat Nanda and Sameer Yasir", - "title": "Winter Without Snow Is Devastating Indian Kashmir\u2019s Ski Tourism", - "link": "https://www.nytimes.com/2024/01/16/world/asia/no-snow-gulmarg-india.html", - "pubDate": "Tue, 16 Jan 2024 14:43:57 +0000", - "dc:creator": "Showkat Nanda and Sameer Yasir", - "content": "A dry winter has been devastating to Gulmarg, one of Asia\u2019s highest ski resorts, in Indian-controlled Kashmir.", - "contentSnippet": "A dry winter has been devastating to Gulmarg, one of Asia\u2019s highest ski resorts, in Indian-controlled Kashmir.", - "guid": "https://www.nytimes.com/2024/01/16/world/asia/no-snow-gulmarg-india.html", - "categories": [ - { - "_": "Travel and Vacations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Snow and Snowstorms", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Winter (Season)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Skiing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Weather", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gulmarg (Jammu and Kashmir)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-16T14:43:57.000Z" - }, - { - "creator": "Megan Specia", - "title": "UK Moves to Ban the Islamist Group Hizb ut-Tahrir", - "link": "https://www.nytimes.com/2024/01/15/world/middleeast/uk-ban-hizb-ut-tahrir-terror.html", - "pubDate": "Tue, 16 Jan 2024 13:42:27 +0000", - "dc:creator": "Megan Specia", - "content": "The government said it would designate the international Islamist political group a terrorist organization, citing what it said was Hizb ut-Tahrir\u2019s praise for the Oct. 7 attack on Israel.", - "contentSnippet": "The government said it would designate the international Islamist political group a terrorist organization, citing what it said was Hizb ut-Tahrir\u2019s praise for the Oct. 7 attack on Israel.", - "guid": "https://www.nytimes.com/2024/01/15/world/middleeast/uk-ban-hizb-ut-tahrir-terror.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hizb ut-Tahrir", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cameron, David", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Blair, Tony", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Cleverly, James", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Tugendhat, Tom", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-16T13:42:27.000Z" - }, - { - "creator": "Alissa J. Rubin", - "title": "Iran Hits Iraq and Syria With Missiles, Citing Terrorist Attack", - "link": "https://www.nytimes.com/2024/01/15/world/middleeast/iran-iraq-syria-attack.html", - "pubDate": "Tue, 16 Jan 2024 13:31:49 +0000", - "dc:creator": "Alissa J. Rubin", - "content": "Explosions shook Erbil, a city in northern Iraq, and at least four civilians were killed, local officials said. Syrian targets were also hit, Iran\u2019s Revolutionary Guards said.", - "contentSnippet": "Explosions shook Erbil, a city in northern Iraq, and at least four civilians were killed, local officials said. Syrian targets were also hit, Iran\u2019s Revolutionary Guards said.", - "guid": "https://www.nytimes.com/2024/01/15/world/middleeast/iran-iraq-syria-attack.html", - "categories": [ - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Islamic Revolutionary Guards Corps", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Erbil (Iraq)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iraq", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Syria", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kurdistan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Islamic State in Iraq and Syria (ISIS)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-16T13:31:49.000Z" - }, - { - "creator": "Choe Sang-Hun", - "title": "\u200bNorth Korea Says It No Longer Wants to Reunify With South Korea", - "link": "https://www.nytimes.com/2024/01/16/world/asia/north-korea-reunification-policy.html", - "pubDate": "Tue, 16 Jan 2024 09:23:16 +0000", - "dc:creator": "Choe Sang-Hun", - "content": "Abandoning the longtime goal, however unlikely, Kim Jong-un, the North\u2019s leader, instead threatened to subjugate South Korea in war.", - "contentSnippet": "Abandoning the longtime goal, however unlikely, Kim Jong-un, the North\u2019s leader, instead threatened to subjugate South Korea in war.", - "guid": "https://www.nytimes.com/2024/01/16/world/asia/north-korea-reunification-policy.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Korean War", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kim Jong-un", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "North Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Yoon Suk-yeol", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-16T09:23:16.000Z" - }, - { - "creator": "Matthew Mpoke Bigg, Vivek Shankar and Thomas Fuller", - "title": "Houthis Attack More Ships in Red Sea After U.S.-Led Strikes in Yemen", - "link": "https://www.nytimes.com/2024/01/15/world/middleeast/houthis-ships-red-sea.html", - "pubDate": "Tue, 16 Jan 2024 05:27:54 +0000", - "dc:creator": "Matthew Mpoke Bigg, Vivek Shankar and Thomas Fuller", - "content": "The Iranian-backed militants launched a fresh round of attacks days after their military sites were hit by U.S. and British forces.", - "contentSnippet": "The Iranian-backed militants launched a fresh round of attacks days after their military sites were hit by U.S. and British forces.", - "guid": "https://www.nytimes.com/2024/01/15/world/middleeast/houthis-ships-red-sea.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Yemen", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ships and Shipping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Red Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Suez Canal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freight (Cargo)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sunak, Rishi (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gallant, Yoav", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-16T05:27:54.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Tuesday Briefing", - "link": "https://www.nytimes.com/2024/01/16/briefing/houthis-attacks-trump-emmys.html", - "pubDate": "Tue, 16 Jan 2024 05:16:37 +0000", - "dc:creator": "Natasha Frost", - "content": "A Houthi attack on a U.S.-owned ship.", - "contentSnippet": "A Houthi attack on a U.S.-owned ship.", - "guid": "https://www.nytimes.com/2024/01/16/briefing/houthis-attacks-trump-emmys.html", - "isoDate": "2024-01-16T05:16:37.000Z" - }, - { - "creator": "Amelia Nierenberg", - "title": "Tuesday Briefing: Houthis Attack a U.S. Ship", - "link": "https://www.nytimes.com/2024/01/15/world/asia/houthis-missiles-us-ship-taiwan-asia.html", - "pubDate": "Mon, 15 Jan 2024 20:52:49 +0000", - "dc:creator": "Amelia Nierenberg", - "content": "Also, the Iowa caucuses and Indigenous tourism.", - "contentSnippet": "Also, the Iowa caucuses and Indigenous tourism.", - "guid": "https://www.nytimes.com/2024/01/15/world/asia/houthis-missiles-us-ship-taiwan-asia.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-15T20:52:49.000Z" - }, - { - "creator": "Stanley Reed", - "title": "Britain\u2019s Largest Steel Mill to Become Greener, at a Cost of Jobs", - "link": "https://www.nytimes.com/2024/01/19/business/tata-steel-britain-job-cuts.html", - "pubDate": "Fri, 19 Jan 2024 15:25:21 +0000", - "dc:creator": "Stanley Reed", - "content": "Tata Steel said it would replace blast furnaces with an electric furnace, a move that will cut emissions but also as many as 2,800 jobs.", - "contentSnippet": "Tata Steel said it would replace blast furnaces with an electric furnace, a move that will cut emissions but also as many as 2,800 jobs.", - "guid": "https://www.nytimes.com/2024/01/19/business/tata-steel-britain-job-cuts.html", - "categories": [ - { - "_": "Steel and Iron", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Labor and Jobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Port Talbot Steelworks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Tata Steel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Wales", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T15:25:21.000Z" - }, - { - "creator": "The New York Times", - "title": "Widening Mideast Crisis: Frustration Grows in Israel Over Fate of Gaza Hostages", - "link": "https://www.nytimes.com/live/2024/01/19/world/israel-hamas-news", - "pubDate": "Fri, 19 Jan 2024 15:18:02 +0000", - "dc:creator": "The New York Times", - "content": "Protesters in Tel Aviv demanded urgent action to free hostages, after a war cabinet minister said Israel should seek a longer cease-fire with Hamas to allow the captives to be released.", - "contentSnippet": "Protesters in Tel Aviv demanded urgent action to free hostages, after a war cabinet minister said Israel should seek a longer cease-fire with Hamas to allow the captives to be released.", - "guid": "https://www.nytimes.com/live/2024/01/19/world/israel-hamas-news", - "isoDate": "2024-01-19T15:18:02.000Z" - }, - { - "creator": "Aaron Boxerman", - "title": "Netanyahu Rebuffs U.S. Calls to Start Working Toward Palestinian Statehood", - "link": "https://www.nytimes.com/2024/01/18/world/middleeast/netanyahu-palestinian-state-israel-gaza-war.html", - "pubDate": "Fri, 19 Jan 2024 15:12:29 +0000", - "dc:creator": "Aaron Boxerman", - "content": "The Biden administration and the Israeli government diverge sharply over how Gaza should be governed when the war ends.", - "contentSnippet": "The Biden administration and the Israeli government diverge sharply over how Gaza should be governed when the war ends.", - "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/netanyahu-palestinian-state-israel-gaza-war.html", - "categories": [ - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "West Bank", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinian Authority", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-19T15:12:29.000Z" - }, - { - "creator": "Isabella Kwai", - "title": "London\u2019s Highgate Cemetery Is Nearly Full. Can It Reuse Old Graves?", - "link": "https://www.nytimes.com/2024/01/19/world/europe/highgate-cemetery-karl-marx.html", - "pubDate": "Fri, 19 Jan 2024 15:11:27 +0000", - "dc:creator": "Isabella Kwai", - "content": "To lie in the vicinity of Karl Marx is competitive, with graves running upward of $31,000. The cemetery is trying to add more space.", - "contentSnippet": "To lie in the vicinity of Karl Marx is competitive, with graves running upward of $31,000. The cemetery is trying to add more space.", - "guid": "https://www.nytimes.com/2024/01/19/world/europe/highgate-cemetery-karl-marx.html", - "categories": [ - { - "_": "Cemeteries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Historic Buildings and Sites", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Highgate Cemetery (London, England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "England", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T15:11:27.000Z" - }, - { - "creator": "Declan Walsh", - "title": "Fresh From Battles Won With U.A.E. Arms, Sudanese General Takes Victory Lap", - "link": "https://www.nytimes.com/2024/01/19/world/africa/mohamed-hamdan-sudan-emirates.html", - "pubDate": "Fri, 19 Jan 2024 14:54:14 +0000", - "dc:creator": "Declan Walsh", - "content": "Lt. Gen. Mohamed Hamdan was greeted by African leaders as if he had already won Sudan\u2019s civil war. His forces have secretly been armed by the United Arab Emirates, an as-yet unpublished U.N. report found.", - "contentSnippet": "Lt. Gen. Mohamed Hamdan was greeted by African leaders as if he had already won Sudan\u2019s civil war. His forces have secretly been armed by the United Arab Emirates, an as-yet unpublished U.N. report found.", - "guid": "https://www.nytimes.com/2024/01/19/world/africa/mohamed-hamdan-sudan-emirates.html", - "categories": [ - { - "_": "Sudan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamdan, Mohamed (Hemeti)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United Arab Emirates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Rapid Support Forces (Sudan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Darfur (Sudan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "al-Burhan, Abdel Fattah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Harris, Kamala D", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "International Federation of Red Cross and Red Crescent Societies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Perriello, Tom", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-19T14:54:14.000Z" - }, - { - "creator": "Carol Rosenberg", - "title": "Families to Testify at Guant\u00e1namo Bay About Loved Ones Lost to Terror", - "link": "https://www.nytimes.com/2024/01/19/us/politics/guantanamo-bay-bali-bombing.html", - "pubDate": "Fri, 19 Jan 2024 14:50:01 +0000", - "dc:creator": "Carol Rosenberg", - "content": "Relatives of victims of the 2002 attack are expected to describe their loss to a U.S. military jury sentencing two Malaysian prisoners.", - "contentSnippet": "Relatives of victims of the 2002 attack are expected to describe their loss to a U.S. military jury sentencing two Malaysian prisoners.", - "guid": "https://www.nytimes.com/2024/01/19/us/politics/guantanamo-bay-bali-bombing.html", - "categories": [ - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "September 11 (2001)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Al Qaeda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Jemaah Islamiyah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bali (Indonesia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T14:50:01.000Z" - }, - { - "creator": "Cassandra Vinograd", - "title": "Why Iran Is the Common Link in Conflicts From Gaza to Pakistan", - "link": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-conflict-gaza-pakistan-hezbollah.html", - "pubDate": "Fri, 19 Jan 2024 14:33:12 +0000", - "dc:creator": "Cassandra Vinograd", - "content": "Iran\u2019s long history of building up proxy forces that fight its enemies around the region, as well as its conflicts with separatist and terrorist groups, have played into a spate of recent conflicts.", - "contentSnippet": "Iran\u2019s long history of building up proxy forces that fight its enemies around the region, as well as its conflicts with separatist and terrorist groups, have played into a spate of recent conflicts.", - "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-conflict-gaza-pakistan-hezbollah.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iraq", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Lebanon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pakistan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Yemen", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Red Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Jundallah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T14:33:12.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Ukraine Targets Russian Oil Plants, Aiming to Disrupt Military Operations", - "link": "https://www.nytimes.com/2024/01/19/world/europe/ukraine-russia-oil-drone-attack.html", - "pubDate": "Fri, 19 Jan 2024 14:18:48 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "Kyiv hit an oil depot on Friday, the latest in recent attacks on such facilities as it seeks to inflict damage away from the largely deadlocked front line.", - "contentSnippet": "Kyiv hit an oil depot on Friday, the latest in recent attacks on such facilities as it seeks to inflict damage away from the largely deadlocked front line.", - "guid": "https://www.nytimes.com/2024/01/19/world/europe/ukraine-russia-oil-drone-attack.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bryansk (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Krasnodar (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "St Petersburg (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T14:18:48.000Z" - }, - { - "creator": "Safak Timur", - "title": "Israeli Soccer Player in Turkey Dismissed Over Gaza War Post", - "link": "https://www.nytimes.com/2024/01/19/world/middleeast/israel-soccer-turkey-gaza-eden-karzev.html", - "pubDate": "Fri, 19 Jan 2024 14:14:59 +0000", - "dc:creator": "Safak Timur", - "content": "The suspension of Eden Karzev comes after another Israeli player in Turkey was sent back for displaying a pro-Israel message after scoring in a match this week.", - "contentSnippet": "The suspension of Eden Karzev comes after another Israeli player in Turkey was sent back for displaying a pro-Israel message after scoring in a match this week.", - "guid": "https://www.nytimes.com/2024/01/19/world/middleeast/israel-soccer-turkey-gaza-eden-karzev.html", - "categories": [ - { - "_": "Turkey", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Soccer", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Athletics and Sports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-19T14:14:59.000Z" - }, - { - "creator": "Sui-Lee Wee", - "title": "Thailand Doles Out Longest-Ever Sentence for Criticizing Royalty", - "link": "https://www.nytimes.com/2024/01/19/world/asia/thailand-sentence-royalty-defamation.html", - "pubDate": "Fri, 19 Jan 2024 12:08:09 +0000", - "dc:creator": "Sui-Lee Wee", - "content": "An activist received 50 years in prison for sharing TV and film content on social media that violated the country\u2019s law against defaming its monarchy.", - "contentSnippet": "An activist received 50 years in prison for sharing TV and film content on social media that violated the country\u2019s law against defaming its monarchy.", - "guid": "https://www.nytimes.com/2024/01/19/world/asia/thailand-sentence-royalty-defamation.html", - "categories": [ - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Human Rights and Human Rights Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Lawyers for Human Rights", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Thailand", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T12:08:09.000Z" - }, - { - "creator": "Amanda Taub", - "title": "What Might Happen Next in the Genocide Case Against Israel", - "link": "https://www.nytimes.com/2024/01/19/world/europe/israel-south-africa-genocide-icj.html", - "pubDate": "Fri, 19 Jan 2024 12:01:18 +0000", - "dc:creator": "Amanda Taub", - "content": "Exploring the role of the International Court of Justice in human rights.", - "contentSnippet": "Exploring the role of the International Court of Justice in human rights.", - "guid": "https://www.nytimes.com/2024/01/19/world/europe/israel-south-africa-genocide-icj.html", - "categories": [ - { - "_": "internal-sub-only-nl", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Human Rights and Human Rights Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Treaties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Courts and the Judiciary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Court of Justice (UN)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "South Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T12:01:18.000Z" - }, - { - "creator": "Motoko Rich", - "title": "Japanese Talk Show Host Blazed Trails for Her Gender, and Now, for Her Longevity", - "link": "https://www.nytimes.com/2024/01/19/world/asia/tetsuko-kuroyanagi-japan-television.html", - "pubDate": "Fri, 19 Jan 2024 10:01:40 +0000", - "dc:creator": "Motoko Rich", - "content": "Tetsuko Kuroyanagi has been one of Japan\u2019s best-known entertainers for seven decades. At 90, she\u2019s still going strong.", - "contentSnippet": "Tetsuko Kuroyanagi has been one of Japan\u2019s best-known entertainers for seven decades. At 90, she\u2019s still going strong.", - "guid": "https://www.nytimes.com/2024/01/19/world/asia/tetsuko-kuroyanagi-japan-television.html", - "categories": [ - { - "_": "Tokyo (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Women and Girls", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Age, Chronological", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Television", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Tetsuko Kuroyanagi", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-19T10:01:40.000Z" - }, - { - "creator": "Apoorva Mandavilli and Esther Ruth Mbabazi", - "title": "With Harsh Anti-L.G.B.T.Q. Law, Uganda Risks a Health Crisis", - "link": "https://www.nytimes.com/2024/01/19/health/uganda-lgbtq-hiv.html", - "pubDate": "Fri, 19 Jan 2024 10:01:13 +0000", - "dc:creator": "Apoorva Mandavilli and Esther Ruth Mbabazi", - "content": "The country had made great progress against H.I.V. Now terrified patients have fled clinics, and experts fear a resurgence.", - "contentSnippet": "The country had made great progress against H.I.V. Now terrified patients have fled clinics, and experts fear a resurgence.", - "guid": "https://www.nytimes.com/2024/01/19/health/uganda-lgbtq-hiv.html", - "categories": [ - { - "_": "Discrimination", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Acquired Immune Deficiency Syndrome", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Homosexuality and Bisexuality", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Human Rights and Human Rights Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hate Crimes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sexually Transmitted Diseases", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Transgender", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Evictions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bribery and Kickbacks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Africa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Uganda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T10:01:13.000Z" - }, - { - "creator": "Christina Goldbaum and Salman Masood", - "title": "In No Position to Fight a War, Pakistan Seeks an Off-Ramp With Iran", - "link": "https://www.nytimes.com/2024/01/19/world/asia/pakistan-iran.html", - "pubDate": "Fri, 19 Jan 2024 09:56:31 +0000", - "dc:creator": "Christina Goldbaum and Salman Masood", - "content": "For two years, Pakistan has struggled with economic and political crises, an increase in militant attacks and souring relations with another neighbor, Afghanistan.", - "contentSnippet": "For two years, Pakistan has struggled with economic and political crises, an increase in militant attacks and souring relations with another neighbor, Afghanistan.", - "guid": "https://www.nytimes.com/2024/01/19/world/asia/pakistan-iran.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pakistan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Khan, Imran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-19T09:56:31.000Z" - }, - { - "creator": "Roger Cohen", - "title": "Macron Shifts Rightward, and Charts a New Course", - "link": "https://www.nytimes.com/2024/01/19/world/europe/france-macron-speech.html", - "pubDate": "Fri, 19 Jan 2024 09:13:52 +0000", - "dc:creator": "Roger Cohen", - "content": "With a decisive turn toward youth and conservative ideas, the French president sets a path for his reshuffled government.", - "contentSnippet": "With a decisive turn toward youth and conservative ideas, the French president sets a path for his reshuffled government.", - "guid": "https://www.nytimes.com/2024/01/19/world/europe/france-macron-speech.html", - "categories": [ - { - "_": "Macron, Emmanuel (1977- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Right-Wing Extremism and Alt-Right", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Youth", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Speeches and Statements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Le Pen, Marine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Attal, Gabriel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T09:13:52.000Z" - }, - { - "creator": "Isabel Kershner and Avishag Shaar-Yashuv", - "title": "Israeli Women Fight on Front Line in Gaza, a First", - "link": "https://www.nytimes.com/2024/01/19/world/middleeast/israel-gaza-women-soldiers.html", - "pubDate": "Fri, 19 Jan 2024 07:06:16 +0000", - "dc:creator": "Isabel Kershner and Avishag Shaar-Yashuv", - "content": "After a long struggle for acceptance, Israel\u2019s female combat soldiers are pushing new boundaries after rushing into battle on Oct. 7.", - "contentSnippet": "After a long struggle for acceptance, Israel\u2019s female combat soldiers are pushing new boundaries after rushing into battle on Oct. 7.", - "guid": "https://www.nytimes.com/2024/01/19/world/middleeast/israel-gaza-women-soldiers.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Women and Girls", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T07:06:16.000Z" - }, - { - "creator": "Natasha Frost", - "title": "Friday Briefing", - "link": "https://www.nytimes.com/2024/01/19/briefing/palestinian-state-german-economy.html", - "pubDate": "Fri, 19 Jan 2024 05:18:53 +0000", - "dc:creator": "Natasha Frost", - "content": "Here\u2019s what you need to know.", - "contentSnippet": "Here\u2019s what you need to know.", - "guid": "https://www.nytimes.com/2024/01/19/briefing/palestinian-state-german-economy.html", - "isoDate": "2024-01-19T05:18:53.000Z" - }, - { - "creator": "Jim Tankersley", - "title": "At Davos, War Is on the Agenda, but the Focus Is on A.I. and Elections", - "link": "https://www.nytimes.com/2024/01/18/business/ukraine-gaza-war-davos.html", - "pubDate": "Fri, 19 Jan 2024 04:16:36 +0000", - "dc:creator": "Jim Tankersley", - "content": "The leaders and executives gathering at the World Economic Forum are obsessed with elections and artificial intelligence, not Ukraine or Gaza.", - "contentSnippet": "The leaders and executives gathering at the World Economic Forum are obsessed with elections and artificial intelligence, not Ukraine or Gaza.", - "guid": "https://www.nytimes.com/2024/01/18/business/ukraine-gaza-war-davos.html", - "categories": [ - { - "_": "World Economic Forum", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Davos (Switzerland)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Elections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Kidnapping and Hostages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-19T04:16:36.000Z" - }, - { - "creator": "Amelia Nierenberg", - "title": "Friday Briefing: Pakistan Retaliates With Strikes in Iran", - "link": "https://www.nytimes.com/2024/01/18/briefing/pakistan-iran.html", - "pubDate": "Thu, 18 Jan 2024 21:17:32 +0000", - "dc:creator": "Amelia Nierenberg", - "content": "Also, corruption accusations in Singapore.", - "contentSnippet": "Also, corruption accusations in Singapore.", - "guid": "https://www.nytimes.com/2024/01/18/briefing/pakistan-iran.html", - "isoDate": "2024-01-18T21:17:32.000Z" - }, - { - "creator": "Amelia Nierenberg", - "title": "Friday Briefing: Pakistan Retaliates With Strikes in Iran", - "link": "https://www.nytimes.com/2024/01/18/briefing/iran-pakistan-covid-singapore.html", - "pubDate": "Thu, 18 Jan 2024 21:15:34 +0000", - "dc:creator": "Amelia Nierenberg", - "content": "Also, corruption accusations in Singapore and travel predictions", - "contentSnippet": "Also, corruption accusations in Singapore and travel predictions", - "guid": "https://www.nytimes.com/2024/01/18/briefing/iran-pakistan-covid-singapore.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pakistan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Coronavirus (2019-nCoV)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Singapore", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-18T21:15:34.000Z" - }, - { - "creator": "Vivian Nereim", - "title": "Houthis\u2019 Leader Says a Clash With the U.S. Will Strengthen Militia Group", - "link": "https://www.nytimes.com/2024/01/18/world/middleeast/houthis-yemen-us.html", - "pubDate": "Thu, 18 Jan 2024 19:42:04 +0000", - "dc:creator": "Vivian Nereim", - "content": "Abdul-Malik al-Houthi said in a televised speech that the Houthis had always emerged stronger from confrontations with their enemies.", - "contentSnippet": "Abdul-Malik al-Houthi said in a televised speech that the Houthis had always emerged stronger from confrontations with their enemies.", - "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/houthis-yemen-us.html", - "categories": [ - { - "_": "Houthi, Abdel Malik al- (1982- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Yemen", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Red Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ships and Shipping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-18T19:42:04.000Z" - }, - { - "creator": "Egill Bjarnason and Emma Bubola", - "title": "Iceland Scrambles to Shelter Residents Made Homeless by Volcanic Eruption", - "link": "https://www.nytimes.com/2024/01/18/world/europe/iceland-volcano-housing.html", - "pubDate": "Thu, 18 Jan 2024 17:38:50 +0000", - "dc:creator": "Egill Bjarnason and Emma Bubola", - "content": "In a country of fewer than 400,000, finding places for 3,700 residents is complicated by a tough housing market.", - "contentSnippet": "In a country of fewer than 400,000, finding places for 3,700 residents is complicated by a tough housing market.", - "guid": "https://www.nytimes.com/2024/01/18/world/europe/iceland-volcano-housing.html", - "categories": [ - { - "_": "Evacuations and Evacuees", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Volcanoes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Banking and Financial Institutions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Iceland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Grindavik (Iceland)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Jakobsdottir, Katrin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Real Estate and Housing (Residential)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Renting and Leasing (Real Estate)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Reykjavik (Iceland)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-18T17:38:50.000Z" - }, - { - "creator": "Ali Watkins", - "title": "Arnold Schwarzenegger Detained Over Pricey Watch at Munich Airport", - "link": "https://www.nytimes.com/2024/01/18/world/europe/arnold-schwarzenegger-detained-munich-watch.html", - "pubDate": "Thu, 18 Jan 2024 17:22:32 +0000", - "dc:creator": "Ali Watkins", - "content": "He\u2019ll be back \u2026 to face criminal tax charges.", - "contentSnippet": "He\u2019ll be back \u2026 to face criminal tax charges.", - "guid": "https://www.nytimes.com/2024/01/18/world/europe/arnold-schwarzenegger-detained-munich-watch.html", - "categories": [ - { - "_": "Schwarzenegger, Arnold", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Munich (Germany)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Customs (Tariff)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Audemars Piguet Group", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-18T17:22:32.000Z" - }, - { - "creator": "Anatoly Kurmanaev", - "title": "Protests in Russia Put Spotlight on Wartime Ethnic Grievances", - "link": "https://www.nytimes.com/2024/01/18/world/europe/protests-russia-bashkortostan.html", - "pubDate": "Thu, 18 Jan 2024 16:37:40 +0000", - "dc:creator": "Anatoly Kurmanaev", - "content": "The trial and conviction of an activist in the Ural Mountains region sparked one of the biggest outbreaks of social unrest since the start of the war.", - "contentSnippet": "The trial and conviction of an activist in the Ural Mountains region sparked one of the biggest outbreaks of social unrest since the start of the war.", - "guid": "https://www.nytimes.com/2024/01/18/world/europe/protests-russia-bashkortostan.html", - "categories": [ - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Minorities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Language", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ural Mountains (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-18T16:37:40.000Z" - }, - { - "creator": "Katie Rogers", - "title": "Biden Keeps Australia\u2019s Dinner Low-Key at a Moment of Global Turmoil", - "link": "https://www.nytimes.com/2023/10/25/us/politics/biden-state-dinner-australia.html", - "pubDate": "Fri, 27 Oct 2023 12:49:32 +0000", - "dc:creator": "Katie Rogers", - "content": "Before the state dinner was over, President Biden had stepped out for a briefing on a mass shooting in Maine and to call lawmakers in the state. He left shortly after 10 p.m.", - "contentSnippet": "Before the state dinner was over, President Biden had stepped out for a briefing on a mass shooting in Maine and to call lawmakers in the state. He left shortly after 10 p.m.", - "guid": "https://www.nytimes.com/2023/10/25/us/politics/biden-state-dinner-australia.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "B-52s (Music Group)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Albanese, Anthony (1963- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Jill Tracy Jacobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Australia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T12:49:32.000Z" - }, - { - "creator": "The New York Times", - "title": "Israel-Hamas War: U.S. Retaliates Against Iran in Syria, Trying to Ward Off More Attacks", - "link": "https://www.nytimes.com/live/2023/10/27/world/israel-hamas-war-gaza-news", - "pubDate": "Fri, 27 Oct 2023 12:36:41 +0000", - "dc:creator": "The New York Times", - "content": "The Biden administration has increased military resources in the Middle East amid fears of a widening war. As the humanitarian crisis spirals in Gaza, the U.N. General Assembly is set to vote on calling for a cease-fire.", - "contentSnippet": "The Biden administration has increased military resources in the Middle East amid fears of a widening war. As the humanitarian crisis spirals in Gaza, the U.N. General Assembly is set to vote on calling for a cease-fire.", - "guid": "https://www.nytimes.com/live/2023/10/27/world/israel-hamas-war-gaza-news", - "isoDate": "2023-10-27T12:36:41.000Z" - }, - { - "creator": "Steven Lee Myers", - "title": "U.S. Tries New Tack on Russian Disinformation: Pre-Empting It", - "link": "https://www.nytimes.com/2023/10/26/technology/russian-disinformation-us-state-department-campaign.html", - "pubDate": "Fri, 27 Oct 2023 12:21:44 +0000", - "dc:creator": "Steven Lee Myers", - "content": "The State Department\u2019s Global Engagement Center is taking the unusual step of disclosing a covert Russian operation when it is barely off the ground.", - "contentSnippet": "The State Department\u2019s Global Engagement Center is taking the unusual step of disclosing a covert Russian operation when it is barely off the ground.", - "guid": "https://www.nytimes.com/2023/10/26/technology/russian-disinformation-us-state-department-campaign.html", - "categories": [ - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "North Atlantic Treaty Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "State Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Rubin, James P", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-27T12:21:44.000Z" - }, - { - "creator": "Chris Buckley and Keith Bradsher", - "title": "Li Keqiang, Former Chinese Premier, Dies of Heart Attack at 68", - "link": "https://www.nytimes.com/2023/10/26/world/asia/li-keqiang-china-dead.html", - "pubDate": "Fri, 27 Oct 2023 11:43:37 +0000", - "dc:creator": "Chris Buckley and Keith Bradsher", - "content": "Mr. Li, who retired in March, was muscled out of the premier\u2019s usual policymaking roles by Mr. Xi. Chinese citizens expressed shock at his death, from a heart attack.", - "contentSnippet": "Mr. Li, who retired in March, was muscled out of the premier\u2019s usual policymaking roles by Mr. Xi. Chinese citizens expressed shock at his death, from a heart attack.", - "guid": "https://www.nytimes.com/2023/10/26/world/asia/li-keqiang-china-dead.html", - "categories": [ - { - "_": "Communist Party of China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Li Keqiang", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T11:43:37.000Z" - }, - { - "creator": "Monika Pronczuk", - "title": "What to Know About UNRWA, the Largest Aid Organization in Gaza", - "link": "https://www.nytimes.com/2023/10/26/world/middleeast/unrwa-gaza-aid.html", - "pubDate": "Fri, 27 Oct 2023 11:26:46 +0000", - "dc:creator": "Monika Pronczuk", - "content": "Established to provide temporary relief for Palestinians who fled or were expelled from their homes during the 1948 Arab-Israeli war, the agency now mainly provides services and funding for those registered as Palestinian refugees across the Mideast.", - "contentSnippet": "Established to provide temporary relief for Palestinians who fled or were expelled from their homes during the 1948 Arab-Israeli war, the agency now mainly provides services and funding for those registered as Palestinian refugees across the Mideast.", - "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/unrwa-gaza-aid.html", - "categories": [ - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations Relief and Works Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T11:26:46.000Z" - }, - { - "creator": "Choe Sang-Hun and Chang W. Lee", - "title": "One Year After the Itaewon Crowd Crush", - "link": "https://www.nytimes.com/2023/10/27/world/asia/seoul-itaewon-crowd-crush.html", - "pubDate": "Fri, 27 Oct 2023 10:32:17 +0000", - "dc:creator": "Choe Sang-Hun and Chang W. Lee", - "content": "Survivors of the Itaewon disaster and relatives of victims continue to wrestle with unanswered questions and grief as they push for official accountability.", - "contentSnippet": "Survivors of the Itaewon disaster and relatives of victims continue to wrestle with unanswered questions and grief as they push for official accountability.", - "guid": "https://www.nytimes.com/2023/10/27/world/asia/seoul-itaewon-crowd-crush.html", - "categories": [ - { - "_": "Seoul Halloween Stampede (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Grief (Emotion)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Yoon Suk-yeol", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-27T10:32:17.000Z" - }, - { - "creator": "Ivan Nechepurenko", - "title": "Hamas Leaders Arrive in Russia as the Kremlin Attempts to Showcase Clout", - "link": "https://www.nytimes.com/2023/10/26/world/middleeast/hamas-russia-moscow.html", - "pubDate": "Fri, 27 Oct 2023 09:45:29 +0000", - "dc:creator": "Ivan Nechepurenko", - "content": "The meetings with high-ranking members of the group that attacked Israel underscored how Russia is trying to present itself as an alternative platform for possible mediation.", - "contentSnippet": "The meetings with high-ranking members of the group that attacked Israel underscored how Russia is trying to present itself as an alternative platform for possible mediation.", - "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/hamas-russia-moscow.html", - "categories": [ - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Meshaal, Khaled (1956- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T09:45:29.000Z" - }, - { - "creator": "Patrick Kingsley and Ronen Bergman", - "title": "Disagreements Among Israeli Leaders Delay Gaza Ground Invasion", - "link": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-gaza-invasion-delay.html", - "pubDate": "Fri, 27 Oct 2023 09:19:27 +0000", - "dc:creator": "Patrick Kingsley and Ronen Bergman", - "content": "In the 20 days since Hamas attacked, Israel\u2019s Air Force has pounded Gaza and its troops have gotten into position. But its leaders disagree about what to do next.", - "contentSnippet": "In the 20 days since Hamas attacked, Israel\u2019s Air Force has pounded Gaza and its troops have gotten into position. But its leaders disagree about what to do next.", - "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-gaza-invasion-delay.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Likud Party (Israel)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T09:19:27.000Z" - }, - { - "creator": "Reid J. Epstein and Anjali Huynh", - "title": "Biden Faces Backlash From Party\u2019s Left Wing on Israel", - "link": "https://www.nytimes.com/2023/10/27/us/politics/biden-democrats-israel-2024.html", - "pubDate": "Fri, 27 Oct 2023 09:04:22 +0000", - "dc:creator": "Reid J. Epstein and Anjali Huynh", - "content": "As a raw divide over the war ripples through liberal America, a coalition of young voters and people of color is breaking with the president, raising new questions about his strength entering 2024.", - "contentSnippet": "As a raw divide over the war ripples through liberal America, a coalition of young voters and people of color is breaking with the president, raising new questions about his strength entering 2024.", - "guid": "https://www.nytimes.com/2023/10/27/us/politics/biden-democrats-israel-2024.html", - "categories": [ - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Democratic Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Presidential Election of 2024", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Youth", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Minorities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Organized Labor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T09:04:22.000Z" - }, - { - "creator": "Aida Alami", - "title": "Former L\u2019Oreal Scientist\u2019s Paris Salons Specialize in Curly Hair, Neglected in France", - "link": "https://www.nytimes.com/2023/10/27/world/europe/france-inclusive-hair-salons.html", - "pubDate": "Fri, 27 Oct 2023 09:03:56 +0000", - "dc:creator": "Aida Alami", - "content": "With a Ph.D. in chemistry and inspired by her daughter, Aude Livoreil-Djampou is trying to address the dearth of salon options in France for people with coiled or curly hair.", - "contentSnippet": "With a Ph.D. in chemistry and inspired by her daughter, Aude Livoreil-Djampou is trying to address the dearth of salon options in France for people with coiled or curly hair.", - "guid": "https://www.nytimes.com/2023/10/27/world/europe/france-inclusive-hair-salons.html", - "categories": [ - { - "_": "Paris (France)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Beauty Salons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hair", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Women and Girls", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "L'Oreal SA", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Aude Livoreil-Djampou", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Black People", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Discrimination", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T09:03:56.000Z" - }, - { - "creator": "Carlotta Gall and Oleksandr Chubko", - "title": "In Rare Protest, Ukrainian Families Press for News on Missing", - "link": "https://www.nytimes.com/2023/10/27/world/europe/ukraine-missing-soldiers-war.html", - "pubDate": "Fri, 27 Oct 2023 09:03:45 +0000", - "dc:creator": "Carlotta Gall and Oleksandr Chubko", - "content": "In a rare show of public criticism in wartime, families of missing Ukrainian soldiers are pressing the government for information on their status.", - "contentSnippet": "In a rare show of public criticism in wartime, families of missing Ukrainian soldiers are pressing the government for information on their status.", - "guid": "https://www.nytimes.com/2023/10/27/world/europe/ukraine-missing-soldiers-war.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missing in Action", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bilohorivka (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kyiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T09:03:45.000Z" - }, - { - "creator": "Abdi Latif Dahir", - "title": "Students on the Run, Schools Taken by Troops and a Generation\u2019s Catastrophe", - "link": "https://www.nytimes.com/2023/10/27/world/africa/sudan-war-education-children.html", - "pubDate": "Fri, 27 Oct 2023 09:03:15 +0000", - "dc:creator": "Abdi Latif Dahir", - "content": "With an estimated 19 million children out of school for months because of war, Sudan is on the verge of becoming \u201cthe worst education crisis in the world,\u201d U.N. officials say.", - "contentSnippet": "With an estimated 19 million children out of school for months because of war, Sudan is on the verge of becoming \u201cthe worst education crisis in the world,\u201d U.N. officials say.", - "guid": "https://www.nytimes.com/2023/10/27/world/africa/sudan-war-education-children.html", - "categories": [ - { - "_": "Sudan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Darfur (Sudan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Education", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Khartoum (Sudan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "al-Burhan, Abdel Fattah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hamdan, Mohamed (Hemeti)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Chad", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Omdurman (Sudan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "El Geneina (Sudan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T09:03:15.000Z" - }, - { - "creator": "Yan Zhuang", - "title": "How Are You Preparing for a Summer of Fires?", - "link": "https://www.nytimes.com/2023/10/27/world/australia/how-are-you-preparing-for-a-summer-of-fires.html", - "pubDate": "Fri, 27 Oct 2023 08:56:02 +0000", - "dc:creator": "Yan Zhuang", - "content": "As El Ni\u00f1o arrives, heralding dry weather, it feels like the whole country is on edge. We\u2019d like to hear from readers in Australia.", - "contentSnippet": "As El Ni\u00f1o arrives, heralding dry weather, it feels like the whole country is on edge. We\u2019d like to hear from readers in Australia.", - "guid": "https://www.nytimes.com/2023/10/27/world/australia/how-are-you-preparing-for-a-summer-of-fires.html", - "categories": [ - { - "_": "Australia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Wildfires", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T08:56:02.000Z" - }, - { - "creator": "Mike Ives", - "title": "Chinese Jet Flies Within 10 Feet of B-52, U.S. Says", - "link": "https://www.nytimes.com/2023/10/27/world/asia/china-jet-us-b52-bomber.html", - "pubDate": "Fri, 27 Oct 2023 08:06:04 +0000", - "dc:creator": "Mike Ives", - "content": "The fighter jet neared a B-52 during a maneuver over the South China Sea on Tuesday night, the U.S. military said. China had no immediate response.", - "contentSnippet": "The fighter jet neared a B-52 during a maneuver over the South China Sea on Tuesday night, the U.S. military said. China had no immediate response.", - "guid": "https://www.nytimes.com/2023/10/27/world/asia/china-jet-us-b52-bomber.html", - "categories": [ - { - "_": "Aviation Accidents, Safety and Disasters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Military Aircraft", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States Air Force", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States Indo-Pacific Command", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "South China Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T08:06:04.000Z" - }, - { - "creator": "Jonathan Wolfe", - "title": "Friday Briefing", - "link": "https://www.nytimes.com/2023/10/27/briefing/israel-gaza-war.html", - "pubDate": "Fri, 27 Oct 2023 04:01:03 +0000", - "dc:creator": "Jonathan Wolfe", - "content": "Pressure builds for a pause in Gaza.", - "contentSnippet": "Pressure builds for a pause in Gaza.", - "guid": "https://www.nytimes.com/2023/10/27/briefing/israel-gaza-war.html", - "isoDate": "2023-10-27T04:01:03.000Z" - }, - { - "creator": "Nadav Gavrielov, Matthew Mpoke Bigg, Vivian Yee and Matina Stevis-Gridneff", - "title": "Israeli Tanks Raid Gaza Ahead of Invasion, While Aid Trickles In", - "link": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-gaza-tanks-aid.html", - "pubDate": "Fri, 27 Oct 2023 03:39:49 +0000", - "dc:creator": "Nadav Gavrielov, Matthew Mpoke Bigg, Vivian Yee and Matina Stevis-Gridneff", - "content": "The United States has advised delaying a ground invasion, in part to get more desperately needed aid, which has flowed slowly, into Gaza.", - "contentSnippet": "The United States has advised delaying a ground invasion, in part to get more desperately needed aid, which has flowed slowly, into Gaza.", - "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-gaza-tanks-aid.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T03:39:49.000Z" - }, - { - "creator": "Raja Abdulrahim and Samar Abu Elouf", - "title": "Food and Water Grow Scarce in Gaza Amid Israeli Siege and Strikes", - "link": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-food-water-siege.html", - "pubDate": "Fri, 27 Oct 2023 02:55:52 +0000", - "dc:creator": "Raja Abdulrahim and Samar Abu Elouf", - "content": "Residents wait in line for hours for bread and water, with fights sometimes breaking out. The United Nations has called the situation a humanitarian catastrophe.", - "contentSnippet": "Residents wait in line for hours for bread and water, with fights sometimes breaking out. The United Nations has called the situation a humanitarian catastrophe.", - "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-food-water-siege.html", - "categories": [ - { - "_": "Water", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Water Pollution", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bakeries and Baked Products", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Egypt", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Khan Younis (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Rafah (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T02:55:52.000Z" - }, - { - "creator": "Zolan Kanno-Youngs, Emiliano Rodr\u00edguez Mega and Elda Cant\u00fa", - "title": "After Hurricane Otis, Mexican Officials Confirm At Least 27 Deaths", - "link": "https://www.nytimes.com/2023/10/26/world/americas/hurricane-otis-mexico.html", - "pubDate": "Fri, 27 Oct 2023 02:05:59 +0000", - "dc:creator": "Zolan Kanno-Youngs, Emiliano Rodr\u00edguez Mega and Elda Cant\u00fa", - "content": "The storm was one of the strongest ever to hit the southwest coast, and the Mexican government dispatched thousands of troops to the region.", - "contentSnippet": "The storm was one of the strongest ever to hit the southwest coast, and the Mexican government dispatched thousands of troops to the region.", - "guid": "https://www.nytimes.com/2023/10/26/world/americas/hurricane-otis-mexico.html", - "categories": [ - { - "_": "Hurricane Otis (2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hurricanes and Tropical Storms", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Acapulco (Mexico)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Guerrero (Mexico)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Oaxaca (Mexico)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "vis-video", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T02:05:59.000Z" - }, - { - "creator": "Katie Rogers", - "title": "Jake Sullivan\u2019s \u2018Quieter\u2019 Middle East Comments Did Not Age Well", - "link": "https://www.nytimes.com/2023/10/26/us/politics/jake-sullivan-foreign-affairs-israel-middle-east.html", - "pubDate": "Fri, 27 Oct 2023 01:39:38 +0000", - "dc:creator": "Katie Rogers", - "content": "The national security adviser has drawn criticism for recent public remarks. Biden officials pushed back on the idea that Mr. Sullivan was offering a lasting view on Middle East conflicts.", - "contentSnippet": "The national security adviser has drawn criticism for recent public remarks. Biden officials pushed back on the idea that Mr. Sullivan was offering a lasting view on Middle East conflicts.", - "guid": "https://www.nytimes.com/2023/10/26/us/politics/jake-sullivan-foreign-affairs-israel-middle-east.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Affairs (Magazine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Atlantic Monthly", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Sullivan, Jacob J (1976- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T01:39:38.000Z" - }, - { - "creator": "Vivian Yee", - "title": "Gazans Release Names of 6,747 People They Say Were Killed in Israeli Strikes", - "link": "https://www.nytimes.com/2023/10/26/world/middleeast/gaza-death-toll-israel.html", - "pubDate": "Thu, 26 Oct 2023 23:24:37 +0000", - "dc:creator": "Vivian Yee", - "content": "The detailed list from the Hamas-controlled health ministry \u2014 including ages, genders and ID numbers \u2014 followed President Biden\u2019s comment that he had \u201cno confidence\u201d in its figures.", - "contentSnippet": "The detailed list from the Hamas-controlled health ministry \u2014 including ages, genders and ID numbers \u2014 followed President Biden\u2019s comment that he had \u201cno confidence\u201d in its figures.", - "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/gaza-death-toll-israel.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Al Ahli Arab Hospital (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Khan Younis (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-26T23:24:37.000Z" - }, - { - "creator": "Justin Porter", - "title": "Friday Briefing: Israel Says Tanks Briefly Entered Gaza", - "link": "https://www.nytimes.com/2023/10/26/briefing/hamas-israel-war-us-economy-denmark-immigration.html", - "pubDate": "Thu, 26 Oct 2023 20:50:21 +0000", - "dc:creator": "Justin Porter", - "content": "Plus inspiration in the Rugby World Cup final.", - "contentSnippet": "Plus inspiration in the Rugby World Cup final.", - "guid": "https://www.nytimes.com/2023/10/26/briefing/hamas-israel-war-us-economy-denmark-immigration.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States Economy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-26T20:50:21.000Z" - }, - { - "creator": "Aric Toler, Haley Willis, Riley Mellen, Alexander Cardia, Natalie Reneau, Julian E. Barnes and Christoph Koettl", - "title": "A Close Look at Some Key Evidence in the Gaza Hospital Blast", - "link": "https://www.nytimes.com/2023/10/24/world/middleeast/gaza-hospital-israel-hamas-video.html", - "pubDate": "Thu, 26 Oct 2023 20:02:01 +0000", - "dc:creator": "Aric Toler, Haley Willis, Riley Mellen, Alexander Cardia, Natalie Reneau, Julian E. Barnes and Christoph Koettl", - "content": "A widely cited missile video does not shed light on what happened, a Times analysis concludes.", - "contentSnippet": "A widely cited missile video does not shed light on what happened, a Times analysis concludes.", - "guid": "https://www.nytimes.com/2023/10/24/world/middleeast/gaza-hospital-israel-hamas-video.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Al Ahli Arab Hospital (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hospitals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinian Islamic Jihad", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "your-feed-visual-investigations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "vis-video", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-26T20:02:01.000Z" - }, - { - "creator": "Andrew Higgins", - "title": "Slovakia to Halt Arms Deliveries to Ukraine, as New Leader Promised", - "link": "https://www.nytimes.com/2023/10/26/world/europe/slovakia-weapons-ukraine-war.html", - "pubDate": "Thu, 26 Oct 2023 19:00:22 +0000", - "dc:creator": "Andrew Higgins", - "content": "The newly appointed prime minister, Robert Fico, whose party aligned with pro-Russian forces during the recent election campaign, had promised \u201cnot to send a single cartridge\u201d of ammunition to Kyiv.", - "contentSnippet": "The newly appointed prime minister, Robert Fico, whose party aligned with pro-Russian forces during the recent election campaign, had promised \u201cnot to send a single cartridge\u201d of ammunition to Kyiv.", - "guid": "https://www.nytimes.com/2023/10/26/world/europe/slovakia-weapons-ukraine-war.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fico, Robert", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Slovakia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Orban, Viktor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Smer-Social Democracy (Slovakia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hungary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T19:00:22.000Z" - }, - { - "creator": "Vivian Nereim, Kate Kelly and Ahmed Al Omran", - "title": "Israel-Hamas War Looms Over Saudi Arabia Forum", - "link": "https://www.nytimes.com/2023/10/26/world/middleeast/saudi-arabia-israel-hamas-gaza-war.html", - "pubDate": "Thu, 26 Oct 2023 18:34:52 +0000", - "dc:creator": "Vivian Nereim, Kate Kelly and Ahmed Al Omran", - "content": "The kingdom is embracing business as usual, hosting an investment forum, concerts and even fashion shows. But grief, fear and outrage over Israel\u2019s bombardment of Gaza simmer just below the surface.", - "contentSnippet": "The kingdom is embracing business as usual, hosting an investment forum, concerts and even fashion shows. But grief, fear and outrage over Israel\u2019s bombardment of Gaza simmer just below the surface.", - "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/saudi-arabia-israel-hamas-gaza-war.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Peace Process", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Public Investment Fund (Saudi Arabia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Federation of Association Football (FIFA)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Mohammed bin Salman (1985- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Trump, Donald J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Riyadh (Saudi Arabia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Saudi Arabia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T18:34:52.000Z" - }, - { - "creator": "Sheryl Gay Stolberg", - "title": "Bush\u2019s Institute Issues an Urgent Plea for Congress to Renew His AIDS Program", - "link": "https://www.nytimes.com/2023/10/25/us/politics/bush-pepfar-congress.html", - "pubDate": "Thu, 26 Oct 2023 18:27:15 +0000", - "dc:creator": "Sheryl Gay Stolberg", - "content": "PEPFAR, created by President George W. Bush in 2003 to combat the disease, faces an uncertain future now that its authorizing legislation has lapsed.", - "contentSnippet": "PEPFAR, created by President George W. Bush in 2003 to combat the disease, faces an uncertain future now that its authorizing legislation has lapsed.", - "guid": "https://www.nytimes.com/2023/10/25/us/politics/bush-pepfar-congress.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Acquired Immune Deficiency Syndrome", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Abortion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "President's Emergency Plan for AIDS Relief", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Birx, Deborah L", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bush, George W", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-26T18:27:15.000Z" - }, - { - "creator": "Isabella Kwai", - "title": "Air Canada Apologizes for Questioning a British Lawmaker About His Background", - "link": "https://www.nytimes.com/2023/10/26/world/europe/air-canada-apology-mohammad-yasin.html", - "pubDate": "Thu, 26 Oct 2023 18:24:39 +0000", - "dc:creator": "Isabella Kwai", - "content": "The airline and Canadian immigration officials were accused of singling out the lawmaker, Mohammad Yasin, \u201cbecause his name was Mohammad.\u201d", - "contentSnippet": "The airline and Canadian immigration officials were accused of singling out the lawmaker, Mohammad Yasin, \u201cbecause his name was Mohammad.\u201d", - "guid": "https://www.nytimes.com/2023/10/26/world/europe/air-canada-apology-mohammad-yasin.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Airport Security", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Discrimination", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Canada", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T18:24:39.000Z" - }, - { - "creator": "Adam Goldman and Gal Koplewitz", - "title": "Local Police in Ofakim Defended the Israeli City From Hamas\u2019s Attacks", - "link": "https://www.nytimes.com/2023/10/26/world/europe/israel-ofakim-police-hamas.html", - "pubDate": "Thu, 26 Oct 2023 18:03:49 +0000", - "dc:creator": "Adam Goldman and Gal Koplewitz", - "content": "Military support was slow to arrive in the quiet desert city of Ofakim but officers, most of them armed with handguns, fought back.", - "contentSnippet": "Military support was slow to arrive in the quiet desert city of Ofakim but officers, most of them armed with handguns, fought back.", - "guid": "https://www.nytimes.com/2023/10/26/world/europe/israel-ofakim-police-hamas.html", - "categories": [ - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Police", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ofakim (Israel)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T18:03:49.000Z" - }, - { - "creator": "Jonathan Abrams", - "title": "Dave Chappelle Laments \u2018Nightmare\u2019 Facing Israelis and Palestinians", - "link": "https://www.nytimes.com/2023/10/26/arts/dave-chappelle-israel-hamas.html", - "pubDate": "Thu, 26 Oct 2023 17:45:00 +0000", - "dc:creator": "Jonathan Abrams", - "content": "The comedian, whose remarks about the Israel-Hamas war last week made headlines, returned to the subject at a show in North Carolina.", - "contentSnippet": "The comedian, whose remarks about the Israel-Hamas war last week made headlines, returned to the subject at a show in North Carolina.", - "guid": "https://www.nytimes.com/2023/10/26/arts/dave-chappelle-israel-hamas.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Comedy and Humor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Jews and Judaism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Chappelle, Dave", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Raleigh (NC)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T17:45:00.000Z" - }, - { - "creator": "Aaron Boxerman", - "title": "Who Is in Israel\u2019s War Cabinet?", - "link": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-war-cabinet-hamas.html", - "pubDate": "Thu, 26 Oct 2023 17:07:23 +0000", - "dc:creator": "Aaron Boxerman", - "content": "Prime Minister Benjamin Netanyahu said that the small group of officials would play a key role in determining when Israel begins a ground invasion of Gaza.", - "contentSnippet": "Prime Minister Benjamin Netanyahu said that the small group of officials would play a key role in determining when Israel begins a ground invasion of Gaza.", - "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-war-cabinet-hamas.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netanyahu, Benjamin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Smotrich, Bezalel (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gallant, Yoav", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gantz, Benny", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ben-Gvir, Itamar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Dermer, Ron", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Likud Party (Israel)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-26T17:07:23.000Z" - }, - { - "creator": "Edward Wong", - "title": "As Violence Surges, Nations Seek U.S. Defense Pacts. Some Americans Are Wary.", - "link": "https://www.nytimes.com/2023/10/26/us/politics/us-defense-alliances-israel-ukraine.html", - "pubDate": "Thu, 26 Oct 2023 16:24:59 +0000", - "dc:creator": "Edward Wong", - "content": "Many countries, including Ukraine and Israel, want greater U.S. protection against Russia, China, Iran and North Korea. But some Americans resist further military commitments.", - "contentSnippet": "Many countries, including Ukraine and Israel, want greater U.S. protection against Russia, China, Iran and North Korea. But some Americans resist further military commitments.", - "guid": "https://www.nytimes.com/2023/10/26/us/politics/us-defense-alliances-israel-ukraine.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Treaties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "North Atlantic Treaty Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T16:24:59.000Z" - }, - { - "creator": "Anushka Patil and Gaya Gupta", - "title": "Several Family Members of Al Jazeera\u2019s Gaza Bureau Chief Are Killed", - "link": "https://www.nytimes.com/2023/10/25/world/middleeast/al-jazeera-journalist-gaza-family-killed.html", - "pubDate": "Thu, 26 Oct 2023 15:44:50 +0000", - "dc:creator": "Anushka Patil and Gaya Gupta", - "content": "Wael al-Dahdouh, described by his colleagues as \u201cthe voice of Palestinians in Gaza,\u201d lost his wife, son, daughter and infant grandson, Al Jazeera said.", - "contentSnippet": "Wael al-Dahdouh, described by his colleagues as \u201cthe voice of Palestinians in Gaza,\u201d lost his wife, son, daughter and infant grandson, Al Jazeera said.", - "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/al-jazeera-journalist-gaza-family-killed.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "al-Dahdouh, Wael", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Al Jazeera", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T15:44:50.000Z" - }, - { - "creator": "Declan Walsh", - "title": "For a Grandmother in Gaza, History Is Scarier Than Airstrikes", - "link": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-diaspora-families.html", - "pubDate": "Thu, 26 Oct 2023 15:36:51 +0000", - "dc:creator": "Declan Walsh", - "content": "From his Los Angeles home, Mohammed Abujayyab has sought to help his grandmother and other relatives survive the Israeli bombardment. Memories of displacement are never far.", - "contentSnippet": "From his Los Angeles home, Mohammed Abujayyab has sought to help his grandmother and other relatives survive the Israeli bombardment. Memories of displacement are never far.", - "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-diaspora-families.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Border Barriers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T15:36:51.000Z" - }, - { - "creator": "Marc Santora and Matthew Mpoke Bigg", - "title": "As Winter Nears, Ukraine Braces for Attacks on Energy Grid", - "link": "https://www.nytimes.com/2023/10/26/world/europe/ukraine-winter-energy.html", - "pubDate": "Thu, 26 Oct 2023 14:24:36 +0000", - "dc:creator": "Marc Santora and Matthew Mpoke Bigg", - "content": "Russia targeted power systems last year and recent attacks suggest a return to that strategy, raising anxiety among Ukrainian civilians and officials.", - "contentSnippet": "Russia targeted power systems last year and recent attacks suggest a return to that strategy, raising anxiety among Ukrainian civilians and officials.", - "guid": "https://www.nytimes.com/2023/10/26/world/europe/ukraine-winter-energy.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nuclear Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Infrastructure (Public Works)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric Light and Power", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Power Failures and Blackouts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Atomic Energy Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ukrenergo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-26T14:24:36.000Z" - }, - { - "creator": "Patrick Kingsley", - "title": "Israel\u2019s Strikes on Gaza Are Some of the Most Intense This Century", - "link": "https://www.nytimes.com/2023/10/25/world/middleeast/israel-gaza-airstrikes.html", - "pubDate": "Thu, 26 Oct 2023 13:03:55 +0000", - "dc:creator": "Patrick Kingsley", - "content": "In the 19 days since Hamas attacked Israel, the Israeli military says it has struck more than 7,000 targets in Gaza. Palestinians accuse Israel of indiscriminately targeting civilians, but Israel officials say the strikes are aimed at eroding military infrastructure.", - "contentSnippet": "In the 19 days since Hamas attacked Israel, the Israeli military says it has struck more than 7,000 targets in Gaza. Palestinians accuse Israel of indiscriminately targeting civilians, but Israel officials say the strikes are aimed at eroding military infrastructure.", - "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/israel-gaza-airstrikes.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-26T13:03:55.000Z" - }, - { - "creator": "Emma Bubola", - "title": "In Denmark, Eviction and Demolition Remake \u2018Non-Western\u2019 Neighborhoods", - "link": "https://www.nytimes.com/2023/10/26/world/europe/denmark-housing.html", - "pubDate": "Thu, 26 Oct 2023 11:30:41 +0000", - "dc:creator": "Emma Bubola", - "content": "A government program is using demolition and relocation to remake neighborhoods with immigrants, poverty or crime.", - "contentSnippet": "A government program is using demolition and relocation to remake neighborhoods with immigrants, poverty or crime.", - "guid": "https://www.nytimes.com/2023/10/26/world/europe/denmark-housing.html", - "categories": [ - { - "_": "Aarhus (Denmark)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Public and Subsidized Housing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Urban Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Court of Justice", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Social Democratic Party (Denmark)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Frederiksen, Mette", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Discrimination", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demolition", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Poverty", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Race and Ethnicity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Minorities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-26T11:30:41.000Z" - }, - { - "creator": "Choe Sang-Hun", - "title": "South Korea Must Return Buddhist Statue to Japan, Supreme Court Says", - "link": "https://www.nytimes.com/2023/10/26/world/asia/south-korea-japan-buddhist-statue.html", - "pubDate": "Thu, 26 Oct 2023 06:08:20 +0000", - "dc:creator": "Choe Sang-Hun", - "content": "The artifact, which was taken to Tsushima centuries ago, was stolen and smuggled back to South Korea by thieves in 2012.", - "contentSnippet": "The artifact, which was taken to Tsushima centuries ago, was stolen and smuggled back to South Korea by thieves in 2012.", - "guid": "https://www.nytimes.com/2023/10/26/world/asia/south-korea-japan-buddhist-statue.html", - "categories": [ - { - "_": "Buddhism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Robberies and Thefts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tsushima Island (Japan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T06:08:20.000Z" - }, - { - "creator": "Jonathan Wolfe", - "title": "Thursday Briefing", - "link": "https://www.nytimes.com/2023/10/26/briefing/gaza-israel-house-speaker.html", - "pubDate": "Thu, 26 Oct 2023 04:05:18 +0000", - "dc:creator": "Jonathan Wolfe", - "content": "Biden calls for more aid into Gaza.", - "contentSnippet": "Biden calls for more aid into Gaza.", - "guid": "https://www.nytimes.com/2023/10/26/briefing/gaza-israel-house-speaker.html", - "isoDate": "2023-10-26T04:05:18.000Z" - }, - { - "creator": "Ben Hubbard and Safak Timur", - "title": "Turkey\u2019s Erdogan Defends Hamas and Lashes Out at Israel", - "link": "https://www.nytimes.com/2023/10/25/world/middleeast/erdogan-turkey-hamas-israel.html", - "pubDate": "Thu, 26 Oct 2023 02:01:27 +0000", - "dc:creator": "Ben Hubbard and Safak Timur", - "content": "In a speech in Parliament, President Recep Tayyip Erdogan of Turkey accused Israel of committing \u201cmassacres\u201d in Gaza and said Hamas was fighting for \u201cliberation.\u201d", - "contentSnippet": "In a speech in Parliament, President Recep Tayyip Erdogan of Turkey accused Israel of committing \u201cmassacres\u201d in Gaza and said Hamas was fighting for \u201cliberation.\u201d", - "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/erdogan-turkey-hamas-israel.html", - "categories": [ - { - "_": "Erdogan, Recep Tayyip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Turkey", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-26T02:01:27.000Z" - }, - { - "creator": "Zolan Kanno-Youngs, Judson Jones and Derrick Bryson Taylor", - "title": "Hurricane Otis Batters Mexico, Defying Forecasts", - "link": "https://www.nytimes.com/2023/10/25/world/americas/hurricane-otis-mexico-impact.html", - "pubDate": "Thu, 26 Oct 2023 01:29:04 +0000", - "dc:creator": "Zolan Kanno-Youngs, Judson Jones and Derrick Bryson Taylor", - "content": "Hurricane Otis defied forecasts when it quickly transformed from a tropical storm into a Category 5 storm and slammed into the coastal city of Acapulco.", - "contentSnippet": "Hurricane Otis defied forecasts when it quickly transformed from a tropical storm into a Category 5 storm and slammed into the coastal city of Acapulco.", - "guid": "https://www.nytimes.com/2023/10/25/world/americas/hurricane-otis-mexico-impact.html", - "categories": [ - { - "_": "Hurricane Otis (2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Acapulco (Mexico)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Landslides and Mudslides", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Floods", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wind", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Lopez Obrador, Andres Manuel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mexico", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-26T01:29:04.000Z" - }, - { - "creator": "Tiffany May and Shawn Hubler", - "title": "Gavin Newsom, on Climate Mission to China, Meets With Xi Jinping", - "link": "https://www.nytimes.com/2023/10/25/world/asia/gavin-newsom-china-xi.html", - "pubDate": "Wed, 25 Oct 2023 23:36:00 +0000", - "dc:creator": "Tiffany May and Shawn Hubler", - "content": "The California governor is on a weeklong visit to China aimed at negotiating climate partnerships.", - "contentSnippet": "The California governor is on a weeklong visit to China aimed at negotiating climate partnerships.", - "guid": "https://www.nytimes.com/2023/10/25/world/asia/gavin-newsom-china-xi.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Governors (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asia-Pacific Economic Cooperation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Communist Party of China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Global Times", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Newsom, Gavin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Wang Yi", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Xi Jinping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "California", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-25T23:36:00.000Z" - }, - { - "creator": "Monika Pronczuk", - "title": "With Fuel Shortages in Gaza, U.N. Aid Group May Shut Down Operations", - "link": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-shortages-un.html", - "pubDate": "Wed, 25 Oct 2023 22:35:03 +0000", - "dc:creator": "Monika Pronczuk", - "content": "A U.N. agency that has offered a wartime lifeline to hundreds of thousands of Palestinians warned of \u201ctough decisions\u201d ahead if it cannot get fuel.", - "contentSnippet": "A U.N. agency that has offered a wartime lifeline to hundreds of thousands of Palestinians warned of \u201ctough decisions\u201d ahead if it cannot get fuel.", - "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-shortages-un.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shortages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United Nations Relief and Works Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-25T22:35:03.000Z" - }, - { - "creator": "David E. Sanger and Eric Schmitt", - "title": "U.S. Seeks Delay in Israel\u2019s Gaza Ground Invasion to Bolster Air Defenses", - "link": "https://www.nytimes.com/2023/10/25/us/politics/us-israel-gaza-ground-invasion.html", - "pubDate": "Wed, 25 Oct 2023 21:47:24 +0000", - "dc:creator": "David E. Sanger and Eric Schmitt", - "content": "The systems would allow the United States to provide more protection for American troops at bases in Iraq, Syria and elsewhere.", - "contentSnippet": "The systems would allow the United States to provide more protection for American troops at bases in Iraq, Syria and elsewhere.", - "guid": "https://www.nytimes.com/2023/10/25/us/politics/us-israel-gaza-ground-invasion.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-25T21:47:24.000Z" - }, - { - "creator": "Derrick Bryson Taylor", - "title": "Traveler Stranded in Acapulco Recounts \u2018Apocalyptic\u2019 Hurricane Otis", - "link": "https://www.nytimes.com/2023/10/25/world/americas/acapulco-mexico-hurricane-otis-conditions.html", - "pubDate": "Wed, 25 Oct 2023 21:38:18 +0000", - "dc:creator": "Derrick Bryson Taylor", - "content": "\u201cIt was really terrifying,\u201d said one visitor who was attending a mining convention in the Mexican city.", - "contentSnippet": "\u201cIt was really terrifying,\u201d said one visitor who was attending a mining convention in the Mexican city.", - "guid": "https://www.nytimes.com/2023/10/25/world/americas/acapulco-mexico-hurricane-otis-conditions.html", - "categories": [ - { - "_": "vis-video", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Acapulco (Mexico)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hurricane Otis (2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T21:38:18.000Z" - }, - { - "creator": "Michael Levenson", - "title": "Carnival Was Negligent in Covid Outbreak on Cruise Ship, Court Rules", - "link": "https://www.nytimes.com/2023/10/25/world/australia/carnival-cruise-covid-ruby-princess.html", - "pubDate": "Wed, 25 Oct 2023 21:37:29 +0000", - "dc:creator": "Michael Levenson", - "content": "An Australian judge found that the cruise company and a subsidiary \u201cbreached their duty of care\u201d in handling a coronavirus outbreak on the Ruby Princess in March 2020.", - "contentSnippet": "An Australian judge found that the cruise company and a subsidiary \u201cbreached their duty of care\u201d in handling a coronavirus outbreak on the Ruby Princess in March 2020.", - "guid": "https://www.nytimes.com/2023/10/25/world/australia/carnival-cruise-covid-ruby-princess.html", - "categories": [ - { - "_": "Coronavirus (2019-nCoV)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cruises", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carnival Cruise Lines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-25T21:37:29.000Z" - }, - { - "creator": "Justin Porter", - "title": "Thursday Briefing: Gaza Is Running Out of Fuel", - "link": "https://www.nytimes.com/2023/10/25/briefing/hamas-israel-war-us-house-speaker-japan-transgender.html", - "pubDate": "Wed, 25 Oct 2023 21:17:53 +0000", - "dc:creator": "Justin Porter", - "content": "Plus Vietnam\u2019s many cable cars.", - "contentSnippet": "Plus Vietnam\u2019s many cable cars.", - "guid": "https://www.nytimes.com/2023/10/25/briefing/hamas-israel-war-us-house-speaker-japan-transgender.html", - "categories": [ - { - "_": "Far East, South and Southeast Asia and Pacific Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Transgender", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T21:17:53.000Z" - }, - { - "creator": "Katie Rogers", - "title": "Biden Reaffirms Support for Israel but Calls for Protection of Civilians", - "link": "https://www.nytimes.com/2023/10/25/us/politics/biden-albanese-australia-israel.html", - "pubDate": "Wed, 25 Oct 2023 21:10:22 +0000", - "dc:creator": "Katie Rogers", - "content": "During an appearance with the Australian prime minister, President Biden pledged that the United States would provide Israel with what it needed to defend itself against Hamas.", - "contentSnippet": "During an appearance with the Australian prime minister, President Biden pledged that the United States would provide Israel with what it needed to defend itself against Hamas.", - "guid": "https://www.nytimes.com/2023/10/25/us/politics/biden-albanese-australia-israel.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States Navy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Albanese, Anthony (1963- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Australia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Submarines and Submersibles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nuclear Weapons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Trade and World Market", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Papua New Guinea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-25T21:10:22.000Z" - }, - { - "creator": "Suhasini Raj and Atul Loke", - "title": "A Hindu Mardi Gras Where Indian Progressivism Is Alive and Well", - "link": "https://www.nytimes.com/2023/10/25/world/asia/india-durga-puja.html", - "pubDate": "Wed, 25 Oct 2023 21:07:02 +0000", - "dc:creator": "Suhasini Raj and Atul Loke", - "content": "A huge religious carnival shows that India remains a country of diverse political and social beliefs, despite the right-wing national government\u2019s dominance.", - "contentSnippet": "A huge religious carnival shows that India remains a country of diverse political and social beliefs, despite the right-wing national government\u2019s dominance.", - "guid": "https://www.nytimes.com/2023/10/25/world/asia/india-durga-puja.html", - "categories": [ - { - "_": "Hinduism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Right-Wing Extremism and Alt-Right", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Women and Girls", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T21:07:02.000Z" - }, - { - "creator": "Yousur Al-Hlou", - "title": "From Gaza, an Audio Diary of Despair", - "link": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-teenager-audio-diary.html", - "pubDate": "Wed, 25 Oct 2023 20:58:37 +0000", - "dc:creator": "Yousur Al-Hlou", - "content": "In a series of voice memos sent via WhatsApp, Tasneem Ismael Ahel, 19, described the war unfolding around her in Gaza City.", - "contentSnippet": "In a series of voice memos sent via WhatsApp, Tasneem Ismael Ahel, 19, described the war unfolding around her in Gaza City.", - "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-teenager-audio-diary.html", - "categories": [ - { - "_": "vis-video", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Audio Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Diaries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Evacuations and Evacuees", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Youth", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ahel, Tasneem Ismael", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-25T20:58:37.000Z" - }, - { - "creator": "Vjosa Isai", - "title": "Ex-Fashion Executive, Peter Nygard, Testifies in His Sexual Assault Trial", - "link": "https://www.nytimes.com/2023/10/25/world/canada/nygard-sexual-assault-trial.html", - "pubDate": "Wed, 25 Oct 2023 19:39:51 +0000", - "dc:creator": "Vjosa Isai", - "content": "A lawyer for Peter Nygard, a former fashion executive accused of sexually assaulting five women, described their testimony as \u201crevisionist history.\u2019\u2019", - "contentSnippet": "A lawyer for Peter Nygard, a former fashion executive accused of sexually assaulting five women, described their testimony as \u201crevisionist history.\u2019\u2019", - "guid": "https://www.nytimes.com/2023/10/25/world/canada/nygard-sexual-assault-trial.html", - "categories": [ - { - "_": "Sex Crimes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fashion and Apparel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Courts and the Judiciary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nygard, Peter", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Canada", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-25T19:39:51.000Z" - }, - { - "creator": "Judson Jones", - "title": "Why Hurricane Otis Caught Many By Surprise", - "link": "https://www.nytimes.com/2023/10/25/world/americas/hurricane-otis-mexico-intensity-surprise.html", - "pubDate": "Wed, 25 Oct 2023 19:30:45 +0000", - "dc:creator": "Judson Jones", - "content": "Storms don\u2019t normally go from a tropical storm to a Category 5 hurricane in a day.", - "contentSnippet": "Storms don\u2019t normally go from a tropical storm to a Category 5 hurricane in a day.", - "guid": "https://www.nytimes.com/2023/10/25/world/americas/hurricane-otis-mexico-intensity-surprise.html", - "categories": [ - { - "_": "Hurricanes and Tropical Storms", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Weather", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Satellites", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "National Hurricane Center", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Acapulco (Mexico)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-25T19:30:45.000Z" - }, - { - "creator": "Stephen Castle", - "title": "Shoplifting Surges in U.K., and Workers Face Scary Situations", - "link": "https://www.nytimes.com/2023/10/25/world/europe/uk-surge-shoplifting.html", - "pubDate": "Wed, 25 Oct 2023 18:39:34 +0000", - "dc:creator": "Stephen Castle", - "content": "As people try to walk away with goods, it\u2019s \u201clike the Wild West,\u201d says one store owner, whose employees have been hit and bitten on the job.", - "contentSnippet": "As people try to walk away with goods, it\u2019s \u201clike the Wild West,\u201d says one store owner, whose employees have been hit and bitten on the job.", - "guid": "https://www.nytimes.com/2023/10/25/world/europe/uk-surge-shoplifting.html", - "categories": [ - { - "_": "Coronavirus (2019-nCoV)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shoplifting and Employee Theft (Retail)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Crime and Criminals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Small Business", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supermarkets and Grocery Stores", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shopping and Retail", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Workplace Hazards and Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Birmingham (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Bournemouth (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "England", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Southampton (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-25T18:39:34.000Z" - }, - { - "creator": "Jim Tankersley and Ben Casselman", - "title": "Biden Seeks to Tame Oil Prices if Mideast Conflict Sends Them Soaring", - "link": "https://www.nytimes.com/2023/10/25/business/economy/biden-oil-prices-middle-east.html", - "pubDate": "Wed, 25 Oct 2023 18:06:45 +0000", - "dc:creator": "Jim Tankersley and Ben Casselman", - "content": "The president has previously drawn down the Strategic Petroleum Reserve to ease price pressures, but that could be more difficult now", - "contentSnippet": "The president has previously drawn down the Strategic Petroleum Reserve to ease price pressures, but that could be more difficult now", - "guid": "https://www.nytimes.com/2023/10/25/business/economy/biden-oil-prices-middle-east.html", - "categories": [ - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Economy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Production", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Strategic Petroleum Reserve (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Energy and Power", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T18:06:45.000Z" - }, - { - "creator": "Farnaz Fassihi", - "title": "Israel Calls For U.N. Secretary General Guterres to Resign ", - "link": "https://www.nytimes.com/2023/10/25/world/middleeast/un-security-council-guterres-israel.html", - "pubDate": "Wed, 25 Oct 2023 15:25:46 +0000", - "dc:creator": "Farnaz Fassihi", - "content": "Israel called for the U.N. secretary general to resign after he said that Hamas\u2019s \u201cappalling attacks cannot justify the collective punishment of the Palestinian people.\u201d", - "contentSnippet": "Israel called for the U.N. secretary general to resign after he said that Hamas\u2019s \u201cappalling attacks cannot justify the collective punishment of the Palestinian people.\u201d", - "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/un-security-council-guterres-israel.html", - "categories": [ - { - "_": "Guterres, Antonio", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Security Council (UN)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-25T15:25:46.000Z" - }, - { - "creator": "Clifford Krauss", - "title": "Chasing Big Mergers, Oil Executives Dismiss Peak Oil Concerns", - "link": "https://www.nytimes.com/2023/10/25/business/energy-environment/exxon-chevron-oil-mergers-peak.html", - "pubDate": "Wed, 25 Oct 2023 15:14:11 +0000", - "dc:creator": "Clifford Krauss", - "content": "Exxon Mobil and Chevron are spending tens of billions of dollars buying oil and gas assets, betting that the International Energy Agency\u2019s predictions of declining oil demand are wrong.", - "contentSnippet": "Exxon Mobil and Chevron are spending tens of billions of dollars buying oil and gas assets, betting that the International Energy Agency\u2019s predictions of declining oil demand are wrong.", - "guid": "https://www.nytimes.com/2023/10/25/business/energy-environment/exxon-chevron-oil-mergers-peak.html", - "categories": [ - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Natural Gas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mergers, Acquisitions and Divestitures", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alternative and Renewable Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Production", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stocks and Bonds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Batteries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Solar Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carbon Capture and Sequestration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Chevron Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Exxon Mobil Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hess Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Pioneer Natural Resources Company", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Energy Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-25T15:14:11.000Z" - }, - { - "creator": "Amanda Taub", - "title": "What I Read and Watch to Decompress", - "link": "https://www.nytimes.com/2023/10/25/world/europe/interpreter-read-watch-recommend.html", - "pubDate": "Wed, 25 Oct 2023 14:32:27 +0000", - "dc:creator": "Amanda Taub", - "content": "Some Jane Austen and a tennis rom-com are just right the right relief when news of fighting and war takes a toll.", - "contentSnippet": "Some Jane Austen and a tennis rom-com are just right the right relief when news of fighting and war takes a toll.", - "guid": "https://www.nytimes.com/2023/10/25/world/europe/interpreter-read-watch-recommend.html", - "categories": [ - { - "_": "internal-sub-only-nl", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Books and Literature", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tennis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Soccer", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Austen, Jane", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Beckham, David", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Documentary Films and Programs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T14:32:27.000Z" - }, - { - "creator": "Hikari Hida and Motoko Rich", - "title": "Transgender Ruling Is Step Forward for L.G.B.T.Q. Rights in Japan", - "link": "https://www.nytimes.com/2023/10/25/world/asia/japan-transgender.html", - "pubDate": "Wed, 25 Oct 2023 11:48:35 +0000", - "dc:creator": "Hikari Hida and Motoko Rich", - "content": "The Supreme Court declared unconstitutional a legal clause requiring transgender people to undergo sterilization to legally change their gender identity.", - "contentSnippet": "The Supreme Court declared unconstitutional a legal clause requiring transgender people to undergo sterilization to legally change their gender identity.", - "guid": "https://www.nytimes.com/2023/10/25/world/asia/japan-transgender.html", - "categories": [ - { - "_": "Japan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Transgender", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Discrimination", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sterilization (Reproductive)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T11:48:35.000Z" - }, - { - "creator": "Maria Varenikova", - "title": "As Ukraine War Grinds On, Widows Try to See Life After Loss", - "link": "https://www.nytimes.com/2023/10/25/world/europe/ukraine-war-widows.html", - "pubDate": "Wed, 25 Oct 2023 09:01:58 +0000", - "dc:creator": "Maria Varenikova", - "content": "Support groups formed to help thousands of new widows see a dual role in healing their nation. \u201cOur society was not ready to face such scale of grief,\u201d one widow said.", - "contentSnippet": "Support groups formed to help thousands of new widows see a dual role in healing their nation. \u201cOur society was not ready to face such scale of grief,\u201d one widow said.", - "guid": "https://www.nytimes.com/2023/10/25/world/europe/ukraine-war-widows.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Death and Dying", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Grief (Emotion)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T09:01:58.000Z" - }, - { - "creator": "Elisabetta Povoledo", - "title": "Women Will Vote at a Vatican Meeting for the First Time", - "link": "https://www.nytimes.com/2023/10/25/world/europe/women-vatican-synod-vote.html", - "pubDate": "Wed, 25 Oct 2023 08:00:42 +0000", - "dc:creator": "Elisabetta Povoledo", - "content": "Some women participating in a conference on sensitive church issues said they feel heartened by the discussions taking place, though change may remain slow.", - "contentSnippet": "Some women participating in a conference on sensitive church issues said they feel heartened by the discussions taking place, though change may remain slow.", - "guid": "https://www.nytimes.com/2023/10/25/world/europe/women-vatican-synod-vote.html", - "categories": [ - { - "_": "Priests", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cardinals (Roman Catholic Prelates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Discrimination", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nuns", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Women's Rights", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Women and Girls", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Roman Catholic Church", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Francis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Becquart, Nathalie", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "The Vatican", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-10-25T08:00:42.000Z" - }, - { - "creator": "Julian E. Barnes and David E. Sanger", - "title": "U.S. Cites \u2018High Confidence\u2019 Rocket From Gaza Caused Hospital Blast", - "link": "https://www.nytimes.com/2023/10/24/us/politics/intel-rocket-gaza-hospital-blast.html", - "pubDate": "Wed, 25 Oct 2023 03:19:56 +0000", - "dc:creator": "Julian E. Barnes and David E. Sanger", - "content": "American intelligence agencies released no new declassified imagery or other new evidence to make their case. Officials said their strengthened assessment was based on video evidence.", - "contentSnippet": "American intelligence agencies released no new declassified imagery or other new evidence to make their case. Officials said their strengthened assessment was based on video evidence.", - "guid": "https://www.nytimes.com/2023/10/24/us/politics/intel-rocket-gaza-hospital-blast.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hospitals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Al Ahli Arab Hospital (Gaza Strip)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinian Islamic Jihad", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T03:19:56.000Z" - }, - { - "creator": "Erica L. Green and Michael Crowley", - "title": "U.S. Says a Cease-Fire in the Israel War Would Only Benefit Hamas", - "link": "https://www.nytimes.com/2023/10/24/us/politics/israel-hamas-cease-fire.html", - "pubDate": "Tue, 24 Oct 2023 23:45:56 +0000", - "dc:creator": "Erica L. Green and Michael Crowley", - "content": "A White House spokesman said the administration supported humanitarian pauses to allow aid to reach Gaza and civilians to evacuate.", - "contentSnippet": "A White House spokesman said the administration supported humanitarian pauses to allow aid to reach Gaza and civilians to evacuate.", - "guid": "https://www.nytimes.com/2023/10/24/us/politics/israel-hamas-cease-fire.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Security Council (UN)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Blinken, Antony J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kirby, John F", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-24T23:45:56.000Z" - }, - { - "creator": "Nicole Sperling", - "title": "After Outcry, Writers Guild Tries to Explain Silence on Hamas Attack", - "link": "https://www.nytimes.com/2023/10/24/business/media/writers-guild-of-america-hamas-attack.html", - "pubDate": "Tue, 24 Oct 2023 22:18:12 +0000", - "dc:creator": "Nicole Sperling", - "content": "The union said it had made no public statement because \u201cwe are American labor leaders, aware of our limitations and humbled by the magnitude of this conflict.\u201d", - "contentSnippet": "The union said it had made no public statement because \u201cwe are American labor leaders, aware of our limitations and humbled by the magnitude of this conflict.\u201d", - "guid": "https://www.nytimes.com/2023/10/24/business/media/writers-guild-of-america-hamas-attack.html", - "categories": [ - { - "_": "Organized Labor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Writers Guild of America", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Writing and Writers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Jews and Judaism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-24T22:18:12.000Z" - }, - { - "creator": "Kate Kelly, Vivian Nereim, Mark Mazzetti and Edward Wong", - "title": "Saudi Arabia Warns U.S.: Israeli Invasion of Gaza Could Be Catastrophic", - "link": "https://www.nytimes.com/2023/10/27/world/middleeast/saudi-arabia-israel-us-invasion.html", - "pubDate": "Fri, 27 Oct 2023 15:33:11 +0000", - "dc:creator": "Kate Kelly, Vivian Nereim, Mark Mazzetti and Edward Wong", - "content": "In discussions with their American counterparts, Saudi officials have framed a ground war as a potentially devastating blow to stability in the Middle East.", - "contentSnippet": "In discussions with their American counterparts, Saudi officials have framed a ground war as a potentially devastating blow to stability in the Middle East.", - "guid": "https://www.nytimes.com/2023/10/27/world/middleeast/saudi-arabia-israel-us-invasion.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mohammed bin Salman (1985- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Saudi Arabia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T15:33:11.000Z" - }, - { - "creator": "Jason Horowitz and Elisabetta Povoledo", - "title": "Berlusconi Bequeaths a Warehouse of Art Befitting the Man", - "link": "https://www.nytimes.com/2023/10/27/world/europe/berlusconis-art-collection.html", - "pubDate": "Fri, 27 Oct 2023 14:55:49 +0000", - "dc:creator": "Jason Horowitz and Elisabetta Povoledo", - "content": "The Italian media mogul bought up some 25,000 paintings, many on TV shopping binges, before he died this year. Now no one knows what to do with them.", - "contentSnippet": "The Italian media mogul bought up some 25,000 paintings, many on TV shopping binges, before he died this year. Now no one knows what to do with them.", - "guid": "https://www.nytimes.com/2023/10/27/world/europe/berlusconis-art-collection.html", - "categories": [ - { - "_": "Art", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Collectors and Collections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Television", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Age, Chronological", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shopping and Retail", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Berlusconi, Silvio", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Meloni, Giorgia (1977- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Italy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T14:55:49.000Z" - }, - { - "creator": "Mike Ives", - "title": "Celine Dion \u2018Siren Battles\u2019 Prompt Complaints in New Zealand City", - "link": "https://www.nytimes.com/2023/10/27/world/australia/siren-battles-new-zealand-celine-dion.html", - "pubDate": "Fri, 27 Oct 2023 14:30:04 +0000", - "dc:creator": "Mike Ives", - "content": "A subculture has developed among Pacific Islander communities based on who can blast music \u2014 often Ms. Dion\u2019s songs \u2014 the loudest. Some call it too disruptive.", - "contentSnippet": "A subculture has developed among Pacific Islander communities based on who can blast music \u2014 often Ms. Dion\u2019s songs \u2014 the loudest. Some call it too disruptive.", - "guid": "https://www.nytimes.com/2023/10/27/world/australia/siren-battles-new-zealand-celine-dion.html", - "categories": [ - { - "_": "Noise", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Speakers (Audio)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dion, Celine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Jawsh 685 (2003- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Auckland (New Zealand)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "New Zealand", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Wellington (New Zealand)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T14:30:04.000Z" - }, - { - "creator": "Rory Smith", - "title": "At Barcelona, Timing Is Everything", - "link": "https://www.nytimes.com/2023/10/27/world/europe/barcelona-real-madrid-clasico.html", - "pubDate": "Fri, 27 Oct 2023 14:30:02 +0000", - "dc:creator": "Rory Smith", - "content": "The Barcelona team that faces Real Madrid in Saturday\u2019s Cl\u00e1sico will be marked by youth, mostly because the club\u2019s dire straits meant it had to be.", - "contentSnippet": "The Barcelona team that faces Real Madrid in Saturday\u2019s Cl\u00e1sico will be marked by youth, mostly because the club\u2019s dire straits meant it had to be.", - "guid": "https://www.nytimes.com/2023/10/27/world/europe/barcelona-real-madrid-clasico.html", - "categories": [ - { - "_": "Soccer", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Barcelona (Soccer Team)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Real Madrid (Soccer Team)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Messi, Lionel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Haaland, Erling Braut", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bonmati, Aitana", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gavi (2004- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-27T14:30:02.000Z" - }, - { - "creator": "Ivan Nechepurenko", - "title": "Russia\u2019s Central Bank Raises Rates to 15 Percent to Curb Inflation", - "link": "https://www.nytimes.com/2023/10/27/world/europe/russias-central-bank-interest-rates-inflation.html", - "pubDate": "Fri, 27 Oct 2023 13:59:01 +0000", - "dc:creator": "Ivan Nechepurenko", - "content": "The jump, from 13 percent, would bring a long period of \u201ctight monetary conditions\u201d in order to ease price pressures, the bank said.", - "contentSnippet": "The jump, from 13 percent, would bring a long period of \u201ctight monetary conditions\u201d in order to ease price pressures, the bank said.", - "guid": "https://www.nytimes.com/2023/10/27/world/europe/russias-central-bank-interest-rates-inflation.html", - "categories": [ - { - "_": "Banking and Financial Institutions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Interest Rates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation (Economics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T13:59:01.000Z" - }, - { - "creator": "Alan Rappeport", - "title": "U.S. Imposes New Sanctions to Cut Off Hamas Funding", - "link": "https://www.nytimes.com/2023/10/27/world/middleeast/us-sanctions-hamas.html", - "pubDate": "Fri, 27 Oct 2023 13:39:36 +0000", - "dc:creator": "Alan Rappeport", - "content": "The Biden administration also targeted the group\u2019s Iranian supporters.", - "contentSnippet": "The Biden administration also targeted the group\u2019s Iranian supporters.", - "guid": "https://www.nytimes.com/2023/10/27/world/middleeast/us-sanctions-hamas.html", - "categories": [ - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-27T13:39:36.000Z" - } -] \ No newline at end of file + { + "creator": "Zachary Woolfe", + "title": "When Henry Kissinger Became an Opera Character", + "link": "https://www.nytimes.com/2023/11/30/arts/music/henry-kissinger-nixon-in-china-opera.html", + "pubDate": "Thu, 30 Nov 2023 23:24:43 +0000", + "dc:creator": "Zachary Woolfe", + "content": "In 1987, \u201cNixon in China\u201d meditated on what was then recent history, depicting Kissinger as a smooth diplomat with a brutal side.", + "contentSnippet": "In 1987, \u201cNixon in China\u201d meditated on what was then recent history, depicting Kissinger as a smooth diplomat with a brutal side.", + "guid": "https://www.nytimes.com/2023/11/30/arts/music/henry-kissinger-nixon-in-china-opera.html", + "categories": [ + { + "_": "Opera", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kissinger, Henry A", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Adams, John (1947- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sellars, Peter", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nixon in China (Opera)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + } + ], + "isoDate": "2023-11-30T23:24:43.000Z" + }, + { + "creator": "The New York Times", + "title": "Israel-Hamas War: Blinken Urges Israel to Protect Gaza\u2019s Civilians if Truce Ends", + "link": "https://www.nytimes.com/live/2023/11/30/world/israel-hamas-gaza-war-news", + "pubDate": "Thu, 30 Nov 2023 23:01:07 +0000", + "dc:creator": "The New York Times", + "content": "The U.S. secretary of state went to Israel as part of a diplomatic push to extend a tenuous truce with Hamas, but in comments in Tel Aviv, he focused more on the next phase of Israel\u2019s offensive.", + "contentSnippet": "The U.S. secretary of state went to Israel as part of a diplomatic push to extend a tenuous truce with Hamas, but in comments in Tel Aviv, he focused more on the next phase of Israel\u2019s offensive.", + "guid": "https://www.nytimes.com/live/2023/11/30/world/israel-hamas-gaza-war-news", + "isoDate": "2023-11-30T23:01:07.000Z" + }, + { + "creator": "Alan Cowell", + "title": "Alistair Darling, Guiding Hand in Britain\u2019s Financial Crisis, Dies at 70", + "link": "https://www.nytimes.com/2023/11/30/world/europe/alistair-darling-dead.html", + "pubDate": "Thu, 30 Nov 2023 22:59:06 +0000", + "dc:creator": "Alan Cowell", + "content": "As the government\u2019s chief financial cabinet member, he helped stave off a broader economic collapse amid the global turmoil set off in 2008", + "contentSnippet": "As the government\u2019s chief financial cabinet member, he helped stave off a broader economic collapse amid the global turmoil set off in 2008", + "guid": "https://www.nytimes.com/2023/11/30/world/europe/alistair-darling-dead.html", + "categories": [ + { + "_": "Brown, Gordon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Recession and Depression", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Subprime Mortgage Crisis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "2008 financial crisis", + "$": { + "domain": "" + } + }, + { + "_": "Darling, Alistair", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-30T22:59:06.000Z" + }, + { + "creator": "Derek M. Norman", + "title": "A Timeline of Plots Against Sikh Activists, According to Canada and the U.S.", + "link": "https://www.nytimes.com/2023/11/30/world/asia/india-sikh-plot-timeline.html", + "pubDate": "Thu, 30 Nov 2023 22:52:44 +0000", + "dc:creator": "Derek M. Norman", + "content": "Officials in the United States and Canada have described two assassination attempts: the killing of a Sikh leader in British Columbia and a plan to murder an activist in New York.", + "contentSnippet": "Officials in the United States and Canada have described two assassination attempts: the killing of a Sikh leader in British Columbia and a plan to murder an activist in New York.", + "guid": "https://www.nytimes.com/2023/11/30/world/asia/india-sikh-plot-timeline.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Murders, Attempted Murders and Homicides", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Modi, Narendra", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nijjar, Hardeep Singh (1977-2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Pannun, Gurpatwant Singh", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Trudeau, Justin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "British Columbia (Canada)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Canada", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "India", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T22:52:44.000Z" + }, + { + "creator": "Talya Minsberg and Matthew Mpoke Bigg", + "title": "What We Know About the Israeli Hostages Hamas Released on Thursday", + "link": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hostages-released-thursday.html", + "pubDate": "Thu, 30 Nov 2023 22:45:12 +0000", + "dc:creator": "Talya Minsberg and Matthew Mpoke Bigg", + "content": "Eight Israeli hostages were freed, including dual nationals from Mexico, Russia and Uruguay.", + "contentSnippet": "Eight Israeli hostages were freed, including dual nationals from Mexico, Russia and Uruguay.", + "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hostages-released-thursday.html", + "categories": [ + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T22:45:12.000Z" + }, + { + "creator": "Norimitsu Onishi", + "title": "Sikh Assassination Plot in NY Bolsters Canada\u2019s Accusations Against India", + "link": "https://www.nytimes.com/2023/11/30/world/canada/india-assassination-plot-canada-sikh.html", + "pubDate": "Thu, 30 Nov 2023 21:58:30 +0000", + "dc:creator": "Norimitsu Onishi", + "content": "An indictment in a plot against a Sikh separatist in the United States provides details in a killing that has strained relations between Canada and India.", + "contentSnippet": "An indictment in a plot against a Sikh separatist in the United States provides details in a killing that has strained relations between Canada and India.", + "guid": "https://www.nytimes.com/2023/11/30/world/canada/india-assassination-plot-canada-sikh.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sikhs and Sikhism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carleton University", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Nijjar, Hardeep Singh (1977-2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gupta, Nikhil", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Trudeau, Justin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Canada", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "India", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T21:58:30.000Z" + }, + { + "creator": "Motoko Rich", + "title": "Daisaku Ikeda, Who Led Influential Japanese Buddhist Group, Dies at 95", + "link": "https://www.nytimes.com/2023/11/29/world/asia/daisaku-ikeda-dead.html", + "pubDate": "Thu, 30 Nov 2023 21:52:08 +0000", + "dc:creator": "Motoko Rich", + "content": "He grew Soka Gakkai International\u2019s following over two decades and helped create a coalition partner for the country\u2019s dominant Liberal Democratic Party.", + "contentSnippet": "He grew Soka Gakkai International\u2019s following over two decades and helped create a coalition partner for the country\u2019s dominant Liberal Democratic Party.", + "guid": "https://www.nytimes.com/2023/11/29/world/asia/daisaku-ikeda-dead.html", + "categories": [ + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Buddhism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ikeda, Daisaku (1928-2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Soka Gakkai", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Liberal Democratic Party (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T21:52:08.000Z" + }, + { + "creator": "Anushka Patil", + "title": "Palestinian Activist Ahed Tamimi Freed From Israeli Prison in Hostage Exchange", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/ahed-tamimi-prisoner-exchange.html", + "pubDate": "Thu, 30 Nov 2023 21:13:09 +0000", + "dc:creator": "Anushka Patil", + "content": "The 22-year-old activist was jailed for three weeks without being charged. Her arrest was one of thousands made during the Israeli military\u2019s crackdown in the occupied West Bank after the Hamas attacks on Oct. 7.", + "contentSnippet": "The 22-year-old activist was jailed for three weeks without being charged. Her arrest was one of thousands made during the Israeli military\u2019s crackdown in the occupied West Bank after the Hamas attacks on Oct. 7.", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/ahed-tamimi-prisoner-exchange.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Political Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T21:13:09.000Z" + }, + { + "creator": "Justin Porter", + "title": "Friday Briefing: A New Climate Fund Approved", + "link": "https://www.nytimes.com/2023/11/30/briefing/cop28-climate-talks-kissinger-hamas-israel-war.html", + "pubDate": "Thu, 30 Nov 2023 21:03:32 +0000", + "dc:creator": "Justin Porter", + "content": "Plus the best albums of 2023.", + "contentSnippet": "Plus the best albums of 2023.", + "guid": "https://www.nytimes.com/2023/11/30/briefing/cop28-climate-talks-kissinger-hamas-israel-war.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kissinger, Henry A", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T21:03:32.000Z" + }, + { + "creator": "The New York Times", + "title": "Kissinger Death: Diplomat Who Long Held the Global Stage Was Both Celebrated and Reviled", + "link": "https://www.nytimes.com/live/2023/11/29/us/henry-kissinger-death-news", + "pubDate": "Thu, 30 Nov 2023 20:56:46 +0000", + "dc:creator": "The New York Times", + "content": "In a reflection of Henry Kissinger\u2019s complicated legacy, his passing elicited sharply divergent opinions from admirers and critics.", + "contentSnippet": "In a reflection of Henry Kissinger\u2019s complicated legacy, his passing elicited sharply divergent opinions from admirers and critics.", + "guid": "https://www.nytimes.com/live/2023/11/29/us/henry-kissinger-death-news", + "isoDate": "2023-11-30T20:56:46.000Z" + }, + { + "creator": "John Yoon", + "title": "Why Some Korean Basketball Players Love the Bank Shot", + "link": "https://www.nytimes.com/2023/11/30/sports/basketball/bank-shot-south-korea-basketball.html", + "pubDate": "Thu, 30 Nov 2023 20:24:25 +0000", + "dc:creator": "John Yoon", + "content": "Banked free throws, an unorthodox technique, have a cult following in the Korean Basketball League.", + "contentSnippet": "Banked free throws, an unorthodox technique, have a cult following in the Korean Basketball League.", + "guid": "https://www.nytimes.com/2023/11/30/sports/basketball/bank-shot-south-korea-basketball.html", + "categories": [ + { + "_": "Basketball", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Korean Basketball League", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "North Carolina State University", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T20:24:25.000Z" + }, + { + "creator": "Abdi Latif Dahir and Elizabeth Paton", + "title": "Kenya Curbs Kenneth Kaunda\u2019s Famous Suit", + "link": "https://www.nytimes.com/2023/11/30/world/africa/kenya-kaunda-suit-parliament.html", + "pubDate": "Thu, 30 Nov 2023 19:29:40 +0000", + "dc:creator": "Abdi Latif Dahir and Elizabeth Paton", + "content": "A favorite of President William Ruto, the suit was banned along with other traditional African attire for violating parliamentary dress codes. Proper attire, the speaker decreed, is a Western suit and tie.", + "contentSnippet": "A favorite of President William Ruto, the suit was banned along with other traditional African attire for violating parliamentary dress codes. Proper attire, the speaker decreed, is a Western suit and tie.", + "guid": "https://www.nytimes.com/2023/11/30/world/africa/kenya-kaunda-suit-parliament.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Black People", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dress Codes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fashion and Apparel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits (Apparel)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Jonathan, Goodluck", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kagame, Paul", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kaunda, Kenneth D", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mandela, Nelson", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ruto, William", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Nairobi (Kenya)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kenya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T19:29:40.000Z" + }, + { + "creator": "David E. Sanger", + "title": "Henry Kissinger, Who Shaped U.S. Cold War History, Dies at 100", + "link": "https://www.nytimes.com/2023/11/29/us/henry-kissinger-dead.html", + "pubDate": "Thu, 30 Nov 2023 18:58:38 +0000", + "dc:creator": "David E. Sanger", + "content": "The most powerful secretary of state of the postwar era, he was both celebrated and reviled. His complicated legacy still resonates in relations with China, Russia and the Middle East.", + "contentSnippet": "The most powerful secretary of state of the postwar era, he was both celebrated and reviled. His complicated legacy still resonates in relations with China, Russia and the Middle East.", + "guid": "https://www.nytimes.com/2023/11/29/us/henry-kissinger-dead.html", + "categories": [ + { + "_": "Kissinger, Henry A", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "State Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Vietnam War", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "National Security Council", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Nixon, Richard Milhous", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Cold War Era", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Harvard University", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "USSR (Former Soviet Union)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T18:58:38.000Z" + }, + { + "creator": "Mujib Mashal and Hari Kumar", + "title": "An Alleged Plot\u2019s Burning Question: Why Would India Take the Risk?", + "link": "https://www.nytimes.com/2023/11/30/world/asia/india-us-sikh-new-york.html", + "pubDate": "Thu, 30 Nov 2023 18:39:29 +0000", + "dc:creator": "Mujib Mashal and Hari Kumar", + "content": "After an indictment accuses an Indian official of ordering an assassination on U.S. soil, diplomats and experts debate how far up the chain the scheme went.", + "contentSnippet": "After an indictment accuses an Indian official of ordering an assassination on U.S. soil, diplomats and experts debate how far up the chain the scheme went.", + "guid": "https://www.nytimes.com/2023/11/30/world/asia/india-us-sikh-new-york.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sikhs and Sikhism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Murders, Attempted Murders and Homicides", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Secession and Independence Movements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "India", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Modi, Narendra", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-30T18:39:29.000Z" + }, + { + "creator": "Katherine Rosman, Emma Bubola, Rachel Abrams and Russell Goldman", + "title": "Hostages Freed From Gaza Recount Violence, Hunger and Fear", + "link": "https://www.nytimes.com/2023/11/30/world/middleeast/israeli-hostages-stories.html", + "pubDate": "Thu, 30 Nov 2023 17:09:28 +0000", + "dc:creator": "Katherine Rosman, Emma Bubola, Rachel Abrams and Russell Goldman", + "content": "Hostages who have returned to Israel in the past week have come home malnourished, ill, injured and bearing psychological wounds.", + "contentSnippet": "Hostages who have returned to Israel in the past week have come home malnourished, ill, injured and bearing psychological wounds.", + "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/israeli-hostages-stories.html", + "categories": [ + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Idan, Avigail (2019- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-30T17:09:28.000Z" + }, + { + "creator": "Neil MacFarquhar", + "title": "Russia Asks Court to Label Gay Rights Movement as \u2018Extremist\u2019", + "link": "https://www.nytimes.com/2023/11/30/world/europe/russia-gay-rights-law.html", + "pubDate": "Thu, 30 Nov 2023 16:49:05 +0000", + "dc:creator": "Neil MacFarquhar", + "content": "Activists said the designation could put L.G.B.T.Q. people and their organizations under threat of criminal prosecution for something as simple as displaying the rainbow flag.", + "contentSnippet": "Activists said the designation could put L.G.B.T.Q. people and their organizations under threat of criminal prosecution for something as simple as displaying the rainbow flag.", + "guid": "https://www.nytimes.com/2023/11/30/world/europe/russia-gay-rights-law.html", + "categories": [ + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Homosexuality and Bisexuality", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Courts and the Judiciary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Discrimination", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Minorities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supreme Court of Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-11-30T16:49:05.000Z" + }, + { + "creator": "David Gelles", + "title": "Emirati Fund to Invest Billions in U.S. Firms for Climate Projects", + "link": "https://www.nytimes.com/2023/11/30/climate/emirati-fund-climate-cop28.html", + "pubDate": "Thu, 30 Nov 2023 16:39:28 +0000", + "dc:creator": "David Gelles", + "content": "An Abu Dhabi fund is expected to invest at least $30 billion in climate projects with some of the biggest names in North American finance.", + "contentSnippet": "An Abu Dhabi fund is expected to invest at least $30 billion in climate projects with some of the biggest names in North American finance.", + "guid": "https://www.nytimes.com/2023/11/30/climate/emirati-fund-climate-cop28.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United Nations Framework Convention on Climate Change", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alternative and Renewable Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "BlackRock Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Brookfield Asset Management", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-11-30T16:39:28.000Z" + }, + { + "creator": "Mark Landler", + "title": "How a Book Publishing \u2018Mistake\u2019 Reignited the U.K.\u2019s Royal Racism Furor", + "link": "https://www.nytimes.com/2023/11/30/world/europe/uk-royals-book-endgame-racism.html", + "pubDate": "Thu, 30 Nov 2023 16:38:36 +0000", + "dc:creator": "Mark Landler", + "content": "The rollout of \u201cEndgame\u201d caused a scandal after a quickly withdrawn translation named family members said to have asked about the skin color of Prince Harry and Meghan\u2019s future son.", + "contentSnippet": "The rollout of \u201cEndgame\u201d caused a scandal after a quickly withdrawn translation named family members said to have asked about the skin color of Prince Harry and Meghan\u2019s future son.", + "guid": "https://www.nytimes.com/2023/11/30/world/europe/uk-royals-book-endgame-racism.html", + "categories": [ + { + "_": "Royal Families", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Books and Literature", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Endgame: Inside the Royal Family and the Monarchy's Fight for Survival (Book)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Scobie, Omid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Book Trade and Publishing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Race and Ethnicity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Harry, Duke of Sussex", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Markle, Meghan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Charles III, King of the United Kingdom", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Catherine, Duchess of Cambridge", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Morgan, Piers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netherlands", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T16:38:36.000Z" + }, + { + "creator": "Aaron Boxerman", + "title": "Jerusalem Shooting Kills at Least 3 People, Israeli Officials Say", + "link": "https://www.nytimes.com/2023/11/30/world/middleeast/jerusalem-shooting.html", + "pubDate": "Thu, 30 Nov 2023 16:24:06 +0000", + "dc:creator": "Aaron Boxerman", + "content": "Israel\u2019s Shin Bet security service said the gunmen were Palestinian brothers from East Jerusalem who were affiliated with Hamas.", + "contentSnippet": "Israel\u2019s Shin Bet security service said the gunmen were Palestinian brothers from East Jerusalem who were affiliated with Hamas.", + "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/jerusalem-shooting.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Jerusalem (Israel)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "East Jerusalem", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Magen David Adom", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Shin Bet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-11-30T16:24:06.000Z" + }, + { + "creator": "The New York Times", + "title": "Henry Kissinger\u2019s Life and Work in Photos", + "link": "https://www.nytimes.com/2023/11/30/world/asia/henry-kissingers-photos.html", + "pubDate": "Thu, 30 Nov 2023 16:17:26 +0000", + "dc:creator": "The New York Times", + "content": "The U.S. diplomat rose from a bookish childhood in Germany to become a power player in the halls of American politics.", + "contentSnippet": "The U.S. diplomat rose from a bookish childhood in Germany to become a power player in the halls of American politics.", + "guid": "https://www.nytimes.com/2023/11/30/world/asia/henry-kissingers-photos.html", + "categories": [ + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kissinger, Henry A", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-30T16:17:26.000Z" + }, + { + "creator": "Roni Rabin, Gaya Gupta, Rachel Abrams and Katherine Rosman", + "title": "What We Know About Israeli Hostages Hamas Released on Wednesday", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/hostages-released-wednesday-hamas-israel.html", + "pubDate": "Thu, 30 Nov 2023 14:36:07 +0000", + "dc:creator": "Roni Rabin, Gaya Gupta, Rachel Abrams and Katherine Rosman", + "content": "The sixth round of hostage releases since the cease-fire began involved 10 Israelis, four Thai nationals and two Israeli-Russian dual citizens.", + "contentSnippet": "The sixth round of hostage releases since the cease-fire began involved 10 Israelis, four Thai nationals and two Israeli-Russian dual citizens.", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/hostages-released-wednesday-hamas-israel.html", + "categories": [ + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "USSR (Former Soviet Union)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-30T14:36:07.000Z" + }, + { + "creator": "Stephanie Nolen", + "title": "Climate Change Drives New Cases of Malaria, Complicating Efforts to Fight the Disease", + "link": "https://www.nytimes.com/2023/11/30/health/malaria-climate-change.html", + "pubDate": "Thu, 30 Nov 2023 14:09:18 +0000", + "dc:creator": "Stephanie Nolen", + "content": "The number of malaria cases rose again in 2022, propelled by flooding and warmer weather in areas once free of the illness.", + "contentSnippet": "The number of malaria cases rose again in 2022, propelled by flooding and warmer weather in areas once free of the illness.", + "guid": "https://www.nytimes.com/2023/11/30/health/malaria-climate-change.html", + "categories": [ + { + "_": "Malaria", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Floods", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supply Chain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Disease Rates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pesticides", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Two Thousand Twenty Two", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Vaccination and Immunization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Weather", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World Health Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ethiopia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pakistan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Nigeria", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Uganda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-30T14:09:18.000Z" + }, + { + "creator": "Christina Goldbaum and Hiba Yazbek", + "title": "West Bank Residents Praise Hamas for Palestinian Prisoners\u2019 Release", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/west-bank-hamas-prisoners.html", + "pubDate": "Thu, 30 Nov 2023 12:49:55 +0000", + "dc:creator": "Christina Goldbaum and Hiba Yazbek", + "content": "Some people in the West Bank, where frustration with the Palestinian Authority has been simmering for years, believe Hamas and other armed groups are the only ones they can trust to protect them.", + "contentSnippet": "Some people in the West Bank, where frustration with the Palestinian Authority has been simmering for years, believe Hamas and other armed groups are the only ones they can trust to protect them.", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/west-bank-hamas-prisoners.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "West Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "audio-neutral-informative", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-30T12:49:55.000Z" + }, + { + "creator": "Justin Porter", + "title": "Thursday Briefing: A Race to Extend the Gaza Truce", + "link": "https://www.nytimes.com/2023/11/29/briefing/hamas-israel-ceasefire-us-india-sikh-opec.html", + "pubDate": "Thu, 30 Nov 2023 12:49:08 +0000", + "dc:creator": "Justin Porter", + "content": "Plus the U.S. charges an Indian man in an assassination plot.", + "contentSnippet": "Plus the U.S. charges an Indian man in an assassination plot.", + "guid": "https://www.nytimes.com/2023/11/29/briefing/hamas-israel-ceasefire-us-india-sikh-opec.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Organization of the Petroleum Exporting Countries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "India", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sikhs and Sikhism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nijjar, Hardeep Singh (1977-2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-30T12:49:08.000Z" + }, + { + "creator": "Justin Porter", + "title": "Wednesday Briefing: What to Watch at the U.N. Climate Talks", + "link": "https://www.nytimes.com/2023/11/28/briefing/cop28-un-climate-summit-israel-hamas-truce-china-economy.html", + "pubDate": "Thu, 30 Nov 2023 12:48:52 +0000", + "dc:creator": "Justin Porter", + "content": "Plus how New Zealand\u2019s Maori Wardens keep the peace.", + "contentSnippet": "Plus how New Zealand\u2019s Maori Wardens keep the peace.", + "guid": "https://www.nytimes.com/2023/11/28/briefing/cop28-un-climate-summit-israel-hamas-truce-china-economy.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T12:48:52.000Z" + }, + { + "creator": "Mike Ives", + "title": "Kissinger\u2019s Legacy Still Ripples Through Vietnam and Cambodia", + "link": "https://www.nytimes.com/2023/11/30/world/asia/kissinger-cambodia-vietnam-war-crimes.html", + "pubDate": "Thu, 30 Nov 2023 12:38:48 +0000", + "dc:creator": "Mike Ives", + "content": "His decision to authorize the bombing of Cambodia, efforts to extricate the U.S. from the Vietnam War and role in the rapprochement with China continue to be felt in Southeast Asia.", + "contentSnippet": "His decision to authorize the bombing of Cambodia, efforts to extricate the U.S. from the Vietnam War and role in the rapprochement with China continue to be felt in Southeast Asia.", + "guid": "https://www.nytimes.com/2023/11/30/world/asia/kissinger-cambodia-vietnam-war-crimes.html", + "categories": [ + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cambodia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Vietnam War", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kissinger, Henry A", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Khmer Rouge", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-11-30T12:38:48.000Z" + }, + { + "creator": "Edward Wong", + "title": "Paul Whelan Attacked in Russian Prison, His Family Says", + "link": "https://www.nytimes.com/2023/11/30/world/europe/paul-whelan-attack-russia-prison.html", + "pubDate": "Thu, 30 Nov 2023 12:14:58 +0000", + "dc:creator": "Edward Wong", + "content": "Mr. Whelan, who is serving a 16-year sentence in a labor camp, told his family that another inmate struck him in the face.", + "contentSnippet": "Mr. Whelan, who is serving a 16-year sentence in a labor camp, told his family that another inmate struck him in the face.", + "guid": "https://www.nytimes.com/2023/11/30/world/europe/paul-whelan-attack-russia-prison.html", + "categories": [ + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Political Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Whelan, Paul N", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T12:14:58.000Z" + }, + { + "creator": "Jason Horowitz", + "title": "Pope\u2019s Critics Feel the Sting After His Patience Runs Out", + "link": "https://www.nytimes.com/2023/11/29/world/europe/pope-francis-american-cardinals.html", + "pubDate": "Thu, 30 Nov 2023 10:31:11 +0000", + "dc:creator": "Jason Horowitz", + "content": "Vatican observers see a leader more willing to crack down on those seeking to derail his agenda for the Roman Catholic Church.", + "contentSnippet": "Vatican observers see a leader more willing to crack down on those seeking to derail his agenda for the Roman Catholic Church.", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/pope-francis-american-cardinals.html", + "categories": [ + { + "_": "Cardinals (Roman Catholic Prelates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Priests", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Roman Catholic Church", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Benedict XVI", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Burke, Raymond L", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Francis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-30T10:31:11.000Z" + }, + { + "creator": "David Gelles", + "title": "COP28 Begins With Fossil Fuels, and Frustration, Going Strong", + "link": "https://www.nytimes.com/2023/11/30/climate/cop28-climate-dubai-un.html", + "pubDate": "Thu, 30 Nov 2023 09:00:15 +0000", + "dc:creator": "David Gelles", + "content": "After decades of meetings, nations still haven\u2019t agreed to curb the main driver of global warming.", + "contentSnippet": "After decades of meetings, nations still haven\u2019t agreed to curb the main driver of global warming.", + "guid": "https://www.nytimes.com/2023/11/30/climate/cop28-climate-dubai-un.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United Nations Framework Convention on Climate Change", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Developing Countries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alternative and Renewable Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Al Jaber, Sultan (1973- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Dubai (United Arab Emirates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pollution", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-30T09:00:15.000Z" + }, + { + "creator": "Brad Plumer and Nadja Popovich", + "title": "Where the World Is (and Isn\u2019t) Making Progress on Climate Change", + "link": "https://www.nytimes.com/2023/11/30/climate/cop28-global-progress-carbon-emissions.html", + "pubDate": "Thu, 30 Nov 2023 09:00:03 +0000", + "dc:creator": "Brad Plumer and Nadja Popovich", + "content": "Emissions from electricity and transportation are projected to fall over time, a new report finds, but industry remains a major climate challenge.", + "contentSnippet": "Emissions from electricity and transportation are projected to fall over time, a new report finds, but industry remains a major climate challenge.", + "guid": "https://www.nytimes.com/2023/11/30/climate/cop28-global-progress-carbon-emissions.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carbon Dioxide", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Energy and Power", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fuel Emissions (Transportation)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rhodium Group LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations Framework Convention on Climate Change", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-30T09:00:03.000Z" + }, + { + "creator": "Vivian Nereim", + "title": "The Dilemmas of the U.A.E., a Petrostate, Preparing to Host COP28", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/uae-un-climate-summit-cop28.html", + "pubDate": "Thu, 30 Nov 2023 08:30:53 +0000", + "dc:creator": "Vivian Nereim", + "content": "Climate activists have balked at the fact that a leading oil producer, the United Arab Emirates, is hosting this year\u2019s U.N. climate talks. But Emirati officials say they, too, are grappling with hard questions.", + "contentSnippet": "Climate activists have balked at the fact that a leading oil producer, the United Arab Emirates, is hosting this year\u2019s U.N. climate talks. But Emirati officials say they, too, are grappling with hard questions.", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/uae-un-climate-summit-cop28.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United Nations Framework Convention on Climate Change", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alternative and Renewable Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Al Jaber, Sultan (1973- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Abu Dhabi (United Arab Emirates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Dubai (United Arab Emirates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United Arab Emirates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T08:30:53.000Z" + }, + { + "creator": "Emma Bubola", + "title": "Government Offices in E.U. Can Ban Wearing of Religious Symbols", + "link": "https://www.nytimes.com/2023/11/29/world/europe/eu-religious-symbols-ban-government.html", + "pubDate": "Thu, 30 Nov 2023 07:15:21 +0000", + "dc:creator": "Emma Bubola", + "content": "The bloc\u2019s Court of Justice, ruling in the case of a female employee in Belgium who was told she could not wear a hijab in the office, said the restriction was lawful.", + "contentSnippet": "The bloc\u2019s Court of Justice, ruling in the case of a female employee in Belgium who was told she could not wear a hijab in the office, said the restriction was lawful.", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/eu-religious-symbols-ban-government.html", + "categories": [ + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "European Court of Justice", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Courts and the Judiciary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Belgium", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Government Employees", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Muslims and Islam", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Religion and Belief", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freedom of Religion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-30T07:15:21.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Thursday Briefing", + "link": "https://www.nytimes.com/2023/11/30/briefing/climate-kissinger-hamas-truce.html", + "pubDate": "Thu, 30 Nov 2023 05:54:40 +0000", + "dc:creator": "Natasha Frost", + "content": "The U.N. climate summit.", + "contentSnippet": "The U.N. climate summit.", + "guid": "https://www.nytimes.com/2023/11/30/briefing/climate-kissinger-hamas-truce.html", + "isoDate": "2023-11-30T05:54:40.000Z" + }, + { + "creator": "Matthew Mpoke Bigg", + "title": "Freed Israeli Hostages Feel Cycles of Emotion After Captivity, Families Say", + "link": "https://www.nytimes.com/2023/11/28/world/middleeast/hostages-hamas-israel-captivity.html", + "pubDate": "Thu, 30 Nov 2023 05:30:36 +0000", + "dc:creator": "Matthew Mpoke Bigg", + "content": "\u2018Everything is just so fragile,\u2019 said a cousin of the first two hostages freed last month.", + "contentSnippet": "\u2018Everything is just so fragile,\u2019 said a cousin of the first two hostages freed last month.", + "guid": "https://www.nytimes.com/2023/11/28/world/middleeast/hostages-hamas-israel-captivity.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-30T05:30:36.000Z" + }, + { + "creator": "Talya Minsberg", + "title": "Fears Grow Over Fate of Bibas Family in Gaza", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/bibas-family-israel-gaza.html", + "pubDate": "Thu, 30 Nov 2023 05:04:53 +0000", + "dc:creator": "Talya Minsberg", + "content": "Hamas\u2019s armed wing said a mother and her two young children had been killed in Israeli airstrikes. Israel\u2019s military said it was assessing the claim.", + "contentSnippet": "Hamas\u2019s armed wing said a mother and her two young children had been killed in Israeli airstrikes. Israel\u2019s military said it was assessing the claim.", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/bibas-family-israel-gaza.html", + "categories": [ + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-11-30T05:04:53.000Z" + }, + { + "creator": "Stanley Reed", + "title": "In a Shaky Oil Market, OPEC Has Bitter Decisions to Make", + "link": "https://www.nytimes.com/2023/11/29/business/energy-environment/opec-oil-prices.html", + "pubDate": "Thu, 30 Nov 2023 04:31:24 +0000", + "dc:creator": "Stanley Reed", + "content": "Anticipating a drop in demand for 2024, major producers, led by Saudi Arabia, are trying to reduce supply.", + "contentSnippet": "Anticipating a drop in demand for 2024, major producers, led by Saudi Arabia, are trying to reduce supply.", + "guid": "https://www.nytimes.com/2023/11/29/business/energy-environment/opec-oil-prices.html", + "categories": [ + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Production", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Organization of the Petroleum Exporting Countries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Saudi Aramco", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Saudi Arabia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-30T04:31:24.000Z" + }, + { + "creator": "Ben Hubbard", + "title": "Gaza Mediators Seek Cease-Fire Extension", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/israel-hamas-hostages-gaza.html", + "pubDate": "Thu, 30 Nov 2023 02:08:33 +0000", + "dc:creator": "Ben Hubbard", + "content": "Officials from Qatar, Egypt and the U.S. hope that a succession of pauses will pave the way toward a larger goal: bringing the war to a close.", + "contentSnippet": "Officials from Qatar, Egypt and the U.S. hope that a succession of pauses will pave the way toward a larger goal: bringing the war to a close.", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/israel-hamas-hostages-gaza.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Peace Process", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-30T02:08:33.000Z" + }, + { + "creator": "Vjosa Isai", + "title": "Google Agrees to Pay Canadian Media for Using Their Content", + "link": "https://www.nytimes.com/2023/11/29/world/americas/google-canada-news-media-deal.html", + "pubDate": "Wed, 29 Nov 2023 23:37:49 +0000", + "dc:creator": "Vjosa Isai", + "content": "The Canadian government reached a deal with Google before a new law compelling tech giants to compensate news organizations comes into effect late next month.", + "contentSnippet": "The Canadian government reached a deal with Google before a new law compelling tech giants to compensate news organizations comes into effect late next month.", + "guid": "https://www.nytimes.com/2023/11/29/world/americas/google-canada-news-media-deal.html", + "categories": [ + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Instagram Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Canada", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T23:37:49.000Z" + }, + { + "creator": "Eduardo Medina", + "title": "Britain Says Bye-Bye to Its Only Pandas as They\u2019ll Soon Depart for China", + "link": "https://www.nytimes.com/2023/11/29/world/europe/uk-pandas-return-china.html", + "pubDate": "Wed, 29 Nov 2023 22:57:16 +0000", + "dc:creator": "Eduardo Medina", + "content": "The playful, waddling bears charmed millions of people at the Edinburgh Zoo of the Royal Zoological Society of Scotland.", + "contentSnippet": "The playful, waddling bears charmed millions of people at the Edinburgh Zoo of the Royal Zoological Society of Scotland.", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/uk-pandas-return-china.html", + "categories": [ + { + "_": "Zoos", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pandas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Animals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Edinburgh (Scotland)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Scotland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T22:57:16.000Z" + }, + { + "creator": "Motoko Rich, Hikari Hida and Hisako Ueno", + "title": "1 Dead as U.S. Air Force Osprey Crashes in Southern Japan", + "link": "https://www.nytimes.com/2023/11/29/world/asia/us-osprey-crash-japan.html", + "pubDate": "Wed, 29 Nov 2023 22:18:19 +0000", + "dc:creator": "Motoko Rich, Hikari Hida and Hisako Ueno", + "content": "The incident comes three months after three Marines died in an Osprey crash in Australia.", + "contentSnippet": "The incident comes three months after three Marines died in an Osprey crash in Australia.", + "guid": "https://www.nytimes.com/2023/11/29/world/asia/us-osprey-crash-japan.html", + "categories": [ + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Aviation Accidents, Safety and Disasters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rescues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Air Force", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T22:18:19.000Z" + }, + { + "creator": "Catherine Porter and Aurelien Breeden", + "title": "\u00c9ric Dupond-Moretti, France\u2019s Justice Minister, Is Cleared of Abuse of Power", + "link": "https://www.nytimes.com/2023/11/29/world/europe/france-justice-minister-verdict.html", + "pubDate": "Wed, 29 Nov 2023 22:10:31 +0000", + "dc:creator": "Catherine Porter and Aurelien Breeden", + "content": "\u00c9ric Dupond-Moretti was charged with using his position as a weapon to order investigations into four magistrates he had recently clashed with.", + "contentSnippet": "\u00c9ric Dupond-Moretti was charged with using his position as a weapon to order investigations into four magistrates he had recently clashed with.", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/france-justice-minister-verdict.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Courts and the Judiciary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ethics and Official Misconduct", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conflicts of Interest", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dupond-Moretti, Eric", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Macron, Emmanuel (1977- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T22:10:31.000Z" + }, + { + "creator": "Amanda Taub", + "title": "Paris, 1919: History\u2019s Slingshot", + "link": "https://www.nytimes.com/2023/11/29/world/europe/paris-1919-historys-slingshot.html", + "pubDate": "Wed, 29 Nov 2023 21:56:07 +0000", + "dc:creator": "Amanda Taub", + "content": "What happened in early 20th century Europe still propels much of modern politics, including the conflict in Gaza and Israel.", + "contentSnippet": "What happened in early 20th century Europe still propels much of modern politics, including the conflict in Gaza and Israel.", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/paris-1919-historys-slingshot.html", + "categories": [ + { + "_": "internal-sub-only-nl", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Books and Literature", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World War I (1914-18)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Treaty of Versailles (1919)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "MacMillan, Margaret O (1943- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Lansing, Robert", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Tony Judt", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-29T21:56:07.000Z" + }, + { + "creator": "Yara Bayoumy", + "title": "Israeli Raid Kills 4 in West Bank, Palestinian Officials Say", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/israeli-raid-two-children-dead-jenin.html", + "pubDate": "Wed, 29 Nov 2023 21:37:31 +0000", + "dc:creator": "Yara Bayoumy", + "content": "Two children, ages 8 and 15, and two members of armed groups were killed in a raid in Jenin, according to the Palestinian health ministry and a camp official.", + "contentSnippet": "Two children, ages 8 and 15, and two members of armed groups were killed in a raid in Jenin, according to the Palestinian health ministry and a camp official.", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/israeli-raid-two-children-dead-jenin.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Jenin (West Bank)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T21:37:31.000Z" + }, + { + "creator": "Helene Cooper, Eric Schmitt and Julian E. Barnes", + "title": "Iranian and U.S. Attacks Could Lead to Larger War, Officials Say", + "link": "https://www.nytimes.com/2023/11/29/us/politics/israel-iran-gaza-us-attacks.html", + "pubDate": "Wed, 29 Nov 2023 21:32:58 +0000", + "dc:creator": "Helene Cooper, Eric Schmitt and Julian E. Barnes", + "content": "U.S. forces and militias backed by Iran have launched tit-for-tat attacks, fueling concerns as Israeli forces have also clashed with Iranian-backed groups.", + "contentSnippet": "U.S. forces and militias backed by Iran have launched tit-for-tat attacks, fueling concerns as Israeli forces have also clashed with Iranian-backed groups.", + "guid": "https://www.nytimes.com/2023/11/29/us/politics/israel-iran-gaza-us-attacks.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drones (Pilotless Planes)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-29T21:32:58.000Z" + }, + { + "creator": "Karoun Demirjian", + "title": "As Congress Weighs Aid to Israel, Some Democrats Want Strings Attached", + "link": "https://www.nytimes.com/2023/11/29/us/politics/israel-aid-senate.html", + "pubDate": "Wed, 29 Nov 2023 20:35:57 +0000", + "dc:creator": "Karoun Demirjian", + "content": "Democrats are clashing with each other and the Biden administration over whether to attach conditions, including measures to avoid civilian casualties, to security assistance.", + "contentSnippet": "Democrats are clashing with each other and the Biden administration over whether to attach conditions, including measures to avoid civilian casualties, to security assistance.", + "guid": "https://www.nytimes.com/2023/11/29/us/politics/israel-aid-senate.html", + "categories": [ + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Democratic Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T20:35:57.000Z" + }, + { + "creator": "Katherine Rosman", + "title": "Aunt of 4-Year-Old Israeli Hostage Talks About Her Time in Captivity", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/avigail-idan-israeli-hostage.html", + "pubDate": "Wed, 29 Nov 2023 19:16:12 +0000", + "dc:creator": "Katherine Rosman", + "content": "Avigail Idan shared one piece of pita bread per day with four others, and did not have a shower or bath during her 50 days in captivity, her aunt said.", + "contentSnippet": "Avigail Idan shared one piece of pita bread per day with four others, and did not have a shower or bath during her 50 days in captivity, her aunt said.", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/avigail-idan-israeli-hostage.html", + "categories": [ + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T19:16:12.000Z" + }, + { + "creator": "Isabella Kwai", + "title": "London\u2019s Black Cabs Can Soon Join Uber. But Will They?", + "link": "https://www.nytimes.com/2023/11/29/world/europe/uber-black-cab-taxi-london.html", + "pubDate": "Wed, 29 Nov 2023 18:59:25 +0000", + "dc:creator": "Isabella Kwai", + "content": "In 2024, passengers are set to have the option to book black cabs through Uber. After longstanding tensions, a union for drivers said they \u201chave no interest.\u201d", + "contentSnippet": "In 2024, passengers are set to have the option to book black cabs through Uber. After longstanding tensions, a union for drivers said they \u201chave no interest.\u201d", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/uber-black-cab-taxi-london.html", + "categories": [ + { + "_": "Taxicabs and Taxicab Drivers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Uber Technologies Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "London (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T18:59:25.000Z" + }, + { + "creator": "Elena Shao and Lazaro Gamio", + "title": "Here Are the Statuses of 240 Israeli Hostages Taken Into Gaza on Oct. 7", + "link": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-hamas-hostages-status.html", + "pubDate": "Wed, 29 Nov 2023 18:11:00 +0000", + "dc:creator": "Elena Shao and Lazaro Gamio", + "content": "Eighty-five of the roughly 240 people captured have now been released.", + "contentSnippet": "Eighty-five of the roughly 240 people captured have now been released.", + "guid": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-hamas-hostages-status.html", + "categories": [ + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "West Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T18:11:00.000Z" + }, + { + "creator": "Claire Moses", + "title": "Scottish Country Music Venue Ends Display of Confederate Flag", + "link": "https://www.nytimes.com/2023/11/29/world/europe/confederate-flag-grand-ole-opry-glasgow.html", + "pubDate": "Wed, 29 Nov 2023 18:05:46 +0000", + "dc:creator": "Claire Moses", + "content": "The flag, and efforts to ban it, had caused a rift among members of the Grand Ole Opry in Glasgow.", + "contentSnippet": "The flag, and efforts to ban it, had caused a rift among members of the Grand Ole Opry in Glasgow.", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/confederate-flag-grand-ole-opry-glasgow.html", + "categories": [ + { + "_": "Flags, Emblems and Insignia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Country Music", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Organizations, Societies and Clubs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civil War (US) (1861-65)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bars and Nightclubs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Glasgow (Scotland)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Confederate States of America", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T18:05:46.000Z" + }, + { + "creator": "Sheera Frenkel", + "title": "Some in Netanyahu\u2019s Government Pressure Him to Reject Longer Cease-Fire", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/netanyahu-cease-fire-politics.html", + "pubDate": "Wed, 29 Nov 2023 17:03:59 +0000", + "dc:creator": "Sheera Frenkel", + "content": "\u201cStopping the war = breaking apart the government,\u201d said Itamar Ben-Gvir, Israel\u2019s far-right national security minister, who threatened to leave the governing coalition.", + "contentSnippet": "\u201cStopping the war = breaking apart the government,\u201d said Itamar Ben-Gvir, Israel\u2019s far-right national security minister, who threatened to leave the governing coalition.", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/netanyahu-cease-fire-politics.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ben-Gvir, Itamar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T17:03:59.000Z" + }, + { + "creator": "Lara Jakes and Michael Crowley", + "title": "NATO Ministers Vow to Maintain Support for Ukraine", + "link": "https://www.nytimes.com/2023/11/29/world/europe/nato-blinken-ukraine.html", + "pubDate": "Wed, 29 Nov 2023 16:16:19 +0000", + "dc:creator": "Lara Jakes and Michael Crowley", + "content": "Amid questions over Western resolve, Secretary of State Antony J. Blinken and other diplomats stressed their commitment to Kyiv\u2019s bid to join the alliance.", + "contentSnippet": "Amid questions over Western resolve, Secretary of State Antony J. Blinken and other diplomats stressed their commitment to Kyiv\u2019s bid to join the alliance.", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/nato-blinken-ukraine.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Blinken, Antony J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Stoltenberg, Jens", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Brussels (Belgium)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "North Atlantic Treaty Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-11-29T16:16:19.000Z" + }, + { + "creator": "Mujib Mashal and Suhasini Raj", + "title": "India Ignored Repeated Warnings Before Tunnel Trapped 41 Men", + "link": "https://www.nytimes.com/2023/11/29/world/asia/india-tunnel-trapped.html", + "pubDate": "Wed, 29 Nov 2023 15:58:59 +0000", + "dc:creator": "Mujib Mashal and Suhasini Raj", + "content": "Environmentalists argued that a road project was destabilizing the fragile Himalayan landscape. The government maneuvered to continue it.", + "contentSnippet": "Environmentalists argued that a road project was destabilizing the fragile Himalayan landscape. The government maneuvered to continue it.", + "guid": "https://www.nytimes.com/2023/11/29/world/asia/india-tunnel-trapped.html", + "categories": [ + { + "_": "India", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Bridges and Tunnels", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rescues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Infrastructure (Public Works)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Modi, Narendra", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Uttarakhand (India)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T15:58:59.000Z" + }, + { + "creator": "Ben Hubbard, Thomas Fuller and Talya Minsberg", + "title": "Hamas Releases 12 More Hostages as Nations\u2019 Spy Chiefs Go to Qatar for Talks", + "link": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-hamas-hostages-prisoners-exchange.html", + "pubDate": "Wed, 29 Nov 2023 13:06:50 +0000", + "dc:creator": "Ben Hubbard, Thomas Fuller and Talya Minsberg", + "content": "Mediators hope the current model of a daily cease-fire with the release of Israeli captives in exchange for freeing Palestinian prisoners would create the conditions for longer-term discussions.", + "contentSnippet": "Mediators hope the current model of a daily cease-fire with the release of Israeli captives in exchange for freeing Palestinian prisoners would create the conditions for longer-term discussions.", + "guid": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-hamas-hostages-prisoners-exchange.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Qatar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T13:06:50.000Z" + }, + { + "creator": "Andr\u00e9s R. Mart\u00ednez", + "title": "The truce between Israel and Hamas held for another day.", + "link": "https://www.nytimes.com/2023/11/29/world/middleeast/the-truce-between-israel-and-hamas-appeared-to-hold-for-another-day.html", + "pubDate": "Wed, 29 Nov 2023 11:09:08 +0000", + "dc:creator": "Andr\u00e9s R. Mart\u00ednez", + "content": "", + "contentSnippet": "", + "guid": "https://www.nytimes.com/2023/11/29/world/middleeast/the-truce-between-israel-and-hamas-appeared-to-hold-for-another-day.html", + "isoDate": "2023-11-29T11:09:08.000Z" + }, + { + "creator": "Christopher F. Schuetze", + "title": "Germany\u2019s Much-Vaunted Strategic Pivot Stalls", + "link": "https://www.nytimes.com/2023/11/29/world/europe/germany-military-strategic-pivot-stalls.html", + "pubDate": "Wed, 29 Nov 2023 10:02:48 +0000", + "dc:creator": "Christopher F. Schuetze", + "content": "In the days after Russia\u2019s invasion of Ukraine, Chancellor Olaf Scholz promised to revitalize Germany\u2019s military. Nearly two years on, major change has yet to be felt.", + "contentSnippet": "In the days after Russia\u2019s invasion of Ukraine, Chancellor Olaf Scholz promised to revitalize Germany\u2019s military. Nearly two years on, major change has yet to be felt.", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/germany-military-strategic-pivot-stalls.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Infrastructure (Public Works)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Scholz, Olaf (1958- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Germany", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T10:02:48.000Z" + }, + { + "creator": "Abdi Latif Dahir", + "title": "Kenya\u2019s Leader Lifts His Global Profile. At Home, the Public Fumes.", + "link": "https://www.nytimes.com/2023/11/29/world/africa/kenya-president-ruto.html", + "pubDate": "Wed, 29 Nov 2023 08:17:05 +0000", + "dc:creator": "Abdi Latif Dahir", + "content": "President William Ruto has drawn attention internationally as a climate champion and peace mediator but faces domestic discontent over rising food and fuel prices, and new taxes.", + "contentSnippet": "President William Ruto has drawn attention internationally as a climate champion and peace mediator but faces domestic discontent over rising food and fuel prices, and new taxes.", + "guid": "https://www.nytimes.com/2023/11/29/world/africa/kenya-president-ruto.html", + "categories": [ + { + "_": "Kenya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Nairobi (Kenya)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ruto, William", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation (Economics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Floods", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Haiti", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Police Brutality, Misconduct and Shootings", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kenyatta, Uhuru Muigai", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T08:17:05.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Wednesday Briefing", + "link": "https://www.nytimes.com/2023/11/29/briefing/biden-israel-climate-dubai.html", + "pubDate": "Wed, 29 Nov 2023 05:23:36 +0000", + "dc:creator": "Natasha Frost", + "content": "President Biden\u2019s solidarity with Israel.", + "contentSnippet": "President Biden\u2019s solidarity with Israel.", + "guid": "https://www.nytimes.com/2023/11/29/briefing/biden-israel-climate-dubai.html", + "isoDate": "2023-11-29T05:23:36.000Z" + }, + { + "creator": "Patrick Kingsley", + "title": "A Gaza Truce Aids Both Israel and Hamas. Until the Calculus Changes.", + "link": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-gaza-truce-analysis.html", + "pubDate": "Wed, 29 Nov 2023 01:22:24 +0000", + "dc:creator": "Patrick Kingsley", + "content": "Both Israel and Hamas are reaping benefits from the cease-fire, but as the hostage-for-prisoner exchanges continue, Israeli leaders may feel growing pressure to resume the war.", + "contentSnippet": "Both Israel and Hamas are reaping benefits from the cease-fire, but as the hostage-for-prisoner exchanges continue, Israeli leaders may feel growing pressure to resume the war.", + "guid": "https://www.nytimes.com/2023/11/28/world/middleeast/israel-gaza-truce-analysis.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Peace Process", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T01:22:24.000Z" + }, + { + "creator": "Jason Horowitz and Ruth Graham", + "title": "Reports Say Pope Francis Is Removing Cardinal Burke\u2019s Vatican Home and Salary", + "link": "https://www.nytimes.com/2023/11/28/world/europe/pope-francis-cardinal-burke-vatican.html", + "pubDate": "Tue, 28 Nov 2023 22:54:16 +0000", + "dc:creator": "Jason Horowitz and Ruth Graham", + "content": "Word of the action against Cardinal Raymond Burke came after the prelate\u2019s increasingly pointed critiques of the reform-minded pope.", + "contentSnippet": "Word of the action against Cardinal Raymond Burke came after the prelate\u2019s increasingly pointed critiques of the reform-minded pope.", + "guid": "https://www.nytimes.com/2023/11/28/world/europe/pope-francis-cardinal-burke-vatican.html", + "categories": [ + { + "_": "Roman Catholic Church", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Francis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Popes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cardinals (Roman Catholic Prelates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Burke, Raymond L", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Vatican City", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-28T22:54:16.000Z" + }, + { + "creator": "Elisabetta Povoledo", + "title": "Pope Francis Cancels Trip to COP28 Climate Summit After Getting Sick", + "link": "https://www.nytimes.com/2023/11/28/world/europe/pope-francis-cop28.html", + "pubDate": "Tue, 28 Nov 2023 21:19:31 +0000", + "dc:creator": "Elisabetta Povoledo", + "content": "Days after the pontiff was forced to slow down because of a flu, his doctors advised him to not travel to Dubai for COP28. Francis has made climate activism a hallmark of his papacy.", + "contentSnippet": "Days after the pontiff was forced to slow down because of a flu, his doctors advised him to not travel to Dubai for COP28. Francis has made climate activism a hallmark of his papacy.", + "guid": "https://www.nytimes.com/2023/11/28/world/europe/pope-francis-cop28.html", + "categories": [ + { + "_": "Francis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Roman Catholic Church", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations Framework Convention on Climate Change", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Popes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dubai (United Arab Emirates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Vatican City", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-28T21:19:31.000Z" + }, + { + "creator": "James Wagner", + "title": "Return to Haiti of a Coup Leader Raises Concerns of More Turmoil", + "link": "https://www.nytimes.com/2023/11/30/world/americas/guy-philippe-haiti-return.html", + "pubDate": "Fri, 01 Dec 2023 01:24:00 +0000", + "dc:creator": "James Wagner", + "content": "Guy Philippe, who helped lead the coup that ousted President Jean-Bertrand Aristide in 2004, is back in the politically unstable country after serving time in a U.S. prison.", + "contentSnippet": "Guy Philippe, who helped lead the coup that ousted President Jean-Bertrand Aristide in 2004, is back in the politically unstable country after serving time in a U.S. prison.", + "guid": "https://www.nytimes.com/2023/11/30/world/americas/guy-philippe-haiti-return.html", + "categories": [ + { + "_": "Haiti", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Philippe, Guy (1968- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Moise, Jovenel (1968- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Aristide, Jean-Bertrand", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Coups D'Etat and Attempted Coups D'Etat", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-01T01:24:00.000Z" + }, + { + "creator": "Michael Crowley and Thomas Fuller", + "title": "Blinken Urges Israel to Reduce Civilian Deaths as More Hostages Are Freed", + "link": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hamas-peace-process.html", + "pubDate": "Fri, 01 Dec 2023 01:12:30 +0000", + "dc:creator": "Michael Crowley and Thomas Fuller", + "content": "Secretary of State Antony J. Blinken met with Israeli officials and a Palestinian leader on Thursday to seek improved conditions for Gaza\u2019s civilians and to try to exert influence over Israel\u2019s expected military offensive.", + "contentSnippet": "Secretary of State Antony J. Blinken met with Israeli officials and a Palestinian leader on Thursday to seek improved conditions for Gaza\u2019s civilians and to try to exert influence over Israel\u2019s expected military offensive.", + "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hamas-peace-process.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Peace Process", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-01T01:12:30.000Z" + }, + { + "creator": "Katie Rogers, Julian E. Barnes and Glenn Thrush", + "title": "Biden\u2019s Bond With Modi, India\u2019s Leader, Is Tested by Alleged Plot", + "link": "https://www.nytimes.com/2023/11/30/us/politics/biden-india-modi-sikh-plot.html", + "pubDate": "Fri, 01 Dec 2023 01:03:40 +0000", + "dc:creator": "Katie Rogers, Julian E. Barnes and Glenn Thrush", + "content": "The charges illustrate how complicated it can be for American presidents to balance their relationships with deeply imperfect allies.", + "contentSnippet": "The charges illustrate how complicated it can be for American presidents to balance their relationships with deeply imperfect allies.", + "guid": "https://www.nytimes.com/2023/11/30/us/politics/biden-india-modi-sikh-plot.html", + "categories": [ + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sikhs and Sikhism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Justice Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Canada", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "India", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "New York State", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-01T01:03:40.000Z" + }, + { + "creator": "Ronen Bergman and Adam Goldman", + "title": "Israel Knew Hamas\u2019s Attack Plan Over a Year Ago", + "link": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hamas-attack-intelligence.html", + "pubDate": "Fri, 01 Dec 2023 00:24:33 +0000", + "dc:creator": "Ronen Bergman and Adam Goldman", + "content": "A blueprint reviewed by The Times laid out the attack in detail. Israeli officials dismissed it as aspirational and ignored specific warnings.", + "contentSnippet": "A blueprint reviewed by The Times laid out the attack in detail. Israeli officials dismissed it as aspirational and ignored specific warnings.", + "guid": "https://www.nytimes.com/2023/11/30/world/middleeast/israel-hamas-attack-intelligence.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Border Barriers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-01T00:24:33.000Z" + }, + { + "creator": "Adam Satariano, Megan Specia and Glenn Thrush", + "title": "UK Accuses Russia of Yearslong Cyberattacks", + "link": "https://www.nytimes.com/2023/12/07/world/europe/uk-russia-cyberattacks.html", + "pubDate": "Fri, 08 Dec 2023 08:13:40 +0000", + "dc:creator": "Adam Satariano, Megan Specia and Glenn Thrush", + "content": "The government said a group linked to Russia\u2019s intelligence service carried out sustained operations to undermine trust in Britain\u2019s political system.", + "contentSnippet": "The government said a group linked to Russia\u2019s intelligence service carried out sustained operations to undermine trust in Britain\u2019s political system.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/uk-russia-cyberattacks.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cyberwarfare and Defense", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Cameron, David", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Federal Security Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-08T08:13:40.000Z" + }, + { + "creator": "The New York Times", + "title": "Israel-Hamas War: Israel Releases Evidence It Says Shows Hamas Operates Near Civilian Shelters", + "link": "https://www.nytimes.com/live/2023/12/07/world/israel-hamas-war-gaza-news", + "pubDate": "Fri, 08 Dec 2023 07:42:35 +0000", + "dc:creator": "The New York Times", + "content": "The Israeli military posted unverified videos and maps that it claims showed rockets had been fired from areas in southern Gaza where civilians were seeking shelter.", + "contentSnippet": "The Israeli military posted unverified videos and maps that it claims showed rockets had been fired from areas in southern Gaza where civilians were seeking shelter.", + "guid": "https://www.nytimes.com/live/2023/12/07/world/israel-hamas-war-gaza-news", + "isoDate": "2023-12-08T07:42:35.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Friday Briefing", + "link": "https://www.nytimes.com/2023/12/08/briefing/hamas-israel-ukraine-sunak.html", + "pubDate": "Fri, 08 Dec 2023 05:21:35 +0000", + "dc:creator": "Natasha Frost", + "content": "Israeli allegations about Hamas\u2019s tactics.", + "contentSnippet": "Israeli allegations about Hamas\u2019s tactics.", + "guid": "https://www.nytimes.com/2023/12/08/briefing/hamas-israel-ukraine-sunak.html", + "isoDate": "2023-12-08T05:21:35.000Z" + }, + { + "creator": "Talya Minsberg", + "title": "In Israel, Hanukkah Begins in the Shadow of Two Months of War", + "link": "https://www.nytimes.com/2023/12/07/world/middleeast/hanukkah-israel-war.html", + "pubDate": "Fri, 08 Dec 2023 04:36:58 +0000", + "dc:creator": "Talya Minsberg", + "content": "The holiday held a new meaning for many Israelis in the wake of the Oct. 7 terrorist attacks, including relatives of people still held hostage in Gaza and reservists called up to fight against Hamas.", + "contentSnippet": "The holiday held a new meaning for many Israelis in the wake of the Oct. 7 terrorist attacks, including relatives of people still held hostage in Gaza and reservists called up to fight against Hamas.", + "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/hanukkah-israel-war.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hanukkah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Jews and Judaism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Tel Aviv (Israel)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-08T04:36:58.000Z" + }, + { + "creator": "Zolan Kanno-Youngs", + "title": "Biden Tied Ukraine Aid to Border Security, and It Backfired on Him", + "link": "https://www.nytimes.com/2023/12/07/us/politics/biden-immigration-ukraine.html", + "pubDate": "Fri, 08 Dec 2023 01:44:28 +0000", + "dc:creator": "Zolan Kanno-Youngs", + "content": "President Biden faces difficult choices about how far to go in giving in to conservative demands that he choke off the number of migrants admitted to the United States.", + "contentSnippet": "President Biden faces difficult choices about how far to go in giving in to conservative demands that he choke off the number of migrants admitted to the United States.", + "guid": "https://www.nytimes.com/2023/12/07/us/politics/biden-immigration-ukraine.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asylum, Right of", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-08T01:44:28.000Z" + }, + { + "creator": "Liam Stack, Yara Bayoumy, Aric Toler, Lauren Leatherby and Michael Levenson", + "title": "Israel Says Hamas Fired Rockets From Near Gaza Shelters", + "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-hamas-gaza-rockets.html", + "pubDate": "Fri, 08 Dec 2023 00:40:38 +0000", + "dc:creator": "Liam Stack, Yara Bayoumy, Aric Toler, Lauren Leatherby and Michael Levenson", + "content": "The claim adds to the growing concerns that there is no safe place in the enclave for those who have been displaced since the war began.", + "contentSnippet": "The claim adds to the growing concerns that there is no safe place in the enclave for those who have been displaced since the war began.", + "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-hamas-gaza-rockets.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-08T00:40:38.000Z" + }, + { + "creator": "Ana Swanson", + "title": "Lawmakers Press Biden Administration for Tougher Curbs on China Tech", + "link": "https://www.nytimes.com/2023/12/07/us/politics/lawmakers-biden-china-tech.html", + "pubDate": "Thu, 07 Dec 2023 23:57:02 +0000", + "dc:creator": "Ana Swanson", + "content": "Republican legislators argue that the Biden administration has been ill-equipped and unmotivated in a technology fight with Beijing.", + "contentSnippet": "Republican legislators argue that the Biden administration has been ill-equipped and unmotivated in a technology fight with Beijing.", + "guid": "https://www.nytimes.com/2023/12/07/us/politics/lawmakers-biden-china-tech.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Trade and World Market", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Chips", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Commerce Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "House Committee on Foreign Affairs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T23:57:02.000Z" + }, + { + "creator": "Niki Kitsantonis and Safak Timur", + "title": "Greece and Turkey, Long at Odds, Vow to Work Together Peacefully", + "link": "https://www.nytimes.com/2023/12/07/world/europe/greece-turkey-declaration-of-friendly-relations.html", + "pubDate": "Thu, 07 Dec 2023 22:59:07 +0000", + "dc:creator": "Niki Kitsantonis and Safak Timur", + "content": "The two rivals have been at the brink of military conflict several times in recent decades. An agreement signed by the countries\u2019 leaders on Thursday aims to change that.", + "contentSnippet": "The two rivals have been at the brink of military conflict several times in recent decades. An agreement signed by the countries\u2019 leaders on Thursday aims to change that.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/greece-turkey-declaration-of-friendly-relations.html", + "categories": [ + { + "_": "Greece", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Turkey", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Erdogan, Recep Tayyip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mitsotakis, Kyriakos", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-07T22:59:07.000Z" + }, + { + "creator": "Claire Moses", + "title": "Benjamin Zephaniah, Poet of Social Justice Issues, Dies at 65", + "link": "https://www.nytimes.com/2023/12/07/world/europe/benjamin-zephaniah-dead.html", + "pubDate": "Thu, 07 Dec 2023 22:32:37 +0000", + "dc:creator": "Claire Moses", + "content": "He opened the door for future generations of poets of color to use their own voices.", + "contentSnippet": "He opened the door for future generations of poets of color to use their own voices.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/benjamin-zephaniah-dead.html", + "categories": [ + { + "_": "Zephaniah, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Poetry and Poets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Books and Literature", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Race and Ethnicity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Black People", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T22:32:37.000Z" + }, + { + "creator": "Maya Tekeli and Emma Bubola", + "title": "Denmark Bans Quran Burning", + "link": "https://www.nytimes.com/2023/12/07/world/europe/denmark-quran-burning-ban.html", + "pubDate": "Thu, 07 Dec 2023 21:46:43 +0000", + "dc:creator": "Maya Tekeli and Emma Bubola", + "content": "The law came after a series of public Quran burnings in Scandinavia caused uproar in Muslim communities.", + "contentSnippet": "The law came after a series of public Quran burnings in Scandinavia caused uproar in Muslim communities.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/denmark-quran-burning-ban.html", + "categories": [ + { + "_": "Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Koran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freedom of Speech and Expression", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sweden", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T21:46:43.000Z" + }, + { + "creator": "Mark Landler and Stephen Castle", + "title": "What Kevin McCarthy and Rishi Sunak Have in Common: Unmanageable Parties", + "link": "https://www.nytimes.com/2023/12/07/world/europe/kevin-mccarthy-rishi-sunak-rwanda-gop.html", + "pubDate": "Thu, 07 Dec 2023 21:42:21 +0000", + "dc:creator": "Mark Landler and Stephen Castle", + "content": "A former speaker of the U.S. House and the British prime minister have struggled to corral the extreme right factions of their parties.", + "contentSnippet": "A former speaker of the U.S. House and the British prime minister have struggled to corral the extreme right factions of their parties.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/kevin-mccarthy-rishi-sunak-rwanda-gop.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain Withdrawal from EU (Brexit)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asylum, Right of", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Legislatures and Parliaments", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "McCarthy, Kevin (1965- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sunak, Rishi (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T21:42:21.000Z" + }, + { + "creator": "Isabel Kershner", + "title": "Son of Israeli War Cabinet Member Killed in Action in Gaza", + "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-war-cabinet-member-son-killed.html", + "pubDate": "Thu, 07 Dec 2023 21:34:41 +0000", + "dc:creator": "Isabel Kershner", + "content": "Gal Meir Eisenkot, 25, was the son of Lt. Gen. Gadi Eisenkot, a former military chief who went into politics and is part of the group directing the war effort.", + "contentSnippet": "Gal Meir Eisenkot, 25, was the son of Lt. Gen. Gadi Eisenkot, a former military chief who went into politics and is part of the group directing the war effort.", + "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-war-cabinet-member-son-killed.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Eisenkot, Gadi", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-07T21:34:41.000Z" + }, + { + "creator": "Jonathan Wolfe", + "title": "Friday Briefing: Israel Says Hamas Fired Rockets From Near Shelters", + "link": "https://www.nytimes.com/2023/12/07/briefing/friday-briefing-israel-says-hamas-fired-rockets-from-near-shelters.html", + "pubDate": "Thu, 07 Dec 2023 21:17:05 +0000", + "dc:creator": "Jonathan Wolfe", + "content": "Plus, \u201cOppenheimer\u201d is coming to Japan.", + "contentSnippet": "Plus, \u201cOppenheimer\u201d is coming to Japan.", + "guid": "https://www.nytimes.com/2023/12/07/briefing/friday-briefing-israel-says-hamas-fired-rockets-from-near-shelters.html", + "isoDate": "2023-12-07T21:17:05.000Z" + }, + { + "creator": "Alan Rappeport and Zolan Kanno-Youngs", + "title": "U.S. and Mexico Try to Promote Trade While Curbing Flow of Fentanyl", + "link": "https://www.nytimes.com/2023/12/07/us/politics/us-mexico-trade-fentanyl.html", + "pubDate": "Thu, 07 Dec 2023 21:08:52 +0000", + "dc:creator": "Alan Rappeport and Zolan Kanno-Youngs", + "content": "In her Mexico City visit, Treasury Secretary Janet L. Yellen sought to deepen economic ties while countering drug trafficking.", + "contentSnippet": "In her Mexico City visit, Treasury Secretary Janet L. Yellen sought to deepen economic ties while countering drug trafficking.", + "guid": "https://www.nytimes.com/2023/12/07/us/politics/us-mexico-trade-fentanyl.html", + "categories": [ + { + "_": "Fentanyl", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Economy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supply Chain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Investments", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation Reduction Act of 2022", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Treasury Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Yellen, Janet L", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Lopez Obrador, Andres Manuel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mexico", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T21:08:52.000Z" + }, + { + "creator": "Dennis Overbye and Katrina Miller", + "title": "Particle Physicists Offer a Road Map For the Next Decade", + "link": "https://www.nytimes.com/2023/12/07/science/particle-physics-muon-collider.html", + "pubDate": "Thu, 07 Dec 2023 20:12:19 +0000", + "dc:creator": "Dennis Overbye and Katrina Miller", + "content": "A \u201cmuon shot\u201d aims to study the basic forces of the cosmos. But meager federal budgets could limit its ambitions.", + "contentSnippet": "A \u201cmuon shot\u201d aims to study the basic forces of the cosmos. But meager federal budgets could limit its ambitions.", + "guid": "https://www.nytimes.com/2023/12/07/science/particle-physics-muon-collider.html", + "categories": [ + { + "_": "Federal Budget (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Physics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Large Hadron Collider", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Higgs Boson", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dark Matter (Astronomy)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "CERN", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Energy Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Fermi National Accelerator Laboratory", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Science Foundation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Illinois", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T20:12:19.000Z" + }, + { + "creator": "Matthew Mpoke Bigg", + "title": "Key Events in Israel and Gaza Since Oct. 7 Attack", + "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-gaza-hamas-war-timeline.html", + "pubDate": "Thu, 07 Dec 2023 20:11:52 +0000", + "dc:creator": "Matthew Mpoke Bigg", + "content": "On Oct. 7, Hamas and other militant groups launched an attack in Israel that killed hundreds. Israel responded with a military campaign that has devastated Gaza.", + "contentSnippet": "On Oct. 7, Hamas and other militant groups launched an attack in Israel that killed hundreds. Israel responded with a military campaign that has devastated Gaza.", + "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-gaza-hamas-war-timeline.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-07T20:11:52.000Z" + }, + { + "creator": "Victor Mather", + "title": "A City-Size Iceberg Is Moving Out of Antarctic Waters", + "link": "https://www.nytimes.com/2023/12/07/climate/iceberg-antarctica-a23a.html", + "pubDate": "Thu, 07 Dec 2023 20:05:49 +0000", + "dc:creator": "Victor Mather", + "content": "Next up, a yearslong ramble through the Southern Ocean and, eventually, a big melt.", + "contentSnippet": "Next up, a yearslong ramble through the Southern Ocean and, eventually, a big melt.", + "guid": "https://www.nytimes.com/2023/12/07/climate/iceberg-antarctica-a23a.html", + "categories": [ + { + "_": "Ice", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Antarctic Regions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Glaciers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oceans and Seas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Lamont-Doherty Earth Observatory", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Southern Ocean", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T20:05:49.000Z" + }, + { + "creator": "Megan Specia", + "title": "Ireland\u2019s Riot Was Not a Surprise to Those Who Watch the Far Right", + "link": "https://www.nytimes.com/2023/12/07/world/europe/dublin-riot-far-right.html", + "pubDate": "Thu, 07 Dec 2023 19:55:49 +0000", + "dc:creator": "Megan Specia", + "content": "The disorder in Dublin on Nov. 23 may have appeared to come from nowhere. But experts say it reflected long-running social problems and an emboldened anti-immigrant movement.", + "contentSnippet": "The disorder in Dublin on Nov. 23 may have appeared to come from nowhere. But experts say it reflected long-running social problems and an emboldened anti-immigrant movement.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/dublin-riot-far-right.html", + "categories": [ + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Varadkar, Leo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Dublin (Ireland)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ireland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T19:55:49.000Z" + }, + { + "creator": "Aric Toler and Lauren Leatherby", + "title": "Here is what we know about Israel\u2019s evidence that Hamas fired rockets from safe zones.", + "link": "https://www.nytimes.com/2023/12/08/world/middleeast/here-is-what-we-know-about-israels-evidence-that-hamas-fired-rockets-from-safe-zones.html", + "pubDate": "Thu, 07 Dec 2023 19:37:03 +0000", + "dc:creator": "Aric Toler and Lauren Leatherby", + "content": "", + "contentSnippet": "", + "guid": "https://www.nytimes.com/2023/12/08/world/middleeast/here-is-what-we-know-about-israels-evidence-that-hamas-fired-rockets-from-safe-zones.html", + "isoDate": "2023-12-07T19:37:03.000Z" + }, + { + "creator": "Marc Santora, Lara Jakes and Andrew E. Kramer", + "title": "Ukraine Carries On Fight While Pondering an Erosion of U.S. Aid", + "link": "https://www.nytimes.com/2023/12/07/world/europe/ukraine-us-aid-senate.html", + "pubDate": "Thu, 07 Dec 2023 19:19:22 +0000", + "dc:creator": "Marc Santora, Lara Jakes and Andrew E. Kramer", + "content": "The government in Kyiv remains hopeful of further American assistance, but it is also looking to other resources \u2014 and trying to make clear what could be at stake.", + "contentSnippet": "The government in Kyiv remains hopeful of further American assistance, but it is also looking to other resources \u2014 and trying to make clear what could be at stake.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/ukraine-us-aid-senate.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Borrell Fontelles, Josep", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-07T19:19:22.000Z" + }, + { + "creator": "Matthew Mpoke Bigg and Hwaida Saad", + "title": "Strike That Killed Reuters Journalist Was \u2018Apparently Deliberate\u2019 Israeli Attack, Group Says", + "link": "https://www.nytimes.com/2023/12/07/world/middleeast/reuters-journalist-killed-lebanon-israel-hrw.html", + "pubDate": "Thu, 07 Dec 2023 18:45:36 +0000", + "dc:creator": "Matthew Mpoke Bigg and Hwaida Saad", + "content": "Human Rights Watch found that the slain journalist and six colleagues were not near active fighting in southern Lebanon and would have been clearly visible to Israeli forces.", + "contentSnippet": "Human Rights Watch found that the slain journalist and six colleagues were not near active fighting in southern Lebanon and would have been clearly visible to Israeli forces.", + "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/reuters-journalist-killed-lebanon-israel-hrw.html", + "categories": [ + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Lebanon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Thomson Reuters Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T18:45:36.000Z" + }, + { + "creator": "Abdi Latif Dahir and John Yoon", + "title": "Seychelles Declares State of Emergency After Blast at Explosives Depot", + "link": "https://www.nytimes.com/2023/12/07/world/africa/seychelles-explosion-emergency.html", + "pubDate": "Thu, 07 Dec 2023 18:22:22 +0000", + "dc:creator": "Abdi Latif Dahir and John Yoon", + "content": "Seychelles declared a state of emergency after the explosion, which came on the heels of deadly flooding in the country.", + "contentSnippet": "Seychelles declared a state of emergency after the explosion, which came on the heels of deadly flooding in the country.", + "guid": "https://www.nytimes.com/2023/12/07/world/africa/seychelles-explosion-emergency.html", + "categories": [ + { + "_": "Seychelles Islands", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Explosions (Accidental)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Disasters and Emergencies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Indian Ocean", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T18:22:22.000Z" + }, + { + "creator": "Stephen Castle and Abdi Latif Dahir", + "title": "New U.K. Asylum Bill Aims to Override Some Human Rights Law", + "link": "https://www.nytimes.com/2023/12/06/world/europe/uk-bill-asylum-rwanda.html", + "pubDate": "Thu, 07 Dec 2023 18:13:21 +0000", + "dc:creator": "Stephen Castle and Abdi Latif Dahir", + "content": "Britain\u2019s prime minister unveiled emergency legislation to salvage a highly contested scheme to deport asylum seekers to the African country. It wasn\u2019t enough for his immigration minister.", + "contentSnippet": "Britain\u2019s prime minister unveiled emergency legislation to salvage a highly contested scheme to deport asylum seekers to the African country. It wasn\u2019t enough for his immigration minister.", + "guid": "https://www.nytimes.com/2023/12/06/world/europe/uk-bill-asylum-rwanda.html", + "categories": [ + { + "_": "Asylum, Right of", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Human Rights and Human Rights Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sunak, Rishi (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Rwanda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kagame, Paul", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-07T18:13:21.000Z" + }, + { + "creator": "Ivan Nechepurenko", + "title": "Russia Sets Date for Presidential Election", + "link": "https://www.nytimes.com/2023/12/07/world/europe/russia-presidential-election.html", + "pubDate": "Thu, 07 Dec 2023 17:26:09 +0000", + "dc:creator": "Ivan Nechepurenko", + "content": "The winner of the contest is widely seen as a foregone conclusion: Vladimir V. Putin.", + "contentSnippet": "The winner of the contest is widely seen as a foregone conclusion: Vladimir V. Putin.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/russia-presidential-election.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Elections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T17:26:09.000Z" + }, + { + "creator": "Farnaz Fassihi", + "title": "U.N. Secretary General Invokes Article 99, Asking to Declare a Cease-Fire in Gaza", + "link": "https://www.nytimes.com/2023/12/07/world/middleeast/un-article-99-gaza-cease-fire.html", + "pubDate": "Thu, 07 Dec 2023 15:47:47 +0000", + "dc:creator": "Farnaz Fassihi", + "content": "The move was a major step by the secretary general, Ant\u00f3nio Guterres, in his efforts to stop the war, which he described as a humanitarian disaster that threatened international security.", + "contentSnippet": "The move was a major step by the secretary general, Ant\u00f3nio Guterres, in his efforts to stop the war, which he described as a humanitarian disaster that threatened international security.", + "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/un-article-99-gaza-cease-fire.html", + "categories": [ + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Security Council (UN)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Guterres, Antonio", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-07T15:47:47.000Z" + }, + { + "creator": "Claire Moses", + "title": "U.S. Marshal Arrested After Unruly Behavior on Flight to London", + "link": "https://www.nytimes.com/2023/12/07/world/europe/us-marshal-sexual-assault-flight-london.html", + "pubDate": "Thu, 07 Dec 2023 15:45:59 +0000", + "dc:creator": "Claire Moses", + "content": "The police in London said the 39-year-old \u201cwas disruptive and had sexually assaulted other passengers and crew.\u201d", + "contentSnippet": "The police in London said the 39-year-old \u201cwas disruptive and had sexually assaulted other passengers and crew.\u201d", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/us-marshal-sexual-assault-flight-london.html", + "categories": [ + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Marshals Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-07T15:45:59.000Z" + }, + { + "creator": "Maria Varenikova and Marc Santora", + "title": "Ukrainian Troops Feel the Bite of Polish Truckers\u2019 Protest", + "link": "https://www.nytimes.com/2023/12/07/world/europe/poland-ukraine-truckers-blockade.html", + "pubDate": "Thu, 07 Dec 2023 15:33:33 +0000", + "dc:creator": "Maria Varenikova and Marc Santora", + "content": "A border blockade by haulers angry that the European Union has suspended a permit system for their Ukrainian counterparts has led to problems with deliveries of wartime supplies.", + "contentSnippet": "A border blockade by haulers angry that the European Union has suspended a permit system for their Ukrainian counterparts has led to problems with deliveries of wartime supplies.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/poland-ukraine-truckers-blockade.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Trucks and Trucking", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Poland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T15:33:33.000Z" + }, + { + "creator": "Isabella Kwai", + "title": "\u2018Oppenheimer\u2019 Will Be Released in Japan After Earlier Backlash", + "link": "https://www.nytimes.com/2023/12/07/world/asia/japan-barbenheimer-oppenheimer-release.html", + "pubDate": "Thu, 07 Dec 2023 15:28:50 +0000", + "dc:creator": "Isabella Kwai", + "content": "Critics said the film\u2019s cross-promotion with \u201cBarbie\u201d trivialized the U.S. nuclear attacks on Japan during World War II, but the biopic will be released in 2024.", + "contentSnippet": "Critics said the film\u2019s cross-promotion with \u201cBarbie\u201d trivialized the U.S. nuclear attacks on Japan during World War II, but the biopic will be released in 2024.", + "guid": "https://www.nytimes.com/2023/12/07/world/asia/japan-barbenheimer-oppenheimer-release.html", + "categories": [ + { + "_": "Movies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nuclear Weapons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Warner Brothers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-07T15:28:50.000Z" + }, + { + "creator": "Delger Erdenesanaa", + "title": "Climate Change Makes East Africa\u2019s Deadly Floods Worse, Study Finds", + "link": "https://www.nytimes.com/2023/12/07/climate/climate-change-flooding-east-africa.html", + "pubDate": "Thu, 07 Dec 2023 14:43:10 +0000", + "dc:creator": "Delger Erdenesanaa", + "content": "The extreme rain and flooding in Ethiopia, Kenya and Somalia this fall has been made twice as intense by climate change, according to a new study.", + "contentSnippet": "The extreme rain and flooding in Ethiopia, Kenya and Somalia this fall has been made twice as intense by climate change, according to a new study.", + "guid": "https://www.nytimes.com/2023/12/07/climate/climate-change-flooding-east-africa.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Floods", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Weather", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World Weather Attribution", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Dadaab (Kenya)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "East Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kenya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T14:43:10.000Z" + }, + { + "creator": "Adam Goldman", + "title": "Israel Is Targeting Hamas With Battlefield Intelligence", + "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-hamas-battlefield-intelligence.html", + "pubDate": "Thu, 07 Dec 2023 14:40:58 +0000", + "dc:creator": "Adam Goldman", + "content": "Israel has recovered a trove of material that its military has used to assess the extent of the group\u2019s attack plans, and its tactics and abilities, information reviewed by The Times shows.", + "contentSnippet": "Israel has recovered a trove of material that its military has used to assess the extent of the group\u2019s attack plans, and its tactics and abilities, information reviewed by The Times shows.", + "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-hamas-battlefield-intelligence.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Khan Younis (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T14:40:58.000Z" + }, + { + "creator": "David Pierson, Olivia Wang and Keith Bradsher", + "title": "China and E.U. Leaders Met as Tensions Rise Over Russia", + "link": "https://www.nytimes.com/2023/12/07/world/asia/china-eu-xi-michel.html", + "pubDate": "Thu, 07 Dec 2023 13:47:12 +0000", + "dc:creator": "David Pierson, Olivia Wang and Keith Bradsher", + "content": "The European summit with China\u2019s leader comes as relations have cooled over Beijing\u2019s alignment with Russia in its war on Ukraine and a surge in Chinese exports.", + "contentSnippet": "The European summit with China\u2019s leader comes as relations have cooled over Beijing\u2019s alignment with Russia in its war on Ukraine and a surge in Chinese exports.", + "guid": "https://www.nytimes.com/2023/12/07/world/asia/china-eu-xi-michel.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "European Council", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "von der Leyen, Ursula", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Xi Jinping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-07T13:47:12.000Z" + }, + { + "creator": "Victoria Kim, Liam Stack and Aaron Boxerman", + "title": "Hundreds of thousands are sheltering in Al-Mawasi and the surrounding region, aid workers say.", + "link": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-says-it-is-continuing-to-pursue-top-hamas-leaders-in-southern-gaza.html", + "pubDate": "Thu, 07 Dec 2023 12:31:36 +0000", + "dc:creator": "Victoria Kim, Liam Stack and Aaron Boxerman", + "content": "", + "contentSnippet": "", + "guid": "https://www.nytimes.com/2023/12/07/world/middleeast/israel-says-it-is-continuing-to-pursue-top-hamas-leaders-in-southern-gaza.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sinwar, Yehya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-07T12:31:36.000Z" + }, + { + "creator": "Ana Swanson, Jeanna Smialek, Alan Rappeport and Eshe Nelson", + "title": "Europe and Asia React to U.S. Push for Tech and Clean Energy", + "link": "https://www.nytimes.com/2023/12/07/business/economy/clean-energy-us-europe.html", + "pubDate": "Thu, 07 Dec 2023 12:22:26 +0000", + "dc:creator": "Ana Swanson, Jeanna Smialek, Alan Rappeport and Eshe Nelson", + "content": "Other governments, particularly in Europe, are trying to counter the Biden administration\u2019s industrial policies with their own incentives.", + "contentSnippet": "Other governments, particularly in Europe, are trying to counter the Biden administration\u2019s industrial policies with their own incentives.", + "guid": "https://www.nytimes.com/2023/12/07/business/economy/clean-energy-us-europe.html", + "categories": [ + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Alternative and Renewable Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation Reduction Act of 2022", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tax Credits, Deductions and Exemptions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Economy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Solar Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation (Economics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supply Chain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "internal-storyline-no", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T12:22:26.000Z" + }, + { + "creator": "Reuters", + "title": "Girl Kills Schoolmate and Wounds 5 in Russia Shooting", + "link": "https://www.nytimes.com/2023/12/07/world/europe/bryansk-russia-shooting.html", + "pubDate": "Thu, 07 Dec 2023 11:37:47 +0000", + "dc:creator": "Reuters", + "content": "The authorities said investigators were working to establish the motive for the shooting, which took place in the city of Bryansk, near the border with Ukraine.", + "contentSnippet": "The authorities said investigators were working to establish the motive for the shooting, which took place in the city of Bryansk, near the border with Ukraine.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/bryansk-russia-shooting.html", + "categories": [ + { + "_": "Murders, Attempted Murders and Homicides", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Children and Childhood", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "School Shootings and Armed Attacks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Investigative Committee (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bryansk (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T11:37:47.000Z" + }, + { + "creator": "Vivian Nereim", + "title": "Gaza War Widens Gap Between Arab Rulers and Citizens", + "link": "https://www.nytimes.com/2023/12/06/world/middleeast/gaza-israel-hamas-war-bahrain.html", + "pubDate": "Thu, 07 Dec 2023 09:33:06 +0000", + "dc:creator": "Vivian Nereim", + "content": "Bahrain, a small Gulf monarchy, faces growing pressure from citizens to cut its recently established ties with Israel \u2014 a microcosm of the tensions spreading across the Mideast.", + "contentSnippet": "Bahrain, a small Gulf monarchy, faces growing pressure from citizens to cut its recently established ties with Israel \u2014 a microcosm of the tensions spreading across the Mideast.", + "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/gaza-israel-hamas-war-bahrain.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bahrain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T09:33:06.000Z" + }, + { + "creator": "Hikari Hida and Aishvarya Kavi", + "title": "U.S. Military Grounds Hundreds of Ospreys After Fatal Crash Off Japan", + "link": "https://www.nytimes.com/2023/12/06/world/asia/us-osprey-japan-air-force-crew.html", + "pubDate": "Thu, 07 Dec 2023 06:34:30 +0000", + "dc:creator": "Hikari Hida and Aishvarya Kavi", + "content": "The Air Force, Navy and Marine Corps said a problem with the aircraft may have caused the crash last week, which is believed to have killed eight airmen.", + "contentSnippet": "The Air Force, Navy and Marine Corps said a problem with the aircraft may have caused the crash last week, which is believed to have killed eight airmen.", + "guid": "https://www.nytimes.com/2023/12/06/world/asia/us-osprey-japan-air-force-crew.html", + "categories": [ + { + "_": "United States Air Force", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Military Aircraft", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Aviation Accidents, Safety and Disasters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Yakushima (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Marine Corps", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-07T06:34:30.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Thursday Briefing", + "link": "https://www.nytimes.com/2023/12/07/briefing/gaza-crisis-ukraine-aid.html", + "pubDate": "Thu, 07 Dec 2023 05:19:51 +0000", + "dc:creator": "Natasha Frost", + "content": "A growing humanitarian crisis in Gaza.", + "contentSnippet": "A growing humanitarian crisis in Gaza.", + "guid": "https://www.nytimes.com/2023/12/07/briefing/gaza-crisis-ukraine-aid.html", + "isoDate": "2023-12-07T05:19:51.000Z" + }, + { + "creator": "Steven Lee Myers", + "title": "Russia\u2019s Latest Disinformation Tactic Exploits American Celebrities", + "link": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", + "pubDate": "Thu, 07 Dec 2023 05:02:00 +0000", + "dc:creator": "Steven Lee Myers", + "content": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", + "contentSnippet": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", + "guid": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", + "categories": [ + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Propaganda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Celebrities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cameo (Mobile App)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T05:02:00.000Z" + }, + { + "creator": "Carl Hulse", + "title": "Despite McConnell Legacy Push, Ukraine Funding in Increasing Jeopardy", + "link": "https://www.nytimes.com/2023/12/06/us/politics/mcconnell-legacy-ukraine-funding.html", + "pubDate": "Thu, 07 Dec 2023 00:30:41 +0000", + "dc:creator": "Carl Hulse", + "content": "The minority leader, who many believe could step down next year, has found himself out of step with many fellow Senate Republicans on the question of keeping money flowing to the U.S. ally.", + "contentSnippet": "The minority leader, who many believe could step down next year, has found himself out of step with many fellow Senate Republicans on the question of keeping money flowing to the U.S. ally.", + "guid": "https://www.nytimes.com/2023/12/06/us/politics/mcconnell-legacy-ukraine-funding.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "McConnell, Mitch", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T00:30:41.000Z" + }, + { + "creator": "Karoun Demirjian", + "title": "Republicans Block Aid to Ukraine, Jeopardizing Its Fight Against Russia", + "link": "https://www.nytimes.com/2023/12/06/us/politics/senate-ukraine-aid-bill.html", + "pubDate": "Thu, 07 Dec 2023 00:21:33 +0000", + "dc:creator": "Karoun Demirjian", + "content": "The vote spotlighted waning support in Congress for backing Ukraine in the war, and left the fate of the effort uncertain.", + "contentSnippet": "The vote spotlighted waning support in Congress for backing Ukraine in the war, and left the fate of the effort uncertain.", + "guid": "https://www.nytimes.com/2023/12/06/us/politics/senate-ukraine-aid-bill.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "McConnell, Mitch", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Johnson, Mike (1972- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Schumer, Charles E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T00:21:33.000Z" + }, + { + "creator": "Peter Baker", + "title": "Biden Calls on Congress to Approve Aid to Ukraine: \u2018This Cannot Wait\u2019", + "link": "https://www.nytimes.com/2023/12/06/us/politics/biden-ukraine-funding.html", + "pubDate": "Wed, 06 Dec 2023 23:57:41 +0000", + "dc:creator": "Peter Baker", + "content": "The administration has already alerted Congress that money for Ukraine will run out by the end of the year.", + "contentSnippet": "The administration has already alerted Congress that money for Ukraine will run out by the end of the year.", + "guid": "https://www.nytimes.com/2023/12/06/us/politics/biden-ukraine-funding.html", + "categories": [ + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Democratic Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-06T23:57:41.000Z" + }, + { + "creator": "Seth Mydans", + "title": "Nguyen Qui Duc, Whose Salon Became a Hanoi Hub, Dies at 65", + "link": "https://www.nytimes.com/2023/12/06/world/asia/nguyen-qui-duc-dead.html", + "pubDate": "Wed, 06 Dec 2023 23:53:22 +0000", + "dc:creator": "Seth Mydans", + "content": "A former refugee who found radio success in the U.S., he opened an exhibition space in his native Vietnam that drew artists and ambassadors. Anthony Bourdain dropped in.", + "contentSnippet": "A former refugee who found radio success in the U.S., he opened an exhibition space in his native Vietnam that drew artists and ambassadors. Anthony Bourdain dropped in.", + "guid": "https://www.nytimes.com/2023/12/06/world/asia/nguyen-qui-duc-dead.html", + "categories": [ + { + "_": "Duc, Nguyen Qui (1958-2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Vietnamese-Americans", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "National Public Radio", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hanoi (Vietnam)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T23:53:22.000Z" + }, + { + "creator": "Genevieve Glatsky and Isayen Herrera", + "title": "Venezuela Orders Arrest of Top Opposition Figures on Treason", + "link": "https://www.nytimes.com/2023/12/06/world/americas/venezuela-opposition-arrest-orders.html", + "pubDate": "Wed, 06 Dec 2023 23:35:23 +0000", + "dc:creator": "Genevieve Glatsky and Isayen Herrera", + "content": "The move is the latest of several that undercut prospects of free elections next year, despite commitments made to the Biden administration in return for sanctions relief.", + "contentSnippet": "The move is the latest of several that undercut prospects of free elections next year, despite commitments made to the Biden administration in return for sanctions relief.", + "guid": "https://www.nytimes.com/2023/12/06/world/americas/venezuela-opposition-arrest-orders.html", + "categories": [ + { + "_": "Elections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Referendums", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Maduro, Nicolas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Machado, Maria Corina", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Treason and Sedition", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Venezuela", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Guyana", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Money Laundering", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Legislatures and Parliaments", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-06T23:35:23.000Z" + }, + { + "creator": "Liam Stack and Yara Bayoumy", + "title": "Gazans Flee Fighting to Al-Mawasi, but Find Little Shelter There", + "link": "https://www.nytimes.com/2023/12/06/world/middleeast/gaza-al-mawasi.html", + "pubDate": "Wed, 06 Dec 2023 23:02:58 +0000", + "dc:creator": "Liam Stack and Yara Bayoumy", + "content": "Palestinians were told to go to the seaside village of Al-Mawasi to escape the fighting, but once they got there they found they were on their own.", + "contentSnippet": "Palestinians were told to go to the seaside village of Al-Mawasi to escape the fighting, but once they got there they found they were on their own.", + "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/gaza-al-mawasi.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-06T23:02:58.000Z" + }, + { + "creator": "Adam Goldman", + "title": "Israel Claims It Has Killed 5 Hamas Commanders Seen in Rare Photo", + "link": "https://www.nytimes.com/2023/12/06/world/middleeast/israel-hamas-commanders-gaza-photo.html", + "pubDate": "Wed, 06 Dec 2023 22:47:40 +0000", + "dc:creator": "Adam Goldman", + "content": "Israeli forces have been targeting the Hamas leadership since the group launched an attack on southern Israel on Oct. 7.", + "contentSnippet": "Israeli forces have been targeting the Hamas leadership since the group launched an attack on southern Israel on Oct. 7.", + "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/israel-hamas-commanders-gaza-photo.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deif, Muhammad", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sinwar, Yehya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Khan Younis (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T22:47:40.000Z" + }, + { + "creator": "Liam Stack, Shashank Bengali and Michael Levenson", + "title": "Israel and Hamas Battle for a City in Gaza, Sparking Another Exodus", + "link": "https://www.nytimes.com/2023/12/06/world/middleeast/israel-hamas-battle-gaza-khan-younis.html", + "pubDate": "Wed, 06 Dec 2023 22:34:58 +0000", + "dc:creator": "Liam Stack, Shashank Bengali and Michael Levenson", + "content": "Thousands of people heeded Israeli orders to flee Khan Younis and nearby areas, but the places they were told to go had little shelter, water or food.", + "contentSnippet": "Thousands of people heeded Israeli orders to flee Khan Younis and nearby areas, but the places they were told to go had little shelter, water or food.", + "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/israel-hamas-battle-gaza-khan-younis.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Khan Younis (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shortages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-06T22:34:58.000Z" + }, + { + "creator": "Vivian Nereim and Ivan Nechepurenko", + "title": "Putin Travels to U.A.E. and Saudi Arabia on Rare Trip to Mideast", + "link": "https://www.nytimes.com/2023/12/06/world/europe/putin-saudi-arabia-visit.html", + "pubDate": "Wed, 06 Dec 2023 22:34:19 +0000", + "dc:creator": "Vivian Nereim and Ivan Nechepurenko", + "content": "President Vladimir V. Putin of Russia stopped first in the United Arab Emirates and went on to Saudi Arabia. He said the Israel-Hamas war will figure prominently in his discussions.", + "contentSnippet": "President Vladimir V. Putin of Russia stopped first in the United Arab Emirates and went on to Saudi Arabia. He said the Israel-Hamas war will figure prominently in his discussions.", + "guid": "https://www.nytimes.com/2023/12/06/world/europe/putin-saudi-arabia-visit.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mohammed bin Salman (1985- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Abu Dhabi (United Arab Emirates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Dubai (United Arab Emirates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T22:34:19.000Z" + }, + { + "creator": "Ivan Nechepurenko and Marc Santora", + "title": "Illia Kyva Is Killed Near Moscow", + "link": "https://www.nytimes.com/2023/12/06/world/europe/illia-kyva-ukrainian-lawmaker-killed.html", + "pubDate": "Wed, 06 Dec 2023 21:38:29 +0000", + "dc:creator": "Ivan Nechepurenko and Marc Santora", + "content": "The lawmaker, Illia Kyva, called for Ukraine to surrender after Russia invaded. He was living in Russia, but Ukrainian authorities had sentenced him to prison in absentia on charges including treason.", + "contentSnippet": "The lawmaker, Illia Kyva, called for Ukraine to surrender after Russia invaded. He was living in Russia, but Ukrainian authorities had sentenced him to prison in absentia on charges including treason.", + "guid": "https://www.nytimes.com/2023/12/06/world/europe/illia-kyva-ukrainian-lawmaker-killed.html", + "categories": [ + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defectors (Political)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Treason and Sedition", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kyva, Illia (d 2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T21:38:29.000Z" + }, + { + "creator": "Yan Zhuang and Christine Hauser", + "title": "Arizona Man Is Arrested in Connection With Australia Shooting", + "link": "https://www.nytimes.com/2023/12/06/world/australia/wieambilla-queensland-shooting-arrest-arizona.html", + "pubDate": "Wed, 06 Dec 2023 21:31:56 +0000", + "dc:creator": "Yan Zhuang and Christine Hauser", + "content": "Two police officers and a bystander died in the shootout in Queensland last year.", + "contentSnippet": "Two police officers and a bystander died in the shootout in Queensland last year.", + "guid": "https://www.nytimes.com/2023/12/06/world/australia/wieambilla-queensland-shooting-arrest-arizona.html", + "categories": [ + { + "_": "Australia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Queensland (Australia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Melbourne (Australia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Federal Bureau of Investigation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Attacks on Police", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arizona", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T21:31:56.000Z" + }, + { + "creator": "Jonathan Wolfe", + "title": "Thursday Briefing: Gazans Flee Khan Younis", + "link": "https://www.nytimes.com/2023/12/06/briefing/gaza-israel-ukraine.html", + "pubDate": "Wed, 06 Dec 2023 21:02:37 +0000", + "dc:creator": "Jonathan Wolfe", + "content": "Plus, remembering Norman Lear.", + "contentSnippet": "Plus, remembering Norman Lear.", + "guid": "https://www.nytimes.com/2023/12/06/briefing/gaza-israel-ukraine.html", + "isoDate": "2023-12-06T21:02:37.000Z" + }, + { + "creator": "Talya Minsberg", + "title": "Gaza Hostage Families Urge Israeli Government to Help", + "link": "https://www.nytimes.com/2023/12/06/world/middleeast/hamas-hostages-israel.html", + "pubDate": "Wed, 06 Dec 2023 20:46:16 +0000", + "dc:creator": "Talya Minsberg", + "content": "Released hostages met for the first time with Israel\u2019s war cabinet, painting a grim portrait of captivity in Gaza.", + "contentSnippet": "Released hostages met for the first time with Israel\u2019s war cabinet, painting a grim portrait of captivity in Gaza.", + "guid": "https://www.nytimes.com/2023/12/06/world/middleeast/hamas-hostages-israel.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-06T20:46:16.000Z" + }, + { + "creator": "Glenn Thrush", + "title": "U.S. Charges 4 Russian Soldiers With War Crimes Against an American", + "link": "https://www.nytimes.com/2023/12/06/us/russia-ukraine-war-crimes-hamas.html", + "pubDate": "Wed, 06 Dec 2023 20:29:32 +0000", + "dc:creator": "Glenn Thrush", + "content": "The Justice Department also said it had begun investigating the \u201cmurder of more than 30 Americans\u201d by Hamas fighters during the Oct. 7 attack in Israel.", + "contentSnippet": "The Justice Department also said it had begun investigating the \u201cmurder of more than 30 Americans\u201d by Hamas fighters during the Oct. 7 attack in Israel.", + "guid": "https://www.nytimes.com/2023/12/06/us/russia-ukraine-war-crimes-hamas.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Garland, Merrick B", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T20:29:32.000Z" + }, + { + "creator": "Aurelien Breeden", + "title": "Bordeaux Botulism Outbreak: Criminal Charges Announced", + "link": "https://www.nytimes.com/2023/12/06/world/europe/france-bordeaux-botulism-sardines.html", + "pubDate": "Wed, 06 Dec 2023 19:47:25 +0000", + "dc:creator": "Aurelien Breeden", + "content": "One person died and 15 others were sickened in September after eating homemade sardine preserves at an organic wine bar in Bordeaux. Prosecutors say hygiene rules were violated.", + "contentSnippet": "One person died and 15 others were sickened in September after eating homemade sardine preserves at an organic wine bar in Bordeaux. Prosecutors say hygiene rules were violated.", + "guid": "https://www.nytimes.com/2023/12/06/world/europe/france-bordeaux-botulism-sardines.html", + "categories": [ + { + "_": "Botulism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Bordeaux (France)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Wine Bars", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hazardous and Toxic Substances", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "truecrime", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T19:47:25.000Z" + }, + { + "creator": "Brad Plumer and Nadja Popovich", + "title": "Can Carbon Capture Live Up to the Hype?", + "link": "https://www.nytimes.com/2023/12/06/climate/cop28-carbon-capture.html", + "pubDate": "Wed, 06 Dec 2023 19:33:08 +0000", + "dc:creator": "Brad Plumer and Nadja Popovich", + "content": "The technology to capture and bury carbon dioxide has struggled to ramp up and has real limits. But experts say it could play a valuable role.", + "contentSnippet": "The technology to capture and bury carbon dioxide has struggled to ramp up and has real limits. But experts say it could play a valuable role.", + "guid": "https://www.nytimes.com/2023/12/06/climate/cop28-carbon-capture.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carbon Capture and Sequestration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carbon Dioxide", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United Nations Framework Convention on Climate Change", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Coal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Steel and Iron", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-06T19:33:08.000Z" + }, + { + "creator": "Mark Landler and Stephen Castle", + "title": "Boris Johnson Apologizes at U.K. Covid Inquiry for \u2018Pain and Suffering\u2019", + "link": "https://www.nytimes.com/2023/12/06/world/europe/uk-boris-johnson-covid-inquiry.html", + "pubDate": "Wed, 06 Dec 2023 18:24:37 +0000", + "dc:creator": "Mark Landler and Stephen Castle", + "content": "The former prime minister said his government had initially underestimated the coronavirus. But he insisted that he and his aides had done the best they could at the time.", + "contentSnippet": "The former prime minister said his government had initially underestimated the coronavirus. But he insisted that he and his aides had done the best they could at the time.", + "guid": "https://www.nytimes.com/2023/12/06/world/europe/uk-boris-johnson-covid-inquiry.html", + "categories": [ + { + "_": "Johnson, Boris", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Coronavirus (2019-nCoV)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Quarantines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ethics and Official Misconduct", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sunak, Rishi (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T18:24:37.000Z" + }, + { + "creator": "Amanda Taub", + "title": "Snob summer is dead. Long live mystery winter.", + "link": "https://www.nytimes.com/2023/12/06/world/europe/snob-summer-is-dead-long-live-mystery-winter.html", + "pubDate": "Wed, 06 Dec 2023 15:22:52 +0000", + "dc:creator": "Amanda Taub", + "content": "Settling in for a cozy season of whodunnits.", + "contentSnippet": "Settling in for a cozy season of whodunnits.", + "guid": "https://www.nytimes.com/2023/12/06/world/europe/snob-summer-is-dead-long-live-mystery-winter.html", + "categories": [ + { + "_": "internal-sub-only-nl", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Books and Literature", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Batmanglij, Zal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Chandler, Raymond", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hallett, Janice", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Marling, Brit", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-06T15:22:52.000Z" + }, + { + "creator": "Carlotta Gall", + "title": "As Political Turmoil Intensifies in Ukraine, Opposition Leader Calls for Unity", + "link": "https://www.nytimes.com/2023/12/06/world/europe/ukraine-war-support-opposition.html", + "pubDate": "Wed, 06 Dec 2023 14:29:06 +0000", + "dc:creator": "Carlotta Gall", + "content": "Tensions between Ukrainian leaders, including between President Volodymyr Zelensky and his military chief, come as the country seeks emergency aid from Washington.", + "contentSnippet": "Tensions between Ukrainian leaders, including between President Volodymyr Zelensky and his military chief, come as the country seeks emergency aid from Washington.", + "guid": "https://www.nytimes.com/2023/12/06/world/europe/ukraine-war-support-opposition.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Poroshenko, Petro Olekseyevich", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zaluzhny, Valery", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T14:29:06.000Z" + }, + { + "creator": "Rebecca Carballo", + "title": "Woman Shot and Killed in East London", + "link": "https://www.nytimes.com/2023/12/05/world/europe/london-hackney-shooting.html", + "pubDate": "Wed, 06 Dec 2023 13:30:11 +0000", + "dc:creator": "Rebecca Carballo", + "content": "Two other people were shot and injured in the shooting, a rarity in Britain. They were taken to a hospital and their status was not immediately clear.", + "contentSnippet": "Two other people were shot and injured in the shooting, a rarity in Britain. They were taken to a hospital and their status was not immediately clear.", + "guid": "https://www.nytimes.com/2023/12/05/world/europe/london-hackney-shooting.html", + "categories": [ + { + "_": "Murders, Attempted Murders and Homicides", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Police", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "London (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T13:30:11.000Z" + }, + { + "creator": "Elena Medel", + "title": "Read Your Way Through Madrid", + "link": "https://www.nytimes.com/2023/12/06/books/madrid-spain-books-elena-medel.html", + "pubDate": "Wed, 06 Dec 2023 10:00:10 +0000", + "dc:creator": "Elena Medel", + "content": "Like many who call Madrid home, Elena Medel was born elsewhere, but forged her identity in the Spanish capital. Here, she recommends books about this city that \u201crefuses to be reduced to an ideal.\u201d", + "contentSnippet": "Like many who call Madrid home, Elena Medel was born elsewhere, but forged her identity in the Spanish capital. Here, she recommends books about this city that \u201crefuses to be reduced to an ideal.\u201d", + "guid": "https://www.nytimes.com/2023/12/06/books/madrid-spain-books-elena-medel.html", + "categories": [ + { + "_": "Madrid (Spain)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Books and Literature", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Spanish Civil War (1936-39)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Poetry and Poets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Theater", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Writing and Writers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Libraries and Librarians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Culture (Arts)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Garcia Lorca, Federico", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Grandes, Almudena (1960-2021)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hemingway, Ernest", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Lerner, Ben", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Lindo, Elvira", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Benito Perez Galdos", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Cela, Camilo Jose", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Carmen Martin Gaite", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ramon Maria del Valle-Inclan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Rosa Chacel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Navarro, Elvira", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Irene Vallejo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "The Ages of Lulu (Book)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "The Hive (Book)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "The Wonders (Book)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "literaryguides", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-06T10:00:10.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Wednesday Briefing", + "link": "https://www.nytimes.com/2023/12/06/briefing/hamas-sexual-violence-ukraine-trump.html", + "pubDate": "Wed, 06 Dec 2023 05:12:28 +0000", + "dc:creator": "Natasha Frost", + "content": "Accounts of sexual violence by Hamas.", + "contentSnippet": "Accounts of sexual violence by Hamas.", + "guid": "https://www.nytimes.com/2023/12/06/briefing/hamas-sexual-violence-ukraine-trump.html", + "isoDate": "2023-12-06T05:12:28.000Z" + }, + { + "creator": "Mitra Taj and Genevieve Glatsky", + "title": "Alberto Fujimori Is Ordered Released From Prison in Peru", + "link": "https://www.nytimes.com/2023/12/05/world/americas/peru-fujimori-released-prison.html", + "pubDate": "Wed, 06 Dec 2023 00:33:36 +0000", + "dc:creator": "Mitra Taj and Genevieve Glatsky", + "content": "The ruling, which affirms a decision to reinstate a pardon, defies an order by an international court that former President Alberto Fujimori continue to serve his sentence for human rights violations.", + "contentSnippet": "The ruling, which affirms a decision to reinstate a pardon, defies an order by an international court that former President Alberto Fujimori continue to serve his sentence for human rights violations.", + "guid": "https://www.nytimes.com/2023/12/05/world/americas/peru-fujimori-released-prison.html", + "categories": [ + { + "_": "Amnesties, Commutations and Pardons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Human Rights and Human Rights Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fujimori, Alberto K", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Boluarte, Dina", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Inter-American Court of Human Rights", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Peru", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T00:33:36.000Z" + }, + { + "creator": "Matthew Mpoke Bigg, Ben Hubbard and Michael Levenson", + "title": "Israel-Hamas War Intensifies in Southern Gaza; Civilians Say No Place Is Safe", + "link": "https://www.nytimes.com/2023/12/05/world/middleeast/israel-hamas-gaza-khan-younis.html", + "pubDate": "Wed, 06 Dec 2023 00:00:19 +0000", + "dc:creator": "Matthew Mpoke Bigg, Ben Hubbard and Michael Levenson", + "content": "Amid some of the war\u2019s heaviest bombing, Israeli forces battled Hamas deep into the city of Khan Younis, with few signs that Israel was heeding Biden administration calls to show more restraint.", + "contentSnippet": "Amid some of the war\u2019s heaviest bombing, Israeli forces battled Hamas deep into the city of Khan Younis, with few signs that Israel was heeding Biden administration calls to show more restraint.", + "guid": "https://www.nytimes.com/2023/12/05/world/middleeast/israel-hamas-gaza-khan-younis.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Evacuations and Evacuees", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Khan Younis (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-06T00:00:19.000Z" + }, + { + "creator": "Constant M\u00e9heut and Andrew E. Kramer", + "title": "E.U. Accession Talks Lift Morale in Ukraine", + "link": "https://www.nytimes.com/2023/12/15/world/europe/ukraine-eu-membership.html", + "pubDate": "Fri, 15 Dec 2023 15:33:50 +0000", + "dc:creator": "Constant M\u00e9heut and Andrew E. Kramer", + "content": "The European Union\u2019s willingness to open accession talks will lift morale, but the more immediate prospects for financial support from allies is sobering.", + "contentSnippet": "The European Union\u2019s willingness to open accession talks will lift morale, but the more immediate prospects for financial support from allies is sobering.", + "guid": "https://www.nytimes.com/2023/12/15/world/europe/ukraine-eu-membership.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hungary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T15:33:50.000Z" + }, + { + "creator": "The New York Times", + "title": "Israel-Hamas War: Biden Adviser Plays Down Differences With Israel Over War Effort", + "link": "https://www.nytimes.com/live/2023/12/15/world/israel-hamas-war-gaza-news", + "pubDate": "Fri, 15 Dec 2023 15:32:13 +0000", + "dc:creator": "The New York Times", + "content": "National Security Adviser Jake Sullivan, in Tel Aviv, sought to demonstrate that the U.S. and Israel are on the same page in the war against Hamas in Gaza.", + "contentSnippet": "National Security Adviser Jake Sullivan, in Tel Aviv, sought to demonstrate that the U.S. and Israel are on the same page in the war against Hamas in Gaza.", + "guid": "https://www.nytimes.com/live/2023/12/15/world/israel-hamas-war-gaza-news", + "isoDate": "2023-12-15T15:32:13.000Z" + }, + { + "creator": "Ivan Nechepurenko", + "title": "Russia\u2019s Central Bank Raises Rates to 16 Percent", + "link": "https://www.nytimes.com/2023/12/15/world/europe/russia-interest-rates-inflation.html", + "pubDate": "Fri, 15 Dec 2023 15:14:03 +0000", + "dc:creator": "Ivan Nechepurenko", + "content": "The bank warned that its tight monetary policy would continue \u201cfor a long period\u201d as it attempts slow an economy in danger of overheating.", + "contentSnippet": "The bank warned that its tight monetary policy would continue \u201cfor a long period\u201d as it attempts slow an economy in danger of overheating.", + "guid": "https://www.nytimes.com/2023/12/15/world/europe/russia-interest-rates-inflation.html", + "categories": [ + { + "_": "Banking and Financial Institutions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Interest Rates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Central Bank of Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Nabiullina, Elvira S", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T15:14:03.000Z" + }, + { + "creator": "Emily Anthes", + "title": "Bird Flu Is Still Causing Havoc. Here\u2019s The Latest.", + "link": "https://www.nytimes.com/2023/12/15/science/birds-flu-h5n1.html", + "pubDate": "Fri, 15 Dec 2023 14:55:49 +0000", + "dc:creator": "Emily Anthes", + "content": "The virus, which recently reached the Antarctic region for the first time, is surging again in North America.", + "contentSnippet": "The virus, which recently reached the Antarctic region for the first time, is surging again in North America.", + "guid": "https://www.nytimes.com/2023/12/15/science/birds-flu-h5n1.html", + "categories": [ + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Avian Influenza", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mammals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Birds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Viruses", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wildlife Die-Offs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Antarctic Regions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "your-feed-health", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "your-feed-animals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-15T14:55:49.000Z" + }, + { + "creator": "Isabel Kershner", + "title": "As Israel Weighs Honoring Oct. 7 Victims, Exhibit Memorializes Trance Festival", + "link": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-hamas-nova-festival-exhibition.html", + "pubDate": "Fri, 15 Dec 2023 14:43:00 +0000", + "dc:creator": "Isabel Kershner", + "content": "Israelis seeking to memorialize the hundreds killed in the Hamas assault on a trance festival, and help the survivors, retrieved hundreds of objects from the site.", + "contentSnippet": "Israelis seeking to memorialize the hundreds killed in the Hamas assault on a trance festival, and help the survivors, retrieved hundreds of objects from the site.", + "guid": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-hamas-nova-festival-exhibition.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Assaults", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mass Shootings", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Monuments and Memorials (Structures)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T14:43:00.000Z" + }, + { + "creator": "Alan Feuer", + "title": "U.S. Officials and Garc\u00eda Luna Met Often, Records Show", + "link": "https://www.nytimes.com/2023/12/15/world/americas/us-mexico-genaro-garcia-luna.html", + "pubDate": "Fri, 15 Dec 2023 14:30:09 +0000", + "dc:creator": "Alan Feuer", + "content": "Genaro Garc\u00eda Luna filed a new trial bid saying the former Mexican official met with U.S. officials more than 180 times and was also \u201cextensively vetted\u201d by the C.I.A. and D.E.A.", + "contentSnippet": "Genaro Garc\u00eda Luna filed a new trial bid saying the former Mexican official met with U.S. officials more than 180 times and was also \u201cextensively vetted\u201d by the C.I.A. and D.E.A.", + "guid": "https://www.nytimes.com/2023/12/15/world/americas/us-mexico-genaro-garcia-luna.html", + "categories": [ + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Central Intelligence Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Drug Enforcement Administration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Sinaloa Cartel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Garcia Luna, Genaro", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mexico", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T14:30:09.000Z" + }, + { + "creator": "Thomas Gibbons-Neff", + "title": "Ukraine Military Recruiters Use Harsh Tactics to Fill Ranks", + "link": "https://www.nytimes.com/2023/12/15/world/europe/ukraine-military-recruitment.html", + "pubDate": "Fri, 15 Dec 2023 14:20:00 +0000", + "dc:creator": "Thomas Gibbons-Neff", + "content": "Ukrainian men are reporting incidents of wrongful draft notices, unprofessional medical commissions and coercive mobilization tactics.", + "contentSnippet": "Ukrainian men are reporting incidents of wrongful draft notices, unprofessional medical commissions and coercive mobilization tactics.", + "guid": "https://www.nytimes.com/2023/12/15/world/europe/ukraine-military-recruitment.html", + "categories": [ + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Draft and Recruitment (Military)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-15T14:20:00.000Z" + }, + { + "creator": "Damien Cave and Mark Abramson", + "title": "U.S. Military Returns to the Jungle, Training for Future Threats", + "link": "https://www.nytimes.com/2023/12/15/world/asia/us-military-jungle-training.html", + "pubDate": "Fri, 15 Dec 2023 14:13:32 +0000", + "dc:creator": "Damien Cave and Mark Abramson", + "content": "Far from the deserts of the Middle East, the Army is instructing troops in Hawaii on the skills needed for a potential clash with China.", + "contentSnippet": "Far from the deserts of the Middle East, the Army is instructing troops in Hawaii on the skills needed for a potential clash with China.", + "guid": "https://www.nytimes.com/2023/12/15/world/asia/us-military-jungle-training.html", + "categories": [ + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Army", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States Marine Corps", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hawaii", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T14:13:32.000Z" + }, + { + "creator": "Megan Specia", + "title": "Prince Harry\u2019s Phone Was Hacked by U.K. Tabloid, Judge Rules in Landmark Case", + "link": "https://www.nytimes.com/2023/12/15/world/europe/prince-harry-tabloid-hacking-lawsuit-ruling.html", + "pubDate": "Fri, 15 Dec 2023 13:38:23 +0000", + "dc:creator": "Megan Specia", + "content": "The ruling was a major victory for the royal in his long-running campaign against media intrusion into his life \u2014 and a blow to Britain\u2019s tabloid press.", + "contentSnippet": "The ruling was a major victory for the royal in his long-running campaign against media intrusion into his life \u2014 and a blow to Britain\u2019s tabloid press.", + "guid": "https://www.nytimes.com/2023/12/15/world/europe/prince-harry-tabloid-hacking-lawsuit-ruling.html", + "categories": [ + { + "_": "Royal Families", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Newspapers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mirror Group Newspapers PLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Harry, Duke of Sussex", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T13:38:23.000Z" + }, + { + "creator": "Stephen Castle", + "title": "Missing Boy Who Was Found in France Is Expected Back in U.K. Soon", + "link": "https://www.nytimes.com/2023/12/15/world/europe/alex-batty-missing-boy-france-uk.html", + "pubDate": "Fri, 15 Dec 2023 13:36:17 +0000", + "dc:creator": "Stephen Castle", + "content": "Alex Batty vanished six years ago when he was 11 on a family trip. The police want to question his mother and grandfather about his disappearance.", + "contentSnippet": "Alex Batty vanished six years ago when he was 11 on a family trip. The police want to question his mother and grandfather about his disappearance.", + "guid": "https://www.nytimes.com/2023/12/15/world/europe/alex-batty-missing-boy-france-uk.html", + "categories": [ + { + "_": "Missing Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Police", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pyrenees Mountains", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Toulouse (France)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T13:36:17.000Z" + }, + { + "creator": "Christopher F. Schuetze", + "title": "German Spy Official Goes on Trial Accused of Selling Secrets to Russia", + "link": "https://www.nytimes.com/2023/12/14/world/europe/germany-spy-trial-russia.html", + "pubDate": "Fri, 15 Dec 2023 13:27:00 +0000", + "dc:creator": "Christopher F. Schuetze", + "content": "The trial, held under stringent security conditions and expected to last months, caps one of the gravest espionage scandals in recent German history.", + "contentSnippet": "The trial, held under stringent security conditions and expected to last months, caps one of the gravest espionage scandals in recent German history.", + "guid": "https://www.nytimes.com/2023/12/14/world/europe/germany-spy-trial-russia.html", + "categories": [ + { + "_": "Germany", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Classified Information and State Secrets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Linke, Carsten", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Federal Intelligence Service (Germany)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Federal Security Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T13:27:00.000Z" + }, + { + "creator": "Victor Mather", + "title": "A British Boy, Missing for 6 Years, Turns Up in France", + "link": "https://www.nytimes.com/2023/12/14/world/europe/british-boy-alex-batty-missing-found-france.html", + "pubDate": "Fri, 15 Dec 2023 13:19:16 +0000", + "dc:creator": "Victor Mather", + "content": "Alex Batty, of Oldham, England, now a teenager, was found by a delivery driver walking on a rainy night in Chalabre. His mother and grandfather are wanted in connection with his disappearance.", + "contentSnippet": "Alex Batty, of Oldham, England, now a teenager, was found by a delivery driver walking on a rainy night in Chalabre. His mother and grandfather are wanted in connection with his disappearance.", + "guid": "https://www.nytimes.com/2023/12/14/world/europe/british-boy-alex-batty-missing-found-france.html", + "categories": [ + { + "_": "Missing Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "England", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T13:19:16.000Z" + }, + { + "creator": "John Yoon", + "title": "Israel Recovers the Bodies of 3 Hostages in Gaza", + "link": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-hostages-gaza-soldiers-elia-toledano.html", + "pubDate": "Fri, 15 Dec 2023 10:47:30 +0000", + "dc:creator": "John Yoon", + "content": "The Israeli military said it had retrieved the bodies of two soldiers and a civilian who were kidnapped during the Hamas-led attacks on Oct. 7.", + "contentSnippet": "The Israeli military said it had retrieved the bodies of two soldiers and a civilian who were kidnapped during the Hamas-led attacks on Oct. 7.", + "guid": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-hostages-gaza-soldiers-elia-toledano.html", + "categories": [ + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T10:47:30.000Z" + }, + { + "creator": "Ben Hubbard", + "title": "Displaced Gazans Put Pressure on Egypt\u2019s Border", + "link": "https://www.nytimes.com/2023/12/14/world/middleeast/gaza-border-rafah-egypt.html", + "pubDate": "Fri, 15 Dec 2023 10:22:25 +0000", + "dc:creator": "Ben Hubbard", + "content": "Hundreds of thousands of Palestinians have fled to southern Gaza, but they cannot cross into Egypt because the border is heavily fortified and Cairo is determined to keep it closed.", + "contentSnippet": "Hundreds of thousands of Palestinians have fled to southern Gaza, but they cannot cross into Egypt because the border is heavily fortified and Cairo is determined to keep it closed.", + "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/gaza-border-rafah-egypt.html", + "categories": [ + { + "_": "Rafah (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Border Barriers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Egypt", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sinai Peninsula (Egypt)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T10:22:25.000Z" + }, + { + "creator": "Tavares Cebola and John Eligon", + "title": "Using Dance to Tell the Story of Mozambique\u2019s Struggles", + "link": "https://www.nytimes.com/2023/12/15/world/africa/mozambique-dance-choreographer-canda.html", + "pubDate": "Fri, 15 Dec 2023 10:03:07 +0000", + "dc:creator": "Tavares Cebola and John Eligon", + "content": "Mozambique\u2019s most influential contemporary choreographer uses bodies in motion to artfully \u2014 and clearly \u2014 trace the complex recent history of his country.", + "contentSnippet": "Mozambique\u2019s most influential contemporary choreographer uses bodies in motion to artfully \u2014 and clearly \u2014 trace the complex recent history of his country.", + "guid": "https://www.nytimes.com/2023/12/15/world/africa/mozambique-dance-choreographer-canda.html", + "categories": [ + { + "_": "Mozambique", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Dancing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Panaibra Gabriel Canda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Frelimo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Colonization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Culture (Arts)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-15T10:03:07.000Z" + }, + { + "creator": "Victoria Kim and Aaron Boxerman", + "title": "Sullivan says both the U.S. and Israel expect fighting to slow down eventually.", + "link": "https://www.nytimes.com/2023/12/15/world/middleeast/jake-sullivan-will-meet-israels-president-as-the-allies-diverge-on-war-strategy.html", + "pubDate": "Fri, 15 Dec 2023 10:02:19 +0000", + "dc:creator": "Victoria Kim and Aaron Boxerman", + "content": "", + "contentSnippet": "", + "guid": "https://www.nytimes.com/2023/12/15/world/middleeast/jake-sullivan-will-meet-israels-president-as-the-allies-diverge-on-war-strategy.html", + "isoDate": "2023-12-15T10:02:19.000Z" + }, + { + "creator": "Aaron Boxerman and Talya Minsberg", + "title": "Private Gun Ownership in Israel Spikes After Hamas Attacks", + "link": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-gun-ownership-spikes.html", + "pubDate": "Fri, 15 Dec 2023 10:02:10 +0000", + "dc:creator": "Aaron Boxerman and Talya Minsberg", + "content": "In a country already bristling with armed soldiers and reservists, a new sense of insecurity is pushing civilians to seek more personal weapons.", + "contentSnippet": "In a country already bristling with armed soldiers and reservists, a new sense of insecurity is pushing civilians to seek more personal weapons.", + "guid": "https://www.nytimes.com/2023/12/15/world/middleeast/israel-gun-ownership-spikes.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Firearms", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gun Control", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Jewish Power Party (Otzma Yehudit)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ben-Gvir, Itamar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "West Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T10:02:10.000Z" + }, + { + "creator": "Matina Stevis-Gridneff and Steven Erlanger", + "title": "Hungary Blocks E.U. Aid for Ukraine", + "link": "https://www.nytimes.com/2023/12/14/world/europe/eu-ukraine-hungary-aid.html", + "pubDate": "Fri, 15 Dec 2023 08:22:38 +0000", + "dc:creator": "Matina Stevis-Gridneff and Steven Erlanger", + "content": "President Volodymyr Zelensky of Ukraine welcomed the breakthrough as talks on joining the bloc officially opened. Securing more financial aid will have to wait.", + "contentSnippet": "President Volodymyr Zelensky of Ukraine welcomed the breakthrough as talks on joining the bloc officially opened. Securing more financial aid will have to wait.", + "guid": "https://www.nytimes.com/2023/12/14/world/europe/eu-ukraine-hungary-aid.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Orban, Viktor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hungary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T08:22:38.000Z" + }, + { + "creator": "Johanna Lemola and Emma Bubola", + "title": "Finland Closes Border With Russia Again", + "link": "https://www.nytimes.com/2023/12/14/world/europe/finland-border-russia.html", + "pubDate": "Fri, 15 Dec 2023 08:02:57 +0000", + "dc:creator": "Johanna Lemola and Emma Bubola", + "content": "The country accused Russia of resuming an effort to funnel mostly African and Middle Eastern migrants into Finland in an effort to destabilize it.", + "contentSnippet": "The country accused Russia of resuming an effort to funnel mostly African and Middle Eastern migrants into Finland in an effort to destabilize it.", + "guid": "https://www.nytimes.com/2023/12/14/world/europe/finland-border-russia.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Frontex", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Finland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-15T08:02:57.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Friday Briefing", + "link": "https://www.nytimes.com/2023/12/15/briefing/gaza-israel-biden-ukraine-hungary.html", + "pubDate": "Fri, 15 Dec 2023 05:04:25 +0000", + "dc:creator": "Natasha Frost", + "content": "A U.S. response as conditions deteriorate in Gaza.", + "contentSnippet": "A U.S. response as conditions deteriorate in Gaza.", + "guid": "https://www.nytimes.com/2023/12/15/briefing/gaza-israel-biden-ukraine-hungary.html", + "isoDate": "2023-12-15T05:04:25.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Stories About Wonder, Fireworks and Vegemite", + "link": "https://www.nytimes.com/2023/12/14/world/australia/australia-letter-wonder-fireworks-vegemite.html", + "pubDate": "Fri, 15 Dec 2023 02:40:26 +0000", + "dc:creator": "Natasha Frost", + "content": "Twelve months of counterprogramming from the Australia bureau.", + "contentSnippet": "Twelve months of counterprogramming from the Australia bureau.", + "guid": "https://www.nytimes.com/2023/12/14/world/australia/australia-letter-wonder-fireworks-vegemite.html", + "categories": [ + { + "_": "Australia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T02:40:26.000Z" + }, + { + "creator": "Christopher F. Schuetze", + "title": "Germany Accuses Four Men It Links to Hamas of Plotting Attacks on Jews", + "link": "https://www.nytimes.com/2023/12/14/world/middleeast/four-men-hamas-attack-plot-jews.html", + "pubDate": "Fri, 15 Dec 2023 01:07:58 +0000", + "dc:creator": "Christopher F. Schuetze", + "content": "Three of the men were taken into custody in Berlin and another was arrested by Dutch police in the port city of Rotterdam, according to Germany\u2019s justice minister.", + "contentSnippet": "Three of the men were taken into custody in Berlin and another was arrested by Dutch police in the port city of Rotterdam, according to Germany\u2019s justice minister.", + "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/four-men-hamas-attack-plot-jews.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Berlin (Germany)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Rotterdam (Netherlands)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T01:07:58.000Z" + }, + { + "creator": "Adam Entous, Aaron Boxerman and Thomas Fuller", + "title": "Biden Administration Urges Israel to Scale Down Its War in Gaza", + "link": "https://www.nytimes.com/2023/12/14/us/politics/israel-gaza-hamas-us.html", + "pubDate": "Fri, 15 Dec 2023 01:05:17 +0000", + "dc:creator": "Adam Entous, Aaron Boxerman and Thomas Fuller", + "content": "The call for a more targeted phase in the war appeared to be the most definitive effort yet by the United States to restrain Israel in its retaliation against Hamas for the attacks it led on Oct. 7.", + "contentSnippet": "The call for a more targeted phase in the war appeared to be the most definitive effort yet by the United States to restrain Israel in its retaliation against Hamas for the attacks it led on Oct. 7.", + "guid": "https://www.nytimes.com/2023/12/14/us/politics/israel-gaza-hamas-us.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T01:05:17.000Z" + }, + { + "creator": "Hiba Yazbek, Ephrat Livni and Aaron Boxerman", + "title": "At Least 12 Killed in Israeli Raid in West Bank, Palestinians Say", + "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-jenin-12-killed.html", + "pubDate": "Fri, 15 Dec 2023 00:28:57 +0000", + "dc:creator": "Hiba Yazbek, Ephrat Livni and Aaron Boxerman", + "content": "Israel said three soldiers were disciplined for video showing some of them singing a Jewish prayer in a mosque in Jenin, where Israeli forces concluded a 60-hour raid.", + "contentSnippet": "Israel said three soldiers were disciplined for video showing some of them singing a Jewish prayer in a mosque in Jenin, where Israeli forces concluded a 60-hour raid.", + "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-jenin-12-killed.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mosques", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-15T00:28:57.000Z" + }, + { + "creator": "Fl\u00e1via Milhorance and Paulo Motoryn", + "title": "Brazil\u2019s Congress Weakens Protection of Indigenous Lands, Defying Lula", + "link": "https://www.nytimes.com/2023/12/14/world/americas/brazil-indigenous-land-law.html", + "pubDate": "Thu, 14 Dec 2023 23:41:28 +0000", + "dc:creator": "Fl\u00e1via Milhorance and Paulo Motoryn", + "content": "While Brazil vows to fight climate change, lawmakers approved a law making it harder for Indigenous tribes to block deforestation, overriding a veto by President Luiz In\u00e1cio Lula da Silva.", + "contentSnippet": "While Brazil vows to fight climate change, lawmakers approved a law making it harder for Indigenous tribes to block deforestation, overriding a veto by President Luiz In\u00e1cio Lula da Silva.", + "guid": "https://www.nytimes.com/2023/12/14/world/americas/brazil-indigenous-land-law.html", + "categories": [ + { + "_": "Indigenous People", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United Nations Framework Convention on Climate Change", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Forests and Forestry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Da Silva, Luiz Inacio Lula", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Amazon Jungle", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Brazil", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-14T23:41:28.000Z" + }, + { + "creator": "Michael D. Shear", + "title": "U.S. Naval Officer Is Released From Jail in Japan After Yearslong Effort", + "link": "https://www.nytimes.com/2023/12/14/us/politics/alkonis-us-japan.html", + "pubDate": "Thu, 14 Dec 2023 23:39:10 +0000", + "dc:creator": "Michael D. Shear", + "content": "The fallout over the case has strained diplomatic ties between Japan and the United States.", + "contentSnippet": "The fallout over the case has strained diplomatic ties between Japan and the United States.", + "guid": "https://www.nytimes.com/2023/12/14/us/politics/alkonis-us-japan.html", + "categories": [ + { + "_": "Alkonis, Ridge", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sentences (Criminal)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Navy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Justice Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T23:39:10.000Z" + }, + { + "creator": "Christoph Koettl and Christiaan Triebert", + "title": "Satellite Imagery and Video Shows Some Gazan Cemeteries Razed by Israeli Forces", + "link": "https://www.nytimes.com/2023/12/14/world/middleeast/gaza-cemeteries-damage-israel.html", + "pubDate": "Thu, 14 Dec 2023 23:08:50 +0000", + "dc:creator": "Christoph Koettl and Christiaan Triebert", + "content": "The laws of armed conflict consider the intentional destruction of religious sites without military necessity a possible war crime.", + "contentSnippet": "The laws of armed conflict consider the intentional destruction of religious sites without military necessity a possible war crime.", + "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/gaza-cemeteries-damage-israel.html", + "categories": [ + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Jabaliya Refugee Camp (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T23:08:50.000Z" + }, + { + "creator": "Justin Porter", + "title": "Friday Briefing: U.S. Urges Israel to Scale Back Its War", + "link": "https://www.nytimes.com/2023/12/14/briefing/israel-hamas-ukraine-eu-china-youtube.html", + "pubDate": "Thu, 14 Dec 2023 22:23:40 +0000", + "dc:creator": "Justin Porter", + "content": "Plus, why you might be an early riser.", + "contentSnippet": "Plus, why you might be an early riser.", + "guid": "https://www.nytimes.com/2023/12/14/briefing/israel-hamas-ukraine-eu-china-youtube.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "YouTube.com", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T22:23:40.000Z" + }, + { + "creator": "Hiba Yazbek", + "title": "3-Day Israeli Raid in Jenin Kills at Least 12, Palestinian Officials Say", + "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-west-bank-jenin-raid.html", + "pubDate": "Thu, 14 Dec 2023 22:12:34 +0000", + "dc:creator": "Hiba Yazbek", + "content": "Residents said Israeli military vehicles left the city on Thursday, signaling an end to the operation inside Jenin, a stronghold of Palestinian resistance in the occupied West Bank.", + "contentSnippet": "Residents said Israeli military vehicles left the city on Thursday, signaling an end to the operation inside Jenin, a stronghold of Palestinian resistance in the occupied West Bank.", + "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-west-bank-jenin-raid.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Jenin (West Bank)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "West Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hospitals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T22:12:34.000Z" + }, + { + "creator": "Valerie Hopkins and Anton Troianovski", + "title": "Takeaways From Putin\u2019s Address on the Ukraine War and More", + "link": "https://www.nytimes.com/2023/12/14/world/europe/putin-speech-russia.html", + "pubDate": "Thu, 14 Dec 2023 22:02:33 +0000", + "dc:creator": "Valerie Hopkins and Anton Troianovski", + "content": "The Russian leader suggested that Western support for Ukraine was drying up and also gave his first comments about Evan Gershkovich, an American reporter detained in Russia.", + "contentSnippet": "The Russian leader suggested that Western support for Ukraine was drying up and also gave his first comments about Evan Gershkovich, an American reporter detained in Russia.", + "guid": "https://www.nytimes.com/2023/12/14/world/europe/putin-speech-russia.html", + "categories": [ + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-14T22:02:33.000Z" + }, + { + "creator": "Ephrat Livni and Aaron Boxerman", + "title": "Israel Says It Disciplined Soldiers Who Sang a Jewish Prayer at a Mosque in Jenin", + "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-soldiers-prayer-jenin-mosque.html", + "pubDate": "Thu, 14 Dec 2023 21:39:01 +0000", + "dc:creator": "Ephrat Livni and Aaron Boxerman", + "content": "With tensions in the area already high, the soldiers were \u201cremoved from operational activity\u201d because of behavior that stood in \u201ccomplete opposition\u201d to the Israeli military\u2019s values, it said.", + "contentSnippet": "With tensions in the area already high, the soldiers were \u201cremoved from operational activity\u201d because of behavior that stood in \u201ccomplete opposition\u201d to the Israeli military\u2019s values, it said.", + "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-soldiers-prayer-jenin-mosque.html", + "categories": [ + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Jenin (West Bank)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "West Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T21:39:01.000Z" + }, + { + "creator": "Valerie Hopkins and Anton Troianovski", + "title": "Putin Suggests He Has a Winning Hand in His War in Ukraine", + "link": "https://www.nytimes.com/2023/12/14/world/europe/putin-news-conference-russia-ukraine.html", + "pubDate": "Thu, 14 Dec 2023 21:35:14 +0000", + "dc:creator": "Valerie Hopkins and Anton Troianovski", + "content": "The Russian leader, in his annual news conference, said he was open to peace talks but showed no hint of compromise. \u201cPeace will come when we achieve our goals,\u201d he said.", + "contentSnippet": "The Russian leader, in his annual news conference, said he was open to peace talks but showed no hint of compromise. \u201cPeace will come when we achieve our goals,\u201d he said.", + "guid": "https://www.nytimes.com/2023/12/14/world/europe/putin-news-conference-russia-ukraine.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gershkovich, Evan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Political Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wall Street Journal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Whelan, Paul N", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T21:35:14.000Z" + }, + { + "creator": "Eshe Nelson", + "title": "Bank of England Keeps Interest Rates at 5.25%, a 15-Year High", + "link": "https://www.nytimes.com/2023/12/14/business/bank-of-england-interest-rates.html", + "pubDate": "Thu, 14 Dec 2023 17:29:12 +0000", + "dc:creator": "Eshe Nelson", + "content": "The Bank of England and European Central Bank both held their benchmark rates steady. Even though inflation has been slowing, they gave no indication of when rates would start to come down.", + "contentSnippet": "The Bank of England and European Central Bank both held their benchmark rates steady. Even though inflation has been slowing, they gave no indication of when rates would start to come down.", + "guid": "https://www.nytimes.com/2023/12/14/business/bank-of-england-interest-rates.html", + "categories": [ + { + "_": "Banking and Financial Institutions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation (Economics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bank of England", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-14T17:29:12.000Z" + }, + { + "creator": "Claire Moses", + "title": "The North Sea Can Be Scary. But Maybe Not TikTok Scary.", + "link": "https://www.nytimes.com/2023/12/14/style/north-sea-tiktok.html", + "pubDate": "Thu, 14 Dec 2023 16:57:33 +0000", + "dc:creator": "Claire Moses", + "content": "A trend nobody asked for is here: Terrifying videos of unruly waves.", + "contentSnippet": "A trend nobody asked for is here: Terrifying videos of unruly waves.", + "guid": "https://www.nytimes.com/2023/12/14/style/north-sea-tiktok.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ships and Shipping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fish and Other Marine Life", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oceans and Seas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "North Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-14T16:57:33.000Z" + }, + { + "creator": "Abdi Latif Dahir", + "title": "Second Tanzanian Is Confirmed Killed in Oct. 7 Attacks in Israel", + "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-hamas-hostage-joshua-mollel.html", + "pubDate": "Thu, 14 Dec 2023 16:43:16 +0000", + "dc:creator": "Abdi Latif Dahir", + "content": "Tanzania\u2019s foreign minister said that Joshua Mollel, an agricultural student, was \u201cimmediately killed after being kidnapped by Hamas.\u201d", + "contentSnippet": "Tanzania\u2019s foreign minister said that Joshua Mollel, an agricultural student, was \u201cimmediately killed after being kidnapped by Hamas.\u201d", + "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-hamas-hostage-joshua-mollel.html", + "categories": [ + { + "_": "Tanzania", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Agriculture and Farming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-14T16:43:16.000Z" + }, + { + "creator": "Isabel Kershner", + "title": "To Fight Hamas, Israel\u2019s Leaders Stopped Fighting One Another. For Now.", + "link": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-war-cabinet-gaza-netanyahu.html", + "pubDate": "Thu, 14 Dec 2023 12:03:30 +0000", + "dc:creator": "Isabel Kershner", + "content": "A team of rivals joined together in Prime Minister Benjamin Netanyahu\u2019s war cabinet. But beneath the veneer of unity, there are political differences and old resentments.", + "contentSnippet": "A team of rivals joined together in Prime Minister Benjamin Netanyahu\u2019s war cabinet. But beneath the veneer of unity, there are political differences and old resentments.", + "guid": "https://www.nytimes.com/2023/12/14/world/middleeast/israel-war-cabinet-gaza-netanyahu.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gallant, Yoav", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Eisenkot, Gadi", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gantz, Benny", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Dermer, Ron", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Lebanon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "West Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-14T12:03:30.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Thursday Briefing", + "link": "https://www.nytimes.com/2023/12/14/briefing/climate-summit-israel-ukraine.html", + "pubDate": "Thu, 14 Dec 2023 06:24:20 +0000", + "dc:creator": "Natasha Frost", + "content": "An agreement at the U.N. climate summit.", + "contentSnippet": "An agreement at the U.N. climate summit.", + "guid": "https://www.nytimes.com/2023/12/14/briefing/climate-summit-israel-ukraine.html", + "isoDate": "2023-12-14T06:24:20.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Australian Court Throws Out Conviction of Mother Accused of Killing 4 Children", + "link": "https://www.nytimes.com/2023/12/13/world/australia/australia-folbigg-conviction-overturned.html", + "pubDate": "Thu, 14 Dec 2023 05:29:46 +0000", + "dc:creator": "Natasha Frost", + "content": "Kathleen Folbigg, who spent years in prison, was pardoned in June, after an inquiry found that her children had most likely died of natural causes.", + "contentSnippet": "Kathleen Folbigg, who spent years in prison, was pardoned in June, after an inquiry found that her children had most likely died of natural causes.", + "guid": "https://www.nytimes.com/2023/12/13/world/australia/australia-folbigg-conviction-overturned.html", + "categories": [ + { + "_": "Australia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Murders, Attempted Murders and Homicides", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Child Abuse and Neglect", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Amnesties, Commutations and Pardons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kathleen Folbigg", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "New South Wales (Australia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-14T05:29:46.000Z" + }, + { + "creator": "Constant M\u00e9heut and John Yoon", + "title": "Russian Missile Attack on Kyiv Injures Dozens", + "link": "https://www.nytimes.com/2023/12/12/world/europe/ukraine-kyiv-missile-strike.html", + "pubDate": "Thu, 14 Dec 2023 05:06:49 +0000", + "dc:creator": "Constant M\u00e9heut and John Yoon", + "content": "Ukraine\u2019s military said that it had shot down all the ballistic missiles targeting the capital, but that falling debris caused significant damage.", + "contentSnippet": "Ukraine\u2019s military said that it had shot down all the ballistic missiles targeting the capital, but that falling debris caused significant damage.", + "guid": "https://www.nytimes.com/2023/12/12/world/europe/ukraine-kyiv-missile-strike.html", + "categories": [ + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kyiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T05:06:49.000Z" + }, + { + "creator": "Hannah Beech, Muktita Suhartono and Lauren DeCicca", + "title": "Held Hostage in Gaza, a Thai Worker\u2019s Prayers for Freedom Come True", + "link": "https://www.nytimes.com/2023/12/13/world/asia/thailand-hostages-gaza-hamas.html", + "pubDate": "Thu, 14 Dec 2023 03:55:16 +0000", + "dc:creator": "Hannah Beech, Muktita Suhartono and Lauren DeCicca", + "content": "A Thai farmworker clung to hope during her nearly 50 days of captivity in Gaza by befriending a young Israeli girl and dreaming of reuniting with her boyfriend, who had also been abducted.", + "contentSnippet": "A Thai farmworker clung to hope during her nearly 50 days of captivity in Gaza by befriending a young Israeli girl and dreaming of reuniting with her boyfriend, who had also been abducted.", + "guid": "https://www.nytimes.com/2023/12/13/world/asia/thailand-hostages-gaza-hamas.html", + "categories": [ + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Workers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Buddhism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Monasteries and Monks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Thai Food (Cuisine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Agriculture and Farming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Thailand", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-14T03:55:16.000Z" + }, + { + "creator": "Zolan Kanno-Youngs and Karoun Demirjian", + "title": "Inside the Border Talks That Could Decide the Fate of Ukraine Aid", + "link": "https://www.nytimes.com/2023/12/13/us/politics/congress-biden-border-ukraine.html", + "pubDate": "Thu, 14 Dec 2023 00:31:54 +0000", + "dc:creator": "Zolan Kanno-Youngs and Karoun Demirjian", + "content": "Negotiators are racing to reach a deal before Congress is expected to head home for the holidays at the end of the week.", + "contentSnippet": "Negotiators are racing to reach a deal before Congress is expected to head home for the holidays at the end of the week.", + "guid": "https://www.nytimes.com/2023/12/13/us/politics/congress-biden-border-ukraine.html", + "categories": [ + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asylum, Right of", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Democratic Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-14T00:31:54.000Z" + }, + { + "creator": "Adam Sella", + "title": "10 Israeli Soldiers Killed in Gaza ", + "link": "https://www.nytimes.com/2023/12/13/world/middleeast/israel-soldiers-killed-gaza-hamas.html", + "pubDate": "Thu, 14 Dec 2023 00:15:46 +0000", + "dc:creator": "Adam Sella", + "content": "The military said that 10 of its soldiers had died in fighting in the north of the enclave.", + "contentSnippet": "The military said that 10 of its soldiers had died in fighting in the north of the enclave.", + "guid": "https://www.nytimes.com/2023/12/13/world/middleeast/israel-soldiers-killed-gaza-hamas.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-14T00:15:46.000Z" + }, + { + "creator": "Amanda Taub", + "title": "Britain\u2019s dangerous game of constitutional hardball", + "link": "https://www.nytimes.com/2023/12/13/world/europe/sunak-rwanda-constitutional-hardball.html", + "pubDate": "Wed, 13 Dec 2023 22:40:57 +0000", + "dc:creator": "Amanda Taub", + "content": "In seeking to override the U.K.\u2019s highest court, Rishi Sunak\u2019s government is following other nations in a trend that can damage democracy, experts say.", + "contentSnippet": "In seeking to override the U.K.\u2019s highest court, Rishi Sunak\u2019s government is following other nations in a trend that can damage democracy, experts say.", + "guid": "https://www.nytimes.com/2023/12/13/world/europe/sunak-rwanda-constitutional-hardball.html", + "categories": [ + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Rwanda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asylum, Right of", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Constitutions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Democracy (Theory and Philosophy)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Courts and the Judiciary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Human Rights and Human Rights Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Legislatures and Parliaments", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conservative Party (Great Britain)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Supreme Court of the United Kingdom", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Sunak, Rishi (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Johnson, Boris", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-13T22:40:57.000Z" + }, + { + "creator": "Patrick Kingsley", + "title": "Israel\u2019s Netanyahu, Sparring With Biden on Gaza, Faces Risk and Reward", + "link": "https://www.nytimes.com/2023/12/13/world/middleeast/netanyahu-biden-israel-hamas-war.html", + "pubDate": "Wed, 13 Dec 2023 20:56:39 +0000", + "dc:creator": "Patrick Kingsley", + "content": "Israel\u2019s prime minister said he disagreed with President Biden about what should happen in Gaza after the war, and analysts say he might try to use the rift to shore up domestic support.", + "contentSnippet": "Israel\u2019s prime minister said he disagreed with President Biden about what should happen in Gaza after the war, and analysts say he might try to use the rift to shore up domestic support.", + "guid": "https://www.nytimes.com/2023/12/13/world/middleeast/netanyahu-biden-israel-hamas-war.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fatah, Al", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-13T20:56:39.000Z" + }, + { + "creator": "Meg Felling and Nicolas Axelrod", + "title": "\u2018She Gave Me Hope\u2019: Thai Hostage\u2019s Friendship With an Israeli Child", + "link": "https://www.nytimes.com/video/world/asia/100000009221568/thailand-hostages-gaza-hamas.html", + "pubDate": "Wed, 13 Dec 2023 20:37:19 +0000", + "dc:creator": "Meg Felling and Nicolas Axelrod", + "content": "Thai hostage Nutthawaree Munkan was held by Hamas for nearly 50 days. During her time underground, a 5-year-old Israeli child gave her hope that she\u2019d make it out alive.", + "contentSnippet": "Thai hostage Nutthawaree Munkan was held by Hamas for nearly 50 days. During her time underground, a 5-year-old Israeli child gave her hope that she\u2019d make it out alive.", + "guid": "https://www.nytimes.com/video/world/asia/100000009221568/thailand-hostages-gaza-hamas.html", + "categories": [ + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Thailand", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T20:37:19.000Z" + }, + { + "creator": "Jack Nicas, Natalie Alcoba and Luc\u00eda Cholakian Herrera", + "title": "Argentina\u2019s New \u2018Anarcho-Capitalist\u2019 President Starts Slashing", + "link": "https://www.nytimes.com/2023/12/12/world/americas/argentina-javier-milei-cuts.html", + "pubDate": "Wed, 13 Dec 2023 20:05:08 +0000", + "dc:creator": "Jack Nicas, Natalie Alcoba and Luc\u00eda Cholakian Herrera", + "content": "Javier Milei has railed against Argentina\u2019s government for years. In his first week in charge, he\u2019s begun cutting it down.", + "contentSnippet": "Javier Milei has railed against Argentina\u2019s government for years. In his first week in charge, he\u2019s begun cutting it down.", + "guid": "https://www.nytimes.com/2023/12/12/world/americas/argentina-javier-milei-cuts.html", + "categories": [ + { + "_": "Argentina", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Milei, Javier", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation (Economics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Infrastructure (Public Works)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Currency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-13T20:05:08.000Z" + }, + { + "creator": "Andrew Higgins", + "title": "With a New Leader, Poland Prepares for a Course Change in Europe", + "link": "https://www.nytimes.com/2023/12/13/world/europe/donald-tusk-poland-eu.html", + "pubDate": "Wed, 13 Dec 2023 18:07:47 +0000", + "dc:creator": "Andrew Higgins", + "content": "Prime Minister Donald Tusk is sworn in and vows to try to invigorate flagging European support for Ukraine and push for \u201cfull mobilization\u201d against Russia\u2019s military assault.", + "contentSnippet": "Prime Minister Donald Tusk is sworn in and vows to try to invigorate flagging European support for Ukraine and push for \u201cfull mobilization\u201d against Russia\u2019s military assault.", + "guid": "https://www.nytimes.com/2023/12/13/world/europe/donald-tusk-poland-eu.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Tusk, Donald", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Orban, Viktor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Morawiecki, Mateusz", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Poland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T18:07:47.000Z" + }, + { + "creator": "Livia Albeck-Ripka", + "title": "Canadian Town Hosts Passengers From Diverted Delta Flight", + "link": "https://www.nytimes.com/2023/12/13/world/canada/delta-flight-diverted-newfoundland.html", + "pubDate": "Wed, 13 Dec 2023 16:42:14 +0000", + "dc:creator": "Livia Albeck-Ripka", + "content": "The flight was forced to land because of a \u201cmechanical issue,\u201d the company said, leaving hundreds of passengers stranded.", + "contentSnippet": "The flight was forced to land because of a \u201cmechanical issue,\u201d the company said, leaving hundreds of passengers stranded.", + "guid": "https://www.nytimes.com/2023/12/13/world/canada/delta-flight-diverted-newfoundland.html", + "categories": [ + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "September 11 (2001)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Airports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Delta Air Lines Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Canada", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Labrador (Canada)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Newfoundland (Canada)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T16:42:14.000Z" + }, + { + "creator": "Victoria Kim", + "title": "The U.S. criticizes Israel for \u2018indiscriminate\u2019 bombing in Gaza.", + "link": "https://www.nytimes.com/2023/12/13/world/middleeast/us-criticizes-israel-for-indiscriminate-bombing-in-gaza.html", + "pubDate": "Wed, 13 Dec 2023 15:23:23 +0000", + "dc:creator": "Victoria Kim", + "content": "bombing approach in Gaza.", + "contentSnippet": "bombing approach in Gaza.", + "guid": "https://www.nytimes.com/2023/12/13/world/middleeast/us-criticizes-israel-for-indiscriminate-bombing-in-gaza.html", + "isoDate": "2023-12-13T15:23:23.000Z" + }, + { + "creator": "Alan Rappeport", + "title": "World Bank Warns Record Debt Burdens Haunt Developing Economies", + "link": "https://www.nytimes.com/2023/12/13/us/politics/world-bank-debt-developing-nations.html", + "pubDate": "Wed, 13 Dec 2023 14:30:07 +0000", + "dc:creator": "Alan Rappeport", + "content": "Surging interest rates and waning financing options threaten a \u201clost decade\u201d for poor countries.", + "contentSnippet": "Surging interest rates and waning financing options threaten a \u201clost decade\u201d for poor countries.", + "guid": "https://www.nytimes.com/2023/12/13/us/politics/world-bank-debt-developing-nations.html", + "categories": [ + { + "_": "Developing Countries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Credit and Debt", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Poverty", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Interest Rates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-13T14:30:07.000Z" + }, + { + "creator": "Paul Sonne and Andrew E. Kramer", + "title": "Ukraine Faces Critical Tests as It Duels With Russia for Stamina", + "link": "https://www.nytimes.com/2023/12/13/world/europe/ukraine-under-pressure-russia.html", + "pubDate": "Wed, 13 Dec 2023 14:16:02 +0000", + "dc:creator": "Paul Sonne and Andrew E. Kramer", + "content": "With Western support for Kyiv softening and Congress holding up urgently needed aid, Vladimir Putin\u2019s bet on outlasting Ukraine and its allies is looking stronger.", + "contentSnippet": "With Western support for Kyiv softening and Congress holding up urgently needed aid, Vladimir Putin\u2019s bet on outlasting Ukraine and its allies is looking stronger.", + "guid": "https://www.nytimes.com/2023/12/13/world/europe/ukraine-under-pressure-russia.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "North Atlantic Treaty Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Johnson, Mike (1972- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-13T14:16:02.000Z" + }, + { + "creator": "Steven Erlanger", + "title": "Under Rules of War, \u2018Proportionality\u2019 in Gaza Is Not About Evening the Score", + "link": "https://www.nytimes.com/2023/12/13/world/middleeast/israel-gaza-proportionality-law-of-war.html", + "pubDate": "Wed, 13 Dec 2023 13:55:32 +0000", + "dc:creator": "Steven Erlanger", + "content": "The concept, important for determining the legality of an act of war, is about weighing civilian harm against military objectives, not about achieving a balanced number of casualties.", + "contentSnippet": "The concept, important for determining the legality of an act of war, is about weighing civilian harm against military objectives, not about achieving a balanced number of casualties.", + "guid": "https://www.nytimes.com/2023/12/13/world/middleeast/israel-gaza-proportionality-law-of-war.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T13:55:32.000Z" + }, + { + "creator": "Cara Buckley", + "title": "In Real vs. Fake Christmas Tree Debate: Consider the Wildlife", + "link": "https://www.nytimes.com/2023/12/13/climate/christmas-tree-farms-wildlife.html", + "pubDate": "Wed, 13 Dec 2023 11:38:58 +0000", + "dc:creator": "Cara Buckley", + "content": "It may seem counterintuitive to support the annual culling of trees, but environmentalists say Christmas tree farms have ecological benefits.", + "contentSnippet": "It may seem counterintuitive to support the annual culling of trees, but environmentalists say Christmas tree farms have ecological benefits.", + "guid": "https://www.nytimes.com/2023/12/13/climate/christmas-tree-farms-wildlife.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Forests and Forestry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Christmas Trees", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conservation of Resources", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Endangered and Extinct Species", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Birds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-13T11:38:58.000Z" + }, + { + "creator": "Farnaz Fassihi", + "title": "U.N. General Assembly Votes for Israel-Hamas Cease-Fire, Countering U.S. Veto", + "link": "https://www.nytimes.com/2023/12/12/world/middleeast/un-general-assembly-israel-cease-fire.html", + "pubDate": "Wed, 13 Dec 2023 08:50:49 +0000", + "dc:creator": "Farnaz Fassihi", + "content": "About three-quarters of the body\u2019s members voted in favor of the nonbinding resolution. The result underscored the isolation of Israel and the United States.", + "contentSnippet": "About three-quarters of the body\u2019s members voted in favor of the nonbinding resolution. The result underscored the isolation of Israel and the United States.", + "guid": "https://www.nytimes.com/2023/12/12/world/middleeast/un-general-assembly-israel-cease-fire.html", + "categories": [ + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "General Assembly (UN)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T08:50:49.000Z" + }, + { + "creator": "Yan Zhuang", + "title": "Tropical Cyclone Jasper Nears Australia Amid Wave of Extreme Weather", + "link": "https://www.nytimes.com/2023/12/12/world/australia/cyclone-jasper-queensland-australia.html", + "pubDate": "Wed, 13 Dec 2023 07:53:37 +0000", + "dc:creator": "Yan Zhuang", + "content": "The storm is part of a stretch of wild weather the continent has been experiencing, which includes heat waves, fires and floods.", + "contentSnippet": "The storm is part of a stretch of wild weather the continent has been experiencing, which includes heat waves, fires and floods.", + "guid": "https://www.nytimes.com/2023/12/12/world/australia/cyclone-jasper-queensland-australia.html", + "categories": [ + { + "_": "Australia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Cyclones", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bureau of Meteorology (Australia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Weather", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Heat and Heat Waves", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-13T07:53:37.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Wednesday Briefing", + "link": "https://www.nytimes.com/2023/12/13/briefing/biden-israel-sunak-rwanda.html", + "pubDate": "Wed, 13 Dec 2023 05:11:59 +0000", + "dc:creator": "Natasha Frost", + "content": "President Biden\u2019s warning to Israel.", + "contentSnippet": "President Biden\u2019s warning to Israel.", + "guid": "https://www.nytimes.com/2023/12/13/briefing/biden-israel-sunak-rwanda.html", + "isoDate": "2023-12-13T05:11:59.000Z" + }, + { + "creator": "Motoko Rich, Hikari Hida and Chang W. Lee", + "title": "Japan Wants a Stronger Military. Can It Find Enough Troops?", + "link": "https://www.nytimes.com/2023/12/13/world/asia/japan-military.html", + "pubDate": "Wed, 13 Dec 2023 05:01:54 +0000", + "dc:creator": "Motoko Rich, Hikari Hida and Chang W. Lee", + "content": "A shrinking, aging population poses an obstacle as the nation tries to counter security threats from China and North Korea.", + "contentSnippet": "A shrinking, aging population poses an obstacle as the nation tries to counter security threats from China and North Korea.", + "guid": "https://www.nytimes.com/2023/12/13/world/asia/japan-military.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cyberwarfare and Defense", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Population", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Draft and Recruitment (Military)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T05:01:54.000Z" + }, + { + "creator": "Talya Minsberg and Ephrat Livni", + "title": "Israel Announces Discovery of 2 Hostages\u2019 Bodies in Gaza", + "link": "https://www.nytimes.com/2023/12/12/world/middleeast/israel-hostages-bodies-gaza.html", + "pubDate": "Tue, 12 Dec 2023 22:18:24 +0000", + "dc:creator": "Talya Minsberg and Ephrat Livni", + "content": "The remains of Eden Zakaria, 27, and Master Sgt. Ziv Dado, 36, were repatriated to Israel, officials said.", + "contentSnippet": "The remains of Eden Zakaria, 27, and Master Sgt. Ziv Dado, 36, were repatriated to Israel, officials said.", + "guid": "https://www.nytimes.com/2023/12/12/world/middleeast/israel-hostages-bodies-gaza.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-12T22:18:24.000Z" + }, + { + "creator": "Jonathan Wolfe", + "title": "Wednesday Briefing: Biden Says Israel Is Losing Support", + "link": "https://www.nytimes.com/2023/12/12/briefing/israel-gaza-ukraine.html", + "pubDate": "Tue, 12 Dec 2023 21:01:20 +0000", + "dc:creator": "Jonathan Wolfe", + "content": "Plus, Volodymyr Zelensky pleaded for more aid in Washington.", + "contentSnippet": "Plus, Volodymyr Zelensky pleaded for more aid in Washington.", + "guid": "https://www.nytimes.com/2023/12/12/briefing/israel-gaza-ukraine.html", + "isoDate": "2023-12-12T21:01:20.000Z" + }, + { + "creator": "Andrew Higgins", + "title": "Putin\u2019s Drive to Rewrite History Snares a Retired Lithuanian Judge", + "link": "https://www.nytimes.com/2024/01/04/world/europe/putin-russia-lithuania-judge.html", + "pubDate": "Thu, 04 Jan 2024 10:04:03 +0000", + "dc:creator": "Andrew Higgins", + "content": "A few years ago, Kornelija Maceviciene ruled against Soviet officers for a brutal crackdown on pro-independence protesters in her country in 1991. That has made her a target for a Russian court.", + "contentSnippet": "A few years ago, Kornelija Maceviciene ruled against Soviet officers for a brutal crackdown on pro-independence protesters in her country in 1991. That has made her a target for a Russian court.", + "guid": "https://www.nytimes.com/2024/01/04/world/europe/putin-russia-lithuania-judge.html", + "categories": [ + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Lithuania", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "USSR (Former Soviet Union)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T10:04:03.000Z" + }, + { + "creator": "The New York Times", + "title": "Israel-Hamas War: Killing of Senior Leader Carries Risks for Israel, Analysts Say", + "link": "https://www.nytimes.com/live/2024/01/03/world/israel-hamas-war-gaza-news", + "pubDate": "Thu, 04 Jan 2024 09:56:04 +0000", + "dc:creator": "The New York Times", + "content": "Saleh al-Arouri was a key Hamas strategist and a liaison to its Iranian sponsors. But his assassination was likely to set back talks on freeing the remaining hostages in Gaza.", + "contentSnippet": "Saleh al-Arouri was a key Hamas strategist and a liaison to its Iranian sponsors. But his assassination was likely to set back talks on freeing the remaining hostages in Gaza.", + "guid": "https://www.nytimes.com/live/2024/01/03/world/israel-hamas-war-gaza-news", + "isoDate": "2024-01-04T09:56:04.000Z" + }, + { + "creator": "Ivan Nechepurenko and Constant M\u00e9heut", + "title": "Russia and Ukraine Exchange Record Number of P.O.W.s", + "link": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-russia-prisoner-exchange.html", + "pubDate": "Thu, 04 Jan 2024 05:59:39 +0000", + "dc:creator": "Ivan Nechepurenko and Constant M\u00e9heut", + "content": "The exchange of prisoners was the first in months and came as both sides were engaged in an escalating cycle of air assaults.", + "contentSnippet": "The exchange of prisoners was the first in months and came as both sides were engaged in an escalating cycle of air assaults.", + "guid": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-russia-prisoner-exchange.html", + "categories": [ + { + "_": "Prisoners of War", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Budanov, Kyrylo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-04T05:59:39.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Thursday Briefing", + "link": "https://www.nytimes.com/2024/01/04/briefing/iran-bombing-hamas-leader.html", + "pubDate": "Thu, 04 Jan 2024 05:14:48 +0000", + "dc:creator": "Natasha Frost", + "content": "A deadly blast in Iran.", + "contentSnippet": "A deadly blast in Iran.", + "guid": "https://www.nytimes.com/2024/01/04/briefing/iran-bombing-hamas-leader.html", + "isoDate": "2024-01-04T05:14:48.000Z" + }, + { + "creator": "Natasha Frost and Maya Tekeli", + "title": "Princess Mary of Denmark, Australia\u2019s Homegrown Heroine", + "link": "https://www.nytimes.com/2024/01/03/world/australia/denmark-princess-mary-queen.html", + "pubDate": "Thu, 04 Jan 2024 05:03:51 +0000", + "dc:creator": "Natasha Frost and Maya Tekeli", + "content": "\u201cI don\u2019t recall wishing that one day I would be a princess,\u201d Princess Mary told reporters. \u201cI wanted to be a veterinarian.\u201d", + "contentSnippet": "\u201cI don\u2019t recall wishing that one day I would be a princess,\u201d Princess Mary told reporters. \u201cI wanted to be a veterinarian.\u201d", + "guid": "https://www.nytimes.com/2024/01/03/world/australia/denmark-princess-mary-queen.html", + "categories": [ + { + "_": "Mary, Princess of Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Australia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Royal Families", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Polls and Public Opinion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-04T05:03:51.000Z" + }, + { + "creator": "Ian Austen and Vjosa Isai", + "title": "Canada\u2019s Boreal Forests Badly Damaged by Logging", + "link": "https://www.nytimes.com/2024/01/04/world/canada/canada-boreal-forest-logging.html", + "pubDate": "Thu, 04 Jan 2024 05:01:26 +0000", + "dc:creator": "Ian Austen and Vjosa Isai", + "content": "A study finds that logging has inflicted severe damage to the vast boreal forests in Ontario and Quebec, two of the country\u2019s main commercial logging regions.", + "contentSnippet": "A study finds that logging has inflicted severe damage to the vast boreal forests in Ontario and Quebec, two of the country\u2019s main commercial logging regions.", + "guid": "https://www.nytimes.com/2024/01/04/world/canada/canada-boreal-forest-logging.html", + "categories": [ + { + "_": "Forests and Forestry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conservation of Resources", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Logging Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carbon Capture and Sequestration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Griffith University (Queensland, Australia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Natural Resources Defense Council", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Canada", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ontario (Canada)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Quebec Province (Canada)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T05:01:26.000Z" + }, + { + "creator": "Roni Caryn Rabin", + "title": "Killing of Hostages Leads Israelis to Question How Army Conducts Battle", + "link": "https://www.nytimes.com/2024/01/04/world/middleeast/israel-hamas-rules-of-engagement-hostages.html", + "pubDate": "Thu, 04 Jan 2024 05:01:26 +0000", + "dc:creator": "Roni Caryn Rabin", + "content": "Israel\u2019s military said that soldiers who shot hostages, while they waved a white flag, violated its rules of engagement. Human rights activists say the rules are good, but enforcement is lax.", + "contentSnippet": "Israel\u2019s military said that soldiers who shot hostages, while they waved a white flag, violated its rules of engagement. Human rights activists say the rules are good, but enforcement is lax.", + "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/israel-hamas-rules-of-engagement-hostages.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Friendly Fire (Military and Law Enforcement)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T05:01:26.000Z" + }, + { + "creator": "Christina Anderson", + "title": "A Swedish Teenager Was on Japan Airlines Flight 516. Here\u2019s His Story.", + "link": "https://www.nytimes.com/2024/01/03/world/asia/japan-plane-flight-516-passenger.html", + "pubDate": "Thu, 04 Jan 2024 04:17:20 +0000", + "dc:creator": "Christina Anderson", + "content": "Anton Deibe, 17, and his family were flying into Tokyo when their plane collided with a Coast Guard aircraft.", + "contentSnippet": "Anton Deibe, 17, and his family were flying into Tokyo when their plane collided with a Coast Guard aircraft.", + "guid": "https://www.nytimes.com/2024/01/03/world/asia/japan-plane-flight-516-passenger.html", + "categories": [ + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Aviation Accidents, Safety and Disasters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Japan Airlines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Tokyo (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T04:17:20.000Z" + }, + { + "creator": "Vivian Yee and Farnaz Fassihi", + "title": "Over 100 Killed in Iran Blasts at Qassim Suleimani Memorial", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/iran-explosion-qassim-suleimani-ceremony.html", + "pubDate": "Thu, 04 Jan 2024 03:44:39 +0000", + "dc:creator": "Vivian Yee and Farnaz Fassihi", + "content": "No one claimed responsibility for the bombing at a memorial for Qassim Suleimani, the top commander killed by a U.S. drone strike four years ago.", + "contentSnippet": "No one claimed responsibility for the bombing at a memorial for Qassim Suleimani, the top commander killed by a U.S. drone strike four years ago.", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/iran-explosion-qassim-suleimani-ceremony.html", + "categories": [ + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Bombs and Explosives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suleimani, Qassim", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-04T03:44:39.000Z" + }, + { + "creator": "Eric Schmitt, Julian E. Barnes, Helene Cooper and David E. Sanger", + "title": "Attacks Heighten Fears of a Wider War for the Middle East and U.S.", + "link": "https://www.nytimes.com/2024/01/03/us/politics/war-israel-iran-hezbollah-yemen.html", + "pubDate": "Thu, 04 Jan 2024 03:17:06 +0000", + "dc:creator": "Eric Schmitt, Julian E. Barnes, Helene Cooper and David E. Sanger", + "content": "The killing of a top Hamas leader in Lebanon and mysterious twin explosions in Iran heighten fears of a regional war that could draw in the United States.", + "contentSnippet": "The killing of a top Hamas leader in Lebanon and mysterious twin explosions in Iran heighten fears of a regional war that could draw in the United States.", + "guid": "https://www.nytimes.com/2024/01/03/us/politics/war-israel-iran-hezbollah-yemen.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ships and Shipping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Targeted Killings", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fringe Groups and Movements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Khamenei, Ali", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Beirut (Lebanon)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-04T03:17:06.000Z" + }, + { + "creator": "Motoko Rich and Hisako Ueno", + "title": "Order and Calm Eased Evacuation from Burning Japan Airlines Jet", + "link": "https://www.nytimes.com/2024/01/03/world/asia/japan-airlines-fire.html", + "pubDate": "Thu, 04 Jan 2024 01:50:19 +0000", + "dc:creator": "Motoko Rich and Hisako Ueno", + "content": "In addition to a well-trained crew and an advanced plane, the safe evacuation of 367 passengers came down to a relative absence of panic.", + "contentSnippet": "In addition to a well-trained crew and an advanced plane, the safe evacuation of 367 passengers came down to a relative absence of panic.", + "guid": "https://www.nytimes.com/2024/01/03/world/asia/japan-airlines-fire.html", + "categories": [ + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Evacuations and Evacuees", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Aviation Accidents, Safety and Disasters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Japan Airlines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T01:50:19.000Z" + }, + { + "creator": "Roni Caryn Rabin", + "title": "Israelis Fear Assassination of Hamas Deputy May Disrupt Hostage Talks", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-hamas-assassination.html", + "pubDate": "Thu, 04 Jan 2024 00:26:37 +0000", + "dc:creator": "Roni Caryn Rabin", + "content": "Israelis welcomed news that a top Palestinian militant had been killed, but feared that it might impede the release of hostages and kindle a broader war.", + "contentSnippet": "Israelis welcomed news that a top Palestinian militant had been killed, but feared that it might impede the release of hostages and kindle a broader war.", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-hamas-assassination.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arouri, Saleh al- (1966-2024)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Lebanon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Nasrallah, Hassan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-04T00:26:37.000Z" + }, + { + "creator": "Vivian Nereim and Tariq Panja", + "title": "Menendez Case Focuses on How Qatar Trades Its Riches for Clout", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/menendez-indictment-qatar.html", + "pubDate": "Wed, 03 Jan 2024 23:42:04 +0000", + "dc:creator": "Vivian Nereim and Tariq Panja", + "content": "The tiny Gulf state has cultivated relationships with powerful people and institutions to raise its global profile, and to protect its interests.", + "contentSnippet": "The tiny Gulf state has cultivated relationships with powerful people and institutions to raise its global profile, and to protect its interests.", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/menendez-indictment-qatar.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Menendez, Robert", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Qatar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Daibes, Fred", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bribery and Kickbacks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World Cup 2022 (Soccer)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-03T23:42:04.000Z" + }, + { + "creator": "Mike Ives, Rin Hindryati and Ulet Ifansasti", + "title": "\u2018World\u2019s Oldest Pyramid\u2019? A Study\u2019s Claim Troubles Archaeologists", + "link": "https://www.nytimes.com/2024/01/03/world/asia/oldest-pyramid-indonesia-netflix.html", + "pubDate": "Wed, 03 Jan 2024 23:10:43 +0000", + "dc:creator": "Mike Ives, Rin Hindryati and Ulet Ifansasti", + "content": "The study, under investigation by its publisher, has fueled a dispute over the age of a partially excavated site and prompted warnings about the dangers of nationalist mythmaking.", + "contentSnippet": "The study, under investigation by its publisher, has fueled a dispute over the age of a partially excavated site and prompted warnings about the dangers of nationalist mythmaking.", + "guid": "https://www.nytimes.com/2024/01/03/world/asia/oldest-pyramid-indonesia-netflix.html", + "categories": [ + { + "_": "Archaeology and Anthropology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Geology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carbon Dating", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Academic and Scientific Journals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ethics and Official Misconduct", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netflix Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Society for American Archaeology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bandung (Indonesia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "John Wiley & Sons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-03T23:10:43.000Z" + }, + { + "creator": "Dionne Searcey", + "title": "Indiana\u2019s Plan to Pipe In Groundwater for Microchip-Making Draws Fire", + "link": "https://www.nytimes.com/2024/01/02/climate/indiana-leap-groundwater-pipe-microchips.html", + "pubDate": "Wed, 03 Jan 2024 22:51:29 +0000", + "dc:creator": "Dionne Searcey", + "content": "The state is courting high-tech investments, but a new industrial park may lack enough water. Opponents say piping it from miles away might dry out residential wells.", + "contentSnippet": "The state is courting high-tech investments, but a new industrial park may lack enough water. Opponents say piping it from miles away might dry out residential wells.", + "guid": "https://www.nytimes.com/2024/01/02/climate/indiana-leap-groundwater-pipe-microchips.html", + "categories": [ + { + "_": "Indiana", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Water", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Aquifers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Chips", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conservation of Resources", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tippecanoe County (Ind)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "audio-neutral-informative", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-03T22:51:29.000Z" + }, + { + "creator": "Simon Romero and Emiliano Rodr\u00edguez Mega", + "title": "Mexico Officials Rescue 31 Migrants Abducted Near U.S. Border", + "link": "https://www.nytimes.com/2024/01/03/us/migrants-abducted-mexico-us-border.html", + "pubDate": "Wed, 03 Jan 2024 22:47:38 +0000", + "dc:creator": "Simon Romero and Emiliano Rodr\u00edguez Mega", + "content": "Cartels are preying on asylum seekers and migrants from around the world as they crowd northern Mexico, creating a kidnap-for-ransom revenue stream.", + "contentSnippet": "Cartels are preying on asylum seekers and migrants from around the world as they crowd northern Mexico, creating a kidnap-for-ransom revenue stream.", + "guid": "https://www.nytimes.com/2024/01/03/us/migrants-abducted-mexico-us-border.html", + "categories": [ + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Organized Crime", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Human Rights First", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Lopez Obrador, Andres Manuel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mexico", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Tamaulipas (Mexico)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T22:47:38.000Z" + }, + { + "creator": "Euan Ward, Hwaida Saad and Ben Hubbard", + "title": "Hezbollah\u2019s Leader Pledges Revenge for Killing of a Hamas Leader in Beirut", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/hezbollah-hassan-nasrallah-speech-israel.html", + "pubDate": "Wed, 03 Jan 2024 22:20:00 +0000", + "dc:creator": "Euan Ward, Hwaida Saad and Ben Hubbard", + "content": "\u201cYesterday\u2019s crime will not go unpunished,\u201d Hassan Nasrallah warned ominously, but he gave no specifics, saying he would speak again on Friday.", + "contentSnippet": "\u201cYesterday\u2019s crime will not go unpunished,\u201d Hassan Nasrallah warned ominously, but he gave no specifics, saying he would speak again on Friday.", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/hezbollah-hassan-nasrallah-speech-israel.html", + "categories": [ + { + "_": "Nasrallah, Hassan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Arouri, Saleh al- (1966-2024)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Suleimani, Qassim", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Beirut (Lebanon)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T22:20:00.000Z" + }, + { + "creator": "Chris Buckley", + "title": "Dismissals Point to Xi Jinping\u2019s Quiet Shake-Up of China\u2019s Military", + "link": "https://www.nytimes.com/2024/01/03/world/asia/xi-jinping-military-purge.html", + "pubDate": "Wed, 03 Jan 2024 21:57:45 +0000", + "dc:creator": "Chris Buckley", + "content": "The purge of several commanders from China\u2019s legislature was the latest sign of widening investigations focused on the sensitive arms sector, experts say.", + "contentSnippet": "The purge of several commanders from China\u2019s legislature was the latest sign of widening investigations focused on the sensitive arms sector, experts say.", + "guid": "https://www.nytimes.com/2024/01/03/world/asia/xi-jinping-military-purge.html", + "categories": [ + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Xi Jinping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Central Military Commission (China)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National People's Congress (China)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "People's Liberation Army (China)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Chinese People's Political Consultative Conference", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Government Contracts and Procurement", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Li Shangfu", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "South China Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T21:57:45.000Z" + }, + { + "creator": "Alex Traub", + "title": "Maureen Flavin Sweeney Dies at 100; Her Weather Report Delayed D-Day", + "link": "https://www.nytimes.com/2024/01/02/world/europe/maureen-sweeney-dead.html", + "pubDate": "Wed, 03 Jan 2024 21:42:57 +0000", + "dc:creator": "Alex Traub", + "content": "She helped save General Eisenhower\u2019s invasion from potential disaster, enabling the Allies to gain a foothold in France that was essential to victory in World War II.", + "contentSnippet": "She helped save General Eisenhower\u2019s invasion from potential disaster, enabling the Allies to gain a foothold in France that was essential to victory in World War II.", + "guid": "https://www.nytimes.com/2024/01/02/world/europe/maureen-sweeney-dead.html", + "categories": [ + { + "_": "Sweeney, Maureen (1923-2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World War II (1939-45)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Weather", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "D-Day", + "$": { + "domain": "" + } + }, + { + "_": "Eisenhower, Dwight David", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Normandy (France)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ireland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T21:42:57.000Z" + }, + { + "creator": "Justin Porter", + "title": "Thursday Briefing: Blasts in Iran Kill Dozens", + "link": "https://www.nytimes.com/2024/01/03/briefing/iran-blasts-suleimani-japan-airlines-evacuation-china-military.html", + "pubDate": "Wed, 03 Jan 2024 21:32:00 +0000", + "dc:creator": "Justin Porter", + "content": "Plus, China shakes up its military.", + "contentSnippet": "Plus, China shakes up its military.", + "guid": "https://www.nytimes.com/2024/01/03/briefing/iran-blasts-suleimani-japan-airlines-evacuation-china-military.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Suleimani, Qassim", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Japan Airlines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Xi Jinping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T21:32:00.000Z" + }, + { + "creator": "Talya Minsberg", + "title": "Israel Supreme Court Delivers Setback to Campaign to Remove Checks on Netanyahu", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-supreme-court-netanyahu.html", + "pubDate": "Wed, 03 Jan 2024 21:08:58 +0000", + "dc:creator": "Talya Minsberg", + "content": "The country\u2019s Supreme Court ruled to postpone the adoption of a new law making it harder to designate a sitting prime minister unfit for office, a direct blow to Prime Minister Benjamin Netanyahu.", + "contentSnippet": "The country\u2019s Supreme Court ruled to postpone the adoption of a new law making it harder to designate a sitting prime minister unfit for office, a direct blow to Prime Minister Benjamin Netanyahu.", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-supreme-court-netanyahu.html", + "categories": [ + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Likud Party (Israel)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Supreme Court of Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-03T21:08:58.000Z" + }, + { + "creator": "Daniel Victor", + "title": "Israel Says It Dismantled a Hamas Tunnel Under Gaza\u2019s Al-Shifa Hospital ", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-hamas-tunnel-al-shifa-hospital.html", + "pubDate": "Wed, 03 Jan 2024 20:55:07 +0000", + "dc:creator": "Daniel Victor", + "content": "The Israeli military says the tearing down was done in November and that hospital wasn\u2019t damaged in the process.", + "contentSnippet": "The Israeli military says the tearing down was done in November and that hospital wasn\u2019t damaged in the process.", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/israel-hamas-tunnel-al-shifa-hospital.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T20:55:07.000Z" + }, + { + "creator": "Constant M\u00e9heut and Daria Mitiuk", + "title": "\u2018It\u2019s State Propaganda\u2019: Ukrainians Shun TV News as War Drags on", + "link": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-war-tv-news-telemarathon.html", + "pubDate": "Wed, 03 Jan 2024 20:30:13 +0000", + "dc:creator": "Constant M\u00e9heut and Daria Mitiuk", + "content": "A government-approved news program intended to counter Russian disinformation and boost morale is coming under criticism for painting a rosy picture of the war.", + "contentSnippet": "A government-approved news program intended to counter Russian disinformation and boost morale is coming under criticism for painting a rosy picture of the war.", + "guid": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-war-tv-news-telemarathon.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Censorship", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freedom of Speech and Expression", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Television Sets and Media Devices", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T20:30:13.000Z" + }, + { + "creator": "Mark Landler", + "title": "Junior Doctors at N.H.S. Begin 6-Day Strike", + "link": "https://www.nytimes.com/2024/01/03/world/europe/national-health-service-doctors-strike.html", + "pubDate": "Wed, 03 Jan 2024 19:31:49 +0000", + "dc:creator": "Mark Landler", + "content": "The young doctors\u2019 walkout could result in numerous canceled medical visits and surgical procedures, undoing recent progress in cutting wait times.", + "contentSnippet": "The young doctors\u2019 walkout could result in numerous canceled medical visits and surgical procedures, undoing recent progress in cutting wait times.", + "guid": "https://www.nytimes.com/2024/01/03/world/europe/national-health-service-doctors-strike.html", + "categories": [ + { + "_": "National Health Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Labour Party (Great Britain)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "England", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sunak, Rishi (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Strikes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Medicine and Health", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-03T19:31:49.000Z" + }, + { + "creator": "Ben Hubbard", + "title": "Leader\u2019s Killing Is a Blow, but Not a Knockout, for Hamas", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/hamas-leader-saleh-al-arouri-killed-ramifications.html", + "pubDate": "Wed, 03 Jan 2024 19:10:34 +0000", + "dc:creator": "Ben Hubbard", + "content": "The killing of Saleh al-Arouri, a key Hamas strategist, in Lebanon sets the organization back at a vulnerable time. The group has rebuilt after the assassination of other leaders, though.", + "contentSnippet": "The killing of Saleh al-Arouri, a key Hamas strategist, in Lebanon sets the organization back at a vulnerable time. The group has rebuilt after the assassination of other leaders, though.", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/hamas-leader-saleh-al-arouri-killed-ramifications.html", + "categories": [ + { + "_": "Arouri, Saleh al- (1966-2024)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-03T19:10:34.000Z" + }, + { + "creator": "Emma Bubola", + "title": "Who Was the Iranian General Qassim Suleimani?", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/who-is-qassim-suleimani.html", + "pubDate": "Wed, 03 Jan 2024 18:33:56 +0000", + "dc:creator": "Emma Bubola", + "content": "General Suleimani, the powerful commander heading Iran\u2019s Quds Force, was considered a hero by some in the country. The anniversary of his death has attracted horrific violence.", + "contentSnippet": "General Suleimani, the powerful commander heading Iran\u2019s Quds Force, was considered a hero by some in the country. The anniversary of his death has attracted horrific violence.", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/who-is-qassim-suleimani.html", + "categories": [ + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suleimani, Qassim", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-03T18:33:56.000Z" + }, + { + "creator": "Tiffany May", + "title": "Jimmy Lai Pleads Not Guilty to Hong Kong Security Law Charges", + "link": "https://www.nytimes.com/2024/01/02/world/asia/hong-kong-jimmy-lai-trial.html", + "pubDate": "Wed, 03 Jan 2024 18:22:35 +0000", + "dc:creator": "Tiffany May", + "content": "The prosecution accused him of colluding with U.S. officials to undermine Hong Kong\u2019s interests, citing private messages, meetings and social media posts.", + "contentSnippet": "The prosecution accused him of colluding with U.S. officials to undermine Hong Kong\u2019s interests, citing private messages, meetings and social media posts.", + "guid": "https://www.nytimes.com/2024/01/02/world/asia/hong-kong-jimmy-lai-trial.html", + "categories": [ + { + "_": "Political Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hong Kong Protests (2019)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Apple Daily", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Lai, Jimmy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hong Kong", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T18:22:35.000Z" + }, + { + "creator": "Emily Anthes", + "title": "First Case of Lethal Bird Flu in Polar Bears Reported in Alaska", + "link": "https://www.nytimes.com/2024/01/03/science/bird-flu-polar-bears.html", + "pubDate": "Wed, 03 Jan 2024 17:30:15 +0000", + "dc:creator": "Emily Anthes", + "content": "Tissue samples from a polar bear that was found dead have tested positive for the virus.", + "contentSnippet": "Tissue samples from a polar bear that was found dead have tested positive for the virus.", + "guid": "https://www.nytimes.com/2024/01/03/science/bird-flu-polar-bears.html", + "categories": [ + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "your-feed-animals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Polar Bears", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Avian Influenza", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Endangered and Extinct Species", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wildlife Die-Offs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bears", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conservation of Resources", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Viruses", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alaska", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Arctic Regions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T17:30:15.000Z" + }, + { + "creator": "Ben Hubbard", + "title": "Al-Arouri\u2019s killing is a blow to Hamas, though likely not a debilitating one, analysts say.", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/al-arouris-killing-is-a-blow-to-hamas-though-likely-not-a-debilitating-one-analysts-say.html", + "pubDate": "Wed, 03 Jan 2024 15:17:05 +0000", + "dc:creator": "Ben Hubbard", + "content": "", + "contentSnippet": "", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/al-arouris-killing-is-a-blow-to-hamas-though-likely-not-a-debilitating-one-analysts-say.html", + "isoDate": "2024-01-03T15:17:05.000Z" + }, + { + "creator": "Daniel Victor", + "title": "Who Was Saleh al-Arouri, the Senior Hamas Leader Killed in Beirut?", + "link": "https://www.nytimes.com/2024/01/02/world/middleeast/hamas-leader-beirut-killed.html", + "pubDate": "Wed, 03 Jan 2024 14:22:50 +0000", + "dc:creator": "Daniel Victor", + "content": "The Hamas deputy, who the group said had been killed, helped usher in closer ties with the Iran-backed Hezbollah militia and was accused of masterminding attacks in Israel.", + "contentSnippet": "The Hamas deputy, who the group said had been killed, helped usher in closer ties with the Iran-backed Hezbollah militia and was accused of masterminding attacks in Israel.", + "guid": "https://www.nytimes.com/2024/01/02/world/middleeast/hamas-leader-beirut-killed.html", + "categories": [ + { + "_": "Arouri, Saleh al- (1966-2024)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Beirut (Lebanon)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Lebanon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T14:22:50.000Z" + }, + { + "creator": "Motoko Rich, Hisako Ueno, Kaly Soto and Emma Bubola", + "title": "5 Killed After Japan Airlines Plane Collision at Tokyo Airport", + "link": "https://www.nytimes.com/2024/01/02/world/asia/tokyo-haneda-plane-fire.html", + "pubDate": "Wed, 03 Jan 2024 12:21:14 +0000", + "dc:creator": "Motoko Rich, Hisako Ueno, Kaly Soto and Emma Bubola", + "content": "Japan Airlines said all 367 passengers and 12 crew members had safely evacuated the jet. But five crew members on a Japanese Coast Guard plane that collided with it were killed.", + "contentSnippet": "Japan Airlines said all 367 passengers and 12 crew members had safely evacuated the jet. But five crew members on a Japanese Coast Guard plane that collided with it were killed.", + "guid": "https://www.nytimes.com/2024/01/02/world/asia/tokyo-haneda-plane-fire.html", + "categories": [ + { + "_": "Japan Airlines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Aviation Accidents, Safety and Disasters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fires and Firefighters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Airports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tokyo (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-03T12:21:14.000Z" + }, + { + "creator": "Choe Sang-Hun and John Yoon", + "title": "Attack on Opposition Leader Raises Alarms in Divided South Korea", + "link": "https://www.nytimes.com/2024/01/03/world/asia/south-korea-opposition-leader-stabbing.html", + "pubDate": "Wed, 03 Jan 2024 10:50:08 +0000", + "dc:creator": "Choe Sang-Hun and John Yoon", + "content": "The attack on Lee Jae-myung, who narrowly lost the 2022 presidential vote, came amid a deepening political divide and increasingly extreme discourse in South Korea.", + "contentSnippet": "The attack on Lee Jae-myung, who narrowly lost the 2022 presidential vote, came amid a deepening political divide and increasingly extreme discourse in South Korea.", + "guid": "https://www.nytimes.com/2024/01/03/world/asia/south-korea-opposition-leader-stabbing.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stalking (Crime)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Elections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Lee Jae-myung", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Yoon Suk-yeol", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-03T10:50:08.000Z" + }, + { + "creator": "The New York Times", + "title": "Hamas blames Israel for the death of a senior official in Lebanon.", + "link": "https://www.nytimes.com/2024/01/03/world/middleeast/hamas-blames-israel-for-the-death-of-a-senior-official-in-lebanon.html", + "pubDate": "Wed, 03 Jan 2024 09:00:01 +0000", + "dc:creator": "The New York Times", + "content": "", + "contentSnippet": "", + "guid": "https://www.nytimes.com/2024/01/03/world/middleeast/hamas-blames-israel-for-the-death-of-a-senior-official-in-lebanon.html", + "isoDate": "2024-01-03T09:00:01.000Z" + }, + { + "creator": "Maya Tekeli and Emma Bubola", + "title": "Denmark\u2019s Prince Frederik Represents a New Generation of Monarchs", + "link": "https://www.nytimes.com/2024/01/02/world/europe/denmark-prince-frederik-royal-family.html", + "pubDate": "Wed, 03 Jan 2024 08:24:38 +0000", + "dc:creator": "Maya Tekeli and Emma Bubola", + "content": "Like King Charles III of Britain, Prince Frederik, who will soon ascend to his country\u2019s throne, is part of a younger generation of royals who have embraced environmental issues.", + "contentSnippet": "Like King Charles III of Britain, Prince Frederik, who will soon ascend to his country\u2019s throne, is part of a younger generation of royals who have embraced environmental issues.", + "guid": "https://www.nytimes.com/2024/01/02/world/europe/denmark-prince-frederik-royal-family.html", + "categories": [ + { + "_": "Royal Families", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Environment", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Frederik, Prince of Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T08:24:38.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Wednesday Briefing", + "link": "https://www.nytimes.com/2024/01/03/briefing/hamas-japan-ukraine-strikes.html", + "pubDate": "Wed, 03 Jan 2024 05:16:59 +0000", + "dc:creator": "Natasha Frost", + "content": "The killing of a Hamas leader.", + "contentSnippet": "The killing of a Hamas leader.", + "guid": "https://www.nytimes.com/2024/01/03/briefing/hamas-japan-ukraine-strikes.html", + "isoDate": "2024-01-03T05:16:59.000Z" + }, + { + "creator": "Choe Sang-Hun", + "title": "Lee Jae-myung, South Korea Opposition Leader, Is Stabbed", + "link": "https://www.nytimes.com/2024/01/01/world/asia/south-korea-opposition-lee-jae-myung.html", + "pubDate": "Wed, 03 Jan 2024 05:00:59 +0000", + "dc:creator": "Choe Sang-Hun", + "content": "Lee Jae-myung, the Democratic Party head, was attacked by a 66-year-old man in the city of Busan, the police said. Mr. Lee is now recovering from surgery.", + "contentSnippet": "Lee Jae-myung, the Democratic Party head, was attacked by a 66-year-old man in the city of Busan, the police said. Mr. Lee is now recovering from surgery.", + "guid": "https://www.nytimes.com/2024/01/01/world/asia/south-korea-opposition-lee-jae-myung.html", + "categories": [ + { + "_": "Assaults", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Lee Jae-myung", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Busan (South Korea)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-03T05:00:59.000Z" + }, + { + "creator": "Ben Hubbard, Ronen Bergman, Aaron Boxerman, Euan Ward and Eric Schmitt", + "title": "Deputy Hamas Leader Is Killed in Lebanon as Fears Grow of a Wider War", + "link": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-hamas-leader-war.html", + "pubDate": "Wed, 03 Jan 2024 02:27:13 +0000", + "dc:creator": "Ben Hubbard, Ronen Bergman, Aaron Boxerman, Euan Ward and Eric Schmitt", + "content": "The Israeli government would not comment on the death of Saleh al-Arouri. But a U.S. official said to expect Israel to assassinate Hamas officials \u201cfor years.\u201d", + "contentSnippet": "The Israeli government would not comment on the death of Saleh al-Arouri. But a U.S. official said to expect Israel to assassinate Hamas officials \u201cfor years.\u201d", + "guid": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-hamas-leader-war.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Arouri, Saleh al- (1966-2024)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Beirut (Lebanon)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T02:27:13.000Z" + }, + { + "creator": "Julian E. Barnes", + "title": "Hamas Used Gaza Hospital as a Command Center, U.S. Intelligence Says", + "link": "https://www.nytimes.com/2024/01/02/us/politics/gaza-hospital-hamas.html", + "pubDate": "Tue, 02 Jan 2024 23:50:48 +0000", + "dc:creator": "Julian E. Barnes", + "content": "Israeli forces stormed the site in November, drawing intense international scrutiny and criticism.", + "contentSnippet": "Israeli forces stormed the site in November, drawing intense international scrutiny and criticism.", + "guid": "https://www.nytimes.com/2024/01/02/us/politics/gaza-hospital-hamas.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Classified Information and State Secrets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Al Shifa Hospital (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-02T23:50:48.000Z" + }, + { + "creator": "Isabel Kershner and Roni Rabin", + "title": "Netanyahu Allies Signal No Immediate Countermoves to Supreme Court Ruling", + "link": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-supreme-court.html", + "pubDate": "Tue, 02 Jan 2024 22:10:37 +0000", + "dc:creator": "Isabel Kershner and Roni Rabin", + "content": "With Israel fighting in Gaza, people on both sides of the judiciary debate appear unwilling to return to the domestic upheaval that preceded the war.", + "contentSnippet": "With Israel fighting in Gaza, people on both sides of the judiciary debate appear unwilling to return to the domestic upheaval that preceded the war.", + "guid": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-supreme-court.html", + "categories": [ + { + "_": "Supreme Court of Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-02T22:10:37.000Z" + }, + { + "creator": "Rachel Chaundler", + "title": "Spanish Soccer Star Testifies About Unwanted Kiss", + "link": "https://www.nytimes.com/2024/01/02/world/europe/spain-soccer-jennifer-hermoso.html", + "pubDate": "Tue, 02 Jan 2024 21:50:59 +0000", + "dc:creator": "Rachel Chaundler", + "content": "Jennifer Hermoso, who was kissed on the mouth by Spain\u2019s former soccer boss, Luis Rubiales, gave evidence at a hearing to determine whether Mr. Rubiales will be charged.", + "contentSnippet": "Jennifer Hermoso, who was kissed on the mouth by Spain\u2019s former soccer boss, Luis Rubiales, gave evidence at a hearing to determine whether Mr. Rubiales will be charged.", + "guid": "https://www.nytimes.com/2024/01/02/world/europe/spain-soccer-jennifer-hermoso.html", + "categories": [ + { + "_": "Soccer", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hermoso, Jennifer (1990- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Rubiales, Luis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Spain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sex Crimes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Coaches and Managers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Women's World Cup (Soccer)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "UEFA Nations League (Soccer)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Barcelona (Soccer Team)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Federation of Association Football (FIFA)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Court (Spain)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Vilda, Jorge (1981- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Workplace Hazards and Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-02T21:50:59.000Z" + }, + { + "creator": "Alan Cowell", + "title": "Peter Magubane, 91, Who Fought Apartheid With His Camera, Is Dead", + "link": "https://www.nytimes.com/2024/01/01/world/africa/peter-magubane-dead.html", + "pubDate": "Tue, 02 Jan 2024 21:48:13 +0000", + "dc:creator": "Alan Cowell", + "content": "He documented the cruelties of white South African rule, and he was made to pay for it, enduring beatings and 586 consecutive days in solitary confinement.", + "contentSnippet": "He documented the cruelties of white South African rule, and he was made to pay for it, enduring beatings and 586 consecutive days in solitary confinement.", + "guid": "https://www.nytimes.com/2024/01/01/world/africa/peter-magubane-dead.html", + "categories": [ + { + "_": "Magubane, Peter (1932-2024)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Photography", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Apartheid (Policy)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Solitary Confinement", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Black People", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "South Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Photojournalism", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-02T21:48:13.000Z" + }, + { + "creator": "Justin Porter", + "title": "Wednesday Briefing: Beirut Blast Kills Senior Hamas Leader", + "link": "https://www.nytimes.com/2024/01/02/briefing/hamas-leaders-beirut-japan-plane-india-economy.html", + "pubDate": "Tue, 02 Jan 2024 20:43:36 +0000", + "dc:creator": "Justin Porter", + "content": "Plus the great winter festivals of Asia.", + "contentSnippet": "Plus the great winter festivals of Asia.", + "guid": "https://www.nytimes.com/2024/01/02/briefing/hamas-leaders-beirut-japan-plane-india-economy.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Beirut (Lebanon)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Japan Airlines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "India", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-02T20:43:36.000Z" + }, + { + "creator": "Constant M\u00e9heut and Anatoly Kurmanaev", + "title": "Russian Missiles Hammer Kyiv in Large-Scale Attack on Ukraine", + "link": "https://www.nytimes.com/2024/01/02/world/europe/missiles-ukraine-war-attack-russia.html", + "pubDate": "Tue, 02 Jan 2024 17:48:12 +0000", + "dc:creator": "Constant M\u00e9heut and Anatoly Kurmanaev", + "content": "Russia said that Ukraine retaliated hours later with missile attacks on Russian territory, part of an escalating cycle of air assaults between the two countries.", + "contentSnippet": "Russia said that Ukraine retaliated hours later with missile attacks on Russian territory, part of an escalating cycle of air assaults between the two countries.", + "guid": "https://www.nytimes.com/2024/01/02/world/europe/missiles-ukraine-war-attack-russia.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drones (Pilotless Planes)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kyiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-02T17:48:12.000Z" + }, + { + "creator": "Motoko Rich and Hisako Ueno", + "title": "Japan Earthquake Death Toll Rises to at Least 55", + "link": "https://www.nytimes.com/2024/01/02/world/asia/japan-earthquake.html", + "pubDate": "Tue, 02 Jan 2024 17:44:49 +0000", + "dc:creator": "Motoko Rich and Hisako Ueno", + "content": "The authorities continued to look for people buried in the rubble of collapsed and burned buildings in the coastal epicenter of the disaster.", + "contentSnippet": "The authorities continued to look for people buried in the rubble of collapsed and burned buildings in the coastal epicenter of the disaster.", + "guid": "https://www.nytimes.com/2024/01/02/world/asia/japan-earthquake.html", + "categories": [ + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Earthquakes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Power Failures and Blackouts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Evacuations and Evacuees", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-02T17:44:49.000Z" + }, + { + "creator": "Steven Erlanger", + "title": "Supreme Court Ruling Adds to Questions Over Kind of State Israel Will Be", + "link": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-supreme-court-netanyahu.html", + "pubDate": "Tue, 02 Jan 2024 17:06:23 +0000", + "dc:creator": "Steven Erlanger", + "content": "Monday\u2019s court ruling joined the war in Gaza in a widening crisis over what kind of state Israel will be.", + "contentSnippet": "Monday\u2019s court ruling joined the war in Gaza in a widening crisis over what kind of state Israel will be.", + "guid": "https://www.nytimes.com/2024/01/02/world/middleeast/israel-supreme-court-netanyahu.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Supreme Court of Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Likud Party (Israel)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Courts and the Judiciary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Right-Wing Extremism and Alt-Right", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Democracy (Theory and Philosophy)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-02T17:06:23.000Z" + }, + { + "creator": "Abdi Latif Dahir", + "title": "Somaliland Deal to Grant Ethiopia Red Sea Access Draws Condemnation", + "link": "https://www.nytimes.com/2024/01/02/world/africa/ethiopia-somaliland-port-deal.html", + "pubDate": "Tue, 02 Jan 2024 15:46:42 +0000", + "dc:creator": "Abdi Latif Dahir", + "content": "A landmark pact between Ethiopia and the breakaway region of Somaliland has drawn condemnation from Somalia. Other neighbors also worry about allowing potential naval access to the Red Sea.", + "contentSnippet": "A landmark pact between Ethiopia and the breakaway region of Somaliland has drawn condemnation from Somalia. Other neighbors also worry about allowing potential naval access to the Red Sea.", + "guid": "https://www.nytimes.com/2024/01/02/world/africa/ethiopia-somaliland-port-deal.html", + "categories": [ + { + "_": "Ethiopia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Somaliland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Somalia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Horn of Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Red Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ahmed, Abiy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gulf of Aden", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Abdi, Muse Bihi", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-02T15:46:42.000Z" + }, + { + "creator": "Aaron Boxerman", + "title": "What Israel\u2019s Supreme Court Justices Wrote in Their Landmark Ruling", + "link": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-supreme-court-justices-ruling.html", + "pubDate": "Tue, 02 Jan 2024 08:38:36 +0000", + "dc:creator": "Aaron Boxerman", + "content": "The full decision, which exceeded 250,000 words, marked the first time that Israel\u2019s highest court had struck down a quasi-constitutional Basic Law.", + "contentSnippet": "The full decision, which exceeded 250,000 words, marked the first time that Israel\u2019s highest court had struck down a quasi-constitutional Basic Law.", + "guid": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-supreme-court-justices-ruling.html", + "categories": [ + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Courts and the Judiciary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-02T08:38:36.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Tuesday Briefing", + "link": "https://www.nytimes.com/2024/01/02/briefing/israel-judiciary-japan-earthquake.html", + "pubDate": "Tue, 02 Jan 2024 05:13:05 +0000", + "dc:creator": "Natasha Frost", + "content": "A landmark court ruling in Israel.", + "contentSnippet": "A landmark court ruling in Israel.", + "guid": "https://www.nytimes.com/2024/01/02/briefing/israel-judiciary-japan-earthquake.html", + "isoDate": "2024-01-02T05:13:05.000Z" + }, + { + "creator": "Motoko Rich", + "title": "Powerful Earthquake Hits Japan, and Officials Warn of Aftershocks", + "link": "https://www.nytimes.com/2024/01/01/world/asia/japan-earthquake.html", + "pubDate": "Tue, 02 Jan 2024 02:51:12 +0000", + "dc:creator": "Motoko Rich", + "content": "There were reports of collapsed buildings and people being trapped underneath them. The quake disrupted electricity and phone service, and initially raised fears of a tsunami.", + "contentSnippet": "There were reports of collapsed buildings and people being trapped underneath them. The quake disrupted electricity and phone service, and initially raised fears of a tsunami.", + "guid": "https://www.nytimes.com/2024/01/01/world/asia/japan-earthquake.html", + "categories": [ + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Earthquakes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "vis-video", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-02T02:51:12.000Z" + }, + { + "creator": "Anatoly Kurmanaev and Constant M\u00e9heut", + "title": "Putin Vows to Keep Up Bombardment After a Russian City Is Hit", + "link": "https://www.nytimes.com/2024/01/01/world/europe/ukraine-russia-putin-belgorod.html", + "pubDate": "Mon, 01 Jan 2024 23:48:31 +0000", + "dc:creator": "Anatoly Kurmanaev and Constant M\u00e9heut", + "content": "President Vladimir V. Putin of Russia says his country will continue targeting Ukrainian cities in retaliation for a deadly attack on the city of Belgorod on Saturday.", + "contentSnippet": "President Vladimir V. Putin of Russia says his country will continue targeting Ukrainian cities in retaliation for a deadly attack on the city of Belgorod on Saturday.", + "guid": "https://www.nytimes.com/2024/01/01/world/europe/ukraine-russia-putin-belgorod.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Belgorod (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kharkiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Lviv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-01T23:48:31.000Z" + }, + { + "creator": "Elisabetta Povoledo", + "title": "Pope Raises Concerns About Church in Nicaragua", + "link": "https://www.nytimes.com/2024/01/01/world/europe/nicaragua-pope-francis-church.html", + "pubDate": "Mon, 01 Jan 2024 23:15:32 +0000", + "dc:creator": "Elisabetta Povoledo", + "content": "Speaking at his traditional New Year\u2019s Day message, Francis highlighted the arrests and expulsion of clergy.", + "contentSnippet": "Speaking at his traditional New Year\u2019s Day message, Francis highlighted the arrests and expulsion of clergy.", + "guid": "https://www.nytimes.com/2024/01/01/world/europe/nicaragua-pope-francis-church.html", + "categories": [ + { + "_": "New Year", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Religion-State Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Churches (Buildings)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Clergy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Political Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cardinals (Roman Catholic Prelates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Human Rights and Human Rights Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missionaries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Priests", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Roman Catholic Church", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Alvarez, Rolando", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Casaroli, Cardinal Agostino", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Francis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ortega, Daniel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nicaragua", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-01T23:15:32.000Z" + }, + { + "creator": "Isabel Kershner, Aaron Boxerman and Thomas Fuller", + "title": "Israel\u2019s Supreme Court Strikes Down Judiciary Law", + "link": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-supreme-court-netanyahu.html", + "pubDate": "Mon, 01 Jan 2024 22:44:44 +0000", + "dc:creator": "Isabel Kershner, Aaron Boxerman and Thomas Fuller", + "content": "The Supreme Court, by the narrowest of margins, rejected a law pushed by Netanyahu allies that limited its authority to review government decisions.", + "contentSnippet": "The Supreme Court, by the narrowest of margins, rejected a law pushed by Netanyahu allies that limited its authority to review government decisions.", + "guid": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-supreme-court-netanyahu.html", + "categories": [ + { + "_": "Supreme Court of Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Levin, Yariv (1969- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-01T22:44:44.000Z" + }, + { + "creator": "Justin Porter", + "title": "Tuesday Briefing: Israel\u2019s Top Court Rejects Move to Limit It", + "link": "https://www.nytimes.com/2024/01/01/briefing/israel-judicial-overhaul-japan-earthquake-china-us.html", + "pubDate": "Mon, 01 Jan 2024 20:41:37 +0000", + "dc:creator": "Justin Porter", + "content": "Plus New Year\u2019s offerings to the sea in Brazil.", + "contentSnippet": "Plus New Year\u2019s offerings to the sea in Brazil.", + "guid": "https://www.nytimes.com/2024/01/01/briefing/israel-judicial-overhaul-japan-earthquake-china-us.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-01T20:41:37.000Z" + }, + { + "creator": "Aaron Boxerman, Isabel Kershner and Eric Schmitt", + "title": "Israel Plans to Withdraw Some Troops From Gaza", + "link": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-gaza-troop-withdrawal.html", + "pubDate": "Mon, 01 Jan 2024 20:13:41 +0000", + "dc:creator": "Aaron Boxerman, Isabel Kershner and Eric Schmitt", + "content": "Analysts say the announcement could signal a shift to the more limited and targeted war against Hamas that the United States has been urging.", + "contentSnippet": "Analysts say the announcement could signal a shift to the more limited and targeted war against Hamas that the United States has been urging.", + "guid": "https://www.nytimes.com/2024/01/01/world/middleeast/israel-gaza-troop-withdrawal.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-01T20:13:41.000Z" + }, + { + "creator": "Emma Bubola", + "title": "Fukushima Disaster Still Looms Large in Japan Years After Quake", + "link": "https://www.nytimes.com/2024/01/01/world/asia/japan-fukushima-quake-tsunami.html", + "pubDate": "Mon, 01 Jan 2024 11:37:23 +0000", + "dc:creator": "Emma Bubola", + "content": "As another major quake struck Japan, the country was still reckoning with the nuclear crisis triggered by the 8.9-magnitude earthquake and a tsunami of 13 years ago.", + "contentSnippet": "As another major quake struck Japan, the country was still reckoning with the nuclear crisis triggered by the 8.9-magnitude earthquake and a tsunami of 13 years ago.", + "guid": "https://www.nytimes.com/2024/01/01/world/asia/japan-fukushima-quake-tsunami.html", + "categories": [ + { + "_": "Fukushima Daiichi Nuclear Power Plant (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Fukushima (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Earthquakes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Japan Earthquake and Tsunami (2011)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tidal Waves and Tsunamis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-01T11:37:23.000Z" + }, + { + "creator": "Vivian Yee", + "title": "Iran Holds Day of Mourning for Those Killed at Suleimani Memorial", + "link": "https://www.nytimes.com/2024/01/04/world/middleeast/iran-mourns-general-suleimani.html", + "pubDate": "Thu, 04 Jan 2024 11:07:36 +0000", + "dc:creator": "Vivian Yee", + "content": "Officials lowered the death toll from the two blasts from 103 to 84, but said the count could still rise with so many people having been badly injured.", + "contentSnippet": "Officials lowered the death toll from the two blasts from 103 to 84, but said the count could still rise with so many people having been badly injured.", + "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/iran-mourns-general-suleimani.html", + "categories": [ + { + "_": "Amir Abdollahian, Hossein", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Suleimani, Qassim", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T11:07:36.000Z" + }, + { + "creator": "The New York Times", + "title": "Israel-Hamas War: Blinken Heads to Middle East With Goal of Defusing Tensions", + "link": "https://www.nytimes.com/live/2024/01/05/world/israel-hamas-war-gaza-news", + "pubDate": "Fri, 05 Jan 2024 13:39:32 +0000", + "dc:creator": "The New York Times", + "content": "The assassination of a Hamas leader in Lebanon and explosions in Iran that killed dozens of people this week appeared to deepen fears that the war could spiral into a broader conflict.", + "contentSnippet": "The assassination of a Hamas leader in Lebanon and explosions in Iran that killed dozens of people this week appeared to deepen fears that the war could spiral into a broader conflict.", + "guid": "https://www.nytimes.com/live/2024/01/05/world/israel-hamas-war-gaza-news", + "isoDate": "2024-01-05T13:39:32.000Z" + }, + { + "creator": "Derrick Bryson Taylor", + "title": "U.K. Rain Causes Hundreds of Flood Warnings and Travel Disruptions", + "link": "https://www.nytimes.com/2024/01/05/world/europe/uk-flooding.html", + "pubDate": "Fri, 05 Jan 2024 13:24:39 +0000", + "dc:creator": "Derrick Bryson Taylor", + "content": "In London, around 50 people were evacuated from rising waters. Heavy rain brought similar scenes to parts of France and Germany.", + "contentSnippet": "In London, around 50 people were evacuated from rising waters. Heavy rain brought similar scenes to parts of France and Germany.", + "guid": "https://www.nytimes.com/2024/01/05/world/europe/uk-flooding.html", + "categories": [ + { + "_": "Floods", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Evacuations and Evacuees", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Weather", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Met Office (United Kingdom)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "England", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "London (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "River Thames (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T13:24:39.000Z" + }, + { + "creator": "Muktita Suhartono and Mike Ives", + "title": "Indonesia Train Crash Kills at Least 2, Official Says", + "link": "https://www.nytimes.com/2024/01/04/world/asia/indonesia-train-crash-west-java.html", + "pubDate": "Fri, 05 Jan 2024 12:39:07 +0000", + "dc:creator": "Muktita Suhartono and Mike Ives", + "content": "Hundreds of passengers were evacuated from the crash near the city of Bandung. The cause of the accident was not immediately clear, and the authorities have opened an investigation.", + "contentSnippet": "Hundreds of passengers were evacuated from the crash near the city of Bandung. The cause of the accident was not immediately clear, and the authorities have opened an investigation.", + "guid": "https://www.nytimes.com/2024/01/04/world/asia/indonesia-train-crash-west-java.html", + "categories": [ + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Railroad Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Surabaya (Indonesia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Indonesia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Bandung (Indonesia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T12:39:07.000Z" + }, + { + "creator": "Lynsey Chutel", + "title": "Oscar Pistorius, Olympic Athlete Convicted of Murder, Is Released", + "link": "https://www.nytimes.com/2024/01/05/world/africa/oscar-pistorius-released.html", + "pubDate": "Fri, 05 Jan 2024 12:34:39 +0000", + "dc:creator": "Lynsey Chutel", + "content": "The South African sprinter, whose trial for the 2013 killing of his girlfriend drew intense global interest, served more than seven years in prison.", + "contentSnippet": "The South African sprinter, whose trial for the 2013 killing of his girlfriend drew intense global interest, served more than seven years in prison.", + "guid": "https://www.nytimes.com/2024/01/05/world/africa/oscar-pistorius-released.html", + "categories": [ + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Murders, Attempted Murders and Homicides", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Probation and Parole", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pistorius, Oscar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Steenkamp, Reeva", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "South Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pretoria (South Africa)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T12:34:39.000Z" + }, + { + "creator": "Melissa Eddy", + "title": "Eurozone Price Pressures Edged Higher to End the Year", + "link": "https://www.nytimes.com/2024/01/05/world/europe/eurozone-inflation-december.html", + "pubDate": "Fri, 05 Jan 2024 12:05:52 +0000", + "dc:creator": "Melissa Eddy", + "content": "Inflation in the countries that use the euro rose to 2.9 percent in December, but the underlying rate continued a downward trend.", + "contentSnippet": "Inflation in the countries that use the euro rose to 2.9 percent in December, but the underlying rate continued a downward trend.", + "guid": "https://www.nytimes.com/2024/01/05/world/europe/eurozone-inflation-december.html", + "categories": [ + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation (Economics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Eurozone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Germany", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T12:05:52.000Z" + }, + { + "creator": "Mujib Mashal and Saif Hasnat", + "title": "Election Will Further Test Bangladesh\u2019s Ailing Democracy", + "link": "https://www.nytimes.com/2024/01/05/world/asia/bangladesh-election.html", + "pubDate": "Fri, 05 Jan 2024 11:43:01 +0000", + "dc:creator": "Mujib Mashal and Saif Hasnat", + "content": "Prime Minister Sheikh Hasina is expected to roll to a fourth consecutive term as the gutted opposition boycotts what it calls an unfair election.", + "contentSnippet": "Prime Minister Sheikh Hasina is expected to roll to a fourth consecutive term as the gutted opposition boycotts what it calls an unfair election.", + "guid": "https://www.nytimes.com/2024/01/05/world/asia/bangladesh-election.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Boycotts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Democracy (Theory and Philosophy)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Elections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bangladesh Awami League", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bangladesh Nationalist Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Zia, Khaleda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bangladesh", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T11:43:01.000Z" + }, + { + "creator": "Euan Ward, Roni Rabin, Hwaida Saad and Michael Levenson", + "title": "Lebanese and Israelis Flee Homes Along Border Amid Fighting", + "link": "https://www.nytimes.com/2024/01/04/world/middleeast/israel-lebanon-hezbollah-civilians.html", + "pubDate": "Fri, 05 Jan 2024 10:36:26 +0000", + "dc:creator": "Euan Ward, Roni Rabin, Hwaida Saad and Michael Levenson", + "content": "More than 150,000 people have been driven from their homes on both sides of the frontier as Israeli forces clash with Hezbollah militants.", + "contentSnippet": "More than 150,000 people have been driven from their homes on both sides of the frontier as Israeli forces clash with Hezbollah militants.", + "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/israel-lebanon-hezbollah-civilians.html", + "categories": [ + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Lebanon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arouri, Saleh al- (1966-2024)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nasrallah, Hassan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Haniya, Ismail", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gallant, Yoav", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Agriculture and Farming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Shatila Refugee Camp (Lebanon)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T10:36:26.000Z" + }, + { + "creator": "Natan Odenheimer", + "title": "A Palestinian Man Vanished Oct. 7. His Family Wants to Know Who Killed Him.", + "link": "https://www.nytimes.com/2024/01/05/world/middleeast/israel-gaza-palestinian-abducted.html", + "pubDate": "Fri, 05 Jan 2024 10:00:30 +0000", + "dc:creator": "Natan Odenheimer", + "content": "Soheib Abu Amar, who lived in East Jerusalem, was captured by Hamas during its attack on Israel. His brothers spent weeks investigating what happened next.", + "contentSnippet": "Soheib Abu Amar, who lived in East Jerusalem, was captured by Hamas during its attack on Israel. His brothers spent weeks investigating what happened next.", + "guid": "https://www.nytimes.com/2024/01/05/world/middleeast/israel-gaza-palestinian-abducted.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Murders, Attempted Murders and Homicides", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-05T10:00:30.000Z" + }, + { + "creator": "Isabel Kershner", + "title": "Unauthorized Settlement Surges in Occupied West Bank, Advocacy Group Says", + "link": "https://www.nytimes.com/2024/01/05/world/middleeast/israel-west-bank-settlements.html", + "pubDate": "Fri, 05 Jan 2024 07:43:26 +0000", + "dc:creator": "Isabel Kershner", + "content": "Peace Now, which monitors settler activity in the West Bank, said it had recorded nine new outposts and several roads not authorized by Israel, fueling tensions in the area.", + "contentSnippet": "Peace Now, which monitors settler activity in the West Bank, said it had recorded nine new outposts and several roads not authorized by Israel, fueling tensions in the area.", + "guid": "https://www.nytimes.com/2024/01/05/world/middleeast/israel-west-bank-settlements.html", + "categories": [ + { + "_": "East Jerusalem", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "West Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Peace Now", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israeli Settlements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-05T07:43:26.000Z" + }, + { + "creator": "Choe Sang-Hun", + "title": "North Korea Fires Artillery Near Border With South Korea", + "link": "https://www.nytimes.com/2024/01/05/world/asia/south-korea-island-north.html", + "pubDate": "Fri, 05 Jan 2024 07:42:54 +0000", + "dc:creator": "Choe Sang-Hun", + "content": "The South asked nearby islanders to seek shelter before it launched a military exercise in the disputed waters and chided the North for \u201cthreatening peace.\u201d", + "contentSnippet": "The South asked nearby islanders to seek shelter before it launched a military exercise in the disputed waters and chided the North for \u201cthreatening peace.\u201d", + "guid": "https://www.nytimes.com/2024/01/05/world/asia/south-korea-island-north.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "North Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Yeonpyeong Island (South Korea)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T07:42:54.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Friday Briefing", + "link": "https://www.nytimes.com/2024/01/05/briefing/war-middle-east-ukraine-russia.html", + "pubDate": "Fri, 05 Jan 2024 05:21:42 +0000", + "dc:creator": "Natasha Frost", + "content": "The threat of a regional war.", + "contentSnippet": "The threat of a regional war.", + "guid": "https://www.nytimes.com/2024/01/05/briefing/war-middle-east-ukraine-russia.html", + "isoDate": "2024-01-05T05:21:42.000Z" + }, + { + "creator": "Vivian Yee, Hwaida Saad and Eric Schmitt", + "title": "Islamic State Claims Responsibility for Deadly Bombings in Iran", + "link": "https://www.nytimes.com/2024/01/04/world/middleeast/us-isis-iran-general-suleimani.html", + "pubDate": "Fri, 05 Jan 2024 02:57:38 +0000", + "dc:creator": "Vivian Yee, Hwaida Saad and Eric Schmitt", + "content": "The group, which has struck before in Iran, has a long history of division with the country.", + "contentSnippet": "The group, which has struck before in Iran, has a long history of division with the country.", + "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/us-isis-iran-general-suleimani.html", + "categories": [ + { + "_": "Amir Abdollahian, Hossein", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Suleimani, Qassim", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T02:57:38.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "A Trophy in Ruins: Evidence Grows That Russia Controls Marinka", + "link": "https://www.nytimes.com/2024/01/04/world/europe/ukraine-war-marinka-russia.html", + "pubDate": "Fri, 05 Jan 2024 02:42:31 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "Ukraine said it was defending territory behind the eastern frontline town. Its capture would be Russia\u2019s most significant territorial advance in Ukraine in more than six months.", + "contentSnippet": "Ukraine said it was defending territory behind the eastern frontline town. Its capture would be Russia\u2019s most significant territorial advance in Ukraine in more than six months.", + "guid": "https://www.nytimes.com/2024/01/04/world/europe/ukraine-war-marinka-russia.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Donbas (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Donetsk (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Marinka (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T02:42:31.000Z" + }, + { + "creator": "Chris Buckley and Amy Chang Chien", + "title": "Experts See a Message in Chinese Balloons Flying Over Taiwan", + "link": "https://www.nytimes.com/2024/01/04/world/asia/taiwan-china-balloons.html", + "pubDate": "Fri, 05 Jan 2024 00:27:44 +0000", + "dc:creator": "Chris Buckley and Amy Chang Chien", + "content": "Some analysts see the objects as a calculatedly ambiguous reminder to voters that Beijing is watching.", + "contentSnippet": "Some analysts see the objects as a calculatedly ambiguous reminder to voters that Beijing is watching.", + "guid": "https://www.nytimes.com/2024/01/04/world/asia/taiwan-china-balloons.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Elections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Balloons (Aeronautics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Democratic Progressive Party (Taiwan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Taiwan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-05T00:27:44.000Z" + }, + { + "creator": "Justin Porter", + "title": "Friday Briefing: Islamic State Claims the Iran Bombing", + "link": "https://www.nytimes.com/2024/01/04/briefing/iran-bombing-islamic-state-taiwan-china-north-korea.html", + "pubDate": "Thu, 04 Jan 2024 23:58:36 +0000", + "dc:creator": "Justin Porter", + "content": "Plus the seven keys to longevity.", + "contentSnippet": "Plus the seven keys to longevity.", + "guid": "https://www.nytimes.com/2024/01/04/briefing/iran-bombing-islamic-state-taiwan-china-north-korea.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Islamic State in Iraq and Syria (ISIS)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Taiwan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Balloons (Aeronautics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kim Jong-un", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "North Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T23:58:36.000Z" + }, + { + "creator": "Alissa J. Rubin and Eric Schmitt", + "title": "Iraq Condemns U.S. After Drone Strike in Baghdad", + "link": "https://www.nytimes.com/2024/01/04/world/middleeast/us-drone-strike-baghdad-iraq.html", + "pubDate": "Thu, 04 Jan 2024 23:11:26 +0000", + "dc:creator": "Alissa J. Rubin and Eric Schmitt", + "content": "The attack, acknowledged by the Pentagon, killed a senior militant leader of an Iran-allied group with ties to the Iraqi government\u2019s security apparatus.", + "contentSnippet": "The attack, acknowledged by the Pentagon, killed a senior militant leader of an Iran-allied group with ties to the Iraqi government\u2019s security apparatus.", + "guid": "https://www.nytimes.com/2024/01/04/world/middleeast/us-drone-strike-baghdad-iraq.html", + "categories": [ + { + "_": "Drones (Pilotless Planes)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Targeted Killings", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Popular Mobilization Forces (Iraq)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Baghdad (Iraq)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iraq", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-04T23:11:26.000Z" + }, + { + "creator": "Robert D. McFadden", + "title": "Mike Sadler, Intrepid Desert Navigator in World War II, Dies at 103", + "link": "https://www.nytimes.com/2024/01/04/world/europe/mike-sadler-intrepid-dead.html", + "pubDate": "Thu, 04 Jan 2024 23:01:22 +0000", + "dc:creator": "Robert D. McFadden", + "content": "Like a human GPS, he guided Britain\u2019s first special forces across the vast Sahara for hit-and-run raids on enemy bases in the battle against Rommel\u2019s forces.", + "contentSnippet": "Like a human GPS, he guided Britain\u2019s first special forces across the vast Sahara for hit-and-run raids on enemy bases in the battle against Rommel\u2019s forces.", + "guid": "https://www.nytimes.com/2024/01/04/world/europe/mike-sadler-intrepid-dead.html", + "categories": [ + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World War II (1939-45)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Navigation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "$": { + "domain": "" + } + }, + { + "_": "Sahara Desert", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "North Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T23:01:22.000Z" + }, + { + "creator": "Michael D. Shear and David E. Sanger", + "title": "White House Says North Korea Providing Russia With Ballistic Missiles", + "link": "https://www.nytimes.com/2024/01/04/us/politics/north-korea-russia-missiles.html", + "pubDate": "Thu, 04 Jan 2024 21:23:15 +0000", + "dc:creator": "Michael D. Shear and David E. Sanger", + "content": "Russia has rebuilt its own domestic supply of cruise missiles, but to keep up with the intensity of the barrage against Ukraine, it has been turning to North Korea and Iran.", + "contentSnippet": "Russia has rebuilt its own domestic supply of cruise missiles, but to keep up with the intensity of the barrage against Ukraine, it has been turning to North Korea and Iran.", + "guid": "https://www.nytimes.com/2024/01/04/us/politics/north-korea-russia-missiles.html", + "categories": [ + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kim Jong-un", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kirby, John F", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "North Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T21:23:15.000Z" + }, + { + "creator": "Erica L. Green", + "title": "Education Dept. Official Resigns Over Biden\u2019s Policies on Israel and Gaza", + "link": "https://www.nytimes.com/2024/01/04/us/politics/education-department-official-resigns-israel-gaza.html", + "pubDate": "Thu, 04 Jan 2024 21:09:32 +0000", + "dc:creator": "Erica L. Green", + "content": "Tariq Habash, who is Palestinian American, said the Biden administration \u201cdoes not value all human life equally.\u201d", + "contentSnippet": "Tariq Habash, who is Palestinian American, said the Biden administration \u201cdoes not value all human life equally.\u201d", + "guid": "https://www.nytimes.com/2024/01/04/us/politics/education-department-official-resigns-israel-gaza.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinian-Americans", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Education Department (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Habash, Tariq", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T21:09:32.000Z" + }, + { + "creator": "Jason Horowitz", + "title": "Vatican Defends Gay Blessings, but Offers Critics Some Leeway", + "link": "https://www.nytimes.com/2024/01/04/world/europe/vatican-pope-lgbtq-blessings.html", + "pubDate": "Thu, 04 Jan 2024 19:33:48 +0000", + "dc:creator": "Jason Horowitz", + "content": "The clarification on a declaration issued in December seemed designed to soothe critics while also showing that this is the way forward.", + "contentSnippet": "The clarification on a declaration issued in December seemed designed to soothe critics while also showing that this is the way forward.", + "guid": "https://www.nytimes.com/2024/01/04/world/europe/vatican-pope-lgbtq-blessings.html", + "categories": [ + { + "_": "Same-Sex Marriage, Civil Unions and Domestic Partnerships", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Homosexuality and Bisexuality", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Priests", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Roman Catholic Church", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Fernandez, Victor Manuel (1962- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Francis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-04T19:33:48.000Z" + }, + { + "creator": "Christina Anderson", + "title": "Winter Storm Traps Hundreds of Motorists Overnight in Sweden", + "link": "https://www.nytimes.com/2024/01/04/world/europe/snow-storm-sweden-road.html", + "pubDate": "Thu, 04 Jan 2024 18:26:06 +0000", + "dc:creator": "Christina Anderson", + "content": "Truck drivers and other motorists were locked in blankets of snow on a major roadway overnight after nearly 10 inches of snow fell within 24 hours.", + "contentSnippet": "Truck drivers and other motorists were locked in blankets of snow on a major roadway overnight after nearly 10 inches of snow fell within 24 hours.", + "guid": "https://www.nytimes.com/2024/01/04/world/europe/snow-storm-sweden-road.html", + "categories": [ + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Snow and Snowstorms", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rescues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Roads and Traffic", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sweden", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T18:26:06.000Z" + }, + { + "creator": "Isabella Kwai", + "title": "Why London\u2019s Tube Is Shutting Down Next Week", + "link": "https://www.nytimes.com/2024/01/04/world/europe/london-tube-strikes.html", + "pubDate": "Thu, 04 Jan 2024 17:31:10 +0000", + "dc:creator": "Isabella Kwai", + "content": "Large strikes by workers on the London Underground are expected to cripple the capital\u2019s transportation network for several days.", + "contentSnippet": "Large strikes by workers on the London Underground are expected to cripple the capital\u2019s transportation network for several days.", + "guid": "https://www.nytimes.com/2024/01/04/world/europe/london-tube-strikes.html", + "categories": [ + { + "_": "Railroads", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Subways", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "London Underground", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Transport for London", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Strikes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "London (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T17:31:10.000Z" + }, + { + "creator": "Choe Sang-Hun", + "title": "Kim Jong-un\u2019s Daughter Is His Likely Successor, South Korea Says", + "link": "https://www.nytimes.com/2024/01/04/world/asia/kim-jong-un-daughter-north-korea.html", + "pubDate": "Thu, 04 Jan 2024 14:11:46 +0000", + "dc:creator": "Choe Sang-Hun", + "content": "Kim Ju-ae has long accompanied her dictator father to important state events, like long-range missile tests and military parades.", + "contentSnippet": "Kim Ju-ae has long accompanied her dictator father to important state events, like long-range missile tests and military parades.", + "guid": "https://www.nytimes.com/2024/01/04/world/asia/kim-jong-un-daughter-north-korea.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kim Jong-un", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kim Ju-ae", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "North Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Workers' Party of Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "succession plans", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-04T14:11:46.000Z" + }, + { + "creator": "Edward Wong and Patrick Kingsley", + "title": "Blinken Talks a Grand Vision for Mideast Peace but Hits a Wall in Israel", + "link": "https://www.nytimes.com/2024/01/11/us/politics/blinken-israel-gaza-middle-east-peace.html", + "pubDate": "Thu, 11 Jan 2024 21:07:14 +0000", + "dc:creator": "Edward Wong and Patrick Kingsley", + "content": "Secretary of State Antony J. Blinken conducted marathon diplomacy around the region, but Israeli leaders, focused on war with Hamas, showed no interest in meeting demands like Palestinian statehood.", + "contentSnippet": "Secretary of State Antony J. Blinken conducted marathon diplomacy around the region, but Israeli leaders, focused on war with Hamas, showed no interest in meeting demands like Palestinian statehood.", + "guid": "https://www.nytimes.com/2024/01/11/us/politics/blinken-israel-gaza-middle-east-peace.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Blinken, Antony J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Saudi Arabia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-11T21:07:14.000Z" + }, + { + "creator": "Justin Porter and Amelia Nierenberg", + "title": "Friday Briefing: Taiwan Prepares to Vote", + "link": "https://www.nytimes.com/2024/01/11/world/taiwan-vote-israel-genocide-asia.html", + "pubDate": "Thu, 11 Jan 2024 20:48:39 +0000", + "dc:creator": "Justin Porter and Amelia Nierenberg", + "content": "Also, an interview with Naomi Osaka.", + "contentSnippet": "Also, an interview with Naomi Osaka.", + "guid": "https://www.nytimes.com/2024/01/11/world/taiwan-vote-israel-genocide-asia.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T20:48:39.000Z" + }, + { + "creator": "Jenny Gross and Farnaz Fassihi", + "title": "Iranian Navy Says It Seized an Oil Tanker Off the Coast of Oman", + "link": "https://www.nytimes.com/2024/01/11/world/middleeast/oil-vessel-gulf-oman-iran.html", + "pubDate": "Thu, 11 Jan 2024 20:41:36 +0000", + "dc:creator": "Jenny Gross and Farnaz Fassihi", + "content": "The same vessel was involved last year in the U.S. government seizure of Iranian oil that was being transported in violation of American sanctions.", + "contentSnippet": "The same vessel was involved last year in the U.S. government seizure of Iranian oil that was being transported in violation of American sanctions.", + "guid": "https://www.nytimes.com/2024/01/11/world/middleeast/oil-vessel-gulf-oman-iran.html", + "categories": [ + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gulf of Oman", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Oman", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T20:41:36.000Z" + }, + { + "creator": "The New York Times", + "title": "Israel-Hamas War: U.N.\u2019s Top Court Hears Genocide Case Against Israel", + "link": "https://www.nytimes.com/live/2024/01/11/world/israel-hamas-war-gaza-news", + "pubDate": "Thu, 11 Jan 2024 20:37:55 +0000", + "dc:creator": "The New York Times", + "content": "The accusation of genocide in Gaza, which Israel denies, has particular significance in a country founded in the wake of the Holocaust.", + "contentSnippet": "The accusation of genocide in Gaza, which Israel denies, has particular significance in a country founded in the wake of the Holocaust.", + "guid": "https://www.nytimes.com/live/2024/01/11/world/israel-hamas-war-gaza-news", + "isoDate": "2024-01-11T20:37:55.000Z" + }, + { + "creator": "Adam Rasgon", + "title": "Israel and Hamas Are in Talks to Deliver Medicine to Hostages in Gaza", + "link": "https://www.nytimes.com/2024/01/11/world/middleeast/israel-hamas-gaza-hostages-medicine.html", + "pubDate": "Thu, 11 Jan 2024 19:55:47 +0000", + "dc:creator": "Adam Rasgon", + "content": "More than 120 hostages are believed to still be held in Gaza and many suffer from health conditions that require regular medical care.", + "contentSnippet": "More than 120 hostages are believed to still be held in Gaza and many suffer from health conditions that require regular medical care.", + "guid": "https://www.nytimes.com/2024/01/11/world/middleeast/israel-hamas-gaza-hostages-medicine.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-11T19:55:47.000Z" + }, + { + "creator": "Lara Jakes", + "title": "U.S. Military Aid to Ukraine Was Poorly Tracked, Pentagon Report Says", + "link": "https://www.nytimes.com/2024/01/11/world/europe/us-military-aid-ukraine.html", + "pubDate": "Thu, 11 Jan 2024 19:18:07 +0000", + "dc:creator": "Lara Jakes", + "content": "The report found that American officials and diplomats had failed to quickly or fully account for all of the nearly 40,000 weapons sent to the front.", + "contentSnippet": "The report found that American officials and diplomats had failed to quickly or fully account for all of the nearly 40,000 weapons sent to the front.", + "guid": "https://www.nytimes.com/2024/01/11/world/europe/us-military-aid-ukraine.html", + "categories": [ + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-11T19:18:07.000Z" + }, + { + "creator": "Eduardo Medina", + "title": "Red Double-Decker Bus Catches Fire During London Rush Hour", + "link": "https://www.nytimes.com/2024/01/11/world/europe/london-wimbledon-bus-fire.html", + "pubDate": "Thu, 11 Jan 2024 18:28:56 +0000", + "dc:creator": "Eduardo Medina", + "content": "There were no injuries, and the London Fire Brigade said it would investigate the cause of the fire on the iconic red double-decker bus.", + "contentSnippet": "There were no injuries, and the London Fire Brigade said it would investigate the cause of the fire on the iconic red double-decker bus.", + "guid": "https://www.nytimes.com/2024/01/11/world/europe/london-wimbledon-bus-fire.html", + "categories": [ + { + "_": "Fires and Firefighters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Buses", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "London (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T18:28:56.000Z" + }, + { + "creator": "Amanda Holpuch", + "title": "Heiress Seeks 50 Austrians to Give Away $27 Million", + "link": "https://www.nytimes.com/2024/01/11/world/europe/austria-heiress-engelhorn-inheritance-giveaway.html", + "pubDate": "Thu, 11 Jan 2024 17:54:06 +0000", + "dc:creator": "Amanda Holpuch", + "content": "Marlene Engelhorn has sent invitations to 10,000 Austrians. Once that group is narrowed to 50, it will spend six weekends this year discussing the best way to spend the money.", + "contentSnippet": "Marlene Engelhorn has sent invitations to 10,000 Austrians. Once that group is narrowed to 50, it will spend six weekends this year discussing the best way to spend the money.", + "guid": "https://www.nytimes.com/2024/01/11/world/europe/austria-heiress-engelhorn-inheritance-giveaway.html", + "categories": [ + { + "_": "Income Inequality", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "High Net Worth Individuals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wills and Estates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "BASF SE", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Boehringer Mannheim GmbH", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Engelhorn, Marlene", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Austria", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T17:54:06.000Z" + }, + { + "creator": "Victor Mather", + "title": "Scotland, Joining England and Wales, Will Restrict Bully XL Dogs", + "link": "https://www.nytimes.com/2024/01/11/world/europe/xl-bully-dogs-ban-scotland.html", + "pubDate": "Thu, 11 Jan 2024 17:13:17 +0000", + "dc:creator": "Victor Mather", + "content": "The dogs, seen as dangerous by many, will have to be muzzled in public, neutered and microchipped, among other regulations.", + "contentSnippet": "The dogs, seen as dangerous by many, will have to be muzzled in public, neutered and microchipped, among other regulations.", + "guid": "https://www.nytimes.com/2024/01/11/world/europe/xl-bully-dogs-ban-scotland.html", + "categories": [ + { + "_": "Bullies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dogs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Animal Attacks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Scotland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T17:13:17.000Z" + }, + { + "creator": "Stephanie Nolen", + "title": "What Happens When There Is No Food: Experts Say Severe Malnutrition Could Set in Swiftly in Gaza", + "link": "https://www.nytimes.com/2024/01/11/health/gaza-hunger-starvation.html", + "pubDate": "Thu, 11 Jan 2024 17:03:57 +0000", + "dc:creator": "Stephanie Nolen", + "content": "Nutrition experts say the progression from hunger to severe malnutrition can be rapid, especially in children.", + "contentSnippet": "Nutrition experts say the progression from hunger to severe malnutrition can be rapid, especially in children.", + "guid": "https://www.nytimes.com/2024/01/11/health/gaza-hunger-starvation.html", + "categories": [ + { + "_": "Malnutrition", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Diet and Nutrition", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Food Insecurity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shortages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Famine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Children and Childhood", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United Nations Children's Fund", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T17:03:57.000Z" + }, + { + "creator": "Isabel Kershner and John Eligon", + "title": "ICJ to Hear Israel Genocide Accusation Case Brought by South Africa", + "link": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-genocide-case-south-africa-icj.html", + "pubDate": "Thu, 11 Jan 2024 16:26:44 +0000", + "dc:creator": "Isabel Kershner and John Eligon", + "content": "Israel has categorically rejected the allegations being brought this week in the International Court of Justice by South Africa.", + "contentSnippet": "Israel has categorically rejected the allegations being brought this week in the International Court of Justice by South Africa.", + "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-genocide-case-south-africa-icj.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Court of Justice (UN)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "South Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T16:26:44.000Z" + }, + { + "creator": "Vivian Yee, Adam Sella and Roni Caryn Rabin", + "title": "Gaza Aid Faces Lengthy Inspections and Logistical Issues", + "link": "https://www.nytimes.com/2024/01/11/world/middleeast/israel-gaza-aid-trucks.html", + "pubDate": "Thu, 11 Jan 2024 15:05:08 +0000", + "dc:creator": "Vivian Yee, Adam Sella and Roni Caryn Rabin", + "content": "Obstacles at two border crossings are exacerbating a growing humanitarian crisis, according to two U.S. senators and officials with the U.N. and other groups.", + "contentSnippet": "Obstacles at two border crossings are exacerbating a growing humanitarian crisis, according to two U.S. senators and officials with the U.N. and other groups.", + "guid": "https://www.nytimes.com/2024/01/11/world/middleeast/israel-gaza-aid-trucks.html", + "categories": [ + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rafah (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-11T15:05:08.000Z" + }, + { + "creator": "Chris Buckley, Amy Chang Chien and Lam Yik Fei", + "title": "Taiwan Democracy Is Loud and Proud", + "link": "https://www.nytimes.com/2024/01/11/world/asia/taiwan-election-democracy-loud.html", + "pubDate": "Thu, 11 Jan 2024 14:20:43 +0000", + "dc:creator": "Chris Buckley, Amy Chang Chien and Lam Yik Fei", + "content": "At the island\u2019s election rallies, warming up the crowd for candidates is crucial. \u201cYou have to light a fire in their hearts,\u201d one host says.", + "contentSnippet": "At the island\u2019s election rallies, warming up the crowd for candidates is crucial. \u201cYou have to light a fire in their hearts,\u201d one host says.", + "guid": "https://www.nytimes.com/2024/01/11/world/asia/taiwan-election-democracy-loud.html", + "categories": [ + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Elections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Chinese Nationalist Party (Taiwan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Democratic Progressive Party (Taiwan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ko Wen-je", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Tainan (Taiwan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Taiwan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Chiayi (Taiwan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Lai Ching-te", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hou Yu-ih (1957- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-11T14:20:43.000Z" + }, + { + "creator": "Emma Bubola and Johanna Lemola", + "title": "Finland Extends Closure of Border With Russia", + "link": "https://www.nytimes.com/2024/01/11/world/europe/finland-russia-border.html", + "pubDate": "Thu, 11 Jan 2024 14:02:17 +0000", + "dc:creator": "Emma Bubola and Johanna Lemola", + "content": "Late last year, Finland accused Moscow of facilitating an influx of migrants and shut its land border crossings with Russia.", + "contentSnippet": "Late last year, Finland accused Moscow of facilitating an influx of migrants and shut its land border crossings with Russia.", + "guid": "https://www.nytimes.com/2024/01/11/world/europe/finland-russia-border.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asylum, Right of", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Finland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T14:02:17.000Z" + }, + { + "creator": "Christopher Cottrell", + "title": "Papua New Guinea Declares State of Emergency After Riots, Looting", + "link": "https://www.nytimes.com/2024/01/11/world/australia/papua-new-guinea-state-emergency-riots.html", + "pubDate": "Thu, 11 Jan 2024 12:27:24 +0000", + "dc:creator": "Christopher Cottrell", + "content": "There were signs the authorities had regained some control, but the extent of damage and casualties from the unrest remained unclear.", + "contentSnippet": "There were signs the authorities had regained some control, but the extent of damage and casualties from the unrest remained unclear.", + "guid": "https://www.nytimes.com/2024/01/11/world/australia/papua-new-guinea-state-emergency-riots.html", + "categories": [ + { + "_": "Marape, James", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Papua New Guinea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Looting (Crime)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-11T12:27:24.000Z" + }, + { + "creator": "Edward Wong", + "title": "Blinken Meets el-Sisi in Egypt to Discuss Palestinians in Gaza", + "link": "https://www.nytimes.com/2024/01/11/world/middleeast/blinken-gaza-egypt-sisi.html", + "pubDate": "Thu, 11 Jan 2024 11:47:09 +0000", + "dc:creator": "Edward Wong", + "content": "The U.S. secretary of state also planned to talk about how to prevent the violence in the Mideast from escalating further, as Iran-backed militias ramp up attacks.", + "contentSnippet": "The U.S. secretary of state also planned to talk about how to prevent the violence in the Mideast from escalating further, as Iran-backed militias ramp up attacks.", + "guid": "https://www.nytimes.com/2024/01/11/world/middleeast/blinken-gaza-egypt-sisi.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Blinken, Antony J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sisi, Abdel Fattah el-", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Cairo (Egypt)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T11:47:09.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Israel Adesanya of M.M.A. Fame Avoids Drunk-Driving Conviction", + "link": "https://www.nytimes.com/2024/01/11/world/australia/new-zealand-israel-adesanya-mma.html", + "pubDate": "Thu, 11 Jan 2024 11:34:58 +0000", + "dc:creator": "Natasha Frost", + "content": "Within hours, the former middleweight mixed martial arts champion risked more legal trouble by posting provocative content on social media.", + "contentSnippet": "Within hours, the former middleweight mixed martial arts champion risked more legal trouble by posting provocative content on social media.", + "guid": "https://www.nytimes.com/2024/01/11/world/australia/new-zealand-israel-adesanya-mma.html", + "categories": [ + { + "_": "Adesanya, Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "New Zealand", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mixed Martial Arts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drunken and Reckless Driving", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "internal-storyline-no", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-11T11:34:58.000Z" + }, + { + "creator": "Hwaida Saad", + "title": "Hamas Says Hostages Won\u2019t Go Home Alive While Israeli Forces Remain in Gaza", + "link": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-hostages-hamas-gaza.html", + "pubDate": "Thu, 11 Jan 2024 10:41:03 +0000", + "dc:creator": "Hwaida Saad", + "content": "Netanyahu faces growing pressure to get the more than 100 hostages still held in Gaza home safely.", + "contentSnippet": "Netanyahu faces growing pressure to get the more than 100 hostages still held in Gaza home safely.", + "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-hostages-hamas-gaza.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-11T10:41:03.000Z" + }, + { + "creator": "Andrew Higgins", + "title": "Standoff at Presidential Palace Shows Poland\u2019s Right Won\u2019t Go Quietly", + "link": "https://www.nytimes.com/2024/01/10/world/europe/poland-standoff-presidential-palace.html", + "pubDate": "Thu, 11 Jan 2024 08:42:34 +0000", + "dc:creator": "Andrew Higgins", + "content": "The incident escalated a campaign by the ousted Law and Justice party to resist the transfer of power after it lost its parliamentary majority in October.", + "contentSnippet": "The incident escalated a campaign by the ousted Law and Justice party to resist the transfer of power after it lost its parliamentary majority in October.", + "guid": "https://www.nytimes.com/2024/01/10/world/europe/poland-standoff-presidential-palace.html", + "categories": [ + { + "_": "Poland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kaminski, Mariusz", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Law and Justice (Poland)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Right-Wing Extremism and Alt-Right", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tusk, Donald", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ethics and Official Misconduct", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-11T08:42:34.000Z" + }, + { + "creator": "Stephen Castle", + "title": "How a TV Show Forced Britain\u2019s Devastating Post Office Scandal Into the Light", + "link": "https://www.nytimes.com/2024/01/10/world/europe/uk-itv-mr-bates-vs-post-office.html", + "pubDate": "Thu, 11 Jan 2024 06:40:20 +0000", + "dc:creator": "Stephen Castle", + "content": "After years of delays, victims of one of the U.K.\u2019s worst miscarriages of justice are finally being exonerated \u2014 thanks to a TV drama.", + "contentSnippet": "After years of delays, victims of one of the U.K.\u2019s worst miscarriages of justice are finally being exonerated \u2014 thanks to a TV drama.", + "guid": "https://www.nytimes.com/2024/01/10/world/europe/uk-itv-mr-bates-vs-post-office.html", + "categories": [ + { + "_": "Television", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "False Arrests, Convictions and Imprisonments", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Compensation for Damages (Law)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Polls and Public Opinion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ITV (TV Network)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Fujitsu Limited", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Jones, Toby", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Postal Service and Post Offices", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mr Bates vs the Post Office (TV Program)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + } + ], + "isoDate": "2024-01-11T06:40:20.000Z" + }, + { + "creator": "Annie Correal and Genevieve Glatsky", + "title": "Ecuador Shaken by Days of Terror After Gang Leader\u2019s Disappearance", + "link": "https://www.nytimes.com/2024/01/10/world/americas/ecuador-violence-gangs-prison.html", + "pubDate": "Thu, 11 Jan 2024 06:29:46 +0000", + "dc:creator": "Annie Correal and Genevieve Glatsky", + "content": "Vowing to bring peace back to a shattered country, President Daniel Noboa has deployed the military to take on what he calls \u201cterrorist\u201d groups.", + "contentSnippet": "Vowing to bring peace back to a shattered country, President Daniel Noboa has deployed the military to take on what he calls \u201cterrorist\u201d groups.", + "guid": "https://www.nytimes.com/2024/01/10/world/americas/ecuador-violence-gangs-prison.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prison Escapes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gangs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drug Abuse and Traffic", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fugitives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Noboa, Daniel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Macias, Adolfo (Fito)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Los Choneros (Gang)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Los Lobos (Gang)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Colon Pico, Fabricio", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Guayaquil (Ecuador)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Quito (Ecuador)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ecuador", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T06:29:46.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Thursday Briefing", + "link": "https://www.nytimes.com/2024/01/10/briefing/houthi-red-sea-trump-ecuador.html", + "pubDate": "Thu, 11 Jan 2024 04:57:10 +0000", + "dc:creator": "Natasha Frost", + "content": "Houthi attacks in the Red Sea.", + "contentSnippet": "Houthi attacks in the Red Sea.", + "guid": "https://www.nytimes.com/2024/01/10/briefing/houthi-red-sea-trump-ecuador.html", + "isoDate": "2024-01-11T04:57:10.000Z" + }, + { + "creator": "Abdi Latif Dahir", + "title": "Al Shabab Terrorist Group Captures U.N. Helicopter in Somalia", + "link": "https://www.nytimes.com/2024/01/10/world/africa/al-shabab-un-helicopter-somalia.html", + "pubDate": "Thu, 11 Jan 2024 04:15:25 +0000", + "dc:creator": "Abdi Latif Dahir", + "content": "Somali officials said the helicopter was carrying nine passengers, one of whom was killed. The Horn of Africa nation is now grappling with how to rescue hostages from a group known for mistreating them.", + "contentSnippet": "Somali officials said the helicopter was carrying nine passengers, one of whom was killed. The Horn of Africa nation is now grappling with how to rescue hostages from a group known for mistreating them.", + "guid": "https://www.nytimes.com/2024/01/10/world/africa/al-shabab-un-helicopter-somalia.html", + "categories": [ + { + "_": "Somalia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Mogadishu (Somalia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Shabab", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Mohamud, Hassan Sheikh", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-11T04:15:25.000Z" + }, + { + "creator": "Adam Sella", + "title": "U.N. Expert Will Investigate Sex Crimes by Hamas, Israel Says", + "link": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-hamas-sex-crimes.html", + "pubDate": "Thu, 11 Jan 2024 04:14:39 +0000", + "dc:creator": "Adam Sella", + "content": "The official accepted Israel\u2019s invitation and is expected to go there soon, the foreign ministry said. Hamas has denied that its fighters committed sex crimes during the Oct. 7 attacks.", + "contentSnippet": "The official accepted Israel\u2019s invitation and is expected to go there soon, the foreign ministry said. Hamas has denied that its fighters committed sex crimes during the Oct. 7 attacks.", + "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/israel-hamas-sex-crimes.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sex Crimes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T04:14:39.000Z" + }, + { + "creator": "Mike Ives", + "title": "U.S. Navy Officer Who Helped China Is Sentenced to 2 Years", + "link": "https://www.nytimes.com/2024/01/09/us/navy-officer-china-spy.html", + "pubDate": "Thu, 11 Jan 2024 04:14:06 +0000", + "dc:creator": "Mike Ives", + "content": "Wenheng Zhao pleaded guilty to charges that he sent photos of American military installations and details of U.S. military exercises to an intelligence officer working for China.", + "contentSnippet": "Wenheng Zhao pleaded guilty to charges that he sent photos of American military installations and details of U.S. military exercises to an intelligence officer working for China.", + "guid": "https://www.nytimes.com/2024/01/09/us/navy-officer-china-spy.html", + "categories": [ + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Military Bases and Installations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Classified Information and State Secrets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bribery and Kickbacks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wei, Jinchao (Patrick)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zhao, Wenheng", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Justice Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States Navy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-11T04:14:06.000Z" + }, + { + "creator": "Choe Sang-Hun", + "title": "Knife Attacker Hoped to End Lee\u2019s Presidential Ambitions, South Korean Police Say", + "link": "https://www.nytimes.com/2024/01/10/world/asia/south-korea-knife-attack.html", + "pubDate": "Thu, 11 Jan 2024 00:21:17 +0000", + "dc:creator": "Choe Sang-Hun", + "content": "The suspect had planned the attack last week on the country\u2019s opposition leader for months, the police said, and had written an eight-page manifesto.", + "contentSnippet": "The suspect had planned the attack last week on the country\u2019s opposition leader for months, the police said, and had written an eight-page manifesto.", + "guid": "https://www.nytimes.com/2024/01/10/world/asia/south-korea-knife-attack.html", + "categories": [ + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Lee Jae-myung", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stalking (Crime)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Yoon Suk-yeol", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-11T00:21:17.000Z" + }, + { + "creator": "Roni Rabin", + "title": "How the War With Hamas Has Damaged Israel\u2019s Tech Firms and Economy", + "link": "https://www.nytimes.com/2024/01/10/business/israel-economy-gaza-war.html", + "pubDate": "Wed, 10 Jan 2024 23:44:40 +0000", + "dc:creator": "Roni Rabin", + "content": "Israel\u2019s technology sector, a key part of the economy, has been jolted by worker shortages and funding fears, which could drive a wider slowdown in 2024.", + "contentSnippet": "Israel\u2019s technology sector, a key part of the economy, has been jolted by worker shortages and funding fears, which could drive a wider slowdown in 2024.", + "guid": "https://www.nytimes.com/2024/01/10/business/israel-economy-gaza-war.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Labor and Jobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Workers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shortages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Migrant Labor (Non-Agriculture)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bank of Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-10T23:44:40.000Z" + }, + { + "creator": "Eric Schmitt, Thomas Fuller and Edward Wong", + "title": "U.S. and British Forces Fend Off Houthi Attack in Red Sea", + "link": "https://www.nytimes.com/2024/01/10/world/middleeast/houthis-red-sea-us-response.html", + "pubDate": "Wed, 10 Jan 2024 22:52:55 +0000", + "dc:creator": "Eric Schmitt, Thomas Fuller and Edward Wong", + "content": "American officials and their allies warned that there would be consequences for the Houthis, the Iranian-backed armed group that has disrupted shipping in the Red Sea.", + "contentSnippet": "American officials and their allies warned that there would be consequences for the Houthis, the Iranian-backed armed group that has disrupted shipping in the Red Sea.", + "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/houthis-red-sea-us-response.html", + "categories": [ + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ships and Shipping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Red Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Yemen", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T22:52:55.000Z" + }, + { + "creator": "Jin Yu Young", + "title": "Ecuador in Crisis: What to Know", + "link": "https://www.nytimes.com/2024/01/10/world/americas/ecuador-emergency-prisons-gangs.html", + "pubDate": "Wed, 10 Jan 2024 20:54:16 +0000", + "dc:creator": "Jin Yu Young", + "content": "Violence erupted across the South American country this week after a notorious gang leader disappeared from prison. The president has declared a state of emergency.", + "contentSnippet": "Violence erupted across the South American country this week after a notorious gang leader disappeared from prison. The president has declared a state of emergency.", + "guid": "https://www.nytimes.com/2024/01/10/world/americas/ecuador-emergency-prisons-gangs.html", + "categories": [ + { + "_": "Ecuador", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Guayaquil (Ecuador)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Noboa, Daniel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gangs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-10T20:54:16.000Z" + }, + { + "creator": "Amelia Nierenberg", + "title": "Thursday Briefing: The Fight Against Houthi Rebels", + "link": "https://www.nytimes.com/2024/01/10/world/us-houthi-red-sea-asia.html", + "pubDate": "Wed, 10 Jan 2024 20:50:35 +0000", + "dc:creator": "Amelia Nierenberg", + "content": "Preview: Also, violence in Ecuador.", + "contentSnippet": "Preview: Also, violence in Ecuador.", + "guid": "https://www.nytimes.com/2024/01/10/world/us-houthi-red-sea-asia.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T20:50:35.000Z" + }, + { + "creator": "Edward Wong", + "title": "Blinken Talks About Gaza\u2019s Future in Meeting With Palestinian Authority Leader", + "link": "https://www.nytimes.com/2024/01/10/world/middleeast/blinken-visit-palestinian-gaza-abbas.html", + "pubDate": "Wed, 10 Jan 2024 19:29:07 +0000", + "dc:creator": "Edward Wong", + "content": "The U.S. secretary of state spoke with Mahmoud Abbas, the leader of the Palestinian Authority, about the role the authority might play after Israel\u2019s war with Hamas.", + "contentSnippet": "The U.S. secretary of state spoke with Mahmoud Abbas, the leader of the Palestinian Authority, about the role the authority might play after Israel\u2019s war with Hamas.", + "guid": "https://www.nytimes.com/2024/01/10/world/middleeast/blinken-visit-palestinian-gaza-abbas.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ramallah (West Bank)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T19:29:07.000Z" + }, + { + "creator": "Brad Plumer", + "title": "U.S. Carbon Emissions Fell in 2023 as Coal Use Tumbled to New Lows", + "link": "https://www.nytimes.com/2024/01/10/climate/us-carbon-emissions-2023-climate.html", + "pubDate": "Wed, 10 Jan 2024 17:29:04 +0000", + "dc:creator": "Brad Plumer", + "content": "The drop was big, but emissions will need to fall three times as fast for the rest of the decade if the country wants to meet its climate goals.", + "contentSnippet": "The drop was big, but emissions will need to fall three times as fast for the rest of the decade if the country wants to meet its climate goals.", + "guid": "https://www.nytimes.com/2024/01/10/climate/us-carbon-emissions-2023-climate.html", + "categories": [ + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Coal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Natural Gas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alternative and Renewable Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carbon Dioxide", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rhodium Group LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-10T17:29:04.000Z" + }, + { + "creator": "Victor Mather", + "title": "Blocked Toilets Close Eton, Boarding School for Britain\u2019s Elite Sons", + "link": "https://www.nytimes.com/2024/01/10/world/europe/eton-college-flooding-toilets.html", + "pubDate": "Wed, 10 Jan 2024 17:20:46 +0000", + "dc:creator": "Victor Mather", + "content": "Flooding and a sewer backup have delayed the start of the new term. Classes at the school, which has educated princes and prime ministers, will move online.", + "contentSnippet": "Flooding and a sewer backup have delayed the start of the new term. Classes at the school, which has educated princes and prime ministers, will move online.", + "guid": "https://www.nytimes.com/2024/01/10/world/europe/eton-college-flooding-toilets.html", + "categories": [ + { + "_": "Eton College", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Sewers and Sewage", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Floods", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Private and Sectarian Schools", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bathrooms and Toilets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Thames Water", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "River Thames (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T17:20:46.000Z" + }, + { + "creator": "Lara Jakes and Christopher F. Schuetze", + "title": "Zelensky Visits Baltic Nations to Rally Support for Ukraine", + "link": "https://www.nytimes.com/2024/01/10/world/europe/ukraine-war-support-europe.html", + "pubDate": "Wed, 10 Jan 2024 14:02:04 +0000", + "dc:creator": "Lara Jakes and Christopher F. Schuetze", + "content": "President Volodymyr Zelensky of Ukraine is likely to find strong backing on a trip to the Baltic States, but other nations are increasingly wary.", + "contentSnippet": "President Volodymyr Zelensky of Ukraine is likely to find strong backing on a trip to the Baltic States, but other nations are increasingly wary.", + "guid": "https://www.nytimes.com/2024/01/10/world/europe/ukraine-war-support-europe.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Baltic Region", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "European Commission", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "North Atlantic Treaty Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T14:02:04.000Z" + }, + { + "creator": "Christopher Cottrell", + "title": "Papua New Guinea Orders Military to Restore Order After Unrest", + "link": "https://www.nytimes.com/2024/01/10/world/australia/papua-new-guinea-protest-military.html", + "pubDate": "Wed, 10 Jan 2024 12:21:54 +0000", + "dc:creator": "Christopher Cottrell", + "content": "Angry protests started after hundreds of police officers and other public servants appeared to walk off their jobs over a wage dispute.", + "contentSnippet": "Angry protests started after hundreds of police officers and other public servants appeared to walk off their jobs over a wage dispute.", + "guid": "https://www.nytimes.com/2024/01/10/world/australia/papua-new-guinea-protest-military.html", + "categories": [ + { + "_": "Papua New Guinea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Looting (Crime)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Marape, James", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-10T12:21:54.000Z" + }, + { + "creator": "Euan Ward, Anushka Patil and Matthew Mpoke Bigg", + "title": "Israel Says It Killed Another Hezbollah Commander in an Airstrike", + "link": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-hezbollah-commander-airstrike.html", + "pubDate": "Wed, 10 Jan 2024 08:44:33 +0000", + "dc:creator": "Euan Ward, Anushka Patil and Matthew Mpoke Bigg", + "content": "A deadly airstrike", + "contentSnippet": "A deadly airstrike", + "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-hezbollah-commander-airstrike.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Lebanon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Funerals and Memorials", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-10T08:44:33.000Z" + }, + { + "creator": "Mark Landler", + "title": "MSG Withdraws Bid to Build Vegas-Style Sphere in London", + "link": "https://www.nytimes.com/2024/01/09/world/europe/london-sphere-msg-vegas.html", + "pubDate": "Wed, 10 Jan 2024 07:48:57 +0000", + "dc:creator": "Mark Landler", + "content": "The American developer MSG Entertainment withdrew its bid to build a sister arena in Britain after opposition from Londoners and the city\u2019s mayor.", + "contentSnippet": "The American developer MSG Entertainment withdrew its bid to build a sister arena in Britain after opposition from Londoners and the city\u2019s mayor.", + "guid": "https://www.nytimes.com/2024/01/09/world/europe/london-sphere-msg-vegas.html", + "categories": [ + { + "_": "Local Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Outdoor Advertising", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Parks and Other Recreation Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sphere (Las Vegas, Nev)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Dolan, James L", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Khan, Sadiq", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "England", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Las Vegas (Nev)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "London (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T07:48:57.000Z" + }, + { + "creator": "Annie Correal, Genevieve Glatsky and Jos\u00e9 Mar\u00eda Le\u00f3n Cabrera", + "title": "Ecuador Plunges Into Crisis Amid Prison Riots, Kidnappings", + "link": "https://www.nytimes.com/2024/01/09/world/americas/ecuador-gang-prison-emergency.html", + "pubDate": "Wed, 10 Jan 2024 05:29:02 +0000", + "dc:creator": "Annie Correal, Genevieve Glatsky and Jos\u00e9 Mar\u00eda Le\u00f3n Cabrera", + "content": "The president declared a state of emergency and ordered the military to \u201cneutralize\u201d dozens of gangs. Gunmen stormed a TV studio as cameras rolled.", + "contentSnippet": "The president declared a state of emergency and ordered the military to \u201cneutralize\u201d dozens of gangs. Gunmen stormed a TV studio as cameras rolled.", + "guid": "https://www.nytimes.com/2024/01/09/world/americas/ecuador-gang-prison-emergency.html", + "categories": [ + { + "_": "Gangs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drug Cartels", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prison Escapes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fugitives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drug Abuse and Traffic", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Macias, Adolfo (Fito)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Noboa, Daniel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Los Choneros (Gang)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ecuador", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Guayaquil (Ecuador)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Quito (Ecuador)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T05:29:02.000Z" + }, + { + "creator": "Patrick Kingsley and Johnatan Reiss", + "title": "Israel, Shifting War Tempo, Offers Different Explanations at Home and Abroad", + "link": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-gaza-war-new-phase.html", + "pubDate": "Wed, 10 Jan 2024 05:21:02 +0000", + "dc:creator": "Patrick Kingsley and Johnatan Reiss", + "content": "Israeli officials have told foreign journalists that they are starting to slow military operations in Gaza, while assuring the Israeli public that the war against Hamas will go on.", + "contentSnippet": "Israeli officials have told foreign journalists that they are starting to slow military operations in Gaza, while assuring the Israeli public that the war against Hamas will go on.", + "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-gaza-war-new-phase.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Polls and Public Opinion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T05:21:02.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Wednesday Briefing", + "link": "https://www.nytimes.com/2024/01/10/briefing/trump-court-immunity-israel-heat.html", + "pubDate": "Wed, 10 Jan 2024 05:18:48 +0000", + "dc:creator": "Natasha Frost", + "content": "Donald Trump\u2019s immunity claim in court.", + "contentSnippet": "Donald Trump\u2019s immunity claim in court.", + "guid": "https://www.nytimes.com/2024/01/10/briefing/trump-court-immunity-israel-heat.html", + "isoDate": "2024-01-10T05:18:48.000Z" + }, + { + "creator": "Elisabetta Povoledo", + "title": "Italian Town Hitches Its Wagon to Plants That Bloom (Even in Winter)", + "link": "https://www.nytimes.com/2024/01/10/world/europe/italy-verbania-tourism-flowers-camillias.html", + "pubDate": "Wed, 10 Jan 2024 05:01:15 +0000", + "dc:creator": "Elisabetta Povoledo", + "content": "Lakefront Verbania in Italy\u2019s Piedmont seeks to attract flower lovers with its mild climate, spectacular gardens and wild nature.", + "contentSnippet": "Lakefront Verbania in Italy\u2019s Piedmont seeks to attract flower lovers with its mild climate, spectacular gardens and wild nature.", + "guid": "https://www.nytimes.com/2024/01/10/world/europe/italy-verbania-tourism-flowers-camillias.html", + "categories": [ + { + "_": "Gardens and Gardening", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Flowers and Plants", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Travel and Vacations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Italy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Piedmont (Italy)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T05:01:15.000Z" + }, + { + "creator": "Claire Moses", + "title": "Why Are California\u2019s Waters Lighting Up in Blue?", + "link": "https://www.nytimes.com/2024/01/09/science/blue-algae-california-bioluminescence.html", + "pubDate": "Wed, 10 Jan 2024 01:44:41 +0000", + "dc:creator": "Claire Moses", + "content": "It looks like the trailer for \u201cAvatar: The Way of Water,\u201d but it\u2019s a natural phenomenon. And spotting it is getting increasingly popular.", + "contentSnippet": "It looks like the trailer for \u201cAvatar: The Way of Water,\u201d but it\u2019s a natural phenomenon. And spotting it is getting increasingly popular.", + "guid": "https://www.nytimes.com/2024/01/09/science/blue-algae-california-bioluminescence.html", + "categories": [ + { + "_": "Algae", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bacteria", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fish and Other Marine Life", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Water", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Microbiology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oceans and Seas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "California", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "San Francisco Bay Area (Calif)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T01:44:41.000Z" + }, + { + "creator": "Niraj Chokshi and Mark Walker", + "title": "737 Max Inspections Delayed as Boeing Revises Guidance", + "link": "https://www.nytimes.com/2024/01/09/business/boeing-737-max-9-inspections-delayed.html", + "pubDate": "Wed, 10 Jan 2024 01:15:43 +0000", + "dc:creator": "Niraj Chokshi and Mark Walker", + "content": "The Federal Aviation Administration said that Boeing\u2019s instructions for how airlines should check the planes were insufficient and that the company would revise them.", + "contentSnippet": "The Federal Aviation Administration said that Boeing\u2019s instructions for how airlines should check the planes were insufficient and that the company would revise them.", + "guid": "https://www.nytimes.com/2024/01/09/business/boeing-737-max-9-inspections-delayed.html", + "categories": [ + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Aviation Accidents, Safety and Disasters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Boeing 737 Max Groundings and Safety Concerns (2019)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alaska Airlines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Boeing Company", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Federal Aviation Administration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Airlines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-10T01:15:43.000Z" + }, + { + "creator": "Roni Rabin", + "title": "\u2018Fauda\u2019 Actor Idan Amedi Is Seriously Injured Fighting in Gaza", + "link": "https://www.nytimes.com/2024/01/09/world/middleeast/idan-amedi-fauda-injured-gaza-israel.html", + "pubDate": "Wed, 10 Jan 2024 00:36:28 +0000", + "dc:creator": "Roni Rabin", + "content": "The actor, Idan Amedi, underwent surgery to remove shrapnel from his body and was expected to recover, Israeli news media reported.", + "contentSnippet": "The actor, Idan Amedi, underwent surgery to remove shrapnel from his body and was expected to recover, Israeli news media reported.", + "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/idan-amedi-fauda-injured-gaza-israel.html", + "categories": [ + { + "_": "Netflix Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Fauda (TV Program)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-10T00:36:28.000Z" + }, + { + "creator": "Edward Wong and Vivian Nereim", + "title": "Saudi-Israel Ties Depend on Steps Toward a Palestinian State, Blinken Says", + "link": "https://www.nytimes.com/2024/01/09/world/middleeast/blinken-israel-saudi-palestinian-state.html", + "pubDate": "Wed, 10 Jan 2024 00:07:44 +0000", + "dc:creator": "Edward Wong and Vivian Nereim", + "content": "In meetings with Israeli leaders, the U.S. secretary of state held out the prospect of Saudi recognition to prod Israel to curb combat operations in Gaza and accept a path to Palestinian statehood.", + "contentSnippet": "In meetings with Israeli leaders, the U.S. secretary of state held out the prospect of Saudi recognition to prod Israel to curb combat operations in Gaza and accept a path to Palestinian statehood.", + "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/blinken-israel-saudi-palestinian-state.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Saudi Arabia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Blinken, Antony J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mohammed bin Salman (1985- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-10T00:07:44.000Z" + }, + { + "creator": "Amelia Nierenberg", + "title": "Wednesday Briefing: Trump\u2019s Immunity Claim in Court", + "link": "https://www.nytimes.com/2024/01/09/world/trump-immunity-claim-asia.html", + "pubDate": "Tue, 09 Jan 2024 21:08:14 +0000", + "dc:creator": "Amelia Nierenberg", + "content": "Plus, 52 travel destinations for 2024.", + "contentSnippet": "Plus, 52 travel destinations for 2024.", + "guid": "https://www.nytimes.com/2024/01/09/world/trump-immunity-claim-asia.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-09T21:08:14.000Z" + }, + { + "creator": "Roger Cohen", + "title": "Gabriel Attal Is France\u2019s Youngest and First Openly Gay Prime Minister", + "link": "https://www.nytimes.com/2024/01/09/world/europe/gabriel-attal-france-prime-minister.html", + "pubDate": "Tue, 09 Jan 2024 20:22:22 +0000", + "dc:creator": "Roger Cohen", + "content": "Gabriel Attal, 34, replaces \u00c9lisabeth Borne in a cabinet shuffle that President Emmanuel Macron hopes can reinvigorate a term marked by drift and division.", + "contentSnippet": "Gabriel Attal, 34, replaces \u00c9lisabeth Borne in a cabinet shuffle that President Emmanuel Macron hopes can reinvigorate a term marked by drift and division.", + "guid": "https://www.nytimes.com/2024/01/09/world/europe/gabriel-attal-france-prime-minister.html", + "categories": [ + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Attal, Gabriel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Homosexuality and Bisexuality", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Legislatures and Parliaments", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Macron, Emmanuel (1977- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Borne, Elisabeth", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-09T20:22:22.000Z" + }, + { + "creator": "Eric Lipton", + "title": "Norway Moves to Allow Seabed Mining Exploration", + "link": "https://www.nytimes.com/2024/01/09/climate/seabed-mining-norway-oceans.html", + "pubDate": "Tue, 09 Jan 2024 18:56:12 +0000", + "dc:creator": "Eric Lipton", + "content": "The decision in Parliament, opposed by environmentalists, will allow prospectors to start surveying the country\u2019s waters.", + "contentSnippet": "The decision in Parliament, opposed by environmentalists, will allow prospectors to start surveying the country\u2019s waters.", + "guid": "https://www.nytimes.com/2024/01/09/climate/seabed-mining-norway-oceans.html", + "categories": [ + { + "_": "Norway", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Offshore Drilling and Exploration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oceans and Seas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Metals and Minerals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Seabed Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-09T18:56:12.000Z" + }, + { + "creator": "Alan Rappeport", + "title": "World Bank Warns of Energy Price Surge if Mideast War Spreads", + "link": "https://www.nytimes.com/2024/01/09/business/world-bank-global-economic-prospects.html", + "pubDate": "Tue, 09 Jan 2024 18:48:44 +0000", + "dc:creator": "Alan Rappeport", + "content": "A new economic report predicted a year of weak growth and said the world faced a decade of \u201cwasted opportunity.\u201d", + "contentSnippet": "A new economic report predicted a year of weak growth and said the world faced a decade of \u201cwasted opportunity.\u201d", + "guid": "https://www.nytimes.com/2024/01/09/business/world-bank-global-economic-prospects.html", + "categories": [ + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation (Economics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Economy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Two Thousand Twenties (Decade)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-09T18:48:44.000Z" + }, + { + "creator": "Raymond Zhong and Keith Collins", + "title": "2023 Was Hottest Year on Record by a Lot", + "link": "https://www.nytimes.com/2024/01/09/climate/2023-warmest-year-record.html", + "pubDate": "Tue, 09 Jan 2024 15:46:13 +0000", + "dc:creator": "Raymond Zhong and Keith Collins", + "content": "Month after month global temperatures didn\u2019t just break records, they surpassed them by far. This year could be even warmer.", + "contentSnippet": "Month after month global temperatures didn\u2019t just break records, they surpassed them by far. This year could be even warmer.", + "guid": "https://www.nytimes.com/2024/01/09/climate/2023-warmest-year-record.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Copernicus Climate Change Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Heat and Heat Waves", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Two Thousand Twenty Three", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-09T15:46:13.000Z" + }, + { + "creator": "Edward Wong, Mark Mazzetti and Paul Mozur", + "title": "A.I. Giant Tied to China Under Scrutiny", + "link": "https://www.nytimes.com/2024/01/09/us/politics/ai-china-uae-g42.html", + "pubDate": "Tue, 09 Jan 2024 12:36:40 +0000", + "dc:creator": "Edward Wong, Mark Mazzetti and Paul Mozur", + "content": "A congressional committee made the demand of the Commerce Department after The Times reported on concerns among U.S. intelligence officials over the Emirati company, G42.", + "contentSnippet": "A congressional committee made the demand of the Commerce Department after The Times reported on concerns among U.S. intelligence officials over the Emirati company, G42.", + "guid": "https://www.nytimes.com/2024/01/09/us/politics/ai-china-uae-g42.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Surveillance of Citizens by Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Classified Information and State Secrets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Commerce Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Arab Emirates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Yitu Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "ToTok (Mobile App)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Dark Matter LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-09T12:36:40.000Z" + }, + { + "creator": "Patrick Kingsley and Avishag Shaar-Yashuv", + "title": "New York Times journalists get a glimpse inside a devastated Gaza.", + "link": "https://www.nytimes.com/2024/01/09/world/middleeast/new-york-times-journalists-get-a-glimpse-inside-a-devastated-gaza.html", + "pubDate": "Tue, 09 Jan 2024 12:02:36 +0000", + "dc:creator": "Patrick Kingsley and Avishag Shaar-Yashuv", + "content": "", + "contentSnippet": "", + "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/new-york-times-journalists-get-a-glimpse-inside-a-devastated-gaza.html", + "isoDate": "2024-01-09T12:02:36.000Z" + }, + { + "creator": "Damien Cave", + "title": "Taiwan Raised an Alarm About a Chinese Satellite. Chaos Ensued.", + "link": "https://www.nytimes.com/2024/01/09/world/asia/taiwan-alert-chinese-flyover.html", + "pubDate": "Tue, 09 Jan 2024 11:56:18 +0000", + "dc:creator": "Damien Cave", + "content": "A warning from Taiwan about a satellite, erroneously called a missile in English, raised concerns about Chinese harassment days before an election.", + "contentSnippet": "A warning from Taiwan about a satellite, erroneously called a missile in English, raised concerns about Chinese harassment days before an election.", + "guid": "https://www.nytimes.com/2024/01/09/world/asia/taiwan-alert-chinese-flyover.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Chinese Nationalist Party (Taiwan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Democratic Progressive Party (Taiwan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Taiwan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Satellites", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "False Alarms", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Security and Warning Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-09T11:56:18.000Z" + }, + { + "creator": "Patrick Kingsley and Avishag Shaar-Yashuv", + "title": "A Glimpse Inside a Devastated Gaza", + "link": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-military-gaza-ruins.html", + "pubDate": "Tue, 09 Jan 2024 11:36:59 +0000", + "dc:creator": "Patrick Kingsley and Avishag Shaar-Yashuv", + "content": "In the ruins of two Gazan towns, New York Times journalists witnessed the sheer destruction that Israel\u2019s war has wrought and the devastation of Hamas\u2019s operations.", + "contentSnippet": "In the ruins of two Gazan towns, New York Times journalists witnessed the sheer destruction that Israel\u2019s war has wrought and the devastation of Hamas\u2019s operations.", + "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/israel-military-gaza-ruins.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Court of Justice (UN)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Graffiti", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Maghazi (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Bureij (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "vis-photo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-09T11:36:59.000Z" + }, + { + "creator": "John Yoon", + "title": "South Korea Bans Dog Meat, a Now-Unpopular Food", + "link": "https://www.nytimes.com/2024/01/09/world/asia/south-korea-dog-meat-ban.html", + "pubDate": "Tue, 09 Jan 2024 08:48:16 +0000", + "dc:creator": "John Yoon", + "content": "Breeding, killing and selling dogs for their meat will be banned in a country where it has fallen out of favor. Hundreds of thousands of the animal were still being bred for human consumption.", + "contentSnippet": "Breeding, killing and selling dogs for their meat will be banned in a country where it has fallen out of favor. Hundreds of thousands of the animal were still being bred for human consumption.", + "guid": "https://www.nytimes.com/2024/01/09/world/asia/south-korea-dog-meat-ban.html", + "categories": [ + { + "_": "Meat", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dogs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Breeding of Animals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Animal Abuse, Rights and Welfare", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humane Society International", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Yoon Suk-yeol", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-09T08:48:16.000Z" + }, + { + "creator": "Victoria Kim", + "title": "Blinken begins meetings in Israel amid deepening disagreements over the war.", + "link": "https://www.nytimes.com/2024/01/09/world/middleeast/blinken-to-meet-with-israeli-leaders-amid-deepening-disagreements-over-the-war.html", + "pubDate": "Tue, 09 Jan 2024 08:15:49 +0000", + "dc:creator": "Victoria Kim", + "content": "", + "contentSnippet": "", + "guid": "https://www.nytimes.com/2024/01/09/world/middleeast/blinken-to-meet-with-israeli-leaders-amid-deepening-disagreements-over-the-war.html", + "isoDate": "2024-01-09T08:15:49.000Z" + }, + { + "creator": "Talya Minsberg", + "title": "Oct. 7 Assaults, Including Sexual Violence, Could Be Crimes Against Humanity, U.N. Experts Say", + "link": "https://www.nytimes.com/2024/01/08/world/middleeast/hamas-sexual-violence-un-israel.html", + "pubDate": "Tue, 09 Jan 2024 06:54:52 +0000", + "dc:creator": "Talya Minsberg", + "content": "The experts\u2019 statement came after the United Nations had been the focus of months of frustrated accusations that it was ignoring the rape and mutilation of women during the Oct. 7 attacks.", + "contentSnippet": "The experts\u2019 statement came after the United Nations had been the focus of months of frustrated accusations that it was ignoring the rape and mutilation of women during the Oct. 7 attacks.", + "guid": "https://www.nytimes.com/2024/01/08/world/middleeast/hamas-sexual-violence-un-israel.html", + "categories": [ + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sex Crimes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-09T06:54:52.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Tuesday Briefing", + "link": "https://www.nytimes.com/2024/01/09/briefing/israel-gaza-france-prime-minister.html", + "pubDate": "Tue, 09 Jan 2024 05:31:14 +0000", + "dc:creator": "Natasha Frost", + "content": "Israel\u2019s next phase of the war in Gaza.", + "contentSnippet": "Israel\u2019s next phase of the war in Gaza.", + "guid": "https://www.nytimes.com/2024/01/09/briefing/israel-gaza-france-prime-minister.html", + "isoDate": "2024-01-09T05:31:14.000Z" + }, + { + "creator": "The New York Times", + "title": "Israel-Hamas War: U.S. Strikes Houthis Again as Tensions in Region Rise", + "link": "https://www.nytimes.com/live/2024/01/18/world/israel-hamas-news", + "pubDate": "Thu, 18 Jan 2024 12:20:59 +0000", + "dc:creator": "The New York Times", + "content": "The U.S. has attacked Houthi targets four times in the past week as it tries to limit the Iran-backed group\u2019s ability to strike ships in the Red Sea.", + "contentSnippet": "The U.S. has attacked Houthi targets four times in the past week as it tries to limit the Iran-backed group\u2019s ability to strike ships in the Red Sea.", + "guid": "https://www.nytimes.com/live/2024/01/18/world/israel-hamas-news", + "isoDate": "2024-01-18T12:20:59.000Z" + }, + { + "creator": "Salman Masood", + "title": "Pakistan Retaliates With Strikes Inside Iran as Tensions Boil", + "link": "https://www.nytimes.com/2024/01/17/world/asia/pakistan-iran-strike.html", + "pubDate": "Thu, 18 Jan 2024 12:17:38 +0000", + "dc:creator": "Salman Masood", + "content": "The exchange of attacks came as the upheaval sweeping the Middle East threatened to expand.", + "contentSnippet": "The exchange of attacks came as the upheaval sweeping the Middle East threatened to expand.", + "guid": "https://www.nytimes.com/2024/01/17/world/asia/pakistan-iran-strike.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T12:17:38.000Z" + }, + { + "creator": "Lara Jakes and David E. Sanger", + "title": "Iran\u2019s Missile Capability Is Forcing the West to Weigh a Response", + "link": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-missile-program.html", + "pubDate": "Thu, 18 Jan 2024 11:32:14 +0000", + "dc:creator": "Lara Jakes and David E. Sanger", + "content": "Last year, the world discovered that Iran\u2019s drones were becoming world-class threats and a favorite of the Russians. Now, its revived missile fleet is drawing attention, too.", + "contentSnippet": "Last year, the world discovered that Iran\u2019s drones were becoming world-class threats and a favorite of the Russians. Now, its revived missile fleet is drawing attention, too.", + "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-missile-program.html", + "categories": [ + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Syria", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Islamic Revolutionary Guards Corps", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Iraq", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Abu Dhabi (United Arab Emirates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Baluchistan (Pakistan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "internal-storyline-no", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T11:32:14.000Z" + }, + { + "creator": "Sui-Lee Wee", + "title": "In a Rare Move, Singapore Charges Official With Corruption", + "link": "https://www.nytimes.com/2024/01/18/world/asia/singapore-iswaran-corruption-charges.html", + "pubDate": "Thu, 18 Jan 2024 10:56:20 +0000", + "dc:creator": "Sui-Lee Wee", + "content": "Accused of accepting tickets to \u201cHamilton,\u201d air travel and soccer games in Britain, the transport official resigned before he pleaded not guilty in court.", + "contentSnippet": "Accused of accepting tickets to \u201cHamilton,\u201d air travel and soccer games in Britain, the transport official resigned before he pleaded not guilty in court.", + "guid": "https://www.nytimes.com/2024/01/18/world/asia/singapore-iswaran-corruption-charges.html", + "categories": [ + { + "_": "Singapore", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Corruption (Institutional)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T10:56:20.000Z" + }, + { + "creator": "Ceylan Yeginsu", + "title": "Where Are People Going This Year?", + "link": "https://www.nytimes.com/2024/01/18/travel/destinations-2024.html", + "pubDate": "Thu, 18 Jan 2024 10:01:06 +0000", + "dc:creator": "Ceylan Yeginsu", + "content": "Popular spots from years past are still favorites, but 2023\u2019s crowds and heat waves are sparking interest in alternative destinations.", + "contentSnippet": "Popular spots from years past are still favorites, but 2023\u2019s crowds and heat waves are sparking interest in alternative destinations.", + "guid": "https://www.nytimes.com/2024/01/18/travel/destinations-2024.html", + "categories": [ + { + "_": "Travel and Vacations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Eclipses", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Scandinavia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-18T10:01:06.000Z" + }, + { + "creator": "Paige McClanahan", + "title": "Will My Next Trip Be by Train Instead of Plane?", + "link": "https://www.nytimes.com/2024/01/18/travel/new-train-routes.html", + "pubDate": "Thu, 18 Jan 2024 10:00:55 +0000", + "dc:creator": "Paige McClanahan", + "content": "In Europe, Asia and the U.S., new and expanded train service is making rail a viable alternative to flying.", + "contentSnippet": "In Europe, Asia and the U.S., new and expanded train service is making rail a viable alternative to flying.", + "guid": "https://www.nytimes.com/2024/01/18/travel/new-train-routes.html", + "categories": [ + { + "_": "Railroads", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Travel and Vacations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "High-Speed Rail Projects", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Malaysia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-18T10:00:55.000Z" + }, + { + "creator": "Christopher Cottrell and Natasha Frost", + "title": "How Violent Riots Engulfed Papua New Guinea\u2019s Capital", + "link": "https://www.nytimes.com/2024/01/18/world/asia/papua-new-guinea-unrest-poverty.html", + "pubDate": "Thu, 18 Jan 2024 06:57:49 +0000", + "dc:creator": "Christopher Cottrell and Natasha Frost", + "content": "A wage dispute prompted violent unrest in the Pacific nation, which experts call evidence of the effects of its demographic challenges.", + "contentSnippet": "A wage dispute prompted violent unrest in the Pacific nation, which experts call evidence of the effects of its demographic challenges.", + "guid": "https://www.nytimes.com/2024/01/18/world/asia/papua-new-guinea-unrest-poverty.html", + "categories": [ + { + "_": "Papua New Guinea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Marape, James", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Poverty", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Youth", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T06:57:49.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Thursday Briefing", + "link": "https://www.nytimes.com/2024/01/18/briefing/iran-strikes-gaza-hospital.html", + "pubDate": "Thu, 18 Jan 2024 05:07:24 +0000", + "dc:creator": "Natasha Frost", + "content": "Missile strikes by Iran.", + "contentSnippet": "Missile strikes by Iran.", + "guid": "https://www.nytimes.com/2024/01/18/briefing/iran-strikes-gaza-hospital.html", + "isoDate": "2024-01-18T05:07:24.000Z" + }, + { + "creator": "Simon Romero, Jody Garc\u00eda and Daniele Volpe", + "title": "In Guatemala, New Utopian Neighborhood? Or a Testament to Inequality?", + "link": "https://www.nytimes.com/2024/01/18/world/americas/cayala-guatemala.html", + "pubDate": "Thu, 18 Jan 2024 05:01:28 +0000", + "dc:creator": "Simon Romero, Jody Garc\u00eda and Daniele Volpe", + "content": "The development of Cayal\u00e1 is utopian, serene and prizewinning. As an elite stronghold in one of Latin America\u2019s most unequal nations, it is also divisive.", + "contentSnippet": "The development of Cayal\u00e1 is utopian, serene and prizewinning. As an elite stronghold in one of Latin America\u2019s most unequal nations, it is also divisive.", + "guid": "https://www.nytimes.com/2024/01/18/world/americas/cayala-guatemala.html", + "categories": [ + { + "_": "Income Inequality", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Urban Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Architecture", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Guatemala City (Guatemala)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Guatemala", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Arevalo, Bernardo (1958- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-18T05:01:28.000Z" + }, + { + "creator": "Melissa Eddy", + "title": "Germany\u2019s Economy Stalls Amid Falling Output and Political Bickering", + "link": "https://www.nytimes.com/2024/01/18/world/europe/german-economy-standstill.html", + "pubDate": "Thu, 18 Jan 2024 05:01:21 +0000", + "dc:creator": "Melissa Eddy", + "content": "The economy shrank last year and is not predicted to grow much in 2024. Farmers are angry, industrial output is falling and the government is bickering.", + "contentSnippet": "The economy shrank last year and is not predicted to grow much in 2024. Farmers are angry, industrial output is falling and the government is bickering.", + "guid": "https://www.nytimes.com/2024/01/18/world/europe/german-economy-standstill.html", + "categories": [ + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Strikes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gross National Product (GNP)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Group of Twenty", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Scholz, Olaf (1958- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Germany", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-18T05:01:21.000Z" + }, + { + "creator": "Karoun Demirjian and Erica L. Green", + "title": "Johnson Casts Doubt on Border Deal to Unlock Ukraine Aid, Defying Biden", + "link": "https://www.nytimes.com/2024/01/17/us/politics/johnson-biden-border-ukraine.html", + "pubDate": "Thu, 18 Jan 2024 02:37:29 +0000", + "dc:creator": "Karoun Demirjian and Erica L. Green", + "content": "A White House meeting between the president and congressional leaders did little to break the stalemate over aid to Ukraine, as the Republican speaker insisted on a tougher immigration crackdown.", + "contentSnippet": "A White House meeting between the president and congressional leaders did little to break the stalemate over aid to Ukraine, as the Republican speaker insisted on a tougher immigration crackdown.", + "guid": "https://www.nytimes.com/2024/01/17/us/politics/johnson-biden-border-ukraine.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Johnson, Mike (1972- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T02:37:29.000Z" + }, + { + "creator": "Simon Romero", + "title": "U.S. Moves to Bar Alejandro Giammattei, Ex-Guatemalan Leader", + "link": "https://www.nytimes.com/2024/01/17/world/americas/us-guatemala-giammattei-barred.html", + "pubDate": "Thu, 18 Jan 2024 01:57:13 +0000", + "dc:creator": "Simon Romero", + "content": "The decision against Alejandro Giammattei, who is accused of accepting bribes, signaled U.S. support for a new anticorruption drive in Guatemala.", + "contentSnippet": "The decision against Alejandro Giammattei, who is accused of accepting bribes, signaled U.S. support for a new anticorruption drive in Guatemala.", + "guid": "https://www.nytimes.com/2024/01/17/world/americas/us-guatemala-giammattei-barred.html", + "categories": [ + { + "_": "Guatemala", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Giammattei, Alejandro", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "State Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bribery and Kickbacks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Corruption (Institutional)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arevalo, Bernardo (1958- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Elections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T01:57:13.000Z" + }, + { + "creator": "Sui-Lee Wee", + "title": "Explosion at Thailand Fireworks Factory Kills at Least 20", + "link": "https://www.nytimes.com/2024/01/17/world/asia/thailand-fireworks-factory-explosion.html", + "pubDate": "Thu, 18 Jan 2024 01:55:43 +0000", + "dc:creator": "Sui-Lee Wee", + "content": "The blast leveled the facility and was the second such deadly accident in the country since 2022. The police are investigating the cause.", + "contentSnippet": "The blast leveled the facility and was the second such deadly accident in the country since 2022. The police are investigating the cause.", + "guid": "https://www.nytimes.com/2024/01/17/world/asia/thailand-fireworks-factory-explosion.html", + "categories": [ + { + "_": "Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Thailand", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T01:55:43.000Z" + }, + { + "creator": "Adam Rasgon, Aaron Boxerman and Thomas Fuller", + "title": "Palestinians Flee Gaza Hospital Refuge as Fighting Intensifies", + "link": "https://www.nytimes.com/2024/01/17/world/middleeast/israel-hamas-gaza-hospital.html", + "pubDate": "Thu, 18 Jan 2024 01:00:14 +0000", + "dc:creator": "Adam Rasgon, Aaron Boxerman and Thomas Fuller", + "content": "Israel and Hamas are battling near a hospital in Khan Younis, near where the military said it had detected mortar fire. About 7,000 people had sought shelter on the hospital grounds, the U.N. said.", + "contentSnippet": "Israel and Hamas are battling near a hospital in Khan Younis, near where the military said it had detected mortar fire. About 7,000 people had sought shelter on the hospital grounds, the U.N. said.", + "guid": "https://www.nytimes.com/2024/01/17/world/middleeast/israel-hamas-gaza-hospital.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hospitals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sinwar, Yehya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Blinken, Antony J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nasser Medical Center", + "$": { + "domain": "" + } + } + ], + "isoDate": "2024-01-18T01:00:14.000Z" + }, + { + "creator": "John Yoon and Victor Mather", + "title": "Heavy Snow and Freezing Rain Ground Hundreds of Flights in Germany", + "link": "https://www.nytimes.com/2024/01/17/world/europe/germany-flights-canceled-weather.html", + "pubDate": "Wed, 17 Jan 2024 22:55:04 +0000", + "dc:creator": "John Yoon and Victor Mather", + "content": "About 700 flights were canceled on Wednesday at Germany\u2019s largest airport because of severe weather. Departures resumed later in the day.", + "contentSnippet": "About 700 flights were canceled on Wednesday at Germany\u2019s largest airport because of severe weather. Departures resumed later in the day.", + "guid": "https://www.nytimes.com/2024/01/17/world/europe/germany-flights-canceled-weather.html", + "categories": [ + { + "_": "Airports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Frankfurt (Germany)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Weather", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Snow and Snowstorms", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Frankfurt Airport", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Munich (Germany)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Deutsche Lufthansa AG", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-17T22:55:04.000Z" + }, + { + "creator": "Stephen Castle and Mark Landler", + "title": "Sunak\u2019s Rwanda Immigration Plan Passes Vote in U.K. Parliament", + "link": "https://www.nytimes.com/2024/01/17/world/europe/britain-immigration-vote-rwanda.html", + "pubDate": "Wed, 17 Jan 2024 22:53:35 +0000", + "dc:creator": "Stephen Castle and Mark Landler", + "content": "The British prime minister\u2019s plan to send refugees to Rwanda passed a critical vote, but more hurdles lie ahead.", + "contentSnippet": "The British prime minister\u2019s plan to send refugees to Rwanda passed a critical vote, but more hurdles lie ahead.", + "guid": "https://www.nytimes.com/2024/01/17/world/europe/britain-immigration-vote-rwanda.html", + "categories": [ + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain Withdrawal from EU (Brexit)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conservative Party (Great Britain)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "House of Lords (Great Britain)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Labour Party (Great Britain)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Sunak, Rishi (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Starmer, Keir", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Rwanda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-17T22:53:35.000Z" + }, + { + "creator": "Michael Crowley", + "title": "U.S. to Return Houthis to Terrorism List", + "link": "https://www.nytimes.com/2024/01/16/us/politics/houthis-terrorism-designation.html", + "pubDate": "Wed, 17 Jan 2024 22:50:16 +0000", + "dc:creator": "Michael Crowley", + "content": "The move is a partial return to a tougher Trump administration stance toward the Iran-backed group, which has attacked commercial ships in the Red Sea and the Gulf of Aden.", + "contentSnippet": "The move is a partial return to a tougher Trump administration stance toward the Iran-backed group, which has attacked commercial ships in the Red Sea and the Gulf of Aden.", + "guid": "https://www.nytimes.com/2024/01/16/us/politics/houthis-terrorism-designation.html", + "categories": [ + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Blinken, Antony J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Trump, Donald J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Red Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Yemen", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-17T22:50:16.000Z" + }, + { + "creator": "Valeriya Safronova", + "title": "Nadya Tolokonnikova of Pussy Riot Marries John Caldwell", + "link": "https://www.nytimes.com/2024/01/17/style/nadya-tolokonnikova-john-caldwell-pussy-riot-wedding.html", + "pubDate": "Wed, 17 Jan 2024 22:05:14 +0000", + "dc:creator": "Valeriya Safronova", + "content": "Nadya Tolokonnikova, a founding member of Pussy Riot, and John Caldwell have always prioritized being \u201chelpful,\u201d he said, over being happy.", + "contentSnippet": "Nadya Tolokonnikova, a founding member of Pussy Riot, and John Caldwell have always prioritized being \u201chelpful,\u201d he said, over being happy.", + "guid": "https://www.nytimes.com/2024/01/17/style/nadya-tolokonnikova-john-caldwell-pussy-riot-wedding.html", + "categories": [ + { + "_": "Weddings and Engagements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tolokonnikova, Nadezhda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T22:05:14.000Z" + }, + { + "creator": "Mark Landler and Stephen Castle", + "title": "Why Rishi Sunak\u2019s Conservatives Have Splintered Into Factions", + "link": "https://www.nytimes.com/2024/01/17/world/europe/sunak-parliament-conservatives-five-families.html", + "pubDate": "Wed, 17 Jan 2024 21:46:34 +0000", + "dc:creator": "Mark Landler and Stephen Castle", + "content": "The biggest challenge to Britain\u2019s prime minister comes from his own divided party, which is triggering resignations and a mutiny over immigration.", + "contentSnippet": "The biggest challenge to Britain\u2019s prime minister comes from his own divided party, which is triggering resignations and a mutiny over immigration.", + "guid": "https://www.nytimes.com/2024/01/17/world/europe/sunak-parliament-conservatives-five-families.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conservative Party (Great Britain)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Asylum, Right of", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Francois, Mark (1965- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sunak, Rishi (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Timothy, Nicholas (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Braverman, Suella", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Johnson, Boris", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "England", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Rwanda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T21:46:34.000Z" + }, + { + "creator": "Mark Landler", + "title": "Kate, Princess of Wales, Is in the Hospital After Abdominal Surgery", + "link": "https://www.nytimes.com/2024/01/17/world/europe/princess-kate-middleton-abdominal-surgery.html", + "pubDate": "Wed, 17 Jan 2024 21:43:21 +0000", + "dc:creator": "Mark Landler", + "content": "Kensington Palace said Catherine, the wife of Prince William, would not return to public duties until after Easter. Separately, King Charles will receive prostate treatment next week.", + "contentSnippet": "Kensington Palace said Catherine, the wife of Prince William, would not return to public duties until after Easter. Separately, King Charles will receive prostate treatment next week.", + "guid": "https://www.nytimes.com/2024/01/17/world/europe/princess-kate-middleton-abdominal-surgery.html", + "categories": [ + { + "_": "Royal Families", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Catherine, Duchess of Cambridge", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "William, Duke of Cambridge", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Charles III, King of the United Kingdom", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T21:43:21.000Z" + }, + { + "creator": "Anushka Patil and Adam Rasgon", + "title": "Gaza\u2019s Phone and Internet Service Is Down for a Sixth Day", + "link": "https://www.nytimes.com/2024/01/17/world/middleeast/gaza-telecom-blackout.html", + "pubDate": "Wed, 17 Jan 2024 21:32:18 +0000", + "dc:creator": "Anushka Patil and Adam Rasgon", + "content": "It is the longest blackout since the start of the war, according to the strip\u2019s main communications company, which says it is unable to make repairs amid the fighting.", + "contentSnippet": "It is the longest blackout since the start of the war, according to the strip\u2019s main communications company, which says it is unable to make repairs amid the fighting.", + "guid": "https://www.nytimes.com/2024/01/17/world/middleeast/gaza-telecom-blackout.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Communications and Media Blackouts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Khan Younis (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T21:32:18.000Z" + }, + { + "creator": "Vivian Yee and Farnaz Fassihi", + "title": "Iran Says It Won\u2019t Hold Back on Using Military Power After Strikes", + "link": "https://www.nytimes.com/2024/01/17/world/middleeast/iran-missiles-pakistan-iraq.html", + "pubDate": "Wed, 17 Jan 2024 21:21:14 +0000", + "dc:creator": "Vivian Yee and Farnaz Fassihi", + "content": "The country has hit targets in Syria, Iraq and Pakistan with missiles this week, signaling to hard-line supporters that it is not passive in the face of threats.", + "contentSnippet": "The country has hit targets in Syria, Iraq and Pakistan with missiles this week, signaling to hard-line supporters that it is not passive in the face of threats.", + "guid": "https://www.nytimes.com/2024/01/17/world/middleeast/iran-missiles-pakistan-iraq.html", + "categories": [ + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pakistan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iraq", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Islamic State in Iraq and Syria (ISIS)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Baluchistan (Pakistan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Syria", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Khamenei, Ali", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T21:21:14.000Z" + }, + { + "creator": "Amelia Nierenberg", + "title": "Thursday Briefing: Iran Raises Military Threats", + "link": "https://www.nytimes.com/2024/01/17/world/asia/iran-pakistan-iraq-china-asia.html", + "pubDate": "Wed, 17 Jan 2024 21:04:39 +0000", + "dc:creator": "Amelia Nierenberg", + "content": "Also, how language affects memory as we age.", + "contentSnippet": "Also, how language affects memory as we age.", + "guid": "https://www.nytimes.com/2024/01/17/world/asia/iran-pakistan-iraq-china-asia.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T21:04:39.000Z" + }, + { + "creator": "Aurelien Breeden", + "title": "France Rejects Genocide Accusations Against Israel in Gaza", + "link": "https://www.nytimes.com/2024/01/17/world/middleeast/france-israel-genocide-gaza.html", + "pubDate": "Wed, 17 Jan 2024 20:28:13 +0000", + "dc:creator": "Aurelien Breeden", + "content": "\u201cTo accuse the Jewish state of genocide is to cross a moral threshold,\u201d France\u2019s foreign minister said on Wednesday.", + "contentSnippet": "\u201cTo accuse the Jewish state of genocide is to cross a moral threshold,\u201d France\u2019s foreign minister said on Wednesday.", + "guid": "https://www.nytimes.com/2024/01/17/world/middleeast/france-israel-genocide-gaza.html", + "categories": [ + { + "_": "Macron, Emmanuel (1977- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sejourne, Stephane", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "International Court of Justice (UN)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "South Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-17T20:28:13.000Z" + }, + { + "creator": "Siobhan Roberts", + "title": "A.I.\u2019s Latest Challenge: the Math Olympics", + "link": "https://www.nytimes.com/2024/01/17/science/ai-computers-mathematics-olympiad.html", + "pubDate": "Wed, 17 Jan 2024 19:49:55 +0000", + "dc:creator": "Siobhan Roberts", + "content": "Watch out, nerdy high schoolers, AlphaGeometry is coming for your mathematical lunch.", + "contentSnippet": "Watch out, nerdy high schoolers, AlphaGeometry is coming for your mathematical lunch.", + "guid": "https://www.nytimes.com/2024/01/17/science/ai-computers-mathematics-olympiad.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mathematics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "DeepMind Technologies Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Tao, Terence (1975- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "California", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T19:49:55.000Z" + }, + { + "creator": "Safak Timur", + "title": "Softer Penalty for Somali Leader\u2019s Son After Fatal Crash Prompts Outrage in Turkey", + "link": "https://www.nytimes.com/2024/01/17/world/europe/somalia-president-son-turkey-crash.html", + "pubDate": "Wed, 17 Jan 2024 18:47:51 +0000", + "dc:creator": "Safak Timur", + "content": "After a crash that killed a motorcycle courier, a son of Somalia\u2019s president faced prison. Now it will be a fine of about $900.", + "contentSnippet": "After a crash that killed a motorcycle courier, a son of Somalia\u2019s president faced prison. Now it will be a fine of about $900.", + "guid": "https://www.nytimes.com/2024/01/17/world/europe/somalia-president-son-turkey-crash.html", + "categories": [ + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Amnesties, Commutations and Pardons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mohamud, Hassan Sheikh", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Somalia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Turkey", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T18:47:51.000Z" + }, + { + "creator": "Mark Landler", + "title": "King Charles to Have \u2018Corrective Procedure\u2019 for Enlarged Prostate Next Week", + "link": "https://www.nytimes.com/2024/01/17/world/europe/king-charles-surgery-prostate.html", + "pubDate": "Wed, 17 Jan 2024 17:42:30 +0000", + "dc:creator": "Mark Landler", + "content": "The announcement from Buckingham Palace came shortly after the news that Catherine, Princess of Wales, had abdominal surgery on Tuesday.", + "contentSnippet": "The announcement from Buckingham Palace came shortly after the news that Catherine, Princess of Wales, had abdominal surgery on Tuesday.", + "guid": "https://www.nytimes.com/2024/01/17/world/europe/king-charles-surgery-prostate.html", + "categories": [ + { + "_": "Prostate Gland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Royal Families", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Charles III, King of the United Kingdom", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T17:42:30.000Z" + }, + { + "creator": "Ali Watkins", + "title": "In Norway, a Proposed Ban on Foreign Adoptions Rattles All Sides of a Heated Debate", + "link": "https://www.nytimes.com/2024/01/17/world/europe/foreign-adoptions-ban-norway-denmark.html", + "pubDate": "Wed, 17 Jan 2024 16:50:39 +0000", + "dc:creator": "Ali Watkins", + "content": "A policy body recommended this week that the country halt all foreign adoptions amid allegations of stolen children, falsified paperwork and for-profit adoption schemes.", + "contentSnippet": "A policy body recommended this week that the country halt all foreign adoptions amid allegations of stolen children, falsified paperwork and for-profit adoption schemes.", + "guid": "https://www.nytimes.com/2024/01/17/world/europe/foreign-adoptions-ban-norway-denmark.html", + "categories": [ + { + "_": "Norway", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Adoptions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T16:50:39.000Z" + }, + { + "creator": "Mohamed Ahmed and Emma Bubola", + "title": "Kenyan Cult Leader Will Face 191 Charges of Child Murder", + "link": "https://www.nytimes.com/2024/01/17/world/africa/kenya-cult-leader-murders-mackenzie.html", + "pubDate": "Wed, 17 Jan 2024 16:23:22 +0000", + "dc:creator": "Mohamed Ahmed and Emma Bubola", + "content": "The authorities say Paul Nthenge Mackenzie told his followers to starve themselves and their children to death in the Shakahola Forest, where hundreds of bodies have been exhumed.", + "contentSnippet": "The authorities say Paul Nthenge Mackenzie told his followers to starve themselves and their children to death in the Shakahola Forest, where hundreds of bodies have been exhumed.", + "guid": "https://www.nytimes.com/2024/01/17/world/africa/kenya-cult-leader-murders-mackenzie.html", + "categories": [ + { + "_": "Evangelical Movement", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Religious Cults", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Doomsday", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mackenzie, Paul Nthenge", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kenya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Malindi (Kenya)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T16:23:22.000Z" + }, + { + "creator": "Delger Erdenesanaa", + "title": "Greenland\u2019s Ice Sheet May Be Losing 20% More Ice Than Previously Measured", + "link": "https://www.nytimes.com/2024/01/17/climate/greenland-ice-sheet-melting.html", + "pubDate": "Wed, 17 Jan 2024 16:22:03 +0000", + "dc:creator": "Delger Erdenesanaa", + "content": "The island is shedding 20 percent more than previously estimated, a study found, potentially threatening ocean currents that help to regulate global temperatures.", + "contentSnippet": "The island is shedding 20 percent more than previously estimated, a study found, potentially threatening ocean currents that help to regulate global temperatures.", + "guid": "https://www.nytimes.com/2024/01/17/climate/greenland-ice-sheet-melting.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Glaciers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nature (Journal)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Oceans and Seas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greene, Chad", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-17T16:22:03.000Z" + }, + { + "creator": "Salman Masood", + "title": "After Iran Strikes, Pakistan Weighs Options for Response", + "link": "https://www.nytimes.com/2024/01/17/world/asia/iran-pakistan-strike.html", + "pubDate": "Wed, 17 Jan 2024 14:05:26 +0000", + "dc:creator": "Salman Masood", + "content": "Retaliation could risk drawing the country, which is already mired in political and economic crises, into Middle East upheaval that it has so far avoided.", + "contentSnippet": "Retaliation could risk drawing the country, which is already mired in political and economic crises, into Middle East upheaval that it has so far avoided.", + "guid": "https://www.nytimes.com/2024/01/17/world/asia/iran-pakistan-strike.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pakistan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T14:05:26.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Polish Truckers Lift Border Blockade With Ukraine", + "link": "https://www.nytimes.com/2024/01/17/world/europe/ukraine-poland-truckers-blockade.html", + "pubDate": "Wed, 17 Jan 2024 11:49:57 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "The suspension of the protest until March, while its leaders talk with the Polish government, promises some relief for Ukraine\u2019s flagging economy.", + "contentSnippet": "The suspension of the protest until March, while its leaders talk with the Polish government, promises some relief for Ukraine\u2019s flagging economy.", + "guid": "https://www.nytimes.com/2024/01/17/world/europe/ukraine-poland-truckers-blockade.html", + "categories": [ + { + "_": "Trucks and Trucking", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kyiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Poland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T11:49:57.000Z" + }, + { + "creator": "Ceylan Yeginsu", + "title": "3-Year Cruise Passengers Seek Fraud Charges Over Cancellation", + "link": "https://www.nytimes.com/2024/01/17/travel/criminal-complaint-three-year-cruise.html", + "pubDate": "Wed, 17 Jan 2024 11:36:55 +0000", + "dc:creator": "Ceylan Yeginsu", + "content": "After more than a month of missed deadlines for refunds, a group of hard-hit passengers who signed up for the failed Life at Sea cruise are pursuing legal intervention.", + "contentSnippet": "After more than a month of missed deadlines for refunds, a group of hard-hit passengers who signed up for the failed Life at Sea cruise are pursuing legal intervention.", + "guid": "https://www.nytimes.com/2024/01/17/travel/criminal-complaint-three-year-cruise.html", + "categories": [ + { + "_": "Travel and Vacations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cruises", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Life at Sea Cruise", + "$": { + "domain": "" + } + }, + { + "_": "Miray International Cruises & Management", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-17T11:36:55.000Z" + }, + { + "creator": "Alissa J. Rubin", + "title": "Iranian Strikes in Iraq and Pakistan Inflame Regional Tensions", + "link": "https://www.nytimes.com/2024/01/16/world/middleeast/iraq-us-europe-iran-attack-kurdistan.html", + "pubDate": "Wed, 17 Jan 2024 10:44:04 +0000", + "dc:creator": "Alissa J. Rubin", + "content": "Iran says its missile strikes were aimed at militant groups behind attacks on its territory, but Pakistan and Iraq rejected that explanation.", + "contentSnippet": "Iran says its missile strikes were aimed at militant groups behind attacks on its territory, but Pakistan and Iraq rejected that explanation.", + "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/iraq-us-europe-iran-attack-kurdistan.html", + "categories": [ + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kurds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Islamic Revolutionary Guards Corps", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Islamic State in Iraq and Syria (ISIS)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Erbil (Iraq)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iraq", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pakistan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T10:44:04.000Z" + }, + { + "creator": "Emma Bubola", + "title": "New Zealand Lawmaker Golriz Ghahraman Resigns After Shoplifting Allegations", + "link": "https://www.nytimes.com/2024/01/16/world/asia/new-zealand-lawmaker-shoplifting-golriz-ghahraman.html", + "pubDate": "Wed, 17 Jan 2024 10:30:45 +0000", + "dc:creator": "Emma Bubola", + "content": "Golriz Ghahraman was the first refugee to be sworn in as a member of the country\u2019s Parliament. She did not directly address the accusations but said her behavior \u201cfell short.\u201d", + "contentSnippet": "Golriz Ghahraman was the first refugee to be sworn in as a member of the country\u2019s Parliament. She did not directly address the accusations but said her behavior \u201cfell short.\u201d", + "guid": "https://www.nytimes.com/2024/01/16/world/asia/new-zealand-lawmaker-shoplifting-golriz-ghahraman.html", + "categories": [ + { + "_": "New Zealand", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shoplifting and Employee Theft (Retail)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Legislatures and Parliaments", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ghahraman, Golriz", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-17T10:30:45.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Wednesday Briefing", + "link": "https://www.nytimes.com/2024/01/17/briefing/yemen-attacks-trump-zelensky-davos.html", + "pubDate": "Wed, 17 Jan 2024 05:05:58 +0000", + "dc:creator": "Natasha Frost", + "content": "U.S. attacks in Yemen.", + "contentSnippet": "U.S. attacks in Yemen.", + "guid": "https://www.nytimes.com/2024/01/17/briefing/yemen-attacks-trump-zelensky-davos.html", + "isoDate": "2024-01-17T05:05:58.000Z" + }, + { + "creator": "Eric Schmitt and Saeed Al-Batati", + "title": "U.S. Strikes Houthi Targets in Yemen for a Third Time", + "link": "https://www.nytimes.com/2024/01/16/world/middleeast/us-strikes-houthis-yemen.html", + "pubDate": "Wed, 17 Jan 2024 04:37:12 +0000", + "dc:creator": "Eric Schmitt and Saeed Al-Batati", + "content": "The American strikes destroyed four missiles that posed a threat to ships in the Red Sea, the Pentagon said. They came on the third day in a row the Houthis have defiantly fired at passing ships.", + "contentSnippet": "The American strikes destroyed four missiles that posed a threat to ships in the Red Sea, the Pentagon said. They came on the third day in a row the Houthis have defiantly fired at passing ships.", + "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/us-strikes-houthis-yemen.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ships and Shipping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Yemen", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Red Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T04:37:12.000Z" + }, + { + "creator": "Carol Rosenberg", + "title": "Malaysian Prisoners Plead Guilty to Conspiring in 2002 Bali Bombing", + "link": "https://www.nytimes.com/2024/01/16/us/politics/bali-bombing-case.html", + "pubDate": "Wed, 17 Jan 2024 02:31:08 +0000", + "dc:creator": "Carol Rosenberg", + "content": "The men, who have been held by the United States for two decades as lieutenants to a Southeast Asian terrorist, entered pleas at Guant\u00e1namo Bay.", + "contentSnippet": "The men, who have been held by the United States for two decades as lieutenants to a Southeast Asian terrorist, entered pleas at Guant\u00e1namo Bay.", + "guid": "https://www.nytimes.com/2024/01/16/us/politics/bali-bombing-case.html", + "categories": [ + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "September 11 (2001)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Detainees", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Torture", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Military Tribunals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Al Qaeda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Central Intelligence Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Jemaah Islamiyah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "bin Laden, Osama", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bali (Indonesia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Guantanamo Bay Naval Base (Cuba)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Jakarta (Indonesia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T02:31:08.000Z" + }, + { + "creator": "Catie Edmondson", + "title": "Senate Advances Stopgap Bill to Avert a Partial Shutdown", + "link": "https://www.nytimes.com/2024/01/16/world/europe/senate-government-shutdown-bill.html", + "pubDate": "Wed, 17 Jan 2024 02:15:21 +0000", + "dc:creator": "Catie Edmondson", + "content": "The lopsided vote reflected broad backing for the measure in the Senate. It faces a more fraught reception in the House, where hard-right Republicans are opposed.", + "contentSnippet": "The lopsided vote reflected broad backing for the measure in the Senate. It faces a more fraught reception in the House, where hard-right Republicans are opposed.", + "guid": "https://www.nytimes.com/2024/01/16/world/europe/senate-government-shutdown-bill.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shutdowns (Institutional)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Federal Budget (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "House Freedom Caucus", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Johnson, Mike (1972- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Schumer, Charles E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-17T02:15:21.000Z" + }, + { + "creator": "Roger Cohen", + "title": "Macron Vows to Break France\u2019s Taboos and Fight the Far Right", + "link": "https://www.nytimes.com/2024/01/16/world/europe/macron-france-taboos.html", + "pubDate": "Wed, 17 Jan 2024 01:26:54 +0000", + "dc:creator": "Roger Cohen", + "content": "The president also said during a televised appearance he would fight to the last to prevent the far-right leader Marine Le Pen from succeeding him.", + "contentSnippet": "The president also said during a televised appearance he would fight to the last to prevent the far-right leader Marine Le Pen from succeeding him.", + "guid": "https://www.nytimes.com/2024/01/16/world/europe/macron-france-taboos.html", + "categories": [ + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Macron, Emmanuel (1977- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Le Pen, Marine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-17T01:26:54.000Z" + }, + { + "creator": "Karoun Demirjian", + "title": "Senate Rejects Israel Human Rights Measure, but Skepticism on Aid Persists", + "link": "https://www.nytimes.com/2024/01/16/us/politics/senate-israel-aid.html", + "pubDate": "Wed, 17 Jan 2024 01:19:22 +0000", + "dc:creator": "Karoun Demirjian", + "content": "Senators voted to kill a resolution that would have ordered the administration to assess whether Israel has violated human rights. But the debate highlighted Democratic resistance to providing unfettered aid.", + "contentSnippet": "Senators voted to kill a resolution that would have ordered the administration to assess whether Israel has violated human rights. But the debate highlighted Democratic resistance to providing unfettered aid.", + "guid": "https://www.nytimes.com/2024/01/16/us/politics/senate-israel-aid.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Human Rights and Human Rights Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Democratic Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Sanders, Bernard", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T01:19:22.000Z" + }, + { + "creator": "Aaron Boxerman and Adam Rasgon", + "title": "Hamas Rocket Barrage Stirs Debate in Israel Over Direction of War", + "link": "https://www.nytimes.com/2024/01/16/world/middleeast/hamas-rocket-barrage-israel-war.html", + "pubDate": "Wed, 17 Jan 2024 01:00:13 +0000", + "dc:creator": "Aaron Boxerman and Adam Rasgon", + "content": "Right-wing lawmakers said the attack on Tuesday showed the folly of withdrawing some troops from the Gaza Strip, while Israel\u2019s government faces international pressure to scale back further.", + "contentSnippet": "Right-wing lawmakers said the attack on Tuesday showed the folly of withdrawing some troops from the Gaza Strip, while Israel\u2019s government faces international pressure to scale back further.", + "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/hamas-rocket-barrage-israel-war.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ben-Gvir, Itamar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gallant, Yoav", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ziv, Israel (1957- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-17T01:00:13.000Z" + }, + { + "creator": "Cassandra Vinograd", + "title": "2 Planes Collide at Japan Airport Amid Heavy Snow, Weeks After Tokyo Episode", + "link": "https://www.nytimes.com/2024/01/16/world/asia/japan-hokkaido-planes.html", + "pubDate": "Tue, 16 Jan 2024 23:02:05 +0000", + "dc:creator": "Cassandra Vinograd", + "content": "Nobody was injured in the episode on Tuesday, which took place on the country\u2019s northern island of Hokkaido amid heavy snow.", + "contentSnippet": "Nobody was injured in the episode on Tuesday, which took place on the country\u2019s northern island of Hokkaido amid heavy snow.", + "guid": "https://www.nytimes.com/2024/01/16/world/asia/japan-hokkaido-planes.html", + "categories": [ + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Aviation Accidents, Safety and Disasters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Snow and Snowstorms", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hokkaido (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Tokyo (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Cathay Pacific Airways Limited", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-16T23:02:05.000Z" + }, + { + "creator": "Amelia Nierenberg", + "title": "Wednesday Briefing: Trump\u2019s Momentum After Iowa", + "link": "https://www.nytimes.com/2024/01/16/world/asia/iowa-trump-hamas-korea-asia.html", + "pubDate": "Tue, 16 Jan 2024 22:51:52 +0000", + "dc:creator": "Amelia Nierenberg", + "content": "Also, the afterlife of a Japanese marvel.", + "contentSnippet": "Also, the afterlife of a Japanese marvel.", + "guid": "https://www.nytimes.com/2024/01/16/world/asia/iowa-trump-hamas-korea-asia.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-16T22:51:52.000Z" + }, + { + "creator": "Eric Schmitt", + "title": "2 Missing Navy SEALs Were Stopping Weapons Going to Yemen From Iran", + "link": "https://www.nytimes.com/2024/01/16/world/middleeast/navy-seals-houthis-iran.html", + "pubDate": "Tue, 16 Jan 2024 19:29:56 +0000", + "dc:creator": "Eric Schmitt", + "content": "The seized items, including missile guidance systems and warheads, were for the Iran-backed Houthi militia, which has been targeting ships in the Red Sea, the Pentagon said.", + "contentSnippet": "The seized items, including missile guidance systems and warheads, were for the Iran-backed Houthi militia, which has been targeting ships in the Red Sea, the Pentagon said.", + "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/navy-seals-houthis-iran.html", + "categories": [ + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Navy Seals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States Navy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Red Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Yemen", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Somalia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-16T19:29:56.000Z" + }, + { + "creator": "Victor Mather", + "title": "Was Bobi Really the World\u2019s Oldest Dog? His Guinness Record Is in Doubt.", + "link": "https://www.nytimes.com/2024/01/16/world/europe/worlds-oldest-dog-bobi.html", + "pubDate": "Tue, 16 Jan 2024 19:15:45 +0000", + "dc:creator": "Victor Mather", + "content": "His owner\u2019s claim that Bobi, a Rafeiro do Alentejo from Portugal, was more than 31 drew skepticism. His title is on hold pending an investigation.", + "contentSnippet": "His owner\u2019s claim that Bobi, a Rafeiro do Alentejo from Portugal, was more than 31 drew skepticism. His title is on hold pending an investigation.", + "guid": "https://www.nytimes.com/2024/01/16/world/europe/worlds-oldest-dog-bobi.html", + "categories": [ + { + "_": "Dogs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Records and Achievements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Guinness World Records", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Portugal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Guinness World Records (Book)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Longevity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-16T19:15:45.000Z" + }, + { + "creator": "Richard Sandomir", + "title": "Zvi Zamir, Israeli Spy Chief in a Critical Period, Dies at 98", + "link": "https://www.nytimes.com/2024/01/16/world/middleeast/zvi-zamir-dead.html", + "pubDate": "Tue, 16 Jan 2024 18:15:08 +0000", + "dc:creator": "Richard Sandomir", + "content": "He led the Mossad\u2019s response to the massacre of 11 Israelis at the 1972 Olympics. A year later, he learned that Egypt and Syria were about to attack Israel.", + "contentSnippet": "He led the Mossad\u2019s response to the massacre of 11 Israelis at the 1972 Olympics. A year later, he learned that Egypt and Syria were about to attack Israel.", + "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/zvi-zamir-dead.html", + "categories": [ + { + "_": "Zamir, Zvi (1925-2024)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Olympic Games (1972)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arab-Israeli War (1973)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mossad", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Black September Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Munich (Germany)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Munich (Movie)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-16T18:15:08.000Z" + }, + { + "creator": "Andrew E. Kramer, Jim Tankersley and Jordyn Holman", + "title": "Zelensky Calls for Peace, Not More Weapons, in Davos", + "link": "https://www.nytimes.com/2024/01/16/world/europe/ukraine-zelensky-davos-switzerland-peace.html", + "pubDate": "Tue, 16 Jan 2024 17:40:53 +0000", + "dc:creator": "Andrew E. Kramer, Jim Tankersley and Jordyn Holman", + "content": "In a speech in Switzerland, the Ukrainian president asked for more sanctions on Moscow, but he did not appeal for weaponry for new offenses.", + "contentSnippet": "In a speech in Switzerland, the Ukrainian president asked for more sanctions on Moscow, but he did not appeal for weaponry for new offenses.", + "guid": "https://www.nytimes.com/2024/01/16/world/europe/ukraine-zelensky-davos-switzerland-peace.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Peace Process", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World Economic Forum", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Switzerland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-16T17:40:53.000Z" + }, + { + "creator": "Megan Specia", + "title": "Three Myths Around the U.K.\u2019s Rwanda Plan for Asylum Seekers", + "link": "https://www.nytimes.com/2024/01/16/world/europe/uk-rwanda-asylum.html", + "pubDate": "Tue, 16 Jan 2024 17:10:08 +0000", + "dc:creator": "Megan Specia", + "content": "The British government\u2019s plan to send asylum seekers to Africa is back in Parliament this week. Here\u2019s a guide to some of the difficult realities behind the issue.", + "contentSnippet": "The British government\u2019s plan to send asylum seekers to Africa is back in Parliament this week. Here\u2019s a guide to some of the difficult realities behind the issue.", + "guid": "https://www.nytimes.com/2024/01/16/world/europe/uk-rwanda-asylum.html", + "categories": [ + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asylum, Right of", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-16T17:10:08.000Z" + }, + { + "creator": "Nadav Gavrielov", + "title": "Israeli Teenager Recounts Her Time as a Hostage in Gaza", + "link": "https://www.nytimes.com/2024/01/16/world/middleeast/israel-hostage-hamas-gaza.html", + "pubDate": "Tue, 16 Jan 2024 15:30:29 +0000", + "dc:creator": "Nadav Gavrielov", + "content": "Hila Rotem Shoshani, 13, is the youngest of the hostages freed from Gaza to speak out about the harsh conditions in which they were held.", + "contentSnippet": "Hila Rotem Shoshani, 13, is the youngest of the hostages freed from Gaza to speak out about the harsh conditions in which they were held.", + "guid": "https://www.nytimes.com/2024/01/16/world/middleeast/israel-hostage-hamas-gaza.html", + "categories": [ + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-16T15:30:29.000Z" + }, + { + "creator": "Adam Goldman, Ronen Bergman, Patrick Kingsley and Gal Koplewitz", + "title": "Israel Unearths More of a Subterranean Fortress Under Gaza", + "link": "https://www.nytimes.com/2024/01/16/us/politics/israel-gaza-tunnels.html", + "pubDate": "Tue, 16 Jan 2024 15:00:20 +0000", + "dc:creator": "Adam Goldman, Ronen Bergman, Patrick Kingsley and Gal Koplewitz", + "content": "The Israeli military has been surprised by the extent, depth and quality of the tunnel network beneath Gaza.", + "contentSnippet": "The Israeli military has been surprised by the extent, depth and quality of the tunnel network beneath Gaza.", + "guid": "https://www.nytimes.com/2024/01/16/us/politics/israel-gaza-tunnels.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bridges and Tunnels", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-16T15:00:20.000Z" + }, + { + "creator": "Showkat Nanda and Sameer Yasir", + "title": "Winter Without Snow Is Devastating Indian Kashmir\u2019s Ski Tourism", + "link": "https://www.nytimes.com/2024/01/16/world/asia/no-snow-gulmarg-india.html", + "pubDate": "Tue, 16 Jan 2024 14:43:57 +0000", + "dc:creator": "Showkat Nanda and Sameer Yasir", + "content": "A dry winter has been devastating to Gulmarg, one of Asia\u2019s highest ski resorts, in Indian-controlled Kashmir.", + "contentSnippet": "A dry winter has been devastating to Gulmarg, one of Asia\u2019s highest ski resorts, in Indian-controlled Kashmir.", + "guid": "https://www.nytimes.com/2024/01/16/world/asia/no-snow-gulmarg-india.html", + "categories": [ + { + "_": "Travel and Vacations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Snow and Snowstorms", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Winter (Season)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Skiing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Weather", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gulmarg (Jammu and Kashmir)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-16T14:43:57.000Z" + }, + { + "creator": "Megan Specia", + "title": "UK Moves to Ban the Islamist Group Hizb ut-Tahrir", + "link": "https://www.nytimes.com/2024/01/15/world/middleeast/uk-ban-hizb-ut-tahrir-terror.html", + "pubDate": "Tue, 16 Jan 2024 13:42:27 +0000", + "dc:creator": "Megan Specia", + "content": "The government said it would designate the international Islamist political group a terrorist organization, citing what it said was Hizb ut-Tahrir\u2019s praise for the Oct. 7 attack on Israel.", + "contentSnippet": "The government said it would designate the international Islamist political group a terrorist organization, citing what it said was Hizb ut-Tahrir\u2019s praise for the Oct. 7 attack on Israel.", + "guid": "https://www.nytimes.com/2024/01/15/world/middleeast/uk-ban-hizb-ut-tahrir-terror.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hizb ut-Tahrir", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cameron, David", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Blair, Tony", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Cleverly, James", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Tugendhat, Tom", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-16T13:42:27.000Z" + }, + { + "creator": "Alissa J. Rubin", + "title": "Iran Hits Iraq and Syria With Missiles, Citing Terrorist Attack", + "link": "https://www.nytimes.com/2024/01/15/world/middleeast/iran-iraq-syria-attack.html", + "pubDate": "Tue, 16 Jan 2024 13:31:49 +0000", + "dc:creator": "Alissa J. Rubin", + "content": "Explosions shook Erbil, a city in northern Iraq, and at least four civilians were killed, local officials said. Syrian targets were also hit, Iran\u2019s Revolutionary Guards said.", + "contentSnippet": "Explosions shook Erbil, a city in northern Iraq, and at least four civilians were killed, local officials said. Syrian targets were also hit, Iran\u2019s Revolutionary Guards said.", + "guid": "https://www.nytimes.com/2024/01/15/world/middleeast/iran-iraq-syria-attack.html", + "categories": [ + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Islamic Revolutionary Guards Corps", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Erbil (Iraq)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iraq", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Syria", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kurdistan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Islamic State in Iraq and Syria (ISIS)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-16T13:31:49.000Z" + }, + { + "creator": "Choe Sang-Hun", + "title": "\u200bNorth Korea Says It No Longer Wants to Reunify With South Korea", + "link": "https://www.nytimes.com/2024/01/16/world/asia/north-korea-reunification-policy.html", + "pubDate": "Tue, 16 Jan 2024 09:23:16 +0000", + "dc:creator": "Choe Sang-Hun", + "content": "Abandoning the longtime goal, however unlikely, Kim Jong-un, the North\u2019s leader, instead threatened to subjugate South Korea in war.", + "contentSnippet": "Abandoning the longtime goal, however unlikely, Kim Jong-un, the North\u2019s leader, instead threatened to subjugate South Korea in war.", + "guid": "https://www.nytimes.com/2024/01/16/world/asia/north-korea-reunification-policy.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Korean War", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kim Jong-un", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "North Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Yoon Suk-yeol", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-16T09:23:16.000Z" + }, + { + "creator": "Matthew Mpoke Bigg, Vivek Shankar and Thomas Fuller", + "title": "Houthis Attack More Ships in Red Sea After U.S.-Led Strikes in Yemen", + "link": "https://www.nytimes.com/2024/01/15/world/middleeast/houthis-ships-red-sea.html", + "pubDate": "Tue, 16 Jan 2024 05:27:54 +0000", + "dc:creator": "Matthew Mpoke Bigg, Vivek Shankar and Thomas Fuller", + "content": "The Iranian-backed militants launched a fresh round of attacks days after their military sites were hit by U.S. and British forces.", + "contentSnippet": "The Iranian-backed militants launched a fresh round of attacks days after their military sites were hit by U.S. and British forces.", + "guid": "https://www.nytimes.com/2024/01/15/world/middleeast/houthis-ships-red-sea.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Yemen", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ships and Shipping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Red Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Suez Canal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freight (Cargo)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sunak, Rishi (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gallant, Yoav", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-16T05:27:54.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Tuesday Briefing", + "link": "https://www.nytimes.com/2024/01/16/briefing/houthis-attacks-trump-emmys.html", + "pubDate": "Tue, 16 Jan 2024 05:16:37 +0000", + "dc:creator": "Natasha Frost", + "content": "A Houthi attack on a U.S.-owned ship.", + "contentSnippet": "A Houthi attack on a U.S.-owned ship.", + "guid": "https://www.nytimes.com/2024/01/16/briefing/houthis-attacks-trump-emmys.html", + "isoDate": "2024-01-16T05:16:37.000Z" + }, + { + "creator": "Amelia Nierenberg", + "title": "Tuesday Briefing: Houthis Attack a U.S. Ship", + "link": "https://www.nytimes.com/2024/01/15/world/asia/houthis-missiles-us-ship-taiwan-asia.html", + "pubDate": "Mon, 15 Jan 2024 20:52:49 +0000", + "dc:creator": "Amelia Nierenberg", + "content": "Also, the Iowa caucuses and Indigenous tourism.", + "contentSnippet": "Also, the Iowa caucuses and Indigenous tourism.", + "guid": "https://www.nytimes.com/2024/01/15/world/asia/houthis-missiles-us-ship-taiwan-asia.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-15T20:52:49.000Z" + }, + { + "creator": "Stanley Reed", + "title": "Britain\u2019s Largest Steel Mill to Become Greener, at a Cost of Jobs", + "link": "https://www.nytimes.com/2024/01/19/business/tata-steel-britain-job-cuts.html", + "pubDate": "Fri, 19 Jan 2024 15:25:21 +0000", + "dc:creator": "Stanley Reed", + "content": "Tata Steel said it would replace blast furnaces with an electric furnace, a move that will cut emissions but also as many as 2,800 jobs.", + "contentSnippet": "Tata Steel said it would replace blast furnaces with an electric furnace, a move that will cut emissions but also as many as 2,800 jobs.", + "guid": "https://www.nytimes.com/2024/01/19/business/tata-steel-britain-job-cuts.html", + "categories": [ + { + "_": "Steel and Iron", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Labor and Jobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Port Talbot Steelworks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Tata Steel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Wales", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T15:25:21.000Z" + }, + { + "creator": "The New York Times", + "title": "Widening Mideast Crisis: Frustration Grows in Israel Over Fate of Gaza Hostages", + "link": "https://www.nytimes.com/live/2024/01/19/world/israel-hamas-news", + "pubDate": "Fri, 19 Jan 2024 15:18:02 +0000", + "dc:creator": "The New York Times", + "content": "Protesters in Tel Aviv demanded urgent action to free hostages, after a war cabinet minister said Israel should seek a longer cease-fire with Hamas to allow the captives to be released.", + "contentSnippet": "Protesters in Tel Aviv demanded urgent action to free hostages, after a war cabinet minister said Israel should seek a longer cease-fire with Hamas to allow the captives to be released.", + "guid": "https://www.nytimes.com/live/2024/01/19/world/israel-hamas-news", + "isoDate": "2024-01-19T15:18:02.000Z" + }, + { + "creator": "Aaron Boxerman", + "title": "Netanyahu Rebuffs U.S. Calls to Start Working Toward Palestinian Statehood", + "link": "https://www.nytimes.com/2024/01/18/world/middleeast/netanyahu-palestinian-state-israel-gaza-war.html", + "pubDate": "Fri, 19 Jan 2024 15:12:29 +0000", + "dc:creator": "Aaron Boxerman", + "content": "The Biden administration and the Israeli government diverge sharply over how Gaza should be governed when the war ends.", + "contentSnippet": "The Biden administration and the Israeli government diverge sharply over how Gaza should be governed when the war ends.", + "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/netanyahu-palestinian-state-israel-gaza-war.html", + "categories": [ + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "West Bank", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinian Authority", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-19T15:12:29.000Z" + }, + { + "creator": "Isabella Kwai", + "title": "London\u2019s Highgate Cemetery Is Nearly Full. Can It Reuse Old Graves?", + "link": "https://www.nytimes.com/2024/01/19/world/europe/highgate-cemetery-karl-marx.html", + "pubDate": "Fri, 19 Jan 2024 15:11:27 +0000", + "dc:creator": "Isabella Kwai", + "content": "To lie in the vicinity of Karl Marx is competitive, with graves running upward of $31,000. The cemetery is trying to add more space.", + "contentSnippet": "To lie in the vicinity of Karl Marx is competitive, with graves running upward of $31,000. The cemetery is trying to add more space.", + "guid": "https://www.nytimes.com/2024/01/19/world/europe/highgate-cemetery-karl-marx.html", + "categories": [ + { + "_": "Cemeteries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Historic Buildings and Sites", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Highgate Cemetery (London, England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "England", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T15:11:27.000Z" + }, + { + "creator": "Declan Walsh", + "title": "Fresh From Battles Won With U.A.E. Arms, Sudanese General Takes Victory Lap", + "link": "https://www.nytimes.com/2024/01/19/world/africa/mohamed-hamdan-sudan-emirates.html", + "pubDate": "Fri, 19 Jan 2024 14:54:14 +0000", + "dc:creator": "Declan Walsh", + "content": "Lt. Gen. Mohamed Hamdan was greeted by African leaders as if he had already won Sudan\u2019s civil war. His forces have secretly been armed by the United Arab Emirates, an as-yet unpublished U.N. report found.", + "contentSnippet": "Lt. Gen. Mohamed Hamdan was greeted by African leaders as if he had already won Sudan\u2019s civil war. His forces have secretly been armed by the United Arab Emirates, an as-yet unpublished U.N. report found.", + "guid": "https://www.nytimes.com/2024/01/19/world/africa/mohamed-hamdan-sudan-emirates.html", + "categories": [ + { + "_": "Sudan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamdan, Mohamed (Hemeti)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United Arab Emirates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Rapid Support Forces (Sudan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Darfur (Sudan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "al-Burhan, Abdel Fattah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Harris, Kamala D", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "International Federation of Red Cross and Red Crescent Societies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Perriello, Tom", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-19T14:54:14.000Z" + }, + { + "creator": "Carol Rosenberg", + "title": "Families to Testify at Guant\u00e1namo Bay About Loved Ones Lost to Terror", + "link": "https://www.nytimes.com/2024/01/19/us/politics/guantanamo-bay-bali-bombing.html", + "pubDate": "Fri, 19 Jan 2024 14:50:01 +0000", + "dc:creator": "Carol Rosenberg", + "content": "Relatives of victims of the 2002 attack are expected to describe their loss to a U.S. military jury sentencing two Malaysian prisoners.", + "contentSnippet": "Relatives of victims of the 2002 attack are expected to describe their loss to a U.S. military jury sentencing two Malaysian prisoners.", + "guid": "https://www.nytimes.com/2024/01/19/us/politics/guantanamo-bay-bali-bombing.html", + "categories": [ + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "September 11 (2001)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Al Qaeda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Jemaah Islamiyah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bali (Indonesia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T14:50:01.000Z" + }, + { + "creator": "Cassandra Vinograd", + "title": "Why Iran Is the Common Link in Conflicts From Gaza to Pakistan", + "link": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-conflict-gaza-pakistan-hezbollah.html", + "pubDate": "Fri, 19 Jan 2024 14:33:12 +0000", + "dc:creator": "Cassandra Vinograd", + "content": "Iran\u2019s long history of building up proxy forces that fight its enemies around the region, as well as its conflicts with separatist and terrorist groups, have played into a spate of recent conflicts.", + "contentSnippet": "Iran\u2019s long history of building up proxy forces that fight its enemies around the region, as well as its conflicts with separatist and terrorist groups, have played into a spate of recent conflicts.", + "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-conflict-gaza-pakistan-hezbollah.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iraq", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Lebanon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pakistan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Yemen", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Red Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Jundallah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T14:33:12.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Ukraine Targets Russian Oil Plants, Aiming to Disrupt Military Operations", + "link": "https://www.nytimes.com/2024/01/19/world/europe/ukraine-russia-oil-drone-attack.html", + "pubDate": "Fri, 19 Jan 2024 14:18:48 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "Kyiv hit an oil depot on Friday, the latest in recent attacks on such facilities as it seeks to inflict damage away from the largely deadlocked front line.", + "contentSnippet": "Kyiv hit an oil depot on Friday, the latest in recent attacks on such facilities as it seeks to inflict damage away from the largely deadlocked front line.", + "guid": "https://www.nytimes.com/2024/01/19/world/europe/ukraine-russia-oil-drone-attack.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bryansk (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Krasnodar (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "St Petersburg (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T14:18:48.000Z" + }, + { + "creator": "Safak Timur", + "title": "Israeli Soccer Player in Turkey Dismissed Over Gaza War Post", + "link": "https://www.nytimes.com/2024/01/19/world/middleeast/israel-soccer-turkey-gaza-eden-karzev.html", + "pubDate": "Fri, 19 Jan 2024 14:14:59 +0000", + "dc:creator": "Safak Timur", + "content": "The suspension of Eden Karzev comes after another Israeli player in Turkey was sent back for displaying a pro-Israel message after scoring in a match this week.", + "contentSnippet": "The suspension of Eden Karzev comes after another Israeli player in Turkey was sent back for displaying a pro-Israel message after scoring in a match this week.", + "guid": "https://www.nytimes.com/2024/01/19/world/middleeast/israel-soccer-turkey-gaza-eden-karzev.html", + "categories": [ + { + "_": "Turkey", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Soccer", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Athletics and Sports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-19T14:14:59.000Z" + }, + { + "creator": "Sui-Lee Wee", + "title": "Thailand Doles Out Longest-Ever Sentence for Criticizing Royalty", + "link": "https://www.nytimes.com/2024/01/19/world/asia/thailand-sentence-royalty-defamation.html", + "pubDate": "Fri, 19 Jan 2024 12:08:09 +0000", + "dc:creator": "Sui-Lee Wee", + "content": "An activist received 50 years in prison for sharing TV and film content on social media that violated the country\u2019s law against defaming its monarchy.", + "contentSnippet": "An activist received 50 years in prison for sharing TV and film content on social media that violated the country\u2019s law against defaming its monarchy.", + "guid": "https://www.nytimes.com/2024/01/19/world/asia/thailand-sentence-royalty-defamation.html", + "categories": [ + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Human Rights and Human Rights Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Lawyers for Human Rights", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Thailand", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T12:08:09.000Z" + }, + { + "creator": "Amanda Taub", + "title": "What Might Happen Next in the Genocide Case Against Israel", + "link": "https://www.nytimes.com/2024/01/19/world/europe/israel-south-africa-genocide-icj.html", + "pubDate": "Fri, 19 Jan 2024 12:01:18 +0000", + "dc:creator": "Amanda Taub", + "content": "Exploring the role of the International Court of Justice in human rights.", + "contentSnippet": "Exploring the role of the International Court of Justice in human rights.", + "guid": "https://www.nytimes.com/2024/01/19/world/europe/israel-south-africa-genocide-icj.html", + "categories": [ + { + "_": "internal-sub-only-nl", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Human Rights and Human Rights Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Treaties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Courts and the Judiciary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Court of Justice (UN)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "South Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T12:01:18.000Z" + }, + { + "creator": "Motoko Rich", + "title": "Japanese Talk Show Host Blazed Trails for Her Gender, and Now, for Her Longevity", + "link": "https://www.nytimes.com/2024/01/19/world/asia/tetsuko-kuroyanagi-japan-television.html", + "pubDate": "Fri, 19 Jan 2024 10:01:40 +0000", + "dc:creator": "Motoko Rich", + "content": "Tetsuko Kuroyanagi has been one of Japan\u2019s best-known entertainers for seven decades. At 90, she\u2019s still going strong.", + "contentSnippet": "Tetsuko Kuroyanagi has been one of Japan\u2019s best-known entertainers for seven decades. At 90, she\u2019s still going strong.", + "guid": "https://www.nytimes.com/2024/01/19/world/asia/tetsuko-kuroyanagi-japan-television.html", + "categories": [ + { + "_": "Tokyo (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Women and Girls", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Age, Chronological", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Television", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Tetsuko Kuroyanagi", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-19T10:01:40.000Z" + }, + { + "creator": "Apoorva Mandavilli and Esther Ruth Mbabazi", + "title": "With Harsh Anti-L.G.B.T.Q. Law, Uganda Risks a Health Crisis", + "link": "https://www.nytimes.com/2024/01/19/health/uganda-lgbtq-hiv.html", + "pubDate": "Fri, 19 Jan 2024 10:01:13 +0000", + "dc:creator": "Apoorva Mandavilli and Esther Ruth Mbabazi", + "content": "The country had made great progress against H.I.V. Now terrified patients have fled clinics, and experts fear a resurgence.", + "contentSnippet": "The country had made great progress against H.I.V. Now terrified patients have fled clinics, and experts fear a resurgence.", + "guid": "https://www.nytimes.com/2024/01/19/health/uganda-lgbtq-hiv.html", + "categories": [ + { + "_": "Discrimination", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Acquired Immune Deficiency Syndrome", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Homosexuality and Bisexuality", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Human Rights and Human Rights Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hate Crimes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sexually Transmitted Diseases", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Transgender", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Evictions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bribery and Kickbacks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Africa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Uganda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T10:01:13.000Z" + }, + { + "creator": "Christina Goldbaum and Salman Masood", + "title": "In No Position to Fight a War, Pakistan Seeks an Off-Ramp With Iran", + "link": "https://www.nytimes.com/2024/01/19/world/asia/pakistan-iran.html", + "pubDate": "Fri, 19 Jan 2024 09:56:31 +0000", + "dc:creator": "Christina Goldbaum and Salman Masood", + "content": "For two years, Pakistan has struggled with economic and political crises, an increase in militant attacks and souring relations with another neighbor, Afghanistan.", + "contentSnippet": "For two years, Pakistan has struggled with economic and political crises, an increase in militant attacks and souring relations with another neighbor, Afghanistan.", + "guid": "https://www.nytimes.com/2024/01/19/world/asia/pakistan-iran.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pakistan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Khan, Imran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-19T09:56:31.000Z" + }, + { + "creator": "Roger Cohen", + "title": "Macron Shifts Rightward, and Charts a New Course", + "link": "https://www.nytimes.com/2024/01/19/world/europe/france-macron-speech.html", + "pubDate": "Fri, 19 Jan 2024 09:13:52 +0000", + "dc:creator": "Roger Cohen", + "content": "With a decisive turn toward youth and conservative ideas, the French president sets a path for his reshuffled government.", + "contentSnippet": "With a decisive turn toward youth and conservative ideas, the French president sets a path for his reshuffled government.", + "guid": "https://www.nytimes.com/2024/01/19/world/europe/france-macron-speech.html", + "categories": [ + { + "_": "Macron, Emmanuel (1977- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Right-Wing Extremism and Alt-Right", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Youth", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Speeches and Statements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Le Pen, Marine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Attal, Gabriel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T09:13:52.000Z" + }, + { + "creator": "Isabel Kershner and Avishag Shaar-Yashuv", + "title": "Israeli Women Fight on Front Line in Gaza, a First", + "link": "https://www.nytimes.com/2024/01/19/world/middleeast/israel-gaza-women-soldiers.html", + "pubDate": "Fri, 19 Jan 2024 07:06:16 +0000", + "dc:creator": "Isabel Kershner and Avishag Shaar-Yashuv", + "content": "After a long struggle for acceptance, Israel\u2019s female combat soldiers are pushing new boundaries after rushing into battle on Oct. 7.", + "contentSnippet": "After a long struggle for acceptance, Israel\u2019s female combat soldiers are pushing new boundaries after rushing into battle on Oct. 7.", + "guid": "https://www.nytimes.com/2024/01/19/world/middleeast/israel-gaza-women-soldiers.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Women and Girls", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T07:06:16.000Z" + }, + { + "creator": "Natasha Frost", + "title": "Friday Briefing", + "link": "https://www.nytimes.com/2024/01/19/briefing/palestinian-state-german-economy.html", + "pubDate": "Fri, 19 Jan 2024 05:18:53 +0000", + "dc:creator": "Natasha Frost", + "content": "Here\u2019s what you need to know.", + "contentSnippet": "Here\u2019s what you need to know.", + "guid": "https://www.nytimes.com/2024/01/19/briefing/palestinian-state-german-economy.html", + "isoDate": "2024-01-19T05:18:53.000Z" + }, + { + "creator": "Jim Tankersley", + "title": "At Davos, War Is on the Agenda, but the Focus Is on A.I. and Elections", + "link": "https://www.nytimes.com/2024/01/18/business/ukraine-gaza-war-davos.html", + "pubDate": "Fri, 19 Jan 2024 04:16:36 +0000", + "dc:creator": "Jim Tankersley", + "content": "The leaders and executives gathering at the World Economic Forum are obsessed with elections and artificial intelligence, not Ukraine or Gaza.", + "contentSnippet": "The leaders and executives gathering at the World Economic Forum are obsessed with elections and artificial intelligence, not Ukraine or Gaza.", + "guid": "https://www.nytimes.com/2024/01/18/business/ukraine-gaza-war-davos.html", + "categories": [ + { + "_": "World Economic Forum", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Davos (Switzerland)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Elections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Kidnapping and Hostages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-19T04:16:36.000Z" + }, + { + "creator": "Amelia Nierenberg", + "title": "Friday Briefing: Pakistan Retaliates With Strikes in Iran", + "link": "https://www.nytimes.com/2024/01/18/briefing/pakistan-iran.html", + "pubDate": "Thu, 18 Jan 2024 21:17:32 +0000", + "dc:creator": "Amelia Nierenberg", + "content": "Also, corruption accusations in Singapore.", + "contentSnippet": "Also, corruption accusations in Singapore.", + "guid": "https://www.nytimes.com/2024/01/18/briefing/pakistan-iran.html", + "isoDate": "2024-01-18T21:17:32.000Z" + }, + { + "creator": "Amelia Nierenberg", + "title": "Friday Briefing: Pakistan Retaliates With Strikes in Iran", + "link": "https://www.nytimes.com/2024/01/18/briefing/iran-pakistan-covid-singapore.html", + "pubDate": "Thu, 18 Jan 2024 21:15:34 +0000", + "dc:creator": "Amelia Nierenberg", + "content": "Also, corruption accusations in Singapore and travel predictions", + "contentSnippet": "Also, corruption accusations in Singapore and travel predictions", + "guid": "https://www.nytimes.com/2024/01/18/briefing/iran-pakistan-covid-singapore.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pakistan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Coronavirus (2019-nCoV)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Singapore", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-18T21:15:34.000Z" + }, + { + "creator": "Vivian Nereim", + "title": "Houthis\u2019 Leader Says a Clash With the U.S. Will Strengthen Militia Group", + "link": "https://www.nytimes.com/2024/01/18/world/middleeast/houthis-yemen-us.html", + "pubDate": "Thu, 18 Jan 2024 19:42:04 +0000", + "dc:creator": "Vivian Nereim", + "content": "Abdul-Malik al-Houthi said in a televised speech that the Houthis had always emerged stronger from confrontations with their enemies.", + "contentSnippet": "Abdul-Malik al-Houthi said in a televised speech that the Houthis had always emerged stronger from confrontations with their enemies.", + "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/houthis-yemen-us.html", + "categories": [ + { + "_": "Houthi, Abdel Malik al- (1982- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Yemen", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Red Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ships and Shipping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-18T19:42:04.000Z" + }, + { + "creator": "Egill Bjarnason and Emma Bubola", + "title": "Iceland Scrambles to Shelter Residents Made Homeless by Volcanic Eruption", + "link": "https://www.nytimes.com/2024/01/18/world/europe/iceland-volcano-housing.html", + "pubDate": "Thu, 18 Jan 2024 17:38:50 +0000", + "dc:creator": "Egill Bjarnason and Emma Bubola", + "content": "In a country of fewer than 400,000, finding places for 3,700 residents is complicated by a tough housing market.", + "contentSnippet": "In a country of fewer than 400,000, finding places for 3,700 residents is complicated by a tough housing market.", + "guid": "https://www.nytimes.com/2024/01/18/world/europe/iceland-volcano-housing.html", + "categories": [ + { + "_": "Evacuations and Evacuees", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Volcanoes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Banking and Financial Institutions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Iceland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Grindavik (Iceland)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Jakobsdottir, Katrin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Real Estate and Housing (Residential)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Renting and Leasing (Real Estate)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Reykjavik (Iceland)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-18T17:38:50.000Z" + }, + { + "creator": "Ali Watkins", + "title": "Arnold Schwarzenegger Detained Over Pricey Watch at Munich Airport", + "link": "https://www.nytimes.com/2024/01/18/world/europe/arnold-schwarzenegger-detained-munich-watch.html", + "pubDate": "Thu, 18 Jan 2024 17:22:32 +0000", + "dc:creator": "Ali Watkins", + "content": "He\u2019ll be back \u2026 to face criminal tax charges.", + "contentSnippet": "He\u2019ll be back \u2026 to face criminal tax charges.", + "guid": "https://www.nytimes.com/2024/01/18/world/europe/arnold-schwarzenegger-detained-munich-watch.html", + "categories": [ + { + "_": "Schwarzenegger, Arnold", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Munich (Germany)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Customs (Tariff)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Audemars Piguet Group", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-18T17:22:32.000Z" + }, + { + "creator": "Anatoly Kurmanaev", + "title": "Protests in Russia Put Spotlight on Wartime Ethnic Grievances", + "link": "https://www.nytimes.com/2024/01/18/world/europe/protests-russia-bashkortostan.html", + "pubDate": "Thu, 18 Jan 2024 16:37:40 +0000", + "dc:creator": "Anatoly Kurmanaev", + "content": "The trial and conviction of an activist in the Ural Mountains region sparked one of the biggest outbreaks of social unrest since the start of the war.", + "contentSnippet": "The trial and conviction of an activist in the Ural Mountains region sparked one of the biggest outbreaks of social unrest since the start of the war.", + "guid": "https://www.nytimes.com/2024/01/18/world/europe/protests-russia-bashkortostan.html", + "categories": [ + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Minorities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Language", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ural Mountains (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-18T16:37:40.000Z" + }, + { + "creator": "Katie Rogers", + "title": "Biden Keeps Australia\u2019s Dinner Low-Key at a Moment of Global Turmoil", + "link": "https://www.nytimes.com/2023/10/25/us/politics/biden-state-dinner-australia.html", + "pubDate": "Fri, 27 Oct 2023 12:49:32 +0000", + "dc:creator": "Katie Rogers", + "content": "Before the state dinner was over, President Biden had stepped out for a briefing on a mass shooting in Maine and to call lawmakers in the state. He left shortly after 10 p.m.", + "contentSnippet": "Before the state dinner was over, President Biden had stepped out for a briefing on a mass shooting in Maine and to call lawmakers in the state. He left shortly after 10 p.m.", + "guid": "https://www.nytimes.com/2023/10/25/us/politics/biden-state-dinner-australia.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "B-52s (Music Group)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Albanese, Anthony (1963- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Jill Tracy Jacobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Australia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T12:49:32.000Z" + }, + { + "creator": "The New York Times", + "title": "Israel-Hamas War: U.S. Retaliates Against Iran in Syria, Trying to Ward Off More Attacks", + "link": "https://www.nytimes.com/live/2023/10/27/world/israel-hamas-war-gaza-news", + "pubDate": "Fri, 27 Oct 2023 12:36:41 +0000", + "dc:creator": "The New York Times", + "content": "The Biden administration has increased military resources in the Middle East amid fears of a widening war. As the humanitarian crisis spirals in Gaza, the U.N. General Assembly is set to vote on calling for a cease-fire.", + "contentSnippet": "The Biden administration has increased military resources in the Middle East amid fears of a widening war. As the humanitarian crisis spirals in Gaza, the U.N. General Assembly is set to vote on calling for a cease-fire.", + "guid": "https://www.nytimes.com/live/2023/10/27/world/israel-hamas-war-gaza-news", + "isoDate": "2023-10-27T12:36:41.000Z" + }, + { + "creator": "Steven Lee Myers", + "title": "U.S. Tries New Tack on Russian Disinformation: Pre-Empting It", + "link": "https://www.nytimes.com/2023/10/26/technology/russian-disinformation-us-state-department-campaign.html", + "pubDate": "Fri, 27 Oct 2023 12:21:44 +0000", + "dc:creator": "Steven Lee Myers", + "content": "The State Department\u2019s Global Engagement Center is taking the unusual step of disclosing a covert Russian operation when it is barely off the ground.", + "contentSnippet": "The State Department\u2019s Global Engagement Center is taking the unusual step of disclosing a covert Russian operation when it is barely off the ground.", + "guid": "https://www.nytimes.com/2023/10/26/technology/russian-disinformation-us-state-department-campaign.html", + "categories": [ + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "North Atlantic Treaty Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "State Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Rubin, James P", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-27T12:21:44.000Z" + }, + { + "creator": "Chris Buckley and Keith Bradsher", + "title": "Li Keqiang, Former Chinese Premier, Dies of Heart Attack at 68", + "link": "https://www.nytimes.com/2023/10/26/world/asia/li-keqiang-china-dead.html", + "pubDate": "Fri, 27 Oct 2023 11:43:37 +0000", + "dc:creator": "Chris Buckley and Keith Bradsher", + "content": "Mr. Li, who retired in March, was muscled out of the premier\u2019s usual policymaking roles by Mr. Xi. Chinese citizens expressed shock at his death, from a heart attack.", + "contentSnippet": "Mr. Li, who retired in March, was muscled out of the premier\u2019s usual policymaking roles by Mr. Xi. Chinese citizens expressed shock at his death, from a heart attack.", + "guid": "https://www.nytimes.com/2023/10/26/world/asia/li-keqiang-china-dead.html", + "categories": [ + { + "_": "Communist Party of China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Li Keqiang", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T11:43:37.000Z" + }, + { + "creator": "Monika Pronczuk", + "title": "What to Know About UNRWA, the Largest Aid Organization in Gaza", + "link": "https://www.nytimes.com/2023/10/26/world/middleeast/unrwa-gaza-aid.html", + "pubDate": "Fri, 27 Oct 2023 11:26:46 +0000", + "dc:creator": "Monika Pronczuk", + "content": "Established to provide temporary relief for Palestinians who fled or were expelled from their homes during the 1948 Arab-Israeli war, the agency now mainly provides services and funding for those registered as Palestinian refugees across the Mideast.", + "contentSnippet": "Established to provide temporary relief for Palestinians who fled or were expelled from their homes during the 1948 Arab-Israeli war, the agency now mainly provides services and funding for those registered as Palestinian refugees across the Mideast.", + "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/unrwa-gaza-aid.html", + "categories": [ + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations Relief and Works Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T11:26:46.000Z" + }, + { + "creator": "Choe Sang-Hun and Chang W. Lee", + "title": "One Year After the Itaewon Crowd Crush", + "link": "https://www.nytimes.com/2023/10/27/world/asia/seoul-itaewon-crowd-crush.html", + "pubDate": "Fri, 27 Oct 2023 10:32:17 +0000", + "dc:creator": "Choe Sang-Hun and Chang W. Lee", + "content": "Survivors of the Itaewon disaster and relatives of victims continue to wrestle with unanswered questions and grief as they push for official accountability.", + "contentSnippet": "Survivors of the Itaewon disaster and relatives of victims continue to wrestle with unanswered questions and grief as they push for official accountability.", + "guid": "https://www.nytimes.com/2023/10/27/world/asia/seoul-itaewon-crowd-crush.html", + "categories": [ + { + "_": "Seoul Halloween Stampede (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Grief (Emotion)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Yoon Suk-yeol", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-27T10:32:17.000Z" + }, + { + "creator": "Ivan Nechepurenko", + "title": "Hamas Leaders Arrive in Russia as the Kremlin Attempts to Showcase Clout", + "link": "https://www.nytimes.com/2023/10/26/world/middleeast/hamas-russia-moscow.html", + "pubDate": "Fri, 27 Oct 2023 09:45:29 +0000", + "dc:creator": "Ivan Nechepurenko", + "content": "The meetings with high-ranking members of the group that attacked Israel underscored how Russia is trying to present itself as an alternative platform for possible mediation.", + "contentSnippet": "The meetings with high-ranking members of the group that attacked Israel underscored how Russia is trying to present itself as an alternative platform for possible mediation.", + "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/hamas-russia-moscow.html", + "categories": [ + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Meshaal, Khaled (1956- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T09:45:29.000Z" + }, + { + "creator": "Patrick Kingsley and Ronen Bergman", + "title": "Disagreements Among Israeli Leaders Delay Gaza Ground Invasion", + "link": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-gaza-invasion-delay.html", + "pubDate": "Fri, 27 Oct 2023 09:19:27 +0000", + "dc:creator": "Patrick Kingsley and Ronen Bergman", + "content": "In the 20 days since Hamas attacked, Israel\u2019s Air Force has pounded Gaza and its troops have gotten into position. But its leaders disagree about what to do next.", + "contentSnippet": "In the 20 days since Hamas attacked, Israel\u2019s Air Force has pounded Gaza and its troops have gotten into position. But its leaders disagree about what to do next.", + "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-gaza-invasion-delay.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Likud Party (Israel)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T09:19:27.000Z" + }, + { + "creator": "Reid J. Epstein and Anjali Huynh", + "title": "Biden Faces Backlash From Party\u2019s Left Wing on Israel", + "link": "https://www.nytimes.com/2023/10/27/us/politics/biden-democrats-israel-2024.html", + "pubDate": "Fri, 27 Oct 2023 09:04:22 +0000", + "dc:creator": "Reid J. Epstein and Anjali Huynh", + "content": "As a raw divide over the war ripples through liberal America, a coalition of young voters and people of color is breaking with the president, raising new questions about his strength entering 2024.", + "contentSnippet": "As a raw divide over the war ripples through liberal America, a coalition of young voters and people of color is breaking with the president, raising new questions about his strength entering 2024.", + "guid": "https://www.nytimes.com/2023/10/27/us/politics/biden-democrats-israel-2024.html", + "categories": [ + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Democratic Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Presidential Election of 2024", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Youth", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Minorities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Organized Labor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T09:04:22.000Z" + }, + { + "creator": "Aida Alami", + "title": "Former L\u2019Oreal Scientist\u2019s Paris Salons Specialize in Curly Hair, Neglected in France", + "link": "https://www.nytimes.com/2023/10/27/world/europe/france-inclusive-hair-salons.html", + "pubDate": "Fri, 27 Oct 2023 09:03:56 +0000", + "dc:creator": "Aida Alami", + "content": "With a Ph.D. in chemistry and inspired by her daughter, Aude Livoreil-Djampou is trying to address the dearth of salon options in France for people with coiled or curly hair.", + "contentSnippet": "With a Ph.D. in chemistry and inspired by her daughter, Aude Livoreil-Djampou is trying to address the dearth of salon options in France for people with coiled or curly hair.", + "guid": "https://www.nytimes.com/2023/10/27/world/europe/france-inclusive-hair-salons.html", + "categories": [ + { + "_": "Paris (France)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Beauty Salons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hair", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Women and Girls", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "L'Oreal SA", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Aude Livoreil-Djampou", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Black People", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Discrimination", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T09:03:56.000Z" + }, + { + "creator": "Carlotta Gall and Oleksandr Chubko", + "title": "In Rare Protest, Ukrainian Families Press for News on Missing", + "link": "https://www.nytimes.com/2023/10/27/world/europe/ukraine-missing-soldiers-war.html", + "pubDate": "Fri, 27 Oct 2023 09:03:45 +0000", + "dc:creator": "Carlotta Gall and Oleksandr Chubko", + "content": "In a rare show of public criticism in wartime, families of missing Ukrainian soldiers are pressing the government for information on their status.", + "contentSnippet": "In a rare show of public criticism in wartime, families of missing Ukrainian soldiers are pressing the government for information on their status.", + "guid": "https://www.nytimes.com/2023/10/27/world/europe/ukraine-missing-soldiers-war.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missing in Action", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bilohorivka (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kyiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T09:03:45.000Z" + }, + { + "creator": "Abdi Latif Dahir", + "title": "Students on the Run, Schools Taken by Troops and a Generation\u2019s Catastrophe", + "link": "https://www.nytimes.com/2023/10/27/world/africa/sudan-war-education-children.html", + "pubDate": "Fri, 27 Oct 2023 09:03:15 +0000", + "dc:creator": "Abdi Latif Dahir", + "content": "With an estimated 19 million children out of school for months because of war, Sudan is on the verge of becoming \u201cthe worst education crisis in the world,\u201d U.N. officials say.", + "contentSnippet": "With an estimated 19 million children out of school for months because of war, Sudan is on the verge of becoming \u201cthe worst education crisis in the world,\u201d U.N. officials say.", + "guid": "https://www.nytimes.com/2023/10/27/world/africa/sudan-war-education-children.html", + "categories": [ + { + "_": "Sudan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Darfur (Sudan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Education", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Khartoum (Sudan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "al-Burhan, Abdel Fattah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hamdan, Mohamed (Hemeti)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Chad", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Omdurman (Sudan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "El Geneina (Sudan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T09:03:15.000Z" + }, + { + "creator": "Yan Zhuang", + "title": "How Are You Preparing for a Summer of Fires?", + "link": "https://www.nytimes.com/2023/10/27/world/australia/how-are-you-preparing-for-a-summer-of-fires.html", + "pubDate": "Fri, 27 Oct 2023 08:56:02 +0000", + "dc:creator": "Yan Zhuang", + "content": "As El Ni\u00f1o arrives, heralding dry weather, it feels like the whole country is on edge. We\u2019d like to hear from readers in Australia.", + "contentSnippet": "As El Ni\u00f1o arrives, heralding dry weather, it feels like the whole country is on edge. We\u2019d like to hear from readers in Australia.", + "guid": "https://www.nytimes.com/2023/10/27/world/australia/how-are-you-preparing-for-a-summer-of-fires.html", + "categories": [ + { + "_": "Australia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Wildfires", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T08:56:02.000Z" + }, + { + "creator": "Mike Ives", + "title": "Chinese Jet Flies Within 10 Feet of B-52, U.S. Says", + "link": "https://www.nytimes.com/2023/10/27/world/asia/china-jet-us-b52-bomber.html", + "pubDate": "Fri, 27 Oct 2023 08:06:04 +0000", + "dc:creator": "Mike Ives", + "content": "The fighter jet neared a B-52 during a maneuver over the South China Sea on Tuesday night, the U.S. military said. China had no immediate response.", + "contentSnippet": "The fighter jet neared a B-52 during a maneuver over the South China Sea on Tuesday night, the U.S. military said. China had no immediate response.", + "guid": "https://www.nytimes.com/2023/10/27/world/asia/china-jet-us-b52-bomber.html", + "categories": [ + { + "_": "Aviation Accidents, Safety and Disasters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Military Aircraft", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States Air Force", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States Indo-Pacific Command", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "South China Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T08:06:04.000Z" + }, + { + "creator": "Jonathan Wolfe", + "title": "Friday Briefing", + "link": "https://www.nytimes.com/2023/10/27/briefing/israel-gaza-war.html", + "pubDate": "Fri, 27 Oct 2023 04:01:03 +0000", + "dc:creator": "Jonathan Wolfe", + "content": "Pressure builds for a pause in Gaza.", + "contentSnippet": "Pressure builds for a pause in Gaza.", + "guid": "https://www.nytimes.com/2023/10/27/briefing/israel-gaza-war.html", + "isoDate": "2023-10-27T04:01:03.000Z" + }, + { + "creator": "Nadav Gavrielov, Matthew Mpoke Bigg, Vivian Yee and Matina Stevis-Gridneff", + "title": "Israeli Tanks Raid Gaza Ahead of Invasion, While Aid Trickles In", + "link": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-gaza-tanks-aid.html", + "pubDate": "Fri, 27 Oct 2023 03:39:49 +0000", + "dc:creator": "Nadav Gavrielov, Matthew Mpoke Bigg, Vivian Yee and Matina Stevis-Gridneff", + "content": "The United States has advised delaying a ground invasion, in part to get more desperately needed aid, which has flowed slowly, into Gaza.", + "contentSnippet": "The United States has advised delaying a ground invasion, in part to get more desperately needed aid, which has flowed slowly, into Gaza.", + "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-gaza-tanks-aid.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T03:39:49.000Z" + }, + { + "creator": "Raja Abdulrahim and Samar Abu Elouf", + "title": "Food and Water Grow Scarce in Gaza Amid Israeli Siege and Strikes", + "link": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-food-water-siege.html", + "pubDate": "Fri, 27 Oct 2023 02:55:52 +0000", + "dc:creator": "Raja Abdulrahim and Samar Abu Elouf", + "content": "Residents wait in line for hours for bread and water, with fights sometimes breaking out. The United Nations has called the situation a humanitarian catastrophe.", + "contentSnippet": "Residents wait in line for hours for bread and water, with fights sometimes breaking out. The United Nations has called the situation a humanitarian catastrophe.", + "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-food-water-siege.html", + "categories": [ + { + "_": "Water", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Water Pollution", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bakeries and Baked Products", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Egypt", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Khan Younis (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Rafah (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T02:55:52.000Z" + }, + { + "creator": "Zolan Kanno-Youngs, Emiliano Rodr\u00edguez Mega and Elda Cant\u00fa", + "title": "After Hurricane Otis, Mexican Officials Confirm At Least 27 Deaths", + "link": "https://www.nytimes.com/2023/10/26/world/americas/hurricane-otis-mexico.html", + "pubDate": "Fri, 27 Oct 2023 02:05:59 +0000", + "dc:creator": "Zolan Kanno-Youngs, Emiliano Rodr\u00edguez Mega and Elda Cant\u00fa", + "content": "The storm was one of the strongest ever to hit the southwest coast, and the Mexican government dispatched thousands of troops to the region.", + "contentSnippet": "The storm was one of the strongest ever to hit the southwest coast, and the Mexican government dispatched thousands of troops to the region.", + "guid": "https://www.nytimes.com/2023/10/26/world/americas/hurricane-otis-mexico.html", + "categories": [ + { + "_": "Hurricane Otis (2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hurricanes and Tropical Storms", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Acapulco (Mexico)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Guerrero (Mexico)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Oaxaca (Mexico)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "vis-video", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T02:05:59.000Z" + }, + { + "creator": "Katie Rogers", + "title": "Jake Sullivan\u2019s \u2018Quieter\u2019 Middle East Comments Did Not Age Well", + "link": "https://www.nytimes.com/2023/10/26/us/politics/jake-sullivan-foreign-affairs-israel-middle-east.html", + "pubDate": "Fri, 27 Oct 2023 01:39:38 +0000", + "dc:creator": "Katie Rogers", + "content": "The national security adviser has drawn criticism for recent public remarks. Biden officials pushed back on the idea that Mr. Sullivan was offering a lasting view on Middle East conflicts.", + "contentSnippet": "The national security adviser has drawn criticism for recent public remarks. Biden officials pushed back on the idea that Mr. Sullivan was offering a lasting view on Middle East conflicts.", + "guid": "https://www.nytimes.com/2023/10/26/us/politics/jake-sullivan-foreign-affairs-israel-middle-east.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Affairs (Magazine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Atlantic Monthly", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Sullivan, Jacob J (1976- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T01:39:38.000Z" + }, + { + "creator": "Vivian Yee", + "title": "Gazans Release Names of 6,747 People They Say Were Killed in Israeli Strikes", + "link": "https://www.nytimes.com/2023/10/26/world/middleeast/gaza-death-toll-israel.html", + "pubDate": "Thu, 26 Oct 2023 23:24:37 +0000", + "dc:creator": "Vivian Yee", + "content": "The detailed list from the Hamas-controlled health ministry \u2014 including ages, genders and ID numbers \u2014 followed President Biden\u2019s comment that he had \u201cno confidence\u201d in its figures.", + "contentSnippet": "The detailed list from the Hamas-controlled health ministry \u2014 including ages, genders and ID numbers \u2014 followed President Biden\u2019s comment that he had \u201cno confidence\u201d in its figures.", + "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/gaza-death-toll-israel.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Al Ahli Arab Hospital (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Khan Younis (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-26T23:24:37.000Z" + }, + { + "creator": "Justin Porter", + "title": "Friday Briefing: Israel Says Tanks Briefly Entered Gaza", + "link": "https://www.nytimes.com/2023/10/26/briefing/hamas-israel-war-us-economy-denmark-immigration.html", + "pubDate": "Thu, 26 Oct 2023 20:50:21 +0000", + "dc:creator": "Justin Porter", + "content": "Plus inspiration in the Rugby World Cup final.", + "contentSnippet": "Plus inspiration in the Rugby World Cup final.", + "guid": "https://www.nytimes.com/2023/10/26/briefing/hamas-israel-war-us-economy-denmark-immigration.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States Economy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-26T20:50:21.000Z" + }, + { + "creator": "Aric Toler, Haley Willis, Riley Mellen, Alexander Cardia, Natalie Reneau, Julian E. Barnes and Christoph Koettl", + "title": "A Close Look at Some Key Evidence in the Gaza Hospital Blast", + "link": "https://www.nytimes.com/2023/10/24/world/middleeast/gaza-hospital-israel-hamas-video.html", + "pubDate": "Thu, 26 Oct 2023 20:02:01 +0000", + "dc:creator": "Aric Toler, Haley Willis, Riley Mellen, Alexander Cardia, Natalie Reneau, Julian E. Barnes and Christoph Koettl", + "content": "A widely cited missile video does not shed light on what happened, a Times analysis concludes.", + "contentSnippet": "A widely cited missile video does not shed light on what happened, a Times analysis concludes.", + "guid": "https://www.nytimes.com/2023/10/24/world/middleeast/gaza-hospital-israel-hamas-video.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Al Ahli Arab Hospital (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hospitals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinian Islamic Jihad", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "your-feed-visual-investigations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "vis-video", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-26T20:02:01.000Z" + }, + { + "creator": "Andrew Higgins", + "title": "Slovakia to Halt Arms Deliveries to Ukraine, as New Leader Promised", + "link": "https://www.nytimes.com/2023/10/26/world/europe/slovakia-weapons-ukraine-war.html", + "pubDate": "Thu, 26 Oct 2023 19:00:22 +0000", + "dc:creator": "Andrew Higgins", + "content": "The newly appointed prime minister, Robert Fico, whose party aligned with pro-Russian forces during the recent election campaign, had promised \u201cnot to send a single cartridge\u201d of ammunition to Kyiv.", + "contentSnippet": "The newly appointed prime minister, Robert Fico, whose party aligned with pro-Russian forces during the recent election campaign, had promised \u201cnot to send a single cartridge\u201d of ammunition to Kyiv.", + "guid": "https://www.nytimes.com/2023/10/26/world/europe/slovakia-weapons-ukraine-war.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fico, Robert", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Slovakia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Orban, Viktor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Smer-Social Democracy (Slovakia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hungary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T19:00:22.000Z" + }, + { + "creator": "Vivian Nereim, Kate Kelly and Ahmed Al Omran", + "title": "Israel-Hamas War Looms Over Saudi Arabia Forum", + "link": "https://www.nytimes.com/2023/10/26/world/middleeast/saudi-arabia-israel-hamas-gaza-war.html", + "pubDate": "Thu, 26 Oct 2023 18:34:52 +0000", + "dc:creator": "Vivian Nereim, Kate Kelly and Ahmed Al Omran", + "content": "The kingdom is embracing business as usual, hosting an investment forum, concerts and even fashion shows. But grief, fear and outrage over Israel\u2019s bombardment of Gaza simmer just below the surface.", + "contentSnippet": "The kingdom is embracing business as usual, hosting an investment forum, concerts and even fashion shows. But grief, fear and outrage over Israel\u2019s bombardment of Gaza simmer just below the surface.", + "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/saudi-arabia-israel-hamas-gaza-war.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Peace Process", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Public Investment Fund (Saudi Arabia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Federation of Association Football (FIFA)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Mohammed bin Salman (1985- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Trump, Donald J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Riyadh (Saudi Arabia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Saudi Arabia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T18:34:52.000Z" + }, + { + "creator": "Sheryl Gay Stolberg", + "title": "Bush\u2019s Institute Issues an Urgent Plea for Congress to Renew His AIDS Program", + "link": "https://www.nytimes.com/2023/10/25/us/politics/bush-pepfar-congress.html", + "pubDate": "Thu, 26 Oct 2023 18:27:15 +0000", + "dc:creator": "Sheryl Gay Stolberg", + "content": "PEPFAR, created by President George W. Bush in 2003 to combat the disease, faces an uncertain future now that its authorizing legislation has lapsed.", + "contentSnippet": "PEPFAR, created by President George W. Bush in 2003 to combat the disease, faces an uncertain future now that its authorizing legislation has lapsed.", + "guid": "https://www.nytimes.com/2023/10/25/us/politics/bush-pepfar-congress.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Acquired Immune Deficiency Syndrome", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Abortion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "President's Emergency Plan for AIDS Relief", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Birx, Deborah L", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bush, George W", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-26T18:27:15.000Z" + }, + { + "creator": "Isabella Kwai", + "title": "Air Canada Apologizes for Questioning a British Lawmaker About His Background", + "link": "https://www.nytimes.com/2023/10/26/world/europe/air-canada-apology-mohammad-yasin.html", + "pubDate": "Thu, 26 Oct 2023 18:24:39 +0000", + "dc:creator": "Isabella Kwai", + "content": "The airline and Canadian immigration officials were accused of singling out the lawmaker, Mohammad Yasin, \u201cbecause his name was Mohammad.\u201d", + "contentSnippet": "The airline and Canadian immigration officials were accused of singling out the lawmaker, Mohammad Yasin, \u201cbecause his name was Mohammad.\u201d", + "guid": "https://www.nytimes.com/2023/10/26/world/europe/air-canada-apology-mohammad-yasin.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Airport Security", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Discrimination", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Canada", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T18:24:39.000Z" + }, + { + "creator": "Adam Goldman and Gal Koplewitz", + "title": "Local Police in Ofakim Defended the Israeli City From Hamas\u2019s Attacks", + "link": "https://www.nytimes.com/2023/10/26/world/europe/israel-ofakim-police-hamas.html", + "pubDate": "Thu, 26 Oct 2023 18:03:49 +0000", + "dc:creator": "Adam Goldman and Gal Koplewitz", + "content": "Military support was slow to arrive in the quiet desert city of Ofakim but officers, most of them armed with handguns, fought back.", + "contentSnippet": "Military support was slow to arrive in the quiet desert city of Ofakim but officers, most of them armed with handguns, fought back.", + "guid": "https://www.nytimes.com/2023/10/26/world/europe/israel-ofakim-police-hamas.html", + "categories": [ + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Police", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ofakim (Israel)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T18:03:49.000Z" + }, + { + "creator": "Jonathan Abrams", + "title": "Dave Chappelle Laments \u2018Nightmare\u2019 Facing Israelis and Palestinians", + "link": "https://www.nytimes.com/2023/10/26/arts/dave-chappelle-israel-hamas.html", + "pubDate": "Thu, 26 Oct 2023 17:45:00 +0000", + "dc:creator": "Jonathan Abrams", + "content": "The comedian, whose remarks about the Israel-Hamas war last week made headlines, returned to the subject at a show in North Carolina.", + "contentSnippet": "The comedian, whose remarks about the Israel-Hamas war last week made headlines, returned to the subject at a show in North Carolina.", + "guid": "https://www.nytimes.com/2023/10/26/arts/dave-chappelle-israel-hamas.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Comedy and Humor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Jews and Judaism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Chappelle, Dave", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Raleigh (NC)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T17:45:00.000Z" + }, + { + "creator": "Aaron Boxerman", + "title": "Who Is in Israel\u2019s War Cabinet?", + "link": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-war-cabinet-hamas.html", + "pubDate": "Thu, 26 Oct 2023 17:07:23 +0000", + "dc:creator": "Aaron Boxerman", + "content": "Prime Minister Benjamin Netanyahu said that the small group of officials would play a key role in determining when Israel begins a ground invasion of Gaza.", + "contentSnippet": "Prime Minister Benjamin Netanyahu said that the small group of officials would play a key role in determining when Israel begins a ground invasion of Gaza.", + "guid": "https://www.nytimes.com/2023/10/26/world/middleeast/israel-war-cabinet-hamas.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netanyahu, Benjamin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Smotrich, Bezalel (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gallant, Yoav", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gantz, Benny", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ben-Gvir, Itamar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Dermer, Ron", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Likud Party (Israel)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-26T17:07:23.000Z" + }, + { + "creator": "Edward Wong", + "title": "As Violence Surges, Nations Seek U.S. Defense Pacts. Some Americans Are Wary.", + "link": "https://www.nytimes.com/2023/10/26/us/politics/us-defense-alliances-israel-ukraine.html", + "pubDate": "Thu, 26 Oct 2023 16:24:59 +0000", + "dc:creator": "Edward Wong", + "content": "Many countries, including Ukraine and Israel, want greater U.S. protection against Russia, China, Iran and North Korea. But some Americans resist further military commitments.", + "contentSnippet": "Many countries, including Ukraine and Israel, want greater U.S. protection against Russia, China, Iran and North Korea. But some Americans resist further military commitments.", + "guid": "https://www.nytimes.com/2023/10/26/us/politics/us-defense-alliances-israel-ukraine.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Treaties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "North Atlantic Treaty Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T16:24:59.000Z" + }, + { + "creator": "Anushka Patil and Gaya Gupta", + "title": "Several Family Members of Al Jazeera\u2019s Gaza Bureau Chief Are Killed", + "link": "https://www.nytimes.com/2023/10/25/world/middleeast/al-jazeera-journalist-gaza-family-killed.html", + "pubDate": "Thu, 26 Oct 2023 15:44:50 +0000", + "dc:creator": "Anushka Patil and Gaya Gupta", + "content": "Wael al-Dahdouh, described by his colleagues as \u201cthe voice of Palestinians in Gaza,\u201d lost his wife, son, daughter and infant grandson, Al Jazeera said.", + "contentSnippet": "Wael al-Dahdouh, described by his colleagues as \u201cthe voice of Palestinians in Gaza,\u201d lost his wife, son, daughter and infant grandson, Al Jazeera said.", + "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/al-jazeera-journalist-gaza-family-killed.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "al-Dahdouh, Wael", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Al Jazeera", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T15:44:50.000Z" + }, + { + "creator": "Declan Walsh", + "title": "For a Grandmother in Gaza, History Is Scarier Than Airstrikes", + "link": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-diaspora-families.html", + "pubDate": "Thu, 26 Oct 2023 15:36:51 +0000", + "dc:creator": "Declan Walsh", + "content": "From his Los Angeles home, Mohammed Abujayyab has sought to help his grandmother and other relatives survive the Israeli bombardment. Memories of displacement are never far.", + "contentSnippet": "From his Los Angeles home, Mohammed Abujayyab has sought to help his grandmother and other relatives survive the Israeli bombardment. Memories of displacement are never far.", + "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-diaspora-families.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Border Barriers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T15:36:51.000Z" + }, + { + "creator": "Marc Santora and Matthew Mpoke Bigg", + "title": "As Winter Nears, Ukraine Braces for Attacks on Energy Grid", + "link": "https://www.nytimes.com/2023/10/26/world/europe/ukraine-winter-energy.html", + "pubDate": "Thu, 26 Oct 2023 14:24:36 +0000", + "dc:creator": "Marc Santora and Matthew Mpoke Bigg", + "content": "Russia targeted power systems last year and recent attacks suggest a return to that strategy, raising anxiety among Ukrainian civilians and officials.", + "contentSnippet": "Russia targeted power systems last year and recent attacks suggest a return to that strategy, raising anxiety among Ukrainian civilians and officials.", + "guid": "https://www.nytimes.com/2023/10/26/world/europe/ukraine-winter-energy.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nuclear Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Infrastructure (Public Works)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric Light and Power", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Power Failures and Blackouts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Atomic Energy Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ukrenergo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-26T14:24:36.000Z" + }, + { + "creator": "Patrick Kingsley", + "title": "Israel\u2019s Strikes on Gaza Are Some of the Most Intense This Century", + "link": "https://www.nytimes.com/2023/10/25/world/middleeast/israel-gaza-airstrikes.html", + "pubDate": "Thu, 26 Oct 2023 13:03:55 +0000", + "dc:creator": "Patrick Kingsley", + "content": "In the 19 days since Hamas attacked Israel, the Israeli military says it has struck more than 7,000 targets in Gaza. Palestinians accuse Israel of indiscriminately targeting civilians, but Israel officials say the strikes are aimed at eroding military infrastructure.", + "contentSnippet": "In the 19 days since Hamas attacked Israel, the Israeli military says it has struck more than 7,000 targets in Gaza. Palestinians accuse Israel of indiscriminately targeting civilians, but Israel officials say the strikes are aimed at eroding military infrastructure.", + "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/israel-gaza-airstrikes.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-26T13:03:55.000Z" + }, + { + "creator": "Emma Bubola", + "title": "In Denmark, Eviction and Demolition Remake \u2018Non-Western\u2019 Neighborhoods", + "link": "https://www.nytimes.com/2023/10/26/world/europe/denmark-housing.html", + "pubDate": "Thu, 26 Oct 2023 11:30:41 +0000", + "dc:creator": "Emma Bubola", + "content": "A government program is using demolition and relocation to remake neighborhoods with immigrants, poverty or crime.", + "contentSnippet": "A government program is using demolition and relocation to remake neighborhoods with immigrants, poverty or crime.", + "guid": "https://www.nytimes.com/2023/10/26/world/europe/denmark-housing.html", + "categories": [ + { + "_": "Aarhus (Denmark)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Public and Subsidized Housing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Urban Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Court of Justice", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Social Democratic Party (Denmark)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Frederiksen, Mette", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Discrimination", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demolition", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Poverty", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Race and Ethnicity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Minorities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-26T11:30:41.000Z" + }, + { + "creator": "Choe Sang-Hun", + "title": "South Korea Must Return Buddhist Statue to Japan, Supreme Court Says", + "link": "https://www.nytimes.com/2023/10/26/world/asia/south-korea-japan-buddhist-statue.html", + "pubDate": "Thu, 26 Oct 2023 06:08:20 +0000", + "dc:creator": "Choe Sang-Hun", + "content": "The artifact, which was taken to Tsushima centuries ago, was stolen and smuggled back to South Korea by thieves in 2012.", + "contentSnippet": "The artifact, which was taken to Tsushima centuries ago, was stolen and smuggled back to South Korea by thieves in 2012.", + "guid": "https://www.nytimes.com/2023/10/26/world/asia/south-korea-japan-buddhist-statue.html", + "categories": [ + { + "_": "Buddhism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Robberies and Thefts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tsushima Island (Japan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T06:08:20.000Z" + }, + { + "creator": "Jonathan Wolfe", + "title": "Thursday Briefing", + "link": "https://www.nytimes.com/2023/10/26/briefing/gaza-israel-house-speaker.html", + "pubDate": "Thu, 26 Oct 2023 04:05:18 +0000", + "dc:creator": "Jonathan Wolfe", + "content": "Biden calls for more aid into Gaza.", + "contentSnippet": "Biden calls for more aid into Gaza.", + "guid": "https://www.nytimes.com/2023/10/26/briefing/gaza-israel-house-speaker.html", + "isoDate": "2023-10-26T04:05:18.000Z" + }, + { + "creator": "Ben Hubbard and Safak Timur", + "title": "Turkey\u2019s Erdogan Defends Hamas and Lashes Out at Israel", + "link": "https://www.nytimes.com/2023/10/25/world/middleeast/erdogan-turkey-hamas-israel.html", + "pubDate": "Thu, 26 Oct 2023 02:01:27 +0000", + "dc:creator": "Ben Hubbard and Safak Timur", + "content": "In a speech in Parliament, President Recep Tayyip Erdogan of Turkey accused Israel of committing \u201cmassacres\u201d in Gaza and said Hamas was fighting for \u201cliberation.\u201d", + "contentSnippet": "In a speech in Parliament, President Recep Tayyip Erdogan of Turkey accused Israel of committing \u201cmassacres\u201d in Gaza and said Hamas was fighting for \u201cliberation.\u201d", + "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/erdogan-turkey-hamas-israel.html", + "categories": [ + { + "_": "Erdogan, Recep Tayyip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Turkey", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-26T02:01:27.000Z" + }, + { + "creator": "Zolan Kanno-Youngs, Judson Jones and Derrick Bryson Taylor", + "title": "Hurricane Otis Batters Mexico, Defying Forecasts", + "link": "https://www.nytimes.com/2023/10/25/world/americas/hurricane-otis-mexico-impact.html", + "pubDate": "Thu, 26 Oct 2023 01:29:04 +0000", + "dc:creator": "Zolan Kanno-Youngs, Judson Jones and Derrick Bryson Taylor", + "content": "Hurricane Otis defied forecasts when it quickly transformed from a tropical storm into a Category 5 storm and slammed into the coastal city of Acapulco.", + "contentSnippet": "Hurricane Otis defied forecasts when it quickly transformed from a tropical storm into a Category 5 storm and slammed into the coastal city of Acapulco.", + "guid": "https://www.nytimes.com/2023/10/25/world/americas/hurricane-otis-mexico-impact.html", + "categories": [ + { + "_": "Hurricane Otis (2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Acapulco (Mexico)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Landslides and Mudslides", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Floods", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wind", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Lopez Obrador, Andres Manuel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mexico", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-26T01:29:04.000Z" + }, + { + "creator": "Tiffany May and Shawn Hubler", + "title": "Gavin Newsom, on Climate Mission to China, Meets With Xi Jinping", + "link": "https://www.nytimes.com/2023/10/25/world/asia/gavin-newsom-china-xi.html", + "pubDate": "Wed, 25 Oct 2023 23:36:00 +0000", + "dc:creator": "Tiffany May and Shawn Hubler", + "content": "The California governor is on a weeklong visit to China aimed at negotiating climate partnerships.", + "contentSnippet": "The California governor is on a weeklong visit to China aimed at negotiating climate partnerships.", + "guid": "https://www.nytimes.com/2023/10/25/world/asia/gavin-newsom-china-xi.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Governors (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asia-Pacific Economic Cooperation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Communist Party of China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Global Times", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Newsom, Gavin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Wang Yi", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Xi Jinping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "California", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-25T23:36:00.000Z" + }, + { + "creator": "Monika Pronczuk", + "title": "With Fuel Shortages in Gaza, U.N. Aid Group May Shut Down Operations", + "link": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-shortages-un.html", + "pubDate": "Wed, 25 Oct 2023 22:35:03 +0000", + "dc:creator": "Monika Pronczuk", + "content": "A U.N. agency that has offered a wartime lifeline to hundreds of thousands of Palestinians warned of \u201ctough decisions\u201d ahead if it cannot get fuel.", + "contentSnippet": "A U.N. agency that has offered a wartime lifeline to hundreds of thousands of Palestinians warned of \u201ctough decisions\u201d ahead if it cannot get fuel.", + "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-shortages-un.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shortages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United Nations Relief and Works Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-25T22:35:03.000Z" + }, + { + "creator": "David E. Sanger and Eric Schmitt", + "title": "U.S. Seeks Delay in Israel\u2019s Gaza Ground Invasion to Bolster Air Defenses", + "link": "https://www.nytimes.com/2023/10/25/us/politics/us-israel-gaza-ground-invasion.html", + "pubDate": "Wed, 25 Oct 2023 21:47:24 +0000", + "dc:creator": "David E. Sanger and Eric Schmitt", + "content": "The systems would allow the United States to provide more protection for American troops at bases in Iraq, Syria and elsewhere.", + "contentSnippet": "The systems would allow the United States to provide more protection for American troops at bases in Iraq, Syria and elsewhere.", + "guid": "https://www.nytimes.com/2023/10/25/us/politics/us-israel-gaza-ground-invasion.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-25T21:47:24.000Z" + }, + { + "creator": "Derrick Bryson Taylor", + "title": "Traveler Stranded in Acapulco Recounts \u2018Apocalyptic\u2019 Hurricane Otis", + "link": "https://www.nytimes.com/2023/10/25/world/americas/acapulco-mexico-hurricane-otis-conditions.html", + "pubDate": "Wed, 25 Oct 2023 21:38:18 +0000", + "dc:creator": "Derrick Bryson Taylor", + "content": "\u201cIt was really terrifying,\u201d said one visitor who was attending a mining convention in the Mexican city.", + "contentSnippet": "\u201cIt was really terrifying,\u201d said one visitor who was attending a mining convention in the Mexican city.", + "guid": "https://www.nytimes.com/2023/10/25/world/americas/acapulco-mexico-hurricane-otis-conditions.html", + "categories": [ + { + "_": "vis-video", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Acapulco (Mexico)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hurricane Otis (2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T21:38:18.000Z" + }, + { + "creator": "Michael Levenson", + "title": "Carnival Was Negligent in Covid Outbreak on Cruise Ship, Court Rules", + "link": "https://www.nytimes.com/2023/10/25/world/australia/carnival-cruise-covid-ruby-princess.html", + "pubDate": "Wed, 25 Oct 2023 21:37:29 +0000", + "dc:creator": "Michael Levenson", + "content": "An Australian judge found that the cruise company and a subsidiary \u201cbreached their duty of care\u201d in handling a coronavirus outbreak on the Ruby Princess in March 2020.", + "contentSnippet": "An Australian judge found that the cruise company and a subsidiary \u201cbreached their duty of care\u201d in handling a coronavirus outbreak on the Ruby Princess in March 2020.", + "guid": "https://www.nytimes.com/2023/10/25/world/australia/carnival-cruise-covid-ruby-princess.html", + "categories": [ + { + "_": "Coronavirus (2019-nCoV)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cruises", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carnival Cruise Lines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-25T21:37:29.000Z" + }, + { + "creator": "Justin Porter", + "title": "Thursday Briefing: Gaza Is Running Out of Fuel", + "link": "https://www.nytimes.com/2023/10/25/briefing/hamas-israel-war-us-house-speaker-japan-transgender.html", + "pubDate": "Wed, 25 Oct 2023 21:17:53 +0000", + "dc:creator": "Justin Porter", + "content": "Plus Vietnam\u2019s many cable cars.", + "contentSnippet": "Plus Vietnam\u2019s many cable cars.", + "guid": "https://www.nytimes.com/2023/10/25/briefing/hamas-israel-war-us-house-speaker-japan-transgender.html", + "categories": [ + { + "_": "Far East, South and Southeast Asia and Pacific Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Transgender", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T21:17:53.000Z" + }, + { + "creator": "Katie Rogers", + "title": "Biden Reaffirms Support for Israel but Calls for Protection of Civilians", + "link": "https://www.nytimes.com/2023/10/25/us/politics/biden-albanese-australia-israel.html", + "pubDate": "Wed, 25 Oct 2023 21:10:22 +0000", + "dc:creator": "Katie Rogers", + "content": "During an appearance with the Australian prime minister, President Biden pledged that the United States would provide Israel with what it needed to defend itself against Hamas.", + "contentSnippet": "During an appearance with the Australian prime minister, President Biden pledged that the United States would provide Israel with what it needed to defend itself against Hamas.", + "guid": "https://www.nytimes.com/2023/10/25/us/politics/biden-albanese-australia-israel.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States Navy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Albanese, Anthony (1963- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Australia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Submarines and Submersibles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nuclear Weapons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Trade and World Market", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Papua New Guinea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-25T21:10:22.000Z" + }, + { + "creator": "Suhasini Raj and Atul Loke", + "title": "A Hindu Mardi Gras Where Indian Progressivism Is Alive and Well", + "link": "https://www.nytimes.com/2023/10/25/world/asia/india-durga-puja.html", + "pubDate": "Wed, 25 Oct 2023 21:07:02 +0000", + "dc:creator": "Suhasini Raj and Atul Loke", + "content": "A huge religious carnival shows that India remains a country of diverse political and social beliefs, despite the right-wing national government\u2019s dominance.", + "contentSnippet": "A huge religious carnival shows that India remains a country of diverse political and social beliefs, despite the right-wing national government\u2019s dominance.", + "guid": "https://www.nytimes.com/2023/10/25/world/asia/india-durga-puja.html", + "categories": [ + { + "_": "Hinduism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Right-Wing Extremism and Alt-Right", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Women and Girls", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T21:07:02.000Z" + }, + { + "creator": "Yousur Al-Hlou", + "title": "From Gaza, an Audio Diary of Despair", + "link": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-teenager-audio-diary.html", + "pubDate": "Wed, 25 Oct 2023 20:58:37 +0000", + "dc:creator": "Yousur Al-Hlou", + "content": "In a series of voice memos sent via WhatsApp, Tasneem Ismael Ahel, 19, described the war unfolding around her in Gaza City.", + "contentSnippet": "In a series of voice memos sent via WhatsApp, Tasneem Ismael Ahel, 19, described the war unfolding around her in Gaza City.", + "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/gaza-teenager-audio-diary.html", + "categories": [ + { + "_": "vis-video", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Audio Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Diaries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Evacuations and Evacuees", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Youth", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ahel, Tasneem Ismael", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-25T20:58:37.000Z" + }, + { + "creator": "Vjosa Isai", + "title": "Ex-Fashion Executive, Peter Nygard, Testifies in His Sexual Assault Trial", + "link": "https://www.nytimes.com/2023/10/25/world/canada/nygard-sexual-assault-trial.html", + "pubDate": "Wed, 25 Oct 2023 19:39:51 +0000", + "dc:creator": "Vjosa Isai", + "content": "A lawyer for Peter Nygard, a former fashion executive accused of sexually assaulting five women, described their testimony as \u201crevisionist history.\u2019\u2019", + "contentSnippet": "A lawyer for Peter Nygard, a former fashion executive accused of sexually assaulting five women, described their testimony as \u201crevisionist history.\u2019\u2019", + "guid": "https://www.nytimes.com/2023/10/25/world/canada/nygard-sexual-assault-trial.html", + "categories": [ + { + "_": "Sex Crimes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fashion and Apparel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Courts and the Judiciary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nygard, Peter", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Canada", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-25T19:39:51.000Z" + }, + { + "creator": "Judson Jones", + "title": "Why Hurricane Otis Caught Many By Surprise", + "link": "https://www.nytimes.com/2023/10/25/world/americas/hurricane-otis-mexico-intensity-surprise.html", + "pubDate": "Wed, 25 Oct 2023 19:30:45 +0000", + "dc:creator": "Judson Jones", + "content": "Storms don\u2019t normally go from a tropical storm to a Category 5 hurricane in a day.", + "contentSnippet": "Storms don\u2019t normally go from a tropical storm to a Category 5 hurricane in a day.", + "guid": "https://www.nytimes.com/2023/10/25/world/americas/hurricane-otis-mexico-intensity-surprise.html", + "categories": [ + { + "_": "Hurricanes and Tropical Storms", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Weather", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Satellites", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "National Hurricane Center", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Acapulco (Mexico)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-25T19:30:45.000Z" + }, + { + "creator": "Stephen Castle", + "title": "Shoplifting Surges in U.K., and Workers Face Scary Situations", + "link": "https://www.nytimes.com/2023/10/25/world/europe/uk-surge-shoplifting.html", + "pubDate": "Wed, 25 Oct 2023 18:39:34 +0000", + "dc:creator": "Stephen Castle", + "content": "As people try to walk away with goods, it\u2019s \u201clike the Wild West,\u201d says one store owner, whose employees have been hit and bitten on the job.", + "contentSnippet": "As people try to walk away with goods, it\u2019s \u201clike the Wild West,\u201d says one store owner, whose employees have been hit and bitten on the job.", + "guid": "https://www.nytimes.com/2023/10/25/world/europe/uk-surge-shoplifting.html", + "categories": [ + { + "_": "Coronavirus (2019-nCoV)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shoplifting and Employee Theft (Retail)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Crime and Criminals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Small Business", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supermarkets and Grocery Stores", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shopping and Retail", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Workplace Hazards and Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Birmingham (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Bournemouth (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "England", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Southampton (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-25T18:39:34.000Z" + }, + { + "creator": "Jim Tankersley and Ben Casselman", + "title": "Biden Seeks to Tame Oil Prices if Mideast Conflict Sends Them Soaring", + "link": "https://www.nytimes.com/2023/10/25/business/economy/biden-oil-prices-middle-east.html", + "pubDate": "Wed, 25 Oct 2023 18:06:45 +0000", + "dc:creator": "Jim Tankersley and Ben Casselman", + "content": "The president has previously drawn down the Strategic Petroleum Reserve to ease price pressures, but that could be more difficult now", + "contentSnippet": "The president has previously drawn down the Strategic Petroleum Reserve to ease price pressures, but that could be more difficult now", + "guid": "https://www.nytimes.com/2023/10/25/business/economy/biden-oil-prices-middle-east.html", + "categories": [ + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Economy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Production", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Strategic Petroleum Reserve (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Energy and Power", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T18:06:45.000Z" + }, + { + "creator": "Farnaz Fassihi", + "title": "Israel Calls For U.N. Secretary General Guterres to Resign ", + "link": "https://www.nytimes.com/2023/10/25/world/middleeast/un-security-council-guterres-israel.html", + "pubDate": "Wed, 25 Oct 2023 15:25:46 +0000", + "dc:creator": "Farnaz Fassihi", + "content": "Israel called for the U.N. secretary general to resign after he said that Hamas\u2019s \u201cappalling attacks cannot justify the collective punishment of the Palestinian people.\u201d", + "contentSnippet": "Israel called for the U.N. secretary general to resign after he said that Hamas\u2019s \u201cappalling attacks cannot justify the collective punishment of the Palestinian people.\u201d", + "guid": "https://www.nytimes.com/2023/10/25/world/middleeast/un-security-council-guterres-israel.html", + "categories": [ + { + "_": "Guterres, Antonio", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Security Council (UN)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-25T15:25:46.000Z" + }, + { + "creator": "Clifford Krauss", + "title": "Chasing Big Mergers, Oil Executives Dismiss Peak Oil Concerns", + "link": "https://www.nytimes.com/2023/10/25/business/energy-environment/exxon-chevron-oil-mergers-peak.html", + "pubDate": "Wed, 25 Oct 2023 15:14:11 +0000", + "dc:creator": "Clifford Krauss", + "content": "Exxon Mobil and Chevron are spending tens of billions of dollars buying oil and gas assets, betting that the International Energy Agency\u2019s predictions of declining oil demand are wrong.", + "contentSnippet": "Exxon Mobil and Chevron are spending tens of billions of dollars buying oil and gas assets, betting that the International Energy Agency\u2019s predictions of declining oil demand are wrong.", + "guid": "https://www.nytimes.com/2023/10/25/business/energy-environment/exxon-chevron-oil-mergers-peak.html", + "categories": [ + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Natural Gas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mergers, Acquisitions and Divestitures", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alternative and Renewable Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Production", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stocks and Bonds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Batteries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Solar Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carbon Capture and Sequestration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Chevron Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Exxon Mobil Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hess Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Pioneer Natural Resources Company", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Energy Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-25T15:14:11.000Z" + }, + { + "creator": "Amanda Taub", + "title": "What I Read and Watch to Decompress", + "link": "https://www.nytimes.com/2023/10/25/world/europe/interpreter-read-watch-recommend.html", + "pubDate": "Wed, 25 Oct 2023 14:32:27 +0000", + "dc:creator": "Amanda Taub", + "content": "Some Jane Austen and a tennis rom-com are just right the right relief when news of fighting and war takes a toll.", + "contentSnippet": "Some Jane Austen and a tennis rom-com are just right the right relief when news of fighting and war takes a toll.", + "guid": "https://www.nytimes.com/2023/10/25/world/europe/interpreter-read-watch-recommend.html", + "categories": [ + { + "_": "internal-sub-only-nl", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Books and Literature", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tennis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Soccer", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Austen, Jane", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Beckham, David", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Documentary Films and Programs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T14:32:27.000Z" + }, + { + "creator": "Hikari Hida and Motoko Rich", + "title": "Transgender Ruling Is Step Forward for L.G.B.T.Q. Rights in Japan", + "link": "https://www.nytimes.com/2023/10/25/world/asia/japan-transgender.html", + "pubDate": "Wed, 25 Oct 2023 11:48:35 +0000", + "dc:creator": "Hikari Hida and Motoko Rich", + "content": "The Supreme Court declared unconstitutional a legal clause requiring transgender people to undergo sterilization to legally change their gender identity.", + "contentSnippet": "The Supreme Court declared unconstitutional a legal clause requiring transgender people to undergo sterilization to legally change their gender identity.", + "guid": "https://www.nytimes.com/2023/10/25/world/asia/japan-transgender.html", + "categories": [ + { + "_": "Japan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Transgender", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Discrimination", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sterilization (Reproductive)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T11:48:35.000Z" + }, + { + "creator": "Maria Varenikova", + "title": "As Ukraine War Grinds On, Widows Try to See Life After Loss", + "link": "https://www.nytimes.com/2023/10/25/world/europe/ukraine-war-widows.html", + "pubDate": "Wed, 25 Oct 2023 09:01:58 +0000", + "dc:creator": "Maria Varenikova", + "content": "Support groups formed to help thousands of new widows see a dual role in healing their nation. \u201cOur society was not ready to face such scale of grief,\u201d one widow said.", + "contentSnippet": "Support groups formed to help thousands of new widows see a dual role in healing their nation. \u201cOur society was not ready to face such scale of grief,\u201d one widow said.", + "guid": "https://www.nytimes.com/2023/10/25/world/europe/ukraine-war-widows.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Death and Dying", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Grief (Emotion)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T09:01:58.000Z" + }, + { + "creator": "Elisabetta Povoledo", + "title": "Women Will Vote at a Vatican Meeting for the First Time", + "link": "https://www.nytimes.com/2023/10/25/world/europe/women-vatican-synod-vote.html", + "pubDate": "Wed, 25 Oct 2023 08:00:42 +0000", + "dc:creator": "Elisabetta Povoledo", + "content": "Some women participating in a conference on sensitive church issues said they feel heartened by the discussions taking place, though change may remain slow.", + "contentSnippet": "Some women participating in a conference on sensitive church issues said they feel heartened by the discussions taking place, though change may remain slow.", + "guid": "https://www.nytimes.com/2023/10/25/world/europe/women-vatican-synod-vote.html", + "categories": [ + { + "_": "Priests", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cardinals (Roman Catholic Prelates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Discrimination", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nuns", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Women's Rights", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Women and Girls", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Roman Catholic Church", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Francis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Becquart, Nathalie", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "The Vatican", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-10-25T08:00:42.000Z" + }, + { + "creator": "Julian E. Barnes and David E. Sanger", + "title": "U.S. Cites \u2018High Confidence\u2019 Rocket From Gaza Caused Hospital Blast", + "link": "https://www.nytimes.com/2023/10/24/us/politics/intel-rocket-gaza-hospital-blast.html", + "pubDate": "Wed, 25 Oct 2023 03:19:56 +0000", + "dc:creator": "Julian E. Barnes and David E. Sanger", + "content": "American intelligence agencies released no new declassified imagery or other new evidence to make their case. Officials said their strengthened assessment was based on video evidence.", + "contentSnippet": "American intelligence agencies released no new declassified imagery or other new evidence to make their case. Officials said their strengthened assessment was based on video evidence.", + "guid": "https://www.nytimes.com/2023/10/24/us/politics/intel-rocket-gaza-hospital-blast.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hospitals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Al Ahli Arab Hospital (Gaza Strip)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinian Islamic Jihad", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T03:19:56.000Z" + }, + { + "creator": "Erica L. Green and Michael Crowley", + "title": "U.S. Says a Cease-Fire in the Israel War Would Only Benefit Hamas", + "link": "https://www.nytimes.com/2023/10/24/us/politics/israel-hamas-cease-fire.html", + "pubDate": "Tue, 24 Oct 2023 23:45:56 +0000", + "dc:creator": "Erica L. Green and Michael Crowley", + "content": "A White House spokesman said the administration supported humanitarian pauses to allow aid to reach Gaza and civilians to evacuate.", + "contentSnippet": "A White House spokesman said the administration supported humanitarian pauses to allow aid to reach Gaza and civilians to evacuate.", + "guid": "https://www.nytimes.com/2023/10/24/us/politics/israel-hamas-cease-fire.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Security Council (UN)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Blinken, Antony J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kirby, John F", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-24T23:45:56.000Z" + }, + { + "creator": "Nicole Sperling", + "title": "After Outcry, Writers Guild Tries to Explain Silence on Hamas Attack", + "link": "https://www.nytimes.com/2023/10/24/business/media/writers-guild-of-america-hamas-attack.html", + "pubDate": "Tue, 24 Oct 2023 22:18:12 +0000", + "dc:creator": "Nicole Sperling", + "content": "The union said it had made no public statement because \u201cwe are American labor leaders, aware of our limitations and humbled by the magnitude of this conflict.\u201d", + "contentSnippet": "The union said it had made no public statement because \u201cwe are American labor leaders, aware of our limitations and humbled by the magnitude of this conflict.\u201d", + "guid": "https://www.nytimes.com/2023/10/24/business/media/writers-guild-of-america-hamas-attack.html", + "categories": [ + { + "_": "Organized Labor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Writers Guild of America", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Writing and Writers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Jews and Judaism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-24T22:18:12.000Z" + }, + { + "creator": "Kate Kelly, Vivian Nereim, Mark Mazzetti and Edward Wong", + "title": "Saudi Arabia Warns U.S.: Israeli Invasion of Gaza Could Be Catastrophic", + "link": "https://www.nytimes.com/2023/10/27/world/middleeast/saudi-arabia-israel-us-invasion.html", + "pubDate": "Fri, 27 Oct 2023 15:33:11 +0000", + "dc:creator": "Kate Kelly, Vivian Nereim, Mark Mazzetti and Edward Wong", + "content": "In discussions with their American counterparts, Saudi officials have framed a ground war as a potentially devastating blow to stability in the Middle East.", + "contentSnippet": "In discussions with their American counterparts, Saudi officials have framed a ground war as a potentially devastating blow to stability in the Middle East.", + "guid": "https://www.nytimes.com/2023/10/27/world/middleeast/saudi-arabia-israel-us-invasion.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mohammed bin Salman (1985- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Saudi Arabia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T15:33:11.000Z" + }, + { + "creator": "Jason Horowitz and Elisabetta Povoledo", + "title": "Berlusconi Bequeaths a Warehouse of Art Befitting the Man", + "link": "https://www.nytimes.com/2023/10/27/world/europe/berlusconis-art-collection.html", + "pubDate": "Fri, 27 Oct 2023 14:55:49 +0000", + "dc:creator": "Jason Horowitz and Elisabetta Povoledo", + "content": "The Italian media mogul bought up some 25,000 paintings, many on TV shopping binges, before he died this year. Now no one knows what to do with them.", + "contentSnippet": "The Italian media mogul bought up some 25,000 paintings, many on TV shopping binges, before he died this year. Now no one knows what to do with them.", + "guid": "https://www.nytimes.com/2023/10/27/world/europe/berlusconis-art-collection.html", + "categories": [ + { + "_": "Art", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Collectors and Collections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Television", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Age, Chronological", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shopping and Retail", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Berlusconi, Silvio", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Meloni, Giorgia (1977- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Italy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T14:55:49.000Z" + }, + { + "creator": "Mike Ives", + "title": "Celine Dion \u2018Siren Battles\u2019 Prompt Complaints in New Zealand City", + "link": "https://www.nytimes.com/2023/10/27/world/australia/siren-battles-new-zealand-celine-dion.html", + "pubDate": "Fri, 27 Oct 2023 14:30:04 +0000", + "dc:creator": "Mike Ives", + "content": "A subculture has developed among Pacific Islander communities based on who can blast music \u2014 often Ms. Dion\u2019s songs \u2014 the loudest. Some call it too disruptive.", + "contentSnippet": "A subculture has developed among Pacific Islander communities based on who can blast music \u2014 often Ms. Dion\u2019s songs \u2014 the loudest. Some call it too disruptive.", + "guid": "https://www.nytimes.com/2023/10/27/world/australia/siren-battles-new-zealand-celine-dion.html", + "categories": [ + { + "_": "Noise", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Speakers (Audio)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dion, Celine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Jawsh 685 (2003- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Auckland (New Zealand)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "New Zealand", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Wellington (New Zealand)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T14:30:04.000Z" + }, + { + "creator": "Rory Smith", + "title": "At Barcelona, Timing Is Everything", + "link": "https://www.nytimes.com/2023/10/27/world/europe/barcelona-real-madrid-clasico.html", + "pubDate": "Fri, 27 Oct 2023 14:30:02 +0000", + "dc:creator": "Rory Smith", + "content": "The Barcelona team that faces Real Madrid in Saturday\u2019s Cl\u00e1sico will be marked by youth, mostly because the club\u2019s dire straits meant it had to be.", + "contentSnippet": "The Barcelona team that faces Real Madrid in Saturday\u2019s Cl\u00e1sico will be marked by youth, mostly because the club\u2019s dire straits meant it had to be.", + "guid": "https://www.nytimes.com/2023/10/27/world/europe/barcelona-real-madrid-clasico.html", + "categories": [ + { + "_": "Soccer", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Barcelona (Soccer Team)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Real Madrid (Soccer Team)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Messi, Lionel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Haaland, Erling Braut", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bonmati, Aitana", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gavi (2004- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-27T14:30:02.000Z" + }, + { + "creator": "Ivan Nechepurenko", + "title": "Russia\u2019s Central Bank Raises Rates to 15 Percent to Curb Inflation", + "link": "https://www.nytimes.com/2023/10/27/world/europe/russias-central-bank-interest-rates-inflation.html", + "pubDate": "Fri, 27 Oct 2023 13:59:01 +0000", + "dc:creator": "Ivan Nechepurenko", + "content": "The jump, from 13 percent, would bring a long period of \u201ctight monetary conditions\u201d in order to ease price pressures, the bank said.", + "contentSnippet": "The jump, from 13 percent, would bring a long period of \u201ctight monetary conditions\u201d in order to ease price pressures, the bank said.", + "guid": "https://www.nytimes.com/2023/10/27/world/europe/russias-central-bank-interest-rates-inflation.html", + "categories": [ + { + "_": "Banking and Financial Institutions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Interest Rates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation (Economics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T13:59:01.000Z" + }, + { + "creator": "Alan Rappeport", + "title": "U.S. Imposes New Sanctions to Cut Off Hamas Funding", + "link": "https://www.nytimes.com/2023/10/27/world/middleeast/us-sanctions-hamas.html", + "pubDate": "Fri, 27 Oct 2023 13:39:36 +0000", + "dc:creator": "Alan Rappeport", + "content": "The Biden administration also targeted the group\u2019s Iranian supporters.", + "contentSnippet": "The Biden administration also targeted the group\u2019s Iranian supporters.", + "guid": "https://www.nytimes.com/2023/10/27/world/middleeast/us-sanctions-hamas.html", + "categories": [ + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-27T13:39:36.000Z" + } +] diff --git a/intro to react/newData/oldNews/917d100f9d2cc9174f5dc156d573a898b5ba693940f5781f847407180bd43209.json b/intro to react/newData/oldNews/917d100f9d2cc9174f5dc156d573a898b5ba693940f5781f847407180bd43209.json index 3f0f73e..d01cb56 100644 --- a/intro to react/newData/oldNews/917d100f9d2cc9174f5dc156d573a898b5ba693940f5781f847407180bd43209.json +++ b/intro to react/newData/oldNews/917d100f9d2cc9174f5dc156d573a898b5ba693940f5781f847407180bd43209.json @@ -1,3314 +1,3314 @@ [ - { - "title": "Three Israelis killed by Palestinian gunmen at Jerusalem bus stop", - "link": "https://www.bbc.co.uk/news/world-middle-east-67575684?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 22:45:08 GMT", - "content": "Two Palestinian gunmen from Hamas fired at people waiting on a highway in the city's west, police say.", - "contentSnippet": "Two Palestinian gunmen from Hamas fired at people waiting on a highway in the city's west, police say.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67575684", - "isoDate": "2023-11-30T22:45:08.000Z" - }, - { - "title": "Mia Schem: Wounded festival-goer in Hamas hostage video freed", - "link": "https://www.bbc.co.uk/news/world-middle-east-67582027?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 22:14:30 GMT", - "content": "Mia Schem is among eight more people released from Gaza on Thursday, in a swap for Palestinian prisoners.", - "contentSnippet": "Mia Schem is among eight more people released from Gaza on Thursday, in a swap for Palestinian prisoners.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67582027", - "isoDate": "2023-11-30T22:14:30.000Z" - }, - { - "title": "Who are the released hostages?", - "link": "https://www.bbc.co.uk/news/world-middle-east-67477240?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 21:56:07 GMT", - "content": "One-hundred-and-five people captured during the 7 October attacks have been released by Hamas.", - "contentSnippet": "One-hundred-and-five people captured during the 7 October attacks have been released by Hamas.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67477240", - "isoDate": "2023-11-30T21:56:07.000Z" - }, - { - "title": "Israel recalls ambassador in war spat with Spain PM Pedro S\u00e1nchez", - "link": "https://www.bbc.co.uk/news/world-europe-67575699?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 20:21:14 GMT", - "content": "Pedro S\u00e1nchez deepens a row, saying he has \"serious doubts\" Israel is complying with humanitarian law.", - "contentSnippet": "Pedro S\u00e1nchez deepens a row, saying he has \"serious doubts\" Israel is complying with humanitarian law.", - "guid": "https://www.bbc.co.uk/news/world-europe-67575699", - "isoDate": "2023-11-30T20:21:14.000Z" - }, - { - "title": "Ukraine: Russian general 'blown up on mine'", - "link": "https://www.bbc.co.uk/news/world-europe-67579357?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 19:33:10 GMT", - "content": "Several pro-Kremlin sources reported Maj-Gen Vladimir Zavadsky's death, but his location is unclear.", - "contentSnippet": "Several pro-Kremlin sources reported Maj-Gen Vladimir Zavadsky's death, but his location is unclear.", - "guid": "https://www.bbc.co.uk/news/world-europe-67579357", - "isoDate": "2023-11-30T19:33:10.000Z" - }, - { - "title": "Firefighters crawl to rescue deer stuck on frozen lake", - "link": "https://www.bbc.co.uk/news/world-us-canada-67573279?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 18:08:39 GMT", - "content": "A stag in Minnesota was stranded on thin ice until a rescue team stepped in - on all fours.", - "contentSnippet": "A stag in Minnesota was stranded on thin ice until a rescue team stepped in - on all fours.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67573279", - "isoDate": "2023-11-30T18:08:39.000Z" - }, - { - "title": "Japan asks US to stop flying Osprey military aircrafts after deadly crash", - "link": "https://www.bbc.co.uk/news/world-asia-67582845?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 18:07:39 GMT", - "content": "An Osprey military aircraft came down off the coast of Yakushima, killing one crew member", - "contentSnippet": "An Osprey military aircraft came down off the coast of Yakushima, killing one crew member", - "guid": "https://www.bbc.co.uk/news/world-asia-67582845", - "isoDate": "2023-11-30T18:07:39.000Z" - }, - { - "title": "COP28: Poor countries win 30-year fight for climate cash", - "link": "https://www.bbc.co.uk/news/science-environment-67581277?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 17:40:43 GMT", - "content": "COP28 president Sultan al-Jaber pulled off an unexpected victory securing long-awaited climate disaster help.", - "contentSnippet": "COP28 president Sultan al-Jaber pulled off an unexpected victory securing long-awaited climate disaster help.", - "guid": "https://www.bbc.co.uk/news/science-environment-67581277", - "isoDate": "2023-11-30T17:40:43.000Z" - }, - { - "title": "Seventy-year-old Ugandan woman gives birth to twins - hospital", - "link": "https://www.bbc.co.uk/news/world-africa-67577038?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 16:29:13 GMT", - "content": "Safina Namukwaya used IVF treatment to conceive and gave birth via caesarean.", - "contentSnippet": "Safina Namukwaya used IVF treatment to conceive and gave birth via caesarean.", - "guid": "https://www.bbc.co.uk/news/world-africa-67577038", - "isoDate": "2023-11-30T16:29:13.000Z" - }, - { - "title": "Hamas hostages: Relief as Thai hostage is reunited with family", - "link": "https://www.bbc.co.uk/news/world-67579435?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 15:43:07 GMT", - "content": "Pornsawan Pinakalo fell to his knees when he was greeted by his father after nearly 50 days in captivity.", - "contentSnippet": "Pornsawan Pinakalo fell to his knees when he was greeted by his father after nearly 50 days in captivity.", - "guid": "https://www.bbc.co.uk/news/world-67579435", - "isoDate": "2023-11-30T15:43:07.000Z" - }, - { - "title": "Nearly 100,000 Gaza buildings may be damaged, satellite images show", - "link": "https://www.bbc.co.uk/news/world-middle-east-67565872?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 14:58:28 GMT", - "content": "Images commissioned by the BBC reveal damage across Gaza while video shows areas reduced to rubble.", - "contentSnippet": "Images commissioned by the BBC reveal damage across Gaza while video shows areas reduced to rubble.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67565872", - "isoDate": "2023-11-30T14:58:28.000Z" - }, - { - "title": "Inactive Google accounts to be deleted from Friday", - "link": "https://www.bbc.co.uk/news/technology-67578655?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 14:12:59 GMT", - "content": "The tech giant will start deleting accounts that are not being used.", - "contentSnippet": "The tech giant will start deleting accounts that are not being used.", - "guid": "https://www.bbc.co.uk/news/technology-67578655", - "isoDate": "2023-11-30T14:12:59.000Z" - }, - { - "title": "Swedish murder: Five teenagers found guilty over taxi driver's killing", - "link": "https://www.bbc.co.uk/news/world-europe-67577337?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 13:49:41 GMT", - "content": "The victim was lured to a nature reserve after one of the teenagers reported him for rape.", - "contentSnippet": "The victim was lured to a nature reserve after one of the teenagers reported him for rape.", - "guid": "https://www.bbc.co.uk/news/world-europe-67577337", - "isoDate": "2023-11-30T13:49:41.000Z" - }, - { - "title": "OpenAI chaos not about AI safety, says Microsoft boss", - "link": "https://www.bbc.co.uk/news/technology-67578656?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 13:19:27 GMT", - "content": "Microsoft's president says the sacking of OpenAI boss Sam Altman was not because of AI safety worries.", - "contentSnippet": "Microsoft's president says the sacking of OpenAI boss Sam Altman was not because of AI safety worries.", - "guid": "https://www.bbc.co.uk/news/technology-67578656", - "isoDate": "2023-11-30T13:19:27.000Z" - }, - { - "title": "Kayaker's 20m drop down ice waterfall in Svalbard, Norway", - "link": "https://www.bbc.co.uk/news/world-67578559?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 13:15:49 GMT", - "content": "Aniol Serrasolses' descent down a glacial waterfall in Svalbard is the biggest ever recorded.", - "contentSnippet": "Aniol Serrasolses' descent down a glacial waterfall in Svalbard is the biggest ever recorded.", - "guid": "https://www.bbc.co.uk/news/world-67578559", - "isoDate": "2023-11-30T13:15:49.000Z" - }, - { - "title": "Russian court bans 'LGBT movement'", - "link": "https://www.bbc.co.uk/news/world-europe-67565509?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 12:56:15 GMT", - "content": "Russia's Supreme Court declares the \"international LGBT public movement\" an extremist organisation.", - "contentSnippet": "Russia's Supreme Court declares the \"international LGBT public movement\" an extremist organisation.", - "guid": "https://www.bbc.co.uk/news/world-europe-67565509", - "isoDate": "2023-11-30T12:56:15.000Z" - }, - { - "title": "Fairytale of New York: Shane MacGowan, music and excess\u2019", - "link": "https://www.bbc.co.uk/news/entertainment-arts-20125315?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 12:07:18 GMT", - "content": "Charismatic Pogues frontman who successfully mixed punk with traditional Irish songs.", - "contentSnippet": "Charismatic Pogues frontman who successfully mixed punk with traditional Irish songs.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-20125315", - "isoDate": "2023-11-30T12:07:18.000Z" - }, - { - "title": "Henry Kissinger: Divisive diplomat who shaped world affairs", - "link": "https://www.bbc.co.uk/news/world-us-canada-19872410?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 11:09:18 GMT", - "content": "President Nixon's foreign affairs guru declared power to be the \"ultimate aphrodisiac\".", - "contentSnippet": "President Nixon's foreign affairs guru declared power to be the \"ultimate aphrodisiac\".", - "guid": "https://www.bbc.co.uk/news/world-us-canada-19872410", - "isoDate": "2023-11-30T11:09:18.000Z" - }, - { - "title": "Elon Musk launches profane attack on X advertisers", - "link": "https://www.bbc.co.uk/news/world-us-canada-67574396?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 06:42:44 GMT", - "content": "The billionaire accuses firms of trying to blackmail him with ad dollars, claiming they will kill X.", - "contentSnippet": "The billionaire accuses firms of trying to blackmail him with ad dollars, claiming they will kill X.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67574396", - "isoDate": "2023-11-30T06:42:44.000Z" - }, - { - "title": "Watch: Henry Kissinger\u2019s life and legacy in his own words", - "link": "https://www.bbc.co.uk/news/world-us-canada-67574846?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 04:38:10 GMT", - "content": "Former foreign policy giant Henry Kissinger has died aged 100.", - "contentSnippet": "Former foreign policy giant Henry Kissinger has died aged 100.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67574846", - "isoDate": "2023-11-30T04:38:10.000Z" - }, - { - "title": "Major snowstorm spawns travel chaos in US", - "link": "https://www.bbc.co.uk/news/world-us-canada-67573077?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 00:51:12 GMT", - "content": "A Nor'easter storm hit several states in the US with heavy winds and snow, creating a winter wonderland.", - "contentSnippet": "A Nor'easter storm hit several states in the US with heavy winds and snow, creating a winter wonderland.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67573077", - "isoDate": "2023-11-30T00:51:12.000Z" - }, - { - "title": "Why is North Korea saying it's watching the White House?", - "link": "https://www.bbc.co.uk/news/world-asia-67563543?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 29 Nov 2023 23:47:15 GMT", - "content": "Long spied on by its more tech-advanced enemies, Pyongyang says it can now do the same.", - "contentSnippet": "Long spied on by its more tech-advanced enemies, Pyongyang says it can now do the same.", - "guid": "https://www.bbc.co.uk/news/world-asia-67563543", - "isoDate": "2023-11-29T23:47:15.000Z" - }, - { - "title": "Cynthia Nixon urges Gaza ceasefire outside White House", - "link": "https://www.bbc.co.uk/news/world-us-canada-67573076?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 29 Nov 2023 23:38:14 GMT", - "content": "\u201cWe can't bomb our way to peace,\u201d the Sex and the City actress tells BBC News.", - "contentSnippet": "\u201cWe can't bomb our way to peace,\u201d the Sex and the City actress tells BBC News.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67573076", - "isoDate": "2023-11-29T23:38:14.000Z" - }, - { - "title": "Climate summit in an oil state: can COP28 change anything?", - "link": "https://www.bbc.co.uk/news/science-environment-67557533?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 29 Nov 2023 17:32:45 GMT", - "content": "The big issues facing global leaders gathering for the world's most important climate summit.", - "contentSnippet": "The big issues facing global leaders gathering for the world's most important climate summit.", - "guid": "https://www.bbc.co.uk/news/science-environment-67557533", - "isoDate": "2023-11-29T17:32:45.000Z" - }, - { - "title": "Family return to wreckage of their Gaza home", - "link": "https://www.bbc.co.uk/news/world-middle-east-67565673?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 29 Nov 2023 12:04:42 GMT", - "content": "Wael Qudeih has already had to rebuild his family home twice after previous conflicts.", - "contentSnippet": "Wael Qudeih has already had to rebuild his family home twice after previous conflicts.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67565673", - "isoDate": "2023-11-29T12:04:42.000Z" - }, - { - "title": "Rare Sumatran rhino born in Indonesia", - "link": "https://www.bbc.co.uk/news/world-asia-67564871?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 29 Nov 2023 10:10:03 GMT", - "content": "There are only around 40 of the animals left in the world, conservationists say.", - "contentSnippet": "There are only around 40 of the animals left in the world, conservationists say.", - "guid": "https://www.bbc.co.uk/news/world-asia-67564871", - "isoDate": "2023-11-29T10:10:03.000Z" - }, - { - "title": "Watch: Volcano in Japan spews ash, rock 200m into sky", - "link": "https://www.bbc.co.uk/news/world-asia-67562779?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 29 Nov 2023 00:56:25 GMT", - "content": "An explosive eruption sends volcanic rock hurtling into the sea around Niijima Island, south of Tokyo.", - "contentSnippet": "An explosive eruption sends volcanic rock hurtling into the sea around Niijima Island, south of Tokyo.", - "guid": "https://www.bbc.co.uk/news/world-asia-67562779", - "isoDate": "2023-11-29T00:56:25.000Z" - }, - { - "title": "Will Tesla's truck recover from its shattering start?", - "link": "https://www.bbc.co.uk/news/business-67580991?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 21:18:50 GMT", - "content": "Tesla boss Elon Musk says the new cybertruck will \"change the look of the roads\".", - "contentSnippet": "Tesla boss Elon Musk says the new cybertruck will \"change the look of the roads\".", - "guid": "https://www.bbc.co.uk/news/business-67580991", - "isoDate": "2023-11-30T21:18:50.000Z" - }, - { - "title": "Climate change: Saving Uganda's mountain gorillas", - "link": "https://www.bbc.co.uk/news/world-africa-67469712?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 01:25:02 GMT", - "content": "Rising temperatures are putting the health of endangered mountain gorillas at risk.", - "contentSnippet": "Rising temperatures are putting the health of endangered mountain gorillas at risk.", - "guid": "https://www.bbc.co.uk/news/world-africa-67469712", - "isoDate": "2023-12-01T01:25:02.000Z" - }, - { - "title": "Released Palestinians allege abuse in Israeli jails", - "link": "https://www.bbc.co.uk/news/world-middle-east-67581915?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 00:59:28 GMT", - "content": "Palestinians tell the BBC they were beaten and had dogs set on them while in Israeli detention.", - "contentSnippet": "Palestinians tell the BBC they were beaten and had dogs set on them while in Israeli detention.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67581915", - "isoDate": "2023-12-01T00:59:28.000Z" - }, - { - "title": "Elliott Erwitt: Legendary photographer dies aged 95", - "link": "https://www.bbc.co.uk/news/world-us-canada-67585590?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 00:48:04 GMT", - "content": "Magnum says he will be remembered for seeking out life's \"most absurd and charming moments\".", - "contentSnippet": "Magnum says he will be remembered for seeking out life's \"most absurd and charming moments\".", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67585590", - "isoDate": "2023-12-01T00:48:04.000Z" - }, - { - "title": "'Sued for millions by my abuser, I set up a social network instead'", - "link": "https://www.bbc.co.uk/news/business-67559541?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 00:18:42 GMT", - "content": "The app that gives women a place to speak out about about sexual harassment and other #MeToo issues.", - "contentSnippet": "The app that gives women a place to speak out about about sexual harassment and other #MeToo issues.", - "guid": "https://www.bbc.co.uk/news/business-67559541", - "isoDate": "2023-12-01T00:18:42.000Z" - }, - { - "title": "Henry Kissinger: China mourns 'a most valued old friend'", - "link": "https://www.bbc.co.uk/news/world-asia-china-67563597?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 22:00:01 GMT", - "content": "The death of the contentious former US secretary of state draws nostalgia and compliments in China.", - "contentSnippet": "The death of the contentious former US secretary of state draws nostalgia and compliments in China.", - "guid": "https://www.bbc.co.uk/news/world-asia-china-67563597", - "isoDate": "2023-11-30T22:00:01.000Z" - }, - { - "title": "US Senator Rand Paul performs Heimlich on Senator Joni Ernst", - "link": "https://www.bbc.co.uk/news/world-us-canada-67572747?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 01:59:16 GMT", - "content": "Rand Paul of Kentucky performs the Heimlich manoeuvre on fellow Republican Joni Ernst of Iowa.", - "contentSnippet": "Rand Paul of Kentucky performs the Heimlich manoeuvre on fellow Republican Joni Ernst of Iowa.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67572747", - "isoDate": "2023-12-01T01:59:16.000Z" - }, - { - "title": "Africa's week in pictures: 24-30 November 2023", - "link": "https://www.bbc.co.uk/news/world-africa-67577884?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 01:57:07 GMT", - "content": "A selection of the best photos from across the African continent this week.", - "contentSnippet": "A selection of the best photos from across the African continent this week.", - "guid": "https://www.bbc.co.uk/news/world-africa-67577884", - "isoDate": "2023-12-01T01:57:07.000Z" - }, - { - "title": "Filmmakers discover 128-year-old shipwreck", - "link": "https://www.bbc.co.uk/news/world-us-canada-67585811?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 00:02:19 GMT", - "content": "The hulk of the 'Africa' is found on the bed of Lake Huron in Canada by filmmakers looking for mussels.", - "contentSnippet": "The hulk of the 'Africa' is found on the bed of Lake Huron in Canada by filmmakers looking for mussels.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67585811", - "isoDate": "2023-12-01T00:02:19.000Z" - }, - { - "title": "What US agents knew before a Canadian Sikh activist was killed", - "link": "https://www.bbc.co.uk/news/world-us-canada-67582825?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 23:02:27 GMT", - "content": "A foiled murder plot in the US has links to a case which sparked Canada's diplomatic row with India.", - "contentSnippet": "A foiled murder plot in the US has links to a case which sparked Canada's diplomatic row with India.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67582825", - "isoDate": "2023-11-30T23:02:27.000Z" - }, - { - "title": "George Santos' tumultuous term... 1 year in 1 minute", - "link": "https://www.bbc.co.uk/news/world-us-canada-67573281?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 18:57:55 GMT", - "content": "The embattled Republican may be expelled from Congress this week, but he won't go down without a fight.", - "contentSnippet": "The embattled Republican may be expelled from Congress this week, but he won't go down without a fight.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67573281", - "isoDate": "2023-11-30T18:57:55.000Z" - }, - { - "title": "Shane MacGowan: NYPD bagpiper recalls rollicking shoot of classic Pogues video", - "link": "https://www.bbc.co.uk/news/world-us-canada-67585275?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 22:55:29 GMT", - "content": "When they starred in Fairytale of New York, the Irish-American officers had never heard of The Pogues.", - "contentSnippet": "When they starred in Fairytale of New York, the Irish-American officers had never heard of The Pogues.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67585275", - "isoDate": "2023-11-30T22:55:29.000Z" - }, - { - "title": "Hunter Biden faces second federal indictment, this time on tax evasion", - "link": "https://www.bbc.co.uk/news/world-us-canada-67656575?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 07:49:54 GMT", - "content": "The president's son allegedly evaded at least $1.4m in taxes while funding an \"extravagant lifestyle\".", - "contentSnippet": "The president's son allegedly evaded at least $1.4m in taxes while funding an \"extravagant lifestyle\".", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67656575", - "isoDate": "2023-12-08T07:49:54.000Z" - }, - { - "title": "Israel Gaza war: UPenn loses $100m donation after House testimony", - "link": "https://www.bbc.co.uk/news/world-us-canada-67655910?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 07:07:10 GMT", - "content": "A major University of Pennsylvania donor withdraws grant after Congress hearing about antisemitism on campus.", - "contentSnippet": "A major University of Pennsylvania donor withdraws grant after Congress hearing about antisemitism on campus.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67655910", - "isoDate": "2023-12-08T07:07:10.000Z" - }, - { - "title": "Saudi Arabia World Cup 2034: Sports minister defends state's right to host", - "link": "https://www.bbc.co.uk/sport/football/67650721?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 06:35:48 GMT", - "content": "Sports Minister Prince Abdulaziz bin Turki Al Faisal defends Saudi Arabia's right to host the 2034 World Cup in exclusive interview with BBC sports editor Dan Roan.", - "contentSnippet": "Sports Minister Prince Abdulaziz bin Turki Al Faisal defends Saudi Arabia's right to host the 2034 World Cup in exclusive interview with BBC sports editor Dan Roan.", - "guid": "https://www.bbc.co.uk/sport/football/67650721", - "isoDate": "2023-12-08T06:35:48.000Z" - }, - { - "title": "Qatar: Indian ambassador meets eight ex-naval officers on death row", - "link": "https://www.bbc.co.uk/news/world-asia-india-67656682?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 05:25:04 GMT", - "content": "Media reports say the men have been charged with spying, but India and Qatar have not confirmed this.", - "contentSnippet": "Media reports say the men have been charged with spying, but India and Qatar have not confirmed this.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67656682", - "isoDate": "2023-12-08T05:25:04.000Z" - }, - { - "title": "Disney: Elon Musk calls for boss to be fired over ad spat", - "link": "https://www.bbc.co.uk/news/business-67656437?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 05:13:54 GMT", - "content": "It comes a week after the multi-billionaire launched a profane attack on advertisers that left X.", - "contentSnippet": "It comes a week after the multi-billionaire launched a profane attack on advertisers that left X.", - "guid": "https://www.bbc.co.uk/news/business-67656437", - "isoDate": "2023-12-08T05:13:54.000Z" - }, - { - "title": "Israel Gaza: Palestinians mourn controversial writer killed in air strike", - "link": "https://www.bbc.co.uk/news/world-middle-east-67656787?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 05:11:18 GMT", - "content": "Writer and literary scholar Refaat Alareer was killed in an air strike on Wednesday, his family say.", - "contentSnippet": "Writer and literary scholar Refaat Alareer was killed in an air strike on Wednesday, his family say.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67656787", - "isoDate": "2023-12-08T05:11:18.000Z" - }, - { - "title": "\"We can't stop\" - the Israeli woman still helping sick Palestinians", - "link": "https://www.bbc.co.uk/news/world-67592468?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 05:01:29 GMT", - "content": "Volunteers used to drive sick Gazans to hospital. Hamas's attack on 7 October changed everything.", - "contentSnippet": "Volunteers used to drive sick Gazans to hospital. Hamas's attack on 7 October changed everything.", - "guid": "https://www.bbc.co.uk/news/world-67592468", - "isoDate": "2023-12-08T05:01:29.000Z" - }, - { - "title": "Hunter Biden's tax indictment: Drugs, escorts and girlfriends", - "link": "https://www.bbc.co.uk/news/world-us-canada-67656796?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 04:44:51 GMT", - "content": "Mr Biden allegedly spent a fortune on \"various women\", \"adult entertainment\", luxury hotels and cars.", - "contentSnippet": "Mr Biden allegedly spent a fortune on \"various women\", \"adult entertainment\", luxury hotels and cars.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67656796", - "isoDate": "2023-12-08T04:44:51.000Z" - }, - { - "title": "Two arrested in France over alleged bedbug scam", - "link": "https://www.bbc.co.uk/news/world-europe-67655992?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 03:18:25 GMT", - "content": "Police in Strasbourg say the men charged victims thousands of euros for pest control they did not need.", - "contentSnippet": "Police in Strasbourg say the men charged victims thousands of euros for pest control they did not need.", - "guid": "https://www.bbc.co.uk/news/world-europe-67655992", - "isoDate": "2023-12-08T03:18:25.000Z" - }, - { - "title": "Zimbabwe's CCC crisis: Farce turning to tragedy for the opposition", - "link": "https://www.bbc.co.uk/news/world-africa-67647449?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 02:51:59 GMT", - "content": "The CCC faces by-elections after an \"imposter\" expels its MPs - to the delight of the ruling party.", - "contentSnippet": "The CCC faces by-elections after an \"imposter\" expels its MPs - to the delight of the ruling party.", - "guid": "https://www.bbc.co.uk/news/world-africa-67647449", - "isoDate": "2023-12-08T02:51:59.000Z" - }, - { - "title": "Africa's week in pictures: 1-7 December 2023", - "link": "https://www.bbc.co.uk/news/world-africa-67647452?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 02:49:17 GMT", - "content": "A selection of the best photos from across the African continent this week.", - "contentSnippet": "A selection of the best photos from across the African continent this week.", - "guid": "https://www.bbc.co.uk/news/world-africa-67647452", - "isoDate": "2023-12-08T02:49:17.000Z" - }, - { - "title": "COP28: Five reasons for optimism on climate", - "link": "https://www.bbc.co.uk/news/science-environment-67627242?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 02:18:43 GMT", - "content": "Amid all the doom and gloom on climate change, there are some good reasons for cautious optimism.", - "contentSnippet": "Amid all the doom and gloom on climate change, there are some good reasons for cautious optimism.", - "guid": "https://www.bbc.co.uk/news/science-environment-67627242", - "isoDate": "2023-12-08T02:18:43.000Z" - }, - { - "title": "UNLV shooting: Ex-professor had 'target list' when he killed three on campus", - "link": "https://www.bbc.co.uk/news/world-us-canada-67656116?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 01:19:51 GMT", - "content": "Officials said being denied \"several\" jobs at various colleges may have been a motive for the shooting.", - "contentSnippet": "Officials said being denied \"several\" jobs at various colleges may have been a motive for the shooting.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67656116", - "isoDate": "2023-12-08T01:19:51.000Z" - }, - { - "title": "The weird materials behind sustainable furniture", - "link": "https://www.bbc.co.uk/news/business-67425538?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 00:05:05 GMT", - "content": "Seaweed, coffee bean shells and fungus are all being employed to cut the use of plastic in furniture.", - "contentSnippet": "Seaweed, coffee bean shells and fungus are all being employed to cut the use of plastic in furniture.", - "guid": "https://www.bbc.co.uk/news/business-67425538", - "isoDate": "2023-12-08T00:05:05.000Z" - }, - { - "title": "Bribie Island: Australian man dies after being buried in sand", - "link": "https://www.bbc.co.uk/news/world-australia-67609962?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 00:03:41 GMT", - "content": "Josh Taylor, 23, suffered severe injuries after he fell into a hole on Queensland's Bribie Island.", - "contentSnippet": "Josh Taylor, 23, suffered severe injuries after he fell into a hole on Queensland's Bribie Island.", - "guid": "https://www.bbc.co.uk/news/world-australia-67609962", - "isoDate": "2023-12-08T00:03:41.000Z" - }, - { - "title": "Anna Mani: Why you need to know this Indian weather scientist", - "link": "https://www.bbc.co.uk/news/world-asia-india-67634192?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 22:33:06 GMT", - "content": "Anna Mani, one of India's first women scientists, broke barriers to blaze a trail in meteorology.", - "contentSnippet": "Anna Mani, one of India's first women scientists, broke barriers to blaze a trail in meteorology.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67634192", - "isoDate": "2023-12-07T22:33:06.000Z" - }, - { - "title": "Santos riots: Police fire tear gas at supporters rioting", - "link": "https://www.bbc.co.uk/news/world-latin-america-67655016?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 22:27:40 GMT", - "content": "Pele's former football club has been relegated for the first time in 111 years, resulting in riots across Santos.", - "contentSnippet": "Pele's former football club has been relegated for the first time in 111 years, resulting in riots across Santos.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67655016", - "isoDate": "2023-12-07T22:27:40.000Z" - }, - { - "title": "Taiwan: The 'God Flower' vanishing because of climate change", - "link": "https://www.bbc.co.uk/news/world-asia-67342419?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 22:26:19 GMT", - "content": "The Dendrobium orchid is sacred to Taiwan's Tsou tribe, but it is getting harder and harder to find.", - "contentSnippet": "The Dendrobium orchid is sacred to Taiwan's Tsou tribe, but it is getting harder and harder to find.", - "guid": "https://www.bbc.co.uk/news/world-asia-67342419", - "isoDate": "2023-12-07T22:26:19.000Z" - }, - { - "title": "Issam Abdallah: Rights groups want Israel investigated over killed journalist", - "link": "https://www.bbc.co.uk/news/world-middle-east-67652774?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 20:29:35 GMT", - "content": "Amnesty and Human Rights Watch say a tank crew probably deliberately fired on Issam Abdallah.", - "contentSnippet": "Amnesty and Human Rights Watch say a tank crew probably deliberately fired on Issam Abdallah.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67652774", - "isoDate": "2023-12-07T20:29:35.000Z" - }, - { - "title": "Israel war cabinet minister's son killed in Gaza fighting", - "link": "https://www.bbc.co.uk/news/world-middle-east-67654848?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 19:16:59 GMT", - "content": "Gadi Eisenkot's son Gal, 25, died after a tunnel shaft exploded in northern Gaza, Israeli media say.", - "contentSnippet": "Gadi Eisenkot's son Gal, 25, died after a tunnel shaft exploded in northern Gaza, Israeli media say.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67654848", - "isoDate": "2023-12-07T19:16:59.000Z" - }, - { - "title": "Hundreds queue for food in central Gaza city", - "link": "https://www.bbc.co.uk/news/world-middle-east-67655015?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 19:02:57 GMT", - "content": "As hunger spreads, the UN says it can no longer run a dependable humanitarian operation.", - "contentSnippet": "As hunger spreads, the UN says it can no longer run a dependable humanitarian operation.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67655015", - "isoDate": "2023-12-07T19:02:57.000Z" - }, - { - "title": "Moment Texas judge grants woman's request to abortion", - "link": "https://www.bbc.co.uk/news/world-us-canada-67655149?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 18:33:22 GMT", - "content": "Kate Cox says her foetus has a lethal abnormality that poses a risk to her health and future fertility.", - "contentSnippet": "Kate Cox says her foetus has a lethal abnormality that poses a risk to her health and future fertility.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67655149", - "isoDate": "2023-12-07T18:33:22.000Z" - }, - { - "title": "In pictures: Germany's Scholz lights first candle as Hanukkah celebrated around the world", - "link": "https://www.bbc.co.uk/news/world-europe-67647472?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 17:57:23 GMT", - "content": "The Festival of Lights is marked around the world amid a difficult time for Jewish communities", - "contentSnippet": "The Festival of Lights is marked around the world amid a difficult time for Jewish communities", - "guid": "https://www.bbc.co.uk/news/world-europe-67647472", - "isoDate": "2023-12-07T17:57:23.000Z" - }, - { - "title": "Russia luring migrants from Finnish border for war in Ukraine", - "link": "https://www.bbc.co.uk/news/world-europe-67647379?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 15:55:06 GMT", - "content": "The BBC has seen evidence of foreigners without valid visas being sent to a military camp near Ukraine.", - "contentSnippet": "The BBC has seen evidence of foreigners without valid visas being sent to a military camp near Ukraine.", - "guid": "https://www.bbc.co.uk/news/world-europe-67647379", - "isoDate": "2023-12-07T15:55:06.000Z" - }, - { - "title": "Bob Dylan sells Scottish Highlands estate for \u00a34m", - "link": "https://www.bbc.co.uk/news/articles/cgrp9967v0po?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 13:30:27 GMT", - "content": "The singer bought Aultmore House in 2006 but has not visited in at least four years", - "contentSnippet": "The singer bought Aultmore House in 2006 but has not visited in at least four years", - "guid": "https://www.bbc.co.uk/news/articles/cgrp9967v0po", - "isoDate": "2023-12-07T13:30:27.000Z" - }, - { - "title": "What is Hamas and why is it fighting with Israel in Gaza?", - "link": "https://www.bbc.co.uk/news/world-middle-east-67039975?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 12:27:43 GMT", - "content": "Why did Hamas attack Israel, and what has happened in Gaza since the 7 October raid?", - "contentSnippet": "Why did Hamas attack Israel, and what has happened in Gaza since the 7 October raid?", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67039975", - "isoDate": "2023-12-07T12:27:43.000Z" - }, - { - "title": "Bringing broken survivors of the Israel Nova festival attack back from darkness", - "link": "https://www.bbc.co.uk/news/world-middle-east-67636785?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 05:59:54 GMT", - "content": "\"I just wanted them to be held\": Inside the centre helping survivors of the 7 October attacks.", - "contentSnippet": "\"I just wanted them to be held\": Inside the centre helping survivors of the 7 October attacks.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67636785", - "isoDate": "2023-12-07T05:59:54.000Z" - }, - { - "title": "Climate change: How is my country doing on tackling it?", - "link": "https://www.bbc.co.uk/news/science-environment-65754296?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 00:43:00 GMT", - "content": "Find out how the world's major economies are doing on cutting their emissions and what lies ahead.", - "contentSnippet": "Find out how the world's major economies are doing on cutting their emissions and what lies ahead.", - "guid": "https://www.bbc.co.uk/news/science-environment-65754296", - "isoDate": "2023-12-07T00:43:00.000Z" - }, - { - "title": "Mine explosion: Colombian authorities blow up illegal sites", - "link": "https://www.bbc.co.uk/news/world-latin-america-67644336?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 22:54:33 GMT", - "content": "Colombia and Brazil destroy 19 illegal gold mining sites and equipment in the Amazon rainforest.", - "contentSnippet": "Colombia and Brazil destroy 19 illegal gold mining sites and equipment in the Amazon rainforest.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67644336", - "isoDate": "2023-12-06T22:54:33.000Z" - }, - { - "title": "'I'm helpless' - Gaza doctor tells of desperate situation", - "link": "https://www.bbc.co.uk/news/world-middle-east-67644334?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 21:50:58 GMT", - "content": "Dr Ahmed Moghrabi told the BBC there's a scarcity of food, water, medicine and he cannot operate on patients.", - "contentSnippet": "Dr Ahmed Moghrabi told the BBC there's a scarcity of food, water, medicine and he cannot operate on patients.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67644334", - "isoDate": "2023-12-06T21:50:58.000Z" - }, - { - "title": "BBC reporter in Gaza: People here are traumatised and exhausted", - "link": "https://www.bbc.co.uk/news/world-middle-east-67643746?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 19:28:01 GMT", - "content": "People say life in Khan Younis is \"indescribable\" as Israel's bombardment of the south intensifies.", - "contentSnippet": "People say life in Khan Younis is \"indescribable\" as Israel's bombardment of the south intensifies.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67643746", - "isoDate": "2023-12-06T19:28:01.000Z" - }, - { - "title": "Israel hostages in Gaza: We have evidence their health worsening, say families", - "link": "https://www.bbc.co.uk/news/world-middle-east-67640750?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 16:18:37 GMT", - "content": "A three-hour meeting between freed hostages and Israel's leaders turned tense, observers say.", - "contentSnippet": "A three-hour meeting between freed hostages and Israel's leaders turned tense, observers say.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67640750", - "isoDate": "2023-12-06T16:18:37.000Z" - }, - { - "title": "How missiles from Yemen could escalate Israel-Gaza war", - "link": "https://www.bbc.co.uk/news/world-middle-east-67635670?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 15:53:39 GMT", - "content": "The Iran-backed Houthis have recently begun attacking vessels in the Red Sea they say are linked to Israel.", - "contentSnippet": "The Iran-backed Houthis have recently begun attacking vessels in the Red Sea they say are linked to Israel.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67635670", - "isoDate": "2023-12-06T15:53:39.000Z" - }, - { - "title": "Israeli settler violence brings destruction and fear to West Bank as war rages", - "link": "https://www.bbc.co.uk/news/world-middle-east-67617920?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 06:00:02 GMT", - "content": "Attacks including fatal shootings of Palestinians by Jewish settlers have risen sharply since 7 October.", - "contentSnippet": "Attacks including fatal shootings of Palestinians by Jewish settlers have risen sharply since 7 October.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67617920", - "isoDate": "2023-12-06T06:00:02.000Z" - }, - { - "title": "Jamie Foxx holds back tears as he addresses serious illness", - "link": "https://www.bbc.co.uk/news/world-us-canada-67633447?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 00:03:41 GMT", - "content": "The actor has been missing from the public eye since April 2023, as he battled an undisclosed life-threatening condition.", - "contentSnippet": "The actor has been missing from the public eye since April 2023, as he battled an undisclosed life-threatening condition.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67633447", - "isoDate": "2023-12-06T00:03:41.000Z" - }, - { - "title": "US sanctions individuals implicated in West Bank attacks", - "link": "https://www.bbc.co.uk/news/world-us-canada-67631739?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 23:12:10 GMT", - "content": "The US says it will impose visa bans on Israelis and some Palestinians over West Bank violence.", - "contentSnippet": "The US says it will impose visa bans on Israelis and some Palestinians over West Bank violence.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67631739", - "isoDate": "2023-12-05T23:12:10.000Z" - }, - { - "title": "Five-year-old Hamas hostage returns to school and is hugged by classmates", - "link": "https://www.bbc.co.uk/news/world-middle-east-67632573?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 20:53:27 GMT", - "content": "Emilia received a warm hug from her nursery school friends after being held in Hamas captivity for 49 days.", - "contentSnippet": "Emilia received a warm hug from her nursery school friends after being held in Hamas captivity for 49 days.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67632573", - "isoDate": "2023-12-05T20:53:27.000Z" - }, - { - "title": "Israel Gaza: Hamas raped and mutilated women on 7 October, BBC hears", - "link": "https://www.bbc.co.uk/news/world-middle-east-67629181?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 17:15:49 GMT", - "content": "The BBC has seen and heard evidence that Hamas fighters committed horrific sexual violence in Israel.", - "contentSnippet": "The BBC has seen and heard evidence that Hamas fighters committed horrific sexual violence in Israel.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67629181", - "isoDate": "2023-12-05T17:15:49.000Z" - }, - { - "title": "Virginia home explodes as police respond to call", - "link": "https://www.bbc.co.uk/news/world-us-canada-67629626?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 16:46:54 GMT", - "content": "A huge explosion destroys at least one home in Arlington, Virginia as police carried out a search warrant.", - "contentSnippet": "A huge explosion destroys at least one home in Arlington, Virginia as police carried out a search warrant.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67629626", - "isoDate": "2023-12-05T16:46:54.000Z" - }, - { - "title": "Hungary blocks \u20ac50bn of EU funding for Ukraine", - "link": "https://www.bbc.co.uk/news/world-europe-67724357?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 14:51:11 GMT", - "content": "Hungary blocks new funding just hours after a deal is struck on starting talks to admit Ukraine to the EU.", - "contentSnippet": "Hungary blocks new funding just hours after a deal is struck on starting talks to admit Ukraine to the EU.", - "guid": "https://www.bbc.co.uk/news/world-europe-67724357", - "isoDate": "2023-12-15T14:51:11.000Z" - }, - { - "title": "Ukraine grenade incident: Councillor tosses explosives into meeting", - "link": "https://www.bbc.co.uk/news/world-europe-67729343?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 14:37:24 GMT", - "content": "Twenty-six people were wounded when the man entered the council meeting and detonated the grenades.", - "contentSnippet": "Twenty-six people were wounded when the man entered the council meeting and detonated the grenades.", - "guid": "https://www.bbc.co.uk/news/world-europe-67729343", - "isoDate": "2023-12-15T14:37:24.000Z" - }, - { - "title": "Hamas hostages: Stories of the people taken from Israel", - "link": "https://www.bbc.co.uk/news/world-middle-east-67053011?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 13:46:00 GMT", - "content": "It is thought more than 100 Israelis are still being held hostage in Gaza after the 7 October attacks.", - "contentSnippet": "It is thought more than 100 Israelis are still being held hostage in Gaza after the 7 October attacks.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67053011", - "isoDate": "2023-12-15T13:46:00.000Z" - }, - { - "title": "Cargo ships in Red Sea hit by drone and missiles launched from Yemen", - "link": "https://www.bbc.co.uk/news/world-middle-east-67727601?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 13:21:21 GMT", - "content": "The US says the missiles were fired from a part of Yemen controlled by the Iran-backed Houthi group.", - "contentSnippet": "The US says the missiles were fired from a part of Yemen controlled by the Iran-backed Houthi group.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67727601", - "isoDate": "2023-12-15T13:21:21.000Z" - }, - { - "title": "British teen Alex Batty expected back in UK in next few days", - "link": "https://www.bbc.co.uk/news/uk-67724918?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 12:12:58 GMT", - "content": "The 17-year-old, who vanished in 2017, is currently being looked after by French authorities.", - "contentSnippet": "The 17-year-old, who vanished in 2017, is currently being looked after by French authorities.", - "guid": "https://www.bbc.co.uk/news/uk-67724918", - "isoDate": "2023-12-15T12:12:58.000Z" - }, - { - "title": "Alex Batty: How delivery driver found lost teen on unlit mountain road", - "link": "https://www.bbc.co.uk/news/world-europe-67725568?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 11:28:53 GMT", - "content": "It was the middle of the night when Fabien Accidini stumbled across a young man on an unlit road.", - "contentSnippet": "It was the middle of the night when Fabien Accidini stumbled across a young man on an unlit road.", - "guid": "https://www.bbc.co.uk/news/world-europe-67725568", - "isoDate": "2023-12-15T11:28:53.000Z" - }, - { - "title": "Nikhil Gupta: India man accused of US murder plot appeals to court", - "link": "https://www.bbc.co.uk/news/world-asia-india-67725935?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 11:12:08 GMT", - "content": "Nikhil Gupta has been accused by the US government of conspiring to assassinate a Sikh separatist leader.", - "contentSnippet": "Nikhil Gupta has been accused by the US government of conspiring to assassinate a Sikh separatist leader.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67725935", - "isoDate": "2023-12-15T11:12:08.000Z" - }, - { - "title": "Tren Maya: Mexico's Yucat\u00e1n mega train - world beating or environmental disaster?", - "link": "https://www.bbc.co.uk/news/world-latin-america-67638183?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 10:31:36 GMT", - "content": "Mexico's president says the Tren Maya will bring tourism and development to the jungle. But at what cost?", - "contentSnippet": "Mexico's president says the Tren Maya will bring tourism and development to the jungle. But at what cost?", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67638183", - "isoDate": "2023-12-15T10:31:36.000Z" - }, - { - "title": "Beijing subway crash leaves 102 with broken bones", - "link": "https://www.bbc.co.uk/news/world-asia-china-67724238?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 09:15:51 GMT", - "content": "The impact of the collision, which occurred during heavy snowfall, caused some carriages to detach.", - "contentSnippet": "The impact of the collision, which occurred during heavy snowfall, caused some carriages to detach.", - "guid": "https://www.bbc.co.uk/news/world-asia-china-67724238", - "isoDate": "2023-12-15T09:15:51.000Z" - }, - { - "title": "Taliban sending abused Afghan women to prison - UN", - "link": "https://www.bbc.co.uk/news/world-asia-67724424?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 07:38:24 GMT", - "content": "The Taliban says it's done for their \"protection\", but the UN says it is harmful to the survivors.", - "contentSnippet": "The Taliban says it's done for their \"protection\", but the UN says it is harmful to the survivors.", - "guid": "https://www.bbc.co.uk/news/world-asia-67724424", - "isoDate": "2023-12-15T07:38:24.000Z" - }, - { - "title": "India parliament: Key suspect arrested in security breach case", - "link": "https://www.bbc.co.uk/news/world-asia-india-67724546?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 07:29:35 GMT", - "content": "Lalit Jha surrendered to police a day after two intruders yelled slogans and set off smoke in parliament.", - "contentSnippet": "Lalit Jha surrendered to police a day after two intruders yelled slogans and set off smoke in parliament.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67724546", - "isoDate": "2023-12-15T07:29:35.000Z" - }, - { - "title": "How Israel jails hundreds of Palestinians without charge", - "link": "https://www.bbc.co.uk/news/world-middle-east-67600015?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 06:00:15 GMT", - "content": "Human rights groups say Israel is abusing a security law inherited from the British to strip due process.", - "contentSnippet": "Human rights groups say Israel is abusing a security law inherited from the British to strip due process.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67600015", - "isoDate": "2023-12-15T06:00:15.000Z" - }, - { - "title": "Watch: King and Elton John remember Barry Humphries", - "link": "https://www.bbc.co.uk/news/world-australia-67724680?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 05:38:22 GMT", - "content": "Humphries was celebrated for his comedic \u201cgenius\u201d but also kindness, at a state memorial in Sydney.", - "contentSnippet": "Humphries was celebrated for his comedic \u201cgenius\u201d but also kindness, at a state memorial in Sydney.", - "guid": "https://www.bbc.co.uk/news/world-australia-67724680", - "isoDate": "2023-12-15T05:38:22.000Z" - }, - { - "title": "Hong Kong offers HK$1m bounties on five overseas activists", - "link": "https://www.bbc.co.uk/news/world-asia-china-67724230?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 04:58:56 GMT", - "content": "Police said the activists will be \"pursued until the end\" for \"endangering national security\".", - "contentSnippet": "Police said the activists will be \"pursued until the end\" for \"endangering national security\".", - "guid": "https://www.bbc.co.uk/news/world-asia-china-67724230", - "isoDate": "2023-12-15T04:58:56.000Z" - }, - { - "title": "Curb Your Enthusiasm: comedy show to end after 24 years", - "link": "https://www.bbc.co.uk/news/world-us-canada-67723937?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 04:45:38 GMT", - "content": "HBO's longest running comedy series starring Larry David will end next year.", - "contentSnippet": "HBO's longest running comedy series starring Larry David will end next year.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67723937", - "isoDate": "2023-12-15T04:45:38.000Z" - }, - { - "title": "Essequibo dispute: Venezuela and Guyana agree not to use force", - "link": "https://www.bbc.co.uk/news/world-latin-america-67723936?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 03:29:59 GMT", - "content": "The presidents of Guyana and Venezuela will negotiate peacefully over oil-rich Essequibo after talks.", - "contentSnippet": "The presidents of Guyana and Venezuela will negotiate peacefully over oil-rich Essequibo after talks.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67723936", - "isoDate": "2023-12-15T03:29:59.000Z" - }, - { - "title": "Africa's week in pictures: 8-14 December 2023", - "link": "https://www.bbc.co.uk/news/world-africa-67715933?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 03:04:26 GMT", - "content": "A selection of the best photos from the African continent and beyond.", - "contentSnippet": "A selection of the best photos from the African continent and beyond.", - "guid": "https://www.bbc.co.uk/news/world-africa-67715933", - "isoDate": "2023-12-15T03:04:26.000Z" - }, - { - "title": "Chinese ex-banker jailed for life in corruption case", - "link": "https://www.bbc.co.uk/news/business-67724241?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 02:26:21 GMT", - "content": "Xu Guojun was convicted of embezzling $325m after being forcibly repatriated from the US in 2021.", - "contentSnippet": "Xu Guojun was convicted of embezzling $325m after being forcibly repatriated from the US in 2021.", - "guid": "https://www.bbc.co.uk/news/business-67724241", - "isoDate": "2023-12-15T02:26:21.000Z" - }, - { - "title": "Ukraine war: How TikTok fakes pushed Russian lies to millions", - "link": "https://www.bbc.co.uk/news/world-europe-67687449?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 00:51:06 GMT", - "content": "The BBC uncovers a vast Russia-based network of fake TikTok accounts pushing disinformation about Ukraine.", - "contentSnippet": "The BBC uncovers a vast Russia-based network of fake TikTok accounts pushing disinformation about Ukraine.", - "guid": "https://www.bbc.co.uk/news/world-europe-67687449", - "isoDate": "2023-12-15T00:51:06.000Z" - }, - { - "title": "Russian gas giant Gazprom makes \u00a339m profit in North Sea", - "link": "https://www.bbc.co.uk/news/business-67720198?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 00:02:39 GMT", - "content": "The state-owned Russian energy firm earned \u00a339m from its Dutch-UK gas field in 2022, accounts show.", - "contentSnippet": "The state-owned Russian energy firm earned \u00a339m from its Dutch-UK gas field in 2022, accounts show.", - "guid": "https://www.bbc.co.uk/news/business-67720198", - "isoDate": "2023-12-15T00:02:39.000Z" - }, - { - "title": "US Supreme Court lets Illinois assault weapon ban stand - for now", - "link": "https://www.bbc.co.uk/news/world-us-canada-67722478?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 23:14:00 GMT", - "content": "The Supreme Court has denied a request to put a temporary hold on the law pending an appeal.", - "contentSnippet": "The Supreme Court has denied a request to put a temporary hold on the law pending an appeal.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67722478", - "isoDate": "2023-12-14T23:14:00.000Z" - }, - { - "title": "Japan: People left dangling as rollercoaster stops mid-ride", - "link": "https://www.bbc.co.uk/news/world-asia-67721301?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 22:44:54 GMT", - "content": "The rollercoaster, which reaches heights of 150ft (46m), came to an emergency stop at a Japan theme park.", - "contentSnippet": "The rollercoaster, which reaches heights of 150ft (46m), came to an emergency stop at a Japan theme park.", - "guid": "https://www.bbc.co.uk/news/world-asia-67721301", - "isoDate": "2023-12-14T22:44:54.000Z" - }, - { - "title": "Gautam Singhania: Domestic abuse claims threaten India tycoon's fortune", - "link": "https://www.bbc.co.uk/news/world-asia-india-67700586?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 22:29:29 GMT", - "content": "Gautam Singhania is in an acrimonious divorce battle with his wife, who alleges he beat her and their daughter.", - "contentSnippet": "Gautam Singhania is in an acrimonious divorce battle with his wife, who alleges he beat her and their daughter.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67700586", - "isoDate": "2023-12-14T22:29:29.000Z" - }, - { - "title": "Bull spotted galloping down New Jersey train tracks", - "link": "https://www.bbc.co.uk/news/world-us-canada-67723281?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 21:14:02 GMT", - "content": "Morning commuters were met with delays after the long-horned animal made an appearance on the tracks.", - "contentSnippet": "Morning commuters were met with delays after the long-horned animal made an appearance on the tracks.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67723281", - "isoDate": "2023-12-14T21:14:02.000Z" - }, - { - "title": "Germany arrests over alleged Hamas anti-Jewish plot", - "link": "https://www.bbc.co.uk/news/world-europe-67715120?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 21:03:46 GMT", - "content": "Prosecutors said the suspects intended to store weapons in Berlin for possible use in an attack.", - "contentSnippet": "Prosecutors said the suspects intended to store weapons in Berlin for possible use in an attack.", - "guid": "https://www.bbc.co.uk/news/world-europe-67715120", - "isoDate": "2023-12-14T21:03:46.000Z" - }, - { - "title": "Brooklyn Nine-Nine star Andre Braugher died of lung cancer", - "link": "https://www.bbc.co.uk/news/world-us-canada-67723055?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 20:54:55 GMT", - "content": "The Emmy winner was diagnosed with the disease several months ago, his publicist says.", - "contentSnippet": "The Emmy winner was diagnosed with the disease several months ago, his publicist says.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67723055", - "isoDate": "2023-12-14T20:54:55.000Z" - }, - { - "title": "Watch: Bear dodges skiers on California slopes", - "link": "https://www.bbc.co.uk/news/world-us-canada-67722456?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 19:01:00 GMT", - "content": "The bear escaped collision-free and is said to have reunited with its mother on the other side of the trail.", - "contentSnippet": "The bear escaped collision-free and is said to have reunited with its mother on the other side of the trail.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67722456", - "isoDate": "2023-12-14T19:01:00.000Z" - }, - { - "title": "Ukraine war: Shell shortages force us to limit firing, Ukrainian troops tell BBC", - "link": "https://www.bbc.co.uk/news/world-europe-67714719?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 17:51:15 GMT", - "content": "The BBC visits a front line where ammunition is low and hears troops' fears of wavering Western support.", - "contentSnippet": "The BBC visits a front line where ammunition is low and hears troops' fears of wavering Western support.", - "guid": "https://www.bbc.co.uk/news/world-europe-67714719", - "isoDate": "2023-12-14T17:51:15.000Z" - }, - { - "title": "Israeli soldiers' mosque behaviour condemned by IDF", - "link": "https://www.bbc.co.uk/news/world-middle-east-67719820?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 17:09:02 GMT", - "content": "A Jewish festival song was filmed sung from the minaret of a mosque in the West Bank city of Jenin.", - "contentSnippet": "A Jewish festival song was filmed sung from the minaret of a mosque in the West Bank city of Jenin.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67719820", - "isoDate": "2023-12-14T17:09:02.000Z" - }, - { - "title": "Inside Putin's carefully choreographed annual news conference", - "link": "https://www.bbc.co.uk/news/world-europe-67718655?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 16:21:30 GMT", - "content": "The four-hour TV extravaganza was inescapable, writes BBC Russia Editor Steve Rosenberg.", - "contentSnippet": "The four-hour TV extravaganza was inescapable, writes BBC Russia Editor Steve Rosenberg.", - "guid": "https://www.bbc.co.uk/news/world-europe-67718655", - "isoDate": "2023-12-14T16:21:30.000Z" - }, - { - "title": "Russia-Ukraine war: Putin tells Russia his war objectives are unchanged", - "link": "https://www.bbc.co.uk/news/world-europe-67711802?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 13:13:59 GMT", - "content": "Russia's leader holds his first major news conference since his full-scale invasion of Ukraine began.", - "contentSnippet": "Russia's leader holds his first major news conference since his full-scale invasion of Ukraine began.", - "guid": "https://www.bbc.co.uk/news/world-europe-67711802", - "isoDate": "2023-12-14T13:13:59.000Z" - }, - { - "title": "Putin: Russia can't exist without sovereignty", - "link": "https://www.bbc.co.uk/news/world-europe-67714359?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 09:33:59 GMT", - "content": "The president vows to strengthen Russia's sovereignty as he starts a lengthy press conference.", - "contentSnippet": "The president vows to strengthen Russia's sovereignty as he starts a lengthy press conference.", - "guid": "https://www.bbc.co.uk/news/world-europe-67714359", - "isoDate": "2023-12-14T09:33:59.000Z" - }, - { - "title": "Impeachment inquiry threatens Biden with election-year headache", - "link": "https://www.bbc.co.uk/news/world-us-canada-67632723?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 09:21:36 GMT", - "content": "A formal inquiry, with public hearings, has the potential to loom over his election campaign in 2024.", - "contentSnippet": "A formal inquiry, with public hearings, has the potential to loom over his election campaign in 2024.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67632723", - "isoDate": "2023-12-14T09:21:36.000Z" - }, - { - "title": "Australian woman charged with stealing van carrying 10,000 doughnuts", - "link": "https://www.bbc.co.uk/news/world-australia-67712369?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 09:15:55 GMT", - "content": "It is unclear if the 28-year-old knew the van she is alleged to have stolen contained 10,000 doughnuts.", - "contentSnippet": "It is unclear if the 28-year-old knew the van she is alleged to have stolen contained 10,000 doughnuts.", - "guid": "https://www.bbc.co.uk/news/world-australia-67712369", - "isoDate": "2023-12-14T09:15:55.000Z" - }, - { - "title": "Joshua Mollel: Tanzania says student killed in Israel by Hamas", - "link": "https://www.bbc.co.uk/news/world-africa-67713520?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 08:56:36 GMT", - "content": "It was initially reported that Joshua Mollel had been taken hostage by Hamas, along with a colleague.", - "contentSnippet": "It was initially reported that Joshua Mollel had been taken hostage by Hamas, along with a colleague.", - "guid": "https://www.bbc.co.uk/news/world-africa-67713520", - "isoDate": "2023-12-14T08:56:36.000Z" - }, - { - "title": "Israel-Gaza war: What is the price of peace?", - "link": "https://www.bbc.co.uk/news/world-middle-east-67701700?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 06:01:30 GMT", - "content": "The BBC's Jeremy Bowen asks Israeli and Palestinian activists about their hopes for resolving the conflict.", - "contentSnippet": "The BBC's Jeremy Bowen asks Israeli and Palestinian activists about their hopes for resolving the conflict.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67701700", - "isoDate": "2023-12-14T06:01:30.000Z" - }, - { - "title": "DR Congo election: 'We would vote for peace - if we had a vote'", - "link": "https://www.bbc.co.uk/news/world-africa-67681710?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 00:43:27 GMT", - "content": "Ending the rebellion in the east dominates campaigning but fails to impress those fleeing fighting.", - "contentSnippet": "Ending the rebellion in the east dominates campaigning but fails to impress those fleeing fighting.", - "guid": "https://www.bbc.co.uk/news/world-africa-67681710", - "isoDate": "2023-12-14T00:43:27.000Z" - }, - { - "title": "The Afghan refugees stuck in limbo at the US-Mexico border", - "link": "https://www.bbc.co.uk/news/world-latin-america-67661993?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 00:25:27 GMT", - "content": "Refugees fleeing the Taliban face a treacherous journey through Latin America to the United States.", - "contentSnippet": "Refugees fleeing the Taliban face a treacherous journey through Latin America to the United States.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67661993", - "isoDate": "2023-12-14T00:25:27.000Z" - }, - { - "title": "Budhini Manjhiyain: The Indian tribal woman exiled for garlanding Nehru", - "link": "https://www.bbc.co.uk/news/world-asia-india-67482899?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 00:13:51 GMT", - "content": "Budhini Manjhiyain was just 15 when she was ostracised by her tribe in 1959. Here's her story.", - "contentSnippet": "Budhini Manjhiyain was just 15 when she was ostracised by her tribe in 1959. Here's her story.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67482899", - "isoDate": "2023-12-14T00:13:51.000Z" - }, - { - "title": "Aitana Bonmati: Ballon d'Or and World Cup winner forged by adversity", - "link": "https://www.bbc.co.uk/sport/football/67691132?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 00:01:35 GMT", - "content": "From the moment she was named, Aitana Bonmati has stood out from the rest and stood up for something more than herself.", - "contentSnippet": "From the moment she was named, Aitana Bonmati has stood out from the rest and stood up for something more than herself.", - "guid": "https://www.bbc.co.uk/sport/football/67691132", - "isoDate": "2023-12-14T00:01:35.000Z" - }, - { - "title": "Hong Kong's universities shrivel in Beijing's grip", - "link": "https://www.bbc.co.uk/news/world-asia-china-67689072?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 22:32:02 GMT", - "content": "Academics are leaving a city which at one time attracted top talent for its world-class universities.", - "contentSnippet": "Academics are leaving a city which at one time attracted top talent for its world-class universities.", - "guid": "https://www.bbc.co.uk/news/world-asia-china-67689072", - "isoDate": "2023-12-13T22:32:02.000Z" - }, - { - "title": "The moment Oprah's portrait for national gallery is unveiled", - "link": "https://www.bbc.co.uk/news/world-us-canada-67708719?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 19:47:31 GMT", - "content": "The media mogul's painting will hang beside other American icons at the National Portrait Gallery.", - "contentSnippet": "The media mogul's painting will hang beside other American icons at the National Portrait Gallery.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67708719", - "isoDate": "2023-12-13T19:47:31.000Z" - }, - { - "title": "Moment elephant smashes van window in search of food in Sri Lanka", - "link": "https://www.bbc.co.uk/news/world-67710141?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 19:41:43 GMT", - "content": "The driver remains remarkably calm, as the elephant pushes past him to reach food in the back seat.", - "contentSnippet": "The driver remains remarkably calm, as the elephant pushes past him to reach food in the back seat.", - "guid": "https://www.bbc.co.uk/news/world-67710141", - "isoDate": "2023-12-13T19:41:43.000Z" - }, - { - "title": "COP28: Three takeaways from the deal on fossil fuels", - "link": "https://www.bbc.co.uk/news/science-environment-67709508?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 17:42:26 GMT", - "content": "Climate reporter Esme Stallard breaks down the COP28 climate summit agreement - in less than a minute.", - "contentSnippet": "Climate reporter Esme Stallard breaks down the COP28 climate summit agreement - in less than a minute.", - "guid": "https://www.bbc.co.uk/news/science-environment-67709508", - "isoDate": "2023-12-13T17:42:26.000Z" - }, - { - "title": "Support for Hamas grows among Palestinians in West Bank", - "link": "https://www.bbc.co.uk/news/world-middle-east-67695861?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 16:07:47 GMT", - "content": "Israel aims to destroy the group in Gaza, but its influence is spreading in the occupied West Bank.", - "contentSnippet": "Israel aims to destroy the group in Gaza, but its influence is spreading in the occupied West Bank.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67695861", - "isoDate": "2023-12-13T16:07:47.000Z" - }, - { - "title": "Brooklyn Nine-Nine's Andre Braugher in his own words", - "link": "https://www.bbc.co.uk/news/world-us-canada-67707622?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 16:04:01 GMT", - "content": "Here's a look back at the actor talking about his training, work and love for his audience.", - "contentSnippet": "Here's a look back at the actor talking about his training, work and love for his audience.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67707622", - "isoDate": "2023-12-13T16:04:01.000Z" - }, - { - "title": "Watch: Intruder jumps on table in Indian parliament", - "link": "https://www.bbc.co.uk/news/world-asia-india-67700660?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 09:49:30 GMT", - "content": "Lawmakers said two men jumped into the well of the house from the visitors' gallery.", - "contentSnippet": "Lawmakers said two men jumped into the well of the house from the visitors' gallery.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67700660", - "isoDate": "2023-12-13T09:49:30.000Z" - }, - { - "title": "Small island states 'weren't in room' when deal agreed", - "link": "https://www.bbc.co.uk/news/world-67701412?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 09:07:22 GMT", - "content": "Samoa says they are \"a little confused\" by agreement of COP28 climate deal while they were absent from room.", - "contentSnippet": "Samoa says they are \"a little confused\" by agreement of COP28 climate deal while they were absent from room.", - "guid": "https://www.bbc.co.uk/news/world-67701412", - "isoDate": "2023-12-13T09:07:22.000Z" - }, - { - "title": "How a referee being punched shut down Turkish football", - "link": "https://www.bbc.co.uk/news/world-europe-67690210?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 12 Dec 2023 16:01:36 GMT", - "content": "All Turkish football leagues are suspended after the president of MKE Ankaragucu punched a referee.", - "contentSnippet": "All Turkish football leagues are suspended after the president of MKE Ankaragucu punched a referee.", - "guid": "https://www.bbc.co.uk/news/world-europe-67690210", - "isoDate": "2023-12-12T16:01:36.000Z" - }, - { - "title": "Israel determined to finish Gaza operation despite civilian suffering", - "link": "https://www.bbc.co.uk/news/world-middle-east-67691219?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 12 Dec 2023 13:04:01 GMT", - "content": "A senior military adviser tells the BBC Israel will need more than a few more weeks to destroy Hamas.", - "contentSnippet": "A senior military adviser tells the BBC Israel will need more than a few more weeks to destroy Hamas.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67691219", - "isoDate": "2023-12-12T13:04:01.000Z" - }, - { - "title": "MK Strinda: Yemen's rebel Houthis hit Norwegian tanker with missile", - "link": "https://www.bbc.co.uk/news/world-middle-east-67691216?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 12 Dec 2023 11:39:07 GMT", - "content": "The Houthis have vowed to stop ships heading to Israel, but its owners say it was going to Italy.", - "contentSnippet": "The Houthis have vowed to stop ships heading to Israel, but its owners say it was going to Italy.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67691216", - "isoDate": "2023-12-12T11:39:07.000Z" - }, - { - "title": "Eyal Waldman: Israeli tech billionaire hopes for peace despite daughter's killing", - "link": "https://www.bbc.co.uk/news/world-middle-east-67679634?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 12 Dec 2023 06:00:34 GMT", - "content": "Eyal Waldman's youngest daughter was killed in the Supernova music festival massacre on 7 October.", - "contentSnippet": "Eyal Waldman's youngest daughter was killed in the Supernova music festival massacre on 7 October.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67679634", - "isoDate": "2023-12-12T06:00:34.000Z" - }, - { - "title": "Israel Gaza: 'Where is mum? Where is grandma? Where did they go?'", - "link": "https://www.bbc.co.uk/news/world-middle-east-67688422?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 12 Dec 2023 02:16:24 GMT", - "content": "The uncle of a critically ill boy in Gaza fears he will deteriorate if told his parents were killed.", - "contentSnippet": "The uncle of a critically ill boy in Gaza fears he will deteriorate if told his parents were killed.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67688422", - "isoDate": "2023-12-12T02:16:24.000Z" - }, - { - "title": "Tetris: Watch moment US teenager becomes 'first to beat game'", - "link": "https://www.bbc.co.uk/news/world-us-canada-67879712?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:46:29 GMT", - "content": "Willis Gibson, 13, falls back in his chair in shock as he apparently becomes the first to beat the game.", - "contentSnippet": "Willis Gibson, 13, falls back in his chair in shock as he apparently becomes the first to beat the game.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67879712", - "isoDate": "2024-01-04T10:46:29.000Z" - }, - { - "title": "Swedish snow chaos leaves 1,000 vehicles trapped on main E22 road", - "link": "https://www.bbc.co.uk/news/world-europe-67880743?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:19:30 GMT", - "content": "The army is called in to help drivers in southern Sweden amid a big freeze across the Nordic countries.", - "contentSnippet": "The army is called in to help drivers in southern Sweden amid a big freeze across the Nordic countries.", - "guid": "https://www.bbc.co.uk/news/world-europe-67880743", - "isoDate": "2024-01-04T10:19:30.000Z" - }, - { - "title": "Iran leader vows harsh response to deadly bombings that killed 84", - "link": "https://www.bbc.co.uk/news/world-middle-east-67872281?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:18:25 GMT", - "content": "Blasts killed 84 people among crowds marking the anniversary of Qasem Soleimani's assassination by the US.", - "contentSnippet": "Blasts killed 84 people among crowds marking the anniversary of Qasem Soleimani's assassination by the US.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67872281", - "isoDate": "2024-01-04T10:18:25.000Z" - }, - { - "title": "Prince Andrew and Bill Clinton named in Epstein files", - "link": "https://www.bbc.co.uk/news/world-us-canada-67865190?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:14:24 GMT", - "content": "Files detail sex offender Jeffrey Epstein's connections but no bombshell revelations immediately emerge.", - "contentSnippet": "Files detail sex offender Jeffrey Epstein's connections but no bombshell revelations immediately emerge.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67865190", - "isoDate": "2024-01-04T10:14:24.000Z" - }, - { - "title": "Trump asks Supreme Court to overturn Colorado ban", - "link": "https://www.bbc.co.uk/news/world-us-canada-67878675?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 09:55:18 GMT", - "content": "The Trump campaign says keeping him off the ballot is an \"un-American\" act of election interference.", - "contentSnippet": "The Trump campaign says keeping him off the ballot is an \"un-American\" act of election interference.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67878675", - "isoDate": "2024-01-04T09:55:18.000Z" - }, - { - "title": "Japan earthquake: Race to find survivors as critical 72-hour window closes", - "link": "https://www.bbc.co.uk/news/world-asia-67879609?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 09:46:17 GMT", - "content": "At least 77 people are now known to have died in the quake and thousands are still without power.", - "contentSnippet": "At least 77 people are now known to have died in the quake and thousands are still without power.", - "guid": "https://www.bbc.co.uk/news/world-asia-67879609", - "isoDate": "2024-01-04T09:46:17.000Z" - }, - { - "title": "Queen Margrethe II of Denmark embarks on final ride in gold carriage before abdication", - "link": "https://www.bbc.co.uk/news/world-europe-67880989?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 09:45:28 GMT", - "content": "Queen Margrethe II will formally step down next Sunday, after announcing her abdication last month.", - "contentSnippet": "Queen Margrethe II will formally step down next Sunday, after announcing her abdication last month.", - "guid": "https://www.bbc.co.uk/news/world-europe-67880989", - "isoDate": "2024-01-04T09:45:28.000Z" - }, - { - "title": "Japan jet crash: Airline pilots unaware of cabin fire until crew told them", - "link": "https://www.bbc.co.uk/news/world-asia-67879308?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 08:49:56 GMT", - "content": "It was a flight attendant who raised the alarm about the cabin fire, said an airline spokesperson.", - "contentSnippet": "It was a flight attendant who raised the alarm about the cabin fire, said an airline spokesperson.", - "guid": "https://www.bbc.co.uk/news/world-asia-67879308", - "isoDate": "2024-01-04T08:49:56.000Z" - }, - { - "title": "Watch: Man leaps over US courtroom bench to attack judge", - "link": "https://www.bbc.co.uk/news/world-us-canada-67879499?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 05:23:53 GMT", - "content": "Footage shows a man charging at a judge as he is sentenced in a Nevada courtroom.", - "contentSnippet": "Footage shows a man charging at a judge as he is sentenced in a Nevada courtroom.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67879499", - "isoDate": "2024-01-04T05:23:53.000Z" - }, - { - "title": "New Jersey imam shot and killed outside his mosque", - "link": "https://www.bbc.co.uk/news/world-us-canada-67878896?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 05:19:41 GMT", - "content": "Officials believe the killing of Imam Hassan Sharif was not motivated by domestic terrorism or bias.", - "contentSnippet": "Officials believe the killing of Imam Hassan Sharif was not motivated by domestic terrorism or bias.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67878896", - "isoDate": "2024-01-04T05:19:41.000Z" - }, - { - "title": "Japan earthquake: Eerie search for bodies near epicentre", - "link": "https://www.bbc.co.uk/news/world-asia-67872944?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 03:17:01 GMT", - "content": "As the death toll rises to 77, hard-hit places like Wajima now resemble a ghost town.", - "contentSnippet": "As the death toll rises to 77, hard-hit places like Wajima now resemble a ghost town.", - "guid": "https://www.bbc.co.uk/news/world-asia-67872944", - "isoDate": "2024-01-04T03:17:01.000Z" - }, - { - "title": "SpaceX accused of unlawfully firing staff critical of Elon Musk", - "link": "https://www.bbc.co.uk/news/business-67878940?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 02:14:24 GMT", - "content": "A US labour agency says the employees sent an open letter to SpaceX executives, detailing workplace concerns.", - "contentSnippet": "A US labour agency says the employees sent an open letter to SpaceX executives, detailing workplace concerns.", - "guid": "https://www.bbc.co.uk/news/business-67878940", - "isoDate": "2024-01-04T02:14:24.000Z" - }, - { - "title": "Houthis defiant after warning over Red Sea attacks", - "link": "https://www.bbc.co.uk/news/world-middle-east-67878906?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 02:10:41 GMT", - "content": "The US, UK and other states tell Yemen's rebels they will face consequences if attacks persist.", - "contentSnippet": "The US, UK and other states tell Yemen's rebels they will face consequences if attacks persist.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67878906", - "isoDate": "2024-01-04T02:10:41.000Z" - }, - { - "title": "Uruguay bill stirs debate about dictatorship-era crimes", - "link": "https://www.bbc.co.uk/news/world-latin-america-67785302?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 00:51:27 GMT", - "content": "A bill in Uruguay could see perpetrators of dictatorship-era crimes released into house arrest.", - "contentSnippet": "A bill in Uruguay could see perpetrators of dictatorship-era crimes released into house arrest.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67785302", - "isoDate": "2024-01-04T00:51:27.000Z" - }, - { - "title": "Luke Littler: Cheers and sighs as darts final spoils Littler's party", - "link": "https://www.bbc.co.uk/news/uk-67876474?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 23:32:20 GMT", - "content": "Luke Littler loses chance to become youngest world darts champion after being beaten by Luke Humphries.", - "contentSnippet": "Luke Littler loses chance to become youngest world darts champion after being beaten by Luke Humphries.", - "guid": "https://www.bbc.co.uk/news/uk-67876474", - "isoDate": "2024-01-03T23:32:20.000Z" - }, - { - "title": "Salman Rushdie stabbing trial delayed over upcoming book", - "link": "https://www.bbc.co.uk/news/world-us-canada-67878640?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 23:25:20 GMT", - "content": "The defendant's lawyers argue they should review Rushdie's upcoming memoir about the incident.", - "contentSnippet": "The defendant's lawyers argue they should review Rushdie's upcoming memoir about the incident.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67878640", - "isoDate": "2024-01-03T23:25:20.000Z" - }, - { - "title": "A restless Gen Z is reshaping the Chinese Dream", - "link": "https://www.bbc.co.uk/news/world-asia-china-67779222?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 23:11:06 GMT", - "content": "Millions of young Chinese face an uncertain future in the world's second-largest economy.", - "contentSnippet": "Millions of young Chinese face an uncertain future in the world's second-largest economy.", - "guid": "https://www.bbc.co.uk/news/world-asia-china-67779222", - "isoDate": "2024-01-03T23:11:06.000Z" - }, - { - "title": "India TB: Can vaccines help India triumph over tuberculosis?", - "link": "https://www.bbc.co.uk/news/world-asia-india-67647054?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 23:06:05 GMT", - "content": "India is far from achieving its stated goal of eliminating tuberculosis by 2025.", - "contentSnippet": "India is far from achieving its stated goal of eliminating tuberculosis by 2025.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67647054", - "isoDate": "2024-01-03T23:06:05.000Z" - }, - { - "title": "New Zealand: Man's watch reflection leads to rescue after day in ocean", - "link": "https://www.bbc.co.uk/news/world-asia-67875511?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 22:35:25 GMT", - "content": "The man, who spent almost 24 hours floating in the ocean, harnessed the sun's rays to attract attention.", - "contentSnippet": "The man, who spent almost 24 hours floating in the ocean, harnessed the sun's rays to attract attention.", - "guid": "https://www.bbc.co.uk/news/world-asia-67875511", - "isoDate": "2024-01-03T22:35:25.000Z" - }, - { - "title": "Bomb threats cause evacuations at multiple US statehouses", - "link": "https://www.bbc.co.uk/news/world-us-canada-67878362?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 22:33:02 GMT", - "content": "Statehouses in Georgia, Kentucky, Mississippi, Montana, Connecticut and Michigan had to be evacuated.", - "contentSnippet": "Statehouses in Georgia, Kentucky, Mississippi, Montana, Connecticut and Michigan had to be evacuated.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67878362", - "isoDate": "2024-01-03T22:33:02.000Z" - }, - { - "title": "Philippines: Bone diggers seek justice for dead in Duterte's drug war", - "link": "https://www.bbc.co.uk/news/world-asia-67825685?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 22:17:48 GMT", - "content": "A priest and a forensic pathologist are collecting evidence that may one day be used in court.", - "contentSnippet": "A priest and a forensic pathologist are collecting evidence that may one day be used in court.", - "guid": "https://www.bbc.co.uk/news/world-asia-67825685", - "isoDate": "2024-01-03T22:17:48.000Z" - }, - { - "title": "Saleh al-Arouri: Hamas leader's death 'won't go unpunished', says Hezbollah chief", - "link": "https://www.bbc.co.uk/news/world-middle-east-67875508?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 20:47:45 GMT", - "content": "The head of Lebanon's largest military force says the death of Saleh al-Arouri will be avenged.", - "contentSnippet": "The head of Lebanon's largest military force says the death of Saleh al-Arouri will be avenged.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67875508", - "isoDate": "2024-01-03T20:47:45.000Z" - }, - { - "title": "Ukraine and Russia in 'biggest prisoner swap' so far", - "link": "https://www.bbc.co.uk/news/world-europe-67872417?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 17:29:04 GMT", - "content": "Both sides thanked the United Arab Emirates for mediating the deal.", - "contentSnippet": "Both sides thanked the United Arab Emirates for mediating the deal.", - "guid": "https://www.bbc.co.uk/news/world-europe-67872417", - "isoDate": "2024-01-03T17:29:04.000Z" - }, - { - "title": "Mary, Crown Princess of Denmark: Australia celebrates an unexpected queen", - "link": "https://www.bbc.co.uk/news/world-australia-67860144?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 16:36:14 GMT", - "content": "Mary Donaldson met Crown Prince Frederik by chance in a Sydney bar - now she's about to become queen of Denmark.", - "contentSnippet": "Mary Donaldson met Crown Prince Frederik by chance in a Sydney bar - now she's about to become queen of Denmark.", - "guid": "https://www.bbc.co.uk/news/world-australia-67860144", - "isoDate": "2024-01-03T16:36:14.000Z" - }, - { - "title": "Ukraine war: What Russia's escalating air attacks mean", - "link": "https://www.bbc.co.uk/news/world-europe-67871729?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 14:06:27 GMT", - "content": "In just five days, Russia has fired 500 missiles and drones at Ukraine. What does it mean for the war?", - "contentSnippet": "In just five days, Russia has fired 500 missiles and drones at Ukraine. What does it mean for the war?", - "guid": "https://www.bbc.co.uk/news/world-europe-67871729", - "isoDate": "2024-01-03T14:06:27.000Z" - }, - { - "title": "Hamas deputy leader Saleh al-Arouri's assassination sparks wider war fears", - "link": "https://www.bbc.co.uk/news/world-middle-east-67873573?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 12:58:35 GMT", - "content": "Lyse Doucet assesses if Hezbollah and Hamas will retaliate after Saleh al-Arouri was killed in Lebanon.", - "contentSnippet": "Lyse Doucet assesses if Hezbollah and Hamas will retaliate after Saleh al-Arouri was killed in Lebanon.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67873573", - "isoDate": "2024-01-03T12:58:35.000Z" - }, - { - "title": "Japan jet crash: How crew pulled off flawless evacuation from plane inferno", - "link": "https://www.bbc.co.uk/news/world-asia-67870119?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 12:33:46 GMT", - "content": "Leaving valuables behind was a \"major factor\" behind the evacuation of 379 people as fire engulfed the plane.", - "contentSnippet": "Leaving valuables behind was a \"major factor\" behind the evacuation of 379 people as fire engulfed the plane.", - "guid": "https://www.bbc.co.uk/news/world-asia-67870119", - "isoDate": "2024-01-03T12:33:46.000Z" - }, - { - "title": "Watch: Buildings still smouldering in quake-hit Wajima", - "link": "https://www.bbc.co.uk/news/world-asia-67872467?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 10:37:48 GMT", - "content": "The BBC's Jean Mackenzie made it to one of the worst affected towns after a powerful earthquake rocked Japan.", - "contentSnippet": "The BBC's Jean Mackenzie made it to one of the worst affected towns after a powerful earthquake rocked Japan.", - "guid": "https://www.bbc.co.uk/news/world-asia-67872467", - "isoDate": "2024-01-03T10:37:48.000Z" - }, - { - "title": "Japan Airlines plane shown burned out after fire in aerial footage", - "link": "https://www.bbc.co.uk/news/world-asia-67870460?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 07:13:11 GMT", - "content": "The Japan Airlines plane burst into flames after a collision with a smaller coastguard aircraft on Tuesday.", - "contentSnippet": "The Japan Airlines plane burst into flames after a collision with a smaller coastguard aircraft on Tuesday.", - "guid": "https://www.bbc.co.uk/news/world-asia-67870460", - "isoDate": "2024-01-03T07:13:11.000Z" - }, - { - "title": "Kai Zhuang: Cyber kidnapping in US illustrates growing crime trend", - "link": "https://www.bbc.co.uk/news/world-us-canada-67869517?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 02 Jan 2024 23:30:55 GMT", - "content": "Cyber kidnapping is on the rise - surveillance, online threats then the victim hiding from relatives.", - "contentSnippet": "Cyber kidnapping is on the rise - surveillance, online threats then the victim hiding from relatives.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67869517", - "isoDate": "2024-01-02T23:30:55.000Z" - }, - { - "title": "Who was Hamas leader Saleh al-Arouri killed in Beirut?", - "link": "https://www.bbc.co.uk/news/world-67868754?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 02 Jan 2024 21:30:03 GMT", - "content": "The 57-year-old was deputy head of Hamas's political bureau and helped establish the group's military wing.", - "contentSnippet": "The 57-year-old was deputy head of Hamas's political bureau and helped establish the group's military wing.", - "guid": "https://www.bbc.co.uk/news/world-67868754", - "isoDate": "2024-01-02T21:30:03.000Z" - }, - { - "title": "Japan Airlines: How the passenger plane burst into flames", - "link": "https://www.bbc.co.uk/news/world-asia-67868143?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 02 Jan 2024 19:18:03 GMT", - "content": "A professor in investigating accidents tells the BBC what might have caused the plane to burst into flames.", - "contentSnippet": "A professor in investigating accidents tells the BBC what might have caused the plane to burst into flames.", - "guid": "https://www.bbc.co.uk/news/world-asia-67868143", - "isoDate": "2024-01-02T19:18:03.000Z" - }, - { - "title": "Israel to fight South Africa's Gaza genocide claim in court", - "link": "https://www.bbc.co.uk/news/world-middle-east-67866342?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 02 Jan 2024 18:02:44 GMT", - "content": "South Africa accused Israel of committing genocide in Gaza, triggering Israeli outrage.", - "contentSnippet": "South Africa accused Israel of committing genocide in Gaza, triggering Israeli outrage.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67866342", - "isoDate": "2024-01-02T18:02:44.000Z" - }, - { - "title": "Passengers clamber down emergency slide after Japan plane fire", - "link": "https://www.bbc.co.uk/news/world-asia-67861082?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 02 Jan 2024 12:08:15 GMT", - "content": "The Japan Airlines plane was engulfed in flames after it landed at Haneda Airport.", - "contentSnippet": "The Japan Airlines plane was engulfed in flames after it landed at Haneda Airport.", - "guid": "https://www.bbc.co.uk/news/world-asia-67861082", - "isoDate": "2024-01-02T12:08:15.000Z" - }, - { - "title": "Japan plane fire: Dramatic videos show how plane is overcome by fire at Haneda airport", - "link": "https://www.bbc.co.uk/news/world-asia-67861081?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 02 Jan 2024 11:58:06 GMT", - "content": "A fireball erupted as a Japan Airlines plane landed on a runway in Tokyo.", - "contentSnippet": "A fireball erupted as a Japan Airlines plane landed on a runway in Tokyo.", - "guid": "https://www.bbc.co.uk/news/world-asia-67861081", - "isoDate": "2024-01-02T11:58:06.000Z" - }, - { - "title": "Gaza: Baby pulled alive from rubble after Israeli air strike on Rafah", - "link": "https://www.bbc.co.uk/news/world-middle-east-67843832?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 29 Dec 2023 21:26:21 GMT", - "content": "Rescuers clear rubble with their hands to release the girl, before running with her to hospital.", - "contentSnippet": "Rescuers clear rubble with their hands to release the girl, before running with her to hospital.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67843832", - "isoDate": "2023-12-29T21:26:21.000Z" - }, - { - "title": "Thousands of Palestinians flee central Gaza as Israeli troops advance", - "link": "https://www.bbc.co.uk/news/world-middle-east-67834432?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 29 Dec 2023 04:36:12 GMT", - "content": "Israeli tanks reportedly reach the outskirts of Bureij refugee camp as the ground offensive expands.", - "contentSnippet": "Israeli tanks reportedly reach the outskirts of Bureij refugee camp as the ground offensive expands.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67834432", - "isoDate": "2023-12-29T04:36:12.000Z" - }, - { - "title": "Israel issues alert after blast near embassy in India", - "link": "https://www.bbc.co.uk/news/world-asia-india-67825697?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 27 Dec 2023 06:01:26 GMT", - "content": "Authorities say nobody was injured in the low-intensity explosion in Delhi on Tuesday evening.", - "contentSnippet": "Authorities say nobody was injured in the low-intensity explosion in Delhi on Tuesday evening.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67825697", - "isoDate": "2023-12-27T06:01:26.000Z" - }, - { - "title": "Israel Gaza: Drone shots show Palestinians buried in Rafah mass grave", - "link": "https://www.bbc.co.uk/news/world-middle-east-67825385?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 26 Dec 2023 23:06:40 GMT", - "content": "Some 80 unidentified bodies handed over by Israel are lowered into a grave in southern Gaza.", - "contentSnippet": "Some 80 unidentified bodies handed over by Israel are lowered into a grave in southern Gaza.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67825385", - "isoDate": "2023-12-26T23:06:40.000Z" - }, - { - "title": "Israel-Gaza war will continue for months, IDF chief warns", - "link": "https://www.bbc.co.uk/news/world-middle-east-67824421?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 26 Dec 2023 20:32:30 GMT", - "content": "There are no shortcuts in the fight against Hamas, the army chief insists as Israel pounds Gaza.", - "contentSnippet": "There are no shortcuts in the fight against Hamas, the army chief insists as Israel pounds Gaza.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67824421", - "isoDate": "2023-12-26T20:32:30.000Z" - }, - { - "title": "'Bethlehem is empty of joy - no Santa, no celebration'", - "link": "https://www.bbc.co.uk/news/world-middle-east-67815370?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Sun, 24 Dec 2023 14:04:54 GMT", - "content": "The West Bank city of Bethlehem, usually bustling at this time of year, is subdued as war goes on in Gaza.", - "contentSnippet": "The West Bank city of Bethlehem, usually bustling at this time of year, is subdued as war goes on in Gaza.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67815370", - "isoDate": "2023-12-24T14:04:54.000Z" - }, - { - "title": "Mexico police free migrants kidnapped off coach", - "link": "https://www.bbc.co.uk/news/world-latin-america-67872039?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:43:37 GMT", - "content": "The migrants had been kidnapped by armed men who boarded their bus bound for to the US-Mexico border.", - "contentSnippet": "The migrants had been kidnapped by armed men who boarded their bus bound for to the US-Mexico border.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67872039", - "isoDate": "2024-01-04T10:43:37.000Z" - }, - { - "title": "Watch: First pictures of plane on fire on Tokyo runway", - "link": "https://www.bbc.co.uk/news/world-asia-67862154?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 02 Jan 2024 09:32:17 GMT", - "content": "The Japan Airlines plane was in flames as it landed on a runway at Haneda airport.", - "contentSnippet": "The Japan Airlines plane was in flames as it landed on a runway at Haneda airport.", - "guid": "https://www.bbc.co.uk/news/world-asia-67862154", - "isoDate": "2024-01-02T09:32:17.000Z" - }, - { - "title": "What next for Oscar Pistorius?", - "link": "https://www.bbc.co.uk/news/world-africa-67883551?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 13:14:29 GMT", - "content": "The South African runner was freed on parole 11 years after murdering his girlfriend.", - "contentSnippet": "The South African runner was freed on parole 11 years after murdering his girlfriend.", - "guid": "https://www.bbc.co.uk/news/world-africa-67883551", - "isoDate": "2024-01-05T13:14:29.000Z" - }, - { - "title": "Watch: Massive fire at New Jersey warehouse", - "link": "https://www.bbc.co.uk/news/world-us-canada-67890377?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 13:05:37 GMT", - "content": "Firefighters have been battling a massive blaze at a warehouse in the Newark area.", - "contentSnippet": "Firefighters have been battling a massive blaze at a warehouse in the Newark area.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67890377", - "isoDate": "2024-01-05T13:05:37.000Z" - }, - { - "title": "Tesla recalls more than 1.6 million cars in China over steering software issues", - "link": "https://www.bbc.co.uk/news/technology-67891080?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 12:46:42 GMT", - "content": "The issues with assisted driving functions and door-locking systems will be fixed by remote updates.", - "contentSnippet": "The issues with assisted driving functions and door-locking systems will be fixed by remote updates.", - "guid": "https://www.bbc.co.uk/news/technology-67891080", - "isoDate": "2024-01-05T12:46:42.000Z" - }, - { - "title": "Neptune and Uranus seen in true colours for first time", - "link": "https://www.bbc.co.uk/news/science-environment-67892275?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 12:46:13 GMT", - "content": "Analysis shows that our ideas of the colours of the planets Neptune and Uranus have been wrong.", - "contentSnippet": "Analysis shows that our ideas of the colours of the planets Neptune and Uranus have been wrong.", - "guid": "https://www.bbc.co.uk/news/science-environment-67892275", - "isoDate": "2024-01-05T12:46:13.000Z" - }, - { - "title": "Hamburg hospital fire kills four patients", - "link": "https://www.bbc.co.uk/news/world-europe-67893076?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 12:05:09 GMT", - "content": "The blaze reportedly broke out on Thursday evening on the third floor of the Helios Clinic in Uelzen.", - "contentSnippet": "The blaze reportedly broke out on Thursday evening on the third floor of the Helios Clinic in Uelzen.", - "guid": "https://www.bbc.co.uk/news/world-europe-67893076", - "isoDate": "2024-01-05T12:05:09.000Z" - }, - { - "title": "India sends navy after pirates attack ship off Somali coast", - "link": "https://www.bbc.co.uk/news/world-africa-67889662?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 11:53:48 GMT", - "content": "The 15 Indian crew members onboard are safe as the navy tracks and closes in on the vessel.", - "contentSnippet": "The 15 Indian crew members onboard are safe as the navy tracks and closes in on the vessel.", - "guid": "https://www.bbc.co.uk/news/world-africa-67889662", - "isoDate": "2024-01-05T11:53:48.000Z" - }, - { - "title": "North Korea fires artillery shells towards South's border island", - "link": "https://www.bbc.co.uk/news/world-asia-67889551?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 11:19:55 GMT", - "content": "South Korea had afterwards issued an evacuation warning to its civilians on the island.", - "contentSnippet": "South Korea had afterwards issued an evacuation warning to its civilians on the island.", - "guid": "https://www.bbc.co.uk/news/world-asia-67889551", - "isoDate": "2024-01-05T11:19:55.000Z" - }, - { - "title": "A Tribe Called Judah becomes highest-earning Nigerian film", - "link": "https://www.bbc.co.uk/news/world-africa-67889661?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 11:10:25 GMT", - "content": "The film has grossed over $1m in domestic theatres since it was released on 15 December last year.", - "contentSnippet": "The film has grossed over $1m in domestic theatres since it was released on 15 December last year.", - "guid": "https://www.bbc.co.uk/news/world-africa-67889661", - "isoDate": "2024-01-05T11:10:25.000Z" - }, - { - "title": "Japan earthquake: Video shows buildings swept away by landslide in Wajima", - "link": "https://www.bbc.co.uk/news/world-asia-67892125?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 11:00:49 GMT", - "content": "Residents are seen running as the landslide crashes down in footage from New Year's Day.", - "contentSnippet": "Residents are seen running as the landslide crashes down in footage from New Year's Day.", - "guid": "https://www.bbc.co.uk/news/world-asia-67892125", - "isoDate": "2024-01-05T11:00:49.000Z" - }, - { - "title": "Oscar Pistorius released on parole 11 years after killing Reeva Steenkamp", - "link": "https://www.bbc.co.uk/news/world-africa-67885713?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 10:33:37 GMT", - "content": "The former athlete shot Reeva Steenkamp multiple times through a closed bathroom door in 2013.", - "contentSnippet": "The former athlete shot Reeva Steenkamp multiple times through a closed bathroom door in 2013.", - "guid": "https://www.bbc.co.uk/news/world-africa-67885713", - "isoDate": "2024-01-05T10:33:37.000Z" - }, - { - "title": "Paramore: Rock band drop out of headline slot at LA festival", - "link": "https://www.bbc.co.uk/news/uk-england-london-67890909?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 10:33:07 GMT", - "content": "It comes after the band took down all posts and images from their social media accounts in December.", - "contentSnippet": "It comes after the band took down all posts and images from their social media accounts in December.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67890909", - "isoDate": "2024-01-05T10:33:07.000Z" - }, - { - "title": "Jeffrey Epstein: Recruitment of girls detailed in second document batch", - "link": "https://www.bbc.co.uk/news/world-us-canada-67879225?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 10:10:53 GMT", - "content": "A Florida detective says in testimony that 30 women performed massage at his Florida mansion.", - "contentSnippet": "A Florida detective says in testimony that 30 women performed massage at his Florida mansion.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67879225", - "isoDate": "2024-01-05T10:10:53.000Z" - }, - { - "title": "Japan earthquake: Nearly 250 missing as hope for survivors fades", - "link": "https://www.bbc.co.uk/news/world-asia-67889216?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 09:43:55 GMT", - "content": "The critical window to find more survivors from beneath the rubble has lapsed.", - "contentSnippet": "The critical window to find more survivors from beneath the rubble has lapsed.", - "guid": "https://www.bbc.co.uk/news/world-asia-67889216", - "isoDate": "2024-01-05T09:43:55.000Z" - }, - { - "title": "Israeli minister outlines plans for Gaza after war", - "link": "https://www.bbc.co.uk/news/world-middle-east-67888794?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 09:40:24 GMT", - "content": "The plans are unveiled by the defence minister as fighting rages on in the Palestinian territory.", - "contentSnippet": "The plans are unveiled by the defence minister as fighting rages on in the Palestinian territory.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67888794", - "isoDate": "2024-01-05T09:40:24.000Z" - }, - { - "title": "The three men vying to be Taiwan's next president", - "link": "https://www.bbc.co.uk/news/world-asia-67758997?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 08:18:26 GMT", - "content": "The race to succeed the outgoing Tsai Ing-wen comes at a low point in US-China relations.", - "contentSnippet": "The race to succeed the outgoing Tsai Ing-wen comes at a low point in US-China relations.", - "guid": "https://www.bbc.co.uk/news/world-asia-67758997", - "isoDate": "2024-01-05T08:18:26.000Z" - }, - { - "title": "Kishin Shinoyama: Photographer of iconic John Lennon-Yoko Ono photo dies", - "link": "https://www.bbc.co.uk/news/world-asia-67889309?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 04:35:44 GMT", - "content": "Kishin Shinoyama's photo of the couple kissing was the cover of their album, Double Fantasy.", - "contentSnippet": "Kishin Shinoyama's photo of the couple kissing was the cover of their album, Double Fantasy.", - "guid": "https://www.bbc.co.uk/news/world-asia-67889309", - "isoDate": "2024-01-05T04:35:44.000Z" - }, - { - "title": "Watch: Venomous snake found lurking in public toilet in Australia", - "link": "https://www.bbc.co.uk/news/world-australia-67879501?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 02:28:53 GMT", - "content": "Snake catcher Tennille Banks was called out to a cubicle in rural Queensland to remove the snake.", - "contentSnippet": "Snake catcher Tennille Banks was called out to a cubicle in rural Queensland to remove the snake.", - "guid": "https://www.bbc.co.uk/news/world-australia-67879501", - "isoDate": "2024-01-05T02:28:53.000Z" - }, - { - "title": "Africa's week in pictures: 29 December 2023-4 January 2024", - "link": "https://www.bbc.co.uk/news/world-africa-67881657?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 00:58:24 GMT", - "content": "A selection of the best photos from the African continent and beyond.", - "contentSnippet": "A selection of the best photos from the African continent and beyond.", - "guid": "https://www.bbc.co.uk/news/world-africa-67881657", - "isoDate": "2024-01-05T00:58:24.000Z" - }, - { - "title": "After Hollywood, Bollywood fights 'unfair' contracts", - "link": "https://www.bbc.co.uk/news/world-asia-india-67758156?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 23:35:13 GMT", - "content": "Screenwriters in one of the world's largest film industries say they want better working conditions.", - "contentSnippet": "Screenwriters in one of the world's largest film industries say they want better working conditions.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67758156", - "isoDate": "2024-01-04T23:35:13.000Z" - }, - { - "title": "Bangladesh election: Lopsided polls leave disillusioned voters asking 'what's the point'", - "link": "https://www.bbc.co.uk/news/world-asia-67879612?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 23:25:15 GMT", - "content": "Many Bangladeshis say the general election is a foregone conclusion and unlikely to improve their lives.", - "contentSnippet": "Many Bangladeshis say the general election is a foregone conclusion and unlikely to improve their lives.", - "guid": "https://www.bbc.co.uk/news/world-asia-67879612", - "isoDate": "2024-01-04T23:25:15.000Z" - }, - { - "title": "'Time capsule' wallet lost in 1950s reunited with owner's family", - "link": "https://www.bbc.co.uk/news/world-us-canada-67888715?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 22:52:44 GMT", - "content": "A wallet found at a cinema in Atlanta, Georgia, is being called a \"time capsule\" from the 1950s.", - "contentSnippet": "A wallet found at a cinema in Atlanta, Georgia, is being called a \"time capsule\" from the 1950s.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67888715", - "isoDate": "2024-01-04T22:52:44.000Z" - }, - { - "title": "McDonald's hit by Israel-Gaza 'misinformation'", - "link": "https://www.bbc.co.uk/news/business-67885910?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 20:43:39 GMT", - "content": "It is a striking acknowledgment of the impact from the conflict on the burger giant.", - "contentSnippet": "It is a striking acknowledgment of the impact from the conflict on the burger giant.", - "guid": "https://www.bbc.co.uk/news/business-67885910", - "isoDate": "2024-01-04T20:43:39.000Z" - }, - { - "title": "Dog enjoys priciest meal of his life - $4,000 cash", - "link": "https://www.bbc.co.uk/news/world-us-canada-67884583?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 19:36:01 GMT", - "content": "Typically a well behaved dog, this seven-year-old chowed down on an envelope of his owners' money.", - "contentSnippet": "Typically a well behaved dog, this seven-year-old chowed down on an envelope of his owners' money.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67884583", - "isoDate": "2024-01-04T19:36:01.000Z" - }, - { - "title": "IS claims responsibility for deadly Iran bombings that killed 84", - "link": "https://www.bbc.co.uk/news/world-middle-east-67888283?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 19:18:28 GMT", - "content": "The Islamic State group says it carried out Wednesday's attack in southern Iran that killed 84 people.", - "contentSnippet": "The Islamic State group says it carried out Wednesday's attack in southern Iran that killed 84 people.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67888283", - "isoDate": "2024-01-04T19:18:28.000Z" - }, - { - "title": "French booze-free January falls flat with Macron government", - "link": "https://www.bbc.co.uk/news/world-europe-67880240?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 15:56:34 GMT", - "content": "President Emmanuel Macron is accused of caving in to the wine lobby by failing to back the campaign.", - "contentSnippet": "President Emmanuel Macron is accused of caving in to the wine lobby by failing to back the campaign.", - "guid": "https://www.bbc.co.uk/news/world-europe-67880240", - "isoDate": "2024-01-04T15:56:34.000Z" - }, - { - "title": "Drivers stranded overnight on Sweden's E22 motorway in deep snow", - "link": "https://www.bbc.co.uk/news/world-europe-67880990?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 11:30:08 GMT", - "content": "The E22 motorway was at a standstill in places, as the country experiences its coldest spell in decades.", - "contentSnippet": "The E22 motorway was at a standstill in places, as the country experiences its coldest spell in decades.", - "guid": "https://www.bbc.co.uk/news/world-europe-67880990", - "isoDate": "2024-01-04T11:30:08.000Z" - }, - { - "title": "Georgian Orthodox Church calls for Stalin icon to be changed", - "link": "https://www.bbc.co.uk/news/world-europe-67948869?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 20:40:05 GMT", - "content": "The icon shows the Soviet dictator being blessed by a saint.", - "contentSnippet": "The icon shows the Soviet dictator being blessed by a saint.", - "guid": "https://www.bbc.co.uk/news/world-europe-67948869", - "isoDate": "2024-01-11T20:40:05.000Z" - }, - { - "title": "eBay pays $3m fine in blogger harassment case", - "link": "https://www.bbc.co.uk/news/world-us-canada-67951113?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 19:51:37 GMT", - "content": "Executives sent live spiders and cockroaches to a US couple who criticised the firm, court papers show.", - "contentSnippet": "Executives sent live spiders and cockroaches to a US couple who criticised the firm, court papers show.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67951113", - "isoDate": "2024-01-11T19:51:37.000Z" - }, - { - "title": "Israel officials support Gaza destruction, court hears", - "link": "https://www.bbc.co.uk/news/world-middle-east-67942983?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 19:21:25 GMT", - "content": "South African lawyers present their case on the first day of a hearing at the UN's top court.", - "contentSnippet": "South African lawyers present their case on the first day of a hearing at the UN's top court.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67942983", - "isoDate": "2024-01-11T19:21:25.000Z" - }, - { - "title": "Huge ancient city found in the Amazon", - "link": "https://www.bbc.co.uk/news/science-environment-67940671?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 19:08:48 GMT", - "content": "The city was built 2,500 years ago but may have been abandoned after a volcanic eruption.", - "contentSnippet": "The city was built 2,500 years ago but may have been abandoned after a volcanic eruption.", - "guid": "https://www.bbc.co.uk/news/science-environment-67940671", - "isoDate": "2024-01-11T19:08:48.000Z" - }, - { - "title": "Legendary coach Belichick to leave NFL's Patriots", - "link": "https://www.bbc.co.uk/sport/american-football/67948937?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 18:43:38 GMT", - "content": "Legendary head coach Bill Belichick confirms he will leave the New England Patriots, ending his 24-season tenure.", - "contentSnippet": "Legendary head coach Bill Belichick confirms he will leave the New England Patriots, ending his 24-season tenure.", - "guid": "https://www.bbc.co.uk/sport/american-football/67948937", - "isoDate": "2024-01-11T18:43:38.000Z" - }, - { - "title": "Iran seizes oil tanker St Nikolas near Oman", - "link": "https://www.bbc.co.uk/news/world-middle-east-67948119?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 18:08:52 GMT", - "content": "State media said the St Nikolas was taken in retaliation for the seizure of the vessel by the US last year.", - "contentSnippet": "State media said the St Nikolas was taken in retaliation for the seizure of the vessel by the US last year.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67948119", - "isoDate": "2024-01-11T18:08:52.000Z" - }, - { - "title": "'This is my home\u2019 \u2013 a 13-year-old vlogger's life in Gaza", - "link": "https://www.bbc.co.uk/news/world-middle-east-67952301?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 17:53:08 GMT", - "content": "Nadine Abdul Latif moved home three times since the war began, and an Israeli air strike killed her brother.", - "contentSnippet": "Nadine Abdul Latif moved home three times since the war began, and an Israeli air strike killed her brother.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67952301", - "isoDate": "2024-01-11T17:53:08.000Z" - }, - { - "title": "German far-right met to plan 'mass deportations'", - "link": "https://www.bbc.co.uk/news/world-europe-67948861?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 16:56:41 GMT", - "content": "Far-right politicians reportedly met at a villa near a lake outside Berlin to discuss their plans.", - "contentSnippet": "Far-right politicians reportedly met at a villa near a lake outside Berlin to discuss their plans.", - "guid": "https://www.bbc.co.uk/news/world-europe-67948861", - "isoDate": "2024-01-11T16:56:41.000Z" - }, - { - "title": "Somalia conflict: Seized UN helicopter hit by object - source", - "link": "https://www.bbc.co.uk/news/world-africa-67947763?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 16:55:48 GMT", - "content": "Armed Islamists have taken captive the aircraft's passengers and crew after it crash-landed.", - "contentSnippet": "Armed Islamists have taken captive the aircraft's passengers and crew after it crash-landed.", - "guid": "https://www.bbc.co.uk/news/world-africa-67947763", - "isoDate": "2024-01-11T16:55:48.000Z" - }, - { - "title": "Taiwan election: China warns voters then condemns US 'brazen chattering'", - "link": "https://www.bbc.co.uk/news/world-asia-67949003?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 16:11:30 GMT", - "content": "China says the ruling party candidate is a risk to relations, then condemns US \"brazen chattering\".", - "contentSnippet": "China says the ruling party candidate is a risk to relations, then condemns US \"brazen chattering\".", - "guid": "https://www.bbc.co.uk/news/world-asia-67949003", - "isoDate": "2024-01-11T16:11:30.000Z" - }, - { - "title": "Eight 'suspicious' US deaths in Colombia linked to dating apps", - "link": "https://www.bbc.co.uk/news/world-latin-america-67947333?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 14:52:08 GMT", - "content": "The US embassy warns criminals are using the dating apps to rob and sometimes kill foreign tourists.", - "contentSnippet": "The US embassy warns criminals are using the dating apps to rob and sometimes kill foreign tourists.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67947333", - "isoDate": "2024-01-11T14:52:08.000Z" - }, - { - "title": "Former England boss Sven-Goran Eriksson diagnosed with terminal cancer", - "link": "https://www.bbc.co.uk/sport/football/67942943?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 13:36:27 GMT", - "content": "Former England boss Sven-Goran Eriksson says he has \"best case a year\" to live after being diagnosed with cancer.", - "contentSnippet": "Former England boss Sven-Goran Eriksson says he has \"best case a year\" to live after being diagnosed with cancer.", - "guid": "https://www.bbc.co.uk/sport/football/67942943", - "isoDate": "2024-01-11T13:36:27.000Z" - }, - { - "title": "Afcon 2023: Gambia coach feared team would die on aborted flight to Ivory Coast", - "link": "https://www.bbc.co.uk/sport/africa/67944871?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 13:00:37 GMT", - "content": "The Gambia squad travelling to the Africa Cup of Nations \"could have died\" on an aborted flight, claims coach Tom Saintfiet.", - "contentSnippet": "The Gambia squad travelling to the Africa Cup of Nations \"could have died\" on an aborted flight, claims coach Tom Saintfiet.", - "guid": "https://www.bbc.co.uk/sport/africa/67944871", - "isoDate": "2024-01-11T13:00:37.000Z" - }, - { - "title": "Google's billions make job cuts 'needless' - union", - "link": "https://www.bbc.co.uk/news/technology-67937725?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 11:56:23 GMT", - "content": "The Alphabet Workers Union criticises the tech giant for axing hundreds of jobs despite vast earnings.", - "contentSnippet": "The Alphabet Workers Union criticises the tech giant for axing hundreds of jobs despite vast earnings.", - "guid": "https://www.bbc.co.uk/news/technology-67937725", - "isoDate": "2024-01-11T11:56:23.000Z" - }, - { - "title": "'They hunted us' says Ecuador TV station attack victim", - "link": "https://www.bbc.co.uk/news/world-latin-america-67945611?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 11:48:23 GMT", - "content": "Dozens of journalists were held at gunpoint when armed men broke into their workplace.", - "contentSnippet": "Dozens of journalists were held at gunpoint when armed men broke into their workplace.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67945611", - "isoDate": "2024-01-11T11:48:23.000Z" - }, - { - "title": "What is South Africa\u2019s genocide case against Israel at the ICJ?", - "link": "https://www.bbc.co.uk/news/world-middle-east-67922346?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 10:12:33 GMT", - "content": "The International Court of Justice (ICJ) will consider whether Israel is committing genocide in Gaza.", - "contentSnippet": "The International Court of Justice (ICJ) will consider whether Israel is committing genocide in Gaza.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67922346", - "isoDate": "2024-01-11T10:12:33.000Z" - }, - { - "title": "Zambia cholera: President Hakainde Hichilema urges people to move to villages", - "link": "https://www.bbc.co.uk/news/world-africa-67931876?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 09:59:50 GMT", - "content": "President Hakainde Hichilema says some slums in urban areas are a breeding ground for the disease.", - "contentSnippet": "President Hakainde Hichilema says some slums in urban areas are a breeding ground for the disease.", - "guid": "https://www.bbc.co.uk/news/world-africa-67931876", - "isoDate": "2024-01-11T09:59:50.000Z" - }, - { - "title": "Papua New Guinea: Streets overrun by looters in Port Moresby", - "link": "https://www.bbc.co.uk/news/world-asia-67942405?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 08:16:42 GMT", - "content": "At least eight people are killed in Port Moresby after police go on strike over a pay dispute.", - "contentSnippet": "At least eight people are killed in Port Moresby after police go on strike over a pay dispute.", - "guid": "https://www.bbc.co.uk/news/world-asia-67942405", - "isoDate": "2024-01-11T08:16:42.000Z" - }, - { - "title": "Haley and DeSantis trade insults at heated Iowa debate", - "link": "https://www.bbc.co.uk/news/world-us-canada-67942133?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 08:11:51 GMT", - "content": "The two Republicans clashed just days before the Iowa caucuses, the first votes being cast in the 2024 election.", - "contentSnippet": "The two Republicans clashed just days before the Iowa caucuses, the first votes being cast in the 2024 election.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67942133", - "isoDate": "2024-01-11T08:11:51.000Z" - }, - { - "title": "Animators say \u2018AI isn't going to get you an Oscar\u2019", - "link": "https://www.bbc.co.uk/news/business-67922588?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 00:15:56 GMT", - "content": "Comic book writers and animators fear the growing impact of artificial intelligence.", - "contentSnippet": "Comic book writers and animators fear the growing impact of artificial intelligence.", - "guid": "https://www.bbc.co.uk/news/business-67922588", - "isoDate": "2024-01-11T00:15:56.000Z" - }, - { - "title": "Mozambique storms: How to cyclone-proof your life", - "link": "https://www.bbc.co.uk/news/world-africa-67937595?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 00:04:52 GMT", - "content": "Mozambicans learn to build stronger houses as climate change brings bigger and deadlier storms.", - "contentSnippet": "Mozambicans learn to build stronger houses as climate change brings bigger and deadlier storms.", - "guid": "https://www.bbc.co.uk/news/world-africa-67937595", - "isoDate": "2024-01-11T00:04:52.000Z" - }, - { - "title": "China and Taiwan: Love and longing across the strait", - "link": "https://www.bbc.co.uk/news/world-asia-china-67931901?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 00:00:52 GMT", - "content": "Beijing has made its position clear on Taiwan, but what do the country's citizens want?", - "contentSnippet": "Beijing has made its position clear on Taiwan, but what do the country's citizens want?", - "guid": "https://www.bbc.co.uk/news/world-asia-china-67931901", - "isoDate": "2024-01-11T00:00:52.000Z" - }, - { - "title": "Hard choices for the West in Red Sea stand-off", - "link": "https://www.bbc.co.uk/news/world-middle-east-67938290?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 10 Jan 2024 23:12:51 GMT", - "content": "Most of the world deplores the Houthi attacks on shipping, but there are barriers which make it difficult for the West to stop them.", - "contentSnippet": "Most of the world deplores the Houthi attacks on shipping, but there are barriers which make it difficult for the West to stop them.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67938290", - "isoDate": "2024-01-10T23:12:51.000Z" - }, - { - "title": "Eurovision: Finnish artists want Israel barred from contest over Gaza war", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67941086?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 10 Jan 2024 21:38:17 GMT", - "content": "More than 1,400 music professionals demand action from public broadcaster Yle.", - "contentSnippet": "More than 1,400 music professionals demand action from public broadcaster Yle.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67941086", - "isoDate": "2024-01-10T21:38:17.000Z" - }, - { - "title": "Alexei Navalny jokes in first appearance from new prison", - "link": "https://www.bbc.co.uk/news/world-europe-67941119?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 10 Jan 2024 18:44:14 GMT", - "content": "The Russian opposition leader made his first public appearance in a video call since being moved to an Arctic prison.", - "contentSnippet": "The Russian opposition leader made his first public appearance in a video call since being moved to an Arctic prison.", - "guid": "https://www.bbc.co.uk/news/world-europe-67941119", - "isoDate": "2024-01-10T18:44:14.000Z" - }, - { - "title": "Scientists crack mystery of how MS gene spread", - "link": "https://www.bbc.co.uk/news/health-67917294?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 10 Jan 2024 16:09:53 GMT", - "content": "The DNA of ancient cattle herders has revealed how diseases evolved in Europe over thousands of years.", - "contentSnippet": "The DNA of ancient cattle herders has revealed how diseases evolved in Europe over thousands of years.", - "guid": "https://www.bbc.co.uk/news/health-67917294", - "isoDate": "2024-01-10T16:09:53.000Z" - }, - { - "title": "How Ecuador descended into gang violence", - "link": "https://www.bbc.co.uk/news/world-latin-america-67912242?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 10 Jan 2024 13:20:36 GMT", - "content": "A closer look at what is behind the wave of violence which has engulfed once-peaceful Ecuador.", - "contentSnippet": "A closer look at what is behind the wave of violence which has engulfed once-peaceful Ecuador.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67912242", - "isoDate": "2024-01-10T13:20:36.000Z" - }, - { - "title": "All India Pregnant Job service: Indian men conned by 'impregnating women' scam", - "link": "https://www.bbc.co.uk/news/world-asia-india-67860456?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 10 Jan 2024 00:00:22 GMT", - "content": "Scammers in Bihar state promised to pay huge sums of money to men to get childless women pregnant.", - "contentSnippet": "Scammers in Bihar state promised to pay huge sums of money to men to get childless women pregnant.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67860456", - "isoDate": "2024-01-10T00:00:22.000Z" - }, - { - "title": "TB Joshua\u2019s daughter: Tortured after standing up to \u2018Daddy\u2019", - "link": "https://www.bbc.co.uk/news/world-africa-67923906?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 10 Jan 2024 00:00:11 GMT", - "content": "The first person to blow the whistle on the abuse at the megapastor's church was his young daughter.", - "contentSnippet": "The first person to blow the whistle on the abuse at the megapastor's church was his young daughter.", - "guid": "https://www.bbc.co.uk/news/world-africa-67923906", - "isoDate": "2024-01-10T00:00:11.000Z" - }, - { - "title": "Ecuador: Watch gunmen threaten presenter on live TV", - "link": "https://www.bbc.co.uk/news/67927623?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 09 Jan 2024 21:35:45 GMT", - "content": "Armed men are seen pointing guns at staff inside a live TV studio in the city of Guayaquil.", - "contentSnippet": "Armed men are seen pointing guns at staff inside a live TV studio in the city of Guayaquil.", - "guid": "https://www.bbc.co.uk/news/67927623", - "isoDate": "2024-01-09T21:35:45.000Z" - }, - { - "title": "Israel-Gaza war: Blinken says cost of conflict on children far too high", - "link": "https://www.bbc.co.uk/news/world-us-canada-67929616?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 09 Jan 2024 20:46:28 GMT", - "content": "The US Secretary of State says the creation of a Palestinian state is vital for long-term peace in the region.", - "contentSnippet": "The US Secretary of State says the creation of a Palestinian state is vital for long-term peace in the region.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67929616", - "isoDate": "2024-01-09T20:46:28.000Z" - }, - { - "title": "South Korea: Dog meat still on the menu in Seoul... for now", - "link": "https://www.bbc.co.uk/news/world-asia-67921569?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 09 Jan 2024 15:36:54 GMT", - "content": "The BBC reports from one of the few places in the city where you can eat dog meat ahead of a ban.", - "contentSnippet": "The BBC reports from one of the few places in the city where you can eat dog meat ahead of a ban.", - "guid": "https://www.bbc.co.uk/news/world-asia-67921569", - "isoDate": "2024-01-09T15:36:54.000Z" - }, - { - "title": "Saudi Arabia interested in Israel normalisation deal after war", - "link": "https://www.bbc.co.uk/news/world-middle-east-67922238?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 09 Jan 2024 14:11:11 GMT", - "content": "The Saudi ambassador to the UK says any agreement must lead to the creation of a Palestinian state.", - "contentSnippet": "The Saudi ambassador to the UK says any agreement must lead to the creation of a Palestinian state.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67922238", - "isoDate": "2024-01-09T14:11:11.000Z" - }, - { - "title": "'I cannot sleep in peace' - Israelis fearful as Hezbollah tensions soar", - "link": "https://www.bbc.co.uk/news/world-middle-east-67921167?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 09 Jan 2024 10:39:35 GMT", - "content": "As fighting spirals, Israelis living near Lebanon worry about a full-scale attack by Hezbollah.", - "contentSnippet": "As fighting spirals, Israelis living near Lebanon worry about a full-scale attack by Hezbollah.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67921167", - "isoDate": "2024-01-09T10:39:35.000Z" - }, - { - "title": "Antony Blinken: On the US mission to stop Gaza igniting wider war", - "link": "https://www.bbc.co.uk/news/world-middle-east-67911825?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Mon, 08 Jan 2024 21:17:37 GMT", - "content": "The US secretary of state wants to prevent the war escalating but the cauldron of tensions could boil over.", - "contentSnippet": "The US secretary of state wants to prevent the war escalating but the cauldron of tensions could boil over.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67911825", - "isoDate": "2024-01-08T21:17:37.000Z" - }, - { - "title": "Israel-Palestinian bitterness deepened by Hamas attack and war", - "link": "https://www.bbc.co.uk/news/world-middle-east-67893122?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Sun, 07 Jan 2024 09:30:05 GMT", - "content": "Both Israelis and Palestinians believe the world does not understand their pain and suffering.", - "contentSnippet": "Both Israelis and Palestinians believe the world does not understand their pain and suffering.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67893122", - "isoDate": "2024-01-07T09:30:05.000Z" - }, - { - "title": "Israel-Gaza war: The huge challenges facing Israel's 'day after' plan", - "link": "https://www.bbc.co.uk/news/world-middle-east-67891893?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Sat, 06 Jan 2024 12:37:17 GMT", - "content": "Paul Adams examines the Gaza proposal - which is little more than a series of bullet points.", - "contentSnippet": "Paul Adams examines the Gaza proposal - which is little more than a series of bullet points.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67891893", - "isoDate": "2024-01-06T12:37:17.000Z" - }, - { - "title": "Israeli ex-hostage returns to site of Nova festival massacre and kidnappings", - "link": "https://www.bbc.co.uk/news/world-middle-east-67893123?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 17:24:30 GMT", - "content": "Survivors and relatives of those killed or kidnapped pay emotional visits to the festival site for a memorial event.", - "contentSnippet": "Survivors and relatives of those killed or kidnapped pay emotional visits to the festival site for a memorial event.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67893123", - "isoDate": "2024-01-05T17:24:30.000Z" - }, - { - "title": "Australian Open 2024 results: Emma Raducanu loses to Wang Yafan", - "link": "https://www.bbc.co.uk/sport/tennis/68016106?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 11:29:32 GMT", - "content": "Emma Raducanu sees her first Grand Slam appearance since wrist and ankle surgeries ended by Wang Yafan in the Australian Open second round.", - "contentSnippet": "Emma Raducanu sees her first Grand Slam appearance since wrist and ankle surgeries ended by Wang Yafan in the Australian Open second round.", - "guid": "https://www.bbc.co.uk/sport/tennis/68016106", - "isoDate": "2024-01-18T11:29:32.000Z" - }, - { - "title": "Pakistan launches retaliatory strikes into Iran, killing nine people", - "link": "https://www.bbc.co.uk/news/world-asia-68014882?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 11:23:42 GMT", - "content": "Nine people are reported to have been killed in the strikes, which come after Iran hit targets in Pakistan.", - "contentSnippet": "Nine people are reported to have been killed in the strikes, which come after Iran hit targets in Pakistan.", - "guid": "https://www.bbc.co.uk/news/world-asia-68014882", - "isoDate": "2024-01-18T11:23:42.000Z" - }, - { - "title": "North Korea: Rare footage shows teens sentenced to hard labour over K-drama", - "link": "https://www.bbc.co.uk/news/world-asia-68015652?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 11:06:52 GMT", - "content": "Footage obtained by BBC Korean shows two 16-year-old boys handcuffed and sentenced to hard labour.", - "contentSnippet": "Footage obtained by BBC Korean shows two 16-year-old boys handcuffed and sentenced to hard labour.", - "guid": "https://www.bbc.co.uk/news/world-asia-68015652", - "isoDate": "2024-01-18T11:06:52.000Z" - }, - { - "title": "Arnold Schwarzenegger detained over EU tax for luxury watch", - "link": "https://www.bbc.co.uk/news/world-europe-68015612?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 10:06:50 GMT", - "content": "The probe for alleged tax evasion came as the actor arrived in Munich on his way to an auction.", - "contentSnippet": "The probe for alleged tax evasion came as the actor arrived in Munich on his way to an auction.", - "guid": "https://www.bbc.co.uk/news/world-europe-68015612", - "isoDate": "2024-01-18T10:06:50.000Z" - }, - { - "title": "Watch: Armed man in clown mask robs store", - "link": "https://www.bbc.co.uk/news/world-australia-68015158?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 05:53:27 GMT", - "content": "CCTV footage shows a man waving what appears to be a gun and threatening an employee in Australia.", - "contentSnippet": "CCTV footage shows a man waving what appears to be a gun and threatening an employee in Australia.", - "guid": "https://www.bbc.co.uk/news/world-australia-68015158", - "isoDate": "2024-01-18T05:53:27.000Z" - }, - { - "title": "Lakshadweep: Can India's 'alternative Maldives' handle mass tourism?", - "link": "https://www.bbc.co.uk/news/world-asia-india-67911165?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 04:08:29 GMT", - "content": "Indian PM Modi's recent visit to Lakshadweep could spark a tourist surge - but is the island chain ready?", - "contentSnippet": "Indian PM Modi's recent visit to Lakshadweep could spark a tourist surge - but is the island chain ready?", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67911165", - "isoDate": "2024-01-18T04:08:29.000Z" - }, - { - "title": "El Salvador woman freed after abortion conviction", - "link": "https://www.bbc.co.uk/news/world-latin-america-68014699?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 03:07:49 GMT", - "content": "Lilian's baby died in hospital, but she was charged with murder and sentenced to 30 years in prison.", - "contentSnippet": "Lilian's baby died in hospital, but she was charged with murder and sentenced to 30 years in prison.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-68014699", - "isoDate": "2024-01-18T03:07:49.000Z" - }, - { - "title": "Anger and sadness over Pitchfork merger with GQ", - "link": "https://www.bbc.co.uk/news/world-us-canada-68014108?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 02:57:21 GMT", - "content": "Senior staff have lost their jobs as the music website merges with the men's magazine.", - "contentSnippet": "Senior staff have lost their jobs as the music website merges with the men's magazine.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-68014108", - "isoDate": "2024-01-18T02:57:21.000Z" - }, - { - "title": "US launches fourth round of strikes on Houthi targets in Yemen", - "link": "https://www.bbc.co.uk/news/world-us-canada-68014127?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 02:50:43 GMT", - "content": "Officials say 14 Houthi missile sites were targeted in the latest round of pre-emptive strikes.", - "contentSnippet": "Officials say 14 Houthi missile sites were targeted in the latest round of pre-emptive strikes.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-68014127", - "isoDate": "2024-01-18T02:50:43.000Z" - }, - { - "title": "E Jean Carroll trial: Judge threatens to remove Trump from court", - "link": "https://www.bbc.co.uk/news/world-us-canada-68009461?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 02:11:01 GMT", - "content": "The threat came after the ex-president was overheard criticising his accuser's testimony in court.", - "contentSnippet": "The threat came after the ex-president was overheard criticising his accuser's testimony in court.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-68009461", - "isoDate": "2024-01-18T02:11:01.000Z" - }, - { - "title": "Torrid lives at the bottom of people-smugglers' pyramid", - "link": "https://www.bbc.co.uk/news/world-europe-67991658?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 00:34:07 GMT", - "content": "The Balkan migrant route is growing in prominence and local smugglers take high risks for little money.", - "contentSnippet": "The Balkan migrant route is growing in prominence and local smugglers take high risks for little money.", - "guid": "https://www.bbc.co.uk/news/world-europe-67991658", - "isoDate": "2024-01-18T00:34:07.000Z" - }, - { - "title": "Peregrine lander: US Moon mission on course for fiery destruction", - "link": "https://www.bbc.co.uk/news/science-environment-67962397?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 00:01:27 GMT", - "content": "The hobbled Peregrine Moon lander will be forced to burn up in Earth's atmosphere.", - "contentSnippet": "The hobbled Peregrine Moon lander will be forced to burn up in Earth's atmosphere.", - "guid": "https://www.bbc.co.uk/news/science-environment-67962397", - "isoDate": "2024-01-18T00:01:27.000Z" - }, - { - "title": "Courtney Dauwalter: Step inside the 'pain cave', where rules are remade", - "link": "https://www.bbc.co.uk/sport/athletics/67945344?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 00:01:08 GMT", - "content": "Courtney Dauwalter used to teach biology. Now her ultrarunning achievements are challenging centuries-old ideas about the differences in physical capabilities between men and women.", - "contentSnippet": "Courtney Dauwalter used to teach biology. Now her ultrarunning achievements are challenging centuries-old ideas about the differences in physical capabilities between men and women.", - "guid": "https://www.bbc.co.uk/sport/athletics/67945344", - "isoDate": "2024-01-18T00:01:08.000Z" - }, - { - "title": "Why these Taiwanese Americans flew home to vote", - "link": "https://www.bbc.co.uk/news/world-asia-68004459?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 23:09:15 GMT", - "content": "They returned to vote in an election that China framed as a choice between war and peace.", - "contentSnippet": "They returned to vote in an election that China framed as a choice between war and peace.", - "guid": "https://www.bbc.co.uk/news/world-asia-68004459", - "isoDate": "2024-01-17T23:09:15.000Z" - }, - { - "title": "US woman gets 26 years for mother's 'suitcase murder'", - "link": "https://www.bbc.co.uk/news/world-us-canada-68014289?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 22:51:58 GMT", - "content": "Heather Mack helped to kill her mother and stuff her body in a suitcase in Bali a decade ago.", - "contentSnippet": "Heather Mack helped to kill her mother and stuff her body in a suitcase in Bali a decade ago.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-68014289", - "isoDate": "2024-01-17T22:51:58.000Z" - }, - { - "title": "Ecuador prosecutor probing TV studio attack killed", - "link": "https://www.bbc.co.uk/news/world-latin-america-68014040?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 22:38:39 GMT", - "content": "C\u00e9sar Su\u00e1rez was shot dead in the port city of Guayaquil on Wednesday, the attorney general said.", - "contentSnippet": "C\u00e9sar Su\u00e1rez was shot dead in the port city of Guayaquil on Wednesday, the attorney general said.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-68014040", - "isoDate": "2024-01-17T22:38:39.000Z" - }, - { - "title": "Watch: Why do weird things happen when it gets so cold?", - "link": "https://www.bbc.co.uk/news/world-us-canada-68012886?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 21:32:48 GMT", - "content": "The science behind viral spectacles as North America is hit with severely cold temperatures.", - "contentSnippet": "The science behind viral spectacles as North America is hit with severely cold temperatures.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-68012886", - "isoDate": "2024-01-17T21:32:48.000Z" - }, - { - "title": "Spain shaman arrests: Police say group sold psychoactive drugs to members", - "link": "https://www.bbc.co.uk/news/world-europe-68007643?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 21:19:59 GMT", - "content": "Members of the group are accused of promoting rituals involving psychoactive substances like toad venom.", - "contentSnippet": "Members of the group are accused of promoting rituals involving psychoactive substances like toad venom.", - "guid": "https://www.bbc.co.uk/news/world-europe-68007643", - "isoDate": "2024-01-17T21:19:59.000Z" - }, - { - "title": "Blinken grounded in Davos as plane has 'critical failure'", - "link": "https://www.bbc.co.uk/news/world-us-canada-67947341?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 19:31:59 GMT", - "content": "The US secretary of state was due to return from the World Economic Forum in Davos when the issue occurred.", - "contentSnippet": "The US secretary of state was due to return from the World Economic Forum in Davos when the issue occurred.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67947341", - "isoDate": "2024-01-17T19:31:59.000Z" - }, - { - "title": "Italian influencers to be bound by tighter rules", - "link": "https://www.bbc.co.uk/news/world-europe-68004438?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 18:40:49 GMT", - "content": "Social media creators will face hefty fines if they fail to abide by strict rules on commercial interests.", - "contentSnippet": "Social media creators will face hefty fines if they fail to abide by strict rules on commercial interests.", - "guid": "https://www.bbc.co.uk/news/world-europe-68004438", - "isoDate": "2024-01-17T18:40:49.000Z" - }, - { - "title": "What is behind the TikTok thirst for Stanley water cups?", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67999424?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 18:32:06 GMT", - "content": "People are camping outside supermarkets in the US to try to buy the latest internet on-trend item.", - "contentSnippet": "People are camping outside supermarkets in the US to try to buy the latest internet on-trend item.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67999424", - "isoDate": "2024-01-17T18:32:06.000Z" - }, - { - "title": "Russia protest: Crowds clash with riot police as activist jailed", - "link": "https://www.bbc.co.uk/news/world-europe-68006123?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 18:24:20 GMT", - "content": "Riot police clash with protesters in small town in the Urals after Fail Alsynov was jailed.", - "contentSnippet": "Riot police clash with protesters in small town in the Urals after Fail Alsynov was jailed.", - "guid": "https://www.bbc.co.uk/news/world-europe-68006123", - "isoDate": "2024-01-17T18:24:20.000Z" - }, - { - "title": "Frederik X: Danish king's surprise book set to become bestseller", - "link": "https://www.bbc.co.uk/news/world-europe-68004437?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 18:20:55 GMT", - "content": "In his book Frederik X discusses Denmark's place in world and his relationship with his wife.", - "contentSnippet": "In his book Frederik X discusses Denmark's place in world and his relationship with his wife.", - "guid": "https://www.bbc.co.uk/news/world-europe-68004437", - "isoDate": "2024-01-17T18:20:55.000Z" - }, - { - "title": "Ernest Bai Koroma: Former president can leave Sierra Leone amid Nigeria exile rumours", - "link": "https://www.bbc.co.uk/news/world-africa-68011514?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 18:08:21 GMT", - "content": "Ernest Bai Koroma has been charged with treason after being linked to a failed coup last November.", - "contentSnippet": "Ernest Bai Koroma has been charged with treason after being linked to a failed coup last November.", - "guid": "https://www.bbc.co.uk/news/world-africa-68011514", - "isoDate": "2024-01-17T18:08:21.000Z" - }, - { - "title": "West Bank strike: Israel accused of targeting civilians in deadly attack", - "link": "https://www.bbc.co.uk/news/world-middle-east-68006126?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 17:43:50 GMT", - "content": "The IDF says the strike hit a \u201cterrorist squad\u201d, but witnesses tell the BBC the group posed no threat.", - "contentSnippet": "The IDF says the strike hit a \u201cterrorist squad\u201d, but witnesses tell the BBC the group posed no threat.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-68006126", - "isoDate": "2024-01-17T17:43:50.000Z" - }, - { - "title": "Pierce Brosnan pleads not guilty to hiking off trail in Yellowstone thermal area", - "link": "https://www.bbc.co.uk/news/world-us-canada-67947339?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 16:25:18 GMT", - "content": "The James Bond star pleaded not guilty to entering the park's restricted area of acidic hot springs.", - "contentSnippet": "The James Bond star pleaded not guilty to entering the park's restricted area of acidic hot springs.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67947339", - "isoDate": "2024-01-17T16:25:18.000Z" - }, - { - "title": "Paul Mackenzie: Kenya starvation cult leader to undergo mental health checks", - "link": "https://www.bbc.co.uk/news/world-africa-68005997?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 16:14:51 GMT", - "content": "Psychiatrists will assess whether the man accused of 400 deaths is fit to stand trial.", - "contentSnippet": "Psychiatrists will assess whether the man accused of 400 deaths is fit to stand trial.", - "guid": "https://www.bbc.co.uk/news/world-africa-68005997", - "isoDate": "2024-01-17T16:14:51.000Z" - }, - { - "title": "Intense Israeli strikes in south Gaza city as hostages sent medicine", - "link": "https://www.bbc.co.uk/news/world-middle-east-68004449?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 16:11:07 GMT", - "content": "Khan Younis residents report intense fighting, as Qatar says Hamas will give medicines to hostages.", - "contentSnippet": "Khan Younis residents report intense fighting, as Qatar says Hamas will give medicines to hostages.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-68004449", - "isoDate": "2024-01-17T16:11:07.000Z" - }, - { - "title": "Ibadan explosion in Nigeria: 'The roof fell on my mother in bed'", - "link": "https://www.bbc.co.uk/news/world-africa-68002936?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 15:40:05 GMT", - "content": "Two people are killed and 77 injured when explosives illegally stored in a residential area ignite, officials say.", - "contentSnippet": "Two people are killed and 77 injured when explosives illegally stored in a residential area ignite, officials say.", - "guid": "https://www.bbc.co.uk/news/world-africa-68002936", - "isoDate": "2024-01-17T15:40:05.000Z" - }, - { - "title": "Rita Waeni: Mozambican held over murder that shocked Kenya", - "link": "https://www.bbc.co.uk/news/world-africa-68002939?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 15:22:05 GMT", - "content": "The shocking killing of student Rita Waeni, 20, has ignited an anti-femicide campaign in Kenya.", - "contentSnippet": "The shocking killing of student Rita Waeni, 20, has ignited an anti-femicide campaign in Kenya.", - "guid": "https://www.bbc.co.uk/news/world-africa-68002939", - "isoDate": "2024-01-17T15:22:05.000Z" - }, - { - "title": "Somalia turns back Ethiopian plane headed for Somaliland", - "link": "https://www.bbc.co.uk/news/world-africa-68006001?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 14:34:39 GMT", - "content": "The plane was carrying Ethiopian officials to the self-declared republic of Somaliland.", - "contentSnippet": "The plane was carrying Ethiopian officials to the self-declared republic of Somaliland.", - "guid": "https://www.bbc.co.uk/news/world-africa-68006001", - "isoDate": "2024-01-17T14:34:39.000Z" - }, - { - "title": "Antwerp drugs: Record seizures at Europe's 'cocaine capital' port", - "link": "https://www.bbc.co.uk/news/world-europe-68004291?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 14:32:19 GMT", - "content": "Antwerp has become Europe's main gateway for the drug shipped from South America.", - "contentSnippet": "Antwerp has become Europe's main gateway for the drug shipped from South America.", - "guid": "https://www.bbc.co.uk/news/world-europe-68004291", - "isoDate": "2024-01-17T14:32:19.000Z" - }, - { - "title": "Iran demonstrates missile capabilities with regional strikes", - "link": "https://www.bbc.co.uk/news/world-middle-east-68004451?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 14:28:33 GMT", - "content": "Jiyar Gol analyses the message Iran is seeking to send with its strikes in Iraq, Syria and Pakistan.", - "contentSnippet": "Jiyar Gol analyses the message Iran is seeking to send with its strikes in Iraq, Syria and Pakistan.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-68004451", - "isoDate": "2024-01-17T14:28:33.000Z" - }, - { - "title": "Russia protest: Crowds throw snowballs at police as activist jailed", - "link": "https://www.bbc.co.uk/news/world-europe-68007949?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 13:23:59 GMT", - "content": "Protesters clash with riot police in Bashkortostan after a local activist was sentenced to years in a penal colony.", - "contentSnippet": "Protesters clash with riot police in Bashkortostan after a local activist was sentenced to years in a penal colony.", - "guid": "https://www.bbc.co.uk/news/world-europe-68007949", - "isoDate": "2024-01-17T13:23:59.000Z" - }, - { - "title": "Doppelganger murder: German woman goes on trial accused of killing lookalike", - "link": "https://www.bbc.co.uk/news/world-europe-67991425?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 11:24:40 GMT", - "content": "Sharaban K is accused of selecting her victim because of her similar looks to fake her own death.", - "contentSnippet": "Sharaban K is accused of selecting her victim because of her similar looks to fake her own death.", - "guid": "https://www.bbc.co.uk/news/world-europe-67991425", - "isoDate": "2024-01-17T11:24:40.000Z" - }, - { - "title": "France's Macron shifts to right on schools and birth rate", - "link": "https://www.bbc.co.uk/news/world-europe-68004289?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 10:57:17 GMT", - "content": "The French president promotes school uniforms, a drug gang crackdown and raising the low birth rate.", - "contentSnippet": "The French president promotes school uniforms, a drug gang crackdown and raising the low birth rate.", - "guid": "https://www.bbc.co.uk/news/world-europe-68004289", - "isoDate": "2024-01-17T10:57:17.000Z" - }, - { - "title": "Flight returns to Japan after \u2018drunk\u2019 man bites crew member", - "link": "https://www.bbc.co.uk/news/world-asia-68004881?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 10:19:21 GMT", - "content": "The man, reportedly a 55-year-old American, said he did not remember what happened.", - "contentSnippet": "The man, reportedly a 55-year-old American, said he did not remember what happened.", - "guid": "https://www.bbc.co.uk/news/world-asia-68004881", - "isoDate": "2024-01-17T10:19:21.000Z" - }, - { - "title": "China population falls as birth rate hits record low", - "link": "https://www.bbc.co.uk/news/world-asia-china-68002803?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 09:46:45 GMT", - "content": "The decline underscores concerns about the future growth of the world's second-largest economy.", - "contentSnippet": "The decline underscores concerns about the future growth of the world's second-largest economy.", - "guid": "https://www.bbc.co.uk/news/world-asia-china-68002803", - "isoDate": "2024-01-17T09:46:45.000Z" - }, - { - "title": "Poland's journalists caught up in battle for airwaves", - "link": "https://www.bbc.co.uk/news/world-europe-67993372?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 08:23:23 GMT", - "content": "Public TV and radio are entangled in a political battle as Poland shifts away from the right.", - "contentSnippet": "Public TV and radio are entangled in a political battle as Poland shifts away from the right.", - "guid": "https://www.bbc.co.uk/news/world-europe-67993372", - "isoDate": "2024-01-17T08:23:23.000Z" - }, - { - "title": "Australia floods: Deadly fire ants form rafts to spread", - "link": "https://www.bbc.co.uk/news/world-australia-68002401?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 02:00:00 GMT", - "content": "Australian experts fear one of the world's most invasive species is gaining footholds in new areas.", - "contentSnippet": "Australian experts fear one of the world's most invasive species is gaining footholds in new areas.", - "guid": "https://www.bbc.co.uk/news/world-australia-68002401", - "isoDate": "2024-01-17T02:00:00.000Z" - }, - { - "title": "Watch: Invasive fire ants raft in Australian flood waters", - "link": "https://www.bbc.co.uk/news/world-australia-68002735?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 01:59:54 GMT", - "content": "Fire ants are forming rafts to travel across storm ravaged Queensland, aiding the spread of one of the world's most invasive species.", - "contentSnippet": "Fire ants are forming rafts to travel across storm ravaged Queensland, aiding the spread of one of the world's most invasive species.", - "guid": "https://www.bbc.co.uk/news/world-australia-68002735", - "isoDate": "2024-01-17T01:59:54.000Z" - }, - { - "title": "Griselda: Colombian 'Cocaine Godmother' given Hollywood makeover by Sofia Vergara", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67921672?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 00:38:54 GMT", - "content": "The ruthless criminal mastermind ran one of the most profitable cartels in history in 1980s Miami.", - "contentSnippet": "The ruthless criminal mastermind ran one of the most profitable cartels in history in 1980s Miami.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67921672", - "isoDate": "2024-01-17T00:38:54.000Z" - }, - { - "title": "US voters react to Trump's commanding Iowa win", - "link": "https://www.bbc.co.uk/news/world-us-canada-67994816?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 22:11:00 GMT", - "content": "As the ex-president tightened his grip on the party, Republican voters say only he can \"save\" the US.", - "contentSnippet": "As the ex-president tightened his grip on the party, Republican voters say only he can \"save\" the US.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67994816", - "isoDate": "2024-01-16T22:11:00.000Z" - }, - { - "title": "Israel Gaza war: Deal reached on aid to Gaza, including to hostages", - "link": "https://www.bbc.co.uk/news/world-middle-east-68000227?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 21:38:44 GMT", - "content": "Under the deal, brokered by Qatar and France, new aid is to reach both Gaza civilians and Israeli hostages.", - "contentSnippet": "Under the deal, brokered by Qatar and France, new aid is to reach both Gaza civilians and Israeli hostages.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-68000227", - "isoDate": "2024-01-16T21:38:44.000Z" - }, - { - "title": "Palestinian envoy Husam Zomlot says UK guilty of hypocrisy", - "link": "https://www.bbc.co.uk/news/uk-67999094?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 18:33:01 GMT", - "content": "Husam Zomlot says the UK's policies towards Israel have caused it \"reputational damage\".", - "contentSnippet": "Husam Zomlot says the UK's policies towards Israel have caused it \"reputational damage\".", - "guid": "https://www.bbc.co.uk/news/uk-67999094", - "isoDate": "2024-01-16T18:33:01.000Z" - }, - { - "title": "Mother of killed Israeli calls Hamas videos 'psychological warfare'", - "link": "https://www.bbc.co.uk/news/world-middle-east-67991427?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 17:35:52 GMT", - "content": "Iris Haim wants the world to know her son died a free person.", - "contentSnippet": "Iris Haim wants the world to know her son died a free person.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67991427", - "isoDate": "2024-01-16T17:35:52.000Z" - }, - { - "title": "Fujitsu CEO 'sorry' over postmaster scandal - BBC exclusive", - "link": "https://www.bbc.co.uk/news/world-67999236?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 16:24:46 GMT", - "content": "When asked if he would apologise, Takahito Tokita said: \"Yes, of course.\"", - "contentSnippet": "When asked if he would apologise, Takahito Tokita said: \"Yes, of course.\"", - "guid": "https://www.bbc.co.uk/news/world-67999236", - "isoDate": "2024-01-16T16:24:46.000Z" - }, - { - "title": "Alain Delon: Tragic finale as film great's family is torn apart", - "link": "https://www.bbc.co.uk/news/world-europe-67991657?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 13:16:56 GMT", - "content": "Old feuds and past rivalries re-emerge in public as ailing cinematic great's children fight for his legacy.", - "contentSnippet": "Old feuds and past rivalries re-emerge in public as ailing cinematic great's children fight for his legacy.", - "guid": "https://www.bbc.co.uk/news/world-europe-67991657", - "isoDate": "2024-01-16T13:16:56.000Z" - }, - { - "title": "Emmy Awards 2024: Who won what this year?", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67991603?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 09:28:19 GMT", - "content": "The 75th Emmy Awards saw Succession win big and a touching tribute to the late Friends star, Matthew Perry.", - "contentSnippet": "The 75th Emmy Awards saw Succession win big and a touching tribute to the late Friends star, Matthew Perry.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67991603", - "isoDate": "2024-01-16T09:28:19.000Z" - }, - { - "title": "Iowa caucuses: What Trump's dominant win means for his rivals", - "link": "https://www.bbc.co.uk/news/world-us-canada-67989443?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 05:40:50 GMT", - "content": "A landslide victory shows it is still his Republican Party, while no clear rival emerged as a challenger.", - "contentSnippet": "A landslide victory shows it is still his Republican Party, while no clear rival emerged as a challenger.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67989443", - "isoDate": "2024-01-16T05:40:50.000Z" - }, - { - "title": "Selena Gomez, Jenna Ortega and more walk red carpet at Emmy Awards", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67989266?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 04:30:59 GMT", - "content": "Stars of Succession, Better Call Saul and Wednesday were all seen arriving for the ceremony in LA.", - "contentSnippet": "Stars of Succession, Better Call Saul and Wednesday were all seen arriving for the ceremony in LA.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67989266", - "isoDate": "2024-01-16T04:30:59.000Z" - }, - { - "title": "Utah: Firefighter jumps into icy lake to rescue dog", - "link": "https://www.bbc.co.uk/news/world-us-canada-67988397?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Mon, 15 Jan 2024 20:37:04 GMT", - "content": "A firefighter in Utah rescues a dog who was trapped in a frozen lake after taking a swim.", - "contentSnippet": "A firefighter in Utah rescues a dog who was trapped in a frozen lake after taking a swim.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67988397", - "isoDate": "2024-01-15T20:37:04.000Z" - }, - { - "title": "Cyclone Belal submerges cars in Mauritius and batters Reunion", - "link": "https://www.bbc.co.uk/news/world-67984044?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Mon, 15 Jan 2024 19:09:51 GMT", - "content": "Torrential rain and flooding hit islands in Mauritius and Reunion, leaving homes without electricity.", - "contentSnippet": "Torrential rain and flooding hit islands in Mauritius and Reunion, leaving homes without electricity.", - "guid": "https://www.bbc.co.uk/news/world-67984044", - "isoDate": "2024-01-15T19:09:51.000Z" - }, - { - "title": "Yemen: US shoots down missile from Houthi-run area fired towards warship", - "link": "https://www.bbc.co.uk/news/world-middle-east-67978143?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Mon, 15 Jan 2024 06:36:46 GMT", - "content": "A fighter jet downs the missile from a Houthi-run area following US-UK strikes in Yemen.", - "contentSnippet": "A fighter jet downs the missile from a Houthi-run area following US-UK strikes in Yemen.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67978143", - "isoDate": "2024-01-15T06:36:46.000Z" - }, - { - "title": "Drone video shows Gaza destruction after 100 days of war", - "link": "https://www.bbc.co.uk/news/world-middle-east-67977694?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Mon, 15 Jan 2024 04:52:29 GMT", - "content": "Drone shots taken in Gaza show the extent of destruction in the enclave after 100 days of war.", - "contentSnippet": "Drone shots taken in Gaza show the extent of destruction in the enclave after 100 days of war.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67977694", - "isoDate": "2024-01-15T04:52:29.000Z" - }, - { - "title": "They were Israel's 'eyes on the border' - but their Hamas warnings went unheard", - "link": "https://www.bbc.co.uk/news/world-middle-east-67958260?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Mon, 15 Jan 2024 00:19:44 GMT", - "content": "A unit of young female soldiers warned of a big attack. They were among the first Hamas killed on 7 October.", - "contentSnippet": "A unit of young female soldiers warned of a big attack. They were among the first Hamas killed on 7 October.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67958260", - "isoDate": "2024-01-15T00:19:44.000Z" - }, - { - "title": "100 days since Hamas attacked Israel, triggering war in Gaza", - "link": "https://www.bbc.co.uk/news/world-middle-east-67972962?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Sun, 14 Jan 2024 14:21:16 GMT", - "content": "Thousands of Israelis gathered in Tel Aviv to mark 100 days since the start of the unprecedented war against Hamas.", - "contentSnippet": "Thousands of Israelis gathered in Tel Aviv to mark 100 days since the start of the unprecedented war against Hamas.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67972962", - "isoDate": "2024-01-14T14:21:16.000Z" - }, - { - "title": "US delivers 'private message' to Iran after Yemen strikes", - "link": "https://www.bbc.co.uk/news/world-middle-east-67967233?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Sun, 14 Jan 2024 03:47:34 GMT", - "content": "Joe Biden's comments follow a second US strike on the Houthis, who have attacked shipping in the Red Sea.", - "contentSnippet": "Joe Biden's comments follow a second US strike on the Houthis, who have attacked shipping in the Red Sea.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67967233", - "isoDate": "2024-01-14T03:47:34.000Z" - }, - { - "title": "Israel strikes southern Gaza city swollen with displaced people", - "link": "https://www.bbc.co.uk/news/world-middle-east-67968533?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Sat, 13 Jan 2024 18:24:33 GMT", - "content": "Ten people in a Rafah house sheltering displaced people were killed, the Hamas-run health ministry says.", - "contentSnippet": "Ten people in a Rafah house sheltering displaced people were killed, the Hamas-run health ministry says.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67968533", - "isoDate": "2024-01-13T18:24:33.000Z" - }, - { - "title": "Tough choices for Israel in US's Middle East vision", - "link": "https://www.bbc.co.uk/news/world-middle-east-67949952?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Sat, 13 Jan 2024 00:02:05 GMT", - "content": "The US plan sees diplomatic normalisation with Arab neighbours if Israel ends its offensive.", - "contentSnippet": "The US plan sees diplomatic normalisation with Arab neighbours if Israel ends its offensive.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67949952", - "isoDate": "2024-01-13T00:02:05.000Z" - }, - { - "title": "What we know about strikes on Houthis and strategy behind them", - "link": "https://www.bbc.co.uk/news/world-middle-east-67955727?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 12 Jan 2024 15:20:00 GMT", - "content": "Everything we know about how and why the US and UK attacked targets in Yemen.", - "contentSnippet": "Everything we know about how and why the US and UK attacked targets in Yemen.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67955727", - "isoDate": "2024-01-12T15:20:00.000Z" - }, - { - "title": "Strikes on Houthi targets in Yemen show war in Gaza has already spread", - "link": "https://www.bbc.co.uk/news/world-middle-east-67955729?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 12 Jan 2024 13:13:32 GMT", - "content": "War spreading in the Middle East is not just a risk - it has already happened, writes the BBC's international editor.", - "contentSnippet": "War spreading in the Middle East is not just a risk - it has already happened, writes the BBC's international editor.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67955729", - "isoDate": "2024-01-12T13:13:32.000Z" - }, - { - "title": "Gaza journalists\u2019 families reject Israeli military's \u2018terrorist\u2019 claims", - "link": "https://www.bbc.co.uk/news/world-middle-east-67946441?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 20:49:16 GMT", - "content": "An Al Jazeera journalist and a freelancer were killed in an Israeli air strike in Rafah on Sunday.", - "contentSnippet": "An Al Jazeera journalist and a freelancer were killed in an Israeli air strike in Rafah on Sunday.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67946441", - "isoDate": "2024-01-11T20:49:16.000Z" - }, - { - "title": "Ernest Bai Koroma: Sierra Leone ex-president flies to Nigeria for medical care", - "link": "https://www.bbc.co.uk/news/world-africa-68032930?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 15:07:09 GMT", - "content": "Ernest Bai Koroma flies to Nigeria for medical care, although some believe he may remain in exile.", - "contentSnippet": "Ernest Bai Koroma flies to Nigeria for medical care, although some believe he may remain in exile.", - "guid": "https://www.bbc.co.uk/news/world-africa-68032930", - "isoDate": "2024-01-19T15:07:09.000Z" - }, - { - "title": "Flames seen coming from Boeing plane mid-flight", - "link": "https://www.bbc.co.uk/news/world-us-canada-68032755?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 14:50:30 GMT", - "content": "The Atlas Air plane made an emergency landing in Miami, with no injuries reported.", - "contentSnippet": "The Atlas Air plane made an emergency landing in Miami, with no injuries reported.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-68032755", - "isoDate": "2024-01-19T14:50:30.000Z" - }, - { - "title": "Thomas Kwoyelo: Ugandan Lord's Resistance Army rebel commander on trial", - "link": "https://www.bbc.co.uk/news/world-africa-68025152?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 14:33:23 GMT", - "content": "Former child soldier Thomas Kwoyelo faces more than 90 charges, including murder and rape.", - "contentSnippet": "Former child soldier Thomas Kwoyelo faces more than 90 charges, including murder and rape.", - "guid": "https://www.bbc.co.uk/news/world-africa-68025152", - "isoDate": "2024-01-19T14:33:23.000Z" - }, - { - "title": "Australian Open 2024 results: Mirra Andreeva stages comeback win, Aryna Sabalenka & Coco Gauff progress", - "link": "https://www.bbc.co.uk/sport/tennis/68027500?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 14:14:11 GMT", - "content": "Teenager Mirra Andreeva saves a match point as she completes a stunning third-set comeback to reach the Australian Open fourth round.", - "contentSnippet": "Teenager Mirra Andreeva saves a match point as she completes a stunning third-set comeback to reach the Australian Open fourth round.", - "guid": "https://www.bbc.co.uk/sport/tennis/68027500", - "isoDate": "2024-01-19T14:14:11.000Z" - }, - { - "title": "Ketamine stash worth \u20ac55m seized in Netherlands", - "link": "https://www.bbc.co.uk/news/world-europe-68030540?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 13:06:44 GMT", - "content": "A man is arrested after dozens of boxes filled with ketamine were uncovered in a shed, Dutch police say.", - "contentSnippet": "A man is arrested after dozens of boxes filled with ketamine were uncovered in a shed, Dutch police say.", - "guid": "https://www.bbc.co.uk/news/world-europe-68030540", - "isoDate": "2024-01-19T13:06:44.000Z" - }, - { - "title": "Ukraine war: Russian oil depot hit in Ukrainian drone attack", - "link": "https://www.bbc.co.uk/news/world-europe-68029235?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 12:34:02 GMT", - "content": "Fire breaks out over a large area in the Bryansk region, a day after another oil facility is targeted.", - "contentSnippet": "Fire breaks out over a large area in the Bryansk region, a day after another oil facility is targeted.", - "guid": "https://www.bbc.co.uk/news/world-europe-68029235", - "isoDate": "2024-01-19T12:34:02.000Z" - }, - { - "title": "Bay of Biscay: France temporarily bans fishing to protect dolphins", - "link": "https://www.bbc.co.uk/news/world-europe-68030476?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 12:25:26 GMT", - "content": "The move comes after pressure from conservation groups, but local fishermen have called it \"absurd\".", - "contentSnippet": "The move comes after pressure from conservation groups, but local fishermen have called it \"absurd\".", - "guid": "https://www.bbc.co.uk/news/world-europe-68030476", - "isoDate": "2024-01-19T12:25:26.000Z" - }, - { - "title": "Snoop Dogg's daughter Cori Broadus cried after suffering stroke aged 24", - "link": "https://www.bbc.co.uk/news/entertainment-arts-68027972?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 12:10:51 GMT", - "content": "Cori Broadcast says she \"started breaking down crying\" after being told she had had a stroke at 24.", - "contentSnippet": "Cori Broadcast says she \"started breaking down crying\" after being told she had had a stroke at 24.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-68027972", - "isoDate": "2024-01-19T12:10:51.000Z" - }, - { - "title": "Nelson Mandela auction: South Africa seeks to block sale in row over heritage", - "link": "https://www.bbc.co.uk/news/world-africa-68031028?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 11:54:06 GMT", - "content": "The government aims to block the sale of personal items to preserve the anti-apartheid hero's legacy.", - "contentSnippet": "The government aims to block the sale of personal items to preserve the anti-apartheid hero's legacy.", - "guid": "https://www.bbc.co.uk/news/world-africa-68031028", - "isoDate": "2024-01-19T11:54:06.000Z" - }, - { - "title": "Gaza destruction risks lost generation of children, says UN official", - "link": "https://www.bbc.co.uk/news/world-middle-east-68023080?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 11:28:30 GMT", - "content": "A senior United Nations official tells the BBC that civilians may have no choice but to leave entirely.", - "contentSnippet": "A senior United Nations official tells the BBC that civilians may have no choice but to leave entirely.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-68023080", - "isoDate": "2024-01-19T11:28:30.000Z" - }, - { - "title": "Moment powerful gas explosion flattens building in Washington DC", - "link": "https://www.bbc.co.uk/news/world-us-canada-68028339?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 10:55:39 GMT", - "content": "Firefighters had responded to a report of a gas leak, but were not able to stop it.", - "contentSnippet": "Firefighters had responded to a report of a gas leak, but were not able to stop it.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-68028339", - "isoDate": "2024-01-19T10:55:39.000Z" - }, - { - "title": "Madonna sued by fans in New York over late concert start time", - "link": "https://www.bbc.co.uk/news/entertainment-arts-68027965?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 10:51:22 GMT", - "content": "Two fans say the New York show started more than two hours late and did not end until after 01:00.", - "contentSnippet": "Two fans say the New York show started more than two hours late and did not end until after 01:00.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-68027965", - "isoDate": "2024-01-19T10:51:22.000Z" - }, - { - "title": "N Korea conducts 'underwater nuclear weapons system' test - state media", - "link": "https://www.bbc.co.uk/news/world-asia-68027356?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 09:15:33 GMT", - "content": "State media said the test of underwater attack drones was in response to recent US-South Korea drills.", - "contentSnippet": "State media said the test of underwater attack drones was in response to recent US-South Korea drills.", - "guid": "https://www.bbc.co.uk/news/world-asia-68027356", - "isoDate": "2024-01-19T09:15:33.000Z" - }, - { - "title": "Comoros cuts internet after violent election protests", - "link": "https://www.bbc.co.uk/news/world-africa-68027892?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 09:04:32 GMT", - "content": "Opposition supporters are angry at the re-election of President Assoumani, describing it as fraud.", - "contentSnippet": "Opposition supporters are angry at the re-election of President Assoumani, describing it as fraud.", - "guid": "https://www.bbc.co.uk/news/world-africa-68027892", - "isoDate": "2024-01-19T09:04:32.000Z" - }, - { - "title": "Netanyahu publicly rejects US push for Palestinian state", - "link": "https://www.bbc.co.uk/news/world-middle-east-68025945?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 07:18:56 GMT", - "content": "The Israeli PM's rejection of Washington's efforts shows the growing disagreement between the two allies.", - "contentSnippet": "The Israeli PM's rejection of Washington's efforts shows the growing disagreement between the two allies.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-68025945", - "isoDate": "2024-01-19T07:18:56.000Z" - }, - { - "title": "Vadodara boat accident: India schoolchildren were 'not given life jackets'", - "link": "https://www.bbc.co.uk/news/world-asia-india-68027147?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 05:08:57 GMT", - "content": "Parents of students who died after a boat capsized in India's Gujarat state allege negligence by authorities.", - "contentSnippet": "Parents of students who died after a boat capsized in India's Gujarat state allege negligence by authorities.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-68027147", - "isoDate": "2024-01-19T05:08:57.000Z" - }, - { - "title": "Kashmir's rare snowless winter sets off alarm bells", - "link": "https://www.bbc.co.uk/news/world-asia-india-68015106?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 03:54:53 GMT", - "content": "Experts say that the absence of snowfall this winter will lead to water scarcity and derail the economy.", - "contentSnippet": "Experts say that the absence of snowfall this winter will lead to water scarcity and derail the economy.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-68015106", - "isoDate": "2024-01-19T03:54:53.000Z" - }, - { - "title": "La Kena: Notorious Mexican cartel leader captured", - "link": "https://www.bbc.co.uk/news/world-latin-america-68027129?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 02:34:54 GMT", - "content": "Jos\u00e9 Alberto Garc\u00eda Vilano has been linked to the killing of two US citizens last year.", - "contentSnippet": "Jos\u00e9 Alberto Garc\u00eda Vilano has been linked to the killing of two US citizens last year.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-68027129", - "isoDate": "2024-01-19T02:34:54.000Z" - }, - { - "title": "Biden says US strikes on Houthis in Yemen have not stopped Red Sea attacks", - "link": "https://www.bbc.co.uk/news/world-us-canada-68025279?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 02:33:30 GMT", - "content": "The remarks come as Houthi forces launched a new missile attack on a US-owned tanker ship on Thursday.", - "contentSnippet": "The remarks come as Houthi forces launched a new missile attack on a US-owned tanker ship on Thursday.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-68025279", - "isoDate": "2024-01-19T02:33:30.000Z" - }, - { - "title": "Cash-in-transit heists bring terror to South Africa\u2019s roads", - "link": "https://www.bbc.co.uk/news/world-africa-68023079?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 01:08:08 GMT", - "content": "Police struggle as cash-in-transit heists increase and the murder rate hits a 20-year high.", - "contentSnippet": "Police struggle as cash-in-transit heists increase and the murder rate hits a 20-year high.", - "guid": "https://www.bbc.co.uk/news/world-africa-68023079", - "isoDate": "2024-01-19T01:08:08.000Z" - }, - { - "title": "UK military island not suitable for migrants, UN says", - "link": "https://www.bbc.co.uk/news/uk-67996408?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 01:06:42 GMT", - "content": "UN officials have been granted access to Diego Garcia two years after asylum seekers landed there.", - "contentSnippet": "UN officials have been granted access to Diego Garcia two years after asylum seekers landed there.", - "guid": "https://www.bbc.co.uk/news/uk-67996408", - "isoDate": "2024-01-19T01:06:42.000Z" - }, - { - "title": "Melania Trump gives eulogy at mother's funeral", - "link": "https://www.bbc.co.uk/news/world-us-canada-68026771?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 19 Jan 2024 00:55:43 GMT", - "content": "Donald Trump skipped a court session in his defamation trial in New York to attend the funeral.", - "contentSnippet": "Donald Trump skipped a court session in his defamation trial in New York to attend the funeral.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-68026771", - "isoDate": "2024-01-19T00:55:43.000Z" - }, - { - "title": "Canadian former pole vault world champion Barber dies aged 29", - "link": "https://www.bbc.co.uk/sport/athletics/68026959?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 23:00:35 GMT", - "content": "Canada's former world pole vault champion Shawn Barber dies at the age of 29 from medical complications.", - "contentSnippet": "Canada's former world pole vault champion Shawn Barber dies at the age of 29 from medical complications.", - "guid": "https://www.bbc.co.uk/sport/athletics/68026959", - "isoDate": "2024-01-18T23:00:35.000Z" - }, - { - "title": "Israeli troops push deep into Gaza's southern city of Khan Younis", - "link": "https://www.bbc.co.uk/news/world-middle-east-68024249?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 21:32:44 GMT", - "content": "The army says soldiers are engaged in \"close quarter combat\" after reaching the city's southernmost area.", - "contentSnippet": "The army says soldiers are engaged in \"close quarter combat\" after reaching the city's southernmost area.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-68024249", - "isoDate": "2024-01-18T21:32:44.000Z" - }, - { - "title": "Why did Iran launch strikes on its allies' territory?", - "link": "https://www.bbc.co.uk/news/world-middle-east-68021483?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 18:17:45 GMT", - "content": "Iranian attacks hit targets in Syria, Iraq and Pakistan over two days. Why, and why now?", - "contentSnippet": "Iranian attacks hit targets in Syria, Iraq and Pakistan over two days. Why, and why now?", - "guid": "https://www.bbc.co.uk/news/world-middle-east-68021483", - "isoDate": "2024-01-18T18:17:45.000Z" - }, - { - "title": "US strikes Syria bases used by Iran-linked groups", - "link": "https://www.bbc.co.uk/news/world-middle-east-67236438?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 12:47:08 GMT", - "content": "It follows a series of recent attacks on US bases in Iraq and Syria by Iranian-backed militia, officials say.", - "contentSnippet": "It follows a series of recent attacks on US bases in Iraq and Syria by Iranian-backed militia, officials say.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67236438", - "isoDate": "2023-10-27T12:47:08.000Z" - }, - { - "title": "Ghana power crisis: Limited gas supply triggers nationwide power outage", - "link": "https://www.bbc.co.uk/news/world-africa-67236078?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 12:09:35 GMT", - "content": "This is the worst power cut for two years, coming amid a serious economic crises in the country.", - "contentSnippet": "This is the worst power cut for two years, coming amid a serious economic crises in the country.", - "guid": "https://www.bbc.co.uk/news/world-africa-67236078", - "isoDate": "2023-10-27T12:09:35.000Z" - }, - { - "title": "Taylor Swift: Artist paints the star on giant Halloween pumpkin", - "link": "https://www.bbc.co.uk/news/world-67240106?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 11:11:29 GMT", - "content": "It took Ohio-based Jeanette Paras 10 hours to create the artwork.", - "contentSnippet": "It took Ohio-based Jeanette Paras 10 hours to create the artwork.", - "guid": "https://www.bbc.co.uk/news/world-67240106", - "isoDate": "2023-10-27T11:11:29.000Z" - }, - { - "title": "Ugandan anger at plan to name road after slain tourists", - "link": "https://www.bbc.co.uk/news/world-africa-67236244?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 10:01:15 GMT", - "content": "Some people are unhappy there is no plan to have a memorial to the Ugandan guide killed in the attack.", - "contentSnippet": "Some people are unhappy there is no plan to have a memorial to the Ugandan guide killed in the attack.", - "guid": "https://www.bbc.co.uk/news/world-africa-67236244", - "isoDate": "2023-10-27T10:01:15.000Z" - }, - { - "title": "Why Li Keqiang's death is dangerous for Xi Jinping", - "link": "https://www.bbc.co.uk/news/world-asia-china-67236049?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 09:53:02 GMT", - "content": "The beloved leader represents a way of potentially governing China with very different priorities.", - "contentSnippet": "The beloved leader represents a way of potentially governing China with very different priorities.", - "guid": "https://www.bbc.co.uk/news/world-asia-china-67236049", - "isoDate": "2023-10-27T09:53:02.000Z" - }, - { - "title": "Taylor Swift's 1989: Her biggest album returns with new tracks from the vault", - "link": "https://www.bbc.co.uk/news/entertainment-arts-66910595?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 09:12:53 GMT", - "content": "As the pop star releases a re-recorded version of 1989, here's a look behind the songs.", - "contentSnippet": "As the pop star releases a re-recorded version of 1989, here's a look behind the songs.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-66910595", - "isoDate": "2023-10-27T09:12:53.000Z" - }, - { - "title": "Qatar sentences Indian ex-naval officers to death", - "link": "https://www.bbc.co.uk/news/world-asia-india-67191248?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 08:11:05 GMT", - "content": "Reports say the eight men, who worked at a private firm in Qatar, were arrested last year.", - "contentSnippet": "Reports say the eight men, who worked at a private firm in Qatar, were arrested last year.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67191248", - "isoDate": "2023-10-27T08:11:05.000Z" - }, - { - "title": "South Korea court upholds ban on gay sex in the military", - "link": "https://www.bbc.co.uk/news/world-asia-67236048?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 07:01:04 GMT", - "content": "The ruling is a setback in the fight for LGBT rights in the country, human rights groups say.", - "contentSnippet": "The ruling is a setback in the fight for LGBT rights in the country, human rights groups say.", - "guid": "https://www.bbc.co.uk/news/world-asia-67236048", - "isoDate": "2023-10-27T07:01:04.000Z" - }, - { - "title": "Africa's week in pictures: 20-26 October 2023", - "link": "https://www.bbc.co.uk/news/world-africa-67227818?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 06:18:22 GMT", - "content": "A selection of the best photos from the African continent and beyond.", - "contentSnippet": "A selection of the best photos from the African continent and beyond.", - "guid": "https://www.bbc.co.uk/news/world-africa-67227818", - "isoDate": "2023-10-27T06:18:22.000Z" - }, - { - "title": "In 60 seconds: Who was China\u2019s Li Keqiang?", - "link": "https://www.bbc.co.uk/news/world-asia-china-67236498?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 06:16:34 GMT", - "content": "A trained economist, Li was once tipped to be the country's future leader.", - "contentSnippet": "A trained economist, Li was once tipped to be the country's future leader.", - "guid": "https://www.bbc.co.uk/news/world-asia-china-67236498", - "isoDate": "2023-10-27T06:16:34.000Z" - }, - { - "title": "Maine shootings: Idyllic Lewiston a ghost town as manhunt drags on", - "link": "https://www.bbc.co.uk/news/world-us-canada-67235757?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 02:21:15 GMT", - "content": "Streets were empty, stores and schools were closed as the search continued for the Maine shooting suspect.", - "contentSnippet": "Streets were empty, stores and schools were closed as the search continued for the Maine shooting suspect.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67235757", - "isoDate": "2023-10-27T02:21:15.000Z" - }, - { - "title": "Obituary: Li Keqiang", - "link": "https://www.bbc.co.uk/news/world-asia-china-19870221?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 01:29:11 GMT", - "content": "Li Keqiang, once the second most powerful man in China, suffered a sudden heart attack, state media said.", - "contentSnippet": "Li Keqiang, once the second most powerful man in China, suffered a sudden heart attack, state media said.", - "guid": "https://www.bbc.co.uk/news/world-asia-china-19870221", - "isoDate": "2023-10-27T01:29:11.000Z" - }, - { - "title": "How does China fix the Evergrande mess?", - "link": "https://www.bbc.co.uk/news/business-67191262?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 00:18:50 GMT", - "content": "The heavily indebted company has become the poster child of the country's flailing property sector.", - "contentSnippet": "The heavily indebted company has become the poster child of the country's flailing property sector.", - "guid": "https://www.bbc.co.uk/news/business-67191262", - "isoDate": "2023-10-27T00:18:50.000Z" - }, - { - "title": "Mahua Moitra: The firebrand Indian MP in \u2018cash-for-query\u2019 scandal", - "link": "https://www.bbc.co.uk/news/world-asia-india-67225656?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 23:16:59 GMT", - "content": "Mahua Moitra is known to ask tough questions to Prime Minister Narendra Modi and his government.", - "contentSnippet": "Mahua Moitra is known to ask tough questions to Prime Minister Narendra Modi and his government.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67225656", - "isoDate": "2023-10-26T23:16:59.000Z" - }, - { - "title": "Israel Gaza: Giving birth amid shelling and power cuts", - "link": "https://www.bbc.co.uk/news/world-middle-east-67226957?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 23:07:09 GMT", - "content": "Gaza resident Jumana Emad describes being in labour \u201camong continuous shelling\u201d.", - "contentSnippet": "Gaza resident Jumana Emad describes being in labour \u201camong continuous shelling\u201d.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67226957", - "isoDate": "2023-10-26T23:07:09.000Z" - }, - { - "title": "Elon Musk and X a year on: Four problems he needs to fix", - "link": "https://www.bbc.co.uk/news/technology-67226795?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 23:06:08 GMT", - "content": "How the billionaire's purchase of Twitter has changed the platform and what the future may hold.", - "contentSnippet": "How the billionaire's purchase of Twitter has changed the platform and what the future may hold.", - "guid": "https://www.bbc.co.uk/news/technology-67226795", - "isoDate": "2023-10-26T23:06:08.000Z" - }, - { - "title": "Neuschwanstein: US man charged over deadly attack at famed German castle", - "link": "https://www.bbc.co.uk/news/world-europe-67235170?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 22:26:19 GMT", - "content": "The suspect is accused of pushing two women into a ravine at Neuschwanstein Castle and raping one of them.", - "contentSnippet": "The suspect is accused of pushing two women into a ravine at Neuschwanstein Castle and raping one of them.", - "guid": "https://www.bbc.co.uk/news/world-europe-67235170", - "isoDate": "2023-10-26T22:26:19.000Z" - }, - { - "title": "Israel Gaza: EU calls for 'corridors and pauses' for humanitarian aid", - "link": "https://www.bbc.co.uk/news/world-europe-67234942?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 21:45:28 GMT", - "content": "Member states disagreed over whether to call for short breaks in the fighting or a longer pause.", - "contentSnippet": "Member states disagreed over whether to call for short breaks in the fighting or a longer pause.", - "guid": "https://www.bbc.co.uk/news/world-europe-67234942", - "isoDate": "2023-10-26T21:45:28.000Z" - }, - { - "title": "Ukraine war: Russia executing own retreating soldiers, US says", - "link": "https://www.bbc.co.uk/news/world-europe-67234144?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 21:29:56 GMT", - "content": "The White House says heavy losses and poor morale are leading to mutinies in some units.", - "contentSnippet": "The White House says heavy losses and poor morale are leading to mutinies in some units.", - "guid": "https://www.bbc.co.uk/news/world-europe-67234144", - "isoDate": "2023-10-26T21:29:56.000Z" - }, - { - "title": "Shooting survivor recalls hiding above bowling pin machine", - "link": "https://www.bbc.co.uk/news/world-us-canada-67210525?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 19:15:30 GMT", - "content": "The Lewiston resident had just entered the local bowling alley when the gunman opened fire.", - "contentSnippet": "The Lewiston resident had just entered the local bowling alley when the gunman opened fire.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67210525", - "isoDate": "2023-10-26T19:15:30.000Z" - }, - { - "title": "Shakira's ex and former footballer Gerard Pique falls off stage", - "link": "https://www.bbc.co.uk/news/world-latin-america-67234333?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 18:29:58 GMT", - "content": "The Spanish World Cup winner fell off the stage at a launch event for a new footballing tournament in Mexico.", - "contentSnippet": "The Spanish World Cup winner fell off the stage at a launch event for a new footballing tournament in Mexico.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67234333", - "isoDate": "2023-10-26T18:29:58.000Z" - }, - { - "title": "UN agencies reduce Gaza aid operations as fuel runs out", - "link": "https://www.bbc.co.uk/news/world-middle-east-67227534?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 17:49:11 GMT", - "content": "The UN says it has enough to maintain water supplies for a day, after reducing support for hospitals.", - "contentSnippet": "The UN says it has enough to maintain water supplies for a day, after reducing support for hospitals.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67227534", - "isoDate": "2023-10-26T17:49:11.000Z" - }, - { - "title": "How Qatar is at the centre of Israeli hostage talks", - "link": "https://www.bbc.co.uk/news/world-middle-east-67205109?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 16:56:54 GMT", - "content": "Qatar has a unique role leading sensitive negotiations but it comes with a huge risk.", - "contentSnippet": "Qatar has a unique role leading sensitive negotiations but it comes with a huge risk.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67205109", - "isoDate": "2023-10-26T16:56:54.000Z" - }, - { - "title": "Alan Wake 2: How one of gaming's lost sequels finally got made", - "link": "https://www.bbc.co.uk/news/newsbeat-67204018?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 13:24:32 GMT", - "content": "After 13 years, Alan Wake's creator finally gets to release the sequel many thought wouldn't happen.", - "contentSnippet": "After 13 years, Alan Wake's creator finally gets to release the sequel many thought wouldn't happen.", - "guid": "https://www.bbc.co.uk/news/newsbeat-67204018", - "isoDate": "2023-10-26T13:24:32.000Z" - }, - { - "title": "'Reconnaissance by fire' - What Israel's Gaza raid tells us", - "link": "https://www.bbc.co.uk/news/world-middle-east-67226021?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 12:43:51 GMT", - "content": "Israel's manoeuvre has been described as \"a tactical operation\", meaning it was limited in scope.", - "contentSnippet": "Israel's manoeuvre has been described as \"a tactical operation\", meaning it was limited in scope.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67226021", - "isoDate": "2023-10-26T12:43:51.000Z" - }, - { - "title": "How delay to Israel offensive benefits US", - "link": "https://www.bbc.co.uk/news/world-us-canada-67226019?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 12:16:31 GMT", - "content": "Washington hopes to use a delay in Israel's incursion into Gaza to shore up protection for its interests.", - "contentSnippet": "Washington hopes to use a delay in Israel's incursion into Gaza to shore up protection for its interests.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67226019", - "isoDate": "2023-10-26T12:16:31.000Z" - }, - { - "title": "Sydney surfer collides with whale", - "link": "https://www.bbc.co.uk/news/world-australia-67226886?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 09:29:29 GMT", - "content": "Jason Breen was wing foiling in the sea when he was dragged underwater by the young mammal.", - "contentSnippet": "Jason Breen was wing foiling in the sea when he was dragged underwater by the young mammal.", - "guid": "https://www.bbc.co.uk/news/world-australia-67226886", - "isoDate": "2023-10-26T09:29:29.000Z" - }, - { - "title": "Watch: Seaside hotels smashed by Hurricane Otis in Mexico", - "link": "https://www.bbc.co.uk/news/world-latin-america-67216467?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 06:54:34 GMT", - "content": "The hurricane brought wind speeds of up to 165mph (270km/h), making landfall near Acapulco.", - "contentSnippet": "The hurricane brought wind speeds of up to 165mph (270km/h), making landfall near Acapulco.", - "guid": "https://www.bbc.co.uk/news/world-latin-america-67216467", - "isoDate": "2023-10-26T06:54:34.000Z" - }, - { - "title": "David Shrigley: Artist pulps 6,000 copies of The Da Vinci Code and turns them into 1984", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67218454?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 06:34:18 GMT", - "content": "The idea came about when Shrigley heard an Oxfam shop had stopped accepting copies of Dan Brown's book.", - "contentSnippet": "The idea came about when Shrigley heard an Oxfam shop had stopped accepting copies of Dan Brown's book.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67218454", - "isoDate": "2023-10-26T06:34:18.000Z" - }, - { - "title": "Maine mass shooting: Armed police search for gunman", - "link": "https://www.bbc.co.uk/news/world-us-canada-67225332?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 05:59:06 GMT", - "content": "The gunman is still on the loose in the city of Lewiston and police have asked residents to shelter.", - "contentSnippet": "The gunman is still on the loose in the city of Lewiston and police have asked residents to shelter.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67225332", - "isoDate": "2023-10-26T05:59:06.000Z" - }, - { - "title": "The chaotic search for Speaker... recapped in 120 seconds", - "link": "https://www.bbc.co.uk/news/world-us-canada-67210524?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 25 Oct 2023 22:59:05 GMT", - "content": "Mike Johnson has been voted the new House leader. But for the divided GOP, it was not easy to get here.", - "contentSnippet": "Mike Johnson has been voted the new House leader. But for the divided GOP, it was not easy to get here.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67210524", - "isoDate": "2023-10-25T22:59:05.000Z" - }, - { - "title": "Manual scavenging: The unending pain of India's sewer workers", - "link": "https://www.bbc.co.uk/news/world-asia-india-67191131?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 25 Oct 2023 22:29:43 GMT", - "content": "Workers from low-caste communities endure stigma and hazards as they clean sewers and septic tanks.", - "contentSnippet": "Workers from low-caste communities endure stigma and hazards as they clean sewers and septic tanks.", - "guid": "https://www.bbc.co.uk/news/world-asia-india-67191131", - "isoDate": "2023-10-25T22:29:43.000Z" - }, - { - "title": "Itaewon crush: Survivors are still tormented a year on", - "link": "https://www.bbc.co.uk/news/67203564?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 25 Oct 2023 21:56:52 GMT", - "content": "Lack of accountability torments survivors of a Halloween crush that killed 160 people in Itaewon.", - "contentSnippet": "Lack of accountability torments survivors of a Halloween crush that killed 160 people in Itaewon.", - "guid": "https://www.bbc.co.uk/news/67203564", - "isoDate": "2023-10-25T21:56:52.000Z" - }, - { - "title": "Omer and Omar: How two 4-year-olds were killed and social media denied it", - "link": "https://www.bbc.co.uk/news/world-middle-east-67206277?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 25 Oct 2023 21:48:50 GMT", - "content": "Two young boys in Gaza and Israel became victims of war - and then victims of social media disinformation.", - "contentSnippet": "Two young boys in Gaza and Israel became victims of war - and then victims of social media disinformation.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67206277", - "isoDate": "2023-10-25T21:48:50.000Z" - }, - { - "title": "'My family is in Gaza': Solo vigil sparks protests", - "link": "https://www.bbc.co.uk/news/world-middle-east-67221219?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 25 Oct 2023 21:41:12 GMT", - "content": "When Avichai Brodutch began a solo vigil outside the Ministry of Defense, others began to join him.", - "contentSnippet": "When Avichai Brodutch began a solo vigil outside the Ministry of Defense, others began to join him.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67221219", - "isoDate": "2023-10-25T21:41:12.000Z" - }, - { - "title": "Humanity blasted and broken: Gaza through a medic's eyes", - "link": "https://www.bbc.co.uk/news/world-middle-east-67223273?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 25 Oct 2023 21:04:35 GMT", - "content": "\"We do not rest,\" says ambulance driver Mahmoud Badawi as medical supplies in the Strip run low.", - "contentSnippet": "\"We do not rest,\" says ambulance driver Mahmoud Badawi as medical supplies in the Strip run low.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67223273", - "isoDate": "2023-10-25T21:04:35.000Z" - }, - { - "title": "Fireworks in court as Trump team calls ex-lawyer Michael Cohen a liar", - "link": "https://www.bbc.co.uk/news/world-us-canada-67222900?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 25 Oct 2023 19:47:22 GMT", - "content": "Lawyers for Trump tried to undermine Michael Cohen's credibility during high-stakes fraud case.", - "contentSnippet": "Lawyers for Trump tried to undermine Michael Cohen's credibility during high-stakes fraud case.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67222900", - "isoDate": "2023-10-25T19:47:22.000Z" - }, - { - "title": "Ivanka Trump must testify in fraud case, judge rules", - "link": "https://www.bbc.co.uk/news/world-us-canada-67243100?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 15:38:04 GMT", - "content": "Ivanka Trump will have to testify in business fraud case against her father and brothers, a New York judge rules", - "contentSnippet": "Ivanka Trump will have to testify in business fraud case against her father and brothers, a New York judge rules", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67243100", - "isoDate": "2023-10-27T15:38:04.000Z" - }, - { - "title": "Lawsuit accuses Abercrombie & Fitch of funding sex-trafficking operation", - "link": "https://www.bbc.co.uk/news/world-us-canada-67238812?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 15:36:43 GMT", - "content": "The US fashion brand is jointly accused with its ex-CEO of participating in a sex-trafficking venture.", - "contentSnippet": "The US fashion brand is jointly accused with its ex-CEO of participating in a sex-trafficking venture.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67238812", - "isoDate": "2023-10-27T15:36:43.000Z" - }, - { - "title": "Bela bill: South Africans face jail if children not in school", - "link": "https://www.bbc.co.uk/news/world-africa-67231637?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 14:46:34 GMT", - "content": "Parliament passes the biggest education reform since the end of apartheid in 1994.", - "contentSnippet": "Parliament passes the biggest education reform since the end of apartheid in 1994.", - "guid": "https://www.bbc.co.uk/news/world-africa-67231637", - "isoDate": "2023-10-27T14:46:34.000Z" - }, - { - "title": "Russia hikes interest rates to 15% as inflation soars", - "link": "https://www.bbc.co.uk/news/business-67233075?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 14:10:48 GMT", - "content": "The Bank of Russia raises rates more than expected to try to lower inflation and boost the rouble.", - "contentSnippet": "The Bank of Russia raises rates more than expected to try to lower inflation and boost the rouble.", - "guid": "https://www.bbc.co.uk/news/business-67233075", - "isoDate": "2023-10-27T14:10:48.000Z" - }, - { - "title": "Sharone Lifschitz's mother was freed but her father is still held by Hamas", - "link": "https://www.bbc.co.uk/news/world-middle-east-67236448?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 13:38:34 GMT", - "content": "Sharone Lifschitz is calling on the Israeli government to prioritise the release of hostages held by Hamas.", - "contentSnippet": "Sharone Lifschitz is calling on the Israeli government to prioritise the release of hostages held by Hamas.", - "guid": "https://www.bbc.co.uk/news/world-middle-east-67236448", - "isoDate": "2023-10-27T13:38:34.000Z" - } -] \ No newline at end of file + { + "title": "Three Israelis killed by Palestinian gunmen at Jerusalem bus stop", + "link": "https://www.bbc.co.uk/news/world-middle-east-67575684?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 22:45:08 GMT", + "content": "Two Palestinian gunmen from Hamas fired at people waiting on a highway in the city's west, police say.", + "contentSnippet": "Two Palestinian gunmen from Hamas fired at people waiting on a highway in the city's west, police say.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67575684", + "isoDate": "2023-11-30T22:45:08.000Z" + }, + { + "title": "Mia Schem: Wounded festival-goer in Hamas hostage video freed", + "link": "https://www.bbc.co.uk/news/world-middle-east-67582027?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 22:14:30 GMT", + "content": "Mia Schem is among eight more people released from Gaza on Thursday, in a swap for Palestinian prisoners.", + "contentSnippet": "Mia Schem is among eight more people released from Gaza on Thursday, in a swap for Palestinian prisoners.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67582027", + "isoDate": "2023-11-30T22:14:30.000Z" + }, + { + "title": "Who are the released hostages?", + "link": "https://www.bbc.co.uk/news/world-middle-east-67477240?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 21:56:07 GMT", + "content": "One-hundred-and-five people captured during the 7 October attacks have been released by Hamas.", + "contentSnippet": "One-hundred-and-five people captured during the 7 October attacks have been released by Hamas.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67477240", + "isoDate": "2023-11-30T21:56:07.000Z" + }, + { + "title": "Israel recalls ambassador in war spat with Spain PM Pedro S\u00e1nchez", + "link": "https://www.bbc.co.uk/news/world-europe-67575699?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 20:21:14 GMT", + "content": "Pedro S\u00e1nchez deepens a row, saying he has \"serious doubts\" Israel is complying with humanitarian law.", + "contentSnippet": "Pedro S\u00e1nchez deepens a row, saying he has \"serious doubts\" Israel is complying with humanitarian law.", + "guid": "https://www.bbc.co.uk/news/world-europe-67575699", + "isoDate": "2023-11-30T20:21:14.000Z" + }, + { + "title": "Ukraine: Russian general 'blown up on mine'", + "link": "https://www.bbc.co.uk/news/world-europe-67579357?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 19:33:10 GMT", + "content": "Several pro-Kremlin sources reported Maj-Gen Vladimir Zavadsky's death, but his location is unclear.", + "contentSnippet": "Several pro-Kremlin sources reported Maj-Gen Vladimir Zavadsky's death, but his location is unclear.", + "guid": "https://www.bbc.co.uk/news/world-europe-67579357", + "isoDate": "2023-11-30T19:33:10.000Z" + }, + { + "title": "Firefighters crawl to rescue deer stuck on frozen lake", + "link": "https://www.bbc.co.uk/news/world-us-canada-67573279?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 18:08:39 GMT", + "content": "A stag in Minnesota was stranded on thin ice until a rescue team stepped in - on all fours.", + "contentSnippet": "A stag in Minnesota was stranded on thin ice until a rescue team stepped in - on all fours.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67573279", + "isoDate": "2023-11-30T18:08:39.000Z" + }, + { + "title": "Japan asks US to stop flying Osprey military aircrafts after deadly crash", + "link": "https://www.bbc.co.uk/news/world-asia-67582845?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 18:07:39 GMT", + "content": "An Osprey military aircraft came down off the coast of Yakushima, killing one crew member", + "contentSnippet": "An Osprey military aircraft came down off the coast of Yakushima, killing one crew member", + "guid": "https://www.bbc.co.uk/news/world-asia-67582845", + "isoDate": "2023-11-30T18:07:39.000Z" + }, + { + "title": "COP28: Poor countries win 30-year fight for climate cash", + "link": "https://www.bbc.co.uk/news/science-environment-67581277?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 17:40:43 GMT", + "content": "COP28 president Sultan al-Jaber pulled off an unexpected victory securing long-awaited climate disaster help.", + "contentSnippet": "COP28 president Sultan al-Jaber pulled off an unexpected victory securing long-awaited climate disaster help.", + "guid": "https://www.bbc.co.uk/news/science-environment-67581277", + "isoDate": "2023-11-30T17:40:43.000Z" + }, + { + "title": "Seventy-year-old Ugandan woman gives birth to twins - hospital", + "link": "https://www.bbc.co.uk/news/world-africa-67577038?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 16:29:13 GMT", + "content": "Safina Namukwaya used IVF treatment to conceive and gave birth via caesarean.", + "contentSnippet": "Safina Namukwaya used IVF treatment to conceive and gave birth via caesarean.", + "guid": "https://www.bbc.co.uk/news/world-africa-67577038", + "isoDate": "2023-11-30T16:29:13.000Z" + }, + { + "title": "Hamas hostages: Relief as Thai hostage is reunited with family", + "link": "https://www.bbc.co.uk/news/world-67579435?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 15:43:07 GMT", + "content": "Pornsawan Pinakalo fell to his knees when he was greeted by his father after nearly 50 days in captivity.", + "contentSnippet": "Pornsawan Pinakalo fell to his knees when he was greeted by his father after nearly 50 days in captivity.", + "guid": "https://www.bbc.co.uk/news/world-67579435", + "isoDate": "2023-11-30T15:43:07.000Z" + }, + { + "title": "Nearly 100,000 Gaza buildings may be damaged, satellite images show", + "link": "https://www.bbc.co.uk/news/world-middle-east-67565872?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 14:58:28 GMT", + "content": "Images commissioned by the BBC reveal damage across Gaza while video shows areas reduced to rubble.", + "contentSnippet": "Images commissioned by the BBC reveal damage across Gaza while video shows areas reduced to rubble.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67565872", + "isoDate": "2023-11-30T14:58:28.000Z" + }, + { + "title": "Inactive Google accounts to be deleted from Friday", + "link": "https://www.bbc.co.uk/news/technology-67578655?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 14:12:59 GMT", + "content": "The tech giant will start deleting accounts that are not being used.", + "contentSnippet": "The tech giant will start deleting accounts that are not being used.", + "guid": "https://www.bbc.co.uk/news/technology-67578655", + "isoDate": "2023-11-30T14:12:59.000Z" + }, + { + "title": "Swedish murder: Five teenagers found guilty over taxi driver's killing", + "link": "https://www.bbc.co.uk/news/world-europe-67577337?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 13:49:41 GMT", + "content": "The victim was lured to a nature reserve after one of the teenagers reported him for rape.", + "contentSnippet": "The victim was lured to a nature reserve after one of the teenagers reported him for rape.", + "guid": "https://www.bbc.co.uk/news/world-europe-67577337", + "isoDate": "2023-11-30T13:49:41.000Z" + }, + { + "title": "OpenAI chaos not about AI safety, says Microsoft boss", + "link": "https://www.bbc.co.uk/news/technology-67578656?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 13:19:27 GMT", + "content": "Microsoft's president says the sacking of OpenAI boss Sam Altman was not because of AI safety worries.", + "contentSnippet": "Microsoft's president says the sacking of OpenAI boss Sam Altman was not because of AI safety worries.", + "guid": "https://www.bbc.co.uk/news/technology-67578656", + "isoDate": "2023-11-30T13:19:27.000Z" + }, + { + "title": "Kayaker's 20m drop down ice waterfall in Svalbard, Norway", + "link": "https://www.bbc.co.uk/news/world-67578559?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 13:15:49 GMT", + "content": "Aniol Serrasolses' descent down a glacial waterfall in Svalbard is the biggest ever recorded.", + "contentSnippet": "Aniol Serrasolses' descent down a glacial waterfall in Svalbard is the biggest ever recorded.", + "guid": "https://www.bbc.co.uk/news/world-67578559", + "isoDate": "2023-11-30T13:15:49.000Z" + }, + { + "title": "Russian court bans 'LGBT movement'", + "link": "https://www.bbc.co.uk/news/world-europe-67565509?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 12:56:15 GMT", + "content": "Russia's Supreme Court declares the \"international LGBT public movement\" an extremist organisation.", + "contentSnippet": "Russia's Supreme Court declares the \"international LGBT public movement\" an extremist organisation.", + "guid": "https://www.bbc.co.uk/news/world-europe-67565509", + "isoDate": "2023-11-30T12:56:15.000Z" + }, + { + "title": "Fairytale of New York: Shane MacGowan, music and excess\u2019", + "link": "https://www.bbc.co.uk/news/entertainment-arts-20125315?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 12:07:18 GMT", + "content": "Charismatic Pogues frontman who successfully mixed punk with traditional Irish songs.", + "contentSnippet": "Charismatic Pogues frontman who successfully mixed punk with traditional Irish songs.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-20125315", + "isoDate": "2023-11-30T12:07:18.000Z" + }, + { + "title": "Henry Kissinger: Divisive diplomat who shaped world affairs", + "link": "https://www.bbc.co.uk/news/world-us-canada-19872410?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 11:09:18 GMT", + "content": "President Nixon's foreign affairs guru declared power to be the \"ultimate aphrodisiac\".", + "contentSnippet": "President Nixon's foreign affairs guru declared power to be the \"ultimate aphrodisiac\".", + "guid": "https://www.bbc.co.uk/news/world-us-canada-19872410", + "isoDate": "2023-11-30T11:09:18.000Z" + }, + { + "title": "Elon Musk launches profane attack on X advertisers", + "link": "https://www.bbc.co.uk/news/world-us-canada-67574396?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 06:42:44 GMT", + "content": "The billionaire accuses firms of trying to blackmail him with ad dollars, claiming they will kill X.", + "contentSnippet": "The billionaire accuses firms of trying to blackmail him with ad dollars, claiming they will kill X.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67574396", + "isoDate": "2023-11-30T06:42:44.000Z" + }, + { + "title": "Watch: Henry Kissinger\u2019s life and legacy in his own words", + "link": "https://www.bbc.co.uk/news/world-us-canada-67574846?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 04:38:10 GMT", + "content": "Former foreign policy giant Henry Kissinger has died aged 100.", + "contentSnippet": "Former foreign policy giant Henry Kissinger has died aged 100.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67574846", + "isoDate": "2023-11-30T04:38:10.000Z" + }, + { + "title": "Major snowstorm spawns travel chaos in US", + "link": "https://www.bbc.co.uk/news/world-us-canada-67573077?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 00:51:12 GMT", + "content": "A Nor'easter storm hit several states in the US with heavy winds and snow, creating a winter wonderland.", + "contentSnippet": "A Nor'easter storm hit several states in the US with heavy winds and snow, creating a winter wonderland.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67573077", + "isoDate": "2023-11-30T00:51:12.000Z" + }, + { + "title": "Why is North Korea saying it's watching the White House?", + "link": "https://www.bbc.co.uk/news/world-asia-67563543?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 29 Nov 2023 23:47:15 GMT", + "content": "Long spied on by its more tech-advanced enemies, Pyongyang says it can now do the same.", + "contentSnippet": "Long spied on by its more tech-advanced enemies, Pyongyang says it can now do the same.", + "guid": "https://www.bbc.co.uk/news/world-asia-67563543", + "isoDate": "2023-11-29T23:47:15.000Z" + }, + { + "title": "Cynthia Nixon urges Gaza ceasefire outside White House", + "link": "https://www.bbc.co.uk/news/world-us-canada-67573076?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 29 Nov 2023 23:38:14 GMT", + "content": "\u201cWe can't bomb our way to peace,\u201d the Sex and the City actress tells BBC News.", + "contentSnippet": "\u201cWe can't bomb our way to peace,\u201d the Sex and the City actress tells BBC News.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67573076", + "isoDate": "2023-11-29T23:38:14.000Z" + }, + { + "title": "Climate summit in an oil state: can COP28 change anything?", + "link": "https://www.bbc.co.uk/news/science-environment-67557533?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 29 Nov 2023 17:32:45 GMT", + "content": "The big issues facing global leaders gathering for the world's most important climate summit.", + "contentSnippet": "The big issues facing global leaders gathering for the world's most important climate summit.", + "guid": "https://www.bbc.co.uk/news/science-environment-67557533", + "isoDate": "2023-11-29T17:32:45.000Z" + }, + { + "title": "Family return to wreckage of their Gaza home", + "link": "https://www.bbc.co.uk/news/world-middle-east-67565673?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 29 Nov 2023 12:04:42 GMT", + "content": "Wael Qudeih has already had to rebuild his family home twice after previous conflicts.", + "contentSnippet": "Wael Qudeih has already had to rebuild his family home twice after previous conflicts.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67565673", + "isoDate": "2023-11-29T12:04:42.000Z" + }, + { + "title": "Rare Sumatran rhino born in Indonesia", + "link": "https://www.bbc.co.uk/news/world-asia-67564871?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 29 Nov 2023 10:10:03 GMT", + "content": "There are only around 40 of the animals left in the world, conservationists say.", + "contentSnippet": "There are only around 40 of the animals left in the world, conservationists say.", + "guid": "https://www.bbc.co.uk/news/world-asia-67564871", + "isoDate": "2023-11-29T10:10:03.000Z" + }, + { + "title": "Watch: Volcano in Japan spews ash, rock 200m into sky", + "link": "https://www.bbc.co.uk/news/world-asia-67562779?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 29 Nov 2023 00:56:25 GMT", + "content": "An explosive eruption sends volcanic rock hurtling into the sea around Niijima Island, south of Tokyo.", + "contentSnippet": "An explosive eruption sends volcanic rock hurtling into the sea around Niijima Island, south of Tokyo.", + "guid": "https://www.bbc.co.uk/news/world-asia-67562779", + "isoDate": "2023-11-29T00:56:25.000Z" + }, + { + "title": "Will Tesla's truck recover from its shattering start?", + "link": "https://www.bbc.co.uk/news/business-67580991?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 21:18:50 GMT", + "content": "Tesla boss Elon Musk says the new cybertruck will \"change the look of the roads\".", + "contentSnippet": "Tesla boss Elon Musk says the new cybertruck will \"change the look of the roads\".", + "guid": "https://www.bbc.co.uk/news/business-67580991", + "isoDate": "2023-11-30T21:18:50.000Z" + }, + { + "title": "Climate change: Saving Uganda's mountain gorillas", + "link": "https://www.bbc.co.uk/news/world-africa-67469712?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 01:25:02 GMT", + "content": "Rising temperatures are putting the health of endangered mountain gorillas at risk.", + "contentSnippet": "Rising temperatures are putting the health of endangered mountain gorillas at risk.", + "guid": "https://www.bbc.co.uk/news/world-africa-67469712", + "isoDate": "2023-12-01T01:25:02.000Z" + }, + { + "title": "Released Palestinians allege abuse in Israeli jails", + "link": "https://www.bbc.co.uk/news/world-middle-east-67581915?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 00:59:28 GMT", + "content": "Palestinians tell the BBC they were beaten and had dogs set on them while in Israeli detention.", + "contentSnippet": "Palestinians tell the BBC they were beaten and had dogs set on them while in Israeli detention.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67581915", + "isoDate": "2023-12-01T00:59:28.000Z" + }, + { + "title": "Elliott Erwitt: Legendary photographer dies aged 95", + "link": "https://www.bbc.co.uk/news/world-us-canada-67585590?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 00:48:04 GMT", + "content": "Magnum says he will be remembered for seeking out life's \"most absurd and charming moments\".", + "contentSnippet": "Magnum says he will be remembered for seeking out life's \"most absurd and charming moments\".", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67585590", + "isoDate": "2023-12-01T00:48:04.000Z" + }, + { + "title": "'Sued for millions by my abuser, I set up a social network instead'", + "link": "https://www.bbc.co.uk/news/business-67559541?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 00:18:42 GMT", + "content": "The app that gives women a place to speak out about about sexual harassment and other #MeToo issues.", + "contentSnippet": "The app that gives women a place to speak out about about sexual harassment and other #MeToo issues.", + "guid": "https://www.bbc.co.uk/news/business-67559541", + "isoDate": "2023-12-01T00:18:42.000Z" + }, + { + "title": "Henry Kissinger: China mourns 'a most valued old friend'", + "link": "https://www.bbc.co.uk/news/world-asia-china-67563597?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 22:00:01 GMT", + "content": "The death of the contentious former US secretary of state draws nostalgia and compliments in China.", + "contentSnippet": "The death of the contentious former US secretary of state draws nostalgia and compliments in China.", + "guid": "https://www.bbc.co.uk/news/world-asia-china-67563597", + "isoDate": "2023-11-30T22:00:01.000Z" + }, + { + "title": "US Senator Rand Paul performs Heimlich on Senator Joni Ernst", + "link": "https://www.bbc.co.uk/news/world-us-canada-67572747?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 01:59:16 GMT", + "content": "Rand Paul of Kentucky performs the Heimlich manoeuvre on fellow Republican Joni Ernst of Iowa.", + "contentSnippet": "Rand Paul of Kentucky performs the Heimlich manoeuvre on fellow Republican Joni Ernst of Iowa.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67572747", + "isoDate": "2023-12-01T01:59:16.000Z" + }, + { + "title": "Africa's week in pictures: 24-30 November 2023", + "link": "https://www.bbc.co.uk/news/world-africa-67577884?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 01:57:07 GMT", + "content": "A selection of the best photos from across the African continent this week.", + "contentSnippet": "A selection of the best photos from across the African continent this week.", + "guid": "https://www.bbc.co.uk/news/world-africa-67577884", + "isoDate": "2023-12-01T01:57:07.000Z" + }, + { + "title": "Filmmakers discover 128-year-old shipwreck", + "link": "https://www.bbc.co.uk/news/world-us-canada-67585811?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 00:02:19 GMT", + "content": "The hulk of the 'Africa' is found on the bed of Lake Huron in Canada by filmmakers looking for mussels.", + "contentSnippet": "The hulk of the 'Africa' is found on the bed of Lake Huron in Canada by filmmakers looking for mussels.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67585811", + "isoDate": "2023-12-01T00:02:19.000Z" + }, + { + "title": "What US agents knew before a Canadian Sikh activist was killed", + "link": "https://www.bbc.co.uk/news/world-us-canada-67582825?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 23:02:27 GMT", + "content": "A foiled murder plot in the US has links to a case which sparked Canada's diplomatic row with India.", + "contentSnippet": "A foiled murder plot in the US has links to a case which sparked Canada's diplomatic row with India.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67582825", + "isoDate": "2023-11-30T23:02:27.000Z" + }, + { + "title": "George Santos' tumultuous term... 1 year in 1 minute", + "link": "https://www.bbc.co.uk/news/world-us-canada-67573281?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 18:57:55 GMT", + "content": "The embattled Republican may be expelled from Congress this week, but he won't go down without a fight.", + "contentSnippet": "The embattled Republican may be expelled from Congress this week, but he won't go down without a fight.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67573281", + "isoDate": "2023-11-30T18:57:55.000Z" + }, + { + "title": "Shane MacGowan: NYPD bagpiper recalls rollicking shoot of classic Pogues video", + "link": "https://www.bbc.co.uk/news/world-us-canada-67585275?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 22:55:29 GMT", + "content": "When they starred in Fairytale of New York, the Irish-American officers had never heard of The Pogues.", + "contentSnippet": "When they starred in Fairytale of New York, the Irish-American officers had never heard of The Pogues.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67585275", + "isoDate": "2023-11-30T22:55:29.000Z" + }, + { + "title": "Hunter Biden faces second federal indictment, this time on tax evasion", + "link": "https://www.bbc.co.uk/news/world-us-canada-67656575?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 07:49:54 GMT", + "content": "The president's son allegedly evaded at least $1.4m in taxes while funding an \"extravagant lifestyle\".", + "contentSnippet": "The president's son allegedly evaded at least $1.4m in taxes while funding an \"extravagant lifestyle\".", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67656575", + "isoDate": "2023-12-08T07:49:54.000Z" + }, + { + "title": "Israel Gaza war: UPenn loses $100m donation after House testimony", + "link": "https://www.bbc.co.uk/news/world-us-canada-67655910?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 07:07:10 GMT", + "content": "A major University of Pennsylvania donor withdraws grant after Congress hearing about antisemitism on campus.", + "contentSnippet": "A major University of Pennsylvania donor withdraws grant after Congress hearing about antisemitism on campus.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67655910", + "isoDate": "2023-12-08T07:07:10.000Z" + }, + { + "title": "Saudi Arabia World Cup 2034: Sports minister defends state's right to host", + "link": "https://www.bbc.co.uk/sport/football/67650721?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 06:35:48 GMT", + "content": "Sports Minister Prince Abdulaziz bin Turki Al Faisal defends Saudi Arabia's right to host the 2034 World Cup in exclusive interview with BBC sports editor Dan Roan.", + "contentSnippet": "Sports Minister Prince Abdulaziz bin Turki Al Faisal defends Saudi Arabia's right to host the 2034 World Cup in exclusive interview with BBC sports editor Dan Roan.", + "guid": "https://www.bbc.co.uk/sport/football/67650721", + "isoDate": "2023-12-08T06:35:48.000Z" + }, + { + "title": "Qatar: Indian ambassador meets eight ex-naval officers on death row", + "link": "https://www.bbc.co.uk/news/world-asia-india-67656682?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 05:25:04 GMT", + "content": "Media reports say the men have been charged with spying, but India and Qatar have not confirmed this.", + "contentSnippet": "Media reports say the men have been charged with spying, but India and Qatar have not confirmed this.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67656682", + "isoDate": "2023-12-08T05:25:04.000Z" + }, + { + "title": "Disney: Elon Musk calls for boss to be fired over ad spat", + "link": "https://www.bbc.co.uk/news/business-67656437?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 05:13:54 GMT", + "content": "It comes a week after the multi-billionaire launched a profane attack on advertisers that left X.", + "contentSnippet": "It comes a week after the multi-billionaire launched a profane attack on advertisers that left X.", + "guid": "https://www.bbc.co.uk/news/business-67656437", + "isoDate": "2023-12-08T05:13:54.000Z" + }, + { + "title": "Israel Gaza: Palestinians mourn controversial writer killed in air strike", + "link": "https://www.bbc.co.uk/news/world-middle-east-67656787?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 05:11:18 GMT", + "content": "Writer and literary scholar Refaat Alareer was killed in an air strike on Wednesday, his family say.", + "contentSnippet": "Writer and literary scholar Refaat Alareer was killed in an air strike on Wednesday, his family say.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67656787", + "isoDate": "2023-12-08T05:11:18.000Z" + }, + { + "title": "\"We can't stop\" - the Israeli woman still helping sick Palestinians", + "link": "https://www.bbc.co.uk/news/world-67592468?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 05:01:29 GMT", + "content": "Volunteers used to drive sick Gazans to hospital. Hamas's attack on 7 October changed everything.", + "contentSnippet": "Volunteers used to drive sick Gazans to hospital. Hamas's attack on 7 October changed everything.", + "guid": "https://www.bbc.co.uk/news/world-67592468", + "isoDate": "2023-12-08T05:01:29.000Z" + }, + { + "title": "Hunter Biden's tax indictment: Drugs, escorts and girlfriends", + "link": "https://www.bbc.co.uk/news/world-us-canada-67656796?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 04:44:51 GMT", + "content": "Mr Biden allegedly spent a fortune on \"various women\", \"adult entertainment\", luxury hotels and cars.", + "contentSnippet": "Mr Biden allegedly spent a fortune on \"various women\", \"adult entertainment\", luxury hotels and cars.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67656796", + "isoDate": "2023-12-08T04:44:51.000Z" + }, + { + "title": "Two arrested in France over alleged bedbug scam", + "link": "https://www.bbc.co.uk/news/world-europe-67655992?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 03:18:25 GMT", + "content": "Police in Strasbourg say the men charged victims thousands of euros for pest control they did not need.", + "contentSnippet": "Police in Strasbourg say the men charged victims thousands of euros for pest control they did not need.", + "guid": "https://www.bbc.co.uk/news/world-europe-67655992", + "isoDate": "2023-12-08T03:18:25.000Z" + }, + { + "title": "Zimbabwe's CCC crisis: Farce turning to tragedy for the opposition", + "link": "https://www.bbc.co.uk/news/world-africa-67647449?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 02:51:59 GMT", + "content": "The CCC faces by-elections after an \"imposter\" expels its MPs - to the delight of the ruling party.", + "contentSnippet": "The CCC faces by-elections after an \"imposter\" expels its MPs - to the delight of the ruling party.", + "guid": "https://www.bbc.co.uk/news/world-africa-67647449", + "isoDate": "2023-12-08T02:51:59.000Z" + }, + { + "title": "Africa's week in pictures: 1-7 December 2023", + "link": "https://www.bbc.co.uk/news/world-africa-67647452?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 02:49:17 GMT", + "content": "A selection of the best photos from across the African continent this week.", + "contentSnippet": "A selection of the best photos from across the African continent this week.", + "guid": "https://www.bbc.co.uk/news/world-africa-67647452", + "isoDate": "2023-12-08T02:49:17.000Z" + }, + { + "title": "COP28: Five reasons for optimism on climate", + "link": "https://www.bbc.co.uk/news/science-environment-67627242?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 02:18:43 GMT", + "content": "Amid all the doom and gloom on climate change, there are some good reasons for cautious optimism.", + "contentSnippet": "Amid all the doom and gloom on climate change, there are some good reasons for cautious optimism.", + "guid": "https://www.bbc.co.uk/news/science-environment-67627242", + "isoDate": "2023-12-08T02:18:43.000Z" + }, + { + "title": "UNLV shooting: Ex-professor had 'target list' when he killed three on campus", + "link": "https://www.bbc.co.uk/news/world-us-canada-67656116?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 01:19:51 GMT", + "content": "Officials said being denied \"several\" jobs at various colleges may have been a motive for the shooting.", + "contentSnippet": "Officials said being denied \"several\" jobs at various colleges may have been a motive for the shooting.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67656116", + "isoDate": "2023-12-08T01:19:51.000Z" + }, + { + "title": "The weird materials behind sustainable furniture", + "link": "https://www.bbc.co.uk/news/business-67425538?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 00:05:05 GMT", + "content": "Seaweed, coffee bean shells and fungus are all being employed to cut the use of plastic in furniture.", + "contentSnippet": "Seaweed, coffee bean shells and fungus are all being employed to cut the use of plastic in furniture.", + "guid": "https://www.bbc.co.uk/news/business-67425538", + "isoDate": "2023-12-08T00:05:05.000Z" + }, + { + "title": "Bribie Island: Australian man dies after being buried in sand", + "link": "https://www.bbc.co.uk/news/world-australia-67609962?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 00:03:41 GMT", + "content": "Josh Taylor, 23, suffered severe injuries after he fell into a hole on Queensland's Bribie Island.", + "contentSnippet": "Josh Taylor, 23, suffered severe injuries after he fell into a hole on Queensland's Bribie Island.", + "guid": "https://www.bbc.co.uk/news/world-australia-67609962", + "isoDate": "2023-12-08T00:03:41.000Z" + }, + { + "title": "Anna Mani: Why you need to know this Indian weather scientist", + "link": "https://www.bbc.co.uk/news/world-asia-india-67634192?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 22:33:06 GMT", + "content": "Anna Mani, one of India's first women scientists, broke barriers to blaze a trail in meteorology.", + "contentSnippet": "Anna Mani, one of India's first women scientists, broke barriers to blaze a trail in meteorology.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67634192", + "isoDate": "2023-12-07T22:33:06.000Z" + }, + { + "title": "Santos riots: Police fire tear gas at supporters rioting", + "link": "https://www.bbc.co.uk/news/world-latin-america-67655016?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 22:27:40 GMT", + "content": "Pele's former football club has been relegated for the first time in 111 years, resulting in riots across Santos.", + "contentSnippet": "Pele's former football club has been relegated for the first time in 111 years, resulting in riots across Santos.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67655016", + "isoDate": "2023-12-07T22:27:40.000Z" + }, + { + "title": "Taiwan: The 'God Flower' vanishing because of climate change", + "link": "https://www.bbc.co.uk/news/world-asia-67342419?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 22:26:19 GMT", + "content": "The Dendrobium orchid is sacred to Taiwan's Tsou tribe, but it is getting harder and harder to find.", + "contentSnippet": "The Dendrobium orchid is sacred to Taiwan's Tsou tribe, but it is getting harder and harder to find.", + "guid": "https://www.bbc.co.uk/news/world-asia-67342419", + "isoDate": "2023-12-07T22:26:19.000Z" + }, + { + "title": "Issam Abdallah: Rights groups want Israel investigated over killed journalist", + "link": "https://www.bbc.co.uk/news/world-middle-east-67652774?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 20:29:35 GMT", + "content": "Amnesty and Human Rights Watch say a tank crew probably deliberately fired on Issam Abdallah.", + "contentSnippet": "Amnesty and Human Rights Watch say a tank crew probably deliberately fired on Issam Abdallah.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67652774", + "isoDate": "2023-12-07T20:29:35.000Z" + }, + { + "title": "Israel war cabinet minister's son killed in Gaza fighting", + "link": "https://www.bbc.co.uk/news/world-middle-east-67654848?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 19:16:59 GMT", + "content": "Gadi Eisenkot's son Gal, 25, died after a tunnel shaft exploded in northern Gaza, Israeli media say.", + "contentSnippet": "Gadi Eisenkot's son Gal, 25, died after a tunnel shaft exploded in northern Gaza, Israeli media say.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67654848", + "isoDate": "2023-12-07T19:16:59.000Z" + }, + { + "title": "Hundreds queue for food in central Gaza city", + "link": "https://www.bbc.co.uk/news/world-middle-east-67655015?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 19:02:57 GMT", + "content": "As hunger spreads, the UN says it can no longer run a dependable humanitarian operation.", + "contentSnippet": "As hunger spreads, the UN says it can no longer run a dependable humanitarian operation.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67655015", + "isoDate": "2023-12-07T19:02:57.000Z" + }, + { + "title": "Moment Texas judge grants woman's request to abortion", + "link": "https://www.bbc.co.uk/news/world-us-canada-67655149?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 18:33:22 GMT", + "content": "Kate Cox says her foetus has a lethal abnormality that poses a risk to her health and future fertility.", + "contentSnippet": "Kate Cox says her foetus has a lethal abnormality that poses a risk to her health and future fertility.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67655149", + "isoDate": "2023-12-07T18:33:22.000Z" + }, + { + "title": "In pictures: Germany's Scholz lights first candle as Hanukkah celebrated around the world", + "link": "https://www.bbc.co.uk/news/world-europe-67647472?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 17:57:23 GMT", + "content": "The Festival of Lights is marked around the world amid a difficult time for Jewish communities", + "contentSnippet": "The Festival of Lights is marked around the world amid a difficult time for Jewish communities", + "guid": "https://www.bbc.co.uk/news/world-europe-67647472", + "isoDate": "2023-12-07T17:57:23.000Z" + }, + { + "title": "Russia luring migrants from Finnish border for war in Ukraine", + "link": "https://www.bbc.co.uk/news/world-europe-67647379?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 15:55:06 GMT", + "content": "The BBC has seen evidence of foreigners without valid visas being sent to a military camp near Ukraine.", + "contentSnippet": "The BBC has seen evidence of foreigners without valid visas being sent to a military camp near Ukraine.", + "guid": "https://www.bbc.co.uk/news/world-europe-67647379", + "isoDate": "2023-12-07T15:55:06.000Z" + }, + { + "title": "Bob Dylan sells Scottish Highlands estate for \u00a34m", + "link": "https://www.bbc.co.uk/news/articles/cgrp9967v0po?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 13:30:27 GMT", + "content": "The singer bought Aultmore House in 2006 but has not visited in at least four years", + "contentSnippet": "The singer bought Aultmore House in 2006 but has not visited in at least four years", + "guid": "https://www.bbc.co.uk/news/articles/cgrp9967v0po", + "isoDate": "2023-12-07T13:30:27.000Z" + }, + { + "title": "What is Hamas and why is it fighting with Israel in Gaza?", + "link": "https://www.bbc.co.uk/news/world-middle-east-67039975?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 12:27:43 GMT", + "content": "Why did Hamas attack Israel, and what has happened in Gaza since the 7 October raid?", + "contentSnippet": "Why did Hamas attack Israel, and what has happened in Gaza since the 7 October raid?", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67039975", + "isoDate": "2023-12-07T12:27:43.000Z" + }, + { + "title": "Bringing broken survivors of the Israel Nova festival attack back from darkness", + "link": "https://www.bbc.co.uk/news/world-middle-east-67636785?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 05:59:54 GMT", + "content": "\"I just wanted them to be held\": Inside the centre helping survivors of the 7 October attacks.", + "contentSnippet": "\"I just wanted them to be held\": Inside the centre helping survivors of the 7 October attacks.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67636785", + "isoDate": "2023-12-07T05:59:54.000Z" + }, + { + "title": "Climate change: How is my country doing on tackling it?", + "link": "https://www.bbc.co.uk/news/science-environment-65754296?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 00:43:00 GMT", + "content": "Find out how the world's major economies are doing on cutting their emissions and what lies ahead.", + "contentSnippet": "Find out how the world's major economies are doing on cutting their emissions and what lies ahead.", + "guid": "https://www.bbc.co.uk/news/science-environment-65754296", + "isoDate": "2023-12-07T00:43:00.000Z" + }, + { + "title": "Mine explosion: Colombian authorities blow up illegal sites", + "link": "https://www.bbc.co.uk/news/world-latin-america-67644336?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 22:54:33 GMT", + "content": "Colombia and Brazil destroy 19 illegal gold mining sites and equipment in the Amazon rainforest.", + "contentSnippet": "Colombia and Brazil destroy 19 illegal gold mining sites and equipment in the Amazon rainforest.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67644336", + "isoDate": "2023-12-06T22:54:33.000Z" + }, + { + "title": "'I'm helpless' - Gaza doctor tells of desperate situation", + "link": "https://www.bbc.co.uk/news/world-middle-east-67644334?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 21:50:58 GMT", + "content": "Dr Ahmed Moghrabi told the BBC there's a scarcity of food, water, medicine and he cannot operate on patients.", + "contentSnippet": "Dr Ahmed Moghrabi told the BBC there's a scarcity of food, water, medicine and he cannot operate on patients.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67644334", + "isoDate": "2023-12-06T21:50:58.000Z" + }, + { + "title": "BBC reporter in Gaza: People here are traumatised and exhausted", + "link": "https://www.bbc.co.uk/news/world-middle-east-67643746?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 19:28:01 GMT", + "content": "People say life in Khan Younis is \"indescribable\" as Israel's bombardment of the south intensifies.", + "contentSnippet": "People say life in Khan Younis is \"indescribable\" as Israel's bombardment of the south intensifies.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67643746", + "isoDate": "2023-12-06T19:28:01.000Z" + }, + { + "title": "Israel hostages in Gaza: We have evidence their health worsening, say families", + "link": "https://www.bbc.co.uk/news/world-middle-east-67640750?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 16:18:37 GMT", + "content": "A three-hour meeting between freed hostages and Israel's leaders turned tense, observers say.", + "contentSnippet": "A three-hour meeting between freed hostages and Israel's leaders turned tense, observers say.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67640750", + "isoDate": "2023-12-06T16:18:37.000Z" + }, + { + "title": "How missiles from Yemen could escalate Israel-Gaza war", + "link": "https://www.bbc.co.uk/news/world-middle-east-67635670?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 15:53:39 GMT", + "content": "The Iran-backed Houthis have recently begun attacking vessels in the Red Sea they say are linked to Israel.", + "contentSnippet": "The Iran-backed Houthis have recently begun attacking vessels in the Red Sea they say are linked to Israel.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67635670", + "isoDate": "2023-12-06T15:53:39.000Z" + }, + { + "title": "Israeli settler violence brings destruction and fear to West Bank as war rages", + "link": "https://www.bbc.co.uk/news/world-middle-east-67617920?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 06:00:02 GMT", + "content": "Attacks including fatal shootings of Palestinians by Jewish settlers have risen sharply since 7 October.", + "contentSnippet": "Attacks including fatal shootings of Palestinians by Jewish settlers have risen sharply since 7 October.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67617920", + "isoDate": "2023-12-06T06:00:02.000Z" + }, + { + "title": "Jamie Foxx holds back tears as he addresses serious illness", + "link": "https://www.bbc.co.uk/news/world-us-canada-67633447?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 00:03:41 GMT", + "content": "The actor has been missing from the public eye since April 2023, as he battled an undisclosed life-threatening condition.", + "contentSnippet": "The actor has been missing from the public eye since April 2023, as he battled an undisclosed life-threatening condition.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67633447", + "isoDate": "2023-12-06T00:03:41.000Z" + }, + { + "title": "US sanctions individuals implicated in West Bank attacks", + "link": "https://www.bbc.co.uk/news/world-us-canada-67631739?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 23:12:10 GMT", + "content": "The US says it will impose visa bans on Israelis and some Palestinians over West Bank violence.", + "contentSnippet": "The US says it will impose visa bans on Israelis and some Palestinians over West Bank violence.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67631739", + "isoDate": "2023-12-05T23:12:10.000Z" + }, + { + "title": "Five-year-old Hamas hostage returns to school and is hugged by classmates", + "link": "https://www.bbc.co.uk/news/world-middle-east-67632573?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 20:53:27 GMT", + "content": "Emilia received a warm hug from her nursery school friends after being held in Hamas captivity for 49 days.", + "contentSnippet": "Emilia received a warm hug from her nursery school friends after being held in Hamas captivity for 49 days.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67632573", + "isoDate": "2023-12-05T20:53:27.000Z" + }, + { + "title": "Israel Gaza: Hamas raped and mutilated women on 7 October, BBC hears", + "link": "https://www.bbc.co.uk/news/world-middle-east-67629181?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 17:15:49 GMT", + "content": "The BBC has seen and heard evidence that Hamas fighters committed horrific sexual violence in Israel.", + "contentSnippet": "The BBC has seen and heard evidence that Hamas fighters committed horrific sexual violence in Israel.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67629181", + "isoDate": "2023-12-05T17:15:49.000Z" + }, + { + "title": "Virginia home explodes as police respond to call", + "link": "https://www.bbc.co.uk/news/world-us-canada-67629626?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 16:46:54 GMT", + "content": "A huge explosion destroys at least one home in Arlington, Virginia as police carried out a search warrant.", + "contentSnippet": "A huge explosion destroys at least one home in Arlington, Virginia as police carried out a search warrant.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67629626", + "isoDate": "2023-12-05T16:46:54.000Z" + }, + { + "title": "Hungary blocks \u20ac50bn of EU funding for Ukraine", + "link": "https://www.bbc.co.uk/news/world-europe-67724357?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 14:51:11 GMT", + "content": "Hungary blocks new funding just hours after a deal is struck on starting talks to admit Ukraine to the EU.", + "contentSnippet": "Hungary blocks new funding just hours after a deal is struck on starting talks to admit Ukraine to the EU.", + "guid": "https://www.bbc.co.uk/news/world-europe-67724357", + "isoDate": "2023-12-15T14:51:11.000Z" + }, + { + "title": "Ukraine grenade incident: Councillor tosses explosives into meeting", + "link": "https://www.bbc.co.uk/news/world-europe-67729343?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 14:37:24 GMT", + "content": "Twenty-six people were wounded when the man entered the council meeting and detonated the grenades.", + "contentSnippet": "Twenty-six people were wounded when the man entered the council meeting and detonated the grenades.", + "guid": "https://www.bbc.co.uk/news/world-europe-67729343", + "isoDate": "2023-12-15T14:37:24.000Z" + }, + { + "title": "Hamas hostages: Stories of the people taken from Israel", + "link": "https://www.bbc.co.uk/news/world-middle-east-67053011?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 13:46:00 GMT", + "content": "It is thought more than 100 Israelis are still being held hostage in Gaza after the 7 October attacks.", + "contentSnippet": "It is thought more than 100 Israelis are still being held hostage in Gaza after the 7 October attacks.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67053011", + "isoDate": "2023-12-15T13:46:00.000Z" + }, + { + "title": "Cargo ships in Red Sea hit by drone and missiles launched from Yemen", + "link": "https://www.bbc.co.uk/news/world-middle-east-67727601?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 13:21:21 GMT", + "content": "The US says the missiles were fired from a part of Yemen controlled by the Iran-backed Houthi group.", + "contentSnippet": "The US says the missiles were fired from a part of Yemen controlled by the Iran-backed Houthi group.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67727601", + "isoDate": "2023-12-15T13:21:21.000Z" + }, + { + "title": "British teen Alex Batty expected back in UK in next few days", + "link": "https://www.bbc.co.uk/news/uk-67724918?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 12:12:58 GMT", + "content": "The 17-year-old, who vanished in 2017, is currently being looked after by French authorities.", + "contentSnippet": "The 17-year-old, who vanished in 2017, is currently being looked after by French authorities.", + "guid": "https://www.bbc.co.uk/news/uk-67724918", + "isoDate": "2023-12-15T12:12:58.000Z" + }, + { + "title": "Alex Batty: How delivery driver found lost teen on unlit mountain road", + "link": "https://www.bbc.co.uk/news/world-europe-67725568?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 11:28:53 GMT", + "content": "It was the middle of the night when Fabien Accidini stumbled across a young man on an unlit road.", + "contentSnippet": "It was the middle of the night when Fabien Accidini stumbled across a young man on an unlit road.", + "guid": "https://www.bbc.co.uk/news/world-europe-67725568", + "isoDate": "2023-12-15T11:28:53.000Z" + }, + { + "title": "Nikhil Gupta: India man accused of US murder plot appeals to court", + "link": "https://www.bbc.co.uk/news/world-asia-india-67725935?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 11:12:08 GMT", + "content": "Nikhil Gupta has been accused by the US government of conspiring to assassinate a Sikh separatist leader.", + "contentSnippet": "Nikhil Gupta has been accused by the US government of conspiring to assassinate a Sikh separatist leader.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67725935", + "isoDate": "2023-12-15T11:12:08.000Z" + }, + { + "title": "Tren Maya: Mexico's Yucat\u00e1n mega train - world beating or environmental disaster?", + "link": "https://www.bbc.co.uk/news/world-latin-america-67638183?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 10:31:36 GMT", + "content": "Mexico's president says the Tren Maya will bring tourism and development to the jungle. But at what cost?", + "contentSnippet": "Mexico's president says the Tren Maya will bring tourism and development to the jungle. But at what cost?", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67638183", + "isoDate": "2023-12-15T10:31:36.000Z" + }, + { + "title": "Beijing subway crash leaves 102 with broken bones", + "link": "https://www.bbc.co.uk/news/world-asia-china-67724238?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 09:15:51 GMT", + "content": "The impact of the collision, which occurred during heavy snowfall, caused some carriages to detach.", + "contentSnippet": "The impact of the collision, which occurred during heavy snowfall, caused some carriages to detach.", + "guid": "https://www.bbc.co.uk/news/world-asia-china-67724238", + "isoDate": "2023-12-15T09:15:51.000Z" + }, + { + "title": "Taliban sending abused Afghan women to prison - UN", + "link": "https://www.bbc.co.uk/news/world-asia-67724424?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 07:38:24 GMT", + "content": "The Taliban says it's done for their \"protection\", but the UN says it is harmful to the survivors.", + "contentSnippet": "The Taliban says it's done for their \"protection\", but the UN says it is harmful to the survivors.", + "guid": "https://www.bbc.co.uk/news/world-asia-67724424", + "isoDate": "2023-12-15T07:38:24.000Z" + }, + { + "title": "India parliament: Key suspect arrested in security breach case", + "link": "https://www.bbc.co.uk/news/world-asia-india-67724546?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 07:29:35 GMT", + "content": "Lalit Jha surrendered to police a day after two intruders yelled slogans and set off smoke in parliament.", + "contentSnippet": "Lalit Jha surrendered to police a day after two intruders yelled slogans and set off smoke in parliament.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67724546", + "isoDate": "2023-12-15T07:29:35.000Z" + }, + { + "title": "How Israel jails hundreds of Palestinians without charge", + "link": "https://www.bbc.co.uk/news/world-middle-east-67600015?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 06:00:15 GMT", + "content": "Human rights groups say Israel is abusing a security law inherited from the British to strip due process.", + "contentSnippet": "Human rights groups say Israel is abusing a security law inherited from the British to strip due process.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67600015", + "isoDate": "2023-12-15T06:00:15.000Z" + }, + { + "title": "Watch: King and Elton John remember Barry Humphries", + "link": "https://www.bbc.co.uk/news/world-australia-67724680?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 05:38:22 GMT", + "content": "Humphries was celebrated for his comedic \u201cgenius\u201d but also kindness, at a state memorial in Sydney.", + "contentSnippet": "Humphries was celebrated for his comedic \u201cgenius\u201d but also kindness, at a state memorial in Sydney.", + "guid": "https://www.bbc.co.uk/news/world-australia-67724680", + "isoDate": "2023-12-15T05:38:22.000Z" + }, + { + "title": "Hong Kong offers HK$1m bounties on five overseas activists", + "link": "https://www.bbc.co.uk/news/world-asia-china-67724230?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 04:58:56 GMT", + "content": "Police said the activists will be \"pursued until the end\" for \"endangering national security\".", + "contentSnippet": "Police said the activists will be \"pursued until the end\" for \"endangering national security\".", + "guid": "https://www.bbc.co.uk/news/world-asia-china-67724230", + "isoDate": "2023-12-15T04:58:56.000Z" + }, + { + "title": "Curb Your Enthusiasm: comedy show to end after 24 years", + "link": "https://www.bbc.co.uk/news/world-us-canada-67723937?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 04:45:38 GMT", + "content": "HBO's longest running comedy series starring Larry David will end next year.", + "contentSnippet": "HBO's longest running comedy series starring Larry David will end next year.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67723937", + "isoDate": "2023-12-15T04:45:38.000Z" + }, + { + "title": "Essequibo dispute: Venezuela and Guyana agree not to use force", + "link": "https://www.bbc.co.uk/news/world-latin-america-67723936?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 03:29:59 GMT", + "content": "The presidents of Guyana and Venezuela will negotiate peacefully over oil-rich Essequibo after talks.", + "contentSnippet": "The presidents of Guyana and Venezuela will negotiate peacefully over oil-rich Essequibo after talks.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67723936", + "isoDate": "2023-12-15T03:29:59.000Z" + }, + { + "title": "Africa's week in pictures: 8-14 December 2023", + "link": "https://www.bbc.co.uk/news/world-africa-67715933?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 03:04:26 GMT", + "content": "A selection of the best photos from the African continent and beyond.", + "contentSnippet": "A selection of the best photos from the African continent and beyond.", + "guid": "https://www.bbc.co.uk/news/world-africa-67715933", + "isoDate": "2023-12-15T03:04:26.000Z" + }, + { + "title": "Chinese ex-banker jailed for life in corruption case", + "link": "https://www.bbc.co.uk/news/business-67724241?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 02:26:21 GMT", + "content": "Xu Guojun was convicted of embezzling $325m after being forcibly repatriated from the US in 2021.", + "contentSnippet": "Xu Guojun was convicted of embezzling $325m after being forcibly repatriated from the US in 2021.", + "guid": "https://www.bbc.co.uk/news/business-67724241", + "isoDate": "2023-12-15T02:26:21.000Z" + }, + { + "title": "Ukraine war: How TikTok fakes pushed Russian lies to millions", + "link": "https://www.bbc.co.uk/news/world-europe-67687449?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 00:51:06 GMT", + "content": "The BBC uncovers a vast Russia-based network of fake TikTok accounts pushing disinformation about Ukraine.", + "contentSnippet": "The BBC uncovers a vast Russia-based network of fake TikTok accounts pushing disinformation about Ukraine.", + "guid": "https://www.bbc.co.uk/news/world-europe-67687449", + "isoDate": "2023-12-15T00:51:06.000Z" + }, + { + "title": "Russian gas giant Gazprom makes \u00a339m profit in North Sea", + "link": "https://www.bbc.co.uk/news/business-67720198?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 00:02:39 GMT", + "content": "The state-owned Russian energy firm earned \u00a339m from its Dutch-UK gas field in 2022, accounts show.", + "contentSnippet": "The state-owned Russian energy firm earned \u00a339m from its Dutch-UK gas field in 2022, accounts show.", + "guid": "https://www.bbc.co.uk/news/business-67720198", + "isoDate": "2023-12-15T00:02:39.000Z" + }, + { + "title": "US Supreme Court lets Illinois assault weapon ban stand - for now", + "link": "https://www.bbc.co.uk/news/world-us-canada-67722478?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 23:14:00 GMT", + "content": "The Supreme Court has denied a request to put a temporary hold on the law pending an appeal.", + "contentSnippet": "The Supreme Court has denied a request to put a temporary hold on the law pending an appeal.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67722478", + "isoDate": "2023-12-14T23:14:00.000Z" + }, + { + "title": "Japan: People left dangling as rollercoaster stops mid-ride", + "link": "https://www.bbc.co.uk/news/world-asia-67721301?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 22:44:54 GMT", + "content": "The rollercoaster, which reaches heights of 150ft (46m), came to an emergency stop at a Japan theme park.", + "contentSnippet": "The rollercoaster, which reaches heights of 150ft (46m), came to an emergency stop at a Japan theme park.", + "guid": "https://www.bbc.co.uk/news/world-asia-67721301", + "isoDate": "2023-12-14T22:44:54.000Z" + }, + { + "title": "Gautam Singhania: Domestic abuse claims threaten India tycoon's fortune", + "link": "https://www.bbc.co.uk/news/world-asia-india-67700586?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 22:29:29 GMT", + "content": "Gautam Singhania is in an acrimonious divorce battle with his wife, who alleges he beat her and their daughter.", + "contentSnippet": "Gautam Singhania is in an acrimonious divorce battle with his wife, who alleges he beat her and their daughter.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67700586", + "isoDate": "2023-12-14T22:29:29.000Z" + }, + { + "title": "Bull spotted galloping down New Jersey train tracks", + "link": "https://www.bbc.co.uk/news/world-us-canada-67723281?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 21:14:02 GMT", + "content": "Morning commuters were met with delays after the long-horned animal made an appearance on the tracks.", + "contentSnippet": "Morning commuters were met with delays after the long-horned animal made an appearance on the tracks.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67723281", + "isoDate": "2023-12-14T21:14:02.000Z" + }, + { + "title": "Germany arrests over alleged Hamas anti-Jewish plot", + "link": "https://www.bbc.co.uk/news/world-europe-67715120?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 21:03:46 GMT", + "content": "Prosecutors said the suspects intended to store weapons in Berlin for possible use in an attack.", + "contentSnippet": "Prosecutors said the suspects intended to store weapons in Berlin for possible use in an attack.", + "guid": "https://www.bbc.co.uk/news/world-europe-67715120", + "isoDate": "2023-12-14T21:03:46.000Z" + }, + { + "title": "Brooklyn Nine-Nine star Andre Braugher died of lung cancer", + "link": "https://www.bbc.co.uk/news/world-us-canada-67723055?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 20:54:55 GMT", + "content": "The Emmy winner was diagnosed with the disease several months ago, his publicist says.", + "contentSnippet": "The Emmy winner was diagnosed with the disease several months ago, his publicist says.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67723055", + "isoDate": "2023-12-14T20:54:55.000Z" + }, + { + "title": "Watch: Bear dodges skiers on California slopes", + "link": "https://www.bbc.co.uk/news/world-us-canada-67722456?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 19:01:00 GMT", + "content": "The bear escaped collision-free and is said to have reunited with its mother on the other side of the trail.", + "contentSnippet": "The bear escaped collision-free and is said to have reunited with its mother on the other side of the trail.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67722456", + "isoDate": "2023-12-14T19:01:00.000Z" + }, + { + "title": "Ukraine war: Shell shortages force us to limit firing, Ukrainian troops tell BBC", + "link": "https://www.bbc.co.uk/news/world-europe-67714719?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 17:51:15 GMT", + "content": "The BBC visits a front line where ammunition is low and hears troops' fears of wavering Western support.", + "contentSnippet": "The BBC visits a front line where ammunition is low and hears troops' fears of wavering Western support.", + "guid": "https://www.bbc.co.uk/news/world-europe-67714719", + "isoDate": "2023-12-14T17:51:15.000Z" + }, + { + "title": "Israeli soldiers' mosque behaviour condemned by IDF", + "link": "https://www.bbc.co.uk/news/world-middle-east-67719820?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 17:09:02 GMT", + "content": "A Jewish festival song was filmed sung from the minaret of a mosque in the West Bank city of Jenin.", + "contentSnippet": "A Jewish festival song was filmed sung from the minaret of a mosque in the West Bank city of Jenin.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67719820", + "isoDate": "2023-12-14T17:09:02.000Z" + }, + { + "title": "Inside Putin's carefully choreographed annual news conference", + "link": "https://www.bbc.co.uk/news/world-europe-67718655?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 16:21:30 GMT", + "content": "The four-hour TV extravaganza was inescapable, writes BBC Russia Editor Steve Rosenberg.", + "contentSnippet": "The four-hour TV extravaganza was inescapable, writes BBC Russia Editor Steve Rosenberg.", + "guid": "https://www.bbc.co.uk/news/world-europe-67718655", + "isoDate": "2023-12-14T16:21:30.000Z" + }, + { + "title": "Russia-Ukraine war: Putin tells Russia his war objectives are unchanged", + "link": "https://www.bbc.co.uk/news/world-europe-67711802?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 13:13:59 GMT", + "content": "Russia's leader holds his first major news conference since his full-scale invasion of Ukraine began.", + "contentSnippet": "Russia's leader holds his first major news conference since his full-scale invasion of Ukraine began.", + "guid": "https://www.bbc.co.uk/news/world-europe-67711802", + "isoDate": "2023-12-14T13:13:59.000Z" + }, + { + "title": "Putin: Russia can't exist without sovereignty", + "link": "https://www.bbc.co.uk/news/world-europe-67714359?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 09:33:59 GMT", + "content": "The president vows to strengthen Russia's sovereignty as he starts a lengthy press conference.", + "contentSnippet": "The president vows to strengthen Russia's sovereignty as he starts a lengthy press conference.", + "guid": "https://www.bbc.co.uk/news/world-europe-67714359", + "isoDate": "2023-12-14T09:33:59.000Z" + }, + { + "title": "Impeachment inquiry threatens Biden with election-year headache", + "link": "https://www.bbc.co.uk/news/world-us-canada-67632723?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 09:21:36 GMT", + "content": "A formal inquiry, with public hearings, has the potential to loom over his election campaign in 2024.", + "contentSnippet": "A formal inquiry, with public hearings, has the potential to loom over his election campaign in 2024.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67632723", + "isoDate": "2023-12-14T09:21:36.000Z" + }, + { + "title": "Australian woman charged with stealing van carrying 10,000 doughnuts", + "link": "https://www.bbc.co.uk/news/world-australia-67712369?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 09:15:55 GMT", + "content": "It is unclear if the 28-year-old knew the van she is alleged to have stolen contained 10,000 doughnuts.", + "contentSnippet": "It is unclear if the 28-year-old knew the van she is alleged to have stolen contained 10,000 doughnuts.", + "guid": "https://www.bbc.co.uk/news/world-australia-67712369", + "isoDate": "2023-12-14T09:15:55.000Z" + }, + { + "title": "Joshua Mollel: Tanzania says student killed in Israel by Hamas", + "link": "https://www.bbc.co.uk/news/world-africa-67713520?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 08:56:36 GMT", + "content": "It was initially reported that Joshua Mollel had been taken hostage by Hamas, along with a colleague.", + "contentSnippet": "It was initially reported that Joshua Mollel had been taken hostage by Hamas, along with a colleague.", + "guid": "https://www.bbc.co.uk/news/world-africa-67713520", + "isoDate": "2023-12-14T08:56:36.000Z" + }, + { + "title": "Israel-Gaza war: What is the price of peace?", + "link": "https://www.bbc.co.uk/news/world-middle-east-67701700?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 06:01:30 GMT", + "content": "The BBC's Jeremy Bowen asks Israeli and Palestinian activists about their hopes for resolving the conflict.", + "contentSnippet": "The BBC's Jeremy Bowen asks Israeli and Palestinian activists about their hopes for resolving the conflict.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67701700", + "isoDate": "2023-12-14T06:01:30.000Z" + }, + { + "title": "DR Congo election: 'We would vote for peace - if we had a vote'", + "link": "https://www.bbc.co.uk/news/world-africa-67681710?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 00:43:27 GMT", + "content": "Ending the rebellion in the east dominates campaigning but fails to impress those fleeing fighting.", + "contentSnippet": "Ending the rebellion in the east dominates campaigning but fails to impress those fleeing fighting.", + "guid": "https://www.bbc.co.uk/news/world-africa-67681710", + "isoDate": "2023-12-14T00:43:27.000Z" + }, + { + "title": "The Afghan refugees stuck in limbo at the US-Mexico border", + "link": "https://www.bbc.co.uk/news/world-latin-america-67661993?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 00:25:27 GMT", + "content": "Refugees fleeing the Taliban face a treacherous journey through Latin America to the United States.", + "contentSnippet": "Refugees fleeing the Taliban face a treacherous journey through Latin America to the United States.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67661993", + "isoDate": "2023-12-14T00:25:27.000Z" + }, + { + "title": "Budhini Manjhiyain: The Indian tribal woman exiled for garlanding Nehru", + "link": "https://www.bbc.co.uk/news/world-asia-india-67482899?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 00:13:51 GMT", + "content": "Budhini Manjhiyain was just 15 when she was ostracised by her tribe in 1959. Here's her story.", + "contentSnippet": "Budhini Manjhiyain was just 15 when she was ostracised by her tribe in 1959. Here's her story.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67482899", + "isoDate": "2023-12-14T00:13:51.000Z" + }, + { + "title": "Aitana Bonmati: Ballon d'Or and World Cup winner forged by adversity", + "link": "https://www.bbc.co.uk/sport/football/67691132?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 00:01:35 GMT", + "content": "From the moment she was named, Aitana Bonmati has stood out from the rest and stood up for something more than herself.", + "contentSnippet": "From the moment she was named, Aitana Bonmati has stood out from the rest and stood up for something more than herself.", + "guid": "https://www.bbc.co.uk/sport/football/67691132", + "isoDate": "2023-12-14T00:01:35.000Z" + }, + { + "title": "Hong Kong's universities shrivel in Beijing's grip", + "link": "https://www.bbc.co.uk/news/world-asia-china-67689072?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 22:32:02 GMT", + "content": "Academics are leaving a city which at one time attracted top talent for its world-class universities.", + "contentSnippet": "Academics are leaving a city which at one time attracted top talent for its world-class universities.", + "guid": "https://www.bbc.co.uk/news/world-asia-china-67689072", + "isoDate": "2023-12-13T22:32:02.000Z" + }, + { + "title": "The moment Oprah's portrait for national gallery is unveiled", + "link": "https://www.bbc.co.uk/news/world-us-canada-67708719?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 19:47:31 GMT", + "content": "The media mogul's painting will hang beside other American icons at the National Portrait Gallery.", + "contentSnippet": "The media mogul's painting will hang beside other American icons at the National Portrait Gallery.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67708719", + "isoDate": "2023-12-13T19:47:31.000Z" + }, + { + "title": "Moment elephant smashes van window in search of food in Sri Lanka", + "link": "https://www.bbc.co.uk/news/world-67710141?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 19:41:43 GMT", + "content": "The driver remains remarkably calm, as the elephant pushes past him to reach food in the back seat.", + "contentSnippet": "The driver remains remarkably calm, as the elephant pushes past him to reach food in the back seat.", + "guid": "https://www.bbc.co.uk/news/world-67710141", + "isoDate": "2023-12-13T19:41:43.000Z" + }, + { + "title": "COP28: Three takeaways from the deal on fossil fuels", + "link": "https://www.bbc.co.uk/news/science-environment-67709508?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 17:42:26 GMT", + "content": "Climate reporter Esme Stallard breaks down the COP28 climate summit agreement - in less than a minute.", + "contentSnippet": "Climate reporter Esme Stallard breaks down the COP28 climate summit agreement - in less than a minute.", + "guid": "https://www.bbc.co.uk/news/science-environment-67709508", + "isoDate": "2023-12-13T17:42:26.000Z" + }, + { + "title": "Support for Hamas grows among Palestinians in West Bank", + "link": "https://www.bbc.co.uk/news/world-middle-east-67695861?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 16:07:47 GMT", + "content": "Israel aims to destroy the group in Gaza, but its influence is spreading in the occupied West Bank.", + "contentSnippet": "Israel aims to destroy the group in Gaza, but its influence is spreading in the occupied West Bank.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67695861", + "isoDate": "2023-12-13T16:07:47.000Z" + }, + { + "title": "Brooklyn Nine-Nine's Andre Braugher in his own words", + "link": "https://www.bbc.co.uk/news/world-us-canada-67707622?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 16:04:01 GMT", + "content": "Here's a look back at the actor talking about his training, work and love for his audience.", + "contentSnippet": "Here's a look back at the actor talking about his training, work and love for his audience.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67707622", + "isoDate": "2023-12-13T16:04:01.000Z" + }, + { + "title": "Watch: Intruder jumps on table in Indian parliament", + "link": "https://www.bbc.co.uk/news/world-asia-india-67700660?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 09:49:30 GMT", + "content": "Lawmakers said two men jumped into the well of the house from the visitors' gallery.", + "contentSnippet": "Lawmakers said two men jumped into the well of the house from the visitors' gallery.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67700660", + "isoDate": "2023-12-13T09:49:30.000Z" + }, + { + "title": "Small island states 'weren't in room' when deal agreed", + "link": "https://www.bbc.co.uk/news/world-67701412?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 09:07:22 GMT", + "content": "Samoa says they are \"a little confused\" by agreement of COP28 climate deal while they were absent from room.", + "contentSnippet": "Samoa says they are \"a little confused\" by agreement of COP28 climate deal while they were absent from room.", + "guid": "https://www.bbc.co.uk/news/world-67701412", + "isoDate": "2023-12-13T09:07:22.000Z" + }, + { + "title": "How a referee being punched shut down Turkish football", + "link": "https://www.bbc.co.uk/news/world-europe-67690210?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 12 Dec 2023 16:01:36 GMT", + "content": "All Turkish football leagues are suspended after the president of MKE Ankaragucu punched a referee.", + "contentSnippet": "All Turkish football leagues are suspended after the president of MKE Ankaragucu punched a referee.", + "guid": "https://www.bbc.co.uk/news/world-europe-67690210", + "isoDate": "2023-12-12T16:01:36.000Z" + }, + { + "title": "Israel determined to finish Gaza operation despite civilian suffering", + "link": "https://www.bbc.co.uk/news/world-middle-east-67691219?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 12 Dec 2023 13:04:01 GMT", + "content": "A senior military adviser tells the BBC Israel will need more than a few more weeks to destroy Hamas.", + "contentSnippet": "A senior military adviser tells the BBC Israel will need more than a few more weeks to destroy Hamas.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67691219", + "isoDate": "2023-12-12T13:04:01.000Z" + }, + { + "title": "MK Strinda: Yemen's rebel Houthis hit Norwegian tanker with missile", + "link": "https://www.bbc.co.uk/news/world-middle-east-67691216?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 12 Dec 2023 11:39:07 GMT", + "content": "The Houthis have vowed to stop ships heading to Israel, but its owners say it was going to Italy.", + "contentSnippet": "The Houthis have vowed to stop ships heading to Israel, but its owners say it was going to Italy.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67691216", + "isoDate": "2023-12-12T11:39:07.000Z" + }, + { + "title": "Eyal Waldman: Israeli tech billionaire hopes for peace despite daughter's killing", + "link": "https://www.bbc.co.uk/news/world-middle-east-67679634?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 12 Dec 2023 06:00:34 GMT", + "content": "Eyal Waldman's youngest daughter was killed in the Supernova music festival massacre on 7 October.", + "contentSnippet": "Eyal Waldman's youngest daughter was killed in the Supernova music festival massacre on 7 October.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67679634", + "isoDate": "2023-12-12T06:00:34.000Z" + }, + { + "title": "Israel Gaza: 'Where is mum? Where is grandma? Where did they go?'", + "link": "https://www.bbc.co.uk/news/world-middle-east-67688422?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 12 Dec 2023 02:16:24 GMT", + "content": "The uncle of a critically ill boy in Gaza fears he will deteriorate if told his parents were killed.", + "contentSnippet": "The uncle of a critically ill boy in Gaza fears he will deteriorate if told his parents were killed.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67688422", + "isoDate": "2023-12-12T02:16:24.000Z" + }, + { + "title": "Tetris: Watch moment US teenager becomes 'first to beat game'", + "link": "https://www.bbc.co.uk/news/world-us-canada-67879712?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:46:29 GMT", + "content": "Willis Gibson, 13, falls back in his chair in shock as he apparently becomes the first to beat the game.", + "contentSnippet": "Willis Gibson, 13, falls back in his chair in shock as he apparently becomes the first to beat the game.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67879712", + "isoDate": "2024-01-04T10:46:29.000Z" + }, + { + "title": "Swedish snow chaos leaves 1,000 vehicles trapped on main E22 road", + "link": "https://www.bbc.co.uk/news/world-europe-67880743?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:19:30 GMT", + "content": "The army is called in to help drivers in southern Sweden amid a big freeze across the Nordic countries.", + "contentSnippet": "The army is called in to help drivers in southern Sweden amid a big freeze across the Nordic countries.", + "guid": "https://www.bbc.co.uk/news/world-europe-67880743", + "isoDate": "2024-01-04T10:19:30.000Z" + }, + { + "title": "Iran leader vows harsh response to deadly bombings that killed 84", + "link": "https://www.bbc.co.uk/news/world-middle-east-67872281?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:18:25 GMT", + "content": "Blasts killed 84 people among crowds marking the anniversary of Qasem Soleimani's assassination by the US.", + "contentSnippet": "Blasts killed 84 people among crowds marking the anniversary of Qasem Soleimani's assassination by the US.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67872281", + "isoDate": "2024-01-04T10:18:25.000Z" + }, + { + "title": "Prince Andrew and Bill Clinton named in Epstein files", + "link": "https://www.bbc.co.uk/news/world-us-canada-67865190?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:14:24 GMT", + "content": "Files detail sex offender Jeffrey Epstein's connections but no bombshell revelations immediately emerge.", + "contentSnippet": "Files detail sex offender Jeffrey Epstein's connections but no bombshell revelations immediately emerge.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67865190", + "isoDate": "2024-01-04T10:14:24.000Z" + }, + { + "title": "Trump asks Supreme Court to overturn Colorado ban", + "link": "https://www.bbc.co.uk/news/world-us-canada-67878675?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 09:55:18 GMT", + "content": "The Trump campaign says keeping him off the ballot is an \"un-American\" act of election interference.", + "contentSnippet": "The Trump campaign says keeping him off the ballot is an \"un-American\" act of election interference.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67878675", + "isoDate": "2024-01-04T09:55:18.000Z" + }, + { + "title": "Japan earthquake: Race to find survivors as critical 72-hour window closes", + "link": "https://www.bbc.co.uk/news/world-asia-67879609?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 09:46:17 GMT", + "content": "At least 77 people are now known to have died in the quake and thousands are still without power.", + "contentSnippet": "At least 77 people are now known to have died in the quake and thousands are still without power.", + "guid": "https://www.bbc.co.uk/news/world-asia-67879609", + "isoDate": "2024-01-04T09:46:17.000Z" + }, + { + "title": "Queen Margrethe II of Denmark embarks on final ride in gold carriage before abdication", + "link": "https://www.bbc.co.uk/news/world-europe-67880989?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 09:45:28 GMT", + "content": "Queen Margrethe II will formally step down next Sunday, after announcing her abdication last month.", + "contentSnippet": "Queen Margrethe II will formally step down next Sunday, after announcing her abdication last month.", + "guid": "https://www.bbc.co.uk/news/world-europe-67880989", + "isoDate": "2024-01-04T09:45:28.000Z" + }, + { + "title": "Japan jet crash: Airline pilots unaware of cabin fire until crew told them", + "link": "https://www.bbc.co.uk/news/world-asia-67879308?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 08:49:56 GMT", + "content": "It was a flight attendant who raised the alarm about the cabin fire, said an airline spokesperson.", + "contentSnippet": "It was a flight attendant who raised the alarm about the cabin fire, said an airline spokesperson.", + "guid": "https://www.bbc.co.uk/news/world-asia-67879308", + "isoDate": "2024-01-04T08:49:56.000Z" + }, + { + "title": "Watch: Man leaps over US courtroom bench to attack judge", + "link": "https://www.bbc.co.uk/news/world-us-canada-67879499?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 05:23:53 GMT", + "content": "Footage shows a man charging at a judge as he is sentenced in a Nevada courtroom.", + "contentSnippet": "Footage shows a man charging at a judge as he is sentenced in a Nevada courtroom.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67879499", + "isoDate": "2024-01-04T05:23:53.000Z" + }, + { + "title": "New Jersey imam shot and killed outside his mosque", + "link": "https://www.bbc.co.uk/news/world-us-canada-67878896?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 05:19:41 GMT", + "content": "Officials believe the killing of Imam Hassan Sharif was not motivated by domestic terrorism or bias.", + "contentSnippet": "Officials believe the killing of Imam Hassan Sharif was not motivated by domestic terrorism or bias.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67878896", + "isoDate": "2024-01-04T05:19:41.000Z" + }, + { + "title": "Japan earthquake: Eerie search for bodies near epicentre", + "link": "https://www.bbc.co.uk/news/world-asia-67872944?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 03:17:01 GMT", + "content": "As the death toll rises to 77, hard-hit places like Wajima now resemble a ghost town.", + "contentSnippet": "As the death toll rises to 77, hard-hit places like Wajima now resemble a ghost town.", + "guid": "https://www.bbc.co.uk/news/world-asia-67872944", + "isoDate": "2024-01-04T03:17:01.000Z" + }, + { + "title": "SpaceX accused of unlawfully firing staff critical of Elon Musk", + "link": "https://www.bbc.co.uk/news/business-67878940?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 02:14:24 GMT", + "content": "A US labour agency says the employees sent an open letter to SpaceX executives, detailing workplace concerns.", + "contentSnippet": "A US labour agency says the employees sent an open letter to SpaceX executives, detailing workplace concerns.", + "guid": "https://www.bbc.co.uk/news/business-67878940", + "isoDate": "2024-01-04T02:14:24.000Z" + }, + { + "title": "Houthis defiant after warning over Red Sea attacks", + "link": "https://www.bbc.co.uk/news/world-middle-east-67878906?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 02:10:41 GMT", + "content": "The US, UK and other states tell Yemen's rebels they will face consequences if attacks persist.", + "contentSnippet": "The US, UK and other states tell Yemen's rebels they will face consequences if attacks persist.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67878906", + "isoDate": "2024-01-04T02:10:41.000Z" + }, + { + "title": "Uruguay bill stirs debate about dictatorship-era crimes", + "link": "https://www.bbc.co.uk/news/world-latin-america-67785302?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 00:51:27 GMT", + "content": "A bill in Uruguay could see perpetrators of dictatorship-era crimes released into house arrest.", + "contentSnippet": "A bill in Uruguay could see perpetrators of dictatorship-era crimes released into house arrest.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67785302", + "isoDate": "2024-01-04T00:51:27.000Z" + }, + { + "title": "Luke Littler: Cheers and sighs as darts final spoils Littler's party", + "link": "https://www.bbc.co.uk/news/uk-67876474?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 23:32:20 GMT", + "content": "Luke Littler loses chance to become youngest world darts champion after being beaten by Luke Humphries.", + "contentSnippet": "Luke Littler loses chance to become youngest world darts champion after being beaten by Luke Humphries.", + "guid": "https://www.bbc.co.uk/news/uk-67876474", + "isoDate": "2024-01-03T23:32:20.000Z" + }, + { + "title": "Salman Rushdie stabbing trial delayed over upcoming book", + "link": "https://www.bbc.co.uk/news/world-us-canada-67878640?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 23:25:20 GMT", + "content": "The defendant's lawyers argue they should review Rushdie's upcoming memoir about the incident.", + "contentSnippet": "The defendant's lawyers argue they should review Rushdie's upcoming memoir about the incident.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67878640", + "isoDate": "2024-01-03T23:25:20.000Z" + }, + { + "title": "A restless Gen Z is reshaping the Chinese Dream", + "link": "https://www.bbc.co.uk/news/world-asia-china-67779222?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 23:11:06 GMT", + "content": "Millions of young Chinese face an uncertain future in the world's second-largest economy.", + "contentSnippet": "Millions of young Chinese face an uncertain future in the world's second-largest economy.", + "guid": "https://www.bbc.co.uk/news/world-asia-china-67779222", + "isoDate": "2024-01-03T23:11:06.000Z" + }, + { + "title": "India TB: Can vaccines help India triumph over tuberculosis?", + "link": "https://www.bbc.co.uk/news/world-asia-india-67647054?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 23:06:05 GMT", + "content": "India is far from achieving its stated goal of eliminating tuberculosis by 2025.", + "contentSnippet": "India is far from achieving its stated goal of eliminating tuberculosis by 2025.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67647054", + "isoDate": "2024-01-03T23:06:05.000Z" + }, + { + "title": "New Zealand: Man's watch reflection leads to rescue after day in ocean", + "link": "https://www.bbc.co.uk/news/world-asia-67875511?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 22:35:25 GMT", + "content": "The man, who spent almost 24 hours floating in the ocean, harnessed the sun's rays to attract attention.", + "contentSnippet": "The man, who spent almost 24 hours floating in the ocean, harnessed the sun's rays to attract attention.", + "guid": "https://www.bbc.co.uk/news/world-asia-67875511", + "isoDate": "2024-01-03T22:35:25.000Z" + }, + { + "title": "Bomb threats cause evacuations at multiple US statehouses", + "link": "https://www.bbc.co.uk/news/world-us-canada-67878362?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 22:33:02 GMT", + "content": "Statehouses in Georgia, Kentucky, Mississippi, Montana, Connecticut and Michigan had to be evacuated.", + "contentSnippet": "Statehouses in Georgia, Kentucky, Mississippi, Montana, Connecticut and Michigan had to be evacuated.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67878362", + "isoDate": "2024-01-03T22:33:02.000Z" + }, + { + "title": "Philippines: Bone diggers seek justice for dead in Duterte's drug war", + "link": "https://www.bbc.co.uk/news/world-asia-67825685?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 22:17:48 GMT", + "content": "A priest and a forensic pathologist are collecting evidence that may one day be used in court.", + "contentSnippet": "A priest and a forensic pathologist are collecting evidence that may one day be used in court.", + "guid": "https://www.bbc.co.uk/news/world-asia-67825685", + "isoDate": "2024-01-03T22:17:48.000Z" + }, + { + "title": "Saleh al-Arouri: Hamas leader's death 'won't go unpunished', says Hezbollah chief", + "link": "https://www.bbc.co.uk/news/world-middle-east-67875508?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 20:47:45 GMT", + "content": "The head of Lebanon's largest military force says the death of Saleh al-Arouri will be avenged.", + "contentSnippet": "The head of Lebanon's largest military force says the death of Saleh al-Arouri will be avenged.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67875508", + "isoDate": "2024-01-03T20:47:45.000Z" + }, + { + "title": "Ukraine and Russia in 'biggest prisoner swap' so far", + "link": "https://www.bbc.co.uk/news/world-europe-67872417?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 17:29:04 GMT", + "content": "Both sides thanked the United Arab Emirates for mediating the deal.", + "contentSnippet": "Both sides thanked the United Arab Emirates for mediating the deal.", + "guid": "https://www.bbc.co.uk/news/world-europe-67872417", + "isoDate": "2024-01-03T17:29:04.000Z" + }, + { + "title": "Mary, Crown Princess of Denmark: Australia celebrates an unexpected queen", + "link": "https://www.bbc.co.uk/news/world-australia-67860144?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 16:36:14 GMT", + "content": "Mary Donaldson met Crown Prince Frederik by chance in a Sydney bar - now she's about to become queen of Denmark.", + "contentSnippet": "Mary Donaldson met Crown Prince Frederik by chance in a Sydney bar - now she's about to become queen of Denmark.", + "guid": "https://www.bbc.co.uk/news/world-australia-67860144", + "isoDate": "2024-01-03T16:36:14.000Z" + }, + { + "title": "Ukraine war: What Russia's escalating air attacks mean", + "link": "https://www.bbc.co.uk/news/world-europe-67871729?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 14:06:27 GMT", + "content": "In just five days, Russia has fired 500 missiles and drones at Ukraine. What does it mean for the war?", + "contentSnippet": "In just five days, Russia has fired 500 missiles and drones at Ukraine. What does it mean for the war?", + "guid": "https://www.bbc.co.uk/news/world-europe-67871729", + "isoDate": "2024-01-03T14:06:27.000Z" + }, + { + "title": "Hamas deputy leader Saleh al-Arouri's assassination sparks wider war fears", + "link": "https://www.bbc.co.uk/news/world-middle-east-67873573?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 12:58:35 GMT", + "content": "Lyse Doucet assesses if Hezbollah and Hamas will retaliate after Saleh al-Arouri was killed in Lebanon.", + "contentSnippet": "Lyse Doucet assesses if Hezbollah and Hamas will retaliate after Saleh al-Arouri was killed in Lebanon.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67873573", + "isoDate": "2024-01-03T12:58:35.000Z" + }, + { + "title": "Japan jet crash: How crew pulled off flawless evacuation from plane inferno", + "link": "https://www.bbc.co.uk/news/world-asia-67870119?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 12:33:46 GMT", + "content": "Leaving valuables behind was a \"major factor\" behind the evacuation of 379 people as fire engulfed the plane.", + "contentSnippet": "Leaving valuables behind was a \"major factor\" behind the evacuation of 379 people as fire engulfed the plane.", + "guid": "https://www.bbc.co.uk/news/world-asia-67870119", + "isoDate": "2024-01-03T12:33:46.000Z" + }, + { + "title": "Watch: Buildings still smouldering in quake-hit Wajima", + "link": "https://www.bbc.co.uk/news/world-asia-67872467?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 10:37:48 GMT", + "content": "The BBC's Jean Mackenzie made it to one of the worst affected towns after a powerful earthquake rocked Japan.", + "contentSnippet": "The BBC's Jean Mackenzie made it to one of the worst affected towns after a powerful earthquake rocked Japan.", + "guid": "https://www.bbc.co.uk/news/world-asia-67872467", + "isoDate": "2024-01-03T10:37:48.000Z" + }, + { + "title": "Japan Airlines plane shown burned out after fire in aerial footage", + "link": "https://www.bbc.co.uk/news/world-asia-67870460?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 07:13:11 GMT", + "content": "The Japan Airlines plane burst into flames after a collision with a smaller coastguard aircraft on Tuesday.", + "contentSnippet": "The Japan Airlines plane burst into flames after a collision with a smaller coastguard aircraft on Tuesday.", + "guid": "https://www.bbc.co.uk/news/world-asia-67870460", + "isoDate": "2024-01-03T07:13:11.000Z" + }, + { + "title": "Kai Zhuang: Cyber kidnapping in US illustrates growing crime trend", + "link": "https://www.bbc.co.uk/news/world-us-canada-67869517?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 02 Jan 2024 23:30:55 GMT", + "content": "Cyber kidnapping is on the rise - surveillance, online threats then the victim hiding from relatives.", + "contentSnippet": "Cyber kidnapping is on the rise - surveillance, online threats then the victim hiding from relatives.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67869517", + "isoDate": "2024-01-02T23:30:55.000Z" + }, + { + "title": "Who was Hamas leader Saleh al-Arouri killed in Beirut?", + "link": "https://www.bbc.co.uk/news/world-67868754?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 02 Jan 2024 21:30:03 GMT", + "content": "The 57-year-old was deputy head of Hamas's political bureau and helped establish the group's military wing.", + "contentSnippet": "The 57-year-old was deputy head of Hamas's political bureau and helped establish the group's military wing.", + "guid": "https://www.bbc.co.uk/news/world-67868754", + "isoDate": "2024-01-02T21:30:03.000Z" + }, + { + "title": "Japan Airlines: How the passenger plane burst into flames", + "link": "https://www.bbc.co.uk/news/world-asia-67868143?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 02 Jan 2024 19:18:03 GMT", + "content": "A professor in investigating accidents tells the BBC what might have caused the plane to burst into flames.", + "contentSnippet": "A professor in investigating accidents tells the BBC what might have caused the plane to burst into flames.", + "guid": "https://www.bbc.co.uk/news/world-asia-67868143", + "isoDate": "2024-01-02T19:18:03.000Z" + }, + { + "title": "Israel to fight South Africa's Gaza genocide claim in court", + "link": "https://www.bbc.co.uk/news/world-middle-east-67866342?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 02 Jan 2024 18:02:44 GMT", + "content": "South Africa accused Israel of committing genocide in Gaza, triggering Israeli outrage.", + "contentSnippet": "South Africa accused Israel of committing genocide in Gaza, triggering Israeli outrage.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67866342", + "isoDate": "2024-01-02T18:02:44.000Z" + }, + { + "title": "Passengers clamber down emergency slide after Japan plane fire", + "link": "https://www.bbc.co.uk/news/world-asia-67861082?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 02 Jan 2024 12:08:15 GMT", + "content": "The Japan Airlines plane was engulfed in flames after it landed at Haneda Airport.", + "contentSnippet": "The Japan Airlines plane was engulfed in flames after it landed at Haneda Airport.", + "guid": "https://www.bbc.co.uk/news/world-asia-67861082", + "isoDate": "2024-01-02T12:08:15.000Z" + }, + { + "title": "Japan plane fire: Dramatic videos show how plane is overcome by fire at Haneda airport", + "link": "https://www.bbc.co.uk/news/world-asia-67861081?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 02 Jan 2024 11:58:06 GMT", + "content": "A fireball erupted as a Japan Airlines plane landed on a runway in Tokyo.", + "contentSnippet": "A fireball erupted as a Japan Airlines plane landed on a runway in Tokyo.", + "guid": "https://www.bbc.co.uk/news/world-asia-67861081", + "isoDate": "2024-01-02T11:58:06.000Z" + }, + { + "title": "Gaza: Baby pulled alive from rubble after Israeli air strike on Rafah", + "link": "https://www.bbc.co.uk/news/world-middle-east-67843832?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 29 Dec 2023 21:26:21 GMT", + "content": "Rescuers clear rubble with their hands to release the girl, before running with her to hospital.", + "contentSnippet": "Rescuers clear rubble with their hands to release the girl, before running with her to hospital.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67843832", + "isoDate": "2023-12-29T21:26:21.000Z" + }, + { + "title": "Thousands of Palestinians flee central Gaza as Israeli troops advance", + "link": "https://www.bbc.co.uk/news/world-middle-east-67834432?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 29 Dec 2023 04:36:12 GMT", + "content": "Israeli tanks reportedly reach the outskirts of Bureij refugee camp as the ground offensive expands.", + "contentSnippet": "Israeli tanks reportedly reach the outskirts of Bureij refugee camp as the ground offensive expands.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67834432", + "isoDate": "2023-12-29T04:36:12.000Z" + }, + { + "title": "Israel issues alert after blast near embassy in India", + "link": "https://www.bbc.co.uk/news/world-asia-india-67825697?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 27 Dec 2023 06:01:26 GMT", + "content": "Authorities say nobody was injured in the low-intensity explosion in Delhi on Tuesday evening.", + "contentSnippet": "Authorities say nobody was injured in the low-intensity explosion in Delhi on Tuesday evening.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67825697", + "isoDate": "2023-12-27T06:01:26.000Z" + }, + { + "title": "Israel Gaza: Drone shots show Palestinians buried in Rafah mass grave", + "link": "https://www.bbc.co.uk/news/world-middle-east-67825385?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 26 Dec 2023 23:06:40 GMT", + "content": "Some 80 unidentified bodies handed over by Israel are lowered into a grave in southern Gaza.", + "contentSnippet": "Some 80 unidentified bodies handed over by Israel are lowered into a grave in southern Gaza.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67825385", + "isoDate": "2023-12-26T23:06:40.000Z" + }, + { + "title": "Israel-Gaza war will continue for months, IDF chief warns", + "link": "https://www.bbc.co.uk/news/world-middle-east-67824421?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 26 Dec 2023 20:32:30 GMT", + "content": "There are no shortcuts in the fight against Hamas, the army chief insists as Israel pounds Gaza.", + "contentSnippet": "There are no shortcuts in the fight against Hamas, the army chief insists as Israel pounds Gaza.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67824421", + "isoDate": "2023-12-26T20:32:30.000Z" + }, + { + "title": "'Bethlehem is empty of joy - no Santa, no celebration'", + "link": "https://www.bbc.co.uk/news/world-middle-east-67815370?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Sun, 24 Dec 2023 14:04:54 GMT", + "content": "The West Bank city of Bethlehem, usually bustling at this time of year, is subdued as war goes on in Gaza.", + "contentSnippet": "The West Bank city of Bethlehem, usually bustling at this time of year, is subdued as war goes on in Gaza.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67815370", + "isoDate": "2023-12-24T14:04:54.000Z" + }, + { + "title": "Mexico police free migrants kidnapped off coach", + "link": "https://www.bbc.co.uk/news/world-latin-america-67872039?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:43:37 GMT", + "content": "The migrants had been kidnapped by armed men who boarded their bus bound for to the US-Mexico border.", + "contentSnippet": "The migrants had been kidnapped by armed men who boarded their bus bound for to the US-Mexico border.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67872039", + "isoDate": "2024-01-04T10:43:37.000Z" + }, + { + "title": "Watch: First pictures of plane on fire on Tokyo runway", + "link": "https://www.bbc.co.uk/news/world-asia-67862154?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 02 Jan 2024 09:32:17 GMT", + "content": "The Japan Airlines plane was in flames as it landed on a runway at Haneda airport.", + "contentSnippet": "The Japan Airlines plane was in flames as it landed on a runway at Haneda airport.", + "guid": "https://www.bbc.co.uk/news/world-asia-67862154", + "isoDate": "2024-01-02T09:32:17.000Z" + }, + { + "title": "What next for Oscar Pistorius?", + "link": "https://www.bbc.co.uk/news/world-africa-67883551?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 13:14:29 GMT", + "content": "The South African runner was freed on parole 11 years after murdering his girlfriend.", + "contentSnippet": "The South African runner was freed on parole 11 years after murdering his girlfriend.", + "guid": "https://www.bbc.co.uk/news/world-africa-67883551", + "isoDate": "2024-01-05T13:14:29.000Z" + }, + { + "title": "Watch: Massive fire at New Jersey warehouse", + "link": "https://www.bbc.co.uk/news/world-us-canada-67890377?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 13:05:37 GMT", + "content": "Firefighters have been battling a massive blaze at a warehouse in the Newark area.", + "contentSnippet": "Firefighters have been battling a massive blaze at a warehouse in the Newark area.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67890377", + "isoDate": "2024-01-05T13:05:37.000Z" + }, + { + "title": "Tesla recalls more than 1.6 million cars in China over steering software issues", + "link": "https://www.bbc.co.uk/news/technology-67891080?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 12:46:42 GMT", + "content": "The issues with assisted driving functions and door-locking systems will be fixed by remote updates.", + "contentSnippet": "The issues with assisted driving functions and door-locking systems will be fixed by remote updates.", + "guid": "https://www.bbc.co.uk/news/technology-67891080", + "isoDate": "2024-01-05T12:46:42.000Z" + }, + { + "title": "Neptune and Uranus seen in true colours for first time", + "link": "https://www.bbc.co.uk/news/science-environment-67892275?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 12:46:13 GMT", + "content": "Analysis shows that our ideas of the colours of the planets Neptune and Uranus have been wrong.", + "contentSnippet": "Analysis shows that our ideas of the colours of the planets Neptune and Uranus have been wrong.", + "guid": "https://www.bbc.co.uk/news/science-environment-67892275", + "isoDate": "2024-01-05T12:46:13.000Z" + }, + { + "title": "Hamburg hospital fire kills four patients", + "link": "https://www.bbc.co.uk/news/world-europe-67893076?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 12:05:09 GMT", + "content": "The blaze reportedly broke out on Thursday evening on the third floor of the Helios Clinic in Uelzen.", + "contentSnippet": "The blaze reportedly broke out on Thursday evening on the third floor of the Helios Clinic in Uelzen.", + "guid": "https://www.bbc.co.uk/news/world-europe-67893076", + "isoDate": "2024-01-05T12:05:09.000Z" + }, + { + "title": "India sends navy after pirates attack ship off Somali coast", + "link": "https://www.bbc.co.uk/news/world-africa-67889662?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 11:53:48 GMT", + "content": "The 15 Indian crew members onboard are safe as the navy tracks and closes in on the vessel.", + "contentSnippet": "The 15 Indian crew members onboard are safe as the navy tracks and closes in on the vessel.", + "guid": "https://www.bbc.co.uk/news/world-africa-67889662", + "isoDate": "2024-01-05T11:53:48.000Z" + }, + { + "title": "North Korea fires artillery shells towards South's border island", + "link": "https://www.bbc.co.uk/news/world-asia-67889551?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 11:19:55 GMT", + "content": "South Korea had afterwards issued an evacuation warning to its civilians on the island.", + "contentSnippet": "South Korea had afterwards issued an evacuation warning to its civilians on the island.", + "guid": "https://www.bbc.co.uk/news/world-asia-67889551", + "isoDate": "2024-01-05T11:19:55.000Z" + }, + { + "title": "A Tribe Called Judah becomes highest-earning Nigerian film", + "link": "https://www.bbc.co.uk/news/world-africa-67889661?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 11:10:25 GMT", + "content": "The film has grossed over $1m in domestic theatres since it was released on 15 December last year.", + "contentSnippet": "The film has grossed over $1m in domestic theatres since it was released on 15 December last year.", + "guid": "https://www.bbc.co.uk/news/world-africa-67889661", + "isoDate": "2024-01-05T11:10:25.000Z" + }, + { + "title": "Japan earthquake: Video shows buildings swept away by landslide in Wajima", + "link": "https://www.bbc.co.uk/news/world-asia-67892125?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 11:00:49 GMT", + "content": "Residents are seen running as the landslide crashes down in footage from New Year's Day.", + "contentSnippet": "Residents are seen running as the landslide crashes down in footage from New Year's Day.", + "guid": "https://www.bbc.co.uk/news/world-asia-67892125", + "isoDate": "2024-01-05T11:00:49.000Z" + }, + { + "title": "Oscar Pistorius released on parole 11 years after killing Reeva Steenkamp", + "link": "https://www.bbc.co.uk/news/world-africa-67885713?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 10:33:37 GMT", + "content": "The former athlete shot Reeva Steenkamp multiple times through a closed bathroom door in 2013.", + "contentSnippet": "The former athlete shot Reeva Steenkamp multiple times through a closed bathroom door in 2013.", + "guid": "https://www.bbc.co.uk/news/world-africa-67885713", + "isoDate": "2024-01-05T10:33:37.000Z" + }, + { + "title": "Paramore: Rock band drop out of headline slot at LA festival", + "link": "https://www.bbc.co.uk/news/uk-england-london-67890909?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 10:33:07 GMT", + "content": "It comes after the band took down all posts and images from their social media accounts in December.", + "contentSnippet": "It comes after the band took down all posts and images from their social media accounts in December.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67890909", + "isoDate": "2024-01-05T10:33:07.000Z" + }, + { + "title": "Jeffrey Epstein: Recruitment of girls detailed in second document batch", + "link": "https://www.bbc.co.uk/news/world-us-canada-67879225?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 10:10:53 GMT", + "content": "A Florida detective says in testimony that 30 women performed massage at his Florida mansion.", + "contentSnippet": "A Florida detective says in testimony that 30 women performed massage at his Florida mansion.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67879225", + "isoDate": "2024-01-05T10:10:53.000Z" + }, + { + "title": "Japan earthquake: Nearly 250 missing as hope for survivors fades", + "link": "https://www.bbc.co.uk/news/world-asia-67889216?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 09:43:55 GMT", + "content": "The critical window to find more survivors from beneath the rubble has lapsed.", + "contentSnippet": "The critical window to find more survivors from beneath the rubble has lapsed.", + "guid": "https://www.bbc.co.uk/news/world-asia-67889216", + "isoDate": "2024-01-05T09:43:55.000Z" + }, + { + "title": "Israeli minister outlines plans for Gaza after war", + "link": "https://www.bbc.co.uk/news/world-middle-east-67888794?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 09:40:24 GMT", + "content": "The plans are unveiled by the defence minister as fighting rages on in the Palestinian territory.", + "contentSnippet": "The plans are unveiled by the defence minister as fighting rages on in the Palestinian territory.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67888794", + "isoDate": "2024-01-05T09:40:24.000Z" + }, + { + "title": "The three men vying to be Taiwan's next president", + "link": "https://www.bbc.co.uk/news/world-asia-67758997?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 08:18:26 GMT", + "content": "The race to succeed the outgoing Tsai Ing-wen comes at a low point in US-China relations.", + "contentSnippet": "The race to succeed the outgoing Tsai Ing-wen comes at a low point in US-China relations.", + "guid": "https://www.bbc.co.uk/news/world-asia-67758997", + "isoDate": "2024-01-05T08:18:26.000Z" + }, + { + "title": "Kishin Shinoyama: Photographer of iconic John Lennon-Yoko Ono photo dies", + "link": "https://www.bbc.co.uk/news/world-asia-67889309?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 04:35:44 GMT", + "content": "Kishin Shinoyama's photo of the couple kissing was the cover of their album, Double Fantasy.", + "contentSnippet": "Kishin Shinoyama's photo of the couple kissing was the cover of their album, Double Fantasy.", + "guid": "https://www.bbc.co.uk/news/world-asia-67889309", + "isoDate": "2024-01-05T04:35:44.000Z" + }, + { + "title": "Watch: Venomous snake found lurking in public toilet in Australia", + "link": "https://www.bbc.co.uk/news/world-australia-67879501?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 02:28:53 GMT", + "content": "Snake catcher Tennille Banks was called out to a cubicle in rural Queensland to remove the snake.", + "contentSnippet": "Snake catcher Tennille Banks was called out to a cubicle in rural Queensland to remove the snake.", + "guid": "https://www.bbc.co.uk/news/world-australia-67879501", + "isoDate": "2024-01-05T02:28:53.000Z" + }, + { + "title": "Africa's week in pictures: 29 December 2023-4 January 2024", + "link": "https://www.bbc.co.uk/news/world-africa-67881657?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 00:58:24 GMT", + "content": "A selection of the best photos from the African continent and beyond.", + "contentSnippet": "A selection of the best photos from the African continent and beyond.", + "guid": "https://www.bbc.co.uk/news/world-africa-67881657", + "isoDate": "2024-01-05T00:58:24.000Z" + }, + { + "title": "After Hollywood, Bollywood fights 'unfair' contracts", + "link": "https://www.bbc.co.uk/news/world-asia-india-67758156?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 23:35:13 GMT", + "content": "Screenwriters in one of the world's largest film industries say they want better working conditions.", + "contentSnippet": "Screenwriters in one of the world's largest film industries say they want better working conditions.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67758156", + "isoDate": "2024-01-04T23:35:13.000Z" + }, + { + "title": "Bangladesh election: Lopsided polls leave disillusioned voters asking 'what's the point'", + "link": "https://www.bbc.co.uk/news/world-asia-67879612?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 23:25:15 GMT", + "content": "Many Bangladeshis say the general election is a foregone conclusion and unlikely to improve their lives.", + "contentSnippet": "Many Bangladeshis say the general election is a foregone conclusion and unlikely to improve their lives.", + "guid": "https://www.bbc.co.uk/news/world-asia-67879612", + "isoDate": "2024-01-04T23:25:15.000Z" + }, + { + "title": "'Time capsule' wallet lost in 1950s reunited with owner's family", + "link": "https://www.bbc.co.uk/news/world-us-canada-67888715?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 22:52:44 GMT", + "content": "A wallet found at a cinema in Atlanta, Georgia, is being called a \"time capsule\" from the 1950s.", + "contentSnippet": "A wallet found at a cinema in Atlanta, Georgia, is being called a \"time capsule\" from the 1950s.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67888715", + "isoDate": "2024-01-04T22:52:44.000Z" + }, + { + "title": "McDonald's hit by Israel-Gaza 'misinformation'", + "link": "https://www.bbc.co.uk/news/business-67885910?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 20:43:39 GMT", + "content": "It is a striking acknowledgment of the impact from the conflict on the burger giant.", + "contentSnippet": "It is a striking acknowledgment of the impact from the conflict on the burger giant.", + "guid": "https://www.bbc.co.uk/news/business-67885910", + "isoDate": "2024-01-04T20:43:39.000Z" + }, + { + "title": "Dog enjoys priciest meal of his life - $4,000 cash", + "link": "https://www.bbc.co.uk/news/world-us-canada-67884583?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 19:36:01 GMT", + "content": "Typically a well behaved dog, this seven-year-old chowed down on an envelope of his owners' money.", + "contentSnippet": "Typically a well behaved dog, this seven-year-old chowed down on an envelope of his owners' money.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67884583", + "isoDate": "2024-01-04T19:36:01.000Z" + }, + { + "title": "IS claims responsibility for deadly Iran bombings that killed 84", + "link": "https://www.bbc.co.uk/news/world-middle-east-67888283?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 19:18:28 GMT", + "content": "The Islamic State group says it carried out Wednesday's attack in southern Iran that killed 84 people.", + "contentSnippet": "The Islamic State group says it carried out Wednesday's attack in southern Iran that killed 84 people.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67888283", + "isoDate": "2024-01-04T19:18:28.000Z" + }, + { + "title": "French booze-free January falls flat with Macron government", + "link": "https://www.bbc.co.uk/news/world-europe-67880240?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 15:56:34 GMT", + "content": "President Emmanuel Macron is accused of caving in to the wine lobby by failing to back the campaign.", + "contentSnippet": "President Emmanuel Macron is accused of caving in to the wine lobby by failing to back the campaign.", + "guid": "https://www.bbc.co.uk/news/world-europe-67880240", + "isoDate": "2024-01-04T15:56:34.000Z" + }, + { + "title": "Drivers stranded overnight on Sweden's E22 motorway in deep snow", + "link": "https://www.bbc.co.uk/news/world-europe-67880990?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 11:30:08 GMT", + "content": "The E22 motorway was at a standstill in places, as the country experiences its coldest spell in decades.", + "contentSnippet": "The E22 motorway was at a standstill in places, as the country experiences its coldest spell in decades.", + "guid": "https://www.bbc.co.uk/news/world-europe-67880990", + "isoDate": "2024-01-04T11:30:08.000Z" + }, + { + "title": "Georgian Orthodox Church calls for Stalin icon to be changed", + "link": "https://www.bbc.co.uk/news/world-europe-67948869?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 20:40:05 GMT", + "content": "The icon shows the Soviet dictator being blessed by a saint.", + "contentSnippet": "The icon shows the Soviet dictator being blessed by a saint.", + "guid": "https://www.bbc.co.uk/news/world-europe-67948869", + "isoDate": "2024-01-11T20:40:05.000Z" + }, + { + "title": "eBay pays $3m fine in blogger harassment case", + "link": "https://www.bbc.co.uk/news/world-us-canada-67951113?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 19:51:37 GMT", + "content": "Executives sent live spiders and cockroaches to a US couple who criticised the firm, court papers show.", + "contentSnippet": "Executives sent live spiders and cockroaches to a US couple who criticised the firm, court papers show.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67951113", + "isoDate": "2024-01-11T19:51:37.000Z" + }, + { + "title": "Israel officials support Gaza destruction, court hears", + "link": "https://www.bbc.co.uk/news/world-middle-east-67942983?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 19:21:25 GMT", + "content": "South African lawyers present their case on the first day of a hearing at the UN's top court.", + "contentSnippet": "South African lawyers present their case on the first day of a hearing at the UN's top court.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67942983", + "isoDate": "2024-01-11T19:21:25.000Z" + }, + { + "title": "Huge ancient city found in the Amazon", + "link": "https://www.bbc.co.uk/news/science-environment-67940671?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 19:08:48 GMT", + "content": "The city was built 2,500 years ago but may have been abandoned after a volcanic eruption.", + "contentSnippet": "The city was built 2,500 years ago but may have been abandoned after a volcanic eruption.", + "guid": "https://www.bbc.co.uk/news/science-environment-67940671", + "isoDate": "2024-01-11T19:08:48.000Z" + }, + { + "title": "Legendary coach Belichick to leave NFL's Patriots", + "link": "https://www.bbc.co.uk/sport/american-football/67948937?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 18:43:38 GMT", + "content": "Legendary head coach Bill Belichick confirms he will leave the New England Patriots, ending his 24-season tenure.", + "contentSnippet": "Legendary head coach Bill Belichick confirms he will leave the New England Patriots, ending his 24-season tenure.", + "guid": "https://www.bbc.co.uk/sport/american-football/67948937", + "isoDate": "2024-01-11T18:43:38.000Z" + }, + { + "title": "Iran seizes oil tanker St Nikolas near Oman", + "link": "https://www.bbc.co.uk/news/world-middle-east-67948119?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 18:08:52 GMT", + "content": "State media said the St Nikolas was taken in retaliation for the seizure of the vessel by the US last year.", + "contentSnippet": "State media said the St Nikolas was taken in retaliation for the seizure of the vessel by the US last year.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67948119", + "isoDate": "2024-01-11T18:08:52.000Z" + }, + { + "title": "'This is my home\u2019 \u2013 a 13-year-old vlogger's life in Gaza", + "link": "https://www.bbc.co.uk/news/world-middle-east-67952301?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 17:53:08 GMT", + "content": "Nadine Abdul Latif moved home three times since the war began, and an Israeli air strike killed her brother.", + "contentSnippet": "Nadine Abdul Latif moved home three times since the war began, and an Israeli air strike killed her brother.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67952301", + "isoDate": "2024-01-11T17:53:08.000Z" + }, + { + "title": "German far-right met to plan 'mass deportations'", + "link": "https://www.bbc.co.uk/news/world-europe-67948861?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 16:56:41 GMT", + "content": "Far-right politicians reportedly met at a villa near a lake outside Berlin to discuss their plans.", + "contentSnippet": "Far-right politicians reportedly met at a villa near a lake outside Berlin to discuss their plans.", + "guid": "https://www.bbc.co.uk/news/world-europe-67948861", + "isoDate": "2024-01-11T16:56:41.000Z" + }, + { + "title": "Somalia conflict: Seized UN helicopter hit by object - source", + "link": "https://www.bbc.co.uk/news/world-africa-67947763?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 16:55:48 GMT", + "content": "Armed Islamists have taken captive the aircraft's passengers and crew after it crash-landed.", + "contentSnippet": "Armed Islamists have taken captive the aircraft's passengers and crew after it crash-landed.", + "guid": "https://www.bbc.co.uk/news/world-africa-67947763", + "isoDate": "2024-01-11T16:55:48.000Z" + }, + { + "title": "Taiwan election: China warns voters then condemns US 'brazen chattering'", + "link": "https://www.bbc.co.uk/news/world-asia-67949003?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 16:11:30 GMT", + "content": "China says the ruling party candidate is a risk to relations, then condemns US \"brazen chattering\".", + "contentSnippet": "China says the ruling party candidate is a risk to relations, then condemns US \"brazen chattering\".", + "guid": "https://www.bbc.co.uk/news/world-asia-67949003", + "isoDate": "2024-01-11T16:11:30.000Z" + }, + { + "title": "Eight 'suspicious' US deaths in Colombia linked to dating apps", + "link": "https://www.bbc.co.uk/news/world-latin-america-67947333?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 14:52:08 GMT", + "content": "The US embassy warns criminals are using the dating apps to rob and sometimes kill foreign tourists.", + "contentSnippet": "The US embassy warns criminals are using the dating apps to rob and sometimes kill foreign tourists.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67947333", + "isoDate": "2024-01-11T14:52:08.000Z" + }, + { + "title": "Former England boss Sven-Goran Eriksson diagnosed with terminal cancer", + "link": "https://www.bbc.co.uk/sport/football/67942943?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 13:36:27 GMT", + "content": "Former England boss Sven-Goran Eriksson says he has \"best case a year\" to live after being diagnosed with cancer.", + "contentSnippet": "Former England boss Sven-Goran Eriksson says he has \"best case a year\" to live after being diagnosed with cancer.", + "guid": "https://www.bbc.co.uk/sport/football/67942943", + "isoDate": "2024-01-11T13:36:27.000Z" + }, + { + "title": "Afcon 2023: Gambia coach feared team would die on aborted flight to Ivory Coast", + "link": "https://www.bbc.co.uk/sport/africa/67944871?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 13:00:37 GMT", + "content": "The Gambia squad travelling to the Africa Cup of Nations \"could have died\" on an aborted flight, claims coach Tom Saintfiet.", + "contentSnippet": "The Gambia squad travelling to the Africa Cup of Nations \"could have died\" on an aborted flight, claims coach Tom Saintfiet.", + "guid": "https://www.bbc.co.uk/sport/africa/67944871", + "isoDate": "2024-01-11T13:00:37.000Z" + }, + { + "title": "Google's billions make job cuts 'needless' - union", + "link": "https://www.bbc.co.uk/news/technology-67937725?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 11:56:23 GMT", + "content": "The Alphabet Workers Union criticises the tech giant for axing hundreds of jobs despite vast earnings.", + "contentSnippet": "The Alphabet Workers Union criticises the tech giant for axing hundreds of jobs despite vast earnings.", + "guid": "https://www.bbc.co.uk/news/technology-67937725", + "isoDate": "2024-01-11T11:56:23.000Z" + }, + { + "title": "'They hunted us' says Ecuador TV station attack victim", + "link": "https://www.bbc.co.uk/news/world-latin-america-67945611?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 11:48:23 GMT", + "content": "Dozens of journalists were held at gunpoint when armed men broke into their workplace.", + "contentSnippet": "Dozens of journalists were held at gunpoint when armed men broke into their workplace.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67945611", + "isoDate": "2024-01-11T11:48:23.000Z" + }, + { + "title": "What is South Africa\u2019s genocide case against Israel at the ICJ?", + "link": "https://www.bbc.co.uk/news/world-middle-east-67922346?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 10:12:33 GMT", + "content": "The International Court of Justice (ICJ) will consider whether Israel is committing genocide in Gaza.", + "contentSnippet": "The International Court of Justice (ICJ) will consider whether Israel is committing genocide in Gaza.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67922346", + "isoDate": "2024-01-11T10:12:33.000Z" + }, + { + "title": "Zambia cholera: President Hakainde Hichilema urges people to move to villages", + "link": "https://www.bbc.co.uk/news/world-africa-67931876?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 09:59:50 GMT", + "content": "President Hakainde Hichilema says some slums in urban areas are a breeding ground for the disease.", + "contentSnippet": "President Hakainde Hichilema says some slums in urban areas are a breeding ground for the disease.", + "guid": "https://www.bbc.co.uk/news/world-africa-67931876", + "isoDate": "2024-01-11T09:59:50.000Z" + }, + { + "title": "Papua New Guinea: Streets overrun by looters in Port Moresby", + "link": "https://www.bbc.co.uk/news/world-asia-67942405?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 08:16:42 GMT", + "content": "At least eight people are killed in Port Moresby after police go on strike over a pay dispute.", + "contentSnippet": "At least eight people are killed in Port Moresby after police go on strike over a pay dispute.", + "guid": "https://www.bbc.co.uk/news/world-asia-67942405", + "isoDate": "2024-01-11T08:16:42.000Z" + }, + { + "title": "Haley and DeSantis trade insults at heated Iowa debate", + "link": "https://www.bbc.co.uk/news/world-us-canada-67942133?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 08:11:51 GMT", + "content": "The two Republicans clashed just days before the Iowa caucuses, the first votes being cast in the 2024 election.", + "contentSnippet": "The two Republicans clashed just days before the Iowa caucuses, the first votes being cast in the 2024 election.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67942133", + "isoDate": "2024-01-11T08:11:51.000Z" + }, + { + "title": "Animators say \u2018AI isn't going to get you an Oscar\u2019", + "link": "https://www.bbc.co.uk/news/business-67922588?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 00:15:56 GMT", + "content": "Comic book writers and animators fear the growing impact of artificial intelligence.", + "contentSnippet": "Comic book writers and animators fear the growing impact of artificial intelligence.", + "guid": "https://www.bbc.co.uk/news/business-67922588", + "isoDate": "2024-01-11T00:15:56.000Z" + }, + { + "title": "Mozambique storms: How to cyclone-proof your life", + "link": "https://www.bbc.co.uk/news/world-africa-67937595?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 00:04:52 GMT", + "content": "Mozambicans learn to build stronger houses as climate change brings bigger and deadlier storms.", + "contentSnippet": "Mozambicans learn to build stronger houses as climate change brings bigger and deadlier storms.", + "guid": "https://www.bbc.co.uk/news/world-africa-67937595", + "isoDate": "2024-01-11T00:04:52.000Z" + }, + { + "title": "China and Taiwan: Love and longing across the strait", + "link": "https://www.bbc.co.uk/news/world-asia-china-67931901?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 00:00:52 GMT", + "content": "Beijing has made its position clear on Taiwan, but what do the country's citizens want?", + "contentSnippet": "Beijing has made its position clear on Taiwan, but what do the country's citizens want?", + "guid": "https://www.bbc.co.uk/news/world-asia-china-67931901", + "isoDate": "2024-01-11T00:00:52.000Z" + }, + { + "title": "Hard choices for the West in Red Sea stand-off", + "link": "https://www.bbc.co.uk/news/world-middle-east-67938290?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 10 Jan 2024 23:12:51 GMT", + "content": "Most of the world deplores the Houthi attacks on shipping, but there are barriers which make it difficult for the West to stop them.", + "contentSnippet": "Most of the world deplores the Houthi attacks on shipping, but there are barriers which make it difficult for the West to stop them.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67938290", + "isoDate": "2024-01-10T23:12:51.000Z" + }, + { + "title": "Eurovision: Finnish artists want Israel barred from contest over Gaza war", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67941086?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 10 Jan 2024 21:38:17 GMT", + "content": "More than 1,400 music professionals demand action from public broadcaster Yle.", + "contentSnippet": "More than 1,400 music professionals demand action from public broadcaster Yle.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67941086", + "isoDate": "2024-01-10T21:38:17.000Z" + }, + { + "title": "Alexei Navalny jokes in first appearance from new prison", + "link": "https://www.bbc.co.uk/news/world-europe-67941119?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 10 Jan 2024 18:44:14 GMT", + "content": "The Russian opposition leader made his first public appearance in a video call since being moved to an Arctic prison.", + "contentSnippet": "The Russian opposition leader made his first public appearance in a video call since being moved to an Arctic prison.", + "guid": "https://www.bbc.co.uk/news/world-europe-67941119", + "isoDate": "2024-01-10T18:44:14.000Z" + }, + { + "title": "Scientists crack mystery of how MS gene spread", + "link": "https://www.bbc.co.uk/news/health-67917294?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 10 Jan 2024 16:09:53 GMT", + "content": "The DNA of ancient cattle herders has revealed how diseases evolved in Europe over thousands of years.", + "contentSnippet": "The DNA of ancient cattle herders has revealed how diseases evolved in Europe over thousands of years.", + "guid": "https://www.bbc.co.uk/news/health-67917294", + "isoDate": "2024-01-10T16:09:53.000Z" + }, + { + "title": "How Ecuador descended into gang violence", + "link": "https://www.bbc.co.uk/news/world-latin-america-67912242?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 10 Jan 2024 13:20:36 GMT", + "content": "A closer look at what is behind the wave of violence which has engulfed once-peaceful Ecuador.", + "contentSnippet": "A closer look at what is behind the wave of violence which has engulfed once-peaceful Ecuador.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67912242", + "isoDate": "2024-01-10T13:20:36.000Z" + }, + { + "title": "All India Pregnant Job service: Indian men conned by 'impregnating women' scam", + "link": "https://www.bbc.co.uk/news/world-asia-india-67860456?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 10 Jan 2024 00:00:22 GMT", + "content": "Scammers in Bihar state promised to pay huge sums of money to men to get childless women pregnant.", + "contentSnippet": "Scammers in Bihar state promised to pay huge sums of money to men to get childless women pregnant.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67860456", + "isoDate": "2024-01-10T00:00:22.000Z" + }, + { + "title": "TB Joshua\u2019s daughter: Tortured after standing up to \u2018Daddy\u2019", + "link": "https://www.bbc.co.uk/news/world-africa-67923906?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 10 Jan 2024 00:00:11 GMT", + "content": "The first person to blow the whistle on the abuse at the megapastor's church was his young daughter.", + "contentSnippet": "The first person to blow the whistle on the abuse at the megapastor's church was his young daughter.", + "guid": "https://www.bbc.co.uk/news/world-africa-67923906", + "isoDate": "2024-01-10T00:00:11.000Z" + }, + { + "title": "Ecuador: Watch gunmen threaten presenter on live TV", + "link": "https://www.bbc.co.uk/news/67927623?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 09 Jan 2024 21:35:45 GMT", + "content": "Armed men are seen pointing guns at staff inside a live TV studio in the city of Guayaquil.", + "contentSnippet": "Armed men are seen pointing guns at staff inside a live TV studio in the city of Guayaquil.", + "guid": "https://www.bbc.co.uk/news/67927623", + "isoDate": "2024-01-09T21:35:45.000Z" + }, + { + "title": "Israel-Gaza war: Blinken says cost of conflict on children far too high", + "link": "https://www.bbc.co.uk/news/world-us-canada-67929616?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 09 Jan 2024 20:46:28 GMT", + "content": "The US Secretary of State says the creation of a Palestinian state is vital for long-term peace in the region.", + "contentSnippet": "The US Secretary of State says the creation of a Palestinian state is vital for long-term peace in the region.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67929616", + "isoDate": "2024-01-09T20:46:28.000Z" + }, + { + "title": "South Korea: Dog meat still on the menu in Seoul... for now", + "link": "https://www.bbc.co.uk/news/world-asia-67921569?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 09 Jan 2024 15:36:54 GMT", + "content": "The BBC reports from one of the few places in the city where you can eat dog meat ahead of a ban.", + "contentSnippet": "The BBC reports from one of the few places in the city where you can eat dog meat ahead of a ban.", + "guid": "https://www.bbc.co.uk/news/world-asia-67921569", + "isoDate": "2024-01-09T15:36:54.000Z" + }, + { + "title": "Saudi Arabia interested in Israel normalisation deal after war", + "link": "https://www.bbc.co.uk/news/world-middle-east-67922238?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 09 Jan 2024 14:11:11 GMT", + "content": "The Saudi ambassador to the UK says any agreement must lead to the creation of a Palestinian state.", + "contentSnippet": "The Saudi ambassador to the UK says any agreement must lead to the creation of a Palestinian state.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67922238", + "isoDate": "2024-01-09T14:11:11.000Z" + }, + { + "title": "'I cannot sleep in peace' - Israelis fearful as Hezbollah tensions soar", + "link": "https://www.bbc.co.uk/news/world-middle-east-67921167?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 09 Jan 2024 10:39:35 GMT", + "content": "As fighting spirals, Israelis living near Lebanon worry about a full-scale attack by Hezbollah.", + "contentSnippet": "As fighting spirals, Israelis living near Lebanon worry about a full-scale attack by Hezbollah.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67921167", + "isoDate": "2024-01-09T10:39:35.000Z" + }, + { + "title": "Antony Blinken: On the US mission to stop Gaza igniting wider war", + "link": "https://www.bbc.co.uk/news/world-middle-east-67911825?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Mon, 08 Jan 2024 21:17:37 GMT", + "content": "The US secretary of state wants to prevent the war escalating but the cauldron of tensions could boil over.", + "contentSnippet": "The US secretary of state wants to prevent the war escalating but the cauldron of tensions could boil over.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67911825", + "isoDate": "2024-01-08T21:17:37.000Z" + }, + { + "title": "Israel-Palestinian bitterness deepened by Hamas attack and war", + "link": "https://www.bbc.co.uk/news/world-middle-east-67893122?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Sun, 07 Jan 2024 09:30:05 GMT", + "content": "Both Israelis and Palestinians believe the world does not understand their pain and suffering.", + "contentSnippet": "Both Israelis and Palestinians believe the world does not understand their pain and suffering.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67893122", + "isoDate": "2024-01-07T09:30:05.000Z" + }, + { + "title": "Israel-Gaza war: The huge challenges facing Israel's 'day after' plan", + "link": "https://www.bbc.co.uk/news/world-middle-east-67891893?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Sat, 06 Jan 2024 12:37:17 GMT", + "content": "Paul Adams examines the Gaza proposal - which is little more than a series of bullet points.", + "contentSnippet": "Paul Adams examines the Gaza proposal - which is little more than a series of bullet points.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67891893", + "isoDate": "2024-01-06T12:37:17.000Z" + }, + { + "title": "Israeli ex-hostage returns to site of Nova festival massacre and kidnappings", + "link": "https://www.bbc.co.uk/news/world-middle-east-67893123?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 17:24:30 GMT", + "content": "Survivors and relatives of those killed or kidnapped pay emotional visits to the festival site for a memorial event.", + "contentSnippet": "Survivors and relatives of those killed or kidnapped pay emotional visits to the festival site for a memorial event.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67893123", + "isoDate": "2024-01-05T17:24:30.000Z" + }, + { + "title": "Australian Open 2024 results: Emma Raducanu loses to Wang Yafan", + "link": "https://www.bbc.co.uk/sport/tennis/68016106?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 11:29:32 GMT", + "content": "Emma Raducanu sees her first Grand Slam appearance since wrist and ankle surgeries ended by Wang Yafan in the Australian Open second round.", + "contentSnippet": "Emma Raducanu sees her first Grand Slam appearance since wrist and ankle surgeries ended by Wang Yafan in the Australian Open second round.", + "guid": "https://www.bbc.co.uk/sport/tennis/68016106", + "isoDate": "2024-01-18T11:29:32.000Z" + }, + { + "title": "Pakistan launches retaliatory strikes into Iran, killing nine people", + "link": "https://www.bbc.co.uk/news/world-asia-68014882?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 11:23:42 GMT", + "content": "Nine people are reported to have been killed in the strikes, which come after Iran hit targets in Pakistan.", + "contentSnippet": "Nine people are reported to have been killed in the strikes, which come after Iran hit targets in Pakistan.", + "guid": "https://www.bbc.co.uk/news/world-asia-68014882", + "isoDate": "2024-01-18T11:23:42.000Z" + }, + { + "title": "North Korea: Rare footage shows teens sentenced to hard labour over K-drama", + "link": "https://www.bbc.co.uk/news/world-asia-68015652?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 11:06:52 GMT", + "content": "Footage obtained by BBC Korean shows two 16-year-old boys handcuffed and sentenced to hard labour.", + "contentSnippet": "Footage obtained by BBC Korean shows two 16-year-old boys handcuffed and sentenced to hard labour.", + "guid": "https://www.bbc.co.uk/news/world-asia-68015652", + "isoDate": "2024-01-18T11:06:52.000Z" + }, + { + "title": "Arnold Schwarzenegger detained over EU tax for luxury watch", + "link": "https://www.bbc.co.uk/news/world-europe-68015612?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 10:06:50 GMT", + "content": "The probe for alleged tax evasion came as the actor arrived in Munich on his way to an auction.", + "contentSnippet": "The probe for alleged tax evasion came as the actor arrived in Munich on his way to an auction.", + "guid": "https://www.bbc.co.uk/news/world-europe-68015612", + "isoDate": "2024-01-18T10:06:50.000Z" + }, + { + "title": "Watch: Armed man in clown mask robs store", + "link": "https://www.bbc.co.uk/news/world-australia-68015158?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 05:53:27 GMT", + "content": "CCTV footage shows a man waving what appears to be a gun and threatening an employee in Australia.", + "contentSnippet": "CCTV footage shows a man waving what appears to be a gun and threatening an employee in Australia.", + "guid": "https://www.bbc.co.uk/news/world-australia-68015158", + "isoDate": "2024-01-18T05:53:27.000Z" + }, + { + "title": "Lakshadweep: Can India's 'alternative Maldives' handle mass tourism?", + "link": "https://www.bbc.co.uk/news/world-asia-india-67911165?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 04:08:29 GMT", + "content": "Indian PM Modi's recent visit to Lakshadweep could spark a tourist surge - but is the island chain ready?", + "contentSnippet": "Indian PM Modi's recent visit to Lakshadweep could spark a tourist surge - but is the island chain ready?", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67911165", + "isoDate": "2024-01-18T04:08:29.000Z" + }, + { + "title": "El Salvador woman freed after abortion conviction", + "link": "https://www.bbc.co.uk/news/world-latin-america-68014699?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 03:07:49 GMT", + "content": "Lilian's baby died in hospital, but she was charged with murder and sentenced to 30 years in prison.", + "contentSnippet": "Lilian's baby died in hospital, but she was charged with murder and sentenced to 30 years in prison.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-68014699", + "isoDate": "2024-01-18T03:07:49.000Z" + }, + { + "title": "Anger and sadness over Pitchfork merger with GQ", + "link": "https://www.bbc.co.uk/news/world-us-canada-68014108?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 02:57:21 GMT", + "content": "Senior staff have lost their jobs as the music website merges with the men's magazine.", + "contentSnippet": "Senior staff have lost their jobs as the music website merges with the men's magazine.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-68014108", + "isoDate": "2024-01-18T02:57:21.000Z" + }, + { + "title": "US launches fourth round of strikes on Houthi targets in Yemen", + "link": "https://www.bbc.co.uk/news/world-us-canada-68014127?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 02:50:43 GMT", + "content": "Officials say 14 Houthi missile sites were targeted in the latest round of pre-emptive strikes.", + "contentSnippet": "Officials say 14 Houthi missile sites were targeted in the latest round of pre-emptive strikes.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-68014127", + "isoDate": "2024-01-18T02:50:43.000Z" + }, + { + "title": "E Jean Carroll trial: Judge threatens to remove Trump from court", + "link": "https://www.bbc.co.uk/news/world-us-canada-68009461?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 02:11:01 GMT", + "content": "The threat came after the ex-president was overheard criticising his accuser's testimony in court.", + "contentSnippet": "The threat came after the ex-president was overheard criticising his accuser's testimony in court.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-68009461", + "isoDate": "2024-01-18T02:11:01.000Z" + }, + { + "title": "Torrid lives at the bottom of people-smugglers' pyramid", + "link": "https://www.bbc.co.uk/news/world-europe-67991658?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 00:34:07 GMT", + "content": "The Balkan migrant route is growing in prominence and local smugglers take high risks for little money.", + "contentSnippet": "The Balkan migrant route is growing in prominence and local smugglers take high risks for little money.", + "guid": "https://www.bbc.co.uk/news/world-europe-67991658", + "isoDate": "2024-01-18T00:34:07.000Z" + }, + { + "title": "Peregrine lander: US Moon mission on course for fiery destruction", + "link": "https://www.bbc.co.uk/news/science-environment-67962397?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 00:01:27 GMT", + "content": "The hobbled Peregrine Moon lander will be forced to burn up in Earth's atmosphere.", + "contentSnippet": "The hobbled Peregrine Moon lander will be forced to burn up in Earth's atmosphere.", + "guid": "https://www.bbc.co.uk/news/science-environment-67962397", + "isoDate": "2024-01-18T00:01:27.000Z" + }, + { + "title": "Courtney Dauwalter: Step inside the 'pain cave', where rules are remade", + "link": "https://www.bbc.co.uk/sport/athletics/67945344?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 00:01:08 GMT", + "content": "Courtney Dauwalter used to teach biology. Now her ultrarunning achievements are challenging centuries-old ideas about the differences in physical capabilities between men and women.", + "contentSnippet": "Courtney Dauwalter used to teach biology. Now her ultrarunning achievements are challenging centuries-old ideas about the differences in physical capabilities between men and women.", + "guid": "https://www.bbc.co.uk/sport/athletics/67945344", + "isoDate": "2024-01-18T00:01:08.000Z" + }, + { + "title": "Why these Taiwanese Americans flew home to vote", + "link": "https://www.bbc.co.uk/news/world-asia-68004459?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 23:09:15 GMT", + "content": "They returned to vote in an election that China framed as a choice between war and peace.", + "contentSnippet": "They returned to vote in an election that China framed as a choice between war and peace.", + "guid": "https://www.bbc.co.uk/news/world-asia-68004459", + "isoDate": "2024-01-17T23:09:15.000Z" + }, + { + "title": "US woman gets 26 years for mother's 'suitcase murder'", + "link": "https://www.bbc.co.uk/news/world-us-canada-68014289?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 22:51:58 GMT", + "content": "Heather Mack helped to kill her mother and stuff her body in a suitcase in Bali a decade ago.", + "contentSnippet": "Heather Mack helped to kill her mother and stuff her body in a suitcase in Bali a decade ago.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-68014289", + "isoDate": "2024-01-17T22:51:58.000Z" + }, + { + "title": "Ecuador prosecutor probing TV studio attack killed", + "link": "https://www.bbc.co.uk/news/world-latin-america-68014040?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 22:38:39 GMT", + "content": "C\u00e9sar Su\u00e1rez was shot dead in the port city of Guayaquil on Wednesday, the attorney general said.", + "contentSnippet": "C\u00e9sar Su\u00e1rez was shot dead in the port city of Guayaquil on Wednesday, the attorney general said.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-68014040", + "isoDate": "2024-01-17T22:38:39.000Z" + }, + { + "title": "Watch: Why do weird things happen when it gets so cold?", + "link": "https://www.bbc.co.uk/news/world-us-canada-68012886?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 21:32:48 GMT", + "content": "The science behind viral spectacles as North America is hit with severely cold temperatures.", + "contentSnippet": "The science behind viral spectacles as North America is hit with severely cold temperatures.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-68012886", + "isoDate": "2024-01-17T21:32:48.000Z" + }, + { + "title": "Spain shaman arrests: Police say group sold psychoactive drugs to members", + "link": "https://www.bbc.co.uk/news/world-europe-68007643?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 21:19:59 GMT", + "content": "Members of the group are accused of promoting rituals involving psychoactive substances like toad venom.", + "contentSnippet": "Members of the group are accused of promoting rituals involving psychoactive substances like toad venom.", + "guid": "https://www.bbc.co.uk/news/world-europe-68007643", + "isoDate": "2024-01-17T21:19:59.000Z" + }, + { + "title": "Blinken grounded in Davos as plane has 'critical failure'", + "link": "https://www.bbc.co.uk/news/world-us-canada-67947341?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 19:31:59 GMT", + "content": "The US secretary of state was due to return from the World Economic Forum in Davos when the issue occurred.", + "contentSnippet": "The US secretary of state was due to return from the World Economic Forum in Davos when the issue occurred.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67947341", + "isoDate": "2024-01-17T19:31:59.000Z" + }, + { + "title": "Italian influencers to be bound by tighter rules", + "link": "https://www.bbc.co.uk/news/world-europe-68004438?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 18:40:49 GMT", + "content": "Social media creators will face hefty fines if they fail to abide by strict rules on commercial interests.", + "contentSnippet": "Social media creators will face hefty fines if they fail to abide by strict rules on commercial interests.", + "guid": "https://www.bbc.co.uk/news/world-europe-68004438", + "isoDate": "2024-01-17T18:40:49.000Z" + }, + { + "title": "What is behind the TikTok thirst for Stanley water cups?", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67999424?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 18:32:06 GMT", + "content": "People are camping outside supermarkets in the US to try to buy the latest internet on-trend item.", + "contentSnippet": "People are camping outside supermarkets in the US to try to buy the latest internet on-trend item.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67999424", + "isoDate": "2024-01-17T18:32:06.000Z" + }, + { + "title": "Russia protest: Crowds clash with riot police as activist jailed", + "link": "https://www.bbc.co.uk/news/world-europe-68006123?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 18:24:20 GMT", + "content": "Riot police clash with protesters in small town in the Urals after Fail Alsynov was jailed.", + "contentSnippet": "Riot police clash with protesters in small town in the Urals after Fail Alsynov was jailed.", + "guid": "https://www.bbc.co.uk/news/world-europe-68006123", + "isoDate": "2024-01-17T18:24:20.000Z" + }, + { + "title": "Frederik X: Danish king's surprise book set to become bestseller", + "link": "https://www.bbc.co.uk/news/world-europe-68004437?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 18:20:55 GMT", + "content": "In his book Frederik X discusses Denmark's place in world and his relationship with his wife.", + "contentSnippet": "In his book Frederik X discusses Denmark's place in world and his relationship with his wife.", + "guid": "https://www.bbc.co.uk/news/world-europe-68004437", + "isoDate": "2024-01-17T18:20:55.000Z" + }, + { + "title": "Ernest Bai Koroma: Former president can leave Sierra Leone amid Nigeria exile rumours", + "link": "https://www.bbc.co.uk/news/world-africa-68011514?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 18:08:21 GMT", + "content": "Ernest Bai Koroma has been charged with treason after being linked to a failed coup last November.", + "contentSnippet": "Ernest Bai Koroma has been charged with treason after being linked to a failed coup last November.", + "guid": "https://www.bbc.co.uk/news/world-africa-68011514", + "isoDate": "2024-01-17T18:08:21.000Z" + }, + { + "title": "West Bank strike: Israel accused of targeting civilians in deadly attack", + "link": "https://www.bbc.co.uk/news/world-middle-east-68006126?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 17:43:50 GMT", + "content": "The IDF says the strike hit a \u201cterrorist squad\u201d, but witnesses tell the BBC the group posed no threat.", + "contentSnippet": "The IDF says the strike hit a \u201cterrorist squad\u201d, but witnesses tell the BBC the group posed no threat.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-68006126", + "isoDate": "2024-01-17T17:43:50.000Z" + }, + { + "title": "Pierce Brosnan pleads not guilty to hiking off trail in Yellowstone thermal area", + "link": "https://www.bbc.co.uk/news/world-us-canada-67947339?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 16:25:18 GMT", + "content": "The James Bond star pleaded not guilty to entering the park's restricted area of acidic hot springs.", + "contentSnippet": "The James Bond star pleaded not guilty to entering the park's restricted area of acidic hot springs.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67947339", + "isoDate": "2024-01-17T16:25:18.000Z" + }, + { + "title": "Paul Mackenzie: Kenya starvation cult leader to undergo mental health checks", + "link": "https://www.bbc.co.uk/news/world-africa-68005997?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 16:14:51 GMT", + "content": "Psychiatrists will assess whether the man accused of 400 deaths is fit to stand trial.", + "contentSnippet": "Psychiatrists will assess whether the man accused of 400 deaths is fit to stand trial.", + "guid": "https://www.bbc.co.uk/news/world-africa-68005997", + "isoDate": "2024-01-17T16:14:51.000Z" + }, + { + "title": "Intense Israeli strikes in south Gaza city as hostages sent medicine", + "link": "https://www.bbc.co.uk/news/world-middle-east-68004449?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 16:11:07 GMT", + "content": "Khan Younis residents report intense fighting, as Qatar says Hamas will give medicines to hostages.", + "contentSnippet": "Khan Younis residents report intense fighting, as Qatar says Hamas will give medicines to hostages.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-68004449", + "isoDate": "2024-01-17T16:11:07.000Z" + }, + { + "title": "Ibadan explosion in Nigeria: 'The roof fell on my mother in bed'", + "link": "https://www.bbc.co.uk/news/world-africa-68002936?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 15:40:05 GMT", + "content": "Two people are killed and 77 injured when explosives illegally stored in a residential area ignite, officials say.", + "contentSnippet": "Two people are killed and 77 injured when explosives illegally stored in a residential area ignite, officials say.", + "guid": "https://www.bbc.co.uk/news/world-africa-68002936", + "isoDate": "2024-01-17T15:40:05.000Z" + }, + { + "title": "Rita Waeni: Mozambican held over murder that shocked Kenya", + "link": "https://www.bbc.co.uk/news/world-africa-68002939?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 15:22:05 GMT", + "content": "The shocking killing of student Rita Waeni, 20, has ignited an anti-femicide campaign in Kenya.", + "contentSnippet": "The shocking killing of student Rita Waeni, 20, has ignited an anti-femicide campaign in Kenya.", + "guid": "https://www.bbc.co.uk/news/world-africa-68002939", + "isoDate": "2024-01-17T15:22:05.000Z" + }, + { + "title": "Somalia turns back Ethiopian plane headed for Somaliland", + "link": "https://www.bbc.co.uk/news/world-africa-68006001?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 14:34:39 GMT", + "content": "The plane was carrying Ethiopian officials to the self-declared republic of Somaliland.", + "contentSnippet": "The plane was carrying Ethiopian officials to the self-declared republic of Somaliland.", + "guid": "https://www.bbc.co.uk/news/world-africa-68006001", + "isoDate": "2024-01-17T14:34:39.000Z" + }, + { + "title": "Antwerp drugs: Record seizures at Europe's 'cocaine capital' port", + "link": "https://www.bbc.co.uk/news/world-europe-68004291?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 14:32:19 GMT", + "content": "Antwerp has become Europe's main gateway for the drug shipped from South America.", + "contentSnippet": "Antwerp has become Europe's main gateway for the drug shipped from South America.", + "guid": "https://www.bbc.co.uk/news/world-europe-68004291", + "isoDate": "2024-01-17T14:32:19.000Z" + }, + { + "title": "Iran demonstrates missile capabilities with regional strikes", + "link": "https://www.bbc.co.uk/news/world-middle-east-68004451?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 14:28:33 GMT", + "content": "Jiyar Gol analyses the message Iran is seeking to send with its strikes in Iraq, Syria and Pakistan.", + "contentSnippet": "Jiyar Gol analyses the message Iran is seeking to send with its strikes in Iraq, Syria and Pakistan.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-68004451", + "isoDate": "2024-01-17T14:28:33.000Z" + }, + { + "title": "Russia protest: Crowds throw snowballs at police as activist jailed", + "link": "https://www.bbc.co.uk/news/world-europe-68007949?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 13:23:59 GMT", + "content": "Protesters clash with riot police in Bashkortostan after a local activist was sentenced to years in a penal colony.", + "contentSnippet": "Protesters clash with riot police in Bashkortostan after a local activist was sentenced to years in a penal colony.", + "guid": "https://www.bbc.co.uk/news/world-europe-68007949", + "isoDate": "2024-01-17T13:23:59.000Z" + }, + { + "title": "Doppelganger murder: German woman goes on trial accused of killing lookalike", + "link": "https://www.bbc.co.uk/news/world-europe-67991425?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 11:24:40 GMT", + "content": "Sharaban K is accused of selecting her victim because of her similar looks to fake her own death.", + "contentSnippet": "Sharaban K is accused of selecting her victim because of her similar looks to fake her own death.", + "guid": "https://www.bbc.co.uk/news/world-europe-67991425", + "isoDate": "2024-01-17T11:24:40.000Z" + }, + { + "title": "France's Macron shifts to right on schools and birth rate", + "link": "https://www.bbc.co.uk/news/world-europe-68004289?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 10:57:17 GMT", + "content": "The French president promotes school uniforms, a drug gang crackdown and raising the low birth rate.", + "contentSnippet": "The French president promotes school uniforms, a drug gang crackdown and raising the low birth rate.", + "guid": "https://www.bbc.co.uk/news/world-europe-68004289", + "isoDate": "2024-01-17T10:57:17.000Z" + }, + { + "title": "Flight returns to Japan after \u2018drunk\u2019 man bites crew member", + "link": "https://www.bbc.co.uk/news/world-asia-68004881?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 10:19:21 GMT", + "content": "The man, reportedly a 55-year-old American, said he did not remember what happened.", + "contentSnippet": "The man, reportedly a 55-year-old American, said he did not remember what happened.", + "guid": "https://www.bbc.co.uk/news/world-asia-68004881", + "isoDate": "2024-01-17T10:19:21.000Z" + }, + { + "title": "China population falls as birth rate hits record low", + "link": "https://www.bbc.co.uk/news/world-asia-china-68002803?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 09:46:45 GMT", + "content": "The decline underscores concerns about the future growth of the world's second-largest economy.", + "contentSnippet": "The decline underscores concerns about the future growth of the world's second-largest economy.", + "guid": "https://www.bbc.co.uk/news/world-asia-china-68002803", + "isoDate": "2024-01-17T09:46:45.000Z" + }, + { + "title": "Poland's journalists caught up in battle for airwaves", + "link": "https://www.bbc.co.uk/news/world-europe-67993372?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 08:23:23 GMT", + "content": "Public TV and radio are entangled in a political battle as Poland shifts away from the right.", + "contentSnippet": "Public TV and radio are entangled in a political battle as Poland shifts away from the right.", + "guid": "https://www.bbc.co.uk/news/world-europe-67993372", + "isoDate": "2024-01-17T08:23:23.000Z" + }, + { + "title": "Australia floods: Deadly fire ants form rafts to spread", + "link": "https://www.bbc.co.uk/news/world-australia-68002401?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 02:00:00 GMT", + "content": "Australian experts fear one of the world's most invasive species is gaining footholds in new areas.", + "contentSnippet": "Australian experts fear one of the world's most invasive species is gaining footholds in new areas.", + "guid": "https://www.bbc.co.uk/news/world-australia-68002401", + "isoDate": "2024-01-17T02:00:00.000Z" + }, + { + "title": "Watch: Invasive fire ants raft in Australian flood waters", + "link": "https://www.bbc.co.uk/news/world-australia-68002735?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 01:59:54 GMT", + "content": "Fire ants are forming rafts to travel across storm ravaged Queensland, aiding the spread of one of the world's most invasive species.", + "contentSnippet": "Fire ants are forming rafts to travel across storm ravaged Queensland, aiding the spread of one of the world's most invasive species.", + "guid": "https://www.bbc.co.uk/news/world-australia-68002735", + "isoDate": "2024-01-17T01:59:54.000Z" + }, + { + "title": "Griselda: Colombian 'Cocaine Godmother' given Hollywood makeover by Sofia Vergara", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67921672?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 00:38:54 GMT", + "content": "The ruthless criminal mastermind ran one of the most profitable cartels in history in 1980s Miami.", + "contentSnippet": "The ruthless criminal mastermind ran one of the most profitable cartels in history in 1980s Miami.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67921672", + "isoDate": "2024-01-17T00:38:54.000Z" + }, + { + "title": "US voters react to Trump's commanding Iowa win", + "link": "https://www.bbc.co.uk/news/world-us-canada-67994816?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 22:11:00 GMT", + "content": "As the ex-president tightened his grip on the party, Republican voters say only he can \"save\" the US.", + "contentSnippet": "As the ex-president tightened his grip on the party, Republican voters say only he can \"save\" the US.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67994816", + "isoDate": "2024-01-16T22:11:00.000Z" + }, + { + "title": "Israel Gaza war: Deal reached on aid to Gaza, including to hostages", + "link": "https://www.bbc.co.uk/news/world-middle-east-68000227?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 21:38:44 GMT", + "content": "Under the deal, brokered by Qatar and France, new aid is to reach both Gaza civilians and Israeli hostages.", + "contentSnippet": "Under the deal, brokered by Qatar and France, new aid is to reach both Gaza civilians and Israeli hostages.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-68000227", + "isoDate": "2024-01-16T21:38:44.000Z" + }, + { + "title": "Palestinian envoy Husam Zomlot says UK guilty of hypocrisy", + "link": "https://www.bbc.co.uk/news/uk-67999094?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 18:33:01 GMT", + "content": "Husam Zomlot says the UK's policies towards Israel have caused it \"reputational damage\".", + "contentSnippet": "Husam Zomlot says the UK's policies towards Israel have caused it \"reputational damage\".", + "guid": "https://www.bbc.co.uk/news/uk-67999094", + "isoDate": "2024-01-16T18:33:01.000Z" + }, + { + "title": "Mother of killed Israeli calls Hamas videos 'psychological warfare'", + "link": "https://www.bbc.co.uk/news/world-middle-east-67991427?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 17:35:52 GMT", + "content": "Iris Haim wants the world to know her son died a free person.", + "contentSnippet": "Iris Haim wants the world to know her son died a free person.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67991427", + "isoDate": "2024-01-16T17:35:52.000Z" + }, + { + "title": "Fujitsu CEO 'sorry' over postmaster scandal - BBC exclusive", + "link": "https://www.bbc.co.uk/news/world-67999236?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 16:24:46 GMT", + "content": "When asked if he would apologise, Takahito Tokita said: \"Yes, of course.\"", + "contentSnippet": "When asked if he would apologise, Takahito Tokita said: \"Yes, of course.\"", + "guid": "https://www.bbc.co.uk/news/world-67999236", + "isoDate": "2024-01-16T16:24:46.000Z" + }, + { + "title": "Alain Delon: Tragic finale as film great's family is torn apart", + "link": "https://www.bbc.co.uk/news/world-europe-67991657?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 13:16:56 GMT", + "content": "Old feuds and past rivalries re-emerge in public as ailing cinematic great's children fight for his legacy.", + "contentSnippet": "Old feuds and past rivalries re-emerge in public as ailing cinematic great's children fight for his legacy.", + "guid": "https://www.bbc.co.uk/news/world-europe-67991657", + "isoDate": "2024-01-16T13:16:56.000Z" + }, + { + "title": "Emmy Awards 2024: Who won what this year?", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67991603?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 09:28:19 GMT", + "content": "The 75th Emmy Awards saw Succession win big and a touching tribute to the late Friends star, Matthew Perry.", + "contentSnippet": "The 75th Emmy Awards saw Succession win big and a touching tribute to the late Friends star, Matthew Perry.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67991603", + "isoDate": "2024-01-16T09:28:19.000Z" + }, + { + "title": "Iowa caucuses: What Trump's dominant win means for his rivals", + "link": "https://www.bbc.co.uk/news/world-us-canada-67989443?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 05:40:50 GMT", + "content": "A landslide victory shows it is still his Republican Party, while no clear rival emerged as a challenger.", + "contentSnippet": "A landslide victory shows it is still his Republican Party, while no clear rival emerged as a challenger.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67989443", + "isoDate": "2024-01-16T05:40:50.000Z" + }, + { + "title": "Selena Gomez, Jenna Ortega and more walk red carpet at Emmy Awards", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67989266?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 04:30:59 GMT", + "content": "Stars of Succession, Better Call Saul and Wednesday were all seen arriving for the ceremony in LA.", + "contentSnippet": "Stars of Succession, Better Call Saul and Wednesday were all seen arriving for the ceremony in LA.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67989266", + "isoDate": "2024-01-16T04:30:59.000Z" + }, + { + "title": "Utah: Firefighter jumps into icy lake to rescue dog", + "link": "https://www.bbc.co.uk/news/world-us-canada-67988397?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Mon, 15 Jan 2024 20:37:04 GMT", + "content": "A firefighter in Utah rescues a dog who was trapped in a frozen lake after taking a swim.", + "contentSnippet": "A firefighter in Utah rescues a dog who was trapped in a frozen lake after taking a swim.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67988397", + "isoDate": "2024-01-15T20:37:04.000Z" + }, + { + "title": "Cyclone Belal submerges cars in Mauritius and batters Reunion", + "link": "https://www.bbc.co.uk/news/world-67984044?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Mon, 15 Jan 2024 19:09:51 GMT", + "content": "Torrential rain and flooding hit islands in Mauritius and Reunion, leaving homes without electricity.", + "contentSnippet": "Torrential rain and flooding hit islands in Mauritius and Reunion, leaving homes without electricity.", + "guid": "https://www.bbc.co.uk/news/world-67984044", + "isoDate": "2024-01-15T19:09:51.000Z" + }, + { + "title": "Yemen: US shoots down missile from Houthi-run area fired towards warship", + "link": "https://www.bbc.co.uk/news/world-middle-east-67978143?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Mon, 15 Jan 2024 06:36:46 GMT", + "content": "A fighter jet downs the missile from a Houthi-run area following US-UK strikes in Yemen.", + "contentSnippet": "A fighter jet downs the missile from a Houthi-run area following US-UK strikes in Yemen.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67978143", + "isoDate": "2024-01-15T06:36:46.000Z" + }, + { + "title": "Drone video shows Gaza destruction after 100 days of war", + "link": "https://www.bbc.co.uk/news/world-middle-east-67977694?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Mon, 15 Jan 2024 04:52:29 GMT", + "content": "Drone shots taken in Gaza show the extent of destruction in the enclave after 100 days of war.", + "contentSnippet": "Drone shots taken in Gaza show the extent of destruction in the enclave after 100 days of war.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67977694", + "isoDate": "2024-01-15T04:52:29.000Z" + }, + { + "title": "They were Israel's 'eyes on the border' - but their Hamas warnings went unheard", + "link": "https://www.bbc.co.uk/news/world-middle-east-67958260?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Mon, 15 Jan 2024 00:19:44 GMT", + "content": "A unit of young female soldiers warned of a big attack. They were among the first Hamas killed on 7 October.", + "contentSnippet": "A unit of young female soldiers warned of a big attack. They were among the first Hamas killed on 7 October.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67958260", + "isoDate": "2024-01-15T00:19:44.000Z" + }, + { + "title": "100 days since Hamas attacked Israel, triggering war in Gaza", + "link": "https://www.bbc.co.uk/news/world-middle-east-67972962?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Sun, 14 Jan 2024 14:21:16 GMT", + "content": "Thousands of Israelis gathered in Tel Aviv to mark 100 days since the start of the unprecedented war against Hamas.", + "contentSnippet": "Thousands of Israelis gathered in Tel Aviv to mark 100 days since the start of the unprecedented war against Hamas.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67972962", + "isoDate": "2024-01-14T14:21:16.000Z" + }, + { + "title": "US delivers 'private message' to Iran after Yemen strikes", + "link": "https://www.bbc.co.uk/news/world-middle-east-67967233?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Sun, 14 Jan 2024 03:47:34 GMT", + "content": "Joe Biden's comments follow a second US strike on the Houthis, who have attacked shipping in the Red Sea.", + "contentSnippet": "Joe Biden's comments follow a second US strike on the Houthis, who have attacked shipping in the Red Sea.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67967233", + "isoDate": "2024-01-14T03:47:34.000Z" + }, + { + "title": "Israel strikes southern Gaza city swollen with displaced people", + "link": "https://www.bbc.co.uk/news/world-middle-east-67968533?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Sat, 13 Jan 2024 18:24:33 GMT", + "content": "Ten people in a Rafah house sheltering displaced people were killed, the Hamas-run health ministry says.", + "contentSnippet": "Ten people in a Rafah house sheltering displaced people were killed, the Hamas-run health ministry says.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67968533", + "isoDate": "2024-01-13T18:24:33.000Z" + }, + { + "title": "Tough choices for Israel in US's Middle East vision", + "link": "https://www.bbc.co.uk/news/world-middle-east-67949952?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Sat, 13 Jan 2024 00:02:05 GMT", + "content": "The US plan sees diplomatic normalisation with Arab neighbours if Israel ends its offensive.", + "contentSnippet": "The US plan sees diplomatic normalisation with Arab neighbours if Israel ends its offensive.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67949952", + "isoDate": "2024-01-13T00:02:05.000Z" + }, + { + "title": "What we know about strikes on Houthis and strategy behind them", + "link": "https://www.bbc.co.uk/news/world-middle-east-67955727?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 12 Jan 2024 15:20:00 GMT", + "content": "Everything we know about how and why the US and UK attacked targets in Yemen.", + "contentSnippet": "Everything we know about how and why the US and UK attacked targets in Yemen.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67955727", + "isoDate": "2024-01-12T15:20:00.000Z" + }, + { + "title": "Strikes on Houthi targets in Yemen show war in Gaza has already spread", + "link": "https://www.bbc.co.uk/news/world-middle-east-67955729?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 12 Jan 2024 13:13:32 GMT", + "content": "War spreading in the Middle East is not just a risk - it has already happened, writes the BBC's international editor.", + "contentSnippet": "War spreading in the Middle East is not just a risk - it has already happened, writes the BBC's international editor.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67955729", + "isoDate": "2024-01-12T13:13:32.000Z" + }, + { + "title": "Gaza journalists\u2019 families reject Israeli military's \u2018terrorist\u2019 claims", + "link": "https://www.bbc.co.uk/news/world-middle-east-67946441?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 20:49:16 GMT", + "content": "An Al Jazeera journalist and a freelancer were killed in an Israeli air strike in Rafah on Sunday.", + "contentSnippet": "An Al Jazeera journalist and a freelancer were killed in an Israeli air strike in Rafah on Sunday.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67946441", + "isoDate": "2024-01-11T20:49:16.000Z" + }, + { + "title": "Ernest Bai Koroma: Sierra Leone ex-president flies to Nigeria for medical care", + "link": "https://www.bbc.co.uk/news/world-africa-68032930?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 15:07:09 GMT", + "content": "Ernest Bai Koroma flies to Nigeria for medical care, although some believe he may remain in exile.", + "contentSnippet": "Ernest Bai Koroma flies to Nigeria for medical care, although some believe he may remain in exile.", + "guid": "https://www.bbc.co.uk/news/world-africa-68032930", + "isoDate": "2024-01-19T15:07:09.000Z" + }, + { + "title": "Flames seen coming from Boeing plane mid-flight", + "link": "https://www.bbc.co.uk/news/world-us-canada-68032755?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 14:50:30 GMT", + "content": "The Atlas Air plane made an emergency landing in Miami, with no injuries reported.", + "contentSnippet": "The Atlas Air plane made an emergency landing in Miami, with no injuries reported.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-68032755", + "isoDate": "2024-01-19T14:50:30.000Z" + }, + { + "title": "Thomas Kwoyelo: Ugandan Lord's Resistance Army rebel commander on trial", + "link": "https://www.bbc.co.uk/news/world-africa-68025152?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 14:33:23 GMT", + "content": "Former child soldier Thomas Kwoyelo faces more than 90 charges, including murder and rape.", + "contentSnippet": "Former child soldier Thomas Kwoyelo faces more than 90 charges, including murder and rape.", + "guid": "https://www.bbc.co.uk/news/world-africa-68025152", + "isoDate": "2024-01-19T14:33:23.000Z" + }, + { + "title": "Australian Open 2024 results: Mirra Andreeva stages comeback win, Aryna Sabalenka & Coco Gauff progress", + "link": "https://www.bbc.co.uk/sport/tennis/68027500?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 14:14:11 GMT", + "content": "Teenager Mirra Andreeva saves a match point as she completes a stunning third-set comeback to reach the Australian Open fourth round.", + "contentSnippet": "Teenager Mirra Andreeva saves a match point as she completes a stunning third-set comeback to reach the Australian Open fourth round.", + "guid": "https://www.bbc.co.uk/sport/tennis/68027500", + "isoDate": "2024-01-19T14:14:11.000Z" + }, + { + "title": "Ketamine stash worth \u20ac55m seized in Netherlands", + "link": "https://www.bbc.co.uk/news/world-europe-68030540?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 13:06:44 GMT", + "content": "A man is arrested after dozens of boxes filled with ketamine were uncovered in a shed, Dutch police say.", + "contentSnippet": "A man is arrested after dozens of boxes filled with ketamine were uncovered in a shed, Dutch police say.", + "guid": "https://www.bbc.co.uk/news/world-europe-68030540", + "isoDate": "2024-01-19T13:06:44.000Z" + }, + { + "title": "Ukraine war: Russian oil depot hit in Ukrainian drone attack", + "link": "https://www.bbc.co.uk/news/world-europe-68029235?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 12:34:02 GMT", + "content": "Fire breaks out over a large area in the Bryansk region, a day after another oil facility is targeted.", + "contentSnippet": "Fire breaks out over a large area in the Bryansk region, a day after another oil facility is targeted.", + "guid": "https://www.bbc.co.uk/news/world-europe-68029235", + "isoDate": "2024-01-19T12:34:02.000Z" + }, + { + "title": "Bay of Biscay: France temporarily bans fishing to protect dolphins", + "link": "https://www.bbc.co.uk/news/world-europe-68030476?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 12:25:26 GMT", + "content": "The move comes after pressure from conservation groups, but local fishermen have called it \"absurd\".", + "contentSnippet": "The move comes after pressure from conservation groups, but local fishermen have called it \"absurd\".", + "guid": "https://www.bbc.co.uk/news/world-europe-68030476", + "isoDate": "2024-01-19T12:25:26.000Z" + }, + { + "title": "Snoop Dogg's daughter Cori Broadus cried after suffering stroke aged 24", + "link": "https://www.bbc.co.uk/news/entertainment-arts-68027972?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 12:10:51 GMT", + "content": "Cori Broadcast says she \"started breaking down crying\" after being told she had had a stroke at 24.", + "contentSnippet": "Cori Broadcast says she \"started breaking down crying\" after being told she had had a stroke at 24.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-68027972", + "isoDate": "2024-01-19T12:10:51.000Z" + }, + { + "title": "Nelson Mandela auction: South Africa seeks to block sale in row over heritage", + "link": "https://www.bbc.co.uk/news/world-africa-68031028?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 11:54:06 GMT", + "content": "The government aims to block the sale of personal items to preserve the anti-apartheid hero's legacy.", + "contentSnippet": "The government aims to block the sale of personal items to preserve the anti-apartheid hero's legacy.", + "guid": "https://www.bbc.co.uk/news/world-africa-68031028", + "isoDate": "2024-01-19T11:54:06.000Z" + }, + { + "title": "Gaza destruction risks lost generation of children, says UN official", + "link": "https://www.bbc.co.uk/news/world-middle-east-68023080?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 11:28:30 GMT", + "content": "A senior United Nations official tells the BBC that civilians may have no choice but to leave entirely.", + "contentSnippet": "A senior United Nations official tells the BBC that civilians may have no choice but to leave entirely.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-68023080", + "isoDate": "2024-01-19T11:28:30.000Z" + }, + { + "title": "Moment powerful gas explosion flattens building in Washington DC", + "link": "https://www.bbc.co.uk/news/world-us-canada-68028339?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 10:55:39 GMT", + "content": "Firefighters had responded to a report of a gas leak, but were not able to stop it.", + "contentSnippet": "Firefighters had responded to a report of a gas leak, but were not able to stop it.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-68028339", + "isoDate": "2024-01-19T10:55:39.000Z" + }, + { + "title": "Madonna sued by fans in New York over late concert start time", + "link": "https://www.bbc.co.uk/news/entertainment-arts-68027965?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 10:51:22 GMT", + "content": "Two fans say the New York show started more than two hours late and did not end until after 01:00.", + "contentSnippet": "Two fans say the New York show started more than two hours late and did not end until after 01:00.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-68027965", + "isoDate": "2024-01-19T10:51:22.000Z" + }, + { + "title": "N Korea conducts 'underwater nuclear weapons system' test - state media", + "link": "https://www.bbc.co.uk/news/world-asia-68027356?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 09:15:33 GMT", + "content": "State media said the test of underwater attack drones was in response to recent US-South Korea drills.", + "contentSnippet": "State media said the test of underwater attack drones was in response to recent US-South Korea drills.", + "guid": "https://www.bbc.co.uk/news/world-asia-68027356", + "isoDate": "2024-01-19T09:15:33.000Z" + }, + { + "title": "Comoros cuts internet after violent election protests", + "link": "https://www.bbc.co.uk/news/world-africa-68027892?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 09:04:32 GMT", + "content": "Opposition supporters are angry at the re-election of President Assoumani, describing it as fraud.", + "contentSnippet": "Opposition supporters are angry at the re-election of President Assoumani, describing it as fraud.", + "guid": "https://www.bbc.co.uk/news/world-africa-68027892", + "isoDate": "2024-01-19T09:04:32.000Z" + }, + { + "title": "Netanyahu publicly rejects US push for Palestinian state", + "link": "https://www.bbc.co.uk/news/world-middle-east-68025945?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 07:18:56 GMT", + "content": "The Israeli PM's rejection of Washington's efforts shows the growing disagreement between the two allies.", + "contentSnippet": "The Israeli PM's rejection of Washington's efforts shows the growing disagreement between the two allies.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-68025945", + "isoDate": "2024-01-19T07:18:56.000Z" + }, + { + "title": "Vadodara boat accident: India schoolchildren were 'not given life jackets'", + "link": "https://www.bbc.co.uk/news/world-asia-india-68027147?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 05:08:57 GMT", + "content": "Parents of students who died after a boat capsized in India's Gujarat state allege negligence by authorities.", + "contentSnippet": "Parents of students who died after a boat capsized in India's Gujarat state allege negligence by authorities.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-68027147", + "isoDate": "2024-01-19T05:08:57.000Z" + }, + { + "title": "Kashmir's rare snowless winter sets off alarm bells", + "link": "https://www.bbc.co.uk/news/world-asia-india-68015106?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 03:54:53 GMT", + "content": "Experts say that the absence of snowfall this winter will lead to water scarcity and derail the economy.", + "contentSnippet": "Experts say that the absence of snowfall this winter will lead to water scarcity and derail the economy.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-68015106", + "isoDate": "2024-01-19T03:54:53.000Z" + }, + { + "title": "La Kena: Notorious Mexican cartel leader captured", + "link": "https://www.bbc.co.uk/news/world-latin-america-68027129?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 02:34:54 GMT", + "content": "Jos\u00e9 Alberto Garc\u00eda Vilano has been linked to the killing of two US citizens last year.", + "contentSnippet": "Jos\u00e9 Alberto Garc\u00eda Vilano has been linked to the killing of two US citizens last year.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-68027129", + "isoDate": "2024-01-19T02:34:54.000Z" + }, + { + "title": "Biden says US strikes on Houthis in Yemen have not stopped Red Sea attacks", + "link": "https://www.bbc.co.uk/news/world-us-canada-68025279?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 02:33:30 GMT", + "content": "The remarks come as Houthi forces launched a new missile attack on a US-owned tanker ship on Thursday.", + "contentSnippet": "The remarks come as Houthi forces launched a new missile attack on a US-owned tanker ship on Thursday.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-68025279", + "isoDate": "2024-01-19T02:33:30.000Z" + }, + { + "title": "Cash-in-transit heists bring terror to South Africa\u2019s roads", + "link": "https://www.bbc.co.uk/news/world-africa-68023079?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 01:08:08 GMT", + "content": "Police struggle as cash-in-transit heists increase and the murder rate hits a 20-year high.", + "contentSnippet": "Police struggle as cash-in-transit heists increase and the murder rate hits a 20-year high.", + "guid": "https://www.bbc.co.uk/news/world-africa-68023079", + "isoDate": "2024-01-19T01:08:08.000Z" + }, + { + "title": "UK military island not suitable for migrants, UN says", + "link": "https://www.bbc.co.uk/news/uk-67996408?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 01:06:42 GMT", + "content": "UN officials have been granted access to Diego Garcia two years after asylum seekers landed there.", + "contentSnippet": "UN officials have been granted access to Diego Garcia two years after asylum seekers landed there.", + "guid": "https://www.bbc.co.uk/news/uk-67996408", + "isoDate": "2024-01-19T01:06:42.000Z" + }, + { + "title": "Melania Trump gives eulogy at mother's funeral", + "link": "https://www.bbc.co.uk/news/world-us-canada-68026771?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 19 Jan 2024 00:55:43 GMT", + "content": "Donald Trump skipped a court session in his defamation trial in New York to attend the funeral.", + "contentSnippet": "Donald Trump skipped a court session in his defamation trial in New York to attend the funeral.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-68026771", + "isoDate": "2024-01-19T00:55:43.000Z" + }, + { + "title": "Canadian former pole vault world champion Barber dies aged 29", + "link": "https://www.bbc.co.uk/sport/athletics/68026959?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 23:00:35 GMT", + "content": "Canada's former world pole vault champion Shawn Barber dies at the age of 29 from medical complications.", + "contentSnippet": "Canada's former world pole vault champion Shawn Barber dies at the age of 29 from medical complications.", + "guid": "https://www.bbc.co.uk/sport/athletics/68026959", + "isoDate": "2024-01-18T23:00:35.000Z" + }, + { + "title": "Israeli troops push deep into Gaza's southern city of Khan Younis", + "link": "https://www.bbc.co.uk/news/world-middle-east-68024249?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 21:32:44 GMT", + "content": "The army says soldiers are engaged in \"close quarter combat\" after reaching the city's southernmost area.", + "contentSnippet": "The army says soldiers are engaged in \"close quarter combat\" after reaching the city's southernmost area.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-68024249", + "isoDate": "2024-01-18T21:32:44.000Z" + }, + { + "title": "Why did Iran launch strikes on its allies' territory?", + "link": "https://www.bbc.co.uk/news/world-middle-east-68021483?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 18:17:45 GMT", + "content": "Iranian attacks hit targets in Syria, Iraq and Pakistan over two days. Why, and why now?", + "contentSnippet": "Iranian attacks hit targets in Syria, Iraq and Pakistan over two days. Why, and why now?", + "guid": "https://www.bbc.co.uk/news/world-middle-east-68021483", + "isoDate": "2024-01-18T18:17:45.000Z" + }, + { + "title": "US strikes Syria bases used by Iran-linked groups", + "link": "https://www.bbc.co.uk/news/world-middle-east-67236438?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 12:47:08 GMT", + "content": "It follows a series of recent attacks on US bases in Iraq and Syria by Iranian-backed militia, officials say.", + "contentSnippet": "It follows a series of recent attacks on US bases in Iraq and Syria by Iranian-backed militia, officials say.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67236438", + "isoDate": "2023-10-27T12:47:08.000Z" + }, + { + "title": "Ghana power crisis: Limited gas supply triggers nationwide power outage", + "link": "https://www.bbc.co.uk/news/world-africa-67236078?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 12:09:35 GMT", + "content": "This is the worst power cut for two years, coming amid a serious economic crises in the country.", + "contentSnippet": "This is the worst power cut for two years, coming amid a serious economic crises in the country.", + "guid": "https://www.bbc.co.uk/news/world-africa-67236078", + "isoDate": "2023-10-27T12:09:35.000Z" + }, + { + "title": "Taylor Swift: Artist paints the star on giant Halloween pumpkin", + "link": "https://www.bbc.co.uk/news/world-67240106?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 11:11:29 GMT", + "content": "It took Ohio-based Jeanette Paras 10 hours to create the artwork.", + "contentSnippet": "It took Ohio-based Jeanette Paras 10 hours to create the artwork.", + "guid": "https://www.bbc.co.uk/news/world-67240106", + "isoDate": "2023-10-27T11:11:29.000Z" + }, + { + "title": "Ugandan anger at plan to name road after slain tourists", + "link": "https://www.bbc.co.uk/news/world-africa-67236244?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 10:01:15 GMT", + "content": "Some people are unhappy there is no plan to have a memorial to the Ugandan guide killed in the attack.", + "contentSnippet": "Some people are unhappy there is no plan to have a memorial to the Ugandan guide killed in the attack.", + "guid": "https://www.bbc.co.uk/news/world-africa-67236244", + "isoDate": "2023-10-27T10:01:15.000Z" + }, + { + "title": "Why Li Keqiang's death is dangerous for Xi Jinping", + "link": "https://www.bbc.co.uk/news/world-asia-china-67236049?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 09:53:02 GMT", + "content": "The beloved leader represents a way of potentially governing China with very different priorities.", + "contentSnippet": "The beloved leader represents a way of potentially governing China with very different priorities.", + "guid": "https://www.bbc.co.uk/news/world-asia-china-67236049", + "isoDate": "2023-10-27T09:53:02.000Z" + }, + { + "title": "Taylor Swift's 1989: Her biggest album returns with new tracks from the vault", + "link": "https://www.bbc.co.uk/news/entertainment-arts-66910595?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 09:12:53 GMT", + "content": "As the pop star releases a re-recorded version of 1989, here's a look behind the songs.", + "contentSnippet": "As the pop star releases a re-recorded version of 1989, here's a look behind the songs.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-66910595", + "isoDate": "2023-10-27T09:12:53.000Z" + }, + { + "title": "Qatar sentences Indian ex-naval officers to death", + "link": "https://www.bbc.co.uk/news/world-asia-india-67191248?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 08:11:05 GMT", + "content": "Reports say the eight men, who worked at a private firm in Qatar, were arrested last year.", + "contentSnippet": "Reports say the eight men, who worked at a private firm in Qatar, were arrested last year.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67191248", + "isoDate": "2023-10-27T08:11:05.000Z" + }, + { + "title": "South Korea court upholds ban on gay sex in the military", + "link": "https://www.bbc.co.uk/news/world-asia-67236048?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 07:01:04 GMT", + "content": "The ruling is a setback in the fight for LGBT rights in the country, human rights groups say.", + "contentSnippet": "The ruling is a setback in the fight for LGBT rights in the country, human rights groups say.", + "guid": "https://www.bbc.co.uk/news/world-asia-67236048", + "isoDate": "2023-10-27T07:01:04.000Z" + }, + { + "title": "Africa's week in pictures: 20-26 October 2023", + "link": "https://www.bbc.co.uk/news/world-africa-67227818?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 06:18:22 GMT", + "content": "A selection of the best photos from the African continent and beyond.", + "contentSnippet": "A selection of the best photos from the African continent and beyond.", + "guid": "https://www.bbc.co.uk/news/world-africa-67227818", + "isoDate": "2023-10-27T06:18:22.000Z" + }, + { + "title": "In 60 seconds: Who was China\u2019s Li Keqiang?", + "link": "https://www.bbc.co.uk/news/world-asia-china-67236498?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 06:16:34 GMT", + "content": "A trained economist, Li was once tipped to be the country's future leader.", + "contentSnippet": "A trained economist, Li was once tipped to be the country's future leader.", + "guid": "https://www.bbc.co.uk/news/world-asia-china-67236498", + "isoDate": "2023-10-27T06:16:34.000Z" + }, + { + "title": "Maine shootings: Idyllic Lewiston a ghost town as manhunt drags on", + "link": "https://www.bbc.co.uk/news/world-us-canada-67235757?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 02:21:15 GMT", + "content": "Streets were empty, stores and schools were closed as the search continued for the Maine shooting suspect.", + "contentSnippet": "Streets were empty, stores and schools were closed as the search continued for the Maine shooting suspect.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67235757", + "isoDate": "2023-10-27T02:21:15.000Z" + }, + { + "title": "Obituary: Li Keqiang", + "link": "https://www.bbc.co.uk/news/world-asia-china-19870221?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 01:29:11 GMT", + "content": "Li Keqiang, once the second most powerful man in China, suffered a sudden heart attack, state media said.", + "contentSnippet": "Li Keqiang, once the second most powerful man in China, suffered a sudden heart attack, state media said.", + "guid": "https://www.bbc.co.uk/news/world-asia-china-19870221", + "isoDate": "2023-10-27T01:29:11.000Z" + }, + { + "title": "How does China fix the Evergrande mess?", + "link": "https://www.bbc.co.uk/news/business-67191262?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 00:18:50 GMT", + "content": "The heavily indebted company has become the poster child of the country's flailing property sector.", + "contentSnippet": "The heavily indebted company has become the poster child of the country's flailing property sector.", + "guid": "https://www.bbc.co.uk/news/business-67191262", + "isoDate": "2023-10-27T00:18:50.000Z" + }, + { + "title": "Mahua Moitra: The firebrand Indian MP in \u2018cash-for-query\u2019 scandal", + "link": "https://www.bbc.co.uk/news/world-asia-india-67225656?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 23:16:59 GMT", + "content": "Mahua Moitra is known to ask tough questions to Prime Minister Narendra Modi and his government.", + "contentSnippet": "Mahua Moitra is known to ask tough questions to Prime Minister Narendra Modi and his government.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67225656", + "isoDate": "2023-10-26T23:16:59.000Z" + }, + { + "title": "Israel Gaza: Giving birth amid shelling and power cuts", + "link": "https://www.bbc.co.uk/news/world-middle-east-67226957?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 23:07:09 GMT", + "content": "Gaza resident Jumana Emad describes being in labour \u201camong continuous shelling\u201d.", + "contentSnippet": "Gaza resident Jumana Emad describes being in labour \u201camong continuous shelling\u201d.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67226957", + "isoDate": "2023-10-26T23:07:09.000Z" + }, + { + "title": "Elon Musk and X a year on: Four problems he needs to fix", + "link": "https://www.bbc.co.uk/news/technology-67226795?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 23:06:08 GMT", + "content": "How the billionaire's purchase of Twitter has changed the platform and what the future may hold.", + "contentSnippet": "How the billionaire's purchase of Twitter has changed the platform and what the future may hold.", + "guid": "https://www.bbc.co.uk/news/technology-67226795", + "isoDate": "2023-10-26T23:06:08.000Z" + }, + { + "title": "Neuschwanstein: US man charged over deadly attack at famed German castle", + "link": "https://www.bbc.co.uk/news/world-europe-67235170?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 22:26:19 GMT", + "content": "The suspect is accused of pushing two women into a ravine at Neuschwanstein Castle and raping one of them.", + "contentSnippet": "The suspect is accused of pushing two women into a ravine at Neuschwanstein Castle and raping one of them.", + "guid": "https://www.bbc.co.uk/news/world-europe-67235170", + "isoDate": "2023-10-26T22:26:19.000Z" + }, + { + "title": "Israel Gaza: EU calls for 'corridors and pauses' for humanitarian aid", + "link": "https://www.bbc.co.uk/news/world-europe-67234942?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 21:45:28 GMT", + "content": "Member states disagreed over whether to call for short breaks in the fighting or a longer pause.", + "contentSnippet": "Member states disagreed over whether to call for short breaks in the fighting or a longer pause.", + "guid": "https://www.bbc.co.uk/news/world-europe-67234942", + "isoDate": "2023-10-26T21:45:28.000Z" + }, + { + "title": "Ukraine war: Russia executing own retreating soldiers, US says", + "link": "https://www.bbc.co.uk/news/world-europe-67234144?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 21:29:56 GMT", + "content": "The White House says heavy losses and poor morale are leading to mutinies in some units.", + "contentSnippet": "The White House says heavy losses and poor morale are leading to mutinies in some units.", + "guid": "https://www.bbc.co.uk/news/world-europe-67234144", + "isoDate": "2023-10-26T21:29:56.000Z" + }, + { + "title": "Shooting survivor recalls hiding above bowling pin machine", + "link": "https://www.bbc.co.uk/news/world-us-canada-67210525?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 19:15:30 GMT", + "content": "The Lewiston resident had just entered the local bowling alley when the gunman opened fire.", + "contentSnippet": "The Lewiston resident had just entered the local bowling alley when the gunman opened fire.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67210525", + "isoDate": "2023-10-26T19:15:30.000Z" + }, + { + "title": "Shakira's ex and former footballer Gerard Pique falls off stage", + "link": "https://www.bbc.co.uk/news/world-latin-america-67234333?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 18:29:58 GMT", + "content": "The Spanish World Cup winner fell off the stage at a launch event for a new footballing tournament in Mexico.", + "contentSnippet": "The Spanish World Cup winner fell off the stage at a launch event for a new footballing tournament in Mexico.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67234333", + "isoDate": "2023-10-26T18:29:58.000Z" + }, + { + "title": "UN agencies reduce Gaza aid operations as fuel runs out", + "link": "https://www.bbc.co.uk/news/world-middle-east-67227534?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 17:49:11 GMT", + "content": "The UN says it has enough to maintain water supplies for a day, after reducing support for hospitals.", + "contentSnippet": "The UN says it has enough to maintain water supplies for a day, after reducing support for hospitals.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67227534", + "isoDate": "2023-10-26T17:49:11.000Z" + }, + { + "title": "How Qatar is at the centre of Israeli hostage talks", + "link": "https://www.bbc.co.uk/news/world-middle-east-67205109?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 16:56:54 GMT", + "content": "Qatar has a unique role leading sensitive negotiations but it comes with a huge risk.", + "contentSnippet": "Qatar has a unique role leading sensitive negotiations but it comes with a huge risk.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67205109", + "isoDate": "2023-10-26T16:56:54.000Z" + }, + { + "title": "Alan Wake 2: How one of gaming's lost sequels finally got made", + "link": "https://www.bbc.co.uk/news/newsbeat-67204018?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 13:24:32 GMT", + "content": "After 13 years, Alan Wake's creator finally gets to release the sequel many thought wouldn't happen.", + "contentSnippet": "After 13 years, Alan Wake's creator finally gets to release the sequel many thought wouldn't happen.", + "guid": "https://www.bbc.co.uk/news/newsbeat-67204018", + "isoDate": "2023-10-26T13:24:32.000Z" + }, + { + "title": "'Reconnaissance by fire' - What Israel's Gaza raid tells us", + "link": "https://www.bbc.co.uk/news/world-middle-east-67226021?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 12:43:51 GMT", + "content": "Israel's manoeuvre has been described as \"a tactical operation\", meaning it was limited in scope.", + "contentSnippet": "Israel's manoeuvre has been described as \"a tactical operation\", meaning it was limited in scope.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67226021", + "isoDate": "2023-10-26T12:43:51.000Z" + }, + { + "title": "How delay to Israel offensive benefits US", + "link": "https://www.bbc.co.uk/news/world-us-canada-67226019?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 12:16:31 GMT", + "content": "Washington hopes to use a delay in Israel's incursion into Gaza to shore up protection for its interests.", + "contentSnippet": "Washington hopes to use a delay in Israel's incursion into Gaza to shore up protection for its interests.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67226019", + "isoDate": "2023-10-26T12:16:31.000Z" + }, + { + "title": "Sydney surfer collides with whale", + "link": "https://www.bbc.co.uk/news/world-australia-67226886?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 09:29:29 GMT", + "content": "Jason Breen was wing foiling in the sea when he was dragged underwater by the young mammal.", + "contentSnippet": "Jason Breen was wing foiling in the sea when he was dragged underwater by the young mammal.", + "guid": "https://www.bbc.co.uk/news/world-australia-67226886", + "isoDate": "2023-10-26T09:29:29.000Z" + }, + { + "title": "Watch: Seaside hotels smashed by Hurricane Otis in Mexico", + "link": "https://www.bbc.co.uk/news/world-latin-america-67216467?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 06:54:34 GMT", + "content": "The hurricane brought wind speeds of up to 165mph (270km/h), making landfall near Acapulco.", + "contentSnippet": "The hurricane brought wind speeds of up to 165mph (270km/h), making landfall near Acapulco.", + "guid": "https://www.bbc.co.uk/news/world-latin-america-67216467", + "isoDate": "2023-10-26T06:54:34.000Z" + }, + { + "title": "David Shrigley: Artist pulps 6,000 copies of The Da Vinci Code and turns them into 1984", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67218454?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 06:34:18 GMT", + "content": "The idea came about when Shrigley heard an Oxfam shop had stopped accepting copies of Dan Brown's book.", + "contentSnippet": "The idea came about when Shrigley heard an Oxfam shop had stopped accepting copies of Dan Brown's book.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67218454", + "isoDate": "2023-10-26T06:34:18.000Z" + }, + { + "title": "Maine mass shooting: Armed police search for gunman", + "link": "https://www.bbc.co.uk/news/world-us-canada-67225332?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 05:59:06 GMT", + "content": "The gunman is still on the loose in the city of Lewiston and police have asked residents to shelter.", + "contentSnippet": "The gunman is still on the loose in the city of Lewiston and police have asked residents to shelter.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67225332", + "isoDate": "2023-10-26T05:59:06.000Z" + }, + { + "title": "The chaotic search for Speaker... recapped in 120 seconds", + "link": "https://www.bbc.co.uk/news/world-us-canada-67210524?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 25 Oct 2023 22:59:05 GMT", + "content": "Mike Johnson has been voted the new House leader. But for the divided GOP, it was not easy to get here.", + "contentSnippet": "Mike Johnson has been voted the new House leader. But for the divided GOP, it was not easy to get here.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67210524", + "isoDate": "2023-10-25T22:59:05.000Z" + }, + { + "title": "Manual scavenging: The unending pain of India's sewer workers", + "link": "https://www.bbc.co.uk/news/world-asia-india-67191131?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 25 Oct 2023 22:29:43 GMT", + "content": "Workers from low-caste communities endure stigma and hazards as they clean sewers and septic tanks.", + "contentSnippet": "Workers from low-caste communities endure stigma and hazards as they clean sewers and septic tanks.", + "guid": "https://www.bbc.co.uk/news/world-asia-india-67191131", + "isoDate": "2023-10-25T22:29:43.000Z" + }, + { + "title": "Itaewon crush: Survivors are still tormented a year on", + "link": "https://www.bbc.co.uk/news/67203564?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 25 Oct 2023 21:56:52 GMT", + "content": "Lack of accountability torments survivors of a Halloween crush that killed 160 people in Itaewon.", + "contentSnippet": "Lack of accountability torments survivors of a Halloween crush that killed 160 people in Itaewon.", + "guid": "https://www.bbc.co.uk/news/67203564", + "isoDate": "2023-10-25T21:56:52.000Z" + }, + { + "title": "Omer and Omar: How two 4-year-olds were killed and social media denied it", + "link": "https://www.bbc.co.uk/news/world-middle-east-67206277?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 25 Oct 2023 21:48:50 GMT", + "content": "Two young boys in Gaza and Israel became victims of war - and then victims of social media disinformation.", + "contentSnippet": "Two young boys in Gaza and Israel became victims of war - and then victims of social media disinformation.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67206277", + "isoDate": "2023-10-25T21:48:50.000Z" + }, + { + "title": "'My family is in Gaza': Solo vigil sparks protests", + "link": "https://www.bbc.co.uk/news/world-middle-east-67221219?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 25 Oct 2023 21:41:12 GMT", + "content": "When Avichai Brodutch began a solo vigil outside the Ministry of Defense, others began to join him.", + "contentSnippet": "When Avichai Brodutch began a solo vigil outside the Ministry of Defense, others began to join him.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67221219", + "isoDate": "2023-10-25T21:41:12.000Z" + }, + { + "title": "Humanity blasted and broken: Gaza through a medic's eyes", + "link": "https://www.bbc.co.uk/news/world-middle-east-67223273?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 25 Oct 2023 21:04:35 GMT", + "content": "\"We do not rest,\" says ambulance driver Mahmoud Badawi as medical supplies in the Strip run low.", + "contentSnippet": "\"We do not rest,\" says ambulance driver Mahmoud Badawi as medical supplies in the Strip run low.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67223273", + "isoDate": "2023-10-25T21:04:35.000Z" + }, + { + "title": "Fireworks in court as Trump team calls ex-lawyer Michael Cohen a liar", + "link": "https://www.bbc.co.uk/news/world-us-canada-67222900?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 25 Oct 2023 19:47:22 GMT", + "content": "Lawyers for Trump tried to undermine Michael Cohen's credibility during high-stakes fraud case.", + "contentSnippet": "Lawyers for Trump tried to undermine Michael Cohen's credibility during high-stakes fraud case.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67222900", + "isoDate": "2023-10-25T19:47:22.000Z" + }, + { + "title": "Ivanka Trump must testify in fraud case, judge rules", + "link": "https://www.bbc.co.uk/news/world-us-canada-67243100?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 15:38:04 GMT", + "content": "Ivanka Trump will have to testify in business fraud case against her father and brothers, a New York judge rules", + "contentSnippet": "Ivanka Trump will have to testify in business fraud case against her father and brothers, a New York judge rules", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67243100", + "isoDate": "2023-10-27T15:38:04.000Z" + }, + { + "title": "Lawsuit accuses Abercrombie & Fitch of funding sex-trafficking operation", + "link": "https://www.bbc.co.uk/news/world-us-canada-67238812?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 15:36:43 GMT", + "content": "The US fashion brand is jointly accused with its ex-CEO of participating in a sex-trafficking venture.", + "contentSnippet": "The US fashion brand is jointly accused with its ex-CEO of participating in a sex-trafficking venture.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67238812", + "isoDate": "2023-10-27T15:36:43.000Z" + }, + { + "title": "Bela bill: South Africans face jail if children not in school", + "link": "https://www.bbc.co.uk/news/world-africa-67231637?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 14:46:34 GMT", + "content": "Parliament passes the biggest education reform since the end of apartheid in 1994.", + "contentSnippet": "Parliament passes the biggest education reform since the end of apartheid in 1994.", + "guid": "https://www.bbc.co.uk/news/world-africa-67231637", + "isoDate": "2023-10-27T14:46:34.000Z" + }, + { + "title": "Russia hikes interest rates to 15% as inflation soars", + "link": "https://www.bbc.co.uk/news/business-67233075?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 14:10:48 GMT", + "content": "The Bank of Russia raises rates more than expected to try to lower inflation and boost the rouble.", + "contentSnippet": "The Bank of Russia raises rates more than expected to try to lower inflation and boost the rouble.", + "guid": "https://www.bbc.co.uk/news/business-67233075", + "isoDate": "2023-10-27T14:10:48.000Z" + }, + { + "title": "Sharone Lifschitz's mother was freed but her father is still held by Hamas", + "link": "https://www.bbc.co.uk/news/world-middle-east-67236448?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 13:38:34 GMT", + "content": "Sharone Lifschitz is calling on the Israeli government to prioritise the release of hostages held by Hamas.", + "contentSnippet": "Sharone Lifschitz is calling on the Israeli government to prioritise the release of hostages held by Hamas.", + "guid": "https://www.bbc.co.uk/news/world-middle-east-67236448", + "isoDate": "2023-10-27T13:38:34.000Z" + } +] diff --git a/intro to react/newData/oldNews/9350fbc798fc38945db6ad0b4a48757e9521b294a2af799a4a3c05eb09caded3.json b/intro to react/newData/oldNews/9350fbc798fc38945db6ad0b4a48757e9521b294a2af799a4a3c05eb09caded3.json index 641e349..a112a4d 100644 --- a/intro to react/newData/oldNews/9350fbc798fc38945db6ad0b4a48757e9521b294a2af799a4a3c05eb09caded3.json +++ b/intro to react/newData/oldNews/9350fbc798fc38945db6ad0b4a48757e9521b294a2af799a4a3c05eb09caded3.json @@ -1,5329 +1,5329 @@ [ - { - "creator": "Neil MacFarquhar and Milana Mazaeva", - "title": "Russian Women Protest Long Deployments for Soldiers in Ukraine", - "link": "https://www.nytimes.com/2023/11/27/world/europe/russia-ukraine-protests-women.html", - "pubDate": "Wed, 29 Nov 2023 01:34:18 +0000", - "dc:creator": "Neil MacFarquhar and Milana Mazaeva", - "content": "\u201cMake way for someone else,\u201d a new grass-roots movement demands as women challenge the official argument that the mobilized troops are needed in combat indefinitely.", - "contentSnippet": "\u201cMake way for someone else,\u201d a new grass-roots movement demands as women challenge the official argument that the mobilized troops are needed in combat indefinitely.", - "guid": "https://www.nytimes.com/2023/11/27/world/europe/russia-ukraine-protests-women.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Novosibirsk (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Women and Girls", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "audio-neutral-informative", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "audio-neutral-suspenseful", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "audio-negative-tragedy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T01:34:18.000Z" - }, - { - "creator": "Marc Santora and Maria Varenikova", - "title": "Wife of Ukraine\u2019s Spy Chief Was Poisoned, Officials Say", - "link": "https://www.nytimes.com/2023/11/28/world/europe/ukraine-spy-chief-wife-poisoned.html", - "pubDate": "Tue, 28 Nov 2023 16:05:21 +0000", - "dc:creator": "Marc Santora and Maria Varenikova", - "content": "Marianna Budanova, whose husband is the director of military intelligence, is recovering in a hospital, the officials said. Her husband has long accused Russia of trying to kill him.", - "contentSnippet": "Marianna Budanova, whose husband is the director of military intelligence, is recovering in a hospital, the officials said. Her husband has long accused Russia of trying to kill him.", - "guid": "https://www.nytimes.com/2023/11/28/world/europe/ukraine-spy-chief-wife-poisoned.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Budanov, Kyrylo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Poisoning and Poisons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-28T16:05:21.000Z" - }, - { - "creator": "Marc Santora", - "title": "Storm Batters Southern Ukraine, Spreading Misery for Civilians and Soldiers", - "link": "https://www.nytimes.com/2023/11/27/world/europe/ukraine-storm-black-sea-russia.html", - "pubDate": "Mon, 27 Nov 2023 18:48:32 +0000", - "dc:creator": "Marc Santora", - "content": "Violent waves stirred by hurricane-force winds threatened to tear maritime mines from their moorings in the Sea of Azov and the Black Sea.", - "contentSnippet": "Violent waves stirred by hurricane-force winds threatened to tear maritime mines from their moorings in the Sea of Azov and the Black Sea.", - "guid": "https://www.nytimes.com/2023/11/27/world/europe/ukraine-storm-black-sea-russia.html", - "categories": [ - { - "_": "Black Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Weather", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ships and Shipping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-27T18:48:32.000Z" - }, - { - "creator": "Paul Sonne and Alex Marshall", - "title": "For Monetochka, a Moral Stand Started a Creative Climb", - "link": "https://www.nytimes.com/2023/11/24/world/europe/monetochka-exiled-russian-pop-stars.html", - "pubDate": "Fri, 24 Nov 2023 17:51:08 +0000", - "dc:creator": "Paul Sonne and Alex Marshall", - "content": "Monetochka was one of Russia\u2019s most discussed pop stars. Now, like other antiwar acts in exile, she\u2019s having to retool her career.", - "contentSnippet": "Monetochka was one of Russia\u2019s most discussed pop stars. Now, like other antiwar acts in exile, she\u2019s having to retool her career.", - "guid": "https://www.nytimes.com/2023/11/24/world/europe/monetochka-exiled-russian-pop-stars.html", - "categories": [ - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pop and Rock Music", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Face (Rapper)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gyrdymova, Elizaveta (Monetochka)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-24T17:51:08.000Z" - }, - { - "creator": "Andrew Keh", - "title": "Olympic Truce for Paris 2024 Collides With Reality", - "link": "https://www.nytimes.com/2023/11/23/world/europe/olympics-truce-2024.html", - "pubDate": "Thu, 23 Nov 2023 10:02:57 +0000", - "dc:creator": "Andrew Keh", - "content": "Amid two prominent wars and other conflicts around the globe, a biennial call at the United Nations for peace during the Games felt even more symbolic than usual.", - "contentSnippet": "Amid two prominent wars and other conflicts around the globe, a biennial call at the United Nations for peace during the Games felt even more symbolic than usual.", - "guid": "https://www.nytimes.com/2023/11/23/world/europe/olympics-truce-2024.html", - "categories": [ - { - "_": "Olympic Games (2024)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Peace Process", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Olympic Committee", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bach, Thomas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-23T10:02:57.000Z" - }, - { - "creator": "Lara Jakes", - "title": "Europe Moves to Fill Weapons Gap Amid Doubts About U.S. Commitment to Ukraine", - "link": "https://www.nytimes.com/2023/11/18/world/europe/europe-military-aid-ukraine.html", - "pubDate": "Tue, 21 Nov 2023 14:01:12 +0000", - "dc:creator": "Lara Jakes", - "content": "Germany, Norway, Britain and others are increasing weapons production to help Kyiv. But the aid may be coming too late as winter looms and Ukraine\u2019s counteroffensive against Russia stalls.", - "contentSnippet": "Germany, Norway, Britain and others are increasing weapons production to help Kyiv. But the aid may be coming too late as winter looms and Ukraine\u2019s counteroffensive against Russia stalls.", - "guid": "https://www.nytimes.com/2023/11/18/world/europe/europe-military-aid-ukraine.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Germany", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Norway", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-21T14:01:12.000Z" - }, - { - "creator": "Marc Santora and Tyler Hicks", - "title": "In Ukraine\u2019s Slowed-Down War, Death Comes as Quickly as Ever", - "link": "https://www.nytimes.com/2023/11/20/world/europe/ukrainian-soldiers-stalemate-avdiivka.html", - "pubDate": "Mon, 20 Nov 2023 20:30:21 +0000", - "dc:creator": "Marc Santora and Tyler Hicks", - "content": "Ukraine is facing continual eastern assaults from Russian forces at a bloody cost for both sides, even as the lines on the map barely move.", - "contentSnippet": "Ukraine is facing continual eastern assaults from Russian forces at a bloody cost for both sides, even as the lines on the map barely move.", - "guid": "https://www.nytimes.com/2023/11/20/world/europe/ukrainian-soldiers-stalemate-avdiivka.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Avdiivka (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-20T20:30:21.000Z" - }, - { - "creator": "Jon Gertner, Adrienne Hurst, Diane Wong, John Woo, Sophia Lanman and Zachary Mouton", - "title": "The Sunday Read: \u2018What Does the U.S. Space Force Actually Do?\u2019", - "link": "https://www.nytimes.com/2023/11/19/podcasts/the-daily/space-force.html", - "pubDate": "Sun, 19 Nov 2023 11:00:05 +0000", - "dc:creator": "Jon Gertner, Adrienne Hurst, Diane Wong, John Woo, Sophia Lanman and Zachary Mouton", - "content": "Inside the highly secretive military branch responsible for protecting American interests in a vulnerable new domain.", - "contentSnippet": "Inside the highly secretive military branch responsible for protecting American interests in a vulnerable new domain.", - "guid": "https://www.nytimes.com/2023/11/19/podcasts/the-daily/space-force.html", - "categories": [ - { - "_": "audio-neutral-informative", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Communications and Media Blackouts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Space Force", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Eastern Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-19T11:00:05.000Z" - }, - { - "creator": "Paul Mozur and Aaron Krolik", - "title": "The Invisible War in Ukraine Being Fought Over Radio Waves", - "link": "https://www.nytimes.com/2023/11/19/technology/russia-ukraine-electronic-warfare-drone-signals.html", - "pubDate": "Sun, 19 Nov 2023 05:01:24 +0000", - "dc:creator": "Paul Mozur and Aaron Krolik", - "content": "Using electromagnetic waves to flummox and follow smarter weapons has become a critical part of the cat-and-mouse game between Ukraine and Russia. The United States, China and others have taken note.", - "contentSnippet": "Using electromagnetic waves to flummox and follow smarter weapons has become a critical part of the cat-and-mouse game between Ukraine and Russia. The United States, China and others have taken note.", - "guid": "https://www.nytimes.com/2023/11/19/technology/russia-ukraine-electronic-warfare-drone-signals.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Radio Spectrum", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drones (Pilotless Planes)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sensors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wireless Communications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Satellites", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-19T05:01:24.000Z" - }, - { - "creator": "Constant M\u00e9heut and Maria Varenikova", - "title": "Ukraine Says It Has Seized Small Dnipro Foothold After Months of Raids", - "link": "https://www.nytimes.com/2023/11/17/world/europe/ukraine-dnipro-river-raid-russia.html", - "pubDate": "Fri, 17 Nov 2023 16:52:06 +0000", - "dc:creator": "Constant M\u00e9heut and Maria Varenikova", - "content": "The Ukrainian military said it had taken a sliver of Russian-controlled land, a move that might offer some hope but was unlikely to lead to a rapid breakthrough.", - "contentSnippet": "The Ukrainian military said it had taken a sliver of Russian-controlled land, a move that might offer some hope but was unlikely to lead to a rapid breakthrough.", - "guid": "https://www.nytimes.com/2023/11/17/world/europe/ukraine-dnipro-river-raid-russia.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dnipro River (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kherson (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-17T16:52:06.000Z" - }, - { - "creator": "Zolan Kanno-Youngs", - "title": "Biden Tied Ukraine Aid to Border Security, and It Backfired on Him", - "link": "https://www.nytimes.com/2023/12/07/us/politics/biden-immigration-ukraine.html", - "pubDate": "Fri, 08 Dec 2023 01:44:28 +0000", - "dc:creator": "Zolan Kanno-Youngs", - "content": "President Biden faces difficult choices about how far to go in giving in to conservative demands that he choke off the number of migrants admitted to the United States.", - "contentSnippet": "President Biden faces difficult choices about how far to go in giving in to conservative demands that he choke off the number of migrants admitted to the United States.", - "guid": "https://www.nytimes.com/2023/12/07/us/politics/biden-immigration-ukraine.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Illegal Immigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Refugees and Displaced Persons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asylum, Right of", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-08T01:44:28.000Z" - }, - { - "creator": "Steven Lee Myers", - "title": "Russia\u2019s Latest Disinformation Tactic Exploits American Celebrities", - "link": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", - "pubDate": "Thu, 07 Dec 2023 05:02:00 +0000", - "dc:creator": "Steven Lee Myers", - "content": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", - "contentSnippet": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", - "guid": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", - "categories": [ - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Propaganda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Celebrities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cameo (Mobile App)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T05:02:00.000Z" - }, - { - "creator": "Peter Baker", - "title": "Biden Calls on Congress to Approve Aid to Ukraine: \u2018This Cannot Wait\u2019", - "link": "https://www.nytimes.com/2023/12/06/us/politics/biden-ukraine-funding.html", - "pubDate": "Wed, 06 Dec 2023 23:57:41 +0000", - "dc:creator": "Peter Baker", - "content": "The administration has already alerted Congress that money for Ukraine will run out by the end of the year.", - "contentSnippet": "The administration has already alerted Congress that money for Ukraine will run out by the end of the year.", - "guid": "https://www.nytimes.com/2023/12/06/us/politics/biden-ukraine-funding.html", - "categories": [ - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Democratic Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-06T23:57:41.000Z" - }, - { - "creator": "Ivan Nechepurenko and Marc Santora", - "title": "Illia Kyva Is Killed Near Moscow", - "link": "https://www.nytimes.com/2023/12/06/world/europe/illia-kyva-ukrainian-lawmaker-killed.html", - "pubDate": "Wed, 06 Dec 2023 21:38:29 +0000", - "dc:creator": "Ivan Nechepurenko and Marc Santora", - "content": "The lawmaker, Illia Kyva, called for Ukraine to surrender after Russia invaded. He was living in Russia, but Ukrainian authorities had sentenced him to prison in absentia on charges including treason.", - "contentSnippet": "The lawmaker, Illia Kyva, called for Ukraine to surrender after Russia invaded. He was living in Russia, but Ukrainian authorities had sentenced him to prison in absentia on charges including treason.", - "guid": "https://www.nytimes.com/2023/12/06/world/europe/illia-kyva-ukrainian-lawmaker-killed.html", - "categories": [ - { - "_": "Assassinations and Attempted Assassinations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defectors (Political)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Treason and Sedition", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kyva, Illia (d 2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T21:38:29.000Z" - }, - { - "creator": "Glenn Thrush", - "title": "U.S. Charges 4 Russian Soldiers With War Crimes Against an American", - "link": "https://www.nytimes.com/2023/12/06/us/russia-ukraine-war-crimes-hamas.html", - "pubDate": "Wed, 06 Dec 2023 20:29:32 +0000", - "dc:creator": "Glenn Thrush", - "content": "The Justice Department also said it had begun investigating the \u201cmurder of more than 30 Americans\u201d by Hamas fighters during the Oct. 7 attack in Israel.", - "contentSnippet": "The Justice Department also said it had begun investigating the \u201cmurder of more than 30 Americans\u201d by Hamas fighters during the Oct. 7 attack in Israel.", - "guid": "https://www.nytimes.com/2023/12/06/us/russia-ukraine-war-crimes-hamas.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Garland, Merrick B", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T20:29:32.000Z" - }, - { - "creator": "The Associated Press", - "title": "White House Urges Congress to Approve More Funding for Ukraine", - "link": "https://www.nytimes.com/video/us/politics/100000009209451/white-house-ukraine-aid.html", - "pubDate": "Mon, 04 Dec 2023 22:10:07 +0000", - "dc:creator": "The Associated Press", - "content": "Jake Sullivan, the White House national security adviser, said that improper funding would jeopardize Ukraine\u2019s ability to defend itself against Russia.", - "contentSnippet": "Jake Sullivan, the White House national security adviser, said that improper funding would jeopardize Ukraine\u2019s ability to defend itself against Russia.", - "guid": "https://www.nytimes.com/video/us/politics/100000009209451/white-house-ukraine-aid.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-04T22:10:07.000Z" - }, - { - "creator": "Valerie Hopkins and Nanna Heitmann", - "title": "A Russian Village Buries a Soldier, and Tries to Make Sense of the War", - "link": "https://www.nytimes.com/2023/12/01/world/europe/russian-soldier-burial-war.html", - "pubDate": "Sat, 02 Dec 2023 15:18:34 +0000", - "dc:creator": "Valerie Hopkins and Nanna Heitmann", - "content": "In Russia, the pain and loss of the war in Ukraine are felt most profoundly in small villages, where a soldier\u2019s burial produces not just grief but a yearning to find meaning in his death.", - "contentSnippet": "In Russia, the pain and loss of the war in Ukraine are felt most profoundly in small villages, where a soldier\u2019s burial produces not just grief but a yearning to find meaning in his death.", - "guid": "https://www.nytimes.com/2023/12/01/world/europe/russian-soldier-burial-war.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Funerals and Memorials", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "vis-photo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-02T15:18:34.000Z" - }, - { - "creator": "Christopher F. Schuetze", - "title": "German Spy Official Goes on Trial Accused of Selling Secrets to Russia", - "link": "https://www.nytimes.com/2023/12/14/world/europe/germany-spy-trial-russia.html", - "pubDate": "Fri, 15 Dec 2023 13:27:00 +0000", - "dc:creator": "Christopher F. Schuetze", - "content": "The trial, held under stringent security conditions and expected to last months, caps one of the gravest espionage scandals in recent German history.", - "contentSnippet": "The trial, held under stringent security conditions and expected to last months, caps one of the gravest espionage scandals in recent German history.", - "guid": "https://www.nytimes.com/2023/12/14/world/europe/germany-spy-trial-russia.html", - "categories": [ - { - "_": "Germany", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Classified Information and State Secrets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Linke, Carsten", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Federal Intelligence Service (Germany)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Federal Security Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T13:27:00.000Z" - }, - { - "creator": "Karoun Demirjian", - "title": "Schumer Delays Holiday Break, Pressing for Border Deal to Unlock Ukraine Aid", - "link": "https://www.nytimes.com/2023/12/14/us/senate-holiday-border-deal-ukraine.html", - "pubDate": "Fri, 15 Dec 2023 01:41:25 +0000", - "dc:creator": "Karoun Demirjian", - "content": "The majority leader said he would keep the Senate in session to allow time for an elusive immigration compromise, as Democrats criticized the G.O.P.-led House for leaving without helping Ukraine.", - "contentSnippet": "The majority leader said he would keep the Senate in session to allow time for an elusive immigration compromise, as Democrats criticized the G.O.P.-led House for leaving without helping Ukraine.", - "guid": "https://www.nytimes.com/2023/12/14/us/senate-holiday-border-deal-ukraine.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Immigration and Emigration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Democratic Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Homeland Security Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-15T01:41:25.000Z" - }, - { - "creator": "Valerie Hopkins and Anton Troianovski", - "title": "Putin Suggests He Has a Winning Hand in His War in Ukraine", - "link": "https://www.nytimes.com/2023/12/14/world/europe/putin-news-conference-russia-ukraine.html", - "pubDate": "Thu, 14 Dec 2023 21:35:14 +0000", - "dc:creator": "Valerie Hopkins and Anton Troianovski", - "content": "The Russian leader, in his annual news conference, said he was open to peace talks but showed no hint of compromise. \u201cPeace will come when we achieve our goals,\u201d he said.", - "contentSnippet": "The Russian leader, in his annual news conference, said he was open to peace talks but showed no hint of compromise. \u201cPeace will come when we achieve our goals,\u201d he said.", - "guid": "https://www.nytimes.com/2023/12/14/world/europe/putin-news-conference-russia-ukraine.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gershkovich, Evan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Political Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wall Street Journal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Whelan, Paul N", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T21:35:14.000Z" - }, - { - "creator": "Anatoly Kurmanaev", - "title": "How The Times Reported on the Convicts Sustaining Russia\u2019s Invasion", - "link": "https://www.nytimes.com/2023/12/13/insider/russian-prisoner-soldiers-investigation.html", - "pubDate": "Wed, 13 Dec 2023 22:23:04 +0000", - "dc:creator": "Anatoly Kurmanaev", - "content": "A team of Times journalists has provided the most comprehensive look yet at the largest military recruitment of inmates since World War II.", - "contentSnippet": "A team of Times journalists has provided the most comprehensive look yet at the largest military recruitment of inmates since World War II.", - "guid": "https://www.nytimes.com/2023/12/13/insider/russian-prisoner-soldiers-investigation.html", - "categories": [ - { - "_": "Amnesties, Commutations and Pardons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Crime and Criminals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T22:23:04.000Z" - }, - { - "title": "Putin \u2018Banking On\u2019 U.S. Failing to Deliver Aid to Ukraine, Biden Says", - "link": "https://www.nytimes.com/video/world/europe/100000009222541/putin-banking-on-us-failing-to-deliver-aid-to-ukraine-biden-says.html", - "pubDate": "Wed, 13 Dec 2023 14:19:19 +0000", - "content": "President Biden said he approved more aid for critical equipment for Ukraine.", - "contentSnippet": "President Biden said he approved more aid for critical equipment for Ukraine.", - "guid": "https://www.nytimes.com/video/world/europe/100000009222541/putin-banking-on-us-failing-to-deliver-aid-to-ukraine-biden-says.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T14:19:19.000Z" - }, - { - "creator": "Sabrina Tavernise, Luke Vander Ploeg, Shannon Lin, Lexie Diao, Michael Benoist, Marion Lozano, Dan Powell and Chris Wood", - "title": "Ukraine\u2019s Counteroffensive Fizzled. U.S. Funding May Be Next.", - "link": "https://www.nytimes.com/2023/12/12/podcasts/the-daily/ukraine-aid.html", - "pubDate": "Tue, 12 Dec 2023 11:00:16 +0000", - "dc:creator": "Sabrina Tavernise, Luke Vander Ploeg, Shannon Lin, Lexie Diao, Michael Benoist, Marion Lozano, Dan Powell and Chris Wood", - "content": "President Volodymyr Zelensky has arrived in Washington at a critical moment, both on the battlefield and on Capitol Hill.", - "contentSnippet": "President Volodymyr Zelensky has arrived in Washington at a critical moment, both on the battlefield and on Capitol Hill.", - "guid": "https://www.nytimes.com/2023/12/12/podcasts/the-daily/ukraine-aid.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-12T11:00:16.000Z" - }, - { - "creator": "Michael D. Shear and Karoun Demirjian", - "title": "Zelensky to Meet With Biden in Washington With U.S. Aid to Ukraine in Doubt", - "link": "https://www.nytimes.com/2023/12/10/us/politics/zelensky-washington-biden-congress.html", - "pubDate": "Sun, 10 Dec 2023 22:45:36 +0000", - "dc:creator": "Michael D. Shear and Karoun Demirjian", - "content": "Officials announced that the Ukrainian president would travel to Washington on Tuesday for a last-ditch lobbying effort with President Biden and members of Congress.", - "contentSnippet": "Officials announced that the Ukrainian president would travel to Washington on Tuesday for a last-ditch lobbying effort with President Biden and members of Congress.", - "guid": "https://www.nytimes.com/2023/12/10/us/politics/zelensky-washington-biden-congress.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Johnson, Mike (1972- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-10T22:45:36.000Z" - }, - { - "creator": "Jonathan Swan, Charlie Savage and Maggie Haberman", - "title": "Fears of a NATO Withdrawal Rise as Trump Seeks a Return to Power", - "link": "https://www.nytimes.com/2023/12/09/us/politics/trump-2025-nato.html", - "pubDate": "Sat, 09 Dec 2023 10:00:27 +0000", - "dc:creator": "Jonathan Swan, Charlie Savage and Maggie Haberman", - "content": "Current and former European diplomats said there was growing concern a second Trump presidency could mean an American retreat from the continent and a gutting of NATO.", - "contentSnippet": "Current and former European diplomats said there was growing concern a second Trump presidency could mean an American retreat from the continent and a gutting of NATO.", - "guid": "https://www.nytimes.com/2023/12/09/us/politics/trump-2025-nato.html", - "categories": [ - { - "_": "Presidential Election of 2024", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Trump, Donald J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "North Atlantic Treaty Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Treaties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-09T10:00:27.000Z" - }, - { - "creator": "Andrew Das and Tariq Panja", - "title": "Athletes From Russia and Belarus Are Cleared to Compete at Paris Olympics", - "link": "https://www.nytimes.com/2023/12/08/world/europe/olympics-russian-athletes-paris.html", - "pubDate": "Fri, 08 Dec 2023 20:34:55 +0000", - "dc:creator": "Andrew Das and Tariq Panja", - "content": "A decision by the International Olympic Committee paves the way for individuals from the two countries to take part over the objections of Ukraine and others.", - "contentSnippet": "A decision by the International Olympic Committee paves the way for individuals from the two countries to take part over the objections of Ukraine and others.", - "guid": "https://www.nytimes.com/2023/12/08/world/europe/olympics-russian-athletes-paris.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Athletics and Sports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Olympic Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Olympic Committee", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bach, Thomas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Paris (France)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Belarus", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-08T20:34:55.000Z" - }, - { - "creator": "Constant M\u00e9heut and Daria Mitiuk", - "title": "\u2018It\u2019s State Propaganda\u2019: Ukrainians Shun TV News as War Drags on", - "link": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-war-tv-news-telemarathon.html", - "pubDate": "Wed, 03 Jan 2024 20:30:13 +0000", - "dc:creator": "Constant M\u00e9heut and Daria Mitiuk", - "content": "A government-approved news program intended to counter Russian disinformation and boost morale is coming under criticism for painting a rosy picture of the war.", - "contentSnippet": "A government-approved news program intended to counter Russian disinformation and boost morale is coming under criticism for painting a rosy picture of the war.", - "guid": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-war-tv-news-telemarathon.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Censorship", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freedom of Speech and Expression", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Television Sets and Media Devices", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-03T20:30:13.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Buildings Smolder After Russian Air Attacks on Kyiv", - "link": "https://www.nytimes.com/video/world/europe/100000009247023/buildings-smolder-after-russian-air-attacks-on-kyiv.html", - "pubDate": "Wed, 03 Jan 2024 15:24:18 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "First responders put out fires after Russia bombarded the Ukrainian capital with missiles and drones.", - "contentSnippet": "First responders put out fires after Russia bombarded the Ukrainian capital with missiles and drones.", - "guid": "https://www.nytimes.com/video/world/europe/100000009247023/buildings-smolder-after-russian-air-attacks-on-kyiv.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kyiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-03T15:24:18.000Z" - }, - { - "creator": "Constant M\u00e9heut and Anatoly Kurmanaev", - "title": "Russian Missiles Hammer Kyiv in Large-Scale Attack on Ukraine", - "link": "https://www.nytimes.com/2024/01/02/world/europe/missiles-ukraine-war-attack-russia.html", - "pubDate": "Tue, 02 Jan 2024 17:48:12 +0000", - "dc:creator": "Constant M\u00e9heut and Anatoly Kurmanaev", - "content": "Russia said that Ukraine retaliated hours later with missile attacks on Russian territory, part of an escalating cycle of air assaults between the two countries.", - "contentSnippet": "Russia said that Ukraine retaliated hours later with missile attacks on Russian territory, part of an escalating cycle of air assaults between the two countries.", - "guid": "https://www.nytimes.com/2024/01/02/world/europe/missiles-ukraine-war-attack-russia.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drones (Pilotless Planes)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kyiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-02T17:48:12.000Z" - }, - { - "creator": "Anatoly Kurmanaev and Constant M\u00e9heut", - "title": "Putin Vows to Keep Up Bombardment After a Russian City Is Hit", - "link": "https://www.nytimes.com/2024/01/01/world/europe/ukraine-russia-putin-belgorod.html", - "pubDate": "Mon, 01 Jan 2024 23:48:31 +0000", - "dc:creator": "Anatoly Kurmanaev and Constant M\u00e9heut", - "content": "President Vladimir V. Putin of Russia says his country will continue targeting Ukrainian cities in retaliation for a deadly attack on the city of Belgorod on Saturday.", - "contentSnippet": "President Vladimir V. Putin of Russia says his country will continue targeting Ukrainian cities in retaliation for a deadly attack on the city of Belgorod on Saturday.", - "guid": "https://www.nytimes.com/2024/01/01/world/europe/ukraine-russia-putin-belgorod.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Belgorod (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kharkiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Lviv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-01T23:48:31.000Z" - }, - { - "creator": "Constant M\u00e9heut and Anton Troianovski", - "title": "Putin and Zelensky Address Their Citizens on New Year\u2019s Eve", - "link": "https://www.nytimes.com/2023/12/31/world/europe/russia-ukraine-kharkiv-airstrikes.html", - "pubDate": "Mon, 01 Jan 2024 05:02:44 +0000", - "dc:creator": "Constant M\u00e9heut and Anton Troianovski", - "content": "The message of resilience offered by Ukraine\u2019s leader, Volodymyr Zelensky\u2019s message, contrasted sharply with that of President Vladimir V. Putin, who glossed over the war in an effort to project a sense of normality.", - "contentSnippet": "The message of resilience offered by Ukraine\u2019s leader, Volodymyr Zelensky\u2019s message, contrasted sharply with that of President Vladimir V. Putin, who glossed over the war in an effort to project a sense of normality.", - "guid": "https://www.nytimes.com/2023/12/31/world/europe/russia-ukraine-kharkiv-airstrikes.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drones (Pilotless Planes)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Belgorod (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kyiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kharkiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-01T05:02:44.000Z" - }, - { - "creator": "Marc Santora", - "title": "Ukraine Intensifies Guerrilla Tactics, Targeting Trains", - "link": "https://www.nytimes.com/2023/12/31/world/europe/ukraine-russia-train-sabotage.html", - "pubDate": "Sun, 31 Dec 2023 17:24:24 +0000", - "dc:creator": "Marc Santora", - "content": "As conventional forces struggle to break through defensive lines, both sides are increasingly turning to guerrilla tactics.", - "contentSnippet": "As conventional forces struggle to break through defensive lines, both sides are increasingly turning to guerrilla tactics.", - "guid": "https://www.nytimes.com/2023/12/31/world/europe/ukraine-russia-train-sabotage.html", - "categories": [ - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Railroads", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bridges and Tunnels", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-31T17:24:24.000Z" - }, - { - "creator": "Constant M\u00e9heut and Ivan Nechepurenko", - "title": "Ukrainian Missile Attack on Belgorod Kills at Least 18, Officials Say", - "link": "https://www.nytimes.com/2023/12/30/world/europe/ukraine-russia-belgorod-attacks.html", - "pubDate": "Sun, 31 Dec 2023 08:02:46 +0000", - "dc:creator": "Constant M\u00e9heut and Ivan Nechepurenko", - "content": "The bombardment of Belgorod on Saturday, apparently in response to an enormous air assault by Moscow a day earlier, appeared to be the deadliest single attack on Russian soil since the start of the war.", - "contentSnippet": "The bombardment of Belgorod on Saturday, apparently in response to an enormous air assault by Moscow a day earlier, appeared to be the deadliest single attack on Russian soil since the start of the war.", - "guid": "https://www.nytimes.com/2023/12/30/world/europe/ukraine-russia-belgorod-attacks.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Belgorod (Russia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-31T08:02:46.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "How a Russian Barrage Evaded Ukraine\u2019s Defenses to Wreak Deadly Chaos", - "link": "https://www.nytimes.com/2023/12/30/world/europe/russia-ukraine-missiles-kyiv.html", - "pubDate": "Sun, 31 Dec 2023 07:55:08 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "In one of the war\u2019s largest bombardments, 35 missiles slipped through Ukraine\u2019s air cover on Friday, killing dozens. Ukraine responded with shelling on the Russian region of Belgorod, killing at least 22.", - "contentSnippet": "In one of the war\u2019s largest bombardments, 35 missiles slipped through Ukraine\u2019s air cover on Friday, killing dozens. Ukraine responded with shelling on the Russian region of Belgorod, killing at least 22.", - "guid": "https://www.nytimes.com/2023/12/30/world/europe/russia-ukraine-missiles-kyiv.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drones (Pilotless Planes)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-31T07:55:08.000Z" - }, - { - "creator": "Carlotta Gall, Oleksandr Chubko, Cora Engelbrecht and Daniel Berehulak", - "title": "Ukraine's Stolen Children: Forced Separations and Abductions by Russia", - "link": "https://www.nytimes.com/interactive/2023/12/26/world/europe/ukraine-war-children-russia.html", - "pubDate": "Sun, 31 Dec 2023 02:20:04 +0000", - "dc:creator": "Carlotta Gall, Oleksandr Chubko, Cora Engelbrecht and Daniel Berehulak", - "content": "Thousands of young Ukrainians were separated from their parents by the Russian authorities in the early stages of the war. They are among the most forlorn victims of the invasion.", - "contentSnippet": "Thousands of young Ukrainians were separated from their parents by the Russian authorities in the early stages of the war. They are among the most forlorn victims of the invasion.", - "guid": "https://www.nytimes.com/interactive/2023/12/26/world/europe/ukraine-war-children-russia.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-31T02:20:04.000Z" - }, - { - "creator": "Anton Troianovski, Yuliya Parshina-Kottas, Oleg Matsnev, Alina Lobzina, Valerie Hopkins and Aaron Krolik", - "title": "How Russia Silences Dissent about the Ukraine War", - "link": "https://www.nytimes.com/interactive/2023/12/29/world/europe/russia-ukraine-war-censorship.html", - "pubDate": "Sat, 30 Dec 2023 17:25:55 +0000", - "dc:creator": "Anton Troianovski, Yuliya Parshina-Kottas, Oleg Matsnev, Alina Lobzina, Valerie Hopkins and Aaron Krolik", - "content": "A law making it illegal to discredit Russia\u2019s army has ensnared thousands of Russians for even mild acts or statements against the war.", - "contentSnippet": "A law making it illegal to discredit Russia\u2019s army has ensnared thousands of Russians for even mild acts or statements against the war.", - "guid": "https://www.nytimes.com/interactive/2023/12/29/world/europe/russia-ukraine-war-censorship.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Surveillance of Citizens by Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Censorship", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freedom of Speech and Expression", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-30T17:25:55.000Z" - }, - { - "creator": "Lara Jakes", - "title": "As War Rages in Ukraine, Denmark Turns an Office Park Back Into an Arsenal", - "link": "https://www.nytimes.com/2023/12/30/world/europe/ukraine-war-denmark-ammunition.html", - "pubDate": "Sat, 30 Dec 2023 10:00:20 +0000", - "dc:creator": "Lara Jakes", - "content": "The conflict and surging arms production in Russia have spurred demand for ammunition manufacturing across Europe.", - "contentSnippet": "The conflict and surging arms production in Russia have spurred demand for ammunition manufacturing across Europe.", - "guid": "https://www.nytimes.com/2023/12/30/world/europe/ukraine-war-denmark-ammunition.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-30T10:00:20.000Z" - }, - { - "creator": "Constant M\u00e9heut and Daria Mitiuk", - "title": "At Least 30 Killed in Ukraine After Russian Missile Attacks", - "link": "https://www.nytimes.com/2023/12/29/world/europe/russia-ukraine-missile-attacks.html", - "pubDate": "Sat, 30 Dec 2023 02:56:19 +0000", - "dc:creator": "Constant M\u00e9heut and Daria Mitiuk", - "content": "The missile and drone attacks killed at least 30 people and damaged critical industrial and military infrastructure, part of a wintertime campaign that Ukraine had been dreading.", - "contentSnippet": "The missile and drone attacks killed at least 30 people and damaged critical industrial and military infrastructure, part of a wintertime campaign that Ukraine had been dreading.", - "guid": "https://www.nytimes.com/2023/12/29/world/europe/russia-ukraine-missile-attacks.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-30T02:56:19.000Z" - }, - { - "creator": "The New York Times", - "title": "Russia Launches Widespread Air Attack on Ukrainian Cities", - "link": "https://www.nytimes.com/video/world/europe/100000009244007/kyiv-strike-ukraine-russia.html", - "pubDate": "Fri, 29 Dec 2023 16:23:49 +0000", - "dc:creator": "The New York Times", - "content": "Ukrainian officials said more than two dozen people were killed in missile and drone attacks across the country over several hours.", - "contentSnippet": "Ukrainian officials said more than two dozen people were killed in missile and drone attacks across the country over several hours.", - "guid": "https://www.nytimes.com/video/world/europe/100000009244007/kyiv-strike-ukraine-russia.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-29T16:23:49.000Z" - }, - { - "creator": "Andrew E. Kramer", - "title": "Christmas Moves to Dec. 25 in Ukraine, Another Rebuff of Russia", - "link": "https://www.nytimes.com/2023/12/25/world/europe/ukraine-russia-christmas-ukrainian-orthodox-church.html", - "pubDate": "Fri, 29 Dec 2023 13:03:25 +0000", - "dc:creator": "Andrew E. Kramer", - "content": "The Ukrainian Orthodox Church formally changed the main date for the festivities, departing from the Russian tradition of celebrating on Jan. 7, according to the Julian calendar.", - "contentSnippet": "The Ukrainian Orthodox Church formally changed the main date for the festivities, departing from the Russian tradition of celebrating on Jan. 7, according to the Julian calendar.", - "guid": "https://www.nytimes.com/2023/12/25/world/europe/ukraine-russia-christmas-ukrainian-orthodox-church.html", - "categories": [ - { - "_": "Christmas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Orthodox Church", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukrainian Orthodox Church", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-29T13:03:25.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Russia Retakes Some Land Hard Won by Ukraine During Counteroffensive", - "link": "https://www.nytimes.com/2023/12/28/world/europe/russia-ukraine-war.html", - "pubDate": "Thu, 28 Dec 2023 15:41:01 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "Russia\u2019s recent progress around the southern village of Robotyne is a sobering development for Ukraine amid dwindling Western military aid.", - "contentSnippet": "Russia\u2019s recent progress around the southern village of Robotyne is a sobering development for Ukraine amid dwindling Western military aid.", - "guid": "https://www.nytimes.com/2023/12/28/world/europe/russia-ukraine-war.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Robotyne (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-28T15:41:01.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Ukraine Attacks Novocherkassk, a Russian Warship, in Crimea", - "link": "https://www.nytimes.com/2023/12/26/world/europe/ukraine-crimea-russia-warship-novocherkassk.html", - "pubDate": "Wed, 27 Dec 2023 09:04:43 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "A major military success at sea against Russia\u2019s Black Sea Fleet was tempered by Ukraine\u2019s acknowledgment that it had all but retreated from the city of Marinka.", - "contentSnippet": "A major military success at sea against Russia\u2019s Black Sea Fleet was tempered by Ukraine\u2019s acknowledgment that it had all but retreated from the city of Marinka.", - "guid": "https://www.nytimes.com/2023/12/26/world/europe/ukraine-crimea-russia-warship-novocherkassk.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Marinka (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Black Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Crimea (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-27T09:04:43.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Ukraine Says It Downed 5 Russian Planes, as Moscow Claims It Seized a Town", - "link": "https://www.nytimes.com/2023/12/25/world/europe/ukraine-downs-planes-russia-claims-town.html", - "pubDate": "Tue, 26 Dec 2023 04:23:34 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "Russia said it now had full control of the eastern town of Marinka. On Tuesday, Ukraine claimed to have destroyed a Russian ship.", - "contentSnippet": "Russia said it now had full control of the eastern town of Marinka. On Tuesday, Ukraine claimed to have destroyed a Russian ship.", - "guid": "https://www.nytimes.com/2023/12/25/world/europe/ukraine-downs-planes-russia-claims-town.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Military Aircraft", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-26T04:23:34.000Z" - }, - { - "creator": "Patricia Cohen", - "title": "Red Sea Shipping Halt Is Latest Risk to Global Economy", - "link": "https://www.nytimes.com/2023/12/24/business/economy/global-economic-risks-red-sea.html", - "pubDate": "Sun, 24 Dec 2023 22:12:55 +0000", - "dc:creator": "Patricia Cohen", - "content": "Next year could see increasing volatility as persistent military conflicts and economic uncertainty influence voting in national elections across the globe.", - "contentSnippet": "Next year could see increasing volatility as persistent military conflicts and economic uncertainty influence voting in national elections across the globe.", - "guid": "https://www.nytimes.com/2023/12/24/business/economy/global-economic-risks-red-sea.html", - "categories": [ - { - "_": "United States Economy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Presidential Election of 2024", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Trade and World Market", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supply Chain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freight (Cargo)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Red Sea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-24T22:12:55.000Z" - }, - { - "creator": "Marc Santora", - "title": "He Was Ready to Die, but Not to Surrender", - "link": "https://www.nytimes.com/2023/12/24/world/europe/ukraine-mariupol-azpvstal.html", - "pubDate": "Sun, 24 Dec 2023 10:00:46 +0000", - "dc:creator": "Marc Santora", - "content": "How a Ukrainian soldier escaped from the embattled Azovstal steel complex in Mariupol and sneaked 125 miles to Ukrainian territory.", - "contentSnippet": "How a Ukrainian soldier escaped from the embattled Azovstal steel complex in Mariupol and sneaked 125 miles to Ukrainian territory.", - "guid": "https://www.nytimes.com/2023/12/24/world/europe/ukraine-mariupol-azpvstal.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mariupol (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Azovstal", - "$": { - "domain": "" - } - }, - { - "_": "Azov brigade", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-24T10:00:46.000Z" - }, - { - "creator": "Andrew Higgins", - "title": "Putin\u2019s Drive to Rewrite History Snares a Retired Lithuanian Judge", - "link": "https://www.nytimes.com/2024/01/04/world/europe/putin-russia-lithuania-judge.html", - "pubDate": "Thu, 04 Jan 2024 10:04:03 +0000", - "dc:creator": "Andrew Higgins", - "content": "A few years ago, Kornelija Maceviciene ruled against Soviet officers for a brutal crackdown on pro-independence protesters in her country in 1991. That has made her a target for a Russian court.", - "contentSnippet": "A few years ago, Kornelija Maceviciene ruled against Soviet officers for a brutal crackdown on pro-independence protesters in her country in 1991. That has made her a target for a Russian court.", - "guid": "https://www.nytimes.com/2024/01/04/world/europe/putin-russia-lithuania-judge.html", - "categories": [ - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Demonstrations, Protests and Riots", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Lithuania", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "USSR (Former Soviet Union)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T10:04:03.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "A Trophy in Ruins: Evidence Grows That Russia Controls Marinka", - "link": "https://www.nytimes.com/2024/01/04/world/europe/ukraine-war-marinka-russia.html", - "pubDate": "Thu, 04 Jan 2024 13:39:23 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "Ukraine said it was defending territory behind the eastern frontline town. Its capture would be Russia\u2019s most significant territorial advance in Ukraine in more than six months.", - "contentSnippet": "Ukraine said it was defending territory behind the eastern frontline town. Its capture would be Russia\u2019s most significant territorial advance in Ukraine in more than six months.", - "guid": "https://www.nytimes.com/2024/01/04/world/europe/ukraine-war-marinka-russia.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Donbas (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Donetsk (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Marinka (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T13:39:23.000Z" - }, - { - "creator": "German Lopez", - "title": "Beyond the Front Lines", - "link": "https://www.nytimes.com/2024/01/05/briefing/ukraine-russia-war-new-phase.html", - "pubDate": "Fri, 05 Jan 2024 11:27:25 +0000", - "dc:creator": "German Lopez", - "content": "The war in Ukraine has entered a new phase.", - "contentSnippet": "The war in Ukraine has entered a new phase.", - "guid": "https://www.nytimes.com/2024/01/05/briefing/ukraine-russia-war-new-phase.html", - "categories": [ - { - "_": "internal-storyline-no", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-05T11:27:25.000Z" - }, - { - "creator": "Michael D. Shear and David E. Sanger", - "title": "White House Says North Korea Providing Russia With Ballistic Missiles", - "link": "https://www.nytimes.com/2024/01/04/us/politics/north-korea-russia-missiles.html", - "pubDate": "Thu, 04 Jan 2024 21:23:15 +0000", - "dc:creator": "Michael D. Shear and David E. Sanger", - "content": "Russia has rebuilt its own domestic supply of cruise missiles, but to keep up with the intensity of the barrage against Ukraine, it has been turning to North Korea and Iran.", - "contentSnippet": "Russia has rebuilt its own domestic supply of cruise missiles, but to keep up with the intensity of the barrage against Ukraine, it has been turning to North Korea and Iran.", - "guid": "https://www.nytimes.com/2024/01/04/us/politics/north-korea-russia-missiles.html", - "categories": [ - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kim Jong-un", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kirby, John F", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "North Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T21:23:15.000Z" - }, - { - "creator": "Lara Jakes and Christopher F. Schuetze", - "title": "Zelensky Visits Baltic Nations to Rally Support for Ukraine", - "link": "https://www.nytimes.com/2024/01/10/world/europe/ukraine-war-support-europe.html", - "pubDate": "Wed, 10 Jan 2024 14:02:04 +0000", - "dc:creator": "Lara Jakes and Christopher F. Schuetze", - "content": "President Volodymyr Zelensky of Ukraine is likely to find strong backing on a trip to the Baltic States, but other nations are increasingly wary.", - "contentSnippet": "President Volodymyr Zelensky of Ukraine is likely to find strong backing on a trip to the Baltic States, but other nations are increasingly wary.", - "guid": "https://www.nytimes.com/2024/01/10/world/europe/ukraine-war-support-europe.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Baltic Region", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "European Commission", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "North Atlantic Treaty Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T14:02:04.000Z" - }, - { - "creator": "Jennifer Szalai", - "title": "Book Review: \u2018Our Enemies Will Vanish,\u2019 by Yaroslav Trofimov", - "link": "https://www.nytimes.com/2024/01/10/books/review/our-enemies-will-vanish-yaroslav-trofimov.html", - "pubDate": "Wed, 10 Jan 2024 10:01:11 +0000", - "dc:creator": "Jennifer Szalai", - "content": "Yaroslav Trofimov grew up in Kyiv. \u201cOur Enemies Will Vanish\u201d records his experience as a journalist for The Wall Street Journal assigned to cover the war.", - "contentSnippet": "Yaroslav Trofimov grew up in Kyiv. \u201cOur Enemies Will Vanish\u201d records his experience as a journalist for The Wall Street Journal assigned to cover the war.", - "guid": "https://www.nytimes.com/2024/01/10/books/review/our-enemies-will-vanish-yaroslav-trofimov.html", - "categories": [ - { - "_": "Books and Literature", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Trofimov, Yaroslav", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Our Enemies Will Vanish: The Russian Invasion and Ukraine's War of Independence (Book)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T10:01:11.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Russian Missiles Pound Ukraine, Officials Say", - "link": "https://www.nytimes.com/2024/01/08/world/europe/ukraine-russia-missiles.html", - "pubDate": "Mon, 08 Jan 2024 20:05:51 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "The attack killed at least four people, wounded many others and caused heavy damage. It came as Moscow has intensified air assaults in recent days.", - "contentSnippet": "The attack killed at least four people, wounded many others and caused heavy damage. It came as Moscow has intensified air assaults in recent days.", - "guid": "https://www.nytimes.com/2024/01/08/world/europe/ukraine-russia-missiles.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kryvyi Rih (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kharkiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-08T20:05:51.000Z" - }, - { - "creator": "Reuters and The Associated Press", - "title": "Ukrainian Residential Buildings Destroyed by Russian Air Assault", - "link": "https://www.nytimes.com/video/world/europe/100000009255111/ukraine-russia-missile-attack.html", - "pubDate": "Mon, 08 Jan 2024 20:05:10 +0000", - "dc:creator": "Reuters and The Associated Press", - "content": "Some civilians sheltered in subway stations as Russia launched a widespread missile attack on regions across Ukraine.", - "contentSnippet": "Some civilians sheltered in subway stations as Russia launched a widespread missile attack on regions across Ukraine.", - "guid": "https://www.nytimes.com/video/world/europe/100000009255111/ukraine-russia-missile-attack.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-08T20:05:10.000Z" - }, - { - "creator": "Carlotta Gall, Vladyslav Golovin and Mauricio Lima", - "title": "Exhausted, on the Defensive and at \u2018Hell\u2019s Gate\u2019 in Ukraine", - "link": "https://www.nytimes.com/2024/01/08/world/europe/ukraine-troops-exhausted-defensive.html", - "pubDate": "Mon, 08 Jan 2024 14:08:16 +0000", - "dc:creator": "Carlotta Gall, Vladyslav Golovin and Mauricio Lima", - "content": "The country\u2019s forces along a broad stretch of the front say that, with Russia pushing forward, the war has never been so dangerous.", - "contentSnippet": "The country\u2019s forces along a broad stretch of the front say that, with Russia pushing forward, the war has never been so dangerous.", - "guid": "https://www.nytimes.com/2024/01/08/world/europe/ukraine-troops-exhausted-defensive.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drones (Pilotless Planes)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Zaporizhzhia (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Donetsk (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-08T14:08:16.000Z" - }, - { - "creator": "Tyler Hicks and Marc Santora", - "title": "\u2018Two Men Down\u2019: For Ukrainian Medics, It Was Time to Move", - "link": "https://www.nytimes.com/2024/01/07/world/europe/ukraine-medics-war-russia.html", - "pubDate": "Mon, 08 Jan 2024 03:38:12 +0000", - "dc:creator": "Tyler Hicks and Marc Santora", - "content": "They are the first line of treatment for soldiers wounded on the battlefield, racing against time to try to save lives.", - "contentSnippet": "They are the first line of treatment for soldiers wounded on the battlefield, racing against time to try to save lives.", - "guid": "https://www.nytimes.com/2024/01/07/world/europe/ukraine-medics-war-russia.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-08T03:38:12.000Z" - }, - { - "creator": "David E. Sanger and Steven Erlanger", - "title": "From Lebanon to the Red Sea, a Broader Conflict With Iran Looms", - "link": "https://www.nytimes.com/2024/01/07/us/politics/iran-us-israel-conflict.html", - "pubDate": "Sun, 07 Jan 2024 21:02:38 +0000", - "dc:creator": "David E. Sanger and Steven Erlanger", - "content": "With its proxies attacking from many vantage points and its nuclear program suddenly revived, Iran is posing a new challenge to the West \u2014 this time with Russia and China on its side.", - "contentSnippet": "With its proxies attacking from many vantage points and its nuclear program suddenly revived, Iran is posing a new challenge to the West \u2014 this time with Russia and China on its side.", - "guid": "https://www.nytimes.com/2024/01/07/us/politics/iran-us-israel-conflict.html", - "categories": [ - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nuclear Weapons", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hezbollah", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Houthis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-07T21:02:38.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Ukraine Says Russian Attacks Kill 11 Civilians", - "link": "https://www.nytimes.com/2024/01/06/world/europe/ukraine-russia-missile-strikes-donetsk.html", - "pubDate": "Sat, 06 Jan 2024 20:45:20 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "Ukrainian officials said missile assaults had struck private houses, trapping residents under the rubble, and that the dead included five children.", - "contentSnippet": "Ukrainian officials said missile assaults had struck private houses, trapping residents under the rubble, and that the dead included five children.", - "guid": "https://www.nytimes.com/2024/01/06/world/europe/ukraine-russia-missile-strikes-donetsk.html", - "categories": [ - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rescues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Donetsk (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pokrovsk (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-06T20:45:20.000Z" - }, - { - "creator": "Marc Santora", - "title": "Ukraine\u2019s Patriot Defenses at Work: Shuddering Booms and Bursts of Light", - "link": "https://www.nytimes.com/2024/01/06/world/europe/ukraine-patriots-us.html", - "pubDate": "Sat, 06 Jan 2024 16:38:54 +0000", - "dc:creator": "Marc Santora", - "content": "The American-provided air-defense systems have helped Ukraine defend itself against Russian assaults, but Washington has warned that it will not be able to keep them supplied for much longer.", - "contentSnippet": "The American-provided air-defense systems have helped Ukraine defend itself against Russian assaults, but Washington has warned that it will not be able to keep them supplied for much longer.", - "guid": "https://www.nytimes.com/2024/01/06/world/europe/ukraine-patriots-us.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Military Aircraft", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-06T16:38:54.000Z" - }, - { - "creator": "Ivan Nechepurenko", - "title": "Putin Aims to Strengthen Russia\u2019s Military by Easing Citizenship for Foreigners", - "link": "https://www.nytimes.com/2024/01/05/world/europe/putin-russia-army-foreigners-citizenship.html", - "pubDate": "Fri, 05 Jan 2024 14:02:08 +0000", - "dc:creator": "Ivan Nechepurenko", - "content": "President Vladimir V. Putin is seeking to strengthen his military to fight in Ukraine while avoiding a potentially unpopular mobilization of Russians.", - "contentSnippet": "President Vladimir V. Putin is seeking to strengthen his military to fight in Ukraine while avoiding a potentially unpopular mobilization of Russians.", - "guid": "https://www.nytimes.com/2024/01/05/world/europe/putin-russia-army-foreigners-citizenship.html", - "categories": [ - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Citizenship and Naturalization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Workers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Draft and Recruitment (Military)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-05T14:02:08.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "U.K. to Pledge $3 Billion in Military Aid to Ukraine", - "link": "https://www.nytimes.com/2024/01/12/world/europe/uk-ukraine-military-aid.html", - "pubDate": "Fri, 12 Jan 2024 10:44:17 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "The British package is part of an effort to offer reassurance to Kyiv amid concerns about a potential shortfall in Western support.", - "contentSnippet": "The British package is part of an effort to offer reassurance to Kyiv amid concerns about a potential shortfall in Western support.", - "guid": "https://www.nytimes.com/2024/01/12/world/europe/uk-ukraine-military-aid.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sunak, Rishi (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kyiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-12T10:44:17.000Z" - }, - { - "creator": "Lara Jakes and David E. Sanger", - "title": "Iran\u2019s Missile Capability Is Forcing the West to Weigh a Response", - "link": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-missile-program.html", - "pubDate": "Thu, 18 Jan 2024 11:32:14 +0000", - "dc:creator": "Lara Jakes and David E. Sanger", - "content": "Last year, the world discovered that Iran\u2019s drones were becoming world-class threats and a favorite of the Russians. Now, its revived missile fleet is drawing attention, too.", - "contentSnippet": "Last year, the world discovered that Iran\u2019s drones were becoming world-class threats and a favorite of the Russians. Now, its revived missile fleet is drawing attention, too.", - "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-missile-program.html", - "categories": [ - { - "_": "Iran", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Syria", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Islamic Revolutionary Guards Corps", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Iraq", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Abu Dhabi (United Arab Emirates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Baluchistan (Pakistan)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "internal-storyline-no", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T11:32:14.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Polish Truckers Lift Border Blockade With Ukraine", - "link": "https://www.nytimes.com/2024/01/17/world/europe/ukraine-poland-truckers-blockade.html", - "pubDate": "Wed, 17 Jan 2024 11:49:57 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "The suspension of the protest until March, while its leaders talk with the Polish government, promises some relief for Ukraine\u2019s flagging economy.", - "contentSnippet": "The suspension of the protest until March, while its leaders talk with the Polish government, promises some relief for Ukraine\u2019s flagging economy.", - "guid": "https://www.nytimes.com/2024/01/17/world/europe/ukraine-poland-truckers-blockade.html", - "categories": [ - { - "_": "Trucks and Trucking", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kyiv (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Poland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T11:49:57.000Z" - }, - { - "creator": "Erica L. Green and Michael D. Shear", - "title": "Biden Invites Congressional Leaders to White House to Discuss Aid to Ukraine", - "link": "https://www.nytimes.com/2024/01/16/us/politics/biden-congressional-leaders-ukraine.html", - "pubDate": "Tue, 16 Jan 2024 23:03:12 +0000", - "dc:creator": "Erica L. Green and Michael D. Shear", - "content": "President Biden\u2019s request for more than $110 billion in assistance for Ukraine, Israel and the border, has been held up by a dispute with Republicans on Capitol Hill.", - "contentSnippet": "President Biden\u2019s request for more than $110 billion in assistance for Ukraine, Israel and the border, has been held up by a dispute with Republicans on Capitol Hill.", - "guid": "https://www.nytimes.com/2024/01/16/us/politics/biden-congressional-leaders-ukraine.html", - "categories": [ - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-16T23:03:12.000Z" - }, - { - "creator": "Andrew E. Kramer, Jim Tankersley and Jordyn Holman", - "title": "Zelensky Calls for Peace, Not More Weapons, in Davos", - "link": "https://www.nytimes.com/2024/01/16/world/europe/ukraine-zelensky-davos-switzerland-peace.html", - "pubDate": "Tue, 16 Jan 2024 17:40:53 +0000", - "dc:creator": "Andrew E. Kramer, Jim Tankersley and Jordyn Holman", - "content": "In a speech in Switzerland, the Ukrainian president asked for more sanctions on Moscow, but he did not appeal for weaponry for new offenses.", - "contentSnippet": "In a speech in Switzerland, the Ukrainian president asked for more sanctions on Moscow, but he did not appeal for weaponry for new offenses.", - "guid": "https://www.nytimes.com/2024/01/16/world/europe/ukraine-zelensky-davos-switzerland-peace.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Peace Process", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "World Economic Forum", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Switzerland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-16T17:40:53.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "The War Has Reined In Ukraine\u2019s Oligarchs, at Least for Now", - "link": "https://www.nytimes.com/2024/01/15/world/europe/ukraine-oligarchs-crackdown.html", - "pubDate": "Mon, 15 Jan 2024 19:57:07 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "Oligarchs have lost billions from the shelling of their factories, and the government has used its wartime powers to break their political influence.", - "contentSnippet": "Oligarchs have lost billions from the shelling of their factories, and the government has used its wartime powers to break their political influence.", - "guid": "https://www.nytimes.com/2024/01/15/world/europe/ukraine-oligarchs-crackdown.html", - "categories": [ - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Corruption (Institutional)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bribery and Kickbacks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Akhmetov, Rinat", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Firtash, Dmitry V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kolomoisky, Igor V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-15T19:57:07.000Z" - }, - { - "creator": "Lynsey Addario and Megan Specia", - "title": "War or No War, Many Older Ukrainians Want to Stay Put", - "link": "https://www.nytimes.com/2024/01/14/world/europe/ukraine-russia-war-elderly.html", - "pubDate": "Sun, 14 Jan 2024 19:02:26 +0000", - "dc:creator": "Lynsey Addario and Megan Specia", - "content": "The front line in Ukraine is largely peopled by the elderly these days. Some can\u2019t afford to get out. Others say they won\u2019t abandon their homes.", - "contentSnippet": "The front line in Ukraine is largely peopled by the elderly these days. Some can\u2019t afford to get out. Others say they won\u2019t abandon their homes.", - "guid": "https://www.nytimes.com/2024/01/14/world/europe/ukraine-russia-war-elderly.html", - "categories": [ - { - "_": "vis-photo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Elderly", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-14T19:02:26.000Z" - }, - { - "creator": "Thomas Gibbons-Neff and Finbarr O\u2019Reilly", - "title": "Russia Regains Upper Hand in Ukraine\u2019s East as Kyiv\u2019s Troops Flag", - "link": "https://www.nytimes.com/2024/01/13/world/europe/ukraine-russia-war.html", - "pubDate": "Sat, 13 Jan 2024 20:07:59 +0000", - "dc:creator": "Thomas Gibbons-Neff and Finbarr O\u2019Reilly", - "content": "Ukrainians are weary, short of ammunition and outnumbered, and their prospects look bleak. \u201cWe can stop them for now, but who knows,\u201d one soldier said. \u201cTomorrow or the next day, maybe we can\u2019t stop them.\u201d", - "contentSnippet": "Ukrainians are weary, short of ammunition and outnumbered, and their prospects look bleak. \u201cWe can stop them for now, but who knows,\u201d one soldier said. \u201cTomorrow or the next day, maybe we can\u2019t stop them.\u201d", - "guid": "https://www.nytimes.com/2024/01/13/world/europe/ukraine-russia-war.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Avdiivka (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Donbas (Ukraine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-13T20:07:59.000Z" - }, - { - "creator": "Constant M\u00e9heut", - "title": "Russia Launches Large-Scale Missile Attack on Ukraine", - "link": "https://www.nytimes.com/2024/01/13/world/europe/russia-ukraine-missile-attacks.html", - "pubDate": "Sat, 13 Jan 2024 18:03:29 +0000", - "dc:creator": "Constant M\u00e9heut", - "content": "The assault was in line with a wider air campaign that Russia began in late December, seeking to wear down Ukrainian air defenses.", - "contentSnippet": "The assault was in line with a wider air campaign that Russia began in late December, seeking to wear down Ukrainian air defenses.", - "guid": "https://www.nytimes.com/2024/01/13/world/europe/russia-ukraine-missile-attacks.html", - "categories": [ - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-13T18:03:29.000Z" - }, - { - "creator": "Lara Jakes", - "title": "U.S. Military Aid to Ukraine Was Poorly Tracked, Pentagon Report Says", - "link": "https://www.nytimes.com/2024/01/11/world/europe/us-military-aid-ukraine.html", - "pubDate": "Thu, 11 Jan 2024 22:59:07 +0000", - "dc:creator": "Lara Jakes", - "content": "The report found that American officials and diplomats had failed to quickly or fully account for all of the nearly 40,000 weapons sent to the front.", - "contentSnippet": "The report found that American officials and diplomats had failed to quickly or fully account for all of the nearly 40,000 weapons sent to the front.", - "guid": "https://www.nytimes.com/2024/01/11/world/europe/us-military-aid-ukraine.html", - "categories": [ - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-11T22:59:07.000Z" - }, - { - "creator": "Andrew Higgins", - "title": "Slovakia to Halt Arms Deliveries to Ukraine, as New Leader Promised", - "link": "https://www.nytimes.com/2023/10/26/world/europe/slovakia-weapons-ukraine-war.html", - "pubDate": "Thu, 26 Oct 2023 19:00:22 +0000", - "dc:creator": "Andrew Higgins", - "content": "The newly appointed prime minister, Robert Fico, whose party aligned with pro-Russian forces during the recent election campaign, had promised \u201cnot to send a single cartridge\u201d of ammunition to Kyiv.", - "contentSnippet": "The newly appointed prime minister, Robert Fico, whose party aligned with pro-Russian forces during the recent election campaign, had promised \u201cnot to send a single cartridge\u201d of ammunition to Kyiv.", - "guid": "https://www.nytimes.com/2023/10/26/world/europe/slovakia-weapons-ukraine-war.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fico, Robert", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Slovakia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Orban, Viktor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Smer-Social Democracy (Slovakia)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hungary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-26T19:00:22.000Z" - }, - { - "creator": "Shawn Hubler, Christian Boone, Dan Simmons, Nicholas Bogel-Burroughs and Jack Healy", - "title": "What Voters Think About U.S. Support for the Wars in Israel and Ukraine", - "link": "https://www.nytimes.com/2023/10/21/us/united-states-israel-ukraine-war.html", - "pubDate": "Sun, 22 Oct 2023 22:12:32 +0000", - "dc:creator": "Shawn Hubler, Christian Boone, Dan Simmons, Nicholas Bogel-Burroughs and Jack Healy", - "content": "Interviews with voters in key states show that while there is support for Israel and Ukraine, many are torn about how much the U.S. can or should be involved.", - "contentSnippet": "Interviews with voters in key states show that while there is support for Israel and Ukraine, many are torn about how much the U.S. can or should be involved.", - "guid": "https://www.nytimes.com/2023/10/21/us/united-states-israel-ukraine-war.html", - "categories": [ - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Terrorism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palestinian-Americans", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Anti-Semitism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Polls and Public Opinion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arizona", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Atlanta (Ga)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Bucks County (Pa)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Milwaukee (Wis)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Pennsylvania", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Philadelphia (Pa)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Phoenix (Ariz)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Wisconsin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-22T22:12:32.000Z" - }, - { - "creator": "Stephanie Nolen", - "title": "In Global Conflict Zones, Hospitals and Doctors Are No Longer Spared", - "link": "https://www.nytimes.com/2023/10/21/health/gaza-ukraine-hospitals-doctors.html", - "pubDate": "Sat, 21 Oct 2023 09:02:41 +0000", - "dc:creator": "Stephanie Nolen", - "content": "Over the last two decades, medical facilities and staff have become casualties of war more frequently, in violation of international law.", - "contentSnippet": "Over the last two decades, medical facilities and staff have become casualties of war more frequently, in violation of international law.", - "guid": "https://www.nytimes.com/2023/10/21/health/gaza-ukraine-hospitals-doctors.html", - "categories": [ - { - "_": "Civilian Casualties", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Health Care Workers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hospitals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Humanitarian Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Geneva Conventions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War Crimes, Genocide and Crimes Against Humanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sudan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Myanmar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Somalia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Doctors Without Borders", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Doctors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-21T09:02:41.000Z" - }, - { - "creator": "Bhadra Sharma and Jeffrey Gettleman", - "title": "A Small Country Far From Ukraine Is Sending Hundreds toWar, on Both Sides", - "link": "https://www.nytimes.com/2023/10/20/world/asia/ukraine-russia-nepal.html", - "pubDate": "Fri, 20 Oct 2023 09:03:08 +0000", - "dc:creator": "Bhadra Sharma and Jeffrey Gettleman", - "content": "Scores of young Nepali men have gone to fight, some lured by Russia\u2019s promise of work, others to fight for Ukraine, raising the prospect of Nepalis fighting one another in a distant war.", - "contentSnippet": "Scores of young Nepali men have gone to fight, some lured by Russia\u2019s promise of work, others to fight for Ukraine, raising the prospect of Nepalis fighting one another in a distant war.", - "guid": "https://www.nytimes.com/2023/10/20/world/asia/ukraine-russia-nepal.html", - "categories": [ - { - "_": "Draft and Recruitment (Military)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Economic Conditions and Trends", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Unemployment", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nepal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-20T09:03:08.000Z" - }, - { - "creator": "David E. Sanger", - "title": "Biden\u2019s Moment: A President Convinced of America\u2019s Role in the World", - "link": "https://www.nytimes.com/2023/10/19/us/politics/biden-israel-ukraine.html", - "pubDate": "Fri, 20 Oct 2023 02:07:32 +0000", - "dc:creator": "David E. Sanger", - "content": "In a fractured political moment at home and abroad, it is unclear whether President Biden can bring many Americans along.", - "contentSnippet": "In a fractured political moment at home and abroad, it is unclear whether President Biden can bring many Americans along.", - "guid": "https://www.nytimes.com/2023/10/19/us/politics/biden-israel-ukraine.html", - "categories": [ - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-20T02:07:32.000Z" - }, - { - "creator": "The New York Times", - "title": "Full Transcript: Biden\u2019s Speech on Israel-Hamas and Russia-Ukraine Wars", - "link": "https://www.nytimes.com/2023/10/19/us/politics/transcript-biden-speech-israel-ukraine.html", - "pubDate": "Fri, 20 Oct 2023 01:14:35 +0000", - "dc:creator": "The New York Times", - "content": "The president laid out what he characterized as the stakes for democracy as he pleaded with Americans to stand firmly behind Israel and Ukraine.", - "contentSnippet": "The president laid out what he characterized as the stakes for democracy as he pleaded with Americans to stand firmly behind Israel and Ukraine.", - "guid": "https://www.nytimes.com/2023/10/19/us/politics/transcript-biden-speech-israel-ukraine.html", - "categories": [ - { - "_": "Speeches and Statements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "War and Armed Conflicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Democracy (Theory and Philosophy)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hamas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-20T01:14:35.000Z" - }, - { - "creator": "Eric Lipton", - "title": "Israel-Hamas War Adds to Surge in Global Weapons Sales", - "link": "https://www.nytimes.com/2023/10/17/us/politics/israel-gaza-global-arms-sales.html", - "pubDate": "Wed, 18 Oct 2023 18:57:32 +0000", - "dc:creator": "Eric Lipton", - "content": "Israel\u2019s conflict with Hamas, Russia\u2019s invasion of Ukraine and the rise of China have brought a boom for weapons makers and a chance for Washington to build closer military ties to other countries.", - "contentSnippet": "Israel\u2019s conflict with Hamas, Russia\u2019s invasion of Ukraine and the rise of China have brought a boom for weapons makers and a chance for Washington to build closer military ties to other countries.", - "guid": "https://www.nytimes.com/2023/10/17/us/politics/israel-gaza-global-arms-sales.html", - "categories": [ - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense Contracts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "North Atlantic Treaty Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Boeing Company", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Lockheed Martin Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Northrop Grumman Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Raytheon Company", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Middle East", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Poland", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Indonesia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Saudi Arabia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Turkey", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "South Korea", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-18T18:57:32.000Z" - }, - { - "creator": "David Pierson, Anatoly Kurmanaev and Keith Bradsher", - "title": "Putin Visits China to Bolster Ties With \u2018My Friend,\u2019 Xi", - "link": "https://www.nytimes.com/2023/10/16/world/asia/putin-china-xi.html", - "pubDate": "Wed, 18 Oct 2023 05:39:30 +0000", - "dc:creator": "David Pierson, Anatoly Kurmanaev and Keith Bradsher", - "content": "The Russian leader is likely to push for more economic support when he meets with his Chinese counterpart in Beijing.", - "contentSnippet": "The Russian leader is likely to push for more economic support when he meets with his Chinese counterpart in Beijing.", - "guid": "https://www.nytimes.com/2023/10/16/world/asia/putin-china-xi.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Belt and Road Initiative (China)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Putin, Vladimir V", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Xi Jinping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-18T05:39:30.000Z" - }, - { - "creator": "David E. Sanger", - "title": "Inside Biden\u2019s Reversal on Sending Long-Range Missiles to Ukraine", - "link": "https://www.nytimes.com/2023/10/17/us/politics/biden-ukraine-atacms-weapons.html", - "pubDate": "Wed, 18 Oct 2023 01:22:05 +0000", - "dc:creator": "David E. Sanger", - "content": "The story is more complex than a caricature in Washington that President Biden is cautious to a fault, and says no until the pressure is insurmountable.", - "contentSnippet": "The story is more complex than a caricature in Washington that President Biden is cautious to a fault, and says no until the pressure is insurmountable.", - "guid": "https://www.nytimes.com/2023/10/17/us/politics/biden-ukraine-atacms-weapons.html", - "categories": [ - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Blinken, Antony J", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Austin, Lloyd J III", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "State Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-18T01:22:05.000Z" - }, - { - "creator": "David E. Sanger, Lara Jakes, Marc Santora, Constant M\u00e9heut and John Ismay", - "title": "Ukraine Said to Use ATACMS, a Powerful Weapon System, for First Time", - "link": "https://www.nytimes.com/2023/10/17/world/europe/ukraine-atacms-attacks-russia.html", - "pubDate": "Tue, 17 Oct 2023 21:12:31 +0000", - "dc:creator": "David E. Sanger, Lara Jakes, Marc Santora, Constant M\u00e9heut and John Ismay", - "content": "Ukrainian forces attacked two key Russian air bases behind enemy lines on Tuesday, using American-made long-range missiles known as ATACMS, a U.S. official said.", - "contentSnippet": "Ukrainian forces attacked two key Russian air bases behind enemy lines on Tuesday, using American-made long-range missiles known as ATACMS, a U.S. official said.", - "guid": "https://www.nytimes.com/2023/10/17/world/europe/ukraine-atacms-attacks-russia.html", - "categories": [ - { - "_": "Russian Invasion of Ukraine (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Missiles and Missile Defense Systems", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cluster Munitions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arms Trade", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Foreign Aid", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-17T21:12:31.000Z" - } -] \ No newline at end of file + { + "creator": "Neil MacFarquhar and Milana Mazaeva", + "title": "Russian Women Protest Long Deployments for Soldiers in Ukraine", + "link": "https://www.nytimes.com/2023/11/27/world/europe/russia-ukraine-protests-women.html", + "pubDate": "Wed, 29 Nov 2023 01:34:18 +0000", + "dc:creator": "Neil MacFarquhar and Milana Mazaeva", + "content": "\u201cMake way for someone else,\u201d a new grass-roots movement demands as women challenge the official argument that the mobilized troops are needed in combat indefinitely.", + "contentSnippet": "\u201cMake way for someone else,\u201d a new grass-roots movement demands as women challenge the official argument that the mobilized troops are needed in combat indefinitely.", + "guid": "https://www.nytimes.com/2023/11/27/world/europe/russia-ukraine-protests-women.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Novosibirsk (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Women and Girls", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "audio-neutral-informative", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "audio-neutral-suspenseful", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "audio-negative-tragedy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T01:34:18.000Z" + }, + { + "creator": "Marc Santora and Maria Varenikova", + "title": "Wife of Ukraine\u2019s Spy Chief Was Poisoned, Officials Say", + "link": "https://www.nytimes.com/2023/11/28/world/europe/ukraine-spy-chief-wife-poisoned.html", + "pubDate": "Tue, 28 Nov 2023 16:05:21 +0000", + "dc:creator": "Marc Santora and Maria Varenikova", + "content": "Marianna Budanova, whose husband is the director of military intelligence, is recovering in a hospital, the officials said. Her husband has long accused Russia of trying to kill him.", + "contentSnippet": "Marianna Budanova, whose husband is the director of military intelligence, is recovering in a hospital, the officials said. Her husband has long accused Russia of trying to kill him.", + "guid": "https://www.nytimes.com/2023/11/28/world/europe/ukraine-spy-chief-wife-poisoned.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Budanov, Kyrylo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Poisoning and Poisons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-28T16:05:21.000Z" + }, + { + "creator": "Marc Santora", + "title": "Storm Batters Southern Ukraine, Spreading Misery for Civilians and Soldiers", + "link": "https://www.nytimes.com/2023/11/27/world/europe/ukraine-storm-black-sea-russia.html", + "pubDate": "Mon, 27 Nov 2023 18:48:32 +0000", + "dc:creator": "Marc Santora", + "content": "Violent waves stirred by hurricane-force winds threatened to tear maritime mines from their moorings in the Sea of Azov and the Black Sea.", + "contentSnippet": "Violent waves stirred by hurricane-force winds threatened to tear maritime mines from their moorings in the Sea of Azov and the Black Sea.", + "guid": "https://www.nytimes.com/2023/11/27/world/europe/ukraine-storm-black-sea-russia.html", + "categories": [ + { + "_": "Black Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Weather", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ships and Shipping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-27T18:48:32.000Z" + }, + { + "creator": "Paul Sonne and Alex Marshall", + "title": "For Monetochka, a Moral Stand Started a Creative Climb", + "link": "https://www.nytimes.com/2023/11/24/world/europe/monetochka-exiled-russian-pop-stars.html", + "pubDate": "Fri, 24 Nov 2023 17:51:08 +0000", + "dc:creator": "Paul Sonne and Alex Marshall", + "content": "Monetochka was one of Russia\u2019s most discussed pop stars. Now, like other antiwar acts in exile, she\u2019s having to retool her career.", + "contentSnippet": "Monetochka was one of Russia\u2019s most discussed pop stars. Now, like other antiwar acts in exile, she\u2019s having to retool her career.", + "guid": "https://www.nytimes.com/2023/11/24/world/europe/monetochka-exiled-russian-pop-stars.html", + "categories": [ + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pop and Rock Music", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Face (Rapper)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gyrdymova, Elizaveta (Monetochka)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-24T17:51:08.000Z" + }, + { + "creator": "Andrew Keh", + "title": "Olympic Truce for Paris 2024 Collides With Reality", + "link": "https://www.nytimes.com/2023/11/23/world/europe/olympics-truce-2024.html", + "pubDate": "Thu, 23 Nov 2023 10:02:57 +0000", + "dc:creator": "Andrew Keh", + "content": "Amid two prominent wars and other conflicts around the globe, a biennial call at the United Nations for peace during the Games felt even more symbolic than usual.", + "contentSnippet": "Amid two prominent wars and other conflicts around the globe, a biennial call at the United Nations for peace during the Games felt even more symbolic than usual.", + "guid": "https://www.nytimes.com/2023/11/23/world/europe/olympics-truce-2024.html", + "categories": [ + { + "_": "Olympic Games (2024)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Peace Process", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Olympic Committee", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bach, Thomas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-23T10:02:57.000Z" + }, + { + "creator": "Lara Jakes", + "title": "Europe Moves to Fill Weapons Gap Amid Doubts About U.S. Commitment to Ukraine", + "link": "https://www.nytimes.com/2023/11/18/world/europe/europe-military-aid-ukraine.html", + "pubDate": "Tue, 21 Nov 2023 14:01:12 +0000", + "dc:creator": "Lara Jakes", + "content": "Germany, Norway, Britain and others are increasing weapons production to help Kyiv. But the aid may be coming too late as winter looms and Ukraine\u2019s counteroffensive against Russia stalls.", + "contentSnippet": "Germany, Norway, Britain and others are increasing weapons production to help Kyiv. But the aid may be coming too late as winter looms and Ukraine\u2019s counteroffensive against Russia stalls.", + "guid": "https://www.nytimes.com/2023/11/18/world/europe/europe-military-aid-ukraine.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Germany", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Norway", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-21T14:01:12.000Z" + }, + { + "creator": "Marc Santora and Tyler Hicks", + "title": "In Ukraine\u2019s Slowed-Down War, Death Comes as Quickly as Ever", + "link": "https://www.nytimes.com/2023/11/20/world/europe/ukrainian-soldiers-stalemate-avdiivka.html", + "pubDate": "Mon, 20 Nov 2023 20:30:21 +0000", + "dc:creator": "Marc Santora and Tyler Hicks", + "content": "Ukraine is facing continual eastern assaults from Russian forces at a bloody cost for both sides, even as the lines on the map barely move.", + "contentSnippet": "Ukraine is facing continual eastern assaults from Russian forces at a bloody cost for both sides, even as the lines on the map barely move.", + "guid": "https://www.nytimes.com/2023/11/20/world/europe/ukrainian-soldiers-stalemate-avdiivka.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Avdiivka (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-20T20:30:21.000Z" + }, + { + "creator": "Jon Gertner, Adrienne Hurst, Diane Wong, John Woo, Sophia Lanman and Zachary Mouton", + "title": "The Sunday Read: \u2018What Does the U.S. Space Force Actually Do?\u2019", + "link": "https://www.nytimes.com/2023/11/19/podcasts/the-daily/space-force.html", + "pubDate": "Sun, 19 Nov 2023 11:00:05 +0000", + "dc:creator": "Jon Gertner, Adrienne Hurst, Diane Wong, John Woo, Sophia Lanman and Zachary Mouton", + "content": "Inside the highly secretive military branch responsible for protecting American interests in a vulnerable new domain.", + "contentSnippet": "Inside the highly secretive military branch responsible for protecting American interests in a vulnerable new domain.", + "guid": "https://www.nytimes.com/2023/11/19/podcasts/the-daily/space-force.html", + "categories": [ + { + "_": "audio-neutral-informative", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Communications and Media Blackouts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Space Force", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Eastern Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-19T11:00:05.000Z" + }, + { + "creator": "Paul Mozur and Aaron Krolik", + "title": "The Invisible War in Ukraine Being Fought Over Radio Waves", + "link": "https://www.nytimes.com/2023/11/19/technology/russia-ukraine-electronic-warfare-drone-signals.html", + "pubDate": "Sun, 19 Nov 2023 05:01:24 +0000", + "dc:creator": "Paul Mozur and Aaron Krolik", + "content": "Using electromagnetic waves to flummox and follow smarter weapons has become a critical part of the cat-and-mouse game between Ukraine and Russia. The United States, China and others have taken note.", + "contentSnippet": "Using electromagnetic waves to flummox and follow smarter weapons has become a critical part of the cat-and-mouse game between Ukraine and Russia. The United States, China and others have taken note.", + "guid": "https://www.nytimes.com/2023/11/19/technology/russia-ukraine-electronic-warfare-drone-signals.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Radio Spectrum", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drones (Pilotless Planes)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sensors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wireless Communications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Satellites", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-19T05:01:24.000Z" + }, + { + "creator": "Constant M\u00e9heut and Maria Varenikova", + "title": "Ukraine Says It Has Seized Small Dnipro Foothold After Months of Raids", + "link": "https://www.nytimes.com/2023/11/17/world/europe/ukraine-dnipro-river-raid-russia.html", + "pubDate": "Fri, 17 Nov 2023 16:52:06 +0000", + "dc:creator": "Constant M\u00e9heut and Maria Varenikova", + "content": "The Ukrainian military said it had taken a sliver of Russian-controlled land, a move that might offer some hope but was unlikely to lead to a rapid breakthrough.", + "contentSnippet": "The Ukrainian military said it had taken a sliver of Russian-controlled land, a move that might offer some hope but was unlikely to lead to a rapid breakthrough.", + "guid": "https://www.nytimes.com/2023/11/17/world/europe/ukraine-dnipro-river-raid-russia.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dnipro River (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kherson (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-17T16:52:06.000Z" + }, + { + "creator": "Zolan Kanno-Youngs", + "title": "Biden Tied Ukraine Aid to Border Security, and It Backfired on Him", + "link": "https://www.nytimes.com/2023/12/07/us/politics/biden-immigration-ukraine.html", + "pubDate": "Fri, 08 Dec 2023 01:44:28 +0000", + "dc:creator": "Zolan Kanno-Youngs", + "content": "President Biden faces difficult choices about how far to go in giving in to conservative demands that he choke off the number of migrants admitted to the United States.", + "contentSnippet": "President Biden faces difficult choices about how far to go in giving in to conservative demands that he choke off the number of migrants admitted to the United States.", + "guid": "https://www.nytimes.com/2023/12/07/us/politics/biden-immigration-ukraine.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Illegal Immigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Refugees and Displaced Persons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asylum, Right of", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-08T01:44:28.000Z" + }, + { + "creator": "Steven Lee Myers", + "title": "Russia\u2019s Latest Disinformation Tactic Exploits American Celebrities", + "link": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", + "pubDate": "Thu, 07 Dec 2023 05:02:00 +0000", + "dc:creator": "Steven Lee Myers", + "content": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", + "contentSnippet": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", + "guid": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", + "categories": [ + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Propaganda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Celebrities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cameo (Mobile App)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T05:02:00.000Z" + }, + { + "creator": "Peter Baker", + "title": "Biden Calls on Congress to Approve Aid to Ukraine: \u2018This Cannot Wait\u2019", + "link": "https://www.nytimes.com/2023/12/06/us/politics/biden-ukraine-funding.html", + "pubDate": "Wed, 06 Dec 2023 23:57:41 +0000", + "dc:creator": "Peter Baker", + "content": "The administration has already alerted Congress that money for Ukraine will run out by the end of the year.", + "contentSnippet": "The administration has already alerted Congress that money for Ukraine will run out by the end of the year.", + "guid": "https://www.nytimes.com/2023/12/06/us/politics/biden-ukraine-funding.html", + "categories": [ + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Democratic Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-06T23:57:41.000Z" + }, + { + "creator": "Ivan Nechepurenko and Marc Santora", + "title": "Illia Kyva Is Killed Near Moscow", + "link": "https://www.nytimes.com/2023/12/06/world/europe/illia-kyva-ukrainian-lawmaker-killed.html", + "pubDate": "Wed, 06 Dec 2023 21:38:29 +0000", + "dc:creator": "Ivan Nechepurenko and Marc Santora", + "content": "The lawmaker, Illia Kyva, called for Ukraine to surrender after Russia invaded. He was living in Russia, but Ukrainian authorities had sentenced him to prison in absentia on charges including treason.", + "contentSnippet": "The lawmaker, Illia Kyva, called for Ukraine to surrender after Russia invaded. He was living in Russia, but Ukrainian authorities had sentenced him to prison in absentia on charges including treason.", + "guid": "https://www.nytimes.com/2023/12/06/world/europe/illia-kyva-ukrainian-lawmaker-killed.html", + "categories": [ + { + "_": "Assassinations and Attempted Assassinations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defectors (Political)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Treason and Sedition", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kyva, Illia (d 2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T21:38:29.000Z" + }, + { + "creator": "Glenn Thrush", + "title": "U.S. Charges 4 Russian Soldiers With War Crimes Against an American", + "link": "https://www.nytimes.com/2023/12/06/us/russia-ukraine-war-crimes-hamas.html", + "pubDate": "Wed, 06 Dec 2023 20:29:32 +0000", + "dc:creator": "Glenn Thrush", + "content": "The Justice Department also said it had begun investigating the \u201cmurder of more than 30 Americans\u201d by Hamas fighters during the Oct. 7 attack in Israel.", + "contentSnippet": "The Justice Department also said it had begun investigating the \u201cmurder of more than 30 Americans\u201d by Hamas fighters during the Oct. 7 attack in Israel.", + "guid": "https://www.nytimes.com/2023/12/06/us/russia-ukraine-war-crimes-hamas.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Garland, Merrick B", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T20:29:32.000Z" + }, + { + "creator": "The Associated Press", + "title": "White House Urges Congress to Approve More Funding for Ukraine", + "link": "https://www.nytimes.com/video/us/politics/100000009209451/white-house-ukraine-aid.html", + "pubDate": "Mon, 04 Dec 2023 22:10:07 +0000", + "dc:creator": "The Associated Press", + "content": "Jake Sullivan, the White House national security adviser, said that improper funding would jeopardize Ukraine\u2019s ability to defend itself against Russia.", + "contentSnippet": "Jake Sullivan, the White House national security adviser, said that improper funding would jeopardize Ukraine\u2019s ability to defend itself against Russia.", + "guid": "https://www.nytimes.com/video/us/politics/100000009209451/white-house-ukraine-aid.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-04T22:10:07.000Z" + }, + { + "creator": "Valerie Hopkins and Nanna Heitmann", + "title": "A Russian Village Buries a Soldier, and Tries to Make Sense of the War", + "link": "https://www.nytimes.com/2023/12/01/world/europe/russian-soldier-burial-war.html", + "pubDate": "Sat, 02 Dec 2023 15:18:34 +0000", + "dc:creator": "Valerie Hopkins and Nanna Heitmann", + "content": "In Russia, the pain and loss of the war in Ukraine are felt most profoundly in small villages, where a soldier\u2019s burial produces not just grief but a yearning to find meaning in his death.", + "contentSnippet": "In Russia, the pain and loss of the war in Ukraine are felt most profoundly in small villages, where a soldier\u2019s burial produces not just grief but a yearning to find meaning in his death.", + "guid": "https://www.nytimes.com/2023/12/01/world/europe/russian-soldier-burial-war.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Funerals and Memorials", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "vis-photo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-02T15:18:34.000Z" + }, + { + "creator": "Christopher F. Schuetze", + "title": "German Spy Official Goes on Trial Accused of Selling Secrets to Russia", + "link": "https://www.nytimes.com/2023/12/14/world/europe/germany-spy-trial-russia.html", + "pubDate": "Fri, 15 Dec 2023 13:27:00 +0000", + "dc:creator": "Christopher F. Schuetze", + "content": "The trial, held under stringent security conditions and expected to last months, caps one of the gravest espionage scandals in recent German history.", + "contentSnippet": "The trial, held under stringent security conditions and expected to last months, caps one of the gravest espionage scandals in recent German history.", + "guid": "https://www.nytimes.com/2023/12/14/world/europe/germany-spy-trial-russia.html", + "categories": [ + { + "_": "Germany", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Classified Information and State Secrets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Linke, Carsten", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Federal Intelligence Service (Germany)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Federal Security Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T13:27:00.000Z" + }, + { + "creator": "Karoun Demirjian", + "title": "Schumer Delays Holiday Break, Pressing for Border Deal to Unlock Ukraine Aid", + "link": "https://www.nytimes.com/2023/12/14/us/senate-holiday-border-deal-ukraine.html", + "pubDate": "Fri, 15 Dec 2023 01:41:25 +0000", + "dc:creator": "Karoun Demirjian", + "content": "The majority leader said he would keep the Senate in session to allow time for an elusive immigration compromise, as Democrats criticized the G.O.P.-led House for leaving without helping Ukraine.", + "contentSnippet": "The majority leader said he would keep the Senate in session to allow time for an elusive immigration compromise, as Democrats criticized the G.O.P.-led House for leaving without helping Ukraine.", + "guid": "https://www.nytimes.com/2023/12/14/us/senate-holiday-border-deal-ukraine.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Immigration and Emigration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Democratic Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Homeland Security Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-15T01:41:25.000Z" + }, + { + "creator": "Valerie Hopkins and Anton Troianovski", + "title": "Putin Suggests He Has a Winning Hand in His War in Ukraine", + "link": "https://www.nytimes.com/2023/12/14/world/europe/putin-news-conference-russia-ukraine.html", + "pubDate": "Thu, 14 Dec 2023 21:35:14 +0000", + "dc:creator": "Valerie Hopkins and Anton Troianovski", + "content": "The Russian leader, in his annual news conference, said he was open to peace talks but showed no hint of compromise. \u201cPeace will come when we achieve our goals,\u201d he said.", + "contentSnippet": "The Russian leader, in his annual news conference, said he was open to peace talks but showed no hint of compromise. \u201cPeace will come when we achieve our goals,\u201d he said.", + "guid": "https://www.nytimes.com/2023/12/14/world/europe/putin-news-conference-russia-ukraine.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gershkovich, Evan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Political Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wall Street Journal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Whelan, Paul N", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T21:35:14.000Z" + }, + { + "creator": "Anatoly Kurmanaev", + "title": "How The Times Reported on the Convicts Sustaining Russia\u2019s Invasion", + "link": "https://www.nytimes.com/2023/12/13/insider/russian-prisoner-soldiers-investigation.html", + "pubDate": "Wed, 13 Dec 2023 22:23:04 +0000", + "dc:creator": "Anatoly Kurmanaev", + "content": "A team of Times journalists has provided the most comprehensive look yet at the largest military recruitment of inmates since World War II.", + "contentSnippet": "A team of Times journalists has provided the most comprehensive look yet at the largest military recruitment of inmates since World War II.", + "guid": "https://www.nytimes.com/2023/12/13/insider/russian-prisoner-soldiers-investigation.html", + "categories": [ + { + "_": "Amnesties, Commutations and Pardons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Crime and Criminals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T22:23:04.000Z" + }, + { + "title": "Putin \u2018Banking On\u2019 U.S. Failing to Deliver Aid to Ukraine, Biden Says", + "link": "https://www.nytimes.com/video/world/europe/100000009222541/putin-banking-on-us-failing-to-deliver-aid-to-ukraine-biden-says.html", + "pubDate": "Wed, 13 Dec 2023 14:19:19 +0000", + "content": "President Biden said he approved more aid for critical equipment for Ukraine.", + "contentSnippet": "President Biden said he approved more aid for critical equipment for Ukraine.", + "guid": "https://www.nytimes.com/video/world/europe/100000009222541/putin-banking-on-us-failing-to-deliver-aid-to-ukraine-biden-says.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T14:19:19.000Z" + }, + { + "creator": "Sabrina Tavernise, Luke Vander Ploeg, Shannon Lin, Lexie Diao, Michael Benoist, Marion Lozano, Dan Powell and Chris Wood", + "title": "Ukraine\u2019s Counteroffensive Fizzled. U.S. Funding May Be Next.", + "link": "https://www.nytimes.com/2023/12/12/podcasts/the-daily/ukraine-aid.html", + "pubDate": "Tue, 12 Dec 2023 11:00:16 +0000", + "dc:creator": "Sabrina Tavernise, Luke Vander Ploeg, Shannon Lin, Lexie Diao, Michael Benoist, Marion Lozano, Dan Powell and Chris Wood", + "content": "President Volodymyr Zelensky has arrived in Washington at a critical moment, both on the battlefield and on Capitol Hill.", + "contentSnippet": "President Volodymyr Zelensky has arrived in Washington at a critical moment, both on the battlefield and on Capitol Hill.", + "guid": "https://www.nytimes.com/2023/12/12/podcasts/the-daily/ukraine-aid.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-12T11:00:16.000Z" + }, + { + "creator": "Michael D. Shear and Karoun Demirjian", + "title": "Zelensky to Meet With Biden in Washington With U.S. Aid to Ukraine in Doubt", + "link": "https://www.nytimes.com/2023/12/10/us/politics/zelensky-washington-biden-congress.html", + "pubDate": "Sun, 10 Dec 2023 22:45:36 +0000", + "dc:creator": "Michael D. Shear and Karoun Demirjian", + "content": "Officials announced that the Ukrainian president would travel to Washington on Tuesday for a last-ditch lobbying effort with President Biden and members of Congress.", + "contentSnippet": "Officials announced that the Ukrainian president would travel to Washington on Tuesday for a last-ditch lobbying effort with President Biden and members of Congress.", + "guid": "https://www.nytimes.com/2023/12/10/us/politics/zelensky-washington-biden-congress.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Johnson, Mike (1972- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-10T22:45:36.000Z" + }, + { + "creator": "Jonathan Swan, Charlie Savage and Maggie Haberman", + "title": "Fears of a NATO Withdrawal Rise as Trump Seeks a Return to Power", + "link": "https://www.nytimes.com/2023/12/09/us/politics/trump-2025-nato.html", + "pubDate": "Sat, 09 Dec 2023 10:00:27 +0000", + "dc:creator": "Jonathan Swan, Charlie Savage and Maggie Haberman", + "content": "Current and former European diplomats said there was growing concern a second Trump presidency could mean an American retreat from the continent and a gutting of NATO.", + "contentSnippet": "Current and former European diplomats said there was growing concern a second Trump presidency could mean an American retreat from the continent and a gutting of NATO.", + "guid": "https://www.nytimes.com/2023/12/09/us/politics/trump-2025-nato.html", + "categories": [ + { + "_": "Presidential Election of 2024", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Trump, Donald J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "North Atlantic Treaty Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Treaties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-09T10:00:27.000Z" + }, + { + "creator": "Andrew Das and Tariq Panja", + "title": "Athletes From Russia and Belarus Are Cleared to Compete at Paris Olympics", + "link": "https://www.nytimes.com/2023/12/08/world/europe/olympics-russian-athletes-paris.html", + "pubDate": "Fri, 08 Dec 2023 20:34:55 +0000", + "dc:creator": "Andrew Das and Tariq Panja", + "content": "A decision by the International Olympic Committee paves the way for individuals from the two countries to take part over the objections of Ukraine and others.", + "contentSnippet": "A decision by the International Olympic Committee paves the way for individuals from the two countries to take part over the objections of Ukraine and others.", + "guid": "https://www.nytimes.com/2023/12/08/world/europe/olympics-russian-athletes-paris.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Athletics and Sports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Olympic Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Olympic Committee", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bach, Thomas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Paris (France)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Belarus", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-08T20:34:55.000Z" + }, + { + "creator": "Constant M\u00e9heut and Daria Mitiuk", + "title": "\u2018It\u2019s State Propaganda\u2019: Ukrainians Shun TV News as War Drags on", + "link": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-war-tv-news-telemarathon.html", + "pubDate": "Wed, 03 Jan 2024 20:30:13 +0000", + "dc:creator": "Constant M\u00e9heut and Daria Mitiuk", + "content": "A government-approved news program intended to counter Russian disinformation and boost morale is coming under criticism for painting a rosy picture of the war.", + "contentSnippet": "A government-approved news program intended to counter Russian disinformation and boost morale is coming under criticism for painting a rosy picture of the war.", + "guid": "https://www.nytimes.com/2024/01/03/world/europe/ukraine-war-tv-news-telemarathon.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Censorship", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freedom of Speech and Expression", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Television Sets and Media Devices", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-03T20:30:13.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Buildings Smolder After Russian Air Attacks on Kyiv", + "link": "https://www.nytimes.com/video/world/europe/100000009247023/buildings-smolder-after-russian-air-attacks-on-kyiv.html", + "pubDate": "Wed, 03 Jan 2024 15:24:18 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "First responders put out fires after Russia bombarded the Ukrainian capital with missiles and drones.", + "contentSnippet": "First responders put out fires after Russia bombarded the Ukrainian capital with missiles and drones.", + "guid": "https://www.nytimes.com/video/world/europe/100000009247023/buildings-smolder-after-russian-air-attacks-on-kyiv.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kyiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-03T15:24:18.000Z" + }, + { + "creator": "Constant M\u00e9heut and Anatoly Kurmanaev", + "title": "Russian Missiles Hammer Kyiv in Large-Scale Attack on Ukraine", + "link": "https://www.nytimes.com/2024/01/02/world/europe/missiles-ukraine-war-attack-russia.html", + "pubDate": "Tue, 02 Jan 2024 17:48:12 +0000", + "dc:creator": "Constant M\u00e9heut and Anatoly Kurmanaev", + "content": "Russia said that Ukraine retaliated hours later with missile attacks on Russian territory, part of an escalating cycle of air assaults between the two countries.", + "contentSnippet": "Russia said that Ukraine retaliated hours later with missile attacks on Russian territory, part of an escalating cycle of air assaults between the two countries.", + "guid": "https://www.nytimes.com/2024/01/02/world/europe/missiles-ukraine-war-attack-russia.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drones (Pilotless Planes)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kyiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-02T17:48:12.000Z" + }, + { + "creator": "Anatoly Kurmanaev and Constant M\u00e9heut", + "title": "Putin Vows to Keep Up Bombardment After a Russian City Is Hit", + "link": "https://www.nytimes.com/2024/01/01/world/europe/ukraine-russia-putin-belgorod.html", + "pubDate": "Mon, 01 Jan 2024 23:48:31 +0000", + "dc:creator": "Anatoly Kurmanaev and Constant M\u00e9heut", + "content": "President Vladimir V. Putin of Russia says his country will continue targeting Ukrainian cities in retaliation for a deadly attack on the city of Belgorod on Saturday.", + "contentSnippet": "President Vladimir V. Putin of Russia says his country will continue targeting Ukrainian cities in retaliation for a deadly attack on the city of Belgorod on Saturday.", + "guid": "https://www.nytimes.com/2024/01/01/world/europe/ukraine-russia-putin-belgorod.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Belgorod (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kharkiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Lviv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-01T23:48:31.000Z" + }, + { + "creator": "Constant M\u00e9heut and Anton Troianovski", + "title": "Putin and Zelensky Address Their Citizens on New Year\u2019s Eve", + "link": "https://www.nytimes.com/2023/12/31/world/europe/russia-ukraine-kharkiv-airstrikes.html", + "pubDate": "Mon, 01 Jan 2024 05:02:44 +0000", + "dc:creator": "Constant M\u00e9heut and Anton Troianovski", + "content": "The message of resilience offered by Ukraine\u2019s leader, Volodymyr Zelensky\u2019s message, contrasted sharply with that of President Vladimir V. Putin, who glossed over the war in an effort to project a sense of normality.", + "contentSnippet": "The message of resilience offered by Ukraine\u2019s leader, Volodymyr Zelensky\u2019s message, contrasted sharply with that of President Vladimir V. Putin, who glossed over the war in an effort to project a sense of normality.", + "guid": "https://www.nytimes.com/2023/12/31/world/europe/russia-ukraine-kharkiv-airstrikes.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drones (Pilotless Planes)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Belgorod (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kyiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kharkiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-01T05:02:44.000Z" + }, + { + "creator": "Marc Santora", + "title": "Ukraine Intensifies Guerrilla Tactics, Targeting Trains", + "link": "https://www.nytimes.com/2023/12/31/world/europe/ukraine-russia-train-sabotage.html", + "pubDate": "Sun, 31 Dec 2023 17:24:24 +0000", + "dc:creator": "Marc Santora", + "content": "As conventional forces struggle to break through defensive lines, both sides are increasingly turning to guerrilla tactics.", + "contentSnippet": "As conventional forces struggle to break through defensive lines, both sides are increasingly turning to guerrilla tactics.", + "guid": "https://www.nytimes.com/2023/12/31/world/europe/ukraine-russia-train-sabotage.html", + "categories": [ + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Railroads", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bridges and Tunnels", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-31T17:24:24.000Z" + }, + { + "creator": "Constant M\u00e9heut and Ivan Nechepurenko", + "title": "Ukrainian Missile Attack on Belgorod Kills at Least 18, Officials Say", + "link": "https://www.nytimes.com/2023/12/30/world/europe/ukraine-russia-belgorod-attacks.html", + "pubDate": "Sun, 31 Dec 2023 08:02:46 +0000", + "dc:creator": "Constant M\u00e9heut and Ivan Nechepurenko", + "content": "The bombardment of Belgorod on Saturday, apparently in response to an enormous air assault by Moscow a day earlier, appeared to be the deadliest single attack on Russian soil since the start of the war.", + "contentSnippet": "The bombardment of Belgorod on Saturday, apparently in response to an enormous air assault by Moscow a day earlier, appeared to be the deadliest single attack on Russian soil since the start of the war.", + "guid": "https://www.nytimes.com/2023/12/30/world/europe/ukraine-russia-belgorod-attacks.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Belgorod (Russia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-31T08:02:46.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "How a Russian Barrage Evaded Ukraine\u2019s Defenses to Wreak Deadly Chaos", + "link": "https://www.nytimes.com/2023/12/30/world/europe/russia-ukraine-missiles-kyiv.html", + "pubDate": "Sun, 31 Dec 2023 07:55:08 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "In one of the war\u2019s largest bombardments, 35 missiles slipped through Ukraine\u2019s air cover on Friday, killing dozens. Ukraine responded with shelling on the Russian region of Belgorod, killing at least 22.", + "contentSnippet": "In one of the war\u2019s largest bombardments, 35 missiles slipped through Ukraine\u2019s air cover on Friday, killing dozens. Ukraine responded with shelling on the Russian region of Belgorod, killing at least 22.", + "guid": "https://www.nytimes.com/2023/12/30/world/europe/russia-ukraine-missiles-kyiv.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drones (Pilotless Planes)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-31T07:55:08.000Z" + }, + { + "creator": "Carlotta Gall, Oleksandr Chubko, Cora Engelbrecht and Daniel Berehulak", + "title": "Ukraine's Stolen Children: Forced Separations and Abductions by Russia", + "link": "https://www.nytimes.com/interactive/2023/12/26/world/europe/ukraine-war-children-russia.html", + "pubDate": "Sun, 31 Dec 2023 02:20:04 +0000", + "dc:creator": "Carlotta Gall, Oleksandr Chubko, Cora Engelbrecht and Daniel Berehulak", + "content": "Thousands of young Ukrainians were separated from their parents by the Russian authorities in the early stages of the war. They are among the most forlorn victims of the invasion.", + "contentSnippet": "Thousands of young Ukrainians were separated from their parents by the Russian authorities in the early stages of the war. They are among the most forlorn victims of the invasion.", + "guid": "https://www.nytimes.com/interactive/2023/12/26/world/europe/ukraine-war-children-russia.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-31T02:20:04.000Z" + }, + { + "creator": "Anton Troianovski, Yuliya Parshina-Kottas, Oleg Matsnev, Alina Lobzina, Valerie Hopkins and Aaron Krolik", + "title": "How Russia Silences Dissent about the Ukraine War", + "link": "https://www.nytimes.com/interactive/2023/12/29/world/europe/russia-ukraine-war-censorship.html", + "pubDate": "Sat, 30 Dec 2023 17:25:55 +0000", + "dc:creator": "Anton Troianovski, Yuliya Parshina-Kottas, Oleg Matsnev, Alina Lobzina, Valerie Hopkins and Aaron Krolik", + "content": "A law making it illegal to discredit Russia\u2019s army has ensnared thousands of Russians for even mild acts or statements against the war.", + "contentSnippet": "A law making it illegal to discredit Russia\u2019s army has ensnared thousands of Russians for even mild acts or statements against the war.", + "guid": "https://www.nytimes.com/interactive/2023/12/29/world/europe/russia-ukraine-war-censorship.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Surveillance of Citizens by Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Censorship", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freedom of Speech and Expression", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-30T17:25:55.000Z" + }, + { + "creator": "Lara Jakes", + "title": "As War Rages in Ukraine, Denmark Turns an Office Park Back Into an Arsenal", + "link": "https://www.nytimes.com/2023/12/30/world/europe/ukraine-war-denmark-ammunition.html", + "pubDate": "Sat, 30 Dec 2023 10:00:20 +0000", + "dc:creator": "Lara Jakes", + "content": "The conflict and surging arms production in Russia have spurred demand for ammunition manufacturing across Europe.", + "contentSnippet": "The conflict and surging arms production in Russia have spurred demand for ammunition manufacturing across Europe.", + "guid": "https://www.nytimes.com/2023/12/30/world/europe/ukraine-war-denmark-ammunition.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-30T10:00:20.000Z" + }, + { + "creator": "Constant M\u00e9heut and Daria Mitiuk", + "title": "At Least 30 Killed in Ukraine After Russian Missile Attacks", + "link": "https://www.nytimes.com/2023/12/29/world/europe/russia-ukraine-missile-attacks.html", + "pubDate": "Sat, 30 Dec 2023 02:56:19 +0000", + "dc:creator": "Constant M\u00e9heut and Daria Mitiuk", + "content": "The missile and drone attacks killed at least 30 people and damaged critical industrial and military infrastructure, part of a wintertime campaign that Ukraine had been dreading.", + "contentSnippet": "The missile and drone attacks killed at least 30 people and damaged critical industrial and military infrastructure, part of a wintertime campaign that Ukraine had been dreading.", + "guid": "https://www.nytimes.com/2023/12/29/world/europe/russia-ukraine-missile-attacks.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-30T02:56:19.000Z" + }, + { + "creator": "The New York Times", + "title": "Russia Launches Widespread Air Attack on Ukrainian Cities", + "link": "https://www.nytimes.com/video/world/europe/100000009244007/kyiv-strike-ukraine-russia.html", + "pubDate": "Fri, 29 Dec 2023 16:23:49 +0000", + "dc:creator": "The New York Times", + "content": "Ukrainian officials said more than two dozen people were killed in missile and drone attacks across the country over several hours.", + "contentSnippet": "Ukrainian officials said more than two dozen people were killed in missile and drone attacks across the country over several hours.", + "guid": "https://www.nytimes.com/video/world/europe/100000009244007/kyiv-strike-ukraine-russia.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-29T16:23:49.000Z" + }, + { + "creator": "Andrew E. Kramer", + "title": "Christmas Moves to Dec. 25 in Ukraine, Another Rebuff of Russia", + "link": "https://www.nytimes.com/2023/12/25/world/europe/ukraine-russia-christmas-ukrainian-orthodox-church.html", + "pubDate": "Fri, 29 Dec 2023 13:03:25 +0000", + "dc:creator": "Andrew E. Kramer", + "content": "The Ukrainian Orthodox Church formally changed the main date for the festivities, departing from the Russian tradition of celebrating on Jan. 7, according to the Julian calendar.", + "contentSnippet": "The Ukrainian Orthodox Church formally changed the main date for the festivities, departing from the Russian tradition of celebrating on Jan. 7, according to the Julian calendar.", + "guid": "https://www.nytimes.com/2023/12/25/world/europe/ukraine-russia-christmas-ukrainian-orthodox-church.html", + "categories": [ + { + "_": "Christmas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Orthodox Church", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukrainian Orthodox Church", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-29T13:03:25.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Russia Retakes Some Land Hard Won by Ukraine During Counteroffensive", + "link": "https://www.nytimes.com/2023/12/28/world/europe/russia-ukraine-war.html", + "pubDate": "Thu, 28 Dec 2023 15:41:01 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "Russia\u2019s recent progress around the southern village of Robotyne is a sobering development for Ukraine amid dwindling Western military aid.", + "contentSnippet": "Russia\u2019s recent progress around the southern village of Robotyne is a sobering development for Ukraine amid dwindling Western military aid.", + "guid": "https://www.nytimes.com/2023/12/28/world/europe/russia-ukraine-war.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Robotyne (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-28T15:41:01.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Ukraine Attacks Novocherkassk, a Russian Warship, in Crimea", + "link": "https://www.nytimes.com/2023/12/26/world/europe/ukraine-crimea-russia-warship-novocherkassk.html", + "pubDate": "Wed, 27 Dec 2023 09:04:43 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "A major military success at sea against Russia\u2019s Black Sea Fleet was tempered by Ukraine\u2019s acknowledgment that it had all but retreated from the city of Marinka.", + "contentSnippet": "A major military success at sea against Russia\u2019s Black Sea Fleet was tempered by Ukraine\u2019s acknowledgment that it had all but retreated from the city of Marinka.", + "guid": "https://www.nytimes.com/2023/12/26/world/europe/ukraine-crimea-russia-warship-novocherkassk.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Marinka (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Black Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Crimea (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-27T09:04:43.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Ukraine Says It Downed 5 Russian Planes, as Moscow Claims It Seized a Town", + "link": "https://www.nytimes.com/2023/12/25/world/europe/ukraine-downs-planes-russia-claims-town.html", + "pubDate": "Tue, 26 Dec 2023 04:23:34 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "Russia said it now had full control of the eastern town of Marinka. On Tuesday, Ukraine claimed to have destroyed a Russian ship.", + "contentSnippet": "Russia said it now had full control of the eastern town of Marinka. On Tuesday, Ukraine claimed to have destroyed a Russian ship.", + "guid": "https://www.nytimes.com/2023/12/25/world/europe/ukraine-downs-planes-russia-claims-town.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Military Aircraft", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-26T04:23:34.000Z" + }, + { + "creator": "Patricia Cohen", + "title": "Red Sea Shipping Halt Is Latest Risk to Global Economy", + "link": "https://www.nytimes.com/2023/12/24/business/economy/global-economic-risks-red-sea.html", + "pubDate": "Sun, 24 Dec 2023 22:12:55 +0000", + "dc:creator": "Patricia Cohen", + "content": "Next year could see increasing volatility as persistent military conflicts and economic uncertainty influence voting in national elections across the globe.", + "contentSnippet": "Next year could see increasing volatility as persistent military conflicts and economic uncertainty influence voting in national elections across the globe.", + "guid": "https://www.nytimes.com/2023/12/24/business/economy/global-economic-risks-red-sea.html", + "categories": [ + { + "_": "United States Economy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Presidential Election of 2024", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Trade and World Market", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supply Chain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freight (Cargo)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Red Sea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-24T22:12:55.000Z" + }, + { + "creator": "Marc Santora", + "title": "He Was Ready to Die, but Not to Surrender", + "link": "https://www.nytimes.com/2023/12/24/world/europe/ukraine-mariupol-azpvstal.html", + "pubDate": "Sun, 24 Dec 2023 10:00:46 +0000", + "dc:creator": "Marc Santora", + "content": "How a Ukrainian soldier escaped from the embattled Azovstal steel complex in Mariupol and sneaked 125 miles to Ukrainian territory.", + "contentSnippet": "How a Ukrainian soldier escaped from the embattled Azovstal steel complex in Mariupol and sneaked 125 miles to Ukrainian territory.", + "guid": "https://www.nytimes.com/2023/12/24/world/europe/ukraine-mariupol-azpvstal.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mariupol (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Azovstal", + "$": { + "domain": "" + } + }, + { + "_": "Azov brigade", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-24T10:00:46.000Z" + }, + { + "creator": "Andrew Higgins", + "title": "Putin\u2019s Drive to Rewrite History Snares a Retired Lithuanian Judge", + "link": "https://www.nytimes.com/2024/01/04/world/europe/putin-russia-lithuania-judge.html", + "pubDate": "Thu, 04 Jan 2024 10:04:03 +0000", + "dc:creator": "Andrew Higgins", + "content": "A few years ago, Kornelija Maceviciene ruled against Soviet officers for a brutal crackdown on pro-independence protesters in her country in 1991. That has made her a target for a Russian court.", + "contentSnippet": "A few years ago, Kornelija Maceviciene ruled against Soviet officers for a brutal crackdown on pro-independence protesters in her country in 1991. That has made her a target for a Russian court.", + "guid": "https://www.nytimes.com/2024/01/04/world/europe/putin-russia-lithuania-judge.html", + "categories": [ + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Demonstrations, Protests and Riots", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Lithuania", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "USSR (Former Soviet Union)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T10:04:03.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "A Trophy in Ruins: Evidence Grows That Russia Controls Marinka", + "link": "https://www.nytimes.com/2024/01/04/world/europe/ukraine-war-marinka-russia.html", + "pubDate": "Thu, 04 Jan 2024 13:39:23 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "Ukraine said it was defending territory behind the eastern frontline town. Its capture would be Russia\u2019s most significant territorial advance in Ukraine in more than six months.", + "contentSnippet": "Ukraine said it was defending territory behind the eastern frontline town. Its capture would be Russia\u2019s most significant territorial advance in Ukraine in more than six months.", + "guid": "https://www.nytimes.com/2024/01/04/world/europe/ukraine-war-marinka-russia.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Donbas (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Donetsk (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Marinka (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T13:39:23.000Z" + }, + { + "creator": "German Lopez", + "title": "Beyond the Front Lines", + "link": "https://www.nytimes.com/2024/01/05/briefing/ukraine-russia-war-new-phase.html", + "pubDate": "Fri, 05 Jan 2024 11:27:25 +0000", + "dc:creator": "German Lopez", + "content": "The war in Ukraine has entered a new phase.", + "contentSnippet": "The war in Ukraine has entered a new phase.", + "guid": "https://www.nytimes.com/2024/01/05/briefing/ukraine-russia-war-new-phase.html", + "categories": [ + { + "_": "internal-storyline-no", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-05T11:27:25.000Z" + }, + { + "creator": "Michael D. Shear and David E. Sanger", + "title": "White House Says North Korea Providing Russia With Ballistic Missiles", + "link": "https://www.nytimes.com/2024/01/04/us/politics/north-korea-russia-missiles.html", + "pubDate": "Thu, 04 Jan 2024 21:23:15 +0000", + "dc:creator": "Michael D. Shear and David E. Sanger", + "content": "Russia has rebuilt its own domestic supply of cruise missiles, but to keep up with the intensity of the barrage against Ukraine, it has been turning to North Korea and Iran.", + "contentSnippet": "Russia has rebuilt its own domestic supply of cruise missiles, but to keep up with the intensity of the barrage against Ukraine, it has been turning to North Korea and Iran.", + "guid": "https://www.nytimes.com/2024/01/04/us/politics/north-korea-russia-missiles.html", + "categories": [ + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kim Jong-un", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kirby, John F", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "North Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T21:23:15.000Z" + }, + { + "creator": "Lara Jakes and Christopher F. Schuetze", + "title": "Zelensky Visits Baltic Nations to Rally Support for Ukraine", + "link": "https://www.nytimes.com/2024/01/10/world/europe/ukraine-war-support-europe.html", + "pubDate": "Wed, 10 Jan 2024 14:02:04 +0000", + "dc:creator": "Lara Jakes and Christopher F. Schuetze", + "content": "President Volodymyr Zelensky of Ukraine is likely to find strong backing on a trip to the Baltic States, but other nations are increasingly wary.", + "contentSnippet": "President Volodymyr Zelensky of Ukraine is likely to find strong backing on a trip to the Baltic States, but other nations are increasingly wary.", + "guid": "https://www.nytimes.com/2024/01/10/world/europe/ukraine-war-support-europe.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Baltic Region", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "European Commission", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "North Atlantic Treaty Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T14:02:04.000Z" + }, + { + "creator": "Jennifer Szalai", + "title": "Book Review: \u2018Our Enemies Will Vanish,\u2019 by Yaroslav Trofimov", + "link": "https://www.nytimes.com/2024/01/10/books/review/our-enemies-will-vanish-yaroslav-trofimov.html", + "pubDate": "Wed, 10 Jan 2024 10:01:11 +0000", + "dc:creator": "Jennifer Szalai", + "content": "Yaroslav Trofimov grew up in Kyiv. \u201cOur Enemies Will Vanish\u201d records his experience as a journalist for The Wall Street Journal assigned to cover the war.", + "contentSnippet": "Yaroslav Trofimov grew up in Kyiv. \u201cOur Enemies Will Vanish\u201d records his experience as a journalist for The Wall Street Journal assigned to cover the war.", + "guid": "https://www.nytimes.com/2024/01/10/books/review/our-enemies-will-vanish-yaroslav-trofimov.html", + "categories": [ + { + "_": "Books and Literature", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Trofimov, Yaroslav", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Our Enemies Will Vanish: The Russian Invasion and Ukraine's War of Independence (Book)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T10:01:11.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Russian Missiles Pound Ukraine, Officials Say", + "link": "https://www.nytimes.com/2024/01/08/world/europe/ukraine-russia-missiles.html", + "pubDate": "Mon, 08 Jan 2024 20:05:51 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "The attack killed at least four people, wounded many others and caused heavy damage. It came as Moscow has intensified air assaults in recent days.", + "contentSnippet": "The attack killed at least four people, wounded many others and caused heavy damage. It came as Moscow has intensified air assaults in recent days.", + "guid": "https://www.nytimes.com/2024/01/08/world/europe/ukraine-russia-missiles.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kryvyi Rih (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kharkiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-08T20:05:51.000Z" + }, + { + "creator": "Reuters and The Associated Press", + "title": "Ukrainian Residential Buildings Destroyed by Russian Air Assault", + "link": "https://www.nytimes.com/video/world/europe/100000009255111/ukraine-russia-missile-attack.html", + "pubDate": "Mon, 08 Jan 2024 20:05:10 +0000", + "dc:creator": "Reuters and The Associated Press", + "content": "Some civilians sheltered in subway stations as Russia launched a widespread missile attack on regions across Ukraine.", + "contentSnippet": "Some civilians sheltered in subway stations as Russia launched a widespread missile attack on regions across Ukraine.", + "guid": "https://www.nytimes.com/video/world/europe/100000009255111/ukraine-russia-missile-attack.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-08T20:05:10.000Z" + }, + { + "creator": "Carlotta Gall, Vladyslav Golovin and Mauricio Lima", + "title": "Exhausted, on the Defensive and at \u2018Hell\u2019s Gate\u2019 in Ukraine", + "link": "https://www.nytimes.com/2024/01/08/world/europe/ukraine-troops-exhausted-defensive.html", + "pubDate": "Mon, 08 Jan 2024 14:08:16 +0000", + "dc:creator": "Carlotta Gall, Vladyslav Golovin and Mauricio Lima", + "content": "The country\u2019s forces along a broad stretch of the front say that, with Russia pushing forward, the war has never been so dangerous.", + "contentSnippet": "The country\u2019s forces along a broad stretch of the front say that, with Russia pushing forward, the war has never been so dangerous.", + "guid": "https://www.nytimes.com/2024/01/08/world/europe/ukraine-troops-exhausted-defensive.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drones (Pilotless Planes)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Zaporizhzhia (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Donetsk (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-08T14:08:16.000Z" + }, + { + "creator": "Tyler Hicks and Marc Santora", + "title": "\u2018Two Men Down\u2019: For Ukrainian Medics, It Was Time to Move", + "link": "https://www.nytimes.com/2024/01/07/world/europe/ukraine-medics-war-russia.html", + "pubDate": "Mon, 08 Jan 2024 03:38:12 +0000", + "dc:creator": "Tyler Hicks and Marc Santora", + "content": "They are the first line of treatment for soldiers wounded on the battlefield, racing against time to try to save lives.", + "contentSnippet": "They are the first line of treatment for soldiers wounded on the battlefield, racing against time to try to save lives.", + "guid": "https://www.nytimes.com/2024/01/07/world/europe/ukraine-medics-war-russia.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-08T03:38:12.000Z" + }, + { + "creator": "David E. Sanger and Steven Erlanger", + "title": "From Lebanon to the Red Sea, a Broader Conflict With Iran Looms", + "link": "https://www.nytimes.com/2024/01/07/us/politics/iran-us-israel-conflict.html", + "pubDate": "Sun, 07 Jan 2024 21:02:38 +0000", + "dc:creator": "David E. Sanger and Steven Erlanger", + "content": "With its proxies attacking from many vantage points and its nuclear program suddenly revived, Iran is posing a new challenge to the West \u2014 this time with Russia and China on its side.", + "contentSnippet": "With its proxies attacking from many vantage points and its nuclear program suddenly revived, Iran is posing a new challenge to the West \u2014 this time with Russia and China on its side.", + "guid": "https://www.nytimes.com/2024/01/07/us/politics/iran-us-israel-conflict.html", + "categories": [ + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nuclear Weapons", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hezbollah", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Houthis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-07T21:02:38.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Ukraine Says Russian Attacks Kill 11 Civilians", + "link": "https://www.nytimes.com/2024/01/06/world/europe/ukraine-russia-missile-strikes-donetsk.html", + "pubDate": "Sat, 06 Jan 2024 20:45:20 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "Ukrainian officials said missile assaults had struck private houses, trapping residents under the rubble, and that the dead included five children.", + "contentSnippet": "Ukrainian officials said missile assaults had struck private houses, trapping residents under the rubble, and that the dead included five children.", + "guid": "https://www.nytimes.com/2024/01/06/world/europe/ukraine-russia-missile-strikes-donetsk.html", + "categories": [ + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rescues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Donetsk (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pokrovsk (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-06T20:45:20.000Z" + }, + { + "creator": "Marc Santora", + "title": "Ukraine\u2019s Patriot Defenses at Work: Shuddering Booms and Bursts of Light", + "link": "https://www.nytimes.com/2024/01/06/world/europe/ukraine-patriots-us.html", + "pubDate": "Sat, 06 Jan 2024 16:38:54 +0000", + "dc:creator": "Marc Santora", + "content": "The American-provided air-defense systems have helped Ukraine defend itself against Russian assaults, but Washington has warned that it will not be able to keep them supplied for much longer.", + "contentSnippet": "The American-provided air-defense systems have helped Ukraine defend itself against Russian assaults, but Washington has warned that it will not be able to keep them supplied for much longer.", + "guid": "https://www.nytimes.com/2024/01/06/world/europe/ukraine-patriots-us.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Military Aircraft", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-06T16:38:54.000Z" + }, + { + "creator": "Ivan Nechepurenko", + "title": "Putin Aims to Strengthen Russia\u2019s Military by Easing Citizenship for Foreigners", + "link": "https://www.nytimes.com/2024/01/05/world/europe/putin-russia-army-foreigners-citizenship.html", + "pubDate": "Fri, 05 Jan 2024 14:02:08 +0000", + "dc:creator": "Ivan Nechepurenko", + "content": "President Vladimir V. Putin is seeking to strengthen his military to fight in Ukraine while avoiding a potentially unpopular mobilization of Russians.", + "contentSnippet": "President Vladimir V. Putin is seeking to strengthen his military to fight in Ukraine while avoiding a potentially unpopular mobilization of Russians.", + "guid": "https://www.nytimes.com/2024/01/05/world/europe/putin-russia-army-foreigners-citizenship.html", + "categories": [ + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Citizenship and Naturalization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Workers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Draft and Recruitment (Military)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-05T14:02:08.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "U.K. to Pledge $3 Billion in Military Aid to Ukraine", + "link": "https://www.nytimes.com/2024/01/12/world/europe/uk-ukraine-military-aid.html", + "pubDate": "Fri, 12 Jan 2024 10:44:17 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "The British package is part of an effort to offer reassurance to Kyiv amid concerns about a potential shortfall in Western support.", + "contentSnippet": "The British package is part of an effort to offer reassurance to Kyiv amid concerns about a potential shortfall in Western support.", + "guid": "https://www.nytimes.com/2024/01/12/world/europe/uk-ukraine-military-aid.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sunak, Rishi (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kyiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-12T10:44:17.000Z" + }, + { + "creator": "Lara Jakes and David E. Sanger", + "title": "Iran\u2019s Missile Capability Is Forcing the West to Weigh a Response", + "link": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-missile-program.html", + "pubDate": "Thu, 18 Jan 2024 11:32:14 +0000", + "dc:creator": "Lara Jakes and David E. Sanger", + "content": "Last year, the world discovered that Iran\u2019s drones were becoming world-class threats and a favorite of the Russians. Now, its revived missile fleet is drawing attention, too.", + "contentSnippet": "Last year, the world discovered that Iran\u2019s drones were becoming world-class threats and a favorite of the Russians. Now, its revived missile fleet is drawing attention, too.", + "guid": "https://www.nytimes.com/2024/01/18/world/middleeast/iran-missile-program.html", + "categories": [ + { + "_": "Iran", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Syria", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Islamic Revolutionary Guards Corps", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Iraq", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Abu Dhabi (United Arab Emirates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Baluchistan (Pakistan)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "internal-storyline-no", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T11:32:14.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Polish Truckers Lift Border Blockade With Ukraine", + "link": "https://www.nytimes.com/2024/01/17/world/europe/ukraine-poland-truckers-blockade.html", + "pubDate": "Wed, 17 Jan 2024 11:49:57 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "The suspension of the protest until March, while its leaders talk with the Polish government, promises some relief for Ukraine\u2019s flagging economy.", + "contentSnippet": "The suspension of the protest until March, while its leaders talk with the Polish government, promises some relief for Ukraine\u2019s flagging economy.", + "guid": "https://www.nytimes.com/2024/01/17/world/europe/ukraine-poland-truckers-blockade.html", + "categories": [ + { + "_": "Trucks and Trucking", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kyiv (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Poland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T11:49:57.000Z" + }, + { + "creator": "Erica L. Green and Michael D. Shear", + "title": "Biden Invites Congressional Leaders to White House to Discuss Aid to Ukraine", + "link": "https://www.nytimes.com/2024/01/16/us/politics/biden-congressional-leaders-ukraine.html", + "pubDate": "Tue, 16 Jan 2024 23:03:12 +0000", + "dc:creator": "Erica L. Green and Michael D. Shear", + "content": "President Biden\u2019s request for more than $110 billion in assistance for Ukraine, Israel and the border, has been held up by a dispute with Republicans on Capitol Hill.", + "contentSnippet": "President Biden\u2019s request for more than $110 billion in assistance for Ukraine, Israel and the border, has been held up by a dispute with Republicans on Capitol Hill.", + "guid": "https://www.nytimes.com/2024/01/16/us/politics/biden-congressional-leaders-ukraine.html", + "categories": [ + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-16T23:03:12.000Z" + }, + { + "creator": "Andrew E. Kramer, Jim Tankersley and Jordyn Holman", + "title": "Zelensky Calls for Peace, Not More Weapons, in Davos", + "link": "https://www.nytimes.com/2024/01/16/world/europe/ukraine-zelensky-davos-switzerland-peace.html", + "pubDate": "Tue, 16 Jan 2024 17:40:53 +0000", + "dc:creator": "Andrew E. Kramer, Jim Tankersley and Jordyn Holman", + "content": "In a speech in Switzerland, the Ukrainian president asked for more sanctions on Moscow, but he did not appeal for weaponry for new offenses.", + "contentSnippet": "In a speech in Switzerland, the Ukrainian president asked for more sanctions on Moscow, but he did not appeal for weaponry for new offenses.", + "guid": "https://www.nytimes.com/2024/01/16/world/europe/ukraine-zelensky-davos-switzerland-peace.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Peace Process", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "World Economic Forum", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Switzerland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-16T17:40:53.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "The War Has Reined In Ukraine\u2019s Oligarchs, at Least for Now", + "link": "https://www.nytimes.com/2024/01/15/world/europe/ukraine-oligarchs-crackdown.html", + "pubDate": "Mon, 15 Jan 2024 19:57:07 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "Oligarchs have lost billions from the shelling of their factories, and the government has used its wartime powers to break their political influence.", + "contentSnippet": "Oligarchs have lost billions from the shelling of their factories, and the government has used its wartime powers to break their political influence.", + "guid": "https://www.nytimes.com/2024/01/15/world/europe/ukraine-oligarchs-crackdown.html", + "categories": [ + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Corruption (Institutional)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bribery and Kickbacks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Akhmetov, Rinat", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Firtash, Dmitry V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kolomoisky, Igor V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-15T19:57:07.000Z" + }, + { + "creator": "Lynsey Addario and Megan Specia", + "title": "War or No War, Many Older Ukrainians Want to Stay Put", + "link": "https://www.nytimes.com/2024/01/14/world/europe/ukraine-russia-war-elderly.html", + "pubDate": "Sun, 14 Jan 2024 19:02:26 +0000", + "dc:creator": "Lynsey Addario and Megan Specia", + "content": "The front line in Ukraine is largely peopled by the elderly these days. Some can\u2019t afford to get out. Others say they won\u2019t abandon their homes.", + "contentSnippet": "The front line in Ukraine is largely peopled by the elderly these days. Some can\u2019t afford to get out. Others say they won\u2019t abandon their homes.", + "guid": "https://www.nytimes.com/2024/01/14/world/europe/ukraine-russia-war-elderly.html", + "categories": [ + { + "_": "vis-photo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Elderly", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-14T19:02:26.000Z" + }, + { + "creator": "Thomas Gibbons-Neff and Finbarr O\u2019Reilly", + "title": "Russia Regains Upper Hand in Ukraine\u2019s East as Kyiv\u2019s Troops Flag", + "link": "https://www.nytimes.com/2024/01/13/world/europe/ukraine-russia-war.html", + "pubDate": "Sat, 13 Jan 2024 20:07:59 +0000", + "dc:creator": "Thomas Gibbons-Neff and Finbarr O\u2019Reilly", + "content": "Ukrainians are weary, short of ammunition and outnumbered, and their prospects look bleak. \u201cWe can stop them for now, but who knows,\u201d one soldier said. \u201cTomorrow or the next day, maybe we can\u2019t stop them.\u201d", + "contentSnippet": "Ukrainians are weary, short of ammunition and outnumbered, and their prospects look bleak. \u201cWe can stop them for now, but who knows,\u201d one soldier said. \u201cTomorrow or the next day, maybe we can\u2019t stop them.\u201d", + "guid": "https://www.nytimes.com/2024/01/13/world/europe/ukraine-russia-war.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Avdiivka (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Donbas (Ukraine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-13T20:07:59.000Z" + }, + { + "creator": "Constant M\u00e9heut", + "title": "Russia Launches Large-Scale Missile Attack on Ukraine", + "link": "https://www.nytimes.com/2024/01/13/world/europe/russia-ukraine-missile-attacks.html", + "pubDate": "Sat, 13 Jan 2024 18:03:29 +0000", + "dc:creator": "Constant M\u00e9heut", + "content": "The assault was in line with a wider air campaign that Russia began in late December, seeking to wear down Ukrainian air defenses.", + "contentSnippet": "The assault was in line with a wider air campaign that Russia began in late December, seeking to wear down Ukrainian air defenses.", + "guid": "https://www.nytimes.com/2024/01/13/world/europe/russia-ukraine-missile-attacks.html", + "categories": [ + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-13T18:03:29.000Z" + }, + { + "creator": "Lara Jakes", + "title": "U.S. Military Aid to Ukraine Was Poorly Tracked, Pentagon Report Says", + "link": "https://www.nytimes.com/2024/01/11/world/europe/us-military-aid-ukraine.html", + "pubDate": "Thu, 11 Jan 2024 22:59:07 +0000", + "dc:creator": "Lara Jakes", + "content": "The report found that American officials and diplomats had failed to quickly or fully account for all of the nearly 40,000 weapons sent to the front.", + "contentSnippet": "The report found that American officials and diplomats had failed to quickly or fully account for all of the nearly 40,000 weapons sent to the front.", + "guid": "https://www.nytimes.com/2024/01/11/world/europe/us-military-aid-ukraine.html", + "categories": [ + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-11T22:59:07.000Z" + }, + { + "creator": "Andrew Higgins", + "title": "Slovakia to Halt Arms Deliveries to Ukraine, as New Leader Promised", + "link": "https://www.nytimes.com/2023/10/26/world/europe/slovakia-weapons-ukraine-war.html", + "pubDate": "Thu, 26 Oct 2023 19:00:22 +0000", + "dc:creator": "Andrew Higgins", + "content": "The newly appointed prime minister, Robert Fico, whose party aligned with pro-Russian forces during the recent election campaign, had promised \u201cnot to send a single cartridge\u201d of ammunition to Kyiv.", + "contentSnippet": "The newly appointed prime minister, Robert Fico, whose party aligned with pro-Russian forces during the recent election campaign, had promised \u201cnot to send a single cartridge\u201d of ammunition to Kyiv.", + "guid": "https://www.nytimes.com/2023/10/26/world/europe/slovakia-weapons-ukraine-war.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fico, Robert", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Slovakia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Orban, Viktor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Smer-Social Democracy (Slovakia)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hungary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-26T19:00:22.000Z" + }, + { + "creator": "Shawn Hubler, Christian Boone, Dan Simmons, Nicholas Bogel-Burroughs and Jack Healy", + "title": "What Voters Think About U.S. Support for the Wars in Israel and Ukraine", + "link": "https://www.nytimes.com/2023/10/21/us/united-states-israel-ukraine-war.html", + "pubDate": "Sun, 22 Oct 2023 22:12:32 +0000", + "dc:creator": "Shawn Hubler, Christian Boone, Dan Simmons, Nicholas Bogel-Burroughs and Jack Healy", + "content": "Interviews with voters in key states show that while there is support for Israel and Ukraine, many are torn about how much the U.S. can or should be involved.", + "contentSnippet": "Interviews with voters in key states show that while there is support for Israel and Ukraine, many are torn about how much the U.S. can or should be involved.", + "guid": "https://www.nytimes.com/2023/10/21/us/united-states-israel-ukraine-war.html", + "categories": [ + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Terrorism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palestinian-Americans", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Anti-Semitism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Polls and Public Opinion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arizona", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Atlanta (Ga)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Bucks County (Pa)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Milwaukee (Wis)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Pennsylvania", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Philadelphia (Pa)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Phoenix (Ariz)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Wisconsin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-22T22:12:32.000Z" + }, + { + "creator": "Stephanie Nolen", + "title": "In Global Conflict Zones, Hospitals and Doctors Are No Longer Spared", + "link": "https://www.nytimes.com/2023/10/21/health/gaza-ukraine-hospitals-doctors.html", + "pubDate": "Sat, 21 Oct 2023 09:02:41 +0000", + "dc:creator": "Stephanie Nolen", + "content": "Over the last two decades, medical facilities and staff have become casualties of war more frequently, in violation of international law.", + "contentSnippet": "Over the last two decades, medical facilities and staff have become casualties of war more frequently, in violation of international law.", + "guid": "https://www.nytimes.com/2023/10/21/health/gaza-ukraine-hospitals-doctors.html", + "categories": [ + { + "_": "Civilian Casualties", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Health Care Workers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hospitals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Humanitarian Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Geneva Conventions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War Crimes, Genocide and Crimes Against Humanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sudan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Myanmar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Somalia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Doctors Without Borders", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Doctors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-21T09:02:41.000Z" + }, + { + "creator": "Bhadra Sharma and Jeffrey Gettleman", + "title": "A Small Country Far From Ukraine Is Sending Hundreds toWar, on Both Sides", + "link": "https://www.nytimes.com/2023/10/20/world/asia/ukraine-russia-nepal.html", + "pubDate": "Fri, 20 Oct 2023 09:03:08 +0000", + "dc:creator": "Bhadra Sharma and Jeffrey Gettleman", + "content": "Scores of young Nepali men have gone to fight, some lured by Russia\u2019s promise of work, others to fight for Ukraine, raising the prospect of Nepalis fighting one another in a distant war.", + "contentSnippet": "Scores of young Nepali men have gone to fight, some lured by Russia\u2019s promise of work, others to fight for Ukraine, raising the prospect of Nepalis fighting one another in a distant war.", + "guid": "https://www.nytimes.com/2023/10/20/world/asia/ukraine-russia-nepal.html", + "categories": [ + { + "_": "Draft and Recruitment (Military)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Economic Conditions and Trends", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Unemployment", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nepal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-20T09:03:08.000Z" + }, + { + "creator": "David E. Sanger", + "title": "Biden\u2019s Moment: A President Convinced of America\u2019s Role in the World", + "link": "https://www.nytimes.com/2023/10/19/us/politics/biden-israel-ukraine.html", + "pubDate": "Fri, 20 Oct 2023 02:07:32 +0000", + "dc:creator": "David E. Sanger", + "content": "In a fractured political moment at home and abroad, it is unclear whether President Biden can bring many Americans along.", + "contentSnippet": "In a fractured political moment at home and abroad, it is unclear whether President Biden can bring many Americans along.", + "guid": "https://www.nytimes.com/2023/10/19/us/politics/biden-israel-ukraine.html", + "categories": [ + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-20T02:07:32.000Z" + }, + { + "creator": "The New York Times", + "title": "Full Transcript: Biden\u2019s Speech on Israel-Hamas and Russia-Ukraine Wars", + "link": "https://www.nytimes.com/2023/10/19/us/politics/transcript-biden-speech-israel-ukraine.html", + "pubDate": "Fri, 20 Oct 2023 01:14:35 +0000", + "dc:creator": "The New York Times", + "content": "The president laid out what he characterized as the stakes for democracy as he pleaded with Americans to stand firmly behind Israel and Ukraine.", + "contentSnippet": "The president laid out what he characterized as the stakes for democracy as he pleaded with Americans to stand firmly behind Israel and Ukraine.", + "guid": "https://www.nytimes.com/2023/10/19/us/politics/transcript-biden-speech-israel-ukraine.html", + "categories": [ + { + "_": "Speeches and Statements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "War and Armed Conflicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Democracy (Theory and Philosophy)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hamas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-20T01:14:35.000Z" + }, + { + "creator": "Eric Lipton", + "title": "Israel-Hamas War Adds to Surge in Global Weapons Sales", + "link": "https://www.nytimes.com/2023/10/17/us/politics/israel-gaza-global-arms-sales.html", + "pubDate": "Wed, 18 Oct 2023 18:57:32 +0000", + "dc:creator": "Eric Lipton", + "content": "Israel\u2019s conflict with Hamas, Russia\u2019s invasion of Ukraine and the rise of China have brought a boom for weapons makers and a chance for Washington to build closer military ties to other countries.", + "contentSnippet": "Israel\u2019s conflict with Hamas, Russia\u2019s invasion of Ukraine and the rise of China have brought a boom for weapons makers and a chance for Washington to build closer military ties to other countries.", + "guid": "https://www.nytimes.com/2023/10/17/us/politics/israel-gaza-global-arms-sales.html", + "categories": [ + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense Contracts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "North Atlantic Treaty Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Boeing Company", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Lockheed Martin Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Northrop Grumman Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Raytheon Company", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Middle East", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Poland", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Indonesia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Saudi Arabia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Turkey", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "South Korea", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-18T18:57:32.000Z" + }, + { + "creator": "David Pierson, Anatoly Kurmanaev and Keith Bradsher", + "title": "Putin Visits China to Bolster Ties With \u2018My Friend,\u2019 Xi", + "link": "https://www.nytimes.com/2023/10/16/world/asia/putin-china-xi.html", + "pubDate": "Wed, 18 Oct 2023 05:39:30 +0000", + "dc:creator": "David Pierson, Anatoly Kurmanaev and Keith Bradsher", + "content": "The Russian leader is likely to push for more economic support when he meets with his Chinese counterpart in Beijing.", + "contentSnippet": "The Russian leader is likely to push for more economic support when he meets with his Chinese counterpart in Beijing.", + "guid": "https://www.nytimes.com/2023/10/16/world/asia/putin-china-xi.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Belt and Road Initiative (China)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Putin, Vladimir V", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Xi Jinping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-18T05:39:30.000Z" + }, + { + "creator": "David E. Sanger", + "title": "Inside Biden\u2019s Reversal on Sending Long-Range Missiles to Ukraine", + "link": "https://www.nytimes.com/2023/10/17/us/politics/biden-ukraine-atacms-weapons.html", + "pubDate": "Wed, 18 Oct 2023 01:22:05 +0000", + "dc:creator": "David E. Sanger", + "content": "The story is more complex than a caricature in Washington that President Biden is cautious to a fault, and says no until the pressure is insurmountable.", + "contentSnippet": "The story is more complex than a caricature in Washington that President Biden is cautious to a fault, and says no until the pressure is insurmountable.", + "guid": "https://www.nytimes.com/2023/10/17/us/politics/biden-ukraine-atacms-weapons.html", + "categories": [ + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Blinken, Antony J", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Austin, Lloyd J III", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "State Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-18T01:22:05.000Z" + }, + { + "creator": "David E. Sanger, Lara Jakes, Marc Santora, Constant M\u00e9heut and John Ismay", + "title": "Ukraine Said to Use ATACMS, a Powerful Weapon System, for First Time", + "link": "https://www.nytimes.com/2023/10/17/world/europe/ukraine-atacms-attacks-russia.html", + "pubDate": "Tue, 17 Oct 2023 21:12:31 +0000", + "dc:creator": "David E. Sanger, Lara Jakes, Marc Santora, Constant M\u00e9heut and John Ismay", + "content": "Ukrainian forces attacked two key Russian air bases behind enemy lines on Tuesday, using American-made long-range missiles known as ATACMS, a U.S. official said.", + "contentSnippet": "Ukrainian forces attacked two key Russian air bases behind enemy lines on Tuesday, using American-made long-range missiles known as ATACMS, a U.S. official said.", + "guid": "https://www.nytimes.com/2023/10/17/world/europe/ukraine-atacms-attacks-russia.html", + "categories": [ + { + "_": "Russian Invasion of Ukraine (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Missiles and Missile Defense Systems", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cluster Munitions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arms Trade", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Foreign Aid", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-17T21:12:31.000Z" + } +] diff --git a/intro to react/newData/oldNews/9857cc183f75260fe3c588551c290ea9463a37c28b1c7d80949fc653c6f1aeaa.json b/intro to react/newData/oldNews/9857cc183f75260fe3c588551c290ea9463a37c28b1c7d80949fc653c6f1aeaa.json index 996ba66..4924c04 100644 --- a/intro to react/newData/oldNews/9857cc183f75260fe3c588551c290ea9463a37c28b1c7d80949fc653c6f1aeaa.json +++ b/intro to react/newData/oldNews/9857cc183f75260fe3c588551c290ea9463a37c28b1c7d80949fc653c6f1aeaa.json @@ -1,13292 +1,13292 @@ [ - { - "creator": "Jack Ewing", - "title": "Tesla Begins Delivery of the Cybertruck Today", - "link": "https://www.nytimes.com/2023/11/30/business/tesla-cybertruck-delivery-release.html", - "pubDate": "Thu, 30 Nov 2023 22:06:22 +0000", - "dc:creator": "Jack Ewing", - "content": "Two years behind schedule, the electric model has an unusual design that sets it apart from rival pickups, which could limit its sales.", - "contentSnippet": "Two years behind schedule, the electric model has an unusual design that sets it apart from rival pickups, which could limit its sales.", - "guid": "https://www.nytimes.com/2023/11/30/business/tesla-cybertruck-delivery-release.html", - "categories": [ - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sports Utility Vehicles and Light Trucks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cybertruck", - "$": { - "domain": "" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ford Motor Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-11-30T22:06:22.000Z" - }, - { - "creator": "Kate Conger and Tiffany Hsu", - "title": "Advertisers Say They Do Not Plan to Return to X After Musk\u2019s Comments", - "link": "https://www.nytimes.com/2023/11/30/technology/elon-musk-dealbook-advertisers.html", - "pubDate": "Thu, 30 Nov 2023 21:53:27 +0000", - "dc:creator": "Kate Conger and Tiffany Hsu", - "content": "Elon Musk, the owner of X, criticized advertisers with expletives on Wednesday at The New York Times\u2019s DealBook Summit.", - "contentSnippet": "Elon Musk, the owner of X, criticized advertisers with expletives on Wednesday at The New York Times\u2019s DealBook Summit.", - "guid": "https://www.nytimes.com/2023/11/30/technology/elon-musk-dealbook-advertisers.html", - "categories": [ - { - "_": "Advertising and Marketing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Indecency, Obscenity and Profanity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Anti-Semitism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Online Advertising", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Twitter", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Yaccarino, Linda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-30T21:53:27.000Z" - }, - { - "creator": "Steven Lee Myers", - "title": "4,789 Facebook Accounts in China Impersonated Americans, Meta Says", - "link": "https://www.nytimes.com/2023/11/30/technology/facebook-china-fake.html", - "pubDate": "Thu, 30 Nov 2023 21:42:03 +0000", - "dc:creator": "Steven Lee Myers", - "content": "The company warned that the inauthentic accounts underscored the threat of foreign election interference in 2024.", - "contentSnippet": "The company warned that the inauthentic accounts underscored the threat of foreign election interference in 2024.", - "guid": "https://www.nytimes.com/2023/11/30/technology/facebook-china-fake.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Presidential Election of 2024", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conspiracy Theories", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-30T21:42:03.000Z" - }, - { - "creator": "Tiffany Hsu and Steven Lee Myers", - "title": "Disinformation Is Big Challenge as COP28 Opens in Dubai", - "link": "https://www.nytimes.com/2023/11/30/technology/cop28-climate-disinformation.html", - "pubDate": "Thu, 30 Nov 2023 14:13:10 +0000", - "dc:creator": "Tiffany Hsu and Steven Lee Myers", - "content": "Online influencers, fossil fuel companies and some of the countries attending COP28 have nourished a feedback loop of falsehoods.", - "contentSnippet": "Online influencers, fossil fuel companies and some of the countries attending COP28 have nourished a feedback loop of falsehoods.", - "guid": "https://www.nytimes.com/2023/11/30/technology/cop28-climate-disinformation.html", - "categories": [ - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Propaganda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "China National Petroleum Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Institute for Strategic Dialogue", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Nations Framework Convention on Climate Change", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-30T14:13:10.000Z" - }, - { - "creator": "Steve Lohr", - "title": "Big Companies Find a Way to Identify A.I. Data They Can Trust", - "link": "https://www.nytimes.com/2023/11/30/business/ai-data-standards.html", - "pubDate": "Thu, 30 Nov 2023 11:00:13 +0000", - "dc:creator": "Steve Lohr", - "content": "Mainstream companies have concerns about the lineage of the data that powers A.I. applications. An industry group is addressing that challenge.", - "contentSnippet": "Mainstream companies have concerns about the lineage of the data that powers A.I. applications. An industry group is addressing that challenge.", - "guid": "https://www.nytimes.com/2023/11/30/business/ai-data-standards.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Enterprise Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Business Machines Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-11-30T11:00:13.000Z" - }, - { - "creator": "Cade Metz and Tripp Mickle", - "title": "Back at OpenAI, Sam Altman Outlines the Company\u2019s Priorities", - "link": "https://www.nytimes.com/2023/11/29/technology/openai-sam-altman-plans.html", - "pubDate": "Thu, 30 Nov 2023 02:24:44 +0000", - "dc:creator": "Cade Metz and Tripp Mickle", - "content": "In a blog post, Mr. Altman said he would focus on improving products and building a new board, which added Microsoft as a nonvoting member.", - "contentSnippet": "In a blog post, Mr. Altman said he would focus on improving products and building a new board, which added Microsoft as a nonvoting member.", - "guid": "https://www.nytimes.com/2023/11/29/technology/openai-sam-altman-plans.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nonprofit Organizations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Appointments and Executive Changes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Venture Capital", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Boards of Directors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Brockman, Greg", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sutskever, Ilya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-30T02:24:44.000Z" - }, - { - "creator": "Neal E. Boudette and Yiwen Lu", - "title": "G.M. to Cut Spending on Cruise Self-Driving Unit", - "link": "https://www.nytimes.com/2023/11/29/technology/cruise-general-motors.html", - "pubDate": "Wed, 29 Nov 2023 21:05:31 +0000", - "dc:creator": "Neal E. Boudette and Yiwen Lu", - "content": "General Motors will \u201csubstantially lower spending\u201d on autonomous vehicle efforts in 2024 after accidents with its self-driving taxis in San Francisco.", - "contentSnippet": "General Motors will \u201csubstantially lower spending\u201d on autonomous vehicle efforts in 2024 after accidents with its self-driving taxis in San Francisco.", - "guid": "https://www.nytimes.com/2023/11/29/technology/cruise-general-motors.html", - "categories": [ - { - "_": "General Motors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Cruise LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Driverless and Semiautonomous Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Taxicabs and Taxicab Drivers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Barra, Mary T", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "San Francisco (Calif)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T21:05:31.000Z" - }, - { - "creator": "Isabella Kwai", - "title": "London\u2019s Black Cabs Can Soon Join Uber. But Will They?", - "link": "https://www.nytimes.com/2023/11/29/world/europe/uber-black-cab-taxi-london.html", - "pubDate": "Wed, 29 Nov 2023 18:59:25 +0000", - "dc:creator": "Isabella Kwai", - "content": "In 2024, passengers are set to have the option to book black cabs through Uber. After longstanding tensions, a union for drivers said they \u201chave no interest.\u201d", - "contentSnippet": "In 2024, passengers are set to have the option to book black cabs through Uber. After longstanding tensions, a union for drivers said they \u201chave no interest.\u201d", - "guid": "https://www.nytimes.com/2023/11/29/world/europe/uber-black-cab-taxi-london.html", - "categories": [ - { - "_": "Taxicabs and Taxicab Drivers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Uber Technologies Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "London (England)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-29T18:59:25.000Z" - }, - { - "creator": "Jesus Jim\u00e9nez", - "title": "Don\u2019t Be Afraid of the iPhone\u2019s NameDrop Feature, Experts Say", - "link": "https://www.nytimes.com/2023/11/29/technology/namedrop-apple-iphone-police.html", - "pubDate": "Wed, 29 Nov 2023 17:58:22 +0000", - "dc:creator": "Jesus Jim\u00e9nez", - "content": "Police departments have issued warnings about a new Apple setting that lets users exchange contact information by bringing their devices together. Tech experts say the fears are overblown.", - "contentSnippet": "Police departments have issued warnings about a new Apple setting that lets users exchange contact information by bringing their devices together. Tech experts say the fears are overblown.", - "guid": "https://www.nytimes.com/2023/11/29/technology/namedrop-apple-iphone-police.html", - "categories": [ - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Police", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "iPhone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Watches and Clocks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wearable Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wireless Communications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T17:58:22.000Z" - }, - { - "creator": "Kashmir Hill", - "title": "How Your Child\u2019s Online Mistake Can Ruin Your Digital Life", - "link": "https://www.nytimes.com/2023/11/27/technology/google-youtube-abuse-mistake.html", - "pubDate": "Wed, 29 Nov 2023 17:52:24 +0000", - "dc:creator": "Kashmir Hill", - "content": "Google has a zero-tolerance policy for child abuse content. The scanning process can sometimes go awry and tar innocent individuals as abusers.", - "contentSnippet": "Google has a zero-tolerance policy for child abuse content. The scanning process can sometimes go awry and tar innocent individuals as abusers.", - "guid": "https://www.nytimes.com/2023/11/27/technology/google-youtube-abuse-mistake.html", - "categories": [ - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "YouTube.com", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Child Abuse and Neglect", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Children and Childhood", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "National Center for Missing and Exploited Children", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Child Pornography", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Parenting", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "audio-neutral-informative", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T17:52:24.000Z" - }, - { - "creator": "Ana Swanson and Jack Ewing", - "title": "U.S. Debates How Much to Sever Electric Car Industry\u2019s Ties to China", - "link": "https://www.nytimes.com/2023/11/29/business/economy/electric-car-china-supply-chain.html", - "pubDate": "Wed, 29 Nov 2023 17:49:54 +0000", - "dc:creator": "Ana Swanson and Jack Ewing", - "content": "Some firms argue that a law aimed at popularizing electric vehicles risks turning the United States into an assembly shop for Chinese-made technology.", - "contentSnippet": "Some firms argue that a law aimed at popularizing electric vehicles risks turning the United States into an assembly shop for Chinese-made technology.", - "guid": "https://www.nytimes.com/2023/11/29/business/economy/electric-car-china-supply-chain.html", - "categories": [ - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supply Chain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "International Trade and World Market", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Batteries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Chemicals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tax Credits, Deductions and Exemptions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Economy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Metals and Minerals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Huntsman, Peter R (1963- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Huntsman Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-11-29T17:49:54.000Z" - }, - { - "creator": "Brian X. Chen", - "title": "Apple Is Doing Its Part to End Green Bubble Shaming. It\u2019s Our Turn.", - "link": "https://www.nytimes.com/2023/11/29/technology/personaltech/apple-iphone-android-bubbles.html", - "pubDate": "Wed, 29 Nov 2023 14:00:10 +0000", - "dc:creator": "Brian X. Chen", - "content": "While texting technology will soon get better, the \u201cblue versus green bubble\u201d disparity is far from over.", - "contentSnippet": "While texting technology will soon get better, the \u201cblue versus green bubble\u201d disparity is far from over.", - "guid": "https://www.nytimes.com/2023/11/29/technology/personaltech/apple-iphone-android-bubbles.html", - "categories": [ - { - "_": "Smartphones", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Text Messaging", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Instant Messaging", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "iPhone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Android (Operating System)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T14:00:10.000Z" - }, - { - "creator": "Victor Mather", - "title": "Make Sure Your Google Accounts Are Active, or They Might Be Deleted", - "link": "https://www.nytimes.com/2023/11/28/technology/gmail-delete-accounts.html", - "pubDate": "Wed, 29 Nov 2023 12:05:29 +0000", - "dc:creator": "Victor Mather", - "content": "The company says it will start purging accounts, including services like Gmail and YouTube, that have been idle for two years or more.", - "contentSnippet": "The company says it will start purging accounts, including services like Gmail and YouTube, that have been idle for two years or more.", - "guid": "https://www.nytimes.com/2023/11/28/technology/gmail-delete-accounts.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "E-Mail", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-29T12:05:29.000Z" - }, - { - "creator": "Santul Nerkar and Kevin Draper", - "title": "For Sports Illustrated, Report About Fake Authors Is Latest Stumble", - "link": "https://www.nytimes.com/2023/11/28/business/sports-illustrated-artifical-intelligence.html", - "pubDate": "Tue, 28 Nov 2023 21:07:28 +0000", - "dc:creator": "Santul Nerkar and Kevin Draper", - "content": "The venerable magazine has experienced management upheaval and staff complaints in recent years. Now there\u2019s a question over who wrote product reviews on its site.", - "contentSnippet": "The venerable magazine has experienced management upheaval and staff complaints in recent years. Now there\u2019s a question over who wrote product reviews on its site.", - "guid": "https://www.nytimes.com/2023/11/28/business/sports-illustrated-artifical-intelligence.html", - "categories": [ - { - "_": "Sports Illustrated", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Authentic Brands Group", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "TheMaven Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Magazines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-28T21:07:28.000Z" - }, - { - "creator": "Karen Weise", - "title": "Amazon Introduces Q, an A.I. Chatbot for Companies", - "link": "https://www.nytimes.com/2023/11/28/technology/amazon-ai-chatbot-q.html", - "pubDate": "Tue, 28 Nov 2023 19:10:07 +0000", - "dc:creator": "Karen Weise", - "content": "Amazon has been racing to shake off the perception that it is lagging in the push to take advantage of artificial intelligence.", - "contentSnippet": "Amazon has been racing to shake off the perception that it is lagging in the push to take advantage of artificial intelligence.", - "guid": "https://www.nytimes.com/2023/11/28/technology/amazon-ai-chatbot-q.html", - "categories": [ - { - "_": "Amazon.com Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cloud Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-28T19:10:07.000Z" - }, - { - "creator": "Mark Mazzetti and Edward Wong", - "title": "Warnings Emerge Over Emirati A.I. Firm G42\u2019s Ties to China", - "link": "https://www.nytimes.com/2023/11/27/us/politics/ai-us-uae-china-security-g42.html", - "pubDate": "Tue, 28 Nov 2023 08:09:04 +0000", - "dc:creator": "Mark Mazzetti and Edward Wong", - "content": "American spy agencies have warned about the Emirati firm G42 and its work with large Chinese companies that U.S. officials consider security threats.", - "contentSnippet": "American spy agencies have warned about the Emirati firm G42 and its work with large Chinese companies that U.S. officials consider security threats.", - "guid": "https://www.nytimes.com/2023/11/27/us/politics/ai-us-uae-china-security-g42.html", - "categories": [ - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Surveillance of Citizens by Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Group 42 (G42)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Huawei Technologies Co Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Central Intelligence Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Arab Emirates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-28T08:09:04.000Z" - }, - { - "creator": "Ryan Mac and Kate Conger", - "title": "X May Lose Up to $75 Million in Revenue as More Advertisers Pull Out", - "link": "https://www.nytimes.com/2023/11/24/business/x-elon-musk-advertisers.html", - "pubDate": "Sun, 26 Nov 2023 22:54:29 +0000", - "dc:creator": "Ryan Mac and Kate Conger", - "content": "Internal documents show companies like Airbnb, Coca-Cola and Microsoft have halted ads, or may do so, after Elon Musk\u2019s endorsement of an antisemitic conspiracy theory.", - "contentSnippet": "Internal documents show companies like Airbnb, Coca-Cola and Microsoft have halted ads, or may do so, after Elon Musk\u2019s endorsement of an antisemitic conspiracy theory.", - "guid": "https://www.nytimes.com/2023/11/24/business/x-elon-musk-advertisers.html", - "categories": [ - { - "_": "Twitter", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Online Advertising", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Company Reports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Yaccarino, Linda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Anti-Semitism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-26T22:54:29.000Z" - }, - { - "creator": "Natasha Singer", - "title": "At Meta, Millions of Underage Users Were an \u2018Open Secret,\u2019 States Say", - "link": "https://www.nytimes.com/2023/11/25/technology/instagram-meta-children-privacy.html", - "pubDate": "Sun, 26 Nov 2023 00:16:19 +0000", - "dc:creator": "Natasha Singer", - "content": "Meta \u201croutinely documented\u201d children under 13 on Instagram and collected their data, according to a newly unsealed complaint.", - "contentSnippet": "Meta \u201croutinely documented\u201d children under 13 on Instagram and collected their data, according to a newly unsealed complaint.", - "guid": "https://www.nytimes.com/2023/11/25/technology/instagram-meta-children-privacy.html", - "categories": [ - { - "_": "Meta", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Instagram Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Children and Childhood", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Children's Online Privacy Protection Act", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "States (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "childrens privacy", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-11-26T00:16:19.000Z" - }, - { - "creator": "Eric Lipton", - "title": "\u00bfCu\u00e1les son los riesgos del armamento que funciona con IA?", - "link": "https://www.nytimes.com/es/2023/11/24/espanol/inteligencia-artificial-riesgos-armas.html", - "pubDate": "Fri, 24 Nov 2023 08:00:33 +0000", - "dc:creator": "Eric Lipton", - "content": "Las preocupaciones por las armas capaces de matar sin intervenci\u00f3n humana no son totalmente nuevas.", - "contentSnippet": "Las preocupaciones por las armas capaces de matar sin intervenci\u00f3n humana no son totalmente nuevas.", - "guid": "https://www.nytimes.com/es/2023/11/24/espanol/inteligencia-artificial-riesgos-armas.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense Contracts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Drones (Pilotless Planes)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Palantir Technologies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Scharre, Paul", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Mines, Explosive", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United Nations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-11-24T08:00:33.000Z" - }, - { - "creator": "Cade Metz, Tripp Mickle, Mike Isaac, Karen Weise and Kevin Roose", - "title": "Five Days of Chaos: How Sam Altman Returned to OpenAI", - "link": "https://www.nytimes.com/2023/11/22/technology/how-sam-altman-returned-openai.html", - "pubDate": "Wed, 22 Nov 2023 23:33:55 +0000", - "dc:creator": "Cade Metz, Tripp Mickle, Mike Isaac, Karen Weise and Kevin Roose", - "content": "On Friday, Mr. Altman was pushed out of the hot A.I. start-up he ran. But an intense pressure campaign and negotiations brought him back.", - "contentSnippet": "On Friday, Mr. Altman was pushed out of the hot A.I. start-up he ran. But an intense pressure campaign and negotiations brought him back.", - "guid": "https://www.nytimes.com/2023/11/22/technology/how-sam-altman-returned-openai.html", - "categories": [ - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Brockman, Greg", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Appointments and Executive Changes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Boards of Directors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-11-22T23:33:55.000Z" - }, - { - "creator": "Sapna Maheshwari", - "title": "Judge Halts TikTok Ban in Montana", - "link": "https://www.nytimes.com/2023/11/30/business/tiktok-montana-ban-blocked.html", - "pubDate": "Fri, 01 Dec 2023 00:39:28 +0000", - "dc:creator": "Sapna Maheshwari", - "content": "TikTok, which is owned by the Chinese company ByteDance, has been locked in a legal battle with Montana since the state passed the ban in April.", - "contentSnippet": "TikTok, which is owned by the Chinese company ByteDance, has been locked in a legal battle with Montana since the state passed the ban in April.", - "guid": "https://www.nytimes.com/2023/11/30/business/tiktok-montana-ban-blocked.html", - "categories": [ - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Beijing Bytedance Technology Co Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Montana", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Molloy, Donald W", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Knudsen, Austin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freedom of Speech and Expression", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Data-Mining and Database Marketing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "First Amendment (US Constitution)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-01T00:39:28.000Z" - }, - { - "creator": "Adam Satariano, Megan Specia and Glenn Thrush", - "title": "UK Accuses Russia of Yearslong Cyberattacks", - "link": "https://www.nytimes.com/2023/12/07/world/europe/uk-russia-cyberattacks.html", - "pubDate": "Fri, 08 Dec 2023 08:13:40 +0000", - "dc:creator": "Adam Satariano, Megan Specia and Glenn Thrush", - "content": "The government said a group linked to Russia\u2019s intelligence service carried out sustained operations to undermine trust in Britain\u2019s political system.", - "contentSnippet": "The government said a group linked to Russia\u2019s intelligence service carried out sustained operations to undermine trust in Britain\u2019s political system.", - "guid": "https://www.nytimes.com/2023/12/07/world/europe/uk-russia-cyberattacks.html", - "categories": [ - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cyberwarfare and Defense", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Great Britain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Cameron, David", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Federal Security Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-08T08:13:40.000Z" - }, - { - "creator": "David Yaffe-Bellany", - "title": "Binance Founder Ordered to Remain in U.S. Before Sentencing", - "link": "https://www.nytimes.com/2023/12/08/technology/cz-changpeng-zhao-binance-release.html", - "pubDate": "Fri, 08 Dec 2023 05:14:53 +0000", - "dc:creator": "David Yaffe-Bellany", - "content": "Changpeng Zhao, better known as CZ, faces as much as 18 months in prison after he pleaded guilty to federal money-laundering violations.", - "contentSnippet": "Changpeng Zhao, better known as CZ, faces as much as 18 months in prison after he pleaded guilty to federal money-laundering violations.", - "guid": "https://www.nytimes.com/2023/12/08/technology/cz-changpeng-zhao-binance-release.html", - "categories": [ - { - "_": "Virtual Currency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Money Laundering", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prisons and Prisoners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Binance", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Zhao, Changpeng", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-08T05:14:53.000Z" - }, - { - "creator": "Ana Swanson", - "title": "Lawmakers Press Biden Administration for Tougher Curbs on China Tech", - "link": "https://www.nytimes.com/2023/12/07/us/politics/lawmakers-biden-china-tech.html", - "pubDate": "Thu, 07 Dec 2023 23:57:02 +0000", - "dc:creator": "Ana Swanson", - "content": "Republican legislators argue that the Biden administration has been ill-equipped and unmotivated in a technology fight with Beijing.", - "contentSnippet": "Republican legislators argue that the Biden administration has been ill-equipped and unmotivated in a technology fight with Beijing.", - "guid": "https://www.nytimes.com/2023/12/07/us/politics/lawmakers-biden-china-tech.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Trade and World Market", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Chips", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Commerce Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "House Committee on Foreign Affairs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Republican Party", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T23:57:02.000Z" - }, - { - "creator": "J. Edward Moreno", - "title": "Who\u2019s Who Behind the Dawn of the Modern Artificial Intelligence Movement", - "link": "https://www.nytimes.com/2023/12/03/technology/ai-key-figures.html", - "pubDate": "Thu, 07 Dec 2023 23:06:48 +0000", - "dc:creator": "J. Edward Moreno", - "content": "Before chatbots exploded in popularity, a group of researchers, tech executives and venture capitalists had worked for more than a decade to fuel A.I.", - "contentSnippet": "Before chatbots exploded in popularity, a group of researchers, tech executives and venture capitalists had worked for more than a decade to fuel A.I.", - "guid": "https://www.nytimes.com/2023/12/03/technology/ai-key-figures.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Venture Capital", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Philosophy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Anthropic AI LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "DeepMind Technologies Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Amodei, Dario", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gates, Bill", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hassabis, Demis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hinton, Geoffrey E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hoffman, Reid Garrett", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nadella, Satya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Page, Larry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Thiel, Peter A", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zuckerberg, Mark E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Yudkowsky, Eliezer", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-07T23:06:48.000Z" - }, - { - "creator": "Dennis Overbye and Katrina Miller", - "title": "Particle Physicists Offer a Road Map For the Next Decade", - "link": "https://www.nytimes.com/2023/12/07/science/particle-physics-muon-collider.html", - "pubDate": "Thu, 07 Dec 2023 20:12:19 +0000", - "dc:creator": "Dennis Overbye and Katrina Miller", - "content": "A \u201cmuon shot\u201d aims to study the basic forces of the cosmos. But meager federal budgets could limit its ambitions.", - "contentSnippet": "A \u201cmuon shot\u201d aims to study the basic forces of the cosmos. But meager federal budgets could limit its ambitions.", - "guid": "https://www.nytimes.com/2023/12/07/science/particle-physics-muon-collider.html", - "categories": [ - { - "_": "Federal Budget (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Physics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Large Hadron Collider", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Higgs Boson", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dark Matter (Astronomy)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "CERN", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Energy Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Fermi National Accelerator Laboratory", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Science Foundation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Illinois", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T20:12:19.000Z" - }, - { - "creator": "Mike Isaac and Michael H. Keller", - "title": "Meta Plans to Add Encryption to Messenger, Stoking a Privacy Debate", - "link": "https://www.nytimes.com/2023/12/06/technology/meta-messenger-encryption.html", - "pubDate": "Thu, 07 Dec 2023 19:01:47 +0000", - "dc:creator": "Mike Isaac and Michael H. Keller", - "content": "The move is part of an effort to make the app more like WhatsApp and iMessage. Law enforcement authorities say the privacy makes it harder to track criminals.", - "contentSnippet": "The move is part of an effort to make the app more like WhatsApp and iMessage. Law enforcement authorities say the privacy makes it harder to track criminals.", - "guid": "https://www.nytimes.com/2023/12/06/technology/meta-messenger-encryption.html", - "categories": [ - { - "_": "Instant Messaging", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Surveillance of Citizens by Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Security", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Child Pornography", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "WhatsApp Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Zuckerberg, Mark E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-07T19:01:47.000Z" - }, - { - "creator": "Melissa Eddy", - "title": "Tesla Is Fighting With Sweden\u2019s Unions. Here\u2019s What to Know.", - "link": "https://www.nytimes.com/2023/12/07/business/tesla-sweden-union.html", - "pubDate": "Thu, 07 Dec 2023 18:53:56 +0000", - "dc:creator": "Melissa Eddy", - "content": "The action began with a mechanics walkout in October, but has spread to include blockades by other unions. Tesla has pushed back through the courts.", - "contentSnippet": "The action began with a mechanics walkout in October, but has spread to include blockades by other unions. Tesla has pushed back through the courts.", - "guid": "https://www.nytimes.com/2023/12/07/business/tesla-sweden-union.html", - "categories": [ - { - "_": "Organized Labor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Strikes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sweden", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "IF Metall", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "PostNord Group AB", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Denmark", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Norway", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T18:53:56.000Z" - }, - { - "creator": "Kenneth Chang", - "title": "3 Laser Fusion Research Hubs Picked by Energy Department", - "link": "https://www.nytimes.com/2023/12/07/science/laser-fusion-energy-department-funding.html", - "pubDate": "Thu, 07 Dec 2023 17:22:40 +0000", - "dc:creator": "Kenneth Chang", - "content": "With $42 million, Lawrence Livermore National Laboratory, Colorado State University and the University of Rochester will work on studies to tap into a bountiful energy source.", - "contentSnippet": "With $42 million, Lawrence Livermore National Laboratory, Colorado State University and the University of Rochester will work on studies to tap into a bountiful energy source.", - "guid": "https://www.nytimes.com/2023/12/07/science/laser-fusion-energy-department-funding.html", - "categories": [ - { - "_": "Fusion (Nuclear Reaction)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Energy Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Laser (Light Amplification by Stimulated Emission of Radiation)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Energy and Power", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Colorado State University", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Lawrence Livermore National Laboratory", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "University of Rochester", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T17:22:40.000Z" - }, - { - "creator": "Karen Weise, Cade Metz, Nico Grant and Mike Isaac", - "title": "One Year of ChatGPT: How A.I. Changed Silicon Valley Forever", - "link": "https://www.nytimes.com/2023/12/05/technology/ai-chatgpt-google-meta.html", - "pubDate": "Thu, 07 Dec 2023 17:14:26 +0000", - "dc:creator": "Karen Weise, Cade Metz, Nico Grant and Mike Isaac", - "content": "ChatGPT\u2019s release a year ago triggered a desperate scramble among tech companies and alarm from some of the people who helped invent it.", - "contentSnippet": "ChatGPT\u2019s release a year ago triggered a desperate scramble among tech companies and alarm from some of the people who helped invent it.", - "guid": "https://www.nytimes.com/2023/12/05/technology/ai-chatgpt-google-meta.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Search Engines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Open-Source Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Anthropic AI LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "DeepMind Technologies Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Brockman, Greg", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gates, Bill", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hassabis, Demis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hinton, Geoffrey E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Huang, Jen-Hsun", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "LeCun, Yann", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nadella, Satya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Pichai, Sundar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Walker, Kent", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zuckerberg, Mark E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "audio-neutral-informative", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T17:14:26.000Z" - }, - { - "creator": "Eduardo Medina", - "title": "PlayStation Will Delete Purchased Discovery Shows", - "link": "https://www.nytimes.com/2023/12/06/technology/sony-playstation-discovery-shows-removal.html", - "pubDate": "Thu, 07 Dec 2023 14:52:30 +0000", - "dc:creator": "Eduardo Medina", - "content": "Sony said that the Discovery shows, including \u201cMythBusters\u201d and \u201cDeadliest Catch,\u201d would be deleted from the devices on Dec. 31, citing \u201ccontent licensing arrangements with content providers.\u201d", - "contentSnippet": "Sony said that the Discovery shows, including \u201cMythBusters\u201d and \u201cDeadliest Catch,\u201d would be deleted from the devices on Dec. 31, citing \u201ccontent licensing arrangements with content providers.\u201d", - "guid": "https://www.nytimes.com/2023/12/06/technology/sony-playstation-discovery-shows-removal.html", - "categories": [ - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "PlayStation (Video Game System)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Warner Bros Discovery", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-07T14:52:30.000Z" - }, - { - "creator": "Erin Griffith", - "title": "From Unicorns to Zombies: Tech Start-Ups Run Out of Time and Money", - "link": "https://www.nytimes.com/2023/12/07/technology/tech-startups-collapse.html", - "pubDate": "Thu, 07 Dec 2023 14:48:22 +0000", - "dc:creator": "Erin Griffith", - "content": "After staving off collapse by cutting costs, many young tech companies are out of options, fueling a cash bonfire.", - "contentSnippet": "After staving off collapse by cutting costs, many young tech companies are out of options, fueling a cash bonfire.", - "guid": "https://www.nytimes.com/2023/12/07/technology/tech-startups-collapse.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bankruptcies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shutdowns (Institutional)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Venture Capital", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Entrepreneurship", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bird Rides Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Carta Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "WeWork Companies Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-07T14:48:22.000Z" - }, - { - "creator": "Cecilia Kang and Adam Satariano", - "title": "Five Ways A.I. Could Be Regulated", - "link": "https://www.nytimes.com/2023/12/06/technology/artificial-intelligence-regulation.html", - "pubDate": "Thu, 07 Dec 2023 06:49:10 +0000", - "dc:creator": "Cecilia Kang and Adam Satariano", - "content": "There is little agreement among regulators and lawmakers around the world on how artificial intelligence should \u2014 or even could \u2014 be controlled.", - "contentSnippet": "There is little agreement among regulators and lawmakers around the world on how artificial intelligence should \u2014 or even could \u2014 be controlled.", - "guid": "https://www.nytimes.com/2023/12/06/technology/artificial-intelligence-regulation.html", - "categories": [ - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Institute of Standards and Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Schumer, Charles E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-07T06:49:10.000Z" - }, - { - "creator": "Steven Lee Myers", - "title": "Russia\u2019s Latest Disinformation Tactic Exploits American Celebrities", - "link": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", - "pubDate": "Thu, 07 Dec 2023 05:02:00 +0000", - "dc:creator": "Steven Lee Myers", - "content": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", - "contentSnippet": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", - "guid": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", - "categories": [ - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Propaganda", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Celebrities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cameo (Mobile App)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Zelensky, Volodymyr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Ukraine", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-07T05:02:00.000Z" - }, - { - "creator": "Cade Metz and Nico Grant", - "title": "Google Updates Bard Chatbot With \u2018Gemini\u2019 A.I. as It Chases ChatGPT", - "link": "https://www.nytimes.com/2023/12/06/technology/google-ai-bard-chatbot-gemini.html", - "pubDate": "Wed, 06 Dec 2023 19:19:53 +0000", - "dc:creator": "Cade Metz and Nico Grant", - "content": "After more than eight months of research and development, Google has unveiled its most powerful A.I. so far. But only parts of it are widely available.", - "contentSnippet": "After more than eight months of research and development, Google has unveiled its most powerful A.I. so far. But only parts of it are widely available.", - "guid": "https://www.nytimes.com/2023/12/06/technology/google-ai-bard-chatbot-gemini.html", - "categories": [ - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "DeepMind Technologies Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Pichai, Sundar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hassabis, Demis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cloud Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-06T19:19:53.000Z" - }, - { - "creator": "Eduardo Medina", - "title": "Spotify Cancels Two Acclaimed Podcasts: \u2018Heavyweight\u2019 and \u2018Stolen\u2019", - "link": "https://www.nytimes.com/2023/12/05/business/media/spotify-cancels-podcasts-heavyweight-stolen.html", - "pubDate": "Wed, 06 Dec 2023 15:46:16 +0000", - "dc:creator": "Eduardo Medina", - "content": "The shows will finish out their seasons on Spotify and then have the option to shop their shows somewhere else.", - "contentSnippet": "The shows will finish out their seasons on Spotify and then have the option to shop their shows somewhere else.", - "guid": "https://www.nytimes.com/2023/12/05/business/media/spotify-cancels-podcasts-heavyweight-stolen.html", - "categories": [ - { - "_": "Podcasts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Audio Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Advertising and Marketing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Spotify", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gimlet Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Stolen", - "$": { - "domain": "" - } - }, - { - "_": "Heavyweight (Radio Program)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "internal-open-access-from-nl", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-06T15:46:16.000Z" - }, - { - "creator": "Adam Satariano and Cecilia Kang", - "title": "How Nations Are Losing a Global Race to Tackle A.I.\u2019s Harms", - "link": "https://www.nytimes.com/2023/12/06/technology/ai-regulation-policies.html", - "pubDate": "Wed, 06 Dec 2023 05:00:08 +0000", - "dc:creator": "Adam Satariano and Cecilia Kang", - "content": "Alarmed by the power of artificial intelligence, Europe, the United States and others are trying to respond \u2014 but the technology is evolving more rapidly than their policies.", - "contentSnippet": "Alarmed by the power of artificial intelligence, Europe, the United States and others are trying to respond \u2014 but the technology is evolving more rapidly than their policies.", - "guid": "https://www.nytimes.com/2023/12/06/technology/ai-regulation-policies.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Facial Recognition Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Anthropic AI LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Senate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-06T05:00:08.000Z" - }, - { - "creator": "Isabella Kwai", - "title": "AI-Generated Jimmy Stewart Reads a Bedtime Story for Calm App", - "link": "https://www.nytimes.com/2023/12/05/technology/calm-jimmy-stewart-ai.html", - "pubDate": "Tue, 05 Dec 2023 23:10:59 +0000", - "dc:creator": "Isabella Kwai", - "content": "The sleep and meditation app Calm released a new story featuring the late actor\u2019s signature drawl \u2014 or a computer-generated version of it.", - "contentSnippet": "The sleep and meditation app Calm released a new story featuring the late actor\u2019s signature drawl \u2014 or a computer-generated version of it.", - "guid": "https://www.nytimes.com/2023/12/05/technology/calm-jimmy-stewart-ai.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Meditation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cloning", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stewart, Jimmy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Calm.com Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-05T23:10:59.000Z" - }, - { - "creator": "Bernhard Warner", - "title": "Bitcoin Soars on Hopes of Investment Fund Approval", - "link": "https://www.nytimes.com/2023/12/05/business/bitcoin-price-etf.html", - "pubDate": "Tue, 05 Dec 2023 14:23:58 +0000", - "dc:creator": "Bernhard Warner", - "content": "The cryptocurrency has gained roughly 150 percent this year, as investors bet that regulators will soon approve the first spot exchange-traded fund that is designed to track the price of Bitcoin.", - "contentSnippet": "The cryptocurrency has gained roughly 150 percent this year, as investors bet that regulators will soon approve the first spot exchange-traded fund that is designed to track the price of Bitcoin.", - "guid": "https://www.nytimes.com/2023/12/05/business/bitcoin-price-etf.html", - "categories": [ - { - "_": "Virtual Currency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bitcoin (Currency)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Exchange Traded Funds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Securities and Exchange Commission", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-05T14:23:58.000Z" - }, - { - "creator": "Virginia Hughes", - "title": "Bordeaux Wine Snobs Have a Point, According to This Computer Model", - "link": "https://www.nytimes.com/2023/12/05/science/bordeaux-red-wine-estate-machine-learning.html", - "pubDate": "Tue, 05 Dec 2023 14:12:14 +0000", - "dc:creator": "Virginia Hughes", - "content": "With machine learning, scientists are trying to chemically define the murky concept of terroir. The models might be useful for detecting wine fraud.", - "contentSnippet": "With machine learning, scientists are trying to chemically define the murky concept of terroir. The models might be useful for detecting wine fraud.", - "guid": "https://www.nytimes.com/2023/12/05/science/bordeaux-red-wine-estate-machine-learning.html", - "categories": [ - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Chemistry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Forgery", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bordeaux (France)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-05T14:12:14.000Z" - }, - { - "creator": "Carl Zimmer", - "title": "Brain Implants Helped 5 People Recover From Traumatic Injuries", - "link": "https://www.nytimes.com/2023/12/04/health/traumatic-brain-injury-implants.html", - "pubDate": "Mon, 04 Dec 2023 16:50:23 +0000", - "dc:creator": "Carl Zimmer", - "content": "People with chronic problems after falls and car crashes scored better on cognition tests after getting a brain implant, a new study found.", - "contentSnippet": "People with chronic problems after falls and car crashes scored better on cognition tests after getting a brain implant, a new study found.", - "guid": "https://www.nytimes.com/2023/12/04/health/traumatic-brain-injury-implants.html", - "categories": [ - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Brain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Implants", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Traumatic Brain Injury", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-04T16:50:23.000Z" - }, - { - "creator": "Cade Metz, Karen Weise, Nico Grant and Mike Isaac", - "title": "How Elon Musk and Larry Page\u2019s AI Debate Led to OpenAI and an Industry Boom", - "link": "https://www.nytimes.com/2023/12/03/technology/ai-openai-musk-page-altman.html", - "pubDate": "Sun, 03 Dec 2023 10:00:56 +0000", - "dc:creator": "Cade Metz, Karen Weise, Nico Grant and Mike Isaac", - "content": "The people who were most afraid of the risks of artificial intelligence decided they should be the ones to build it. Then distrust fueled a spiraling competition.", - "contentSnippet": "The people who were most afraid of the risks of artificial intelligence decided they should be the ones to build it. Then distrust fueled a spiraling competition.", - "guid": "https://www.nytimes.com/2023/12/03/technology/ai-openai-musk-page-altman.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Page, Larry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "DeepMind Technologies Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Anthropic AI LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Baidu Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Amodei, Dario", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Brockman, Greg", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Dean, Jeff (1968- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Eustace, Alan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Gates, Bill", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hassabis, Demis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hinton, Geoffrey E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "LeCun, Yann", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nadella, Satya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Suleyman, Mustafa", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zuckerberg, Mark E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Lake Tahoe (Nev)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Meta", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Venture Capital", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mergers, Acquisitions and Divestitures", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-03T10:00:56.000Z" - }, - { - "creator": "Kellen Browning", - "title": "Inside Kick, an Upstart Streaming Competitor to Twitch", - "link": "https://www.nytimes.com/2023/12/02/technology/kick-streaming-twitch-gambling.html", - "pubDate": "Sat, 02 Dec 2023 10:00:38 +0000", - "dc:creator": "Kellen Browning", - "content": "The Twitch competitor has doled out generous deals to content creators. It has also faced criticism for its lax moderation and embrace of online gambling.", - "contentSnippet": "The Twitch competitor has doled out generous deals to content creators. It has also faced criticism for its lax moderation and embrace of online gambling.", - "guid": "https://www.nytimes.com/2023/12/02/technology/kick-streaming-twitch-gambling.html", - "categories": [ - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gambling", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Advertising and Marketing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer and Video Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Kick.com", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Stake.com (Medium Rare NV)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Craven, Ed (1995- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Twitch Interactive Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Amazon.com Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Australia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-02T10:00:38.000Z" - }, - { - "creator": "Nicole Sperling", - "title": "Netflix Builds a \u2018Squid Game\u2019 Universe as It Awaits a Second Season", - "link": "https://www.nytimes.com/2023/12/02/business/media/netflix-squid-game-challenge.html", - "pubDate": "Sat, 02 Dec 2023 08:01:02 +0000", - "dc:creator": "Nicole Sperling", - "content": "A reality show and a live experience are two ways of keeping the dystopian series in the public eye. Is the original\u2019s bleak message being diluted?", - "contentSnippet": "A reality show and a live experience are two ways of keeping the dystopian series in the public eye. Is the original\u2019s bleak message being diluted?", - "guid": "https://www.nytimes.com/2023/12/02/business/media/netflix-squid-game-challenge.html", - "categories": [ - { - "_": "Television", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Netflix Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Squid Game (TV Program)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Squid Game: The Challenge (TV Program)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Hwang Dong-hyuk", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Intellectual Property", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-02T08:01:02.000Z" - }, - { - "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano and Rowan Niemisto", - "title": "What\u2019s Next for OpenAI, Binance Is Binanceled and A.I. Is Eating the Internet", - "link": "https://www.nytimes.com/2023/12/01/podcasts/hard-fork-openai-future-binance.html", - "pubDate": "Fri, 01 Dec 2023 10:03:32 +0000", - "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano and Rowan Niemisto", - "content": "It\u2019s full steam ahead for the tech world despite, well, everything.", - "contentSnippet": "It\u2019s full steam ahead for the tech world despite, well, everything.", - "guid": "https://www.nytimes.com/2023/12/01/podcasts/hard-fork-openai-future-binance.html", - "categories": [ - { - "_": "Science and Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Binance", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Zhao, Changpeng", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-01T10:03:32.000Z" - }, - { - "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Chris Wood, Dan Powell, Marion Lozano and Sophia Lanman", - "title": "Google\u2019s Next Top Model, Will the Cybertruck Crash? and This Week in A.I.", - "link": "https://www.nytimes.com/2023/12/08/podcasts/hardfork-google-gemini-cybertruck.html", - "pubDate": "Fri, 08 Dec 2023 10:03:58 +0000", - "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Chris Wood, Dan Powell, Marion Lozano and Sophia Lanman", - "content": "Like the Cybertruck, this podcast is bulletproof.", - "contentSnippet": "Like the Cybertruck, this podcast is bulletproof.", - "guid": "https://www.nytimes.com/2023/12/08/podcasts/hardfork-google-gemini-cybertruck.html", - "categories": [ - { - "_": "Science and Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Panera Bread Company", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Amazon.com Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Pichai, Sundar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Hassabis, Demis", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-08T10:03:58.000Z" - }, - { - "creator": "John Yoon", - "title": "E3 Tech Expo Is Shutting Down", - "link": "https://www.nytimes.com/2023/12/13/technology/e3-video-game-convention-ended.html", - "pubDate": "Thu, 14 Dec 2023 16:45:07 +0000", - "dc:creator": "John Yoon", - "content": "The annual event, once an important opportunity for video game companies to showcase their creations, struggled to stay relevant in a shifting industry.", - "contentSnippet": "The annual event, once an important opportunity for video game companies to showcase their creations, struggled to stay relevant in a shifting industry.", - "guid": "https://www.nytimes.com/2023/12/13/technology/e3-video-game-convention-ended.html", - "categories": [ - { - "_": "Electronic Entertainment Expo (E3)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer and Video Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conventions, Fairs and Trade Shows", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Entertainment Software Assn", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Los Angeles (Calif)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-14T16:45:07.000Z" - }, - { - "creator": "Yiwen Lu", - "title": "My Not-So-Perfect Holiday Shopping Excursion With A.I. Chatbots", - "link": "https://www.nytimes.com/2023/12/14/technology/shopping-ai-chatbots.html", - "pubDate": "Thu, 14 Dec 2023 15:52:48 +0000", - "dc:creator": "Yiwen Lu", - "content": "With Shopify, Mercari and other retailers rolling out chatbots to help buyers, this holiday shopping season is the first to be powered by A.I.", - "contentSnippet": "With Shopify, Mercari and other retailers rolling out chatbots to help buyers, this holiday shopping season is the first to be powered by A.I.", - "guid": "https://www.nytimes.com/2023/12/14/technology/shopping-ai-chatbots.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "E-Commerce", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Commerce and Payments", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gifts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shopify Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "mercari", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-14T15:52:48.000Z" - }, - { - "creator": "Tiffany Hsu and Steven Lee Myers", - "title": "Pro-China YouTube Network Used A.I. to Malign U.S., Report Finds", - "link": "https://www.nytimes.com/2023/12/14/business/media/pro-china-youtube-disinformation.html", - "pubDate": "Thu, 14 Dec 2023 14:52:10 +0000", - "dc:creator": "Tiffany Hsu and Steven Lee Myers", - "content": "Content from at least 30 channels in the network drew nearly 120 million views and 730,000 subscribers since last year.", - "contentSnippet": "Content from at least 30 channels in the network drew nearly 120 million views and 730,000 subscribers since last year.", - "guid": "https://www.nytimes.com/2023/12/14/business/media/pro-china-youtube-disinformation.html", - "categories": [ - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "YouTube.com", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-14T14:52:10.000Z" - }, - { - "creator": "Alyson Krueger", - "title": "How TikTok Turned Your Kid\u2019s Christmas List Into a Powerpoint Presentation", - "link": "https://www.nytimes.com/2023/12/13/style/tiktok-christmas-gift-list-powerpoint-presentation.html", - "pubDate": "Thu, 14 Dec 2023 14:43:28 +0000", - "dc:creator": "Alyson Krueger", - "content": "Some kids are getting more sophisticated with their holiday gift decks, creating a vibe that\u2019s more sales pitch than Santa.", - "contentSnippet": "Some kids are getting more sophisticated with their holiday gift decks, creating a vibe that\u2019s more sales pitch than Santa.", - "guid": "https://www.nytimes.com/2023/12/13/style/tiktok-christmas-gift-list-powerpoint-presentation.html", - "categories": [ - { - "_": "Christmas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Gifts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Children and Childhood", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Holidays and Special Occasions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T14:43:28.000Z" - }, - { - "creator": "Steven Lee Myers", - "title": "State Dept.\u2019s Fight Against Disinformation Comes Under Attack", - "link": "https://www.nytimes.com/2023/12/14/technology/state-department-disinformation-criticism.html", - "pubDate": "Thu, 14 Dec 2023 10:02:59 +0000", - "dc:creator": "Steven Lee Myers", - "content": "The Global Engagement Center has become the focus of Republican-led criticism that the U.S. government coerces social media platforms into removing offensive content.", - "contentSnippet": "The Global Engagement Center has become the focus of Republican-led criticism that the U.S. government coerces social media platforms into removing offensive content.", - "guid": "https://www.nytimes.com/2023/12/14/technology/state-department-disinformation-criticism.html", - "categories": [ - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Censorship", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freedom of Speech and Expression", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Presidential Election of 2024", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "House Select Subcommittee on the Weaponization of the Federal Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Rubin, James P", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Paxton, Ken", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-14T10:02:59.000Z" - }, - { - "creator": "Madison Malone Kircher", - "title": "A \u2018Polar Express\u2019 Character Comes to Life", - "link": "https://www.nytimes.com/2023/12/13/style/the-polar-express-hero-girl-tiktok.html", - "pubDate": "Thu, 14 Dec 2023 01:08:02 +0000", - "dc:creator": "Madison Malone Kircher", - "content": "Nia Wilkerson has spent years hearing that she looks like the girl from \u201cThe Polar Express.\u201d On TikTok, she\u2019s leaning into it.", - "contentSnippet": "Nia Wilkerson has spent years hearing that she looks like the girl from \u201cThe Polar Express.\u201d On TikTok, she\u2019s leaning into it.", - "guid": "https://www.nytimes.com/2023/12/13/style/the-polar-express-hero-girl-tiktok.html", - "categories": [ - { - "_": "Christmas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Street Performers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "The Polar Express (Movie)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T01:08:02.000Z" - }, - { - "creator": "Stuart A. Thompson", - "title": "How a Rare Myocarditis Death Caught the Attention of the Anti-Vaccine Movement", - "link": "https://www.nytimes.com/2023/12/13/technology/covid-anti-vaccine.html", - "pubDate": "Thu, 14 Dec 2023 00:46:02 +0000", - "dc:creator": "Stuart A. Thompson", - "content": "A 24-year-old\u2019s sudden death devastated his family \u2014 and caught the attention of the movement of vaccine opponents.", - "contentSnippet": "A 24-year-old\u2019s sudden death devastated his family \u2014 and caught the attention of the movement of vaccine opponents.", - "guid": "https://www.nytimes.com/2023/12/13/technology/covid-anti-vaccine.html", - "categories": [ - { - "_": "Coronavirus (2019-nCoV)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Vaccination and Immunization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Watts, George E Jr (1997-2021)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Fatalities)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Heart", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Men and Boys", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conspiracy Theories", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Watts, George Sr.", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Fringe Groups and Movements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Centers for Disease Control and Prevention", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Elmira (NY)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "audio-neutral-informative", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "internal-sub-only", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "internal-great-read", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "audio-negative-sad", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T00:46:02.000Z" - }, - { - "creator": "Joseph Bernstein", - "title": "Praxis Founder Dryden Brown\u2019s Utopian Visions", - "link": "https://www.nytimes.com/2023/12/12/style/praxis-city-dryden-brown.html", - "pubDate": "Thu, 14 Dec 2023 00:34:12 +0000", - "dc:creator": "Joseph Bernstein", - "content": "Dryden Brown wants Praxis to be a crypto-city for tech bros and tastemakers. Just don\u2019t ask for details.", - "contentSnippet": "Dryden Brown wants Praxis to be a crypto-city for tech bros and tastemakers. Just don\u2019t ask for details.", - "guid": "https://www.nytimes.com/2023/12/12/style/praxis-city-dryden-brown.html", - "categories": [ - { - "_": "Brown, Dryden", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Praxis (Bluebook Cities Inc)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Callinan, Charlie", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Venture Capital", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fringe Groups and Movements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Neo Nazi Groups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Right-Wing Extremism and Alt-Right", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bankman-Fried, Sam", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Thiel, Peter A", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "internal-sub-only", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "internal-great-read", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Virtual Currency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T00:34:12.000Z" - }, - { - "creator": "Cade Metz", - "title": "Luiz Barroso, Who Supercharged Google\u2019s Reach, Dies at 59", - "link": "https://www.nytimes.com/2023/12/13/technology/luiz-barroso-dead.html", - "pubDate": "Thu, 14 Dec 2023 00:15:46 +0000", - "dc:creator": "Cade Metz", - "content": "In designing warehouse-size data centers that behaved like a single computer, he changed the fabric of the internet.", - "contentSnippet": "In designing warehouse-size data centers that behaved like a single computer, he changed the fabric of the internet.", - "guid": "https://www.nytimes.com/2023/12/13/technology/luiz-barroso-dead.html", - "categories": [ - { - "_": "Barroso, Luiz (1964-2023)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Data Centers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Engineering and Engineers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Search Engines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T00:15:46.000Z" - }, - { - "creator": "Natasha Singer", - "title": "Cheating Fears Over Chatbots Were Overblown, New Research Suggests", - "link": "https://www.nytimes.com/2023/12/13/technology/chatbot-cheating-schools-students.html", - "pubDate": "Wed, 13 Dec 2023 22:56:11 +0000", - "dc:creator": "Natasha Singer", - "content": "A.I. tools like ChatGPT did not boost the frequency of cheating in high schools, Stanford researchers say.", - "contentSnippet": "A.I. tools like ChatGPT did not boost the frequency of cheating in high schools, Stanford researchers say.", - "guid": "https://www.nytimes.com/2023/12/13/technology/chatbot-cheating-schools-students.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cheating", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Education (Secondary)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Plagiarism", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stanford University", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Pew Research Center", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "chatbot", - "$": { - "domain": "" - } - } - ], - "isoDate": "2023-12-13T22:56:11.000Z" - }, - { - "creator": "Jack Ewing, Cade Metz and Derrick Bryson Taylor", - "title": "Tesla Recalls Autopilot Software in 2 Million Vehicles", - "link": "https://www.nytimes.com/2023/12/13/business/tesla-autopilot-recall.html", - "pubDate": "Wed, 13 Dec 2023 21:32:27 +0000", - "dc:creator": "Jack Ewing, Cade Metz and Derrick Bryson Taylor", - "content": "Federal regulators pressed the automaker to make updates to ensure drivers are paying attention while using Autopilot, a system that can steer, accelerate and brake on its own.", - "contentSnippet": "Federal regulators pressed the automaker to make updates to ensure drivers are paying attention while using Autopilot, a system that can steer, accelerate and brake on its own.", - "guid": "https://www.nytimes.com/2023/12/13/business/tesla-autopilot-recall.html", - "categories": [ - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Driverless and Semiautonomous Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Recalls and Bans of Products", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "National Highway Traffic Safety Administration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Automobile Safety Features and Defects", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T21:32:27.000Z" - }, - { - "creator": "The New York Times", - "title": "What Car Owners Should Know About the Tesla Autopilot Recall", - "link": "https://www.nytimes.com/2023/12/13/business/tesla-recall-what-to-know.html", - "pubDate": "Wed, 13 Dec 2023 20:36:35 +0000", - "dc:creator": "The New York Times", - "content": "Under pressure from federal regulators, the company has agreed to recall two million cars to update its driver-assistance system. The cars will be updated over cellular networks.", - "contentSnippet": "Under pressure from federal regulators, the company has agreed to recall two million cars to update its driver-assistance system. The cars will be updated over cellular networks.", - "guid": "https://www.nytimes.com/2023/12/13/business/tesla-recall-what-to-know.html", - "categories": [ - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Driverless and Semiautonomous Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Recalls and Bans of Products", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Customer Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobile Safety Features and Defects", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Highway Traffic Safety Administration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-13T20:36:35.000Z" - }, - { - "creator": "Noam Scheiber", - "title": "Microsoft Agrees to Remain Neutral in Union Campaigns", - "link": "https://www.nytimes.com/2023/12/12/business/economy/microsoft-unions.html", - "pubDate": "Wed, 13 Dec 2023 18:48:32 +0000", - "dc:creator": "Noam Scheiber", - "content": "The pledge is unprecedented for Big Tech and makes it easier for roughly 100,000 workers to unionize.", - "contentSnippet": "The pledge is unprecedented for Big Tech and makes it easier for roughly 100,000 workers to unionize.", - "guid": "https://www.nytimes.com/2023/12/12/business/economy/microsoft-unions.html", - "categories": [ - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Organized Labor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "American Federation of Labor-Congress of Industrial Organizations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Communications Workers of America", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Activision Blizzard Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Computer and Video Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Labor and Jobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Smith, Bradford L", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "ZeniMax Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Shuler, Liz (1970- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-13T18:48:32.000Z" - }, - { - "creator": "Brian X. Chen", - "title": "How Meta\u2019s New Face Camera Heralds a New Age of Surveillance", - "link": "https://www.nytimes.com/2023/12/13/technology/personaltech/meta-ray-ban-glasses.html", - "pubDate": "Wed, 13 Dec 2023 18:40:02 +0000", - "dc:creator": "Brian X. Chen", - "content": "Meta\u2019s $300 smart glasses look cool but lack a killer app, and they offer a glimpse into a future with even less privacy and more distraction.", - "contentSnippet": "Meta\u2019s $300 smart glasses look cool but lack a killer app, and they offer a glimpse into a future with even less privacy and more distraction.", - "guid": "https://www.nytimes.com/2023/12/13/technology/personaltech/meta-ray-ban-glasses.html", - "categories": [ - { - "_": "Wearable Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Eyeglasses", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cameras", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-13T18:40:02.000Z" - }, - { - "creator": "Natasha Singer", - "title": "Chatbot Hype or Harm? Teens Push to Broaden A.I. Literacy", - "link": "https://www.nytimes.com/2023/12/13/technology/ai-chatbots-schools-students.html", - "pubDate": "Wed, 13 Dec 2023 14:23:03 +0000", - "dc:creator": "Natasha Singer", - "content": "Students at a New Jersey high school want to widen A.I. discussions beyond dueling tropes of tech magic and doomsday panic.", - "contentSnippet": "Students at a New Jersey high school want to widen A.I. discussions beyond dueling tropes of tech magic and doomsday panic.", - "guid": "https://www.nytimes.com/2023/12/13/technology/ai-chatbots-schools-students.html", - "categories": [ - { - "_": "Education (K-12)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cheating", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Vision", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "River Dell High School", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Oradell (NJ)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-13T14:23:03.000Z" - }, - { - "creator": "Sapna Maheshwari", - "title": "Political Debate Is Rife on TikTok. Politicians? Not So Much.", - "link": "https://www.nytimes.com/2023/12/13/business/media/tiktok-politicians.html", - "pubDate": "Wed, 13 Dec 2023 10:00:29 +0000", - "dc:creator": "Sapna Maheshwari", - "content": "Very few politicians, including the top candidates for president, are on the hugely popular video app \u2014 perhaps ceding much of the political discussion to others.", - "contentSnippet": "Very few politicians, including the top candidates for president, are on the hugely popular video app \u2014 perhaps ceding much of the political discussion to others.", - "guid": "https://www.nytimes.com/2023/12/13/business/media/tiktok-politicians.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Presidential Election of 2024", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Midterm Elections (2022)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Youth", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Beijing Bytedance Technology Co Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Henry, Annie Wu", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Fetterman, John (1969- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-13T10:00:29.000Z" - }, - { - "creator": "Nico Grant", - "title": "Google\u2019s Antitrust Loss to Epic Could Preview Its Legal Fate in 2024", - "link": "https://www.nytimes.com/2023/12/12/technology/google-antitrust-cases.html", - "pubDate": "Tue, 12 Dec 2023 21:09:32 +0000", - "dc:creator": "Nico Grant", - "content": "A trio of antitrust cases on the docket threaten to reshape Google\u2019s business and sap its profits.", - "contentSnippet": "A trio of antitrust cases on the docket threaten to reshape Google\u2019s business and sap its profits.", - "guid": "https://www.nytimes.com/2023/12/12/technology/google-antitrust-cases.html", - "categories": [ - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Antitrust Laws and Competition Issues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Epic Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Fortnite (Video Game)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Computer and Video Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Justice Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Search Engines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-12T21:09:32.000Z" - }, - { - "creator": "Neal E. Boudette", - "title": "Ford Will Cut Planned Electric F-150 Production as Demand Slows", - "link": "https://www.nytimes.com/2023/12/12/business/ford-f150-lightning-ev.html", - "pubDate": "Tue, 12 Dec 2023 19:50:30 +0000", - "dc:creator": "Neal E. Boudette", - "content": "Ford and other automakers have had to readjust their electric vehicle production plans because sales have been weaker than they had expected.", - "contentSnippet": "Ford and other automakers have had to readjust their electric vehicle production plans because sales have been weaker than they had expected.", - "guid": "https://www.nytimes.com/2023/12/12/business/ford-f150-lightning-ev.html", - "categories": [ - { - "_": "Ford Motor Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sports Utility Vehicles and Light Trucks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Production", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Batteries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobile Service and Charging Stations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "General Motors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-12T19:50:30.000Z" - }, - { - "creator": "Nico Grant", - "title": "Google Loses Court Fight Over App Store With Makers of Fortnite", - "link": "https://www.nytimes.com/2023/12/11/technology/epic-games-google-antitrust-ruling.html", - "pubDate": "Tue, 12 Dec 2023 18:12:00 +0000", - "dc:creator": "Nico Grant", - "content": "The case could reshape the rules of how other businesses can make money on the Android operating system.", - "contentSnippet": "The case could reshape the rules of how other businesses can make money on the Android operating system.", - "guid": "https://www.nytimes.com/2023/12/11/technology/epic-games-google-antitrust-ruling.html", - "categories": [ - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Antitrust Laws and Competition Issues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer and Video Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Epic Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Play", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-12T18:12:00.000Z" - }, - { - "creator": "Emmett Lindner", - "title": "What Shape Is This Cookie Cutter? No Guess Is Half-Baked.", - "link": "https://www.nytimes.com/2023/12/12/style/cookie-cutter-reddit-whatismycookiecutter.html", - "pubDate": "Tue, 12 Dec 2023 17:13:10 +0000", - "dc:creator": "Emmett Lindner", - "content": "The r/WhatIsMyCookieCutter subreddit was created to help bakers identify stray cookie cutters but has evolved into an outlet for running gags and whimsical artistic interpretations.", - "contentSnippet": "The r/WhatIsMyCookieCutter subreddit was created to help bakers identify stray cookie cutters but has evolved into an outlet for running gags and whimsical artistic interpretations.", - "guid": "https://www.nytimes.com/2023/12/12/style/cookie-cutter-reddit-whatismycookiecutter.html", - "categories": [ - { - "_": "Cookies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Reddit Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Christmas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-12T17:13:10.000Z" - }, - { - "creator": "David Yaffe-Bellany", - "title": "The Power Vacuum at the Top of the Crypto Industry", - "link": "https://www.nytimes.com/2023/12/11/technology/crypto-industry-power-vacuum.html", - "pubDate": "Tue, 12 Dec 2023 10:01:18 +0000", - "dc:creator": "David Yaffe-Bellany", - "content": "A year ago, Sam Bankman-Fried and Changpeng Zhao ran two of the largest crypto companies. As they grapple with legal woes, others are jockeying to lead the industry\u2019s next chapter.", - "contentSnippet": "A year ago, Sam Bankman-Fried and Changpeng Zhao ran two of the largest crypto companies. As they grapple with legal woes, others are jockeying to lead the industry\u2019s next chapter.", - "guid": "https://www.nytimes.com/2023/12/11/technology/crypto-industry-power-vacuum.html", - "categories": [ - { - "_": "Virtual Currency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bitcoin (Currency)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Banking and Financial Institutions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Binance", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "BlackRock Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Coinbase Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "HK FTX Trading Ltd (Futures Exchange)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Armstrong, Brian (1983- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bankman-Fried, Sam", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zhao, Changpeng", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-12T10:01:18.000Z" - }, - { - "creator": "Zachary Small", - "title": "Can an A.I. Van Gogh Help Museums Generate New Interest?", - "link": "https://www.nytimes.com/2023/12/12/arts/design/van-gogh-artificial-intelligence.html", - "pubDate": "Tue, 12 Dec 2023 10:00:39 +0000", - "dc:creator": "Zachary Small", - "content": "Can doppelg\u00e4ngers of the Dutch painter help museums generate new interest and income? A.I. Vincent fields our questions (and makes some mistakes).", - "contentSnippet": "Can doppelg\u00e4ngers of the Dutch painter help museums generate new interest and income? A.I. Vincent fields our questions (and makes some mistakes).", - "guid": "https://www.nytimes.com/2023/12/12/arts/design/van-gogh-artificial-intelligence.html", - "categories": [ - { - "_": "van Gogh, Vincent", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Musee d'Orsay", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Art", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Museums", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Paris (France)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-12T10:00:39.000Z" - }, - { - "creator": "Tara Siegel Bernard", - "title": "Judge Upholds Texas TikTok Ban on Government Devices", - "link": "https://www.nytimes.com/2023/12/11/business/tiktok-texas-ban.html", - "pubDate": "Tue, 12 Dec 2023 02:54:03 +0000", - "dc:creator": "Tara Siegel Bernard", - "content": "The Texas law was challenged by First Amendment lawyers who filed a suit on behalf of college professors who said that their work had been compromised when they lost access to the app.", - "contentSnippet": "The Texas law was challenged by First Amendment lawyers who filed a suit on behalf of college professors who said that their work had been compromised when they lost access to the app.", - "guid": "https://www.nytimes.com/2023/12/11/business/tiktok-texas-ban.html", - "categories": [ - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Colleges and Universities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Beijing Bytedance Technology Co Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Knight First Amendment Institute", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Pitman, Robert Lee", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-12T02:54:03.000Z" - }, - { - "creator": "Don Clark", - "title": "New York Plans to Invest $1 Billion to Expand Chip Research", - "link": "https://www.nytimes.com/2023/12/11/technology/new-york-chips-act-albany.html", - "pubDate": "Mon, 11 Dec 2023 17:27:21 +0000", - "dc:creator": "Don Clark", - "content": "The move is aimed at drawing $9 billion in corporate investment, as New York jockeys to host a new national semiconductor technology center.", - "contentSnippet": "The move is aimed at drawing $9 billion in corporate investment, as New York jockeys to host a new national semiconductor technology center.", - "guid": "https://www.nytimes.com/2023/12/11/technology/new-york-chips-act-albany.html", - "categories": [ - { - "_": "Computer Chips", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "States (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ASML Holding NV", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Business Machines Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "State University of New York at Albany", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hochul, Kathleen C", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Albany (NY)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-11T17:27:21.000Z" - }, - { - "creator": "Ivan Penn, Stanley Reed and Brad Plumer", - "title": "What Ails Offshore Wind: Supply Chains, Ships and Interest Rates", - "link": "https://www.nytimes.com/2023/12/11/business/energy-environment/offshore-wind-energy-east-coast.html", - "pubDate": "Mon, 11 Dec 2023 15:52:07 +0000", - "dc:creator": "Ivan Penn, Stanley Reed and Brad Plumer", - "content": "Government officials and energy developers misjudged the difficulty of building huge clean energy projects in the United States, which has built very few of them.", - "contentSnippet": "Government officials and energy developers misjudged the difficulty of building huge clean energy projects in the United States, which has built very few of them.", - "guid": "https://www.nytimes.com/2023/12/11/business/energy-environment/offshore-wind-energy-east-coast.html", - "categories": [ - { - "_": "Wind Power", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supply Chain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alternative and Renewable Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Economy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric Light and Power", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation Reduction Act of 2022", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inflation (Economics)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ships and Shipping", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Government Contracts and Procurement", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Dominion Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Orsted AS", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Northeastern States (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "States (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Brownsville (Tex)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Virginia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-11T15:52:07.000Z" - }, - { - "creator": "Rebecca Carballo", - "title": "Using A.I. to Talk to the Dead", - "link": "https://www.nytimes.com/2023/12/11/technology/ai-chatbots-dead-relatives.html", - "pubDate": "Mon, 11 Dec 2023 14:03:51 +0000", - "dc:creator": "Rebecca Carballo", - "content": "Some people are using artificial intelligence chatbots to create avatars of departed loved ones. It\u2019s a source of comfort for some, but it makes others a little squeamish.", - "contentSnippet": "Some people are using artificial intelligence chatbots to create avatars of departed loved ones. It\u2019s a source of comfort for some, but it makes others a little squeamish.", - "guid": "https://www.nytimes.com/2023/12/11/technology/ai-chatbots-dead-relatives.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Death and Dying", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Voice and Speech", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Grief (Emotion)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asner, Ed", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "HereAfter AI", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "StoryFile Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-11T14:03:51.000Z" - }, - { - "creator": "Kate Dwyer", - "title": "The Nation Magazine to Become Monthly", - "link": "https://www.nytimes.com/2023/12/11/business/the-nation-magazine.html", - "pubDate": "Mon, 11 Dec 2023 13:00:08 +0000", - "dc:creator": "Kate Dwyer", - "content": "The progressive publication will move to the new schedule in January, and each issue will be 84 pages instead of 48.", - "contentSnippet": "The progressive publication will move to the new schedule in January, and each issue will be 84 pages instead of 48.", - "guid": "https://www.nytimes.com/2023/12/11/business/the-nation-magazine.html", - "categories": [ - { - "_": "Advertising and Marketing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Magazines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nation, The (Magazine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Guttenplan, D D", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sunkara, Bhaskar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Vanden Heuvel, Katrina", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-11T13:00:08.000Z" - }, - { - "creator": "Amanda Holpuch", - "title": "QR Codes Can Hide Risky Links, F.T.C. Warns", - "link": "https://www.nytimes.com/2023/12/10/business/qr-code-scam-ftc.html", - "pubDate": "Sun, 10 Dec 2023 23:21:11 +0000", - "dc:creator": "Amanda Holpuch", - "content": "Scammers have used QR codes to steal personal information by imitating legitimate companies or sending deceptive emails and text messages, the Federal Trade Commission said.", - "contentSnippet": "Scammers have used QR codes to steal personal information by imitating legitimate companies or sending deceptive emails and text messages, the Federal Trade Commission said.", - "guid": "https://www.nytimes.com/2023/12/10/business/qr-code-scam-ftc.html", - "categories": [ - { - "_": "Bar Codes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Security", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Smartphones", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Text Messaging", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Federal Trade Commission", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "QR codes", - "$": { - "domain": "" - } - }, - { - "_": "Consumer Protection", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-10T23:21:11.000Z" - }, - { - "creator": "Cade Metz", - "title": "Mistral, French A.I. Start-Up, Is Valued at $2 Billion in Funding Round", - "link": "https://www.nytimes.com/2023/12/10/technology/mistral-ai-funding.html", - "pubDate": "Sun, 10 Dec 2023 22:58:36 +0000", - "dc:creator": "Cade Metz", - "content": "The company has publicly released its latest technology so people can build their own chatbots. Rivals like OpenAI and Google argue that approach can be dangerous.", - "contentSnippet": "The company has publicly released its latest technology so people can build their own chatbots. Rivals like OpenAI and Google argue that approach can be dangerous.", - "guid": "https://www.nytimes.com/2023/12/10/technology/mistral-ai-funding.html", - "categories": [ - { - "_": "Mistral AI SAS", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Venture Capital", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Open-Source Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Andreessen Horowitz", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Lightspeed Venture Partners", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "France", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-10T22:58:36.000Z" - }, - { - "creator": "Kate Conger", - "title": "Elon Musk Brings Conspiracy Theorist Alex Jones Back to X", - "link": "https://www.nytimes.com/2023/12/09/technology/elon-musk-alex-jones-twitter-x.html", - "pubDate": "Sun, 10 Dec 2023 18:52:08 +0000", - "dc:creator": "Kate Conger", - "content": "Jones was banned from the social media platform in 2018 after posting harassing messages.", - "contentSnippet": "Jones was banned from the social media platform in 2018 after posting harassing messages.", - "guid": "https://www.nytimes.com/2023/12/09/technology/elon-musk-alex-jones-twitter-x.html", - "categories": [ - { - "_": "Right-Wing Extremism and Alt-Right", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Conspiracy Theories", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cyberharassment", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Censorship", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Twitter", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Jones, Alex (1974- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-10T18:52:08.000Z" - }, - { - "creator": "Kevin Roose", - "title": "This A.I. Subculture\u2019s Motto: Go, Go, Go", - "link": "https://www.nytimes.com/2023/12/10/technology/ai-acceleration.html", - "pubDate": "Sun, 10 Dec 2023 10:00:33 +0000", - "dc:creator": "Kevin Roose", - "content": "The eccentric pro-tech movement known as \u201cEffective Accelerationism\u201d wants to unshackle powerful A.I., and party along the way.", - "contentSnippet": "The eccentric pro-tech movement known as \u201cEffective Accelerationism\u201d wants to unshackle powerful A.I., and party along the way.", - "guid": "https://www.nytimes.com/2023/12/10/technology/ai-acceleration.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Open-Source Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Philosophy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "San Francisco Bay Area (Calif)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-10T10:00:33.000Z" - }, - { - "creator": "Cade Metz", - "title": "Key Players in OpenAI\u2019s Boardroom Drama", - "link": "https://www.nytimes.com/2023/12/09/technology/openai-boardroom-key-players.html", - "pubDate": "Sat, 09 Dec 2023 14:37:47 +0000", - "dc:creator": "Cade Metz", - "content": "A mix of prominent tech industry figures and people not well known outside the A.I. community played big roles in the upheaval at the company.", - "contentSnippet": "A mix of prominent tech industry figures and people not well known outside the A.I. community played big roles in the upheaval at the company.", - "guid": "https://www.nytimes.com/2023/12/09/technology/openai-boardroom-key-players.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Boards of Directors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Brockman, Greg", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Chesky, Brian", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Conway, Ron", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "D'Angelo, Adam", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Murati, Mira", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nadella, Satya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Shear, Emmett", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Summers, Lawrence H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sutskever, Ilya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Toner, Helen", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Taylor, Bret", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-09T14:37:47.000Z" - }, - { - "creator": "Somini Sengupta, Abdi Latif Dahir, Alex Travelli and Clifford Krauss", - "title": "Tiny Electric Vehicles Pack a Bigger Climate Punch Than Cars", - "link": "https://www.nytimes.com/2023/12/09/business/energy-environment/two-three-wheel-electric-vehicles.html", - "pubDate": "Sat, 09 Dec 2023 13:35:49 +0000", - "dc:creator": "Somini Sengupta, Abdi Latif Dahir, Alex Travelli and Clifford Krauss", - "content": "Two- and three-wheeled vehicles, used by billions of people, are moving away from fossil fuels to batteries faster than cars in countries that have made the energy transition a priority.", - "contentSnippet": "Two- and three-wheeled vehicles, used by billions of people, are moving away from fossil fuels to batteries faster than cars in countries that have made the energy transition a priority.", - "guid": "https://www.nytimes.com/2023/12/09/business/energy-environment/two-three-wheel-electric-vehicles.html", - "categories": [ - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric Bicycles, Motorcycles and Scooters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pedicabs and Rickshaws", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Batteries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Air Pollution", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Natural Gas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Trade and World Market", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Poverty", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Urban Areas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Infrastructure (Public Works)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobile Service and Charging Stations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "India", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Kenya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Mexico", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Mexico City (Mexico)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Nairobi (Kenya)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-09T13:35:49.000Z" - }, - { - "creator": "Tripp Mickle, Cade Metz, Mike Isaac and Karen Weise", - "title": "Inside OpenAI\u2019s Crisis Over the Future of Artificial Intelligence", - "link": "https://www.nytimes.com/2023/12/09/technology/openai-altman-inside-crisis.html", - "pubDate": "Sat, 09 Dec 2023 12:51:31 +0000", - "dc:creator": "Tripp Mickle, Cade Metz, Mike Isaac and Karen Weise", - "content": "Split over the leadership of Sam Altman, board members and executives turned on one another. Their brawl exposed the cracks at the heart of the A.I. movement.", - "contentSnippet": "Split over the leadership of Sam Altman, board members and executives turned on one another. Their brawl exposed the cracks at the heart of the A.I. movement.", - "guid": "https://www.nytimes.com/2023/12/09/technology/openai-altman-inside-crisis.html", - "categories": [ - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Boards of Directors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Appointments and Executive Changes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Sutskever, Ilya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "D'Angelo, Adam", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Toner, Helen", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "McCauley, Tasha", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Brockman, Greg", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Murati, Mira", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Summers, Lawrence H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nadella, Satya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-09T12:51:31.000Z" - }, - { - "creator": "Adam Satariano", - "title": "E.U. Agrees on AI Act, Landmark Regulation for Artificial Intelligence", - "link": "https://www.nytimes.com/2023/12/08/technology/eu-ai-act-regulation.html", - "pubDate": "Fri, 08 Dec 2023 23:20:31 +0000", - "dc:creator": "Adam Satariano", - "content": "The agreement over the A.I. Act solidifies one of the world\u2019s first comprehensive attempts to limit the use of artificial intelligence.", - "contentSnippet": "The agreement over the A.I. Act solidifies one of the world\u2019s first comprehensive attempts to limit the use of artificial intelligence.", - "guid": "https://www.nytimes.com/2023/12/08/technology/eu-ai-act-regulation.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Facial Recognition Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Vision", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Europe", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-08T23:20:31.000Z" - }, - { - "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano and Rowan Niemisto", - "title": "Google\u2019s Epic Loss, Silicon Valley\u2019s Curious New Subculture and How 2023 Changed the Internet", - "link": "https://www.nytimes.com/2023/12/15/podcasts/hard-fork-google-epic.html", - "pubDate": "Fri, 15 Dec 2023 10:08:28 +0000", - "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano and Rowan Niemisto", - "content": "Looks like Google is on the naughty list this year.", - "contentSnippet": "Looks like Google is on the naughty list this year.", - "guid": "https://www.nytimes.com/2023/12/15/podcasts/hard-fork-google-epic.html", - "categories": [ - { - "_": "Science and Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Epic Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Prince, Matthew", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "CloudFlare Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Andreessen, Marc L", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-15T10:08:28.000Z" - }, - { - "creator": "John Koblin and Nicole Sperling", - "title": "Studios Are Loosening Their Reluctance to Send Old Shows Back to Netflix", - "link": "https://www.nytimes.com/2023/12/15/business/media/netflix-licensed-shows.html", - "pubDate": "Fri, 15 Dec 2023 10:03:42 +0000", - "dc:creator": "John Koblin and Nicole Sperling", - "content": "When building their own streaming companies, many entertainment studios ended lucrative licensing deals with Netflix. But they missed the money too much.", - "contentSnippet": "When building their own streaming companies, many entertainment studios ended lucrative licensing deals with Netflix. But they missed the money too much.", - "guid": "https://www.nytimes.com/2023/12/15/business/media/netflix-licensed-shows.html", - "categories": [ - { - "_": "Netflix Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Sarandos, Ted", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Television", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Movies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cable Television", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Warner Bros Discovery", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Walt Disney Company", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-15T10:03:42.000Z" - }, - { - "creator": "Orlando Mayorquin", - "title": "The Last of Us Multiplayer Video Game Is Scrapped", - "link": "https://www.nytimes.com/2023/12/14/technology/naughty-dog-last-of-us-multiplayer-canceled.html", - "pubDate": "Fri, 15 Dec 2023 04:29:29 +0000", - "dc:creator": "Orlando Mayorquin", - "content": "The video game studio Naughty Dog said The Last of Us Online was too resource-intensive to complete without delaying the development of future single-player versions of the game.", - "contentSnippet": "The video game studio Naughty Dog said The Last of Us Online was too resource-intensive to complete without delaying the development of future single-player versions of the game.", - "guid": "https://www.nytimes.com/2023/12/14/technology/naughty-dog-last-of-us-multiplayer-canceled.html", - "categories": [ - { - "_": "Computer and Video Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Television", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Home Box Office", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Naughty Dog Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Emmy Awards", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-15T04:29:29.000Z" - }, - { - "creator": "Sapna Maheshwari", - "title": "TikTok Quietly Changes User Terms Amid Growing Legal Scrutiny", - "link": "https://www.nytimes.com/2023/12/14/business/media/tiktok-changes-user-terms.html", - "pubDate": "Thu, 14 Dec 2023 20:58:05 +0000", - "dc:creator": "Sapna Maheshwari", - "content": "Some lawyers say the changes could make it more difficult to bring legal action against the company.", - "contentSnippet": "Some lawyers say the changes could make it more difficult to bring legal action against the company.", - "guid": "https://www.nytimes.com/2023/12/14/business/media/tiktok-changes-user-terms.html", - "categories": [ - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Instagram Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ethics and Official Misconduct", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Arbitration, Conciliation and Mediation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Attorneys General", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Teenagers and Adolescence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-14T20:58:05.000Z" - }, - { - "creator": "Tripp Mickle", - "title": "GM\u2019s Cruise Cuts About 25 Percent of Its Workers", - "link": "https://www.nytimes.com/2023/12/14/technology/cruise-layoffs.html", - "pubDate": "Thu, 14 Dec 2023 20:00:08 +0000", - "dc:creator": "Tripp Mickle", - "content": "The embattled self-driving car subsidiary of General Motors faces an uncertain future after California regulators shut down its robot taxi service in the state.", - "contentSnippet": "The embattled self-driving car subsidiary of General Motors faces an uncertain future after California regulators shut down its robot taxi service in the state.", - "guid": "https://www.nytimes.com/2023/12/14/technology/cruise-layoffs.html", - "categories": [ - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Driverless and Semiautonomous Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Robots and Robotics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cruise LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "General Motors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-14T20:00:08.000Z" - }, - { - "creator": "Madison Malone Kircher", - "title": "TikTok\u2019s Bow Trend Gets Absurd", - "link": "https://www.nytimes.com/2023/12/15/style/bows-tiktok-trend.html", - "pubDate": "Fri, 15 Dec 2023 14:56:29 +0000", - "dc:creator": "Madison Malone Kircher", - "content": "In an unstoppable TikTok trend that is growing more satirical by the day, pretty pink ribbons keep popping up in all the wrong places.", - "contentSnippet": "In an unstoppable TikTok trend that is growing more satirical by the day, pretty pink ribbons keep popping up in all the wrong places.", - "guid": "https://www.nytimes.com/2023/12/15/style/bows-tiktok-trend.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Comedy and Humor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Del Rey, Lana", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-15T14:56:29.000Z" - }, - { - "creator": "Alex Williams", - "title": "Vera Molnar, Pioneer of Computer Art, Dies at 99", - "link": "https://www.nytimes.com/2023/12/15/arts/vera-molnar-dead.html", - "pubDate": "Fri, 15 Dec 2023 15:25:31 +0000", - "dc:creator": "Alex Williams", - "content": "Experimenting with algorithms, she began to employ the principles of computation in her work even before she gained access to an actual computer.", - "contentSnippet": "Experimenting with algorithms, she began to employ the principles of computation in her work even before she gained access to an actual computer.", - "guid": "https://www.nytimes.com/2023/12/15/arts/vera-molnar-dead.html", - "categories": [ - { - "_": "Molnar, Vera", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Art", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Paris (France)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Hungary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sotheby's", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-15T15:25:31.000Z" - }, - { - "creator": "Sopan Deb", - "title": "Boy, 13, Is Believed to Be the First to \u2018Beat\u2019 Tetris", - "link": "https://www.nytimes.com/2024/01/03/arts/tetris-beat-blue-scuti.html", - "pubDate": "Thu, 04 Jan 2024 07:20:30 +0000", - "dc:creator": "Sopan Deb", - "content": "Willis Gibson, a competitive Tetris player prodigy from Oklahoma, advanced so far in the original Nintendo version of the game that it froze. \u201cI can\u2019t feel my fingers,\u201d he said afterward.", - "contentSnippet": "Willis Gibson, a competitive Tetris player prodigy from Oklahoma, advanced so far in the original Nintendo version of the game that it froze. \u201cI can\u2019t feel my fingers,\u201d he said afterward.", - "guid": "https://www.nytimes.com/2024/01/03/arts/tetris-beat-blue-scuti.html", - "categories": [ - { - "_": "Tetris (Video Game)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" - } - }, - { - "_": "Computer and Video Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Records and Achievements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nintendo Co Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Oklahoma", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-04T07:20:30.000Z" - }, - { - "creator": "Neal E. Boudette", - "title": "Auto Sales Are Expected to Slow After a Strong 2023", - "link": "https://www.nytimes.com/2024/01/03/business/economy/auto-sales-general-motors.html", - "pubDate": "Thu, 04 Jan 2024 04:01:06 +0000", - "dc:creator": "Neal E. Boudette", - "content": "Automakers sold more cars in 2023 than a year ago as supply chain chaos ended, but sales are now under pressure from higher interest rates.", - "contentSnippet": "Automakers sold more cars in 2023 than a year ago as supply chain chaos ended, but sales are now under pressure from higher interest rates.", - "guid": "https://www.nytimes.com/2024/01/03/business/economy/auto-sales-general-motors.html", - "categories": [ - { - "_": "United States Economy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Company Reports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shortages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "General Motors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Discount Selling", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Two Thousand Twenty Three", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supply Chain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Batteries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Toyota Motor Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-04T04:01:06.000Z" - }, - { - "creator": "Zachary Small", - "title": "Museum World Hit by Cyberattack on Widely Used Software ", - "link": "https://www.nytimes.com/2024/01/03/arts/design/museum-cyberattack.html", - "pubDate": "Wed, 03 Jan 2024 23:30:41 +0000", - "dc:creator": "Zachary Small", - "content": "Hackers targeted software that many museums use to show their collections online and to manage sensitive information.", - "contentSnippet": "Hackers targeted software that many museums use to show their collections online and to manage sensitive information.", - "guid": "https://www.nytimes.com/2024/01/03/arts/design/museum-cyberattack.html", - "categories": [ - { - "_": "Museums", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Art", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Security", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cyberattacks and Hackers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Network Outages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Loeb, Frances Lehman, Art Center", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Rubin Museum of Art", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Museum of Fine Arts (Boston)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Crystal Bridges", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-03T23:30:41.000Z" - }, - { - "creator": "Noam Scheiber", - "title": "SpaceX Illegally Fired Workers Critical of Musk, NLRB Says", - "link": "https://www.nytimes.com/2024/01/03/business/spacex-elon-musk-nlrb-workers.html", - "pubDate": "Wed, 03 Jan 2024 20:37:11 +0000", - "dc:creator": "Noam Scheiber", - "content": "The National Labor Relations Board said the rocket company had wrongly dismissed eight people for a letter raising concerns about the chief executive.", - "contentSnippet": "The National Labor Relations Board said the rocket company had wrongly dismissed eight people for a letter raising concerns about the chief executive.", - "guid": "https://www.nytimes.com/2024/01/03/business/spacex-elon-musk-nlrb-workers.html", - "categories": [ - { - "_": "Workplace Hazards and Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Space Exploration Technologies Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Labor Relations Board", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Sexual Harassment", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Labor and Jobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Private Spaceflight", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Letters", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Twitter", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Shotwell, Gwynne", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-03T20:37:11.000Z" - }, - { - "creator": "Edward Wong and Amy Qin", - "title": "Asian American Officials Cite Unfair Scrutiny and Lost Jobs in China Spy Tensions", - "link": "https://www.nytimes.com/2023/12/31/us/politics/china-spy-asian-americans.html", - "pubDate": "Tue, 02 Jan 2024 23:09:04 +0000", - "dc:creator": "Edward Wong and Amy Qin", - "content": "National security employees with ties to Asia say U.S. counterintelligence officers wrongly regard them as potential spies and ban them from jobs.", - "contentSnippet": "National security employees with ties to Asia say U.S. counterintelligence officers wrongly regard them as potential spies and ban them from jobs.", - "guid": "https://www.nytimes.com/2023/12/31/us/politics/china-spy-asian-americans.html", - "categories": [ - { - "_": "Asian-Americans", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Chinese-Americans", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Discrimination", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Diplomatic Service, Embassies and Consulates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hiring and Promotion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "State Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Defense Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Federal Bureau of Investigation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Foreign Service (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Commerce Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-02T23:09:04.000Z" - }, - { - "creator": "Becky Hughes", - "title": "A 9-Month Cruise Is TikTok\u2019s Favorite New \u2018Reality Show\u2019", - "link": "https://www.nytimes.com/2023/12/31/travel/tiktok-royal-caribbean-cruise.html", - "pubDate": "Tue, 02 Jan 2024 20:06:10 +0000", - "dc:creator": "Becky Hughes", - "content": "Social media users, gripped by the potential for drama on Royal Caribbean\u2019s world cruise, have turned the ship\u2019s unwitting passengers into \u201ccast members\u201d overnight.", - "contentSnippet": "Social media users, gripped by the potential for drama on Royal Caribbean\u2019s world cruise, have turned the ship\u2019s unwitting passengers into \u201ccast members\u201d overnight.", - "guid": "https://www.nytimes.com/2023/12/31/travel/tiktok-royal-caribbean-cruise.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cruises", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Travel and Vacations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Royal Caribbean Cruises Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-02T20:06:10.000Z" - }, - { - "creator": "Michael Roston", - "title": "A Stunning Eclipse, a Moon Race and Other Space Events in 2024", - "link": "https://www.nytimes.com/2024/01/02/science/space-astronomy-events-2024.html", - "pubDate": "Tue, 02 Jan 2024 14:46:19 +0000", - "dc:creator": "Michael Roston", - "content": "In April, people across North America will be able to gaze at a stunning total eclipse. And astronauts may get closer to that promised moon landing.", - "contentSnippet": "In April, people across North America will be able to gaze at a stunning total eclipse. And astronauts may get closer to that promised moon landing.", - "guid": "https://www.nytimes.com/2024/01/02/science/space-astronomy-events-2024.html", - "categories": [ - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Private Spaceflight", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Solar System", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Eclipses", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rocket Science and Propulsion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Europa (Moon of Jupiter)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Moon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mars (Planet)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Asteroids", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Blue Origin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Boeing Company", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "European Space Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Intuitive Machines LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Aeronautics and Space Administration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Space Exploration Technologies Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Launch Alliance", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-02T14:46:19.000Z" - }, - { - "creator": "Adam Liptak", - "title": "Chief Justice Roberts Sees Promise and Danger of A.I. in the Courts", - "link": "https://www.nytimes.com/2023/12/31/us/john-roberts-supreme-court.html", - "pubDate": "Mon, 01 Jan 2024 02:05:12 +0000", - "dc:creator": "Adam Liptak", - "content": "In his year-end report, Chief Justice John G. Roberts Jr. focused on the new technology while steering clear of Supreme Court ethics and Donald J. Trump\u2019s criminal cases.", - "contentSnippet": "In his year-end report, Chief Justice John G. Roberts Jr. focused on the new technology while steering clear of Supreme Court ethics and Donald J. Trump\u2019s criminal cases.", - "guid": "https://www.nytimes.com/2023/12/31/us/john-roberts-supreme-court.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Courts and the Judiciary", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ethics and Official Misconduct", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Supreme Court (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Roberts, John G Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-01T02:05:12.000Z" - }, - { - "creator": "Kashmir Hill", - "title": "How Tracking and Technology in Cars Is Being Weaponized by Abusive Partners", - "link": "https://www.nytimes.com/2023/12/31/technology/car-trackers-gps-abuse.html", - "pubDate": "Sun, 31 Dec 2023 08:00:24 +0000", - "dc:creator": "Kashmir Hill", - "content": "Apps that remotely track and control cars are being weaponized by abusive partners. Car manufacturers have been slow to respond, according to victims and experts.", - "contentSnippet": "Apps that remotely track and control cars are being weaponized by abusive partners. Car manufacturers have been slow to respond, according to victims and experts.", - "guid": "https://www.nytimes.com/2023/12/31/technology/car-trackers-gps-abuse.html", - "categories": [ - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stalking (Crime)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cyberharassment", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-31T08:00:24.000Z" - }, - { - "creator": "Michael Forsythe and Gabriel J.X. Dance", - "title": "Un estudiante mantuvo en secreto una criptomina de 6 millones de d\u00f3lares", - "link": "https://www.nytimes.com/es/2023/12/30/espanol/criptomina-secreto-texas-china.html", - "pubDate": "Sat, 30 Dec 2023 10:02:18 +0000", - "dc:creator": "Michael Forsythe and Gabriel J.X. Dance", - "content": "Una disputa legal en un peque\u00f1o pueblo de Texas revela inesperadamente c\u00f3mo los ciudadanos chinos pueden mover dinero a Estados Unidos sin llamar la atenci\u00f3n de las autoridades de ninguno de los dos pa\u00edses.", - "contentSnippet": "Una disputa legal en un peque\u00f1o pueblo de Texas revela inesperadamente c\u00f3mo los ciudadanos chinos pueden mover dinero a Estados Unidos sin llamar la atenci\u00f3n de las autoridades de ninguno de los dos pa\u00edses.", - "guid": "https://www.nytimes.com/es/2023/12/30/espanol/criptomina-secreto-texas-china.html", - "categories": [ - { - "_": "Bitcoin (Currency)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "BitRush Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Binance", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Tether Operations Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Texas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-30T10:02:18.000Z" - }, - { - "creator": "J. Edward Moreno", - "title": "Boom in A.I. Prompts a Test of Copyright Law", - "link": "https://www.nytimes.com/2023/12/30/business/media/copyright-law-ai-media.html", - "pubDate": "Sat, 30 Dec 2023 10:01:57 +0000", - "dc:creator": "J. Edward Moreno", - "content": "The use of content from news and information providers to train artificial intelligence systems may force a reassessment of where to draw legal lines.", - "contentSnippet": "The use of content from news and information providers to train artificial intelligence systems may force a reassessment of where to draw legal lines.", - "guid": "https://www.nytimes.com/2023/12/30/business/media/copyright-law-ai-media.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Copyrights and Copyright Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Intellectual Property", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Newspapers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "New York Times", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-12-30T10:01:57.000Z" - }, - { - "creator": "Leslie Katz", - "title": "An Artist in Residence on A.I.\u2019s Territory", - "link": "https://www.nytimes.com/2023/12/30/technology/openai-artist-alexander-reben.html", - "pubDate": "Sat, 30 Dec 2023 10:00:48 +0000", - "dc:creator": "Leslie Katz", - "content": "Alexander Reben is taking his tech-savvy perspective to OpenAI, a company that some in the art world believe is a threat to their future.", - "contentSnippet": "Alexander Reben is taking his tech-savvy perspective to OpenAI, a company that some in the art world believe is a threat to their future.", - "guid": "https://www.nytimes.com/2023/12/30/technology/openai-artist-alexander-reben.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Art", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Culture (Arts)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Copyrights and Copyright Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Reben, Alexander", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-12-30T10:00:48.000Z" - }, - { - "creator": "Siobhan Roberts", - "title": "Need a Home for 80,000 Puzzles? Try an Italian Castle.", - "link": "https://www.nytimes.com/2023/12/29/science/puzzles-mechanical-miller.html", - "pubDate": "Sat, 30 Dec 2023 02:12:05 +0000", - "dc:creator": "Siobhan Roberts", - "content": "Earlier this year, George and Roxanne Miller relocated the world\u2019s largest collection of mechanical puzzles from their home in Florida. But first they took a road trip.", - "contentSnippet": "Earlier this year, George and Roxanne Miller relocated the world\u2019s largest collection of mechanical puzzles from their home in Florida. But first they took a road trip.", - "guid": "https://www.nytimes.com/2023/12/29/science/puzzles-mechanical-miller.html", - "categories": [ - { - "_": "Collectors and Collections", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Puzzles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Palaces and Castles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Design", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Road Trips", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Panicale (Italy)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-30T02:12:05.000Z" - }, - { - "creator": "Peter Eavis and Mark Abramson", - "title": "California Pushes Electric Trucks as the Future of Freight", - "link": "https://www.nytimes.com/2023/12/28/business/energy-environment/electric-trucks-port-california.html", - "pubDate": "Fri, 29 Dec 2023 21:36:46 +0000", - "dc:creator": "Peter Eavis and Mark Abramson", - "content": "A mainstay of cargo transport will be phased out at ports as California bans new registrations of carbon-fuel trucks in favor of nonpolluting ones.", - "contentSnippet": "A mainstay of cargo transport will be phased out at ports as California bans new registrations of carbon-fuel trucks in favor of nonpolluting ones.", - "guid": "https://www.nytimes.com/2023/12/28/business/energy-environment/electric-trucks-port-california.html", - "categories": [ - { - "_": "California", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Trucks and Trucking", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freight (Cargo)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Diesel Power", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Port of Los Angeles (Calif)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Nikola Motor Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fuel Emissions (Transportation)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Infrastructure (Public Works)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-29T21:36:46.000Z" - }, - { - "creator": "Benjamin Mullin", - "title": "Inside the News Industry\u2019s Uneasy Negotiations With OpenAI", - "link": "https://www.nytimes.com/2023/12/29/business/media/media-openai-chatgpt.html", - "pubDate": "Fri, 29 Dec 2023 13:05:31 +0000", - "dc:creator": "Benjamin Mullin", - "content": "Several major publishers have been in talks to license content to the creator of ChatGPT, but agreement on the price and terms has been elusive.", - "contentSnippet": "Several major publishers have been in talks to license content to the creator of ChatGPT, but agreement on the price and terms has been elusive.", - "guid": "https://www.nytimes.com/2023/12/29/business/media/media-openai-chatgpt.html", - "categories": [ - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Newspapers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Copyrights and Copyright Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "New York Times", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Associated Press", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Wall Street Journal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Washington Post", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Atlanta Journal-Constitution", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Springer, Axel, Verlag AG", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Axel Springer Verlag AG", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "News Media Alliance", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "News Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-29T13:05:31.000Z" - }, - { - "creator": "Jonathan O\u2019Callaghan", - "title": "The First Secret Asteroid Mission Won\u2019t Be the Last", - "link": "https://www.nytimes.com/2023/12/27/science/secret-asteroid-mission-astroforge.html", - "pubDate": "Thu, 28 Dec 2023 20:23:17 +0000", - "dc:creator": "Jonathan O\u2019Callaghan", - "content": "AstroForge, a private company, wants to mine a space rock, but it doesn\u2019t want the competition to find out which one.", - "contentSnippet": "AstroForge, a private company, wants to mine a space rock, but it doesn\u2019t want the competition to find out which one.", - "guid": "https://www.nytimes.com/2023/12/27/science/secret-asteroid-mission-astroforge.html", - "categories": [ - { - "_": "AstroForge Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Asteroids", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mines and Mining", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Private Spaceflight", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Solar System", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rocket Science and Propulsion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-28T20:23:17.000Z" - }, - { - "creator": "Mike Ives", - "title": "Apple Watch Sales to Resume, for Now", - "link": "https://www.nytimes.com/2023/12/28/technology/apple-watch-banned-appeals-court.html", - "pubDate": "Thu, 28 Dec 2023 19:23:53 +0000", - "dc:creator": "Mike Ives", - "content": "The company pulled two watches from stores after losing a patent case, but an appeals court temporarily paused enforcement of that ruling while the legal battle continues.", - "contentSnippet": "The company pulled two watches from stores after losing a patent case, but an appeals court temporarily paused enforcement of that ruling while the legal battle continues.", - "guid": "https://www.nytimes.com/2023/12/28/technology/apple-watch-banned-appeals-court.html", - "categories": [ - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Watches and Clocks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wearable Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inventions and Patents", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Shopping and Retail", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "California", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-12-28T19:23:53.000Z" - }, - { - "creator": "David Berreby", - "title": "ChatGPT Helps, and Worries, Business Consultants, Study Finds", - "link": "https://www.nytimes.com/2023/12/28/science/chatgpt-business-consultants.html", - "pubDate": "Thu, 28 Dec 2023 10:01:52 +0000", - "dc:creator": "David Berreby", - "content": "The A.I. tool helped most with creative tasks. With more analytical work, however, the technology led to more mistakes.", - "contentSnippet": "The A.I. tool helped most with creative tasks. With more analytical work, however, the technology led to more mistakes.", - "guid": "https://www.nytimes.com/2023/12/28/science/chatgpt-business-consultants.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Consultants", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Creativity", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Boston Consulting Group", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-28T10:01:52.000Z" - }, - { - "creator": "Jason Farago", - "title": "A.I. Can Make Art That Feels Human. Whose Fault Is That?", - "link": "https://www.nytimes.com/2023/12/28/arts/design/artists-artificial-intelligence.html", - "pubDate": "Thu, 28 Dec 2023 10:01:24 +0000", - "dc:creator": "Jason Farago", - "content": "A fake Drake/Weeknd mash-up is not a threat to our species\u2019s culture. It\u2019s a warning: We can\u2019t let our imaginations shrink to machine size.", - "contentSnippet": "A fake Drake/Weeknd mash-up is not a threat to our species\u2019s culture. It\u2019s a warning: We can\u2019t let our imaginations shrink to machine size.", - "guid": "https://www.nytimes.com/2023/12/28/arts/design/artists-artificial-intelligence.html", - "categories": [ - { - "_": "Art", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Two Thousand Twenty Three", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Culture (Arts)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-28T10:01:24.000Z" - }, - { - "creator": "Michael M. Grynbaum and Ryan Mac", - "title": "New York Times Sues OpenAI and Microsoft Over Use of Copyrighted Work", - "link": "https://www.nytimes.com/2023/12/27/business/media/new-york-times-open-ai-microsoft-lawsuit.html", - "pubDate": "Wed, 27 Dec 2023 22:03:21 +0000", - "dc:creator": "Michael M. Grynbaum and Ryan Mac", - "content": "Millions of articles from The New York Times were used to train chatbots that now compete with it, the lawsuit said.", - "contentSnippet": "Millions of articles from The New York Times were used to train chatbots that now compete with it, the lawsuit said.", - "guid": "https://www.nytimes.com/2023/12/27/business/media/new-york-times-open-ai-microsoft-lawsuit.html", - "categories": [ - { - "_": "New York Times", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Newspapers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Copyrights and Copyright Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Compensation for Damages (Law)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-12-27T22:03:21.000Z" - }, - { - "creator": "Emmett Lindner", - "title": "Happy Puppies and Silly Geese: Pushing the Limits of A.I. Absurdity", - "link": "https://www.nytimes.com/2024/01/04/technology/ai-chatgpt-images-memes.html", - "pubDate": "Thu, 04 Jan 2024 15:23:23 +0000", - "dc:creator": "Emmett Lindner", - "content": "A recent update to ChatGPT made it easier to create images. It wasn\u2019t long before some began pushing the chatbot to its limits.", - "contentSnippet": "A recent update to ChatGPT made it easier to create images. It wasn\u2019t long before some began pushing the chatbot to its limits.", - "guid": "https://www.nytimes.com/2024/01/04/technology/ai-chatgpt-images-memes.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Yudkowsky, Eliezer", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-04T15:23:23.000Z" - }, - { - "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Kate LoPresti, Jen Poyant, Daniel Ramirez, Dan Powell, Marion Lozano, Rowan Niemisto and Pat McCusker", - "title": "The Times Sues OpenAI, a Debate Over iMessage and Our New Year\u2019s Tech Resolutions", - "link": "https://www.nytimes.com/2024/01/05/podcasts/nyt-lawsuit-openai-imessage-new-years-tech.html", - "pubDate": "Fri, 05 Jan 2024 10:02:43 +0000", - "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Kate LoPresti, Jen Poyant, Daniel Ramirez, Dan Powell, Marion Lozano, Rowan Niemisto and Pat McCusker", - "content": "\u201cThis is sort of the big kahuna.\u201d", - "contentSnippet": "\u201cThis is sort of the big kahuna.\u201d", - "guid": "https://www.nytimes.com/2024/01/05/podcasts/nyt-lawsuit-openai-imessage-new-years-tech.html", - "categories": [ - { - "_": "Science and Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "New York Times", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Beeper Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-05T10:02:43.000Z" - }, - { - "creator": "David Yaffe-Bellany", - "title": "$3 Billion of New Bitcoin Funds Change Hands in First Trading Day", - "link": "https://www.nytimes.com/2024/01/11/technology/bitcoin-etf-trading.html", - "pubDate": "Thu, 11 Jan 2024 20:01:02 +0000", - "dc:creator": "David Yaffe-Bellany", - "content": "The products, known as exchange-traded funds, were approved by federal regulators this week, a watershed moment for the crypto industry.", - "contentSnippet": "The products, known as exchange-traded funds, were approved by federal regulators this week, a watershed moment for the crypto industry.", - "guid": "https://www.nytimes.com/2024/01/11/technology/bitcoin-etf-trading.html", - "categories": [ - { - "_": "Virtual Currency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bitcoin (Currency)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Nasdaq Composite Index", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "BlackRock Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Coinbase Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Securities and Exchange Commission", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gensler, Gary S", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-11T20:01:02.000Z" - }, - { - "creator": "Mike Isaac", - "title": "Discord Cuts 17% of Workers in Latest Tech Layoffs", - "link": "https://www.nytimes.com/2024/01/11/technology/discord-tech-layoffs.html", - "pubDate": "Thu, 11 Jan 2024 19:33:09 +0000", - "dc:creator": "Mike Isaac", - "content": "In an internal memo, Discord said it had grown five times its size since 2020.", - "contentSnippet": "In an internal memo, Discord said it had grown five times its size since 2020.", - "guid": "https://www.nytimes.com/2024/01/11/technology/discord-tech-layoffs.html", - "categories": [ - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Labor and Jobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer and Video Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Discord Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Citron, Jason", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-11T19:33:09.000Z" - }, - { - "creator": "Kashmir Hill", - "title": "Federal Regulator Questions Carmakers About Unwanted Tracking via Their Apps", - "link": "https://www.nytimes.com/2024/01/11/technology/fcc-car-apps-stalking.html", - "pubDate": "Thu, 11 Jan 2024 19:10:03 +0000", - "dc:creator": "Kashmir Hill", - "content": "The Federal Communications Commission is concerned about abusive partners using connected car apps to harass and track their victims.", - "contentSnippet": "The Federal Communications Commission is concerned about abusive partners using connected car apps to harass and track their victims.", - "guid": "https://www.nytimes.com/2024/01/11/technology/fcc-car-apps-stalking.html", - "categories": [ - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Law and Legislation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stalking (Crime)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Domestic Violence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Federal Communications Commission", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Rosenworcel, Jessica", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-11T19:10:03.000Z" - }, - { - "creator": "Nico Grant", - "title": "Google Cuts Hundreds of Jobs in Engineering and Other Divisions", - "link": "https://www.nytimes.com/2024/01/11/technology/google-layoffs.html", - "pubDate": "Thu, 11 Jan 2024 18:50:02 +0000", - "dc:creator": "Nico Grant", - "content": "The company, which has been working to trim expenses, laid off employees who worked on core engineering, the Google Assistant product and hardware such as the Pixel phone.", - "contentSnippet": "The company, which has been working to trim expenses, laid off employees who worked on core engineering, the Google Assistant product and hardware such as the Pixel phone.", - "guid": "https://www.nytimes.com/2024/01/11/technology/google-layoffs.html", - "categories": [ - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Engineering and Engineers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alphabet Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-11T18:50:02.000Z" - }, - { - "creator": "Natasha Singer", - "title": "AI and Education: Will Chatbots Soon Tutor Your Children?", - "link": "https://www.nytimes.com/2024/01/11/technology/ai-chatbots-khan-education-tutoring.html", - "pubDate": "Thu, 11 Jan 2024 10:00:33 +0000", - "dc:creator": "Natasha Singer", - "content": "New A.I. tools could enable a Silicon Valley dream: bots that customize learning for pupils. Prior attempts have not lived up to the hype.", - "contentSnippet": "New A.I. tools could enable a Silicon Valley dream: bots that customize learning for pupils. Prior attempts have not lived up to the hype.", - "guid": "https://www.nytimes.com/2024/01/11/technology/ai-chatbots-khan-education-tutoring.html", - "categories": [ - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "tutoring bots", - "$": { - "domain": "" - } - }, - { - "_": "Education (K-12)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "education technology", - "$": { - "domain": "" - } - }, - { - "_": "Khanmigo", - "$": { - "domain": "" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "personalized learning", - "$": { - "domain": "" - } - }, - { - "_": "E-Learning", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Khan Academy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Khan Lab School", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Khan, Sal (1976- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-11T10:00:33.000Z" - }, - { - "creator": "Tiffany Hsu and Yiwen Lu", - "title": "No, Taylor Swift no est\u00e1 vendiendo ollas Le Creuset", - "link": "https://www.nytimes.com/es/2024/01/11/espanol/ciencia-y-tecnologia/taylor-swift-le-creuset.html", - "pubDate": "Thu, 11 Jan 2024 08:00:19 +0000", - "dc:creator": "Tiffany Hsu and Yiwen Lu", - "content": "El supuesto patrocinio de Swift a los productos de la empresa, que ha aparecido en anuncios publicados en Facebook y otros medios, es falso.", - "contentSnippet": "El supuesto patrocinio de Swift a los productos de la empresa, que ha aparecido en anuncios publicados en Facebook y otros medios, es falso.", - "guid": "https://www.nytimes.com/es/2024/01/11/espanol/ciencia-y-tecnologia/taylor-swift-le-creuset.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Celebrities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Online Advertising", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Frauds and Swindling", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Voice and Speech", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Swift, Taylor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Le Creuset of America", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-11T08:00:19.000Z" - }, - { - "creator": "David Yaffe-Bellany", - "title": "SEC Approves New Bitcoin ETFs, in Boon for Crypto Industry", - "link": "https://www.nytimes.com/2024/01/10/technology/sec-bitcoin-approval-exchange-traded-funds.html", - "pubDate": "Wed, 10 Jan 2024 23:06:41 +0000", - "dc:creator": "David Yaffe-Bellany", - "content": "The Securities and Exchange Commission authorized financial firms to offer a Bitcoin investment product that some hope will accelerate adoption of the technology.", - "contentSnippet": "The Securities and Exchange Commission authorized financial firms to offer a Bitcoin investment product that some hope will accelerate adoption of the technology.", - "guid": "https://www.nytimes.com/2024/01/10/technology/sec-bitcoin-approval-exchange-traded-funds.html", - "categories": [ - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bitcoin (Currency)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Exchange Traded Funds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Securities and Exchange Commission", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gensler, Gary S", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-10T23:06:41.000Z" - }, - { - "creator": "Yiwen Lu", - "title": "Amazon Cuts Hundreds of Jobs at Studios and Twitch", - "link": "https://www.nytimes.com/2024/01/10/technology/amazon-layoffs-studios-twitch.html", - "pubDate": "Wed, 10 Jan 2024 19:31:32 +0000", - "dc:creator": "Yiwen Lu", - "content": "The layoffs add to a growing number of cuts in the tech industry this past year.", - "contentSnippet": "The layoffs add to a growing number of cuts in the tech industry this past year.", - "guid": "https://www.nytimes.com/2024/01/10/technology/amazon-layoffs-studios-twitch.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Labor and Jobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Amazon.com Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Metro-Goldwyn-Mayer Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Twitch Interactive Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Clancy, Dan (1964- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-10T19:31:32.000Z" - }, - { - "creator": "Cade Metz", - "title": "OpenAI Unveils App Store for Customized Versions of ChatGPT", - "link": "https://www.nytimes.com/2024/01/10/technology/openai-app-store-chatgpt.html", - "pubDate": "Wed, 10 Jan 2024 19:01:29 +0000", - "dc:creator": "Cade Metz", - "content": "People who subscribe to OpenAI\u2019s ChatGPT Plus service will be able to browse the new store for tailored chatbots that perform different tasks.", - "contentSnippet": "People who subscribe to OpenAI\u2019s ChatGPT Plus service will be able to browse the new store for tailored chatbots that perform different tasks.", - "guid": "https://www.nytimes.com/2024/01/10/technology/openai-app-store-chatgpt.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-10T19:01:29.000Z" - }, - { - "creator": "Karen Weise, Cade Metz and David McCabe", - "title": "Microsoft Debates What to Do With A.I. Lab in China", - "link": "https://www.nytimes.com/2024/01/10/technology/microsoft-china-ai-lab.html", - "pubDate": "Wed, 10 Jan 2024 15:28:22 +0000", - "dc:creator": "Karen Weise, Cade Metz and David McCabe", - "content": "Amid U.S.-China tensions, the company has faced questions over whether operating an advanced research lab in Beijing is politically tenable.", - "contentSnippet": "Amid U.S.-China tensions, the company has faced questions over whether operating an advanced research lab in Beijing is politically tenable.", - "guid": "https://www.nytimes.com/2024/01/10/technology/microsoft-china-ai-lab.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Laboratories and Scientific Equipment", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Vision", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gates, Bill", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Lee, Kai-Fu", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Nadella, Satya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Smith, Bradford L", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T15:28:22.000Z" - }, - { - "creator": "Brian X. Chen", - "title": "The Best and Worst of Tech: Smartphones, Self-Driving Cars, More", - "link": "https://www.nytimes.com/2024/01/10/technology/personaltech/tech-smartphones-self-driving-cars.html", - "pubDate": "Wed, 10 Jan 2024 14:00:11 +0000", - "dc:creator": "Brian X. Chen", - "content": "The best tech, from universal power charging to foldable phones, solved practical problems. But the worst tech, including self-driving cars and cryptocurrency, put us in harm\u2019s way.", - "contentSnippet": "The best tech, from universal power charging to foldable phones, solved practical problems. But the worst tech, including self-driving cars and cryptocurrency, put us in harm\u2019s way.", - "guid": "https://www.nytimes.com/2024/01/10/technology/personaltech/tech-smartphones-self-driving-cars.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Virtual Currency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Smartphones", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Driverless and Semiautonomous Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Text Messaging", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "iPhone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cruise LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Two Thousand Twenty Four", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wireless Communications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Two Thousand Twenty Three", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cellular Telephones", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "HK FTX Trading Ltd (Futures Exchange)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Waymo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bankman-Fried, Sam", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-10T14:00:11.000Z" - }, - { - "creator": "Don Clark and Ana Swanson", - "title": "The Next Front in the U.S.-China Battle Over Chips", - "link": "https://www.nytimes.com/2024/01/10/technology/risc-v-china-united-states-chips-security.html", - "pubDate": "Wed, 10 Jan 2024 10:01:26 +0000", - "dc:creator": "Don Clark and Ana Swanson", - "content": "A U.S.-born chip technology called RISC-V has become critical to China\u2019s ambitions. Washington is debating whether and how to limit the technology.", - "contentSnippet": "A U.S.-born chip technology called RISC-V has become critical to China\u2019s ambitions. Washington is debating whether and how to limit the technology.", - "guid": "https://www.nytimes.com/2024/01/10/technology/risc-v-china-united-states-chips-security.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Chips", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Open-Source Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Commerce Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Communist Party of China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-10T10:01:26.000Z" - }, - { - "creator": "Benjamin Mullin", - "title": "Editor of The Los Angeles Times Steps Down", - "link": "https://www.nytimes.com/2024/01/09/business/media/la-times-editor-resigns.html", - "pubDate": "Tue, 09 Jan 2024 22:09:31 +0000", - "dc:creator": "Benjamin Mullin", - "content": "Kevin Merida, who took over the job in 2021, said in an internal note that his last day would be on Friday.", - "contentSnippet": "Kevin Merida, who took over the job in 2021, said in an internal note that his last day would be on Friday.", - "guid": "https://www.nytimes.com/2024/01/09/business/media/la-times-editor-resigns.html", - "categories": [ - { - "_": "Appointments and Executive Changes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Newspapers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Los Angeles Times", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Merida, Kevin (1957- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-09T22:09:31.000Z" - }, - { - "creator": "Tiffany Hsu and Yiwen Lu", - "title": "No, That\u2019s Not Taylor Swift Peddling Le Creuset Cookware", - "link": "https://www.nytimes.com/2024/01/09/technology/taylor-swift-le-creuset-ai-deepfake.html", - "pubDate": "Tue, 09 Jan 2024 19:44:04 +0000", - "dc:creator": "Tiffany Hsu and Yiwen Lu", - "content": "The singer did not promote a giveaway of the popular cookware, but an artificially generated version of her voice suggested otherwise.", - "contentSnippet": "The singer did not promote a giveaway of the popular cookware, but an artificially generated version of her voice suggested otherwise.", - "guid": "https://www.nytimes.com/2024/01/09/technology/taylor-swift-le-creuset-ai-deepfake.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Celebrities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Online Advertising", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Frauds and Swindling", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Voice and Speech", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Swift, Taylor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Le Creuset of America", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-09T19:44:04.000Z" - }, - { - "creator": "Kenneth Chang", - "title": "Vulcan Rocket Aces Its First Launch", - "link": "https://www.nytimes.com/2024/01/08/science/vulcan-rocket-launch-moon.html", - "pubDate": "Tue, 09 Jan 2024 19:10:23 +0000", - "dc:creator": "Kenneth Chang", - "content": "Despite problems with one of its payloads, the new launcher\u2019s flight was flawless, showing the potential of several vehicles that could chip away at SpaceX\u2019s dominance.", - "contentSnippet": "Despite problems with one of its payloads, the new launcher\u2019s flight was flawless, showing the potential of several vehicles that could chip away at SpaceX\u2019s dominance.", - "guid": "https://www.nytimes.com/2024/01/08/science/vulcan-rocket-launch-moon.html", - "categories": [ - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Private Spaceflight", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Astrobotic Technology Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Launch Alliance", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Aeronautics and Space Administration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Space Exploration Technologies Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Moon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rocket Science and Propulsion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-09T19:10:23.000Z" - }, - { - "creator": "Cade Metz", - "title": "OpenAI Says New York Times Lawsuit Against It Is \u2018Without Merit\u2019", - "link": "https://www.nytimes.com/2024/01/08/technology/openai-new-york-times-lawsuit.html", - "pubDate": "Tue, 09 Jan 2024 18:55:26 +0000", - "dc:creator": "Cade Metz", - "content": "The artificial intelligence start-up said that it collaborated with news organizations and that The Times, which accused it of copyright infringement, was not telling the full story.", - "contentSnippet": "The artificial intelligence start-up said that it collaborated with news organizations and that The Times, which accused it of copyright infringement, was not telling the full story.", - "guid": "https://www.nytimes.com/2024/01/08/technology/openai-new-york-times-lawsuit.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Copyrights and Copyright Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "New York Times", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-09T18:55:26.000Z" - }, - { - "creator": "Edward Wong, Mark Mazzetti and Paul Mozur", - "title": "A.I. Giant Tied to China Under Scrutiny", - "link": "https://www.nytimes.com/2024/01/09/us/politics/ai-china-uae-g42.html", - "pubDate": "Tue, 09 Jan 2024 12:36:40 +0000", - "dc:creator": "Edward Wong, Mark Mazzetti and Paul Mozur", - "content": "A congressional committee made the demand of the Commerce Department after The Times reported on concerns among U.S. intelligence officials over the Emirati company, G42.", - "contentSnippet": "A congressional committee made the demand of the Commerce Department after The Times reported on concerns among U.S. intelligence officials over the Emirati company, G42.", - "guid": "https://www.nytimes.com/2024/01/09/us/politics/ai-china-uae-g42.html", - "categories": [ - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Surveillance of Citizens by Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Classified Information and State Secrets", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Embargoes and Sanctions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Commerce Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Arab Emirates", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "House of Representatives", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Yitu Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "ToTok (Mobile App)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Dark Matter LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-09T12:36:40.000Z" - }, - { - "creator": "Lyndie Chiou", - "title": "How Astronomers Are Saving Astronomy From Satellites \u2014 For Now", - "link": "https://www.nytimes.com/2024/01/09/science/astronomy-telescopes-satellites-spacex-starlink.html", - "pubDate": "Tue, 09 Jan 2024 12:15:43 +0000", - "dc:creator": "Lyndie Chiou", - "content": "Even the most powerful telescopes are in peril as orbits above Earth fill with thousands of new satellites. But scientists aren\u2019t ready to give up the night sky.", - "contentSnippet": "Even the most powerful telescopes are in peril as orbits above Earth fill with thousands of new satellites. But scientists aren\u2019t ready to give up the night sky.", - "guid": "https://www.nytimes.com/2024/01/09/science/astronomy-telescopes-satellites-spacex-starlink.html", - "categories": [ - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Satellites", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Telescopes and Observatories", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Starlink Satellite Constellation (SpaceX)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Science Foundation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Space Exploration Technologies Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Kuiper Systems (Amazon.com Inc)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-09T12:15:43.000Z" - }, - { - "creator": "Shannon Hall", - "title": "The New Space Race Is Causing New Pollution Problems", - "link": "https://www.nytimes.com/2024/01/09/science/rocket-pollution-spacex-satellites.html", - "pubDate": "Tue, 09 Jan 2024 12:15:18 +0000", - "dc:creator": "Shannon Hall", - "content": "Earth\u2019s stratosphere has never seen the amounts of emissions and waste from rockets and satellites that a booming space economy will leave behind.", - "contentSnippet": "Earth\u2019s stratosphere has never seen the amounts of emissions and waste from rockets and satellites that a booming space economy will leave behind.", - "guid": "https://www.nytimes.com/2024/01/09/science/rocket-pollution-spacex-satellites.html", - "categories": [ - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Private Spaceflight", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rocket Science and Propulsion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Satellites", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fuel Emissions (Transportation)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Air Pollution", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ozone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Radiation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Waste Materials and Disposal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Research", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Starlink Satellite Constellation (SpaceX)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Space Exploration Technologies Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Kuiper Systems (Amazon.com Inc)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OneWeb Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-09T12:15:18.000Z" - }, - { - "creator": "Yiwen Lu", - "title": "Unity Software to Cut 25% of Its Work Force", - "link": "https://www.nytimes.com/2024/01/08/technology/unity-software-job-cuts.html", - "pubDate": "Tue, 09 Jan 2024 01:00:32 +0000", - "dc:creator": "Yiwen Lu", - "content": "The cuts follow a tough year in which the tech industry laid off tens of thousands of workers.", - "contentSnippet": "The cuts follow a tough year in which the tech industry laid off tens of thousands of workers.", - "guid": "https://www.nytimes.com/2024/01/08/technology/unity-software-job-cuts.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Labor and Jobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Xerox Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Riccitiello, John", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "San Francisco (Calif)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-09T01:00:32.000Z" - }, - { - "creator": "Kenneth Chang", - "title": "Moon Lander Malfunctions After Launch, Raising Questions for NASA", - "link": "https://www.nytimes.com/2024/01/08/science/nasa-moon-lander-malfunction-peregrine.html", - "pubDate": "Mon, 08 Jan 2024 21:36:28 +0000", - "dc:creator": "Kenneth Chang", - "content": "After a flawless launch to orbit, the privately built robotic Peregrine lander is unlikely to reach the lunar surface because of a failure in its propulsion system.", - "contentSnippet": "After a flawless launch to orbit, the privately built robotic Peregrine lander is unlikely to reach the lunar surface because of a failure in its propulsion system.", - "guid": "https://www.nytimes.com/2024/01/08/science/nasa-moon-lander-malfunction-peregrine.html", - "categories": [ - { - "_": "Astrobotic Technology Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Moon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rocket Science and Propulsion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "National Aeronautics and Space Administration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Private Spaceflight", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-08T21:36:28.000Z" - }, - { - "creator": "Sapna Maheshwari", - "title": "TikTok Quietly Curtails Data Tool Used by Critics", - "link": "https://www.nytimes.com/2024/01/08/business/media/tiktok-data-tool-israel-hamas-war.html", - "pubDate": "Mon, 08 Jan 2024 19:19:43 +0000", - "dc:creator": "Sapna Maheshwari", - "content": "People and groups had harnessed the tool to scrutinize content on the site related to the Israel-Hamas war and other topics.", - "contentSnippet": "People and groups had harnessed the tool to scrutinize content on the site related to the Israel-Hamas war and other topics.", - "guid": "https://www.nytimes.com/2024/01/08/business/media/tiktok-data-tool-israel-hamas-war.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Israel-Gaza War (2023- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Beijing Bytedance Technology Co Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Network Contagion Research Institute", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Israel", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gaza Strip", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-08T19:19:43.000Z" - }, - { - "creator": "Cade Metz", - "title": "How 2024 Will Be A.I.\u2019s \u2018Leap Forward\u2019", - "link": "https://www.nytimes.com/2024/01/08/technology/ai-robots-chatbots-2024.html", - "pubDate": "Mon, 08 Jan 2024 10:01:08 +0000", - "dc:creator": "Cade Metz", - "content": "A.I. is set to advance at a rapid rate, becoming more powerful and spreading into the physical world.", - "contentSnippet": "A.I. is set to advance at a rapid rate, becoming more powerful and spreading into the physical world.", - "guid": "https://www.nytimes.com/2024/01/08/technology/ai-robots-chatbots-2024.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Two Thousand Twenty Four", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Robots and Robotics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Altman, Samuel H", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Manyika, James", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Cohere Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-08T10:01:08.000Z" - }, - { - "creator": "Seth Kugel", - "title": "Help! An Employee of Budget Kept My Phone and I Can Prove It.", - "link": "https://www.nytimes.com/2024/01/08/travel/help-an-employee-of-budget-kept-my-phone-and-i-can-prove-it.html", - "pubDate": "Mon, 08 Jan 2024 10:00:52 +0000", - "dc:creator": "Seth Kugel", - "content": "After misplacing his iPhone while returning a rental car, a traveler tracked down the device and presented strong evidence to the agency that a worker took it \u2014 to no avail.", - "contentSnippet": "After misplacing his iPhone while returning a rental car, a traveler tracked down the device and presented strong evidence to the agency that a worker took it \u2014 to no avail.", - "guid": "https://www.nytimes.com/2024/01/08/travel/help-an-employee-of-budget-kept-my-phone-and-i-can-prove-it.html", - "categories": [ - { - "_": "Automobile Renting and Leasing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Budget Rent A Car Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Avis Budget Group Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Alamo Rent a Car", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Robberies and Thefts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "iPhone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Lost and Found Property", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-08T10:00:52.000Z" - }, - { - "creator": "Stuart A. Thompson", - "title": "Dark Corners of the Web Offer a Glimpse at A.I.\u2019s Nefarious Future", - "link": "https://www.nytimes.com/2024/01/08/technology/ai-4chan-online-harassment.html", - "pubDate": "Mon, 08 Jan 2024 08:00:12 +0000", - "dc:creator": "Stuart A. Thompson", - "content": "In the hands of anonymous internet users, A.I. tools can create waves of harassing and racist material. It\u2019s already happening on the anonymous message board 4chan.", - "contentSnippet": "In the hands of anonymous internet users, A.I. tools can create waves of harassing and racist material. It\u2019s already happening on the anonymous message board 4chan.", - "guid": "https://www.nytimes.com/2024/01/08/technology/ai-4chan-online-harassment.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cyberharassment", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "4chan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Center for Countering Digital Hate", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-08T08:00:12.000Z" - }, - { - "creator": "Kashmir Hill", - "title": "Switching to a Flip Phone Helped Me Cut Down on My Smartphone Addiction", - "link": "https://www.nytimes.com/2024/01/06/technology/smartphone-addiction-flip-phone.html", - "pubDate": "Sat, 06 Jan 2024 15:58:08 +0000", - "dc:creator": "Kashmir Hill", - "content": "Was it inconvenient? Yes. Did T9 texting drive me crazy? Definitely. Was it worth doing? Absolutely.", - "contentSnippet": "Was it inconvenient? Yes. Did T9 texting drive me crazy? Definitely. Was it worth doing? Absolutely.", - "guid": "https://www.nytimes.com/2024/01/06/technology/smartphone-addiction-flip-phone.html", - "categories": [ - { - "_": "Smartphones", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "iPhone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Text Messaging", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Brain", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Addiction (Psychology)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-06T15:58:08.000Z" - }, - { - "creator": "David McCabe and Tripp Mickle", - "title": "U.S. Moves Closer to Filing Sweeping Antitrust Case Against Apple", - "link": "https://www.nytimes.com/2024/01/05/technology/antitrust-apple-lawsuit-us.html", - "pubDate": "Fri, 05 Jan 2024 19:28:23 +0000", - "dc:creator": "David McCabe and Tripp Mickle", - "content": "Justice Department officials are in the late stages of investigating the iPhone maker, focusing on how Apple has used its other products and services to defend against threats to its core business.", - "contentSnippet": "Justice Department officials are in the late stages of investigating the iPhone maker, focusing on how Apple has used its other products and services to defend against threats to its core business.", - "guid": "https://www.nytimes.com/2024/01/05/technology/antitrust-apple-lawsuit-us.html", - "categories": [ - { - "_": "Antitrust Laws and Competition Issues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "iPhone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Smartphones", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Justice Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-05T19:28:23.000Z" - }, - { - "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano, Diane Wong and Pat McCusker", - "title": "Why Casey Left Substack, Elon Musk and Drugs, and an A.I. Antibiotic Discovery", - "link": "https://www.nytimes.com/2024/01/12/podcasts/hard-fork-substack-controversy-musk-drugs.html", - "pubDate": "Fri, 12 Jan 2024 10:02:26 +0000", - "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano, Diane Wong and Pat McCusker", - "content": "It\u2019s a drug episode.", - "contentSnippet": "It\u2019s a drug episode.", - "guid": "https://www.nytimes.com/2024/01/12/podcasts/hard-fork-substack-controversy-musk-drugs.html", - "categories": [ - { - "_": "Science and Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Substack Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Drugs (Pharmaceuticals)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wall Street Journal", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Massachusetts Institute of Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Harvard University", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Antibiotics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Neo Nazi Groups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Right-Wing Extremism and Alt-Right", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-12T10:02:26.000Z" - }, - { - "creator": "David Streitfeld", - "title": "U.S. Criminally Charges EBay in Cyberstalking Case", - "link": "https://www.nytimes.com/2024/01/11/technology/ebay-cyberstalking-charges.html", - "pubDate": "Fri, 12 Jan 2024 02:28:18 +0000", - "dc:creator": "David Streitfeld", - "content": "The case involves eBay employees trying to intimidate a Massachusetts couple who write and produce an e-commerce newsletter. The company will pay a criminal penalty of $3 million.", - "contentSnippet": "The case involves eBay employees trying to intimidate a Massachusetts couple who write and produce an e-commerce newsletter. The company will pay a criminal penalty of $3 million.", - "guid": "https://www.nytimes.com/2024/01/11/technology/ebay-cyberstalking-charges.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Threats and Threatening Messages", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stalking (Crime)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Deferred Prosecution Agreements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "eBay Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Justice Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Baugh, James", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Wenig, Devin N", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-12T02:28:18.000Z" - }, - { - "creator": "Jack Ewing", - "title": "Hertz Sells 20,000 Electric Cars After Being Burned by Tesla\u2019s Price Cuts", - "link": "https://www.nytimes.com/2024/01/11/business/hertz-electric-vehicles-tesla.html", - "pubDate": "Thu, 11 Jan 2024 22:32:11 +0000", - "dc:creator": "Jack Ewing", - "content": "The rental car company blamed the sharp drop in the value of electric vehicles and higher repair costs for its decision to sell 20,000 cars.", - "contentSnippet": "The rental car company blamed the sharp drop in the value of electric vehicles and higher repair costs for its decision to sell 20,000 cars.", - "guid": "https://www.nytimes.com/2024/01/11/business/hertz-electric-vehicles-tesla.html", - "categories": [ - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobile Renting and Leasing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Appraisals and Valuation (Property)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fuel Efficiency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hertz Global Holdings Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Discount Selling", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fuel Emissions (Transportation)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Barrasso, John", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Biden, Joseph R Jr", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-11T22:32:11.000Z" - }, - { - "creator": "Julie Weed", - "title": "How AI Could Change Travel in 2024", - "link": "https://www.nytimes.com/2024/01/18/travel/ai-vacation-planning.html", - "pubDate": "Thu, 18 Jan 2024 10:01:20 +0000", - "dc:creator": "Julie Weed", - "content": "As artificial intelligence improves and expands its reach, expect new ways to book online, fewer snags at the airport and, possibly, more expensive tickets.", - "contentSnippet": "As artificial intelligence improves and expands its reach, expect new ways to book online, fewer snags at the airport and, possibly, more expensive tickets.", - "guid": "https://www.nytimes.com/2024/01/18/travel/ai-vacation-planning.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Airlines and Airplanes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Travel and Vacations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Delays (Transportation)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Content Type: Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T10:01:20.000Z" - }, - { - "creator": "Virginia Hughes", - "title": "Kona Coffee Lawsuit: How Science Helped Farmers Look for Counterfeit Beans", - "link": "https://www.nytimes.com/2024/01/18/science/kona-coffee-hawaii-authenticity.html", - "pubDate": "Thu, 18 Jan 2024 10:00:15 +0000", - "dc:creator": "Virginia Hughes", - "content": "A testing method borrowed from geology helped farmers sue a slew of stores selling supposed \u201cKona\u201d coffee.", - "contentSnippet": "A testing method borrowed from geology helped farmers sue a slew of stores selling supposed \u201cKona\u201d coffee.", - "guid": "https://www.nytimes.com/2024/01/18/science/kona-coffee-hawaii-authenticity.html", - "categories": [ - { - "_": "Coffee", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Volcanoes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Agriculture and Farming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Compensation for Damages (Law)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Advertising and Marketing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Hawaii (The Big Island)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-18T10:00:15.000Z" - }, - { - "creator": "Tripp Mickle", - "title": "Apple Says It Will Remove a Health Feature From New Apple Watches", - "link": "https://www.nytimes.com/2024/01/17/technology/apple-watch-oximetry-international-trade-commission.html", - "pubDate": "Thu, 18 Jan 2024 02:17:14 +0000", - "dc:creator": "Tripp Mickle", - "content": "Starting on Thursday, the Apple Watch Series 9 and Watch Ultra 2 will no longer detect people\u2019s blood oxygen levels, to comply with a ruling by the International Trade Commission.", - "contentSnippet": "Starting on Thursday, the Apple Watch Series 9 and Watch Ultra 2 will no longer detect people\u2019s blood oxygen levels, to comply with a ruling by the International Trade Commission.", - "guid": "https://www.nytimes.com/2024/01/17/technology/apple-watch-oximetry-international-trade-commission.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inventions and Patents", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wearable Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Pulse Oximetry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Masimo Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United States International Trade Commission", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-18T02:17:14.000Z" - }, - { - "creator": "Mike Isaac", - "title": "Sheryl Sandberg to Depart Meta\u2019s Board of Directors", - "link": "https://www.nytimes.com/2024/01/17/technology/sheryl-sandberg-meta-board.html", - "pubDate": "Thu, 18 Jan 2024 01:14:43 +0000", - "dc:creator": "Mike Isaac", - "content": "Ms. Sandberg, who left her role as Meta\u2019s chief operating officer in 2022, said she would serve as an adviser to the company.", - "contentSnippet": "Ms. Sandberg, who left her role as Meta\u2019s chief operating officer in 2022, said she would serve as an adviser to the company.", - "guid": "https://www.nytimes.com/2024/01/17/technology/sheryl-sandberg-meta-board.html", - "categories": [ - { - "_": "Boards of Directors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Appointments and Executive Changes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Sandberg, Sheryl K", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Zuckerberg, Mark E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-18T01:14:43.000Z" - }, - { - "creator": "Nico Grant", - "title": "YouTube Cuts 100 Employees as Tech Layoffs Continue", - "link": "https://www.nytimes.com/2024/01/17/technology/youtube-tech-layoffs-continue.html", - "pubDate": "Thu, 18 Jan 2024 00:48:06 +0000", - "dc:creator": "Nico Grant", - "content": "The layoffs are part of efforts by the video platform\u2019s parent company, Google, to trim costs and bureaucracy as it embraces artificial intelligence.", - "contentSnippet": "The layoffs are part of efforts by the video platform\u2019s parent company, Google, to trim costs and bureaucracy as it embraces artificial intelligence.", - "guid": "https://www.nytimes.com/2024/01/17/technology/youtube-tech-layoffs-continue.html", - "categories": [ - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Online Advertising", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "YouTube.com", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-18T00:48:06.000Z" - }, - { - "creator": "Siobhan Roberts", - "title": "A.I.\u2019s Latest Challenge: the Math Olympics", - "link": "https://www.nytimes.com/2024/01/17/science/ai-computers-mathematics-olympiad.html", - "pubDate": "Wed, 17 Jan 2024 19:49:55 +0000", - "dc:creator": "Siobhan Roberts", - "content": "Watch out, nerdy high schoolers, AlphaGeometry is coming for your mathematical lunch.", - "contentSnippet": "Watch out, nerdy high schoolers, AlphaGeometry is coming for your mathematical lunch.", - "guid": "https://www.nytimes.com/2024/01/17/science/ai-computers-mathematics-olympiad.html", - "categories": [ - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mathematics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "DeepMind Technologies Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Tao, Terence (1975- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "California", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T19:49:55.000Z" - }, - { - "creator": "Sophie Haigney", - "title": "How Group Chats Rule the World", - "link": "https://www.nytimes.com/2024/01/16/magazine/group-chats.html", - "pubDate": "Wed, 17 Jan 2024 17:20:28 +0000", - "dc:creator": "Sophie Haigney", - "content": "They quietly became the de facto spaces to share dumb jokes, grief or even plans for an insurrection.", - "contentSnippet": "They quietly became the de facto spaces to share dumb jokes, grief or even plans for an insurrection.", - "guid": "https://www.nytimes.com/2024/01/16/magazine/group-chats.html", - "categories": [ - { - "_": "Text Messaging", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Instant Messaging", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Friendship", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-17T17:20:28.000Z" - }, - { - "creator": "Lawrence Ulrich", - "title": "Hybrid Cars Enjoy a Renaissance as All-Electric Sales Slow", - "link": "https://www.nytimes.com/2024/01/17/business/hybrid-cars-electric-vehicles.html", - "pubDate": "Wed, 17 Jan 2024 15:26:48 +0000", - "dc:creator": "Lawrence Ulrich", - "content": "Automakers like Ford, Kia and Toyota are offering more hybrid options to appeal to buyers who aren\u2019t ready for fully electric vehicles.", - "contentSnippet": "Automakers like Ford, Kia and Toyota are offering more hybrid options to appeal to buyers who aren\u2019t ready for fully electric vehicles.", - "guid": "https://www.nytimes.com/2024/01/17/business/hybrid-cars-electric-vehicles.html", - "categories": [ - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Batteries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sustainable Living", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fuel Efficiency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Engines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sports Utility Vehicles and Light Trucks", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fuel Emissions (Transportation)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Consumer Behavior", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Infrastructure (Public Works)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobile Service and Charging Stations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ford Motor Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Honda Motor Co Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hyundai Motor Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Kia Motors Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Toyota Motor Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Farley, James D Jr (1962- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2024-01-17T15:26:48.000Z" - }, - { - "creator": "J. D. Biersdorfer", - "title": "How to Cut Down Your Screen Time but Still Get Stuff Done", - "link": "https://www.nytimes.com/2024/01/17/technology/personaltech/screen-time-phone.html", - "pubDate": "Wed, 17 Jan 2024 14:00:27 +0000", - "dc:creator": "J. D. Biersdorfer", - "content": "Google\u2019s Routines and Apple\u2019s Shortcuts combine multiple steps into one command to make your phone or tablet do more of the work for you.", - "contentSnippet": "Google\u2019s Routines and Apple\u2019s Shortcuts combine multiple steps into one command to make your phone or tablet do more of the work for you.", - "guid": "https://www.nytimes.com/2024/01/17/technology/personaltech/screen-time-phone.html", - "categories": [ - { - "_": "iOS (Operating System)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Android (Operating System)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Smartphones", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tablet Computers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-17T14:00:27.000Z" - }, - { - "creator": "Madison Malone Kircher", - "title": "Do You Have \u2018Bookshelf Wealth\u2019?", - "link": "https://www.nytimes.com/2024/01/15/style/do-you-have-bookshelf-wealth.html", - "pubDate": "Tue, 16 Jan 2024 21:07:14 +0000", - "dc:creator": "Madison Malone Kircher", - "content": "A TikTok home-d\u00e9cor trend has irked some bibliophiles.", - "contentSnippet": "A TikTok home-d\u00e9cor trend has irked some bibliophiles.", - "guid": "https://www.nytimes.com/2024/01/15/style/do-you-have-bookshelf-wealth.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Interior Design and Furnishings", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Books and Literature", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-16T21:07:14.000Z" - }, - { - "creator": "Jack Ewing", - "title": "Musk Demands Bigger Stake in Tesla as Price for A.I. Work", - "link": "https://www.nytimes.com/2024/01/16/business/tesla-elon-musk-stock.html", - "pubDate": "Tue, 16 Jan 2024 19:28:17 +0000", - "dc:creator": "Jack Ewing", - "content": "Elon Musk, the electric car company\u2019s chief executive, said he would \u201cbuild products outside of Tesla\u201d unless the board raises his stake to 25 percent.", - "contentSnippet": "Elon Musk, the electric car company\u2019s chief executive, said he would \u201cbuild products outside of Tesla\u201d unless the board raises his stake to 25 percent.", - "guid": "https://www.nytimes.com/2024/01/16/business/tesla-elon-musk-stock.html", - "categories": [ - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stocks and Bonds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Boards of Directors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Robots and Robotics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-16T19:28:17.000Z" - }, - { - "creator": "Don Clark", - "title": "Synopsys Strikes $35 Billion Deal to Buy Ansys", - "link": "https://www.nytimes.com/2024/01/16/technology/synopsys-ansys-35-billion-dollars.html", - "pubDate": "Tue, 16 Jan 2024 19:16:55 +0000", - "dc:creator": "Don Clark", - "content": "The deal was the latest sign of changes in the tech sector, as artificial intelligence booms and sales of some hardware slows.", - "contentSnippet": "The deal was the latest sign of changes in the tech sector, as artificial intelligence booms and sales of some hardware slows.", - "guid": "https://www.nytimes.com/2024/01/16/technology/synopsys-ansys-35-billion-dollars.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Chips", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mergers, Acquisitions and Divestitures", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electronics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cadence Design Systems Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Synopsys Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Ansys Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-16T19:16:55.000Z" - }, - { - "creator": "Ivan Penn", - "title": "California Has Dealt a Blow to Renewable Energy, Some Businesses Say", - "link": "https://www.nytimes.com/2024/01/14/business/energy-environment/california-rooftop-solar.html", - "pubDate": "Sun, 14 Jan 2024 10:01:15 +0000", - "dc:creator": "Ivan Penn", - "content": "Some companies are leaving the state or reducing their presence there after California greatly reduced incentives for homeowners to install rooftop solar panels.", - "contentSnippet": "Some companies are leaving the state or reducing their presence there after California greatly reduced incentives for homeowners to install rooftop solar panels.", - "guid": "https://www.nytimes.com/2024/01/14/business/energy-environment/california-rooftop-solar.html", - "categories": [ - { - "_": "Solar Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alternative and Renewable Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric Light and Power", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Real Estate and Housing (Residential)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Roofs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Batteries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Home Repairs and Improvements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Sunrun Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Pacific Gas and Electric Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "California", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Rebates and Refunds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tax Credits, Deductions and Exemptions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-14T10:01:15.000Z" - }, - { - "creator": "Tripp Mickle and Karen Weise", - "title": "Microsoft Tops Apple to Become Most Valuable Public Company", - "link": "https://www.nytimes.com/2024/01/12/technology/microsoft-apple-most-valuable-company.html", - "pubDate": "Fri, 12 Jan 2024 22:55:03 +0000", - "dc:creator": "Tripp Mickle and Karen Weise", - "content": "The shift is indicative of the importance of new artificial intelligence technology to Silicon Valley and Wall Street investors.", - "contentSnippet": "The shift is indicative of the importance of new artificial intelligence technology to Silicon Valley and Wall Street investors.", - "guid": "https://www.nytimes.com/2024/01/12/technology/microsoft-apple-most-valuable-company.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stocks and Bonds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "iPhone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Nadella, Satya", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Cook, Timothy D", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-12T22:55:03.000Z" - }, - { - "creator": "Victor Mather", - "title": "Deal Ends Dispute Over Records of Onetime King of Donkey Kong", - "link": "https://www.nytimes.com/2024/01/18/arts/donkey-kong-scores-billy-mitchell-twin-galaxies.html", - "pubDate": "Thu, 18 Jan 2024 17:28:58 +0000", - "dc:creator": "Victor Mather", - "content": "Billy Mitchell\u2019s records will be listed in a \u201chistorical database\u201d but not the leaderboard, ending a dispute familiar from the 2007 documentary, \u201cThe King of Kong: A Fistful of Quarters.\u201d", - "contentSnippet": "Billy Mitchell\u2019s records will be listed in a \u201chistorical database\u201d but not the leaderboard, ending a dispute familiar from the 2007 documentary, \u201cThe King of Kong: A Fistful of Quarters.\u201d", - "guid": "https://www.nytimes.com/2024/01/18/arts/donkey-kong-scores-billy-mitchell-twin-galaxies.html", - "categories": [ - { - "_": "Records and Achievements", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer and Video Games", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Twin Galaxies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Mitchell, Billy (1965- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Wiebe, Steven J (1969- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Arcades", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-18T17:28:58.000Z" - }, - { - "creator": "Kenneth Chang", - "title": "Astrobotic\u2019s Peregrine Moon Lander Burns Up in Earth\u2019s Atmosphere", - "link": "https://www.nytimes.com/2024/01/18/science/moon-lander-peregrine-nasa.html", - "pubDate": "Fri, 19 Jan 2024 01:33:37 +0000", - "dc:creator": "Kenneth Chang", - "content": "The Astrobotic Peregrine spacecraft launched last week for a lunar landing, but a propulsion malfunction left it unable to complete its mission.", - "contentSnippet": "The Astrobotic Peregrine spacecraft launched last week for a lunar landing, but a propulsion malfunction left it unable to complete its mission.", - "guid": "https://www.nytimes.com/2024/01/18/science/moon-lander-peregrine-nasa.html", - "categories": [ - { - "_": "Astrobotic Technology Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Aeronautics and Space Administration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Moon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Private Spaceflight", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rocket Science and Propulsion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2024-01-19T01:33:37.000Z" - }, - { - "creator": "Kenneth Chang", - "title": "SpaceX and Axiom Launch Ax-3 Mission to International Space Station: Video", - "link": "https://www.nytimes.com/2024/01/18/science/axiom-launch-astronauts-spacex.html", - "pubDate": "Fri, 19 Jan 2024 00:19:11 +0000", - "dc:creator": "Kenneth Chang", - "content": "A SpaceX launch to the International Space Station led by the company Axiom Space illustrates how traditional and private space efforts are mixing.", - "contentSnippet": "A SpaceX launch to the International Space Station led by the company Axiom Space illustrates how traditional and private space efforts are mixing.", - "guid": "https://www.nytimes.com/2024/01/18/science/axiom-launch-astronauts-spacex.html", - "categories": [ - { - "_": "Axiom Space Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Space Station", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Private Spaceflight", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Space Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Rocket Science and Propulsion", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Space and Astronomy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Lopez-Alegria, Michael", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Italy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Sweden", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Turkey", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Gezeravci, Alper (1979- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Villadei, Walter (1974- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Wandt, Marcus (1980- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-19T00:19:11.000Z" - }, - { - "creator": "Benjamin Mullin and Katie Robertson", - "title": "Billionaires Wanted to Save the News Industry. They\u2019re Losing a Fortune.", - "link": "https://www.nytimes.com/2024/01/18/business/media/billionaires-news-media-owners.html", - "pubDate": "Thu, 18 Jan 2024 23:50:02 +0000", - "dc:creator": "Benjamin Mullin and Katie Robertson", - "content": "Time magazine, The Washington Post and The Los Angeles Times \u2014 owned by Marc Benioff, Jeff Bezos and Dr. Patrick Soon-Shiong \u2014 are still losing money.", - "contentSnippet": "Time magazine, The Washington Post and The Los Angeles Times \u2014 owned by Marc Benioff, Jeff Bezos and Dr. Patrick Soon-Shiong \u2014 are still losing money.", - "guid": "https://www.nytimes.com/2024/01/18/business/media/billionaires-news-media-owners.html", - "categories": [ - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Newspapers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "High Net Worth Individuals", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Amazon.com Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Los Angeles Times", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Washington Post", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Time (Magazine)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Benioff, Marc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bezos, Jeffrey P", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Soon-Shiong, Patrick", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-18T23:50:02.000Z" - }, - { - "creator": "Tripp Mickle", - "title": "Apple Takes a Humble Approach to Launching Its Newest Device", - "link": "https://www.nytimes.com/2024/01/19/technology/apple-vision-pro-augmented-reality.html", - "pubDate": "Fri, 19 Jan 2024 10:03:30 +0000", - "dc:creator": "Tripp Mickle", - "content": "The Vision Pro augmented reality device goes on sale Friday. Don\u2019t expect Apple to host a splashy event to promote it.", - "contentSnippet": "The Vision Pro augmented reality device goes on sale Friday. Don\u2019t expect Apple to host a splashy event to promote it.", - "guid": "https://www.nytimes.com/2024/01/19/technology/apple-vision-pro-augmented-reality.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wearable Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Augmented Reality (Computers)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Advertising and Marketing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "National Football League", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Cook, Timothy D", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2024-01-19T10:03:30.000Z" - }, - { - "creator": "Kevin Roose, Casey Newton, David Yaffe-Bellany, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Elisheba Ittoop, Marion Lozano, Rowan Niemisto and Dan Powell", - "title": "The A.I. Election, Bitcoin\u2019s Wall Street Debut and TikTok\u2019s Doodad Era", - "link": "https://www.nytimes.com/2024/01/19/podcasts/ai-elections-bitcoin-tiktok.html", - "pubDate": "Fri, 19 Jan 2024 10:02:26 +0000", - "dc:creator": "Kevin Roose, Casey Newton, David Yaffe-Bellany, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Elisheba Ittoop, Marion Lozano, Rowan Niemisto and Dan Powell", - "content": "\u201cTwo truly terrible ways to make money this week.\u201d", - "contentSnippet": "\u201cTwo truly terrible ways to make money this week.\u201d", - "guid": "https://www.nytimes.com/2024/01/19/podcasts/ai-elections-bitcoin-tiktok.html", - "categories": [ - { - "_": "Science and Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Meta", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "YouTube.com", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Exchange Traded Funds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Bitcoin (Currency)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2024-01-19T10:02:26.000Z" - }, - { - "creator": "Steven Lee Myers", - "title": "U.S. Tries New Tack on Russian Disinformation: Pre-Empting It", - "link": "https://www.nytimes.com/2023/10/26/technology/russian-disinformation-us-state-department-campaign.html", - "pubDate": "Fri, 27 Oct 2023 12:21:44 +0000", - "dc:creator": "Steven Lee Myers", - "content": "The State Department\u2019s Global Engagement Center is taking the unusual step of disclosing a covert Russian operation when it is barely off the ground.", - "contentSnippet": "The State Department\u2019s Global Engagement Center is taking the unusual step of disclosing a covert Russian operation when it is barely off the ground.", - "guid": "https://www.nytimes.com/2023/10/26/technology/russian-disinformation-us-state-department-campaign.html", - "categories": [ - { - "_": "United States International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "International Relations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "News and News Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Rumors and Misinformation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "North Atlantic Treaty Organization", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "State Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Rubin, James P", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-27T12:21:44.000Z" - }, - { - "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell and Rowan Niemisto", - "title": "\u2018Hard Fork\u2019: The People vs. Meta + Marques Brownlee on YouTube and Future Tech + DALL-E 3 Arrives", - "link": "https://www.nytimes.com/2023/10/27/podcasts/hardfork-meta-lawsuit-mkbhd-dalle.html", - "pubDate": "Fri, 27 Oct 2023 09:04:45 +0000", - "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell and Rowan Niemisto", - "content": "Dozens of states sue Meta, we get advice from a pro YouTuber and we examine impressive advancements in artificial intelligence image generators.", - "contentSnippet": "Dozens of states sue Meta, we get advice from a pro YouTuber and we examine impressive advancements in artificial intelligence image generators.", - "guid": "https://www.nytimes.com/2023/10/27/podcasts/hardfork-meta-lawsuit-mkbhd-dalle.html", - "categories": [ - { - "_": "Science and Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Meta", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Instagram Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Haugen, Frances", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "YouTube.com", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T09:04:45.000Z" - }, - { - "creator": "Kate Conger", - "title": "How Elon Musk Changed the Meaning of Twitter for Users", - "link": "https://www.nytimes.com/2023/10/27/technology/elon-musk-twitter-year.html", - "pubDate": "Fri, 27 Oct 2023 09:03:26 +0000", - "dc:creator": "Kate Conger", - "content": "Twitter was a deeply personal source of conversation, news and community for many people. One year after Mr. Musk took over, users say that has shifted \u2014 for better and for worse.", - "contentSnippet": "Twitter was a deeply personal source of conversation, news and community for many people. One year after Mr. Musk took over, users say that has shifted \u2014 for better and for worse.", - "guid": "https://www.nytimes.com/2023/10/27/technology/elon-musk-twitter-year.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Twitter", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-27T09:03:26.000Z" - }, - { - "creator": "Jesus Jim\u00e9nez", - "title": "As Users Abandon X, Sports Twitter Endures", - "link": "https://www.nytimes.com/2023/10/27/sports/sports-twitter-x-elon-musk.html", - "pubDate": "Fri, 27 Oct 2023 09:02:29 +0000", - "dc:creator": "Jesus Jim\u00e9nez", - "content": "Many users have migrated to other platforms since Elon Musk bought Twitter, but sports fans still find it indispensable.", - "contentSnippet": "Many users have migrated to other platforms since Elon Musk bought Twitter, but sports fans still find it indispensable.", - "guid": "https://www.nytimes.com/2023/10/27/sports/sports-twitter-x-elon-musk.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Fans (Persons)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Athletics and Sports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Baseball", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Threads (Mobile App)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Twitter", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Bluesky (Social Network)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-27T09:02:29.000Z" - }, - { - "creator": "Yiwen Lu", - "title": "Cruise Stops All Driverless Taxi Operations in the United States", - "link": "https://www.nytimes.com/2023/10/26/technology/cruise-driverless-taxi-united-states.html", - "pubDate": "Fri, 27 Oct 2023 03:27:31 +0000", - "dc:creator": "Yiwen Lu", - "content": "The move comes just two days after California regulators told the company to take its autonomously driven cars off the road.", - "contentSnippet": "The move comes just two days after California regulators told the company to take its autonomously driven cars off the road.", - "guid": "https://www.nytimes.com/2023/10/26/technology/cruise-driverless-taxi-united-states.html", - "categories": [ - { - "_": "Cruise LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Taxicabs and Taxicab Drivers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Driverless and Semiautonomous Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-27T03:27:31.000Z" - }, - { - "creator": "Jack Ewing and Neal E. Boudette", - "title": "Ford\u2019s U.A.W. Deal Will Raise Costs While Easing Labor Strife", - "link": "https://www.nytimes.com/2023/10/26/business/ford-uaw-contract.html", - "pubDate": "Thu, 26 Oct 2023 22:06:38 +0000", - "dc:creator": "Jack Ewing and Neal E. Boudette", - "content": "A tentative agreement gives union members at the carmaker their best terms in decades but could complicate Ford\u2019s electric vehicle plans.", - "contentSnippet": "A tentative agreement gives union members at the carmaker their best terms in decades but could complicate Ford\u2019s electric vehicle plans.", - "guid": "https://www.nytimes.com/2023/10/26/business/ford-uaw-contract.html", - "categories": [ - { - "_": "Ford Motor Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Automobile Workers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Strikes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Organized Labor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Labor and Jobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wages and Salaries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-26T22:06:38.000Z" - }, - { - "creator": "Nico Grant", - "title": "Google Search Boss Says Company Invests to Avoid Becoming \u2018Roadkill\u2019", - "link": "https://www.nytimes.com/2023/10/26/technology/google-prabhakar-raghavan-search-antitrust.html", - "pubDate": "Thu, 26 Oct 2023 21:56:38 +0000", - "dc:creator": "Nico Grant", - "content": "At the start of its antitrust defense, Google attributed its success to relentless investment, countering government claims that it broke the law to stay ahead.", - "contentSnippet": "At the start of its antitrust defense, Google attributed its success to relentless investment, countering government claims that it broke the law to stay ahead.", - "guid": "https://www.nytimes.com/2023/10/26/technology/google-prabhakar-raghavan-search-antitrust.html", - "categories": [ - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Raghavan, Prabhakar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Search Engines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Antitrust Laws and Competition Issues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Justice Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Mehta, Amit P", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-26T21:56:38.000Z" - }, - { - "creator": "Karen Weise", - "title": "Amazon Revenue Jumps as Consumer and Business Spending Improves", - "link": "https://www.nytimes.com/2023/10/26/technology/amazon-quarterly-report.html", - "pubDate": "Thu, 26 Oct 2023 21:30:19 +0000", - "dc:creator": "Karen Weise", - "content": "Investors were closely watching business spending with the company\u2019s cloud computing division, which grew 12 percent in the most recent quarter.", - "contentSnippet": "Investors were closely watching business spending with the company\u2019s cloud computing division, which grew 12 percent in the most recent quarter.", - "guid": "https://www.nytimes.com/2023/10/26/technology/amazon-quarterly-report.html", - "categories": [ - { - "_": "Company Reports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "E-Commerce", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Advertising and Marketing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Amazon.com Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Jassy, Andrew R", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-26T21:30:19.000Z" - }, - { - "creator": "Nico Grant", - "title": "Inside Google\u2019s Plan to Stop Apple From Getting Serious About Search", - "link": "https://www.nytimes.com/2023/10/26/technology/google-apple-search-spotlight.html", - "pubDate": "Thu, 26 Oct 2023 12:14:36 +0000", - "dc:creator": "Nico Grant", - "content": "Google has worried for years that Apple would one day expand its internet search technology, and has been working on ways to prevent that from happening.", - "contentSnippet": "Google has worried for years that Apple would one day expand its internet search technology, and has been working on ways to prevent that from happening.", - "guid": "https://www.nytimes.com/2023/10/26/technology/google-apple-search-spotlight.html", - "categories": [ - { - "_": "Search Engines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Antitrust Laws and Competition Issues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "European Union", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "iPhone", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Android (Operating System)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-26T12:14:36.000Z" - }, - { - "creator": "Mike Isaac", - "title": "Meta Posts 23% Growth as Ads Rebound, With Profit More Than Doubling", - "link": "https://www.nytimes.com/2023/10/25/technology/meta-facebook-quarterly-earnings.html", - "pubDate": "Wed, 25 Oct 2023 22:18:25 +0000", - "dc:creator": "Mike Isaac", - "content": "The internet company\u2019s cost cuts also helped lift its financial performance in the most recent quarter.", - "contentSnippet": "The internet company\u2019s cost cuts also helped lift its financial performance in the most recent quarter.", - "guid": "https://www.nytimes.com/2023/10/25/technology/meta-facebook-quarterly-earnings.html", - "categories": [ - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Company Reports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Online Advertising", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Instagram Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "WhatsApp Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Zuckerberg, Mark E", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-25T22:18:25.000Z" - }, - { - "creator": "Madison Malone Kircher", - "title": "TikTok\u2019s Lip Gloss Trick", - "link": "https://www.nytimes.com/2023/10/24/style/lip-gloss-tiktok.html", - "pubDate": "Wed, 25 Oct 2023 21:32:11 +0000", - "dc:creator": "Madison Malone Kircher", - "content": "The so-called lip gloss overture is just one of many subtle tactics used by social media stars.", - "contentSnippet": "The so-called lip gloss overture is just one of many subtle tactics used by social media stars.", - "guid": "https://www.nytimes.com/2023/10/24/style/lip-gloss-tiktok.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cosmetics and Toiletries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-25T21:32:11.000Z" - }, - { - "creator": "Matt Richtel", - "title": "Is Social Media Addictive? Here\u2019s What the Science Says.", - "link": "https://www.nytimes.com/2023/10/25/health/social-media-addiction.html", - "pubDate": "Wed, 25 Oct 2023 19:44:09 +0000", - "dc:creator": "Matt Richtel", - "content": "A major lawsuit against Meta has placed a spotlight on our fraught relationship with online social information.", - "contentSnippet": "A major lawsuit against Meta has placed a spotlight on our fraught relationship with online social information.", - "guid": "https://www.nytimes.com/2023/10/25/health/social-media-addiction.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Teenagers and Adolescence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mental Health and Disorders", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Addiction (Psychology)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Meta Platforms Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Instagram Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "your-feed-science", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "your-feed-health", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T19:44:09.000Z" - }, - { - "creator": "David Yaffe-Bellany and Matthew Goldstein", - "title": "Sam Bankman-Fried Set to Testify at His Fraud Trial", - "link": "https://www.nytimes.com/2023/10/25/technology/sam-bankman-fried-testify-fraud-trial.html", - "pubDate": "Wed, 25 Oct 2023 17:59:20 +0000", - "dc:creator": "David Yaffe-Bellany and Matthew Goldstein", - "content": "The FTX founder\u2019s plan to take the witness stand sets up a dramatic few days of testimony at the federal courthouse in Manhattan.", - "contentSnippet": "The FTX founder\u2019s plan to take the witness stand sets up a dramatic few days of testimony at the federal courthouse in Manhattan.", - "guid": "https://www.nytimes.com/2023/10/25/technology/sam-bankman-fried-testify-fraud-trial.html", - "categories": [ - { - "_": "Virtual Currency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Frauds and Swindling", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Money Laundering", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Witnesses", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "HK FTX Trading Ltd (Futures Exchange)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bankman-Fried, Sam", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-25T17:59:20.000Z" - }, - { - "creator": "Matthew Goldstein, David Yaffe-Bellany and J. Edward Moreno", - "title": "The Challenges Facing Sam Bankman-Fried\u2019s Lawyers", - "link": "https://www.nytimes.com/2023/10/25/technology/sam-bankman-fried-trial-defense.html", - "pubDate": "Wed, 25 Oct 2023 17:48:52 +0000", - "dc:creator": "Matthew Goldstein, David Yaffe-Bellany and J. Edward Moreno", - "content": "They are set to start their defense on Thursday, with the FTX founder planning to testify in his criminal fraud trial. Hurdles include what Mr. Bankman-Fried\u2019s former associates said on the stand.", - "contentSnippet": "They are set to start their defense on Thursday, with the FTX founder planning to testify in his criminal fraud trial. Hurdles include what Mr. Bankman-Fried\u2019s former associates said on the stand.", - "guid": "https://www.nytimes.com/2023/10/25/technology/sam-bankman-fried-trial-defense.html", - "categories": [ - { - "_": "HK FTX Trading Ltd (Futures Exchange)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bankman-Fried, Sam", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Virtual Currency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alameda Research LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Frauds and Swindling", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Legal Profession", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Banking and Financial Institutions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ellison, Caroline (1994- )", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Singh, Nishad", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Kaplan, Lewis A", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-25T17:48:52.000Z" - }, - { - "creator": "Ali Jaffe Ramis", - "title": "Stop, Before You Close This Tab (or Any Others) \u2026", - "link": "https://www.nytimes.com/2023/10/24/magazine/browser-tabs-forever.html", - "pubDate": "Wed, 25 Oct 2023 16:57:21 +0000", - "dc:creator": "Ali Jaffe Ramis", - "content": "Think of your browser like an ongoing autobiography. Why would you ever delete it?", - "contentSnippet": "Think of your browser like an ongoing autobiography. Why would you ever delete it?", - "guid": "https://www.nytimes.com/2023/10/24/magazine/browser-tabs-forever.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Web Browsers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T16:57:21.000Z" - }, - { - "creator": "Clifford Krauss", - "title": "Chasing Big Mergers, Oil Executives Dismiss Peak Oil Concerns", - "link": "https://www.nytimes.com/2023/10/25/business/energy-environment/exxon-chevron-oil-mergers-peak.html", - "pubDate": "Wed, 25 Oct 2023 15:14:11 +0000", - "dc:creator": "Clifford Krauss", - "content": "Exxon Mobil and Chevron are spending tens of billions of dollars buying oil and gas assets, betting that the International Energy Agency\u2019s predictions of declining oil demand are wrong.", - "contentSnippet": "Exxon Mobil and Chevron are spending tens of billions of dollars buying oil and gas assets, betting that the International Energy Agency\u2019s predictions of declining oil demand are wrong.", - "guid": "https://www.nytimes.com/2023/10/25/business/energy-environment/exxon-chevron-oil-mergers-peak.html", - "categories": [ - { - "_": "Oil (Petroleum) and Gasoline", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Natural Gas", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mergers, Acquisitions and Divestitures", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Alternative and Renewable Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Production", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Global Warming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Greenhouse Gas Emissions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stocks and Bonds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Prices (Fares, Fees and Rates)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Batteries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Solar Energy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Carbon Capture and Sequestration", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Chevron Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Exxon Mobil Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hess Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Pioneer Natural Resources Company", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Energy Agency", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-25T15:14:11.000Z" - }, - { - "creator": "J. D. Biersdorfer", - "title": "How to Use Your Library Card to Check Out E-Books, Audiobooks and More", - "link": "https://www.nytimes.com/2023/10/25/technology/personaltech/library-card-ebooks-apps-libby.html", - "pubDate": "Wed, 25 Oct 2023 09:03:01 +0000", - "dc:creator": "J. D. Biersdorfer", - "content": "With a free library card and the right app, you can check out e-books, audiobooks and more from your local branch.", - "contentSnippet": "With a free library card and the right app, you can check out e-books, audiobooks and more from your local branch.", - "guid": "https://www.nytimes.com/2023/10/25/technology/personaltech/library-card-ebooks-apps-libby.html", - "categories": [ - { - "_": "Books and Literature", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Libraries and Librarians", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Smartphones", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Service", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Archives and Records", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T09:03:01.000Z" - }, - { - "creator": "David McCabe, Cecilia Kang and Steve Lohr", - "title": "What the U.S. Has Argued in the Google Antitrust Trial", - "link": "https://www.nytimes.com/2023/10/25/technology/google-antitrust-trial.html", - "pubDate": "Wed, 25 Oct 2023 09:02:30 +0000", - "dc:creator": "David McCabe, Cecilia Kang and Steve Lohr", - "content": "As the government wraps up its case in the landmark monopoly trial, it has built a picture of how Google became dominant in online search \u2014 and the harms that it says resulted.", - "contentSnippet": "As the government wraps up its case in the landmark monopoly trial, it has built a picture of how Google became dominant in online search \u2014 and the harms that it says resulted.", - "guid": "https://www.nytimes.com/2023/10/25/technology/google-antitrust-trial.html", - "categories": [ - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Search Engines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Antitrust Laws and Competition Issues", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "States (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Attorneys General", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Web Browsers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Online Advertising", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "DuckDuckGo", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Expedia Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Apple Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Justice Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "VRBO.com", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-25T09:02:30.000Z" - }, - { - "creator": "Nico Grant", - "title": "Alphabet Has Strong Ad Sales but Cloud Business Disappoints", - "link": "https://www.nytimes.com/2023/10/24/technology/alphabet-google-earnings.html", - "pubDate": "Wed, 25 Oct 2023 01:29:48 +0000", - "dc:creator": "Nico Grant", - "content": "Google\u2019s parent company reported that sales were up 11 percent from a year ago while profit jumped 42 percent to $19.7 billion.", - "contentSnippet": "Google\u2019s parent company reported that sales were up 11 percent from a year ago while profit jumped 42 percent to $19.7 billion.", - "guid": "https://www.nytimes.com/2023/10/24/technology/alphabet-google-earnings.html", - "categories": [ - { - "_": "Google Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Alphabet Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Company Reports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Search Engines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cloud Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "YouTube.com", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Pichai, Sundar", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Online Advertising", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-25T01:29:48.000Z" - }, - { - "creator": "Yiwen Lu and Cade Metz", - "title": "Cruise\u2019s Driverless Taxi Service in San Francisco Is Suspended", - "link": "https://www.nytimes.com/2023/10/24/technology/cruise-driverless-san-francisco-suspended.html", - "pubDate": "Wed, 25 Oct 2023 01:24:47 +0000", - "dc:creator": "Yiwen Lu and Cade Metz", - "content": "California\u2019s Department of Motor Vehicles cited safety concerns for the suspension, about three months after the state allowed an expansion.", - "contentSnippet": "California\u2019s Department of Motor Vehicles cited safety concerns for the suspension, about three months after the state allowed an expansion.", - "guid": "https://www.nytimes.com/2023/10/24/technology/cruise-driverless-san-francisco-suspended.html", - "categories": [ - { - "_": "Cruise LLC", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Driverless and Semiautonomous Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Regulation and Deregulation of Industry", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Department of Motor Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "California", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "San Francisco (Calif)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-25T01:24:47.000Z" - }, - { - "creator": "Cecilia Kang and Natasha Singer", - "title": "Meta Sued Over Features That Hook Children to Instagram, Facebook", - "link": "https://www.nytimes.com/2023/10/24/technology/states-lawsuit-children-instagram-facebook.html", - "pubDate": "Tue, 24 Oct 2023 23:30:23 +0000", - "dc:creator": "Cecilia Kang and Natasha Singer", - "content": "More than three dozen states and the District of Columbia accused the tech giant of knowingly using addictive features to draw in and retain children and teenagers.", - "contentSnippet": "More than three dozen states and the District of Columbia accused the tech giant of knowingly using addictive features to draw in and retain children and teenagers.", - "guid": "https://www.nytimes.com/2023/10/24/technology/states-lawsuit-children-instagram-facebook.html", - "categories": [ - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "States (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Meta", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Facebook Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Instagram Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Children and Childhood", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Teenagers and Adolescence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Mobile Applications", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Consumer Protection", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-24T23:30:23.000Z" - }, - { - "creator": "Karen Weise", - "title": "Microsoft\u2019s A.I. Investment Stabilizes Its Cloud Business", - "link": "https://www.nytimes.com/2023/10/24/technology/microsoft-quarterly-results.html", - "pubDate": "Tue, 24 Oct 2023 22:57:19 +0000", - "dc:creator": "Karen Weise", - "content": "Revenue increased 13 percent in the latest quarter compared with a year earlier. Profit rose 27 percent.", - "contentSnippet": "Revenue increased 13 percent in the latest quarter compared with a year earlier. Profit rose 27 percent.", - "guid": "https://www.nytimes.com/2023/10/24/technology/microsoft-quarterly-results.html", - "categories": [ - { - "_": "Company Reports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cloud Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Enterprise Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Microsoft Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-24T22:57:19.000Z" - }, - { - "creator": "Yiwen Lu", - "title": "Snap Revenue Rises 5%, Reversing Declines", - "link": "https://www.nytimes.com/2023/10/24/technology/snap-earnings-rise.html", - "pubDate": "Tue, 24 Oct 2023 20:12:13 +0000", - "dc:creator": "Yiwen Lu", - "content": "The social media company posted rising sales after two quarters of declines, but added that the ad market remains unpredictable.", - "contentSnippet": "The social media company posted rising sales after two quarters of declines, but added that the ad market remains unpredictable.", - "guid": "https://www.nytimes.com/2023/10/24/technology/snap-earnings-rise.html", - "categories": [ - { - "_": "Snap Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Company Reports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Advertising and Marketing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Layoffs and Job Reductions", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Spiegel, Evan", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - } - ], - "isoDate": "2023-10-24T20:12:13.000Z" - }, - { - "creator": "Jack Ewing", - "title": "Federal Investigators Widen Tesla Inquiry, Company Says", - "link": "https://www.nytimes.com/2023/10/23/business/tesla-justice-department-investigations.html", - "pubDate": "Mon, 23 Oct 2023 20:00:59 +0000", - "dc:creator": "Jack Ewing", - "content": "The Department of Justice has sought documents related to vehicle range and \u201cpersonal benefits,\u201d Tesla said.", - "contentSnippet": "The Department of Justice has sought documents related to vehicle range and \u201cpersonal benefits,\u201d Tesla said.", - "guid": "https://www.nytimes.com/2023/10/23/business/tesla-justice-department-investigations.html", - "categories": [ - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ethics and Official Misconduct", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Traffic Accidents and Safety", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Company Reports", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Stocks and Bonds", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Corporations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Driverless and Semiautonomous Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Securities and Commodities Violations", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Justice Department", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Securities and Exchange Commission", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Musk, Elon", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Austin (Tex)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-23T20:00:59.000Z" - }, - { - "creator": "Kashmir Hill", - "title": "Face Search Engine PimEyes Blocks Searches of Children\u2019s Faces", - "link": "https://www.nytimes.com/2023/10/23/technology/pimeyes-blocks-searches-childrens-faces.html", - "pubDate": "Mon, 23 Oct 2023 17:53:40 +0000", - "dc:creator": "Kashmir Hill", - "content": "The change came in response to worries that the service could be used nefariously by a stranger.", - "contentSnippet": "The change came in response to worries that the service could be used nefariously by a stranger.", - "guid": "https://www.nytimes.com/2023/10/23/technology/pimeyes-blocks-searches-childrens-faces.html", - "categories": [ - { - "_": "Facial Recognition Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Photography", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Search Engines", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Children and Childhood", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "PimEyes (Web Site)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Gobronidze, Giorgi", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-23T17:53:40.000Z" - }, - { - "creator": "Jack Ewing", - "title": "Nonunion Workers Are Playing a Big Role in the Autoworkers\u2019 Strike", - "link": "https://www.nytimes.com/2023/10/23/business/union-nonunion-autoworkers-uaw.html", - "pubDate": "Mon, 23 Oct 2023 14:27:34 +0000", - "dc:creator": "Jack Ewing", - "content": "The three U.S. automakers say they are already at a disadvantage to nonunion rivals while labor leaders hope that big gains in negotiations will inspire workers in Southern states to unionize.", - "contentSnippet": "The three U.S. automakers say they are already at a disadvantage to nonunion rivals while labor leaders hope that big gains in negotiations will inspire workers in Southern states to unionize.", - "guid": "https://www.nytimes.com/2023/10/23/business/union-nonunion-autoworkers-uaw.html", - "categories": [ - { - "_": "Automobiles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Wages and Salaries", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Factories and Manufacturing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Organized Labor", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Electric and Hybrid Vehicles", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Income Inequality", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Strikes", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Labor and Jobs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "States (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Ford Motor Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "General Motors", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Honda Motor Co Ltd", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Bayerische Motorenwerke AG", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Hyundai Motor Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Mercedes-Benz", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "United Automobile Workers", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Nissan Motor Co", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Toyota Motor Corp", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Tesla Motors Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Volkswagen AG", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Midwestern States (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Southern States (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - } - ], - "isoDate": "2023-10-23T14:27:34.000Z" - }, - { - "creator": "Richard Sandomir", - "title": "Martin Goetz, Who Received the First Software Patent, Dies at 93", - "link": "https://www.nytimes.com/2023/10/21/technology/martin-goetz-dead.html", - "pubDate": "Sun, 22 Oct 2023 18:42:03 +0000", - "dc:creator": "Richard Sandomir", - "content": "\u201cI knew at some point in time the patent office would recognize\u201d computer software, he said. It happened in 1968, helping to ignite the software market.", - "contentSnippet": "\u201cI knew at some point in time the patent office would recognize\u201d computer software, he said. It happened in 1968, helping to ignite the software market.", - "guid": "https://www.nytimes.com/2023/10/21/technology/martin-goetz-dead.html", - "categories": [ - { - "_": "Goetz, Martin A", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Deaths (Obituaries)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Inventions and Patents", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Software", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Suits and Litigation (Civil)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Innovation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Applied Data Research Inc", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "International Business Machines Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-22T18:42:03.000Z" - }, - { - "creator": "Zach Montague", - "title": "The Race to Avert Quantum Computing Threat With New Encryption Standards", - "link": "https://www.nytimes.com/2023/10/22/us/politics/quantum-computing-encryption.html", - "pubDate": "Sun, 22 Oct 2023 09:00:40 +0000", - "dc:creator": "Zach Montague", - "content": "Quantum technology could compromise our encryption systems. Can America replace them before it\u2019s too late?", - "contentSnippet": "Quantum technology could compromise our encryption systems. Can America replace them before it\u2019s too late?", - "guid": "https://www.nytimes.com/2023/10/22/us/politics/quantum-computing-encryption.html", - "categories": [ - { - "_": "Quantum Computing", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computer Security", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "National Institute of Standards and Technology", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Mathematics", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Privacy", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Innovation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "China", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Russia", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "United States", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" - } - }, - { - "_": "Espionage and Intelligence Services", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Defense and Military Forces", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Infrastructure (Public Works)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-22T09:00:40.000Z" - }, - { - "creator": "Erin Griffith and Sapna Maheshwari", - "title": "Cameo to the Moon, and Back", - "link": "https://www.nytimes.com/2023/10/20/technology/cameo-to-the-moon-and-back.html", - "pubDate": "Fri, 20 Oct 2023 23:42:39 +0000", - "dc:creator": "Erin Griffith and Sapna Maheshwari", - "content": "A start-up that offers fans a way to buy personalized videos from celebrities was supercharged by pandemic boredom and venture capital. All it had to do was grow forever.", - "contentSnippet": "A start-up that offers fans a way to buy personalized videos from celebrities was supercharged by pandemic boredom and venture capital. All it had to do was grow forever.", - "guid": "https://www.nytimes.com/2023/10/20/technology/cameo-to-the-moon-and-back.html", - "categories": [ - { - "_": "internal-great-read", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "internal-sub-only", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Celebrities", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Venture Capital", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Quarantine (Life and Culture)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Cameo (Mobile App)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Galanis, Steven", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "SOFTBANK Corporation", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-20T23:42:39.000Z" - }, - { - "creator": "Adam Liptak", - "title": "Supreme Court Pauses Ruling Blocking Biden Administration\u2019s Contacts With Tech Platforms", - "link": "https://www.nytimes.com/2023/10/20/us/supreme-court-social-media-biden.html", - "pubDate": "Fri, 20 Oct 2023 21:59:35 +0000", - "dc:creator": "Adam Liptak", - "content": "The court also agreed to hear the administration\u2019s appeal, paving the way for a major ruling on how far government can go to encourage sites to delete asserted misinformation.", - "contentSnippet": "The court also agreed to hear the administration\u2019s appeal, paving the way for a major ruling on how far government can go to encourage sites to delete asserted misinformation.", - "guid": "https://www.nytimes.com/2023/10/20/us/supreme-court-social-media-biden.html", - "categories": [ - { - "_": "Supreme Court (US)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Decisions and Verdicts", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Freedom of Speech and Expression", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "First Amendment (US Constitution)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Censorship", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "United States Politics and Government", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-20T21:59:35.000Z" - }, - { - "creator": "Cade Metz", - "title": "OpenAI in Talks for Deal That Would Value Company at $80 Billion", - "link": "https://www.nytimes.com/2023/10/20/technology/openai-artifical-intelligence-value.html", - "pubDate": "Fri, 20 Oct 2023 20:05:33 +0000", - "dc:creator": "Cade Metz", - "content": "The San Francisco start-up\u2019s valuation could triple in less than six months.", - "contentSnippet": "The San Francisco start-up\u2019s valuation could triple in less than six months.", - "guid": "https://www.nytimes.com/2023/10/20/technology/openai-artifical-intelligence-value.html", - "categories": [ - { - "_": "Venture Capital", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Start-ups", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Computers and the Internet", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Artificial Intelligence", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "ChatGPT", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "OpenAI Labs", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Thrive Capital", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - } - ], - "isoDate": "2023-10-20T20:05:33.000Z" - }, - { - "creator": "Maya Salam", - "title": "Martin and Francesca Scorsese, TikTok\u2019s Dynamic Duo", - "link": "https://www.nytimes.com/2023/10/27/movies/martin-scorsese-tiktok-francesca.html", - "pubDate": "Fri, 27 Oct 2023 14:57:01 +0000", - "dc:creator": "Maya Salam", - "content": "The acclaimed director\u2019s daughter, a filmmaker herself, has been peppering her feed with videos of her father, showing a rarely seen side of him.", - "contentSnippet": "The acclaimed director\u2019s daughter, a filmmaker herself, has been peppering her feed with videos of her father, showing a rarely seen side of him.", - "guid": "https://www.nytimes.com/2023/10/27/movies/martin-scorsese-tiktok-francesca.html", - "categories": [ - { - "_": "Social Media", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Video Recordings, Downloads and Streaming", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "Movies", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - }, - { - "_": "TikTok (ByteDance)", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" - } - }, - { - "_": "Scorsese, Martin", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Francesca Scorsese", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" - } - }, - { - "_": "Content Type: Personal Profile", - "$": { - "domain": "http://www.nytimes.com/namespaces/keywords/des" - } - } - ], - "isoDate": "2023-10-27T14:57:01.000Z" - } -] \ No newline at end of file + { + "creator": "Jack Ewing", + "title": "Tesla Begins Delivery of the Cybertruck Today", + "link": "https://www.nytimes.com/2023/11/30/business/tesla-cybertruck-delivery-release.html", + "pubDate": "Thu, 30 Nov 2023 22:06:22 +0000", + "dc:creator": "Jack Ewing", + "content": "Two years behind schedule, the electric model has an unusual design that sets it apart from rival pickups, which could limit its sales.", + "contentSnippet": "Two years behind schedule, the electric model has an unusual design that sets it apart from rival pickups, which could limit its sales.", + "guid": "https://www.nytimes.com/2023/11/30/business/tesla-cybertruck-delivery-release.html", + "categories": [ + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sports Utility Vehicles and Light Trucks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cybertruck", + "$": { + "domain": "" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ford Motor Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-11-30T22:06:22.000Z" + }, + { + "creator": "Kate Conger and Tiffany Hsu", + "title": "Advertisers Say They Do Not Plan to Return to X After Musk\u2019s Comments", + "link": "https://www.nytimes.com/2023/11/30/technology/elon-musk-dealbook-advertisers.html", + "pubDate": "Thu, 30 Nov 2023 21:53:27 +0000", + "dc:creator": "Kate Conger and Tiffany Hsu", + "content": "Elon Musk, the owner of X, criticized advertisers with expletives on Wednesday at The New York Times\u2019s DealBook Summit.", + "contentSnippet": "Elon Musk, the owner of X, criticized advertisers with expletives on Wednesday at The New York Times\u2019s DealBook Summit.", + "guid": "https://www.nytimes.com/2023/11/30/technology/elon-musk-dealbook-advertisers.html", + "categories": [ + { + "_": "Advertising and Marketing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Indecency, Obscenity and Profanity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Anti-Semitism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Online Advertising", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Twitter", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Yaccarino, Linda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-30T21:53:27.000Z" + }, + { + "creator": "Steven Lee Myers", + "title": "4,789 Facebook Accounts in China Impersonated Americans, Meta Says", + "link": "https://www.nytimes.com/2023/11/30/technology/facebook-china-fake.html", + "pubDate": "Thu, 30 Nov 2023 21:42:03 +0000", + "dc:creator": "Steven Lee Myers", + "content": "The company warned that the inauthentic accounts underscored the threat of foreign election interference in 2024.", + "contentSnippet": "The company warned that the inauthentic accounts underscored the threat of foreign election interference in 2024.", + "guid": "https://www.nytimes.com/2023/11/30/technology/facebook-china-fake.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Presidential Election of 2024", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conspiracy Theories", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-30T21:42:03.000Z" + }, + { + "creator": "Tiffany Hsu and Steven Lee Myers", + "title": "Disinformation Is Big Challenge as COP28 Opens in Dubai", + "link": "https://www.nytimes.com/2023/11/30/technology/cop28-climate-disinformation.html", + "pubDate": "Thu, 30 Nov 2023 14:13:10 +0000", + "dc:creator": "Tiffany Hsu and Steven Lee Myers", + "content": "Online influencers, fossil fuel companies and some of the countries attending COP28 have nourished a feedback loop of falsehoods.", + "contentSnippet": "Online influencers, fossil fuel companies and some of the countries attending COP28 have nourished a feedback loop of falsehoods.", + "guid": "https://www.nytimes.com/2023/11/30/technology/cop28-climate-disinformation.html", + "categories": [ + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Propaganda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "China National Petroleum Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Institute for Strategic Dialogue", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Nations Framework Convention on Climate Change", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-30T14:13:10.000Z" + }, + { + "creator": "Steve Lohr", + "title": "Big Companies Find a Way to Identify A.I. Data They Can Trust", + "link": "https://www.nytimes.com/2023/11/30/business/ai-data-standards.html", + "pubDate": "Thu, 30 Nov 2023 11:00:13 +0000", + "dc:creator": "Steve Lohr", + "content": "Mainstream companies have concerns about the lineage of the data that powers A.I. applications. An industry group is addressing that challenge.", + "contentSnippet": "Mainstream companies have concerns about the lineage of the data that powers A.I. applications. An industry group is addressing that challenge.", + "guid": "https://www.nytimes.com/2023/11/30/business/ai-data-standards.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Enterprise Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Business Machines Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-11-30T11:00:13.000Z" + }, + { + "creator": "Cade Metz and Tripp Mickle", + "title": "Back at OpenAI, Sam Altman Outlines the Company\u2019s Priorities", + "link": "https://www.nytimes.com/2023/11/29/technology/openai-sam-altman-plans.html", + "pubDate": "Thu, 30 Nov 2023 02:24:44 +0000", + "dc:creator": "Cade Metz and Tripp Mickle", + "content": "In a blog post, Mr. Altman said he would focus on improving products and building a new board, which added Microsoft as a nonvoting member.", + "contentSnippet": "In a blog post, Mr. Altman said he would focus on improving products and building a new board, which added Microsoft as a nonvoting member.", + "guid": "https://www.nytimes.com/2023/11/29/technology/openai-sam-altman-plans.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nonprofit Organizations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Appointments and Executive Changes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Venture Capital", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Boards of Directors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Brockman, Greg", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sutskever, Ilya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-30T02:24:44.000Z" + }, + { + "creator": "Neal E. Boudette and Yiwen Lu", + "title": "G.M. to Cut Spending on Cruise Self-Driving Unit", + "link": "https://www.nytimes.com/2023/11/29/technology/cruise-general-motors.html", + "pubDate": "Wed, 29 Nov 2023 21:05:31 +0000", + "dc:creator": "Neal E. Boudette and Yiwen Lu", + "content": "General Motors will \u201csubstantially lower spending\u201d on autonomous vehicle efforts in 2024 after accidents with its self-driving taxis in San Francisco.", + "contentSnippet": "General Motors will \u201csubstantially lower spending\u201d on autonomous vehicle efforts in 2024 after accidents with its self-driving taxis in San Francisco.", + "guid": "https://www.nytimes.com/2023/11/29/technology/cruise-general-motors.html", + "categories": [ + { + "_": "General Motors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Cruise LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Driverless and Semiautonomous Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Taxicabs and Taxicab Drivers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Barra, Mary T", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "San Francisco (Calif)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T21:05:31.000Z" + }, + { + "creator": "Isabella Kwai", + "title": "London\u2019s Black Cabs Can Soon Join Uber. But Will They?", + "link": "https://www.nytimes.com/2023/11/29/world/europe/uber-black-cab-taxi-london.html", + "pubDate": "Wed, 29 Nov 2023 18:59:25 +0000", + "dc:creator": "Isabella Kwai", + "content": "In 2024, passengers are set to have the option to book black cabs through Uber. After longstanding tensions, a union for drivers said they \u201chave no interest.\u201d", + "contentSnippet": "In 2024, passengers are set to have the option to book black cabs through Uber. After longstanding tensions, a union for drivers said they \u201chave no interest.\u201d", + "guid": "https://www.nytimes.com/2023/11/29/world/europe/uber-black-cab-taxi-london.html", + "categories": [ + { + "_": "Taxicabs and Taxicab Drivers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Uber Technologies Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "London (England)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-29T18:59:25.000Z" + }, + { + "creator": "Jesus Jim\u00e9nez", + "title": "Don\u2019t Be Afraid of the iPhone\u2019s NameDrop Feature, Experts Say", + "link": "https://www.nytimes.com/2023/11/29/technology/namedrop-apple-iphone-police.html", + "pubDate": "Wed, 29 Nov 2023 17:58:22 +0000", + "dc:creator": "Jesus Jim\u00e9nez", + "content": "Police departments have issued warnings about a new Apple setting that lets users exchange contact information by bringing their devices together. Tech experts say the fears are overblown.", + "contentSnippet": "Police departments have issued warnings about a new Apple setting that lets users exchange contact information by bringing their devices together. Tech experts say the fears are overblown.", + "guid": "https://www.nytimes.com/2023/11/29/technology/namedrop-apple-iphone-police.html", + "categories": [ + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Police", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "iPhone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Watches and Clocks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wearable Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wireless Communications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T17:58:22.000Z" + }, + { + "creator": "Kashmir Hill", + "title": "How Your Child\u2019s Online Mistake Can Ruin Your Digital Life", + "link": "https://www.nytimes.com/2023/11/27/technology/google-youtube-abuse-mistake.html", + "pubDate": "Wed, 29 Nov 2023 17:52:24 +0000", + "dc:creator": "Kashmir Hill", + "content": "Google has a zero-tolerance policy for child abuse content. The scanning process can sometimes go awry and tar innocent individuals as abusers.", + "contentSnippet": "Google has a zero-tolerance policy for child abuse content. The scanning process can sometimes go awry and tar innocent individuals as abusers.", + "guid": "https://www.nytimes.com/2023/11/27/technology/google-youtube-abuse-mistake.html", + "categories": [ + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "YouTube.com", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Child Abuse and Neglect", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Children and Childhood", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "National Center for Missing and Exploited Children", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Child Pornography", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Parenting", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "audio-neutral-informative", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T17:52:24.000Z" + }, + { + "creator": "Ana Swanson and Jack Ewing", + "title": "U.S. Debates How Much to Sever Electric Car Industry\u2019s Ties to China", + "link": "https://www.nytimes.com/2023/11/29/business/economy/electric-car-china-supply-chain.html", + "pubDate": "Wed, 29 Nov 2023 17:49:54 +0000", + "dc:creator": "Ana Swanson and Jack Ewing", + "content": "Some firms argue that a law aimed at popularizing electric vehicles risks turning the United States into an assembly shop for Chinese-made technology.", + "contentSnippet": "Some firms argue that a law aimed at popularizing electric vehicles risks turning the United States into an assembly shop for Chinese-made technology.", + "guid": "https://www.nytimes.com/2023/11/29/business/economy/electric-car-china-supply-chain.html", + "categories": [ + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supply Chain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "International Trade and World Market", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Batteries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Chemicals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tax Credits, Deductions and Exemptions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Economy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Metals and Minerals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Huntsman, Peter R (1963- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Huntsman Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-11-29T17:49:54.000Z" + }, + { + "creator": "Brian X. Chen", + "title": "Apple Is Doing Its Part to End Green Bubble Shaming. It\u2019s Our Turn.", + "link": "https://www.nytimes.com/2023/11/29/technology/personaltech/apple-iphone-android-bubbles.html", + "pubDate": "Wed, 29 Nov 2023 14:00:10 +0000", + "dc:creator": "Brian X. Chen", + "content": "While texting technology will soon get better, the \u201cblue versus green bubble\u201d disparity is far from over.", + "contentSnippet": "While texting technology will soon get better, the \u201cblue versus green bubble\u201d disparity is far from over.", + "guid": "https://www.nytimes.com/2023/11/29/technology/personaltech/apple-iphone-android-bubbles.html", + "categories": [ + { + "_": "Smartphones", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Text Messaging", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Instant Messaging", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "iPhone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Android (Operating System)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T14:00:10.000Z" + }, + { + "creator": "Victor Mather", + "title": "Make Sure Your Google Accounts Are Active, or They Might Be Deleted", + "link": "https://www.nytimes.com/2023/11/28/technology/gmail-delete-accounts.html", + "pubDate": "Wed, 29 Nov 2023 12:05:29 +0000", + "dc:creator": "Victor Mather", + "content": "The company says it will start purging accounts, including services like Gmail and YouTube, that have been idle for two years or more.", + "contentSnippet": "The company says it will start purging accounts, including services like Gmail and YouTube, that have been idle for two years or more.", + "guid": "https://www.nytimes.com/2023/11/28/technology/gmail-delete-accounts.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "E-Mail", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-29T12:05:29.000Z" + }, + { + "creator": "Santul Nerkar and Kevin Draper", + "title": "For Sports Illustrated, Report About Fake Authors Is Latest Stumble", + "link": "https://www.nytimes.com/2023/11/28/business/sports-illustrated-artifical-intelligence.html", + "pubDate": "Tue, 28 Nov 2023 21:07:28 +0000", + "dc:creator": "Santul Nerkar and Kevin Draper", + "content": "The venerable magazine has experienced management upheaval and staff complaints in recent years. Now there\u2019s a question over who wrote product reviews on its site.", + "contentSnippet": "The venerable magazine has experienced management upheaval and staff complaints in recent years. Now there\u2019s a question over who wrote product reviews on its site.", + "guid": "https://www.nytimes.com/2023/11/28/business/sports-illustrated-artifical-intelligence.html", + "categories": [ + { + "_": "Sports Illustrated", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Authentic Brands Group", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "TheMaven Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Magazines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-28T21:07:28.000Z" + }, + { + "creator": "Karen Weise", + "title": "Amazon Introduces Q, an A.I. Chatbot for Companies", + "link": "https://www.nytimes.com/2023/11/28/technology/amazon-ai-chatbot-q.html", + "pubDate": "Tue, 28 Nov 2023 19:10:07 +0000", + "dc:creator": "Karen Weise", + "content": "Amazon has been racing to shake off the perception that it is lagging in the push to take advantage of artificial intelligence.", + "contentSnippet": "Amazon has been racing to shake off the perception that it is lagging in the push to take advantage of artificial intelligence.", + "guid": "https://www.nytimes.com/2023/11/28/technology/amazon-ai-chatbot-q.html", + "categories": [ + { + "_": "Amazon.com Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cloud Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-28T19:10:07.000Z" + }, + { + "creator": "Mark Mazzetti and Edward Wong", + "title": "Warnings Emerge Over Emirati A.I. Firm G42\u2019s Ties to China", + "link": "https://www.nytimes.com/2023/11/27/us/politics/ai-us-uae-china-security-g42.html", + "pubDate": "Tue, 28 Nov 2023 08:09:04 +0000", + "dc:creator": "Mark Mazzetti and Edward Wong", + "content": "American spy agencies have warned about the Emirati firm G42 and its work with large Chinese companies that U.S. officials consider security threats.", + "contentSnippet": "American spy agencies have warned about the Emirati firm G42 and its work with large Chinese companies that U.S. officials consider security threats.", + "guid": "https://www.nytimes.com/2023/11/27/us/politics/ai-us-uae-china-security-g42.html", + "categories": [ + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Surveillance of Citizens by Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Group 42 (G42)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Huawei Technologies Co Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Central Intelligence Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Arab Emirates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-28T08:09:04.000Z" + }, + { + "creator": "Ryan Mac and Kate Conger", + "title": "X May Lose Up to $75 Million in Revenue as More Advertisers Pull Out", + "link": "https://www.nytimes.com/2023/11/24/business/x-elon-musk-advertisers.html", + "pubDate": "Sun, 26 Nov 2023 22:54:29 +0000", + "dc:creator": "Ryan Mac and Kate Conger", + "content": "Internal documents show companies like Airbnb, Coca-Cola and Microsoft have halted ads, or may do so, after Elon Musk\u2019s endorsement of an antisemitic conspiracy theory.", + "contentSnippet": "Internal documents show companies like Airbnb, Coca-Cola and Microsoft have halted ads, or may do so, after Elon Musk\u2019s endorsement of an antisemitic conspiracy theory.", + "guid": "https://www.nytimes.com/2023/11/24/business/x-elon-musk-advertisers.html", + "categories": [ + { + "_": "Twitter", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Online Advertising", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Company Reports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Yaccarino, Linda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Anti-Semitism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-26T22:54:29.000Z" + }, + { + "creator": "Natasha Singer", + "title": "At Meta, Millions of Underage Users Were an \u2018Open Secret,\u2019 States Say", + "link": "https://www.nytimes.com/2023/11/25/technology/instagram-meta-children-privacy.html", + "pubDate": "Sun, 26 Nov 2023 00:16:19 +0000", + "dc:creator": "Natasha Singer", + "content": "Meta \u201croutinely documented\u201d children under 13 on Instagram and collected their data, according to a newly unsealed complaint.", + "contentSnippet": "Meta \u201croutinely documented\u201d children under 13 on Instagram and collected their data, according to a newly unsealed complaint.", + "guid": "https://www.nytimes.com/2023/11/25/technology/instagram-meta-children-privacy.html", + "categories": [ + { + "_": "Meta", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Instagram Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Children and Childhood", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Children's Online Privacy Protection Act", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "States (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "childrens privacy", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-11-26T00:16:19.000Z" + }, + { + "creator": "Eric Lipton", + "title": "\u00bfCu\u00e1les son los riesgos del armamento que funciona con IA?", + "link": "https://www.nytimes.com/es/2023/11/24/espanol/inteligencia-artificial-riesgos-armas.html", + "pubDate": "Fri, 24 Nov 2023 08:00:33 +0000", + "dc:creator": "Eric Lipton", + "content": "Las preocupaciones por las armas capaces de matar sin intervenci\u00f3n humana no son totalmente nuevas.", + "contentSnippet": "Las preocupaciones por las armas capaces de matar sin intervenci\u00f3n humana no son totalmente nuevas.", + "guid": "https://www.nytimes.com/es/2023/11/24/espanol/inteligencia-artificial-riesgos-armas.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense Contracts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Drones (Pilotless Planes)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Palantir Technologies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Scharre, Paul", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Mines, Explosive", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United Nations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-11-24T08:00:33.000Z" + }, + { + "creator": "Cade Metz, Tripp Mickle, Mike Isaac, Karen Weise and Kevin Roose", + "title": "Five Days of Chaos: How Sam Altman Returned to OpenAI", + "link": "https://www.nytimes.com/2023/11/22/technology/how-sam-altman-returned-openai.html", + "pubDate": "Wed, 22 Nov 2023 23:33:55 +0000", + "dc:creator": "Cade Metz, Tripp Mickle, Mike Isaac, Karen Weise and Kevin Roose", + "content": "On Friday, Mr. Altman was pushed out of the hot A.I. start-up he ran. But an intense pressure campaign and negotiations brought him back.", + "contentSnippet": "On Friday, Mr. Altman was pushed out of the hot A.I. start-up he ran. But an intense pressure campaign and negotiations brought him back.", + "guid": "https://www.nytimes.com/2023/11/22/technology/how-sam-altman-returned-openai.html", + "categories": [ + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Brockman, Greg", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Appointments and Executive Changes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Boards of Directors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-11-22T23:33:55.000Z" + }, + { + "creator": "Sapna Maheshwari", + "title": "Judge Halts TikTok Ban in Montana", + "link": "https://www.nytimes.com/2023/11/30/business/tiktok-montana-ban-blocked.html", + "pubDate": "Fri, 01 Dec 2023 00:39:28 +0000", + "dc:creator": "Sapna Maheshwari", + "content": "TikTok, which is owned by the Chinese company ByteDance, has been locked in a legal battle with Montana since the state passed the ban in April.", + "contentSnippet": "TikTok, which is owned by the Chinese company ByteDance, has been locked in a legal battle with Montana since the state passed the ban in April.", + "guid": "https://www.nytimes.com/2023/11/30/business/tiktok-montana-ban-blocked.html", + "categories": [ + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Beijing Bytedance Technology Co Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Montana", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Molloy, Donald W", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Knudsen, Austin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freedom of Speech and Expression", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Data-Mining and Database Marketing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "First Amendment (US Constitution)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-01T00:39:28.000Z" + }, + { + "creator": "Adam Satariano, Megan Specia and Glenn Thrush", + "title": "UK Accuses Russia of Yearslong Cyberattacks", + "link": "https://www.nytimes.com/2023/12/07/world/europe/uk-russia-cyberattacks.html", + "pubDate": "Fri, 08 Dec 2023 08:13:40 +0000", + "dc:creator": "Adam Satariano, Megan Specia and Glenn Thrush", + "content": "The government said a group linked to Russia\u2019s intelligence service carried out sustained operations to undermine trust in Britain\u2019s political system.", + "contentSnippet": "The government said a group linked to Russia\u2019s intelligence service carried out sustained operations to undermine trust in Britain\u2019s political system.", + "guid": "https://www.nytimes.com/2023/12/07/world/europe/uk-russia-cyberattacks.html", + "categories": [ + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cyberwarfare and Defense", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Great Britain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Cameron, David", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Federal Security Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-08T08:13:40.000Z" + }, + { + "creator": "David Yaffe-Bellany", + "title": "Binance Founder Ordered to Remain in U.S. Before Sentencing", + "link": "https://www.nytimes.com/2023/12/08/technology/cz-changpeng-zhao-binance-release.html", + "pubDate": "Fri, 08 Dec 2023 05:14:53 +0000", + "dc:creator": "David Yaffe-Bellany", + "content": "Changpeng Zhao, better known as CZ, faces as much as 18 months in prison after he pleaded guilty to federal money-laundering violations.", + "contentSnippet": "Changpeng Zhao, better known as CZ, faces as much as 18 months in prison after he pleaded guilty to federal money-laundering violations.", + "guid": "https://www.nytimes.com/2023/12/08/technology/cz-changpeng-zhao-binance-release.html", + "categories": [ + { + "_": "Virtual Currency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Money Laundering", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prisons and Prisoners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Binance", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Zhao, Changpeng", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-08T05:14:53.000Z" + }, + { + "creator": "Ana Swanson", + "title": "Lawmakers Press Biden Administration for Tougher Curbs on China Tech", + "link": "https://www.nytimes.com/2023/12/07/us/politics/lawmakers-biden-china-tech.html", + "pubDate": "Thu, 07 Dec 2023 23:57:02 +0000", + "dc:creator": "Ana Swanson", + "content": "Republican legislators argue that the Biden administration has been ill-equipped and unmotivated in a technology fight with Beijing.", + "contentSnippet": "Republican legislators argue that the Biden administration has been ill-equipped and unmotivated in a technology fight with Beijing.", + "guid": "https://www.nytimes.com/2023/12/07/us/politics/lawmakers-biden-china-tech.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Trade and World Market", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Chips", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Commerce Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "House Committee on Foreign Affairs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Republican Party", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T23:57:02.000Z" + }, + { + "creator": "J. Edward Moreno", + "title": "Who\u2019s Who Behind the Dawn of the Modern Artificial Intelligence Movement", + "link": "https://www.nytimes.com/2023/12/03/technology/ai-key-figures.html", + "pubDate": "Thu, 07 Dec 2023 23:06:48 +0000", + "dc:creator": "J. Edward Moreno", + "content": "Before chatbots exploded in popularity, a group of researchers, tech executives and venture capitalists had worked for more than a decade to fuel A.I.", + "contentSnippet": "Before chatbots exploded in popularity, a group of researchers, tech executives and venture capitalists had worked for more than a decade to fuel A.I.", + "guid": "https://www.nytimes.com/2023/12/03/technology/ai-key-figures.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Venture Capital", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Philosophy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Anthropic AI LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "DeepMind Technologies Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Amodei, Dario", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gates, Bill", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hassabis, Demis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hinton, Geoffrey E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hoffman, Reid Garrett", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nadella, Satya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Page, Larry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Thiel, Peter A", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zuckerberg, Mark E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Yudkowsky, Eliezer", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-07T23:06:48.000Z" + }, + { + "creator": "Dennis Overbye and Katrina Miller", + "title": "Particle Physicists Offer a Road Map For the Next Decade", + "link": "https://www.nytimes.com/2023/12/07/science/particle-physics-muon-collider.html", + "pubDate": "Thu, 07 Dec 2023 20:12:19 +0000", + "dc:creator": "Dennis Overbye and Katrina Miller", + "content": "A \u201cmuon shot\u201d aims to study the basic forces of the cosmos. But meager federal budgets could limit its ambitions.", + "contentSnippet": "A \u201cmuon shot\u201d aims to study the basic forces of the cosmos. But meager federal budgets could limit its ambitions.", + "guid": "https://www.nytimes.com/2023/12/07/science/particle-physics-muon-collider.html", + "categories": [ + { + "_": "Federal Budget (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Physics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Large Hadron Collider", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Higgs Boson", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dark Matter (Astronomy)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "CERN", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Energy Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Fermi National Accelerator Laboratory", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Science Foundation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Illinois", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T20:12:19.000Z" + }, + { + "creator": "Mike Isaac and Michael H. Keller", + "title": "Meta Plans to Add Encryption to Messenger, Stoking a Privacy Debate", + "link": "https://www.nytimes.com/2023/12/06/technology/meta-messenger-encryption.html", + "pubDate": "Thu, 07 Dec 2023 19:01:47 +0000", + "dc:creator": "Mike Isaac and Michael H. Keller", + "content": "The move is part of an effort to make the app more like WhatsApp and iMessage. Law enforcement authorities say the privacy makes it harder to track criminals.", + "contentSnippet": "The move is part of an effort to make the app more like WhatsApp and iMessage. Law enforcement authorities say the privacy makes it harder to track criminals.", + "guid": "https://www.nytimes.com/2023/12/06/technology/meta-messenger-encryption.html", + "categories": [ + { + "_": "Instant Messaging", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Surveillance of Citizens by Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Security", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Child Pornography", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "WhatsApp Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Zuckerberg, Mark E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-07T19:01:47.000Z" + }, + { + "creator": "Melissa Eddy", + "title": "Tesla Is Fighting With Sweden\u2019s Unions. Here\u2019s What to Know.", + "link": "https://www.nytimes.com/2023/12/07/business/tesla-sweden-union.html", + "pubDate": "Thu, 07 Dec 2023 18:53:56 +0000", + "dc:creator": "Melissa Eddy", + "content": "The action began with a mechanics walkout in October, but has spread to include blockades by other unions. Tesla has pushed back through the courts.", + "contentSnippet": "The action began with a mechanics walkout in October, but has spread to include blockades by other unions. Tesla has pushed back through the courts.", + "guid": "https://www.nytimes.com/2023/12/07/business/tesla-sweden-union.html", + "categories": [ + { + "_": "Organized Labor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Strikes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sweden", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "IF Metall", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "PostNord Group AB", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Denmark", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Norway", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T18:53:56.000Z" + }, + { + "creator": "Kenneth Chang", + "title": "3 Laser Fusion Research Hubs Picked by Energy Department", + "link": "https://www.nytimes.com/2023/12/07/science/laser-fusion-energy-department-funding.html", + "pubDate": "Thu, 07 Dec 2023 17:22:40 +0000", + "dc:creator": "Kenneth Chang", + "content": "With $42 million, Lawrence Livermore National Laboratory, Colorado State University and the University of Rochester will work on studies to tap into a bountiful energy source.", + "contentSnippet": "With $42 million, Lawrence Livermore National Laboratory, Colorado State University and the University of Rochester will work on studies to tap into a bountiful energy source.", + "guid": "https://www.nytimes.com/2023/12/07/science/laser-fusion-energy-department-funding.html", + "categories": [ + { + "_": "Fusion (Nuclear Reaction)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Energy Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Laser (Light Amplification by Stimulated Emission of Radiation)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Energy and Power", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Colorado State University", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Lawrence Livermore National Laboratory", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "University of Rochester", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T17:22:40.000Z" + }, + { + "creator": "Karen Weise, Cade Metz, Nico Grant and Mike Isaac", + "title": "One Year of ChatGPT: How A.I. Changed Silicon Valley Forever", + "link": "https://www.nytimes.com/2023/12/05/technology/ai-chatgpt-google-meta.html", + "pubDate": "Thu, 07 Dec 2023 17:14:26 +0000", + "dc:creator": "Karen Weise, Cade Metz, Nico Grant and Mike Isaac", + "content": "ChatGPT\u2019s release a year ago triggered a desperate scramble among tech companies and alarm from some of the people who helped invent it.", + "contentSnippet": "ChatGPT\u2019s release a year ago triggered a desperate scramble among tech companies and alarm from some of the people who helped invent it.", + "guid": "https://www.nytimes.com/2023/12/05/technology/ai-chatgpt-google-meta.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Search Engines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Open-Source Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Anthropic AI LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "DeepMind Technologies Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Brockman, Greg", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gates, Bill", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hassabis, Demis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hinton, Geoffrey E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Huang, Jen-Hsun", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "LeCun, Yann", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nadella, Satya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Pichai, Sundar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Walker, Kent", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zuckerberg, Mark E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "audio-neutral-informative", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T17:14:26.000Z" + }, + { + "creator": "Eduardo Medina", + "title": "PlayStation Will Delete Purchased Discovery Shows", + "link": "https://www.nytimes.com/2023/12/06/technology/sony-playstation-discovery-shows-removal.html", + "pubDate": "Thu, 07 Dec 2023 14:52:30 +0000", + "dc:creator": "Eduardo Medina", + "content": "Sony said that the Discovery shows, including \u201cMythBusters\u201d and \u201cDeadliest Catch,\u201d would be deleted from the devices on Dec. 31, citing \u201ccontent licensing arrangements with content providers.\u201d", + "contentSnippet": "Sony said that the Discovery shows, including \u201cMythBusters\u201d and \u201cDeadliest Catch,\u201d would be deleted from the devices on Dec. 31, citing \u201ccontent licensing arrangements with content providers.\u201d", + "guid": "https://www.nytimes.com/2023/12/06/technology/sony-playstation-discovery-shows-removal.html", + "categories": [ + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "PlayStation (Video Game System)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Warner Bros Discovery", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-07T14:52:30.000Z" + }, + { + "creator": "Erin Griffith", + "title": "From Unicorns to Zombies: Tech Start-Ups Run Out of Time and Money", + "link": "https://www.nytimes.com/2023/12/07/technology/tech-startups-collapse.html", + "pubDate": "Thu, 07 Dec 2023 14:48:22 +0000", + "dc:creator": "Erin Griffith", + "content": "After staving off collapse by cutting costs, many young tech companies are out of options, fueling a cash bonfire.", + "contentSnippet": "After staving off collapse by cutting costs, many young tech companies are out of options, fueling a cash bonfire.", + "guid": "https://www.nytimes.com/2023/12/07/technology/tech-startups-collapse.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bankruptcies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shutdowns (Institutional)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Venture Capital", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Entrepreneurship", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bird Rides Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Carta Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "WeWork Companies Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-07T14:48:22.000Z" + }, + { + "creator": "Cecilia Kang and Adam Satariano", + "title": "Five Ways A.I. Could Be Regulated", + "link": "https://www.nytimes.com/2023/12/06/technology/artificial-intelligence-regulation.html", + "pubDate": "Thu, 07 Dec 2023 06:49:10 +0000", + "dc:creator": "Cecilia Kang and Adam Satariano", + "content": "There is little agreement among regulators and lawmakers around the world on how artificial intelligence should \u2014 or even could \u2014 be controlled.", + "contentSnippet": "There is little agreement among regulators and lawmakers around the world on how artificial intelligence should \u2014 or even could \u2014 be controlled.", + "guid": "https://www.nytimes.com/2023/12/06/technology/artificial-intelligence-regulation.html", + "categories": [ + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Institute of Standards and Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Schumer, Charles E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-07T06:49:10.000Z" + }, + { + "creator": "Steven Lee Myers", + "title": "Russia\u2019s Latest Disinformation Tactic Exploits American Celebrities", + "link": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", + "pubDate": "Thu, 07 Dec 2023 05:02:00 +0000", + "dc:creator": "Steven Lee Myers", + "content": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", + "contentSnippet": "Videos from Elijah Wood, Mike Tyson and others have been used \u2014 unknowingly to them, it seems \u2014 in social media posts and Russian news coverage critical of Ukraine\u2019s leader.", + "guid": "https://www.nytimes.com/2023/12/07/technology/russia-disinformation-mike-tyson-priscilla-presley.html", + "categories": [ + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Propaganda", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Celebrities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cameo (Mobile App)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Zelensky, Volodymyr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Ukraine", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-07T05:02:00.000Z" + }, + { + "creator": "Cade Metz and Nico Grant", + "title": "Google Updates Bard Chatbot With \u2018Gemini\u2019 A.I. as It Chases ChatGPT", + "link": "https://www.nytimes.com/2023/12/06/technology/google-ai-bard-chatbot-gemini.html", + "pubDate": "Wed, 06 Dec 2023 19:19:53 +0000", + "dc:creator": "Cade Metz and Nico Grant", + "content": "After more than eight months of research and development, Google has unveiled its most powerful A.I. so far. But only parts of it are widely available.", + "contentSnippet": "After more than eight months of research and development, Google has unveiled its most powerful A.I. so far. But only parts of it are widely available.", + "guid": "https://www.nytimes.com/2023/12/06/technology/google-ai-bard-chatbot-gemini.html", + "categories": [ + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "DeepMind Technologies Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Pichai, Sundar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hassabis, Demis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cloud Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-06T19:19:53.000Z" + }, + { + "creator": "Eduardo Medina", + "title": "Spotify Cancels Two Acclaimed Podcasts: \u2018Heavyweight\u2019 and \u2018Stolen\u2019", + "link": "https://www.nytimes.com/2023/12/05/business/media/spotify-cancels-podcasts-heavyweight-stolen.html", + "pubDate": "Wed, 06 Dec 2023 15:46:16 +0000", + "dc:creator": "Eduardo Medina", + "content": "The shows will finish out their seasons on Spotify and then have the option to shop their shows somewhere else.", + "contentSnippet": "The shows will finish out their seasons on Spotify and then have the option to shop their shows somewhere else.", + "guid": "https://www.nytimes.com/2023/12/05/business/media/spotify-cancels-podcasts-heavyweight-stolen.html", + "categories": [ + { + "_": "Podcasts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Audio Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Advertising and Marketing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Spotify", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gimlet Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Stolen", + "$": { + "domain": "" + } + }, + { + "_": "Heavyweight (Radio Program)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "internal-open-access-from-nl", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-06T15:46:16.000Z" + }, + { + "creator": "Adam Satariano and Cecilia Kang", + "title": "How Nations Are Losing a Global Race to Tackle A.I.\u2019s Harms", + "link": "https://www.nytimes.com/2023/12/06/technology/ai-regulation-policies.html", + "pubDate": "Wed, 06 Dec 2023 05:00:08 +0000", + "dc:creator": "Adam Satariano and Cecilia Kang", + "content": "Alarmed by the power of artificial intelligence, Europe, the United States and others are trying to respond \u2014 but the technology is evolving more rapidly than their policies.", + "contentSnippet": "Alarmed by the power of artificial intelligence, Europe, the United States and others are trying to respond \u2014 but the technology is evolving more rapidly than their policies.", + "guid": "https://www.nytimes.com/2023/12/06/technology/ai-regulation-policies.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Facial Recognition Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Anthropic AI LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Senate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-06T05:00:08.000Z" + }, + { + "creator": "Isabella Kwai", + "title": "AI-Generated Jimmy Stewart Reads a Bedtime Story for Calm App", + "link": "https://www.nytimes.com/2023/12/05/technology/calm-jimmy-stewart-ai.html", + "pubDate": "Tue, 05 Dec 2023 23:10:59 +0000", + "dc:creator": "Isabella Kwai", + "content": "The sleep and meditation app Calm released a new story featuring the late actor\u2019s signature drawl \u2014 or a computer-generated version of it.", + "contentSnippet": "The sleep and meditation app Calm released a new story featuring the late actor\u2019s signature drawl \u2014 or a computer-generated version of it.", + "guid": "https://www.nytimes.com/2023/12/05/technology/calm-jimmy-stewart-ai.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Meditation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cloning", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stewart, Jimmy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Calm.com Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-05T23:10:59.000Z" + }, + { + "creator": "Bernhard Warner", + "title": "Bitcoin Soars on Hopes of Investment Fund Approval", + "link": "https://www.nytimes.com/2023/12/05/business/bitcoin-price-etf.html", + "pubDate": "Tue, 05 Dec 2023 14:23:58 +0000", + "dc:creator": "Bernhard Warner", + "content": "The cryptocurrency has gained roughly 150 percent this year, as investors bet that regulators will soon approve the first spot exchange-traded fund that is designed to track the price of Bitcoin.", + "contentSnippet": "The cryptocurrency has gained roughly 150 percent this year, as investors bet that regulators will soon approve the first spot exchange-traded fund that is designed to track the price of Bitcoin.", + "guid": "https://www.nytimes.com/2023/12/05/business/bitcoin-price-etf.html", + "categories": [ + { + "_": "Virtual Currency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bitcoin (Currency)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Exchange Traded Funds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Securities and Exchange Commission", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-05T14:23:58.000Z" + }, + { + "creator": "Virginia Hughes", + "title": "Bordeaux Wine Snobs Have a Point, According to This Computer Model", + "link": "https://www.nytimes.com/2023/12/05/science/bordeaux-red-wine-estate-machine-learning.html", + "pubDate": "Tue, 05 Dec 2023 14:12:14 +0000", + "dc:creator": "Virginia Hughes", + "content": "With machine learning, scientists are trying to chemically define the murky concept of terroir. The models might be useful for detecting wine fraud.", + "contentSnippet": "With machine learning, scientists are trying to chemically define the murky concept of terroir. The models might be useful for detecting wine fraud.", + "guid": "https://www.nytimes.com/2023/12/05/science/bordeaux-red-wine-estate-machine-learning.html", + "categories": [ + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Chemistry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Forgery", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bordeaux (France)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-05T14:12:14.000Z" + }, + { + "creator": "Carl Zimmer", + "title": "Brain Implants Helped 5 People Recover From Traumatic Injuries", + "link": "https://www.nytimes.com/2023/12/04/health/traumatic-brain-injury-implants.html", + "pubDate": "Mon, 04 Dec 2023 16:50:23 +0000", + "dc:creator": "Carl Zimmer", + "content": "People with chronic problems after falls and car crashes scored better on cognition tests after getting a brain implant, a new study found.", + "contentSnippet": "People with chronic problems after falls and car crashes scored better on cognition tests after getting a brain implant, a new study found.", + "guid": "https://www.nytimes.com/2023/12/04/health/traumatic-brain-injury-implants.html", + "categories": [ + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Brain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Implants", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Traumatic Brain Injury", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-04T16:50:23.000Z" + }, + { + "creator": "Cade Metz, Karen Weise, Nico Grant and Mike Isaac", + "title": "How Elon Musk and Larry Page\u2019s AI Debate Led to OpenAI and an Industry Boom", + "link": "https://www.nytimes.com/2023/12/03/technology/ai-openai-musk-page-altman.html", + "pubDate": "Sun, 03 Dec 2023 10:00:56 +0000", + "dc:creator": "Cade Metz, Karen Weise, Nico Grant and Mike Isaac", + "content": "The people who were most afraid of the risks of artificial intelligence decided they should be the ones to build it. Then distrust fueled a spiraling competition.", + "contentSnippet": "The people who were most afraid of the risks of artificial intelligence decided they should be the ones to build it. Then distrust fueled a spiraling competition.", + "guid": "https://www.nytimes.com/2023/12/03/technology/ai-openai-musk-page-altman.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Page, Larry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "DeepMind Technologies Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Anthropic AI LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Baidu Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Amodei, Dario", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Brockman, Greg", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Dean, Jeff (1968- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Eustace, Alan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Gates, Bill", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hassabis, Demis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hinton, Geoffrey E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "LeCun, Yann", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nadella, Satya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Suleyman, Mustafa", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zuckerberg, Mark E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Lake Tahoe (Nev)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Meta", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Venture Capital", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mergers, Acquisitions and Divestitures", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-03T10:00:56.000Z" + }, + { + "creator": "Kellen Browning", + "title": "Inside Kick, an Upstart Streaming Competitor to Twitch", + "link": "https://www.nytimes.com/2023/12/02/technology/kick-streaming-twitch-gambling.html", + "pubDate": "Sat, 02 Dec 2023 10:00:38 +0000", + "dc:creator": "Kellen Browning", + "content": "The Twitch competitor has doled out generous deals to content creators. It has also faced criticism for its lax moderation and embrace of online gambling.", + "contentSnippet": "The Twitch competitor has doled out generous deals to content creators. It has also faced criticism for its lax moderation and embrace of online gambling.", + "guid": "https://www.nytimes.com/2023/12/02/technology/kick-streaming-twitch-gambling.html", + "categories": [ + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gambling", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Advertising and Marketing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer and Video Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Kick.com", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Stake.com (Medium Rare NV)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Craven, Ed (1995- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Twitch Interactive Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Amazon.com Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Australia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-02T10:00:38.000Z" + }, + { + "creator": "Nicole Sperling", + "title": "Netflix Builds a \u2018Squid Game\u2019 Universe as It Awaits a Second Season", + "link": "https://www.nytimes.com/2023/12/02/business/media/netflix-squid-game-challenge.html", + "pubDate": "Sat, 02 Dec 2023 08:01:02 +0000", + "dc:creator": "Nicole Sperling", + "content": "A reality show and a live experience are two ways of keeping the dystopian series in the public eye. Is the original\u2019s bleak message being diluted?", + "contentSnippet": "A reality show and a live experience are two ways of keeping the dystopian series in the public eye. Is the original\u2019s bleak message being diluted?", + "guid": "https://www.nytimes.com/2023/12/02/business/media/netflix-squid-game-challenge.html", + "categories": [ + { + "_": "Television", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Netflix Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Squid Game (TV Program)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Squid Game: The Challenge (TV Program)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Hwang Dong-hyuk", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Intellectual Property", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-02T08:01:02.000Z" + }, + { + "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano and Rowan Niemisto", + "title": "What\u2019s Next for OpenAI, Binance Is Binanceled and A.I. Is Eating the Internet", + "link": "https://www.nytimes.com/2023/12/01/podcasts/hard-fork-openai-future-binance.html", + "pubDate": "Fri, 01 Dec 2023 10:03:32 +0000", + "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano and Rowan Niemisto", + "content": "It\u2019s full steam ahead for the tech world despite, well, everything.", + "contentSnippet": "It\u2019s full steam ahead for the tech world despite, well, everything.", + "guid": "https://www.nytimes.com/2023/12/01/podcasts/hard-fork-openai-future-binance.html", + "categories": [ + { + "_": "Science and Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Binance", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Zhao, Changpeng", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-01T10:03:32.000Z" + }, + { + "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Chris Wood, Dan Powell, Marion Lozano and Sophia Lanman", + "title": "Google\u2019s Next Top Model, Will the Cybertruck Crash? and This Week in A.I.", + "link": "https://www.nytimes.com/2023/12/08/podcasts/hardfork-google-gemini-cybertruck.html", + "pubDate": "Fri, 08 Dec 2023 10:03:58 +0000", + "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Chris Wood, Dan Powell, Marion Lozano and Sophia Lanman", + "content": "Like the Cybertruck, this podcast is bulletproof.", + "contentSnippet": "Like the Cybertruck, this podcast is bulletproof.", + "guid": "https://www.nytimes.com/2023/12/08/podcasts/hardfork-google-gemini-cybertruck.html", + "categories": [ + { + "_": "Science and Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Panera Bread Company", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Amazon.com Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Pichai, Sundar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Hassabis, Demis", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-08T10:03:58.000Z" + }, + { + "creator": "John Yoon", + "title": "E3 Tech Expo Is Shutting Down", + "link": "https://www.nytimes.com/2023/12/13/technology/e3-video-game-convention-ended.html", + "pubDate": "Thu, 14 Dec 2023 16:45:07 +0000", + "dc:creator": "John Yoon", + "content": "The annual event, once an important opportunity for video game companies to showcase their creations, struggled to stay relevant in a shifting industry.", + "contentSnippet": "The annual event, once an important opportunity for video game companies to showcase their creations, struggled to stay relevant in a shifting industry.", + "guid": "https://www.nytimes.com/2023/12/13/technology/e3-video-game-convention-ended.html", + "categories": [ + { + "_": "Electronic Entertainment Expo (E3)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer and Video Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conventions, Fairs and Trade Shows", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Entertainment Software Assn", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Los Angeles (Calif)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-14T16:45:07.000Z" + }, + { + "creator": "Yiwen Lu", + "title": "My Not-So-Perfect Holiday Shopping Excursion With A.I. Chatbots", + "link": "https://www.nytimes.com/2023/12/14/technology/shopping-ai-chatbots.html", + "pubDate": "Thu, 14 Dec 2023 15:52:48 +0000", + "dc:creator": "Yiwen Lu", + "content": "With Shopify, Mercari and other retailers rolling out chatbots to help buyers, this holiday shopping season is the first to be powered by A.I.", + "contentSnippet": "With Shopify, Mercari and other retailers rolling out chatbots to help buyers, this holiday shopping season is the first to be powered by A.I.", + "guid": "https://www.nytimes.com/2023/12/14/technology/shopping-ai-chatbots.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "E-Commerce", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Commerce and Payments", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gifts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shopify Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "mercari", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-14T15:52:48.000Z" + }, + { + "creator": "Tiffany Hsu and Steven Lee Myers", + "title": "Pro-China YouTube Network Used A.I. to Malign U.S., Report Finds", + "link": "https://www.nytimes.com/2023/12/14/business/media/pro-china-youtube-disinformation.html", + "pubDate": "Thu, 14 Dec 2023 14:52:10 +0000", + "dc:creator": "Tiffany Hsu and Steven Lee Myers", + "content": "Content from at least 30 channels in the network drew nearly 120 million views and 730,000 subscribers since last year.", + "contentSnippet": "Content from at least 30 channels in the network drew nearly 120 million views and 730,000 subscribers since last year.", + "guid": "https://www.nytimes.com/2023/12/14/business/media/pro-china-youtube-disinformation.html", + "categories": [ + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "YouTube.com", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-14T14:52:10.000Z" + }, + { + "creator": "Alyson Krueger", + "title": "How TikTok Turned Your Kid\u2019s Christmas List Into a Powerpoint Presentation", + "link": "https://www.nytimes.com/2023/12/13/style/tiktok-christmas-gift-list-powerpoint-presentation.html", + "pubDate": "Thu, 14 Dec 2023 14:43:28 +0000", + "dc:creator": "Alyson Krueger", + "content": "Some kids are getting more sophisticated with their holiday gift decks, creating a vibe that\u2019s more sales pitch than Santa.", + "contentSnippet": "Some kids are getting more sophisticated with their holiday gift decks, creating a vibe that\u2019s more sales pitch than Santa.", + "guid": "https://www.nytimes.com/2023/12/13/style/tiktok-christmas-gift-list-powerpoint-presentation.html", + "categories": [ + { + "_": "Christmas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Gifts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Children and Childhood", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Holidays and Special Occasions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T14:43:28.000Z" + }, + { + "creator": "Steven Lee Myers", + "title": "State Dept.\u2019s Fight Against Disinformation Comes Under Attack", + "link": "https://www.nytimes.com/2023/12/14/technology/state-department-disinformation-criticism.html", + "pubDate": "Thu, 14 Dec 2023 10:02:59 +0000", + "dc:creator": "Steven Lee Myers", + "content": "The Global Engagement Center has become the focus of Republican-led criticism that the U.S. government coerces social media platforms into removing offensive content.", + "contentSnippet": "The Global Engagement Center has become the focus of Republican-led criticism that the U.S. government coerces social media platforms into removing offensive content.", + "guid": "https://www.nytimes.com/2023/12/14/technology/state-department-disinformation-criticism.html", + "categories": [ + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Censorship", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freedom of Speech and Expression", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Presidential Election of 2024", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "House Select Subcommittee on the Weaponization of the Federal Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Rubin, James P", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Paxton, Ken", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-14T10:02:59.000Z" + }, + { + "creator": "Madison Malone Kircher", + "title": "A \u2018Polar Express\u2019 Character Comes to Life", + "link": "https://www.nytimes.com/2023/12/13/style/the-polar-express-hero-girl-tiktok.html", + "pubDate": "Thu, 14 Dec 2023 01:08:02 +0000", + "dc:creator": "Madison Malone Kircher", + "content": "Nia Wilkerson has spent years hearing that she looks like the girl from \u201cThe Polar Express.\u201d On TikTok, she\u2019s leaning into it.", + "contentSnippet": "Nia Wilkerson has spent years hearing that she looks like the girl from \u201cThe Polar Express.\u201d On TikTok, she\u2019s leaning into it.", + "guid": "https://www.nytimes.com/2023/12/13/style/the-polar-express-hero-girl-tiktok.html", + "categories": [ + { + "_": "Christmas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Street Performers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "The Polar Express (Movie)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T01:08:02.000Z" + }, + { + "creator": "Stuart A. Thompson", + "title": "How a Rare Myocarditis Death Caught the Attention of the Anti-Vaccine Movement", + "link": "https://www.nytimes.com/2023/12/13/technology/covid-anti-vaccine.html", + "pubDate": "Thu, 14 Dec 2023 00:46:02 +0000", + "dc:creator": "Stuart A. Thompson", + "content": "A 24-year-old\u2019s sudden death devastated his family \u2014 and caught the attention of the movement of vaccine opponents.", + "contentSnippet": "A 24-year-old\u2019s sudden death devastated his family \u2014 and caught the attention of the movement of vaccine opponents.", + "guid": "https://www.nytimes.com/2023/12/13/technology/covid-anti-vaccine.html", + "categories": [ + { + "_": "Coronavirus (2019-nCoV)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Vaccination and Immunization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Watts, George E Jr (1997-2021)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Fatalities)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Heart", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Men and Boys", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conspiracy Theories", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Watts, George Sr.", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Fringe Groups and Movements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Centers for Disease Control and Prevention", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Elmira (NY)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "audio-neutral-informative", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "internal-sub-only", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "internal-great-read", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "audio-negative-sad", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T00:46:02.000Z" + }, + { + "creator": "Joseph Bernstein", + "title": "Praxis Founder Dryden Brown\u2019s Utopian Visions", + "link": "https://www.nytimes.com/2023/12/12/style/praxis-city-dryden-brown.html", + "pubDate": "Thu, 14 Dec 2023 00:34:12 +0000", + "dc:creator": "Joseph Bernstein", + "content": "Dryden Brown wants Praxis to be a crypto-city for tech bros and tastemakers. Just don\u2019t ask for details.", + "contentSnippet": "Dryden Brown wants Praxis to be a crypto-city for tech bros and tastemakers. Just don\u2019t ask for details.", + "guid": "https://www.nytimes.com/2023/12/12/style/praxis-city-dryden-brown.html", + "categories": [ + { + "_": "Brown, Dryden", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Praxis (Bluebook Cities Inc)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Callinan, Charlie", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Venture Capital", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fringe Groups and Movements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Neo Nazi Groups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Right-Wing Extremism and Alt-Right", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bankman-Fried, Sam", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Thiel, Peter A", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "internal-sub-only", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "internal-great-read", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Virtual Currency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T00:34:12.000Z" + }, + { + "creator": "Cade Metz", + "title": "Luiz Barroso, Who Supercharged Google\u2019s Reach, Dies at 59", + "link": "https://www.nytimes.com/2023/12/13/technology/luiz-barroso-dead.html", + "pubDate": "Thu, 14 Dec 2023 00:15:46 +0000", + "dc:creator": "Cade Metz", + "content": "In designing warehouse-size data centers that behaved like a single computer, he changed the fabric of the internet.", + "contentSnippet": "In designing warehouse-size data centers that behaved like a single computer, he changed the fabric of the internet.", + "guid": "https://www.nytimes.com/2023/12/13/technology/luiz-barroso-dead.html", + "categories": [ + { + "_": "Barroso, Luiz (1964-2023)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Data Centers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Engineering and Engineers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Search Engines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T00:15:46.000Z" + }, + { + "creator": "Natasha Singer", + "title": "Cheating Fears Over Chatbots Were Overblown, New Research Suggests", + "link": "https://www.nytimes.com/2023/12/13/technology/chatbot-cheating-schools-students.html", + "pubDate": "Wed, 13 Dec 2023 22:56:11 +0000", + "dc:creator": "Natasha Singer", + "content": "A.I. tools like ChatGPT did not boost the frequency of cheating in high schools, Stanford researchers say.", + "contentSnippet": "A.I. tools like ChatGPT did not boost the frequency of cheating in high schools, Stanford researchers say.", + "guid": "https://www.nytimes.com/2023/12/13/technology/chatbot-cheating-schools-students.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cheating", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Education (Secondary)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Plagiarism", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stanford University", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Pew Research Center", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "chatbot", + "$": { + "domain": "" + } + } + ], + "isoDate": "2023-12-13T22:56:11.000Z" + }, + { + "creator": "Jack Ewing, Cade Metz and Derrick Bryson Taylor", + "title": "Tesla Recalls Autopilot Software in 2 Million Vehicles", + "link": "https://www.nytimes.com/2023/12/13/business/tesla-autopilot-recall.html", + "pubDate": "Wed, 13 Dec 2023 21:32:27 +0000", + "dc:creator": "Jack Ewing, Cade Metz and Derrick Bryson Taylor", + "content": "Federal regulators pressed the automaker to make updates to ensure drivers are paying attention while using Autopilot, a system that can steer, accelerate and brake on its own.", + "contentSnippet": "Federal regulators pressed the automaker to make updates to ensure drivers are paying attention while using Autopilot, a system that can steer, accelerate and brake on its own.", + "guid": "https://www.nytimes.com/2023/12/13/business/tesla-autopilot-recall.html", + "categories": [ + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Driverless and Semiautonomous Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Recalls and Bans of Products", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "National Highway Traffic Safety Administration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Automobile Safety Features and Defects", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T21:32:27.000Z" + }, + { + "creator": "The New York Times", + "title": "What Car Owners Should Know About the Tesla Autopilot Recall", + "link": "https://www.nytimes.com/2023/12/13/business/tesla-recall-what-to-know.html", + "pubDate": "Wed, 13 Dec 2023 20:36:35 +0000", + "dc:creator": "The New York Times", + "content": "Under pressure from federal regulators, the company has agreed to recall two million cars to update its driver-assistance system. The cars will be updated over cellular networks.", + "contentSnippet": "Under pressure from federal regulators, the company has agreed to recall two million cars to update its driver-assistance system. The cars will be updated over cellular networks.", + "guid": "https://www.nytimes.com/2023/12/13/business/tesla-recall-what-to-know.html", + "categories": [ + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Driverless and Semiautonomous Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Recalls and Bans of Products", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Customer Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobile Safety Features and Defects", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Highway Traffic Safety Administration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-13T20:36:35.000Z" + }, + { + "creator": "Noam Scheiber", + "title": "Microsoft Agrees to Remain Neutral in Union Campaigns", + "link": "https://www.nytimes.com/2023/12/12/business/economy/microsoft-unions.html", + "pubDate": "Wed, 13 Dec 2023 18:48:32 +0000", + "dc:creator": "Noam Scheiber", + "content": "The pledge is unprecedented for Big Tech and makes it easier for roughly 100,000 workers to unionize.", + "contentSnippet": "The pledge is unprecedented for Big Tech and makes it easier for roughly 100,000 workers to unionize.", + "guid": "https://www.nytimes.com/2023/12/12/business/economy/microsoft-unions.html", + "categories": [ + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Organized Labor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "American Federation of Labor-Congress of Industrial Organizations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Communications Workers of America", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Activision Blizzard Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Computer and Video Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Labor and Jobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Smith, Bradford L", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "ZeniMax Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Shuler, Liz (1970- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-13T18:48:32.000Z" + }, + { + "creator": "Brian X. Chen", + "title": "How Meta\u2019s New Face Camera Heralds a New Age of Surveillance", + "link": "https://www.nytimes.com/2023/12/13/technology/personaltech/meta-ray-ban-glasses.html", + "pubDate": "Wed, 13 Dec 2023 18:40:02 +0000", + "dc:creator": "Brian X. Chen", + "content": "Meta\u2019s $300 smart glasses look cool but lack a killer app, and they offer a glimpse into a future with even less privacy and more distraction.", + "contentSnippet": "Meta\u2019s $300 smart glasses look cool but lack a killer app, and they offer a glimpse into a future with even less privacy and more distraction.", + "guid": "https://www.nytimes.com/2023/12/13/technology/personaltech/meta-ray-ban-glasses.html", + "categories": [ + { + "_": "Wearable Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Eyeglasses", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cameras", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-13T18:40:02.000Z" + }, + { + "creator": "Natasha Singer", + "title": "Chatbot Hype or Harm? Teens Push to Broaden A.I. Literacy", + "link": "https://www.nytimes.com/2023/12/13/technology/ai-chatbots-schools-students.html", + "pubDate": "Wed, 13 Dec 2023 14:23:03 +0000", + "dc:creator": "Natasha Singer", + "content": "Students at a New Jersey high school want to widen A.I. discussions beyond dueling tropes of tech magic and doomsday panic.", + "contentSnippet": "Students at a New Jersey high school want to widen A.I. discussions beyond dueling tropes of tech magic and doomsday panic.", + "guid": "https://www.nytimes.com/2023/12/13/technology/ai-chatbots-schools-students.html", + "categories": [ + { + "_": "Education (K-12)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cheating", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Vision", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "River Dell High School", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Oradell (NJ)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-13T14:23:03.000Z" + }, + { + "creator": "Sapna Maheshwari", + "title": "Political Debate Is Rife on TikTok. Politicians? Not So Much.", + "link": "https://www.nytimes.com/2023/12/13/business/media/tiktok-politicians.html", + "pubDate": "Wed, 13 Dec 2023 10:00:29 +0000", + "dc:creator": "Sapna Maheshwari", + "content": "Very few politicians, including the top candidates for president, are on the hugely popular video app \u2014 perhaps ceding much of the political discussion to others.", + "contentSnippet": "Very few politicians, including the top candidates for president, are on the hugely popular video app \u2014 perhaps ceding much of the political discussion to others.", + "guid": "https://www.nytimes.com/2023/12/13/business/media/tiktok-politicians.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Presidential Election of 2024", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Midterm Elections (2022)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Youth", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Beijing Bytedance Technology Co Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Henry, Annie Wu", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Fetterman, John (1969- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-13T10:00:29.000Z" + }, + { + "creator": "Nico Grant", + "title": "Google\u2019s Antitrust Loss to Epic Could Preview Its Legal Fate in 2024", + "link": "https://www.nytimes.com/2023/12/12/technology/google-antitrust-cases.html", + "pubDate": "Tue, 12 Dec 2023 21:09:32 +0000", + "dc:creator": "Nico Grant", + "content": "A trio of antitrust cases on the docket threaten to reshape Google\u2019s business and sap its profits.", + "contentSnippet": "A trio of antitrust cases on the docket threaten to reshape Google\u2019s business and sap its profits.", + "guid": "https://www.nytimes.com/2023/12/12/technology/google-antitrust-cases.html", + "categories": [ + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Antitrust Laws and Competition Issues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Epic Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Fortnite (Video Game)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Computer and Video Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Justice Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Search Engines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-12T21:09:32.000Z" + }, + { + "creator": "Neal E. Boudette", + "title": "Ford Will Cut Planned Electric F-150 Production as Demand Slows", + "link": "https://www.nytimes.com/2023/12/12/business/ford-f150-lightning-ev.html", + "pubDate": "Tue, 12 Dec 2023 19:50:30 +0000", + "dc:creator": "Neal E. Boudette", + "content": "Ford and other automakers have had to readjust their electric vehicle production plans because sales have been weaker than they had expected.", + "contentSnippet": "Ford and other automakers have had to readjust their electric vehicle production plans because sales have been weaker than they had expected.", + "guid": "https://www.nytimes.com/2023/12/12/business/ford-f150-lightning-ev.html", + "categories": [ + { + "_": "Ford Motor Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sports Utility Vehicles and Light Trucks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Production", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Batteries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobile Service and Charging Stations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "General Motors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-12T19:50:30.000Z" + }, + { + "creator": "Nico Grant", + "title": "Google Loses Court Fight Over App Store With Makers of Fortnite", + "link": "https://www.nytimes.com/2023/12/11/technology/epic-games-google-antitrust-ruling.html", + "pubDate": "Tue, 12 Dec 2023 18:12:00 +0000", + "dc:creator": "Nico Grant", + "content": "The case could reshape the rules of how other businesses can make money on the Android operating system.", + "contentSnippet": "The case could reshape the rules of how other businesses can make money on the Android operating system.", + "guid": "https://www.nytimes.com/2023/12/11/technology/epic-games-google-antitrust-ruling.html", + "categories": [ + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Antitrust Laws and Competition Issues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer and Video Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Epic Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Play", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-12T18:12:00.000Z" + }, + { + "creator": "Emmett Lindner", + "title": "What Shape Is This Cookie Cutter? No Guess Is Half-Baked.", + "link": "https://www.nytimes.com/2023/12/12/style/cookie-cutter-reddit-whatismycookiecutter.html", + "pubDate": "Tue, 12 Dec 2023 17:13:10 +0000", + "dc:creator": "Emmett Lindner", + "content": "The r/WhatIsMyCookieCutter subreddit was created to help bakers identify stray cookie cutters but has evolved into an outlet for running gags and whimsical artistic interpretations.", + "contentSnippet": "The r/WhatIsMyCookieCutter subreddit was created to help bakers identify stray cookie cutters but has evolved into an outlet for running gags and whimsical artistic interpretations.", + "guid": "https://www.nytimes.com/2023/12/12/style/cookie-cutter-reddit-whatismycookiecutter.html", + "categories": [ + { + "_": "Cookies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Reddit Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Christmas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-12T17:13:10.000Z" + }, + { + "creator": "David Yaffe-Bellany", + "title": "The Power Vacuum at the Top of the Crypto Industry", + "link": "https://www.nytimes.com/2023/12/11/technology/crypto-industry-power-vacuum.html", + "pubDate": "Tue, 12 Dec 2023 10:01:18 +0000", + "dc:creator": "David Yaffe-Bellany", + "content": "A year ago, Sam Bankman-Fried and Changpeng Zhao ran two of the largest crypto companies. As they grapple with legal woes, others are jockeying to lead the industry\u2019s next chapter.", + "contentSnippet": "A year ago, Sam Bankman-Fried and Changpeng Zhao ran two of the largest crypto companies. As they grapple with legal woes, others are jockeying to lead the industry\u2019s next chapter.", + "guid": "https://www.nytimes.com/2023/12/11/technology/crypto-industry-power-vacuum.html", + "categories": [ + { + "_": "Virtual Currency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bitcoin (Currency)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Banking and Financial Institutions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Binance", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "BlackRock Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Coinbase Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "HK FTX Trading Ltd (Futures Exchange)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Armstrong, Brian (1983- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bankman-Fried, Sam", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zhao, Changpeng", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-12T10:01:18.000Z" + }, + { + "creator": "Zachary Small", + "title": "Can an A.I. Van Gogh Help Museums Generate New Interest?", + "link": "https://www.nytimes.com/2023/12/12/arts/design/van-gogh-artificial-intelligence.html", + "pubDate": "Tue, 12 Dec 2023 10:00:39 +0000", + "dc:creator": "Zachary Small", + "content": "Can doppelg\u00e4ngers of the Dutch painter help museums generate new interest and income? A.I. Vincent fields our questions (and makes some mistakes).", + "contentSnippet": "Can doppelg\u00e4ngers of the Dutch painter help museums generate new interest and income? A.I. Vincent fields our questions (and makes some mistakes).", + "guid": "https://www.nytimes.com/2023/12/12/arts/design/van-gogh-artificial-intelligence.html", + "categories": [ + { + "_": "van Gogh, Vincent", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Musee d'Orsay", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Art", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Museums", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Paris (France)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-12T10:00:39.000Z" + }, + { + "creator": "Tara Siegel Bernard", + "title": "Judge Upholds Texas TikTok Ban on Government Devices", + "link": "https://www.nytimes.com/2023/12/11/business/tiktok-texas-ban.html", + "pubDate": "Tue, 12 Dec 2023 02:54:03 +0000", + "dc:creator": "Tara Siegel Bernard", + "content": "The Texas law was challenged by First Amendment lawyers who filed a suit on behalf of college professors who said that their work had been compromised when they lost access to the app.", + "contentSnippet": "The Texas law was challenged by First Amendment lawyers who filed a suit on behalf of college professors who said that their work had been compromised when they lost access to the app.", + "guid": "https://www.nytimes.com/2023/12/11/business/tiktok-texas-ban.html", + "categories": [ + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Colleges and Universities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Beijing Bytedance Technology Co Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Knight First Amendment Institute", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Pitman, Robert Lee", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-12T02:54:03.000Z" + }, + { + "creator": "Don Clark", + "title": "New York Plans to Invest $1 Billion to Expand Chip Research", + "link": "https://www.nytimes.com/2023/12/11/technology/new-york-chips-act-albany.html", + "pubDate": "Mon, 11 Dec 2023 17:27:21 +0000", + "dc:creator": "Don Clark", + "content": "The move is aimed at drawing $9 billion in corporate investment, as New York jockeys to host a new national semiconductor technology center.", + "contentSnippet": "The move is aimed at drawing $9 billion in corporate investment, as New York jockeys to host a new national semiconductor technology center.", + "guid": "https://www.nytimes.com/2023/12/11/technology/new-york-chips-act-albany.html", + "categories": [ + { + "_": "Computer Chips", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "States (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ASML Holding NV", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Business Machines Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "State University of New York at Albany", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hochul, Kathleen C", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Albany (NY)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-11T17:27:21.000Z" + }, + { + "creator": "Ivan Penn, Stanley Reed and Brad Plumer", + "title": "What Ails Offshore Wind: Supply Chains, Ships and Interest Rates", + "link": "https://www.nytimes.com/2023/12/11/business/energy-environment/offshore-wind-energy-east-coast.html", + "pubDate": "Mon, 11 Dec 2023 15:52:07 +0000", + "dc:creator": "Ivan Penn, Stanley Reed and Brad Plumer", + "content": "Government officials and energy developers misjudged the difficulty of building huge clean energy projects in the United States, which has built very few of them.", + "contentSnippet": "Government officials and energy developers misjudged the difficulty of building huge clean energy projects in the United States, which has built very few of them.", + "guid": "https://www.nytimes.com/2023/12/11/business/energy-environment/offshore-wind-energy-east-coast.html", + "categories": [ + { + "_": "Wind Power", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supply Chain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alternative and Renewable Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Economy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric Light and Power", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation Reduction Act of 2022", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inflation (Economics)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ships and Shipping", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Government Contracts and Procurement", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Dominion Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Orsted AS", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Northeastern States (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "States (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Brownsville (Tex)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Virginia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-11T15:52:07.000Z" + }, + { + "creator": "Rebecca Carballo", + "title": "Using A.I. to Talk to the Dead", + "link": "https://www.nytimes.com/2023/12/11/technology/ai-chatbots-dead-relatives.html", + "pubDate": "Mon, 11 Dec 2023 14:03:51 +0000", + "dc:creator": "Rebecca Carballo", + "content": "Some people are using artificial intelligence chatbots to create avatars of departed loved ones. It\u2019s a source of comfort for some, but it makes others a little squeamish.", + "contentSnippet": "Some people are using artificial intelligence chatbots to create avatars of departed loved ones. It\u2019s a source of comfort for some, but it makes others a little squeamish.", + "guid": "https://www.nytimes.com/2023/12/11/technology/ai-chatbots-dead-relatives.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Death and Dying", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Voice and Speech", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Grief (Emotion)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asner, Ed", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "HereAfter AI", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "StoryFile Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-11T14:03:51.000Z" + }, + { + "creator": "Kate Dwyer", + "title": "The Nation Magazine to Become Monthly", + "link": "https://www.nytimes.com/2023/12/11/business/the-nation-magazine.html", + "pubDate": "Mon, 11 Dec 2023 13:00:08 +0000", + "dc:creator": "Kate Dwyer", + "content": "The progressive publication will move to the new schedule in January, and each issue will be 84 pages instead of 48.", + "contentSnippet": "The progressive publication will move to the new schedule in January, and each issue will be 84 pages instead of 48.", + "guid": "https://www.nytimes.com/2023/12/11/business/the-nation-magazine.html", + "categories": [ + { + "_": "Advertising and Marketing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Magazines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nation, The (Magazine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Guttenplan, D D", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sunkara, Bhaskar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Vanden Heuvel, Katrina", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-11T13:00:08.000Z" + }, + { + "creator": "Amanda Holpuch", + "title": "QR Codes Can Hide Risky Links, F.T.C. Warns", + "link": "https://www.nytimes.com/2023/12/10/business/qr-code-scam-ftc.html", + "pubDate": "Sun, 10 Dec 2023 23:21:11 +0000", + "dc:creator": "Amanda Holpuch", + "content": "Scammers have used QR codes to steal personal information by imitating legitimate companies or sending deceptive emails and text messages, the Federal Trade Commission said.", + "contentSnippet": "Scammers have used QR codes to steal personal information by imitating legitimate companies or sending deceptive emails and text messages, the Federal Trade Commission said.", + "guid": "https://www.nytimes.com/2023/12/10/business/qr-code-scam-ftc.html", + "categories": [ + { + "_": "Bar Codes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Security", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Smartphones", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Text Messaging", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Federal Trade Commission", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "QR codes", + "$": { + "domain": "" + } + }, + { + "_": "Consumer Protection", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-10T23:21:11.000Z" + }, + { + "creator": "Cade Metz", + "title": "Mistral, French A.I. Start-Up, Is Valued at $2 Billion in Funding Round", + "link": "https://www.nytimes.com/2023/12/10/technology/mistral-ai-funding.html", + "pubDate": "Sun, 10 Dec 2023 22:58:36 +0000", + "dc:creator": "Cade Metz", + "content": "The company has publicly released its latest technology so people can build their own chatbots. Rivals like OpenAI and Google argue that approach can be dangerous.", + "contentSnippet": "The company has publicly released its latest technology so people can build their own chatbots. Rivals like OpenAI and Google argue that approach can be dangerous.", + "guid": "https://www.nytimes.com/2023/12/10/technology/mistral-ai-funding.html", + "categories": [ + { + "_": "Mistral AI SAS", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Venture Capital", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Open-Source Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Andreessen Horowitz", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Lightspeed Venture Partners", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "France", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-10T22:58:36.000Z" + }, + { + "creator": "Kate Conger", + "title": "Elon Musk Brings Conspiracy Theorist Alex Jones Back to X", + "link": "https://www.nytimes.com/2023/12/09/technology/elon-musk-alex-jones-twitter-x.html", + "pubDate": "Sun, 10 Dec 2023 18:52:08 +0000", + "dc:creator": "Kate Conger", + "content": "Jones was banned from the social media platform in 2018 after posting harassing messages.", + "contentSnippet": "Jones was banned from the social media platform in 2018 after posting harassing messages.", + "guid": "https://www.nytimes.com/2023/12/09/technology/elon-musk-alex-jones-twitter-x.html", + "categories": [ + { + "_": "Right-Wing Extremism and Alt-Right", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Conspiracy Theories", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cyberharassment", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Censorship", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Twitter", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Jones, Alex (1974- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-10T18:52:08.000Z" + }, + { + "creator": "Kevin Roose", + "title": "This A.I. Subculture\u2019s Motto: Go, Go, Go", + "link": "https://www.nytimes.com/2023/12/10/technology/ai-acceleration.html", + "pubDate": "Sun, 10 Dec 2023 10:00:33 +0000", + "dc:creator": "Kevin Roose", + "content": "The eccentric pro-tech movement known as \u201cEffective Accelerationism\u201d wants to unshackle powerful A.I., and party along the way.", + "contentSnippet": "The eccentric pro-tech movement known as \u201cEffective Accelerationism\u201d wants to unshackle powerful A.I., and party along the way.", + "guid": "https://www.nytimes.com/2023/12/10/technology/ai-acceleration.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Open-Source Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Philosophy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "San Francisco Bay Area (Calif)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-10T10:00:33.000Z" + }, + { + "creator": "Cade Metz", + "title": "Key Players in OpenAI\u2019s Boardroom Drama", + "link": "https://www.nytimes.com/2023/12/09/technology/openai-boardroom-key-players.html", + "pubDate": "Sat, 09 Dec 2023 14:37:47 +0000", + "dc:creator": "Cade Metz", + "content": "A mix of prominent tech industry figures and people not well known outside the A.I. community played big roles in the upheaval at the company.", + "contentSnippet": "A mix of prominent tech industry figures and people not well known outside the A.I. community played big roles in the upheaval at the company.", + "guid": "https://www.nytimes.com/2023/12/09/technology/openai-boardroom-key-players.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Boards of Directors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Brockman, Greg", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Chesky, Brian", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Conway, Ron", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "D'Angelo, Adam", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Murati, Mira", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nadella, Satya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Shear, Emmett", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Summers, Lawrence H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sutskever, Ilya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Toner, Helen", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Taylor, Bret", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-09T14:37:47.000Z" + }, + { + "creator": "Somini Sengupta, Abdi Latif Dahir, Alex Travelli and Clifford Krauss", + "title": "Tiny Electric Vehicles Pack a Bigger Climate Punch Than Cars", + "link": "https://www.nytimes.com/2023/12/09/business/energy-environment/two-three-wheel-electric-vehicles.html", + "pubDate": "Sat, 09 Dec 2023 13:35:49 +0000", + "dc:creator": "Somini Sengupta, Abdi Latif Dahir, Alex Travelli and Clifford Krauss", + "content": "Two- and three-wheeled vehicles, used by billions of people, are moving away from fossil fuels to batteries faster than cars in countries that have made the energy transition a priority.", + "contentSnippet": "Two- and three-wheeled vehicles, used by billions of people, are moving away from fossil fuels to batteries faster than cars in countries that have made the energy transition a priority.", + "guid": "https://www.nytimes.com/2023/12/09/business/energy-environment/two-three-wheel-electric-vehicles.html", + "categories": [ + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric Bicycles, Motorcycles and Scooters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pedicabs and Rickshaws", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Batteries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Air Pollution", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Natural Gas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Trade and World Market", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Poverty", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Urban Areas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Infrastructure (Public Works)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobile Service and Charging Stations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "India", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Kenya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Mexico", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Mexico City (Mexico)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Nairobi (Kenya)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-09T13:35:49.000Z" + }, + { + "creator": "Tripp Mickle, Cade Metz, Mike Isaac and Karen Weise", + "title": "Inside OpenAI\u2019s Crisis Over the Future of Artificial Intelligence", + "link": "https://www.nytimes.com/2023/12/09/technology/openai-altman-inside-crisis.html", + "pubDate": "Sat, 09 Dec 2023 12:51:31 +0000", + "dc:creator": "Tripp Mickle, Cade Metz, Mike Isaac and Karen Weise", + "content": "Split over the leadership of Sam Altman, board members and executives turned on one another. Their brawl exposed the cracks at the heart of the A.I. movement.", + "contentSnippet": "Split over the leadership of Sam Altman, board members and executives turned on one another. Their brawl exposed the cracks at the heart of the A.I. movement.", + "guid": "https://www.nytimes.com/2023/12/09/technology/openai-altman-inside-crisis.html", + "categories": [ + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Boards of Directors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Appointments and Executive Changes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Sutskever, Ilya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "D'Angelo, Adam", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Toner, Helen", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "McCauley, Tasha", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Brockman, Greg", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Murati, Mira", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Summers, Lawrence H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nadella, Satya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-09T12:51:31.000Z" + }, + { + "creator": "Adam Satariano", + "title": "E.U. Agrees on AI Act, Landmark Regulation for Artificial Intelligence", + "link": "https://www.nytimes.com/2023/12/08/technology/eu-ai-act-regulation.html", + "pubDate": "Fri, 08 Dec 2023 23:20:31 +0000", + "dc:creator": "Adam Satariano", + "content": "The agreement over the A.I. Act solidifies one of the world\u2019s first comprehensive attempts to limit the use of artificial intelligence.", + "contentSnippet": "The agreement over the A.I. Act solidifies one of the world\u2019s first comprehensive attempts to limit the use of artificial intelligence.", + "guid": "https://www.nytimes.com/2023/12/08/technology/eu-ai-act-regulation.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Facial Recognition Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Vision", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Europe", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-08T23:20:31.000Z" + }, + { + "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano and Rowan Niemisto", + "title": "Google\u2019s Epic Loss, Silicon Valley\u2019s Curious New Subculture and How 2023 Changed the Internet", + "link": "https://www.nytimes.com/2023/12/15/podcasts/hard-fork-google-epic.html", + "pubDate": "Fri, 15 Dec 2023 10:08:28 +0000", + "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano and Rowan Niemisto", + "content": "Looks like Google is on the naughty list this year.", + "contentSnippet": "Looks like Google is on the naughty list this year.", + "guid": "https://www.nytimes.com/2023/12/15/podcasts/hard-fork-google-epic.html", + "categories": [ + { + "_": "Science and Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Epic Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Prince, Matthew", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "CloudFlare Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Andreessen, Marc L", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-15T10:08:28.000Z" + }, + { + "creator": "John Koblin and Nicole Sperling", + "title": "Studios Are Loosening Their Reluctance to Send Old Shows Back to Netflix", + "link": "https://www.nytimes.com/2023/12/15/business/media/netflix-licensed-shows.html", + "pubDate": "Fri, 15 Dec 2023 10:03:42 +0000", + "dc:creator": "John Koblin and Nicole Sperling", + "content": "When building their own streaming companies, many entertainment studios ended lucrative licensing deals with Netflix. But they missed the money too much.", + "contentSnippet": "When building their own streaming companies, many entertainment studios ended lucrative licensing deals with Netflix. But they missed the money too much.", + "guid": "https://www.nytimes.com/2023/12/15/business/media/netflix-licensed-shows.html", + "categories": [ + { + "_": "Netflix Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Sarandos, Ted", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Television", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Movies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cable Television", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Warner Bros Discovery", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Walt Disney Company", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-15T10:03:42.000Z" + }, + { + "creator": "Orlando Mayorquin", + "title": "The Last of Us Multiplayer Video Game Is Scrapped", + "link": "https://www.nytimes.com/2023/12/14/technology/naughty-dog-last-of-us-multiplayer-canceled.html", + "pubDate": "Fri, 15 Dec 2023 04:29:29 +0000", + "dc:creator": "Orlando Mayorquin", + "content": "The video game studio Naughty Dog said The Last of Us Online was too resource-intensive to complete without delaying the development of future single-player versions of the game.", + "contentSnippet": "The video game studio Naughty Dog said The Last of Us Online was too resource-intensive to complete without delaying the development of future single-player versions of the game.", + "guid": "https://www.nytimes.com/2023/12/14/technology/naughty-dog-last-of-us-multiplayer-canceled.html", + "categories": [ + { + "_": "Computer and Video Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Television", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Home Box Office", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Naughty Dog Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Emmy Awards", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-15T04:29:29.000Z" + }, + { + "creator": "Sapna Maheshwari", + "title": "TikTok Quietly Changes User Terms Amid Growing Legal Scrutiny", + "link": "https://www.nytimes.com/2023/12/14/business/media/tiktok-changes-user-terms.html", + "pubDate": "Thu, 14 Dec 2023 20:58:05 +0000", + "dc:creator": "Sapna Maheshwari", + "content": "Some lawyers say the changes could make it more difficult to bring legal action against the company.", + "contentSnippet": "Some lawyers say the changes could make it more difficult to bring legal action against the company.", + "guid": "https://www.nytimes.com/2023/12/14/business/media/tiktok-changes-user-terms.html", + "categories": [ + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Instagram Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ethics and Official Misconduct", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Arbitration, Conciliation and Mediation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Attorneys General", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Teenagers and Adolescence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-14T20:58:05.000Z" + }, + { + "creator": "Tripp Mickle", + "title": "GM\u2019s Cruise Cuts About 25 Percent of Its Workers", + "link": "https://www.nytimes.com/2023/12/14/technology/cruise-layoffs.html", + "pubDate": "Thu, 14 Dec 2023 20:00:08 +0000", + "dc:creator": "Tripp Mickle", + "content": "The embattled self-driving car subsidiary of General Motors faces an uncertain future after California regulators shut down its robot taxi service in the state.", + "contentSnippet": "The embattled self-driving car subsidiary of General Motors faces an uncertain future after California regulators shut down its robot taxi service in the state.", + "guid": "https://www.nytimes.com/2023/12/14/technology/cruise-layoffs.html", + "categories": [ + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Driverless and Semiautonomous Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Robots and Robotics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cruise LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "General Motors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-14T20:00:08.000Z" + }, + { + "creator": "Madison Malone Kircher", + "title": "TikTok\u2019s Bow Trend Gets Absurd", + "link": "https://www.nytimes.com/2023/12/15/style/bows-tiktok-trend.html", + "pubDate": "Fri, 15 Dec 2023 14:56:29 +0000", + "dc:creator": "Madison Malone Kircher", + "content": "In an unstoppable TikTok trend that is growing more satirical by the day, pretty pink ribbons keep popping up in all the wrong places.", + "contentSnippet": "In an unstoppable TikTok trend that is growing more satirical by the day, pretty pink ribbons keep popping up in all the wrong places.", + "guid": "https://www.nytimes.com/2023/12/15/style/bows-tiktok-trend.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Comedy and Humor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Del Rey, Lana", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-15T14:56:29.000Z" + }, + { + "creator": "Alex Williams", + "title": "Vera Molnar, Pioneer of Computer Art, Dies at 99", + "link": "https://www.nytimes.com/2023/12/15/arts/vera-molnar-dead.html", + "pubDate": "Fri, 15 Dec 2023 15:25:31 +0000", + "dc:creator": "Alex Williams", + "content": "Experimenting with algorithms, she began to employ the principles of computation in her work even before she gained access to an actual computer.", + "contentSnippet": "Experimenting with algorithms, she began to employ the principles of computation in her work even before she gained access to an actual computer.", + "guid": "https://www.nytimes.com/2023/12/15/arts/vera-molnar-dead.html", + "categories": [ + { + "_": "Molnar, Vera", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Art", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Paris (France)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Hungary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sotheby's", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-15T15:25:31.000Z" + }, + { + "creator": "Sopan Deb", + "title": "Boy, 13, Is Believed to Be the First to \u2018Beat\u2019 Tetris", + "link": "https://www.nytimes.com/2024/01/03/arts/tetris-beat-blue-scuti.html", + "pubDate": "Thu, 04 Jan 2024 07:20:30 +0000", + "dc:creator": "Sopan Deb", + "content": "Willis Gibson, a competitive Tetris player prodigy from Oklahoma, advanced so far in the original Nintendo version of the game that it froze. \u201cI can\u2019t feel my fingers,\u201d he said afterward.", + "contentSnippet": "Willis Gibson, a competitive Tetris player prodigy from Oklahoma, advanced so far in the original Nintendo version of the game that it froze. \u201cI can\u2019t feel my fingers,\u201d he said afterward.", + "guid": "https://www.nytimes.com/2024/01/03/arts/tetris-beat-blue-scuti.html", + "categories": [ + { + "_": "Tetris (Video Game)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_ttl" + } + }, + { + "_": "Computer and Video Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Records and Achievements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nintendo Co Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Oklahoma", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-04T07:20:30.000Z" + }, + { + "creator": "Neal E. Boudette", + "title": "Auto Sales Are Expected to Slow After a Strong 2023", + "link": "https://www.nytimes.com/2024/01/03/business/economy/auto-sales-general-motors.html", + "pubDate": "Thu, 04 Jan 2024 04:01:06 +0000", + "dc:creator": "Neal E. Boudette", + "content": "Automakers sold more cars in 2023 than a year ago as supply chain chaos ended, but sales are now under pressure from higher interest rates.", + "contentSnippet": "Automakers sold more cars in 2023 than a year ago as supply chain chaos ended, but sales are now under pressure from higher interest rates.", + "guid": "https://www.nytimes.com/2024/01/03/business/economy/auto-sales-general-motors.html", + "categories": [ + { + "_": "United States Economy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Company Reports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shortages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "General Motors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Discount Selling", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Two Thousand Twenty Three", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supply Chain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Batteries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Toyota Motor Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-04T04:01:06.000Z" + }, + { + "creator": "Zachary Small", + "title": "Museum World Hit by Cyberattack on Widely Used Software ", + "link": "https://www.nytimes.com/2024/01/03/arts/design/museum-cyberattack.html", + "pubDate": "Wed, 03 Jan 2024 23:30:41 +0000", + "dc:creator": "Zachary Small", + "content": "Hackers targeted software that many museums use to show their collections online and to manage sensitive information.", + "contentSnippet": "Hackers targeted software that many museums use to show their collections online and to manage sensitive information.", + "guid": "https://www.nytimes.com/2024/01/03/arts/design/museum-cyberattack.html", + "categories": [ + { + "_": "Museums", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Art", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Security", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cyberattacks and Hackers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Network Outages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Loeb, Frances Lehman, Art Center", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Rubin Museum of Art", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Museum of Fine Arts (Boston)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Crystal Bridges", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-03T23:30:41.000Z" + }, + { + "creator": "Noam Scheiber", + "title": "SpaceX Illegally Fired Workers Critical of Musk, NLRB Says", + "link": "https://www.nytimes.com/2024/01/03/business/spacex-elon-musk-nlrb-workers.html", + "pubDate": "Wed, 03 Jan 2024 20:37:11 +0000", + "dc:creator": "Noam Scheiber", + "content": "The National Labor Relations Board said the rocket company had wrongly dismissed eight people for a letter raising concerns about the chief executive.", + "contentSnippet": "The National Labor Relations Board said the rocket company had wrongly dismissed eight people for a letter raising concerns about the chief executive.", + "guid": "https://www.nytimes.com/2024/01/03/business/spacex-elon-musk-nlrb-workers.html", + "categories": [ + { + "_": "Workplace Hazards and Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Space Exploration Technologies Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Labor Relations Board", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Sexual Harassment", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Labor and Jobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Private Spaceflight", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Letters", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Twitter", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Shotwell, Gwynne", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-03T20:37:11.000Z" + }, + { + "creator": "Edward Wong and Amy Qin", + "title": "Asian American Officials Cite Unfair Scrutiny and Lost Jobs in China Spy Tensions", + "link": "https://www.nytimes.com/2023/12/31/us/politics/china-spy-asian-americans.html", + "pubDate": "Tue, 02 Jan 2024 23:09:04 +0000", + "dc:creator": "Edward Wong and Amy Qin", + "content": "National security employees with ties to Asia say U.S. counterintelligence officers wrongly regard them as potential spies and ban them from jobs.", + "contentSnippet": "National security employees with ties to Asia say U.S. counterintelligence officers wrongly regard them as potential spies and ban them from jobs.", + "guid": "https://www.nytimes.com/2023/12/31/us/politics/china-spy-asian-americans.html", + "categories": [ + { + "_": "Asian-Americans", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Chinese-Americans", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Discrimination", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Diplomatic Service, Embassies and Consulates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hiring and Promotion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "State Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Defense Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Federal Bureau of Investigation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Foreign Service (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Commerce Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-02T23:09:04.000Z" + }, + { + "creator": "Becky Hughes", + "title": "A 9-Month Cruise Is TikTok\u2019s Favorite New \u2018Reality Show\u2019", + "link": "https://www.nytimes.com/2023/12/31/travel/tiktok-royal-caribbean-cruise.html", + "pubDate": "Tue, 02 Jan 2024 20:06:10 +0000", + "dc:creator": "Becky Hughes", + "content": "Social media users, gripped by the potential for drama on Royal Caribbean\u2019s world cruise, have turned the ship\u2019s unwitting passengers into \u201ccast members\u201d overnight.", + "contentSnippet": "Social media users, gripped by the potential for drama on Royal Caribbean\u2019s world cruise, have turned the ship\u2019s unwitting passengers into \u201ccast members\u201d overnight.", + "guid": "https://www.nytimes.com/2023/12/31/travel/tiktok-royal-caribbean-cruise.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cruises", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Travel and Vacations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Royal Caribbean Cruises Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-02T20:06:10.000Z" + }, + { + "creator": "Michael Roston", + "title": "A Stunning Eclipse, a Moon Race and Other Space Events in 2024", + "link": "https://www.nytimes.com/2024/01/02/science/space-astronomy-events-2024.html", + "pubDate": "Tue, 02 Jan 2024 14:46:19 +0000", + "dc:creator": "Michael Roston", + "content": "In April, people across North America will be able to gaze at a stunning total eclipse. And astronauts may get closer to that promised moon landing.", + "contentSnippet": "In April, people across North America will be able to gaze at a stunning total eclipse. And astronauts may get closer to that promised moon landing.", + "guid": "https://www.nytimes.com/2024/01/02/science/space-astronomy-events-2024.html", + "categories": [ + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Private Spaceflight", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Solar System", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Eclipses", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rocket Science and Propulsion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Europa (Moon of Jupiter)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Moon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mars (Planet)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Asteroids", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Blue Origin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Boeing Company", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "European Space Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Intuitive Machines LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Aeronautics and Space Administration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Space Exploration Technologies Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Launch Alliance", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-02T14:46:19.000Z" + }, + { + "creator": "Adam Liptak", + "title": "Chief Justice Roberts Sees Promise and Danger of A.I. in the Courts", + "link": "https://www.nytimes.com/2023/12/31/us/john-roberts-supreme-court.html", + "pubDate": "Mon, 01 Jan 2024 02:05:12 +0000", + "dc:creator": "Adam Liptak", + "content": "In his year-end report, Chief Justice John G. Roberts Jr. focused on the new technology while steering clear of Supreme Court ethics and Donald J. Trump\u2019s criminal cases.", + "contentSnippet": "In his year-end report, Chief Justice John G. Roberts Jr. focused on the new technology while steering clear of Supreme Court ethics and Donald J. Trump\u2019s criminal cases.", + "guid": "https://www.nytimes.com/2023/12/31/us/john-roberts-supreme-court.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Courts and the Judiciary", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ethics and Official Misconduct", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Supreme Court (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Roberts, John G Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-01T02:05:12.000Z" + }, + { + "creator": "Kashmir Hill", + "title": "How Tracking and Technology in Cars Is Being Weaponized by Abusive Partners", + "link": "https://www.nytimes.com/2023/12/31/technology/car-trackers-gps-abuse.html", + "pubDate": "Sun, 31 Dec 2023 08:00:24 +0000", + "dc:creator": "Kashmir Hill", + "content": "Apps that remotely track and control cars are being weaponized by abusive partners. Car manufacturers have been slow to respond, according to victims and experts.", + "contentSnippet": "Apps that remotely track and control cars are being weaponized by abusive partners. Car manufacturers have been slow to respond, according to victims and experts.", + "guid": "https://www.nytimes.com/2023/12/31/technology/car-trackers-gps-abuse.html", + "categories": [ + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stalking (Crime)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cyberharassment", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-31T08:00:24.000Z" + }, + { + "creator": "Michael Forsythe and Gabriel J.X. Dance", + "title": "Un estudiante mantuvo en secreto una criptomina de 6 millones de d\u00f3lares", + "link": "https://www.nytimes.com/es/2023/12/30/espanol/criptomina-secreto-texas-china.html", + "pubDate": "Sat, 30 Dec 2023 10:02:18 +0000", + "dc:creator": "Michael Forsythe and Gabriel J.X. Dance", + "content": "Una disputa legal en un peque\u00f1o pueblo de Texas revela inesperadamente c\u00f3mo los ciudadanos chinos pueden mover dinero a Estados Unidos sin llamar la atenci\u00f3n de las autoridades de ninguno de los dos pa\u00edses.", + "contentSnippet": "Una disputa legal en un peque\u00f1o pueblo de Texas revela inesperadamente c\u00f3mo los ciudadanos chinos pueden mover dinero a Estados Unidos sin llamar la atenci\u00f3n de las autoridades de ninguno de los dos pa\u00edses.", + "guid": "https://www.nytimes.com/es/2023/12/30/espanol/criptomina-secreto-texas-china.html", + "categories": [ + { + "_": "Bitcoin (Currency)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "BitRush Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Binance", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Tether Operations Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Texas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-30T10:02:18.000Z" + }, + { + "creator": "J. Edward Moreno", + "title": "Boom in A.I. Prompts a Test of Copyright Law", + "link": "https://www.nytimes.com/2023/12/30/business/media/copyright-law-ai-media.html", + "pubDate": "Sat, 30 Dec 2023 10:01:57 +0000", + "dc:creator": "J. Edward Moreno", + "content": "The use of content from news and information providers to train artificial intelligence systems may force a reassessment of where to draw legal lines.", + "contentSnippet": "The use of content from news and information providers to train artificial intelligence systems may force a reassessment of where to draw legal lines.", + "guid": "https://www.nytimes.com/2023/12/30/business/media/copyright-law-ai-media.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Copyrights and Copyright Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Intellectual Property", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Newspapers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "New York Times", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-12-30T10:01:57.000Z" + }, + { + "creator": "Leslie Katz", + "title": "An Artist in Residence on A.I.\u2019s Territory", + "link": "https://www.nytimes.com/2023/12/30/technology/openai-artist-alexander-reben.html", + "pubDate": "Sat, 30 Dec 2023 10:00:48 +0000", + "dc:creator": "Leslie Katz", + "content": "Alexander Reben is taking his tech-savvy perspective to OpenAI, a company that some in the art world believe is a threat to their future.", + "contentSnippet": "Alexander Reben is taking his tech-savvy perspective to OpenAI, a company that some in the art world believe is a threat to their future.", + "guid": "https://www.nytimes.com/2023/12/30/technology/openai-artist-alexander-reben.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Art", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Culture (Arts)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Copyrights and Copyright Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Reben, Alexander", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-12-30T10:00:48.000Z" + }, + { + "creator": "Siobhan Roberts", + "title": "Need a Home for 80,000 Puzzles? Try an Italian Castle.", + "link": "https://www.nytimes.com/2023/12/29/science/puzzles-mechanical-miller.html", + "pubDate": "Sat, 30 Dec 2023 02:12:05 +0000", + "dc:creator": "Siobhan Roberts", + "content": "Earlier this year, George and Roxanne Miller relocated the world\u2019s largest collection of mechanical puzzles from their home in Florida. But first they took a road trip.", + "contentSnippet": "Earlier this year, George and Roxanne Miller relocated the world\u2019s largest collection of mechanical puzzles from their home in Florida. But first they took a road trip.", + "guid": "https://www.nytimes.com/2023/12/29/science/puzzles-mechanical-miller.html", + "categories": [ + { + "_": "Collectors and Collections", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Puzzles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Palaces and Castles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Design", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Road Trips", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Panicale (Italy)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-30T02:12:05.000Z" + }, + { + "creator": "Peter Eavis and Mark Abramson", + "title": "California Pushes Electric Trucks as the Future of Freight", + "link": "https://www.nytimes.com/2023/12/28/business/energy-environment/electric-trucks-port-california.html", + "pubDate": "Fri, 29 Dec 2023 21:36:46 +0000", + "dc:creator": "Peter Eavis and Mark Abramson", + "content": "A mainstay of cargo transport will be phased out at ports as California bans new registrations of carbon-fuel trucks in favor of nonpolluting ones.", + "contentSnippet": "A mainstay of cargo transport will be phased out at ports as California bans new registrations of carbon-fuel trucks in favor of nonpolluting ones.", + "guid": "https://www.nytimes.com/2023/12/28/business/energy-environment/electric-trucks-port-california.html", + "categories": [ + { + "_": "California", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Trucks and Trucking", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freight (Cargo)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Diesel Power", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Port of Los Angeles (Calif)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Nikola Motor Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fuel Emissions (Transportation)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Infrastructure (Public Works)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-29T21:36:46.000Z" + }, + { + "creator": "Benjamin Mullin", + "title": "Inside the News Industry\u2019s Uneasy Negotiations With OpenAI", + "link": "https://www.nytimes.com/2023/12/29/business/media/media-openai-chatgpt.html", + "pubDate": "Fri, 29 Dec 2023 13:05:31 +0000", + "dc:creator": "Benjamin Mullin", + "content": "Several major publishers have been in talks to license content to the creator of ChatGPT, but agreement on the price and terms has been elusive.", + "contentSnippet": "Several major publishers have been in talks to license content to the creator of ChatGPT, but agreement on the price and terms has been elusive.", + "guid": "https://www.nytimes.com/2023/12/29/business/media/media-openai-chatgpt.html", + "categories": [ + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Newspapers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Copyrights and Copyright Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "New York Times", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Associated Press", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Wall Street Journal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Washington Post", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Atlanta Journal-Constitution", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Springer, Axel, Verlag AG", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Axel Springer Verlag AG", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "News Media Alliance", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "News Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-29T13:05:31.000Z" + }, + { + "creator": "Jonathan O\u2019Callaghan", + "title": "The First Secret Asteroid Mission Won\u2019t Be the Last", + "link": "https://www.nytimes.com/2023/12/27/science/secret-asteroid-mission-astroforge.html", + "pubDate": "Thu, 28 Dec 2023 20:23:17 +0000", + "dc:creator": "Jonathan O\u2019Callaghan", + "content": "AstroForge, a private company, wants to mine a space rock, but it doesn\u2019t want the competition to find out which one.", + "contentSnippet": "AstroForge, a private company, wants to mine a space rock, but it doesn\u2019t want the competition to find out which one.", + "guid": "https://www.nytimes.com/2023/12/27/science/secret-asteroid-mission-astroforge.html", + "categories": [ + { + "_": "AstroForge Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Asteroids", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mines and Mining", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Private Spaceflight", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Solar System", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rocket Science and Propulsion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-28T20:23:17.000Z" + }, + { + "creator": "Mike Ives", + "title": "Apple Watch Sales to Resume, for Now", + "link": "https://www.nytimes.com/2023/12/28/technology/apple-watch-banned-appeals-court.html", + "pubDate": "Thu, 28 Dec 2023 19:23:53 +0000", + "dc:creator": "Mike Ives", + "content": "The company pulled two watches from stores after losing a patent case, but an appeals court temporarily paused enforcement of that ruling while the legal battle continues.", + "contentSnippet": "The company pulled two watches from stores after losing a patent case, but an appeals court temporarily paused enforcement of that ruling while the legal battle continues.", + "guid": "https://www.nytimes.com/2023/12/28/technology/apple-watch-banned-appeals-court.html", + "categories": [ + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Watches and Clocks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wearable Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inventions and Patents", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Shopping and Retail", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "California", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-12-28T19:23:53.000Z" + }, + { + "creator": "David Berreby", + "title": "ChatGPT Helps, and Worries, Business Consultants, Study Finds", + "link": "https://www.nytimes.com/2023/12/28/science/chatgpt-business-consultants.html", + "pubDate": "Thu, 28 Dec 2023 10:01:52 +0000", + "dc:creator": "David Berreby", + "content": "The A.I. tool helped most with creative tasks. With more analytical work, however, the technology led to more mistakes.", + "contentSnippet": "The A.I. tool helped most with creative tasks. With more analytical work, however, the technology led to more mistakes.", + "guid": "https://www.nytimes.com/2023/12/28/science/chatgpt-business-consultants.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Consultants", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Creativity", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Boston Consulting Group", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-28T10:01:52.000Z" + }, + { + "creator": "Jason Farago", + "title": "A.I. Can Make Art That Feels Human. Whose Fault Is That?", + "link": "https://www.nytimes.com/2023/12/28/arts/design/artists-artificial-intelligence.html", + "pubDate": "Thu, 28 Dec 2023 10:01:24 +0000", + "dc:creator": "Jason Farago", + "content": "A fake Drake/Weeknd mash-up is not a threat to our species\u2019s culture. It\u2019s a warning: We can\u2019t let our imaginations shrink to machine size.", + "contentSnippet": "A fake Drake/Weeknd mash-up is not a threat to our species\u2019s culture. It\u2019s a warning: We can\u2019t let our imaginations shrink to machine size.", + "guid": "https://www.nytimes.com/2023/12/28/arts/design/artists-artificial-intelligence.html", + "categories": [ + { + "_": "Art", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Two Thousand Twenty Three", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Culture (Arts)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-28T10:01:24.000Z" + }, + { + "creator": "Michael M. Grynbaum and Ryan Mac", + "title": "New York Times Sues OpenAI and Microsoft Over Use of Copyrighted Work", + "link": "https://www.nytimes.com/2023/12/27/business/media/new-york-times-open-ai-microsoft-lawsuit.html", + "pubDate": "Wed, 27 Dec 2023 22:03:21 +0000", + "dc:creator": "Michael M. Grynbaum and Ryan Mac", + "content": "Millions of articles from The New York Times were used to train chatbots that now compete with it, the lawsuit said.", + "contentSnippet": "Millions of articles from The New York Times were used to train chatbots that now compete with it, the lawsuit said.", + "guid": "https://www.nytimes.com/2023/12/27/business/media/new-york-times-open-ai-microsoft-lawsuit.html", + "categories": [ + { + "_": "New York Times", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Newspapers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Copyrights and Copyright Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Compensation for Damages (Law)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-12-27T22:03:21.000Z" + }, + { + "creator": "Emmett Lindner", + "title": "Happy Puppies and Silly Geese: Pushing the Limits of A.I. Absurdity", + "link": "https://www.nytimes.com/2024/01/04/technology/ai-chatgpt-images-memes.html", + "pubDate": "Thu, 04 Jan 2024 15:23:23 +0000", + "dc:creator": "Emmett Lindner", + "content": "A recent update to ChatGPT made it easier to create images. It wasn\u2019t long before some began pushing the chatbot to its limits.", + "contentSnippet": "A recent update to ChatGPT made it easier to create images. It wasn\u2019t long before some began pushing the chatbot to its limits.", + "guid": "https://www.nytimes.com/2024/01/04/technology/ai-chatgpt-images-memes.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Yudkowsky, Eliezer", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-04T15:23:23.000Z" + }, + { + "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Kate LoPresti, Jen Poyant, Daniel Ramirez, Dan Powell, Marion Lozano, Rowan Niemisto and Pat McCusker", + "title": "The Times Sues OpenAI, a Debate Over iMessage and Our New Year\u2019s Tech Resolutions", + "link": "https://www.nytimes.com/2024/01/05/podcasts/nyt-lawsuit-openai-imessage-new-years-tech.html", + "pubDate": "Fri, 05 Jan 2024 10:02:43 +0000", + "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Kate LoPresti, Jen Poyant, Daniel Ramirez, Dan Powell, Marion Lozano, Rowan Niemisto and Pat McCusker", + "content": "\u201cThis is sort of the big kahuna.\u201d", + "contentSnippet": "\u201cThis is sort of the big kahuna.\u201d", + "guid": "https://www.nytimes.com/2024/01/05/podcasts/nyt-lawsuit-openai-imessage-new-years-tech.html", + "categories": [ + { + "_": "Science and Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "New York Times", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Beeper Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-05T10:02:43.000Z" + }, + { + "creator": "David Yaffe-Bellany", + "title": "$3 Billion of New Bitcoin Funds Change Hands in First Trading Day", + "link": "https://www.nytimes.com/2024/01/11/technology/bitcoin-etf-trading.html", + "pubDate": "Thu, 11 Jan 2024 20:01:02 +0000", + "dc:creator": "David Yaffe-Bellany", + "content": "The products, known as exchange-traded funds, were approved by federal regulators this week, a watershed moment for the crypto industry.", + "contentSnippet": "The products, known as exchange-traded funds, were approved by federal regulators this week, a watershed moment for the crypto industry.", + "guid": "https://www.nytimes.com/2024/01/11/technology/bitcoin-etf-trading.html", + "categories": [ + { + "_": "Virtual Currency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bitcoin (Currency)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Nasdaq Composite Index", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "BlackRock Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Coinbase Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Securities and Exchange Commission", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gensler, Gary S", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-11T20:01:02.000Z" + }, + { + "creator": "Mike Isaac", + "title": "Discord Cuts 17% of Workers in Latest Tech Layoffs", + "link": "https://www.nytimes.com/2024/01/11/technology/discord-tech-layoffs.html", + "pubDate": "Thu, 11 Jan 2024 19:33:09 +0000", + "dc:creator": "Mike Isaac", + "content": "In an internal memo, Discord said it had grown five times its size since 2020.", + "contentSnippet": "In an internal memo, Discord said it had grown five times its size since 2020.", + "guid": "https://www.nytimes.com/2024/01/11/technology/discord-tech-layoffs.html", + "categories": [ + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Labor and Jobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer and Video Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Discord Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Citron, Jason", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-11T19:33:09.000Z" + }, + { + "creator": "Kashmir Hill", + "title": "Federal Regulator Questions Carmakers About Unwanted Tracking via Their Apps", + "link": "https://www.nytimes.com/2024/01/11/technology/fcc-car-apps-stalking.html", + "pubDate": "Thu, 11 Jan 2024 19:10:03 +0000", + "dc:creator": "Kashmir Hill", + "content": "The Federal Communications Commission is concerned about abusive partners using connected car apps to harass and track their victims.", + "contentSnippet": "The Federal Communications Commission is concerned about abusive partners using connected car apps to harass and track their victims.", + "guid": "https://www.nytimes.com/2024/01/11/technology/fcc-car-apps-stalking.html", + "categories": [ + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Law and Legislation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stalking (Crime)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Domestic Violence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Federal Communications Commission", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Rosenworcel, Jessica", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-11T19:10:03.000Z" + }, + { + "creator": "Nico Grant", + "title": "Google Cuts Hundreds of Jobs in Engineering and Other Divisions", + "link": "https://www.nytimes.com/2024/01/11/technology/google-layoffs.html", + "pubDate": "Thu, 11 Jan 2024 18:50:02 +0000", + "dc:creator": "Nico Grant", + "content": "The company, which has been working to trim expenses, laid off employees who worked on core engineering, the Google Assistant product and hardware such as the Pixel phone.", + "contentSnippet": "The company, which has been working to trim expenses, laid off employees who worked on core engineering, the Google Assistant product and hardware such as the Pixel phone.", + "guid": "https://www.nytimes.com/2024/01/11/technology/google-layoffs.html", + "categories": [ + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Engineering and Engineers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alphabet Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-11T18:50:02.000Z" + }, + { + "creator": "Natasha Singer", + "title": "AI and Education: Will Chatbots Soon Tutor Your Children?", + "link": "https://www.nytimes.com/2024/01/11/technology/ai-chatbots-khan-education-tutoring.html", + "pubDate": "Thu, 11 Jan 2024 10:00:33 +0000", + "dc:creator": "Natasha Singer", + "content": "New A.I. tools could enable a Silicon Valley dream: bots that customize learning for pupils. Prior attempts have not lived up to the hype.", + "contentSnippet": "New A.I. tools could enable a Silicon Valley dream: bots that customize learning for pupils. Prior attempts have not lived up to the hype.", + "guid": "https://www.nytimes.com/2024/01/11/technology/ai-chatbots-khan-education-tutoring.html", + "categories": [ + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "tutoring bots", + "$": { + "domain": "" + } + }, + { + "_": "Education (K-12)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "education technology", + "$": { + "domain": "" + } + }, + { + "_": "Khanmigo", + "$": { + "domain": "" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "personalized learning", + "$": { + "domain": "" + } + }, + { + "_": "E-Learning", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Khan Academy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Khan Lab School", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Khan, Sal (1976- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-11T10:00:33.000Z" + }, + { + "creator": "Tiffany Hsu and Yiwen Lu", + "title": "No, Taylor Swift no est\u00e1 vendiendo ollas Le Creuset", + "link": "https://www.nytimes.com/es/2024/01/11/espanol/ciencia-y-tecnologia/taylor-swift-le-creuset.html", + "pubDate": "Thu, 11 Jan 2024 08:00:19 +0000", + "dc:creator": "Tiffany Hsu and Yiwen Lu", + "content": "El supuesto patrocinio de Swift a los productos de la empresa, que ha aparecido en anuncios publicados en Facebook y otros medios, es falso.", + "contentSnippet": "El supuesto patrocinio de Swift a los productos de la empresa, que ha aparecido en anuncios publicados en Facebook y otros medios, es falso.", + "guid": "https://www.nytimes.com/es/2024/01/11/espanol/ciencia-y-tecnologia/taylor-swift-le-creuset.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Celebrities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Online Advertising", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Frauds and Swindling", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Voice and Speech", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Swift, Taylor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Le Creuset of America", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-11T08:00:19.000Z" + }, + { + "creator": "David Yaffe-Bellany", + "title": "SEC Approves New Bitcoin ETFs, in Boon for Crypto Industry", + "link": "https://www.nytimes.com/2024/01/10/technology/sec-bitcoin-approval-exchange-traded-funds.html", + "pubDate": "Wed, 10 Jan 2024 23:06:41 +0000", + "dc:creator": "David Yaffe-Bellany", + "content": "The Securities and Exchange Commission authorized financial firms to offer a Bitcoin investment product that some hope will accelerate adoption of the technology.", + "contentSnippet": "The Securities and Exchange Commission authorized financial firms to offer a Bitcoin investment product that some hope will accelerate adoption of the technology.", + "guid": "https://www.nytimes.com/2024/01/10/technology/sec-bitcoin-approval-exchange-traded-funds.html", + "categories": [ + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bitcoin (Currency)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Exchange Traded Funds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Securities and Exchange Commission", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gensler, Gary S", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-10T23:06:41.000Z" + }, + { + "creator": "Yiwen Lu", + "title": "Amazon Cuts Hundreds of Jobs at Studios and Twitch", + "link": "https://www.nytimes.com/2024/01/10/technology/amazon-layoffs-studios-twitch.html", + "pubDate": "Wed, 10 Jan 2024 19:31:32 +0000", + "dc:creator": "Yiwen Lu", + "content": "The layoffs add to a growing number of cuts in the tech industry this past year.", + "contentSnippet": "The layoffs add to a growing number of cuts in the tech industry this past year.", + "guid": "https://www.nytimes.com/2024/01/10/technology/amazon-layoffs-studios-twitch.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Labor and Jobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Amazon.com Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Metro-Goldwyn-Mayer Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Twitch Interactive Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Clancy, Dan (1964- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-10T19:31:32.000Z" + }, + { + "creator": "Cade Metz", + "title": "OpenAI Unveils App Store for Customized Versions of ChatGPT", + "link": "https://www.nytimes.com/2024/01/10/technology/openai-app-store-chatgpt.html", + "pubDate": "Wed, 10 Jan 2024 19:01:29 +0000", + "dc:creator": "Cade Metz", + "content": "People who subscribe to OpenAI\u2019s ChatGPT Plus service will be able to browse the new store for tailored chatbots that perform different tasks.", + "contentSnippet": "People who subscribe to OpenAI\u2019s ChatGPT Plus service will be able to browse the new store for tailored chatbots that perform different tasks.", + "guid": "https://www.nytimes.com/2024/01/10/technology/openai-app-store-chatgpt.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-10T19:01:29.000Z" + }, + { + "creator": "Karen Weise, Cade Metz and David McCabe", + "title": "Microsoft Debates What to Do With A.I. Lab in China", + "link": "https://www.nytimes.com/2024/01/10/technology/microsoft-china-ai-lab.html", + "pubDate": "Wed, 10 Jan 2024 15:28:22 +0000", + "dc:creator": "Karen Weise, Cade Metz and David McCabe", + "content": "Amid U.S.-China tensions, the company has faced questions over whether operating an advanced research lab in Beijing is politically tenable.", + "contentSnippet": "Amid U.S.-China tensions, the company has faced questions over whether operating an advanced research lab in Beijing is politically tenable.", + "guid": "https://www.nytimes.com/2024/01/10/technology/microsoft-china-ai-lab.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Laboratories and Scientific Equipment", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Vision", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gates, Bill", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Lee, Kai-Fu", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Nadella, Satya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Smith, Bradford L", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T15:28:22.000Z" + }, + { + "creator": "Brian X. Chen", + "title": "The Best and Worst of Tech: Smartphones, Self-Driving Cars, More", + "link": "https://www.nytimes.com/2024/01/10/technology/personaltech/tech-smartphones-self-driving-cars.html", + "pubDate": "Wed, 10 Jan 2024 14:00:11 +0000", + "dc:creator": "Brian X. Chen", + "content": "The best tech, from universal power charging to foldable phones, solved practical problems. But the worst tech, including self-driving cars and cryptocurrency, put us in harm\u2019s way.", + "contentSnippet": "The best tech, from universal power charging to foldable phones, solved practical problems. But the worst tech, including self-driving cars and cryptocurrency, put us in harm\u2019s way.", + "guid": "https://www.nytimes.com/2024/01/10/technology/personaltech/tech-smartphones-self-driving-cars.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Virtual Currency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Smartphones", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Driverless and Semiautonomous Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Text Messaging", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "iPhone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cruise LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Two Thousand Twenty Four", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wireless Communications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Two Thousand Twenty Three", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cellular Telephones", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "HK FTX Trading Ltd (Futures Exchange)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Waymo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bankman-Fried, Sam", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-10T14:00:11.000Z" + }, + { + "creator": "Don Clark and Ana Swanson", + "title": "The Next Front in the U.S.-China Battle Over Chips", + "link": "https://www.nytimes.com/2024/01/10/technology/risc-v-china-united-states-chips-security.html", + "pubDate": "Wed, 10 Jan 2024 10:01:26 +0000", + "dc:creator": "Don Clark and Ana Swanson", + "content": "A U.S.-born chip technology called RISC-V has become critical to China\u2019s ambitions. Washington is debating whether and how to limit the technology.", + "contentSnippet": "A U.S.-born chip technology called RISC-V has become critical to China\u2019s ambitions. Washington is debating whether and how to limit the technology.", + "guid": "https://www.nytimes.com/2024/01/10/technology/risc-v-china-united-states-chips-security.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Chips", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Open-Source Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Commerce Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Communist Party of China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-10T10:01:26.000Z" + }, + { + "creator": "Benjamin Mullin", + "title": "Editor of The Los Angeles Times Steps Down", + "link": "https://www.nytimes.com/2024/01/09/business/media/la-times-editor-resigns.html", + "pubDate": "Tue, 09 Jan 2024 22:09:31 +0000", + "dc:creator": "Benjamin Mullin", + "content": "Kevin Merida, who took over the job in 2021, said in an internal note that his last day would be on Friday.", + "contentSnippet": "Kevin Merida, who took over the job in 2021, said in an internal note that his last day would be on Friday.", + "guid": "https://www.nytimes.com/2024/01/09/business/media/la-times-editor-resigns.html", + "categories": [ + { + "_": "Appointments and Executive Changes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Newspapers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Los Angeles Times", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Merida, Kevin (1957- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-09T22:09:31.000Z" + }, + { + "creator": "Tiffany Hsu and Yiwen Lu", + "title": "No, That\u2019s Not Taylor Swift Peddling Le Creuset Cookware", + "link": "https://www.nytimes.com/2024/01/09/technology/taylor-swift-le-creuset-ai-deepfake.html", + "pubDate": "Tue, 09 Jan 2024 19:44:04 +0000", + "dc:creator": "Tiffany Hsu and Yiwen Lu", + "content": "The singer did not promote a giveaway of the popular cookware, but an artificially generated version of her voice suggested otherwise.", + "contentSnippet": "The singer did not promote a giveaway of the popular cookware, but an artificially generated version of her voice suggested otherwise.", + "guid": "https://www.nytimes.com/2024/01/09/technology/taylor-swift-le-creuset-ai-deepfake.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Celebrities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Online Advertising", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Frauds and Swindling", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Voice and Speech", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Swift, Taylor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Le Creuset of America", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-09T19:44:04.000Z" + }, + { + "creator": "Kenneth Chang", + "title": "Vulcan Rocket Aces Its First Launch", + "link": "https://www.nytimes.com/2024/01/08/science/vulcan-rocket-launch-moon.html", + "pubDate": "Tue, 09 Jan 2024 19:10:23 +0000", + "dc:creator": "Kenneth Chang", + "content": "Despite problems with one of its payloads, the new launcher\u2019s flight was flawless, showing the potential of several vehicles that could chip away at SpaceX\u2019s dominance.", + "contentSnippet": "Despite problems with one of its payloads, the new launcher\u2019s flight was flawless, showing the potential of several vehicles that could chip away at SpaceX\u2019s dominance.", + "guid": "https://www.nytimes.com/2024/01/08/science/vulcan-rocket-launch-moon.html", + "categories": [ + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Private Spaceflight", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Astrobotic Technology Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Launch Alliance", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Aeronautics and Space Administration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Space Exploration Technologies Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Moon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rocket Science and Propulsion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-09T19:10:23.000Z" + }, + { + "creator": "Cade Metz", + "title": "OpenAI Says New York Times Lawsuit Against It Is \u2018Without Merit\u2019", + "link": "https://www.nytimes.com/2024/01/08/technology/openai-new-york-times-lawsuit.html", + "pubDate": "Tue, 09 Jan 2024 18:55:26 +0000", + "dc:creator": "Cade Metz", + "content": "The artificial intelligence start-up said that it collaborated with news organizations and that The Times, which accused it of copyright infringement, was not telling the full story.", + "contentSnippet": "The artificial intelligence start-up said that it collaborated with news organizations and that The Times, which accused it of copyright infringement, was not telling the full story.", + "guid": "https://www.nytimes.com/2024/01/08/technology/openai-new-york-times-lawsuit.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Copyrights and Copyright Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "New York Times", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-09T18:55:26.000Z" + }, + { + "creator": "Edward Wong, Mark Mazzetti and Paul Mozur", + "title": "A.I. Giant Tied to China Under Scrutiny", + "link": "https://www.nytimes.com/2024/01/09/us/politics/ai-china-uae-g42.html", + "pubDate": "Tue, 09 Jan 2024 12:36:40 +0000", + "dc:creator": "Edward Wong, Mark Mazzetti and Paul Mozur", + "content": "A congressional committee made the demand of the Commerce Department after The Times reported on concerns among U.S. intelligence officials over the Emirati company, G42.", + "contentSnippet": "A congressional committee made the demand of the Commerce Department after The Times reported on concerns among U.S. intelligence officials over the Emirati company, G42.", + "guid": "https://www.nytimes.com/2024/01/09/us/politics/ai-china-uae-g42.html", + "categories": [ + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Surveillance of Citizens by Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Classified Information and State Secrets", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Embargoes and Sanctions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Commerce Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Arab Emirates", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "House of Representatives", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Yitu Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "ToTok (Mobile App)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Dark Matter LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-09T12:36:40.000Z" + }, + { + "creator": "Lyndie Chiou", + "title": "How Astronomers Are Saving Astronomy From Satellites \u2014 For Now", + "link": "https://www.nytimes.com/2024/01/09/science/astronomy-telescopes-satellites-spacex-starlink.html", + "pubDate": "Tue, 09 Jan 2024 12:15:43 +0000", + "dc:creator": "Lyndie Chiou", + "content": "Even the most powerful telescopes are in peril as orbits above Earth fill with thousands of new satellites. But scientists aren\u2019t ready to give up the night sky.", + "contentSnippet": "Even the most powerful telescopes are in peril as orbits above Earth fill with thousands of new satellites. But scientists aren\u2019t ready to give up the night sky.", + "guid": "https://www.nytimes.com/2024/01/09/science/astronomy-telescopes-satellites-spacex-starlink.html", + "categories": [ + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Satellites", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Telescopes and Observatories", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Starlink Satellite Constellation (SpaceX)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Science Foundation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Space Exploration Technologies Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Kuiper Systems (Amazon.com Inc)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-09T12:15:43.000Z" + }, + { + "creator": "Shannon Hall", + "title": "The New Space Race Is Causing New Pollution Problems", + "link": "https://www.nytimes.com/2024/01/09/science/rocket-pollution-spacex-satellites.html", + "pubDate": "Tue, 09 Jan 2024 12:15:18 +0000", + "dc:creator": "Shannon Hall", + "content": "Earth\u2019s stratosphere has never seen the amounts of emissions and waste from rockets and satellites that a booming space economy will leave behind.", + "contentSnippet": "Earth\u2019s stratosphere has never seen the amounts of emissions and waste from rockets and satellites that a booming space economy will leave behind.", + "guid": "https://www.nytimes.com/2024/01/09/science/rocket-pollution-spacex-satellites.html", + "categories": [ + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Private Spaceflight", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rocket Science and Propulsion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Satellites", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fuel Emissions (Transportation)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Air Pollution", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ozone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Radiation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Waste Materials and Disposal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Research", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Starlink Satellite Constellation (SpaceX)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Space Exploration Technologies Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Kuiper Systems (Amazon.com Inc)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OneWeb Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-09T12:15:18.000Z" + }, + { + "creator": "Yiwen Lu", + "title": "Unity Software to Cut 25% of Its Work Force", + "link": "https://www.nytimes.com/2024/01/08/technology/unity-software-job-cuts.html", + "pubDate": "Tue, 09 Jan 2024 01:00:32 +0000", + "dc:creator": "Yiwen Lu", + "content": "The cuts follow a tough year in which the tech industry laid off tens of thousands of workers.", + "contentSnippet": "The cuts follow a tough year in which the tech industry laid off tens of thousands of workers.", + "guid": "https://www.nytimes.com/2024/01/08/technology/unity-software-job-cuts.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Labor and Jobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Xerox Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Riccitiello, John", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "San Francisco (Calif)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-09T01:00:32.000Z" + }, + { + "creator": "Kenneth Chang", + "title": "Moon Lander Malfunctions After Launch, Raising Questions for NASA", + "link": "https://www.nytimes.com/2024/01/08/science/nasa-moon-lander-malfunction-peregrine.html", + "pubDate": "Mon, 08 Jan 2024 21:36:28 +0000", + "dc:creator": "Kenneth Chang", + "content": "After a flawless launch to orbit, the privately built robotic Peregrine lander is unlikely to reach the lunar surface because of a failure in its propulsion system.", + "contentSnippet": "After a flawless launch to orbit, the privately built robotic Peregrine lander is unlikely to reach the lunar surface because of a failure in its propulsion system.", + "guid": "https://www.nytimes.com/2024/01/08/science/nasa-moon-lander-malfunction-peregrine.html", + "categories": [ + { + "_": "Astrobotic Technology Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Moon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rocket Science and Propulsion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "National Aeronautics and Space Administration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Private Spaceflight", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-08T21:36:28.000Z" + }, + { + "creator": "Sapna Maheshwari", + "title": "TikTok Quietly Curtails Data Tool Used by Critics", + "link": "https://www.nytimes.com/2024/01/08/business/media/tiktok-data-tool-israel-hamas-war.html", + "pubDate": "Mon, 08 Jan 2024 19:19:43 +0000", + "dc:creator": "Sapna Maheshwari", + "content": "People and groups had harnessed the tool to scrutinize content on the site related to the Israel-Hamas war and other topics.", + "contentSnippet": "People and groups had harnessed the tool to scrutinize content on the site related to the Israel-Hamas war and other topics.", + "guid": "https://www.nytimes.com/2024/01/08/business/media/tiktok-data-tool-israel-hamas-war.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Israel-Gaza War (2023- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Beijing Bytedance Technology Co Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Network Contagion Research Institute", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Israel", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gaza Strip", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-08T19:19:43.000Z" + }, + { + "creator": "Cade Metz", + "title": "How 2024 Will Be A.I.\u2019s \u2018Leap Forward\u2019", + "link": "https://www.nytimes.com/2024/01/08/technology/ai-robots-chatbots-2024.html", + "pubDate": "Mon, 08 Jan 2024 10:01:08 +0000", + "dc:creator": "Cade Metz", + "content": "A.I. is set to advance at a rapid rate, becoming more powerful and spreading into the physical world.", + "contentSnippet": "A.I. is set to advance at a rapid rate, becoming more powerful and spreading into the physical world.", + "guid": "https://www.nytimes.com/2024/01/08/technology/ai-robots-chatbots-2024.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Two Thousand Twenty Four", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Robots and Robotics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Altman, Samuel H", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Manyika, James", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Cohere Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-08T10:01:08.000Z" + }, + { + "creator": "Seth Kugel", + "title": "Help! An Employee of Budget Kept My Phone and I Can Prove It.", + "link": "https://www.nytimes.com/2024/01/08/travel/help-an-employee-of-budget-kept-my-phone-and-i-can-prove-it.html", + "pubDate": "Mon, 08 Jan 2024 10:00:52 +0000", + "dc:creator": "Seth Kugel", + "content": "After misplacing his iPhone while returning a rental car, a traveler tracked down the device and presented strong evidence to the agency that a worker took it \u2014 to no avail.", + "contentSnippet": "After misplacing his iPhone while returning a rental car, a traveler tracked down the device and presented strong evidence to the agency that a worker took it \u2014 to no avail.", + "guid": "https://www.nytimes.com/2024/01/08/travel/help-an-employee-of-budget-kept-my-phone-and-i-can-prove-it.html", + "categories": [ + { + "_": "Automobile Renting and Leasing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Budget Rent A Car Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Avis Budget Group Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Alamo Rent a Car", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Robberies and Thefts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "iPhone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Lost and Found Property", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-08T10:00:52.000Z" + }, + { + "creator": "Stuart A. Thompson", + "title": "Dark Corners of the Web Offer a Glimpse at A.I.\u2019s Nefarious Future", + "link": "https://www.nytimes.com/2024/01/08/technology/ai-4chan-online-harassment.html", + "pubDate": "Mon, 08 Jan 2024 08:00:12 +0000", + "dc:creator": "Stuart A. Thompson", + "content": "In the hands of anonymous internet users, A.I. tools can create waves of harassing and racist material. It\u2019s already happening on the anonymous message board 4chan.", + "contentSnippet": "In the hands of anonymous internet users, A.I. tools can create waves of harassing and racist material. It\u2019s already happening on the anonymous message board 4chan.", + "guid": "https://www.nytimes.com/2024/01/08/technology/ai-4chan-online-harassment.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cyberharassment", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "4chan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Center for Countering Digital Hate", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-08T08:00:12.000Z" + }, + { + "creator": "Kashmir Hill", + "title": "Switching to a Flip Phone Helped Me Cut Down on My Smartphone Addiction", + "link": "https://www.nytimes.com/2024/01/06/technology/smartphone-addiction-flip-phone.html", + "pubDate": "Sat, 06 Jan 2024 15:58:08 +0000", + "dc:creator": "Kashmir Hill", + "content": "Was it inconvenient? Yes. Did T9 texting drive me crazy? Definitely. Was it worth doing? Absolutely.", + "contentSnippet": "Was it inconvenient? Yes. Did T9 texting drive me crazy? Definitely. Was it worth doing? Absolutely.", + "guid": "https://www.nytimes.com/2024/01/06/technology/smartphone-addiction-flip-phone.html", + "categories": [ + { + "_": "Smartphones", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "iPhone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Text Messaging", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Brain", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Addiction (Psychology)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-06T15:58:08.000Z" + }, + { + "creator": "David McCabe and Tripp Mickle", + "title": "U.S. Moves Closer to Filing Sweeping Antitrust Case Against Apple", + "link": "https://www.nytimes.com/2024/01/05/technology/antitrust-apple-lawsuit-us.html", + "pubDate": "Fri, 05 Jan 2024 19:28:23 +0000", + "dc:creator": "David McCabe and Tripp Mickle", + "content": "Justice Department officials are in the late stages of investigating the iPhone maker, focusing on how Apple has used its other products and services to defend against threats to its core business.", + "contentSnippet": "Justice Department officials are in the late stages of investigating the iPhone maker, focusing on how Apple has used its other products and services to defend against threats to its core business.", + "guid": "https://www.nytimes.com/2024/01/05/technology/antitrust-apple-lawsuit-us.html", + "categories": [ + { + "_": "Antitrust Laws and Competition Issues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "iPhone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Smartphones", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Justice Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-05T19:28:23.000Z" + }, + { + "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano, Diane Wong and Pat McCusker", + "title": "Why Casey Left Substack, Elon Musk and Drugs, and an A.I. Antibiotic Discovery", + "link": "https://www.nytimes.com/2024/01/12/podcasts/hard-fork-substack-controversy-musk-drugs.html", + "pubDate": "Fri, 12 Jan 2024 10:02:26 +0000", + "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell, Marion Lozano, Diane Wong and Pat McCusker", + "content": "It\u2019s a drug episode.", + "contentSnippet": "It\u2019s a drug episode.", + "guid": "https://www.nytimes.com/2024/01/12/podcasts/hard-fork-substack-controversy-musk-drugs.html", + "categories": [ + { + "_": "Science and Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Substack Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Drugs (Pharmaceuticals)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wall Street Journal", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Massachusetts Institute of Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Harvard University", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Antibiotics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Neo Nazi Groups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Right-Wing Extremism and Alt-Right", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-12T10:02:26.000Z" + }, + { + "creator": "David Streitfeld", + "title": "U.S. Criminally Charges EBay in Cyberstalking Case", + "link": "https://www.nytimes.com/2024/01/11/technology/ebay-cyberstalking-charges.html", + "pubDate": "Fri, 12 Jan 2024 02:28:18 +0000", + "dc:creator": "David Streitfeld", + "content": "The case involves eBay employees trying to intimidate a Massachusetts couple who write and produce an e-commerce newsletter. The company will pay a criminal penalty of $3 million.", + "contentSnippet": "The case involves eBay employees trying to intimidate a Massachusetts couple who write and produce an e-commerce newsletter. The company will pay a criminal penalty of $3 million.", + "guid": "https://www.nytimes.com/2024/01/11/technology/ebay-cyberstalking-charges.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Threats and Threatening Messages", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stalking (Crime)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Deferred Prosecution Agreements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "eBay Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Justice Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Baugh, James", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Wenig, Devin N", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-12T02:28:18.000Z" + }, + { + "creator": "Jack Ewing", + "title": "Hertz Sells 20,000 Electric Cars After Being Burned by Tesla\u2019s Price Cuts", + "link": "https://www.nytimes.com/2024/01/11/business/hertz-electric-vehicles-tesla.html", + "pubDate": "Thu, 11 Jan 2024 22:32:11 +0000", + "dc:creator": "Jack Ewing", + "content": "The rental car company blamed the sharp drop in the value of electric vehicles and higher repair costs for its decision to sell 20,000 cars.", + "contentSnippet": "The rental car company blamed the sharp drop in the value of electric vehicles and higher repair costs for its decision to sell 20,000 cars.", + "guid": "https://www.nytimes.com/2024/01/11/business/hertz-electric-vehicles-tesla.html", + "categories": [ + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobile Renting and Leasing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Appraisals and Valuation (Property)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fuel Efficiency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hertz Global Holdings Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Discount Selling", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fuel Emissions (Transportation)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Barrasso, John", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Biden, Joseph R Jr", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-11T22:32:11.000Z" + }, + { + "creator": "Julie Weed", + "title": "How AI Could Change Travel in 2024", + "link": "https://www.nytimes.com/2024/01/18/travel/ai-vacation-planning.html", + "pubDate": "Thu, 18 Jan 2024 10:01:20 +0000", + "dc:creator": "Julie Weed", + "content": "As artificial intelligence improves and expands its reach, expect new ways to book online, fewer snags at the airport and, possibly, more expensive tickets.", + "contentSnippet": "As artificial intelligence improves and expands its reach, expect new ways to book online, fewer snags at the airport and, possibly, more expensive tickets.", + "guid": "https://www.nytimes.com/2024/01/18/travel/ai-vacation-planning.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Airlines and Airplanes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Travel and Vacations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Delays (Transportation)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Content Type: Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T10:01:20.000Z" + }, + { + "creator": "Virginia Hughes", + "title": "Kona Coffee Lawsuit: How Science Helped Farmers Look for Counterfeit Beans", + "link": "https://www.nytimes.com/2024/01/18/science/kona-coffee-hawaii-authenticity.html", + "pubDate": "Thu, 18 Jan 2024 10:00:15 +0000", + "dc:creator": "Virginia Hughes", + "content": "A testing method borrowed from geology helped farmers sue a slew of stores selling supposed \u201cKona\u201d coffee.", + "contentSnippet": "A testing method borrowed from geology helped farmers sue a slew of stores selling supposed \u201cKona\u201d coffee.", + "guid": "https://www.nytimes.com/2024/01/18/science/kona-coffee-hawaii-authenticity.html", + "categories": [ + { + "_": "Coffee", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Volcanoes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Agriculture and Farming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Compensation for Damages (Law)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Advertising and Marketing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Hawaii (The Big Island)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-18T10:00:15.000Z" + }, + { + "creator": "Tripp Mickle", + "title": "Apple Says It Will Remove a Health Feature From New Apple Watches", + "link": "https://www.nytimes.com/2024/01/17/technology/apple-watch-oximetry-international-trade-commission.html", + "pubDate": "Thu, 18 Jan 2024 02:17:14 +0000", + "dc:creator": "Tripp Mickle", + "content": "Starting on Thursday, the Apple Watch Series 9 and Watch Ultra 2 will no longer detect people\u2019s blood oxygen levels, to comply with a ruling by the International Trade Commission.", + "contentSnippet": "Starting on Thursday, the Apple Watch Series 9 and Watch Ultra 2 will no longer detect people\u2019s blood oxygen levels, to comply with a ruling by the International Trade Commission.", + "guid": "https://www.nytimes.com/2024/01/17/technology/apple-watch-oximetry-international-trade-commission.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inventions and Patents", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wearable Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Pulse Oximetry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Masimo Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United States International Trade Commission", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-18T02:17:14.000Z" + }, + { + "creator": "Mike Isaac", + "title": "Sheryl Sandberg to Depart Meta\u2019s Board of Directors", + "link": "https://www.nytimes.com/2024/01/17/technology/sheryl-sandberg-meta-board.html", + "pubDate": "Thu, 18 Jan 2024 01:14:43 +0000", + "dc:creator": "Mike Isaac", + "content": "Ms. Sandberg, who left her role as Meta\u2019s chief operating officer in 2022, said she would serve as an adviser to the company.", + "contentSnippet": "Ms. Sandberg, who left her role as Meta\u2019s chief operating officer in 2022, said she would serve as an adviser to the company.", + "guid": "https://www.nytimes.com/2024/01/17/technology/sheryl-sandberg-meta-board.html", + "categories": [ + { + "_": "Boards of Directors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Appointments and Executive Changes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Sandberg, Sheryl K", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Zuckerberg, Mark E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-18T01:14:43.000Z" + }, + { + "creator": "Nico Grant", + "title": "YouTube Cuts 100 Employees as Tech Layoffs Continue", + "link": "https://www.nytimes.com/2024/01/17/technology/youtube-tech-layoffs-continue.html", + "pubDate": "Thu, 18 Jan 2024 00:48:06 +0000", + "dc:creator": "Nico Grant", + "content": "The layoffs are part of efforts by the video platform\u2019s parent company, Google, to trim costs and bureaucracy as it embraces artificial intelligence.", + "contentSnippet": "The layoffs are part of efforts by the video platform\u2019s parent company, Google, to trim costs and bureaucracy as it embraces artificial intelligence.", + "guid": "https://www.nytimes.com/2024/01/17/technology/youtube-tech-layoffs-continue.html", + "categories": [ + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Online Advertising", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "YouTube.com", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-18T00:48:06.000Z" + }, + { + "creator": "Siobhan Roberts", + "title": "A.I.\u2019s Latest Challenge: the Math Olympics", + "link": "https://www.nytimes.com/2024/01/17/science/ai-computers-mathematics-olympiad.html", + "pubDate": "Wed, 17 Jan 2024 19:49:55 +0000", + "dc:creator": "Siobhan Roberts", + "content": "Watch out, nerdy high schoolers, AlphaGeometry is coming for your mathematical lunch.", + "contentSnippet": "Watch out, nerdy high schoolers, AlphaGeometry is coming for your mathematical lunch.", + "guid": "https://www.nytimes.com/2024/01/17/science/ai-computers-mathematics-olympiad.html", + "categories": [ + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mathematics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "DeepMind Technologies Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Tao, Terence (1975- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "California", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T19:49:55.000Z" + }, + { + "creator": "Sophie Haigney", + "title": "How Group Chats Rule the World", + "link": "https://www.nytimes.com/2024/01/16/magazine/group-chats.html", + "pubDate": "Wed, 17 Jan 2024 17:20:28 +0000", + "dc:creator": "Sophie Haigney", + "content": "They quietly became the de facto spaces to share dumb jokes, grief or even plans for an insurrection.", + "contentSnippet": "They quietly became the de facto spaces to share dumb jokes, grief or even plans for an insurrection.", + "guid": "https://www.nytimes.com/2024/01/16/magazine/group-chats.html", + "categories": [ + { + "_": "Text Messaging", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Instant Messaging", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Friendship", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-17T17:20:28.000Z" + }, + { + "creator": "Lawrence Ulrich", + "title": "Hybrid Cars Enjoy a Renaissance as All-Electric Sales Slow", + "link": "https://www.nytimes.com/2024/01/17/business/hybrid-cars-electric-vehicles.html", + "pubDate": "Wed, 17 Jan 2024 15:26:48 +0000", + "dc:creator": "Lawrence Ulrich", + "content": "Automakers like Ford, Kia and Toyota are offering more hybrid options to appeal to buyers who aren\u2019t ready for fully electric vehicles.", + "contentSnippet": "Automakers like Ford, Kia and Toyota are offering more hybrid options to appeal to buyers who aren\u2019t ready for fully electric vehicles.", + "guid": "https://www.nytimes.com/2024/01/17/business/hybrid-cars-electric-vehicles.html", + "categories": [ + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Batteries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sustainable Living", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fuel Efficiency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Engines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sports Utility Vehicles and Light Trucks", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fuel Emissions (Transportation)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Consumer Behavior", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Infrastructure (Public Works)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobile Service and Charging Stations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ford Motor Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Honda Motor Co Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hyundai Motor Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Kia Motors Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Toyota Motor Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Farley, James D Jr (1962- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2024-01-17T15:26:48.000Z" + }, + { + "creator": "J. D. Biersdorfer", + "title": "How to Cut Down Your Screen Time but Still Get Stuff Done", + "link": "https://www.nytimes.com/2024/01/17/technology/personaltech/screen-time-phone.html", + "pubDate": "Wed, 17 Jan 2024 14:00:27 +0000", + "dc:creator": "J. D. Biersdorfer", + "content": "Google\u2019s Routines and Apple\u2019s Shortcuts combine multiple steps into one command to make your phone or tablet do more of the work for you.", + "contentSnippet": "Google\u2019s Routines and Apple\u2019s Shortcuts combine multiple steps into one command to make your phone or tablet do more of the work for you.", + "guid": "https://www.nytimes.com/2024/01/17/technology/personaltech/screen-time-phone.html", + "categories": [ + { + "_": "iOS (Operating System)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Android (Operating System)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Smartphones", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tablet Computers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-17T14:00:27.000Z" + }, + { + "creator": "Madison Malone Kircher", + "title": "Do You Have \u2018Bookshelf Wealth\u2019?", + "link": "https://www.nytimes.com/2024/01/15/style/do-you-have-bookshelf-wealth.html", + "pubDate": "Tue, 16 Jan 2024 21:07:14 +0000", + "dc:creator": "Madison Malone Kircher", + "content": "A TikTok home-d\u00e9cor trend has irked some bibliophiles.", + "contentSnippet": "A TikTok home-d\u00e9cor trend has irked some bibliophiles.", + "guid": "https://www.nytimes.com/2024/01/15/style/do-you-have-bookshelf-wealth.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Interior Design and Furnishings", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Books and Literature", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-16T21:07:14.000Z" + }, + { + "creator": "Jack Ewing", + "title": "Musk Demands Bigger Stake in Tesla as Price for A.I. Work", + "link": "https://www.nytimes.com/2024/01/16/business/tesla-elon-musk-stock.html", + "pubDate": "Tue, 16 Jan 2024 19:28:17 +0000", + "dc:creator": "Jack Ewing", + "content": "Elon Musk, the electric car company\u2019s chief executive, said he would \u201cbuild products outside of Tesla\u201d unless the board raises his stake to 25 percent.", + "contentSnippet": "Elon Musk, the electric car company\u2019s chief executive, said he would \u201cbuild products outside of Tesla\u201d unless the board raises his stake to 25 percent.", + "guid": "https://www.nytimes.com/2024/01/16/business/tesla-elon-musk-stock.html", + "categories": [ + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stocks and Bonds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Boards of Directors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Robots and Robotics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-16T19:28:17.000Z" + }, + { + "creator": "Don Clark", + "title": "Synopsys Strikes $35 Billion Deal to Buy Ansys", + "link": "https://www.nytimes.com/2024/01/16/technology/synopsys-ansys-35-billion-dollars.html", + "pubDate": "Tue, 16 Jan 2024 19:16:55 +0000", + "dc:creator": "Don Clark", + "content": "The deal was the latest sign of changes in the tech sector, as artificial intelligence booms and sales of some hardware slows.", + "contentSnippet": "The deal was the latest sign of changes in the tech sector, as artificial intelligence booms and sales of some hardware slows.", + "guid": "https://www.nytimes.com/2024/01/16/technology/synopsys-ansys-35-billion-dollars.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Chips", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mergers, Acquisitions and Divestitures", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electronics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cadence Design Systems Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Synopsys Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Ansys Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-16T19:16:55.000Z" + }, + { + "creator": "Ivan Penn", + "title": "California Has Dealt a Blow to Renewable Energy, Some Businesses Say", + "link": "https://www.nytimes.com/2024/01/14/business/energy-environment/california-rooftop-solar.html", + "pubDate": "Sun, 14 Jan 2024 10:01:15 +0000", + "dc:creator": "Ivan Penn", + "content": "Some companies are leaving the state or reducing their presence there after California greatly reduced incentives for homeowners to install rooftop solar panels.", + "contentSnippet": "Some companies are leaving the state or reducing their presence there after California greatly reduced incentives for homeowners to install rooftop solar panels.", + "guid": "https://www.nytimes.com/2024/01/14/business/energy-environment/california-rooftop-solar.html", + "categories": [ + { + "_": "Solar Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alternative and Renewable Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric Light and Power", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Real Estate and Housing (Residential)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Roofs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Batteries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Home Repairs and Improvements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Sunrun Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Pacific Gas and Electric Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "California", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Rebates and Refunds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tax Credits, Deductions and Exemptions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-14T10:01:15.000Z" + }, + { + "creator": "Tripp Mickle and Karen Weise", + "title": "Microsoft Tops Apple to Become Most Valuable Public Company", + "link": "https://www.nytimes.com/2024/01/12/technology/microsoft-apple-most-valuable-company.html", + "pubDate": "Fri, 12 Jan 2024 22:55:03 +0000", + "dc:creator": "Tripp Mickle and Karen Weise", + "content": "The shift is indicative of the importance of new artificial intelligence technology to Silicon Valley and Wall Street investors.", + "contentSnippet": "The shift is indicative of the importance of new artificial intelligence technology to Silicon Valley and Wall Street investors.", + "guid": "https://www.nytimes.com/2024/01/12/technology/microsoft-apple-most-valuable-company.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stocks and Bonds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "iPhone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Nadella, Satya", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Cook, Timothy D", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-12T22:55:03.000Z" + }, + { + "creator": "Victor Mather", + "title": "Deal Ends Dispute Over Records of Onetime King of Donkey Kong", + "link": "https://www.nytimes.com/2024/01/18/arts/donkey-kong-scores-billy-mitchell-twin-galaxies.html", + "pubDate": "Thu, 18 Jan 2024 17:28:58 +0000", + "dc:creator": "Victor Mather", + "content": "Billy Mitchell\u2019s records will be listed in a \u201chistorical database\u201d but not the leaderboard, ending a dispute familiar from the 2007 documentary, \u201cThe King of Kong: A Fistful of Quarters.\u201d", + "contentSnippet": "Billy Mitchell\u2019s records will be listed in a \u201chistorical database\u201d but not the leaderboard, ending a dispute familiar from the 2007 documentary, \u201cThe King of Kong: A Fistful of Quarters.\u201d", + "guid": "https://www.nytimes.com/2024/01/18/arts/donkey-kong-scores-billy-mitchell-twin-galaxies.html", + "categories": [ + { + "_": "Records and Achievements", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer and Video Games", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Twin Galaxies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Mitchell, Billy (1965- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Wiebe, Steven J (1969- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Arcades", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-18T17:28:58.000Z" + }, + { + "creator": "Kenneth Chang", + "title": "Astrobotic\u2019s Peregrine Moon Lander Burns Up in Earth\u2019s Atmosphere", + "link": "https://www.nytimes.com/2024/01/18/science/moon-lander-peregrine-nasa.html", + "pubDate": "Fri, 19 Jan 2024 01:33:37 +0000", + "dc:creator": "Kenneth Chang", + "content": "The Astrobotic Peregrine spacecraft launched last week for a lunar landing, but a propulsion malfunction left it unable to complete its mission.", + "contentSnippet": "The Astrobotic Peregrine spacecraft launched last week for a lunar landing, but a propulsion malfunction left it unable to complete its mission.", + "guid": "https://www.nytimes.com/2024/01/18/science/moon-lander-peregrine-nasa.html", + "categories": [ + { + "_": "Astrobotic Technology Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Aeronautics and Space Administration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Moon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Private Spaceflight", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rocket Science and Propulsion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2024-01-19T01:33:37.000Z" + }, + { + "creator": "Kenneth Chang", + "title": "SpaceX and Axiom Launch Ax-3 Mission to International Space Station: Video", + "link": "https://www.nytimes.com/2024/01/18/science/axiom-launch-astronauts-spacex.html", + "pubDate": "Fri, 19 Jan 2024 00:19:11 +0000", + "dc:creator": "Kenneth Chang", + "content": "A SpaceX launch to the International Space Station led by the company Axiom Space illustrates how traditional and private space efforts are mixing.", + "contentSnippet": "A SpaceX launch to the International Space Station led by the company Axiom Space illustrates how traditional and private space efforts are mixing.", + "guid": "https://www.nytimes.com/2024/01/18/science/axiom-launch-astronauts-spacex.html", + "categories": [ + { + "_": "Axiom Space Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Space Station", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Private Spaceflight", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Space Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Rocket Science and Propulsion", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Space and Astronomy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Lopez-Alegria, Michael", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Italy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Sweden", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Turkey", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Gezeravci, Alper (1979- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Villadei, Walter (1974- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Wandt, Marcus (1980- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-19T00:19:11.000Z" + }, + { + "creator": "Benjamin Mullin and Katie Robertson", + "title": "Billionaires Wanted to Save the News Industry. They\u2019re Losing a Fortune.", + "link": "https://www.nytimes.com/2024/01/18/business/media/billionaires-news-media-owners.html", + "pubDate": "Thu, 18 Jan 2024 23:50:02 +0000", + "dc:creator": "Benjamin Mullin and Katie Robertson", + "content": "Time magazine, The Washington Post and The Los Angeles Times \u2014 owned by Marc Benioff, Jeff Bezos and Dr. Patrick Soon-Shiong \u2014 are still losing money.", + "contentSnippet": "Time magazine, The Washington Post and The Los Angeles Times \u2014 owned by Marc Benioff, Jeff Bezos and Dr. Patrick Soon-Shiong \u2014 are still losing money.", + "guid": "https://www.nytimes.com/2024/01/18/business/media/billionaires-news-media-owners.html", + "categories": [ + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Newspapers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "High Net Worth Individuals", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Amazon.com Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Los Angeles Times", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Washington Post", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Time (Magazine)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Benioff, Marc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bezos, Jeffrey P", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Soon-Shiong, Patrick", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-18T23:50:02.000Z" + }, + { + "creator": "Tripp Mickle", + "title": "Apple Takes a Humble Approach to Launching Its Newest Device", + "link": "https://www.nytimes.com/2024/01/19/technology/apple-vision-pro-augmented-reality.html", + "pubDate": "Fri, 19 Jan 2024 10:03:30 +0000", + "dc:creator": "Tripp Mickle", + "content": "The Vision Pro augmented reality device goes on sale Friday. Don\u2019t expect Apple to host a splashy event to promote it.", + "contentSnippet": "The Vision Pro augmented reality device goes on sale Friday. Don\u2019t expect Apple to host a splashy event to promote it.", + "guid": "https://www.nytimes.com/2024/01/19/technology/apple-vision-pro-augmented-reality.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wearable Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Augmented Reality (Computers)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Advertising and Marketing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "National Football League", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Cook, Timothy D", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2024-01-19T10:03:30.000Z" + }, + { + "creator": "Kevin Roose, Casey Newton, David Yaffe-Bellany, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Elisheba Ittoop, Marion Lozano, Rowan Niemisto and Dan Powell", + "title": "The A.I. Election, Bitcoin\u2019s Wall Street Debut and TikTok\u2019s Doodad Era", + "link": "https://www.nytimes.com/2024/01/19/podcasts/ai-elections-bitcoin-tiktok.html", + "pubDate": "Fri, 19 Jan 2024 10:02:26 +0000", + "dc:creator": "Kevin Roose, Casey Newton, David Yaffe-Bellany, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Elisheba Ittoop, Marion Lozano, Rowan Niemisto and Dan Powell", + "content": "\u201cTwo truly terrible ways to make money this week.\u201d", + "contentSnippet": "\u201cTwo truly terrible ways to make money this week.\u201d", + "guid": "https://www.nytimes.com/2024/01/19/podcasts/ai-elections-bitcoin-tiktok.html", + "categories": [ + { + "_": "Science and Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Meta", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "YouTube.com", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Exchange Traded Funds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Bitcoin (Currency)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2024-01-19T10:02:26.000Z" + }, + { + "creator": "Steven Lee Myers", + "title": "U.S. Tries New Tack on Russian Disinformation: Pre-Empting It", + "link": "https://www.nytimes.com/2023/10/26/technology/russian-disinformation-us-state-department-campaign.html", + "pubDate": "Fri, 27 Oct 2023 12:21:44 +0000", + "dc:creator": "Steven Lee Myers", + "content": "The State Department\u2019s Global Engagement Center is taking the unusual step of disclosing a covert Russian operation when it is barely off the ground.", + "contentSnippet": "The State Department\u2019s Global Engagement Center is taking the unusual step of disclosing a covert Russian operation when it is barely off the ground.", + "guid": "https://www.nytimes.com/2023/10/26/technology/russian-disinformation-us-state-department-campaign.html", + "categories": [ + { + "_": "United States International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "International Relations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "News and News Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Rumors and Misinformation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "North Atlantic Treaty Organization", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "State Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Rubin, James P", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-27T12:21:44.000Z" + }, + { + "creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell and Rowan Niemisto", + "title": "\u2018Hard Fork\u2019: The People vs. Meta + Marques Brownlee on YouTube and Future Tech + DALL-E 3 Arrives", + "link": "https://www.nytimes.com/2023/10/27/podcasts/hardfork-meta-lawsuit-mkbhd-dalle.html", + "pubDate": "Fri, 27 Oct 2023 09:04:45 +0000", + "dc:creator": "Kevin Roose, Casey Newton, Davis Land, Rachel Cohn, Jen Poyant, Alyssa Moxley, Dan Powell and Rowan Niemisto", + "content": "Dozens of states sue Meta, we get advice from a pro YouTuber and we examine impressive advancements in artificial intelligence image generators.", + "contentSnippet": "Dozens of states sue Meta, we get advice from a pro YouTuber and we examine impressive advancements in artificial intelligence image generators.", + "guid": "https://www.nytimes.com/2023/10/27/podcasts/hardfork-meta-lawsuit-mkbhd-dalle.html", + "categories": [ + { + "_": "Science and Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Meta", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Instagram Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Haugen, Frances", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "YouTube.com", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T09:04:45.000Z" + }, + { + "creator": "Kate Conger", + "title": "How Elon Musk Changed the Meaning of Twitter for Users", + "link": "https://www.nytimes.com/2023/10/27/technology/elon-musk-twitter-year.html", + "pubDate": "Fri, 27 Oct 2023 09:03:26 +0000", + "dc:creator": "Kate Conger", + "content": "Twitter was a deeply personal source of conversation, news and community for many people. One year after Mr. Musk took over, users say that has shifted \u2014 for better and for worse.", + "contentSnippet": "Twitter was a deeply personal source of conversation, news and community for many people. One year after Mr. Musk took over, users say that has shifted \u2014 for better and for worse.", + "guid": "https://www.nytimes.com/2023/10/27/technology/elon-musk-twitter-year.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Twitter", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-27T09:03:26.000Z" + }, + { + "creator": "Jesus Jim\u00e9nez", + "title": "As Users Abandon X, Sports Twitter Endures", + "link": "https://www.nytimes.com/2023/10/27/sports/sports-twitter-x-elon-musk.html", + "pubDate": "Fri, 27 Oct 2023 09:02:29 +0000", + "dc:creator": "Jesus Jim\u00e9nez", + "content": "Many users have migrated to other platforms since Elon Musk bought Twitter, but sports fans still find it indispensable.", + "contentSnippet": "Many users have migrated to other platforms since Elon Musk bought Twitter, but sports fans still find it indispensable.", + "guid": "https://www.nytimes.com/2023/10/27/sports/sports-twitter-x-elon-musk.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Fans (Persons)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Athletics and Sports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Baseball", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Threads (Mobile App)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Twitter", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Bluesky (Social Network)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-27T09:02:29.000Z" + }, + { + "creator": "Yiwen Lu", + "title": "Cruise Stops All Driverless Taxi Operations in the United States", + "link": "https://www.nytimes.com/2023/10/26/technology/cruise-driverless-taxi-united-states.html", + "pubDate": "Fri, 27 Oct 2023 03:27:31 +0000", + "dc:creator": "Yiwen Lu", + "content": "The move comes just two days after California regulators told the company to take its autonomously driven cars off the road.", + "contentSnippet": "The move comes just two days after California regulators told the company to take its autonomously driven cars off the road.", + "guid": "https://www.nytimes.com/2023/10/26/technology/cruise-driverless-taxi-united-states.html", + "categories": [ + { + "_": "Cruise LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Taxicabs and Taxicab Drivers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Driverless and Semiautonomous Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-27T03:27:31.000Z" + }, + { + "creator": "Jack Ewing and Neal E. Boudette", + "title": "Ford\u2019s U.A.W. Deal Will Raise Costs While Easing Labor Strife", + "link": "https://www.nytimes.com/2023/10/26/business/ford-uaw-contract.html", + "pubDate": "Thu, 26 Oct 2023 22:06:38 +0000", + "dc:creator": "Jack Ewing and Neal E. Boudette", + "content": "A tentative agreement gives union members at the carmaker their best terms in decades but could complicate Ford\u2019s electric vehicle plans.", + "contentSnippet": "A tentative agreement gives union members at the carmaker their best terms in decades but could complicate Ford\u2019s electric vehicle plans.", + "guid": "https://www.nytimes.com/2023/10/26/business/ford-uaw-contract.html", + "categories": [ + { + "_": "Ford Motor Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Automobile Workers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Strikes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Organized Labor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Labor and Jobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wages and Salaries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-26T22:06:38.000Z" + }, + { + "creator": "Nico Grant", + "title": "Google Search Boss Says Company Invests to Avoid Becoming \u2018Roadkill\u2019", + "link": "https://www.nytimes.com/2023/10/26/technology/google-prabhakar-raghavan-search-antitrust.html", + "pubDate": "Thu, 26 Oct 2023 21:56:38 +0000", + "dc:creator": "Nico Grant", + "content": "At the start of its antitrust defense, Google attributed its success to relentless investment, countering government claims that it broke the law to stay ahead.", + "contentSnippet": "At the start of its antitrust defense, Google attributed its success to relentless investment, countering government claims that it broke the law to stay ahead.", + "guid": "https://www.nytimes.com/2023/10/26/technology/google-prabhakar-raghavan-search-antitrust.html", + "categories": [ + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Raghavan, Prabhakar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Search Engines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Antitrust Laws and Competition Issues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Justice Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Mehta, Amit P", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-26T21:56:38.000Z" + }, + { + "creator": "Karen Weise", + "title": "Amazon Revenue Jumps as Consumer and Business Spending Improves", + "link": "https://www.nytimes.com/2023/10/26/technology/amazon-quarterly-report.html", + "pubDate": "Thu, 26 Oct 2023 21:30:19 +0000", + "dc:creator": "Karen Weise", + "content": "Investors were closely watching business spending with the company\u2019s cloud computing division, which grew 12 percent in the most recent quarter.", + "contentSnippet": "Investors were closely watching business spending with the company\u2019s cloud computing division, which grew 12 percent in the most recent quarter.", + "guid": "https://www.nytimes.com/2023/10/26/technology/amazon-quarterly-report.html", + "categories": [ + { + "_": "Company Reports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "E-Commerce", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Advertising and Marketing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Amazon.com Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Jassy, Andrew R", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-26T21:30:19.000Z" + }, + { + "creator": "Nico Grant", + "title": "Inside Google\u2019s Plan to Stop Apple From Getting Serious About Search", + "link": "https://www.nytimes.com/2023/10/26/technology/google-apple-search-spotlight.html", + "pubDate": "Thu, 26 Oct 2023 12:14:36 +0000", + "dc:creator": "Nico Grant", + "content": "Google has worried for years that Apple would one day expand its internet search technology, and has been working on ways to prevent that from happening.", + "contentSnippet": "Google has worried for years that Apple would one day expand its internet search technology, and has been working on ways to prevent that from happening.", + "guid": "https://www.nytimes.com/2023/10/26/technology/google-apple-search-spotlight.html", + "categories": [ + { + "_": "Search Engines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Antitrust Laws and Competition Issues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "European Union", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "iPhone", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Android (Operating System)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-26T12:14:36.000Z" + }, + { + "creator": "Mike Isaac", + "title": "Meta Posts 23% Growth as Ads Rebound, With Profit More Than Doubling", + "link": "https://www.nytimes.com/2023/10/25/technology/meta-facebook-quarterly-earnings.html", + "pubDate": "Wed, 25 Oct 2023 22:18:25 +0000", + "dc:creator": "Mike Isaac", + "content": "The internet company\u2019s cost cuts also helped lift its financial performance in the most recent quarter.", + "contentSnippet": "The internet company\u2019s cost cuts also helped lift its financial performance in the most recent quarter.", + "guid": "https://www.nytimes.com/2023/10/25/technology/meta-facebook-quarterly-earnings.html", + "categories": [ + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Company Reports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Online Advertising", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Instagram Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "WhatsApp Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Zuckerberg, Mark E", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-25T22:18:25.000Z" + }, + { + "creator": "Madison Malone Kircher", + "title": "TikTok\u2019s Lip Gloss Trick", + "link": "https://www.nytimes.com/2023/10/24/style/lip-gloss-tiktok.html", + "pubDate": "Wed, 25 Oct 2023 21:32:11 +0000", + "dc:creator": "Madison Malone Kircher", + "content": "The so-called lip gloss overture is just one of many subtle tactics used by social media stars.", + "contentSnippet": "The so-called lip gloss overture is just one of many subtle tactics used by social media stars.", + "guid": "https://www.nytimes.com/2023/10/24/style/lip-gloss-tiktok.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cosmetics and Toiletries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-25T21:32:11.000Z" + }, + { + "creator": "Matt Richtel", + "title": "Is Social Media Addictive? Here\u2019s What the Science Says.", + "link": "https://www.nytimes.com/2023/10/25/health/social-media-addiction.html", + "pubDate": "Wed, 25 Oct 2023 19:44:09 +0000", + "dc:creator": "Matt Richtel", + "content": "A major lawsuit against Meta has placed a spotlight on our fraught relationship with online social information.", + "contentSnippet": "A major lawsuit against Meta has placed a spotlight on our fraught relationship with online social information.", + "guid": "https://www.nytimes.com/2023/10/25/health/social-media-addiction.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Teenagers and Adolescence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mental Health and Disorders", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Addiction (Psychology)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Meta Platforms Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Instagram Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "your-feed-science", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "your-feed-health", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T19:44:09.000Z" + }, + { + "creator": "David Yaffe-Bellany and Matthew Goldstein", + "title": "Sam Bankman-Fried Set to Testify at His Fraud Trial", + "link": "https://www.nytimes.com/2023/10/25/technology/sam-bankman-fried-testify-fraud-trial.html", + "pubDate": "Wed, 25 Oct 2023 17:59:20 +0000", + "dc:creator": "David Yaffe-Bellany and Matthew Goldstein", + "content": "The FTX founder\u2019s plan to take the witness stand sets up a dramatic few days of testimony at the federal courthouse in Manhattan.", + "contentSnippet": "The FTX founder\u2019s plan to take the witness stand sets up a dramatic few days of testimony at the federal courthouse in Manhattan.", + "guid": "https://www.nytimes.com/2023/10/25/technology/sam-bankman-fried-testify-fraud-trial.html", + "categories": [ + { + "_": "Virtual Currency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Frauds and Swindling", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Money Laundering", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Witnesses", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "HK FTX Trading Ltd (Futures Exchange)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bankman-Fried, Sam", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-25T17:59:20.000Z" + }, + { + "creator": "Matthew Goldstein, David Yaffe-Bellany and J. Edward Moreno", + "title": "The Challenges Facing Sam Bankman-Fried\u2019s Lawyers", + "link": "https://www.nytimes.com/2023/10/25/technology/sam-bankman-fried-trial-defense.html", + "pubDate": "Wed, 25 Oct 2023 17:48:52 +0000", + "dc:creator": "Matthew Goldstein, David Yaffe-Bellany and J. Edward Moreno", + "content": "They are set to start their defense on Thursday, with the FTX founder planning to testify in his criminal fraud trial. Hurdles include what Mr. Bankman-Fried\u2019s former associates said on the stand.", + "contentSnippet": "They are set to start their defense on Thursday, with the FTX founder planning to testify in his criminal fraud trial. Hurdles include what Mr. Bankman-Fried\u2019s former associates said on the stand.", + "guid": "https://www.nytimes.com/2023/10/25/technology/sam-bankman-fried-trial-defense.html", + "categories": [ + { + "_": "HK FTX Trading Ltd (Futures Exchange)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bankman-Fried, Sam", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Virtual Currency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alameda Research LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Frauds and Swindling", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Legal Profession", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Banking and Financial Institutions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ellison, Caroline (1994- )", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Singh, Nishad", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Kaplan, Lewis A", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-25T17:48:52.000Z" + }, + { + "creator": "Ali Jaffe Ramis", + "title": "Stop, Before You Close This Tab (or Any Others) \u2026", + "link": "https://www.nytimes.com/2023/10/24/magazine/browser-tabs-forever.html", + "pubDate": "Wed, 25 Oct 2023 16:57:21 +0000", + "dc:creator": "Ali Jaffe Ramis", + "content": "Think of your browser like an ongoing autobiography. Why would you ever delete it?", + "contentSnippet": "Think of your browser like an ongoing autobiography. Why would you ever delete it?", + "guid": "https://www.nytimes.com/2023/10/24/magazine/browser-tabs-forever.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Web Browsers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T16:57:21.000Z" + }, + { + "creator": "Clifford Krauss", + "title": "Chasing Big Mergers, Oil Executives Dismiss Peak Oil Concerns", + "link": "https://www.nytimes.com/2023/10/25/business/energy-environment/exxon-chevron-oil-mergers-peak.html", + "pubDate": "Wed, 25 Oct 2023 15:14:11 +0000", + "dc:creator": "Clifford Krauss", + "content": "Exxon Mobil and Chevron are spending tens of billions of dollars buying oil and gas assets, betting that the International Energy Agency\u2019s predictions of declining oil demand are wrong.", + "contentSnippet": "Exxon Mobil and Chevron are spending tens of billions of dollars buying oil and gas assets, betting that the International Energy Agency\u2019s predictions of declining oil demand are wrong.", + "guid": "https://www.nytimes.com/2023/10/25/business/energy-environment/exxon-chevron-oil-mergers-peak.html", + "categories": [ + { + "_": "Oil (Petroleum) and Gasoline", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Natural Gas", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mergers, Acquisitions and Divestitures", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Alternative and Renewable Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Production", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Global Warming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Greenhouse Gas Emissions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stocks and Bonds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Prices (Fares, Fees and Rates)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Batteries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Solar Energy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Carbon Capture and Sequestration", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Chevron Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Exxon Mobil Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hess Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Pioneer Natural Resources Company", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Energy Agency", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-25T15:14:11.000Z" + }, + { + "creator": "J. D. Biersdorfer", + "title": "How to Use Your Library Card to Check Out E-Books, Audiobooks and More", + "link": "https://www.nytimes.com/2023/10/25/technology/personaltech/library-card-ebooks-apps-libby.html", + "pubDate": "Wed, 25 Oct 2023 09:03:01 +0000", + "dc:creator": "J. D. Biersdorfer", + "content": "With a free library card and the right app, you can check out e-books, audiobooks and more from your local branch.", + "contentSnippet": "With a free library card and the right app, you can check out e-books, audiobooks and more from your local branch.", + "guid": "https://www.nytimes.com/2023/10/25/technology/personaltech/library-card-ebooks-apps-libby.html", + "categories": [ + { + "_": "Books and Literature", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Libraries and Librarians", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Smartphones", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Service", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Archives and Records", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T09:03:01.000Z" + }, + { + "creator": "David McCabe, Cecilia Kang and Steve Lohr", + "title": "What the U.S. Has Argued in the Google Antitrust Trial", + "link": "https://www.nytimes.com/2023/10/25/technology/google-antitrust-trial.html", + "pubDate": "Wed, 25 Oct 2023 09:02:30 +0000", + "dc:creator": "David McCabe, Cecilia Kang and Steve Lohr", + "content": "As the government wraps up its case in the landmark monopoly trial, it has built a picture of how Google became dominant in online search \u2014 and the harms that it says resulted.", + "contentSnippet": "As the government wraps up its case in the landmark monopoly trial, it has built a picture of how Google became dominant in online search \u2014 and the harms that it says resulted.", + "guid": "https://www.nytimes.com/2023/10/25/technology/google-antitrust-trial.html", + "categories": [ + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Search Engines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Antitrust Laws and Competition Issues", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "States (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Attorneys General", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Web Browsers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Online Advertising", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "DuckDuckGo", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Expedia Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Apple Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Justice Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "VRBO.com", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-25T09:02:30.000Z" + }, + { + "creator": "Nico Grant", + "title": "Alphabet Has Strong Ad Sales but Cloud Business Disappoints", + "link": "https://www.nytimes.com/2023/10/24/technology/alphabet-google-earnings.html", + "pubDate": "Wed, 25 Oct 2023 01:29:48 +0000", + "dc:creator": "Nico Grant", + "content": "Google\u2019s parent company reported that sales were up 11 percent from a year ago while profit jumped 42 percent to $19.7 billion.", + "contentSnippet": "Google\u2019s parent company reported that sales were up 11 percent from a year ago while profit jumped 42 percent to $19.7 billion.", + "guid": "https://www.nytimes.com/2023/10/24/technology/alphabet-google-earnings.html", + "categories": [ + { + "_": "Google Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Alphabet Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Company Reports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Search Engines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cloud Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "YouTube.com", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Pichai, Sundar", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Online Advertising", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-25T01:29:48.000Z" + }, + { + "creator": "Yiwen Lu and Cade Metz", + "title": "Cruise\u2019s Driverless Taxi Service in San Francisco Is Suspended", + "link": "https://www.nytimes.com/2023/10/24/technology/cruise-driverless-san-francisco-suspended.html", + "pubDate": "Wed, 25 Oct 2023 01:24:47 +0000", + "dc:creator": "Yiwen Lu and Cade Metz", + "content": "California\u2019s Department of Motor Vehicles cited safety concerns for the suspension, about three months after the state allowed an expansion.", + "contentSnippet": "California\u2019s Department of Motor Vehicles cited safety concerns for the suspension, about three months after the state allowed an expansion.", + "guid": "https://www.nytimes.com/2023/10/24/technology/cruise-driverless-san-francisco-suspended.html", + "categories": [ + { + "_": "Cruise LLC", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Driverless and Semiautonomous Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Regulation and Deregulation of Industry", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Department of Motor Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "California", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "San Francisco (Calif)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-25T01:24:47.000Z" + }, + { + "creator": "Cecilia Kang and Natasha Singer", + "title": "Meta Sued Over Features That Hook Children to Instagram, Facebook", + "link": "https://www.nytimes.com/2023/10/24/technology/states-lawsuit-children-instagram-facebook.html", + "pubDate": "Tue, 24 Oct 2023 23:30:23 +0000", + "dc:creator": "Cecilia Kang and Natasha Singer", + "content": "More than three dozen states and the District of Columbia accused the tech giant of knowingly using addictive features to draw in and retain children and teenagers.", + "contentSnippet": "More than three dozen states and the District of Columbia accused the tech giant of knowingly using addictive features to draw in and retain children and teenagers.", + "guid": "https://www.nytimes.com/2023/10/24/technology/states-lawsuit-children-instagram-facebook.html", + "categories": [ + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "States (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Meta", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Facebook Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Instagram Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Children and Childhood", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Teenagers and Adolescence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Mobile Applications", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Consumer Protection", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-24T23:30:23.000Z" + }, + { + "creator": "Karen Weise", + "title": "Microsoft\u2019s A.I. Investment Stabilizes Its Cloud Business", + "link": "https://www.nytimes.com/2023/10/24/technology/microsoft-quarterly-results.html", + "pubDate": "Tue, 24 Oct 2023 22:57:19 +0000", + "dc:creator": "Karen Weise", + "content": "Revenue increased 13 percent in the latest quarter compared with a year earlier. Profit rose 27 percent.", + "contentSnippet": "Revenue increased 13 percent in the latest quarter compared with a year earlier. Profit rose 27 percent.", + "guid": "https://www.nytimes.com/2023/10/24/technology/microsoft-quarterly-results.html", + "categories": [ + { + "_": "Company Reports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cloud Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Enterprise Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Microsoft Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-24T22:57:19.000Z" + }, + { + "creator": "Yiwen Lu", + "title": "Snap Revenue Rises 5%, Reversing Declines", + "link": "https://www.nytimes.com/2023/10/24/technology/snap-earnings-rise.html", + "pubDate": "Tue, 24 Oct 2023 20:12:13 +0000", + "dc:creator": "Yiwen Lu", + "content": "The social media company posted rising sales after two quarters of declines, but added that the ad market remains unpredictable.", + "contentSnippet": "The social media company posted rising sales after two quarters of declines, but added that the ad market remains unpredictable.", + "guid": "https://www.nytimes.com/2023/10/24/technology/snap-earnings-rise.html", + "categories": [ + { + "_": "Snap Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Company Reports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Advertising and Marketing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Layoffs and Job Reductions", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Spiegel, Evan", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + } + ], + "isoDate": "2023-10-24T20:12:13.000Z" + }, + { + "creator": "Jack Ewing", + "title": "Federal Investigators Widen Tesla Inquiry, Company Says", + "link": "https://www.nytimes.com/2023/10/23/business/tesla-justice-department-investigations.html", + "pubDate": "Mon, 23 Oct 2023 20:00:59 +0000", + "dc:creator": "Jack Ewing", + "content": "The Department of Justice has sought documents related to vehicle range and \u201cpersonal benefits,\u201d Tesla said.", + "contentSnippet": "The Department of Justice has sought documents related to vehicle range and \u201cpersonal benefits,\u201d Tesla said.", + "guid": "https://www.nytimes.com/2023/10/23/business/tesla-justice-department-investigations.html", + "categories": [ + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ethics and Official Misconduct", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Traffic Accidents and Safety", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Company Reports", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Stocks and Bonds", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Corporations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Driverless and Semiautonomous Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Securities and Commodities Violations", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Justice Department", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Securities and Exchange Commission", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Musk, Elon", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Austin (Tex)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-23T20:00:59.000Z" + }, + { + "creator": "Kashmir Hill", + "title": "Face Search Engine PimEyes Blocks Searches of Children\u2019s Faces", + "link": "https://www.nytimes.com/2023/10/23/technology/pimeyes-blocks-searches-childrens-faces.html", + "pubDate": "Mon, 23 Oct 2023 17:53:40 +0000", + "dc:creator": "Kashmir Hill", + "content": "The change came in response to worries that the service could be used nefariously by a stranger.", + "contentSnippet": "The change came in response to worries that the service could be used nefariously by a stranger.", + "guid": "https://www.nytimes.com/2023/10/23/technology/pimeyes-blocks-searches-childrens-faces.html", + "categories": [ + { + "_": "Facial Recognition Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Photography", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Search Engines", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Children and Childhood", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "PimEyes (Web Site)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Gobronidze, Giorgi", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-23T17:53:40.000Z" + }, + { + "creator": "Jack Ewing", + "title": "Nonunion Workers Are Playing a Big Role in the Autoworkers\u2019 Strike", + "link": "https://www.nytimes.com/2023/10/23/business/union-nonunion-autoworkers-uaw.html", + "pubDate": "Mon, 23 Oct 2023 14:27:34 +0000", + "dc:creator": "Jack Ewing", + "content": "The three U.S. automakers say they are already at a disadvantage to nonunion rivals while labor leaders hope that big gains in negotiations will inspire workers in Southern states to unionize.", + "contentSnippet": "The three U.S. automakers say they are already at a disadvantage to nonunion rivals while labor leaders hope that big gains in negotiations will inspire workers in Southern states to unionize.", + "guid": "https://www.nytimes.com/2023/10/23/business/union-nonunion-autoworkers-uaw.html", + "categories": [ + { + "_": "Automobiles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Wages and Salaries", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Factories and Manufacturing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Organized Labor", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Electric and Hybrid Vehicles", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Income Inequality", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Strikes", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Labor and Jobs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "States (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Ford Motor Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "General Motors", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Honda Motor Co Ltd", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Bayerische Motorenwerke AG", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Hyundai Motor Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Mercedes-Benz", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "United Automobile Workers", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Nissan Motor Co", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Toyota Motor Corp", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Tesla Motors Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Volkswagen AG", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Midwestern States (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Southern States (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + } + ], + "isoDate": "2023-10-23T14:27:34.000Z" + }, + { + "creator": "Richard Sandomir", + "title": "Martin Goetz, Who Received the First Software Patent, Dies at 93", + "link": "https://www.nytimes.com/2023/10/21/technology/martin-goetz-dead.html", + "pubDate": "Sun, 22 Oct 2023 18:42:03 +0000", + "dc:creator": "Richard Sandomir", + "content": "\u201cI knew at some point in time the patent office would recognize\u201d computer software, he said. It happened in 1968, helping to ignite the software market.", + "contentSnippet": "\u201cI knew at some point in time the patent office would recognize\u201d computer software, he said. It happened in 1968, helping to ignite the software market.", + "guid": "https://www.nytimes.com/2023/10/21/technology/martin-goetz-dead.html", + "categories": [ + { + "_": "Goetz, Martin A", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Deaths (Obituaries)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Inventions and Patents", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Software", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Suits and Litigation (Civil)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Innovation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Applied Data Research Inc", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "International Business Machines Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-22T18:42:03.000Z" + }, + { + "creator": "Zach Montague", + "title": "The Race to Avert Quantum Computing Threat With New Encryption Standards", + "link": "https://www.nytimes.com/2023/10/22/us/politics/quantum-computing-encryption.html", + "pubDate": "Sun, 22 Oct 2023 09:00:40 +0000", + "dc:creator": "Zach Montague", + "content": "Quantum technology could compromise our encryption systems. Can America replace them before it\u2019s too late?", + "contentSnippet": "Quantum technology could compromise our encryption systems. Can America replace them before it\u2019s too late?", + "guid": "https://www.nytimes.com/2023/10/22/us/politics/quantum-computing-encryption.html", + "categories": [ + { + "_": "Quantum Computing", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computer Security", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "National Institute of Standards and Technology", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Mathematics", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Privacy", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Innovation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "China", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Russia", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "United States", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo" + } + }, + { + "_": "Espionage and Intelligence Services", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Defense and Military Forces", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Infrastructure (Public Works)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-22T09:00:40.000Z" + }, + { + "creator": "Erin Griffith and Sapna Maheshwari", + "title": "Cameo to the Moon, and Back", + "link": "https://www.nytimes.com/2023/10/20/technology/cameo-to-the-moon-and-back.html", + "pubDate": "Fri, 20 Oct 2023 23:42:39 +0000", + "dc:creator": "Erin Griffith and Sapna Maheshwari", + "content": "A start-up that offers fans a way to buy personalized videos from celebrities was supercharged by pandemic boredom and venture capital. All it had to do was grow forever.", + "contentSnippet": "A start-up that offers fans a way to buy personalized videos from celebrities was supercharged by pandemic boredom and venture capital. All it had to do was grow forever.", + "guid": "https://www.nytimes.com/2023/10/20/technology/cameo-to-the-moon-and-back.html", + "categories": [ + { + "_": "internal-great-read", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "internal-sub-only", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Celebrities", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Venture Capital", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Quarantine (Life and Culture)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Cameo (Mobile App)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Galanis, Steven", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "SOFTBANK Corporation", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-20T23:42:39.000Z" + }, + { + "creator": "Adam Liptak", + "title": "Supreme Court Pauses Ruling Blocking Biden Administration\u2019s Contacts With Tech Platforms", + "link": "https://www.nytimes.com/2023/10/20/us/supreme-court-social-media-biden.html", + "pubDate": "Fri, 20 Oct 2023 21:59:35 +0000", + "dc:creator": "Adam Liptak", + "content": "The court also agreed to hear the administration\u2019s appeal, paving the way for a major ruling on how far government can go to encourage sites to delete asserted misinformation.", + "contentSnippet": "The court also agreed to hear the administration\u2019s appeal, paving the way for a major ruling on how far government can go to encourage sites to delete asserted misinformation.", + "guid": "https://www.nytimes.com/2023/10/20/us/supreme-court-social-media-biden.html", + "categories": [ + { + "_": "Supreme Court (US)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Decisions and Verdicts", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Freedom of Speech and Expression", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "First Amendment (US Constitution)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Censorship", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "United States Politics and Government", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-20T21:59:35.000Z" + }, + { + "creator": "Cade Metz", + "title": "OpenAI in Talks for Deal That Would Value Company at $80 Billion", + "link": "https://www.nytimes.com/2023/10/20/technology/openai-artifical-intelligence-value.html", + "pubDate": "Fri, 20 Oct 2023 20:05:33 +0000", + "dc:creator": "Cade Metz", + "content": "The San Francisco start-up\u2019s valuation could triple in less than six months.", + "contentSnippet": "The San Francisco start-up\u2019s valuation could triple in less than six months.", + "guid": "https://www.nytimes.com/2023/10/20/technology/openai-artifical-intelligence-value.html", + "categories": [ + { + "_": "Venture Capital", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Start-ups", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Computers and the Internet", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Artificial Intelligence", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "ChatGPT", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "OpenAI Labs", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Thrive Capital", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + } + ], + "isoDate": "2023-10-20T20:05:33.000Z" + }, + { + "creator": "Maya Salam", + "title": "Martin and Francesca Scorsese, TikTok\u2019s Dynamic Duo", + "link": "https://www.nytimes.com/2023/10/27/movies/martin-scorsese-tiktok-francesca.html", + "pubDate": "Fri, 27 Oct 2023 14:57:01 +0000", + "dc:creator": "Maya Salam", + "content": "The acclaimed director\u2019s daughter, a filmmaker herself, has been peppering her feed with videos of her father, showing a rarely seen side of him.", + "contentSnippet": "The acclaimed director\u2019s daughter, a filmmaker herself, has been peppering her feed with videos of her father, showing a rarely seen side of him.", + "guid": "https://www.nytimes.com/2023/10/27/movies/martin-scorsese-tiktok-francesca.html", + "categories": [ + { + "_": "Social Media", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Video Recordings, Downloads and Streaming", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "Movies", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + }, + { + "_": "TikTok (ByteDance)", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org" + } + }, + { + "_": "Scorsese, Martin", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Francesca Scorsese", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per" + } + }, + { + "_": "Content Type: Personal Profile", + "$": { + "domain": "http://www.nytimes.com/namespaces/keywords/des" + } + } + ], + "isoDate": "2023-10-27T14:57:01.000Z" + } +] diff --git a/intro to react/newData/oldNews/9c97666a0762a7a453967d9a769652c7e62008d9fdac2f95d22c56b925e07f48.json b/intro to react/newData/oldNews/9c97666a0762a7a453967d9a769652c7e62008d9fdac2f95d22c56b925e07f48.json index f4dbc8b..5814fc8 100644 --- a/intro to react/newData/oldNews/9c97666a0762a7a453967d9a769652c7e62008d9fdac2f95d22c56b925e07f48.json +++ b/intro to react/newData/oldNews/9c97666a0762a7a453967d9a769652c7e62008d9fdac2f95d22c56b925e07f48.json @@ -1,1703 +1,1499 @@ [ - { - "creator": "Lydia Patrick,Athena Stavrou and Maira Butt", - "date": "2023-11-30T17:45:10+00:00", - "title": "Russia-Ukraine war \u2013 live: Baby injured and families trapped under rubble as Putin\u2019s troops hit record losses", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-putin-news-b2455955.html", - "pubDate": "Thu, 30 Nov 2023 17:45:10 GMT", - "dc:creator": "Lydia Patrick,Athena Stavrou and Maira Butt", - "dc:date": "2023-11-30T17:45:10+00:00", - "content": "

Four more people may be under the rubble, including a child, authorities said

", - "contentSnippet": "Four more people may be under the rubble, including a child, authorities said", - "guid": "b2455955", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-11-30T17:45:10.000Z" - }, - { - "creator": "Dasha Litvinova", - "date": "2023-11-30T16:21:38+00:00", - "title": "Russia\u2019s Supreme Court effectively outlaws LGBTQ+ activism in a landmark ruling", - "link": "https://www.independent.co.uk/news/world/europe/lgbtq-ap-russia-supreme-court-vladimir-putin-b2456303.html", - "pubDate": "Thu, 30 Nov 2023 16:21:38 GMT", - "dc:creator": "Dasha Litvinova", - "dc:date": "2023-11-30T16:21:38+00:00", - "content": "Russia\u2019s Supreme Court has effectively outlawed LGBTQ+ activism, in the most drastic step against advocates of gay, lesbian and transgender rights in the increasingly conservative country", - "contentSnippet": "Russia\u2019s Supreme Court has effectively outlawed LGBTQ+ activism, in the most drastic step against advocates of gay, lesbian and transgender rights in the increasingly conservative country", - "guid": "b2456303", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-11-30T16:21:38.000Z" - }, - { - "creator": "Konstantin Testorides and Derek Gatopoulos", - "date": "2023-11-30T13:31:33+00:00", - "title": "Russia's Lavrov faces Western critics at security meeting, walks out after speech", - "link": "https://www.independent.co.uk/news/ap-russia-ukraine-vladimir-putin-skopje-b2456184.html", - "pubDate": "Thu, 30 Nov 2023 13:31:33 GMT", - "dc:creator": "Konstantin Testorides and Derek Gatopoulos", - "dc:date": "2023-11-30T13:31:33+00:00", - "content": "Russian Foreign Minister Sergey Lavrov has faced Western critics while attending international security talks in Northern Macedonia", - "contentSnippet": "Russian Foreign Minister Sergey Lavrov has faced Western critics while attending international security talks in Northern Macedonia", - "guid": "b2456184", - "isoDate": "2023-11-30T13:31:33.000Z" - }, - { - "creator": "Seth Borenstein", - "date": "2023-11-30T12:42:24+00:00", - "title": "Pressure builds to eliminate fossil fuel use as oil executive takes over climate talks", - "link": "https://www.independent.co.uk/news/world/europe/ceo-ap-cop28-united-arab-emirates-dubai-b2456148.html", - "pubDate": "Thu, 30 Nov 2023 12:42:24 GMT", - "dc:creator": "Seth Borenstein", - "dc:date": "2023-11-30T12:42:24+00:00", - "content": "The pressure to phase out of fossil fuels is mounting on the oil company chief who Thursday took over fragile international climate negotiations that opened in Dubai amid concerns about what some say is contradictory dual roles", - "contentSnippet": "The pressure to phase out of fossil fuels is mounting on the oil company chief who Thursday took over fragile international climate negotiations that opened in Dubai amid concerns about what some say is contradictory dual roles", - "guid": "b2456148", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-11-30T12:42:24.000Z" - }, - { - "creator": "Hanna Arhirova", - "date": "2023-11-30T10:47:26+00:00", - "title": "Russian missile strikes in eastern Ukraine tear through buildings and bury families in rubble", - "link": "https://www.independent.co.uk/news/ukraine-ap-donetsk-kyiv-kremlin-b2456072.html", - "pubDate": "Thu, 30 Nov 2023 10:47:26 GMT", - "dc:creator": "Hanna Arhirova", - "dc:date": "2023-11-30T10:47:26+00:00", - "content": "Ukrainian officials say Russian missiles tore through apartment buildings in eastern Ukraine\u2019s Donetsk region during the night", - "contentSnippet": "Ukrainian officials say Russian missiles tore through apartment buildings in eastern Ukraine\u2019s Donetsk region during the night", - "guid": "b2456072", - "isoDate": "2023-11-30T10:47:26.000Z" - }, - { - "creator": "Courtney Bonnell", - "date": "2023-11-30T10:05:51+00:00", - "title": "Inflation in Europe falls to 2.4%. It shows interest rates are packing a punch", - "link": "https://www.independent.co.uk/news/europe-ap-inflation-eurostat-christine-lagarde-b2456048.html", - "pubDate": "Thu, 30 Nov 2023 10:05:51 GMT", - "dc:creator": "Courtney Bonnell", - "dc:date": "2023-11-30T10:05:51+00:00", - "content": "Europeans are again seeing some relief as inflation dropped to 2.4% in November, the lowest in more than two years", - "contentSnippet": "Europeans are again seeing some relief as inflation dropped to 2.4% in November, the lowest in more than two years", - "guid": "b2456048", - "isoDate": "2023-11-30T10:05:51.000Z" - }, - { - "creator": "Shweta Sharma", - "date": "2023-11-30T07:43:30+00:00", - "title": "Putin urges Russian women to have \u2018eight or more\u2019 children amid soaring deaths in his Ukraine war", - "link": "https://www.independent.co.uk/news/world/europe/vladimir-putin-women-eight-children-ukraine-war-b2455957.html", - "pubDate": "Thu, 30 Nov 2023 07:43:30 GMT", - "dc:creator": "Shweta Sharma", - "dc:date": "2023-11-30T07:43:30+00:00", - "content": "

Russian president says women having large families is \u2018our goal for the coming decades\u2019

", - "contentSnippet": "Russian president says women having large families is \u2018our goal for the coming decades\u2019", - "guid": "b2455957", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-11-30T07:43:30.000Z" - }, - { - "creator": "Shweta Sharma", - "date": "2023-11-30T05:43:49+00:00", - "title": "Senior Russian general \u2018killed by one of Putin\u2019s own landmines\u2019 in Ukraine", - "link": "https://www.independent.co.uk/news/world/europe/russia-vladimir-zavadsky-killed-ukraine-landmine-blast-b2455928.html", - "pubDate": "Thu, 30 Nov 2023 05:43:49 GMT", - "dc:creator": "Shweta Sharma", - "dc:date": "2023-11-30T05:43:49+00:00", - "content": "

It comes amid week of heavy losses for Russia with five other officers killed in Ukrainian airstrike

", - "contentSnippet": "It comes amid week of heavy losses for Russia with five other officers killed in Ukrainian airstrike", - "guid": "b2455928", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-11-30T05:43:49.000Z" - }, - { - "creator": "Courtney Bonnell and Josh Boak", - "date": "2023-11-30T05:02:13+00:00", - "title": "OPEC+ suppliers struggle to agree on cuts to oil production even as prices tumble", - "link": "https://www.independent.co.uk/news/ap-saudi-arabia-london-russia-joe-biden-b2455942.html", - "pubDate": "Thu, 30 Nov 2023 05:02:13 GMT", - "dc:creator": "Courtney Bonnell and Josh Boak", - "dc:date": "2023-11-30T05:02:13+00:00", - "content": "The OPEC oil cartel led by Saudi Arabia and allied producers including Russia are trying to agree on cuts to the amount of crude they send to the world", - "contentSnippet": "The OPEC oil cartel led by Saudi Arabia and allied producers including Russia are trying to agree on cuts to the amount of crude they send to the world", - "guid": "b2455942", - "isoDate": "2023-11-30T05:02:13.000Z" - }, - { - "creator": "By Grinne N. Aodha", - "date": "2023-11-30T00:01:00+00:00", - "title": "Irish premier travels to Dubai for \u2018consequential\u2019 Cop28", - "link": "https://www.independent.co.uk/climate-change/news/leo-varadkar-cop28-dubai-irish-ukraine-b2455868.html", - "pubDate": "Thu, 30 Nov 2023 00:01:00 GMT", - "dc:creator": "By Grinne N. Aodha", - "dc:date": "2023-11-30T00:01:00+00:00", - "content": "Leo Varadkar said the conference is \u2018a crucial opportunity\u2019.", - "contentSnippet": "Leo Varadkar said the conference is \u2018a crucial opportunity\u2019.", - "guid": "b2455868", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2023-11-30T00:01:00.000Z" - }, - { - "creator": "Ken Moritsugu", - "date": "2023-12-08T08:09:47+00:00", - "title": "Post-summit news conferences highlight the divide between China and the EU", - "link": "https://www.independent.co.uk/news/european-union-ap-china-chinese-ursula-von-der-leyen-b2460675.html", - "pubDate": "Fri, 08 Dec 2023 08:09:47 GMT", - "dc:creator": "Ken Moritsugu", - "dc:date": "2023-12-08T08:09:47+00:00", - "content": "From trade to human rights, the leaders of China and the European Union differed on a wide range of issues at a summit this week in the Chinese capital", - "contentSnippet": "From trade to human rights, the leaders of China and the European Union differed on a wide range of issues at a summit this week in the Chinese capital", - "guid": "b2460675", - "isoDate": "2023-12-08T08:09:47.000Z" - }, - { - "creator": "Tom Watling ,Arpan Rai and Maira Butt", - "date": "2023-12-08T07:07:30+00:00", - "title": "Ukraine-Russia war \u2013 live: Cameron warns blocking funds would be \u2018Christmas present\u2019 for Putin and Xi", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-vladimir-putin-news-today-b2460585.html", - "pubDate": "Fri, 08 Dec 2023 07:07:30 GMT", - "dc:creator": "Tom Watling ,Arpan Rai and Maira Butt", - "dc:date": "2023-12-08T07:07:30+00:00", - "content": "

US President Joe Biden says \u2018history will judge us\u2019 if further aid is not given to Ukraine

", - "contentSnippet": "US President Joe Biden says \u2018history will judge us\u2019 if further aid is not given to Ukraine", - "guid": "b2460585", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-08T07:07:30.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2023-12-08T07:00:21+00:00", - "title": "Ukraine actor dies after battling frontline wounds for months", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-actor-dies-vasyl-kukharskyi-front-line-b2460596.html", - "pubDate": "Fri, 08 Dec 2023 07:00:21 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2023-12-08T07:00:21+00:00", - "content": "

Tributes pour in for actor who joined Ukraine army during onset of Russia\u2019s invasion

", - "contentSnippet": "Tributes pour in for actor who joined Ukraine army during onset of Russia\u2019s invasion", - "guid": "b2460596", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-08T07:00:21.000Z" - }, - { - "creator": "Namita Singh", - "date": "2023-12-08T05:34:55+00:00", - "title": "Why so many of Nepal\u2019s Gurkhas end up fighting for Russia in Ukraine ", - "link": "https://www.independent.co.uk/asia/south-asia/russia-army-nepal-gurkhas-soldiers-ukraine-war-b2460616.html", - "pubDate": "Fri, 08 Dec 2023 05:34:55 GMT", - "dc:creator": "Namita Singh", - "dc:date": "2023-12-08T05:34:55+00:00", - "content": "

Nearly 200 Nepalese nationals are serving as mercenaries in the Russian army \u2013 but it\u2019s not only a phenomenon benefitting the Kremlin\u2019s military recruitment, as Namita Singh explains

", - "contentSnippet": "Nearly 200 Nepalese nationals are serving as mercenaries in the Russian army \u2013 but it\u2019s not only a phenomenon benefitting the Kremlin\u2019s military recruitment, as Namita Singh explains", - "guid": "b2460616", - "categories": [ - "South Asia", - "Asia" - ], - "isoDate": "2023-12-08T05:34:55.000Z" - }, - { - "creator": "Shweta Sharma", - "date": "2023-12-08T04:16:38+00:00", - "title": "Nepal calls on Russia not to deploy its Gurkhas in Ukraine war ", - "link": "https://www.independent.co.uk/asia/south-asia/nepal-gurkhas-ukraine-russia-war-deaths-b2460588.html", - "pubDate": "Fri, 08 Dec 2023 04:16:38 GMT", - "dc:creator": "Shweta Sharma", - "dc:date": "2023-12-08T04:16:38+00:00", - "content": "

Six Nepali soldiers embedded in Russian army have been killed fighting in Ukraine so far

", - "contentSnippet": "Six Nepali soldiers embedded in Russian army have been killed fighting in Ukraine so far", - "guid": "b2460588", - "categories": [ - "South Asia", - "Asia" - ], - "isoDate": "2023-12-08T04:16:38.000Z" - }, - { - "creator": "Eric Garcia", - "date": "2023-12-08T00:04:04+00:00", - "title": "Democrats and Republicans go into overtime on Ukraine-immigration talks", - "link": "https://www.the-independent.com/news/world/americas/us-politics/democrats-republicans-senate-immigration-ukraine-b2460400.html", - "pubDate": "Fri, 08 Dec 2023 00:04:04 GMT", - "dc:creator": "Eric Garcia", - "dc:date": "2023-12-08T00:04:04+00:00", - "content": "

The White House has got involved as the end of the year approaches

", - "contentSnippet": "The White House has got involved as the end of the year approaches", - "guid": "b2460400", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-08T00:04:04.000Z" - }, - { - "creator": "John Bowden", - "date": "2023-12-07T23:26:20+00:00", - "title": "Putin allies jubilant as US Republicans balk on Ukraine aid, report says", - "link": "https://www.the-independent.com/news/world/americas/us-politics/putin-russia-ukrain-senate-republicans-b2460506.html", - "pubDate": "Thu, 07 Dec 2023 23:26:20 GMT", - "dc:creator": "John Bowden", - "dc:date": "2023-12-07T23:26:20+00:00", - "content": "

\u2018It is even more dangerous to be a friend of the United States than its enemy. In the end, they will abandon you, leaving nothing but the scorched earth on your territory\u2019

", - "contentSnippet": "\u2018It is even more dangerous to be a friend of the United States than its enemy. In the end, they will abandon you, leaving nothing but the scorched earth on your territory\u2019", - "guid": "b2460506", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-07T23:26:20.000Z" - }, - { - "creator": "Dasha Litvinova", - "date": "2023-12-07T19:36:19+00:00", - "title": "Kremlin foe Navalny's lawyers to remain in detention at least through mid-March, Russian court rules", - "link": "https://www.independent.co.uk/news/world/europe/alexei-navalny-ap-kremlin-moscow-tallinn-b2460427.html", - "pubDate": "Thu, 07 Dec 2023 19:36:19 GMT", - "dc:creator": "Dasha Litvinova", - "dc:date": "2023-12-07T19:36:19+00:00", - "content": "A Moscow court has extended the pre-trial detention of three lawyers who once represented imprisoned opposition leader Alexei Navalny", - "contentSnippet": "A Moscow court has extended the pre-trial detention of three lawyers who once represented imprisoned opposition leader Alexei Navalny", - "guid": "b2460427", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-07T19:36:19.000Z" - }, - { - "creator": "Eric Garcia and Katie Hawkinson", - "date": "2023-12-07T19:16:29+00:00", - "title": "Senate Democrats call for conditions on US aid to Israel two months into war with Hamas", - "link": "https://www.the-independent.com/news/world/americas/us-politics/us-senate-democrats-israel-hamas-aid-b2460398.html", - "pubDate": "Thu, 07 Dec 2023 19:16:29 GMT", - "dc:creator": "Eric Garcia and Katie Hawkinson", - "dc:date": "2023-12-07T19:16:29+00:00", - "content": "

Republicans blocked a vote on a $110.5bn supplemental bill that would have included aid not just to Israel but also to Ukraine

", - "contentSnippet": "Republicans blocked a vote on a $110.5bn supplemental bill that would have included aid not just to Israel but also to Ukraine", - "guid": "b2460398", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-07T19:16:29.000Z" - }, - { - "creator": "Chinedu Asadu", - "date": "2023-12-07T19:15:43+00:00", - "title": "UN says Africa faces unprecedented food crisis, with 3 in 4 people unable to afford a healthy diet", - "link": "https://www.independent.co.uk/news/ap-nigeria-united-nations-abuja-east-africa-b2460421.html", - "pubDate": "Thu, 07 Dec 2023 19:15:43 GMT", - "dc:creator": "Chinedu Asadu", - "dc:date": "2023-12-07T19:15:43+00:00", - "content": "The United Nations says at least three of every four Africans can\u2019t afford a healthy diet because of an \u201cunprecedented food crisis.\u201d", - "contentSnippet": "The United Nations says at least three of every four Africans can\u2019t afford a healthy diet because of an \u201cunprecedented food crisis.\u201d", - "guid": "b2460421", - "isoDate": "2023-12-07T19:15:43.000Z" - }, - { - "creator": "Gustaf Kilander", - "date": "2023-12-07T17:43:53+00:00", - "title": "Even Fox News has had enough of Ramaswamy as host slams \u2018naive\u2019 Ukraine policy", - "link": "https://www.the-independent.com/news/world/americas/us-politics/fox-news-vivek-ramaswamy-ukraine-b2460243.html", - "pubDate": "Thu, 07 Dec 2023 17:43:53 GMT", - "dc:creator": "Gustaf Kilander", - "dc:date": "2023-12-07T17:43:53+00:00", - "content": "

\u2018Are you comfortable giving up Eastern Europe?\u2019 Fox host asks in contentious exchange

", - "contentSnippet": "\u2018Are you comfortable giving up Eastern Europe?\u2019 Fox host asks in contentious exchange", - "guid": "b2460243", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-07T17:43:53.000Z" - }, - { - "creator": "Rebecca Speare-Cole", - "date": "2023-12-07T17:27:41+00:00", - "title": "\u2018Excess profits\u2019 made by big firms boosted inflation \u2013 report", - "link": "https://www.independent.co.uk/business/excess-profits-made-by-big-firms-boosted-inflation-report-b2460341.html", - "pubDate": "Thu, 07 Dec 2023 17:27:41 GMT", - "dc:creator": "Rebecca Speare-Cole", - "dc:date": "2023-12-07T17:27:41+00:00", - "content": "Researchers found that big firms, including UK-listed companies, saw their profits outpace inflation while ordinary families\u2019 real incomes plummeted.", - "contentSnippet": "Researchers found that big firms, including UK-listed companies, saw their profits outpace inflation while ordinary families\u2019 real incomes plummeted.", - "guid": "b2460341", - "categories": [ - "Business" - ], - "isoDate": "2023-12-07T17:27:41.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2023-12-07T15:11:13+00:00", - "title": "Ukraine claims assassination of \u2018traitor\u2019 ex-MP who fled to Russia", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-assassination-putin-b2460029.html", - "pubDate": "Thu, 07 Dec 2023 15:11:13 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2023-12-07T15:11:13+00:00", - "content": "

Hours before his death Illia Kyva called Ukrainian President Volodymr Zelensky \u2018cowardly and narcissistic\u2019

", - "contentSnippet": "Hours before his death Illia Kyva called Ukrainian President Volodymr Zelensky \u2018cowardly and narcissistic\u2019", - "guid": "b2460029", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-07T15:11:13.000Z" - }, - { - "creator": "Mari Yamaguchi", - "date": "2023-12-07T14:23:39+00:00", - "title": "Japan pledges $4.5B more in aid for Ukraine, including $1B in humanitarian funds", - "link": "https://www.independent.co.uk/news/japan-ap-ukraine-fumio-kishida-tokyo-b2460205.html", - "pubDate": "Thu, 07 Dec 2023 14:23:39 GMT", - "dc:creator": "Mari Yamaguchi", - "dc:date": "2023-12-07T14:23:39+00:00", - "content": "Japan\u2019s Prime Minister Fumio Kishida has pledged $4.5 billion to Ukraine, including $1 billion in humanitarian aid to help support the war-torn country\u2019s recovery efforts", - "contentSnippet": "Japan\u2019s Prime Minister Fumio Kishida has pledged $4.5 billion to Ukraine, including $1 billion in humanitarian aid to help support the war-torn country\u2019s recovery efforts", - "guid": "b2460205", - "isoDate": "2023-12-07T14:23:39.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-07T14:13:36+00:00", - "title": "Russian girl shoots several classmates, leaving 1 dead, before killing herself", - "link": "https://www.independent.co.uk/news/ap-moscow-tass-ukraine-interior-ministry-b2460195.html", - "pubDate": "Thu, 07 Dec 2023 14:13:36 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-07T14:13:36+00:00", - "content": "State news agencies and authorities in Russia say a girl shot several classmates before killing herself at a school in the city of Bryansk", - "contentSnippet": "State news agencies and authorities in Russia say a girl shot several classmates before killing herself at a school in the city of Bryansk", - "guid": "b2460195", - "isoDate": "2023-12-07T14:13:36.000Z" - }, - { - "creator": "Francis Kokutse and Sam Metz", - "date": "2023-12-07T13:49:08+00:00", - "title": "United Nations bemoans struggles to fund peacekeeping as nations demand withdrawal of missions", - "link": "https://www.independent.co.uk/news/united-nations-ap-congo-ghana-accra-b2460180.html", - "pubDate": "Thu, 07 Dec 2023 13:49:08 GMT", - "dc:creator": "Francis Kokutse and Sam Metz", - "dc:date": "2023-12-07T13:49:08+00:00", - "content": "The United Nations\u2019 top peacekeeping official has defended its missions worldwide even as many countries where peacekeepers operate are demanding their withdrawal", - "contentSnippet": "The United Nations\u2019 top peacekeeping official has defended its missions worldwide even as many countries where peacekeepers operate are demanding their withdrawal", - "guid": "b2460180", - "isoDate": "2023-12-07T13:49:08.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2023-12-08T09:44:58+00:00", - "title": "Russia used US celebrity Cameo videos to spread propaganda, says report", - "link": "https://www.independent.co.uk/news/world/europe/russia-zelensky-cameo-video-disinformation-b2460633.html", - "pubDate": "Fri, 08 Dec 2023 09:44:58 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2023-12-08T09:44:58+00:00", - "content": "

Videos doctored to suggest American celebrities asked Volodymyr Zelensky to seek help for substance abuse

", - "contentSnippet": "Videos doctored to suggest American celebrities asked Volodymyr Zelensky to seek help for substance abuse", - "guid": "b2460633", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-08T09:44:58.000Z" - }, - { - "creator": "Alexander Butler and Tom Watling ", - "date": "2023-12-15T14:49:37+00:00", - "title": "Ukraine-Russia war \u2013 live: 26 injured as Ukrainian councillor detonates grenades at meeting, police say", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-war-putin-counter-offensive-latest-b2464547.html", - "pubDate": "Fri, 15 Dec 2023 14:49:37 GMT", - "dc:creator": "Alexander Butler and Tom Watling ", - "dc:date": "2023-12-15T14:49:37+00:00", - "content": "

The councillor took grenades out of his jacket before tossing them onto the floor at a meeting livestreamed to Facebook

", - "contentSnippet": "The councillor took grenades out of his jacket before tossing them onto the floor at a meeting livestreamed to Facebook", - "guid": "b2463751", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-15T14:49:37.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-15T11:34:10+00:00", - "title": "EU releasing 5 billion euros to Poland by year's end as new government works to restore rule of law", - "link": "https://www.independent.co.uk/news/poland-ap-donald-tusk-brussels-european-commission-b2464712.html", - "pubDate": "Fri, 15 Dec 2023 11:34:10 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-15T11:34:10+00:00", - "content": "The Polish prime minister and a top EU leader say that the European Union will by year\u2019s end transfer to Poland the first 5 billion euros in funding that was frozen over democratic backsliding under the previous government in Warsaw", - "contentSnippet": "The Polish prime minister and a top EU leader say that the European Union will by year\u2019s end transfer to Poland the first 5 billion euros in funding that was frozen over democratic backsliding under the previous government in Warsaw", - "guid": "b2464712", - "isoDate": "2023-12-15T11:34:10.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2023-12-15T06:39:02+00:00", - "title": "Former FBI agent gets over four years in prison for aiding Russian oligarch", - "link": "https://www.independent.co.uk/news/world/americas/crime/fbi-charles-mcgonigal-prison-oligarch-b2464545.html", - "pubDate": "Fri, 15 Dec 2023 06:39:02 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2023-12-15T06:39:02+00:00", - "content": "

Manhattan court sentences Charles McGonigal to prison for violating US sanctions

", - "contentSnippet": "Manhattan court sentences Charles McGonigal to prison for violating US sanctions", - "guid": "b2464545", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-12-15T06:39:02.000Z" - }, - { - "creator": "Lolita C. Baldor", - "date": "2023-12-15T05:19:56+00:00", - "title": "How the US keeps funding Ukraine's military \u2014 even as it says it's out of money", - "link": "https://www.independent.co.uk/news/ukraine-ap-white-house-joe-biden-pentagon-b2464559.html", - "pubDate": "Fri, 15 Dec 2023 05:19:56 GMT", - "dc:creator": "Lolita C. Baldor", - "dc:date": "2023-12-15T05:19:56+00:00", - "content": "The White House says funding for Ukraine has run out and it has been increasing pressure on Congress to pass stalled legislation to support the war against Russia", - "contentSnippet": "The White House says funding for Ukraine has run out and it has been increasing pressure on Congress to pass stalled legislation to support the war against Russia", - "guid": "b2464559", - "isoDate": "2023-12-15T05:19:56.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2023-12-15T05:08:38+00:00", - "title": "Hungary blocks \u00a343bn EU funding for Ukraine hours after Kyiv membership talks agreement", - "link": "https://www.independent.co.uk/news/world/europe/hungarg-eu-funding-ukraine-viktor-orban-b2464537.html", - "pubDate": "Fri, 15 Dec 2023 05:08:38 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2023-12-15T05:08:38+00:00", - "content": "

EU leaders plan to resume discussions on aid for Ukraine early next year

", - "contentSnippet": "EU leaders plan to resume discussions on aid for Ukraine early next year", - "guid": "b2464537", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-15T05:08:38.000Z" - }, - { - "creator": "Jon Gambrell", - "date": "2023-12-15T05:02:09+00:00", - "title": "A year of war: 2023 sees worst-ever Israel-Hamas combat as Russian attacks on Ukraine grind on", - "link": "https://www.independent.co.uk/news/israel-ap-hamas-ukraine-gaza-b2464550.html", - "pubDate": "Fri, 15 Dec 2023 05:02:09 GMT", - "dc:creator": "Jon Gambrell", - "dc:date": "2023-12-15T05:02:09+00:00", - "content": "From the Israel-Hamas war to Russia\u2019s grinding battles against Ukraine, 2023 has shown the dangers of armed conflicts breaking out into region-wide combat", - "contentSnippet": "From the Israel-Hamas war to Russia\u2019s grinding battles against Ukraine, 2023 has shown the dangers of armed conflicts breaking out into region-wide combat", - "guid": "b2464550", - "isoDate": "2023-12-15T05:02:09.000Z" - }, - { - "creator": "Angela Charlton", - "date": "2023-12-15T02:43:31+00:00", - "title": "Ukraine\u2019s a step closer to joining the EU. Here\u2019s what it means, and why it matters", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-ap-brussels-north-macedonia-viktor-orban-b2464519.html", - "pubDate": "Fri, 15 Dec 2023 02:43:31 GMT", - "dc:creator": "Angela Charlton", - "dc:date": "2023-12-15T02:43:31+00:00", - "content": "Ukraine has received a green light to start sped-up talks on joining the European Union", - "contentSnippet": "Ukraine has received a green light to start sped-up talks on joining the European Union", - "guid": "b2464519", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-15T02:43:31.000Z" - }, - { - "creator": "Graeme Massie", - "date": "2023-12-14T21:02:37+00:00", - "title": "Ramaswamy says eastern Ukrainians don\u2019t mind Russian occupation", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/ramaswamy-ukraine-russia-cnn-b2464360.html", - "pubDate": "Thu, 14 Dec 2023 21:02:37 GMT", - "dc:creator": "Graeme Massie", - "dc:date": "2023-12-14T21:02:37+00:00", - "content": "

The biotech CEO said he would give Russia concessions to end its unprovoked attack on Ukraine

", - "contentSnippet": "The biotech CEO said he would give Russia concessions to end its unprovoked attack on Ukraine", - "guid": "b2464360", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-14T21:02:37.000Z" - }, - { - "creator": "Eric Garcia", - "date": "2023-12-14T19:35:50+00:00", - "title": "Voices: Progressives warn Biden about using immigrants as a \u2018bargaining chip\u2019 for Ukraine", - "link": "https://www.independent.co.uk/voices/biden-ukraine-aid-immigration-negotiations-b2464180.html", - "pubDate": "Thu, 14 Dec 2023 19:35:50 GMT", - "dc:creator": "Eric Garcia", - "dc:date": "2023-12-14T19:35:50+00:00", - "content": "

Some Democrats are warning they will not support a deal that significantly curtails legal immigration for aid to Ukraine

", - "contentSnippet": "Some Democrats are warning they will not support a deal that significantly curtails legal immigration for aid to Ukraine", - "guid": "b2464180", - "categories": [ - "Voices" - ], - "isoDate": "2023-12-14T19:35:50.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2023-12-14T19:17:42+00:00", - "title": "Putin confronted by critical text messages beamed on screen at year-end news conference", - "link": "https://www.independent.co.uk/news/world/europe/putin-russia-ukraine-war-eu-b2464173.html", - "pubDate": "Thu, 14 Dec 2023 19:17:42 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2023-12-14T19:17:42+00:00", - "content": "

President sought to paint rosy picture of Russia at four-hour-long event \u2013 but citizens had other plans

", - "contentSnippet": "President sought to paint rosy picture of Russia at four-hour-long event \u2013 but citizens had other plans", - "guid": "b2464173", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-14T19:17:42.000Z" - }, - { - "creator": "Dasha Litvinova", - "date": "2023-12-14T19:12:29+00:00", - "title": "Court voids fine given to Russian activist for criticizing war and sends case back to prosecutors", - "link": "https://www.independent.co.uk/news/ap-ukraine-kremlin-alexei-navalny-estonia-b2464346.html", - "pubDate": "Thu, 14 Dec 2023 19:12:29 GMT", - "dc:creator": "Dasha Litvinova", - "dc:date": "2023-12-14T19:12:29+00:00", - "content": "A court in Russia has overturned a fine handed to a veteran human rights advocate for speaking out against the war in Ukraine", - "contentSnippet": "A court in Russia has overturned a fine handed to a veteran human rights advocate for speaking out against the war in Ukraine", - "guid": "b2464346", - "isoDate": "2023-12-14T19:12:29.000Z" - }, - { - "creator": "Illia Novikov", - "date": "2023-12-14T15:28:27+00:00", - "title": "Kyiv protesters demand more spending on the Ukraine's war effort and less on local projects", - "link": "https://www.independent.co.uk/news/money-ap-ukraine-kyiv-russia-b2464134.html", - "pubDate": "Thu, 14 Dec 2023 15:28:27 GMT", - "dc:creator": "Illia Novikov", - "dc:date": "2023-12-14T15:28:27+00:00", - "content": "Hundreds of protesters angered by what they view as wasteful municipal spending by Kyiv officials have gathered outside the Ukrainian capital's city hall", - "contentSnippet": "Hundreds of protesters angered by what they view as wasteful municipal spending by Kyiv officials have gathered outside the Ukrainian capital's city hall", - "guid": "b2464134", - "isoDate": "2023-12-14T15:28:27.000Z" - }, - { - "creator": "Jari Tanner", - "date": "2023-12-14T15:06:39+00:00", - "title": "Finland, NATO's newest member, will sign a defense pact with the United States", - "link": "https://www.independent.co.uk/news/finland-ap-russia-nato-washington-b2464117.html", - "pubDate": "Thu, 14 Dec 2023 15:06:39 GMT", - "dc:creator": "Jari Tanner", - "dc:date": "2023-12-14T15:06:39+00:00", - "content": "NATO\u2019s newest member and Russia\u2019s neighbor Finland is to sign a bilateral defense cooperation agreement next week with the United States in a deal that allows Washington to send troops into the Nordic country and to store weapons and equipment there", - "contentSnippet": "NATO\u2019s newest member and Russia\u2019s neighbor Finland is to sign a bilateral defense cooperation agreement next week with the United States in a deal that allows Washington to send troops into the Nordic country and to store weapons and equipment there", - "guid": "b2464117", - "isoDate": "2023-12-14T15:06:39.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2023-12-14T15:05:45+00:00", - "title": "Watch: David Cameron questioned by Lords committee for first time as foreign secretary", - "link": "https://www.independent.co.uk/news/uk/politics/david-cameron-house-lords-brexit-b2464084.html", - "pubDate": "Thu, 14 Dec 2023 15:05:45 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2023-12-14T15:05:45+00:00", - "content": "

Watch as David Cameron is questioned for the first time as foreign secretary in front of a Lords committee on Thursday, 14 December.

", - "contentSnippet": "Watch as David Cameron is questioned for the first time as foreign secretary in front of a Lords committee on Thursday, 14 December.", - "guid": "b2464084", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2023-12-14T15:05:45.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-12-15T15:50:04+00:00", - "title": "Grenades detonated during Ukraine village council meeting, wounding 26", - "link": "https://www.independent.co.uk/tv/news/ukraine-grenades-council-meeting-b2464857.html", - "pubDate": "Fri, 15 Dec 2023 15:50:04 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-12-15T15:50:04+00:00", - "content": "

Watch the moment a Ukrainian councillor detonates two grenades at a village meeting on Friday, 15 December.

", - "contentSnippet": "Watch the moment a Ukrainian councillor detonates two grenades at a village meeting on Friday, 15 December.", - "guid": "b2464857", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-12-15T15:50:04.000Z" - }, - { - "creator": "Chris Stevenson", - "date": "2023-12-15T17:28:53+00:00", - "title": "The battle to get \u00a343bn in EU aid to Ukraine after Hungary\u2019s Orban blocks it \u2013 and why it\u2019s so important", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-war-russia-eu-aid-funds-b2464937.html", - "pubDate": "Fri, 15 Dec 2023 17:28:53 GMT", - "dc:creator": "Chris Stevenson", - "dc:date": "2023-12-15T17:28:53+00:00", - "content": "

With the US Congress also struggling to agree on sending fresh funds to Kyiv, this is a key moment

", - "contentSnippet": "With the US Congress also struggling to agree on sending fresh funds to Kyiv, this is a key moment", - "guid": "b2464937", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-15T17:28:53.000Z" - }, - { - "creator": "Raf Casert", - "date": "2023-12-15T17:11:03+00:00", - "title": "The EU's drip-feed of aid frustrates Ukraine, despite the promise of membership talks", - "link": "https://www.independent.co.uk/news/ukraine-ap-viktor-orban-russia-brussels-b2464936.html", - "pubDate": "Fri, 15 Dec 2023 17:11:03 GMT", - "dc:creator": "Raf Casert", - "dc:date": "2023-12-15T17:11:03+00:00", - "content": "Drop by drop, Ukraine is being supplied with aid and arms from its European allies, at a time when it becomes ever clearer it would take a deluge to turn its war against Russia around", - "contentSnippet": "Drop by drop, Ukraine is being supplied with aid and arms from its European allies, at a time when it becomes ever clearer it would take a deluge to turn its war against Russia around", - "guid": "b2464936", - "isoDate": "2023-12-15T17:11:03.000Z" - }, - { - "creator": "Geir Moulson", - "date": "2024-01-04T10:29:43+00:00", - "title": "Germany's CO2 emissions are at their lowest in 7 decades, study shows", - "link": "https://www.independent.co.uk/news/germany-ap-co2-emissions-berlin-europe-b2473119.html", - "pubDate": "Thu, 04 Jan 2024 10:29:43 GMT", - "dc:creator": "Geir Moulson", - "dc:date": "2024-01-04T10:29:43+00:00", - "content": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", - "contentSnippet": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", - "guid": "b2473119", - "isoDate": "2024-01-04T10:29:43.000Z" - }, - { - "creator": "Tom Watling and Maryam Zakir-Hussain", - "date": "2024-01-04T09:06:21+00:00", - "title": "Ukraine-Russia war live: Kyiv steps up drone strikes as Nato to buy 1,000 Patriot missiles ", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-latest-putin-nato-pow-b2473013.html", - "pubDate": "Thu, 04 Jan 2024 09:06:21 GMT", - "dc:creator": "Tom Watling and Maryam Zakir-Hussain", - "dc:date": "2024-01-04T09:06:21+00:00", - "content": "

Russian missile attacks on Ukraine have killed at least 44 people in the last five days and injured roughly 300 more

", - "contentSnippet": "Russian missile attacks on Ukraine have killed at least 44 people in the last five days and injured roughly 300 more", - "guid": "b2466307", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-04T09:06:21.000Z" - }, - { - "creator": "Sophie Holloway", - "date": "2024-01-04T06:09:38+00:00", - "title": "Ukrainian photographer Serhii Miroshynk on capturing life under a macro lens", - "link": "https://www.independent.co.uk/arts-entertainment/art/features/serhii-miroshnyk-photography-ukraine-b2470947.html", - "pubDate": "Thu, 04 Jan 2024 06:09:38 GMT", - "dc:creator": "Sophie Holloway", - "dc:date": "2024-01-04T06:09:38+00:00", - "content": "

His photograph of a green beetle resting on an acorn beat out 60,000 entries to win the Wiki Loves Earth prize this year. Sophie Holloway speaks to Miroshnyk about his fascination with tiny treasures, the war in Ukraine, and summers spent at \u2018dachas\u2019 in the forest

", - "contentSnippet": "His photograph of a green beetle resting on an acorn beat out 60,000 entries to win the Wiki Loves Earth prize this year. Sophie Holloway speaks to Miroshnyk about his fascination with tiny treasures, the war in Ukraine, and summers spent at \u2018dachas\u2019 in the forest", - "guid": "b2470947", - "categories": [ - "Features", - "Art", - "Culture" - ], - "isoDate": "2024-01-04T06:09:38.000Z" - }, - { - "creator": "Arpan Rai", - "date": "2024-01-04T05:05:09+00:00", - "title": "Russia and Ukraine exchange hundreds of prisoners of war in biggest swap since beginning of invasion", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-prisoner-swap-b2473003.html", - "pubDate": "Thu, 04 Jan 2024 05:05:09 GMT", - "dc:creator": "Arpan Rai", - "dc:date": "2024-01-04T05:05:09+00:00", - "content": "

Six civilians among 230 Ukrainians released by Russia, says Zelensky

", - "contentSnippet": "Six civilians among 230 Ukrainians released by Russia, says Zelensky", - "guid": "b2473003", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-04T05:05:09.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2024-01-03T19:02:34+00:00", - "title": "Ukraine and Russia fire hundreds of missiles and drones in escalating aerial war", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-war-russia-drones-putin-missiles-b2472804.html", - "pubDate": "Wed, 03 Jan 2024 19:02:34 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2024-01-03T19:02:34+00:00", - "content": "

It is likely to become a battle of endurance as Ukraine calls on Western nations to help bulk up their air defence systems

", - "contentSnippet": "It is likely to become a battle of endurance as Ukraine calls on Western nations to help bulk up their air defence systems", - "guid": "b2472804", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-03T19:02:34.000Z" - }, - { - "creator": "Hanna Arhirova", - "date": "2024-01-03T18:47:47+00:00", - "title": "As a missile hits a Kyiv apartment building, survivors lose a lifetime's possessions in seconds", - "link": "https://www.independent.co.uk/news/ap-kyiv-ukraine-two-russia-b2472830.html", - "pubDate": "Wed, 03 Jan 2024 18:47:47 GMT", - "dc:creator": "Hanna Arhirova", - "dc:date": "2024-01-03T18:47:47+00:00", - "content": "Residents of a Kyiv apartment building are salvaging what they can a day after a Russian missile attack set it ablaze, tore off parts of its facade, and gouged a crater next to it", - "contentSnippet": "Residents of a Kyiv apartment building are salvaging what they can a day after a Russian missile attack set it ablaze, tore off parts of its facade, and gouged a crater next to it", - "guid": "b2472830", - "isoDate": "2024-01-03T18:47:47.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-03T13:49:33+00:00", - "title": "NATO to help buy 1,000 Patriot missiles to defend allies as Russia ramps up air assault on Ukraine", - "link": "https://www.independent.co.uk/news/nato-ap-ukraine-russia-patriots-b2472650.html", - "pubDate": "Wed, 03 Jan 2024 13:49:33 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-03T13:49:33+00:00", - "content": "NATO says it will help buy up to 1,000 Patriot missiles so allies can better protect their territory as Russia ramps up its air assault on Ukraine", - "contentSnippet": "NATO says it will help buy up to 1,000 Patriot missiles so allies can better protect their territory as Russia ramps up its air assault on Ukraine", - "guid": "b2472650", - "isoDate": "2024-01-03T13:49:33.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2024-01-04T15:59:24+00:00", - "title": "Hundreds of Russian soldiers surrender to Ukraine using \u2018I want to live\u2019 hotline ", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-surrender-hotline-b2473198.html", - "pubDate": "Thu, 04 Jan 2024 15:59:24 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2024-01-04T15:59:24+00:00", - "content": "

Roughly three Russian soldiers surrendering every week through hotline

", - "contentSnippet": "Roughly three Russian soldiers surrendering every week through hotline", - "guid": "b2473198", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-04T15:59:24.000Z" - }, - { - "creator": "Jill Lawless", - "date": "2024-01-04T14:19:52+00:00", - "title": "With 2024 being a UK election year, the opposition wants an early vote. PM Rishi Sunak is in no rush", - "link": "https://www.independent.co.uk/news/uk/politics/ap-conservatives-labour-party-rishi-sunak-london-b2473247.html", - "pubDate": "Thu, 04 Jan 2024 14:19:52 GMT", - "dc:creator": "Jill Lawless", - "dc:date": "2024-01-04T14:19:52+00:00", - "content": "The politician favored to become Britain\u2019s next prime minister has kicked off an election year by accusing the governing Conservatives of leading the country into decline and despair", - "contentSnippet": "The politician favored to become Britain\u2019s next prime minister has kicked off an election year by accusing the governing Conservatives of leading the country into decline and despair", - "guid": "b2473247", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-04T14:19:52.000Z" - }, - { - "creator": "Associated Press", - "date": "2024-01-04T13:45:27+00:00", - "title": "What is the Epiphany? Why is it also called Three Kings Day? And when do Christians celebrate it?", - "link": "https://www.independent.co.uk/news/ap-christians-epiphany-children-orthodox-b2473230.html", - "pubDate": "Thu, 04 Jan 2024 13:45:27 GMT", - "dc:creator": "Associated Press", - "dc:date": "2024-01-04T13:45:27+00:00", - "content": "Christians around the world will mark Epiphany on Jan. 6 with a series of celebrations", - "contentSnippet": "Christians around the world will mark Epiphany on Jan. 6 with a series of celebrations", - "guid": "b2473230", - "isoDate": "2024-01-04T13:45:27.000Z" - }, - { - "creator": "Dusan Stojanovic", - "date": "2024-01-04T12:47:12+00:00", - "title": "Serbia's army proposes bringing back the draft as tensions continue to rise in the Balkans", - "link": "https://www.independent.co.uk/news/serbia-ap-balkans-belgrade-aleksandar-vucic-b2473194.html", - "pubDate": "Thu, 04 Jan 2024 12:47:12 GMT", - "dc:creator": "Dusan Stojanovic", - "dc:date": "2024-01-04T12:47:12+00:00", - "content": "Serbia's military wants to reintroduce obligatory military service as tensions continue to rise in the Balkans", - "contentSnippet": "Serbia's military wants to reintroduce obligatory military service as tensions continue to rise in the Balkans", - "guid": "b2473194", - "isoDate": "2024-01-04T12:47:12.000Z" - }, - { - "creator": "Tom Watling and Maryam Zakir-Hussain", - "date": "2024-01-05T13:47:39+00:00", - "title": "Ukraine-Russia war live: Kyiv inflicting significant losses on Putin\u2019s forces around Dnipro River", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-putin-kyiv-latest-news-b2473609.html", - "pubDate": "Fri, 05 Jan 2024 13:47:39 GMT", - "dc:creator": "Tom Watling and Maryam Zakir-Hussain", - "dc:date": "2024-01-05T13:47:39+00:00", - "content": "

Russia began its tank-heavy assault on the eastern Ukrianian city of Avdiivka in October last year and have lost five battalions worth of equipment since

", - "contentSnippet": "Russia began its tank-heavy assault on the eastern Ukrianian city of Avdiivka in October last year and have lost five battalions worth of equipment since", - "guid": "b2466307", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-05T13:47:39.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-05T12:45:37+00:00", - "title": "PepsiCo products are being pulled from some Carrefour grocery stores in Europe over price hikes", - "link": "https://www.independent.co.uk/news/carrefour-ap-pepsico-quaker-oats-spain-b2473790.html", - "pubDate": "Fri, 05 Jan 2024 12:45:37 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-05T12:45:37+00:00", - "content": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", - "contentSnippet": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", - "guid": "b2473790", - "isoDate": "2024-01-05T12:45:37.000Z" - }, - { - "creator": "The Associated Press", - "date": "2024-01-05T12:28:11+00:00", - "title": "Ukraine unleashes more drones and missiles at Russian areas as part of its new year strategy", - "link": "https://www.independent.co.uk/news/ukraine-ap-kyiv-crimea-moscow-b2473775.html", - "pubDate": "Fri, 05 Jan 2024 12:28:11 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2024-01-05T12:28:11+00:00", - "content": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", - "contentSnippet": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", - "guid": "b2473775", - "isoDate": "2024-01-05T12:28:11.000Z" - }, - { - "creator": "David McHugh", - "date": "2024-01-05T10:10:42+00:00", - "title": "Europe's inflation is up after months of decline. It could mean a longer wait for interest rate cuts", - "link": "https://www.independent.co.uk/news/europe-ap-european-central-bank-inflation-germany-b2473709.html", - "pubDate": "Fri, 05 Jan 2024 10:10:42 GMT", - "dc:creator": "David McHugh", - "dc:date": "2024-01-05T10:10:42+00:00", - "content": "Inflation is on the rebound in Europe", - "contentSnippet": "Inflation is on the rebound in Europe", - "guid": "b2473709", - "isoDate": "2024-01-05T10:10:42.000Z" - }, - { - "creator": "Arpan Rai", - "date": "2024-01-05T06:15:44+00:00", - "title": "UK condemns Russia for using North Korean ballistic missiles on Ukraine", - "link": "https://www.independent.co.uk/news/world/europe/putin-north-korea-ballistic-missile-ukraine-white-house-b2473615.html", - "pubDate": "Fri, 05 Jan 2024 06:15:44 GMT", - "dc:creator": "Arpan Rai", - "dc:date": "2024-01-05T06:15:44+00:00", - "content": "

Sunak administration asks North Korea to \u2018cease arms supply to Russia\u2019

", - "contentSnippet": "Sunak administration asks North Korea to \u2018cease arms supply to Russia\u2019", - "guid": "b2473615", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-05T06:15:44.000Z" - }, - { - "creator": "Hyung-Jin Kim", - "date": "2024-01-05T02:36:34+00:00", - "title": "North Korea's Kim orders increased production of mobile launch vehicles as tensions grow with US", - "link": "https://www.independent.co.uk/news/kim-jong-un-ap-north-korea-south-korea-russia-b2473592.html", - "pubDate": "Fri, 05 Jan 2024 02:36:34 GMT", - "dc:creator": "Hyung-Jin Kim", - "dc:date": "2024-01-05T02:36:34+00:00", - "content": "North Korean leader Kim Jong Un has ordered authorities to increase production of mobile launch vehicles for missiles, saying the country faces a looming military showdown with its enemies", - "contentSnippet": "North Korean leader Kim Jong Un has ordered authorities to increase production of mobile launch vehicles for missiles, saying the country faces a looming military showdown with its enemies", - "guid": "b2473592", - "isoDate": "2024-01-05T02:36:34.000Z" - }, - { - "creator": "Sudhin Thanawala", - "date": "2024-01-04T21:56:11+00:00", - "title": "King's daughter says wars, gun violence, racism have pushed humanity to the brink", - "link": "https://www.independent.co.uk/news/ap-bernice-king-atlanta-ukraine-gaza-b2473520.html", - "pubDate": "Thu, 04 Jan 2024 21:56:11 GMT", - "dc:creator": "Sudhin Thanawala", - "dc:date": "2024-01-04T21:56:11+00:00", - "content": "The Rev. Martin Luther King Jr.\u2019s daughter says the world urgently needs to study and adopt her father\u2019s philosophy of nonviolence to avoid self-destruction", - "contentSnippet": "The Rev. Martin Luther King Jr.\u2019s daughter says the world urgently needs to study and adopt her father\u2019s philosophy of nonviolence to avoid self-destruction", - "guid": "b2473520", - "isoDate": "2024-01-04T21:56:11.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-04T19:35:04+00:00", - "title": "Watch as Major General Pat Ryder holds Pentagon briefing", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/us-pentagon-briefing-live-stream-b2473465.html", - "pubDate": "Thu, 04 Jan 2024 19:35:04 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-04T19:35:04+00:00", - "content": "

Watch as US Pentagon press secretary Major General Pat Ryder conducts a news briefing on Thursday 4 January.

", - "contentSnippet": "Watch as US Pentagon press secretary Major General Pat Ryder conducts a news briefing on Thursday 4 January.", - "guid": "b2473465", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-04T19:35:04.000Z" - }, - { - "creator": "Colleen Long and Aamer Madhani", - "date": "2024-01-04T18:39:31+00:00", - "title": "US says Russia has used North Korean ballistic missiles in Ukraine and is seeking Iranian missiles", - "link": "https://www.independent.co.uk/news/russia-ap-john-kirby-moscow-ukraine-b2473443.html", - "pubDate": "Thu, 04 Jan 2024 18:39:31 GMT", - "dc:creator": "Colleen Long and Aamer Madhani", - "dc:date": "2024-01-04T18:39:31+00:00", - "content": "The White House says U.S. intelligence officials have determined that Russia has acquired ballistic missiles from North Korea and is seeking close-range ballistic missiles from Iran as Moscow struggles to replenish arms for its war with Ukraine", - "contentSnippet": "The White House says U.S. intelligence officials have determined that Russia has acquired ballistic missiles from North Korea and is seeking close-range ballistic missiles from Iran as Moscow struggles to replenish arms for its war with Ukraine", - "guid": "b2473443", - "isoDate": "2024-01-04T18:39:31.000Z" - }, - { - "creator": "Dasha Litvinova", - "date": "2024-01-04T18:06:30+00:00", - "title": "Putin speeds up a citizenship path for foreigners who enlist in the Russian military", - "link": "https://www.independent.co.uk/news/vladimir-putin-ap-ukraine-moscow-kremlin-b2473424.html", - "pubDate": "Thu, 04 Jan 2024 18:06:30 GMT", - "dc:creator": "Dasha Litvinova", - "dc:date": "2024-01-04T18:06:30+00:00", - "content": "President Vladimir Putin has signed a decree that speeds up a path to Russian citizenship for foreigners who enlist in the country\u2019s military amid the 22-month-old war in Ukraine", - "contentSnippet": "President Vladimir Putin has signed a decree that speeds up a path to Russian citizenship for foreigners who enlist in the country\u2019s military amid the 22-month-old war in Ukraine", - "guid": "b2473424", - "isoDate": "2024-01-04T18:06:30.000Z" - }, - { - "creator": "The Associated Press", - "date": "2024-01-04T16:35:31+00:00", - "title": "Russia and Ukraine exchange long-range attacks as their front-line forces remain bogged down", - "link": "https://www.independent.co.uk/news/ukraine-ap-russia-kharkiv-crimea-b2473350.html", - "pubDate": "Thu, 04 Jan 2024 16:35:31 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2024-01-04T16:35:31+00:00", - "content": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", - "contentSnippet": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", - "guid": "b2473350", - "isoDate": "2024-01-04T16:35:31.000Z" - }, - { - "creator": "Dusan Stojanovic", - "date": "2024-01-11T18:17:50+00:00", - "title": "Serbia says it is disappointed with Kosovo's request to buy anti-tank missiles from the US", - "link": "https://www.independent.co.uk/news/kosovo-ap-serbia-aleksandar-vucic-belgrade-b2477242.html", - "pubDate": "Thu, 11 Jan 2024 18:17:50 GMT", - "dc:creator": "Dusan Stojanovic", - "dc:date": "2024-01-11T18:17:50+00:00", - "content": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", - "contentSnippet": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", - "guid": "b2477242", - "isoDate": "2024-01-11T18:17:50.000Z" - }, - { - "creator": "Hanna Arhirova", - "date": "2024-01-11T17:07:54+00:00", - "title": "Hundreds gather in Ukraine's capital to honor renowned poet who was also a soldier killed in action", - "link": "https://www.independent.co.uk/news/ap-ukraine-people-russia-kyiv-b2477183.html", - "pubDate": "Thu, 11 Jan 2024 17:07:54 GMT", - "dc:creator": "Hanna Arhirova", - "dc:date": "2024-01-11T17:07:54+00:00", - "content": "Hundreds of people have attended a ceremony honoring the memory of renowned Ukrainian poet Maksym Kryvtsov, who was killed in action while serving as a soldier in the war Russia started in Ukraine nearly two years ago", - "contentSnippet": "Hundreds of people have attended a ceremony honoring the memory of renowned Ukrainian poet Maksym Kryvtsov, who was killed in action while serving as a soldier in the war Russia started in Ukraine nearly two years ago", - "guid": "b2477183", - "isoDate": "2024-01-11T17:07:54.000Z" - }, - { - "creator": "Tom Watling ,Maryam Zakir-Hussain and Tara Cobham", - "date": "2024-01-11T14:04:21+00:00", - "title": "Russia-Ukraine war \u2013 live: Hotel strike injures 13 in Kharkiv as Putin\u2019s exhausted troops \u2018hit own towns\u2019", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-war-news-putin-latest-b2476740.html", - "pubDate": "Thu, 11 Jan 2024 14:04:21 GMT", - "dc:creator": "Tom Watling ,Maryam Zakir-Hussain and Tara Cobham", - "dc:date": "2024-01-11T14:04:21+00:00", - "content": "

British MoD claims likelihood of Russia accidentally bombing Moscow-held territories has increased

", - "contentSnippet": "British MoD claims likelihood of Russia accidentally bombing Moscow-held territories has increased", - "guid": "b2466307", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-11T14:04:21.000Z" - }, - { - "creator": "Neil Lancefield", - "date": "2024-01-11T13:33:48+00:00", - "title": "Petrol prices down to lowest level since October 2021", - "link": "https://www.independent.co.uk/business/petrol-prices-down-to-lowest-level-since-october-2021-b2477033.html", - "pubDate": "Thu, 11 Jan 2024 13:33:48 GMT", - "dc:creator": "Neil Lancefield", - "dc:date": "2024-01-11T13:33:48+00:00", - "content": "The AA said the average price for a litre of the fuel on Wednesday was 140.0p.", - "contentSnippet": "The AA said the average price for a litre of the fuel on Wednesday was 140.0p.", - "guid": "b2477033", - "categories": [ - "Business" - ], - "isoDate": "2024-01-11T13:33:48.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2024-01-11T11:13:05+00:00", - "title": "Sweden must brace for war, claims top official in push for greater defence spending", - "link": "https://www.independent.co.uk/news/world/europe/sweden-nato-ukraine-russia-b2476901.html", - "pubDate": "Thu, 11 Jan 2024 11:13:05 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2024-01-11T11:13:05+00:00", - "content": "

Sweden is unable to join Nato until Turkey quits blocking the ratification process over concerns that Stockholm is harbouring Kurdish terrorists

", - "contentSnippet": "Sweden is unable to join Nato until Turkey quits blocking the ratification process over concerns that Stockholm is harbouring Kurdish terrorists", - "guid": "b2476901", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-11T11:13:05.000Z" - }, - { - "creator": "Arpan Rai", - "date": "2024-01-11T11:08:55+00:00", - "title": "Turkish journalists among 13 injured in Russian missile strike on hotel in Ukraine\u2019s Kharkiv", - "link": "https://www.independent.co.uk/news/world/europe/russia-missile-attack-ukraine-kharkiv-b2476798.html", - "pubDate": "Thu, 11 Jan 2024 11:08:55 GMT", - "dc:creator": "Arpan Rai", - "dc:date": "2024-01-11T11:08:55+00:00", - "content": "

Photos and videos of missile strike show windows blown out and glass shards everywhere

", - "contentSnippet": "Photos and videos of missile strike show windows blown out and glass shards everywhere", - "guid": "b2476798", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-11T11:08:55.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-11T10:14:03+00:00", - "title": "Turkey, Bulgaria and Romania sign a deal to tackle Black Sea mines", - "link": "https://www.independent.co.uk/news/turkey-ap-ukraine-black-sea-romania-b2476894.html", - "pubDate": "Thu, 11 Jan 2024 10:14:03 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-11T10:14:03+00:00", - "content": "Turkey, Bulgaria and Romania have signed an agreement to jointly tackle rogue sea mines that have threatened Black Sea shipping since the start of the Ukraine war", - "contentSnippet": "Turkey, Bulgaria and Romania have signed an agreement to jointly tackle rogue sea mines that have threatened Black Sea shipping since the start of the Ukraine war", - "guid": "b2476894", - "isoDate": "2024-01-11T10:14:03.000Z" - }, - { - "creator": "Jim Heintz", - "date": "2024-01-11T07:32:01+00:00", - "title": "Ukraine's president in Estonia on swing through Russia's Baltic neighbors", - "link": "https://www.independent.co.uk/news/ap-ukraine-russia-lithuania-baltic-b2476806.html", - "pubDate": "Thu, 11 Jan 2024 07:32:01 GMT", - "dc:creator": "Jim Heintz", - "dc:date": "2024-01-11T07:32:01+00:00", - "content": "Ukrainian President Volodymyr Zelenskyy is in Estonia for meetings with the country\u2019s leaders on the second day of trip through the small Baltic states, where concern is high about aggression from neighboring Russia", - "contentSnippet": "Ukrainian President Volodymyr Zelenskyy is in Estonia for meetings with the country\u2019s leaders on the second day of trip through the small Baltic states, where concern is high about aggression from neighboring Russia", - "guid": "b2476806", - "isoDate": "2024-01-11T07:32:01.000Z" - }, - { - "creator": "Arpan Rai", - "date": "2024-01-11T07:02:14+00:00", - "title": "Ukraine now \u2018test site\u2019 for North Korean missiles shipped to Russia, warns South Korea", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-north-korea-missiles-russia-south-korea-b2476757.html", - "pubDate": "Thu, 11 Jan 2024 07:02:14 GMT", - "dc:creator": "Arpan Rai", - "dc:date": "2024-01-11T07:02:14+00:00", - "content": "

South Korean ambassador urges Russia to end its military cooperation with North Korea and withdraw its military forces from territory of Ukraine

", - "contentSnippet": "South Korean ambassador urges Russia to end its military cooperation with North Korea and withdraw its military forces from territory of Ukraine", - "guid": "b2476757", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-11T07:02:14.000Z" - }, - { - "creator": "Lolita C. Baldor", - "date": "2024-01-11T05:30:06+00:00", - "title": "Amid firestorm created by Austin's cancer secrecy, missed opportunities to build trust and educate", - "link": "https://www.independent.co.uk/news/austin-ap-joe-biden-lloyd-austin-washington-b2476771.html", - "pubDate": "Thu, 11 Jan 2024 05:30:06 GMT", - "dc:creator": "Lolita C. Baldor", - "dc:date": "2024-01-11T05:30:06+00:00", - "content": "The secrecy surrounding Defense Secretary Lloyd Austin\u2019s hospitalizations due to prostate cancer surgery set off a political firestorm, launched multiple reviews and triggered calls for his ouster", - "contentSnippet": "The secrecy surrounding Defense Secretary Lloyd Austin\u2019s hospitalizations due to prostate cancer surgery set off a political firestorm, launched multiple reviews and triggered calls for his ouster", - "guid": "b2476771", - "isoDate": "2024-01-11T05:30:06.000Z" - }, - { - "creator": "Edith M. Lederer", - "date": "2024-01-11T04:26:39+00:00", - "title": "US and allies accuse Russia of using North Korean missiles against Ukraine, violating UN sanctions", - "link": "https://www.independent.co.uk/news/ukraine-ap-russia-vassily-nebenzia-united-nations-b2476753.html", - "pubDate": "Thu, 11 Jan 2024 04:26:39 GMT", - "dc:creator": "Edith M. Lederer", - "dc:date": "2024-01-11T04:26:39+00:00", - "content": "The United States, Ukraine and six allies are accusing Russia of using North Korean ballistic missiles and launchers in recent devastating aerial attacks against Ukraine, in violation of U.N. sanctions", - "contentSnippet": "The United States, Ukraine and six allies are accusing Russia of using North Korean ballistic missiles and launchers in recent devastating aerial attacks against Ukraine, in violation of U.N. sanctions", - "guid": "b2476753", - "isoDate": "2024-01-11T04:26:39.000Z" - }, - { - "creator": "Tom Watling ,Maryam Zakir-Hussain and Tara Cobham", - "date": "2024-01-12T10:48:08+00:00", - "title": "Russia-Ukraine war \u2013 live: UK pledges to send thousands of drones to Kyiv as Sunak visits Zelensky", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-war-news-putin-latest-b2477472.html", - "pubDate": "Fri, 12 Jan 2024 10:48:08 GMT", - "dc:creator": "Tom Watling ,Maryam Zakir-Hussain and Tara Cobham", - "dc:date": "2024-01-12T10:48:08+00:00", - "content": "

Ukrainian president Volodymyr Zelensky has said that Ukraine particularly needs air defence systems to fend off Russian aerial barrages

", - "contentSnippet": "Ukrainian president Volodymyr Zelensky has said that Ukraine particularly needs air defence systems to fend off Russian aerial barrages", - "guid": "b2466307", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-12T10:48:08.000Z" - }, - { - "creator": "Barney Davis", - "date": "2024-01-12T09:53:08+00:00", - "title": "Black bear with PTSD only survivor of Russian onslaught on Ukraine zoo", - "link": "https://www.independent.co.uk/news/world/europe/bear-ukraine-zoo-west-calder-b2477523.html", - "pubDate": "Fri, 12 Jan 2024 09:53:08 GMT", - "dc:creator": "Barney Davis", - "dc:date": "2024-01-12T09:53:08+00:00", - "content": "

Yampil was found on the brink of starvation after being abandoned for five months in the face of the Russian invasion of Ukraine

", - "contentSnippet": "Yampil was found on the brink of starvation after being abandoned for five months in the face of the Russian invasion of Ukraine", - "guid": "b2477523", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-12T09:53:08.000Z" - }, - { - "creator": "Adam Forrest", - "date": "2024-01-12T09:46:47+00:00", - "title": "Rishi Sunak makes surprise visit to Ukraine after launching Yemen strike", - "link": "https://www.independent.co.uk/news/uk/politics/ukraine-sunak-funding-uk-war-putin-b2477461.html", - "pubDate": "Fri, 12 Jan 2024 09:46:47 GMT", - "dc:creator": "Adam Forrest", - "dc:date": "2024-01-12T09:46:47+00:00", - "content": "

Britain to provide another \u00a32.5bn in military aid to war-torn country, as PM justifies attack on Houthis

", - "contentSnippet": "Britain to provide another \u00a32.5bn in military aid to war-torn country, as PM justifies attack on Houthis", - "guid": "b2477461", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-12T09:46:47.000Z" - }, - { - "creator": "Arpan Rai", - "date": "2024-01-12T08:54:21+00:00", - "title": "US assistance to Ukraine has \u2018ground to a halt\u2019 amid political infighting, White House says", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-war-us-assistance-white-house-b2477449.html", - "pubDate": "Fri, 12 Jan 2024 08:54:21 GMT", - "dc:creator": "Arpan Rai", - "dc:date": "2024-01-12T08:54:21+00:00", - "content": "

Ukraine\u2019s military fears Putin\u2019s forces could break through its defensive lines within days if the US does not commit to more aid

", - "contentSnippet": "Ukraine\u2019s military fears Putin\u2019s forces could break through its defensive lines within days if the US does not commit to more aid", - "guid": "b2477449", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-12T08:54:21.000Z" - }, - { - "creator": "Hyung-Jin Kim", - "date": "2024-01-12T07:54:41+00:00", - "title": "North Korea to welcome country\u2019s first tourists since the pandemic", - "link": "https://www.independent.co.uk/asia/east-asia/north-korea-putin-tourists-kim-jong-un-b2477480.html", - "pubDate": "Fri, 12 Jan 2024 07:54:41 GMT", - "dc:creator": "Hyung-Jin Kim", - "dc:date": "2024-01-12T07:54:41+00:00", - "content": "Russian tourists going on a ski trip will be the first international travelers to visit North Korea since the country\u2019s borders closed in 2020 amid the global pandemic lockdown", - "contentSnippet": "Russian tourists going on a ski trip will be the first international travelers to visit North Korea since the country\u2019s borders closed in 2020 amid the global pandemic lockdown", - "guid": "b2477470", - "categories": [ - "East Asia ", - "Asia" - ], - "isoDate": "2024-01-12T07:54:41.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-12T07:50:45+00:00", - "title": "The UK prime minister is visiting Kyiv to announce a new support package for Ukraine", - "link": "https://www.independent.co.uk/news/kyiv-ap-rishi-sunak-ukraine-b2477485.html", - "pubDate": "Fri, 12 Jan 2024 07:50:45 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-12T07:50:45+00:00", - "content": "U.K. Prime Minister Rishi Sunak is visiting Kyiv to announce a new package of support, including an increase in military funding, a statement from his office said", - "contentSnippet": "U.K. Prime Minister Rishi Sunak is visiting Kyiv to announce a new package of support, including an increase in military funding, a statement from his office said", - "guid": "b2477485", - "isoDate": "2024-01-12T07:50:45.000Z" - }, - { - "creator": "Ellen Knickmeyer", - "date": "2024-01-12T06:51:44+00:00", - "title": "US failed to track more than $1bn in military gear given to Ukraine, says Pentagon watchdog", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-military-aid-russian-invasion-pentagon-b2477456.html", - "pubDate": "Fri, 12 Jan 2024 06:51:44 GMT", - "dc:creator": "Ellen Knickmeyer", - "dc:date": "2024-01-12T06:51:44+00:00", - "content": "

Biden administration officials stress there\u2019s no evidence that the weapons given to Ukraine had been stolen

", - "contentSnippet": "Biden administration officials stress there\u2019s no evidence that the weapons given to Ukraine had been stolen", - "guid": "b2477332", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-12T06:51:44.000Z" - }, - { - "creator": "Christopher McKeon", - "date": "2024-01-18T11:22:15+00:00", - "title": "Sunak insists his plan is working despite surprise hike in inflation", - "link": "https://www.independent.co.uk/business/sunak-insists-his-plan-is-working-despite-surprise-hike-in-inflation-b2480779.html", - "pubDate": "Thu, 18 Jan 2024 11:22:15 GMT", - "dc:creator": "Christopher McKeon", - "dc:date": "2024-01-18T11:22:15+00:00", - "content": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", - "contentSnippet": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", - "guid": "b2480779", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T11:22:15.000Z" - }, - { - "creator": "Vladimir Isachenkov", - "date": "2024-01-18T11:05:35+00:00", - "title": "Russia's foreign minister rejects a US proposal to resume talks on nuclear arms control", - "link": "https://www.independent.co.uk/news/russia-ap-washington-sergey-lavrov-moscow-b2480765.html", - "pubDate": "Thu, 18 Jan 2024 11:05:35 GMT", - "dc:creator": "Vladimir Isachenkov", - "dc:date": "2024-01-18T11:05:35+00:00", - "content": "Russia\u2019s top diplomat has dismissed a proposal by the United States to resume a dialogue on nuclear arms control", - "contentSnippet": "Russia\u2019s top diplomat has dismissed a proposal by the United States to resume a dialogue on nuclear arms control", - "guid": "b2480765", - "isoDate": "2024-01-18T11:05:35.000Z" - }, - { - "creator": "Justin Spike", - "date": "2024-01-18T10:49:02+00:00", - "title": "Hungary won't back down and change LGBTQ+ and asylum policies criticized by EU, minister says", - "link": "https://www.independent.co.uk/news/hungary-ap-lgbtq-budapest-european-commission-b2480748.html", - "pubDate": "Thu, 18 Jan 2024 10:49:02 GMT", - "dc:creator": "Justin Spike", - "dc:date": "2024-01-18T10:49:02+00:00", - "content": "Hungary\u2019s government will not change policies the European Union believes infringe on LGBTQ+ rights and those of asylum seekers, even if doing so would unfreeze billions in funding the bloc has withheld from Budapest", - "contentSnippet": "Hungary\u2019s government will not change policies the European Union believes infringe on LGBTQ+ rights and those of asylum seekers, even if doing so would unfreeze billions in funding the bloc has withheld from Budapest", - "guid": "b2480748", - "isoDate": "2024-01-18T10:49:02.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-18T10:43:34+00:00", - "title": "France ramps up weapons production for Ukraine and says Russia is scrutinizing the West's mettle", - "link": "https://www.independent.co.uk/news/ukraine-ap-france-russia-paris-b2480740.html", - "pubDate": "Thu, 18 Jan 2024 10:43:34 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-18T10:43:34+00:00", - "content": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", - "contentSnippet": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", - "guid": "b2480740", - "isoDate": "2024-01-18T10:43:34.000Z" - }, - { - "creator": "Tom Watling and Maira Butt", - "date": "2024-01-18T10:42:28+00:00", - "title": "Russia-Ukraine war \u2013 live: Kyiv targets St Petersburg oil facility in rare drone attack on Putin\u2019s home city", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-putin-drone-strikes-b2480572.html", - "pubDate": "Thu, 18 Jan 2024 10:42:28 GMT", - "dc:creator": "Tom Watling and Maira Butt", - "dc:date": "2024-01-18T10:42:28+00:00", - "content": "

Russian outlets are claiming that the drone struck between two fuel tanks in a St Petersburg oil facility

", - "contentSnippet": "Russian outlets are claiming that the drone struck between two fuel tanks in a St Petersburg oil facility", - "guid": "b2466307", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-18T10:42:28.000Z" - }, - { - "creator": "Arpan Rai", - "date": "2024-01-18T07:20:15+00:00", - "title": "Former Nato chief \u2018sceptical\u2019 about US aid for Ukraine continuing under Trump", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-war-nato-chief-trump-victory-aid-b2480577.html", - "pubDate": "Thu, 18 Jan 2024 07:20:15 GMT", - "dc:creator": "Arpan Rai", - "dc:date": "2024-01-18T07:20:15+00:00", - "content": "

Rasmussen says it would be detrimental for America\u2019s national security interests for Russia to win war against Ukraine

", - "contentSnippet": "Rasmussen says it would be detrimental for America\u2019s national security interests for Russia to win war against Ukraine", - "guid": "b2480577", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-18T07:20:15.000Z" - }, - { - "creator": "Jake Coyle", - "date": "2024-01-17T22:16:16+00:00", - "title": "Movie Review: In 'I.S.S.,' war on Earth disrupts life aboard the International Space Station", - "link": "https://www.independent.co.uk/news/ap-international-space-station-russia-earth-ukraine-b2480472.html", - "pubDate": "Wed, 17 Jan 2024 22:16:16 GMT", - "dc:creator": "Jake Coyle", - "dc:date": "2024-01-17T22:16:16+00:00", - "content": "After decades when fears of mutual destruction and nuclear fallout filtered into movies from \u201cFail Safe\u201d to \u201cWarGames,\u201d anxiety over current Russian-American geopolitics plays a provocative role in the new space thriller \u201cI", - "contentSnippet": "After decades when fears of mutual destruction and nuclear fallout filtered into movies from \u201cFail Safe\u201d to \u201cWarGames,\u201d anxiety over current Russian-American geopolitics plays a provocative role in the new space thriller \u201cI", - "guid": "b2480472", - "isoDate": "2024-01-17T22:16:16.000Z" - }, - { - "creator": "Sylvia Hui", - "date": "2024-01-17T15:32:20+00:00", - "title": "China and Ireland seek stronger ties during Chinese Premier Li Qiang's visit", - "link": "https://www.independent.co.uk/news/ap-ireland-china-leo-varadkar-xi-jinping-b2480225.html", - "pubDate": "Wed, 17 Jan 2024 15:32:20 GMT", - "dc:creator": "Sylvia Hui", - "dc:date": "2024-01-17T15:32:20+00:00", - "content": "Ireland\u2019s prime minister has extended a warm welcome to Chinese Premier Li Qiang", - "contentSnippet": "Ireland\u2019s prime minister has extended a warm welcome to Chinese Premier Li Qiang", - "guid": "b2480225", - "isoDate": "2024-01-17T15:32:20.000Z" - }, - { - "creator": "David McHugh", - "date": "2024-01-17T14:02:33+00:00", - "title": "Cutting interest rates too soon in Europe risks progress against inflation, central bank chief says", - "link": "https://www.independent.co.uk/news/european-central-bank-ap-christine-lagarde-germany-frankfurt-b2480153.html", - "pubDate": "Wed, 17 Jan 2024 14:02:33 GMT", - "dc:creator": "David McHugh", - "dc:date": "2024-01-17T14:02:33+00:00", - "content": "European Central Bank head Christine Lagarde says cutting interest rates too soon could threaten Europe\u2019s progress in battling the inflation that has ravaged the economy", - "contentSnippet": "European Central Bank head Christine Lagarde says cutting interest rates too soon could threaten Europe\u2019s progress in battling the inflation that has ravaged the economy", - "guid": "b2480153", - "isoDate": "2024-01-17T14:02:33.000Z" - }, - { - "creator": "By Cillian Sherlock", - "date": "2023-10-27T11:09:27+00:00", - "title": "\u2018Essential not to lose focus\u2019 on war in Ukraine, Varadkar warns", - "link": "https://www.independent.co.uk/news/uk/ukraine-leo-varadkar-irish-taoiseach-israel-b2437104.html", - "pubDate": "Fri, 27 Oct 2023 11:09:27 GMT", - "dc:creator": "By Cillian Sherlock", - "dc:date": "2023-10-27T11:09:27+00:00", - "content": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", - "contentSnippet": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", - "guid": "b2437104", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T11:09:27.000Z" - }, - { - "creator": "Alexander Butler and Maira Butt", - "date": "2023-10-27T09:48:09+00:00", - "title": "Ukraine-Russia war - live: Putin\u2019s troops \u2018executed for retreating\u2019 as Moscow \u2018faces heavy losses\u2019 in Avdiivka", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-losses-weapons-latest-b2436926.html", - "pubDate": "Fri, 27 Oct 2023 09:48:09 GMT", - "dc:creator": "Alexander Butler and Maira Butt", - "dc:date": "2023-10-27T09:48:09+00:00", - "content": "

The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said

", - "contentSnippet": "The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said", - "guid": "b2436926", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T09:48:09.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2023-10-27T07:42:34+00:00", - "title": "German prosecutors receive evidence regarding \u2018Russian war crimes in Ukraine\u2019", - "link": "https://www.independent.co.uk/news/world/europe/war-crimes-russia-ukraine-cfj-germany-b2436927.html", - "pubDate": "Fri, 27 Oct 2023 07:42:34 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2023-10-27T07:42:34+00:00", - "content": "

Clooney Foundation for Justice calls on German prosecutors to investigate Russia\u2019s \u2018war crimes\u2019 in Ukraine

", - "contentSnippet": "Clooney Foundation for Justice calls on German prosecutors to investigate Russia\u2019s \u2018war crimes\u2019 in Ukraine", - "guid": "b2436927", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T07:42:34.000Z" - }, - { - "creator": "Alexander Butler and Maira Butt", - "date": "2023-10-27T05:24:48+00:00", - "title": "Ukraine-Russia war - live: Putin\u2019s troops forced to regroup as they suffer heavy losses in east, says Kyiv", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-nuclear-weapons-drones-putin-b2436217.html", - "pubDate": "Fri, 27 Oct 2023 05:24:48 GMT", - "dc:creator": "Alexander Butler and Maira Butt", - "dc:date": "2023-10-27T05:24:48+00:00", - "content": "

The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said

", - "contentSnippet": "The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said", - "guid": "b2436217", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T05:24:48.000Z" - }, - { - "creator": "Holly Evans", - "date": "2023-10-27T05:07:11+00:00", - "title": "Moscow succession: What would happen if Putin dies? ", - "link": "https://www.independent.co.uk/news/world/europe/putin-death-health-russia-president-kremlin-b2436468.html", - "pubDate": "Fri, 27 Oct 2023 05:07:11 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2023-10-27T05:07:11+00:00", - "content": "

The prime minister would automatically become Russia\u2019s leader in the interim but there are a number of big names with the potential to fill Putin\u2019s shoes

", - "contentSnippet": "The prime minister would automatically become Russia\u2019s leader in the interim but there are a number of big names with the potential to fill Putin\u2019s shoes", - "guid": "b2436468", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T05:07:11.000Z" - }, - { - "creator": "Holly Evans", - "date": "2023-10-27T05:06:57+00:00", - "title": "Moscow succession: What would happen if Putin dies? ", - "link": "https://www.independent.co.uk/news/world/europe/vladimir-putin-death-health-russia-kremlin-b2436918.html", - "pubDate": "Fri, 27 Oct 2023 05:06:57 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2023-10-27T05:06:57+00:00", - "content": "

The prime minister would automatically become Russia\u2019s leader in the interim but there are a number of big names with the potential to fill Putin\u2019s shoes

", - "contentSnippet": "The prime minister would automatically become Russia\u2019s leader in the interim but there are a number of big names with the potential to fill Putin\u2019s shoes", - "guid": "b2436918", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T05:06:57.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2023-10-27T04:58:54+00:00", - "title": "Russia is executing its own retreating soldiers as Ukraine offensive fails, says US", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-avdiivka-white-house-b2436884.html", - "pubDate": "Fri, 27 Oct 2023 04:58:54 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2023-10-27T04:58:54+00:00", - "content": "

US claims some of Russian casualties near Avdivvka were \u2019on orders of their own leaders\u2019

", - "contentSnippet": "US claims some of Russian casualties near Avdivvka were \u2019on orders of their own leaders\u2019", - "guid": "b2436884", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T04:58:54.000Z" - }, - { - "creator": "Dasha Litvinova", - "date": "2023-10-27T04:47:23+00:00", - "title": "Abortion restrictions in Russia spark outrage as the country takes a conservative turn", - "link": "https://www.independent.co.uk/news/ap-tallinn-russia-kaliningrad-vladimir-putin-b2436913.html", - "pubDate": "Fri, 27 Oct 2023 04:47:23 GMT", - "dc:creator": "Dasha Litvinova", - "dc:date": "2023-10-27T04:47:23+00:00", - "content": "Recent proposals by authorities to restrict access to abortion have touched a nerve across Russia, which has embraced increasingly conservative values", - "contentSnippet": "Recent proposals by authorities to restrict access to abortion have touched a nerve across Russia, which has embraced increasingly conservative values", - "guid": "b2436913", - "isoDate": "2023-10-27T04:47:23.000Z" - }, - { - "creator": "Cinar Kiper and Suzan Fraser", - "date": "2023-10-27T04:38:22+00:00", - "title": "As the Turkish Republic turns 100, here's a look at its achievements and challenges ahead", - "link": "https://www.independent.co.uk/news/world/europe/recep-tayyip-erdogan-ap-mustafa-kemal-ataturk-ankara-ottoman-empire-b2436908.html", - "pubDate": "Fri, 27 Oct 2023 04:38:22 GMT", - "dc:creator": "Cinar Kiper and Suzan Fraser", - "dc:date": "2023-10-27T04:38:22+00:00", - "content": "The Turkish Republic, founded from the ruins of the Ottoman Empire by the national independence hero Mustafa Kemal Ataturk, turns 100 on Oct. 29", - "contentSnippet": "The Turkish Republic, founded from the ruins of the Ottoman Empire by the national independence hero Mustafa Kemal Ataturk, turns 100 on Oct. 29", - "guid": "b2436908", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T04:38:22.000Z" - }, - { - "creator": "John Bowden", - "date": "2023-10-26T21:09:33+00:00", - "title": "Republican senators want to separate Israel funding from Ukraine aid", - "link": "https://www.the-independent.com/news/world/americas/us-politics/senate-ukraine-israel-gaza-aid-b2436734.html", - "pubDate": "Thu, 26 Oct 2023 21:09:33 GMT", - "dc:creator": "John Bowden", - "dc:date": "2023-10-26T21:09:33+00:00", - "content": "

Conservatives hope breaking off Ukraine funding will allow it to be killed

", - "contentSnippet": "Conservatives hope breaking off Ukraine funding will allow it to be killed", - "guid": "b2436734", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-10-26T21:09:33.000Z" - }, - { - "creator": "Joe Middleton", - "date": "2023-10-26T14:44:46+00:00", - "title": "Sanctioned Russian billionaire Mikhail Fridman loses High Court battle over upkeep of mansion", - "link": "https://www.independent.co.uk/news/uk/home-news/sanctioned-russian-billionaire-mikhail-fridman-b2436505.html", - "pubDate": "Thu, 26 Oct 2023 14:44:46 GMT", - "dc:creator": "Joe Middleton", - "dc:date": "2023-10-26T14:44:46+00:00", - "content": "

Mikhail Fridman had financial assets frozen by the UK government after Russia invaded Ukraine

", - "contentSnippet": "Mikhail Fridman had financial assets frozen by the UK government after Russia invaded Ukraine", - "guid": "b2436505", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-10-26T14:44:46.000Z" - }, - { - "creator": "Tom Pilgrim", - "date": "2023-10-26T13:16:59+00:00", - "title": "Sanctioned billionaire loses High Court challenge over upkeep of mansion", - "link": "https://www.independent.co.uk/news/uk/crime/high-court-russia-ukraine-uk-government-highgate-b2436451.html", - "pubDate": "Thu, 26 Oct 2023 13:16:59 GMT", - "dc:creator": "Tom Pilgrim", - "dc:date": "2023-10-26T13:16:59+00:00", - "content": "Mikhail Fridman had financial assets frozen by the UK Government after the start of Russia\u2019s invasion of Ukraine.", - "contentSnippet": "Mikhail Fridman had financial assets frozen by the UK Government after the start of Russia\u2019s invasion of Ukraine.", - "guid": "b2436451", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-26T13:16:59.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-10-27T15:48:57+00:00", - "title": "Watch: Boris Johnson announces he\u2019s joining GB News and claims \u2018best days yet to come\u2019", - "link": "https://www.independent.co.uk/tv/news/boris-johnson-gb-news-announcement-video-b2437243.html", - "pubDate": "Fri, 27 Oct 2023 15:48:57 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-10-27T15:48:57+00:00", - "content": "

Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming \u201cthe best days are yet to come\u201d.

", - "contentSnippet": "Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming \u201cthe best days are yet to come\u201d.", - "guid": "b2437243", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-10-27T15:48:57.000Z" - }, - { - "creator": "Raf Casert", - "date": "2023-10-27T15:20:38+00:00", - "title": "EU summit turns its eyes away from Ukraine despite a commitment to stay the course with Zelenskyy", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-ap-viktor-orban-robert-fico-russia-b2437245.html", - "pubDate": "Fri, 27 Oct 2023 15:20:38 GMT", - "dc:creator": "Raf Casert", - "dc:date": "2023-10-27T15:20:38+00:00", - "content": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", - "contentSnippet": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", - "guid": "b2437245", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T15:20:38.000Z" - }, - { - "creator": "Didi Tang and Matthew Lee", - "date": "2023-10-27T15:14:49+00:00", - "title": "China's top diplomat visits Washington to help stabilize ties and perhaps set up a Biden-Xi summit", - "link": "https://www.independent.co.uk/news/world/americas/wang-yi-ap-joe-biden-china-xi-jinping-b2437231.html", - "pubDate": "Fri, 27 Oct 2023 15:14:49 GMT", - "dc:creator": "Didi Tang and Matthew Lee", - "dc:date": "2023-10-27T15:14:49+00:00", - "content": "China\u2019s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", - "contentSnippet": "China\u2019s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", - "guid": "b2437231", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:14:49.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2023-10-27T14:53:19+00:00", - "title": "Boris Johnson joining GB News to offer \u2018unvarnished\u2019 views", - "link": "https://www.independent.co.uk/news/uk/boris-johnson-britain-jacob-reesmogg-gb-news-conservative-b2437209.html", - "pubDate": "Fri, 27 Oct 2023 14:53:19 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2023-10-27T14:53:19+00:00", - "content": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", - "contentSnippet": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", - "guid": "b2437209", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T14:53:19.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2023-10-27T14:45:33+00:00", - "title": "Separatist lined up to be Putin\u2019s puppet leader in Ukraine \u2018is shot in Crimea home\u2019", - "link": "https://www.independent.co.uk/news/world/europe/oleg-tsaryov-shot-ukraine-crimea-b2437109.html", - "pubDate": "Fri, 27 Oct 2023 14:45:33 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2023-10-27T14:45:33+00:00", - "content": "

Pro-Russian former politician fighting for life in intensive care, official says

", - "contentSnippet": "Pro-Russian former politician fighting for life in intensive care, official says", - "guid": "b2437109", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T14:45:33.000Z" - } -] \ No newline at end of file + { + "creator": "Lydia Patrick,Athena Stavrou and Maira Butt", + "date": "2023-11-30T17:45:10+00:00", + "title": "Russia-Ukraine war \u2013 live: Baby injured and families trapped under rubble as Putin\u2019s troops hit record losses", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-putin-news-b2455955.html", + "pubDate": "Thu, 30 Nov 2023 17:45:10 GMT", + "dc:creator": "Lydia Patrick,Athena Stavrou and Maira Butt", + "dc:date": "2023-11-30T17:45:10+00:00", + "content": "

Four more people may be under the rubble, including a child, authorities said

", + "contentSnippet": "Four more people may be under the rubble, including a child, authorities said", + "guid": "b2455955", + "categories": ["Europe", "World"], + "isoDate": "2023-11-30T17:45:10.000Z" + }, + { + "creator": "Dasha Litvinova", + "date": "2023-11-30T16:21:38+00:00", + "title": "Russia\u2019s Supreme Court effectively outlaws LGBTQ+ activism in a landmark ruling", + "link": "https://www.independent.co.uk/news/world/europe/lgbtq-ap-russia-supreme-court-vladimir-putin-b2456303.html", + "pubDate": "Thu, 30 Nov 2023 16:21:38 GMT", + "dc:creator": "Dasha Litvinova", + "dc:date": "2023-11-30T16:21:38+00:00", + "content": "Russia\u2019s Supreme Court has effectively outlawed LGBTQ+ activism, in the most drastic step against advocates of gay, lesbian and transgender rights in the increasingly conservative country", + "contentSnippet": "Russia\u2019s Supreme Court has effectively outlawed LGBTQ+ activism, in the most drastic step against advocates of gay, lesbian and transgender rights in the increasingly conservative country", + "guid": "b2456303", + "categories": ["Europe", "World"], + "isoDate": "2023-11-30T16:21:38.000Z" + }, + { + "creator": "Konstantin Testorides and Derek Gatopoulos", + "date": "2023-11-30T13:31:33+00:00", + "title": "Russia's Lavrov faces Western critics at security meeting, walks out after speech", + "link": "https://www.independent.co.uk/news/ap-russia-ukraine-vladimir-putin-skopje-b2456184.html", + "pubDate": "Thu, 30 Nov 2023 13:31:33 GMT", + "dc:creator": "Konstantin Testorides and Derek Gatopoulos", + "dc:date": "2023-11-30T13:31:33+00:00", + "content": "Russian Foreign Minister Sergey Lavrov has faced Western critics while attending international security talks in Northern Macedonia", + "contentSnippet": "Russian Foreign Minister Sergey Lavrov has faced Western critics while attending international security talks in Northern Macedonia", + "guid": "b2456184", + "isoDate": "2023-11-30T13:31:33.000Z" + }, + { + "creator": "Seth Borenstein", + "date": "2023-11-30T12:42:24+00:00", + "title": "Pressure builds to eliminate fossil fuel use as oil executive takes over climate talks", + "link": "https://www.independent.co.uk/news/world/europe/ceo-ap-cop28-united-arab-emirates-dubai-b2456148.html", + "pubDate": "Thu, 30 Nov 2023 12:42:24 GMT", + "dc:creator": "Seth Borenstein", + "dc:date": "2023-11-30T12:42:24+00:00", + "content": "The pressure to phase out of fossil fuels is mounting on the oil company chief who Thursday took over fragile international climate negotiations that opened in Dubai amid concerns about what some say is contradictory dual roles", + "contentSnippet": "The pressure to phase out of fossil fuels is mounting on the oil company chief who Thursday took over fragile international climate negotiations that opened in Dubai amid concerns about what some say is contradictory dual roles", + "guid": "b2456148", + "categories": ["Europe", "World"], + "isoDate": "2023-11-30T12:42:24.000Z" + }, + { + "creator": "Hanna Arhirova", + "date": "2023-11-30T10:47:26+00:00", + "title": "Russian missile strikes in eastern Ukraine tear through buildings and bury families in rubble", + "link": "https://www.independent.co.uk/news/ukraine-ap-donetsk-kyiv-kremlin-b2456072.html", + "pubDate": "Thu, 30 Nov 2023 10:47:26 GMT", + "dc:creator": "Hanna Arhirova", + "dc:date": "2023-11-30T10:47:26+00:00", + "content": "Ukrainian officials say Russian missiles tore through apartment buildings in eastern Ukraine\u2019s Donetsk region during the night", + "contentSnippet": "Ukrainian officials say Russian missiles tore through apartment buildings in eastern Ukraine\u2019s Donetsk region during the night", + "guid": "b2456072", + "isoDate": "2023-11-30T10:47:26.000Z" + }, + { + "creator": "Courtney Bonnell", + "date": "2023-11-30T10:05:51+00:00", + "title": "Inflation in Europe falls to 2.4%. It shows interest rates are packing a punch", + "link": "https://www.independent.co.uk/news/europe-ap-inflation-eurostat-christine-lagarde-b2456048.html", + "pubDate": "Thu, 30 Nov 2023 10:05:51 GMT", + "dc:creator": "Courtney Bonnell", + "dc:date": "2023-11-30T10:05:51+00:00", + "content": "Europeans are again seeing some relief as inflation dropped to 2.4% in November, the lowest in more than two years", + "contentSnippet": "Europeans are again seeing some relief as inflation dropped to 2.4% in November, the lowest in more than two years", + "guid": "b2456048", + "isoDate": "2023-11-30T10:05:51.000Z" + }, + { + "creator": "Shweta Sharma", + "date": "2023-11-30T07:43:30+00:00", + "title": "Putin urges Russian women to have \u2018eight or more\u2019 children amid soaring deaths in his Ukraine war", + "link": "https://www.independent.co.uk/news/world/europe/vladimir-putin-women-eight-children-ukraine-war-b2455957.html", + "pubDate": "Thu, 30 Nov 2023 07:43:30 GMT", + "dc:creator": "Shweta Sharma", + "dc:date": "2023-11-30T07:43:30+00:00", + "content": "

Russian president says women having large families is \u2018our goal for the coming decades\u2019

", + "contentSnippet": "Russian president says women having large families is \u2018our goal for the coming decades\u2019", + "guid": "b2455957", + "categories": ["Europe", "World"], + "isoDate": "2023-11-30T07:43:30.000Z" + }, + { + "creator": "Shweta Sharma", + "date": "2023-11-30T05:43:49+00:00", + "title": "Senior Russian general \u2018killed by one of Putin\u2019s own landmines\u2019 in Ukraine", + "link": "https://www.independent.co.uk/news/world/europe/russia-vladimir-zavadsky-killed-ukraine-landmine-blast-b2455928.html", + "pubDate": "Thu, 30 Nov 2023 05:43:49 GMT", + "dc:creator": "Shweta Sharma", + "dc:date": "2023-11-30T05:43:49+00:00", + "content": "

It comes amid week of heavy losses for Russia with five other officers killed in Ukrainian airstrike

", + "contentSnippet": "It comes amid week of heavy losses for Russia with five other officers killed in Ukrainian airstrike", + "guid": "b2455928", + "categories": ["Europe", "World"], + "isoDate": "2023-11-30T05:43:49.000Z" + }, + { + "creator": "Courtney Bonnell and Josh Boak", + "date": "2023-11-30T05:02:13+00:00", + "title": "OPEC+ suppliers struggle to agree on cuts to oil production even as prices tumble", + "link": "https://www.independent.co.uk/news/ap-saudi-arabia-london-russia-joe-biden-b2455942.html", + "pubDate": "Thu, 30 Nov 2023 05:02:13 GMT", + "dc:creator": "Courtney Bonnell and Josh Boak", + "dc:date": "2023-11-30T05:02:13+00:00", + "content": "The OPEC oil cartel led by Saudi Arabia and allied producers including Russia are trying to agree on cuts to the amount of crude they send to the world", + "contentSnippet": "The OPEC oil cartel led by Saudi Arabia and allied producers including Russia are trying to agree on cuts to the amount of crude they send to the world", + "guid": "b2455942", + "isoDate": "2023-11-30T05:02:13.000Z" + }, + { + "creator": "By Grinne N. Aodha", + "date": "2023-11-30T00:01:00+00:00", + "title": "Irish premier travels to Dubai for \u2018consequential\u2019 Cop28", + "link": "https://www.independent.co.uk/climate-change/news/leo-varadkar-cop28-dubai-irish-ukraine-b2455868.html", + "pubDate": "Thu, 30 Nov 2023 00:01:00 GMT", + "dc:creator": "By Grinne N. Aodha", + "dc:date": "2023-11-30T00:01:00+00:00", + "content": "Leo Varadkar said the conference is \u2018a crucial opportunity\u2019.", + "contentSnippet": "Leo Varadkar said the conference is \u2018a crucial opportunity\u2019.", + "guid": "b2455868", + "categories": ["News", "Climate"], + "isoDate": "2023-11-30T00:01:00.000Z" + }, + { + "creator": "Ken Moritsugu", + "date": "2023-12-08T08:09:47+00:00", + "title": "Post-summit news conferences highlight the divide between China and the EU", + "link": "https://www.independent.co.uk/news/european-union-ap-china-chinese-ursula-von-der-leyen-b2460675.html", + "pubDate": "Fri, 08 Dec 2023 08:09:47 GMT", + "dc:creator": "Ken Moritsugu", + "dc:date": "2023-12-08T08:09:47+00:00", + "content": "From trade to human rights, the leaders of China and the European Union differed on a wide range of issues at a summit this week in the Chinese capital", + "contentSnippet": "From trade to human rights, the leaders of China and the European Union differed on a wide range of issues at a summit this week in the Chinese capital", + "guid": "b2460675", + "isoDate": "2023-12-08T08:09:47.000Z" + }, + { + "creator": "Tom Watling ,Arpan Rai and Maira Butt", + "date": "2023-12-08T07:07:30+00:00", + "title": "Ukraine-Russia war \u2013 live: Cameron warns blocking funds would be \u2018Christmas present\u2019 for Putin and Xi", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-vladimir-putin-news-today-b2460585.html", + "pubDate": "Fri, 08 Dec 2023 07:07:30 GMT", + "dc:creator": "Tom Watling ,Arpan Rai and Maira Butt", + "dc:date": "2023-12-08T07:07:30+00:00", + "content": "

US President Joe Biden says \u2018history will judge us\u2019 if further aid is not given to Ukraine

", + "contentSnippet": "US President Joe Biden says \u2018history will judge us\u2019 if further aid is not given to Ukraine", + "guid": "b2460585", + "categories": ["Europe", "World"], + "isoDate": "2023-12-08T07:07:30.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2023-12-08T07:00:21+00:00", + "title": "Ukraine actor dies after battling frontline wounds for months", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-actor-dies-vasyl-kukharskyi-front-line-b2460596.html", + "pubDate": "Fri, 08 Dec 2023 07:00:21 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2023-12-08T07:00:21+00:00", + "content": "

Tributes pour in for actor who joined Ukraine army during onset of Russia\u2019s invasion

", + "contentSnippet": "Tributes pour in for actor who joined Ukraine army during onset of Russia\u2019s invasion", + "guid": "b2460596", + "categories": ["Europe", "World"], + "isoDate": "2023-12-08T07:00:21.000Z" + }, + { + "creator": "Namita Singh", + "date": "2023-12-08T05:34:55+00:00", + "title": "Why so many of Nepal\u2019s Gurkhas end up fighting for Russia in Ukraine ", + "link": "https://www.independent.co.uk/asia/south-asia/russia-army-nepal-gurkhas-soldiers-ukraine-war-b2460616.html", + "pubDate": "Fri, 08 Dec 2023 05:34:55 GMT", + "dc:creator": "Namita Singh", + "dc:date": "2023-12-08T05:34:55+00:00", + "content": "

Nearly 200 Nepalese nationals are serving as mercenaries in the Russian army \u2013 but it\u2019s not only a phenomenon benefitting the Kremlin\u2019s military recruitment, as Namita Singh explains

", + "contentSnippet": "Nearly 200 Nepalese nationals are serving as mercenaries in the Russian army \u2013 but it\u2019s not only a phenomenon benefitting the Kremlin\u2019s military recruitment, as Namita Singh explains", + "guid": "b2460616", + "categories": ["South Asia", "Asia"], + "isoDate": "2023-12-08T05:34:55.000Z" + }, + { + "creator": "Shweta Sharma", + "date": "2023-12-08T04:16:38+00:00", + "title": "Nepal calls on Russia not to deploy its Gurkhas in Ukraine war ", + "link": "https://www.independent.co.uk/asia/south-asia/nepal-gurkhas-ukraine-russia-war-deaths-b2460588.html", + "pubDate": "Fri, 08 Dec 2023 04:16:38 GMT", + "dc:creator": "Shweta Sharma", + "dc:date": "2023-12-08T04:16:38+00:00", + "content": "

Six Nepali soldiers embedded in Russian army have been killed fighting in Ukraine so far

", + "contentSnippet": "Six Nepali soldiers embedded in Russian army have been killed fighting in Ukraine so far", + "guid": "b2460588", + "categories": ["South Asia", "Asia"], + "isoDate": "2023-12-08T04:16:38.000Z" + }, + { + "creator": "Eric Garcia", + "date": "2023-12-08T00:04:04+00:00", + "title": "Democrats and Republicans go into overtime on Ukraine-immigration talks", + "link": "https://www.the-independent.com/news/world/americas/us-politics/democrats-republicans-senate-immigration-ukraine-b2460400.html", + "pubDate": "Fri, 08 Dec 2023 00:04:04 GMT", + "dc:creator": "Eric Garcia", + "dc:date": "2023-12-08T00:04:04+00:00", + "content": "

The White House has got involved as the end of the year approaches

", + "contentSnippet": "The White House has got involved as the end of the year approaches", + "guid": "b2460400", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-08T00:04:04.000Z" + }, + { + "creator": "John Bowden", + "date": "2023-12-07T23:26:20+00:00", + "title": "Putin allies jubilant as US Republicans balk on Ukraine aid, report says", + "link": "https://www.the-independent.com/news/world/americas/us-politics/putin-russia-ukrain-senate-republicans-b2460506.html", + "pubDate": "Thu, 07 Dec 2023 23:26:20 GMT", + "dc:creator": "John Bowden", + "dc:date": "2023-12-07T23:26:20+00:00", + "content": "

\u2018It is even more dangerous to be a friend of the United States than its enemy. In the end, they will abandon you, leaving nothing but the scorched earth on your territory\u2019

", + "contentSnippet": "\u2018It is even more dangerous to be a friend of the United States than its enemy. In the end, they will abandon you, leaving nothing but the scorched earth on your territory\u2019", + "guid": "b2460506", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-07T23:26:20.000Z" + }, + { + "creator": "Dasha Litvinova", + "date": "2023-12-07T19:36:19+00:00", + "title": "Kremlin foe Navalny's lawyers to remain in detention at least through mid-March, Russian court rules", + "link": "https://www.independent.co.uk/news/world/europe/alexei-navalny-ap-kremlin-moscow-tallinn-b2460427.html", + "pubDate": "Thu, 07 Dec 2023 19:36:19 GMT", + "dc:creator": "Dasha Litvinova", + "dc:date": "2023-12-07T19:36:19+00:00", + "content": "A Moscow court has extended the pre-trial detention of three lawyers who once represented imprisoned opposition leader Alexei Navalny", + "contentSnippet": "A Moscow court has extended the pre-trial detention of three lawyers who once represented imprisoned opposition leader Alexei Navalny", + "guid": "b2460427", + "categories": ["Europe", "World"], + "isoDate": "2023-12-07T19:36:19.000Z" + }, + { + "creator": "Eric Garcia and Katie Hawkinson", + "date": "2023-12-07T19:16:29+00:00", + "title": "Senate Democrats call for conditions on US aid to Israel two months into war with Hamas", + "link": "https://www.the-independent.com/news/world/americas/us-politics/us-senate-democrats-israel-hamas-aid-b2460398.html", + "pubDate": "Thu, 07 Dec 2023 19:16:29 GMT", + "dc:creator": "Eric Garcia and Katie Hawkinson", + "dc:date": "2023-12-07T19:16:29+00:00", + "content": "

Republicans blocked a vote on a $110.5bn supplemental bill that would have included aid not just to Israel but also to Ukraine

", + "contentSnippet": "Republicans blocked a vote on a $110.5bn supplemental bill that would have included aid not just to Israel but also to Ukraine", + "guid": "b2460398", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-07T19:16:29.000Z" + }, + { + "creator": "Chinedu Asadu", + "date": "2023-12-07T19:15:43+00:00", + "title": "UN says Africa faces unprecedented food crisis, with 3 in 4 people unable to afford a healthy diet", + "link": "https://www.independent.co.uk/news/ap-nigeria-united-nations-abuja-east-africa-b2460421.html", + "pubDate": "Thu, 07 Dec 2023 19:15:43 GMT", + "dc:creator": "Chinedu Asadu", + "dc:date": "2023-12-07T19:15:43+00:00", + "content": "The United Nations says at least three of every four Africans can\u2019t afford a healthy diet because of an \u201cunprecedented food crisis.\u201d", + "contentSnippet": "The United Nations says at least three of every four Africans can\u2019t afford a healthy diet because of an \u201cunprecedented food crisis.\u201d", + "guid": "b2460421", + "isoDate": "2023-12-07T19:15:43.000Z" + }, + { + "creator": "Gustaf Kilander", + "date": "2023-12-07T17:43:53+00:00", + "title": "Even Fox News has had enough of Ramaswamy as host slams \u2018naive\u2019 Ukraine policy", + "link": "https://www.the-independent.com/news/world/americas/us-politics/fox-news-vivek-ramaswamy-ukraine-b2460243.html", + "pubDate": "Thu, 07 Dec 2023 17:43:53 GMT", + "dc:creator": "Gustaf Kilander", + "dc:date": "2023-12-07T17:43:53+00:00", + "content": "

\u2018Are you comfortable giving up Eastern Europe?\u2019 Fox host asks in contentious exchange

", + "contentSnippet": "\u2018Are you comfortable giving up Eastern Europe?\u2019 Fox host asks in contentious exchange", + "guid": "b2460243", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-07T17:43:53.000Z" + }, + { + "creator": "Rebecca Speare-Cole", + "date": "2023-12-07T17:27:41+00:00", + "title": "\u2018Excess profits\u2019 made by big firms boosted inflation \u2013 report", + "link": "https://www.independent.co.uk/business/excess-profits-made-by-big-firms-boosted-inflation-report-b2460341.html", + "pubDate": "Thu, 07 Dec 2023 17:27:41 GMT", + "dc:creator": "Rebecca Speare-Cole", + "dc:date": "2023-12-07T17:27:41+00:00", + "content": "Researchers found that big firms, including UK-listed companies, saw their profits outpace inflation while ordinary families\u2019 real incomes plummeted.", + "contentSnippet": "Researchers found that big firms, including UK-listed companies, saw their profits outpace inflation while ordinary families\u2019 real incomes plummeted.", + "guid": "b2460341", + "categories": ["Business"], + "isoDate": "2023-12-07T17:27:41.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2023-12-07T15:11:13+00:00", + "title": "Ukraine claims assassination of \u2018traitor\u2019 ex-MP who fled to Russia", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-assassination-putin-b2460029.html", + "pubDate": "Thu, 07 Dec 2023 15:11:13 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2023-12-07T15:11:13+00:00", + "content": "

Hours before his death Illia Kyva called Ukrainian President Volodymr Zelensky \u2018cowardly and narcissistic\u2019

", + "contentSnippet": "Hours before his death Illia Kyva called Ukrainian President Volodymr Zelensky \u2018cowardly and narcissistic\u2019", + "guid": "b2460029", + "categories": ["Europe", "World"], + "isoDate": "2023-12-07T15:11:13.000Z" + }, + { + "creator": "Mari Yamaguchi", + "date": "2023-12-07T14:23:39+00:00", + "title": "Japan pledges $4.5B more in aid for Ukraine, including $1B in humanitarian funds", + "link": "https://www.independent.co.uk/news/japan-ap-ukraine-fumio-kishida-tokyo-b2460205.html", + "pubDate": "Thu, 07 Dec 2023 14:23:39 GMT", + "dc:creator": "Mari Yamaguchi", + "dc:date": "2023-12-07T14:23:39+00:00", + "content": "Japan\u2019s Prime Minister Fumio Kishida has pledged $4.5 billion to Ukraine, including $1 billion in humanitarian aid to help support the war-torn country\u2019s recovery efforts", + "contentSnippet": "Japan\u2019s Prime Minister Fumio Kishida has pledged $4.5 billion to Ukraine, including $1 billion in humanitarian aid to help support the war-torn country\u2019s recovery efforts", + "guid": "b2460205", + "isoDate": "2023-12-07T14:23:39.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-07T14:13:36+00:00", + "title": "Russian girl shoots several classmates, leaving 1 dead, before killing herself", + "link": "https://www.independent.co.uk/news/ap-moscow-tass-ukraine-interior-ministry-b2460195.html", + "pubDate": "Thu, 07 Dec 2023 14:13:36 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-07T14:13:36+00:00", + "content": "State news agencies and authorities in Russia say a girl shot several classmates before killing herself at a school in the city of Bryansk", + "contentSnippet": "State news agencies and authorities in Russia say a girl shot several classmates before killing herself at a school in the city of Bryansk", + "guid": "b2460195", + "isoDate": "2023-12-07T14:13:36.000Z" + }, + { + "creator": "Francis Kokutse and Sam Metz", + "date": "2023-12-07T13:49:08+00:00", + "title": "United Nations bemoans struggles to fund peacekeeping as nations demand withdrawal of missions", + "link": "https://www.independent.co.uk/news/united-nations-ap-congo-ghana-accra-b2460180.html", + "pubDate": "Thu, 07 Dec 2023 13:49:08 GMT", + "dc:creator": "Francis Kokutse and Sam Metz", + "dc:date": "2023-12-07T13:49:08+00:00", + "content": "The United Nations\u2019 top peacekeeping official has defended its missions worldwide even as many countries where peacekeepers operate are demanding their withdrawal", + "contentSnippet": "The United Nations\u2019 top peacekeeping official has defended its missions worldwide even as many countries where peacekeepers operate are demanding their withdrawal", + "guid": "b2460180", + "isoDate": "2023-12-07T13:49:08.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2023-12-08T09:44:58+00:00", + "title": "Russia used US celebrity Cameo videos to spread propaganda, says report", + "link": "https://www.independent.co.uk/news/world/europe/russia-zelensky-cameo-video-disinformation-b2460633.html", + "pubDate": "Fri, 08 Dec 2023 09:44:58 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2023-12-08T09:44:58+00:00", + "content": "

Videos doctored to suggest American celebrities asked Volodymyr Zelensky to seek help for substance abuse

", + "contentSnippet": "Videos doctored to suggest American celebrities asked Volodymyr Zelensky to seek help for substance abuse", + "guid": "b2460633", + "categories": ["Europe", "World"], + "isoDate": "2023-12-08T09:44:58.000Z" + }, + { + "creator": "Alexander Butler and Tom Watling ", + "date": "2023-12-15T14:49:37+00:00", + "title": "Ukraine-Russia war \u2013 live: 26 injured as Ukrainian councillor detonates grenades at meeting, police say", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-war-putin-counter-offensive-latest-b2464547.html", + "pubDate": "Fri, 15 Dec 2023 14:49:37 GMT", + "dc:creator": "Alexander Butler and Tom Watling ", + "dc:date": "2023-12-15T14:49:37+00:00", + "content": "

The councillor took grenades out of his jacket before tossing them onto the floor at a meeting livestreamed to Facebook

", + "contentSnippet": "The councillor took grenades out of his jacket before tossing them onto the floor at a meeting livestreamed to Facebook", + "guid": "b2463751", + "categories": ["Europe", "World"], + "isoDate": "2023-12-15T14:49:37.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-15T11:34:10+00:00", + "title": "EU releasing 5 billion euros to Poland by year's end as new government works to restore rule of law", + "link": "https://www.independent.co.uk/news/poland-ap-donald-tusk-brussels-european-commission-b2464712.html", + "pubDate": "Fri, 15 Dec 2023 11:34:10 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-15T11:34:10+00:00", + "content": "The Polish prime minister and a top EU leader say that the European Union will by year\u2019s end transfer to Poland the first 5 billion euros in funding that was frozen over democratic backsliding under the previous government in Warsaw", + "contentSnippet": "The Polish prime minister and a top EU leader say that the European Union will by year\u2019s end transfer to Poland the first 5 billion euros in funding that was frozen over democratic backsliding under the previous government in Warsaw", + "guid": "b2464712", + "isoDate": "2023-12-15T11:34:10.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2023-12-15T06:39:02+00:00", + "title": "Former FBI agent gets over four years in prison for aiding Russian oligarch", + "link": "https://www.independent.co.uk/news/world/americas/crime/fbi-charles-mcgonigal-prison-oligarch-b2464545.html", + "pubDate": "Fri, 15 Dec 2023 06:39:02 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2023-12-15T06:39:02+00:00", + "content": "

Manhattan court sentences Charles McGonigal to prison for violating US sanctions

", + "contentSnippet": "Manhattan court sentences Charles McGonigal to prison for violating US sanctions", + "guid": "b2464545", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-12-15T06:39:02.000Z" + }, + { + "creator": "Lolita C. Baldor", + "date": "2023-12-15T05:19:56+00:00", + "title": "How the US keeps funding Ukraine's military \u2014 even as it says it's out of money", + "link": "https://www.independent.co.uk/news/ukraine-ap-white-house-joe-biden-pentagon-b2464559.html", + "pubDate": "Fri, 15 Dec 2023 05:19:56 GMT", + "dc:creator": "Lolita C. Baldor", + "dc:date": "2023-12-15T05:19:56+00:00", + "content": "The White House says funding for Ukraine has run out and it has been increasing pressure on Congress to pass stalled legislation to support the war against Russia", + "contentSnippet": "The White House says funding for Ukraine has run out and it has been increasing pressure on Congress to pass stalled legislation to support the war against Russia", + "guid": "b2464559", + "isoDate": "2023-12-15T05:19:56.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2023-12-15T05:08:38+00:00", + "title": "Hungary blocks \u00a343bn EU funding for Ukraine hours after Kyiv membership talks agreement", + "link": "https://www.independent.co.uk/news/world/europe/hungarg-eu-funding-ukraine-viktor-orban-b2464537.html", + "pubDate": "Fri, 15 Dec 2023 05:08:38 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2023-12-15T05:08:38+00:00", + "content": "

EU leaders plan to resume discussions on aid for Ukraine early next year

", + "contentSnippet": "EU leaders plan to resume discussions on aid for Ukraine early next year", + "guid": "b2464537", + "categories": ["Europe", "World"], + "isoDate": "2023-12-15T05:08:38.000Z" + }, + { + "creator": "Jon Gambrell", + "date": "2023-12-15T05:02:09+00:00", + "title": "A year of war: 2023 sees worst-ever Israel-Hamas combat as Russian attacks on Ukraine grind on", + "link": "https://www.independent.co.uk/news/israel-ap-hamas-ukraine-gaza-b2464550.html", + "pubDate": "Fri, 15 Dec 2023 05:02:09 GMT", + "dc:creator": "Jon Gambrell", + "dc:date": "2023-12-15T05:02:09+00:00", + "content": "From the Israel-Hamas war to Russia\u2019s grinding battles against Ukraine, 2023 has shown the dangers of armed conflicts breaking out into region-wide combat", + "contentSnippet": "From the Israel-Hamas war to Russia\u2019s grinding battles against Ukraine, 2023 has shown the dangers of armed conflicts breaking out into region-wide combat", + "guid": "b2464550", + "isoDate": "2023-12-15T05:02:09.000Z" + }, + { + "creator": "Angela Charlton", + "date": "2023-12-15T02:43:31+00:00", + "title": "Ukraine\u2019s a step closer to joining the EU. Here\u2019s what it means, and why it matters", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-ap-brussels-north-macedonia-viktor-orban-b2464519.html", + "pubDate": "Fri, 15 Dec 2023 02:43:31 GMT", + "dc:creator": "Angela Charlton", + "dc:date": "2023-12-15T02:43:31+00:00", + "content": "Ukraine has received a green light to start sped-up talks on joining the European Union", + "contentSnippet": "Ukraine has received a green light to start sped-up talks on joining the European Union", + "guid": "b2464519", + "categories": ["Europe", "World"], + "isoDate": "2023-12-15T02:43:31.000Z" + }, + { + "creator": "Graeme Massie", + "date": "2023-12-14T21:02:37+00:00", + "title": "Ramaswamy says eastern Ukrainians don\u2019t mind Russian occupation", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/ramaswamy-ukraine-russia-cnn-b2464360.html", + "pubDate": "Thu, 14 Dec 2023 21:02:37 GMT", + "dc:creator": "Graeme Massie", + "dc:date": "2023-12-14T21:02:37+00:00", + "content": "

The biotech CEO said he would give Russia concessions to end its unprovoked attack on Ukraine

", + "contentSnippet": "The biotech CEO said he would give Russia concessions to end its unprovoked attack on Ukraine", + "guid": "b2464360", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-14T21:02:37.000Z" + }, + { + "creator": "Eric Garcia", + "date": "2023-12-14T19:35:50+00:00", + "title": "Voices: Progressives warn Biden about using immigrants as a \u2018bargaining chip\u2019 for Ukraine", + "link": "https://www.independent.co.uk/voices/biden-ukraine-aid-immigration-negotiations-b2464180.html", + "pubDate": "Thu, 14 Dec 2023 19:35:50 GMT", + "dc:creator": "Eric Garcia", + "dc:date": "2023-12-14T19:35:50+00:00", + "content": "

Some Democrats are warning they will not support a deal that significantly curtails legal immigration for aid to Ukraine

", + "contentSnippet": "Some Democrats are warning they will not support a deal that significantly curtails legal immigration for aid to Ukraine", + "guid": "b2464180", + "categories": ["Voices"], + "isoDate": "2023-12-14T19:35:50.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2023-12-14T19:17:42+00:00", + "title": "Putin confronted by critical text messages beamed on screen at year-end news conference", + "link": "https://www.independent.co.uk/news/world/europe/putin-russia-ukraine-war-eu-b2464173.html", + "pubDate": "Thu, 14 Dec 2023 19:17:42 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2023-12-14T19:17:42+00:00", + "content": "

President sought to paint rosy picture of Russia at four-hour-long event \u2013 but citizens had other plans

", + "contentSnippet": "President sought to paint rosy picture of Russia at four-hour-long event \u2013 but citizens had other plans", + "guid": "b2464173", + "categories": ["Europe", "World"], + "isoDate": "2023-12-14T19:17:42.000Z" + }, + { + "creator": "Dasha Litvinova", + "date": "2023-12-14T19:12:29+00:00", + "title": "Court voids fine given to Russian activist for criticizing war and sends case back to prosecutors", + "link": "https://www.independent.co.uk/news/ap-ukraine-kremlin-alexei-navalny-estonia-b2464346.html", + "pubDate": "Thu, 14 Dec 2023 19:12:29 GMT", + "dc:creator": "Dasha Litvinova", + "dc:date": "2023-12-14T19:12:29+00:00", + "content": "A court in Russia has overturned a fine handed to a veteran human rights advocate for speaking out against the war in Ukraine", + "contentSnippet": "A court in Russia has overturned a fine handed to a veteran human rights advocate for speaking out against the war in Ukraine", + "guid": "b2464346", + "isoDate": "2023-12-14T19:12:29.000Z" + }, + { + "creator": "Illia Novikov", + "date": "2023-12-14T15:28:27+00:00", + "title": "Kyiv protesters demand more spending on the Ukraine's war effort and less on local projects", + "link": "https://www.independent.co.uk/news/money-ap-ukraine-kyiv-russia-b2464134.html", + "pubDate": "Thu, 14 Dec 2023 15:28:27 GMT", + "dc:creator": "Illia Novikov", + "dc:date": "2023-12-14T15:28:27+00:00", + "content": "Hundreds of protesters angered by what they view as wasteful municipal spending by Kyiv officials have gathered outside the Ukrainian capital's city hall", + "contentSnippet": "Hundreds of protesters angered by what they view as wasteful municipal spending by Kyiv officials have gathered outside the Ukrainian capital's city hall", + "guid": "b2464134", + "isoDate": "2023-12-14T15:28:27.000Z" + }, + { + "creator": "Jari Tanner", + "date": "2023-12-14T15:06:39+00:00", + "title": "Finland, NATO's newest member, will sign a defense pact with the United States", + "link": "https://www.independent.co.uk/news/finland-ap-russia-nato-washington-b2464117.html", + "pubDate": "Thu, 14 Dec 2023 15:06:39 GMT", + "dc:creator": "Jari Tanner", + "dc:date": "2023-12-14T15:06:39+00:00", + "content": "NATO\u2019s newest member and Russia\u2019s neighbor Finland is to sign a bilateral defense cooperation agreement next week with the United States in a deal that allows Washington to send troops into the Nordic country and to store weapons and equipment there", + "contentSnippet": "NATO\u2019s newest member and Russia\u2019s neighbor Finland is to sign a bilateral defense cooperation agreement next week with the United States in a deal that allows Washington to send troops into the Nordic country and to store weapons and equipment there", + "guid": "b2464117", + "isoDate": "2023-12-14T15:06:39.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2023-12-14T15:05:45+00:00", + "title": "Watch: David Cameron questioned by Lords committee for first time as foreign secretary", + "link": "https://www.independent.co.uk/news/uk/politics/david-cameron-house-lords-brexit-b2464084.html", + "pubDate": "Thu, 14 Dec 2023 15:05:45 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2023-12-14T15:05:45+00:00", + "content": "

Watch as David Cameron is questioned for the first time as foreign secretary in front of a Lords committee on Thursday, 14 December.

", + "contentSnippet": "Watch as David Cameron is questioned for the first time as foreign secretary in front of a Lords committee on Thursday, 14 December.", + "guid": "b2464084", + "categories": ["UK Politics", "UK"], + "isoDate": "2023-12-14T15:05:45.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-12-15T15:50:04+00:00", + "title": "Grenades detonated during Ukraine village council meeting, wounding 26", + "link": "https://www.independent.co.uk/tv/news/ukraine-grenades-council-meeting-b2464857.html", + "pubDate": "Fri, 15 Dec 2023 15:50:04 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-12-15T15:50:04+00:00", + "content": "

Watch the moment a Ukrainian councillor detonates two grenades at a village meeting on Friday, 15 December.

", + "contentSnippet": "Watch the moment a Ukrainian councillor detonates two grenades at a village meeting on Friday, 15 December.", + "guid": "b2464857", + "categories": ["News", "Indy TV"], + "isoDate": "2023-12-15T15:50:04.000Z" + }, + { + "creator": "Chris Stevenson", + "date": "2023-12-15T17:28:53+00:00", + "title": "The battle to get \u00a343bn in EU aid to Ukraine after Hungary\u2019s Orban blocks it \u2013 and why it\u2019s so important", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-war-russia-eu-aid-funds-b2464937.html", + "pubDate": "Fri, 15 Dec 2023 17:28:53 GMT", + "dc:creator": "Chris Stevenson", + "dc:date": "2023-12-15T17:28:53+00:00", + "content": "

With the US Congress also struggling to agree on sending fresh funds to Kyiv, this is a key moment

", + "contentSnippet": "With the US Congress also struggling to agree on sending fresh funds to Kyiv, this is a key moment", + "guid": "b2464937", + "categories": ["Europe", "World"], + "isoDate": "2023-12-15T17:28:53.000Z" + }, + { + "creator": "Raf Casert", + "date": "2023-12-15T17:11:03+00:00", + "title": "The EU's drip-feed of aid frustrates Ukraine, despite the promise of membership talks", + "link": "https://www.independent.co.uk/news/ukraine-ap-viktor-orban-russia-brussels-b2464936.html", + "pubDate": "Fri, 15 Dec 2023 17:11:03 GMT", + "dc:creator": "Raf Casert", + "dc:date": "2023-12-15T17:11:03+00:00", + "content": "Drop by drop, Ukraine is being supplied with aid and arms from its European allies, at a time when it becomes ever clearer it would take a deluge to turn its war against Russia around", + "contentSnippet": "Drop by drop, Ukraine is being supplied with aid and arms from its European allies, at a time when it becomes ever clearer it would take a deluge to turn its war against Russia around", + "guid": "b2464936", + "isoDate": "2023-12-15T17:11:03.000Z" + }, + { + "creator": "Geir Moulson", + "date": "2024-01-04T10:29:43+00:00", + "title": "Germany's CO2 emissions are at their lowest in 7 decades, study shows", + "link": "https://www.independent.co.uk/news/germany-ap-co2-emissions-berlin-europe-b2473119.html", + "pubDate": "Thu, 04 Jan 2024 10:29:43 GMT", + "dc:creator": "Geir Moulson", + "dc:date": "2024-01-04T10:29:43+00:00", + "content": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", + "contentSnippet": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", + "guid": "b2473119", + "isoDate": "2024-01-04T10:29:43.000Z" + }, + { + "creator": "Tom Watling and Maryam Zakir-Hussain", + "date": "2024-01-04T09:06:21+00:00", + "title": "Ukraine-Russia war live: Kyiv steps up drone strikes as Nato to buy 1,000 Patriot missiles ", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-latest-putin-nato-pow-b2473013.html", + "pubDate": "Thu, 04 Jan 2024 09:06:21 GMT", + "dc:creator": "Tom Watling and Maryam Zakir-Hussain", + "dc:date": "2024-01-04T09:06:21+00:00", + "content": "

Russian missile attacks on Ukraine have killed at least 44 people in the last five days and injured roughly 300 more

", + "contentSnippet": "Russian missile attacks on Ukraine have killed at least 44 people in the last five days and injured roughly 300 more", + "guid": "b2466307", + "categories": ["Europe", "World"], + "isoDate": "2024-01-04T09:06:21.000Z" + }, + { + "creator": "Sophie Holloway", + "date": "2024-01-04T06:09:38+00:00", + "title": "Ukrainian photographer Serhii Miroshynk on capturing life under a macro lens", + "link": "https://www.independent.co.uk/arts-entertainment/art/features/serhii-miroshnyk-photography-ukraine-b2470947.html", + "pubDate": "Thu, 04 Jan 2024 06:09:38 GMT", + "dc:creator": "Sophie Holloway", + "dc:date": "2024-01-04T06:09:38+00:00", + "content": "

His photograph of a green beetle resting on an acorn beat out 60,000 entries to win the Wiki Loves Earth prize this year. Sophie Holloway speaks to Miroshnyk about his fascination with tiny treasures, the war in Ukraine, and summers spent at \u2018dachas\u2019 in the forest

", + "contentSnippet": "His photograph of a green beetle resting on an acorn beat out 60,000 entries to win the Wiki Loves Earth prize this year. Sophie Holloway speaks to Miroshnyk about his fascination with tiny treasures, the war in Ukraine, and summers spent at \u2018dachas\u2019 in the forest", + "guid": "b2470947", + "categories": ["Features", "Art", "Culture"], + "isoDate": "2024-01-04T06:09:38.000Z" + }, + { + "creator": "Arpan Rai", + "date": "2024-01-04T05:05:09+00:00", + "title": "Russia and Ukraine exchange hundreds of prisoners of war in biggest swap since beginning of invasion", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-prisoner-swap-b2473003.html", + "pubDate": "Thu, 04 Jan 2024 05:05:09 GMT", + "dc:creator": "Arpan Rai", + "dc:date": "2024-01-04T05:05:09+00:00", + "content": "

Six civilians among 230 Ukrainians released by Russia, says Zelensky

", + "contentSnippet": "Six civilians among 230 Ukrainians released by Russia, says Zelensky", + "guid": "b2473003", + "categories": ["Europe", "World"], + "isoDate": "2024-01-04T05:05:09.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2024-01-03T19:02:34+00:00", + "title": "Ukraine and Russia fire hundreds of missiles and drones in escalating aerial war", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-war-russia-drones-putin-missiles-b2472804.html", + "pubDate": "Wed, 03 Jan 2024 19:02:34 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2024-01-03T19:02:34+00:00", + "content": "

It is likely to become a battle of endurance as Ukraine calls on Western nations to help bulk up their air defence systems

", + "contentSnippet": "It is likely to become a battle of endurance as Ukraine calls on Western nations to help bulk up their air defence systems", + "guid": "b2472804", + "categories": ["Europe", "World"], + "isoDate": "2024-01-03T19:02:34.000Z" + }, + { + "creator": "Hanna Arhirova", + "date": "2024-01-03T18:47:47+00:00", + "title": "As a missile hits a Kyiv apartment building, survivors lose a lifetime's possessions in seconds", + "link": "https://www.independent.co.uk/news/ap-kyiv-ukraine-two-russia-b2472830.html", + "pubDate": "Wed, 03 Jan 2024 18:47:47 GMT", + "dc:creator": "Hanna Arhirova", + "dc:date": "2024-01-03T18:47:47+00:00", + "content": "Residents of a Kyiv apartment building are salvaging what they can a day after a Russian missile attack set it ablaze, tore off parts of its facade, and gouged a crater next to it", + "contentSnippet": "Residents of a Kyiv apartment building are salvaging what they can a day after a Russian missile attack set it ablaze, tore off parts of its facade, and gouged a crater next to it", + "guid": "b2472830", + "isoDate": "2024-01-03T18:47:47.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-03T13:49:33+00:00", + "title": "NATO to help buy 1,000 Patriot missiles to defend allies as Russia ramps up air assault on Ukraine", + "link": "https://www.independent.co.uk/news/nato-ap-ukraine-russia-patriots-b2472650.html", + "pubDate": "Wed, 03 Jan 2024 13:49:33 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-03T13:49:33+00:00", + "content": "NATO says it will help buy up to 1,000 Patriot missiles so allies can better protect their territory as Russia ramps up its air assault on Ukraine", + "contentSnippet": "NATO says it will help buy up to 1,000 Patriot missiles so allies can better protect their territory as Russia ramps up its air assault on Ukraine", + "guid": "b2472650", + "isoDate": "2024-01-03T13:49:33.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2024-01-04T15:59:24+00:00", + "title": "Hundreds of Russian soldiers surrender to Ukraine using \u2018I want to live\u2019 hotline ", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-surrender-hotline-b2473198.html", + "pubDate": "Thu, 04 Jan 2024 15:59:24 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2024-01-04T15:59:24+00:00", + "content": "

Roughly three Russian soldiers surrendering every week through hotline

", + "contentSnippet": "Roughly three Russian soldiers surrendering every week through hotline", + "guid": "b2473198", + "categories": ["Europe", "World"], + "isoDate": "2024-01-04T15:59:24.000Z" + }, + { + "creator": "Jill Lawless", + "date": "2024-01-04T14:19:52+00:00", + "title": "With 2024 being a UK election year, the opposition wants an early vote. PM Rishi Sunak is in no rush", + "link": "https://www.independent.co.uk/news/uk/politics/ap-conservatives-labour-party-rishi-sunak-london-b2473247.html", + "pubDate": "Thu, 04 Jan 2024 14:19:52 GMT", + "dc:creator": "Jill Lawless", + "dc:date": "2024-01-04T14:19:52+00:00", + "content": "The politician favored to become Britain\u2019s next prime minister has kicked off an election year by accusing the governing Conservatives of leading the country into decline and despair", + "contentSnippet": "The politician favored to become Britain\u2019s next prime minister has kicked off an election year by accusing the governing Conservatives of leading the country into decline and despair", + "guid": "b2473247", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-04T14:19:52.000Z" + }, + { + "creator": "Associated Press", + "date": "2024-01-04T13:45:27+00:00", + "title": "What is the Epiphany? Why is it also called Three Kings Day? And when do Christians celebrate it?", + "link": "https://www.independent.co.uk/news/ap-christians-epiphany-children-orthodox-b2473230.html", + "pubDate": "Thu, 04 Jan 2024 13:45:27 GMT", + "dc:creator": "Associated Press", + "dc:date": "2024-01-04T13:45:27+00:00", + "content": "Christians around the world will mark Epiphany on Jan. 6 with a series of celebrations", + "contentSnippet": "Christians around the world will mark Epiphany on Jan. 6 with a series of celebrations", + "guid": "b2473230", + "isoDate": "2024-01-04T13:45:27.000Z" + }, + { + "creator": "Dusan Stojanovic", + "date": "2024-01-04T12:47:12+00:00", + "title": "Serbia's army proposes bringing back the draft as tensions continue to rise in the Balkans", + "link": "https://www.independent.co.uk/news/serbia-ap-balkans-belgrade-aleksandar-vucic-b2473194.html", + "pubDate": "Thu, 04 Jan 2024 12:47:12 GMT", + "dc:creator": "Dusan Stojanovic", + "dc:date": "2024-01-04T12:47:12+00:00", + "content": "Serbia's military wants to reintroduce obligatory military service as tensions continue to rise in the Balkans", + "contentSnippet": "Serbia's military wants to reintroduce obligatory military service as tensions continue to rise in the Balkans", + "guid": "b2473194", + "isoDate": "2024-01-04T12:47:12.000Z" + }, + { + "creator": "Tom Watling and Maryam Zakir-Hussain", + "date": "2024-01-05T13:47:39+00:00", + "title": "Ukraine-Russia war live: Kyiv inflicting significant losses on Putin\u2019s forces around Dnipro River", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-putin-kyiv-latest-news-b2473609.html", + "pubDate": "Fri, 05 Jan 2024 13:47:39 GMT", + "dc:creator": "Tom Watling and Maryam Zakir-Hussain", + "dc:date": "2024-01-05T13:47:39+00:00", + "content": "

Russia began its tank-heavy assault on the eastern Ukrianian city of Avdiivka in October last year and have lost five battalions worth of equipment since

", + "contentSnippet": "Russia began its tank-heavy assault on the eastern Ukrianian city of Avdiivka in October last year and have lost five battalions worth of equipment since", + "guid": "b2466307", + "categories": ["Europe", "World"], + "isoDate": "2024-01-05T13:47:39.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-05T12:45:37+00:00", + "title": "PepsiCo products are being pulled from some Carrefour grocery stores in Europe over price hikes", + "link": "https://www.independent.co.uk/news/carrefour-ap-pepsico-quaker-oats-spain-b2473790.html", + "pubDate": "Fri, 05 Jan 2024 12:45:37 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-05T12:45:37+00:00", + "content": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", + "contentSnippet": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", + "guid": "b2473790", + "isoDate": "2024-01-05T12:45:37.000Z" + }, + { + "creator": "The Associated Press", + "date": "2024-01-05T12:28:11+00:00", + "title": "Ukraine unleashes more drones and missiles at Russian areas as part of its new year strategy", + "link": "https://www.independent.co.uk/news/ukraine-ap-kyiv-crimea-moscow-b2473775.html", + "pubDate": "Fri, 05 Jan 2024 12:28:11 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2024-01-05T12:28:11+00:00", + "content": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", + "contentSnippet": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", + "guid": "b2473775", + "isoDate": "2024-01-05T12:28:11.000Z" + }, + { + "creator": "David McHugh", + "date": "2024-01-05T10:10:42+00:00", + "title": "Europe's inflation is up after months of decline. It could mean a longer wait for interest rate cuts", + "link": "https://www.independent.co.uk/news/europe-ap-european-central-bank-inflation-germany-b2473709.html", + "pubDate": "Fri, 05 Jan 2024 10:10:42 GMT", + "dc:creator": "David McHugh", + "dc:date": "2024-01-05T10:10:42+00:00", + "content": "Inflation is on the rebound in Europe", + "contentSnippet": "Inflation is on the rebound in Europe", + "guid": "b2473709", + "isoDate": "2024-01-05T10:10:42.000Z" + }, + { + "creator": "Arpan Rai", + "date": "2024-01-05T06:15:44+00:00", + "title": "UK condemns Russia for using North Korean ballistic missiles on Ukraine", + "link": "https://www.independent.co.uk/news/world/europe/putin-north-korea-ballistic-missile-ukraine-white-house-b2473615.html", + "pubDate": "Fri, 05 Jan 2024 06:15:44 GMT", + "dc:creator": "Arpan Rai", + "dc:date": "2024-01-05T06:15:44+00:00", + "content": "

Sunak administration asks North Korea to \u2018cease arms supply to Russia\u2019

", + "contentSnippet": "Sunak administration asks North Korea to \u2018cease arms supply to Russia\u2019", + "guid": "b2473615", + "categories": ["Europe", "World"], + "isoDate": "2024-01-05T06:15:44.000Z" + }, + { + "creator": "Hyung-Jin Kim", + "date": "2024-01-05T02:36:34+00:00", + "title": "North Korea's Kim orders increased production of mobile launch vehicles as tensions grow with US", + "link": "https://www.independent.co.uk/news/kim-jong-un-ap-north-korea-south-korea-russia-b2473592.html", + "pubDate": "Fri, 05 Jan 2024 02:36:34 GMT", + "dc:creator": "Hyung-Jin Kim", + "dc:date": "2024-01-05T02:36:34+00:00", + "content": "North Korean leader Kim Jong Un has ordered authorities to increase production of mobile launch vehicles for missiles, saying the country faces a looming military showdown with its enemies", + "contentSnippet": "North Korean leader Kim Jong Un has ordered authorities to increase production of mobile launch vehicles for missiles, saying the country faces a looming military showdown with its enemies", + "guid": "b2473592", + "isoDate": "2024-01-05T02:36:34.000Z" + }, + { + "creator": "Sudhin Thanawala", + "date": "2024-01-04T21:56:11+00:00", + "title": "King's daughter says wars, gun violence, racism have pushed humanity to the brink", + "link": "https://www.independent.co.uk/news/ap-bernice-king-atlanta-ukraine-gaza-b2473520.html", + "pubDate": "Thu, 04 Jan 2024 21:56:11 GMT", + "dc:creator": "Sudhin Thanawala", + "dc:date": "2024-01-04T21:56:11+00:00", + "content": "The Rev. Martin Luther King Jr.\u2019s daughter says the world urgently needs to study and adopt her father\u2019s philosophy of nonviolence to avoid self-destruction", + "contentSnippet": "The Rev. Martin Luther King Jr.\u2019s daughter says the world urgently needs to study and adopt her father\u2019s philosophy of nonviolence to avoid self-destruction", + "guid": "b2473520", + "isoDate": "2024-01-04T21:56:11.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-04T19:35:04+00:00", + "title": "Watch as Major General Pat Ryder holds Pentagon briefing", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/us-pentagon-briefing-live-stream-b2473465.html", + "pubDate": "Thu, 04 Jan 2024 19:35:04 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-04T19:35:04+00:00", + "content": "

Watch as US Pentagon press secretary Major General Pat Ryder conducts a news briefing on Thursday 4 January.

", + "contentSnippet": "Watch as US Pentagon press secretary Major General Pat Ryder conducts a news briefing on Thursday 4 January.", + "guid": "b2473465", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-04T19:35:04.000Z" + }, + { + "creator": "Colleen Long and Aamer Madhani", + "date": "2024-01-04T18:39:31+00:00", + "title": "US says Russia has used North Korean ballistic missiles in Ukraine and is seeking Iranian missiles", + "link": "https://www.independent.co.uk/news/russia-ap-john-kirby-moscow-ukraine-b2473443.html", + "pubDate": "Thu, 04 Jan 2024 18:39:31 GMT", + "dc:creator": "Colleen Long and Aamer Madhani", + "dc:date": "2024-01-04T18:39:31+00:00", + "content": "The White House says U.S. intelligence officials have determined that Russia has acquired ballistic missiles from North Korea and is seeking close-range ballistic missiles from Iran as Moscow struggles to replenish arms for its war with Ukraine", + "contentSnippet": "The White House says U.S. intelligence officials have determined that Russia has acquired ballistic missiles from North Korea and is seeking close-range ballistic missiles from Iran as Moscow struggles to replenish arms for its war with Ukraine", + "guid": "b2473443", + "isoDate": "2024-01-04T18:39:31.000Z" + }, + { + "creator": "Dasha Litvinova", + "date": "2024-01-04T18:06:30+00:00", + "title": "Putin speeds up a citizenship path for foreigners who enlist in the Russian military", + "link": "https://www.independent.co.uk/news/vladimir-putin-ap-ukraine-moscow-kremlin-b2473424.html", + "pubDate": "Thu, 04 Jan 2024 18:06:30 GMT", + "dc:creator": "Dasha Litvinova", + "dc:date": "2024-01-04T18:06:30+00:00", + "content": "President Vladimir Putin has signed a decree that speeds up a path to Russian citizenship for foreigners who enlist in the country\u2019s military amid the 22-month-old war in Ukraine", + "contentSnippet": "President Vladimir Putin has signed a decree that speeds up a path to Russian citizenship for foreigners who enlist in the country\u2019s military amid the 22-month-old war in Ukraine", + "guid": "b2473424", + "isoDate": "2024-01-04T18:06:30.000Z" + }, + { + "creator": "The Associated Press", + "date": "2024-01-04T16:35:31+00:00", + "title": "Russia and Ukraine exchange long-range attacks as their front-line forces remain bogged down", + "link": "https://www.independent.co.uk/news/ukraine-ap-russia-kharkiv-crimea-b2473350.html", + "pubDate": "Thu, 04 Jan 2024 16:35:31 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2024-01-04T16:35:31+00:00", + "content": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", + "contentSnippet": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", + "guid": "b2473350", + "isoDate": "2024-01-04T16:35:31.000Z" + }, + { + "creator": "Dusan Stojanovic", + "date": "2024-01-11T18:17:50+00:00", + "title": "Serbia says it is disappointed with Kosovo's request to buy anti-tank missiles from the US", + "link": "https://www.independent.co.uk/news/kosovo-ap-serbia-aleksandar-vucic-belgrade-b2477242.html", + "pubDate": "Thu, 11 Jan 2024 18:17:50 GMT", + "dc:creator": "Dusan Stojanovic", + "dc:date": "2024-01-11T18:17:50+00:00", + "content": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", + "contentSnippet": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", + "guid": "b2477242", + "isoDate": "2024-01-11T18:17:50.000Z" + }, + { + "creator": "Hanna Arhirova", + "date": "2024-01-11T17:07:54+00:00", + "title": "Hundreds gather in Ukraine's capital to honor renowned poet who was also a soldier killed in action", + "link": "https://www.independent.co.uk/news/ap-ukraine-people-russia-kyiv-b2477183.html", + "pubDate": "Thu, 11 Jan 2024 17:07:54 GMT", + "dc:creator": "Hanna Arhirova", + "dc:date": "2024-01-11T17:07:54+00:00", + "content": "Hundreds of people have attended a ceremony honoring the memory of renowned Ukrainian poet Maksym Kryvtsov, who was killed in action while serving as a soldier in the war Russia started in Ukraine nearly two years ago", + "contentSnippet": "Hundreds of people have attended a ceremony honoring the memory of renowned Ukrainian poet Maksym Kryvtsov, who was killed in action while serving as a soldier in the war Russia started in Ukraine nearly two years ago", + "guid": "b2477183", + "isoDate": "2024-01-11T17:07:54.000Z" + }, + { + "creator": "Tom Watling ,Maryam Zakir-Hussain and Tara Cobham", + "date": "2024-01-11T14:04:21+00:00", + "title": "Russia-Ukraine war \u2013 live: Hotel strike injures 13 in Kharkiv as Putin\u2019s exhausted troops \u2018hit own towns\u2019", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-war-news-putin-latest-b2476740.html", + "pubDate": "Thu, 11 Jan 2024 14:04:21 GMT", + "dc:creator": "Tom Watling ,Maryam Zakir-Hussain and Tara Cobham", + "dc:date": "2024-01-11T14:04:21+00:00", + "content": "

British MoD claims likelihood of Russia accidentally bombing Moscow-held territories has increased

", + "contentSnippet": "British MoD claims likelihood of Russia accidentally bombing Moscow-held territories has increased", + "guid": "b2466307", + "categories": ["Europe", "World"], + "isoDate": "2024-01-11T14:04:21.000Z" + }, + { + "creator": "Neil Lancefield", + "date": "2024-01-11T13:33:48+00:00", + "title": "Petrol prices down to lowest level since October 2021", + "link": "https://www.independent.co.uk/business/petrol-prices-down-to-lowest-level-since-october-2021-b2477033.html", + "pubDate": "Thu, 11 Jan 2024 13:33:48 GMT", + "dc:creator": "Neil Lancefield", + "dc:date": "2024-01-11T13:33:48+00:00", + "content": "The AA said the average price for a litre of the fuel on Wednesday was 140.0p.", + "contentSnippet": "The AA said the average price for a litre of the fuel on Wednesday was 140.0p.", + "guid": "b2477033", + "categories": ["Business"], + "isoDate": "2024-01-11T13:33:48.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2024-01-11T11:13:05+00:00", + "title": "Sweden must brace for war, claims top official in push for greater defence spending", + "link": "https://www.independent.co.uk/news/world/europe/sweden-nato-ukraine-russia-b2476901.html", + "pubDate": "Thu, 11 Jan 2024 11:13:05 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2024-01-11T11:13:05+00:00", + "content": "

Sweden is unable to join Nato until Turkey quits blocking the ratification process over concerns that Stockholm is harbouring Kurdish terrorists

", + "contentSnippet": "Sweden is unable to join Nato until Turkey quits blocking the ratification process over concerns that Stockholm is harbouring Kurdish terrorists", + "guid": "b2476901", + "categories": ["Europe", "World"], + "isoDate": "2024-01-11T11:13:05.000Z" + }, + { + "creator": "Arpan Rai", + "date": "2024-01-11T11:08:55+00:00", + "title": "Turkish journalists among 13 injured in Russian missile strike on hotel in Ukraine\u2019s Kharkiv", + "link": "https://www.independent.co.uk/news/world/europe/russia-missile-attack-ukraine-kharkiv-b2476798.html", + "pubDate": "Thu, 11 Jan 2024 11:08:55 GMT", + "dc:creator": "Arpan Rai", + "dc:date": "2024-01-11T11:08:55+00:00", + "content": "

Photos and videos of missile strike show windows blown out and glass shards everywhere

", + "contentSnippet": "Photos and videos of missile strike show windows blown out and glass shards everywhere", + "guid": "b2476798", + "categories": ["Europe", "World"], + "isoDate": "2024-01-11T11:08:55.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-11T10:14:03+00:00", + "title": "Turkey, Bulgaria and Romania sign a deal to tackle Black Sea mines", + "link": "https://www.independent.co.uk/news/turkey-ap-ukraine-black-sea-romania-b2476894.html", + "pubDate": "Thu, 11 Jan 2024 10:14:03 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-11T10:14:03+00:00", + "content": "Turkey, Bulgaria and Romania have signed an agreement to jointly tackle rogue sea mines that have threatened Black Sea shipping since the start of the Ukraine war", + "contentSnippet": "Turkey, Bulgaria and Romania have signed an agreement to jointly tackle rogue sea mines that have threatened Black Sea shipping since the start of the Ukraine war", + "guid": "b2476894", + "isoDate": "2024-01-11T10:14:03.000Z" + }, + { + "creator": "Jim Heintz", + "date": "2024-01-11T07:32:01+00:00", + "title": "Ukraine's president in Estonia on swing through Russia's Baltic neighbors", + "link": "https://www.independent.co.uk/news/ap-ukraine-russia-lithuania-baltic-b2476806.html", + "pubDate": "Thu, 11 Jan 2024 07:32:01 GMT", + "dc:creator": "Jim Heintz", + "dc:date": "2024-01-11T07:32:01+00:00", + "content": "Ukrainian President Volodymyr Zelenskyy is in Estonia for meetings with the country\u2019s leaders on the second day of trip through the small Baltic states, where concern is high about aggression from neighboring Russia", + "contentSnippet": "Ukrainian President Volodymyr Zelenskyy is in Estonia for meetings with the country\u2019s leaders on the second day of trip through the small Baltic states, where concern is high about aggression from neighboring Russia", + "guid": "b2476806", + "isoDate": "2024-01-11T07:32:01.000Z" + }, + { + "creator": "Arpan Rai", + "date": "2024-01-11T07:02:14+00:00", + "title": "Ukraine now \u2018test site\u2019 for North Korean missiles shipped to Russia, warns South Korea", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-north-korea-missiles-russia-south-korea-b2476757.html", + "pubDate": "Thu, 11 Jan 2024 07:02:14 GMT", + "dc:creator": "Arpan Rai", + "dc:date": "2024-01-11T07:02:14+00:00", + "content": "

South Korean ambassador urges Russia to end its military cooperation with North Korea and withdraw its military forces from territory of Ukraine

", + "contentSnippet": "South Korean ambassador urges Russia to end its military cooperation with North Korea and withdraw its military forces from territory of Ukraine", + "guid": "b2476757", + "categories": ["Europe", "World"], + "isoDate": "2024-01-11T07:02:14.000Z" + }, + { + "creator": "Lolita C. Baldor", + "date": "2024-01-11T05:30:06+00:00", + "title": "Amid firestorm created by Austin's cancer secrecy, missed opportunities to build trust and educate", + "link": "https://www.independent.co.uk/news/austin-ap-joe-biden-lloyd-austin-washington-b2476771.html", + "pubDate": "Thu, 11 Jan 2024 05:30:06 GMT", + "dc:creator": "Lolita C. Baldor", + "dc:date": "2024-01-11T05:30:06+00:00", + "content": "The secrecy surrounding Defense Secretary Lloyd Austin\u2019s hospitalizations due to prostate cancer surgery set off a political firestorm, launched multiple reviews and triggered calls for his ouster", + "contentSnippet": "The secrecy surrounding Defense Secretary Lloyd Austin\u2019s hospitalizations due to prostate cancer surgery set off a political firestorm, launched multiple reviews and triggered calls for his ouster", + "guid": "b2476771", + "isoDate": "2024-01-11T05:30:06.000Z" + }, + { + "creator": "Edith M. Lederer", + "date": "2024-01-11T04:26:39+00:00", + "title": "US and allies accuse Russia of using North Korean missiles against Ukraine, violating UN sanctions", + "link": "https://www.independent.co.uk/news/ukraine-ap-russia-vassily-nebenzia-united-nations-b2476753.html", + "pubDate": "Thu, 11 Jan 2024 04:26:39 GMT", + "dc:creator": "Edith M. Lederer", + "dc:date": "2024-01-11T04:26:39+00:00", + "content": "The United States, Ukraine and six allies are accusing Russia of using North Korean ballistic missiles and launchers in recent devastating aerial attacks against Ukraine, in violation of U.N. sanctions", + "contentSnippet": "The United States, Ukraine and six allies are accusing Russia of using North Korean ballistic missiles and launchers in recent devastating aerial attacks against Ukraine, in violation of U.N. sanctions", + "guid": "b2476753", + "isoDate": "2024-01-11T04:26:39.000Z" + }, + { + "creator": "Tom Watling ,Maryam Zakir-Hussain and Tara Cobham", + "date": "2024-01-12T10:48:08+00:00", + "title": "Russia-Ukraine war \u2013 live: UK pledges to send thousands of drones to Kyiv as Sunak visits Zelensky", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-war-news-putin-latest-b2477472.html", + "pubDate": "Fri, 12 Jan 2024 10:48:08 GMT", + "dc:creator": "Tom Watling ,Maryam Zakir-Hussain and Tara Cobham", + "dc:date": "2024-01-12T10:48:08+00:00", + "content": "

Ukrainian president Volodymyr Zelensky has said that Ukraine particularly needs air defence systems to fend off Russian aerial barrages

", + "contentSnippet": "Ukrainian president Volodymyr Zelensky has said that Ukraine particularly needs air defence systems to fend off Russian aerial barrages", + "guid": "b2466307", + "categories": ["Europe", "World"], + "isoDate": "2024-01-12T10:48:08.000Z" + }, + { + "creator": "Barney Davis", + "date": "2024-01-12T09:53:08+00:00", + "title": "Black bear with PTSD only survivor of Russian onslaught on Ukraine zoo", + "link": "https://www.independent.co.uk/news/world/europe/bear-ukraine-zoo-west-calder-b2477523.html", + "pubDate": "Fri, 12 Jan 2024 09:53:08 GMT", + "dc:creator": "Barney Davis", + "dc:date": "2024-01-12T09:53:08+00:00", + "content": "

Yampil was found on the brink of starvation after being abandoned for five months in the face of the Russian invasion of Ukraine

", + "contentSnippet": "Yampil was found on the brink of starvation after being abandoned for five months in the face of the Russian invasion of Ukraine", + "guid": "b2477523", + "categories": ["Europe", "World"], + "isoDate": "2024-01-12T09:53:08.000Z" + }, + { + "creator": "Adam Forrest", + "date": "2024-01-12T09:46:47+00:00", + "title": "Rishi Sunak makes surprise visit to Ukraine after launching Yemen strike", + "link": "https://www.independent.co.uk/news/uk/politics/ukraine-sunak-funding-uk-war-putin-b2477461.html", + "pubDate": "Fri, 12 Jan 2024 09:46:47 GMT", + "dc:creator": "Adam Forrest", + "dc:date": "2024-01-12T09:46:47+00:00", + "content": "

Britain to provide another \u00a32.5bn in military aid to war-torn country, as PM justifies attack on Houthis

", + "contentSnippet": "Britain to provide another \u00a32.5bn in military aid to war-torn country, as PM justifies attack on Houthis", + "guid": "b2477461", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-12T09:46:47.000Z" + }, + { + "creator": "Arpan Rai", + "date": "2024-01-12T08:54:21+00:00", + "title": "US assistance to Ukraine has \u2018ground to a halt\u2019 amid political infighting, White House says", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-war-us-assistance-white-house-b2477449.html", + "pubDate": "Fri, 12 Jan 2024 08:54:21 GMT", + "dc:creator": "Arpan Rai", + "dc:date": "2024-01-12T08:54:21+00:00", + "content": "

Ukraine\u2019s military fears Putin\u2019s forces could break through its defensive lines within days if the US does not commit to more aid

", + "contentSnippet": "Ukraine\u2019s military fears Putin\u2019s forces could break through its defensive lines within days if the US does not commit to more aid", + "guid": "b2477449", + "categories": ["Europe", "World"], + "isoDate": "2024-01-12T08:54:21.000Z" + }, + { + "creator": "Hyung-Jin Kim", + "date": "2024-01-12T07:54:41+00:00", + "title": "North Korea to welcome country\u2019s first tourists since the pandemic", + "link": "https://www.independent.co.uk/asia/east-asia/north-korea-putin-tourists-kim-jong-un-b2477480.html", + "pubDate": "Fri, 12 Jan 2024 07:54:41 GMT", + "dc:creator": "Hyung-Jin Kim", + "dc:date": "2024-01-12T07:54:41+00:00", + "content": "Russian tourists going on a ski trip will be the first international travelers to visit North Korea since the country\u2019s borders closed in 2020 amid the global pandemic lockdown", + "contentSnippet": "Russian tourists going on a ski trip will be the first international travelers to visit North Korea since the country\u2019s borders closed in 2020 amid the global pandemic lockdown", + "guid": "b2477470", + "categories": ["East Asia ", "Asia"], + "isoDate": "2024-01-12T07:54:41.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-12T07:50:45+00:00", + "title": "The UK prime minister is visiting Kyiv to announce a new support package for Ukraine", + "link": "https://www.independent.co.uk/news/kyiv-ap-rishi-sunak-ukraine-b2477485.html", + "pubDate": "Fri, 12 Jan 2024 07:50:45 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-12T07:50:45+00:00", + "content": "U.K. Prime Minister Rishi Sunak is visiting Kyiv to announce a new package of support, including an increase in military funding, a statement from his office said", + "contentSnippet": "U.K. Prime Minister Rishi Sunak is visiting Kyiv to announce a new package of support, including an increase in military funding, a statement from his office said", + "guid": "b2477485", + "isoDate": "2024-01-12T07:50:45.000Z" + }, + { + "creator": "Ellen Knickmeyer", + "date": "2024-01-12T06:51:44+00:00", + "title": "US failed to track more than $1bn in military gear given to Ukraine, says Pentagon watchdog", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-military-aid-russian-invasion-pentagon-b2477456.html", + "pubDate": "Fri, 12 Jan 2024 06:51:44 GMT", + "dc:creator": "Ellen Knickmeyer", + "dc:date": "2024-01-12T06:51:44+00:00", + "content": "

Biden administration officials stress there\u2019s no evidence that the weapons given to Ukraine had been stolen

", + "contentSnippet": "Biden administration officials stress there\u2019s no evidence that the weapons given to Ukraine had been stolen", + "guid": "b2477332", + "categories": ["Europe", "World"], + "isoDate": "2024-01-12T06:51:44.000Z" + }, + { + "creator": "Christopher McKeon", + "date": "2024-01-18T11:22:15+00:00", + "title": "Sunak insists his plan is working despite surprise hike in inflation", + "link": "https://www.independent.co.uk/business/sunak-insists-his-plan-is-working-despite-surprise-hike-in-inflation-b2480779.html", + "pubDate": "Thu, 18 Jan 2024 11:22:15 GMT", + "dc:creator": "Christopher McKeon", + "dc:date": "2024-01-18T11:22:15+00:00", + "content": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", + "contentSnippet": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", + "guid": "b2480779", + "categories": ["Business"], + "isoDate": "2024-01-18T11:22:15.000Z" + }, + { + "creator": "Vladimir Isachenkov", + "date": "2024-01-18T11:05:35+00:00", + "title": "Russia's foreign minister rejects a US proposal to resume talks on nuclear arms control", + "link": "https://www.independent.co.uk/news/russia-ap-washington-sergey-lavrov-moscow-b2480765.html", + "pubDate": "Thu, 18 Jan 2024 11:05:35 GMT", + "dc:creator": "Vladimir Isachenkov", + "dc:date": "2024-01-18T11:05:35+00:00", + "content": "Russia\u2019s top diplomat has dismissed a proposal by the United States to resume a dialogue on nuclear arms control", + "contentSnippet": "Russia\u2019s top diplomat has dismissed a proposal by the United States to resume a dialogue on nuclear arms control", + "guid": "b2480765", + "isoDate": "2024-01-18T11:05:35.000Z" + }, + { + "creator": "Justin Spike", + "date": "2024-01-18T10:49:02+00:00", + "title": "Hungary won't back down and change LGBTQ+ and asylum policies criticized by EU, minister says", + "link": "https://www.independent.co.uk/news/hungary-ap-lgbtq-budapest-european-commission-b2480748.html", + "pubDate": "Thu, 18 Jan 2024 10:49:02 GMT", + "dc:creator": "Justin Spike", + "dc:date": "2024-01-18T10:49:02+00:00", + "content": "Hungary\u2019s government will not change policies the European Union believes infringe on LGBTQ+ rights and those of asylum seekers, even if doing so would unfreeze billions in funding the bloc has withheld from Budapest", + "contentSnippet": "Hungary\u2019s government will not change policies the European Union believes infringe on LGBTQ+ rights and those of asylum seekers, even if doing so would unfreeze billions in funding the bloc has withheld from Budapest", + "guid": "b2480748", + "isoDate": "2024-01-18T10:49:02.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-18T10:43:34+00:00", + "title": "France ramps up weapons production for Ukraine and says Russia is scrutinizing the West's mettle", + "link": "https://www.independent.co.uk/news/ukraine-ap-france-russia-paris-b2480740.html", + "pubDate": "Thu, 18 Jan 2024 10:43:34 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-18T10:43:34+00:00", + "content": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", + "contentSnippet": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", + "guid": "b2480740", + "isoDate": "2024-01-18T10:43:34.000Z" + }, + { + "creator": "Tom Watling and Maira Butt", + "date": "2024-01-18T10:42:28+00:00", + "title": "Russia-Ukraine war \u2013 live: Kyiv targets St Petersburg oil facility in rare drone attack on Putin\u2019s home city", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-putin-drone-strikes-b2480572.html", + "pubDate": "Thu, 18 Jan 2024 10:42:28 GMT", + "dc:creator": "Tom Watling and Maira Butt", + "dc:date": "2024-01-18T10:42:28+00:00", + "content": "

Russian outlets are claiming that the drone struck between two fuel tanks in a St Petersburg oil facility

", + "contentSnippet": "Russian outlets are claiming that the drone struck between two fuel tanks in a St Petersburg oil facility", + "guid": "b2466307", + "categories": ["Europe", "World"], + "isoDate": "2024-01-18T10:42:28.000Z" + }, + { + "creator": "Arpan Rai", + "date": "2024-01-18T07:20:15+00:00", + "title": "Former Nato chief \u2018sceptical\u2019 about US aid for Ukraine continuing under Trump", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-war-nato-chief-trump-victory-aid-b2480577.html", + "pubDate": "Thu, 18 Jan 2024 07:20:15 GMT", + "dc:creator": "Arpan Rai", + "dc:date": "2024-01-18T07:20:15+00:00", + "content": "

Rasmussen says it would be detrimental for America\u2019s national security interests for Russia to win war against Ukraine

", + "contentSnippet": "Rasmussen says it would be detrimental for America\u2019s national security interests for Russia to win war against Ukraine", + "guid": "b2480577", + "categories": ["Europe", "World"], + "isoDate": "2024-01-18T07:20:15.000Z" + }, + { + "creator": "Jake Coyle", + "date": "2024-01-17T22:16:16+00:00", + "title": "Movie Review: In 'I.S.S.,' war on Earth disrupts life aboard the International Space Station", + "link": "https://www.independent.co.uk/news/ap-international-space-station-russia-earth-ukraine-b2480472.html", + "pubDate": "Wed, 17 Jan 2024 22:16:16 GMT", + "dc:creator": "Jake Coyle", + "dc:date": "2024-01-17T22:16:16+00:00", + "content": "After decades when fears of mutual destruction and nuclear fallout filtered into movies from \u201cFail Safe\u201d to \u201cWarGames,\u201d anxiety over current Russian-American geopolitics plays a provocative role in the new space thriller \u201cI", + "contentSnippet": "After decades when fears of mutual destruction and nuclear fallout filtered into movies from \u201cFail Safe\u201d to \u201cWarGames,\u201d anxiety over current Russian-American geopolitics plays a provocative role in the new space thriller \u201cI", + "guid": "b2480472", + "isoDate": "2024-01-17T22:16:16.000Z" + }, + { + "creator": "Sylvia Hui", + "date": "2024-01-17T15:32:20+00:00", + "title": "China and Ireland seek stronger ties during Chinese Premier Li Qiang's visit", + "link": "https://www.independent.co.uk/news/ap-ireland-china-leo-varadkar-xi-jinping-b2480225.html", + "pubDate": "Wed, 17 Jan 2024 15:32:20 GMT", + "dc:creator": "Sylvia Hui", + "dc:date": "2024-01-17T15:32:20+00:00", + "content": "Ireland\u2019s prime minister has extended a warm welcome to Chinese Premier Li Qiang", + "contentSnippet": "Ireland\u2019s prime minister has extended a warm welcome to Chinese Premier Li Qiang", + "guid": "b2480225", + "isoDate": "2024-01-17T15:32:20.000Z" + }, + { + "creator": "David McHugh", + "date": "2024-01-17T14:02:33+00:00", + "title": "Cutting interest rates too soon in Europe risks progress against inflation, central bank chief says", + "link": "https://www.independent.co.uk/news/european-central-bank-ap-christine-lagarde-germany-frankfurt-b2480153.html", + "pubDate": "Wed, 17 Jan 2024 14:02:33 GMT", + "dc:creator": "David McHugh", + "dc:date": "2024-01-17T14:02:33+00:00", + "content": "European Central Bank head Christine Lagarde says cutting interest rates too soon could threaten Europe\u2019s progress in battling the inflation that has ravaged the economy", + "contentSnippet": "European Central Bank head Christine Lagarde says cutting interest rates too soon could threaten Europe\u2019s progress in battling the inflation that has ravaged the economy", + "guid": "b2480153", + "isoDate": "2024-01-17T14:02:33.000Z" + }, + { + "creator": "By Cillian Sherlock", + "date": "2023-10-27T11:09:27+00:00", + "title": "\u2018Essential not to lose focus\u2019 on war in Ukraine, Varadkar warns", + "link": "https://www.independent.co.uk/news/uk/ukraine-leo-varadkar-irish-taoiseach-israel-b2437104.html", + "pubDate": "Fri, 27 Oct 2023 11:09:27 GMT", + "dc:creator": "By Cillian Sherlock", + "dc:date": "2023-10-27T11:09:27+00:00", + "content": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", + "contentSnippet": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", + "guid": "b2437104", + "categories": ["UK"], + "isoDate": "2023-10-27T11:09:27.000Z" + }, + { + "creator": "Alexander Butler and Maira Butt", + "date": "2023-10-27T09:48:09+00:00", + "title": "Ukraine-Russia war - live: Putin\u2019s troops \u2018executed for retreating\u2019 as Moscow \u2018faces heavy losses\u2019 in Avdiivka", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-losses-weapons-latest-b2436926.html", + "pubDate": "Fri, 27 Oct 2023 09:48:09 GMT", + "dc:creator": "Alexander Butler and Maira Butt", + "dc:date": "2023-10-27T09:48:09+00:00", + "content": "

The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said

", + "contentSnippet": "The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said", + "guid": "b2436926", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T09:48:09.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2023-10-27T07:42:34+00:00", + "title": "German prosecutors receive evidence regarding \u2018Russian war crimes in Ukraine\u2019", + "link": "https://www.independent.co.uk/news/world/europe/war-crimes-russia-ukraine-cfj-germany-b2436927.html", + "pubDate": "Fri, 27 Oct 2023 07:42:34 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2023-10-27T07:42:34+00:00", + "content": "

Clooney Foundation for Justice calls on German prosecutors to investigate Russia\u2019s \u2018war crimes\u2019 in Ukraine

", + "contentSnippet": "Clooney Foundation for Justice calls on German prosecutors to investigate Russia\u2019s \u2018war crimes\u2019 in Ukraine", + "guid": "b2436927", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T07:42:34.000Z" + }, + { + "creator": "Alexander Butler and Maira Butt", + "date": "2023-10-27T05:24:48+00:00", + "title": "Ukraine-Russia war - live: Putin\u2019s troops forced to regroup as they suffer heavy losses in east, says Kyiv", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-nuclear-weapons-drones-putin-b2436217.html", + "pubDate": "Fri, 27 Oct 2023 05:24:48 GMT", + "dc:creator": "Alexander Butler and Maira Butt", + "dc:date": "2023-10-27T05:24:48+00:00", + "content": "

The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said

", + "contentSnippet": "The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said", + "guid": "b2436217", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T05:24:48.000Z" + }, + { + "creator": "Holly Evans", + "date": "2023-10-27T05:07:11+00:00", + "title": "Moscow succession: What would happen if Putin dies? ", + "link": "https://www.independent.co.uk/news/world/europe/putin-death-health-russia-president-kremlin-b2436468.html", + "pubDate": "Fri, 27 Oct 2023 05:07:11 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2023-10-27T05:07:11+00:00", + "content": "

The prime minister would automatically become Russia\u2019s leader in the interim but there are a number of big names with the potential to fill Putin\u2019s shoes

", + "contentSnippet": "The prime minister would automatically become Russia\u2019s leader in the interim but there are a number of big names with the potential to fill Putin\u2019s shoes", + "guid": "b2436468", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T05:07:11.000Z" + }, + { + "creator": "Holly Evans", + "date": "2023-10-27T05:06:57+00:00", + "title": "Moscow succession: What would happen if Putin dies? ", + "link": "https://www.independent.co.uk/news/world/europe/vladimir-putin-death-health-russia-kremlin-b2436918.html", + "pubDate": "Fri, 27 Oct 2023 05:06:57 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2023-10-27T05:06:57+00:00", + "content": "

The prime minister would automatically become Russia\u2019s leader in the interim but there are a number of big names with the potential to fill Putin\u2019s shoes

", + "contentSnippet": "The prime minister would automatically become Russia\u2019s leader in the interim but there are a number of big names with the potential to fill Putin\u2019s shoes", + "guid": "b2436918", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T05:06:57.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2023-10-27T04:58:54+00:00", + "title": "Russia is executing its own retreating soldiers as Ukraine offensive fails, says US", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-avdiivka-white-house-b2436884.html", + "pubDate": "Fri, 27 Oct 2023 04:58:54 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2023-10-27T04:58:54+00:00", + "content": "

US claims some of Russian casualties near Avdivvka were \u2019on orders of their own leaders\u2019

", + "contentSnippet": "US claims some of Russian casualties near Avdivvka were \u2019on orders of their own leaders\u2019", + "guid": "b2436884", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T04:58:54.000Z" + }, + { + "creator": "Dasha Litvinova", + "date": "2023-10-27T04:47:23+00:00", + "title": "Abortion restrictions in Russia spark outrage as the country takes a conservative turn", + "link": "https://www.independent.co.uk/news/ap-tallinn-russia-kaliningrad-vladimir-putin-b2436913.html", + "pubDate": "Fri, 27 Oct 2023 04:47:23 GMT", + "dc:creator": "Dasha Litvinova", + "dc:date": "2023-10-27T04:47:23+00:00", + "content": "Recent proposals by authorities to restrict access to abortion have touched a nerve across Russia, which has embraced increasingly conservative values", + "contentSnippet": "Recent proposals by authorities to restrict access to abortion have touched a nerve across Russia, which has embraced increasingly conservative values", + "guid": "b2436913", + "isoDate": "2023-10-27T04:47:23.000Z" + }, + { + "creator": "Cinar Kiper and Suzan Fraser", + "date": "2023-10-27T04:38:22+00:00", + "title": "As the Turkish Republic turns 100, here's a look at its achievements and challenges ahead", + "link": "https://www.independent.co.uk/news/world/europe/recep-tayyip-erdogan-ap-mustafa-kemal-ataturk-ankara-ottoman-empire-b2436908.html", + "pubDate": "Fri, 27 Oct 2023 04:38:22 GMT", + "dc:creator": "Cinar Kiper and Suzan Fraser", + "dc:date": "2023-10-27T04:38:22+00:00", + "content": "The Turkish Republic, founded from the ruins of the Ottoman Empire by the national independence hero Mustafa Kemal Ataturk, turns 100 on Oct. 29", + "contentSnippet": "The Turkish Republic, founded from the ruins of the Ottoman Empire by the national independence hero Mustafa Kemal Ataturk, turns 100 on Oct. 29", + "guid": "b2436908", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T04:38:22.000Z" + }, + { + "creator": "John Bowden", + "date": "2023-10-26T21:09:33+00:00", + "title": "Republican senators want to separate Israel funding from Ukraine aid", + "link": "https://www.the-independent.com/news/world/americas/us-politics/senate-ukraine-israel-gaza-aid-b2436734.html", + "pubDate": "Thu, 26 Oct 2023 21:09:33 GMT", + "dc:creator": "John Bowden", + "dc:date": "2023-10-26T21:09:33+00:00", + "content": "

Conservatives hope breaking off Ukraine funding will allow it to be killed

", + "contentSnippet": "Conservatives hope breaking off Ukraine funding will allow it to be killed", + "guid": "b2436734", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-10-26T21:09:33.000Z" + }, + { + "creator": "Joe Middleton", + "date": "2023-10-26T14:44:46+00:00", + "title": "Sanctioned Russian billionaire Mikhail Fridman loses High Court battle over upkeep of mansion", + "link": "https://www.independent.co.uk/news/uk/home-news/sanctioned-russian-billionaire-mikhail-fridman-b2436505.html", + "pubDate": "Thu, 26 Oct 2023 14:44:46 GMT", + "dc:creator": "Joe Middleton", + "dc:date": "2023-10-26T14:44:46+00:00", + "content": "

Mikhail Fridman had financial assets frozen by the UK government after Russia invaded Ukraine

", + "contentSnippet": "Mikhail Fridman had financial assets frozen by the UK government after Russia invaded Ukraine", + "guid": "b2436505", + "categories": ["Home News", "UK"], + "isoDate": "2023-10-26T14:44:46.000Z" + }, + { + "creator": "Tom Pilgrim", + "date": "2023-10-26T13:16:59+00:00", + "title": "Sanctioned billionaire loses High Court challenge over upkeep of mansion", + "link": "https://www.independent.co.uk/news/uk/crime/high-court-russia-ukraine-uk-government-highgate-b2436451.html", + "pubDate": "Thu, 26 Oct 2023 13:16:59 GMT", + "dc:creator": "Tom Pilgrim", + "dc:date": "2023-10-26T13:16:59+00:00", + "content": "Mikhail Fridman had financial assets frozen by the UK Government after the start of Russia\u2019s invasion of Ukraine.", + "contentSnippet": "Mikhail Fridman had financial assets frozen by the UK Government after the start of Russia\u2019s invasion of Ukraine.", + "guid": "b2436451", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-26T13:16:59.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-10-27T15:48:57+00:00", + "title": "Watch: Boris Johnson announces he\u2019s joining GB News and claims \u2018best days yet to come\u2019", + "link": "https://www.independent.co.uk/tv/news/boris-johnson-gb-news-announcement-video-b2437243.html", + "pubDate": "Fri, 27 Oct 2023 15:48:57 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-10-27T15:48:57+00:00", + "content": "

Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming \u201cthe best days are yet to come\u201d.

", + "contentSnippet": "Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming \u201cthe best days are yet to come\u201d.", + "guid": "b2437243", + "categories": ["News", "Indy TV"], + "isoDate": "2023-10-27T15:48:57.000Z" + }, + { + "creator": "Raf Casert", + "date": "2023-10-27T15:20:38+00:00", + "title": "EU summit turns its eyes away from Ukraine despite a commitment to stay the course with Zelenskyy", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-ap-viktor-orban-robert-fico-russia-b2437245.html", + "pubDate": "Fri, 27 Oct 2023 15:20:38 GMT", + "dc:creator": "Raf Casert", + "dc:date": "2023-10-27T15:20:38+00:00", + "content": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", + "contentSnippet": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", + "guid": "b2437245", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T15:20:38.000Z" + }, + { + "creator": "Didi Tang and Matthew Lee", + "date": "2023-10-27T15:14:49+00:00", + "title": "China's top diplomat visits Washington to help stabilize ties and perhaps set up a Biden-Xi summit", + "link": "https://www.independent.co.uk/news/world/americas/wang-yi-ap-joe-biden-china-xi-jinping-b2437231.html", + "pubDate": "Fri, 27 Oct 2023 15:14:49 GMT", + "dc:creator": "Didi Tang and Matthew Lee", + "dc:date": "2023-10-27T15:14:49+00:00", + "content": "China\u2019s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", + "contentSnippet": "China\u2019s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", + "guid": "b2437231", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T15:14:49.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2023-10-27T14:53:19+00:00", + "title": "Boris Johnson joining GB News to offer \u2018unvarnished\u2019 views", + "link": "https://www.independent.co.uk/news/uk/boris-johnson-britain-jacob-reesmogg-gb-news-conservative-b2437209.html", + "pubDate": "Fri, 27 Oct 2023 14:53:19 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2023-10-27T14:53:19+00:00", + "content": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", + "contentSnippet": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", + "guid": "b2437209", + "categories": ["UK"], + "isoDate": "2023-10-27T14:53:19.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2023-10-27T14:45:33+00:00", + "title": "Separatist lined up to be Putin\u2019s puppet leader in Ukraine \u2018is shot in Crimea home\u2019", + "link": "https://www.independent.co.uk/news/world/europe/oleg-tsaryov-shot-ukraine-crimea-b2437109.html", + "pubDate": "Fri, 27 Oct 2023 14:45:33 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2023-10-27T14:45:33+00:00", + "content": "

Pro-Russian former politician fighting for life in intensive care, official says

", + "contentSnippet": "Pro-Russian former politician fighting for life in intensive care, official says", + "guid": "b2437109", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T14:45:33.000Z" + } +] diff --git a/intro to react/newData/oldNews/9eae85e43776536de66cfcc4c83f1a43d6e2f8fb674ba679bca222e8db38e09c.json b/intro to react/newData/oldNews/9eae85e43776536de66cfcc4c83f1a43d6e2f8fb674ba679bca222e8db38e09c.json index 6de0164..544d1cf 100644 --- a/intro to react/newData/oldNews/9eae85e43776536de66cfcc4c83f1a43d6e2f8fb674ba679bca222e8db38e09c.json +++ b/intro to react/newData/oldNews/9eae85e43776536de66cfcc4c83f1a43d6e2f8fb674ba679bca222e8db38e09c.json @@ -1,777 +1,675 @@ [ - { - "creator": "Think Defence", - "title": "The Past, Present, and Future of Military Motorcycles (and e-bikes)", - "link": "https://www.thinkdefence.co.uk/2023/09/the-past-present-and-future-of-military-motorcycles-and-e-bikes/", - "pubDate": "Sun, 10 Sep 2023 16:49:54 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/09/the-past-present-and-future-of-military-motorcycles-and-e-bikes/#comments", - "content": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", - "contentSnippet": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", - "guid": "https://www.thinkdefence.co.uk/?p=62334", - "categories": [ - "Blog" - ], - "isoDate": "2023-09-10T16:49:54.000Z" - }, - { - "creator": "Think Defence", - "title": "The Container Transport System \u2013 GUEST POST", - "link": "https://www.thinkdefence.co.uk/2023/09/the-container-transport-system-guest-post/", - "pubDate": "Sun, 03 Sep 2023 18:43:50 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/09/the-container-transport-system-guest-post/#comments", - "content": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant […]", - "contentSnippet": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62318", - "categories": [ - "Blog" - ], - "isoDate": "2023-09-03T18:43:50.000Z" - }, - { - "creator": "Think Defence", - "title": "Winston Churchill and Nellie (the Trenching Machine)", - "link": "https://www.thinkdefence.co.uk/2023/08/winston-churchill-and-nellie-the-trenching-machine/", - "pubDate": "Wed, 30 Aug 2023 20:15:52 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/winston-churchill-and-nellie-the-trenching-machine/#comments", - "content": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie – The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited […]", - "contentSnippet": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie \u2013 The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62291", - "categories": [ - "Blog" - ], - "isoDate": "2023-08-30T20:15:52.000Z" - }, - { - "creator": "Think Defence", - "title": "The Story of Multidrive Vehicles", - "link": "https://www.thinkdefence.co.uk/2023/08/the-story-of-multidrive-vehicles/", - "pubDate": "Tue, 29 Aug 2023 08:47:22 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/the-story-of-multidrive-vehicles/#comments", - "content": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and […]", - "contentSnippet": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62244", - "categories": [ - "Blog" - ], - "isoDate": "2023-08-29T08:47:22.000Z" - }, - { - "creator": "Think Defence", - "title": "The Atlantic Conveyor", - "link": "https://www.thinkdefence.co.uk/2023/08/the-atlantic-conveyor/", - "pubDate": "Thu, 24 Aug 2023 20:10:55 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/the-atlantic-conveyor/#comments", - "content": "This is post 1 of 1 in the series “The 1982 Falkand Islands Conflict” The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 […]", - "contentSnippet": "This is post 1 of 1 in the series \u201cThe 1982 Falkand Islands Conflict\u201d The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62182", - "categories": [ - "Blog" - ], - "isoDate": "2023-08-24T20:10:55.000Z" - }, - { - "creator": "Think Defence", - "title": "Top 25 British War Films", - "link": "https://www.thinkdefence.co.uk/2023/08/top-25-british-war-films/", - "pubDate": "Thu, 24 Aug 2023 13:27:00 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/top-25-british-war-films/#comments", - "content": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British […]", - "contentSnippet": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62135", - "categories": [ - "Blog" - ], - "isoDate": "2023-08-24T13:27:00.000Z" - }, - { - "creator": "Think Defence", - "title": "Exploiting the Container Delivery System (CDS)", - "link": "https://www.thinkdefence.co.uk/2023/08/exploiting-the-container-delivery-system-cds/", - "pubDate": "Fri, 11 Aug 2023 19:49:00 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/exploiting-the-container-delivery-system-cds/#comments", - "content": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as… Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel […]", - "contentSnippet": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as\u2026 Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62123", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-08-11T19:49:00.000Z" - }, - { - "creator": "Think Defence", - "title": "The Inglis Bridges", - "link": "https://www.thinkdefence.co.uk/2023/08/the-inglis-bridges/", - "pubDate": "Thu, 03 Aug 2023 19:16:37 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/the-inglis-bridges/#comments", - "content": "This is post 2 of 2 in the series “Military Bridging” Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with […]", - "contentSnippet": "This is post 2 of 2 in the series \u201cMilitary Bridging\u201d Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=61720", - "categories": [ - "Military Engineering" - ], - "isoDate": "2023-08-03T19:16:37.000Z" - }, - { - "creator": "Think Defence", - "title": "Anti-Tank Mortar Bombs (Merlin, STRIX and Bussard)", - "link": "https://www.thinkdefence.co.uk/2023/05/anti-tank-mortar-bombs-merlin-strix-and-bussard/", - "pubDate": "Tue, 30 May 2023 20:15:33 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/05/anti-tank-mortar-bombs-merlin-strix-and-bussard/#comments", - "content": "This is post 22 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", - "contentSnippet": "This is post 22 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=61668", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2023-05-30T20:15:33.000Z" - }, - { - "creator": "Think Defence", - "title": "Fibre Optic Guided Missiles (EFOG-M, Polyphem, and others)", - "link": "https://www.thinkdefence.co.uk/2023/05/fibre-optic-guided-missiles-efog-m-polyphem-and-others/", - "pubDate": "Fri, 19 May 2023 20:13:45 +0000", - "enclosure": { - "url": "https://upload.wikimedia.org/wikipedia/commons/7/71/FOG-M_missile_video.ogv", - "length": "2135066", - "type": "video/ogg" - }, - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/05/fibre-optic-guided-missiles-efog-m-polyphem-and-others/#comments", - "content": "This is post 21 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", - "contentSnippet": "This is post 21 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=61600", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2023-05-19T20:13:45.000Z" - }, - { - "creator": "Think Defence", - "title": "Supacat All Terrain Mobility Platform (ATMP)", - "link": "https://www.thinkdefence.co.uk/2023/05/supacat-all-terrain-mobility-platform-atmp/", - "pubDate": "Fri, 05 May 2023 16:09:01 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/05/supacat-all-terrain-mobility-platform-atmp/#comments", - "content": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain. ", - "contentSnippet": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain.", - "guid": "https://www.thinkdefence.co.uk/?p=61454", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-05-05T16:09:01.000Z" - }, - { - "creator": "Think Defence", - "title": "Future Soldier (Pallet and Bridge Chap)", - "link": "https://www.thinkdefence.co.uk/2023/04/future-soldier-pallet-and-bridge-chap/", - "pubDate": "Sun, 30 Apr 2023 11:55:58 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/04/future-soldier-pallet-and-bridge-chap/#comments", - "content": "An Alternative Future Soldier from the Bridge and Pallet Chap", - "contentSnippet": "An Alternative Future Soldier from the Bridge and Pallet Chap", - "guid": "https://www.thinkdefence.co.uk/?p=61336", - "categories": [ - "Miscellaneous" - ], - "isoDate": "2023-04-30T11:55:58.000Z" - }, - { - "creator": "Think Defence", - "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties", - "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-sixties/", - "pubDate": "Tue, 21 Mar 2023 21:16:38 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-sixties/#comments", - "content": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T) ", - "contentSnippet": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T)", - "guid": "https://www.thinkdefence.co.uk/?p=60613", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-03-21T21:16:38.000Z" - }, - { - "creator": "Think Defence", - "title": "A Modern-Day Universal Carrier \u2013 UC23", - "link": "https://www.thinkdefence.co.uk/2023/03/a-modern-day-universal-carrier-uc23/", - "pubDate": "Tue, 14 Mar 2023 17:23:15 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/03/a-modern-day-universal-carrier-uc23/#comments", - "content": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the […]", - "contentSnippet": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=60615", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-03-14T17:23:15.000Z" - }, - { - "creator": "Think Defence", - "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties", - "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-fifties/", - "pubDate": "Sat, 04 Mar 2023 21:32:53 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-fifties/#comments", - "content": "This is post 2 of 3 in the series “Dimishing Returns - British Army Vehicles” Diminishing Returns – The British Army and its Vehicles – Series Introduction Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties The end of WWII […]", - "contentSnippet": "This is post 2 of 3 in the series \u201cDimishing Returns - British Army Vehicles\u201d Diminishing Returns \u2013 The British Army and its Vehicles \u2013 Series Introduction Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties The end of WWII [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=60492", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-03-04T21:32:53.000Z" - }, - { - "creator": "Think Defence", - "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 Series Introduction", - "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-series-introduction/", - "pubDate": "Wed, 01 Mar 2023 17:56:42 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-series-introduction/#comments", - "content": "This series of blog posts is I hope a fair-minded and accurate history of the British Army\u2019s armoured and protected mobility vehicles from the Post War period to early 2023.", - "contentSnippet": "This series of blog posts is I hope a fair-minded and accurate history of the British Army\u2019s armoured and protected mobility vehicles from the Post War period to early 2023.", - "guid": "https://www.thinkdefence.co.uk/?p=60475", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-03-01T17:56:42.000Z" - }, - { - "creator": "Think Defence", - "title": "Mounted Close Combat Overwatch (MCCO)", - "link": "https://www.thinkdefence.co.uk/2023/02/mounted-close-combat-overwatch-mcco/", - "pubDate": "Sat, 04 Feb 2023 09:34:04 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/02/mounted-close-combat-overwatch-mcco/#comments", - "content": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", - "contentSnippet": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", - "guid": "https://www.thinkdefence.co.uk/?p=59223", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2023-02-04T09:34:04.000Z" - }, - { - "creator": "Think Defence", - "title": "Let\u2019s Build a Tank \u2013 The UK AFV Industry", - "link": "https://www.thinkdefence.co.uk/2023/01/lets-build-a-tank-the-uk-afv-industry/", - "pubDate": "Tue, 17 Jan 2023 12:19:31 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/01/lets-build-a-tank-the-uk-afv-industry/#comments", - "content": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don\u2019t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, […]", - "contentSnippet": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don\u2019t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=60056", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-01-17T12:19:31.000Z" - }, - { - "creator": "Think Defence", - "title": "Land Precision Strike", - "link": "https://www.thinkdefence.co.uk/2022/12/land-precision-strike/", - "pubDate": "Sat, 31 Dec 2022 11:55:50 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/12/land-precision-strike/#comments", - "content": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", - "contentSnippet": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", - "guid": "https://www.thinkdefence.co.uk/?p=59150", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-12-31T11:55:50.000Z" - }, - { - "creator": "Think Defence", - "title": "Giving the Rangers Wings \u2013 Light Transport Aircraft", - "link": "https://www.thinkdefence.co.uk/2022/12/giving-the-rangers-wings-light-transport-aircraft/", - "pubDate": "Fri, 02 Dec 2022 17:51:50 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/12/giving-the-rangers-wings-light-transport-aircraft/#comments", - "content": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", - "contentSnippet": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", - "guid": "https://www.thinkdefence.co.uk/?p=59862", - "categories": [ - "Air Power" - ], - "isoDate": "2022-12-02T17:51:50.000Z" - }, - { - "creator": "Think Defence", - "title": "Anglo Engineering Concepts", - "link": "https://www.thinkdefence.co.uk/2022/11/anglo-engineering-concepts/", - "pubDate": "Sun, 20 Nov 2022 19:05:11 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/anglo-engineering-concepts/#comments", - "content": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers […]", - "contentSnippet": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=59602", - "categories": [ - "Vehicles" - ], - "isoDate": "2022-11-20T19:05:11.000Z" - }, - { - "creator": "Think Defence", - "title": "Tomahawk Cruise Missile", - "link": "https://www.thinkdefence.co.uk/2022/11/tomahawk-cruise-missile/", - "pubDate": "Sun, 20 Nov 2022 13:13:17 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/tomahawk-cruise-missile/#comments", - "content": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", - "contentSnippet": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", - "guid": "https://www.thinkdefence.co.uk/?p=59575", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-11-20T13:13:17.000Z" - }, - { - "creator": "Think Defence", - "title": "Starstreak High Velocity Missile", - "link": "https://www.thinkdefence.co.uk/2022/11/starstreak-high-velocity-missile/", - "pubDate": "Sun, 20 Nov 2022 13:11:52 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/starstreak-high-velocity-missile/#comments", - "content": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", - "contentSnippet": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", - "guid": "https://www.thinkdefence.co.uk/?p=59572", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-11-20T13:11:52.000Z" - }, - { - "creator": "Think Defence", - "title": "Exactor (Spike NLOS)", - "link": "https://www.thinkdefence.co.uk/2022/11/exactor-spike-nlos/", - "pubDate": "Sun, 20 Nov 2022 13:10:29 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/exactor-spike-nlos/#respond", - "content": "This is post 16 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", - "contentSnippet": "This is post 16 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=59569", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-11-20T13:10:29.000Z" - }, - { - "creator": "Think Defence", - "title": "Sea Venom", - "link": "https://www.thinkdefence.co.uk/2022/11/sea-venom/", - "pubDate": "Sun, 20 Nov 2022 13:09:09 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/sea-venom/#respond", - "content": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", - "contentSnippet": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", - "guid": "https://www.thinkdefence.co.uk/?p=59566", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-11-20T13:09:09.000Z" - }, - { - "creator": "Think Defence", - "title": "The Adaptable Load Carrier", - "link": "https://www.thinkdefence.co.uk/2023/12/the-adaptable-load-carrier/", - "pubDate": "Tue, 19 Dec 2023 21:33:33 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/12/the-adaptable-load-carrier/#comments", - "content": "Building on a handful of earlier posts on infantry load carriage, quad bike ATVs and the Container Delivery System, I thought it might be interesting to evolve some of the ideas and concepts they described. Risk and Requirements To start this post, a few words on risk. Haddon-Cave didn’t happen for no good reason, every […]", - "contentSnippet": "Building on a handful of earlier posts on infantry load carriage, quad bike ATVs and the Container Delivery System, I thought it might be interesting to evolve some of the ideas and concepts they described. Risk and Requirements To start this post, a few words on risk. Haddon-Cave didn\u2019t happen for no good reason, every [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62488", - "categories": [ - "Blog" - ], - "isoDate": "2023-12-19T21:33:33.000Z" - }, - { - "creator": "Think Defence", - "title": "The Past, Present, and Future of Military Motorcycles (and e-bikes)", - "link": "https://www.thinkdefence.co.uk/2023/09/the-past-present-and-future-of-military-motorcycles-and-e-bikes/", - "pubDate": "Sun, 10 Sep 2023 16:49:54 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/09/the-past-present-and-future-of-military-motorcycles-and-e-bikes/#comments", - "content": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", - "contentSnippet": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", - "guid": "https://www.thinkdefence.co.uk/?p=62334", - "categories": [ - "Blog" - ], - "isoDate": "2023-09-10T16:49:54.000Z" - }, - { - "creator": "Think Defence", - "title": "The Container Transport System \u2013 GUEST POST", - "link": "https://www.thinkdefence.co.uk/2023/09/the-container-transport-system-guest-post/", - "pubDate": "Sun, 03 Sep 2023 18:43:50 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/09/the-container-transport-system-guest-post/#comments", - "content": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant […]", - "contentSnippet": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62318", - "categories": [ - "Blog" - ], - "isoDate": "2023-09-03T18:43:50.000Z" - }, - { - "creator": "Think Defence", - "title": "Winston Churchill and Nellie (the Trenching Machine)", - "link": "https://www.thinkdefence.co.uk/2023/08/winston-churchill-and-nellie-the-trenching-machine/", - "pubDate": "Wed, 30 Aug 2023 20:15:52 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/winston-churchill-and-nellie-the-trenching-machine/#comments", - "content": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie – The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited […]", - "contentSnippet": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie \u2013 The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62291", - "categories": [ - "Blog" - ], - "isoDate": "2023-08-30T20:15:52.000Z" - }, - { - "creator": "Think Defence", - "title": "The Story of Multidrive Vehicles", - "link": "https://www.thinkdefence.co.uk/2023/08/the-story-of-multidrive-vehicles/", - "pubDate": "Tue, 29 Aug 2023 08:47:22 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/the-story-of-multidrive-vehicles/#comments", - "content": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and […]", - "contentSnippet": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62244", - "categories": [ - "Blog" - ], - "isoDate": "2023-08-29T08:47:22.000Z" - }, - { - "creator": "Think Defence", - "title": "The Atlantic Conveyor", - "link": "https://www.thinkdefence.co.uk/2023/08/the-atlantic-conveyor/", - "pubDate": "Thu, 24 Aug 2023 20:10:55 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/the-atlantic-conveyor/#comments", - "content": "This is post 1 of 1 in the series “The 1982 Falkand Islands Conflict” The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 […]", - "contentSnippet": "This is post 1 of 1 in the series \u201cThe 1982 Falkand Islands Conflict\u201d The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62182", - "categories": [ - "Blog" - ], - "isoDate": "2023-08-24T20:10:55.000Z" - }, - { - "creator": "Think Defence", - "title": "Top 25 British War Films", - "link": "https://www.thinkdefence.co.uk/2023/08/top-25-british-war-films/", - "pubDate": "Thu, 24 Aug 2023 13:27:00 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/top-25-british-war-films/#comments", - "content": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British […]", - "contentSnippet": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62135", - "categories": [ - "Blog" - ], - "isoDate": "2023-08-24T13:27:00.000Z" - }, - { - "creator": "Think Defence", - "title": "Exploiting the Container Delivery System (CDS)", - "link": "https://www.thinkdefence.co.uk/2023/08/exploiting-the-container-delivery-system-cds/", - "pubDate": "Fri, 11 Aug 2023 19:49:00 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/exploiting-the-container-delivery-system-cds/#comments", - "content": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as… Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel […]", - "contentSnippet": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as\u2026 Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=62123", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-08-11T19:49:00.000Z" - }, - { - "creator": "Think Defence", - "title": "The Inglis Bridges", - "link": "https://www.thinkdefence.co.uk/2023/08/the-inglis-bridges/", - "pubDate": "Thu, 03 Aug 2023 19:16:37 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/08/the-inglis-bridges/#comments", - "content": "This is post 2 of 2 in the series “Military Bridging” Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with […]", - "contentSnippet": "This is post 2 of 2 in the series \u201cMilitary Bridging\u201d Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=61720", - "categories": [ - "Military Engineering" - ], - "isoDate": "2023-08-03T19:16:37.000Z" - }, - { - "creator": "Think Defence", - "title": "Anti-Tank Mortar Bombs (Merlin, STRIX and Bussard)", - "link": "https://www.thinkdefence.co.uk/2023/05/anti-tank-mortar-bombs-merlin-strix-and-bussard/", - "pubDate": "Tue, 30 May 2023 20:15:33 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/05/anti-tank-mortar-bombs-merlin-strix-and-bussard/#comments", - "content": "This is post 22 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", - "contentSnippet": "This is post 22 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=61668", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2023-05-30T20:15:33.000Z" - }, - { - "creator": "Think Defence", - "title": "Fibre Optic Guided Missiles (EFOG-M, Polyphem, and others)", - "link": "https://www.thinkdefence.co.uk/2023/05/fibre-optic-guided-missiles-efog-m-polyphem-and-others/", - "pubDate": "Fri, 19 May 2023 20:13:45 +0000", - "enclosure": { - "url": "https://upload.wikimedia.org/wikipedia/commons/7/71/FOG-M_missile_video.ogv", - "length": "2135066", - "type": "video/ogg" - }, - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/05/fibre-optic-guided-missiles-efog-m-polyphem-and-others/#comments", - "content": "This is post 21 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", - "contentSnippet": "This is post 21 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=61600", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2023-05-19T20:13:45.000Z" - }, - { - "creator": "Think Defence", - "title": "Supacat All Terrain Mobility Platform (ATMP)", - "link": "https://www.thinkdefence.co.uk/2023/05/supacat-all-terrain-mobility-platform-atmp/", - "pubDate": "Fri, 05 May 2023 16:09:01 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/05/supacat-all-terrain-mobility-platform-atmp/#comments", - "content": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain. ", - "contentSnippet": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain.", - "guid": "https://www.thinkdefence.co.uk/?p=61454", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-05-05T16:09:01.000Z" - }, - { - "creator": "Think Defence", - "title": "Future Soldier (Pallet and Bridge Chap)", - "link": "https://www.thinkdefence.co.uk/2023/04/future-soldier-pallet-and-bridge-chap/", - "pubDate": "Sun, 30 Apr 2023 11:55:58 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/04/future-soldier-pallet-and-bridge-chap/#comments", - "content": "An Alternative Future Soldier from the Bridge and Pallet Chap", - "contentSnippet": "An Alternative Future Soldier from the Bridge and Pallet Chap", - "guid": "https://www.thinkdefence.co.uk/?p=61336", - "categories": [ - "Miscellaneous" - ], - "isoDate": "2023-04-30T11:55:58.000Z" - }, - { - "creator": "Think Defence", - "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties", - "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-sixties/", - "pubDate": "Tue, 21 Mar 2023 21:16:38 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-sixties/#comments", - "content": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T) ", - "contentSnippet": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T)", - "guid": "https://www.thinkdefence.co.uk/?p=60613", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-03-21T21:16:38.000Z" - }, - { - "creator": "Think Defence", - "title": "A Modern-Day Universal Carrier \u2013 UC23", - "link": "https://www.thinkdefence.co.uk/2023/03/a-modern-day-universal-carrier-uc23/", - "pubDate": "Tue, 14 Mar 2023 17:23:15 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/03/a-modern-day-universal-carrier-uc23/#comments", - "content": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the […]", - "contentSnippet": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=60615", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-03-14T17:23:15.000Z" - }, - { - "creator": "Think Defence", - "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties", - "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-fifties/", - "pubDate": "Sat, 04 Mar 2023 21:32:53 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-fifties/#comments", - "content": "This is post 2 of 3 in the series “Dimishing Returns - British Army Vehicles” Diminishing Returns – The British Army and its Vehicles – Series Introduction Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties The end of WWII […]", - "contentSnippet": "This is post 2 of 3 in the series \u201cDimishing Returns - British Army Vehicles\u201d Diminishing Returns \u2013 The British Army and its Vehicles \u2013 Series Introduction Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties The end of WWII [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=60492", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-03-04T21:32:53.000Z" - }, - { - "creator": "Think Defence", - "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 Series Introduction", - "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-series-introduction/", - "pubDate": "Wed, 01 Mar 2023 17:56:42 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-series-introduction/#comments", - "content": "This series of blog posts is I hope a fair-minded and accurate history of the British Army\u2019s armoured and protected mobility vehicles from the Post War period to early 2023.", - "contentSnippet": "This series of blog posts is I hope a fair-minded and accurate history of the British Army\u2019s armoured and protected mobility vehicles from the Post War period to early 2023.", - "guid": "https://www.thinkdefence.co.uk/?p=60475", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-03-01T17:56:42.000Z" - }, - { - "creator": "Think Defence", - "title": "Mounted Close Combat Overwatch (MCCO)", - "link": "https://www.thinkdefence.co.uk/2023/02/mounted-close-combat-overwatch-mcco/", - "pubDate": "Sat, 04 Feb 2023 09:34:04 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/02/mounted-close-combat-overwatch-mcco/#comments", - "content": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", - "contentSnippet": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", - "guid": "https://www.thinkdefence.co.uk/?p=59223", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2023-02-04T09:34:04.000Z" - }, - { - "creator": "Think Defence", - "title": "Let\u2019s Build a Tank \u2013 The UK AFV Industry", - "link": "https://www.thinkdefence.co.uk/2023/01/lets-build-a-tank-the-uk-afv-industry/", - "pubDate": "Tue, 17 Jan 2023 12:19:31 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2023/01/lets-build-a-tank-the-uk-afv-industry/#comments", - "content": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don\u2019t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, […]", - "contentSnippet": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don\u2019t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=60056", - "categories": [ - "Vehicles" - ], - "isoDate": "2023-01-17T12:19:31.000Z" - }, - { - "creator": "Think Defence", - "title": "Land Precision Strike", - "link": "https://www.thinkdefence.co.uk/2022/12/land-precision-strike/", - "pubDate": "Sat, 31 Dec 2022 11:55:50 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/12/land-precision-strike/#comments", - "content": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", - "contentSnippet": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", - "guid": "https://www.thinkdefence.co.uk/?p=59150", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-12-31T11:55:50.000Z" - }, - { - "creator": "Think Defence", - "title": "Giving the Rangers Wings \u2013 Light Transport Aircraft", - "link": "https://www.thinkdefence.co.uk/2022/12/giving-the-rangers-wings-light-transport-aircraft/", - "pubDate": "Fri, 02 Dec 2022 17:51:50 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/12/giving-the-rangers-wings-light-transport-aircraft/#comments", - "content": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", - "contentSnippet": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", - "guid": "https://www.thinkdefence.co.uk/?p=59862", - "categories": [ - "Air Power" - ], - "isoDate": "2022-12-02T17:51:50.000Z" - }, - { - "creator": "Think Defence", - "title": "Anglo Engineering Concepts", - "link": "https://www.thinkdefence.co.uk/2022/11/anglo-engineering-concepts/", - "pubDate": "Sun, 20 Nov 2022 19:05:11 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/anglo-engineering-concepts/#comments", - "content": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers […]", - "contentSnippet": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=59602", - "categories": [ - "Vehicles" - ], - "isoDate": "2022-11-20T19:05:11.000Z" - }, - { - "creator": "Think Defence", - "title": "Tomahawk Cruise Missile", - "link": "https://www.thinkdefence.co.uk/2022/11/tomahawk-cruise-missile/", - "pubDate": "Sun, 20 Nov 2022 13:13:17 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/tomahawk-cruise-missile/#comments", - "content": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", - "contentSnippet": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", - "guid": "https://www.thinkdefence.co.uk/?p=59575", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-11-20T13:13:17.000Z" - }, - { - "creator": "Think Defence", - "title": "Starstreak High Velocity Missile", - "link": "https://www.thinkdefence.co.uk/2022/11/starstreak-high-velocity-missile/", - "pubDate": "Sun, 20 Nov 2022 13:11:52 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/starstreak-high-velocity-missile/#comments", - "content": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", - "contentSnippet": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", - "guid": "https://www.thinkdefence.co.uk/?p=59572", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-11-20T13:11:52.000Z" - }, - { - "creator": "Think Defence", - "title": "Exactor (Spike NLOS)", - "link": "https://www.thinkdefence.co.uk/2022/11/exactor-spike-nlos/", - "pubDate": "Sun, 20 Nov 2022 13:10:29 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/exactor-spike-nlos/#respond", - "content": "This is post 16 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", - "contentSnippet": "This is post 16 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", - "guid": "https://www.thinkdefence.co.uk/?p=59569", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-11-20T13:10:29.000Z" - }, - { - "creator": "Think Defence", - "title": "Sea Venom", - "link": "https://www.thinkdefence.co.uk/2022/11/sea-venom/", - "pubDate": "Sun, 20 Nov 2022 13:09:09 +0000", - "dc:creator": "Think Defence", - "comments": "https://www.thinkdefence.co.uk/2022/11/sea-venom/#respond", - "content": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", - "contentSnippet": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", - "guid": "https://www.thinkdefence.co.uk/?p=59566", - "categories": [ - "Complex Weapons" - ], - "isoDate": "2022-11-20T13:09:09.000Z" - } -] \ No newline at end of file + { + "creator": "Think Defence", + "title": "The Past, Present, and Future of Military Motorcycles (and e-bikes)", + "link": "https://www.thinkdefence.co.uk/2023/09/the-past-present-and-future-of-military-motorcycles-and-e-bikes/", + "pubDate": "Sun, 10 Sep 2023 16:49:54 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/09/the-past-present-and-future-of-military-motorcycles-and-e-bikes/#comments", + "content": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", + "contentSnippet": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", + "guid": "https://www.thinkdefence.co.uk/?p=62334", + "categories": ["Blog"], + "isoDate": "2023-09-10T16:49:54.000Z" + }, + { + "creator": "Think Defence", + "title": "The Container Transport System \u2013 GUEST POST", + "link": "https://www.thinkdefence.co.uk/2023/09/the-container-transport-system-guest-post/", + "pubDate": "Sun, 03 Sep 2023 18:43:50 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/09/the-container-transport-system-guest-post/#comments", + "content": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant […]", + "contentSnippet": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62318", + "categories": ["Blog"], + "isoDate": "2023-09-03T18:43:50.000Z" + }, + { + "creator": "Think Defence", + "title": "Winston Churchill and Nellie (the Trenching Machine)", + "link": "https://www.thinkdefence.co.uk/2023/08/winston-churchill-and-nellie-the-trenching-machine/", + "pubDate": "Wed, 30 Aug 2023 20:15:52 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/winston-churchill-and-nellie-the-trenching-machine/#comments", + "content": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie – The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited […]", + "contentSnippet": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie \u2013 The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62291", + "categories": ["Blog"], + "isoDate": "2023-08-30T20:15:52.000Z" + }, + { + "creator": "Think Defence", + "title": "The Story of Multidrive Vehicles", + "link": "https://www.thinkdefence.co.uk/2023/08/the-story-of-multidrive-vehicles/", + "pubDate": "Tue, 29 Aug 2023 08:47:22 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/the-story-of-multidrive-vehicles/#comments", + "content": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and […]", + "contentSnippet": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62244", + "categories": ["Blog"], + "isoDate": "2023-08-29T08:47:22.000Z" + }, + { + "creator": "Think Defence", + "title": "The Atlantic Conveyor", + "link": "https://www.thinkdefence.co.uk/2023/08/the-atlantic-conveyor/", + "pubDate": "Thu, 24 Aug 2023 20:10:55 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/the-atlantic-conveyor/#comments", + "content": "This is post 1 of 1 in the series “The 1982 Falkand Islands Conflict” The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 […]", + "contentSnippet": "This is post 1 of 1 in the series \u201cThe 1982 Falkand Islands Conflict\u201d The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62182", + "categories": ["Blog"], + "isoDate": "2023-08-24T20:10:55.000Z" + }, + { + "creator": "Think Defence", + "title": "Top 25 British War Films", + "link": "https://www.thinkdefence.co.uk/2023/08/top-25-british-war-films/", + "pubDate": "Thu, 24 Aug 2023 13:27:00 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/top-25-british-war-films/#comments", + "content": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British […]", + "contentSnippet": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62135", + "categories": ["Blog"], + "isoDate": "2023-08-24T13:27:00.000Z" + }, + { + "creator": "Think Defence", + "title": "Exploiting the Container Delivery System (CDS)", + "link": "https://www.thinkdefence.co.uk/2023/08/exploiting-the-container-delivery-system-cds/", + "pubDate": "Fri, 11 Aug 2023 19:49:00 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/exploiting-the-container-delivery-system-cds/#comments", + "content": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as… Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel […]", + "contentSnippet": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as\u2026 Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62123", + "categories": ["Vehicles"], + "isoDate": "2023-08-11T19:49:00.000Z" + }, + { + "creator": "Think Defence", + "title": "The Inglis Bridges", + "link": "https://www.thinkdefence.co.uk/2023/08/the-inglis-bridges/", + "pubDate": "Thu, 03 Aug 2023 19:16:37 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/the-inglis-bridges/#comments", + "content": "This is post 2 of 2 in the series “Military Bridging” Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with […]", + "contentSnippet": "This is post 2 of 2 in the series \u201cMilitary Bridging\u201d Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=61720", + "categories": ["Military Engineering"], + "isoDate": "2023-08-03T19:16:37.000Z" + }, + { + "creator": "Think Defence", + "title": "Anti-Tank Mortar Bombs (Merlin, STRIX and Bussard)", + "link": "https://www.thinkdefence.co.uk/2023/05/anti-tank-mortar-bombs-merlin-strix-and-bussard/", + "pubDate": "Tue, 30 May 2023 20:15:33 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/05/anti-tank-mortar-bombs-merlin-strix-and-bussard/#comments", + "content": "This is post 22 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", + "contentSnippet": "This is post 22 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=61668", + "categories": ["Complex Weapons"], + "isoDate": "2023-05-30T20:15:33.000Z" + }, + { + "creator": "Think Defence", + "title": "Fibre Optic Guided Missiles (EFOG-M, Polyphem, and others)", + "link": "https://www.thinkdefence.co.uk/2023/05/fibre-optic-guided-missiles-efog-m-polyphem-and-others/", + "pubDate": "Fri, 19 May 2023 20:13:45 +0000", + "enclosure": { + "url": "https://upload.wikimedia.org/wikipedia/commons/7/71/FOG-M_missile_video.ogv", + "length": "2135066", + "type": "video/ogg" + }, + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/05/fibre-optic-guided-missiles-efog-m-polyphem-and-others/#comments", + "content": "This is post 21 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", + "contentSnippet": "This is post 21 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=61600", + "categories": ["Complex Weapons"], + "isoDate": "2023-05-19T20:13:45.000Z" + }, + { + "creator": "Think Defence", + "title": "Supacat All Terrain Mobility Platform (ATMP)", + "link": "https://www.thinkdefence.co.uk/2023/05/supacat-all-terrain-mobility-platform-atmp/", + "pubDate": "Fri, 05 May 2023 16:09:01 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/05/supacat-all-terrain-mobility-platform-atmp/#comments", + "content": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain. ", + "contentSnippet": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain.", + "guid": "https://www.thinkdefence.co.uk/?p=61454", + "categories": ["Vehicles"], + "isoDate": "2023-05-05T16:09:01.000Z" + }, + { + "creator": "Think Defence", + "title": "Future Soldier (Pallet and Bridge Chap)", + "link": "https://www.thinkdefence.co.uk/2023/04/future-soldier-pallet-and-bridge-chap/", + "pubDate": "Sun, 30 Apr 2023 11:55:58 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/04/future-soldier-pallet-and-bridge-chap/#comments", + "content": "An Alternative Future Soldier from the Bridge and Pallet Chap", + "contentSnippet": "An Alternative Future Soldier from the Bridge and Pallet Chap", + "guid": "https://www.thinkdefence.co.uk/?p=61336", + "categories": ["Miscellaneous"], + "isoDate": "2023-04-30T11:55:58.000Z" + }, + { + "creator": "Think Defence", + "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties", + "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-sixties/", + "pubDate": "Tue, 21 Mar 2023 21:16:38 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-sixties/#comments", + "content": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T) ", + "contentSnippet": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T)", + "guid": "https://www.thinkdefence.co.uk/?p=60613", + "categories": ["Vehicles"], + "isoDate": "2023-03-21T21:16:38.000Z" + }, + { + "creator": "Think Defence", + "title": "A Modern-Day Universal Carrier \u2013 UC23", + "link": "https://www.thinkdefence.co.uk/2023/03/a-modern-day-universal-carrier-uc23/", + "pubDate": "Tue, 14 Mar 2023 17:23:15 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/03/a-modern-day-universal-carrier-uc23/#comments", + "content": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the […]", + "contentSnippet": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=60615", + "categories": ["Vehicles"], + "isoDate": "2023-03-14T17:23:15.000Z" + }, + { + "creator": "Think Defence", + "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties", + "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-fifties/", + "pubDate": "Sat, 04 Mar 2023 21:32:53 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-fifties/#comments", + "content": "This is post 2 of 3 in the series “Dimishing Returns - British Army Vehicles” Diminishing Returns – The British Army and its Vehicles – Series Introduction Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties The end of WWII […]", + "contentSnippet": "This is post 2 of 3 in the series \u201cDimishing Returns - British Army Vehicles\u201d Diminishing Returns \u2013 The British Army and its Vehicles \u2013 Series Introduction Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties The end of WWII [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=60492", + "categories": ["Vehicles"], + "isoDate": "2023-03-04T21:32:53.000Z" + }, + { + "creator": "Think Defence", + "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 Series Introduction", + "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-series-introduction/", + "pubDate": "Wed, 01 Mar 2023 17:56:42 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-series-introduction/#comments", + "content": "This series of blog posts is I hope a fair-minded and accurate history of the British Army\u2019s armoured and protected mobility vehicles from the Post War period to early 2023.", + "contentSnippet": "This series of blog posts is I hope a fair-minded and accurate history of the British Army\u2019s armoured and protected mobility vehicles from the Post War period to early 2023.", + "guid": "https://www.thinkdefence.co.uk/?p=60475", + "categories": ["Vehicles"], + "isoDate": "2023-03-01T17:56:42.000Z" + }, + { + "creator": "Think Defence", + "title": "Mounted Close Combat Overwatch (MCCO)", + "link": "https://www.thinkdefence.co.uk/2023/02/mounted-close-combat-overwatch-mcco/", + "pubDate": "Sat, 04 Feb 2023 09:34:04 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/02/mounted-close-combat-overwatch-mcco/#comments", + "content": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", + "contentSnippet": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", + "guid": "https://www.thinkdefence.co.uk/?p=59223", + "categories": ["Complex Weapons"], + "isoDate": "2023-02-04T09:34:04.000Z" + }, + { + "creator": "Think Defence", + "title": "Let\u2019s Build a Tank \u2013 The UK AFV Industry", + "link": "https://www.thinkdefence.co.uk/2023/01/lets-build-a-tank-the-uk-afv-industry/", + "pubDate": "Tue, 17 Jan 2023 12:19:31 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/01/lets-build-a-tank-the-uk-afv-industry/#comments", + "content": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don\u2019t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, […]", + "contentSnippet": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don\u2019t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=60056", + "categories": ["Vehicles"], + "isoDate": "2023-01-17T12:19:31.000Z" + }, + { + "creator": "Think Defence", + "title": "Land Precision Strike", + "link": "https://www.thinkdefence.co.uk/2022/12/land-precision-strike/", + "pubDate": "Sat, 31 Dec 2022 11:55:50 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/12/land-precision-strike/#comments", + "content": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", + "contentSnippet": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", + "guid": "https://www.thinkdefence.co.uk/?p=59150", + "categories": ["Complex Weapons"], + "isoDate": "2022-12-31T11:55:50.000Z" + }, + { + "creator": "Think Defence", + "title": "Giving the Rangers Wings \u2013 Light Transport Aircraft", + "link": "https://www.thinkdefence.co.uk/2022/12/giving-the-rangers-wings-light-transport-aircraft/", + "pubDate": "Fri, 02 Dec 2022 17:51:50 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/12/giving-the-rangers-wings-light-transport-aircraft/#comments", + "content": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", + "contentSnippet": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", + "guid": "https://www.thinkdefence.co.uk/?p=59862", + "categories": ["Air Power"], + "isoDate": "2022-12-02T17:51:50.000Z" + }, + { + "creator": "Think Defence", + "title": "Anglo Engineering Concepts", + "link": "https://www.thinkdefence.co.uk/2022/11/anglo-engineering-concepts/", + "pubDate": "Sun, 20 Nov 2022 19:05:11 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/anglo-engineering-concepts/#comments", + "content": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers […]", + "contentSnippet": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=59602", + "categories": ["Vehicles"], + "isoDate": "2022-11-20T19:05:11.000Z" + }, + { + "creator": "Think Defence", + "title": "Tomahawk Cruise Missile", + "link": "https://www.thinkdefence.co.uk/2022/11/tomahawk-cruise-missile/", + "pubDate": "Sun, 20 Nov 2022 13:13:17 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/tomahawk-cruise-missile/#comments", + "content": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", + "contentSnippet": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", + "guid": "https://www.thinkdefence.co.uk/?p=59575", + "categories": ["Complex Weapons"], + "isoDate": "2022-11-20T13:13:17.000Z" + }, + { + "creator": "Think Defence", + "title": "Starstreak High Velocity Missile", + "link": "https://www.thinkdefence.co.uk/2022/11/starstreak-high-velocity-missile/", + "pubDate": "Sun, 20 Nov 2022 13:11:52 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/starstreak-high-velocity-missile/#comments", + "content": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", + "contentSnippet": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", + "guid": "https://www.thinkdefence.co.uk/?p=59572", + "categories": ["Complex Weapons"], + "isoDate": "2022-11-20T13:11:52.000Z" + }, + { + "creator": "Think Defence", + "title": "Exactor (Spike NLOS)", + "link": "https://www.thinkdefence.co.uk/2022/11/exactor-spike-nlos/", + "pubDate": "Sun, 20 Nov 2022 13:10:29 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/exactor-spike-nlos/#respond", + "content": "This is post 16 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", + "contentSnippet": "This is post 16 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=59569", + "categories": ["Complex Weapons"], + "isoDate": "2022-11-20T13:10:29.000Z" + }, + { + "creator": "Think Defence", + "title": "Sea Venom", + "link": "https://www.thinkdefence.co.uk/2022/11/sea-venom/", + "pubDate": "Sun, 20 Nov 2022 13:09:09 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/sea-venom/#respond", + "content": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", + "contentSnippet": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", + "guid": "https://www.thinkdefence.co.uk/?p=59566", + "categories": ["Complex Weapons"], + "isoDate": "2022-11-20T13:09:09.000Z" + }, + { + "creator": "Think Defence", + "title": "The Adaptable Load Carrier", + "link": "https://www.thinkdefence.co.uk/2023/12/the-adaptable-load-carrier/", + "pubDate": "Tue, 19 Dec 2023 21:33:33 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/12/the-adaptable-load-carrier/#comments", + "content": "Building on a handful of earlier posts on infantry load carriage, quad bike ATVs and the Container Delivery System, I thought it might be interesting to evolve some of the ideas and concepts they described. Risk and Requirements To start this post, a few words on risk. Haddon-Cave didn’t happen for no good reason, every […]", + "contentSnippet": "Building on a handful of earlier posts on infantry load carriage, quad bike ATVs and the Container Delivery System, I thought it might be interesting to evolve some of the ideas and concepts they described. Risk and Requirements To start this post, a few words on risk. Haddon-Cave didn\u2019t happen for no good reason, every [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62488", + "categories": ["Blog"], + "isoDate": "2023-12-19T21:33:33.000Z" + }, + { + "creator": "Think Defence", + "title": "The Past, Present, and Future of Military Motorcycles (and e-bikes)", + "link": "https://www.thinkdefence.co.uk/2023/09/the-past-present-and-future-of-military-motorcycles-and-e-bikes/", + "pubDate": "Sun, 10 Sep 2023 16:49:54 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/09/the-past-present-and-future-of-military-motorcycles-and-e-bikes/#comments", + "content": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", + "contentSnippet": "Do military motorcycles and e-bikes have a future in the British Army, a few thoughts on the subject.", + "guid": "https://www.thinkdefence.co.uk/?p=62334", + "categories": ["Blog"], + "isoDate": "2023-09-10T16:49:54.000Z" + }, + { + "creator": "Think Defence", + "title": "The Container Transport System \u2013 GUEST POST", + "link": "https://www.thinkdefence.co.uk/2023/09/the-container-transport-system-guest-post/", + "pubDate": "Sun, 03 Sep 2023 18:43:50 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/09/the-container-transport-system-guest-post/#comments", + "content": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant […]", + "contentSnippet": "The purpose of this article is to introduce the Container Transport System (CTS) and explain the capabilities it brings to both the warfighter and the emergency management executive. A guest post from Marc Diaz Introduction The idea for the CTS came from my experience in disaster response. Incredibly, on August 17th, I experienced a significant [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62318", + "categories": ["Blog"], + "isoDate": "2023-09-03T18:43:50.000Z" + }, + { + "creator": "Think Defence", + "title": "Winston Churchill and Nellie (the Trenching Machine)", + "link": "https://www.thinkdefence.co.uk/2023/08/winston-churchill-and-nellie-the-trenching-machine/", + "pubDate": "Wed, 30 Aug 2023 20:15:52 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/winston-churchill-and-nellie-the-trenching-machine/#comments", + "content": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie – The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited […]", + "contentSnippet": "Nellie was the nickname used for a unique trenching machine that owed its existence to Winston Churchill, it was not, however, a great success. Nellie \u2013 The Early Years When Germany invaded Poland in 1939, Neville Chamberlain appointed Winston Churchill to the Cabinet as First Lord of the Admiralty. Wasting no time he immediately revisited [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62291", + "categories": ["Blog"], + "isoDate": "2023-08-30T20:15:52.000Z" + }, + { + "creator": "Think Defence", + "title": "The Story of Multidrive Vehicles", + "link": "https://www.thinkdefence.co.uk/2023/08/the-story-of-multidrive-vehicles/", + "pubDate": "Tue, 29 Aug 2023 08:47:22 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/the-story-of-multidrive-vehicles/#comments", + "content": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and […]", + "contentSnippet": "Multidrive Vehicles have a complex and multi-faceted history, but it is a fascinating history nonetheless. From a UK defence perspective, they designed and produced several innovative products that many think were lost opportunities for the British Army and defence exports. David J. Brown CBE established DJB Design and Engineering in the mid-seventies to design and [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62244", + "categories": ["Blog"], + "isoDate": "2023-08-29T08:47:22.000Z" + }, + { + "creator": "Think Defence", + "title": "The Atlantic Conveyor", + "link": "https://www.thinkdefence.co.uk/2023/08/the-atlantic-conveyor/", + "pubDate": "Thu, 24 Aug 2023 20:10:55 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/the-atlantic-conveyor/#comments", + "content": "This is post 1 of 1 in the series “The 1982 Falkand Islands Conflict” The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 […]", + "contentSnippet": "This is post 1 of 1 in the series \u201cThe 1982 Falkand Islands Conflict\u201d The Atlantic Conveyor was built on the Tyne by Swan Hunter and delivered to Cunard in 1970 as part of their contribution to the Atlantic Container Line consortium. It would go on to be sunk by enemy action in the 1982 [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62182", + "categories": ["Blog"], + "isoDate": "2023-08-24T20:10:55.000Z" + }, + { + "creator": "Think Defence", + "title": "Top 25 British War Films", + "link": "https://www.thinkdefence.co.uk/2023/08/top-25-british-war-films/", + "pubDate": "Thu, 24 Aug 2023 13:27:00 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/top-25-british-war-films/#comments", + "content": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British […]", + "contentSnippet": "We could argue all day about the definition of Britishness in war films but we all know what it means. This is the Think Defence list of the Top 25 British War Films The definition of a British War Film is one that is largely British in character, they may have been directed by non-British [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62135", + "categories": ["Blog"], + "isoDate": "2023-08-24T13:27:00.000Z" + }, + { + "creator": "Think Defence", + "title": "Exploiting the Container Delivery System (CDS)", + "link": "https://www.thinkdefence.co.uk/2023/08/exploiting-the-container-delivery-system-cds/", + "pubDate": "Fri, 11 Aug 2023 19:49:00 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/exploiting-the-container-delivery-system-cds/#comments", + "content": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as… Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel […]", + "contentSnippet": "This post examines options for further exploitation of the Container Delivery System (CDS), expanding its applicability to light vehicles, engineering plant, and weapon systems. Joint Doctrine Note 1/20 describes two categories of Air Manoeuvre, airland, and airdrop, the latter being defined as\u2026 Airdrop is the delivery of personnel or cargo from aircraft in flight. Personnel [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=62123", + "categories": ["Vehicles"], + "isoDate": "2023-08-11T19:49:00.000Z" + }, + { + "creator": "Think Defence", + "title": "The Inglis Bridges", + "link": "https://www.thinkdefence.co.uk/2023/08/the-inglis-bridges/", + "pubDate": "Thu, 03 Aug 2023 19:16:37 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/08/the-inglis-bridges/#comments", + "content": "This is post 2 of 2 in the series “Military Bridging” Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with […]", + "contentSnippet": "This is post 2 of 2 in the series \u201cMilitary Bridging\u201d Folding Boat Equipment (FBE) The Inglis Bridges When most people think about portable military bridges they tend to assume the Bailey Bridge was the first, but this would be wrong, Charles Edward Inglis designed the first dry gap prefabricated military bridge in service with [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=61720", + "categories": ["Military Engineering"], + "isoDate": "2023-08-03T19:16:37.000Z" + }, + { + "creator": "Think Defence", + "title": "Anti-Tank Mortar Bombs (Merlin, STRIX and Bussard)", + "link": "https://www.thinkdefence.co.uk/2023/05/anti-tank-mortar-bombs-merlin-strix-and-bussard/", + "pubDate": "Tue, 30 May 2023 20:15:33 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/05/anti-tank-mortar-bombs-merlin-strix-and-bussard/#comments", + "content": "This is post 22 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", + "contentSnippet": "This is post 22 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=61668", + "categories": ["Complex Weapons"], + "isoDate": "2023-05-30T20:15:33.000Z" + }, + { + "creator": "Think Defence", + "title": "Fibre Optic Guided Missiles (EFOG-M, Polyphem, and others)", + "link": "https://www.thinkdefence.co.uk/2023/05/fibre-optic-guided-missiles-efog-m-polyphem-and-others/", + "pubDate": "Fri, 19 May 2023 20:13:45 +0000", + "enclosure": { + "url": "https://upload.wikimedia.org/wikipedia/commons/7/71/FOG-M_missile_video.ogv", + "length": "2135066", + "type": "video/ogg" + }, + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/05/fibre-optic-guided-missiles-efog-m-polyphem-and-others/#comments", + "content": "This is post 21 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", + "contentSnippet": "This is post 21 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=61600", + "categories": ["Complex Weapons"], + "isoDate": "2023-05-19T20:13:45.000Z" + }, + { + "creator": "Think Defence", + "title": "Supacat All Terrain Mobility Platform (ATMP)", + "link": "https://www.thinkdefence.co.uk/2023/05/supacat-all-terrain-mobility-platform-atmp/", + "pubDate": "Fri, 05 May 2023 16:09:01 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/05/supacat-all-terrain-mobility-platform-atmp/#comments", + "content": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain. ", + "contentSnippet": "The Supacat All Terrain Mobility Platform (ATMP) is designed to carry heavy loads over extreme terrain.", + "guid": "https://www.thinkdefence.co.uk/?p=61454", + "categories": ["Vehicles"], + "isoDate": "2023-05-05T16:09:01.000Z" + }, + { + "creator": "Think Defence", + "title": "Future Soldier (Pallet and Bridge Chap)", + "link": "https://www.thinkdefence.co.uk/2023/04/future-soldier-pallet-and-bridge-chap/", + "pubDate": "Sun, 30 Apr 2023 11:55:58 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/04/future-soldier-pallet-and-bridge-chap/#comments", + "content": "An Alternative Future Soldier from the Bridge and Pallet Chap", + "contentSnippet": "An Alternative Future Soldier from the Bridge and Pallet Chap", + "guid": "https://www.thinkdefence.co.uk/?p=61336", + "categories": ["Miscellaneous"], + "isoDate": "2023-04-30T11:55:58.000Z" + }, + { + "creator": "Think Defence", + "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties", + "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-sixties/", + "pubDate": "Tue, 21 Mar 2023 21:16:38 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-sixties/#comments", + "content": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T) ", + "contentSnippet": "Chieftain and FV432 vehicles entered service with the British Army, and early work on what would become CVR(T)", + "guid": "https://www.thinkdefence.co.uk/?p=60613", + "categories": ["Vehicles"], + "isoDate": "2023-03-21T21:16:38.000Z" + }, + { + "creator": "Think Defence", + "title": "A Modern-Day Universal Carrier \u2013 UC23", + "link": "https://www.thinkdefence.co.uk/2023/03/a-modern-day-universal-carrier-uc23/", + "pubDate": "Tue, 14 Mar 2023 17:23:15 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/03/a-modern-day-universal-carrier-uc23/#comments", + "content": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the […]", + "contentSnippet": "The Bren Gun Carrier, or Universal Carrier, was a class of WWII-era vehicles somewhat unique to British and Commonwealth armies used for logistics and support weapon carriage. As you all know, the concept was invented by Giffard Le Quesne Martel, a famous Sapper also responsible for parts of the Bailey Bridge. The story of the [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=60615", + "categories": ["Vehicles"], + "isoDate": "2023-03-14T17:23:15.000Z" + }, + { + "creator": "Think Defence", + "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties", + "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-fifties/", + "pubDate": "Sat, 04 Mar 2023 21:32:53 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-the-fifties/#comments", + "content": "This is post 2 of 3 in the series “Dimishing Returns - British Army Vehicles” Diminishing Returns – The British Army and its Vehicles – Series Introduction Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties The end of WWII […]", + "contentSnippet": "This is post 2 of 3 in the series \u201cDimishing Returns - British Army Vehicles\u201d Diminishing Returns \u2013 The British Army and its Vehicles \u2013 Series Introduction Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Fifties Diminishing Returns \u2013 The British Army and its Vehicles \u2013 The Sixties The end of WWII [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=60492", + "categories": ["Vehicles"], + "isoDate": "2023-03-04T21:32:53.000Z" + }, + { + "creator": "Think Defence", + "title": "Diminishing Returns \u2013 The British Army and its Vehicles \u2013 Series Introduction", + "link": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-series-introduction/", + "pubDate": "Wed, 01 Mar 2023 17:56:42 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/03/diminishing-returns-the-british-army-and-its-vehicles-series-introduction/#comments", + "content": "This series of blog posts is I hope a fair-minded and accurate history of the British Army\u2019s armoured and protected mobility vehicles from the Post War period to early 2023.", + "contentSnippet": "This series of blog posts is I hope a fair-minded and accurate history of the British Army\u2019s armoured and protected mobility vehicles from the Post War period to early 2023.", + "guid": "https://www.thinkdefence.co.uk/?p=60475", + "categories": ["Vehicles"], + "isoDate": "2023-03-01T17:56:42.000Z" + }, + { + "creator": "Think Defence", + "title": "Mounted Close Combat Overwatch (MCCO)", + "link": "https://www.thinkdefence.co.uk/2023/02/mounted-close-combat-overwatch-mcco/", + "pubDate": "Sat, 04 Feb 2023 09:34:04 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/02/mounted-close-combat-overwatch-mcco/#comments", + "content": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", + "contentSnippet": "Mounted Close Combat Overwatch (MCCO) is a British Army requirement for a long-range anti-armour weapon system", + "guid": "https://www.thinkdefence.co.uk/?p=59223", + "categories": ["Complex Weapons"], + "isoDate": "2023-02-04T09:34:04.000Z" + }, + { + "creator": "Think Defence", + "title": "Let\u2019s Build a Tank \u2013 The UK AFV Industry", + "link": "https://www.thinkdefence.co.uk/2023/01/lets-build-a-tank-the-uk-afv-industry/", + "pubDate": "Tue, 17 Jan 2023 12:19:31 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2023/01/lets-build-a-tank-the-uk-afv-industry/#comments", + "content": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don\u2019t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, […]", + "contentSnippet": "I challenge the notion that the British tank and armoured vehicle industry is dead, that we don\u2019t buy enough, and should just jack it all in and buy Abrams or Leopard. Listen to the online doom casting and one could be forgiven for thinking that all is lost for the British armoured fighting vehicle industry, [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=60056", + "categories": ["Vehicles"], + "isoDate": "2023-01-17T12:19:31.000Z" + }, + { + "creator": "Think Defence", + "title": "Land Precision Strike", + "link": "https://www.thinkdefence.co.uk/2022/12/land-precision-strike/", + "pubDate": "Sat, 31 Dec 2022 11:55:50 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/12/land-precision-strike/#comments", + "content": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", + "contentSnippet": "Land Precision Strike will rapidly engage relocatable high value targets in warfighting and lower intensity operations", + "guid": "https://www.thinkdefence.co.uk/?p=59150", + "categories": ["Complex Weapons"], + "isoDate": "2022-12-31T11:55:50.000Z" + }, + { + "creator": "Think Defence", + "title": "Giving the Rangers Wings \u2013 Light Transport Aircraft", + "link": "https://www.thinkdefence.co.uk/2022/12/giving-the-rangers-wings-light-transport-aircraft/", + "pubDate": "Fri, 02 Dec 2022 17:51:50 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/12/giving-the-rangers-wings-light-transport-aircraft/#comments", + "content": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", + "contentSnippet": "A proposal to reestablish Army Air Corps fixed-wing light transport aviation to support the British Army Rangers", + "guid": "https://www.thinkdefence.co.uk/?p=59862", + "categories": ["Air Power"], + "isoDate": "2022-12-02T17:51:50.000Z" + }, + { + "creator": "Think Defence", + "title": "Anglo Engineering Concepts", + "link": "https://www.thinkdefence.co.uk/2022/11/anglo-engineering-concepts/", + "pubDate": "Sun, 20 Nov 2022 19:05:11 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/anglo-engineering-concepts/#comments", + "content": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers […]", + "contentSnippet": "A proposal from Anglo Engineering Concepts to meet British Army vehicle capability gaps and drive down support costs by adopting system engineering thinking and a design language that places the designer close to the user. Anglo Engineering Concepts is run by an experienced design engineer that previously worked as one of the three design engineers [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=59602", + "categories": ["Vehicles"], + "isoDate": "2022-11-20T19:05:11.000Z" + }, + { + "creator": "Think Defence", + "title": "Tomahawk Cruise Missile", + "link": "https://www.thinkdefence.co.uk/2022/11/tomahawk-cruise-missile/", + "pubDate": "Sun, 20 Nov 2022 13:13:17 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/tomahawk-cruise-missile/#comments", + "content": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", + "contentSnippet": "The Tomahawk Land Attack Cruise Missile (TLAM) is a precision weapon that launches from ships and submarines and can precisely strike targets from 1000 miles away.", + "guid": "https://www.thinkdefence.co.uk/?p=59575", + "categories": ["Complex Weapons"], + "isoDate": "2022-11-20T13:13:17.000Z" + }, + { + "creator": "Think Defence", + "title": "Starstreak High Velocity Missile", + "link": "https://www.thinkdefence.co.uk/2022/11/starstreak-high-velocity-missile/", + "pubDate": "Sun, 20 Nov 2022 13:11:52 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/starstreak-high-velocity-missile/#comments", + "content": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", + "contentSnippet": "Starstreak High-Velocity Missile was designed to provide close air defence against conventional air threats such as fixed-wing fighters and late unmasking helicopter targets.", + "guid": "https://www.thinkdefence.co.uk/?p=59572", + "categories": ["Complex Weapons"], + "isoDate": "2022-11-20T13:11:52.000Z" + }, + { + "creator": "Think Defence", + "title": "Exactor (Spike NLOS)", + "link": "https://www.thinkdefence.co.uk/2022/11/exactor-spike-nlos/", + "pubDate": "Sun, 20 Nov 2022 13:10:29 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/exactor-spike-nlos/#respond", + "content": "This is post 16 of 22 in the series “Complex Weapons” Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole […]", + "contentSnippet": "This is post 16 of 22 in the series \u201cComplex Weapons\u201d Advanced Short Range Air to Air Missile (ASRAAM) ASTER Surface to Air Missile (Sea Viper) Brimstone Guided Missile Common Anti Air Missile (CAMM) Fire Shadow Loitering Munition SPEAR Missile Storm Shadow Guided Multiple Launch Rocket System (GMLRS) Harpoon Missile Javelin Martlet ( Lightweight Multirole [\u2026]", + "guid": "https://www.thinkdefence.co.uk/?p=59569", + "categories": ["Complex Weapons"], + "isoDate": "2022-11-20T13:10:29.000Z" + }, + { + "creator": "Think Defence", + "title": "Sea Venom", + "link": "https://www.thinkdefence.co.uk/2022/11/sea-venom/", + "pubDate": "Sun, 20 Nov 2022 13:09:09 +0000", + "dc:creator": "Think Defence", + "comments": "https://www.thinkdefence.co.uk/2022/11/sea-venom/#respond", + "content": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", + "contentSnippet": "Sea Venom is an advanced replacement for the battle-proven Sea Skua air-to-surface missile, equipping Royal Navy Wildcat helicopters", + "guid": "https://www.thinkdefence.co.uk/?p=59566", + "categories": ["Complex Weapons"], + "isoDate": "2022-11-20T13:09:09.000Z" + } +] diff --git a/intro to react/newData/oldNews/a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697.json b/intro to react/newData/oldNews/a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697.json index 63f7ec9..5472495 100644 --- a/intro to react/newData/oldNews/a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697.json +++ b/intro to react/newData/oldNews/a07faf2b80629f2f8fca00b937673fcc91403a6772ea14dae599c7737a784697.json @@ -1,362 +1,302 @@ [ - { - "creator": "Oli Baxter-Hughes", - "title": "Aftermath of flooding in Brazil\u2019s Amazonas state", - "link": "https://www.reutersagency.com/en/coverage/aftermath-of-flooding-in-brazils-amazonas-state/", - "pubDate": "Sat, 21 May 2022 19:06:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Aftermath of flooding in Brazil’s Amazonas state

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Jose Lucio de Freitas, a local farmer, collects bananas at his plantation damaged by flood waters, after several riverside villages were affected by flooding triggered by the rise of the river levels in Careiro da Varzea in the Amazonas state, Brazil May 20, 2022. Picture taken with a drone May 20, 2022. REUTERS/Bruno Kelly

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\t\t\t\n\n21 May 2022, 7:06 pm 8 minutes\nBy Bruno Kelly\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nJose Lucio de Freitas, a local farmer, collects bananas at his plantation damaged by flood waters, after several riverside villages were affected by flooding triggered by the rise of the river levels in Careiro da Varzea in the Amazonas state, Brazil May 20, 2022. Picture taken with a drone May 20, 2022. REUTERS/Bruno Kelly \n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Aftermath of flooding in Brazil\u2019s Amazonas state appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/aftermath-of-flooding-in-brazils-amazonas-state/#respond", - "content": "

The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Aftermath of flooding in Brazil\u2019s Amazonas state appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290590", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-21T19:06:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "People take the plunge with a shark dive in Florida", - "link": "https://www.reutersagency.com/en/coverage/people-take-the-plunge-with-a-shark-dive-in-florida/", - "pubDate": "Wed, 18 May 2022 01:00:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

People take the plunge with a shark dive in Florida

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

A shark swims past a diver during an outing with scuba company Emerald Charters off Jupiter Inlet, Florida, U.S., May 18, 2022. REUTERS/Sam Wolfe

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nPeople take the plunge with a shark dive in Florida\n\n\t\t\t\n\n18 May 2022, 1:00 am 8 minutes\nBy Sam Wolfe\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nA shark swims past a diver during an outing with scuba company Emerald Charters off Jupiter Inlet, Florida, U.S., May 18, 2022. REUTERS/Sam Wolfe \n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/people-take-the-plunge-with-a-shark-dive-in-florida/#respond", - "content": "

The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290324", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-18T01:00:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "The moon is seen during a lunar eclipse in Los Angeles", - "link": "https://www.reutersagency.com/en/coverage/the-moon-is-seen-during-a-lunar-eclipse-in-los-angeles/", - "pubDate": "Mon, 16 May 2022 01:06:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The moon is seen during a lunar eclipse in Los Angeles

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

The St. Andrew’s Ukrainian Orthodox Church is seen as the moon moves through the shadow of the earth during a “Blood Moon” lunar eclipse, in Los Angeles, California, U.S., May 15, 2022. REUTERS/David Swanson

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\t\t\t\n\n16 May 2022, 1:06 am 8 minutes\nBy David Swanson\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nThe St. Andrew\u2019s Ukrainian Orthodox Church is seen as the moon moves through the shadow of the earth during a \u201cBlood Moon\u201d lunar eclipse, in Los Angeles, California, U.S., May 15, 2022. REUTERS/David Swanson\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/the-moon-is-seen-during-a-lunar-eclipse-in-los-angeles/#respond", - "content": "

The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290588", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-16T01:06:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "Wildfire in California", - "link": "https://www.reutersagency.com/en/coverage/wildfire-in-california/", - "pubDate": "Thu, 12 May 2022 15:28:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Wildfire in California

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Smoke from a fast-moving, wind-driven wildfire rises above a residential area in Laguna Niguel, California, U.S., May 12, 2022. REUTERS/Mike Blake

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Wildfire in California appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nWildfire in California\n\n\t\t\t\n\n12 May 2022, 3:28 pm 8 minutes\nBy Mike Blake\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nSmoke from a fast-moving, wind-driven wildfire rises above a residential area in Laguna Niguel, California, U.S., May 12, 2022. REUTERS/Mike Blake\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Wildfire in California appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/wildfire-in-california/#respond", - "content": "

The post Wildfire in California appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Wildfire in California appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290565", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-12T15:28:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "A Swiss farmer works in his field with his tractor in Sullens", - "link": "https://www.reutersagency.com/en/coverage/a-swiss-farmer-works-in-his-field-with-his-tractor-in-sullens/", - "pubDate": "Tue, 10 May 2022 16:27:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

A Swiss farmer works in his field with his tractor in Sullens

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

A Swiss farmer works in his field with his tractor in Sullens, Switzerland, May 10, 2022. Picture taken with a drone. REUTERS/Denis Balibouse TPX IMAGES OF THE DAY

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nA Swiss farmer works in his field with his tractor in Sullens\n\n\t\t\t\n\n10 May 2022, 4:27 pm 8 minutes\nBy Denis Balibouse\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nA Swiss farmer works in his field with his tractor in Sullens, Switzerland, May 10, 2022. Picture taken with a drone. REUTERS/Denis Balibouse TPX IMAGES OF THE DAY\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/a-swiss-farmer-works-in-his-field-with-his-tractor-in-sullens/#respond", - "content": "

The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290289", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-10T16:27:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "Verstappen beats Leclerc to win first Miami Grand Prix", - "link": "https://www.reutersagency.com/en/coverage/verstappen-beats-leclerc-to-win-first-miami-grand-prix/", - "pubDate": "Mon, 09 May 2022 03:06:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Verstappen beats Leclerc to win first Miami Grand Prix

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Formula One F1 – Miami Grand Prix – Miami International Autodrome, Miami, Florida, U.S. – May 8, 2022 Red Bull’s Max Verstappen celebrates on the podium after winning the Miami Grand Prix with the trophy and Dan Marino REUTERS/Ricardo Arduengo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

MIAMI (Reuters) -Formula One world champion Max Verstappen won the inaugural Miami Grand Prix for Red Bull on Sunday, slashing Ferrari rival Charles Leclerc’s overall lead from 27 to 19 points after five races.

\n

Leclerc finished a fighting second, 3.786 seconds behind after starting on pole position, with Spanish team mate Carlos Sainz completing the podium at the Miami Dolphins’ Hard Rock Stadium.

\n

The victory was the Dutch driver’s third of the season, and second in a row, and he made it happen with a crucial overtake around the outside on Sainz at the start to seize second place before blasting past Leclerc on the ninth of the 57 laps.

\n

Verstappen, who also made sure of the bonus point for fastest lap, had looked to be cruising to victory until McLaren’s Lando Norris collided with AlphaTauri’s Pierre Gasly and crashed on lap 41, triggering the safety car.

\n

That allowed Leclerc to close the gap and get back into contention over the final 10 laps.

\n

“It was an incredible Grand Prix,” said Verstappen, who has won every race he has finished so far this season and was handed his winner’s trophy by Dolphins NFL quarterback great Dan Marino. “(It was) very physical but I think we kept it exciting until the end.”

\n

The race drew a cast of A-list celebrities, sporting greats and a sellout crowd as Formula One basked in a wave of popularity fuelled by the Netflix docu-series “Drive to Survive”.

\n

“It\u2019s been insane. I\u2019ve never known such interest, such passion and a huge, huge event,” said Red Bull boss Christian Horner. “I think it\u2019s been great for the American public to tune into Formula One. … it\u2019s been a great event and an exciting race in the end as well.”

\n

MIAMI HEAT

\n

What was a slow burner in the energy-sapping humidity provided some fireworks at the end with the safety car bunching up the field, putting Leclerc right on Verstappen’s tail with five laps remaining.

\n

“On the hard (tyres) we were very competitive and towards the end I thought I could get Max at one point but today they had the advantage in terms of pace,” Leclerc said.

\n

Verstappen’s Mexican team mate, Sergio Perez, finished fourth, with Ferrari retaining the lead in the constructors’ standings on 157 points to Red Bull’s 151.

\n

Perez, who lost speed with a sensor issue that the team fixed, tried to pass Sainz on lap 52 but overcooked his move, with the Spaniard forcing his way back in front and staying there despite the Mexican’s fresher tyres.

\n

George Russell continued his record of finishing every race so far in the top five, with Mercedes team mate and seven-times world champion Lewis Hamilton sixth after a brief battle between the two.

\n

Russell, starting 12th but helped by pitting during the virtual safety car phase and having the advantage of fresher tyres, passed Hamilton twice on track.

\n

He handed back position after the first overtake because he had benefited from going wide but re-passed him immediately afterwards.

\n

Valtteri Bottas was seventh for Alfa Romeo with Alpine’s Esteban Ocon eighth in a stirring fight back after being unable to take part in Saturday’s qualifying due to a practice crash that forced the team to change his car’s chassis.

\n

Double world champion team mate Fernando Alonso was demoted to 11th place after receiving a five-second penalty for causing a collision with Gasly.

\n

Alex Albon moved up to ninth and Aston Martin’s Stroll 10th as a result of Alonso’s penalty.

\n

There was heartbreak for Mick Schumacher, who had been having his best race to date and looked like taking his first point in Formula One until he collided with Aston Martin’s Sebastian Vettel.

\n

Vettel and team mate Stroll had both started from the pit lane after a fuel temperature problem stopped them from going to the grid.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Sports
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nVerstappen beats Leclerc to win first Miami Grand Prix\n\n\t\t\t\n\n09 May 2022, 3:06 am 11 minutes\nBy Simon Evans\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nFormula One F1 \u2013 Miami Grand Prix \u2013 Miami International Autodrome, Miami, Florida, U.S. \u2013 May 8, 2022 Red Bull\u2019s Max Verstappen celebrates on the podium after winning the Miami Grand Prix with the trophy and Dan Marino REUTERS/Ricardo Arduengo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nMIAMI (Reuters) -Formula One world champion Max Verstappen won the inaugural Miami Grand Prix for Red Bull on Sunday, slashing Ferrari rival Charles Leclerc\u2019s overall lead from 27 to 19 points after five races.\nLeclerc finished a fighting second, 3.786 seconds behind after starting on pole position, with Spanish team mate Carlos Sainz completing the podium at the Miami Dolphins\u2019 Hard Rock Stadium.\nThe victory was the Dutch driver\u2019s third of the season, and second in a row, and he made it happen with a crucial overtake around the outside on Sainz at the start to seize second place before blasting past Leclerc on the ninth of the 57 laps.\nVerstappen, who also made sure of the bonus point for fastest lap, had looked to be cruising to victory until McLaren\u2019s Lando Norris collided with AlphaTauri\u2019s Pierre Gasly and crashed on lap 41, triggering the safety car.\nThat allowed Leclerc to close the gap and get back into contention over the final 10 laps.\n\u201cIt was an incredible Grand Prix,\u201d said Verstappen, who has won every race he has finished so far this season and was handed his winner\u2019s trophy by Dolphins NFL quarterback great Dan Marino. \u201c(It was) very physical but I think we kept it exciting until the end.\u201d\nThe race drew a cast of A-list celebrities, sporting greats and a sellout crowd as Formula One basked in a wave of popularity fuelled by the Netflix docu-series \u201cDrive to Survive\u201d.\n\u201cIt\u2019s been insane. I\u2019ve never known such interest, such passion and a huge, huge event,\u201d said Red Bull boss Christian Horner. \u201cI think it\u2019s been great for the American public to tune into Formula One. \u2026 it\u2019s been a great event and an exciting race in the end as well.\u201d\nMIAMI HEAT\nWhat was a slow burner in the energy-sapping humidity provided some fireworks at the end with the safety car bunching up the field, putting Leclerc right on Verstappen\u2019s tail with five laps remaining.\n\u201cOn the hard (tyres) we were very competitive and towards the end I thought I could get Max at one point but today they had the advantage in terms of pace,\u201d Leclerc said.\nVerstappen\u2019s Mexican team mate, Sergio Perez, finished fourth, with Ferrari retaining the lead in the constructors\u2019 standings on 157 points to Red Bull\u2019s 151.\nPerez, who lost speed with a sensor issue that the team fixed, tried to pass Sainz on lap 52 but overcooked his move, with the Spaniard forcing his way back in front and staying there despite the Mexican\u2019s fresher tyres.\nGeorge Russell continued his record of finishing every race so far in the top five, with Mercedes team mate and seven-times world champion Lewis Hamilton sixth after a brief battle between the two.\nRussell, starting 12th but helped by pitting during the virtual safety car phase and having the advantage of fresher tyres, passed Hamilton twice on track.\nHe handed back position after the first overtake because he had benefited from going wide but re-passed him immediately afterwards.\nValtteri Bottas was seventh for Alfa Romeo with Alpine\u2019s Esteban Ocon eighth in a stirring fight back after being unable to take part in Saturday\u2019s qualifying due to a practice crash that forced the team to change his car\u2019s chassis.\nDouble world champion team mate Fernando Alonso was demoted to 11th place after receiving a five-second penalty for causing a collision with Gasly.\nAlex Albon moved up to ninth and Aston Martin\u2019s Stroll 10th as a result of Alonso\u2019s penalty.\nThere was heartbreak for Mick Schumacher, who had been having his best race to date and looked like taking his first point in Formula One until he collided with Aston Martin\u2019s Sebastian Vettel.\nVettel and team mate Stroll had both started from the pit lane after a fuel temperature problem stopped them from going to the grid.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Sports\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/verstappen-beats-leclerc-to-win-first-miami-grand-prix/#respond", - "content": "

The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290241", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-09T03:06:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "Judge releases Oath Keepers member pending trial for U.S. Capitol attack", - "link": "https://www.reutersagency.com/en/coverage/judge-releases-oath-keepers-member-pending-trial-for-u-s-capitol-attack/", - "pubDate": "Thu, 05 May 2022 12:00:44 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Judge releases Oath Keepers member pending trial for U.S. Capitol attack

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

An explosion caused by a police munition is seen while supporters of U.S. President Donald Trump riot in front of the U.S. Capitol Building in Washington, U.S., January 6, 2021. REUTERS/Leah Millis/File Photo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

(Reuters) – A federal\u00a0judge\u00a0on Wednesday agreed to release\u00a0Oath\u00a0Keepers\u00a0member\u00a0Edward Vallejo from custody while he awaits\u00a0trial\u00a0on charges stemming from last year’s\u00a0attack\u00a0on the\u00a0U.S.\u00a0Capitol.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Politics
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nJudge releases Oath Keepers member pending trial for U.S. Capitol attack\n\n\t\t\t\n\n05 May 2022, 12:00 pm 8 minutes\nBy Dan Whitcomb\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nAn explosion caused by a police munition is seen while supporters of U.S. President Donald Trump riot in front of the U.S. Capitol Building in Washington, U.S., January 6, 2021. REUTERS/Leah Millis/File Photo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\n(Reuters) \u2013 A federal\u00a0judge\u00a0on Wednesday agreed to release\u00a0Oath\u00a0Keepers\u00a0member\u00a0Edward Vallejo from custody while he awaits\u00a0trial\u00a0on charges stemming from last year\u2019s\u00a0attack\u00a0on the\u00a0U.S.\u00a0Capitol.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Politics\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/judge-releases-oath-keepers-member-pending-trial-for-u-s-capitol-attack/#respond", - "content": "

The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290194", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-05T12:00:44.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020", - "link": "https://www.reutersagency.com/en/coverage/in-race-for-georgias-election-chief-its-all-about-trump-and-2020/", - "pubDate": "Thu, 05 May 2022 11:17:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

In race for Georgia’s election chief, it’s all about Trump and 2020

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Congressman Jody Hice (R-GA), who is currently running for Georgia Secretary of State, attends a rally in Perry, Georgia, U.S. September 25, 2021. REUTERS/Dustin Chambers/File Photo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

(Reuters) – Republican Jody Hice, the Donald\u00a0Trump-backed U.S. congressman seeking to become the top state\u00a0election\u00a0official in Georgia, wasted little time at a debate this week summarizing the cause driving his campaign.

\n

“The ‘big lie’ in\u00a0all\u00a0of this is that there were no problems with this past\u00a0election,” he said in the debate’s first few seconds on Monday. “This past\u00a0election\u00a0was an absolute disaster under the leadership of Brad Raffensperger.”

\n

The incumbent Raffensperger has been one of\u00a0Trump’s most frequent targets ever since he refused, emphatically\u00a0and\u00a0publicly, to capitulate to the demands of the former president, his fellow Republican, to “find” enough votes to overturn the results in\u00a0Georgia’s\u00a02020\u00a0presidential vote.

\n

Hice has centered his candidacy for the secretary of state’s office on amplifying\u00a0Trump’s baseless claims that he actually won the Georgia presidential vote,\u00a0and\u00a0by extension the White House, but lost due to widespread voter fraud.

\n

The May 24 primary\u00a0election\u00a0will be a test of whether\u00a0Trump’s persistent assertions that the\u00a0election\u00a0was rigged can still animate Republican voters a year\u00a0and\u00a0a half after his loss to Democrat Joe Biden.

\n

Georgia’s\u00a0Republican primary contest is one of nearly 20 across the country this year in which\u00a0Trump-supported candidates who have echoed his false assertions are running to become their states’\u00a0chief\u00a0election\u00a0overseers, according to a tally by States United Action, a nonpartisan advocacy group for fair\u00a0elections.

\n

That trend alarms voting rights groups, who fear that politicians asserting unsubstantiated claims of fraud will have the power to alter\u00a0election\u00a0results in 2024, when\u00a0Trump\u00a0has said he may run again for president.

\n

A member of the conservative Freedom Caucus in the U.S. House, Hice was at a White House meeting in December\u00a02020\u00a0to discuss ways of blocking the certification of the presidential\u00a0election\u00a0in Congress on Jan. 6, 2021, according to documents released by the House committee investigating the attack that day on the U.S. Capitol. He voted against certifying Biden’s win hours after the riot.

\n

The congressman has criticized Raffensperger for measures he took to accommodate voters during the coronavirus pandemic, including mailing absentee ballot applications to\u00a0all\u00a0registered voters\u00a0and\u00a0installing ballot drop boxes.

\n

Multiple audits\u00a0and\u00a0recounts have confirmed that Biden won Georgia. Democratic candidates also swept two U.S. Senate seats in the state’s January 2021 runoffs, giving the party control of both chambers of Congress.

\n

“Jody Hice has been running around Georgia for the last 18 months lying\u00a0about\u00a0our\u00a0election\u00a0process,” Raffensperger said at Monday’s debate in Atlanta.

\n

In a January 2021 phone call,\u00a0Trump\u00a0pushed Raffensperger to “find” the votes needed to flip the margin. The call, which was recorded\u00a0and\u00a0broadcast widely on cable news channels, led to a criminal investigation by state prosecutors into whether\u00a0Trump’s request was illegal\u00a0and\u00a0made Raffensperger a national figure.

\n

A special grand\u00a0jury to help oversee the investigation was selected on Monday.

\n

TIGHT\u00a0RACE

\n

Trump\u00a0has endorsed candidates in other Georgia\u00a0races, most notably former U.S. Senator David Perdue, who is challenging Republican Governor Brian Kemp. Perdue also has focused much of his campaign on re-litigating the\u00a02020\u00a0election, faulting Kemp for not doing more to reverse the results.

\n

Kemp has a substantial lead over Perdue, but Hice\u00a0and\u00a0Raffensperger appear locked in a tight\u00a0race, according to an April opinion poll commissioned by the Atlanta Journal-Constitution.

\n

Hice raised $1.6 million through January, according to campaign finance reports, while Raffensperger took in less than $600,000. The campaigns are due to file updated spending reports this week.

\n

Jay Williams, a Republican strategist in Georgia, said he sees no path for Raffensperger to prevail given his public feud with\u00a0Trump.

\n

“I’ve felt for a long time he’s toast,\u00a0and\u00a0I still think he is,” Williams said.

\n

Raffensperger, mindful that many Republican voters have been swayed by\u00a0Trump’s repeated claims of fraud, has made\u00a0election\u00a0integrity his top priority. He has called for an investigation into whether hundreds of non-citizens tried to register to vote\u00a0and\u00a0endorsed Republican-backed legislation to give law enforcement greater authority to investigate voter fraud.

\n

“He has been very aggressive, reinforcing the idea that he is a meticulous follower of the law,” said Chuck Clay, a former state Republican chair\u00a0and\u00a0former state senator.

\n

But Raffensperger remains unpopular among conservatives like Dianne Putnam, the Whitfield County Republican chair.

\n

“A true Republican wouldn’t have sold the Republican Party out\u00a0and\u00a0allowed our president to be cheated out of an\u00a0election,” she said.

\n

Two other Republican candidates, former Alpharetta Mayor David Belle Isle\u00a0and\u00a0T.J. Hudson, a former probate\u00a0and\u00a0magistrate judge, also are challenging Raffensperger from the right. If no candidate receives more than 50% of the vote, the two leading vote-getters would head to a June runoff.

\n

State Representative Bee Nguyen is the leading candidate on the Democratic side.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Politics
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nIn race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020\n\n\t\t\t\n\n05 May 2022, 11:17 am 12 minutes\nBy Joseph Ax\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nCongressman Jody Hice (R-GA), who is currently running for Georgia Secretary of State, attends a rally in Perry, Georgia, U.S. September 25, 2021. REUTERS/Dustin Chambers/File Photo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\n(Reuters) \u2013 Republican Jody Hice, the Donald\u00a0Trump-backed U.S. congressman seeking to become the top state\u00a0election\u00a0official in Georgia, wasted little time at a debate this week summarizing the cause driving his campaign.\n\u201cThe \u2018big lie\u2019 in\u00a0all\u00a0of this is that there were no problems with this past\u00a0election,\u201d he said in the debate\u2019s first few seconds on Monday. \u201cThis past\u00a0election\u00a0was an absolute disaster under the leadership of Brad Raffensperger.\u201d\nThe incumbent Raffensperger has been one of\u00a0Trump\u2019s most frequent targets ever since he refused, emphatically\u00a0and\u00a0publicly, to capitulate to the demands of the former president, his fellow Republican, to \u201cfind\u201d enough votes to overturn the results in\u00a0Georgia\u2019s\u00a02020\u00a0presidential vote.\nHice has centered his candidacy for the secretary of state\u2019s office on amplifying\u00a0Trump\u2019s baseless claims that he actually won the Georgia presidential vote,\u00a0and\u00a0by extension the White House, but lost due to widespread voter fraud.\nThe May 24 primary\u00a0election\u00a0will be a test of whether\u00a0Trump\u2019s persistent assertions that the\u00a0election\u00a0was rigged can still animate Republican voters a year\u00a0and\u00a0a half after his loss to Democrat Joe Biden.\nGeorgia\u2019s\u00a0Republican primary contest is one of nearly 20 across the country this year in which\u00a0Trump-supported candidates who have echoed his false assertions are running to become their states\u2019\u00a0chief\u00a0election\u00a0overseers, according to a tally by States United Action, a nonpartisan advocacy group for fair\u00a0elections.\nThat trend alarms voting rights groups, who fear that politicians asserting unsubstantiated claims of fraud will have the power to alter\u00a0election\u00a0results in 2024, when\u00a0Trump\u00a0has said he may run again for president.\nA member of the conservative Freedom Caucus in the U.S. House, Hice was at a White House meeting in December\u00a02020\u00a0to discuss ways of blocking the certification of the presidential\u00a0election\u00a0in Congress on Jan. 6, 2021, according to documents released by the House committee investigating the attack that day on the U.S. Capitol. He voted against certifying Biden\u2019s win hours after the riot.\nThe congressman has criticized Raffensperger for measures he took to accommodate voters during the coronavirus pandemic, including mailing absentee ballot applications to\u00a0all\u00a0registered voters\u00a0and\u00a0installing ballot drop boxes.\nMultiple audits\u00a0and\u00a0recounts have confirmed that Biden won Georgia. Democratic candidates also swept two U.S. Senate seats in the state\u2019s January 2021 runoffs, giving the party control of both chambers of Congress.\n\u201cJody Hice has been running around Georgia for the last 18 months lying\u00a0about\u00a0our\u00a0election\u00a0process,\u201d Raffensperger said at Monday\u2019s debate in Atlanta.\nIn a January 2021 phone call,\u00a0Trump\u00a0pushed Raffensperger to \u201cfind\u201d the votes needed to flip the margin. The call, which was recorded\u00a0and\u00a0broadcast widely on cable news channels, led to a criminal investigation by state prosecutors into whether\u00a0Trump\u2019s request was illegal\u00a0and\u00a0made Raffensperger a national figure.\nA special grand\u00a0jury to help oversee the investigation was selected on Monday.\nTIGHT\u00a0RACE\nTrump\u00a0has endorsed candidates in other Georgia\u00a0races, most notably former U.S. Senator David Perdue, who is challenging Republican Governor Brian Kemp. Perdue also has focused much of his campaign on re-litigating the\u00a02020\u00a0election, faulting Kemp for not doing more to reverse the results.\nKemp has a substantial lead over Perdue, but Hice\u00a0and\u00a0Raffensperger appear locked in a tight\u00a0race, according to an April opinion poll commissioned by the Atlanta Journal-Constitution.\nHice raised $1.6 million through January, according to campaign finance reports, while Raffensperger took in less than $600,000. The campaigns are due to file updated spending reports this week.\nJay Williams, a Republican strategist in Georgia, said he sees no path for Raffensperger to prevail given his public feud with\u00a0Trump.\n\u201cI\u2019ve felt for a long time he\u2019s toast,\u00a0and\u00a0I still think he is,\u201d Williams said.\nRaffensperger, mindful that many Republican voters have been swayed by\u00a0Trump\u2019s repeated claims of fraud, has made\u00a0election\u00a0integrity his top priority. He has called for an investigation into whether hundreds of non-citizens tried to register to vote\u00a0and\u00a0endorsed Republican-backed legislation to give law enforcement greater authority to investigate voter fraud.\n\u201cHe has been very aggressive, reinforcing the idea that he is a meticulous follower of the law,\u201d said Chuck Clay, a former state Republican chair\u00a0and\u00a0former state senator.\nBut Raffensperger remains unpopular among conservatives like Dianne Putnam, the Whitfield County Republican chair.\n\u201cA true Republican wouldn\u2019t have sold the Republican Party out\u00a0and\u00a0allowed our president to be cheated out of an\u00a0election,\u201d she said.\nTwo other Republican candidates, former Alpharetta Mayor David Belle Isle\u00a0and\u00a0T.J. Hudson, a former probate\u00a0and\u00a0magistrate judge, also are challenging Raffensperger from the right. If no candidate receives more than 50% of the vote, the two leading vote-getters would head to a June runoff.\nState Representative Bee Nguyen is the leading candidate on the Democratic side.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Politics\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020 appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/in-race-for-georgias-election-chief-its-all-about-trump-and-2020/#respond", - "content": "

The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020 appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290159", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-05T11:17:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "People enjoy the sunset in Vlora", - "link": "https://www.reutersagency.com/en/coverage/people-enjoy-the-sunset-in-vlora/", - "pubDate": "Wed, 04 May 2022 19:23:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

People enjoy the sunset in Vlora

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

People enjoy the sunset in Vlora, Albania, May 4, 2022. REUTERS/Florion Goga

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nPeople enjoy the sunset in Vlora\n\n\t\t\t\n\n04 May 2022, 7:23 pm 8 minutes\nBy Florion Goga\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nPeople enjoy the sunset in Vlora, Albania, May 4, 2022. REUTERS/Florion Goga\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post People enjoy the sunset in Vlora appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/people-enjoy-the-sunset-in-vlora/#respond", - "content": "

The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290229", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-04T19:23:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "Liverpool fight back to reach Champions League final with win over Villarreal", - "link": "https://www.reutersagency.com/en/coverage/liverpool-fight-back-to-reach-champions-league-final-with-win-over-villarreal/", - "pubDate": "Wed, 04 May 2022 00:10:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Liverpool fight back to reach Champions League final with win over Villarreal

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Soccer Football – Champions League – Semi Final – Second Leg – Villarreal v Liverpool – Estadio de la Ceramica, Villarreal, Spain – May 3, 2022 Liverpool’s Naby Keita in action with Villarreal’s Pau Torres REUTERS/Pablo Morano

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

VILLARREAL, Spain (Reuters) –Liverpool\u00a0survived a first-half scare to reach the Champions League final with a 3-2 win at Villarreal on Tuesday, for a 5-2 aggregate victory, after the night had threatened to turn sour for Juergen Klopp’s side.

\n

The visitors fell 2-0 down with an insipid first-half performance before fighting back with three goals in a 12-minute spell after the break to advance to their third European Cup final in five seasons.

\n

The Premier League side had won 2-0 in England but looked in danger of coming unstuck on a rain-soaked pitch in Spain, as the hosts pegged them back with goals from Boulaye Dia and Francis Coquelin.

\n

Liverpool, however, came out transformed after halftime and goals from Fabinho, Luis Diaz and Sadio Mane sealed the deal, with Villarreal ending the match with 10 men following a late red card for Etienne Capoue.

\n

Klopp’s side will meet either Real Madrid or Manchester City, who contest the second leg of their semi-final on Wednesday, in the showpiece in Paris on May 28. City lead 4-3 from the first leg.

\n

Roared on by their faithful fanbase who were packed into their modest stadium, Villarreal opened the scoring after three minutes with a close-range strike from Dia that was greeted by a chant of “Yes we can!” from the home supporters.

\n

Villarreal had been lifeless in the first leg at Anfield, but looked a completely different team as they tore into\u00a0Liverpool\u00a0with the same aggressive game that had knocked out Juventus in the last 16 and beaten Bayern Munich in the quarter-finals.

\n

Their relentless pressure forced\u00a0Liverpool\u00a0into mistakes they do not usually make, with the visitors’ passing accuracy of 66% the lowest they have managed in the first half of a game in all competitions this season.

\n

Villarreal levelled the tie with a close-range header from Coquelin and looked on the verge of a miracle comeback.

\n

The hosts even had a penalty appeal waved away by referee Danny Makkelie in the 38th minute when\u00a0Liverpool\u00a0keeper Alisson Becker came out to smother the ball and then bundled into Giovani Lo Celso inside the area.

\n

DIAZ IMPACT

\n

Yet Klopp brought Diaz off the bench at the break and the in-form Colombian winger changed the dynamic of the game, finding space and taking advantage of a Villarreal side that seemed to have run out of gas.

\n

As the\u00a0Liverpool\u00a0pressure mounted, it felt like only a matter of time until they scored and the goal eventually came following a brilliant combination between Fabinho and Mohamed Salah on the right side.

\n

The Brazilian midfielder recovered a loose ball close to the Villarreal area, passed two defenders before playing a one-two with the Egyptian.

\n

Salah teed him up with a pass between three defenders that left him alone to score with a low, angled shot that went between the legs of Villarreal keeper Geronimo Rulli, who endured a difficult game.

\n

Liverpool\u00a0smelled blood and went for the jugular, led by Diaz who ghosted into the middle of the box to head Trent Alexander-Arnold’s cross easily past the goalkeeper in the 67th minute.

\n

Seven minutes later Rulli tried to clear a long pass to Mane outside the area and completely missed the ball, leaving the Senegalese forward all alone to finish into the empty net.

\n

Capoue, who had a enjoyed a great first half with two assists, was dismissed with five minutes remaining, receiving a second yellow card for a late challenge on Curtis Jones.

\n

“The early goal didn’t help us, it helped them massively, so we had to dig deep, we had to be very mature. And obviously second half, we played outstanding,”\u00a0Liverpool\u00a0centre back Virgil van Dijk said, adding that Klopp had given them clear instructions at halftime.

\n

“(We needed to) play football, play the\u00a0Liverpool\u00a0way, as we have been playing basically all season. Get on the ball, have a lot of movement on the ball but also behind the last line, they play a high line, so with the speed we have, we have to mix that up as well,” he said.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Sports
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLiverpool fight back to reach Champions League final with win over Villarreal\n\n\t\t\t\n\n04 May 2022, 12:10 am 11 minutes\nBy Fernando Kallas\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nSoccer Football \u2013 Champions League \u2013 Semi Final \u2013 Second Leg \u2013 Villarreal v Liverpool \u2013 Estadio de la Ceramica, Villarreal, Spain \u2013 May 3, 2022 Liverpool\u2019s Naby Keita in action with Villarreal\u2019s Pau Torres REUTERS/Pablo Morano\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nVILLARREAL, Spain (Reuters) \u2013Liverpool\u00a0survived a first-half scare to reach the Champions League final with a 3-2 win at Villarreal on Tuesday, for a 5-2 aggregate victory, after the night had threatened to turn sour for Juergen Klopp\u2019s side.\nThe visitors fell 2-0 down with an insipid first-half performance before fighting back with three goals in a 12-minute spell after the break to advance to their third European Cup final in five seasons.\nThe Premier League side had won 2-0 in England but looked in danger of coming unstuck on a rain-soaked pitch in Spain, as the hosts pegged them back with goals from Boulaye Dia and Francis Coquelin.\nLiverpool, however, came out transformed after halftime and goals from Fabinho, Luis Diaz and Sadio Mane sealed the deal, with Villarreal ending the match with 10 men following a late red card for Etienne Capoue.\nKlopp\u2019s side will meet either Real Madrid or Manchester City, who contest the second leg of their semi-final on Wednesday, in the showpiece in Paris on May 28. City lead 4-3 from the first leg.\nRoared on by their faithful fanbase who were packed into their modest stadium, Villarreal opened the scoring after three minutes with a close-range strike from Dia that was greeted by a chant of \u201cYes we can!\u201d from the home supporters.\nVillarreal had been lifeless in the first leg at Anfield, but looked a completely different team as they tore into\u00a0Liverpool\u00a0with the same aggressive game that had knocked out Juventus in the last 16 and beaten Bayern Munich in the quarter-finals.\nTheir relentless pressure forced\u00a0Liverpool\u00a0into mistakes they do not usually make, with the visitors\u2019 passing accuracy of 66% the lowest they have managed in the first half of a game in all competitions this season.\nVillarreal levelled the tie with a close-range header from Coquelin and looked on the verge of a miracle comeback.\nThe hosts even had a penalty appeal waved away by referee Danny Makkelie in the 38th minute when\u00a0Liverpool\u00a0keeper Alisson Becker came out to smother the ball and then bundled into Giovani Lo Celso inside the area.\nDIAZ IMPACT\nYet Klopp brought Diaz off the bench at the break and the in-form Colombian winger changed the dynamic of the game, finding space and taking advantage of a Villarreal side that seemed to have run out of gas.\nAs the\u00a0Liverpool\u00a0pressure mounted, it felt like only a matter of time until they scored and the goal eventually came following a brilliant combination between Fabinho and Mohamed Salah on the right side.\nThe Brazilian midfielder recovered a loose ball close to the Villarreal area, passed two defenders before playing a one-two with the Egyptian.\nSalah teed him up with a pass between three defenders that left him alone to score with a low, angled shot that went between the legs of Villarreal keeper Geronimo Rulli, who endured a difficult game.\nLiverpool\u00a0smelled blood and went for the jugular, led by Diaz who ghosted into the middle of the box to head Trent Alexander-Arnold\u2019s cross easily past the goalkeeper in the 67th minute.\nSeven minutes later Rulli tried to clear a long pass to Mane outside the area and completely missed the ball, leaving the Senegalese forward all alone to finish into the empty net.\nCapoue, who had a enjoyed a great first half with two assists, was dismissed with five minutes remaining, receiving a second yellow card for a late challenge on Curtis Jones.\n\u201cThe early goal didn\u2019t help us, it helped them massively, so we had to dig deep, we had to be very mature. And obviously second half, we played outstanding,\u201d\u00a0Liverpool\u00a0centre back Virgil van Dijk said, adding that Klopp had given them clear instructions at halftime.\n\u201c(We needed to) play football, play the\u00a0Liverpool\u00a0way, as we have been playing basically all season. Get on the ball, have a lot of movement on the ball but also behind the last line, they play a high line, so with the speed we have, we have to mix that up as well,\u201d he said.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Sports\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/liverpool-fight-back-to-reach-champions-league-final-with-win-over-villarreal/#respond", - "content": "

The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290002", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-04T00:10:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "Aftermath of flooding in Brazil\u2019s Amazonas state", - "link": "https://www.reutersagency.com/en/coverage/aftermath-of-flooding-in-brazils-amazonas-state/", - "pubDate": "Sat, 21 May 2022 19:06:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Aftermath of flooding in Brazil’s Amazonas state

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Jose Lucio de Freitas, a local farmer, collects bananas at his plantation damaged by flood waters, after several riverside villages were affected by flooding triggered by the rise of the river levels in Careiro da Varzea in the Amazonas state, Brazil May 20, 2022. Picture taken with a drone May 20, 2022. REUTERS/Bruno Kelly

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\t\t\t\n\n21 May 2022, 7:06 pm 8 minutes\nBy Bruno Kelly\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nJose Lucio de Freitas, a local farmer, collects bananas at his plantation damaged by flood waters, after several riverside villages were affected by flooding triggered by the rise of the river levels in Careiro da Varzea in the Amazonas state, Brazil May 20, 2022. Picture taken with a drone May 20, 2022. REUTERS/Bruno Kelly \n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Aftermath of flooding in Brazil\u2019s Amazonas state appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/aftermath-of-flooding-in-brazils-amazonas-state/#respond", - "content": "

The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Aftermath of flooding in Brazil\u2019s Amazonas state appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290590", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-21T19:06:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "People take the plunge with a shark dive in Florida", - "link": "https://www.reutersagency.com/en/coverage/people-take-the-plunge-with-a-shark-dive-in-florida/", - "pubDate": "Wed, 18 May 2022 01:00:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

People take the plunge with a shark dive in Florida

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

A shark swims past a diver during an outing with scuba company Emerald Charters off Jupiter Inlet, Florida, U.S., May 18, 2022. REUTERS/Sam Wolfe

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nPeople take the plunge with a shark dive in Florida\n\n\t\t\t\n\n18 May 2022, 1:00 am 8 minutes\nBy Sam Wolfe\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nA shark swims past a diver during an outing with scuba company Emerald Charters off Jupiter Inlet, Florida, U.S., May 18, 2022. REUTERS/Sam Wolfe \n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/people-take-the-plunge-with-a-shark-dive-in-florida/#respond", - "content": "

The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290324", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-18T01:00:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "The moon is seen during a lunar eclipse in Los Angeles", - "link": "https://www.reutersagency.com/en/coverage/the-moon-is-seen-during-a-lunar-eclipse-in-los-angeles/", - "pubDate": "Mon, 16 May 2022 01:06:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The moon is seen during a lunar eclipse in Los Angeles

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

The St. Andrew’s Ukrainian Orthodox Church is seen as the moon moves through the shadow of the earth during a “Blood Moon” lunar eclipse, in Los Angeles, California, U.S., May 15, 2022. REUTERS/David Swanson

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\t\t\t\n\n16 May 2022, 1:06 am 8 minutes\nBy David Swanson\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nThe St. Andrew\u2019s Ukrainian Orthodox Church is seen as the moon moves through the shadow of the earth during a \u201cBlood Moon\u201d lunar eclipse, in Los Angeles, California, U.S., May 15, 2022. REUTERS/David Swanson\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/the-moon-is-seen-during-a-lunar-eclipse-in-los-angeles/#respond", - "content": "

The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290588", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-16T01:06:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "Wildfire in California", - "link": "https://www.reutersagency.com/en/coverage/wildfire-in-california/", - "pubDate": "Thu, 12 May 2022 15:28:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Wildfire in California

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Smoke from a fast-moving, wind-driven wildfire rises above a residential area in Laguna Niguel, California, U.S., May 12, 2022. REUTERS/Mike Blake

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Wildfire in California appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nWildfire in California\n\n\t\t\t\n\n12 May 2022, 3:28 pm 8 minutes\nBy Mike Blake\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nSmoke from a fast-moving, wind-driven wildfire rises above a residential area in Laguna Niguel, California, U.S., May 12, 2022. REUTERS/Mike Blake\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Wildfire in California appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/wildfire-in-california/#respond", - "content": "

The post Wildfire in California appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Wildfire in California appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290565", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-12T15:28:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "A Swiss farmer works in his field with his tractor in Sullens", - "link": "https://www.reutersagency.com/en/coverage/a-swiss-farmer-works-in-his-field-with-his-tractor-in-sullens/", - "pubDate": "Tue, 10 May 2022 16:27:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

A Swiss farmer works in his field with his tractor in Sullens

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

A Swiss farmer works in his field with his tractor in Sullens, Switzerland, May 10, 2022. Picture taken with a drone. REUTERS/Denis Balibouse TPX IMAGES OF THE DAY

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nA Swiss farmer works in his field with his tractor in Sullens\n\n\t\t\t\n\n10 May 2022, 4:27 pm 8 minutes\nBy Denis Balibouse\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nA Swiss farmer works in his field with his tractor in Sullens, Switzerland, May 10, 2022. Picture taken with a drone. REUTERS/Denis Balibouse TPX IMAGES OF THE DAY\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/a-swiss-farmer-works-in-his-field-with-his-tractor-in-sullens/#respond", - "content": "

The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290289", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-10T16:27:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "Verstappen beats Leclerc to win first Miami Grand Prix", - "link": "https://www.reutersagency.com/en/coverage/verstappen-beats-leclerc-to-win-first-miami-grand-prix/", - "pubDate": "Mon, 09 May 2022 03:06:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Verstappen beats Leclerc to win first Miami Grand Prix

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Formula One F1 – Miami Grand Prix – Miami International Autodrome, Miami, Florida, U.S. – May 8, 2022 Red Bull’s Max Verstappen celebrates on the podium after winning the Miami Grand Prix with the trophy and Dan Marino REUTERS/Ricardo Arduengo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

MIAMI (Reuters) -Formula One world champion Max Verstappen won the inaugural Miami Grand Prix for Red Bull on Sunday, slashing Ferrari rival Charles Leclerc’s overall lead from 27 to 19 points after five races.

\n

Leclerc finished a fighting second, 3.786 seconds behind after starting on pole position, with Spanish team mate Carlos Sainz completing the podium at the Miami Dolphins’ Hard Rock Stadium.

\n

The victory was the Dutch driver’s third of the season, and second in a row, and he made it happen with a crucial overtake around the outside on Sainz at the start to seize second place before blasting past Leclerc on the ninth of the 57 laps.

\n

Verstappen, who also made sure of the bonus point for fastest lap, had looked to be cruising to victory until McLaren’s Lando Norris collided with AlphaTauri’s Pierre Gasly and crashed on lap 41, triggering the safety car.

\n

That allowed Leclerc to close the gap and get back into contention over the final 10 laps.

\n

“It was an incredible Grand Prix,” said Verstappen, who has won every race he has finished so far this season and was handed his winner’s trophy by Dolphins NFL quarterback great Dan Marino. “(It was) very physical but I think we kept it exciting until the end.”

\n

The race drew a cast of A-list celebrities, sporting greats and a sellout crowd as Formula One basked in a wave of popularity fuelled by the Netflix docu-series “Drive to Survive”.

\n

“It\u2019s been insane. I\u2019ve never known such interest, such passion and a huge, huge event,” said Red Bull boss Christian Horner. “I think it\u2019s been great for the American public to tune into Formula One. … it\u2019s been a great event and an exciting race in the end as well.”

\n

MIAMI HEAT

\n

What was a slow burner in the energy-sapping humidity provided some fireworks at the end with the safety car bunching up the field, putting Leclerc right on Verstappen’s tail with five laps remaining.

\n

“On the hard (tyres) we were very competitive and towards the end I thought I could get Max at one point but today they had the advantage in terms of pace,” Leclerc said.

\n

Verstappen’s Mexican team mate, Sergio Perez, finished fourth, with Ferrari retaining the lead in the constructors’ standings on 157 points to Red Bull’s 151.

\n

Perez, who lost speed with a sensor issue that the team fixed, tried to pass Sainz on lap 52 but overcooked his move, with the Spaniard forcing his way back in front and staying there despite the Mexican’s fresher tyres.

\n

George Russell continued his record of finishing every race so far in the top five, with Mercedes team mate and seven-times world champion Lewis Hamilton sixth after a brief battle between the two.

\n

Russell, starting 12th but helped by pitting during the virtual safety car phase and having the advantage of fresher tyres, passed Hamilton twice on track.

\n

He handed back position after the first overtake because he had benefited from going wide but re-passed him immediately afterwards.

\n

Valtteri Bottas was seventh for Alfa Romeo with Alpine’s Esteban Ocon eighth in a stirring fight back after being unable to take part in Saturday’s qualifying due to a practice crash that forced the team to change his car’s chassis.

\n

Double world champion team mate Fernando Alonso was demoted to 11th place after receiving a five-second penalty for causing a collision with Gasly.

\n

Alex Albon moved up to ninth and Aston Martin’s Stroll 10th as a result of Alonso’s penalty.

\n

There was heartbreak for Mick Schumacher, who had been having his best race to date and looked like taking his first point in Formula One until he collided with Aston Martin’s Sebastian Vettel.

\n

Vettel and team mate Stroll had both started from the pit lane after a fuel temperature problem stopped them from going to the grid.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Sports
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nVerstappen beats Leclerc to win first Miami Grand Prix\n\n\t\t\t\n\n09 May 2022, 3:06 am 11 minutes\nBy Simon Evans\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nFormula One F1 \u2013 Miami Grand Prix \u2013 Miami International Autodrome, Miami, Florida, U.S. \u2013 May 8, 2022 Red Bull\u2019s Max Verstappen celebrates on the podium after winning the Miami Grand Prix with the trophy and Dan Marino REUTERS/Ricardo Arduengo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nMIAMI (Reuters) -Formula One world champion Max Verstappen won the inaugural Miami Grand Prix for Red Bull on Sunday, slashing Ferrari rival Charles Leclerc\u2019s overall lead from 27 to 19 points after five races.\nLeclerc finished a fighting second, 3.786 seconds behind after starting on pole position, with Spanish team mate Carlos Sainz completing the podium at the Miami Dolphins\u2019 Hard Rock Stadium.\nThe victory was the Dutch driver\u2019s third of the season, and second in a row, and he made it happen with a crucial overtake around the outside on Sainz at the start to seize second place before blasting past Leclerc on the ninth of the 57 laps.\nVerstappen, who also made sure of the bonus point for fastest lap, had looked to be cruising to victory until McLaren\u2019s Lando Norris collided with AlphaTauri\u2019s Pierre Gasly and crashed on lap 41, triggering the safety car.\nThat allowed Leclerc to close the gap and get back into contention over the final 10 laps.\n\u201cIt was an incredible Grand Prix,\u201d said Verstappen, who has won every race he has finished so far this season and was handed his winner\u2019s trophy by Dolphins NFL quarterback great Dan Marino. \u201c(It was) very physical but I think we kept it exciting until the end.\u201d\nThe race drew a cast of A-list celebrities, sporting greats and a sellout crowd as Formula One basked in a wave of popularity fuelled by the Netflix docu-series \u201cDrive to Survive\u201d.\n\u201cIt\u2019s been insane. I\u2019ve never known such interest, such passion and a huge, huge event,\u201d said Red Bull boss Christian Horner. \u201cI think it\u2019s been great for the American public to tune into Formula One. \u2026 it\u2019s been a great event and an exciting race in the end as well.\u201d\nMIAMI HEAT\nWhat was a slow burner in the energy-sapping humidity provided some fireworks at the end with the safety car bunching up the field, putting Leclerc right on Verstappen\u2019s tail with five laps remaining.\n\u201cOn the hard (tyres) we were very competitive and towards the end I thought I could get Max at one point but today they had the advantage in terms of pace,\u201d Leclerc said.\nVerstappen\u2019s Mexican team mate, Sergio Perez, finished fourth, with Ferrari retaining the lead in the constructors\u2019 standings on 157 points to Red Bull\u2019s 151.\nPerez, who lost speed with a sensor issue that the team fixed, tried to pass Sainz on lap 52 but overcooked his move, with the Spaniard forcing his way back in front and staying there despite the Mexican\u2019s fresher tyres.\nGeorge Russell continued his record of finishing every race so far in the top five, with Mercedes team mate and seven-times world champion Lewis Hamilton sixth after a brief battle between the two.\nRussell, starting 12th but helped by pitting during the virtual safety car phase and having the advantage of fresher tyres, passed Hamilton twice on track.\nHe handed back position after the first overtake because he had benefited from going wide but re-passed him immediately afterwards.\nValtteri Bottas was seventh for Alfa Romeo with Alpine\u2019s Esteban Ocon eighth in a stirring fight back after being unable to take part in Saturday\u2019s qualifying due to a practice crash that forced the team to change his car\u2019s chassis.\nDouble world champion team mate Fernando Alonso was demoted to 11th place after receiving a five-second penalty for causing a collision with Gasly.\nAlex Albon moved up to ninth and Aston Martin\u2019s Stroll 10th as a result of Alonso\u2019s penalty.\nThere was heartbreak for Mick Schumacher, who had been having his best race to date and looked like taking his first point in Formula One until he collided with Aston Martin\u2019s Sebastian Vettel.\nVettel and team mate Stroll had both started from the pit lane after a fuel temperature problem stopped them from going to the grid.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Sports\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/verstappen-beats-leclerc-to-win-first-miami-grand-prix/#respond", - "content": "

The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290241", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-09T03:06:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "Judge releases Oath Keepers member pending trial for U.S. Capitol attack", - "link": "https://www.reutersagency.com/en/coverage/judge-releases-oath-keepers-member-pending-trial-for-u-s-capitol-attack/", - "pubDate": "Thu, 05 May 2022 12:00:44 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Judge releases Oath Keepers member pending trial for U.S. Capitol attack

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

An explosion caused by a police munition is seen while supporters of U.S. President Donald Trump riot in front of the U.S. Capitol Building in Washington, U.S., January 6, 2021. REUTERS/Leah Millis/File Photo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

(Reuters) – A federal\u00a0judge\u00a0on Wednesday agreed to release\u00a0Oath\u00a0Keepers\u00a0member\u00a0Edward Vallejo from custody while he awaits\u00a0trial\u00a0on charges stemming from last year’s\u00a0attack\u00a0on the\u00a0U.S.\u00a0Capitol.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Politics
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nJudge releases Oath Keepers member pending trial for U.S. Capitol attack\n\n\t\t\t\n\n05 May 2022, 12:00 pm 8 minutes\nBy Dan Whitcomb\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nAn explosion caused by a police munition is seen while supporters of U.S. President Donald Trump riot in front of the U.S. Capitol Building in Washington, U.S., January 6, 2021. REUTERS/Leah Millis/File Photo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\n(Reuters) \u2013 A federal\u00a0judge\u00a0on Wednesday agreed to release\u00a0Oath\u00a0Keepers\u00a0member\u00a0Edward Vallejo from custody while he awaits\u00a0trial\u00a0on charges stemming from last year\u2019s\u00a0attack\u00a0on the\u00a0U.S.\u00a0Capitol.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Politics\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/judge-releases-oath-keepers-member-pending-trial-for-u-s-capitol-attack/#respond", - "content": "

The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290194", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-05T12:00:44.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020", - "link": "https://www.reutersagency.com/en/coverage/in-race-for-georgias-election-chief-its-all-about-trump-and-2020/", - "pubDate": "Thu, 05 May 2022 11:17:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

In race for Georgia’s election chief, it’s all about Trump and 2020

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Congressman Jody Hice (R-GA), who is currently running for Georgia Secretary of State, attends a rally in Perry, Georgia, U.S. September 25, 2021. REUTERS/Dustin Chambers/File Photo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

(Reuters) – Republican Jody Hice, the Donald\u00a0Trump-backed U.S. congressman seeking to become the top state\u00a0election\u00a0official in Georgia, wasted little time at a debate this week summarizing the cause driving his campaign.

\n

“The ‘big lie’ in\u00a0all\u00a0of this is that there were no problems with this past\u00a0election,” he said in the debate’s first few seconds on Monday. “This past\u00a0election\u00a0was an absolute disaster under the leadership of Brad Raffensperger.”

\n

The incumbent Raffensperger has been one of\u00a0Trump’s most frequent targets ever since he refused, emphatically\u00a0and\u00a0publicly, to capitulate to the demands of the former president, his fellow Republican, to “find” enough votes to overturn the results in\u00a0Georgia’s\u00a02020\u00a0presidential vote.

\n

Hice has centered his candidacy for the secretary of state’s office on amplifying\u00a0Trump’s baseless claims that he actually won the Georgia presidential vote,\u00a0and\u00a0by extension the White House, but lost due to widespread voter fraud.

\n

The May 24 primary\u00a0election\u00a0will be a test of whether\u00a0Trump’s persistent assertions that the\u00a0election\u00a0was rigged can still animate Republican voters a year\u00a0and\u00a0a half after his loss to Democrat Joe Biden.

\n

Georgia’s\u00a0Republican primary contest is one of nearly 20 across the country this year in which\u00a0Trump-supported candidates who have echoed his false assertions are running to become their states’\u00a0chief\u00a0election\u00a0overseers, according to a tally by States United Action, a nonpartisan advocacy group for fair\u00a0elections.

\n

That trend alarms voting rights groups, who fear that politicians asserting unsubstantiated claims of fraud will have the power to alter\u00a0election\u00a0results in 2024, when\u00a0Trump\u00a0has said he may run again for president.

\n

A member of the conservative Freedom Caucus in the U.S. House, Hice was at a White House meeting in December\u00a02020\u00a0to discuss ways of blocking the certification of the presidential\u00a0election\u00a0in Congress on Jan. 6, 2021, according to documents released by the House committee investigating the attack that day on the U.S. Capitol. He voted against certifying Biden’s win hours after the riot.

\n

The congressman has criticized Raffensperger for measures he took to accommodate voters during the coronavirus pandemic, including mailing absentee ballot applications to\u00a0all\u00a0registered voters\u00a0and\u00a0installing ballot drop boxes.

\n

Multiple audits\u00a0and\u00a0recounts have confirmed that Biden won Georgia. Democratic candidates also swept two U.S. Senate seats in the state’s January 2021 runoffs, giving the party control of both chambers of Congress.

\n

“Jody Hice has been running around Georgia for the last 18 months lying\u00a0about\u00a0our\u00a0election\u00a0process,” Raffensperger said at Monday’s debate in Atlanta.

\n

In a January 2021 phone call,\u00a0Trump\u00a0pushed Raffensperger to “find” the votes needed to flip the margin. The call, which was recorded\u00a0and\u00a0broadcast widely on cable news channels, led to a criminal investigation by state prosecutors into whether\u00a0Trump’s request was illegal\u00a0and\u00a0made Raffensperger a national figure.

\n

A special grand\u00a0jury to help oversee the investigation was selected on Monday.

\n

TIGHT\u00a0RACE

\n

Trump\u00a0has endorsed candidates in other Georgia\u00a0races, most notably former U.S. Senator David Perdue, who is challenging Republican Governor Brian Kemp. Perdue also has focused much of his campaign on re-litigating the\u00a02020\u00a0election, faulting Kemp for not doing more to reverse the results.

\n

Kemp has a substantial lead over Perdue, but Hice\u00a0and\u00a0Raffensperger appear locked in a tight\u00a0race, according to an April opinion poll commissioned by the Atlanta Journal-Constitution.

\n

Hice raised $1.6 million through January, according to campaign finance reports, while Raffensperger took in less than $600,000. The campaigns are due to file updated spending reports this week.

\n

Jay Williams, a Republican strategist in Georgia, said he sees no path for Raffensperger to prevail given his public feud with\u00a0Trump.

\n

“I’ve felt for a long time he’s toast,\u00a0and\u00a0I still think he is,” Williams said.

\n

Raffensperger, mindful that many Republican voters have been swayed by\u00a0Trump’s repeated claims of fraud, has made\u00a0election\u00a0integrity his top priority. He has called for an investigation into whether hundreds of non-citizens tried to register to vote\u00a0and\u00a0endorsed Republican-backed legislation to give law enforcement greater authority to investigate voter fraud.

\n

“He has been very aggressive, reinforcing the idea that he is a meticulous follower of the law,” said Chuck Clay, a former state Republican chair\u00a0and\u00a0former state senator.

\n

But Raffensperger remains unpopular among conservatives like Dianne Putnam, the Whitfield County Republican chair.

\n

“A true Republican wouldn’t have sold the Republican Party out\u00a0and\u00a0allowed our president to be cheated out of an\u00a0election,” she said.

\n

Two other Republican candidates, former Alpharetta Mayor David Belle Isle\u00a0and\u00a0T.J. Hudson, a former probate\u00a0and\u00a0magistrate judge, also are challenging Raffensperger from the right. If no candidate receives more than 50% of the vote, the two leading vote-getters would head to a June runoff.

\n

State Representative Bee Nguyen is the leading candidate on the Democratic side.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Politics
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nIn race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020\n\n\t\t\t\n\n05 May 2022, 11:17 am 12 minutes\nBy Joseph Ax\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nCongressman Jody Hice (R-GA), who is currently running for Georgia Secretary of State, attends a rally in Perry, Georgia, U.S. September 25, 2021. REUTERS/Dustin Chambers/File Photo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\n(Reuters) \u2013 Republican Jody Hice, the Donald\u00a0Trump-backed U.S. congressman seeking to become the top state\u00a0election\u00a0official in Georgia, wasted little time at a debate this week summarizing the cause driving his campaign.\n\u201cThe \u2018big lie\u2019 in\u00a0all\u00a0of this is that there were no problems with this past\u00a0election,\u201d he said in the debate\u2019s first few seconds on Monday. \u201cThis past\u00a0election\u00a0was an absolute disaster under the leadership of Brad Raffensperger.\u201d\nThe incumbent Raffensperger has been one of\u00a0Trump\u2019s most frequent targets ever since he refused, emphatically\u00a0and\u00a0publicly, to capitulate to the demands of the former president, his fellow Republican, to \u201cfind\u201d enough votes to overturn the results in\u00a0Georgia\u2019s\u00a02020\u00a0presidential vote.\nHice has centered his candidacy for the secretary of state\u2019s office on amplifying\u00a0Trump\u2019s baseless claims that he actually won the Georgia presidential vote,\u00a0and\u00a0by extension the White House, but lost due to widespread voter fraud.\nThe May 24 primary\u00a0election\u00a0will be a test of whether\u00a0Trump\u2019s persistent assertions that the\u00a0election\u00a0was rigged can still animate Republican voters a year\u00a0and\u00a0a half after his loss to Democrat Joe Biden.\nGeorgia\u2019s\u00a0Republican primary contest is one of nearly 20 across the country this year in which\u00a0Trump-supported candidates who have echoed his false assertions are running to become their states\u2019\u00a0chief\u00a0election\u00a0overseers, according to a tally by States United Action, a nonpartisan advocacy group for fair\u00a0elections.\nThat trend alarms voting rights groups, who fear that politicians asserting unsubstantiated claims of fraud will have the power to alter\u00a0election\u00a0results in 2024, when\u00a0Trump\u00a0has said he may run again for president.\nA member of the conservative Freedom Caucus in the U.S. House, Hice was at a White House meeting in December\u00a02020\u00a0to discuss ways of blocking the certification of the presidential\u00a0election\u00a0in Congress on Jan. 6, 2021, according to documents released by the House committee investigating the attack that day on the U.S. Capitol. He voted against certifying Biden\u2019s win hours after the riot.\nThe congressman has criticized Raffensperger for measures he took to accommodate voters during the coronavirus pandemic, including mailing absentee ballot applications to\u00a0all\u00a0registered voters\u00a0and\u00a0installing ballot drop boxes.\nMultiple audits\u00a0and\u00a0recounts have confirmed that Biden won Georgia. Democratic candidates also swept two U.S. Senate seats in the state\u2019s January 2021 runoffs, giving the party control of both chambers of Congress.\n\u201cJody Hice has been running around Georgia for the last 18 months lying\u00a0about\u00a0our\u00a0election\u00a0process,\u201d Raffensperger said at Monday\u2019s debate in Atlanta.\nIn a January 2021 phone call,\u00a0Trump\u00a0pushed Raffensperger to \u201cfind\u201d the votes needed to flip the margin. The call, which was recorded\u00a0and\u00a0broadcast widely on cable news channels, led to a criminal investigation by state prosecutors into whether\u00a0Trump\u2019s request was illegal\u00a0and\u00a0made Raffensperger a national figure.\nA special grand\u00a0jury to help oversee the investigation was selected on Monday.\nTIGHT\u00a0RACE\nTrump\u00a0has endorsed candidates in other Georgia\u00a0races, most notably former U.S. Senator David Perdue, who is challenging Republican Governor Brian Kemp. Perdue also has focused much of his campaign on re-litigating the\u00a02020\u00a0election, faulting Kemp for not doing more to reverse the results.\nKemp has a substantial lead over Perdue, but Hice\u00a0and\u00a0Raffensperger appear locked in a tight\u00a0race, according to an April opinion poll commissioned by the Atlanta Journal-Constitution.\nHice raised $1.6 million through January, according to campaign finance reports, while Raffensperger took in less than $600,000. The campaigns are due to file updated spending reports this week.\nJay Williams, a Republican strategist in Georgia, said he sees no path for Raffensperger to prevail given his public feud with\u00a0Trump.\n\u201cI\u2019ve felt for a long time he\u2019s toast,\u00a0and\u00a0I still think he is,\u201d Williams said.\nRaffensperger, mindful that many Republican voters have been swayed by\u00a0Trump\u2019s repeated claims of fraud, has made\u00a0election\u00a0integrity his top priority. He has called for an investigation into whether hundreds of non-citizens tried to register to vote\u00a0and\u00a0endorsed Republican-backed legislation to give law enforcement greater authority to investigate voter fraud.\n\u201cHe has been very aggressive, reinforcing the idea that he is a meticulous follower of the law,\u201d said Chuck Clay, a former state Republican chair\u00a0and\u00a0former state senator.\nBut Raffensperger remains unpopular among conservatives like Dianne Putnam, the Whitfield County Republican chair.\n\u201cA true Republican wouldn\u2019t have sold the Republican Party out\u00a0and\u00a0allowed our president to be cheated out of an\u00a0election,\u201d she said.\nTwo other Republican candidates, former Alpharetta Mayor David Belle Isle\u00a0and\u00a0T.J. Hudson, a former probate\u00a0and\u00a0magistrate judge, also are challenging Raffensperger from the right. If no candidate receives more than 50% of the vote, the two leading vote-getters would head to a June runoff.\nState Representative Bee Nguyen is the leading candidate on the Democratic side.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Politics\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020 appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/in-race-for-georgias-election-chief-its-all-about-trump-and-2020/#respond", - "content": "

The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020 appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290159", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-05T11:17:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "People enjoy the sunset in Vlora", - "link": "https://www.reutersagency.com/en/coverage/people-enjoy-the-sunset-in-vlora/", - "pubDate": "Wed, 04 May 2022 19:23:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

People enjoy the sunset in Vlora

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

People enjoy the sunset in Vlora, Albania, May 4, 2022. REUTERS/Florion Goga

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nPeople enjoy the sunset in Vlora\n\n\t\t\t\n\n04 May 2022, 7:23 pm 8 minutes\nBy Florion Goga\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nPeople enjoy the sunset in Vlora, Albania, May 4, 2022. REUTERS/Florion Goga\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post People enjoy the sunset in Vlora appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/people-enjoy-the-sunset-in-vlora/#respond", - "content": "

The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290229", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-04T19:23:00.000Z" - }, - { - "creator": "Oli Baxter-Hughes", - "title": "Liverpool fight back to reach Champions League final with win over Villarreal", - "link": "https://www.reutersagency.com/en/coverage/liverpool-fight-back-to-reach-champions-league-final-with-win-over-villarreal/", - "pubDate": "Wed, 04 May 2022 00:10:00 +0000", - "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Liverpool fight back to reach Champions League final with win over Villarreal

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Soccer Football – Champions League – Semi Final – Second Leg – Villarreal v Liverpool – Estadio de la Ceramica, Villarreal, Spain – May 3, 2022 Liverpool’s Naby Keita in action with Villarreal’s Pau Torres REUTERS/Pablo Morano

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

VILLARREAL, Spain (Reuters) –Liverpool\u00a0survived a first-half scare to reach the Champions League final with a 3-2 win at Villarreal on Tuesday, for a 5-2 aggregate victory, after the night had threatened to turn sour for Juergen Klopp’s side.

\n

The visitors fell 2-0 down with an insipid first-half performance before fighting back with three goals in a 12-minute spell after the break to advance to their third European Cup final in five seasons.

\n

The Premier League side had won 2-0 in England but looked in danger of coming unstuck on a rain-soaked pitch in Spain, as the hosts pegged them back with goals from Boulaye Dia and Francis Coquelin.

\n

Liverpool, however, came out transformed after halftime and goals from Fabinho, Luis Diaz and Sadio Mane sealed the deal, with Villarreal ending the match with 10 men following a late red card for Etienne Capoue.

\n

Klopp’s side will meet either Real Madrid or Manchester City, who contest the second leg of their semi-final on Wednesday, in the showpiece in Paris on May 28. City lead 4-3 from the first leg.

\n

Roared on by their faithful fanbase who were packed into their modest stadium, Villarreal opened the scoring after three minutes with a close-range strike from Dia that was greeted by a chant of “Yes we can!” from the home supporters.

\n

Villarreal had been lifeless in the first leg at Anfield, but looked a completely different team as they tore into\u00a0Liverpool\u00a0with the same aggressive game that had knocked out Juventus in the last 16 and beaten Bayern Munich in the quarter-finals.

\n

Their relentless pressure forced\u00a0Liverpool\u00a0into mistakes they do not usually make, with the visitors’ passing accuracy of 66% the lowest they have managed in the first half of a game in all competitions this season.

\n

Villarreal levelled the tie with a close-range header from Coquelin and looked on the verge of a miracle comeback.

\n

The hosts even had a penalty appeal waved away by referee Danny Makkelie in the 38th minute when\u00a0Liverpool\u00a0keeper Alisson Becker came out to smother the ball and then bundled into Giovani Lo Celso inside the area.

\n

DIAZ IMPACT

\n

Yet Klopp brought Diaz off the bench at the break and the in-form Colombian winger changed the dynamic of the game, finding space and taking advantage of a Villarreal side that seemed to have run out of gas.

\n

As the\u00a0Liverpool\u00a0pressure mounted, it felt like only a matter of time until they scored and the goal eventually came following a brilliant combination between Fabinho and Mohamed Salah on the right side.

\n

The Brazilian midfielder recovered a loose ball close to the Villarreal area, passed two defenders before playing a one-two with the Egyptian.

\n

Salah teed him up with a pass between three defenders that left him alone to score with a low, angled shot that went between the legs of Villarreal keeper Geronimo Rulli, who endured a difficult game.

\n

Liverpool\u00a0smelled blood and went for the jugular, led by Diaz who ghosted into the middle of the box to head Trent Alexander-Arnold’s cross easily past the goalkeeper in the 67th minute.

\n

Seven minutes later Rulli tried to clear a long pass to Mane outside the area and completely missed the ball, leaving the Senegalese forward all alone to finish into the empty net.

\n

Capoue, who had a enjoyed a great first half with two assists, was dismissed with five minutes remaining, receiving a second yellow card for a late challenge on Curtis Jones.

\n

“The early goal didn’t help us, it helped them massively, so we had to dig deep, we had to be very mature. And obviously second half, we played outstanding,”\u00a0Liverpool\u00a0centre back Virgil van Dijk said, adding that Klopp had given them clear instructions at halftime.

\n

“(We needed to) play football, play the\u00a0Liverpool\u00a0way, as we have been playing basically all season. Get on the ball, have a lot of movement on the ball but also behind the last line, they play a high line, so with the speed we have, we have to mix that up as well,” he said.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Sports
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.

\n", - "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLiverpool fight back to reach Champions League final with win over Villarreal\n\n\t\t\t\n\n04 May 2022, 12:10 am 11 minutes\nBy Fernando Kallas\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nSoccer Football \u2013 Champions League \u2013 Semi Final \u2013 Second Leg \u2013 Villarreal v Liverpool \u2013 Estadio de la Ceramica, Villarreal, Spain \u2013 May 3, 2022 Liverpool\u2019s Naby Keita in action with Villarreal\u2019s Pau Torres REUTERS/Pablo Morano\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nVILLARREAL, Spain (Reuters) \u2013Liverpool\u00a0survived a first-half scare to reach the Champions League final with a 3-2 win at Villarreal on Tuesday, for a 5-2 aggregate victory, after the night had threatened to turn sour for Juergen Klopp\u2019s side.\nThe visitors fell 2-0 down with an insipid first-half performance before fighting back with three goals in a 12-minute spell after the break to advance to their third European Cup final in five seasons.\nThe Premier League side had won 2-0 in England but looked in danger of coming unstuck on a rain-soaked pitch in Spain, as the hosts pegged them back with goals from Boulaye Dia and Francis Coquelin.\nLiverpool, however, came out transformed after halftime and goals from Fabinho, Luis Diaz and Sadio Mane sealed the deal, with Villarreal ending the match with 10 men following a late red card for Etienne Capoue.\nKlopp\u2019s side will meet either Real Madrid or Manchester City, who contest the second leg of their semi-final on Wednesday, in the showpiece in Paris on May 28. City lead 4-3 from the first leg.\nRoared on by their faithful fanbase who were packed into their modest stadium, Villarreal opened the scoring after three minutes with a close-range strike from Dia that was greeted by a chant of \u201cYes we can!\u201d from the home supporters.\nVillarreal had been lifeless in the first leg at Anfield, but looked a completely different team as they tore into\u00a0Liverpool\u00a0with the same aggressive game that had knocked out Juventus in the last 16 and beaten Bayern Munich in the quarter-finals.\nTheir relentless pressure forced\u00a0Liverpool\u00a0into mistakes they do not usually make, with the visitors\u2019 passing accuracy of 66% the lowest they have managed in the first half of a game in all competitions this season.\nVillarreal levelled the tie with a close-range header from Coquelin and looked on the verge of a miracle comeback.\nThe hosts even had a penalty appeal waved away by referee Danny Makkelie in the 38th minute when\u00a0Liverpool\u00a0keeper Alisson Becker came out to smother the ball and then bundled into Giovani Lo Celso inside the area.\nDIAZ IMPACT\nYet Klopp brought Diaz off the bench at the break and the in-form Colombian winger changed the dynamic of the game, finding space and taking advantage of a Villarreal side that seemed to have run out of gas.\nAs the\u00a0Liverpool\u00a0pressure mounted, it felt like only a matter of time until they scored and the goal eventually came following a brilliant combination between Fabinho and Mohamed Salah on the right side.\nThe Brazilian midfielder recovered a loose ball close to the Villarreal area, passed two defenders before playing a one-two with the Egyptian.\nSalah teed him up with a pass between three defenders that left him alone to score with a low, angled shot that went between the legs of Villarreal keeper Geronimo Rulli, who endured a difficult game.\nLiverpool\u00a0smelled blood and went for the jugular, led by Diaz who ghosted into the middle of the box to head Trent Alexander-Arnold\u2019s cross easily past the goalkeeper in the 67th minute.\nSeven minutes later Rulli tried to clear a long pass to Mane outside the area and completely missed the ball, leaving the Senegalese forward all alone to finish into the empty net.\nCapoue, who had a enjoyed a great first half with two assists, was dismissed with five minutes remaining, receiving a second yellow card for a late challenge on Curtis Jones.\n\u201cThe early goal didn\u2019t help us, it helped them massively, so we had to dig deep, we had to be very mature. And obviously second half, we played outstanding,\u201d\u00a0Liverpool\u00a0centre back Virgil van Dijk said, adding that Klopp had given them clear instructions at halftime.\n\u201c(We needed to) play football, play the\u00a0Liverpool\u00a0way, as we have been playing basically all season. Get on the ball, have a lot of movement on the ball but also behind the last line, they play a high line, so with the speed we have, we have to mix that up as well,\u201d he said.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Sports\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.", - "dc:creator": "Oli Baxter-Hughes", - "comments": "https://www.reutersagency.com/en/coverage/liverpool-fight-back-to-reach-champions-league-final-with-win-over-villarreal/#respond", - "content": "

The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.

\n", - "contentSnippet": "The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.", - "guid": "https://www.reutersagency.com/?p=290002", - "categories": [ - "Coverage", - "Reuters Connect" - ], - "isoDate": "2022-05-04T00:10:00.000Z" - } -] \ No newline at end of file + { + "creator": "Oli Baxter-Hughes", + "title": "Aftermath of flooding in Brazil\u2019s Amazonas state", + "link": "https://www.reutersagency.com/en/coverage/aftermath-of-flooding-in-brazils-amazonas-state/", + "pubDate": "Sat, 21 May 2022 19:06:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Aftermath of flooding in Brazil’s Amazonas state

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Jose Lucio de Freitas, a local farmer, collects bananas at his plantation damaged by flood waters, after several riverside villages were affected by flooding triggered by the rise of the river levels in Careiro da Varzea in the Amazonas state, Brazil May 20, 2022. Picture taken with a drone May 20, 2022. REUTERS/Bruno Kelly

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\t\t\t\n\n21 May 2022, 7:06 pm 8 minutes\nBy Bruno Kelly\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nJose Lucio de Freitas, a local farmer, collects bananas at his plantation damaged by flood waters, after several riverside villages were affected by flooding triggered by the rise of the river levels in Careiro da Varzea in the Amazonas state, Brazil May 20, 2022. Picture taken with a drone May 20, 2022. REUTERS/Bruno Kelly \n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Aftermath of flooding in Brazil\u2019s Amazonas state appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/aftermath-of-flooding-in-brazils-amazonas-state/#respond", + "content": "

The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Aftermath of flooding in Brazil\u2019s Amazonas state appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290590", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-21T19:06:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "People take the plunge with a shark dive in Florida", + "link": "https://www.reutersagency.com/en/coverage/people-take-the-plunge-with-a-shark-dive-in-florida/", + "pubDate": "Wed, 18 May 2022 01:00:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

People take the plunge with a shark dive in Florida

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

A shark swims past a diver during an outing with scuba company Emerald Charters off Jupiter Inlet, Florida, U.S., May 18, 2022. REUTERS/Sam Wolfe

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nPeople take the plunge with a shark dive in Florida\n\n\t\t\t\n\n18 May 2022, 1:00 am 8 minutes\nBy Sam Wolfe\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nA shark swims past a diver during an outing with scuba company Emerald Charters off Jupiter Inlet, Florida, U.S., May 18, 2022. REUTERS/Sam Wolfe \n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/people-take-the-plunge-with-a-shark-dive-in-florida/#respond", + "content": "

The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290324", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-18T01:00:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "The moon is seen during a lunar eclipse in Los Angeles", + "link": "https://www.reutersagency.com/en/coverage/the-moon-is-seen-during-a-lunar-eclipse-in-los-angeles/", + "pubDate": "Mon, 16 May 2022 01:06:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The moon is seen during a lunar eclipse in Los Angeles

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

The St. Andrew’s Ukrainian Orthodox Church is seen as the moon moves through the shadow of the earth during a “Blood Moon” lunar eclipse, in Los Angeles, California, U.S., May 15, 2022. REUTERS/David Swanson

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\t\t\t\n\n16 May 2022, 1:06 am 8 minutes\nBy David Swanson\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nThe St. Andrew\u2019s Ukrainian Orthodox Church is seen as the moon moves through the shadow of the earth during a \u201cBlood Moon\u201d lunar eclipse, in Los Angeles, California, U.S., May 15, 2022. REUTERS/David Swanson\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/the-moon-is-seen-during-a-lunar-eclipse-in-los-angeles/#respond", + "content": "

The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290588", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-16T01:06:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "Wildfire in California", + "link": "https://www.reutersagency.com/en/coverage/wildfire-in-california/", + "pubDate": "Thu, 12 May 2022 15:28:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Wildfire in California

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Smoke from a fast-moving, wind-driven wildfire rises above a residential area in Laguna Niguel, California, U.S., May 12, 2022. REUTERS/Mike Blake

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Wildfire in California appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nWildfire in California\n\n\t\t\t\n\n12 May 2022, 3:28 pm 8 minutes\nBy Mike Blake\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nSmoke from a fast-moving, wind-driven wildfire rises above a residential area in Laguna Niguel, California, U.S., May 12, 2022. REUTERS/Mike Blake\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Wildfire in California appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/wildfire-in-california/#respond", + "content": "

The post Wildfire in California appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Wildfire in California appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290565", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-12T15:28:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "A Swiss farmer works in his field with his tractor in Sullens", + "link": "https://www.reutersagency.com/en/coverage/a-swiss-farmer-works-in-his-field-with-his-tractor-in-sullens/", + "pubDate": "Tue, 10 May 2022 16:27:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

A Swiss farmer works in his field with his tractor in Sullens

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

A Swiss farmer works in his field with his tractor in Sullens, Switzerland, May 10, 2022. Picture taken with a drone. REUTERS/Denis Balibouse TPX IMAGES OF THE DAY

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nA Swiss farmer works in his field with his tractor in Sullens\n\n\t\t\t\n\n10 May 2022, 4:27 pm 8 minutes\nBy Denis Balibouse\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nA Swiss farmer works in his field with his tractor in Sullens, Switzerland, May 10, 2022. Picture taken with a drone. REUTERS/Denis Balibouse TPX IMAGES OF THE DAY\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/a-swiss-farmer-works-in-his-field-with-his-tractor-in-sullens/#respond", + "content": "

The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290289", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-10T16:27:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "Verstappen beats Leclerc to win first Miami Grand Prix", + "link": "https://www.reutersagency.com/en/coverage/verstappen-beats-leclerc-to-win-first-miami-grand-prix/", + "pubDate": "Mon, 09 May 2022 03:06:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Verstappen beats Leclerc to win first Miami Grand Prix

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Formula One F1 – Miami Grand Prix – Miami International Autodrome, Miami, Florida, U.S. – May 8, 2022 Red Bull’s Max Verstappen celebrates on the podium after winning the Miami Grand Prix with the trophy and Dan Marino REUTERS/Ricardo Arduengo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

MIAMI (Reuters) -Formula One world champion Max Verstappen won the inaugural Miami Grand Prix for Red Bull on Sunday, slashing Ferrari rival Charles Leclerc’s overall lead from 27 to 19 points after five races.

\n

Leclerc finished a fighting second, 3.786 seconds behind after starting on pole position, with Spanish team mate Carlos Sainz completing the podium at the Miami Dolphins’ Hard Rock Stadium.

\n

The victory was the Dutch driver’s third of the season, and second in a row, and he made it happen with a crucial overtake around the outside on Sainz at the start to seize second place before blasting past Leclerc on the ninth of the 57 laps.

\n

Verstappen, who also made sure of the bonus point for fastest lap, had looked to be cruising to victory until McLaren’s Lando Norris collided with AlphaTauri’s Pierre Gasly and crashed on lap 41, triggering the safety car.

\n

That allowed Leclerc to close the gap and get back into contention over the final 10 laps.

\n

“It was an incredible Grand Prix,” said Verstappen, who has won every race he has finished so far this season and was handed his winner’s trophy by Dolphins NFL quarterback great Dan Marino. “(It was) very physical but I think we kept it exciting until the end.”

\n

The race drew a cast of A-list celebrities, sporting greats and a sellout crowd as Formula One basked in a wave of popularity fuelled by the Netflix docu-series “Drive to Survive”.

\n

“It\u2019s been insane. I\u2019ve never known such interest, such passion and a huge, huge event,” said Red Bull boss Christian Horner. “I think it\u2019s been great for the American public to tune into Formula One. … it\u2019s been a great event and an exciting race in the end as well.”

\n

MIAMI HEAT

\n

What was a slow burner in the energy-sapping humidity provided some fireworks at the end with the safety car bunching up the field, putting Leclerc right on Verstappen’s tail with five laps remaining.

\n

“On the hard (tyres) we were very competitive and towards the end I thought I could get Max at one point but today they had the advantage in terms of pace,” Leclerc said.

\n

Verstappen’s Mexican team mate, Sergio Perez, finished fourth, with Ferrari retaining the lead in the constructors’ standings on 157 points to Red Bull’s 151.

\n

Perez, who lost speed with a sensor issue that the team fixed, tried to pass Sainz on lap 52 but overcooked his move, with the Spaniard forcing his way back in front and staying there despite the Mexican’s fresher tyres.

\n

George Russell continued his record of finishing every race so far in the top five, with Mercedes team mate and seven-times world champion Lewis Hamilton sixth after a brief battle between the two.

\n

Russell, starting 12th but helped by pitting during the virtual safety car phase and having the advantage of fresher tyres, passed Hamilton twice on track.

\n

He handed back position after the first overtake because he had benefited from going wide but re-passed him immediately afterwards.

\n

Valtteri Bottas was seventh for Alfa Romeo with Alpine’s Esteban Ocon eighth in a stirring fight back after being unable to take part in Saturday’s qualifying due to a practice crash that forced the team to change his car’s chassis.

\n

Double world champion team mate Fernando Alonso was demoted to 11th place after receiving a five-second penalty for causing a collision with Gasly.

\n

Alex Albon moved up to ninth and Aston Martin’s Stroll 10th as a result of Alonso’s penalty.

\n

There was heartbreak for Mick Schumacher, who had been having his best race to date and looked like taking his first point in Formula One until he collided with Aston Martin’s Sebastian Vettel.

\n

Vettel and team mate Stroll had both started from the pit lane after a fuel temperature problem stopped them from going to the grid.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Sports
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nVerstappen beats Leclerc to win first Miami Grand Prix\n\n\t\t\t\n\n09 May 2022, 3:06 am 11 minutes\nBy Simon Evans\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nFormula One F1 \u2013 Miami Grand Prix \u2013 Miami International Autodrome, Miami, Florida, U.S. \u2013 May 8, 2022 Red Bull\u2019s Max Verstappen celebrates on the podium after winning the Miami Grand Prix with the trophy and Dan Marino REUTERS/Ricardo Arduengo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nMIAMI (Reuters) -Formula One world champion Max Verstappen won the inaugural Miami Grand Prix for Red Bull on Sunday, slashing Ferrari rival Charles Leclerc\u2019s overall lead from 27 to 19 points after five races.\nLeclerc finished a fighting second, 3.786 seconds behind after starting on pole position, with Spanish team mate Carlos Sainz completing the podium at the Miami Dolphins\u2019 Hard Rock Stadium.\nThe victory was the Dutch driver\u2019s third of the season, and second in a row, and he made it happen with a crucial overtake around the outside on Sainz at the start to seize second place before blasting past Leclerc on the ninth of the 57 laps.\nVerstappen, who also made sure of the bonus point for fastest lap, had looked to be cruising to victory until McLaren\u2019s Lando Norris collided with AlphaTauri\u2019s Pierre Gasly and crashed on lap 41, triggering the safety car.\nThat allowed Leclerc to close the gap and get back into contention over the final 10 laps.\n\u201cIt was an incredible Grand Prix,\u201d said Verstappen, who has won every race he has finished so far this season and was handed his winner\u2019s trophy by Dolphins NFL quarterback great Dan Marino. \u201c(It was) very physical but I think we kept it exciting until the end.\u201d\nThe race drew a cast of A-list celebrities, sporting greats and a sellout crowd as Formula One basked in a wave of popularity fuelled by the Netflix docu-series \u201cDrive to Survive\u201d.\n\u201cIt\u2019s been insane. I\u2019ve never known such interest, such passion and a huge, huge event,\u201d said Red Bull boss Christian Horner. \u201cI think it\u2019s been great for the American public to tune into Formula One. \u2026 it\u2019s been a great event and an exciting race in the end as well.\u201d\nMIAMI HEAT\nWhat was a slow burner in the energy-sapping humidity provided some fireworks at the end with the safety car bunching up the field, putting Leclerc right on Verstappen\u2019s tail with five laps remaining.\n\u201cOn the hard (tyres) we were very competitive and towards the end I thought I could get Max at one point but today they had the advantage in terms of pace,\u201d Leclerc said.\nVerstappen\u2019s Mexican team mate, Sergio Perez, finished fourth, with Ferrari retaining the lead in the constructors\u2019 standings on 157 points to Red Bull\u2019s 151.\nPerez, who lost speed with a sensor issue that the team fixed, tried to pass Sainz on lap 52 but overcooked his move, with the Spaniard forcing his way back in front and staying there despite the Mexican\u2019s fresher tyres.\nGeorge Russell continued his record of finishing every race so far in the top five, with Mercedes team mate and seven-times world champion Lewis Hamilton sixth after a brief battle between the two.\nRussell, starting 12th but helped by pitting during the virtual safety car phase and having the advantage of fresher tyres, passed Hamilton twice on track.\nHe handed back position after the first overtake because he had benefited from going wide but re-passed him immediately afterwards.\nValtteri Bottas was seventh for Alfa Romeo with Alpine\u2019s Esteban Ocon eighth in a stirring fight back after being unable to take part in Saturday\u2019s qualifying due to a practice crash that forced the team to change his car\u2019s chassis.\nDouble world champion team mate Fernando Alonso was demoted to 11th place after receiving a five-second penalty for causing a collision with Gasly.\nAlex Albon moved up to ninth and Aston Martin\u2019s Stroll 10th as a result of Alonso\u2019s penalty.\nThere was heartbreak for Mick Schumacher, who had been having his best race to date and looked like taking his first point in Formula One until he collided with Aston Martin\u2019s Sebastian Vettel.\nVettel and team mate Stroll had both started from the pit lane after a fuel temperature problem stopped them from going to the grid.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Sports\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/verstappen-beats-leclerc-to-win-first-miami-grand-prix/#respond", + "content": "

The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290241", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-09T03:06:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "Judge releases Oath Keepers member pending trial for U.S. Capitol attack", + "link": "https://www.reutersagency.com/en/coverage/judge-releases-oath-keepers-member-pending-trial-for-u-s-capitol-attack/", + "pubDate": "Thu, 05 May 2022 12:00:44 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Judge releases Oath Keepers member pending trial for U.S. Capitol attack

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

An explosion caused by a police munition is seen while supporters of U.S. President Donald Trump riot in front of the U.S. Capitol Building in Washington, U.S., January 6, 2021. REUTERS/Leah Millis/File Photo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

(Reuters) – A federal\u00a0judge\u00a0on Wednesday agreed to release\u00a0Oath\u00a0Keepers\u00a0member\u00a0Edward Vallejo from custody while he awaits\u00a0trial\u00a0on charges stemming from last year’s\u00a0attack\u00a0on the\u00a0U.S.\u00a0Capitol.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Politics
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nJudge releases Oath Keepers member pending trial for U.S. Capitol attack\n\n\t\t\t\n\n05 May 2022, 12:00 pm 8 minutes\nBy Dan Whitcomb\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nAn explosion caused by a police munition is seen while supporters of U.S. President Donald Trump riot in front of the U.S. Capitol Building in Washington, U.S., January 6, 2021. REUTERS/Leah Millis/File Photo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\n(Reuters) \u2013 A federal\u00a0judge\u00a0on Wednesday agreed to release\u00a0Oath\u00a0Keepers\u00a0member\u00a0Edward Vallejo from custody while he awaits\u00a0trial\u00a0on charges stemming from last year\u2019s\u00a0attack\u00a0on the\u00a0U.S.\u00a0Capitol.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Politics\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/judge-releases-oath-keepers-member-pending-trial-for-u-s-capitol-attack/#respond", + "content": "

The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290194", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-05T12:00:44.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020", + "link": "https://www.reutersagency.com/en/coverage/in-race-for-georgias-election-chief-its-all-about-trump-and-2020/", + "pubDate": "Thu, 05 May 2022 11:17:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

In race for Georgia’s election chief, it’s all about Trump and 2020

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Congressman Jody Hice (R-GA), who is currently running for Georgia Secretary of State, attends a rally in Perry, Georgia, U.S. September 25, 2021. REUTERS/Dustin Chambers/File Photo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

(Reuters) – Republican Jody Hice, the Donald\u00a0Trump-backed U.S. congressman seeking to become the top state\u00a0election\u00a0official in Georgia, wasted little time at a debate this week summarizing the cause driving his campaign.

\n

“The ‘big lie’ in\u00a0all\u00a0of this is that there were no problems with this past\u00a0election,” he said in the debate’s first few seconds on Monday. “This past\u00a0election\u00a0was an absolute disaster under the leadership of Brad Raffensperger.”

\n

The incumbent Raffensperger has been one of\u00a0Trump’s most frequent targets ever since he refused, emphatically\u00a0and\u00a0publicly, to capitulate to the demands of the former president, his fellow Republican, to “find” enough votes to overturn the results in\u00a0Georgia’s\u00a02020\u00a0presidential vote.

\n

Hice has centered his candidacy for the secretary of state’s office on amplifying\u00a0Trump’s baseless claims that he actually won the Georgia presidential vote,\u00a0and\u00a0by extension the White House, but lost due to widespread voter fraud.

\n

The May 24 primary\u00a0election\u00a0will be a test of whether\u00a0Trump’s persistent assertions that the\u00a0election\u00a0was rigged can still animate Republican voters a year\u00a0and\u00a0a half after his loss to Democrat Joe Biden.

\n

Georgia’s\u00a0Republican primary contest is one of nearly 20 across the country this year in which\u00a0Trump-supported candidates who have echoed his false assertions are running to become their states’\u00a0chief\u00a0election\u00a0overseers, according to a tally by States United Action, a nonpartisan advocacy group for fair\u00a0elections.

\n

That trend alarms voting rights groups, who fear that politicians asserting unsubstantiated claims of fraud will have the power to alter\u00a0election\u00a0results in 2024, when\u00a0Trump\u00a0has said he may run again for president.

\n

A member of the conservative Freedom Caucus in the U.S. House, Hice was at a White House meeting in December\u00a02020\u00a0to discuss ways of blocking the certification of the presidential\u00a0election\u00a0in Congress on Jan. 6, 2021, according to documents released by the House committee investigating the attack that day on the U.S. Capitol. He voted against certifying Biden’s win hours after the riot.

\n

The congressman has criticized Raffensperger for measures he took to accommodate voters during the coronavirus pandemic, including mailing absentee ballot applications to\u00a0all\u00a0registered voters\u00a0and\u00a0installing ballot drop boxes.

\n

Multiple audits\u00a0and\u00a0recounts have confirmed that Biden won Georgia. Democratic candidates also swept two U.S. Senate seats in the state’s January 2021 runoffs, giving the party control of both chambers of Congress.

\n

“Jody Hice has been running around Georgia for the last 18 months lying\u00a0about\u00a0our\u00a0election\u00a0process,” Raffensperger said at Monday’s debate in Atlanta.

\n

In a January 2021 phone call,\u00a0Trump\u00a0pushed Raffensperger to “find” the votes needed to flip the margin. The call, which was recorded\u00a0and\u00a0broadcast widely on cable news channels, led to a criminal investigation by state prosecutors into whether\u00a0Trump’s request was illegal\u00a0and\u00a0made Raffensperger a national figure.

\n

A special grand\u00a0jury to help oversee the investigation was selected on Monday.

\n

TIGHT\u00a0RACE

\n

Trump\u00a0has endorsed candidates in other Georgia\u00a0races, most notably former U.S. Senator David Perdue, who is challenging Republican Governor Brian Kemp. Perdue also has focused much of his campaign on re-litigating the\u00a02020\u00a0election, faulting Kemp for not doing more to reverse the results.

\n

Kemp has a substantial lead over Perdue, but Hice\u00a0and\u00a0Raffensperger appear locked in a tight\u00a0race, according to an April opinion poll commissioned by the Atlanta Journal-Constitution.

\n

Hice raised $1.6 million through January, according to campaign finance reports, while Raffensperger took in less than $600,000. The campaigns are due to file updated spending reports this week.

\n

Jay Williams, a Republican strategist in Georgia, said he sees no path for Raffensperger to prevail given his public feud with\u00a0Trump.

\n

“I’ve felt for a long time he’s toast,\u00a0and\u00a0I still think he is,” Williams said.

\n

Raffensperger, mindful that many Republican voters have been swayed by\u00a0Trump’s repeated claims of fraud, has made\u00a0election\u00a0integrity his top priority. He has called for an investigation into whether hundreds of non-citizens tried to register to vote\u00a0and\u00a0endorsed Republican-backed legislation to give law enforcement greater authority to investigate voter fraud.

\n

“He has been very aggressive, reinforcing the idea that he is a meticulous follower of the law,” said Chuck Clay, a former state Republican chair\u00a0and\u00a0former state senator.

\n

But Raffensperger remains unpopular among conservatives like Dianne Putnam, the Whitfield County Republican chair.

\n

“A true Republican wouldn’t have sold the Republican Party out\u00a0and\u00a0allowed our president to be cheated out of an\u00a0election,” she said.

\n

Two other Republican candidates, former Alpharetta Mayor David Belle Isle\u00a0and\u00a0T.J. Hudson, a former probate\u00a0and\u00a0magistrate judge, also are challenging Raffensperger from the right. If no candidate receives more than 50% of the vote, the two leading vote-getters would head to a June runoff.

\n

State Representative Bee Nguyen is the leading candidate on the Democratic side.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Politics
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nIn race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020\n\n\t\t\t\n\n05 May 2022, 11:17 am 12 minutes\nBy Joseph Ax\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nCongressman Jody Hice (R-GA), who is currently running for Georgia Secretary of State, attends a rally in Perry, Georgia, U.S. September 25, 2021. REUTERS/Dustin Chambers/File Photo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\n(Reuters) \u2013 Republican Jody Hice, the Donald\u00a0Trump-backed U.S. congressman seeking to become the top state\u00a0election\u00a0official in Georgia, wasted little time at a debate this week summarizing the cause driving his campaign.\n\u201cThe \u2018big lie\u2019 in\u00a0all\u00a0of this is that there were no problems with this past\u00a0election,\u201d he said in the debate\u2019s first few seconds on Monday. \u201cThis past\u00a0election\u00a0was an absolute disaster under the leadership of Brad Raffensperger.\u201d\nThe incumbent Raffensperger has been one of\u00a0Trump\u2019s most frequent targets ever since he refused, emphatically\u00a0and\u00a0publicly, to capitulate to the demands of the former president, his fellow Republican, to \u201cfind\u201d enough votes to overturn the results in\u00a0Georgia\u2019s\u00a02020\u00a0presidential vote.\nHice has centered his candidacy for the secretary of state\u2019s office on amplifying\u00a0Trump\u2019s baseless claims that he actually won the Georgia presidential vote,\u00a0and\u00a0by extension the White House, but lost due to widespread voter fraud.\nThe May 24 primary\u00a0election\u00a0will be a test of whether\u00a0Trump\u2019s persistent assertions that the\u00a0election\u00a0was rigged can still animate Republican voters a year\u00a0and\u00a0a half after his loss to Democrat Joe Biden.\nGeorgia\u2019s\u00a0Republican primary contest is one of nearly 20 across the country this year in which\u00a0Trump-supported candidates who have echoed his false assertions are running to become their states\u2019\u00a0chief\u00a0election\u00a0overseers, according to a tally by States United Action, a nonpartisan advocacy group for fair\u00a0elections.\nThat trend alarms voting rights groups, who fear that politicians asserting unsubstantiated claims of fraud will have the power to alter\u00a0election\u00a0results in 2024, when\u00a0Trump\u00a0has said he may run again for president.\nA member of the conservative Freedom Caucus in the U.S. House, Hice was at a White House meeting in December\u00a02020\u00a0to discuss ways of blocking the certification of the presidential\u00a0election\u00a0in Congress on Jan. 6, 2021, according to documents released by the House committee investigating the attack that day on the U.S. Capitol. He voted against certifying Biden\u2019s win hours after the riot.\nThe congressman has criticized Raffensperger for measures he took to accommodate voters during the coronavirus pandemic, including mailing absentee ballot applications to\u00a0all\u00a0registered voters\u00a0and\u00a0installing ballot drop boxes.\nMultiple audits\u00a0and\u00a0recounts have confirmed that Biden won Georgia. Democratic candidates also swept two U.S. Senate seats in the state\u2019s January 2021 runoffs, giving the party control of both chambers of Congress.\n\u201cJody Hice has been running around Georgia for the last 18 months lying\u00a0about\u00a0our\u00a0election\u00a0process,\u201d Raffensperger said at Monday\u2019s debate in Atlanta.\nIn a January 2021 phone call,\u00a0Trump\u00a0pushed Raffensperger to \u201cfind\u201d the votes needed to flip the margin. The call, which was recorded\u00a0and\u00a0broadcast widely on cable news channels, led to a criminal investigation by state prosecutors into whether\u00a0Trump\u2019s request was illegal\u00a0and\u00a0made Raffensperger a national figure.\nA special grand\u00a0jury to help oversee the investigation was selected on Monday.\nTIGHT\u00a0RACE\nTrump\u00a0has endorsed candidates in other Georgia\u00a0races, most notably former U.S. Senator David Perdue, who is challenging Republican Governor Brian Kemp. Perdue also has focused much of his campaign on re-litigating the\u00a02020\u00a0election, faulting Kemp for not doing more to reverse the results.\nKemp has a substantial lead over Perdue, but Hice\u00a0and\u00a0Raffensperger appear locked in a tight\u00a0race, according to an April opinion poll commissioned by the Atlanta Journal-Constitution.\nHice raised $1.6 million through January, according to campaign finance reports, while Raffensperger took in less than $600,000. The campaigns are due to file updated spending reports this week.\nJay Williams, a Republican strategist in Georgia, said he sees no path for Raffensperger to prevail given his public feud with\u00a0Trump.\n\u201cI\u2019ve felt for a long time he\u2019s toast,\u00a0and\u00a0I still think he is,\u201d Williams said.\nRaffensperger, mindful that many Republican voters have been swayed by\u00a0Trump\u2019s repeated claims of fraud, has made\u00a0election\u00a0integrity his top priority. He has called for an investigation into whether hundreds of non-citizens tried to register to vote\u00a0and\u00a0endorsed Republican-backed legislation to give law enforcement greater authority to investigate voter fraud.\n\u201cHe has been very aggressive, reinforcing the idea that he is a meticulous follower of the law,\u201d said Chuck Clay, a former state Republican chair\u00a0and\u00a0former state senator.\nBut Raffensperger remains unpopular among conservatives like Dianne Putnam, the Whitfield County Republican chair.\n\u201cA true Republican wouldn\u2019t have sold the Republican Party out\u00a0and\u00a0allowed our president to be cheated out of an\u00a0election,\u201d she said.\nTwo other Republican candidates, former Alpharetta Mayor David Belle Isle\u00a0and\u00a0T.J. Hudson, a former probate\u00a0and\u00a0magistrate judge, also are challenging Raffensperger from the right. If no candidate receives more than 50% of the vote, the two leading vote-getters would head to a June runoff.\nState Representative Bee Nguyen is the leading candidate on the Democratic side.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Politics\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020 appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/in-race-for-georgias-election-chief-its-all-about-trump-and-2020/#respond", + "content": "

The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020 appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290159", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-05T11:17:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "People enjoy the sunset in Vlora", + "link": "https://www.reutersagency.com/en/coverage/people-enjoy-the-sunset-in-vlora/", + "pubDate": "Wed, 04 May 2022 19:23:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

People enjoy the sunset in Vlora

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

People enjoy the sunset in Vlora, Albania, May 4, 2022. REUTERS/Florion Goga

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nPeople enjoy the sunset in Vlora\n\n\t\t\t\n\n04 May 2022, 7:23 pm 8 minutes\nBy Florion Goga\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nPeople enjoy the sunset in Vlora, Albania, May 4, 2022. REUTERS/Florion Goga\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post People enjoy the sunset in Vlora appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/people-enjoy-the-sunset-in-vlora/#respond", + "content": "

The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290229", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-04T19:23:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "Liverpool fight back to reach Champions League final with win over Villarreal", + "link": "https://www.reutersagency.com/en/coverage/liverpool-fight-back-to-reach-champions-league-final-with-win-over-villarreal/", + "pubDate": "Wed, 04 May 2022 00:10:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Liverpool fight back to reach Champions League final with win over Villarreal

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Soccer Football – Champions League – Semi Final – Second Leg – Villarreal v Liverpool – Estadio de la Ceramica, Villarreal, Spain – May 3, 2022 Liverpool’s Naby Keita in action with Villarreal’s Pau Torres REUTERS/Pablo Morano

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

VILLARREAL, Spain (Reuters) –Liverpool\u00a0survived a first-half scare to reach the Champions League final with a 3-2 win at Villarreal on Tuesday, for a 5-2 aggregate victory, after the night had threatened to turn sour for Juergen Klopp’s side.

\n

The visitors fell 2-0 down with an insipid first-half performance before fighting back with three goals in a 12-minute spell after the break to advance to their third European Cup final in five seasons.

\n

The Premier League side had won 2-0 in England but looked in danger of coming unstuck on a rain-soaked pitch in Spain, as the hosts pegged them back with goals from Boulaye Dia and Francis Coquelin.

\n

Liverpool, however, came out transformed after halftime and goals from Fabinho, Luis Diaz and Sadio Mane sealed the deal, with Villarreal ending the match with 10 men following a late red card for Etienne Capoue.

\n

Klopp’s side will meet either Real Madrid or Manchester City, who contest the second leg of their semi-final on Wednesday, in the showpiece in Paris on May 28. City lead 4-3 from the first leg.

\n

Roared on by their faithful fanbase who were packed into their modest stadium, Villarreal opened the scoring after three minutes with a close-range strike from Dia that was greeted by a chant of “Yes we can!” from the home supporters.

\n

Villarreal had been lifeless in the first leg at Anfield, but looked a completely different team as they tore into\u00a0Liverpool\u00a0with the same aggressive game that had knocked out Juventus in the last 16 and beaten Bayern Munich in the quarter-finals.

\n

Their relentless pressure forced\u00a0Liverpool\u00a0into mistakes they do not usually make, with the visitors’ passing accuracy of 66% the lowest they have managed in the first half of a game in all competitions this season.

\n

Villarreal levelled the tie with a close-range header from Coquelin and looked on the verge of a miracle comeback.

\n

The hosts even had a penalty appeal waved away by referee Danny Makkelie in the 38th minute when\u00a0Liverpool\u00a0keeper Alisson Becker came out to smother the ball and then bundled into Giovani Lo Celso inside the area.

\n

DIAZ IMPACT

\n

Yet Klopp brought Diaz off the bench at the break and the in-form Colombian winger changed the dynamic of the game, finding space and taking advantage of a Villarreal side that seemed to have run out of gas.

\n

As the\u00a0Liverpool\u00a0pressure mounted, it felt like only a matter of time until they scored and the goal eventually came following a brilliant combination between Fabinho and Mohamed Salah on the right side.

\n

The Brazilian midfielder recovered a loose ball close to the Villarreal area, passed two defenders before playing a one-two with the Egyptian.

\n

Salah teed him up with a pass between three defenders that left him alone to score with a low, angled shot that went between the legs of Villarreal keeper Geronimo Rulli, who endured a difficult game.

\n

Liverpool\u00a0smelled blood and went for the jugular, led by Diaz who ghosted into the middle of the box to head Trent Alexander-Arnold’s cross easily past the goalkeeper in the 67th minute.

\n

Seven minutes later Rulli tried to clear a long pass to Mane outside the area and completely missed the ball, leaving the Senegalese forward all alone to finish into the empty net.

\n

Capoue, who had a enjoyed a great first half with two assists, was dismissed with five minutes remaining, receiving a second yellow card for a late challenge on Curtis Jones.

\n

“The early goal didn’t help us, it helped them massively, so we had to dig deep, we had to be very mature. And obviously second half, we played outstanding,”\u00a0Liverpool\u00a0centre back Virgil van Dijk said, adding that Klopp had given them clear instructions at halftime.

\n

“(We needed to) play football, play the\u00a0Liverpool\u00a0way, as we have been playing basically all season. Get on the ball, have a lot of movement on the ball but also behind the last line, they play a high line, so with the speed we have, we have to mix that up as well,” he said.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Sports
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLiverpool fight back to reach Champions League final with win over Villarreal\n\n\t\t\t\n\n04 May 2022, 12:10 am 11 minutes\nBy Fernando Kallas\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nSoccer Football \u2013 Champions League \u2013 Semi Final \u2013 Second Leg \u2013 Villarreal v Liverpool \u2013 Estadio de la Ceramica, Villarreal, Spain \u2013 May 3, 2022 Liverpool\u2019s Naby Keita in action with Villarreal\u2019s Pau Torres REUTERS/Pablo Morano\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nVILLARREAL, Spain (Reuters) \u2013Liverpool\u00a0survived a first-half scare to reach the Champions League final with a 3-2 win at Villarreal on Tuesday, for a 5-2 aggregate victory, after the night had threatened to turn sour for Juergen Klopp\u2019s side.\nThe visitors fell 2-0 down with an insipid first-half performance before fighting back with three goals in a 12-minute spell after the break to advance to their third European Cup final in five seasons.\nThe Premier League side had won 2-0 in England but looked in danger of coming unstuck on a rain-soaked pitch in Spain, as the hosts pegged them back with goals from Boulaye Dia and Francis Coquelin.\nLiverpool, however, came out transformed after halftime and goals from Fabinho, Luis Diaz and Sadio Mane sealed the deal, with Villarreal ending the match with 10 men following a late red card for Etienne Capoue.\nKlopp\u2019s side will meet either Real Madrid or Manchester City, who contest the second leg of their semi-final on Wednesday, in the showpiece in Paris on May 28. City lead 4-3 from the first leg.\nRoared on by their faithful fanbase who were packed into their modest stadium, Villarreal opened the scoring after three minutes with a close-range strike from Dia that was greeted by a chant of \u201cYes we can!\u201d from the home supporters.\nVillarreal had been lifeless in the first leg at Anfield, but looked a completely different team as they tore into\u00a0Liverpool\u00a0with the same aggressive game that had knocked out Juventus in the last 16 and beaten Bayern Munich in the quarter-finals.\nTheir relentless pressure forced\u00a0Liverpool\u00a0into mistakes they do not usually make, with the visitors\u2019 passing accuracy of 66% the lowest they have managed in the first half of a game in all competitions this season.\nVillarreal levelled the tie with a close-range header from Coquelin and looked on the verge of a miracle comeback.\nThe hosts even had a penalty appeal waved away by referee Danny Makkelie in the 38th minute when\u00a0Liverpool\u00a0keeper Alisson Becker came out to smother the ball and then bundled into Giovani Lo Celso inside the area.\nDIAZ IMPACT\nYet Klopp brought Diaz off the bench at the break and the in-form Colombian winger changed the dynamic of the game, finding space and taking advantage of a Villarreal side that seemed to have run out of gas.\nAs the\u00a0Liverpool\u00a0pressure mounted, it felt like only a matter of time until they scored and the goal eventually came following a brilliant combination between Fabinho and Mohamed Salah on the right side.\nThe Brazilian midfielder recovered a loose ball close to the Villarreal area, passed two defenders before playing a one-two with the Egyptian.\nSalah teed him up with a pass between three defenders that left him alone to score with a low, angled shot that went between the legs of Villarreal keeper Geronimo Rulli, who endured a difficult game.\nLiverpool\u00a0smelled blood and went for the jugular, led by Diaz who ghosted into the middle of the box to head Trent Alexander-Arnold\u2019s cross easily past the goalkeeper in the 67th minute.\nSeven minutes later Rulli tried to clear a long pass to Mane outside the area and completely missed the ball, leaving the Senegalese forward all alone to finish into the empty net.\nCapoue, who had a enjoyed a great first half with two assists, was dismissed with five minutes remaining, receiving a second yellow card for a late challenge on Curtis Jones.\n\u201cThe early goal didn\u2019t help us, it helped them massively, so we had to dig deep, we had to be very mature. And obviously second half, we played outstanding,\u201d\u00a0Liverpool\u00a0centre back Virgil van Dijk said, adding that Klopp had given them clear instructions at halftime.\n\u201c(We needed to) play football, play the\u00a0Liverpool\u00a0way, as we have been playing basically all season. Get on the ball, have a lot of movement on the ball but also behind the last line, they play a high line, so with the speed we have, we have to mix that up as well,\u201d he said.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Sports\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/liverpool-fight-back-to-reach-champions-league-final-with-win-over-villarreal/#respond", + "content": "

The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290002", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-04T00:10:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "Aftermath of flooding in Brazil\u2019s Amazonas state", + "link": "https://www.reutersagency.com/en/coverage/aftermath-of-flooding-in-brazils-amazonas-state/", + "pubDate": "Sat, 21 May 2022 19:06:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Aftermath of flooding in Brazil’s Amazonas state

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Jose Lucio de Freitas, a local farmer, collects bananas at his plantation damaged by flood waters, after several riverside villages were affected by flooding triggered by the rise of the river levels in Careiro da Varzea in the Amazonas state, Brazil May 20, 2022. Picture taken with a drone May 20, 2022. REUTERS/Bruno Kelly

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\t\t\t\n\n21 May 2022, 7:06 pm 8 minutes\nBy Bruno Kelly\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nJose Lucio de Freitas, a local farmer, collects bananas at his plantation damaged by flood waters, after several riverside villages were affected by flooding triggered by the rise of the river levels in Careiro da Varzea in the Amazonas state, Brazil May 20, 2022. Picture taken with a drone May 20, 2022. REUTERS/Bruno Kelly \n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Aftermath of flooding in Brazil\u2019s Amazonas state appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/aftermath-of-flooding-in-brazils-amazonas-state/#respond", + "content": "

The post Aftermath of flooding in Brazil’s Amazonas state appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Aftermath of flooding in Brazil\u2019s Amazonas state appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290590", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-21T19:06:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "People take the plunge with a shark dive in Florida", + "link": "https://www.reutersagency.com/en/coverage/people-take-the-plunge-with-a-shark-dive-in-florida/", + "pubDate": "Wed, 18 May 2022 01:00:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

People take the plunge with a shark dive in Florida

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

A shark swims past a diver during an outing with scuba company Emerald Charters off Jupiter Inlet, Florida, U.S., May 18, 2022. REUTERS/Sam Wolfe

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nPeople take the plunge with a shark dive in Florida\n\n\t\t\t\n\n18 May 2022, 1:00 am 8 minutes\nBy Sam Wolfe\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nA shark swims past a diver during an outing with scuba company Emerald Charters off Jupiter Inlet, Florida, U.S., May 18, 2022. REUTERS/Sam Wolfe \n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/people-take-the-plunge-with-a-shark-dive-in-florida/#respond", + "content": "

The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post People take the plunge with a shark dive in Florida appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290324", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-18T01:00:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "The moon is seen during a lunar eclipse in Los Angeles", + "link": "https://www.reutersagency.com/en/coverage/the-moon-is-seen-during-a-lunar-eclipse-in-los-angeles/", + "pubDate": "Mon, 16 May 2022 01:06:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The moon is seen during a lunar eclipse in Los Angeles

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

The St. Andrew’s Ukrainian Orthodox Church is seen as the moon moves through the shadow of the earth during a “Blood Moon” lunar eclipse, in Los Angeles, California, U.S., May 15, 2022. REUTERS/David Swanson

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\t\t\t\n\n16 May 2022, 1:06 am 8 minutes\nBy David Swanson\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nThe St. Andrew\u2019s Ukrainian Orthodox Church is seen as the moon moves through the shadow of the earth during a \u201cBlood Moon\u201d lunar eclipse, in Los Angeles, California, U.S., May 15, 2022. REUTERS/David Swanson\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/the-moon-is-seen-during-a-lunar-eclipse-in-los-angeles/#respond", + "content": "

The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post The moon is seen during a lunar eclipse in Los Angeles appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290588", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-16T01:06:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "Wildfire in California", + "link": "https://www.reutersagency.com/en/coverage/wildfire-in-california/", + "pubDate": "Thu, 12 May 2022 15:28:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Wildfire in California

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Smoke from a fast-moving, wind-driven wildfire rises above a residential area in Laguna Niguel, California, U.S., May 12, 2022. REUTERS/Mike Blake

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Wildfire in California appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nWildfire in California\n\n\t\t\t\n\n12 May 2022, 3:28 pm 8 minutes\nBy Mike Blake\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nSmoke from a fast-moving, wind-driven wildfire rises above a residential area in Laguna Niguel, California, U.S., May 12, 2022. REUTERS/Mike Blake\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Wildfire in California appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/wildfire-in-california/#respond", + "content": "

The post Wildfire in California appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Wildfire in California appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290565", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-12T15:28:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "A Swiss farmer works in his field with his tractor in Sullens", + "link": "https://www.reutersagency.com/en/coverage/a-swiss-farmer-works-in-his-field-with-his-tractor-in-sullens/", + "pubDate": "Tue, 10 May 2022 16:27:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

A Swiss farmer works in his field with his tractor in Sullens

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

A Swiss farmer works in his field with his tractor in Sullens, Switzerland, May 10, 2022. Picture taken with a drone. REUTERS/Denis Balibouse TPX IMAGES OF THE DAY

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Environment
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nA Swiss farmer works in his field with his tractor in Sullens\n\n\t\t\t\n\n10 May 2022, 4:27 pm 8 minutes\nBy Denis Balibouse\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nA Swiss farmer works in his field with his tractor in Sullens, Switzerland, May 10, 2022. Picture taken with a drone. REUTERS/Denis Balibouse TPX IMAGES OF THE DAY\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Environment\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/a-swiss-farmer-works-in-his-field-with-his-tractor-in-sullens/#respond", + "content": "

The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post A Swiss farmer works in his field with his tractor in Sullens appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290289", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-10T16:27:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "Verstappen beats Leclerc to win first Miami Grand Prix", + "link": "https://www.reutersagency.com/en/coverage/verstappen-beats-leclerc-to-win-first-miami-grand-prix/", + "pubDate": "Mon, 09 May 2022 03:06:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Verstappen beats Leclerc to win first Miami Grand Prix

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Formula One F1 – Miami Grand Prix – Miami International Autodrome, Miami, Florida, U.S. – May 8, 2022 Red Bull’s Max Verstappen celebrates on the podium after winning the Miami Grand Prix with the trophy and Dan Marino REUTERS/Ricardo Arduengo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

MIAMI (Reuters) -Formula One world champion Max Verstappen won the inaugural Miami Grand Prix for Red Bull on Sunday, slashing Ferrari rival Charles Leclerc’s overall lead from 27 to 19 points after five races.

\n

Leclerc finished a fighting second, 3.786 seconds behind after starting on pole position, with Spanish team mate Carlos Sainz completing the podium at the Miami Dolphins’ Hard Rock Stadium.

\n

The victory was the Dutch driver’s third of the season, and second in a row, and he made it happen with a crucial overtake around the outside on Sainz at the start to seize second place before blasting past Leclerc on the ninth of the 57 laps.

\n

Verstappen, who also made sure of the bonus point for fastest lap, had looked to be cruising to victory until McLaren’s Lando Norris collided with AlphaTauri’s Pierre Gasly and crashed on lap 41, triggering the safety car.

\n

That allowed Leclerc to close the gap and get back into contention over the final 10 laps.

\n

“It was an incredible Grand Prix,” said Verstappen, who has won every race he has finished so far this season and was handed his winner’s trophy by Dolphins NFL quarterback great Dan Marino. “(It was) very physical but I think we kept it exciting until the end.”

\n

The race drew a cast of A-list celebrities, sporting greats and a sellout crowd as Formula One basked in a wave of popularity fuelled by the Netflix docu-series “Drive to Survive”.

\n

“It\u2019s been insane. I\u2019ve never known such interest, such passion and a huge, huge event,” said Red Bull boss Christian Horner. “I think it\u2019s been great for the American public to tune into Formula One. … it\u2019s been a great event and an exciting race in the end as well.”

\n

MIAMI HEAT

\n

What was a slow burner in the energy-sapping humidity provided some fireworks at the end with the safety car bunching up the field, putting Leclerc right on Verstappen’s tail with five laps remaining.

\n

“On the hard (tyres) we were very competitive and towards the end I thought I could get Max at one point but today they had the advantage in terms of pace,” Leclerc said.

\n

Verstappen’s Mexican team mate, Sergio Perez, finished fourth, with Ferrari retaining the lead in the constructors’ standings on 157 points to Red Bull’s 151.

\n

Perez, who lost speed with a sensor issue that the team fixed, tried to pass Sainz on lap 52 but overcooked his move, with the Spaniard forcing his way back in front and staying there despite the Mexican’s fresher tyres.

\n

George Russell continued his record of finishing every race so far in the top five, with Mercedes team mate and seven-times world champion Lewis Hamilton sixth after a brief battle between the two.

\n

Russell, starting 12th but helped by pitting during the virtual safety car phase and having the advantage of fresher tyres, passed Hamilton twice on track.

\n

He handed back position after the first overtake because he had benefited from going wide but re-passed him immediately afterwards.

\n

Valtteri Bottas was seventh for Alfa Romeo with Alpine’s Esteban Ocon eighth in a stirring fight back after being unable to take part in Saturday’s qualifying due to a practice crash that forced the team to change his car’s chassis.

\n

Double world champion team mate Fernando Alonso was demoted to 11th place after receiving a five-second penalty for causing a collision with Gasly.

\n

Alex Albon moved up to ninth and Aston Martin’s Stroll 10th as a result of Alonso’s penalty.

\n

There was heartbreak for Mick Schumacher, who had been having his best race to date and looked like taking his first point in Formula One until he collided with Aston Martin’s Sebastian Vettel.

\n

Vettel and team mate Stroll had both started from the pit lane after a fuel temperature problem stopped them from going to the grid.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Sports
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nVerstappen beats Leclerc to win first Miami Grand Prix\n\n\t\t\t\n\n09 May 2022, 3:06 am 11 minutes\nBy Simon Evans\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nFormula One F1 \u2013 Miami Grand Prix \u2013 Miami International Autodrome, Miami, Florida, U.S. \u2013 May 8, 2022 Red Bull\u2019s Max Verstappen celebrates on the podium after winning the Miami Grand Prix with the trophy and Dan Marino REUTERS/Ricardo Arduengo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nMIAMI (Reuters) -Formula One world champion Max Verstappen won the inaugural Miami Grand Prix for Red Bull on Sunday, slashing Ferrari rival Charles Leclerc\u2019s overall lead from 27 to 19 points after five races.\nLeclerc finished a fighting second, 3.786 seconds behind after starting on pole position, with Spanish team mate Carlos Sainz completing the podium at the Miami Dolphins\u2019 Hard Rock Stadium.\nThe victory was the Dutch driver\u2019s third of the season, and second in a row, and he made it happen with a crucial overtake around the outside on Sainz at the start to seize second place before blasting past Leclerc on the ninth of the 57 laps.\nVerstappen, who also made sure of the bonus point for fastest lap, had looked to be cruising to victory until McLaren\u2019s Lando Norris collided with AlphaTauri\u2019s Pierre Gasly and crashed on lap 41, triggering the safety car.\nThat allowed Leclerc to close the gap and get back into contention over the final 10 laps.\n\u201cIt was an incredible Grand Prix,\u201d said Verstappen, who has won every race he has finished so far this season and was handed his winner\u2019s trophy by Dolphins NFL quarterback great Dan Marino. \u201c(It was) very physical but I think we kept it exciting until the end.\u201d\nThe race drew a cast of A-list celebrities, sporting greats and a sellout crowd as Formula One basked in a wave of popularity fuelled by the Netflix docu-series \u201cDrive to Survive\u201d.\n\u201cIt\u2019s been insane. I\u2019ve never known such interest, such passion and a huge, huge event,\u201d said Red Bull boss Christian Horner. \u201cI think it\u2019s been great for the American public to tune into Formula One. \u2026 it\u2019s been a great event and an exciting race in the end as well.\u201d\nMIAMI HEAT\nWhat was a slow burner in the energy-sapping humidity provided some fireworks at the end with the safety car bunching up the field, putting Leclerc right on Verstappen\u2019s tail with five laps remaining.\n\u201cOn the hard (tyres) we were very competitive and towards the end I thought I could get Max at one point but today they had the advantage in terms of pace,\u201d Leclerc said.\nVerstappen\u2019s Mexican team mate, Sergio Perez, finished fourth, with Ferrari retaining the lead in the constructors\u2019 standings on 157 points to Red Bull\u2019s 151.\nPerez, who lost speed with a sensor issue that the team fixed, tried to pass Sainz on lap 52 but overcooked his move, with the Spaniard forcing his way back in front and staying there despite the Mexican\u2019s fresher tyres.\nGeorge Russell continued his record of finishing every race so far in the top five, with Mercedes team mate and seven-times world champion Lewis Hamilton sixth after a brief battle between the two.\nRussell, starting 12th but helped by pitting during the virtual safety car phase and having the advantage of fresher tyres, passed Hamilton twice on track.\nHe handed back position after the first overtake because he had benefited from going wide but re-passed him immediately afterwards.\nValtteri Bottas was seventh for Alfa Romeo with Alpine\u2019s Esteban Ocon eighth in a stirring fight back after being unable to take part in Saturday\u2019s qualifying due to a practice crash that forced the team to change his car\u2019s chassis.\nDouble world champion team mate Fernando Alonso was demoted to 11th place after receiving a five-second penalty for causing a collision with Gasly.\nAlex Albon moved up to ninth and Aston Martin\u2019s Stroll 10th as a result of Alonso\u2019s penalty.\nThere was heartbreak for Mick Schumacher, who had been having his best race to date and looked like taking his first point in Formula One until he collided with Aston Martin\u2019s Sebastian Vettel.\nVettel and team mate Stroll had both started from the pit lane after a fuel temperature problem stopped them from going to the grid.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Sports\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/verstappen-beats-leclerc-to-win-first-miami-grand-prix/#respond", + "content": "

The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Verstappen beats Leclerc to win first Miami Grand Prix appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290241", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-09T03:06:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "Judge releases Oath Keepers member pending trial for U.S. Capitol attack", + "link": "https://www.reutersagency.com/en/coverage/judge-releases-oath-keepers-member-pending-trial-for-u-s-capitol-attack/", + "pubDate": "Thu, 05 May 2022 12:00:44 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Judge releases Oath Keepers member pending trial for U.S. Capitol attack

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

An explosion caused by a police munition is seen while supporters of U.S. President Donald Trump riot in front of the U.S. Capitol Building in Washington, U.S., January 6, 2021. REUTERS/Leah Millis/File Photo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

(Reuters) – A federal\u00a0judge\u00a0on Wednesday agreed to release\u00a0Oath\u00a0Keepers\u00a0member\u00a0Edward Vallejo from custody while he awaits\u00a0trial\u00a0on charges stemming from last year’s\u00a0attack\u00a0on the\u00a0U.S.\u00a0Capitol.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Politics
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nJudge releases Oath Keepers member pending trial for U.S. Capitol attack\n\n\t\t\t\n\n05 May 2022, 12:00 pm 8 minutes\nBy Dan Whitcomb\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nAn explosion caused by a police munition is seen while supporters of U.S. President Donald Trump riot in front of the U.S. Capitol Building in Washington, U.S., January 6, 2021. REUTERS/Leah Millis/File Photo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\n(Reuters) \u2013 A federal\u00a0judge\u00a0on Wednesday agreed to release\u00a0Oath\u00a0Keepers\u00a0member\u00a0Edward Vallejo from custody while he awaits\u00a0trial\u00a0on charges stemming from last year\u2019s\u00a0attack\u00a0on the\u00a0U.S.\u00a0Capitol.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Politics\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/judge-releases-oath-keepers-member-pending-trial-for-u-s-capitol-attack/#respond", + "content": "

The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Judge releases Oath Keepers member pending trial for U.S. Capitol attack appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290194", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-05T12:00:44.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020", + "link": "https://www.reutersagency.com/en/coverage/in-race-for-georgias-election-chief-its-all-about-trump-and-2020/", + "pubDate": "Thu, 05 May 2022 11:17:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

In race for Georgia’s election chief, it’s all about Trump and 2020

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Congressman Jody Hice (R-GA), who is currently running for Georgia Secretary of State, attends a rally in Perry, Georgia, U.S. September 25, 2021. REUTERS/Dustin Chambers/File Photo

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

(Reuters) – Republican Jody Hice, the Donald\u00a0Trump-backed U.S. congressman seeking to become the top state\u00a0election\u00a0official in Georgia, wasted little time at a debate this week summarizing the cause driving his campaign.

\n

“The ‘big lie’ in\u00a0all\u00a0of this is that there were no problems with this past\u00a0election,” he said in the debate’s first few seconds on Monday. “This past\u00a0election\u00a0was an absolute disaster under the leadership of Brad Raffensperger.”

\n

The incumbent Raffensperger has been one of\u00a0Trump’s most frequent targets ever since he refused, emphatically\u00a0and\u00a0publicly, to capitulate to the demands of the former president, his fellow Republican, to “find” enough votes to overturn the results in\u00a0Georgia’s\u00a02020\u00a0presidential vote.

\n

Hice has centered his candidacy for the secretary of state’s office on amplifying\u00a0Trump’s baseless claims that he actually won the Georgia presidential vote,\u00a0and\u00a0by extension the White House, but lost due to widespread voter fraud.

\n

The May 24 primary\u00a0election\u00a0will be a test of whether\u00a0Trump’s persistent assertions that the\u00a0election\u00a0was rigged can still animate Republican voters a year\u00a0and\u00a0a half after his loss to Democrat Joe Biden.

\n

Georgia’s\u00a0Republican primary contest is one of nearly 20 across the country this year in which\u00a0Trump-supported candidates who have echoed his false assertions are running to become their states’\u00a0chief\u00a0election\u00a0overseers, according to a tally by States United Action, a nonpartisan advocacy group for fair\u00a0elections.

\n

That trend alarms voting rights groups, who fear that politicians asserting unsubstantiated claims of fraud will have the power to alter\u00a0election\u00a0results in 2024, when\u00a0Trump\u00a0has said he may run again for president.

\n

A member of the conservative Freedom Caucus in the U.S. House, Hice was at a White House meeting in December\u00a02020\u00a0to discuss ways of blocking the certification of the presidential\u00a0election\u00a0in Congress on Jan. 6, 2021, according to documents released by the House committee investigating the attack that day on the U.S. Capitol. He voted against certifying Biden’s win hours after the riot.

\n

The congressman has criticized Raffensperger for measures he took to accommodate voters during the coronavirus pandemic, including mailing absentee ballot applications to\u00a0all\u00a0registered voters\u00a0and\u00a0installing ballot drop boxes.

\n

Multiple audits\u00a0and\u00a0recounts have confirmed that Biden won Georgia. Democratic candidates also swept two U.S. Senate seats in the state’s January 2021 runoffs, giving the party control of both chambers of Congress.

\n

“Jody Hice has been running around Georgia for the last 18 months lying\u00a0about\u00a0our\u00a0election\u00a0process,” Raffensperger said at Monday’s debate in Atlanta.

\n

In a January 2021 phone call,\u00a0Trump\u00a0pushed Raffensperger to “find” the votes needed to flip the margin. The call, which was recorded\u00a0and\u00a0broadcast widely on cable news channels, led to a criminal investigation by state prosecutors into whether\u00a0Trump’s request was illegal\u00a0and\u00a0made Raffensperger a national figure.

\n

A special grand\u00a0jury to help oversee the investigation was selected on Monday.

\n

TIGHT\u00a0RACE

\n

Trump\u00a0has endorsed candidates in other Georgia\u00a0races, most notably former U.S. Senator David Perdue, who is challenging Republican Governor Brian Kemp. Perdue also has focused much of his campaign on re-litigating the\u00a02020\u00a0election, faulting Kemp for not doing more to reverse the results.

\n

Kemp has a substantial lead over Perdue, but Hice\u00a0and\u00a0Raffensperger appear locked in a tight\u00a0race, according to an April opinion poll commissioned by the Atlanta Journal-Constitution.

\n

Hice raised $1.6 million through January, according to campaign finance reports, while Raffensperger took in less than $600,000. The campaigns are due to file updated spending reports this week.

\n

Jay Williams, a Republican strategist in Georgia, said he sees no path for Raffensperger to prevail given his public feud with\u00a0Trump.

\n

“I’ve felt for a long time he’s toast,\u00a0and\u00a0I still think he is,” Williams said.

\n

Raffensperger, mindful that many Republican voters have been swayed by\u00a0Trump’s repeated claims of fraud, has made\u00a0election\u00a0integrity his top priority. He has called for an investigation into whether hundreds of non-citizens tried to register to vote\u00a0and\u00a0endorsed Republican-backed legislation to give law enforcement greater authority to investigate voter fraud.

\n

“He has been very aggressive, reinforcing the idea that he is a meticulous follower of the law,” said Chuck Clay, a former state Republican chair\u00a0and\u00a0former state senator.

\n

But Raffensperger remains unpopular among conservatives like Dianne Putnam, the Whitfield County Republican chair.

\n

“A true Republican wouldn’t have sold the Republican Party out\u00a0and\u00a0allowed our president to be cheated out of an\u00a0election,” she said.

\n

Two other Republican candidates, former Alpharetta Mayor David Belle Isle\u00a0and\u00a0T.J. Hudson, a former probate\u00a0and\u00a0magistrate judge, also are challenging Raffensperger from the right. If no candidate receives more than 50% of the vote, the two leading vote-getters would head to a June runoff.

\n

State Representative Bee Nguyen is the leading candidate on the Democratic side.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Politics
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Americas
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nIn race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020\n\n\t\t\t\n\n05 May 2022, 11:17 am 12 minutes\nBy Joseph Ax\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nCongressman Jody Hice (R-GA), who is currently running for Georgia Secretary of State, attends a rally in Perry, Georgia, U.S. September 25, 2021. REUTERS/Dustin Chambers/File Photo\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\n(Reuters) \u2013 Republican Jody Hice, the Donald\u00a0Trump-backed U.S. congressman seeking to become the top state\u00a0election\u00a0official in Georgia, wasted little time at a debate this week summarizing the cause driving his campaign.\n\u201cThe \u2018big lie\u2019 in\u00a0all\u00a0of this is that there were no problems with this past\u00a0election,\u201d he said in the debate\u2019s first few seconds on Monday. \u201cThis past\u00a0election\u00a0was an absolute disaster under the leadership of Brad Raffensperger.\u201d\nThe incumbent Raffensperger has been one of\u00a0Trump\u2019s most frequent targets ever since he refused, emphatically\u00a0and\u00a0publicly, to capitulate to the demands of the former president, his fellow Republican, to \u201cfind\u201d enough votes to overturn the results in\u00a0Georgia\u2019s\u00a02020\u00a0presidential vote.\nHice has centered his candidacy for the secretary of state\u2019s office on amplifying\u00a0Trump\u2019s baseless claims that he actually won the Georgia presidential vote,\u00a0and\u00a0by extension the White House, but lost due to widespread voter fraud.\nThe May 24 primary\u00a0election\u00a0will be a test of whether\u00a0Trump\u2019s persistent assertions that the\u00a0election\u00a0was rigged can still animate Republican voters a year\u00a0and\u00a0a half after his loss to Democrat Joe Biden.\nGeorgia\u2019s\u00a0Republican primary contest is one of nearly 20 across the country this year in which\u00a0Trump-supported candidates who have echoed his false assertions are running to become their states\u2019\u00a0chief\u00a0election\u00a0overseers, according to a tally by States United Action, a nonpartisan advocacy group for fair\u00a0elections.\nThat trend alarms voting rights groups, who fear that politicians asserting unsubstantiated claims of fraud will have the power to alter\u00a0election\u00a0results in 2024, when\u00a0Trump\u00a0has said he may run again for president.\nA member of the conservative Freedom Caucus in the U.S. House, Hice was at a White House meeting in December\u00a02020\u00a0to discuss ways of blocking the certification of the presidential\u00a0election\u00a0in Congress on Jan. 6, 2021, according to documents released by the House committee investigating the attack that day on the U.S. Capitol. He voted against certifying Biden\u2019s win hours after the riot.\nThe congressman has criticized Raffensperger for measures he took to accommodate voters during the coronavirus pandemic, including mailing absentee ballot applications to\u00a0all\u00a0registered voters\u00a0and\u00a0installing ballot drop boxes.\nMultiple audits\u00a0and\u00a0recounts have confirmed that Biden won Georgia. Democratic candidates also swept two U.S. Senate seats in the state\u2019s January 2021 runoffs, giving the party control of both chambers of Congress.\n\u201cJody Hice has been running around Georgia for the last 18 months lying\u00a0about\u00a0our\u00a0election\u00a0process,\u201d Raffensperger said at Monday\u2019s debate in Atlanta.\nIn a January 2021 phone call,\u00a0Trump\u00a0pushed Raffensperger to \u201cfind\u201d the votes needed to flip the margin. The call, which was recorded\u00a0and\u00a0broadcast widely on cable news channels, led to a criminal investigation by state prosecutors into whether\u00a0Trump\u2019s request was illegal\u00a0and\u00a0made Raffensperger a national figure.\nA special grand\u00a0jury to help oversee the investigation was selected on Monday.\nTIGHT\u00a0RACE\nTrump\u00a0has endorsed candidates in other Georgia\u00a0races, most notably former U.S. Senator David Perdue, who is challenging Republican Governor Brian Kemp. Perdue also has focused much of his campaign on re-litigating the\u00a02020\u00a0election, faulting Kemp for not doing more to reverse the results.\nKemp has a substantial lead over Perdue, but Hice\u00a0and\u00a0Raffensperger appear locked in a tight\u00a0race, according to an April opinion poll commissioned by the Atlanta Journal-Constitution.\nHice raised $1.6 million through January, according to campaign finance reports, while Raffensperger took in less than $600,000. The campaigns are due to file updated spending reports this week.\nJay Williams, a Republican strategist in Georgia, said he sees no path for Raffensperger to prevail given his public feud with\u00a0Trump.\n\u201cI\u2019ve felt for a long time he\u2019s toast,\u00a0and\u00a0I still think he is,\u201d Williams said.\nRaffensperger, mindful that many Republican voters have been swayed by\u00a0Trump\u2019s repeated claims of fraud, has made\u00a0election\u00a0integrity his top priority. He has called for an investigation into whether hundreds of non-citizens tried to register to vote\u00a0and\u00a0endorsed Republican-backed legislation to give law enforcement greater authority to investigate voter fraud.\n\u201cHe has been very aggressive, reinforcing the idea that he is a meticulous follower of the law,\u201d said Chuck Clay, a former state Republican chair\u00a0and\u00a0former state senator.\nBut Raffensperger remains unpopular among conservatives like Dianne Putnam, the Whitfield County Republican chair.\n\u201cA true Republican wouldn\u2019t have sold the Republican Party out\u00a0and\u00a0allowed our president to be cheated out of an\u00a0election,\u201d she said.\nTwo other Republican candidates, former Alpharetta Mayor David Belle Isle\u00a0and\u00a0T.J. Hudson, a former probate\u00a0and\u00a0magistrate judge, also are challenging Raffensperger from the right. If no candidate receives more than 50% of the vote, the two leading vote-getters would head to a June runoff.\nState Representative Bee Nguyen is the leading candidate on the Democratic side.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Politics\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Americas\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020 appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/in-race-for-georgias-election-chief-its-all-about-trump-and-2020/#respond", + "content": "

The post In race for Georgia’s election chief, it’s all about Trump and 2020 appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post In race for Georgia\u2019s election chief, it\u2019s all about Trump and 2020 appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290159", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-05T11:17:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "People enjoy the sunset in Vlora", + "link": "https://www.reutersagency.com/en/coverage/people-enjoy-the-sunset-in-vlora/", + "pubDate": "Wed, 04 May 2022 19:23:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

People enjoy the sunset in Vlora

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

People enjoy the sunset in Vlora, Albania, May 4, 2022. REUTERS/Florion Goga

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: PicturesText
Topics: Entertainment & Lifestyle
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: Pictures
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nPeople enjoy the sunset in Vlora\n\n\t\t\t\n\n04 May 2022, 7:23 pm 8 minutes\nBy Florion Goga\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nPeople enjoy the sunset in Vlora, Albania, May 4, 2022. REUTERS/Florion Goga\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: PicturesText\nTopics: Entertainment & Lifestyle\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: Pictures\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post People enjoy the sunset in Vlora appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/people-enjoy-the-sunset-in-vlora/#respond", + "content": "

The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post People enjoy the sunset in Vlora appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290229", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-04T19:23:00.000Z" + }, + { + "creator": "Oli Baxter-Hughes", + "title": "Liverpool fight back to reach Champions League final with win over Villarreal", + "link": "https://www.reutersagency.com/en/coverage/liverpool-fight-back-to-reach-champions-league-final-with-win-over-villarreal/", + "pubDate": "Wed, 04 May 2022 00:10:00 +0000", + "content:encoded": "

\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Reuters News

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Liverpool fight back to reach Champions League final with win over Villarreal

\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t \t
\r\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t
\n

Soccer Football – Champions League – Semi Final – Second Leg – Villarreal v Liverpool – Estadio de la Ceramica, Villarreal, Spain – May 3, 2022 Liverpool’s Naby Keita in action with Villarreal’s Pau Torres REUTERS/Pablo Morano

\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\t\r\n\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

VILLARREAL, Spain (Reuters) –Liverpool\u00a0survived a first-half scare to reach the Champions League final with a 3-2 win at Villarreal on Tuesday, for a 5-2 aggregate victory, after the night had threatened to turn sour for Juergen Klopp’s side.

\n

The visitors fell 2-0 down with an insipid first-half performance before fighting back with three goals in a 12-minute spell after the break to advance to their third European Cup final in five seasons.

\n

The Premier League side had won 2-0 in England but looked in danger of coming unstuck on a rain-soaked pitch in Spain, as the hosts pegged them back with goals from Boulaye Dia and Francis Coquelin.

\n

Liverpool, however, came out transformed after halftime and goals from Fabinho, Luis Diaz and Sadio Mane sealed the deal, with Villarreal ending the match with 10 men following a late red card for Etienne Capoue.

\n

Klopp’s side will meet either Real Madrid or Manchester City, who contest the second leg of their semi-final on Wednesday, in the showpiece in Paris on May 28. City lead 4-3 from the first leg.

\n

Roared on by their faithful fanbase who were packed into their modest stadium, Villarreal opened the scoring after three minutes with a close-range strike from Dia that was greeted by a chant of “Yes we can!” from the home supporters.

\n

Villarreal had been lifeless in the first leg at Anfield, but looked a completely different team as they tore into\u00a0Liverpool\u00a0with the same aggressive game that had knocked out Juventus in the last 16 and beaten Bayern Munich in the quarter-finals.

\n

Their relentless pressure forced\u00a0Liverpool\u00a0into mistakes they do not usually make, with the visitors’ passing accuracy of 66% the lowest they have managed in the first half of a game in all competitions this season.

\n

Villarreal levelled the tie with a close-range header from Coquelin and looked on the verge of a miracle comeback.

\n

The hosts even had a penalty appeal waved away by referee Danny Makkelie in the 38th minute when\u00a0Liverpool\u00a0keeper Alisson Becker came out to smother the ball and then bundled into Giovani Lo Celso inside the area.

\n

DIAZ IMPACT

\n

Yet Klopp brought Diaz off the bench at the break and the in-form Colombian winger changed the dynamic of the game, finding space and taking advantage of a Villarreal side that seemed to have run out of gas.

\n

As the\u00a0Liverpool\u00a0pressure mounted, it felt like only a matter of time until they scored and the goal eventually came following a brilliant combination between Fabinho and Mohamed Salah on the right side.

\n

The Brazilian midfielder recovered a loose ball close to the Villarreal area, passed two defenders before playing a one-two with the Egyptian.

\n

Salah teed him up with a pass between three defenders that left him alone to score with a low, angled shot that went between the legs of Villarreal keeper Geronimo Rulli, who endured a difficult game.

\n

Liverpool\u00a0smelled blood and went for the jugular, led by Diaz who ghosted into the middle of the box to head Trent Alexander-Arnold’s cross easily past the goalkeeper in the 67th minute.

\n

Seven minutes later Rulli tried to clear a long pass to Mane outside the area and completely missed the ball, leaving the Senegalese forward all alone to finish into the empty net.

\n

Capoue, who had a enjoyed a great first half with two assists, was dismissed with five minutes remaining, receiving a second yellow card for a late challenge on Curtis Jones.

\n

“The early goal didn’t help us, it helped them massively, so we had to dig deep, we had to be very mature. And obviously second half, we played outstanding,”\u00a0Liverpool\u00a0centre back Virgil van Dijk said, adding that Klopp had given them clear instructions at halftime.

\n

“(We needed to) play football, play the\u00a0Liverpool\u00a0way, as we have been playing basically all season. Get on the ball, have a lot of movement on the ball but also behind the last line, they play a high line, so with the speed we have, we have to mix that up as well,” he said.

\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

The text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/

\n\t\t\t
Tags:
Content Types: Pictures
Topics: Sports
Platforms: Reuters ConnectReuters.com PlatformWorld News Express
Regions & Locations: Europe
Media Types: PicturesText
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
Subscribe
Sign up for email updates
\n\n
\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n\t\n \n \n\n\t
\n\n
\n
\n
\n
\n
\n \n
\n
\n
\n\t\t\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n \n \n
\n \n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n
\n\t\n\t
\n\n
\n \n \n
\n
\n\n\n\n
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Latest Tweets

12:00am-01 Jan '70-54 years ago
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t

Get instant access to Reuters Connect

\n

Our award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.

\n\t\t\t
\n
\n\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n
\n\n
\n\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n\n
\n \n \n \n\n \n
\n
\n
\n\n \n
\n
\n
\n
\n \n \n\n\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n
\n\n \n\n \n\n\n
\n\n
\n\n
\n
\n\n \n\n \n\n
\n
\n
\n
\n
\n\n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n
\n
\n\n
\n
\n\n
\n
\n\n
\n\n
\n \n
\n\n
\n\n
\n
\n\n \n\n\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t

\n

The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.

\n", + "content:encodedSnippet": "Reuters News\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLiverpool fight back to reach Champions League final with win over Villarreal\n\n\t\t\t\n\n04 May 2022, 12:10 am 11 minutes\nBy Fernando Kallas\n\n\t\t\t\n\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t \t\n\r\n\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\n \n\nSoccer Football \u2013 Champions League \u2013 Semi Final \u2013 Second Leg \u2013 Villarreal v Liverpool \u2013 Estadio de la Ceramica, Villarreal, Spain \u2013 May 3, 2022 Liverpool\u2019s Naby Keita in action with Villarreal\u2019s Pau Torres REUTERS/Pablo Morano\n \n\r\n\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\t\r\n\t\t\t\t\t\t\t\t\n\n\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\n\n\t\t\t\t\nVILLARREAL, Spain (Reuters) \u2013Liverpool\u00a0survived a first-half scare to reach the Champions League final with a 3-2 win at Villarreal on Tuesday, for a 5-2 aggregate victory, after the night had threatened to turn sour for Juergen Klopp\u2019s side.\nThe visitors fell 2-0 down with an insipid first-half performance before fighting back with three goals in a 12-minute spell after the break to advance to their third European Cup final in five seasons.\nThe Premier League side had won 2-0 in England but looked in danger of coming unstuck on a rain-soaked pitch in Spain, as the hosts pegged them back with goals from Boulaye Dia and Francis Coquelin.\nLiverpool, however, came out transformed after halftime and goals from Fabinho, Luis Diaz and Sadio Mane sealed the deal, with Villarreal ending the match with 10 men following a late red card for Etienne Capoue.\nKlopp\u2019s side will meet either Real Madrid or Manchester City, who contest the second leg of their semi-final on Wednesday, in the showpiece in Paris on May 28. City lead 4-3 from the first leg.\nRoared on by their faithful fanbase who were packed into their modest stadium, Villarreal opened the scoring after three minutes with a close-range strike from Dia that was greeted by a chant of \u201cYes we can!\u201d from the home supporters.\nVillarreal had been lifeless in the first leg at Anfield, but looked a completely different team as they tore into\u00a0Liverpool\u00a0with the same aggressive game that had knocked out Juventus in the last 16 and beaten Bayern Munich in the quarter-finals.\nTheir relentless pressure forced\u00a0Liverpool\u00a0into mistakes they do not usually make, with the visitors\u2019 passing accuracy of 66% the lowest they have managed in the first half of a game in all competitions this season.\nVillarreal levelled the tie with a close-range header from Coquelin and looked on the verge of a miracle comeback.\nThe hosts even had a penalty appeal waved away by referee Danny Makkelie in the 38th minute when\u00a0Liverpool\u00a0keeper Alisson Becker came out to smother the ball and then bundled into Giovani Lo Celso inside the area.\nDIAZ IMPACT\nYet Klopp brought Diaz off the bench at the break and the in-form Colombian winger changed the dynamic of the game, finding space and taking advantage of a Villarreal side that seemed to have run out of gas.\nAs the\u00a0Liverpool\u00a0pressure mounted, it felt like only a matter of time until they scored and the goal eventually came following a brilliant combination between Fabinho and Mohamed Salah on the right side.\nThe Brazilian midfielder recovered a loose ball close to the Villarreal area, passed two defenders before playing a one-two with the Egyptian.\nSalah teed him up with a pass between three defenders that left him alone to score with a low, angled shot that went between the legs of Villarreal keeper Geronimo Rulli, who endured a difficult game.\nLiverpool\u00a0smelled blood and went for the jugular, led by Diaz who ghosted into the middle of the box to head Trent Alexander-Arnold\u2019s cross easily past the goalkeeper in the 67th minute.\nSeven minutes later Rulli tried to clear a long pass to Mane outside the area and completely missed the ball, leaving the Senegalese forward all alone to finish into the empty net.\nCapoue, who had a enjoyed a great first half with two assists, was dismissed with five minutes remaining, receiving a second yellow card for a late challenge on Curtis Jones.\n\u201cThe early goal didn\u2019t help us, it helped them massively, so we had to dig deep, we had to be very mature. And obviously second half, we played outstanding,\u201d\u00a0Liverpool\u00a0centre back Virgil van Dijk said, adding that Klopp had given them clear instructions at halftime.\n\u201c(We needed to) play football, play the\u00a0Liverpool\u00a0way, as we have been playing basically all season. Get on the ball, have a lot of movement on the ball but also behind the last line, they play a high line, so with the speed we have, we have to mix that up as well,\u201d he said.\n\n\t\t\t\n\n\t\t\t\tLicense and download content\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nThe text, photographs, video, graphics, metadata, quotes, data, information, and all protectable intellectual property available through the this website is the property of Reuters and its licensors. It is provided by Reuters and its licensors to you for your personal use and information only. You may not use the Content or Service for any commercial purpose. You acknowledge that by accessing and using this the service, you agree to be legally bound by and hereby consent to these terms of use and the privacy policy.\u00a0 Learn more in https://www.reutersagency.com/en/about/brand-attribution-guidelines/\n\n\t\t\t\n\nTags:\nContent Types: Pictures\nTopics: Sports\nPlatforms: Reuters ConnectReuters.com PlatformWorld News Express\nRegions & Locations: Europe\nMedia Types: PicturesText\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\nShare\n\n\n\n\n\n\n\n\n\nRelated Content\n\n\nDigital News Report 2022\n\n\nAftermath of flooding in Brazil\u2019s Amazonas state\n\n\nPeople take the plunge with a shark dive in Florida\n\n\nThe moon is seen during a lunar eclipse in Los Angeles\n\n\n\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \nSubscribe\nSign up for email updates\nWork Email Address *\n\n\n\n\n\n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\n \n \n I'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement.\n \n * required field\n \n \n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nRelated Platforms\n\n\nPlatforms\nReuters Connect\nReuters Connect is a fast, intelligent and intuitive way to source videos, pictures, text and more, instantly. Access millions of rights-cleared assets from Reuters and 70+ world-class media partners through our platform and start creating exciting and inspiring content to grow your audience.\nDiscover more\n\n\nPlatforms\nReuters.com Platform\nThe definitive destination for professionals providing the global intelligence they need to make smart decisions. Reuters.com is designed to provide deeper value to our professional audience who are looking for trusted, real-time information to make informed decisions in their business and person...\nDiscover more\n\n\nPlatforms\nWorld News Express\nWorld News Express supports the delivery of Reuters Video and lives over satellite, fibre or IP straight into your production systems as soon as it is created, along with detailed shot lists, scripts and metadata to enrich coverage.\nDiscover more\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nLatest Tweets\n\n\n12:00am-01 Jan '70-54 years ago\n\n\n\t\t\t\n\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\nGet instant access to Reuters Connect\nOur award-winning platform, providing you with accurate information when, where and how you need it, to make smarter decisions. Complete the form below for free instant access.\n\n\t\t\t\nFirst Name *\n\n\n\n\n\n \nLast Name *\n\n\n\n\n\n \nWork Email Address *\n\n\n\n\n\n \nCompany / Organization *\n\n\n\n\n\n \nBusiness Phone *\n\n\n\n\n\n \nCompany Website *\n\n\n\n\n\n \n -->\n \n\n \n \nCountry *\n\n\n--Please Select--AfghanistanAland IslandsAlbaniaAlgeriaAmerican SamoaAndorraAngolaAnguillaAntarcticaAntigua And BarbudaArgentinaArmeniaArubaAustraliaAustriaAzerbaijanBahamasBahrainBangladeshBarbadosBelarusBelgiumBelizeBeninBermudaBhutanBoliviaBonaire, Saint Eustatius and SabaBosnia and HerzegovinaBotswanaBouvet IslandBrazilBritish Indian Ocean TerritoryBrunei DarussalamBulgariaBurkina FasoBurundiCambodiaCameroonCanadaCape VerdeCayman IslandsCentral African RepublicChadChileChinaChristmas IslandCocos (Keeling) IslandsColombiaComorosCongoCongo. Democratic Republic of theCook IslandsCosta RicaCote d'IvoireCroatiaCubaCuracaoCyprusCzech RepublicDenmarkDjiboutiDominicaDominican RepublicEcuadorEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFalkland IslandsFaroe IslandsFijiFinlandFranceFrench GuianaFrench PolynesiaFrench Southern TerritoriesGabonGambiaGeorgiaGermanyGhanaGibraltarGreeceGreenlandGrenadaGuadeloupeGuamGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHeard and McDonald IslandsVatican City State (Holy See)HondurasHong Kong, ChinaHungaryIcelandIndiaIndonesiaIranIraqIrelandIsle of ManIsraelItalyJamaicaJapanJerseyJordanKazakhstanKenyaKiribatiKorea (North)Korea, Republic ofKosovoKuwaitKyrgyzstanLao People's Democratic RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLithuaniaLuxembourgMacauMacedoniaMadagascarMalawiMalaysiaMaldivesMaliMaltaMarshall IslandsMartiniqueMauritaniaMauritiusMayotteMexicoMicronesia, Federated States ofMoldova, Republic ofMonacoMongoliaMontenegroMontserratMoroccoMozambiqueMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNicaraguaNigerNigeriaNiueNorfolk IslandNorthern Mariana IslandsNorwayOmanPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPeruPhilippinesPitcairnPolandPortugalPuerto RicoQatarReunionRomaniaRussian FederationRwandaSaint BarthelemySt. HelenaSaint Kitts and NevisSaint LuciaSaint Martin (French part)St. Pierre and MiquelonSaint Vincent and the GrenadinesSamoa (Independent)San MarinoSao Tome and PrincipeSaudi ArabiaSenegalSerbiaSeychellesSierra LeoneSingaporeSint MaartenSlovakiaSloveniaSolomon IslandsSomaliaSouth AfricaSouth Georgia and the South Sandwich IslandsSouth SudanSpainSri LankaSudanSurinameSvalbard and Jan Mayen IslandsSwazilandSwedenSwitzerlandSyrian Arab RepublicTaiwanTajikistanTanzaniaThailandEast TimorTogoTokelauTongaTrinidad and TobagoTunisiaTurkeyTurkmenistanTurks and Caicos IslandsTuvaluUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUruguayUzbekistanVanuatuVenezuelaViet NamVirgin Islands (British)Virgin Islands (U.S.)Wallis and Futuna IslandsWestern SaharaYemenZambiaZimbabwe\n\n\nJob Role *\n\n\n--Please Select--Academic, Researcher or LibrarianAgency and Media PlanningBroker/Trader/AdvisorBusiness Leadership and StrategyBusiness OperationsData, Analytics and AIConsultingDesign, Pictures and Media ProductionExecutive ManagementJournalism, Reporting and EditorialGovernment and Public ServiceIT, Knowledge and InformationProcurement and FinanceProgram/Project ManagerPublic Relations and CommunicationsSalesStudentLegal and CompliancePartnerships and Business DevelopmentOther\n\n\n \n -->\n \n\n\n \nJob Level *\n\n\n--Please Select--CXO/Managing DirectorOwner/PartnerSVP/VP/Editor in chiefSr Manager/Sr Editor/Director/Dept HeadManager/CoordinatorJournalist/ReporterJunior/Staff/Individual ContributorFreelancerGovt/Public Service Senior LeaderGovt/Public Service EmployeeOther\n\n\n \nIndustry *\n\n\n--Please Select--Advertising AgencyAerospace & DefenceAutomotiveCommodities & EnergyConsulting & AdvisoryEducation ServicesFinancial ServicesFood & BeverageGovernment & Public ServicesIndustrial Goods & ManufacturingInsuranceLegal ServicesMediaNGOPharmaceuticals & HealthcareReal EstateRedistributor & PartnersRetail & Consumer GoodsSportsTechnologyTelecommunicationsTransport & LogisticsTravel & LeisureUtilities & Other Energy\n\n\n*\n \n \n \n--Please Select--\n \n Up to 1,000\n \n 1,001 to 10,000\n \n 10,001 to 50,000\n \n 50,001 to 100,000\n \n 100,001 to 500,000\n \n 500,001 to 1 million\n \n 1 to 5 million\n \n 5 to 20 million\n \n 20 to 50 million\n \n 50 to 100 million\n \n Over 100 million\n \n \n \n -->\n\n Are you an existing customer?\n\n\n--Please Select--NoYes\n\n\n -->\n\n\n \n-- Please select --\n \n \nReuters Video\n \n \nReuters Pictures\n \n \nReuters Audio\n \n \nReuters Text\n \n \nReuters Graphics\n \n \n -->\n\n How can we help?\n\n\n\n\n\n \n -->\n\n \nI'd like to receive communications about Reuters resources, events, products, or services.\n(Please note you can manage and update your preferences at any time.)\n By submitting your details, you are acknowledging that you have read and understood our Privacy Statement. \nBy submitting your details, you are agreeing to receive communications about Reuters resources, events, products, or services. By submitting your details, you are also acknowledging that you have read and understood our: Privacy Statement. \n\n \n\nThe post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.", + "dc:creator": "Oli Baxter-Hughes", + "comments": "https://www.reutersagency.com/en/coverage/liverpool-fight-back-to-reach-champions-league-final-with-win-over-villarreal/#respond", + "content": "

The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.

\n", + "contentSnippet": "The post Liverpool fight back to reach Champions League final with win over Villarreal appeared first on Reuters News Agency.", + "guid": "https://www.reutersagency.com/?p=290002", + "categories": ["Coverage", "Reuters Connect"], + "isoDate": "2022-05-04T00:10:00.000Z" + } +] diff --git a/intro to react/newData/oldNews/a116638f2da393659d8b4b64bfb521fcc5e36ba26e931cb8cadd957e36de3225.json b/intro to react/newData/oldNews/a116638f2da393659d8b4b64bfb521fcc5e36ba26e931cb8cadd957e36de3225.json index 47f3ff2..525f61e 100644 --- a/intro to react/newData/oldNews/a116638f2da393659d8b4b64bfb521fcc5e36ba26e931cb8cadd957e36de3225.json +++ b/intro to react/newData/oldNews/a116638f2da393659d8b4b64bfb521fcc5e36ba26e931cb8cadd957e36de3225.json @@ -1,3831 +1,3831 @@ [ - { - "title": "Climate crisis: Three women helping wildlife survive", - "link": "https://news.yahoo.com/climate-crisis-three-women-helping-012518578.html", - "pubDate": "2023-12-01T01:25:18Z", - "guid": "climate-crisis-three-women-helping-012518578.html", - "isoDate": "2023-12-01T01:25:18.000Z" - }, - { - "title": "Crew members aboard Osprey that crashed off coast of Japan still missing, Pentagon says", - "link": "https://news.yahoo.com/crew-members-aboard-osprey-crashed-203815316.html", - "pubDate": "2023-12-01T00:44:12Z", - "guid": "crew-members-aboard-osprey-crashed-203815316.html", - "isoDate": "2023-12-01T00:44:12.000Z" - }, - { - "title": "Reuters: SBU targets rail line in Siberia", - "link": "https://news.yahoo.com/reuters-sbu-targets-rail-line-000724834.html", - "pubDate": "2023-12-01T00:07:24Z", - "guid": "reuters-sbu-targets-rail-line-000724834.html", - "isoDate": "2023-12-01T00:07:24.000Z" - }, - { - "title": "Court seizes over $1 million in crypto assets from former state communications head", - "link": "https://news.yahoo.com/court-seizes-over-1-million-225420330.html", - "pubDate": "2023-11-30T22:54:20Z", - "guid": "court-seizes-over-1-million-225420330.html", - "isoDate": "2023-11-30T22:54:20.000Z" - }, - { - "title": "Mia Schem: Wounded festival-goer in Hamas hostage video freed", - "link": "https://news.yahoo.com/mia-schem-wounded-festival-goer-221431685.html", - "pubDate": "2023-11-30T22:14:31Z", - "guid": "mia-schem-wounded-festival-goer-221431685.html", - "isoDate": "2023-11-30T22:14:31.000Z" - }, - { - "title": "Three Israelis killed by Palestinian gunmen at Jerusalem bus stop", - "link": "https://news.yahoo.com/three-israelis-killed-palestinian-gunmen-210348701.html", - "pubDate": "2023-11-30T22:11:47Z", - "guid": "three-israelis-killed-palestinian-gunmen-210348701.html", - "isoDate": "2023-11-30T22:11:47.000Z" - }, - { - "title": "Norway announces $23 million for Ukraine's food security", - "link": "https://news.yahoo.com/norway-announces-23-million-ukraines-220648864.html", - "pubDate": "2023-11-30T22:06:48Z", - "guid": "norway-announces-23-million-ukraines-220648864.html", - "isoDate": "2023-11-30T22:06:48.000Z" - }, - { - "title": "Shahed drones launched from Crimea drift through Ukraine \u2013 Ukraine's Armed Forces", - "link": "https://news.yahoo.com/russia-launches-shahed-drones-crimea-191659502.html", - "pubDate": "2023-11-30T20:33:59Z", - "guid": "russia-launches-shahed-drones-crimea-191659502.html", - "isoDate": "2023-11-30T20:33:59.000Z" - }, - { - "title": "Israel recalls ambassador in war spat with Spain PM Pedro S\u00e1nchez", - "link": "https://news.yahoo.com/israel-recalls-ambassador-war-spat-202115156.html", - "pubDate": "2023-11-30T20:21:15Z", - "guid": "israel-recalls-ambassador-war-spat-202115156.html", - "isoDate": "2023-11-30T20:21:15.000Z" - }, - { - "title": "Ukraine's SBU charges 30 collaborators in Zaporizhzhya Oblast", - "link": "https://news.yahoo.com/ukraines-sbu-charges-30-collaborators-201000151.html", - "pubDate": "2023-11-30T20:10:00Z", - "guid": "ukraines-sbu-charges-30-collaborators-201000151.html", - "isoDate": "2023-11-30T20:10:00.000Z" - }, - { - "title": "The Perfect Down or Puffer Jacket Blends Functionality and Style To Take You From Winter To Spring", - "link": "https://www.yahoo.com/entertainment/best-down-jackets-winter-spring-000000511.html", - "pubDate": "2023-11-30T20:05:59Z", - "guid": "best-down-jackets-winter-spring-000000511.html", - "isoDate": "2023-11-30T20:05:59.000Z" - }, - { - "title": "Ombudsman confirms first case of Russian citizen changing identity of illegally adopted Ukrainian child", - "link": "https://news.yahoo.com/ombudsman-first-recorded-case-russian-191548958.html", - "pubDate": "2023-11-30T19:15:48Z", - "guid": "ombudsman-first-recorded-case-russian-191548958.html", - "isoDate": "2023-11-30T19:15:48.000Z" - }, - { - "title": "Statute of limitations expires for dozens of 2014 Maidan cases", - "link": "https://news.yahoo.com/statute-limitations-expires-dozens-2014-191000323.html", - "pubDate": "2023-11-30T19:10:00Z", - "guid": "statute-limitations-expires-dozens-2014-191000323.html", - "isoDate": "2023-11-30T19:10:00.000Z" - }, - { - "title": "Hungary won\u2019t support \u2018premature proposal\u2019 to admit Ukraine into EU, official says", - "link": "https://news.yahoo.com/hungary-won-t-support-premature-185945198.html", - "pubDate": "2023-11-30T18:59:45Z", - "guid": "hungary-won-t-support-premature-185945198.html", - "isoDate": "2023-11-30T18:59:45.000Z" - }, - { - "title": "Russian forces launch airstrike on Toretsk, killing one civilian", - "link": "https://news.yahoo.com/russian-forces-launch-airstrike-toretsk-182715439.html", - "pubDate": "2023-11-30T18:27:15Z", - "guid": "russian-forces-launch-airstrike-toretsk-182715439.html", - "isoDate": "2023-11-30T18:27:15.000Z" - }, - { - "title": "Bloomberg: EU to announce plans to use frozen Russian assets for Ukraine's reconstruction", - "link": "https://news.yahoo.com/bloomberg-eu-announce-plans-frozen-181756109.html", - "pubDate": "2023-11-30T18:17:56Z", - "guid": "bloomberg-eu-announce-plans-frozen-181756109.html", - "isoDate": "2023-11-30T18:17:56.000Z" - }, - { - "title": "Ukraine in OSCE: We must show Russia that world will never get tired of defending freedom", - "link": "https://news.yahoo.com/ukraine-osce-must-show-russia-181519304.html", - "pubDate": "2023-11-30T18:15:19Z", - "guid": "ukraine-osce-must-show-russia-181519304.html", - "isoDate": "2023-11-30T18:15:19.000Z" - }, - { - "title": "Abducted girl \"adopted\" by Russian politician has brother, his location unknown", - "link": "https://news.yahoo.com/abducted-girl-adopted-russian-politician-180110296.html", - "pubDate": "2023-11-30T18:01:10Z", - "guid": "abducted-girl-adopted-russian-politician-180110296.html", - "isoDate": "2023-11-30T18:01:10.000Z" - }, - { - "title": "Venezuela zoo welcomes three white lion cubs", - "link": "https://news.yahoo.com/venezuela-zoo-welcomes-three-white-174454423.html", - "pubDate": "2023-11-30T17:44:54Z", - "guid": "venezuela-zoo-welcomes-three-white-174454423.html", - "isoDate": "2023-11-30T17:44:54.000Z" - }, - { - "title": "Police in Rivne play the Grinch as they cite Santa Claus for driving without a license \u2013 video", - "link": "https://news.yahoo.com/police-rivne-play-grinch-cite-174100748.html", - "pubDate": "2023-11-30T17:41:00Z", - "guid": "police-rivne-play-grinch-cite-174100748.html", - "isoDate": "2023-11-30T17:41:00.000Z" - }, - { - "title": "Israel-Hamas truce extended for 7th day as more hostages are released", - "link": "https://news.yahoo.com/israel-hamas-truce-extended-7th-172249521.html", - "pubDate": "2023-11-30T17:22:49Z", - "guid": "israel-hamas-truce-extended-7th-172249521.html", - "isoDate": "2023-11-30T17:22:49.000Z" - }, - { - "title": "Ukraine's political parties agree on carrying out elections only after the war", - "link": "https://news.yahoo.com/ukraines-political-parties-agree-carrying-171326314.html", - "pubDate": "2023-11-30T17:13:26Z", - "guid": "ukraines-political-parties-agree-carrying-171326314.html", - "isoDate": "2023-11-30T17:13:26.000Z" - }, - { - "title": "Zelenskyy visits school set up in Kharkiv's metro", - "link": "https://news.yahoo.com/zelenskyy-visits-school-set-kharkivs-170714487.html", - "pubDate": "2023-11-30T17:07:14Z", - "guid": "zelenskyy-visits-school-set-kharkivs-170714487.html", - "isoDate": "2023-11-30T17:07:14.000Z" - }, - { - "title": "Russia hastily deploys poorly-trained Airborne Division to Kherson Oblast \u2013 UK intelligence", - "link": "https://news.yahoo.com/russia-hastily-deploys-poorly-trained-170300149.html", - "pubDate": "2023-11-30T17:03:00Z", - "guid": "russia-hastily-deploys-poorly-trained-170300149.html", - "isoDate": "2023-11-30T17:03:00.000Z" - }, - { - "title": "Seventy-year-old Ugandan woman gives birth to twins - hospital", - "link": "https://news.yahoo.com/seventy-old-ugandan-woman-gives-154759822.html", - "pubDate": "2023-11-30T16:38:07Z", - "guid": "seventy-old-ugandan-woman-gives-154759822.html", - "isoDate": "2023-11-30T16:38:07.000Z" - }, - { - "title": "Pochayiv Lavra searched in criminal case in Moscow Patriarchate leadership\u2019s role in inciting hatred", - "link": "https://news.yahoo.com/pochayiv-lavra-searched-criminal-case-163600633.html", - "pubDate": "2023-11-30T16:36:00Z", - "guid": "pochayiv-lavra-searched-criminal-case-163600633.html", - "isoDate": "2023-11-30T16:36:00.000Z" - }, - { - "title": "European Commission prepares to approve plan to use frozen Russian assets in December \u2013 Bloomberg", - "link": "https://news.yahoo.com/european-commission-prepares-approve-plan-161821964.html", - "pubDate": "2023-11-30T16:18:21Z", - "guid": "european-commission-prepares-approve-plan-161821964.html", - "isoDate": "2023-11-30T16:18:21.000Z" - }, - { - "title": "Viral Images of Dead Infants in Israel-Gaza War Are AI Fakes, Experts Say", - "link": "https://news.yahoo.com/viral-images-dead-infants-israel-154511677.html", - "pubDate": "2023-11-30T15:45:11Z", - "guid": "viral-images-dead-infants-israel-154511677.html", - "isoDate": "2023-11-30T15:45:11.000Z" - }, - { - "title": "10-month-old Ukrainian child abducted to Russia had her name changed", - "link": "https://news.yahoo.com/10-month-old-ukrainian-child-153929944.html", - "pubDate": "2023-11-30T15:39:29Z", - "guid": "10-month-old-ukrainian-child-153929944.html", - "isoDate": "2023-11-30T15:39:29.000Z" - }, - { - "title": "Russians try to reproduce Seababy Ukrainian drone from fragments", - "link": "https://news.yahoo.com/russians-try-reproduce-seababy-ukrainian-152238607.html", - "pubDate": "2023-11-30T15:22:38Z", - "guid": "russians-try-reproduce-seababy-ukrainian-152238607.html", - "isoDate": "2023-11-30T15:22:38.000Z" - }, - { - "title": "Sophie, Duchess of Edinburgh Visits Colombia to Continue Mission for Survivors of Gender-Based Violence", - "link": "https://www.yahoo.com/entertainment/sophie-duchess-edinburgh-visits-colombia-151325791.html", - "pubDate": "2023-11-30T15:13:25Z", - "guid": "sophie-duchess-edinburgh-visits-colombia-151325791.html", - "isoDate": "2023-11-30T15:13:25.000Z" - }, - { - "title": "Russian Orthodox Church forces parishioners to pray to \u2018Saint Putin\u2019 on giant screen - video", - "link": "https://news.yahoo.com/russian-orthodox-church-forces-parishioners-150400402.html", - "pubDate": "2023-11-30T15:04:00Z", - "guid": "russian-orthodox-church-forces-parishioners-150400402.html", - "isoDate": "2023-11-30T15:04:00.000Z" - }, - { - "title": "Zelenskyy stresses importance of air shield in conversation with UK PM", - "link": "https://news.yahoo.com/zelenskyy-stresses-importance-air-shield-145830735.html", - "pubDate": "2023-11-30T14:58:30Z", - "guid": "zelenskyy-stresses-importance-air-shield-145830735.html", - "isoDate": "2023-11-30T14:58:30.000Z" - }, - { - "title": "UN says 2023 will be hottest year on record", - "link": "https://news.yahoo.com/un-says-2023-hottest-record-144635905.html", - "pubDate": "2023-11-30T14:46:35Z", - "guid": "un-says-2023-hottest-record-144635905.html", - "isoDate": "2023-11-30T14:46:35.000Z" - }, - { - "title": "Russian Foreign Minister argues OSCE is no longer needed", - "link": "https://news.yahoo.com/russian-foreign-minister-argues-osce-142509672.html", - "pubDate": "2023-11-30T14:25:09Z", - "guid": "russian-foreign-minister-argues-osce-142509672.html", - "isoDate": "2023-11-30T14:25:09.000Z" - }, - { - "title": "Bedouin family desperate for news on teenagers held hostage in Gaza", - "link": "https://news.yahoo.com/bedouin-family-desperate-news-teenagers-142221191.html", - "pubDate": "2023-11-30T14:22:21Z", - "guid": "bedouin-family-desperate-news-teenagers-142221191.html", - "isoDate": "2023-11-30T14:22:21.000Z" - }, - { - "title": "Hungarian and Russian foreign ministers meet at OSCE meeting and discuss Ukraine", - "link": "https://news.yahoo.com/hungarian-russian-foreign-ministers-meet-142023863.html", - "pubDate": "2023-11-30T14:20:23Z", - "guid": "hungarian-russian-foreign-ministers-meet-142023863.html", - "isoDate": "2023-11-30T14:20:23.000Z" - }, - { - "title": "Deyda Hydara murder: Gambian sentenced in Germany for crimes against humanity", - "link": "https://news.yahoo.com/deyda-hydara-murder-gambian-sentenced-134210763.html", - "pubDate": "2023-11-30T13:59:50Z", - "guid": "deyda-hydara-murder-gambian-sentenced-134210763.html", - "isoDate": "2023-11-30T13:59:50.000Z" - }, - { - "title": "Hungary will not agree to starting EU membership talks with Ukraine, minister says", - "link": "https://news.yahoo.com/hungary-not-agree-starting-eu-135607058.html", - "pubDate": "2023-11-30T13:56:07Z", - "guid": "hungary-not-agree-starting-eu-135607058.html", - "isoDate": "2023-11-30T13:56:07.000Z" - }, - { - "title": "Russia is stuffing an elite paratrooper force with poorly trained troops that are eroding its power, UK intel says", - "link": "https://news.yahoo.com/russia-stuffing-elite-paratrooper-force-135416139.html", - "pubDate": "2023-11-30T13:54:16Z", - "guid": "russia-stuffing-elite-paratrooper-force-135416139.html", - "isoDate": "2023-11-30T13:54:16.000Z" - }, - { - "title": "EU defence strategy should include Ukraine \u2013 European Commission President", - "link": "https://news.yahoo.com/eu-defence-strategy-ukraine-european-135129412.html", - "pubDate": "2023-11-30T13:51:29Z", - "guid": "eu-defence-strategy-ukraine-european-135129412.html", - "isoDate": "2023-11-30T13:51:29.000Z" - }, - { - "title": "Families reunite with 17 Thai hostages freed by Hamas at homecoming at Bangkok airport", - "link": "https://news.yahoo.com/families-reunite-17-thai-hostages-135016303.html", - "pubDate": "2023-11-30T13:50:16Z", - "guid": "families-reunite-17-thai-hostages-135016303.html", - "isoDate": "2023-11-30T13:50:16.000Z" - }, - { - "title": "First Lady Zelenska named Top 25 most influential women of 2023 in Heroes category \u2013 Financial Times", - "link": "https://news.yahoo.com/first-lady-zelenska-named-top-132900099.html", - "pubDate": "2023-11-30T13:29:00Z", - "guid": "first-lady-zelenska-named-top-132900099.html", - "isoDate": "2023-11-30T13:29:00.000Z" - }, - { - "title": "The UK's former health secretary testifies at COVID inquiry that he argued for an earlier lockdown", - "link": "https://news.yahoo.com/ex-health-secretary-matt-hancock-132829599.html", - "pubDate": "2023-11-30T13:28:29Z", - "guid": "ex-health-secretary-matt-hancock-132829599.html", - "isoDate": "2023-11-30T13:28:29.000Z" - }, - { - "title": "Ukraine designates Belgian gas company Fluxys as 'international sponsor of war'", - "link": "https://news.yahoo.com/ukraine-designates-belgian-gas-company-131842937.html", - "pubDate": "2023-11-30T13:18:42Z", - "guid": "ukraine-designates-belgian-gas-company-131842937.html", - "isoDate": "2023-11-30T13:18:42.000Z" - }, - { - "title": "Ukrainian companies can again purchase exemptions in case of power outages \u2013 Energy Ministry", - "link": "https://news.yahoo.com/ukrainian-companies-again-purchase-exemptions-130700801.html", - "pubDate": "2023-11-30T13:07:00Z", - "guid": "ukrainian-companies-again-purchase-exemptions-130700801.html", - "isoDate": "2023-11-30T13:07:00.000Z" - }, - { - "title": "Zelenskyy discusses military aid and EU accession with Scholz", - "link": "https://news.yahoo.com/zelenskyy-discusses-military-aid-eu-130007076.html", - "pubDate": "2023-11-30T13:00:07Z", - "guid": "zelenskyy-discusses-military-aid-eu-130007076.html", - "isoDate": "2023-11-30T13:00:07.000Z" - }, - { - "title": "New dates for Christmas & St. Nicholas Day as Ukraine switches to a more European holiday calendar", - "link": "https://news.yahoo.com/dates-christmas-st-nicholas-day-124100549.html", - "pubDate": "2023-11-30T12:41:00Z", - "guid": "dates-christmas-st-nicholas-day-124100549.html", - "isoDate": "2023-11-30T12:41:00.000Z" - }, - { - "title": "Russia has a 'high tolerance' for losses after losing 100s of aircraft, 1000s of tanks, and more than 300,000 men in Ukraine, NATO chief says", - "link": "https://news.yahoo.com/russia-high-tolerance-losses-losing-123751927.html", - "pubDate": "2023-11-30T12:37:51Z", - "guid": "russia-high-tolerance-losses-losing-123751927.html", - "isoDate": "2023-11-30T12:37:51.000Z" - }, - { - "title": "Russia targeted Ukraine\u2019s military facilities and critical infrastructure in latest drone attack", - "link": "https://news.yahoo.com/russia-targeted-ukraine-military-facilities-123400966.html", - "pubDate": "2023-11-30T12:34:00Z", - "guid": "russia-targeted-ukraine-military-facilities-123400966.html", - "isoDate": "2023-11-30T12:34:00.000Z" - }, - { - "title": "SBU investigates grenade attack on Zakarpattia village council", - "link": "https://news.yahoo.com/sbu-investigates-grenade-attack-zakarpattia-152300590.html", - "pubDate": "2023-12-15T15:23:00Z", - "guid": "sbu-investigates-grenade-attack-zakarpattia-152300590.html", - "isoDate": "2023-12-15T15:23:00.000Z" - }, - { - "title": "Truck traffic resumes at Ukraine-Slovakia border with \u2018only\u2019 a thousand vehicles in the queue", - "link": "https://news.yahoo.com/truck-traffic-resumes-ukraine-slovakia-134100669.html", - "pubDate": "2023-12-15T13:41:00Z", - "guid": "truck-traffic-resumes-ukraine-slovakia-134100669.html", - "isoDate": "2023-12-15T13:41:00.000Z" - }, - { - "title": "\u2018We can block it 75 more times\u2019 \u2013 Orban continues to threaten to halt Ukraine's EU accession process", - "link": "https://news.yahoo.com/block-75-more-times-orban-133400058.html", - "pubDate": "2023-12-15T13:34:00Z", - "guid": "block-75-more-times-orban-133400058.html", - "isoDate": "2023-12-15T13:34:00.000Z" - }, - { - "title": "Fearing death, Russian soldiers spend hours lying next to their dead comrades pretending to be dead", - "link": "https://news.yahoo.com/fearing-death-russian-soldiers-spend-122300713.html", - "pubDate": "2023-12-15T12:23:00Z", - "guid": "fearing-death-russian-soldiers-spend-122300713.html", - "isoDate": "2023-12-15T12:23:00.000Z" - }, - { - "title": "Lewis Hamilton on Sitting (Very) Still With Mountain Gorillas", - "link": "https://www.yahoo.com/lifestyle/lewis-hamilton-sitting-very-still-213000928.html", - "pubDate": "2023-12-15T12:00:00Z", - "guid": "lewis-hamilton-sitting-very-still-213000928.html", - "isoDate": "2023-12-15T12:00:00.000Z" - }, - { - "title": "Russia stripped of its Danube Commission membership over attacks on Lower Danube in Ukraine", - "link": "https://news.yahoo.com/russia-stripped-danube-commission-membership-111956741.html", - "pubDate": "2023-12-15T11:19:56Z", - "guid": "russia-stripped-danube-commission-membership-111956741.html", - "isoDate": "2023-12-15T11:19:56.000Z" - }, - { - "title": "3 checkpoints from Poland still blocked, with 2,600 lorries in queues", - "link": "https://news.yahoo.com/3-checkpoints-poland-still-blocked-083631314.html", - "pubDate": "2023-12-15T08:36:31Z", - "guid": "3-checkpoints-poland-still-blocked-083631314.html", - "isoDate": "2023-12-15T08:36:31.000Z" - }, - { - "title": "Air defense downs 14 Russian drones overnight", - "link": "https://news.yahoo.com/air-defense-downs-14-russian-055301562.html", - "pubDate": "2023-12-15T05:53:01Z", - "guid": "air-defense-downs-14-russian-055301562.html", - "isoDate": "2023-12-15T05:53:01.000Z" - }, - { - "title": "Dutch PM anticipates funding decision for Ukraine early in 2024", - "link": "https://news.yahoo.com/dutch-pm-anticipates-funding-decision-052557395.html", - "pubDate": "2023-12-15T05:25:57Z", - "guid": "dutch-pm-anticipates-funding-decision-052557395.html", - "isoDate": "2023-12-15T05:25:57.000Z" - }, - { - "title": "Lisbon\u2019s Hot Housing Market Defies Push to Deter Foreign Buyers", - "link": "https://news.yahoo.com/lisbon-hot-housing-market-defies-050000477.html", - "pubDate": "2023-12-15T05:00:00Z", - "guid": "lisbon-hot-housing-market-defies-050000477.html", - "isoDate": "2023-12-15T05:00:00.000Z" - }, - { - "title": "Africa's week in pictures: 8-14 December 2023", - "link": "https://news.yahoo.com/africas-week-pictures-8-14-030427039.html", - "pubDate": "2023-12-15T03:04:27Z", - "guid": "africas-week-pictures-8-14-030427039.html", - "isoDate": "2023-12-15T03:04:27.000Z" - }, - { - "title": "Orb\u00e1n blocks EU \u20ac50 billion budget spending for Ukraine", - "link": "https://news.yahoo.com/orb-n-blocks-eu-50-025023171.html", - "pubDate": "2023-12-15T02:50:23Z", - "guid": "orb-n-blocks-eu-50-025023171.html", - "isoDate": "2023-12-15T02:50:23.000Z" - }, - { - "title": "Orb\u00e1n's advisor says EU needs to overcome Hungarian veto 70 times more for Ukraine to join", - "link": "https://news.yahoo.com/orb-ns-advisor-says-eu-235833239.html", - "pubDate": "2023-12-14T23:58:33Z", - "guid": "orb-ns-advisor-says-eu-235833239.html", - "isoDate": "2023-12-14T23:58:33.000Z" - }, - { - "title": "Finland to Close Russian Border Again in Sudden Reversal", - "link": "https://news.yahoo.com/finland-close-russian-border-again-164858421.html", - "pubDate": "2023-12-14T16:48:58Z", - "guid": "finland-close-russian-border-again-164858421.html", - "isoDate": "2023-12-14T16:48:58.000Z" - }, - { - "title": "Zelenskyy warns of endless internal conflicts in EU due to indecision on Ukraine", - "link": "https://news.yahoo.com/zelenskyy-warns-endless-internal-conflicts-130011095.html", - "pubDate": "2023-12-14T13:00:11Z", - "guid": "zelenskyy-warns-endless-internal-conflicts-130011095.html", - "isoDate": "2023-12-14T13:00:11.000Z" - }, - { - "title": "Meta Lets EU Users Sign Up to Threads Without an Instagram Link", - "link": "https://news.yahoo.com/meta-lets-eu-users-sign-125211924.html", - "pubDate": "2023-12-14T12:52:11Z", - "guid": "meta-lets-eu-users-sign-125211924.html", - "isoDate": "2023-12-14T12:52:11.000Z" - }, - { - "title": "China, Philippines Cooperate on Gambling Bust Involving 180", - "link": "https://news.yahoo.com/china-philippines-cooperate-gambling-bust-121001690.html", - "pubDate": "2023-12-14T12:10:01Z", - "guid": "china-philippines-cooperate-gambling-bust-121001690.html", - "isoDate": "2023-12-14T12:10:01.000Z" - }, - { - "title": "Putin asked about how war will end, Russia's next president and food prices \u2013 photo", - "link": "https://news.yahoo.com/putin-asked-war-end-russias-112211921.html", - "pubDate": "2023-12-14T11:22:11Z", - "guid": "putin-asked-war-end-russias-112211921.html", - "isoDate": "2023-12-14T11:22:11.000Z" - }, - { - "title": "How immigration is dominating politics across Europe", - "link": "https://news.yahoo.com/immigration-dominating-politics-across-europe-111856512.html", - "pubDate": "2023-12-14T11:18:56Z", - "guid": "immigration-dominating-politics-across-europe-111856512.html", - "isoDate": "2023-12-14T11:18:56.000Z" - }, - { - "title": "HUR behind night drone attack on Russian military bases \u2014 NV sources", - "link": "https://news.yahoo.com/hur-behind-night-drone-attack-111400271.html", - "pubDate": "2023-12-14T11:14:00Z", - "guid": "hur-behind-night-drone-attack-111400271.html", - "isoDate": "2023-12-14T11:14:00.000Z" - }, - { - "title": "13 more different types of ammunition approved for use in Armed Forces \u2013 Ukraine's Defence Ministry", - "link": "https://news.yahoo.com/13-more-different-types-ammunition-111031254.html", - "pubDate": "2023-12-14T11:10:31Z", - "guid": "13-more-different-types-ammunition-111031254.html", - "isoDate": "2023-12-14T11:10:31.000Z" - }, - { - "title": "\u2018We are stronger together\u2019: Zelensky invites Poland\u2019s Tusk to visit Ukraine", - "link": "https://news.yahoo.com/stronger-together-zelensky-invites-poland-104500762.html", - "pubDate": "2023-12-14T10:45:00Z", - "guid": "stronger-together-zelensky-invites-poland-104500762.html", - "isoDate": "2023-12-14T10:45:00.000Z" - }, - { - "title": "German Chancellor promises to seek agreement of EU summit on negotiations with Ukraine", - "link": "https://news.yahoo.com/german-chancellor-promises-seek-agreement-104022548.html", - "pubDate": "2023-12-14T10:40:22Z", - "guid": "german-chancellor-promises-seek-agreement-104022548.html", - "isoDate": "2023-12-14T10:40:22.000Z" - }, - { - "title": "Putin tells Russians the war in Ukraine will go on unless Kyiv does a deal", - "link": "https://finance.yahoo.com/news/putin-tells-russians-war-ukraine-101139816.html", - "pubDate": "2023-12-14T10:11:39Z", - "guid": "putin-tells-russians-war-ukraine-101139816.html", - "isoDate": "2023-12-14T10:11:39.000Z" - }, - { - "title": "The war will end when we achieve our goals \u2013 Putin", - "link": "https://news.yahoo.com/war-end-achieve-goals-putin-100915250.html", - "pubDate": "2023-12-14T10:09:15Z", - "guid": "war-end-achieve-goals-putin-100915250.html", - "isoDate": "2023-12-14T10:09:15.000Z" - }, - { - "title": "Russian paratroopers suffer huge losses near Krynky in Kherson Oblast \u2013 UK Defence Intelligence", - "link": "https://news.yahoo.com/russian-paratroopers-suffer-huge-losses-095724043.html", - "pubDate": "2023-12-14T09:57:24Z", - "guid": "russian-paratroopers-suffer-huge-losses-095724043.html", - "isoDate": "2023-12-14T09:57:24.000Z" - }, - { - "title": "Dutch PM confident he will be able to convince Orb\u00e1n to vote for Ukraine", - "link": "https://news.yahoo.com/dutch-pm-confident-able-convince-095143906.html", - "pubDate": "2023-12-14T09:51:43Z", - "guid": "dutch-pm-confident-able-convince-095143906.html", - "isoDate": "2023-12-14T09:51:43.000Z" - }, - { - "title": "Japan\u2019s Kishida Removes Ministers in Bid to Stay in Power", - "link": "https://news.yahoo.com/japan-kishida-reshuffle-cabinet-bid-003542508.html", - "pubDate": "2023-12-14T08:53:11Z", - "guid": "japan-kishida-reshuffle-cabinet-bid-003542508.html", - "isoDate": "2023-12-14T08:53:11.000Z" - }, - { - "title": "EU official says they are fed up with Hungary's antics", - "link": "https://news.yahoo.com/eu-official-says-fed-hungarys-084109485.html", - "pubDate": "2023-12-14T08:41:09Z", - "guid": "eu-official-says-fed-hungarys-084109485.html", - "isoDate": "2023-12-14T08:41:09.000Z" - }, - { - "title": "Transnet Halts Plan to Allow Private Companies to Operate Key Rail Line", - "link": "https://news.yahoo.com/transnet-halts-plan-allow-private-072353490.html", - "pubDate": "2023-12-14T07:23:53Z", - "guid": "transnet-halts-plan-allow-private-072353490.html", - "isoDate": "2023-12-14T07:23:53.000Z" - }, - { - "title": "Missile strike on Ukraine's south: woman killed in Kherson Oblast", - "link": "https://news.yahoo.com/missile-strike-ukraines-south-woman-070006650.html", - "pubDate": "2023-12-14T07:00:06Z", - "guid": "missile-strike-ukraines-south-woman-070006650.html", - "isoDate": "2023-12-14T07:00:06.000Z" - }, - { - "title": "Cameron Green: Australia all-rounder suffering from chronic kidney disease", - "link": "https://sports.yahoo.com/cameron-green-australia-rounder-suffering-064804165.html", - "pubDate": "2023-12-14T06:48:04Z", - "guid": "cameron-green-australia-rounder-suffering-064804165.html", - "isoDate": "2023-12-14T06:48:04.000Z" - }, - { - "title": "Banners calling for end to war in Gaza destroyed", - "link": "https://news.yahoo.com/banners-calling-end-war-gaza-062549887.html", - "pubDate": "2023-12-14T06:25:49Z", - "guid": "banners-calling-end-war-gaza-062549887.html", - "isoDate": "2023-12-14T06:25:49.000Z" - }, - { - "title": "Zelenskyy and Poland's new PM conduct first phone conversation", - "link": "https://news.yahoo.com/zelenskyy-polands-pm-conduct-first-061715556.html", - "pubDate": "2023-12-14T06:17:15Z", - "guid": "zelenskyy-polands-pm-conduct-first-061715556.html", - "isoDate": "2023-12-14T06:17:15.000Z" - }, - { - "title": "South Africa Takes a Major Step Toward Fixing Work Visa Mess", - "link": "https://news.yahoo.com/south-africa-takes-major-step-182523475.html", - "pubDate": "2023-12-14T06:03:04Z", - "guid": "south-africa-takes-major-step-182523475.html", - "isoDate": "2023-12-14T06:03:04.000Z" - }, - { - "title": "Gaza faces 'perfect storm' of deadly diseases", - "link": "https://finance.yahoo.com/news/gaza-faces-perfect-storm-deadly-060000355.html", - "pubDate": "2023-12-14T06:00:00Z", - "guid": "gaza-faces-perfect-storm-deadly-060000355.html", - "isoDate": "2023-12-14T06:00:00.000Z" - }, - { - "title": "Number of Russian attacks increases drastically on Avdiivka front \u2013 General Staff report", - "link": "https://news.yahoo.com/number-russian-attacks-increases-drastically-052346316.html", - "pubDate": "2023-12-14T05:23:46Z", - "guid": "number-russian-attacks-increases-drastically-052346316.html", - "isoDate": "2023-12-14T05:23:46.000Z" - }, - { - "title": "Brazil's Senate approves Lula ally as new Supreme Court justice", - "link": "https://news.yahoo.com/brazils-senate-approves-lula-ally-012141137.html", - "pubDate": "2023-12-14T01:21:41Z", - "guid": "brazils-senate-approves-lula-ally-012141137.html", - "isoDate": "2023-12-14T01:21:41.000Z" - }, - { - "title": "Borrell to visit Ukraine after Christmas", - "link": "https://news.yahoo.com/borrell-visit-ukraine-christmas-002009795.html", - "pubDate": "2023-12-14T00:20:09Z", - "guid": "borrell-visit-ukraine-christmas-002009795.html", - "isoDate": "2023-12-14T00:20:09.000Z" - }, - { - "title": "EU to deliver 500,000 out of promised 1 million shells to Ukraine by year's end \u2014 report", - "link": "https://news.yahoo.com/eu-deliver-500-000-promised-000700471.html", - "pubDate": "2023-12-14T00:07:00Z", - "guid": "eu-deliver-500-000-promised-000700471.html", - "isoDate": "2023-12-14T00:07:00.000Z" - }, - { - "title": "Zelenskyy talks on phone with European Council President Michel", - "link": "https://news.yahoo.com/zelenskyy-talks-phone-european-council-233641332.html", - "pubDate": "2023-12-13T23:36:41Z", - "guid": "zelenskyy-talks-phone-european-council-233641332.html", - "isoDate": "2023-12-13T23:36:41.000Z" - }, - { - "title": "Tropical Cyclone Jasper weakens while still lashing northeastern Australia with flooding rain", - "link": "https://news.yahoo.com/tropical-cyclone-jasper-weakens-while-223504649.html", - "pubDate": "2023-12-13T22:35:04Z", - "guid": "tropical-cyclone-jasper-weakens-while-223504649.html", - "isoDate": "2023-12-13T22:35:04.000Z" - }, - { - "title": "Global media company takes a stand against antisemitism amid Israel-Hamas conflict", - "link": "https://news.yahoo.com/global-media-company-takes-stand-220617590.html", - "pubDate": "2023-12-13T22:06:17Z", - "guid": "global-media-company-takes-stand-220617590.html", - "isoDate": "2023-12-13T22:06:17.000Z" - }, - { - "title": "Russians launch assault UAVs, danger of missile attack reported in several areas", - "link": "https://news.yahoo.com/russians-launch-assault-uavs-danger-220548388.html", - "pubDate": "2023-12-13T22:05:48Z", - "guid": "russians-launch-assault-uavs-danger-220548388.html", - "isoDate": "2023-12-13T22:05:48.000Z" - }, - { - "title": "Kyivstar\u2019s competitors can only absorb a 10% increase in subscribers", - "link": "https://news.yahoo.com/kyivstar-competitors-only-absorb-10-215000739.html", - "pubDate": "2023-12-13T21:50:00Z", - "guid": "kyivstar-competitors-only-absorb-10-215000739.html", - "isoDate": "2023-12-13T21:50:00.000Z" - }, - { - "title": "Russians launch attack UAVs from several directions, explosions rock Odesa", - "link": "https://news.yahoo.com/russians-launch-attack-uavs-several-202048577.html", - "pubDate": "2023-12-13T21:42:48Z", - "guid": "russians-launch-attack-uavs-several-202048577.html", - "isoDate": "2023-12-13T21:42:48.000Z" - }, - { - "title": "Refaat Alareer: UCL urged to issue statement on ex student's death", - "link": "https://news.yahoo.com/refaat-alareer-ucl-urged-issue-211528390.html", - "pubDate": "2023-12-13T21:15:28Z", - "guid": "refaat-alareer-ucl-urged-issue-211528390.html", - "isoDate": "2023-12-13T21:15:28.000Z" - }, - { - "title": "'We have to endure' - Argentines stoic as prices skyrocket", - "link": "https://news.yahoo.com/endure-argentines-stoic-prices-skyrocket-211430326.html", - "pubDate": "2023-12-13T21:14:30Z", - "guid": "endure-argentines-stoic-prices-skyrocket-211430326.html", - "isoDate": "2023-12-13T21:14:30.000Z" - }, - { - "title": "Ukraine faces second day of huge phone and internet outage after suspected Russian cyberattack", - "link": "https://news.yahoo.com/ukraine-faces-second-day-huge-210905450.html", - "pubDate": "2023-12-13T21:09:05Z", - "guid": "ukraine-faces-second-day-huge-210905450.html", - "isoDate": "2023-12-13T21:09:05.000Z" - }, - { - "title": "Scientists Preparing to Turn on Computer Intended to Simulate Entire Human Brain", - "link": "https://news.yahoo.com/scientists-preparing-turn-computer-intended-204508410.html", - "pubDate": "2023-12-13T20:45:08Z", - "guid": "scientists-preparing-turn-computer-intended-204508410.html", - "isoDate": "2023-12-13T20:45:08.000Z" - }, - { - "title": "The 21 best winter coats for women for 2023, according to experts", - "link": "https://www.yahoo.com/lifestyle/best-winter-jackets-coats-150935070.html", - "pubDate": "2023-12-15T15:09:35Z", - "guid": "best-winter-jackets-coats-150935070.html", - "isoDate": "2023-12-15T15:09:35.000Z" - }, - { - "title": "Hamas hostages: Stories of the people taken from Israel", - "link": "https://news.yahoo.com/hamas-hostages-people-taken-israel-154911569.html", - "pubDate": "2023-12-15T13:46:05Z", - "guid": "hamas-hostages-people-taken-israel-154911569.html", - "isoDate": "2023-12-15T13:46:05.000Z" - }, - { - "title": "Gerson: Attack on Israel makes this year's Chanukah somewhat bittersweet", - "link": "https://news.yahoo.com/gerson-attack-israel-makes-years-090513164.html", - "pubDate": "2023-12-15T09:05:13Z", - "guid": "gerson-attack-israel-makes-years-090513164.html", - "isoDate": "2023-12-15T09:05:13.000Z" - }, - { - "title": "Fifth column or useful idiot? Hungary\u2019s Orban blocks \u20ac50 billion in EU aid for Ukraine", - "link": "https://news.yahoo.com/fifth-column-useful-idiot-hungary-065800749.html", - "pubDate": "2023-12-15T06:58:00Z", - "guid": "fifth-column-useful-idiot-hungary-065800749.html", - "isoDate": "2023-12-15T06:58:00.000Z" - }, - { - "title": "Russian drone crashing in Romania was unintentional, NATO says", - "link": "https://news.yahoo.com/russian-drone-crashing-romania-unintentional-195000083.html", - "pubDate": "2023-12-14T19:50:00Z", - "guid": "russian-drone-crashing-romania-unintentional-195000083.html", - "isoDate": "2023-12-14T19:50:00.000Z" - }, - { - "title": "\"Orb\u00e1n left the room when we voted\": EU official explains how decision to open accession talks with Ukraine was made", - "link": "https://news.yahoo.com/orb-n-left-room-voted-182619045.html", - "pubDate": "2023-12-14T18:26:19Z", - "guid": "orb-n-left-room-voted-182619045.html", - "isoDate": "2023-12-14T18:26:19.000Z" - }, - { - "title": "Germany delivers Patriot missile defense system, ammunition to Ukraine", - "link": "https://news.yahoo.com/germany-delivers-patriot-missile-defense-171214982.html", - "pubDate": "2023-12-14T17:12:14Z", - "guid": "germany-delivers-patriot-missile-defense-171214982.html", - "isoDate": "2023-12-14T17:12:14.000Z" - }, - { - "title": "NATO sees no threat in Russian drone crash in Romania as it was unintentional", - "link": "https://news.yahoo.com/nato-sees-no-threat-russian-153853880.html", - "pubDate": "2023-12-14T15:38:53Z", - "guid": "nato-sees-no-threat-russian-153853880.html", - "isoDate": "2023-12-14T15:38:53.000Z" - }, - { - "title": "Pope Francis calls for binding global treaty to regulate AI", - "link": "https://finance.yahoo.com/news/pope-calls-binding-global-treaty-105514218.html", - "pubDate": "2023-12-14T10:55:14Z", - "guid": "pope-calls-binding-global-treaty-105514218.html", - "isoDate": "2023-12-14T10:55:14.000Z" - }, - { - "title": "Joshua Mollel: Tanzania says student killed in Israel by Hamas", - "link": "https://news.yahoo.com/joshua-mollel-tanzania-says-student-085636506.html", - "pubDate": "2023-12-14T09:55:48Z", - "guid": "joshua-mollel-tanzania-says-student-085636506.html", - "isoDate": "2023-12-14T09:55:48.000Z" - }, - { - "title": "Reporter's Notebook: Israel-Hamas war continues on deadly day for Israel, but its 'determination remains'", - "link": "https://news.yahoo.com/reporters-notebook-israel-hamas-war-185844468.html", - "pubDate": "2023-12-13T18:58:44Z", - "guid": "reporters-notebook-israel-hamas-war-185844468.html", - "isoDate": "2023-12-13T18:58:44.000Z" - }, - { - "title": "\u2018Putin is a terrible dictator\u2019 \u2014 Geert Wilders", - "link": "https://news.yahoo.com/putin-terrible-dictator-geert-wilders-185000819.html", - "pubDate": "2023-12-13T18:50:00Z", - "guid": "putin-terrible-dictator-geert-wilders-185000819.html", - "isoDate": "2023-12-13T18:50:00.000Z" - }, - { - "title": "12-year-old Indian activist Licypriya Kangujam interrupts COP28 stage in Dubai", - "link": "https://news.yahoo.com/12-old-indian-activist-licypriya-182337355.html", - "pubDate": "2023-12-13T18:23:37Z", - "guid": "12-old-indian-activist-licypriya-182337355.html", - "isoDate": "2023-12-13T18:23:37.000Z" - }, - { - "title": "Pope confirms plans to visit home Argentina after invitation from once-fierce critic President Javier Milei", - "link": "https://news.yahoo.com/pope-confirms-plans-visit-home-180826330.html", - "pubDate": "2023-12-13T18:08:26Z", - "guid": "pope-confirms-plans-visit-home-180826330.html", - "isoDate": "2023-12-13T18:08:26.000Z" - }, - { - "title": "Suspended MP Peter Bone returns to vote for Rwanda bill", - "link": "https://news.yahoo.com/suspended-mp-peter-bone-returns-180137515.html", - "pubDate": "2023-12-13T18:01:37Z", - "guid": "suspended-mp-peter-bone-returns-180137515.html", - "isoDate": "2023-12-13T18:01:37.000Z" - }, - { - "title": "EU Unlocks \u20ac10 Billion for Hungary in Boost for Orban", - "link": "https://news.yahoo.com/eu-unlocks-10-billion-hungary-170053143.html", - "pubDate": "2023-12-13T17:00:53Z", - "guid": "eu-unlocks-10-billion-hungary-170053143.html", - "isoDate": "2023-12-13T17:00:53.000Z" - }, - { - "title": "European Parliament calls for swift EU expansion talks with Ukraine", - "link": "https://news.yahoo.com/european-parliament-calls-swift-eu-170000872.html", - "pubDate": "2023-12-13T17:00:00Z", - "guid": "european-parliament-calls-swift-eu-170000872.html", - "isoDate": "2023-12-13T17:00:00.000Z" - }, - { - "title": "Russian hacker group claims responsibility for Kyivstar cyberattack", - "link": "https://news.yahoo.com/russian-hacker-group-claims-responsibility-161920251.html", - "pubDate": "2023-12-13T16:19:20Z", - "guid": "russian-hacker-group-claims-responsibility-161920251.html", - "isoDate": "2023-12-13T16:19:20.000Z" - }, - { - "title": "Spanish Prime Minister wants EU negotiations with Ukraine to start by the end of year", - "link": "https://news.yahoo.com/spanish-prime-minister-wants-eu-161028453.html", - "pubDate": "2023-12-13T16:10:28Z", - "guid": "spanish-prime-minister-wants-eu-161028453.html", - "isoDate": "2023-12-13T16:10:28.000Z" - }, - { - "title": "Orlando Science Center preps Paleontology Party", - "link": "https://news.yahoo.com/orlando-science-center-preps-paleontology-160700551.html", - "pubDate": "2023-12-13T16:07:00Z", - "guid": "orlando-science-center-preps-paleontology-160700551.html", - "isoDate": "2023-12-13T16:07:00.000Z" - }, - { - "title": "Italian chess sets, Apple Watches, crystal tableware: some General Staff purchases raise questions in media", - "link": "https://news.yahoo.com/italian-chess-sets-apple-watches-154719622.html", - "pubDate": "2023-12-13T15:47:19Z", - "guid": "italian-chess-sets-apple-watches-154719622.html", - "isoDate": "2023-12-13T15:47:19.000Z" - }, - { - "title": "COP28 nets first-ever global climate deal for transition away from fossil fuels", - "link": "https://news.yahoo.com/cop28-nets-first-ever-global-153522877.html", - "pubDate": "2023-12-13T15:35:22Z", - "guid": "cop28-nets-first-ever-global-153522877.html", - "isoDate": "2023-12-13T15:35:22.000Z" - }, - { - "title": "Video shows tree explode after lightning strike as man narrowly avoids being crushed by falling limbs", - "link": "https://news.yahoo.com/video-shows-tree-explode-lightning-153404505.html", - "pubDate": "2023-12-13T15:34:04Z", - "guid": "video-shows-tree-explode-lightning-153404505.html", - "isoDate": "2023-12-13T15:34:04.000Z" - }, - { - "title": "Nova Poshta enters the Italian market with 80th European branch", - "link": "https://news.yahoo.com/nova-poshta-enters-italian-market-153000682.html", - "pubDate": "2023-12-13T15:30:00Z", - "guid": "nova-poshta-enters-italian-market-153000682.html", - "isoDate": "2023-12-13T15:30:00.000Z" - }, - { - "title": "Hackers linked to Russian spy agency claim cyberattack on Ukrainian cell network", - "link": "https://finance.yahoo.com/news/ukraine-says-russian-intelligence-linked-151957151.html", - "pubDate": "2023-12-13T15:19:57Z", - "guid": "ukraine-says-russian-intelligence-linked-151957151.html", - "isoDate": "2023-12-13T15:19:57.000Z" - }, - { - "title": "South Africa Aims to Fire Up Economic Growth With Port, Rail Revival", - "link": "https://news.yahoo.com/south-africa-aims-fire-economic-150050618.html", - "pubDate": "2023-12-13T15:00:50Z", - "guid": "south-africa-aims-fire-economic-150050618.html", - "isoDate": "2023-12-13T15:00:50.000Z" - }, - { - "title": "Zelensky 'still waiting for answer' from Orban on why Ukraine should not join EU", - "link": "https://news.yahoo.com/zelensky-still-waiting-answer-orban-150022361.html", - "pubDate": "2023-12-13T15:00:22Z", - "guid": "zelensky-still-waiting-answer-orban-150022361.html", - "isoDate": "2023-12-13T15:00:22.000Z" - }, - { - "title": "Ammunition, tanks and drones: Denmark prepares \u20ac1 billion aid package for Ukraine", - "link": "https://news.yahoo.com/ammunition-tanks-drones-denmark-prepares-145521269.html", - "pubDate": "2023-12-13T14:55:21Z", - "guid": "ammunition-tanks-drones-denmark-prepares-145521269.html", - "isoDate": "2023-12-13T14:55:21.000Z" - }, - { - "title": "Yandex Founder Seeks Sanctions Removal After Condemning Russia\u2019s Invasion", - "link": "https://news.yahoo.com/yandex-founder-seeks-sanctions-removal-144109987.html", - "pubDate": "2023-12-13T14:41:09Z", - "guid": "yandex-founder-seeks-sanctions-removal-144109987.html", - "isoDate": "2023-12-13T14:41:09.000Z" - }, - { - "title": "We must live up to our commitments to Ukraine \u2013 European Council President ahead of key EU summit", - "link": "https://news.yahoo.com/must-live-commitments-ukraine-european-143347022.html", - "pubDate": "2023-12-13T14:33:47Z", - "guid": "must-live-commitments-ukraine-european-143347022.html", - "isoDate": "2023-12-13T14:33:47.000Z" - }, - { - "title": "European Parliament condemns Orb\u00e1n and urges EU to approve opening of membership talks with Ukraine", - "link": "https://news.yahoo.com/european-parliament-condemns-orb-n-134437639.html", - "pubDate": "2023-12-13T13:44:37Z", - "guid": "european-parliament-condemns-orb-n-134437639.html", - "isoDate": "2023-12-13T13:44:37.000Z" - }, - { - "title": "Give me one reason why Ukraine shouldn't be in the EU, Zelenskyy tells Orb\u00e1n", - "link": "https://news.yahoo.com/one-reason-why-ukraine-shouldnt-132400470.html", - "pubDate": "2023-12-13T13:24:00Z", - "guid": "one-reason-why-ukraine-shouldnt-132400470.html", - "isoDate": "2023-12-13T13:24:00.000Z" - }, - { - "title": "European Commission anticipates new procedure for accession negotiations for Ukraine", - "link": "https://news.yahoo.com/european-commission-anticipates-procedure-accession-132229819.html", - "pubDate": "2023-12-13T13:22:29Z", - "guid": "european-commission-anticipates-procedure-accession-132229819.html", - "isoDate": "2023-12-13T13:22:29.000Z" - }, - { - "title": "Germany presents details of agreement on 2024 budget with 8 billion euros for Ukraine", - "link": "https://news.yahoo.com/germany-presents-details-agreement-2024-132048776.html", - "pubDate": "2023-12-13T13:20:48Z", - "guid": "germany-presents-details-agreement-2024-132048776.html", - "isoDate": "2023-12-13T13:20:48.000Z" - }, - { - "title": "If Hungary blocks EU decision, it will mean Putin vetoed it \u2013 Zelenskyy", - "link": "https://news.yahoo.com/hungary-blocks-eu-decision-mean-130701137.html", - "pubDate": "2023-12-13T13:07:01Z", - "guid": "hungary-blocks-eu-decision-mean-130701137.html", - "isoDate": "2023-12-13T13:07:01.000Z" - }, - { - "title": "Fico confirms Slovakia not in opposition to Ukraine's EU accession talks", - "link": "https://news.yahoo.com/fico-confirms-slovakia-not-opposition-122701145.html", - "pubDate": "2023-12-13T12:27:01Z", - "guid": "fico-confirms-slovakia-not-opposition-122701145.html", - "isoDate": "2023-12-13T12:27:01.000Z" - }, - { - "title": "Without aid, we'll have to fight as in first days of Russia's invasion \u2013 Zelenskyy", - "link": "https://news.yahoo.com/without-aid-well-fight-first-114811106.html", - "pubDate": "2023-12-13T11:48:11Z", - "guid": "without-aid-well-fight-first-114811106.html", - "isoDate": "2023-12-13T11:48:11.000Z" - }, - { - "title": "Rishi Sunak seeks to defuse Tory revolt ahead of Rwanda vote", - "link": "https://news.yahoo.com/rishi-sunak-faces-crunch-rwanda-204512739.html", - "pubDate": "2023-12-13T11:12:59Z", - "guid": "rishi-sunak-faces-crunch-rwanda-204512739.html", - "isoDate": "2023-12-13T11:12:59.000Z" - }, - { - "title": "\"Japanese publishers need Xbox to expand,\" says ex-PlayStation exec as Microsoft gets serious about Japan", - "link": "https://finance.yahoo.com/news/japanese-publishers-xbox-expand-says-111155622.html", - "pubDate": "2023-12-13T11:11:55Z", - "guid": "japanese-publishers-xbox-expand-says-111155622.html", - "isoDate": "2023-12-13T11:11:55.000Z" - }, - { - "title": "More than 4,000 lorries queuing at borders of Ukraine \u2013 State Border Guard Service", - "link": "https://news.yahoo.com/more-4-000-lorries-queuing-105459667.html", - "pubDate": "2023-12-13T10:54:59Z", - "guid": "more-4-000-lorries-queuing-105459667.html", - "isoDate": "2023-12-13T10:54:59.000Z" - }, - { - "title": "Ukraine can import up to 1.7 GW of electricity from EU", - "link": "https://news.yahoo.com/ukraine-import-1-7-gw-105120326.html", - "pubDate": "2023-12-13T10:51:20Z", - "guid": "ukraine-import-1-7-gw-105120326.html", - "isoDate": "2023-12-13T10:51:20.000Z" - }, - { - "title": "Jessen: What I learned about religion talking to a craftsman in Egypt", - "link": "https://news.yahoo.com/jessen-learned-religion-talking-craftsman-102504709.html", - "pubDate": "2023-12-15T10:25:04Z", - "guid": "jessen-learned-religion-talking-craftsman-102504709.html", - "isoDate": "2023-12-15T10:25:04.000Z" - }, - { - "title": "India Court Allows Survey of Mosque in New Muslim-Hindu Dispute", - "link": "https://news.yahoo.com/india-court-allows-survey-mosque-015028509.html", - "pubDate": "2023-12-15T01:50:28Z", - "guid": "india-court-allows-survey-mosque-015028509.html", - "isoDate": "2023-12-15T01:50:28.000Z" - }, - { - "title": "Germany delivers second Patriot system to Ukraine in new aid package", - "link": "https://news.yahoo.com/germany-delivers-second-patriot-system-205000910.html", - "pubDate": "2023-12-14T20:50:00Z", - "guid": "germany-delivers-second-patriot-system-205000910.html", - "isoDate": "2023-12-14T20:50:00.000Z" - }, - { - "title": "Zelenskyy speaks to Michel and Macron after EU's historic decision", - "link": "https://news.yahoo.com/zelenskyy-speaks-michel-macron-eus-202535206.html", - "pubDate": "2023-12-14T20:25:35Z", - "guid": "zelenskyy-speaks-michel-macron-eus-202535206.html", - "isoDate": "2023-12-14T20:25:35.000Z" - }, - { - "title": "Hungry, thirsty and humiliated: Israel's mass arrest campaign sows fear in northern Gaza", - "link": "https://news.yahoo.com/hungry-thirsty-humiliated-israels-mass-192749995.html", - "pubDate": "2023-12-14T19:27:49Z", - "guid": "hungry-thirsty-humiliated-israels-mass-192749995.html", - "isoDate": "2023-12-14T19:27:49.000Z" - }, - { - "title": "James May: Our Man in India: release date, destinations, episode guide, exclusive interview and everything you need to know", - "link": "https://www.yahoo.com/entertainment/james-may-man-india-release-180848310.html", - "pubDate": "2023-12-14T18:08:48Z", - "guid": "james-may-man-india-release-180848310.html", - "isoDate": "2023-12-14T18:08:48.000Z" - }, - { - "title": "EU leaders support opening accession talks with Ukraine \u2013 Charles Michel", - "link": "https://news.yahoo.com/eu-leaders-support-opening-accession-173134172.html", - "pubDate": "2023-12-14T17:31:34Z", - "guid": "eu-leaders-support-opening-accession-173134172.html", - "isoDate": "2023-12-14T17:31:34.000Z" - }, - { - "title": "Turkish lawmaker who suffered heart attack after saying Israel will suffer 'the wrath of God' has died", - "link": "https://news.yahoo.com/turkish-lawmaker-suffered-heart-attack-172029775.html", - "pubDate": "2023-12-14T17:20:29Z", - "guid": "turkish-lawmaker-suffered-heart-attack-172029775.html", - "isoDate": "2023-12-14T17:20:29.000Z" - }, - { - "title": "EU Seeks Ukraine Aid Deal With 26 Nations to Press Holdout Orban", - "link": "https://news.yahoo.com/eu-seeks-ukraine-aid-deal-171414666.html", - "pubDate": "2023-12-14T17:14:14Z", - "guid": "eu-seeks-ukraine-aid-deal-171414666.html", - "isoDate": "2023-12-14T17:14:14.000Z" - }, - { - "title": "Netherlands\u2019 PM Rutte emphasizes prolonged timeline for Ukraine\u2019s EU accession", - "link": "https://news.yahoo.com/netherlands-pm-rutte-emphasizes-prolonged-144700773.html", - "pubDate": "2023-12-14T14:47:00Z", - "guid": "netherlands-pm-rutte-emphasizes-prolonged-144700773.html", - "isoDate": "2023-12-14T14:47:00.000Z" - }, - { - "title": "Putin parrots worn propaganda tropes at first public call-in marathon since 2021", - "link": "https://news.yahoo.com/putin-parrots-worn-propaganda-tropes-143100561.html", - "pubDate": "2023-12-14T14:31:00Z", - "guid": "putin-parrots-worn-propaganda-tropes-143100561.html", - "isoDate": "2023-12-14T14:31:00.000Z" - }, - { - "title": "South Korea, Japan scramble jets after China, Russia warplanes spotted entering Seoul's defense zone", - "link": "https://news.yahoo.com/south-korea-japan-scramble-jets-142935191.html", - "pubDate": "2023-12-14T14:29:35Z", - "guid": "south-korea-japan-scramble-jets-142935191.html", - "isoDate": "2023-12-14T14:29:35.000Z" - }, - { - "title": "Russians attack power plant in eastern Ukraine, equipment damaged", - "link": "https://news.yahoo.com/russians-attack-power-plant-eastern-131200244.html", - "pubDate": "2023-12-14T13:12:00Z", - "guid": "russians-attack-power-plant-eastern-131200244.html", - "isoDate": "2023-12-14T13:12:00.000Z" - }, - { - "title": "Spanish properties of former Odesa chief enlistment officer searched: assets seized \u2013 photo", - "link": "https://news.yahoo.com/spanish-properties-former-odesa-chief-093318608.html", - "pubDate": "2023-12-14T09:33:18Z", - "guid": "spanish-properties-former-odesa-chief-093318608.html", - "isoDate": "2023-12-14T09:33:18.000Z" - }, - { - "title": "DR Congo election: 'We would vote for peace - if we had a vote'", - "link": "https://news.yahoo.com/dr-congo-election-vote-peace-004328299.html", - "pubDate": "2023-12-14T09:20:28Z", - "guid": "dr-congo-election-vote-peace-004328299.html", - "isoDate": "2023-12-14T09:20:28.000Z" - }, - { - "title": "EU representative Borrell plans to return to Ukraine in December", - "link": "https://news.yahoo.com/eu-representative-borrell-plans-return-062400972.html", - "pubDate": "2023-12-14T06:24:00Z", - "guid": "eu-representative-borrell-plans-return-062400972.html", - "isoDate": "2023-12-14T06:24:00.000Z" - }, - { - "title": "Russians put Ukraine's intelligence chief on wanted list", - "link": "https://news.yahoo.com/russians-put-ukraines-intelligence-chief-021812225.html", - "pubDate": "2023-12-14T02:18:12Z", - "guid": "russians-put-ukraines-intelligence-chief-021812225.html", - "isoDate": "2023-12-14T02:18:12.000Z" - }, - { - "title": "HK Corporate Governance Tumbles to Decades Low", - "link": "https://news.yahoo.com/hk-corporate-governance-tumbles-decades-021248527.html", - "pubDate": "2023-12-14T02:12:48Z", - "guid": "hk-corporate-governance-tumbles-decades-021248527.html", - "isoDate": "2023-12-14T02:12:48.000Z" - }, - { - "title": "Intruders Breach Indian Parliament Security\u00a0on Shootout Anniversary", - "link": "https://news.yahoo.com/india-parliament-lower-house-adjourned-082943978.html", - "pubDate": "2023-12-14T01:13:42Z", - "guid": "india-parliament-lower-house-adjourned-082943978.html", - "isoDate": "2023-12-14T01:13:42.000Z" - }, - { - "title": "Guyana president calls Venezuela's Maduro an 'outlaw' in border dispute", - "link": "https://news.yahoo.com/guyana-president-calls-venezuelas-maduro-000905554.html", - "pubDate": "2023-12-14T00:09:05Z", - "guid": "guyana-president-calls-venezuelas-maduro-000905554.html", - "isoDate": "2023-12-14T00:09:05.000Z" - }, - { - "title": "Kyivstar attack carried out via compromised employee account, company says", - "link": "https://news.yahoo.com/kyivstar-attack-carried-via-compromised-202000966.html", - "pubDate": "2023-12-13T20:20:00Z", - "guid": "kyivstar-attack-carried-via-compromised-202000966.html", - "isoDate": "2023-12-13T20:20:00.000Z" - }, - { - "title": "Local authorities prohibit Polish hauliers from blocking border in Dorohusk", - "link": "https://news.yahoo.com/local-authorities-prohibit-polish-road-200727451.html", - "pubDate": "2023-12-13T20:07:27Z", - "guid": "local-authorities-prohibit-polish-road-200727451.html", - "isoDate": "2023-12-13T20:07:27.000Z" - }, - { - "title": "German 2024 budget deal could spur EU agreement on budget revision", - "link": "https://finance.yahoo.com/news/german-2024-budget-deal-could-191037125.html", - "pubDate": "2023-12-13T19:10:37Z", - "guid": "german-2024-budget-deal-could-191037125.html", - "isoDate": "2023-12-13T19:10:37.000Z" - }, - { - "title": "Video from Syria misrepresented as Israeli snipers targeting Palestinian children", - "link": "https://news.yahoo.com/video-syria-misrepresented-israeli-snipers-190948995.html", - "pubDate": "2023-12-13T19:09:48Z", - "guid": "video-syria-misrepresented-israeli-snipers-190948995.html", - "isoDate": "2023-12-13T19:09:48.000Z" - }, - { - "title": "Eight-eyed grassland creature with \u2018fanglike\u2019 sex organ turns out to be new species", - "link": "https://news.yahoo.com/eight-eyed-grassland-creature-fanglike-183252231.html", - "pubDate": "2023-12-13T18:32:52Z", - "guid": "eight-eyed-grassland-creature-fanglike-183252231.html", - "isoDate": "2023-12-13T18:32:52.000Z" - }, - { - "title": "Facelifted Genesis G80 Has Fresher Looks, New 27-Inch Screen And More Knobs", - "link": "https://news.yahoo.com/facelifted-genesis-g80-fresher-looks-180500644.html", - "pubDate": "2023-12-13T18:05:00Z", - "guid": "facelifted-genesis-g80-fresher-looks-180500644.html", - "isoDate": "2023-12-13T18:05:00.000Z" - }, - { - "title": "89 combat clashes occur at front, Russians attack mostly on Avdiivka front \u2013 General Staff report", - "link": "https://news.yahoo.com/89-combat-clashes-occur-front-175354115.html", - "pubDate": "2023-12-13T17:53:54Z", - "guid": "89-combat-clashes-occur-front-175354115.html", - "isoDate": "2023-12-13T17:53:54.000Z" - }, - { - "title": "EU unfreezes \u20ac10 billion for Hungary ahead of Ukraine-focused summit", - "link": "https://news.yahoo.com/eu-unfreezes-10-billion-hungary-174243396.html", - "pubDate": "2023-12-13T17:42:43Z", - "guid": "eu-unfreezes-10-billion-hungary-174243396.html", - "isoDate": "2023-12-13T17:42:43.000Z" - }, - { - "title": "Kyivstar begins restoring services following cyberattack", - "link": "https://news.yahoo.com/kyivstar-begins-restoring-services-following-170135279.html", - "pubDate": "2023-12-13T17:01:35Z", - "guid": "kyivstar-begins-restoring-services-following-170135279.html", - "isoDate": "2023-12-13T17:01:35.000Z" - }, - { - "title": "Argentina to devalue peso by over 50% as part of emergency economic reforms", - "link": "https://finance.yahoo.com/news/argentina-devalue-peso-over-50-000416495.html", - "pubDate": "2023-12-13T14:35:12Z", - "guid": "argentina-devalue-peso-over-50-000416495.html", - "isoDate": "2023-12-13T14:35:12.000Z" - }, - { - "title": "F\u00e9lix Tshisekedi: The man who vowed to make DR Congo the 'Germany of Africa'", - "link": "https://news.yahoo.com/f-lix-tshisekedi-man-vowed-171523936.html", - "pubDate": "2023-12-15T17:24:14Z", - "guid": "f-lix-tshisekedi-man-vowed-171523936.html", - "isoDate": "2023-12-15T17:24:14.000Z" - }, - { - "title": "Moldova and Georgia celebrate as their aspirations for EU membership take crucial steps forward", - "link": "https://news.yahoo.com/moldova-georgia-celebrate-aspirations-eu-151011949.html", - "pubDate": "2023-12-15T15:10:11Z", - "guid": "moldova-georgia-celebrate-aspirations-eu-151011949.html", - "isoDate": "2023-12-15T15:10:11.000Z" - }, - { - "title": "Mariupol doctor who betrayed wounded Ukrainian soldiers to Russians is sentenced to life in prison", - "link": "https://news.yahoo.com/mariupol-doctor-betrayed-wounded-ukrainian-111500106.html", - "pubDate": "2023-12-15T11:15:00Z", - "guid": "mariupol-doctor-betrayed-wounded-ukrainian-111500106.html", - "isoDate": "2023-12-15T11:15:00.000Z" - }, - { - "title": "DR Congo election 2023: What you need to know", - "link": "https://news.yahoo.com/dr-congo-election-2023-know-180851088.html", - "pubDate": "2023-12-15T10:07:52Z", - "guid": "dr-congo-election-2023-know-180851088.html", - "isoDate": "2023-12-15T10:07:52.000Z" - }, - { - "title": "Polish president congratulates Ukraine and Moldova on historic EU summit decision", - "link": "https://news.yahoo.com/polish-president-congratulates-ukraine-moldova-091454981.html", - "pubDate": "2023-12-15T09:14:54Z", - "guid": "polish-president-congratulates-ukraine-moldova-091454981.html", - "isoDate": "2023-12-15T09:14:54.000Z" - }, - { - "title": "European Council President expresses confidence for Ukraine funding despite Hungarian veto", - "link": "https://news.yahoo.com/european-council-president-expresses-confidence-030424569.html", - "pubDate": "2023-12-15T03:04:24Z", - "guid": "european-council-president-expresses-confidence-030424569.html", - "isoDate": "2023-12-15T03:04:24.000Z" - }, - { - "title": "Defense Ministry recoups $24 million from unreliable suppliers", - "link": "https://news.yahoo.com/defense-ministry-recoups-24-million-215000710.html", - "pubDate": "2023-12-14T21:50:00Z", - "guid": "defense-ministry-recoups-24-million-215000710.html", - "isoDate": "2023-12-14T21:50:00.000Z" - }, - { - "title": "\"Historic day\": European leaders celebrate EU decision on Ukraine and Moldova", - "link": "https://news.yahoo.com/historic-day-european-leaders-celebrate-200035130.html", - "pubDate": "2023-12-14T20:00:35Z", - "guid": "historic-day-european-leaders-celebrate-200035130.html", - "isoDate": "2023-12-14T20:00:35.000Z" - }, - { - "title": "Helen Mirren (\u2018Golda\u2019) on playing Israel\u2019s first female prime minister: She was \u2018absolutely revelatory\u2019 [Exclusive Video Interview]", - "link": "https://www.yahoo.com/entertainment/helen-mirren-golda-playing-israel-193011368.html", - "pubDate": "2023-12-14T19:30:11Z", - "guid": "helen-mirren-golda-playing-israel-193011368.html", - "isoDate": "2023-12-14T19:30:11.000Z" - }, - { - "title": "Court voids fine given to Russian activist for criticizing war and sends case back to prosecutors", - "link": "https://news.yahoo.com/court-voids-fine-given-russian-182243642.html", - "pubDate": "2023-12-14T18:22:43Z", - "guid": "court-voids-fine-given-russian-182243642.html", - "isoDate": "2023-12-14T18:22:43.000Z" - }, - { - "title": "Five more Ukrainian kids abducted by Russia are returned to Ukraine", - "link": "https://news.yahoo.com/five-more-ukrainian-kids-abducted-155900724.html", - "pubDate": "2023-12-14T15:59:00Z", - "guid": "five-more-ukrainian-kids-abducted-155900724.html", - "isoDate": "2023-12-14T15:59:00.000Z" - }, - { - "title": "Why Venezuela\u2019s Threatening to Take a Chunk of Guyana: QuickTake", - "link": "https://news.yahoo.com/why-venezuela-threatening-chunk-guyana-150441774.html", - "pubDate": "2023-12-14T15:04:41Z", - "guid": "why-venezuela-threatening-chunk-guyana-150441774.html", - "isoDate": "2023-12-14T15:04:41.000Z" - }, - { - "title": "BRICS influence in Africa grows with TV media deals", - "link": "https://news.yahoo.com/brics-influence-africa-grows-tv-132321078.html", - "pubDate": "2023-12-14T15:01:09Z", - "guid": "brics-influence-africa-grows-tv-132321078.html", - "isoDate": "2023-12-14T15:01:09.000Z" - }, - { - "title": "Ousmane Sonko: Senegal court boost for opposition leader's election bid", - "link": "https://news.yahoo.com/ousmane-sonko-senegal-court-boost-110154293.html", - "pubDate": "2023-12-14T14:07:51Z", - "guid": "ousmane-sonko-senegal-court-boost-110154293.html", - "isoDate": "2023-12-14T14:07:51.000Z" - }, - { - "title": "Explosions heard during air-raid in Khmelnytskyi Oblast: Starokostiantyniv under threat", - "link": "https://news.yahoo.com/air-raid-warning-issued-throughout-130353659.html", - "pubDate": "2023-12-14T13:03:53Z", - "guid": "air-raid-warning-issued-throughout-130353659.html", - "isoDate": "2023-12-14T13:03:53.000Z" - }, - { - "title": "Donetsk resident charged over allegedly fighting for Russia in Mariupol, elsewhere", - "link": "https://news.yahoo.com/donetsk-resident-charged-over-allegedly-102412282.html", - "pubDate": "2023-12-14T10:24:12Z", - "guid": "donetsk-resident-charged-over-allegedly-102412282.html", - "isoDate": "2023-12-14T10:24:12.000Z" - }, - { - "title": "Hungarian PM does not oppose Ukraine's EU accession but sees \"no reason\" for talks", - "link": "https://news.yahoo.com/hungarian-pm-does-not-oppose-092727280.html", - "pubDate": "2023-12-14T09:27:27Z", - "guid": "hungarian-pm-does-not-oppose-092727280.html", - "isoDate": "2023-12-14T09:27:27.000Z" - }, - { - "title": "UN\u00a0court hears South Africa's genocide case against Israel next week", - "link": "https://news.yahoo.com/un-court-hears-south-africas-094348781.html", - "pubDate": "2024-01-04T09:43:48Z", - "guid": "un-court-hears-south-africas-094348781.html", - "isoDate": "2024-01-04T09:43:48.000Z" - }, - { - "title": "The UK is not cooperating enough to curb migrant crossings of the Channel, a French report says", - "link": "https://news.yahoo.com/uk-not-cooperating-enough-curb-093956095.html", - "pubDate": "2024-01-04T09:39:56Z", - "guid": "uk-not-cooperating-enough-curb-093956095.html", - "isoDate": "2024-01-04T09:39:56.000Z" - }, - { - "title": "EU must provide Ukraine with long-range and anti-aircraft missiles \u2013 EU chief diplomat Borrell", - "link": "https://news.yahoo.com/eu-must-ukraine-long-range-084800295.html", - "pubDate": "2024-01-04T08:48:00Z", - "guid": "eu-must-ukraine-long-range-084800295.html", - "isoDate": "2024-01-04T08:48:00.000Z" - }, - { - "title": "Lethal Sydney funnel-web spider 'Hercules' sets record for largest specimen collected in Australia", - "link": "https://news.yahoo.com/lethal-sydney-funnel-spider-hercules-083451030.html", - "pubDate": "2024-01-04T08:34:51Z", - "guid": "lethal-sydney-funnel-spider-hercules-083451030.html", - "isoDate": "2024-01-04T08:34:51.000Z" - }, - { - "title": "Japan continues earthquake survivor search with more than 50 missing", - "link": "https://news.yahoo.com/japan-continues-earthquake-survivor-search-082843429.html", - "pubDate": "2024-01-04T08:28:43Z", - "guid": "japan-continues-earthquake-survivor-search-082843429.html", - "isoDate": "2024-01-04T08:28:43.000Z" - }, - { - "title": "Iran revises down death toll from blasts near Soleimani's grave to 84", - "link": "https://news.yahoo.com/iran-revises-down-death-toll-082828951.html", - "pubDate": "2024-01-04T08:28:28Z", - "guid": "iran-revises-down-death-toll-082828951.html", - "isoDate": "2024-01-04T08:28:28.000Z" - }, - { - "title": "Foreign capital needs to be secure and respected in Ukraine", - "link": "https://news.yahoo.com/foreign-capital-needs-secure-respected-070000466.html", - "pubDate": "2024-01-04T08:07:00Z", - "guid": "foreign-capital-needs-secure-respected-070000466.html", - "isoDate": "2024-01-04T08:07:00.000Z" - }, - { - "title": "Myanmar junta releases more than 9,600 prisoners", - "link": "https://news.yahoo.com/myanmar-junta-releases-more-9-075836579.html", - "pubDate": "2024-01-04T07:58:36Z", - "guid": "myanmar-junta-releases-more-9-075836579.html", - "isoDate": "2024-01-04T07:58:36.000Z" - }, - { - "title": "Tusk vows to convince Polish carriers to halt their blockade", - "link": "https://news.yahoo.com/tusk-vows-convince-polish-carriers-074547784.html", - "pubDate": "2024-01-04T07:45:47Z", - "guid": "tusk-vows-convince-polish-carriers-074547784.html", - "isoDate": "2024-01-04T07:45:47.000Z" - }, - { - "title": "Honour for Northampton doctor performing hernia ops in Ghana", - "link": "https://news.yahoo.com/honour-northampton-doctor-performing-hernia-064549660.html", - "pubDate": "2024-01-04T06:45:49Z", - "guid": "honour-northampton-doctor-performing-hernia-064549660.html", - "isoDate": "2024-01-04T06:45:49.000Z" - }, - { - "title": "Ukraine's defence forces have destroyed 6,000 Russian tanks to date \u2013 General Staff", - "link": "https://news.yahoo.com/ukraines-defence-forces-destroyed-6-061238558.html", - "pubDate": "2024-01-04T06:12:38Z", - "guid": "ukraines-defence-forces-destroyed-6-061238558.html", - "isoDate": "2024-01-04T06:12:38.000Z" - }, - { - "title": "Ombudsman says Ukraine may hold another prisoner swap in coming weeks", - "link": "https://news.yahoo.com/ombudsman-says-ukraine-may-hold-055000080.html", - "pubDate": "2024-01-04T05:50:00Z", - "guid": "ombudsman-says-ukraine-may-hold-055000080.html", - "isoDate": "2024-01-04T05:50:00.000Z" - }, - { - "title": "Australia struggles to ditch SUV habit even as electric vehicle sales hit record", - "link": "https://www.yahoo.com/tech/australia-struggles-ditch-suv-habit-053730940.html", - "pubDate": "2024-01-04T05:37:30Z", - "guid": "australia-struggles-ditch-suv-habit-053730940.html", - "isoDate": "2024-01-04T05:37:30.000Z" - }, - { - "title": "Ukraine's Foreign Minister says West could help Ukraine defeat Russia by taking five steps", - "link": "https://news.yahoo.com/ukraines-foreign-minister-says-west-052757871.html", - "pubDate": "2024-01-04T05:27:57Z", - "guid": "ukraines-foreign-minister-says-west-052757871.html", - "isoDate": "2024-01-04T05:27:57.000Z" - }, - { - "title": "Another PoW swap may be held in next few weeks \u2013 Human Rights Commissioner", - "link": "https://news.yahoo.com/another-pow-swap-may-held-035000959.html", - "pubDate": "2024-01-04T03:50:00Z", - "guid": "another-pow-swap-may-held-035000959.html", - "isoDate": "2024-01-04T03:50:00.000Z" - }, - { - "title": "Fact Check: Captured on Video: The Moment Conor McGregor Was Warned Not To Put His Arm Around Putin", - "link": "https://sports.yahoo.com/fact-check-captured-video-moment-014000601.html", - "pubDate": "2024-01-04T01:40:00Z", - "guid": "fact-check-captured-video-moment-014000601.html", - "isoDate": "2024-01-04T01:40:00.000Z" - }, - { - "title": "Military recovers black box from Osprey crash in Japan", - "link": "https://news.yahoo.com/military-recovers-black-box-osprey-002845351.html", - "pubDate": "2024-01-04T00:28:45Z", - "guid": "military-recovers-black-box-osprey-002845351.html", - "isoDate": "2024-01-04T00:28:45.000Z" - }, - { - "title": "Argentine court suspends labor changes in a blow to President Milei's economic plan", - "link": "https://news.yahoo.com/argentine-court-suspends-labor-changes-233858555.html", - "pubDate": "2024-01-03T23:38:58Z", - "guid": "argentine-court-suspends-labor-changes-233858555.html", - "isoDate": "2024-01-03T23:38:58.000Z" - }, - { - "title": "Hezbollah leader threatens Israel, says there is no fear of war following death of top Hamas official", - "link": "https://news.yahoo.com/hezbollah-leader-threatens-israel-says-223408873.html", - "pubDate": "2024-01-03T22:34:08Z", - "guid": "hezbollah-leader-threatens-israel-says-223408873.html", - "isoDate": "2024-01-03T22:34:08.000Z" - }, - { - "title": "Mexico to open its embassy in Ukraine", - "link": "https://news.yahoo.com/mexico-open-embassy-ukraine-214500110.html", - "pubDate": "2024-01-03T21:45:00Z", - "guid": "mexico-open-embassy-ukraine-214500110.html", - "isoDate": "2024-01-03T21:45:00.000Z" - }, - { - "title": "Top EU diplomat condemns Israeli statements on Gaza as irresponsible", - "link": "https://news.yahoo.com/top-eu-diplomat-condemns-israeli-214349404.html", - "pubDate": "2024-01-03T21:43:49Z", - "guid": "top-eu-diplomat-condemns-israeli-214349404.html", - "isoDate": "2024-01-03T21:43:49.000Z" - }, - { - "title": "Watch: Video shows inside Japan Airlines plane during fiery collision", - "link": "https://news.yahoo.com/watch-view-inside-japan-airlines-212444845.html", - "pubDate": "2024-01-03T21:24:44Z", - "guid": "watch-view-inside-japan-airlines-212444845.html", - "isoDate": "2024-01-03T21:24:44.000Z" - }, - { - "title": "Large crocodile jumps into Australian man's boat", - "link": "https://news.yahoo.com/large-crocodile-jumps-australian-mans-211925671.html", - "pubDate": "2024-01-03T21:19:25Z", - "guid": "large-crocodile-jumps-australian-mans-211925671.html", - "isoDate": "2024-01-03T21:19:25.000Z" - }, - { - "title": "NATO to supply more ammunition for Patriot air defense system", - "link": "https://news.yahoo.com/nato-supply-more-ammunition-patriot-204500862.html", - "pubDate": "2024-01-03T20:45:00Z", - "guid": "nato-supply-more-ammunition-patriot-204500862.html", - "isoDate": "2024-01-03T20:45:00.000Z" - }, - { - "title": "Why Online Video Revenue in Asia Jumped 13 Percent in 2023, While TV Barely Grew", - "link": "https://www.yahoo.com/entertainment/why-online-video-revenue-asia-203000285.html", - "pubDate": "2024-01-03T20:30:00Z", - "guid": "why-online-video-revenue-asia-203000285.html", - "isoDate": "2024-01-03T20:30:00.000Z" - }, - { - "title": "NATO to hold a meeting on Russia\u2019s recent wave of missile attacks on Ukrainian cities", - "link": "https://news.yahoo.com/nato-hold-meeting-russia-recent-201500734.html", - "pubDate": "2024-01-03T20:15:00Z", - "guid": "nato-hold-meeting-russia-recent-201500734.html", - "isoDate": "2024-01-03T20:15:00.000Z" - }, - { - "title": "Letters to the editor: Bias shown in pictures section; T.O.'s plan flawed", - "link": "https://news.yahoo.com/letters-editor-bias-shown-pictures-200041446.html", - "pubDate": "2024-01-03T20:00:41Z", - "guid": "letters-editor-bias-shown-pictures-200041446.html", - "isoDate": "2024-01-03T20:00:41.000Z" - }, - { - "title": "AP Photos: Search presses on for earthquake survivors as Japan grieves the lives lost", - "link": "https://news.yahoo.com/ap-photos-search-presses-earthquake-194726933.html", - "pubDate": "2024-01-03T19:47:26Z", - "guid": "ap-photos-search-presses-earthquake-194726933.html", - "isoDate": "2024-01-03T19:47:26.000Z" - }, - { - "title": "Ukrainian Paratroopers Eliminate Platoon of Invaders \u2013 Video", - "link": "https://news.yahoo.com/ukrainian-paratroopers-eliminate-platoon-invaders-191500887.html", - "pubDate": "2024-01-03T19:15:00Z", - "guid": "ukrainian-paratroopers-eliminate-platoon-invaders-191500887.html", - "isoDate": "2024-01-03T19:15:00.000Z" - }, - { - "title": "There will be no collapse in power system even if Russia takes advantage of cold snap to attack", - "link": "https://news.yahoo.com/no-collapse-power-system-even-191136312.html", - "pubDate": "2024-01-03T19:11:36Z", - "guid": "no-collapse-power-system-even-191136312.html", - "isoDate": "2024-01-03T19:11:36.000Z" - }, - { - "title": "Hezbollah chief dubs killing of Hamas leader 'blatant Israeli attack'", - "link": "https://news.yahoo.com/hezbollah-chief-dubs-killing-hamas-184333549.html", - "pubDate": "2024-01-03T18:43:33Z", - "guid": "hezbollah-chief-dubs-killing-hamas-184333549.html", - "isoDate": "2024-01-03T18:43:33.000Z" - }, - { - "title": "Kuleba: NATO-Ukraine Council to hold emergency meeting in response to Russia\u2019s mass strikes on Ukraine", - "link": "https://news.yahoo.com/kuleba-nato-ukraine-council-hold-183643825.html", - "pubDate": "2024-01-03T18:36:43Z", - "guid": "kuleba-nato-ukraine-council-hold-183643825.html", - "isoDate": "2024-01-03T18:36:43.000Z" - }, - { - "title": "Top Israeli court postpones effect for law on incapacity of leader", - "link": "https://news.yahoo.com/top-israeli-court-postpones-effect-182834219.html", - "pubDate": "2024-01-03T18:28:34Z", - "guid": "top-israeli-court-postpones-effect-182834219.html", - "isoDate": "2024-01-03T18:28:34.000Z" - }, - { - "title": "Russia is aggressor, Ukraine has right to defend itself \u2013 France on explosions in Russia's Belgorod", - "link": "https://news.yahoo.com/russia-aggressor-ukraine-defend-itself-181852811.html", - "pubDate": "2024-01-03T18:18:52Z", - "guid": "russia-aggressor-ukraine-defend-itself-181852811.html", - "isoDate": "2024-01-03T18:18:52.000Z" - }, - { - "title": "Iran's supreme leader vows harsh response to deadly attacks", - "link": "https://news.yahoo.com/irans-supreme-leader-vows-harsh-175838488.html", - "pubDate": "2024-01-03T17:58:38Z", - "guid": "irans-supreme-leader-vows-harsh-175838488.html", - "isoDate": "2024-01-03T17:58:38.000Z" - }, - { - "title": "Russia claims four injured from self-inflicted missile strike on village of Petropavlovka", - "link": "https://news.yahoo.com/russia-claims-four-injured-self-174300910.html", - "pubDate": "2024-01-03T17:43:00Z", - "guid": "russia-claims-four-injured-self-174300910.html", - "isoDate": "2024-01-03T17:43:00.000Z" - }, - { - "title": "Former Interior Ministry chief of Yekaterinburg killed in Ukraine", - "link": "https://news.yahoo.com/former-interior-ministry-chief-yekaterinburg-174037111.html", - "pubDate": "2024-01-03T17:40:37Z", - "guid": "former-interior-ministry-chief-yekaterinburg-174037111.html", - "isoDate": "2024-01-03T17:40:37.000Z" - }, - { - "title": "Berlin decries Russian strikes on Ukraine, but Scholz still opposes supplying Taurus missiles to Kyiv", - "link": "https://news.yahoo.com/berlin-decries-russian-strikes-ukraine-172900476.html", - "pubDate": "2024-01-03T17:29:00Z", - "guid": "berlin-decries-russian-strikes-ukraine-172900476.html", - "isoDate": "2024-01-03T17:29:00.000Z" - }, - { - "title": "Russia, Ukraine swap hundreds of prisoners in UAE-brokered deal", - "link": "https://news.yahoo.com/russia-ukraine-swap-hundreds-prisoners-172141880.html", - "pubDate": "2024-01-03T17:21:41Z", - "guid": "russia-ukraine-swap-hundreds-prisoners-172141880.html", - "isoDate": "2024-01-03T17:21:41.000Z" - }, - { - "title": "Complex, lengthy, supported by UAE \u2013 Defence Intelligence chief on \"biggest PoW swap\"", - "link": "https://news.yahoo.com/complex-lengthy-supported-uae-defence-171626878.html", - "pubDate": "2024-01-03T17:16:26Z", - "guid": "complex-lengthy-supported-uae-defence-171626878.html", - "isoDate": "2024-01-03T17:16:26.000Z" - }, - { - "title": "Russians try to improve tactical positions on Avdiivka front \u2013 General Staff", - "link": "https://news.yahoo.com/russians-tries-improve-tactical-positions-171557372.html", - "pubDate": "2024-01-03T17:15:57Z", - "guid": "russians-tries-improve-tactical-positions-171557372.html", - "isoDate": "2024-01-03T17:15:57.000Z" - }, - { - "title": "Ukraine eliminates corrupt Russian police general Trifonov", - "link": "https://news.yahoo.com/ukraine-eliminates-corrupt-russian-police-171400601.html", - "pubDate": "2024-01-03T17:14:00Z", - "guid": "ukraine-eliminates-corrupt-russian-police-171400601.html", - "isoDate": "2024-01-03T17:14:00.000Z" - }, - { - "title": "Iranian president condemns terror attack in strongest possible terms", - "link": "https://news.yahoo.com/iranian-president-condemns-terror-attack-171328700.html", - "pubDate": "2024-01-03T17:13:28Z", - "guid": "iranian-president-condemns-terror-attack-171328700.html", - "isoDate": "2024-01-03T17:13:28.000Z" - }, - { - "title": "EU foreign policy chief fears 'open war' and escalation following death of Hamas leader: 'Cannot be ruled out'", - "link": "https://news.yahoo.com/eu-foreign-policy-chief-fears-165959977.html", - "pubDate": "2024-01-03T16:59:59Z", - "guid": "eu-foreign-policy-chief-fears-165959977.html", - "isoDate": "2024-01-03T16:59:59.000Z" - }, - { - "title": "230 Ukrainian POWs return home from Russian captivity in largest prisoner exchange in full-scale war", - "link": "https://news.yahoo.com/230-ukrainian-pows-return-home-163613897.html", - "pubDate": "2024-01-03T16:36:13Z", - "guid": "230-ukrainian-pows-return-home-163613897.html", - "isoDate": "2024-01-03T16:36:13.000Z" - }, - { - "title": "NATO-Ukraine Council to hold extraordinary meeting in response to Russia's large-scale attacks", - "link": "https://news.yahoo.com/nato-ukraine-council-hold-extraordinary-161507804.html", - "pubDate": "2024-01-03T16:15:07Z", - "guid": "nato-ukraine-council-hold-extraordinary-161507804.html", - "isoDate": "2024-01-03T16:15:07.000Z" - }, - { - "title": "NATO members jointly buy up to 1,000 Patriot missiles for air defence", - "link": "https://news.yahoo.com/nato-members-jointly-buy-1-161333878.html", - "pubDate": "2024-01-03T16:13:33Z", - "guid": "nato-members-jointly-buy-1-161333878.html", - "isoDate": "2024-01-03T16:13:33.000Z" - }, - { - "title": "Record-breaking PoW swap: Ukraine brings back 230 soldiers and civilians from Russian captivity \u2013 photo, video", - "link": "https://news.yahoo.com/record-large-pow-swap-ukraine-160840578.html", - "pubDate": "2024-01-03T16:08:40Z", - "guid": "record-large-pow-swap-ukraine-160840578.html", - "isoDate": "2024-01-03T16:08:40.000Z" - }, - { - "title": "Hiroshi Tanahashi \u2018Honored\u2019 To Be President & Active Wrestler In NJPW", - "link": "https://www.yahoo.com/entertainment/hiroshi-tanahashi-honored-president-active-160620694.html", - "pubDate": "2024-01-03T16:06:20Z", - "guid": "hiroshi-tanahashi-honored-president-active-160620694.html", - "isoDate": "2024-01-03T16:06:20.000Z" - }, - { - "title": "Israeli parents grieve in flat full of memories and bullet holes", - "link": "https://news.yahoo.com/israeli-parents-grieve-flat-full-152219430.html", - "pubDate": "2024-01-03T15:22:19Z", - "guid": "israeli-parents-grieve-flat-full-152219430.html", - "isoDate": "2024-01-03T15:22:19.000Z" - }, - { - "title": "How to survive if you find yourself buried under rubble following a missile strike \u2013 helpful advice", - "link": "https://news.yahoo.com/survive-yourself-buried-under-rubble-103100734.html", - "pubDate": "2024-01-04T10:31:00Z", - "guid": "survive-yourself-buried-under-rubble-103100734.html", - "isoDate": "2024-01-04T10:31:00.000Z" - }, - { - "title": "Ukraine's Air Force says it is impossible to calculate date of Russia's next large-scale attack", - "link": "https://news.yahoo.com/ukraines-air-force-says-impossible-093627391.html", - "pubDate": "2024-01-04T09:36:27Z", - "guid": "ukraines-air-force-says-impossible-093627391.html", - "isoDate": "2024-01-04T09:36:27.000Z" - }, - { - "title": "Media: Ukraine's military intelligence torches Russian Su-34 jet at airbase", - "link": "https://news.yahoo.com/media-ukraines-military-intelligence-torches-093433124.html", - "pubDate": "2024-01-04T09:34:33Z", - "guid": "media-ukraines-military-intelligence-torches-093433124.html", - "isoDate": "2024-01-04T09:34:33.000Z" - }, - { - "title": "Russian hackers infiltrated Kyivstar's system at least in May 2023 \u2013 Security Service of Ukraine", - "link": "https://news.yahoo.com/russian-hackers-infiltrated-kyivstars-system-090110316.html", - "pubDate": "2024-01-04T09:01:10Z", - "guid": "russian-hackers-infiltrated-kyivstars-system-090110316.html", - "isoDate": "2024-01-04T09:01:10.000Z" - }, - { - "title": "SBU cybersecurity chief: Hackers had access to Kyivstar months before December attack", - "link": "https://news.yahoo.com/sbu-cybersecurity-chief-hackers-had-090057630.html", - "pubDate": "2024-01-04T09:00:57Z", - "guid": "sbu-cybersecurity-chief-hackers-had-090057630.html", - "isoDate": "2024-01-04T09:00:57.000Z" - }, - { - "title": "More than 220 Russians surrendered via I Want to Live hotline \u2212 FT", - "link": "https://news.yahoo.com/more-220-russians-surrendered-via-080529123.html", - "pubDate": "2024-01-04T08:05:29Z", - "guid": "more-220-russians-surrendered-via-080529123.html", - "isoDate": "2024-01-04T08:05:29.000Z" - }, - { - "title": "Puyallup family raising funds to help loved ones who lost home in Japan's New Year's Day quake", - "link": "https://news.yahoo.com/puyallup-family-raising-funds-help-062305634.html", - "pubDate": "2024-01-04T06:23:05Z", - "guid": "puyallup-family-raising-funds-help-062305634.html", - "isoDate": "2024-01-04T06:23:05.000Z" - }, - { - "title": "Nexon fined nearly $9M for falsifying loot box drop rates", - "link": "https://www.yahoo.com/tech/nexon-fined-nearly-9m-falsifying-222639214.html", - "pubDate": "2024-01-03T22:26:39Z", - "guid": "nexon-fined-nearly-9m-falsifying-222639214.html", - "isoDate": "2024-01-03T22:26:39.000Z" - }, - { - "title": "Hennessy opens its first flagship store in Asia", - "link": "https://news.yahoo.com/hennessy-opens-first-flagship-store-170206914.html", - "pubDate": "2024-01-04T17:02:06Z", - "guid": "hennessy-opens-first-flagship-store-170206914.html", - "isoDate": "2024-01-04T17:02:06.000Z" - }, - { - "title": "Slain Hamas leader was using movement's old office for a meeting", - "link": "https://news.yahoo.com/slain-hamas-leader-using-movements-164337205.html", - "pubDate": "2024-01-04T16:43:37Z", - "guid": "slain-hamas-leader-using-movements-164337205.html", - "isoDate": "2024-01-04T16:43:37.000Z" - }, - { - "title": "Russia appears poised to purchase ballistic missiles from Iran, official says", - "link": "https://news.yahoo.com/russia-appears-poised-purchase-ballistic-155901869.html", - "pubDate": "2024-01-04T15:59:01Z", - "guid": "russia-appears-poised-purchase-ballistic-155901869.html", - "isoDate": "2024-01-04T15:59:01.000Z" - }, - { - "title": "The key question about fiery crash at Tokyo airport: Did one or both planes have OK to use runway?", - "link": "https://news.yahoo.com/key-fiery-crash-tokyo-airport-152834519.html", - "pubDate": "2024-01-04T15:28:34Z", - "guid": "key-fiery-crash-tokyo-airport-152834519.html", - "isoDate": "2024-01-04T15:28:34.000Z" - }, - { - "title": "Parliament begins review of new conscription law with top military leadership in attendance", - "link": "https://news.yahoo.com/parliament-begins-review-conscription-law-152500343.html", - "pubDate": "2024-01-04T15:25:00Z", - "guid": "parliament-begins-review-conscription-law-152500343.html", - "isoDate": "2024-01-04T15:25:00.000Z" - }, - { - "title": "Israel says it killed several Hamas members in Gaza tunnel complex", - "link": "https://news.yahoo.com/israel-says-killed-several-hamas-145835052.html", - "pubDate": "2024-01-04T14:58:35Z", - "guid": "israel-says-killed-several-hamas-145835052.html", - "isoDate": "2024-01-04T14:58:35.000Z" - }, - { - "title": "Authorities: Russian attacks on Kherson Oblast kill 1, injure 3", - "link": "https://news.yahoo.com/authorities-russian-attacks-kherson-oblast-143557296.html", - "pubDate": "2024-01-04T14:35:57Z", - "guid": "authorities-russian-attacks-kherson-oblast-143557296.html", - "isoDate": "2024-01-04T14:35:57.000Z" - }, - { - "title": "Ukraine\u2019s security service dismantles scheme aiding draft dodgers to flee to Transnistria", - "link": "https://news.yahoo.com/ukraine-security-dismantles-scheme-aiding-143500800.html", - "pubDate": "2024-01-04T14:35:00Z", - "guid": "ukraine-security-dismantles-scheme-aiding-143500800.html", - "isoDate": "2024-01-04T14:35:00.000Z" - }, - { - "title": "Ukraine designates Lithuanian food company as 'international sponsor of war'", - "link": "https://news.yahoo.com/ukraine-designates-lithuanian-food-company-142756989.html", - "pubDate": "2024-01-04T14:27:56Z", - "guid": "ukraine-designates-lithuanian-food-company-142756989.html", - "isoDate": "2024-01-04T14:27:56.000Z" - }, - { - "title": "Italian Premier Meloni says curbing migrant arrivals from Africa is about investment, not charity", - "link": "https://news.yahoo.com/italian-premier-meloni-says-curbing-141623313.html", - "pubDate": "2024-01-04T14:16:23Z", - "guid": "italian-premier-meloni-says-curbing-141623313.html", - "isoDate": "2024-01-04T14:16:23.000Z" - }, - { - "title": "Russia plans to equip cruise missiles with cluster munitions \u2013 National Resistance Centre", - "link": "https://news.yahoo.com/russia-plans-equip-cruise-missiles-135810372.html", - "pubDate": "2024-01-04T13:58:10Z", - "guid": "russia-plans-equip-cruise-missiles-135810372.html", - "isoDate": "2024-01-04T13:58:10.000Z" - }, - { - "title": "Tearful reunions as Russia and Ukraine exchange hundreds of prisoners", - "link": "https://news.yahoo.com/tearful-reunions-russia-ukraine-exchange-135248292.html", - "pubDate": "2024-01-04T13:52:48Z", - "guid": "tearful-reunions-russia-ukraine-exchange-135248292.html", - "isoDate": "2024-01-04T13:52:48.000Z" - }, - { - "title": "Mobile air defence has enough ammo for \"a few more powerful attacks\" \u2013 Joint Forces \u0421ommander", - "link": "https://news.yahoo.com/mobile-air-defence-enough-ammo-134012651.html", - "pubDate": "2024-01-04T13:40:12Z", - "guid": "mobile-air-defence-enough-ammo-134012651.html", - "isoDate": "2024-01-04T13:40:12.000Z" - }, - { - "title": "Understanding the Eve of Epiphany: Do's and Don'ts for the holy celebration", - "link": "https://news.yahoo.com/understanding-eve-epiphany-dos-donts-132500323.html", - "pubDate": "2024-01-04T13:25:00Z", - "guid": "understanding-eve-epiphany-dos-donts-132500323.html", - "isoDate": "2024-01-04T13:25:00.000Z" - }, - { - "title": "Foreign Ministry condemns event on Russia's 'rebirth' of Mariupol to be held in Italy", - "link": "https://news.yahoo.com/foreign-ministry-condemns-event-russias-131802080.html", - "pubDate": "2024-01-04T13:18:02Z", - "guid": "foreign-ministry-condemns-event-russias-131802080.html", - "isoDate": "2024-01-04T13:18:02.000Z" - }, - { - "title": "Ukrainian intel likely behind destruction of Russian Su-34 fighter jet at Chelyabinsk airbase", - "link": "https://news.yahoo.com/ukrainian-intel-likely-behind-destruction-131500383.html", - "pubDate": "2024-01-04T13:15:00Z", - "guid": "ukrainian-intel-likely-behind-destruction-131500383.html", - "isoDate": "2024-01-04T13:15:00.000Z" - }, - { - "title": "Romania will help restore Ukraine's damaged digital infrastructure", - "link": "https://news.yahoo.com/romania-help-restore-ukraines-damaged-130826207.html", - "pubDate": "2024-01-04T13:08:26Z", - "guid": "romania-help-restore-ukraines-damaged-130826207.html", - "isoDate": "2024-01-04T13:08:26.000Z" - }, - { - "title": "Feeding the aggressor: Corruption Prevention Agency adds food manufacturer Vici to list of international sponsors of war", - "link": "https://news.yahoo.com/feeding-aggressor-corruption-prevention-agency-125448379.html", - "pubDate": "2024-01-04T12:54:48Z", - "guid": "feeding-aggressor-corruption-prevention-agency-125448379.html", - "isoDate": "2024-01-04T12:54:48.000Z" - }, - { - "title": "Ukraine quickly fixed a huge mistake in how it used tanks. Russia then repeated the error on a grand scale.", - "link": "https://news.yahoo.com/ukraine-quickly-fixed-huge-mistake-125218134.html", - "pubDate": "2024-01-04T12:52:18Z", - "guid": "ukraine-quickly-fixed-huge-mistake-125218134.html", - "isoDate": "2024-01-04T12:52:18.000Z" - }, - { - "title": "Ukraine brings back 12-year-old boy from Kherson Oblast whose mother died", - "link": "https://news.yahoo.com/ukraine-brings-back-12-old-124526312.html", - "pubDate": "2024-01-04T12:45:26Z", - "guid": "ukraine-brings-back-12-old-124526312.html", - "isoDate": "2024-01-04T12:45:26.000Z" - }, - { - "title": "Vatican moves to calm bishops over same-sex blessings approval", - "link": "https://news.yahoo.com/vatican-moves-calm-bishops-over-120406949.html", - "pubDate": "2024-01-04T12:04:06Z", - "guid": "vatican-moves-calm-bishops-over-120406949.html", - "isoDate": "2024-01-04T12:04:06.000Z" - }, - { - "title": "NATO-Ukraine Council to discuss air defences after Russian assaults", - "link": "https://news.yahoo.com/nato-ukraine-council-discuss-air-115830633.html", - "pubDate": "2024-01-04T11:58:30Z", - "guid": "nato-ukraine-council-discuss-air-115830633.html", - "isoDate": "2024-01-04T11:58:30.000Z" - }, - { - "title": "Putin signs decree on giving Russian citizenship to foreign fighters", - "link": "https://news.yahoo.com/putin-signs-decree-giving-russian-115246075.html", - "pubDate": "2024-01-04T11:52:46Z", - "guid": "putin-signs-decree-giving-russian-115246075.html", - "isoDate": "2024-01-04T11:52:46.000Z" - }, - { - "title": "Rice Water for Hair: A Hair Regrowth Treatment?", - "link": "https://www.yahoo.com/lifestyle/rice-water-hair-hair-regrowth-115112933.html", - "pubDate": "2024-01-04T11:51:12Z", - "guid": "rice-water-hair-hair-regrowth-115112933.html", - "isoDate": "2024-01-04T11:51:12.000Z" - }, - { - "title": "Ukraine's Foreign Ministry says Italian exhibition about \"flourishing\" Mariupol is a provocation", - "link": "https://news.yahoo.com/ukraines-foreign-ministry-says-italian-114759871.html", - "pubDate": "2024-01-04T11:47:59Z", - "guid": "ukraines-foreign-ministry-says-italian-114759871.html", - "isoDate": "2024-01-04T11:47:59.000Z" - }, - { - "title": "Ukraine's Defence Intelligence posts video of Russian Su-34 burning \u2013 video", - "link": "https://news.yahoo.com/ukraines-defence-intelligence-posts-video-112901524.html", - "pubDate": "2024-01-04T11:29:01Z", - "guid": "ukraines-defence-intelligence-posts-video-112901524.html", - "isoDate": "2024-01-04T11:29:01.000Z" - }, - { - "title": "Gaza's child amputees face further risks without expert care", - "link": "https://news.yahoo.com/gazas-child-amputees-face-further-112252881.html", - "pubDate": "2024-01-04T11:22:52Z", - "guid": "gazas-child-amputees-face-further-112252881.html", - "isoDate": "2024-01-04T11:22:52.000Z" - }, - { - "title": "82 Belarusians have received prison sentences for anti-war stance since Russia\u2019s invasion of Ukraine", - "link": "https://news.yahoo.com/82-belarusians-received-prison-sentences-110153662.html", - "pubDate": "2024-01-04T11:01:53Z", - "guid": "82-belarusians-received-prison-sentences-110153662.html", - "isoDate": "2024-01-04T11:01:53.000Z" - }, - { - "title": "Over 220 Russian soldiers surrender through 'I want to live' hotline", - "link": "https://news.yahoo.com/over-220-russian-soldiers-surrender-110146733.html", - "pubDate": "2024-01-04T11:01:46Z", - "guid": "over-220-russian-soldiers-surrender-110146733.html", - "isoDate": "2024-01-04T11:01:46.000Z" - }, - { - "title": "Zaluzhnyi, Umerov start talks with parliamentary committee on new mobilization law", - "link": "https://news.yahoo.com/zaluzhnyi-umerov-start-talks-parliamentary-105726150.html", - "pubDate": "2024-01-04T10:57:26Z", - "guid": "zaluzhnyi-umerov-start-talks-parliamentary-105726150.html", - "isoDate": "2024-01-04T10:57:26.000Z" - }, - { - "title": "Russian hackers had access to Kyivstar network at least since May 2023, says SBU", - "link": "https://news.yahoo.com/russian-hackers-had-access-kyivstar-104500915.html", - "pubDate": "2024-01-04T10:45:00Z", - "guid": "russian-hackers-had-access-kyivstar-104500915.html", - "isoDate": "2024-01-04T10:45:00.000Z" - }, - { - "title": "NATO announces date of emergency meeting to discuss large-scale Russian attacks on Ukraine", - "link": "https://news.yahoo.com/nato-announces-date-emergency-meeting-103900253.html", - "pubDate": "2024-01-04T10:39:00Z", - "guid": "nato-announces-date-emergency-meeting-103900253.html", - "isoDate": "2024-01-04T10:39:00.000Z" - }, - { - "title": "Putin to grant citizenship to foreigners who sign 1-year contract with Russian army", - "link": "https://news.yahoo.com/putin-grant-citizenship-foreigners-sign-102539304.html", - "pubDate": "2024-01-04T10:25:39Z", - "guid": "putin-grant-citizenship-foreigners-sign-102539304.html", - "isoDate": "2024-01-04T10:25:39.000Z" - }, - { - "title": "Scenes of loss play out across Japan's western coastline after quake kills 84, dozens still missing", - "link": "https://news.yahoo.com/scenes-loss-play-across-japans-070805418.html", - "pubDate": "2024-01-04T07:08:05Z", - "guid": "scenes-loss-play-across-japans-070805418.html", - "isoDate": "2024-01-04T07:08:05.000Z" - }, - { - "title": "France's Macron set to attend Sch\u00e4uble's memorial service", - "link": "https://news.yahoo.com/frances-macron-set-attend-sch-162836044.html", - "pubDate": "2024-01-04T16:28:36Z", - "guid": "frances-macron-set-attend-sch-162836044.html", - "isoDate": "2024-01-04T16:28:36.000Z" - }, - { - "title": "National Resistance Center: Russian occupation authorities to force Ukrainian teenagers into military registration", - "link": "https://news.yahoo.com/national-resistance-center-russian-occupation-153841663.html", - "pubDate": "2024-01-04T15:38:41Z", - "guid": "national-resistance-center-russian-occupation-153841663.html", - "isoDate": "2024-01-04T15:38:41.000Z" - }, - { - "title": "What next for Oscar Pistorius?", - "link": "https://news.yahoo.com/oscar-pistorius-fallen-hero-future-002115904.html", - "pubDate": "2024-01-05T13:14:30Z", - "guid": "oscar-pistorius-fallen-hero-future-002115904.html", - "isoDate": "2024-01-05T13:14:30.000Z" - }, - { - "title": "India sends navy after pirates attack ship off Somali coast", - "link": "https://news.yahoo.com/india-sends-navy-pirates-attack-115349551.html", - "pubDate": "2024-01-05T12:47:54Z", - "guid": "india-sends-navy-pirates-attack-115349551.html", - "isoDate": "2024-01-05T12:47:54.000Z" - }, - { - "title": "Plan for internal Israeli military probe of Oct. 7 attack angers some ministers", - "link": "https://news.yahoo.com/plan-internal-israeli-military-probe-122934301.html", - "pubDate": "2024-01-05T12:29:34Z", - "guid": "plan-internal-israeli-military-probe-122934301.html", - "isoDate": "2024-01-05T12:29:34.000Z" - }, - { - "title": "Russia loses 790 soldiers, 9 tanks in a single day", - "link": "https://news.yahoo.com/russia-loses-790-soldiers-9-121400672.html", - "pubDate": "2024-01-05T12:14:00Z", - "guid": "russia-loses-790-soldiers-9-121400672.html", - "isoDate": "2024-01-05T12:14:00.000Z" - }, - { - "title": "Sri Lanka declares moratorium on research ships for a year amid Indian concerns over Chinese vessels", - "link": "https://news.yahoo.com/sri-lanka-declares-moratorium-research-120336958.html", - "pubDate": "2024-01-05T12:03:36Z", - "guid": "sri-lanka-declares-moratorium-research-120336958.html", - "isoDate": "2024-01-05T12:03:36.000Z" - }, - { - "title": "Belarus Weekly: Lukashenko's Belarus abducts more Ukrainian children", - "link": "https://news.yahoo.com/belarus-weekly-lukashenkos-belarus-abducts-113827376.html", - "pubDate": "2024-01-05T11:38:27Z", - "guid": "belarus-weekly-lukashenkos-belarus-abducts-113827376.html", - "isoDate": "2024-01-05T11:38:27.000Z" - }, - { - "title": "Climate crisis is making sugar more expensive around the world, say experts", - "link": "https://news.yahoo.com/climate-crisis-making-sugar-more-110032903.html", - "pubDate": "2024-01-05T11:00:32Z", - "guid": "climate-crisis-making-sugar-more-110032903.html", - "isoDate": "2024-01-05T11:00:32.000Z" - }, - { - "title": "Russia approves 2 candidates for ballot against Putin in March election", - "link": "https://news.yahoo.com/russia-approves-2-candidates-ballot-105852093.html", - "pubDate": "2024-01-05T10:58:52Z", - "guid": "russia-approves-2-candidates-ballot-105852093.html", - "isoDate": "2024-01-05T10:58:52.000Z" - }, - { - "title": "Economy Minister: Ukraine's exports to grow by 9% in 2024", - "link": "https://news.yahoo.com/economy-minister-ukraines-exports-grow-104633035.html", - "pubDate": "2024-01-05T10:46:33Z", - "guid": "economy-minister-ukraines-exports-grow-104633035.html", - "isoDate": "2024-01-05T10:46:33.000Z" - }, - { - "title": "Not just command post: Russian defence system damaged in Crimea", - "link": "https://news.yahoo.com/not-just-command-post-russian-102003181.html", - "pubDate": "2024-01-05T10:20:03Z", - "guid": "not-just-command-post-russian-102003181.html", - "isoDate": "2024-01-05T10:20:03.000Z" - }, - { - "title": "Official: 2,000 trucks waiting in line at Polish border to enter Ukraine", - "link": "https://news.yahoo.com/official-2-000-trucks-waiting-101054573.html", - "pubDate": "2024-01-05T10:10:54Z", - "guid": "official-2-000-trucks-waiting-101054573.html", - "isoDate": "2024-01-05T10:10:54.000Z" - }, - { - "title": "UK intelligence analyses changes at front over past week", - "link": "https://news.yahoo.com/uk-intelligence-analyses-changes-front-100149120.html", - "pubDate": "2024-01-05T10:01:49Z", - "guid": "uk-intelligence-analyses-changes-front-100149120.html", - "isoDate": "2024-01-05T10:01:49.000Z" - }, - { - "title": "UN emergency relief agency says unable to deliver vital Gaza aid", - "link": "https://news.yahoo.com/un-emergency-relief-agency-says-095923227.html", - "pubDate": "2024-01-05T09:59:23Z", - "guid": "un-emergency-relief-agency-says-095923227.html", - "isoDate": "2024-01-05T09:59:23.000Z" - }, - { - "title": "Oscar Pistorius at home after leaving South African jail on parole", - "link": "https://news.yahoo.com/oscar-pistorius-home-leaving-south-095827129.html", - "pubDate": "2024-01-05T09:58:27Z", - "guid": "oscar-pistorius-home-leaving-south-095827129.html", - "isoDate": "2024-01-05T09:58:27.000Z" - }, - { - "title": "2,000 lorries queuing at Polish-Ukrainian border", - "link": "https://news.yahoo.com/2-000-lorries-queuing-polish-095250993.html", - "pubDate": "2024-01-05T09:52:50Z", - "guid": "2-000-lorries-queuing-polish-095250993.html", - "isoDate": "2024-01-05T09:52:50.000Z" - }, - { - "title": "Africa's week in pictures: 29 December 2023-4 January 2024", - "link": "https://news.yahoo.com/africas-week-pictures-29-december-005824222.html", - "pubDate": "2024-01-05T09:47:16Z", - "guid": "africas-week-pictures-29-december-005824222.html", - "isoDate": "2024-01-05T09:47:16.000Z" - }, - { - "title": "Russia under attack \u2014 Multiple drones spotted in Krasnodar, Belgorod and temporarily occupied Crimea", - "link": "https://news.yahoo.com/russia-under-attack-multiple-drones-093500403.html", - "pubDate": "2024-01-05T09:35:00Z", - "guid": "russia-under-attack-multiple-drones-093500403.html", - "isoDate": "2024-01-05T09:35:00.000Z" - }, - { - "title": "Reports: North Korea fires artillery into sea near maritime border", - "link": "https://news.yahoo.com/reports-north-korea-fires-artillery-091359755.html", - "pubDate": "2024-01-05T09:13:59Z", - "guid": "reports-north-korea-fires-artillery-091359755.html", - "isoDate": "2024-01-05T09:13:59.000Z" - }, - { - "title": "Nepal bars citizens from going to Russia or Ukraine for work, saying they are recruited as fighters", - "link": "https://news.yahoo.com/nepal-bars-citizens-going-russia-091000744.html", - "pubDate": "2024-01-05T09:10:00Z", - "guid": "nepal-bars-citizens-going-russia-091000744.html", - "isoDate": "2024-01-05T09:10:00.000Z" - }, - { - "title": "Ousmane Sonko: Senegal court upholds opposition leader's libel conviction", - "link": "https://news.yahoo.com/ousmane-sonko-senegal-court-upholds-085045267.html", - "pubDate": "2024-01-05T08:50:45Z", - "guid": "ousmane-sonko-senegal-court-upholds-085045267.html", - "isoDate": "2024-01-05T08:50:45.000Z" - }, - { - "title": "Ukraine's Security Service arrests agricultural businessman suspected of collaborating with Russians in Kherson Oblast", - "link": "https://news.yahoo.com/ukraines-security-arrests-agricultural-businessman-084327236.html", - "pubDate": "2024-01-05T08:43:27Z", - "guid": "ukraines-security-arrests-agricultural-businessman-084327236.html", - "isoDate": "2024-01-05T08:43:27.000Z" - }, - { - "title": "Japanese air safety experts search for voice data from plane debris after runway collision", - "link": "https://news.yahoo.com/japanese-air-safety-experts-search-083738717.html", - "pubDate": "2024-01-05T08:37:38Z", - "guid": "japanese-air-safety-experts-search-083738717.html", - "isoDate": "2024-01-05T08:37:38.000Z" - }, - { - "title": "Russians launch Shahed attack drones from south for second time in one night", - "link": "https://news.yahoo.com/russians-launch-shahed-attack-drones-042905852.html", - "pubDate": "2024-01-05T08:35:00Z", - "guid": "russians-launch-shahed-attack-drones-042905852.html", - "isoDate": "2024-01-05T08:35:00.000Z" - }, - { - "title": "India's foreign minister signs a deal to increase imports of electricity from Nepal", - "link": "https://news.yahoo.com/indias-foreign-minister-signs-deal-080601890.html", - "pubDate": "2024-01-05T08:06:01Z", - "guid": "indias-foreign-minister-signs-deal-080601890.html", - "isoDate": "2024-01-05T08:06:01.000Z" - }, - { - "title": "Tesla India Plans Hinge On Fast-Charging Infrastructure For Entry-Level Vehicle With Smaller Battery", - "link": "https://finance.yahoo.com/news/tesla-india-plans-hinge-fast-075612891.html", - "pubDate": "2024-01-05T07:56:12Z", - "guid": "tesla-india-plans-hinge-fast-075612891.html", - "isoDate": "2024-01-05T07:56:12.000Z" - }, - { - "title": "Russia can\u2019t recruit enough police in Ukraine\u2019s temporarily occupied territories", - "link": "https://news.yahoo.com/russia-t-recruit-enough-police-071500677.html", - "pubDate": "2024-01-05T07:15:00Z", - "guid": "russia-t-recruit-enough-police-071500677.html", - "isoDate": "2024-01-05T07:15:00.000Z" - }, - { - "title": "Ukrainian economy shows certain resilience in 2023, UN report states", - "link": "https://news.yahoo.com/ukrainian-economy-shows-certain-resilience-070653092.html", - "pubDate": "2024-01-05T07:06:53Z", - "guid": "ukrainian-economy-shows-certain-resilience-070653092.html", - "isoDate": "2024-01-05T07:06:53.000Z" - }, - { - "title": "Italy's Meloni assures Zelensky of G7 support for Ukraine", - "link": "https://news.yahoo.com/italys-meloni-assures-zelensky-g7-065830194.html", - "pubDate": "2024-01-05T06:58:30Z", - "guid": "italys-meloni-assures-zelensky-g7-065830194.html", - "isoDate": "2024-01-05T06:58:30.000Z" - }, - { - "title": "Russia's launching North Korean missiles in Ukraine: White House", - "link": "https://news.yahoo.com/russias-launching-north-korean-missiles-060442763.html", - "pubDate": "2024-01-05T06:04:42Z", - "guid": "russias-launching-north-korean-missiles-060442763.html", - "isoDate": "2024-01-05T06:04:42.000Z" - }, - { - "title": "Ukrainian forces kill 790 more Russian soldiers and destroy 30 artillery systems and 9 tanks", - "link": "https://news.yahoo.com/ukrainian-forces-kill-790-more-055604161.html", - "pubDate": "2024-01-05T05:56:04Z", - "guid": "ukrainian-forces-kill-790-more-055604161.html", - "isoDate": "2024-01-05T05:56:04.000Z" - }, - { - "title": "Ukrainian troops expand foothold in Kherson Oblast \u2013 General Staff report", - "link": "https://news.yahoo.com/ukrainian-troops-expand-foothold-kherson-045757191.html", - "pubDate": "2024-01-05T04:57:57Z", - "guid": "ukrainian-troops-expand-foothold-kherson-045757191.html", - "isoDate": "2024-01-05T04:57:57.000Z" - }, - { - "title": "Clip of 2011 Japan tsunami falsely shared as New Year's quake footage", - "link": "https://news.yahoo.com/clip-2011-japan-tsunami-falsely-044721714.html", - "pubDate": "2024-01-05T04:47:21Z", - "guid": "clip-2011-japan-tsunami-falsely-044721714.html", - "isoDate": "2024-01-05T04:47:21.000Z" - }, - { - "title": "ISW: Russia begins negotiations with Algeria, Saudi Arabia, UAE to open Russian cultural centers", - "link": "https://news.yahoo.com/isw-russia-begins-negotiations-algeria-042949151.html", - "pubDate": "2024-01-05T04:29:49Z", - "guid": "isw-russia-begins-negotiations-algeria-042949151.html", - "isoDate": "2024-01-05T04:29:49.000Z" - }, - { - "title": "Russians put teenagers from Ukrainian occupied territories on military register", - "link": "https://news.yahoo.com/russians-put-teenagers-ukrainian-occupied-025730994.html", - "pubDate": "2024-01-05T02:57:30Z", - "guid": "russians-put-teenagers-ukrainian-occupied-025730994.html", - "isoDate": "2024-01-05T02:57:30.000Z" - }, - { - "title": "Russia looks for ballistic missiles abroad as they are more effective in bypassing air defence systems \u2013 ISW", - "link": "https://news.yahoo.com/russia-wants-ballistic-missiles-abroad-014625997.html", - "pubDate": "2024-01-05T01:46:25Z", - "guid": "russia-wants-ballistic-missiles-abroad-014625997.html", - "isoDate": "2024-01-05T01:46:25.000Z" - }, - { - "title": "Israel says it killed several Hamas members in Gaza tunnel complex", - "link": "https://news.yahoo.com/israel-says-killed-several-hamas-205854377.html", - "pubDate": "2024-01-04T20:58:54Z", - "guid": "israel-says-killed-several-hamas-205854377.html", - "isoDate": "2024-01-04T20:58:54.000Z" - }, - { - "title": "Saleh al-Arouri: Thousands attend Hamas deputy leader's funeral in Beirut", - "link": "https://news.yahoo.com/saleh-al-arouri-thousands-attend-173622776.html", - "pubDate": "2024-01-04T20:39:05Z", - "guid": "saleh-al-arouri-thousands-attend-173622776.html", - "isoDate": "2024-01-04T20:39:05.000Z" - }, - { - "title": "Ukraine constantly needs supplies of anti-aircraft guided missiles that partners send on urgent basis", - "link": "https://news.yahoo.com/ukraine-constantly-needs-supplies-anti-203020503.html", - "pubDate": "2024-01-04T20:30:20Z", - "guid": "ukraine-constantly-needs-supplies-anti-203020503.html", - "isoDate": "2024-01-04T20:30:20.000Z" - }, - { - "title": "Germany sends Skynex air defense system, other military aid to Ukraine", - "link": "https://news.yahoo.com/germany-sends-skynex-air-defense-194934549.html", - "pubDate": "2024-01-04T19:49:34Z", - "guid": "germany-sends-skynex-air-defense-194934549.html", - "isoDate": "2024-01-04T19:49:34.000Z" - }, - { - "title": "Ukrainian hackers attack Russian President's Administration provider for the second time", - "link": "https://news.yahoo.com/ukrainian-hackers-attack-russian-presidents-191200580.html", - "pubDate": "2024-01-04T19:12:00Z", - "guid": "ukrainian-hackers-attack-russian-presidents-191200580.html", - "isoDate": "2024-01-04T19:12:00.000Z" - }, - { - "title": "India launches X-ray satellite to study black holes, supernovas and more (video)", - "link": "https://news.yahoo.com/india-launches-x-ray-satellite-190006989.html", - "pubDate": "2024-01-04T19:00:06Z", - "guid": "india-launches-x-ray-satellite-190006989.html", - "isoDate": "2024-01-04T19:00:06.000Z" - }, - { - "title": "Japan Coast Guard plane not cleared for takeoff before collision: transcripts", - "link": "https://news.yahoo.com/japan-coast-guard-plane-not-184547900.html", - "pubDate": "2024-01-04T18:45:47Z", - "guid": "japan-coast-guard-plane-not-184547900.html", - "isoDate": "2024-01-04T18:45:47.000Z" - }, - { - "title": "Germany supplies Ukraine with missiles for IRIS-T SLM air defence systems, Marder infantry fighting vehicles in new aid package", - "link": "https://news.yahoo.com/germany-supplies-ukraine-missiles-iris-184144190.html", - "pubDate": "2024-01-04T18:41:44Z", - "guid": "germany-supplies-ukraine-missiles-iris-184144190.html", - "isoDate": "2024-01-04T18:41:44.000Z" - }, - { - "title": "This Once-in-a-lifetime Trip to Patagonia and Antarctica Is Led by an All-star Conservationist \u2014 How to Get on Board", - "link": "https://www.yahoo.com/lifestyle/once-lifetime-trip-patagonia-antarctica-180344111.html", - "pubDate": "2024-01-04T18:03:44Z", - "guid": "once-lifetime-trip-patagonia-antarctica-180344111.html", - "isoDate": "2024-01-04T18:03:44.000Z" - }, - { - "title": "Russians try to knock out Ukrainian forces from bridgeheads on Dnipro's left bank \u2013 General Staff report", - "link": "https://news.yahoo.com/russians-try-knock-ukrainian-forces-180306108.html", - "pubDate": "2024-01-04T18:03:06Z", - "guid": "russians-try-knock-ukrainian-forces-180306108.html", - "isoDate": "2024-01-04T18:03:06.000Z" - }, - { - "title": "Japan delays MMX Mars moon sample-return mission to 2026", - "link": "https://news.yahoo.com/japan-delays-mmx-mars-moon-180001327.html", - "pubDate": "2024-01-04T18:00:01Z", - "guid": "japan-delays-mmx-mars-moon-180001327.html", - "isoDate": "2024-01-04T18:00:01.000Z" - }, - { - "title": "Zelenskyy: Russia tried to bring back threat of energy sector destruction with recent attacks", - "link": "https://news.yahoo.com/zelenskyy-russia-tried-bring-back-174826841.html", - "pubDate": "2024-01-04T17:48:26Z", - "guid": "zelenskyy-russia-tried-bring-back-174826841.html", - "isoDate": "2024-01-04T17:48:26.000Z" - }, - { - "title": "Interior Minister: Police open 9,000 criminal cases related to draft evasion", - "link": "https://news.yahoo.com/interior-minister-police-open-9-174517545.html", - "pubDate": "2024-01-04T17:45:17Z", - "guid": "interior-minister-police-open-9-174517545.html", - "isoDate": "2024-01-04T17:45:17.000Z" - }, - { - "title": "Ukraine's Foreign Minister explains why it is now easier to defeat Russia than in times of Cold War", - "link": "https://news.yahoo.com/ukraines-foreign-minister-explains-why-174316522.html", - "pubDate": "2024-01-04T17:43:16Z", - "guid": "ukraines-foreign-minister-explains-why-174316522.html", - "isoDate": "2024-01-04T17:43:16.000Z" - }, - { - "title": "Kyivstar rejects Security Service's claim that hackers had been in operator's system for months", - "link": "https://news.yahoo.com/kyivstar-rejects-security-services-claim-172111639.html", - "pubDate": "2024-01-04T17:21:11Z", - "guid": "kyivstar-rejects-security-services-claim-172111639.html", - "isoDate": "2024-01-04T17:21:11.000Z" - }, - { - "title": "Burundi shuts borders with 'bad neighbour' Rwanda", - "link": "https://news.yahoo.com/burundi-shuts-borders-bad-neighbour-210821713.html", - "pubDate": "2024-01-11T21:08:21Z", - "guid": "burundi-shuts-borders-bad-neighbour-210821713.html", - "isoDate": "2024-01-11T21:08:21.000Z" - }, - { - "title": "Ministers to prepare possible Zelensky-Orban meeting over EU\u00a0aid spat", - "link": "https://news.yahoo.com/ministers-prepare-possible-zelensky-orban-204139283.html", - "pubDate": "2024-01-11T20:41:39Z", - "guid": "ministers-prepare-possible-zelensky-orban-204139283.html", - "isoDate": "2024-01-11T20:41:39.000Z" - }, - { - "title": "Bayreuth Festival to have three women conductors, three years after gender barrier broken", - "link": "https://news.yahoo.com/bayreuth-festival-three-women-conductors-195916816.html", - "pubDate": "2024-01-11T19:59:16Z", - "guid": "bayreuth-festival-three-women-conductors-195916816.html", - "isoDate": "2024-01-11T19:59:16.000Z" - }, - { - "title": "DNA from ancient humans gives clues to common diseases", - "link": "https://news.yahoo.com/dna-ancient-humans-gives-clues-194014455.html", - "pubDate": "2024-01-11T19:40:14Z", - "guid": "dna-ancient-humans-gives-clues-194014455.html", - "isoDate": "2024-01-11T19:40:14.000Z" - }, - { - "title": "Ukrainians in Russia-occupied territories forced to register for military service, Kyiv says", - "link": "https://news.yahoo.com/ukrainians-russia-occupied-territories-forced-194000481.html", - "pubDate": "2024-01-11T19:40:00Z", - "guid": "ukrainians-russia-occupied-territories-forced-194000481.html", - "isoDate": "2024-01-11T19:40:00.000Z" - }, - { - "title": "Russian presidential hopeful calling for peace in Ukraine meets with soldiers' wives", - "link": "https://news.yahoo.com/russian-presidential-hopeful-calling-peace-192416009.html", - "pubDate": "2024-01-11T19:24:16Z", - "guid": "russian-presidential-hopeful-calling-peace-192416009.html", - "isoDate": "2024-01-11T19:24:16.000Z" - }, - { - "title": "Israel officials support Gaza destruction, court hears", - "link": "https://news.yahoo.com/un-court-hear-south-africa-071613746.html", - "pubDate": "2024-01-11T19:21:26Z", - "guid": "un-court-hear-south-africa-071613746.html", - "isoDate": "2024-01-11T19:21:26.000Z" - }, - { - "title": "South Korean filmmakers call for probe into \u2018Parasite\u2019 actor Lee Sun-kyun\u2019s death", - "link": "https://news.yahoo.com/south-korean-filmmakers-call-probe-191927064.html", - "pubDate": "2024-01-11T19:19:27Z", - "guid": "south-korean-filmmakers-call-probe-191927064.html", - "isoDate": "2024-01-11T19:19:27.000Z" - }, - { - "title": "Argentina annual inflation tops 211%, highest since early 90s", - "link": "https://finance.yahoo.com/news/argentina-annual-inflation-tops-211-191049892.html", - "pubDate": "2024-01-11T19:10:49Z", - "guid": "argentina-annual-inflation-tops-211-191049892.html", - "isoDate": "2024-01-11T19:10:49.000Z" - }, - { - "title": "Latvian President announces new aid package for Ukraine with howitzers and ammunition", - "link": "https://news.yahoo.com/latvian-president-announces-aid-package-183916764.html", - "pubDate": "2024-01-11T18:39:16Z", - "guid": "latvian-president-announces-aid-package-183916764.html", - "isoDate": "2024-01-11T18:39:16.000Z" - }, - { - "title": "Oil prices rise after Iran seizes oil tanker", - "link": "https://news.yahoo.com/oil-prices-rise-iran-seizes-183102174.html", - "pubDate": "2024-01-11T18:31:02Z", - "guid": "oil-prices-rise-iran-seizes-183102174.html", - "isoDate": "2024-01-11T18:31:02.000Z" - }, - { - "title": "Latvia leads drone coalition within Ramstein format", - "link": "https://news.yahoo.com/latvia-leads-drone-coalition-within-182954111.html", - "pubDate": "2024-01-11T18:29:54Z", - "guid": "latvia-leads-drone-coalition-within-182954111.html", - "isoDate": "2024-01-11T18:29:54.000Z" - }, - { - "title": "Latvia announces new aid for Kyiv, including artillery, munitions, helicopters", - "link": "https://news.yahoo.com/latvia-announces-aid-kyiv-including-175257953.html", - "pubDate": "2024-01-11T17:52:57Z", - "guid": "latvia-announces-aid-kyiv-including-175257953.html", - "isoDate": "2024-01-11T17:52:57.000Z" - }, - { - "title": "Russia releases mostly convicts in prisoner exchange \u2014 video", - "link": "https://news.yahoo.com/russia-releases-mostly-convicts-prisoner-174000233.html", - "pubDate": "2024-01-11T17:40:00Z", - "guid": "russia-releases-mostly-convicts-prisoner-174000233.html", - "isoDate": "2024-01-11T17:40:00.000Z" - }, - { - "title": "The Five Most Powerful Lines in The Hague\u2019s Israel Genocide Case", - "link": "https://news.yahoo.com/five-most-powerful-lines-israel-172810130.html", - "pubDate": "2024-01-11T17:28:10Z", - "guid": "five-most-powerful-lines-israel-172810130.html", - "isoDate": "2024-01-11T17:28:10.000Z" - }, - { - "title": "Russian army made 3 attempts to assault left bank of Dnipro River \u2013 General Staff", - "link": "https://news.yahoo.com/russian-army-made-3-attempts-172718092.html", - "pubDate": "2024-01-11T17:27:18Z", - "guid": "russian-army-made-3-attempts-172718092.html", - "isoDate": "2024-01-11T17:27:18.000Z" - }, - { - "title": "Defense Ministry approves second design of body armor for female soldiers", - "link": "https://news.yahoo.com/defense-ministry-approves-second-design-170640390.html", - "pubDate": "2024-01-11T17:06:40Z", - "guid": "defense-ministry-approves-second-design-170640390.html", - "isoDate": "2024-01-11T17:06:40.000Z" - }, - { - "title": "Somalia conflict: Seized UN helicopter hit by object - source", - "link": "https://news.yahoo.com/somalia-conflict-seized-un-helicopter-165549397.html", - "pubDate": "2024-01-11T17:04:28Z", - "guid": "somalia-conflict-seized-un-helicopter-165549397.html", - "isoDate": "2024-01-11T17:04:28.000Z" - }, - { - "title": "Estonian military robot maker weighs production in Ukraine", - "link": "https://news.yahoo.com/estonian-military-robot-maker-weighs-170126996.html", - "pubDate": "2024-01-11T17:01:26Z", - "guid": "estonian-military-robot-maker-weighs-170126996.html", - "isoDate": "2024-01-11T17:01:26.000Z" - }, - { - "title": "Blinken sees \u2018concrete steps forward\u2019 as he ends Middle East trip", - "link": "https://news.yahoo.com/blinken-sees-concrete-steps-forward-164242170.html", - "pubDate": "2024-01-11T16:42:42Z", - "guid": "blinken-sees-concrete-steps-forward-164242170.html", - "isoDate": "2024-01-11T16:42:42.000Z" - }, - { - "title": "Air raid alert declared across Ukraine for over 1 hour as Russian MiG-31K jet takes off", - "link": "https://news.yahoo.com/air-raid-alert-declared-across-164100586.html", - "pubDate": "2024-01-11T16:41:00Z", - "guid": "air-raid-alert-declared-across-164100586.html", - "isoDate": "2024-01-11T16:41:00.000Z" - }, - { - "title": "Ukraine's Ambassador responds to article where Slovak PM justifies Russian Federation", - "link": "https://news.yahoo.com/ukraines-ambassador-responds-article-where-162446272.html", - "pubDate": "2024-01-11T16:24:46Z", - "guid": "ukraines-ambassador-responds-article-where-162446272.html", - "isoDate": "2024-01-11T16:24:46.000Z" - }, - { - "title": "Government officially announces withdrawal of mobilisation draft law", - "link": "https://news.yahoo.com/government-officially-announces-withdrawal-mobilisation-162040767.html", - "pubDate": "2024-01-11T16:20:40Z", - "guid": "government-officially-announces-withdrawal-mobilisation-162040767.html", - "isoDate": "2024-01-11T16:20:40.000Z" - }, - { - "title": "Russia's Medvedev again threatens use of nukes against Ukraine", - "link": "https://news.yahoo.com/russias-medvedev-again-threatens-nukes-155706347.html", - "pubDate": "2024-01-11T15:57:06Z", - "guid": "russias-medvedev-again-threatens-nukes-155706347.html", - "isoDate": "2024-01-11T15:57:06.000Z" - }, - { - "title": "Turkey, Bulgaria, Romania team up to clear Black Sea mines", - "link": "https://news.yahoo.com/turkey-bulgaria-romania-team-clear-154426925.html", - "pubDate": "2024-01-11T15:44:26Z", - "guid": "turkey-bulgaria-romania-team-clear-154426925.html", - "isoDate": "2024-01-11T15:44:26.000Z" - }, - { - "title": "Finland extends closure of Russian border for another month, fearing a migrant influx", - "link": "https://news.yahoo.com/finland-extends-closure-russian-border-151132521.html", - "pubDate": "2024-01-11T15:11:32Z", - "guid": "finland-extends-closure-russian-border-151132521.html", - "isoDate": "2024-01-11T15:11:32.000Z" - }, - { - "title": "IDF reveals elaborate Hamas tunnel 'confirmed to have held Israeli hostages'", - "link": "https://news.yahoo.com/idf-reveals-elaborate-hamas-tunnel-150522840.html", - "pubDate": "2024-01-11T15:05:22Z", - "guid": "idf-reveals-elaborate-hamas-tunnel-150522840.html", - "isoDate": "2024-01-11T15:05:22.000Z" - }, - { - "title": "Russian imports of military components have hardly fallen at all compared to before full-scale invasion", - "link": "https://news.yahoo.com/russian-imports-military-components-hardly-150007590.html", - "pubDate": "2024-01-11T15:00:07Z", - "guid": "russian-imports-military-components-hardly-150007590.html", - "isoDate": "2024-01-11T15:00:07.000Z" - }, - { - "title": "Zelenskyy visits Latvia \u2013 photo", - "link": "https://news.yahoo.com/zelenskyy-visits-latvia-photo-144849458.html", - "pubDate": "2024-01-11T14:48:49Z", - "guid": "zelenskyy-visits-latvia-photo-144849458.html", - "isoDate": "2024-01-11T14:48:49.000Z" - }, - { - "title": "South Africa calls Israel\u2019s leaders \u2018genocidal inciters\u2019 at ICJ case opening", - "link": "https://news.yahoo.com/south-africa-calls-israel-leaders-133614412.html", - "pubDate": "2024-01-11T14:45:46Z", - "guid": "south-africa-calls-israel-leaders-133614412.html", - "isoDate": "2024-01-11T14:45:46.000Z" - }, - { - "title": "Turkey, Romania, Bulgaria sign deal on Black Sea mine clearance", - "link": "https://news.yahoo.com/turkey-romania-bulgaria-sign-deal-141550093.html", - "pubDate": "2024-01-11T14:15:50Z", - "guid": "turkey-romania-bulgaria-sign-deal-141550093.html", - "isoDate": "2024-01-11T14:15:50.000Z" - }, - { - "title": "Ukraine holds firm even though Russia\u2019s ambitions extend beyond Kharkiv \u2014 Ground Forces spokesperson", - "link": "https://news.yahoo.com/ukraine-holds-firm-even-though-140400351.html", - "pubDate": "2024-01-11T14:04:00Z", - "guid": "ukraine-holds-firm-even-though-140400351.html", - "isoDate": "2024-01-11T14:04:00.000Z" - }, - { - "title": "South Africa\u2019s Justice Minister Robert Lamola accuses Israel of acts of genocide at the International Court of Justice.", - "link": "https://news.yahoo.com/south-africa-justice-minister-robert-135039420.html", - "pubDate": "2024-01-11T13:50:39Z", - "guid": "south-africa-justice-minister-robert-135039420.html", - "isoDate": "2024-01-11T13:50:39.000Z" - }, - { - "title": "Nintendo Shares Hit High Point Amid Switch 2 Interest", - "link": "https://www.yahoo.com/tech/nintendo-shares-hit-high-point-135023692.html", - "pubDate": "2024-01-11T13:50:23Z", - "guid": "nintendo-shares-hit-high-point-135023692.html", - "isoDate": "2024-01-11T13:50:23.000Z" - }, - { - "title": "Cabinet of Ministers withdraws mobilisation bill after emergency meeting", - "link": "https://news.yahoo.com/ukrainian-cabinet-ministers-emergency-meeting-134747903.html", - "pubDate": "2024-01-11T13:47:47Z", - "guid": "ukrainian-cabinet-ministers-emergency-meeting-134747903.html", - "isoDate": "2024-01-11T13:47:47.000Z" - }, - { - "title": "Ukraine certifies second sample of women's body armour \u2013 photo", - "link": "https://news.yahoo.com/ukraine-certifies-second-sample-womens-134547510.html", - "pubDate": "2024-01-11T13:45:47Z", - "guid": "ukraine-certifies-second-sample-womens-134547510.html", - "isoDate": "2024-01-11T13:45:47.000Z" - }, - { - "title": "Ukraine aims to become EU's eastern customs \u2013 Ukrainian Treasury", - "link": "https://news.yahoo.com/ukraine-aims-become-eus-eastern-133928558.html", - "pubDate": "2024-01-11T13:39:28Z", - "guid": "ukraine-aims-become-eus-eastern-133928558.html", - "isoDate": "2024-01-11T13:39:28.000Z" - }, - { - "title": "Iran could soon supply Russia with a new batch of ballistic missiles and drones \u2013 UA Air Force", - "link": "https://news.yahoo.com/iran-could-soon-supply-russia-133500705.html", - "pubDate": "2024-01-11T13:35:00Z", - "guid": "iran-could-soon-supply-russia-133500705.html", - "isoDate": "2024-01-11T13:35:00.000Z" - }, - { - "title": "PrivatBank customers can now get new bank cards delivered free to homes across Ukraine and six European countries", - "link": "https://news.yahoo.com/privatbank-customers-now-bank-cards-132700017.html", - "pubDate": "2024-01-11T13:27:00Z", - "guid": "privatbank-customers-now-bank-cards-132700017.html", - "isoDate": "2024-01-11T13:27:00.000Z" - }, - { - "title": "Unprecedented inflation for basic foods has Russians queuing for eggs \u2013 Soviet-style", - "link": "https://news.yahoo.com/unprecedented-inflation-basic-foods-russians-130400149.html", - "pubDate": "2024-01-11T13:04:00Z", - "guid": "unprecedented-inflation-basic-foods-russians-130400149.html", - "isoDate": "2024-01-11T13:04:00.000Z" - }, - { - "title": "UN concerned over Taliban arrests of Afghan women and girls for alleged Islamic headscarf violations", - "link": "https://news.yahoo.com/un-concerned-over-taliban-arrests-130223760.html", - "pubDate": "2024-01-11T13:02:23Z", - "guid": "un-concerned-over-taliban-arrests-130223760.html", - "isoDate": "2024-01-11T13:02:23.000Z" - }, - { - "title": "Hungarian Foreign Minister to hold meeting with Ukrainian counterpart in Uzhhorod", - "link": "https://news.yahoo.com/hungarian-foreign-minister-hold-meeting-125909018.html", - "pubDate": "2024-01-11T12:59:09Z", - "guid": "hungarian-foreign-minister-hold-meeting-125909018.html", - "isoDate": "2024-01-11T12:59:09.000Z" - }, - { - "title": "Court seizes property of businessmen implicated in Defense Ministry corruption scandal", - "link": "https://news.yahoo.com/media-court-seizes-property-businessmen-125117270.html", - "pubDate": "2024-01-11T12:51:17Z", - "guid": "media-court-seizes-property-businessmen-125117270.html", - "isoDate": "2024-01-11T12:51:17.000Z" - }, - { - "title": "Turkey, Bulgaria, Romania join forces to hunt Black Sea mines", - "link": "https://news.yahoo.com/turkey-bulgaria-romania-join-forces-123608806.html", - "pubDate": "2024-01-11T12:36:08Z", - "guid": "turkey-bulgaria-romania-join-forces-123608806.html", - "isoDate": "2024-01-11T12:36:08.000Z" - }, - { - "title": "Dangerous stasis on Israel's northern border leaves evacuees in limbo", - "link": "https://news.yahoo.com/dangerous-stasis-israels-northern-border-123502703.html", - "pubDate": "2024-01-11T12:35:02Z", - "guid": "dangerous-stasis-israels-northern-border-123502703.html", - "isoDate": "2024-01-11T12:35:02.000Z" - }, - { - "title": "Zelenskyy says Ukrainian men should return to Ukraine at least to pay taxes", - "link": "https://news.yahoo.com/zelenskyy-says-ukrainian-men-return-123317572.html", - "pubDate": "2024-01-11T12:33:17Z", - "guid": "zelenskyy-says-ukrainian-men-return-123317572.html", - "isoDate": "2024-01-11T12:33:17.000Z" - }, - { - "title": "Russian agent detained in Donetsk Oblast faces life for tracking Ukrainian frontline positions", - "link": "https://news.yahoo.com/russian-agent-detained-donetsk-oblast-122900752.html", - "pubDate": "2024-01-11T12:29:00Z", - "guid": "russian-agent-detained-donetsk-oblast-122900752.html", - "isoDate": "2024-01-11T12:29:00.000Z" - }, - { - "title": "Corruption prevention agency accuses PM Shmyhal of illegally exposing whistleblower, PM denies", - "link": "https://news.yahoo.com/corruption-prevention-agency-accuses-pm-122245447.html", - "pubDate": "2024-01-11T12:22:45Z", - "guid": "corruption-prevention-agency-accuses-pm-122245447.html", - "isoDate": "2024-01-11T12:22:45.000Z" - }, - { - "title": "Demining Black Sea: T\u00fcrkiye, Bulgaria and Romania sign agreement", - "link": "https://news.yahoo.com/demining-black-sea-t-rkiye-121308571.html", - "pubDate": "2024-01-11T12:13:08Z", - "guid": "demining-black-sea-t-rkiye-121308571.html", - "isoDate": "2024-01-11T12:13:08.000Z" - }, - { - "title": "Estonia pledges $1.3 billion in long-term support for Kyiv as Zelensky tours Baltics", - "link": "https://news.yahoo.com/estonia-pledges-1-3-billion-121206534.html", - "pubDate": "2024-01-11T12:12:06Z", - "guid": "estonia-pledges-1-3-billion-121206534.html", - "isoDate": "2024-01-11T12:12:06.000Z" - }, - { - "title": "Israel says South Africa distorting the truth in ICJ genocide case", - "link": "https://news.yahoo.com/israel-says-south-africa-distorting-104925570.html", - "pubDate": "2024-01-12T10:57:32Z", - "guid": "israel-says-south-africa-distorting-104925570.html", - "isoDate": "2024-01-12T10:57:32.000Z" - }, - { - "title": "What is South Africa\u2019s genocide case against Israel at the ICJ?", - "link": "https://news.yahoo.com/south-africa-genocide-case-against-131213223.html", - "pubDate": "2024-01-12T10:55:04Z", - "guid": "south-africa-genocide-case-against-131213223.html", - "isoDate": "2024-01-12T10:55:04.000Z" - }, - { - "title": "Ukraine's economy rises 5% in 2023 after nearly 29% GDP plunge in 2022", - "link": "https://news.yahoo.com/ukraines-economy-rises-5-2023-105400010.html", - "pubDate": "2024-01-12T10:54:00Z", - "guid": "ukraines-economy-rises-5-2023-105400010.html", - "isoDate": "2024-01-12T10:54:00.000Z" - }, - { - "title": "Cape Verde reaches malaria-free milestone", - "link": "https://news.yahoo.com/cape-verde-reaches-malaria-free-092825228.html", - "pubDate": "2024-01-12T10:41:14Z", - "guid": "cape-verde-reaches-malaria-free-092825228.html", - "isoDate": "2024-01-12T10:41:14.000Z" - }, - { - "title": "Austrian food company lobbies against Ukrainian sugar quotas, continues operations in Russia", - "link": "https://news.yahoo.com/austrian-food-company-lobbies-against-101400445.html", - "pubDate": "2024-01-12T10:14:00Z", - "guid": "austrian-food-company-lobbies-against-101400445.html", - "isoDate": "2024-01-12T10:14:00.000Z" - }, - { - "title": "NATO\u2019s rotational air defense presence on its eastern borders would be \u2018appropriate response to Russian escalation,\u2019 says Lithuanian Foreign", - "link": "https://news.yahoo.com/nato-rotational-air-defense-presence-092100506.html", - "pubDate": "2024-01-12T09:21:00Z", - "guid": "nato-rotational-air-defense-presence-092100506.html", - "isoDate": "2024-01-12T09:21:00.000Z" - }, - { - "title": "2 Russian airlines want to keep flying Soviet-era planes, but some of them are so old they're set to be phased out this year", - "link": "https://news.yahoo.com/2-russian-airlines-want-keep-091500907.html", - "pubDate": "2024-01-12T09:15:00Z", - "guid": "2-russian-airlines-want-keep-091500907.html", - "isoDate": "2024-01-12T09:15:00.000Z" - }, - { - "title": "Japan successfully launches spy satellite", - "link": "https://news.yahoo.com/japan-successfully-launches-spy-satellite-090832766.html", - "pubDate": "2024-01-12T09:08:32Z", - "guid": "japan-successfully-launches-spy-satellite-090832766.html", - "isoDate": "2024-01-12T09:08:32.000Z" - }, - { - "title": "Sunak to visit Kyiv Friday to set out new 'support package'", - "link": "https://news.yahoo.com/sunak-visit-kyiv-friday-set-083948030.html", - "pubDate": "2024-01-12T08:39:48Z", - "guid": "sunak-visit-kyiv-friday-set-083948030.html", - "isoDate": "2024-01-12T08:39:48.000Z" - }, - { - "title": "Sunak will announce more than \u00a32.5bn in military support for Ukraine next year", - "link": "https://news.yahoo.com/sunak-announce-more-2-5bn-082539295.html", - "pubDate": "2024-01-12T08:25:39Z", - "guid": "sunak-announce-more-2-5bn-082539295.html", - "isoDate": "2024-01-12T08:25:39.000Z" - }, - { - "title": "Russia increases ammunition production, but its quality is dropping \u2013 Defence Intelligence of Ukraine", - "link": "https://news.yahoo.com/russia-increases-ammunition-production-quality-082011123.html", - "pubDate": "2024-01-12T08:20:11Z", - "guid": "russia-increases-ammunition-production-quality-082011123.html", - "isoDate": "2024-01-12T08:20:11.000Z" - }, - { - "title": "Advertised ski tour to North Korea suggests return of first tourists since 2020", - "link": "https://www.yahoo.com/lifestyle/advertised-ski-tour-north-korea-081634355.html", - "pubDate": "2024-01-12T08:16:34Z", - "guid": "advertised-ski-tour-north-korea-081634355.html", - "isoDate": "2024-01-12T08:16:34.000Z" - }, - { - "title": "Russia wants small victories on the front ahead of Putin's \u2018reelection\u2019, Zelenskyy", - "link": "https://news.yahoo.com/russia-wants-small-victories-front-074900184.html", - "pubDate": "2024-01-12T07:49:00Z", - "guid": "russia-wants-small-victories-front-074900184.html", - "isoDate": "2024-01-12T07:49:00.000Z" - }, - { - "title": "Hillhouse, Mitsui vying for Singapore's Eu Yan Sang in $700 million deal - sources", - "link": "https://news.yahoo.com/hillhouse-mitsui-vying-singapores-eu-074609514.html", - "pubDate": "2024-01-12T07:46:09Z", - "guid": "hillhouse-mitsui-vying-singapores-eu-074609514.html", - "isoDate": "2024-01-12T07:46:09.000Z" - }, - { - "title": "EU ready to make concessions to Hungary to unlock \u20ac50 billion for Ukraine \u2013 FT", - "link": "https://news.yahoo.com/eu-ready-concessions-hungary-unlock-074344603.html", - "pubDate": "2024-01-12T07:43:44Z", - "guid": "eu-ready-concessions-hungary-unlock-074344603.html", - "isoDate": "2024-01-12T07:43:44.000Z" - }, - { - "title": "Freeze \u2018em out: No Russian passport, no coal for you \u2013 in occupied Kherson Oblast", - "link": "https://news.yahoo.com/freeze-em-no-russian-passport-072700015.html", - "pubDate": "2024-01-12T07:27:00Z", - "guid": "freeze-em-no-russian-passport-072700015.html", - "isoDate": "2024-01-12T07:27:00.000Z" - }, - { - "title": "Queue at Medyka-Shehyni crossing longer than at blocked checkpoints \u2013 Ukrainian border guards", - "link": "https://news.yahoo.com/queue-medyka-shehyni-crossing-longer-072419494.html", - "pubDate": "2024-01-12T07:24:19Z", - "guid": "queue-medyka-shehyni-crossing-longer-072419494.html", - "isoDate": "2024-01-12T07:24:19.000Z" - }, - { - "title": "Women assume \"male\" roles amidst full-scale war in Ukraine", - "link": "https://news.yahoo.com/women-assume-male-roles-amidst-071126802.html", - "pubDate": "2024-01-12T07:11:26Z", - "guid": "women-assume-male-roles-amidst-071126802.html", - "isoDate": "2024-01-12T07:11:26.000Z" - }, - { - "title": "Air defence rotation in NATO's east would be adequate response to Russian threat \u2013 Lithuanian Foreign Minister", - "link": "https://news.yahoo.com/air-defence-rotation-natos-east-065250778.html", - "pubDate": "2024-01-12T06:52:50Z", - "guid": "air-defence-rotation-natos-east-065250778.html", - "isoDate": "2024-01-12T06:52:50.000Z" - }, - { - "title": "Western companies have exited Russia in droves. New companies with owners from China and former Soviet republics are stepping in.", - "link": "https://news.yahoo.com/western-companies-exited-russia-droves-064854814.html", - "pubDate": "2024-01-12T06:48:54Z", - "guid": "western-companies-exited-russia-droves-064854814.html", - "isoDate": "2024-01-12T06:48:54.000Z" - }, - { - "title": "Mother of American hostage held by Hamas asks for global support to mark 100 days of captivity", - "link": "https://news.yahoo.com/mother-american-hostage-held-hamas-053109337.html", - "pubDate": "2024-01-12T05:31:09Z", - "guid": "mother-american-hostage-held-hamas-053109337.html", - "isoDate": "2024-01-12T05:31:09.000Z" - }, - { - "title": "Hyundai Motor India fixes bug that exposed customers' personal data", - "link": "https://news.yahoo.com/hyundai-motor-india-fixes-bug-050550872.html", - "pubDate": "2024-01-12T05:05:50Z", - "guid": "hyundai-motor-india-fixes-bug-050550872.html", - "isoDate": "2024-01-12T05:05:50.000Z" - }, - { - "title": "ISW: Russian forces' operational rotations will likely sustain offensive tempo in eastern Ukraine", - "link": "https://news.yahoo.com/isw-russian-forces-operational-rotations-044200560.html", - "pubDate": "2024-01-12T04:42:00Z", - "guid": "isw-russian-forces-operational-rotations-044200560.html", - "isoDate": "2024-01-12T04:42:00.000Z" - }, - { - "title": "ISW explains how Russia manages to carry out planned rotations", - "link": "https://news.yahoo.com/isw-explains-russia-manages-carry-024803972.html", - "pubDate": "2024-01-12T02:48:03Z", - "guid": "isw-explains-russia-manages-carry-024803972.html", - "isoDate": "2024-01-12T02:48:03.000Z" - }, - { - "title": "Former Canadian political leader Ed Broadbent, a social democracy stalwart, dies at 87", - "link": "https://news.yahoo.com/former-canadian-political-leader-ed-005203858.html", - "pubDate": "2024-01-12T00:52:03Z", - "guid": "former-canadian-political-leader-ed-005203858.html", - "isoDate": "2024-01-12T00:52:03.000Z" - }, - { - "title": "Evidence shows Russia used North Korean missiles in Ukraine \u2013 law enforcement", - "link": "https://news.yahoo.com/evidence-shows-russia-used-north-001000710.html", - "pubDate": "2024-01-12T00:10:00Z", - "guid": "evidence-shows-russia-used-north-001000710.html", - "isoDate": "2024-01-12T00:10:00.000Z" - }, - { - "title": "Hybe cracks down on unauthorized use of BTS name and images", - "link": "https://news.yahoo.com/hybe-cracks-down-unauthorized-bts-234432057.html", - "pubDate": "2024-01-11T23:44:32Z", - "guid": "hybe-cracks-down-unauthorized-bts-234432057.html", - "isoDate": "2024-01-11T23:44:32.000Z" - }, - { - "title": "Red Sea shipping attacks halt Tesla production at German plant", - "link": "https://news.yahoo.com/red-sea-shipping-attacks-halt-225640996.html", - "pubDate": "2024-01-11T22:56:40Z", - "guid": "red-sea-shipping-attacks-halt-225640996.html", - "isoDate": "2024-01-11T22:56:40.000Z" - }, - { - "title": "Czech teen went to Ukraine to join the fight", - "link": "https://news.yahoo.com/czech-teen-went-ukraine-join-224000832.html", - "pubDate": "2024-01-11T22:40:00Z", - "guid": "czech-teen-went-ukraine-join-224000832.html", - "isoDate": "2024-01-11T22:40:00.000Z" - }, - { - "title": "Japanese earthquake on Jan. 1 shifted coastline over 800 feet, satellite photos show", - "link": "https://news.yahoo.com/japanese-earthquake-jan-1-shifted-223026378.html", - "pubDate": "2024-01-11T22:30:26Z", - "guid": "japanese-earthquake-jan-1-shifted-223026378.html", - "isoDate": "2024-01-11T22:30:26.000Z" - }, - { - "title": "Latvia to provide Ukraine with helicopters and howitzers in new aid package", - "link": "https://news.yahoo.com/latvia-ukraine-helicopters-howitzers-aid-221000525.html", - "pubDate": "2024-01-11T22:10:00Z", - "guid": "latvia-ukraine-helicopters-howitzers-aid-221000525.html", - "isoDate": "2024-01-11T22:10:00.000Z" - }, - { - "title": "Government withdraws controversial mobilization bill from parliament", - "link": "https://news.yahoo.com/government-withdraws-controversial-mobilization-bill-214000814.html", - "pubDate": "2024-01-11T21:40:00Z", - "guid": "government-withdraws-controversial-mobilization-bill-214000814.html", - "isoDate": "2024-01-11T21:40:00.000Z" - }, - { - "title": "Young moose gets stuck on icy river. Then couple rushes to its rescue, videos show", - "link": "https://news.yahoo.com/young-moose-gets-stuck-icy-213448149.html", - "pubDate": "2024-01-11T21:34:48Z", - "guid": "young-moose-gets-stuck-icy-213448149.html", - "isoDate": "2024-01-11T21:34:48.000Z" - }, - { - "title": "At least 10,200 civilians killed in Ukraine war \u2013 UN", - "link": "https://news.yahoo.com/least-10-200-civilians-killed-211000199.html", - "pubDate": "2024-01-11T21:10:00Z", - "guid": "least-10-200-civilians-killed-211000199.html", - "isoDate": "2024-01-11T21:10:00.000Z" - }, - { - "title": "Sony DualSense V2 controller leaked ahead of release by Best Buy Canada, promises way more battery life", - "link": "https://news.yahoo.com/sony-dualsense-v2-controller-leaked-202944727.html", - "pubDate": "2024-01-11T20:29:44Z", - "guid": "sony-dualsense-v2-controller-leaked-202944727.html", - "isoDate": "2024-01-11T20:29:44.000Z" - }, - { - "title": "Argentina's annual inflation soars to 211.4%, the highest in 32 years", - "link": "https://news.yahoo.com/argentinas-annual-inflation-soars-211-195942347.html", - "pubDate": "2024-01-11T19:59:42Z", - "guid": "argentinas-annual-inflation-soars-211-195942347.html", - "isoDate": "2024-01-11T19:59:42.000Z" - }, - { - "title": "Putin critic Sergei Udaltsov arrested charged with 'justifying terrorism'", - "link": "https://news.yahoo.com/putin-critic-sergei-udaltsov-arrested-195606438.html", - "pubDate": "2024-01-11T19:56:06Z", - "guid": "putin-critic-sergei-udaltsov-arrested-195606438.html", - "isoDate": "2024-01-11T19:56:06.000Z" - }, - { - "title": "Latvia to transfer funds from Russian assets, mainly Moscow House, to aid Ukraine", - "link": "https://news.yahoo.com/latvia-transfer-funds-russian-assets-194539515.html", - "pubDate": "2024-01-11T19:45:39Z", - "guid": "latvia-transfer-funds-russian-assets-194539515.html", - "isoDate": "2024-01-11T19:45:39.000Z" - }, - { - "title": "Zelenskyy criticises West: If Ukraine were given seven Patriot systems, people would not be killed", - "link": "https://news.yahoo.com/zelenskyy-criticises-west-ukraine-were-192522551.html", - "pubDate": "2024-01-11T19:25:22Z", - "guid": "zelenskyy-criticises-west-ukraine-were-192522551.html", - "isoDate": "2024-01-11T19:25:22.000Z" - }, - { - "title": "Ukraine has no major achievements in front because Russians control sky \u2013 Zelenskyy", - "link": "https://news.yahoo.com/ukraine-no-major-achievements-front-191927536.html", - "pubDate": "2024-01-11T19:19:27Z", - "guid": "ukraine-no-major-achievements-front-191927536.html", - "isoDate": "2024-01-11T19:19:27.000Z" - }, - { - "title": "Border Guard: Romanian farmers, truckers block another crossing at Ukraine border", - "link": "https://news.yahoo.com/border-guard-romanian-farmers-truckers-111241532.html", - "pubDate": "2024-01-18T11:12:41Z", - "guid": "border-guard-romanian-farmers-truckers-111241532.html", - "isoDate": "2024-01-18T11:12:41.000Z" - }, - { - "title": "France ramps up weapons production for Ukraine and says Russia is scrutinizing the West's mettle", - "link": "https://news.yahoo.com/france-ramps-weapons-production-ukraine-104333860.html", - "pubDate": "2024-01-18T10:43:33Z", - "guid": "france-ramps-weapons-production-ukraine-104333860.html", - "isoDate": "2024-01-18T10:43:33.000Z" - }, - { - "title": "Rwandan president Paul Kagame suggests UK could get money back", - "link": "https://news.yahoo.com/rwandan-president-paul-kagame-suggests-132635190.html", - "pubDate": "2024-01-18T10:42:24Z", - "guid": "rwandan-president-paul-kagame-suggests-132635190.html", - "isoDate": "2024-01-18T10:42:24.000Z" - }, - { - "title": "Battle of Khan Younis threatens biggest hospital still functioning in Gaza", - "link": "https://finance.yahoo.com/news/wrapup-1-battle-khan-younis-101739853.html", - "pubDate": "2024-01-18T10:17:39Z", - "guid": "wrapup-1-battle-khan-younis-101739853.html", - "isoDate": "2024-01-18T10:17:39.000Z" - }, - { - "title": "Jersey Mike's expanding to Canada as iconic Jersey Shore brand goes international", - "link": "https://finance.yahoo.com/news/jersey-mikes-expanding-canada-iconic-101526829.html", - "pubDate": "2024-01-18T10:15:26Z", - "guid": "jersey-mikes-expanding-canada-iconic-101526829.html", - "isoDate": "2024-01-18T10:15:26.000Z" - }, - { - "title": "The Black Rhino, aka Hook-lipped Rhinoceros", - "link": "https://news.yahoo.com/black-rhino-aka-hook-lipped-101502864.html", - "pubDate": "2024-01-18T10:15:02Z", - "guid": "black-rhino-aka-hook-lipped-101502864.html", - "isoDate": "2024-01-18T10:15:02.000Z" - }, - { - "title": "What is the UK's plan to send asylum seekers to Rwanda?", - "link": "https://news.yahoo.com/uks-plan-send-asylum-seekers-115140285.html", - "pubDate": "2024-01-18T09:57:23Z", - "guid": "uks-plan-send-asylum-seekers-115140285.html", - "isoDate": "2024-01-18T09:57:23.000Z" - }, - { - "title": "Media: Ukrainian drone attack hits oil depot near St Petersburg", - "link": "https://news.yahoo.com/media-ukrainian-drone-attack-hits-094355710.html", - "pubDate": "2024-01-18T09:43:55Z", - "guid": "media-ukrainian-drone-attack-hits-094355710.html", - "isoDate": "2024-01-18T09:43:55.000Z" - }, - { - "title": "Better Business Bureau: Making charitable donations after a natural disaster", - "link": "https://finance.yahoo.com/news/better-business-bureau-making-charitable-094013986.html", - "pubDate": "2024-01-18T09:40:13Z", - "guid": "better-business-bureau-making-charitable-094013986.html", - "isoDate": "2024-01-18T09:40:13.000Z" - }, - { - "title": "Rishi Sunak sees off Conservative rebels as MPs back Rwanda bill", - "link": "https://news.yahoo.com/rishi-sunak-sees-off-conservative-222047582.html", - "pubDate": "2024-01-18T09:40:00Z", - "guid": "rishi-sunak-sees-off-conservative-222047582.html", - "isoDate": "2024-01-18T09:40:00.000Z" - }, - { - "title": "Gharial: The Rare Crocodilian With an Extremely Narrow Snout", - "link": "https://news.yahoo.com/gharial-rare-crocodilian-extremely-narrow-093003698.html", - "pubDate": "2024-01-18T09:30:03Z", - "guid": "gharial-rare-crocodilian-extremely-narrow-093003698.html", - "isoDate": "2024-01-18T09:30:03.000Z" - }, - { - "title": "UK Foreign Secretary Cameron urges world \u2018not to appease Putin\u2019", - "link": "https://news.yahoo.com/uk-foreign-secretary-cameron-urges-092900125.html", - "pubDate": "2024-01-18T09:29:00Z", - "guid": "uk-foreign-secretary-cameron-urges-092900125.html", - "isoDate": "2024-01-18T09:29:00.000Z" - }, - { - "title": "'Renaissance figure' Lesley Lokko awarded architecture's Royal Gold Medal", - "link": "https://news.yahoo.com/renaissance-figure-lesley-lokko-awarded-012442969.html", - "pubDate": "2024-01-18T09:09:32Z", - "guid": "renaissance-figure-lesley-lokko-awarded-012442969.html", - "isoDate": "2024-01-18T09:09:32.000Z" - }, - { - "title": "German parliament to vote again on long-range Taurus missile transfer to UA \u2013 likely by Feb. 22", - "link": "https://news.yahoo.com/german-parliament-vote-again-long-090700000.html", - "pubDate": "2024-01-18T09:07:00Z", - "guid": "german-parliament-vote-again-long-090700000.html", - "isoDate": "2024-01-18T09:07:00.000Z" - }, - { - "title": "Ukraine needs increased Western support to avoid \"printing money,\" EBRD says", - "link": "https://news.yahoo.com/ukraine-needs-increased-western-support-081652959.html", - "pubDate": "2024-01-18T08:16:52Z", - "guid": "ukraine-needs-increased-western-support-081652959.html", - "isoDate": "2024-01-18T08:16:52.000Z" - }, - { - "title": "Polish-Ukrainian border no longer blocked, but Romanian border still is", - "link": "https://news.yahoo.com/polish-ukrainian-border-no-longer-081251249.html", - "pubDate": "2024-01-18T08:12:51Z", - "guid": "polish-ukrainian-border-no-longer-081251249.html", - "isoDate": "2024-01-18T08:12:51.000Z" - }, - { - "title": "Ukrainian drones hit oil depot in St Petersburg", - "link": "https://news.yahoo.com/ukrainian-drones-hit-oil-depot-075903662.html", - "pubDate": "2024-01-18T07:59:03Z", - "guid": "ukrainian-drones-hit-oil-depot-075903662.html", - "isoDate": "2024-01-18T07:59:03.000Z" - }, - { - "title": "Ukraine now a global leader in drone production, \u2018Our Western partners study our drones\u2019 \u2013 Danilov", - "link": "https://news.yahoo.com/ukraine-now-global-leader-drone-075800753.html", - "pubDate": "2024-01-18T07:58:00Z", - "guid": "ukraine-now-global-leader-drone-075800753.html", - "isoDate": "2024-01-18T07:58:00.000Z" - }, - { - "title": "Georgia grants visa-free travel to citizens from 95 countries, not just South Koreans", - "link": "https://news.yahoo.com/georgia-grants-visa-free-travel-070605265.html", - "pubDate": "2024-01-18T07:06:05Z", - "guid": "georgia-grants-visa-free-travel-070605265.html", - "isoDate": "2024-01-18T07:06:05.000Z" - }, - { - "title": "3 Russian drones destroyed over Khmelnytskyi Oblast at night, 4 more in Dnipropetrovsk Oblast", - "link": "https://news.yahoo.com/3-russian-drones-destroyed-over-065221872.html", - "pubDate": "2024-01-18T06:52:21Z", - "guid": "3-russian-drones-destroyed-over-065221872.html", - "isoDate": "2024-01-18T06:52:21.000Z" - }, - { - "title": "Ukrainian defenders destroy 24 artillery systems and 21 Russian tanks in one day", - "link": "https://news.yahoo.com/ukrainian-defenders-destroy-24-artillery-060912210.html", - "pubDate": "2024-01-18T06:09:12Z", - "guid": "ukrainian-defenders-destroy-24-artillery-060912210.html", - "isoDate": "2024-01-18T06:09:12.000Z" - }, - { - "title": "Japan's northern Aomori prefecture offers early sign of broadening wage hikes", - "link": "https://finance.yahoo.com/news/japans-northern-aomori-prefecture-offers-060648183.html", - "pubDate": "2024-01-18T06:06:48Z", - "guid": "japans-northern-aomori-prefecture-offers-060648183.html", - "isoDate": "2024-01-18T06:06:48.000Z" - }, - { - "title": "Macron Calls for Joint European Bonds to Fund Defense, Tech", - "link": "https://news.yahoo.com/macron-calls-joint-european-bonds-060223723.html", - "pubDate": "2024-01-18T06:02:23Z", - "guid": "macron-calls-joint-european-bonds-060223723.html", - "isoDate": "2024-01-18T06:02:23.000Z" - }, - { - "title": "Pakistan conducts retaliatory military strikes against Pakistani terrorists operating in Iran", - "link": "https://news.yahoo.com/pakistan-conducts-retaliatory-military-strikes-055055915.html", - "pubDate": "2024-01-18T05:50:55Z", - "guid": "pakistan-conducts-retaliatory-military-strikes-055055915.html", - "isoDate": "2024-01-18T05:50:55.000Z" - }, - { - "title": "Brazil's Indigenous Yanomami again face illegal mining-linked crisis", - "link": "https://news.yahoo.com/brazils-indigenous-yanomami-again-face-023312477.html", - "pubDate": "2024-01-18T02:33:12Z", - "guid": "brazils-indigenous-yanomami-again-face-023312477.html", - "isoDate": "2024-01-18T02:33:12.000Z" - }, - { - "title": "Bay Bridge protestors push to get charges dropped", - "link": "https://news.yahoo.com/bay-bridge-protestors-push-charges-014514484.html", - "pubDate": "2024-01-18T01:45:14Z", - "guid": "bay-bridge-protestors-push-charges-014514484.html", - "isoDate": "2024-01-18T01:45:14.000Z" - }, - { - "title": "Economists Favor Jokowi Critic as Top Choice to Lead Indonesia", - "link": "https://news.yahoo.com/economists-favor-jokowi-critic-top-010000793.html", - "pubDate": "2024-01-18T01:00:00Z", - "guid": "economists-favor-jokowi-critic-top-010000793.html", - "isoDate": "2024-01-18T01:00:00.000Z" - }, - { - "title": "France finalizing security agreement with Ukraine \u2014 Macron", - "link": "https://news.yahoo.com/france-finalizing-security-agreement-ukraine-002000117.html", - "pubDate": "2024-01-18T00:20:00Z", - "guid": "france-finalizing-security-agreement-ukraine-002000117.html", - "isoDate": "2024-01-18T00:20:00.000Z" - }, - { - "title": "Medicine for Gaza hostages arrives as part of Qatar-brokered aid deal", - "link": "https://news.yahoo.com/medicine-gaza-hostages-arrives-part-234131115.html", - "pubDate": "2024-01-17T23:41:31Z", - "guid": "medicine-gaza-hostages-arrives-part-234131115.html", - "isoDate": "2024-01-17T23:41:31.000Z" - }, - { - "title": "BTS' RM, V complete basic military training", - "link": "https://news.yahoo.com/bts-rm-v-complete-basic-231403328.html", - "pubDate": "2024-01-17T23:14:03Z", - "guid": "bts-rm-v-complete-basic-231403328.html", - "isoDate": "2024-01-17T23:14:03.000Z" - }, - { - "title": "Hostages in Gaza sent medicine as part of Qatar-brokered aid deal", - "link": "https://news.yahoo.com/hostages-gaza-sent-medicine-part-231132016.html", - "pubDate": "2024-01-17T23:11:32Z", - "guid": "hostages-gaza-sent-medicine-part-231132016.html", - "isoDate": "2024-01-17T23:11:32.000Z" - }, - { - "title": "\u2018Large\u2019 creature \u2014 with \u2018strangely shaped\u2019 tail tip \u2014 is new venomous species. See it", - "link": "https://news.yahoo.com/large-creature-strangely-shaped-tail-224051473.html", - "pubDate": "2024-01-17T22:40:51Z", - "guid": "large-creature-strangely-shaped-tail-224051473.html", - "isoDate": "2024-01-17T22:40:51.000Z" - }, - { - "title": "Bulgaria yet to deliver 100 APCs to Ukraine, despite July 2023 pledge", - "link": "https://news.yahoo.com/bulgaria-yet-deliver-100-apcs-222000185.html", - "pubDate": "2024-01-17T22:20:00Z", - "guid": "bulgaria-yet-deliver-100-apcs-222000185.html", - "isoDate": "2024-01-17T22:20:00.000Z" - }, - { - "title": "Ibadan explosion in Nigeria: 'The roof fell on my mother in bed'", - "link": "https://news.yahoo.com/nigeria-ibadan-explosion-deadly-blast-092047171.html", - "pubDate": "2024-01-17T21:27:22Z", - "guid": "nigeria-ibadan-explosion-deadly-blast-092047171.html", - "isoDate": "2024-01-17T21:27:22.000Z" - }, - { - "title": "Energy giant DTEK presses international partners to encourage flow of private capital to Ukraine", - "link": "https://news.yahoo.com/energy-giant-dtek-presses-international-212420164.html", - "pubDate": "2024-01-17T21:24:20Z", - "guid": "energy-giant-dtek-presses-international-212420164.html", - "isoDate": "2024-01-17T21:24:20.000Z" - }, - { - "title": "Poland gears up for further military aid to Ukraine", - "link": "https://news.yahoo.com/poland-gears-further-military-aid-212000338.html", - "pubDate": "2024-01-17T21:20:00Z", - "guid": "poland-gears-further-military-aid-212000338.html", - "isoDate": "2024-01-17T21:20:00.000Z" - }, - { - "title": "Ukraine's Security Service seizes hard drives containing covert recordings of Bihus.Info team", - "link": "https://news.yahoo.com/ukraines-security-seizes-hard-drives-211702771.html", - "pubDate": "2024-01-17T21:17:02Z", - "guid": "ukraines-security-seizes-hard-drives-211702771.html", - "isoDate": "2024-01-17T21:17:02.000Z" - }, - { - "title": "German parliament rejects motion to deliver Taurus missiles to Ukraine", - "link": "https://news.yahoo.com/german-parliament-rejects-motion-deliver-211557022.html", - "pubDate": "2024-01-17T21:15:57Z", - "guid": "german-parliament-rejects-motion-deliver-211557022.html", - "isoDate": "2024-01-17T21:15:57.000Z" - }, - { - "title": "Russia recruits Crimean locals for its African proxies, Kyiv says", - "link": "https://news.yahoo.com/russia-recruits-crimean-locals-african-205000866.html", - "pubDate": "2024-01-17T20:50:00Z", - "guid": "russia-recruits-crimean-locals-african-205000866.html", - "isoDate": "2024-01-17T20:50:00.000Z" - }, - { - "title": "Frontline situation and Ukraine's actions in 2024 discussed at Staff meeting", - "link": "https://news.yahoo.com/frontline-situation-ukraines-actions-2024-204328690.html", - "pubDate": "2024-01-17T20:43:28Z", - "guid": "frontline-situation-ukraines-actions-2024-204328690.html", - "isoDate": "2024-01-17T20:43:28.000Z" - }, - { - "title": "Zelenskyy on B\u0456hus.Info surveillance: Any pressure on journalists is unacceptable", - "link": "https://news.yahoo.com/zelenskyy-b-hus-surveillance-pressure-201938441.html", - "pubDate": "2024-01-17T20:19:38Z", - "guid": "zelenskyy-b-hus-surveillance-pressure-201938441.html", - "isoDate": "2024-01-17T20:19:38.000Z" - }, - { - "title": "Russians seek ways of being more effective in their attacks", - "link": "https://news.yahoo.com/russians-seek-ways-being-more-194534624.html", - "pubDate": "2024-01-17T19:45:34Z", - "guid": "russians-seek-ways-being-more-194534624.html", - "isoDate": "2024-01-17T19:45:34.000Z" - }, - { - "title": "World's second GovTech centre to open in Ukraine", - "link": "https://news.yahoo.com/worlds-second-govtech-centre-open-193854889.html", - "pubDate": "2024-01-17T19:38:54Z", - "guid": "worlds-second-govtech-centre-open-193854889.html", - "isoDate": "2024-01-17T19:38:54.000Z" - }, - { - "title": "Ukraine's state budget deficit after 2024 can be covered by revenues from frozen Russian assets \u2013 President's Office", - "link": "https://news.yahoo.com/ukraines-state-budget-deficit-2024-191411356.html", - "pubDate": "2024-01-17T19:14:11Z", - "guid": "ukraines-state-budget-deficit-2024-191411356.html", - "isoDate": "2024-01-17T19:14:11.000Z" - }, - { - "title": "German Bundestag rejects opposition proposal to supply Taurus to Ukraine", - "link": "https://news.yahoo.com/german-bundestag-rejects-opposition-proposal-191049215.html", - "pubDate": "2024-01-17T19:10:49Z", - "guid": "german-bundestag-rejects-opposition-proposal-191049215.html", - "isoDate": "2024-01-17T19:10:49.000Z" - }, - { - "title": "Ukraine's Foreign Minister talks to Serbian President in Davos about European integration and bilateral relations", - "link": "https://news.yahoo.com/ukraines-foreign-minister-talks-serbian-190715518.html", - "pubDate": "2024-01-17T19:07:15Z", - "guid": "ukraines-foreign-minister-talks-serbian-190715518.html", - "isoDate": "2024-01-17T19:07:15.000Z" - }, - { - "title": "NATO-Ukraine meeting in Brussels takes place without Ukraine's Commander-in-Chief \u2013 photo", - "link": "https://news.yahoo.com/nato-ukraine-meeting-brussels-takes-185154783.html", - "pubDate": "2024-01-17T18:51:54Z", - "guid": "nato-ukraine-meeting-brussels-takes-185154783.html", - "isoDate": "2024-01-17T18:51:54.000Z" - }, - { - "title": "Bulgaria has not yet sent Ukraine promised APCs, government explains why", - "link": "https://news.yahoo.com/bulgaria-not-yet-sent-ukraine-184112590.html", - "pubDate": "2024-01-17T18:41:12Z", - "guid": "bulgaria-not-yet-sent-ukraine-184112590.html", - "isoDate": "2024-01-17T18:41:12.000Z" - }, - { - "title": "Canada Named The Safest Place To Travel In 2024", - "link": "https://www.yahoo.com/entertainment/canada-named-safest-place-travel-182919043.html", - "pubDate": "2024-01-17T18:29:19Z", - "guid": "canada-named-safest-place-travel-182919043.html", - "isoDate": "2024-01-17T18:29:19.000Z" - }, - { - "title": "Ernest Bai Koroma: Former president can leave Sierra Leone amid Nigeria exile rumours", - "link": "https://news.yahoo.com/ernest-bai-koroma-former-president-173353668.html", - "pubDate": "2024-01-17T18:18:39Z", - "guid": "ernest-bai-koroma-former-president-173353668.html", - "isoDate": "2024-01-17T18:18:39.000Z" - }, - { - "title": "Ghana power crisis: Limited gas supply triggers nationwide power outage", - "link": "https://news.yahoo.com/ghana-power-crisis-limited-gas-062700589.html", - "pubDate": "2023-10-27T12:53:56Z", - "guid": "ghana-power-crisis-limited-gas-062700589.html", - "isoDate": "2023-10-27T12:53:56.000Z" - }, - { - "title": "War-weary mothers, wives and children of Ukrainian soldiers demand a cap on military service time", - "link": "https://news.yahoo.com/war-weary-mothers-wives-children-124310917.html", - "pubDate": "2023-10-27T12:43:10Z", - "guid": "war-weary-mothers-wives-children-124310917.html", - "isoDate": "2023-10-27T12:43:10.000Z" - }, - { - "title": "Russia using small waves of Iranian Shahed attack drones to probe Ukrainian air defenses, air force says", - "link": "https://news.yahoo.com/russia-using-small-waves-iranian-120500288.html", - "pubDate": "2023-10-27T12:05:00Z", - "guid": "russia-using-small-waves-iranian-120500288.html", - "isoDate": "2023-10-27T12:05:00.000Z" - }, - { - "title": "Ukraine to rally support at Malta talks, sees no cracks in allied backing", - "link": "https://finance.yahoo.com/news/ukraine-rally-support-malta-talks-115604950.html", - "pubDate": "2023-10-27T11:56:04Z", - "guid": "ukraine-rally-support-malta-talks-115604950.html", - "isoDate": "2023-10-27T11:56:04.000Z" - }, - { - "title": "Big explosion near Khmelnitskyi NPP, Kolomoisky turns over media network, hands-on F-16 training", - "link": "https://news.yahoo.com/big-explosion-near-khmelnitskyi-npp-114400091.html", - "pubDate": "2023-10-27T11:44:00Z", - "guid": "big-explosion-near-khmelnitskyi-npp-114400091.html", - "isoDate": "2023-10-27T11:44:00.000Z" - }, - { - "title": "China\u2019s Ex-Premier Li Keqiang, a Reformer Sidelined by Xi, Dies", - "link": "https://news.yahoo.com/china-ex-premier-li-keqiang-114026963.html", - "pubDate": "2023-10-27T11:40:26Z", - "guid": "china-ex-premier-li-keqiang-114026963.html", - "isoDate": "2023-10-27T11:40:26.000Z" - }, - { - "title": "Israel Latest: Hamas Won\u2019t Get Fuel for More Hostage Releases", - "link": "https://news.yahoo.com/israel-latest-troops-again-enter-054916158.html", - "pubDate": "2023-10-27T11:31:53Z", - "guid": "israel-latest-troops-again-enter-054916158.html", - "isoDate": "2023-10-27T11:31:53.000Z" - }, - { - "title": "16% of residents of front-line territories read Russian news \u2013 KIIS survey data", - "link": "https://news.yahoo.com/16-residents-front-line-territories-111900160.html", - "pubDate": "2023-10-27T11:19:00Z", - "guid": "16-residents-front-line-territories-111900160.html", - "isoDate": "2023-10-27T11:19:00.000Z" - }, - { - "title": "Ukraine Recap: Pro-Kremlin Ex-MP Shot in Assassination Attempt", - "link": "https://news.yahoo.com/ukraine-recap-china-likely-skip-070002566.html", - "pubDate": "2023-10-27T11:14:39Z", - "guid": "ukraine-recap-china-likely-skip-070002566.html", - "isoDate": "2023-10-27T11:14:39.000Z" - }, - { - "title": "In D.C., activists find that there are still pro-Ukraine Republicans, but their voters have mixed feelings on aid", - "link": "https://news.yahoo.com/d-c-activists-still-pro-110701338.html", - "pubDate": "2023-10-27T11:07:01Z", - "guid": "d-c-activists-still-pro-110701338.html", - "isoDate": "2023-10-27T11:07:01.000Z" - }, - { - "title": "Ukraine retrieves 50 bodies of fallen soldiers", - "link": "https://news.yahoo.com/ukraine-retrieves-50-bodies-fallen-110327486.html", - "pubDate": "2023-10-27T11:03:27Z", - "guid": "ukraine-retrieves-50-bodies-fallen-110327486.html", - "isoDate": "2023-10-27T11:03:27.000Z" - }, - { - "title": "Xi Faces \u2018Delicate Political Moment\u2019 in Handling Grief Over Li", - "link": "https://news.yahoo.com/xi-faces-delicate-political-moment-104705823.html", - "pubDate": "2023-10-27T10:47:05Z", - "guid": "xi-faces-delicate-political-moment-104705823.html", - "isoDate": "2023-10-27T10:47:05.000Z" - }, - { - "title": "The Kremlin plans to raffle off houses and holidays to shore up support for Putin ahead of an election: report", - "link": "https://news.yahoo.com/kremlin-plans-raffle-off-houses-103946087.html", - "pubDate": "2023-10-27T10:39:46Z", - "guid": "kremlin-plans-raffle-off-houses-103946087.html", - "isoDate": "2023-10-27T10:39:46.000Z" - }, - { - "title": "Scholz Warns\u00a0EU Leaders It\u2019s Time for Tough Spending Choices", - "link": "https://news.yahoo.com/scholz-warns-eu-leaders-time-103642794.html", - "pubDate": "2023-10-27T10:36:42Z", - "guid": "scholz-warns-eu-leaders-time-103642794.html", - "isoDate": "2023-10-27T10:36:42.000Z" - }, - { - "title": "Ukraine brings back bodies of 50 fallen soldiers", - "link": "https://news.yahoo.com/ukraine-brings-back-bodies-50-101100128.html", - "pubDate": "2023-10-27T10:11:00Z", - "guid": "ukraine-brings-back-bodies-50-101100128.html", - "isoDate": "2023-10-27T10:11:00.000Z" - }, - { - "title": "Ukraine\u2019s winter energy outlook: Challenges and opportunities \u2013 Interview with energy expert", - "link": "https://news.yahoo.com/ukraine-winter-energy-outlook-challenges-100600308.html", - "pubDate": "2023-10-27T10:06:00Z", - "guid": "ukraine-winter-energy-outlook-challenges-100600308.html", - "isoDate": "2023-10-27T10:06:00.000Z" - }, - { - "title": "Ugandan anger at plan to name road after slain tourists", - "link": "https://news.yahoo.com/ugandan-anger-plan-name-road-100116828.html", - "pubDate": "2023-10-27T10:05:15Z", - "guid": "ugandan-anger-plan-name-road-100116828.html", - "isoDate": "2023-10-27T10:05:15.000Z" - }, - { - "title": "US adds sanctions on Hamas, Iran's Revolutionary Guard members", - "link": "https://news.yahoo.com/us-puts-sanctions-hamas-members-100301815.html", - "pubDate": "2023-10-27T10:03:01Z", - "guid": "us-puts-sanctions-hamas-members-100301815.html", - "isoDate": "2023-10-27T10:03:01.000Z" - }, - { - "title": "Milei Support Opens Deep Crack in Argentina\u2019s Opposition Coalition", - "link": "https://news.yahoo.com/milei-support-opens-deep-crack-100000245.html", - "pubDate": "2023-10-27T10:00:00Z", - "guid": "milei-support-opens-deep-crack-100000245.html", - "isoDate": "2023-10-27T10:00:00.000Z" - }, - { - "title": "Orban repeats that Ukraine will not win war", - "link": "https://news.yahoo.com/orban-repeats-ukraine-not-win-095843629.html", - "pubDate": "2023-10-27T09:58:43Z", - "guid": "orban-repeats-ukraine-not-win-095843629.html", - "isoDate": "2023-10-27T09:58:43.000Z" - }, - { - "title": "Slovakia's PM says to EU that his country concerned about corruption in Ukraine \u2013 Politico", - "link": "https://news.yahoo.com/slovakias-pm-says-eu-country-095351899.html", - "pubDate": "2023-10-27T09:53:51Z", - "guid": "slovakias-pm-says-eu-country-095351899.html", - "isoDate": "2023-10-27T09:53:51.000Z" - }, - { - "title": "INSIGHT-Broken Lebanon cannot afford war, and Hezbollah knows it", - "link": "https://finance.yahoo.com/news/insight-broken-lebanon-cannot-afford-094621076.html", - "pubDate": "2023-10-27T09:46:21Z", - "guid": "insight-broken-lebanon-cannot-afford-094621076.html", - "isoDate": "2023-10-27T09:46:21.000Z" - }, - { - "title": "What Orb\u00e1n does towards Putin gives middle finger to Ukrainian soldiers \u2013 Luxembourg PM", - "link": "https://news.yahoo.com/orb-n-does-towards-putin-093538807.html", - "pubDate": "2023-10-27T09:35:38Z", - "guid": "orb-n-does-towards-putin-093538807.html", - "isoDate": "2023-10-27T09:35:38.000Z" - }, - { - "title": "Ukraine, Israel conflicts test US weapons production capacity", - "link": "https://news.yahoo.com/ukraine-israel-conflicts-test-us-093000675.html", - "pubDate": "2023-10-27T09:30:00Z", - "guid": "ukraine-israel-conflicts-test-us-093000675.html", - "isoDate": "2023-10-27T09:30:00.000Z" - }, - { - "title": "Expats in Netherlands Face Higher Taxes After House Votes to Shrink Benefit", - "link": "https://news.yahoo.com/expats-netherlands-face-higher-taxes-092439108.html", - "pubDate": "2023-10-27T09:24:39Z", - "guid": "expats-netherlands-face-higher-taxes-092439108.html", - "isoDate": "2023-10-27T09:24:39.000Z" - }, - { - "title": "Poll: Over half of Ukrainians in front-line, liberated regions lack news about war progress", - "link": "https://news.yahoo.com/poll-over-half-ukrainians-front-091729503.html", - "pubDate": "2023-10-27T09:17:29Z", - "guid": "poll-over-half-ukrainians-front-091729503.html", - "isoDate": "2023-10-27T09:17:29.000Z" - }, - { - "title": "Biden threads a needle with US strikes\u00a0against Iranian-backed militias", - "link": "https://news.yahoo.com/biden-threads-needle-us-strikes-043007298.html", - "pubDate": "2023-10-27T09:00:15Z", - "guid": "biden-threads-needle-us-strikes-043007298.html", - "isoDate": "2023-10-27T09:00:15.000Z" - }, - { - "title": "National newscast trusted by 44% of Ukrainians, Zelenskyy leads public figures list", - "link": "https://news.yahoo.com/national-newscast-trusted-44-ukrainians-085731899.html", - "pubDate": "2023-10-27T08:57:31Z", - "guid": "national-newscast-trusted-44-ukrainians-085731899.html", - "isoDate": "2023-10-27T08:57:31.000Z" - }, - { - "title": "Young Indians should work 70 hours a week, says billionaire tech founder", - "link": "https://finance.yahoo.com/news/young-indians-70-hours-week-084814107.html", - "pubDate": "2023-10-27T08:48:14Z", - "guid": "young-indians-70-hours-week-084814107.html", - "isoDate": "2023-10-27T08:48:14.000Z" - }, - { - "title": "Kakhovka HPP disaster goes beyond Ukraine's borders \u2013 UN assessment", - "link": "https://news.yahoo.com/kakhovka-hpp-disaster-goes-beyond-084626004.html", - "pubDate": "2023-10-27T08:46:26Z", - "guid": "kakhovka-hpp-disaster-goes-beyond-084626004.html", - "isoDate": "2023-10-27T08:46:26.000Z" - }, - { - "title": "Thaksin\u2019s Daughter Takes Helm of Thailand\u2019s Ruling Party", - "link": "https://news.yahoo.com/thaksin-daughter-takes-helm-thailand-082812592.html", - "pubDate": "2023-10-27T08:28:12Z", - "guid": "thaksin-daughter-takes-helm-thailand-082812592.html", - "isoDate": "2023-10-27T08:28:12.000Z" - }, - { - "title": "Putin will die, but it's not enough for changes in Russia \u2013 senior Ukrainian official", - "link": "https://news.yahoo.com/putin-die-not-enough-changes-082423329.html", - "pubDate": "2023-10-27T08:24:23Z", - "guid": "putin-die-not-enough-changes-082423329.html", - "isoDate": "2023-10-27T08:24:23.000Z" - }, - { - "title": "UK Defence Intelligence says Russia suspends missile launches while stockpiling for winter", - "link": "https://news.yahoo.com/uk-defence-intelligence-says-russia-082008426.html", - "pubDate": "2023-10-27T08:20:08Z", - "guid": "uk-defence-intelligence-says-russia-082008426.html", - "isoDate": "2023-10-27T08:20:08.000Z" - }, - { - "title": "Prime Ministers of Slovakia and Hungary \"stormed\" with questions about Ukraine at EU summit \u2013 Estonian Prime Minister", - "link": "https://news.yahoo.com/prime-ministers-slovakia-hungary-stormed-081502280.html", - "pubDate": "2023-10-27T08:15:02Z", - "guid": "prime-ministers-slovakia-hungary-stormed-081502280.html", - "isoDate": "2023-10-27T08:15:02.000Z" - }, - { - "title": "New US House speaker says aid requests for Ukraine, Israel should be split", - "link": "https://news.yahoo.com/us-house-speaker-says-aid-080201550.html", - "pubDate": "2023-10-27T08:02:01Z", - "guid": "us-house-speaker-says-aid-080201550.html", - "isoDate": "2023-10-27T08:02:01.000Z" - }, - { - "title": "In Photos: A Look Back at the Rise and Fall of Li\u00a0Keqiang\u2019s Political Career", - "link": "https://news.yahoo.com/photos-look-back-rise-fall-075125130.html", - "pubDate": "2023-10-27T07:51:25Z", - "guid": "photos-look-back-rise-fall-075125130.html", - "isoDate": "2023-10-27T07:51:25.000Z" - }, - { - "title": "Philippines Drops China Railway Deals, Seeks Other Funders", - "link": "https://news.yahoo.com/philippines-drops-china-railway-deals-064446168.html", - "pubDate": "2023-10-27T06:44:46Z", - "guid": "philippines-drops-china-railway-deals-064446168.html", - "isoDate": "2023-10-27T06:44:46.000Z" - }, - { - "title": "Ukraine's border guards capture Moscow resident, only survivor in his unit", - "link": "https://news.yahoo.com/ukraines-border-guards-capture-moscow-063949626.html", - "pubDate": "2023-10-27T06:39:49Z", - "guid": "ukraines-border-guards-capture-moscow-063949626.html", - "isoDate": "2023-10-27T06:39:49.000Z" - }, - { - "title": "Russian attacks kill 2, injure 11 in Ukraine", - "link": "https://news.yahoo.com/russian-attacks-kill-2-injure-063329281.html", - "pubDate": "2023-10-27T06:33:29Z", - "guid": "russian-attacks-kill-2-injure-063329281.html", - "isoDate": "2023-10-27T06:33:29.000Z" - }, - { - "title": "Russia launches 6 Shahed drones and a missile on Ukraine, air defence downs 5 UAVs", - "link": "https://news.yahoo.com/russia-launches-6-shahed-drones-055329405.html", - "pubDate": "2023-10-27T05:53:29Z", - "guid": "russia-launches-6-shahed-drones-055329405.html", - "isoDate": "2023-10-27T05:53:29.000Z" - }, - { - "title": "Taiwan Parties Push Alliance Talks in Bid to Beat Ruling DPP", - "link": "https://news.yahoo.com/taiwan-parties-push-alliance-talks-052321723.html", - "pubDate": "2023-10-27T05:23:21Z", - "guid": "taiwan-parties-push-alliance-talks-052321723.html", - "isoDate": "2023-10-27T05:23:21.000Z" - }, - { - "title": "Russia loses more than 500 soldiers, 4 tanks and 7 artillery systems", - "link": "https://news.yahoo.com/russia-loses-more-500-soldiers-051745615.html", - "pubDate": "2023-10-27T05:17:45Z", - "guid": "russia-loses-more-500-soldiers-051745615.html", - "isoDate": "2023-10-27T05:17:45.000Z" - }, - { - "title": "From Stalin to Putin, abortion has had a complicated history in Russia", - "link": "https://news.yahoo.com/stalin-putin-abortion-had-complicated-045809536.html", - "pubDate": "2023-10-27T04:58:09Z", - "guid": "stalin-putin-abortion-had-complicated-045809536.html", - "isoDate": "2023-10-27T04:58:09.000Z" - }, - { - "title": "New US House of Representatives speaker wants aid packages for Ukraine and Israel to be separate", - "link": "https://news.yahoo.com/us-house-representatives-speaker-wants-044750232.html", - "pubDate": "2023-10-27T04:47:50Z", - "guid": "us-house-representatives-speaker-wants-044750232.html", - "isoDate": "2023-10-27T04:47:50.000Z" - }, - { - "title": "South Korean and US forces stage drills for reaction to possible 'Hamas-style' attack by North Korea", - "link": "https://news.yahoo.com/south-korean-us-forces-stage-044600568.html", - "pubDate": "2023-10-27T04:46:00Z", - "guid": "south-korean-us-forces-stage-044600568.html", - "isoDate": "2023-10-27T04:46:00.000Z" - }, - { - "title": "China FM calls for 'stable' US ties on visit to weigh Xi summit", - "link": "https://news.yahoo.com/chinas-top-diplomat-starts-us-013420948.html", - "pubDate": "2023-10-27T04:03:06Z", - "guid": "chinas-top-diplomat-starts-us-013420948.html", - "isoDate": "2023-10-27T04:03:06.000Z" - }, - { - "title": "House Will Consider Ukraine, Israel Aid Separately, Johnson Says", - "link": "https://news.yahoo.com/house-consider-ukraine-israel-aid-033819381.html", - "pubDate": "2023-10-27T03:38:19Z", - "guid": "house-consider-ukraine-israel-aid-033819381.html", - "isoDate": "2023-10-27T03:38:19.000Z" - }, - { - "title": "US Military Attacks Two Syrian Facilities It Says Linked to Iran", - "link": "https://news.yahoo.com/us-military-attacks-two-syrian-032758454.html", - "pubDate": "2023-10-27T03:27:58Z", - "guid": "us-military-attacks-two-syrian-032758454.html", - "isoDate": "2023-10-27T03:27:58.000Z" - }, - { - "title": "What we know about Biden and House Speaker Mike Johnson's working relationship", - "link": "https://news.yahoo.com/know-biden-house-speaker-mike-030135382.html", - "pubDate": "2023-10-27T03:01:35Z", - "guid": "know-biden-house-speaker-mike-030135382.html", - "isoDate": "2023-10-27T03:01:35.000Z" - }, - { - "title": "US hits Iranian facilities in Syria following attacks on US troops", - "link": "https://news.yahoo.com/us-hits-iranian-facilities-syria-025558598.html", - "pubDate": "2023-10-27T02:55:58Z", - "guid": "us-hits-iranian-facilities-syria-025558598.html", - "isoDate": "2023-10-27T02:55:58.000Z" - }, - { - "title": "Bela bill: South Africans face jail if children not in school", - "link": "https://news.yahoo.com/bela-bill-south-africans-face-144635652.html", - "pubDate": "2023-10-27T15:13:14Z", - "guid": "bela-bill-south-africans-face-144635652.html", - "isoDate": "2023-10-27T15:13:14.000Z" - }, - { - "title": "Medvedchuk\u2019s family acquires $10 million Italian luxury yacht \u2018Amore Mio\u2019 \u2014 Russian media", - "link": "https://news.yahoo.com/medvedchuk-family-acquires-10-million-141500772.html", - "pubDate": "2023-10-27T14:15:00Z", - "guid": "medvedchuk-family-acquires-10-million-141500772.html", - "isoDate": "2023-10-27T14:15:00.000Z" - }, - { - "title": "Kirby says US strikes on Iran proxies in Syria were \u2018self-defense\u2019", - "link": "https://news.yahoo.com/kirby-says-us-strikes-iran-140326844.html", - "pubDate": "2023-10-27T14:03:26Z", - "guid": "kirby-says-us-strikes-iran-140326844.html", - "isoDate": "2023-10-27T14:03:26.000Z" - }, - { - "title": "OpenAI, Google and an 'digital anthropologist': the UN forms a high level board to explore AI governance", - "link": "https://news.yahoo.com/openai-google-digital-anthropologist-un-140258671.html", - "pubDate": "2023-10-27T14:02:58Z", - "guid": "openai-google-digital-anthropologist-un-140258671.html", - "isoDate": "2023-10-27T14:02:58.000Z" - }, - { - "title": "Blinken, Wang meet as US-China gear up towards expected leaders summit", - "link": "https://finance.yahoo.com/news/blinken-wang-meet-us-china-140108354.html", - "pubDate": "2023-10-27T14:01:08Z", - "guid": "blinken-wang-meet-us-china-140108354.html", - "isoDate": "2023-10-27T14:01:08.000Z" - }, - { - "title": "Nikki Haley\u2019s Foreign Policy Savvy Props Up Her Long-Shot Presidential Bid", - "link": "https://news.yahoo.com/nikki-haley-foreign-policy-savvy-140000069.html", - "pubDate": "2023-10-27T14:00:00Z", - "guid": "nikki-haley-foreign-policy-savvy-140000069.html", - "isoDate": "2023-10-27T14:00:00.000Z" - }, - { - "title": "UN Asks Google, Microsoft to Help It Figure Out How Risky AI Is", - "link": "https://news.yahoo.com/un-wants-figure-just-dangerous-135000609.html", - "pubDate": "2023-10-27T13:50:00Z", - "guid": "un-wants-figure-just-dangerous-135000609.html", - "isoDate": "2023-10-27T13:50:00.000Z" - }, - { - "title": "Poland sends personnel to Ukraine to repair military equipment", - "link": "https://news.yahoo.com/poland-sends-personnel-ukraine-repair-134546776.html", - "pubDate": "2023-10-27T13:45:46Z", - "guid": "poland-sends-personnel-ukraine-repair-134546776.html", - "isoDate": "2023-10-27T13:45:46.000Z" - }, - { - "title": "Satellites spot Russian Air Force painting decoy \u2018aircraft\u2019 instead of real fighters onto apron at Crimean base", - "link": "https://news.yahoo.com/satellites-spot-russian-air-force-134000156.html", - "pubDate": "2023-10-27T13:40:00Z", - "guid": "satellites-spot-russian-air-force-134000156.html", - "isoDate": "2023-10-27T13:40:00.000Z" - }, - { - "title": "US unveils new sanctions in push to cut off funding for Hamas", - "link": "https://news.yahoo.com/us-unveils-sanctions-push-cut-133818133.html", - "pubDate": "2023-10-27T13:38:18Z", - "guid": "us-unveils-sanctions-push-cut-133818133.html", - "isoDate": "2023-10-27T13:38:18.000Z" - }, - { - "title": "Russia seeks to gain some initiative in Ukraine to impress Putin \u2013 Estonian General Staff", - "link": "https://news.yahoo.com/russia-seeks-gain-initiative-ukraine-133619006.html", - "pubDate": "2023-10-27T13:36:19Z", - "guid": "russia-seeks-gain-initiative-ukraine-133619006.html", - "isoDate": "2023-10-27T13:36:19.000Z" - }, - { - "title": "Sanctioned Tycoon Fridman Denied Extra Cash for UK Mansion", - "link": "https://news.yahoo.com/sanctioned-billionaire-fridman-denied-extra-130533084.html", - "pubDate": "2023-10-27T13:23:29Z", - "guid": "sanctioned-billionaire-fridman-denied-extra-130533084.html", - "isoDate": "2023-10-27T13:23:29.000Z" - }, - { - "title": "UK Defense Ministry: Russia pauses air-launched cruise missile strikes against Ukraine", - "link": "https://news.yahoo.com/uk-defense-ministry-russia-pauses-131123043.html", - "pubDate": "2023-10-27T13:11:23Z", - "guid": "uk-defense-ministry-russia-pauses-131123043.html", - "isoDate": "2023-10-27T13:11:23.000Z" - }, - { - "title": "Johnson calls to \u2018bifurcate\u2019 funding for Ukraine, Israel", - "link": "https://news.yahoo.com/johnson-calls-bifurcate-funding-ukraine-130950111.html", - "pubDate": "2023-10-27T13:09:50Z", - "guid": "johnson-calls-bifurcate-funding-ukraine-130950111.html", - "isoDate": "2023-10-27T13:09:50.000Z" - }, - { - "title": "PM Shmyhal meets with new Canadian ambassador, discusses economic cooperation", - "link": "https://news.yahoo.com/pm-shmyhal-meets-canadian-ambassador-130011866.html", - "pubDate": "2023-10-27T13:00:11Z", - "guid": "pm-shmyhal-meets-canadian-ambassador-130011866.html", - "isoDate": "2023-10-27T13:00:11.000Z" - }, - { - "title": "Ukraine's State Investigation Bureau explains searches at thermal power plants in Kyiv: officials appropriated repair funds", - "link": "https://news.yahoo.com/ukraines-state-investigation-bureau-explains-125427731.html", - "pubDate": "2023-10-27T12:54:27Z", - "guid": "ukraines-state-investigation-bureau-explains-125427731.html", - "isoDate": "2023-10-27T12:54:27.000Z" - }, - { - "title": "Belarusian volunteer soldier who liberated Irpin and Kherson KIA in Ukraine", - "link": "https://news.yahoo.com/belarusian-volunteer-soldier-liberated-irpin-124300908.html", - "pubDate": "2023-10-27T12:43:00Z", - "guid": "belarusian-volunteer-soldier-liberated-irpin-124300908.html", - "isoDate": "2023-10-27T12:43:00.000Z" - }, - { - "title": "India Likely to Appeal Qatar Death Sentence for Eight in Spy Case", - "link": "https://news.yahoo.com/india-likely-appeal-qatar-death-122906502.html", - "pubDate": "2023-10-27T12:29:06Z", - "guid": "india-likely-appeal-qatar-death-122906502.html", - "isoDate": "2023-10-27T12:29:06.000Z" - }, - { - "title": "Pro-Russian oligarch becomes owner of new fighter yacht", - "link": "https://news.yahoo.com/pro-russian-oligarch-becomes-owner-121230298.html", - "pubDate": "2023-10-27T12:12:30Z", - "guid": "pro-russian-oligarch-becomes-owner-121230298.html", - "isoDate": "2023-10-27T12:12:30.000Z" - }, - { - "title": "Fico ready to increase contribution to EU budget under certain conditions to help Ukraine", - "link": "https://news.yahoo.com/fico-ready-increase-contribution-eu-115944498.html", - "pubDate": "2023-10-27T11:59:44Z", - "guid": "fico-ready-increase-contribution-eu-115944498.html", - "isoDate": "2023-10-27T11:59:44.000Z" - }, - { - "title": "Fico and Orb\u00e1n do not completely reject support for Ukraine \u2013 Bulgarian PM", - "link": "https://news.yahoo.com/fico-orb-n-not-completely-114752105.html", - "pubDate": "2023-10-27T11:47:52Z", - "guid": "fico-orb-n-not-completely-114752105.html", - "isoDate": "2023-10-27T11:47:52.000Z" - }, - { - "title": "Deputy police chief suspected of possible ties with Russia says media distorts facts", - "link": "https://news.yahoo.com/deputy-police-chief-suspected-possible-113404297.html", - "pubDate": "2023-10-27T11:34:04Z", - "guid": "deputy-police-chief-suspected-possible-113404297.html", - "isoDate": "2023-10-27T11:34:04.000Z" - }, - { - "title": "\"It's time others stepped up\": protests in support of demobilisation held in Ukraine", - "link": "https://news.yahoo.com/time-others-protests-support-demobilisation-105100473.html", - "pubDate": "2023-10-27T10:51:00Z", - "guid": "time-others-protests-support-demobilisation-105100473.html", - "isoDate": "2023-10-27T10:51:00.000Z" - }, - { - "title": "Digital Transformation Ministry demonstrates Ukrainian-made experimental mine-clearing drone", - "link": "https://news.yahoo.com/digital-transformation-ministry-shows-ukraine-102941391.html", - "pubDate": "2023-10-27T10:29:41Z", - "guid": "digital-transformation-ministry-shows-ukraine-102941391.html", - "isoDate": "2023-10-27T10:29:41.000Z" - }, - { - "title": "Zelenskyy tells Sunak Russia loses at least brigade in offensive on Avdiivka", - "link": "https://news.yahoo.com/russia-lost-least-brigade-avdiivka-101012061.html", - "pubDate": "2023-10-27T10:10:12Z", - "guid": "russia-lost-least-brigade-avdiivka-101012061.html", - "isoDate": "2023-10-27T10:10:12.000Z" - } -] \ No newline at end of file + { + "title": "Climate crisis: Three women helping wildlife survive", + "link": "https://news.yahoo.com/climate-crisis-three-women-helping-012518578.html", + "pubDate": "2023-12-01T01:25:18Z", + "guid": "climate-crisis-three-women-helping-012518578.html", + "isoDate": "2023-12-01T01:25:18.000Z" + }, + { + "title": "Crew members aboard Osprey that crashed off coast of Japan still missing, Pentagon says", + "link": "https://news.yahoo.com/crew-members-aboard-osprey-crashed-203815316.html", + "pubDate": "2023-12-01T00:44:12Z", + "guid": "crew-members-aboard-osprey-crashed-203815316.html", + "isoDate": "2023-12-01T00:44:12.000Z" + }, + { + "title": "Reuters: SBU targets rail line in Siberia", + "link": "https://news.yahoo.com/reuters-sbu-targets-rail-line-000724834.html", + "pubDate": "2023-12-01T00:07:24Z", + "guid": "reuters-sbu-targets-rail-line-000724834.html", + "isoDate": "2023-12-01T00:07:24.000Z" + }, + { + "title": "Court seizes over $1 million in crypto assets from former state communications head", + "link": "https://news.yahoo.com/court-seizes-over-1-million-225420330.html", + "pubDate": "2023-11-30T22:54:20Z", + "guid": "court-seizes-over-1-million-225420330.html", + "isoDate": "2023-11-30T22:54:20.000Z" + }, + { + "title": "Mia Schem: Wounded festival-goer in Hamas hostage video freed", + "link": "https://news.yahoo.com/mia-schem-wounded-festival-goer-221431685.html", + "pubDate": "2023-11-30T22:14:31Z", + "guid": "mia-schem-wounded-festival-goer-221431685.html", + "isoDate": "2023-11-30T22:14:31.000Z" + }, + { + "title": "Three Israelis killed by Palestinian gunmen at Jerusalem bus stop", + "link": "https://news.yahoo.com/three-israelis-killed-palestinian-gunmen-210348701.html", + "pubDate": "2023-11-30T22:11:47Z", + "guid": "three-israelis-killed-palestinian-gunmen-210348701.html", + "isoDate": "2023-11-30T22:11:47.000Z" + }, + { + "title": "Norway announces $23 million for Ukraine's food security", + "link": "https://news.yahoo.com/norway-announces-23-million-ukraines-220648864.html", + "pubDate": "2023-11-30T22:06:48Z", + "guid": "norway-announces-23-million-ukraines-220648864.html", + "isoDate": "2023-11-30T22:06:48.000Z" + }, + { + "title": "Shahed drones launched from Crimea drift through Ukraine \u2013 Ukraine's Armed Forces", + "link": "https://news.yahoo.com/russia-launches-shahed-drones-crimea-191659502.html", + "pubDate": "2023-11-30T20:33:59Z", + "guid": "russia-launches-shahed-drones-crimea-191659502.html", + "isoDate": "2023-11-30T20:33:59.000Z" + }, + { + "title": "Israel recalls ambassador in war spat with Spain PM Pedro S\u00e1nchez", + "link": "https://news.yahoo.com/israel-recalls-ambassador-war-spat-202115156.html", + "pubDate": "2023-11-30T20:21:15Z", + "guid": "israel-recalls-ambassador-war-spat-202115156.html", + "isoDate": "2023-11-30T20:21:15.000Z" + }, + { + "title": "Ukraine's SBU charges 30 collaborators in Zaporizhzhya Oblast", + "link": "https://news.yahoo.com/ukraines-sbu-charges-30-collaborators-201000151.html", + "pubDate": "2023-11-30T20:10:00Z", + "guid": "ukraines-sbu-charges-30-collaborators-201000151.html", + "isoDate": "2023-11-30T20:10:00.000Z" + }, + { + "title": "The Perfect Down or Puffer Jacket Blends Functionality and Style To Take You From Winter To Spring", + "link": "https://www.yahoo.com/entertainment/best-down-jackets-winter-spring-000000511.html", + "pubDate": "2023-11-30T20:05:59Z", + "guid": "best-down-jackets-winter-spring-000000511.html", + "isoDate": "2023-11-30T20:05:59.000Z" + }, + { + "title": "Ombudsman confirms first case of Russian citizen changing identity of illegally adopted Ukrainian child", + "link": "https://news.yahoo.com/ombudsman-first-recorded-case-russian-191548958.html", + "pubDate": "2023-11-30T19:15:48Z", + "guid": "ombudsman-first-recorded-case-russian-191548958.html", + "isoDate": "2023-11-30T19:15:48.000Z" + }, + { + "title": "Statute of limitations expires for dozens of 2014 Maidan cases", + "link": "https://news.yahoo.com/statute-limitations-expires-dozens-2014-191000323.html", + "pubDate": "2023-11-30T19:10:00Z", + "guid": "statute-limitations-expires-dozens-2014-191000323.html", + "isoDate": "2023-11-30T19:10:00.000Z" + }, + { + "title": "Hungary won\u2019t support \u2018premature proposal\u2019 to admit Ukraine into EU, official says", + "link": "https://news.yahoo.com/hungary-won-t-support-premature-185945198.html", + "pubDate": "2023-11-30T18:59:45Z", + "guid": "hungary-won-t-support-premature-185945198.html", + "isoDate": "2023-11-30T18:59:45.000Z" + }, + { + "title": "Russian forces launch airstrike on Toretsk, killing one civilian", + "link": "https://news.yahoo.com/russian-forces-launch-airstrike-toretsk-182715439.html", + "pubDate": "2023-11-30T18:27:15Z", + "guid": "russian-forces-launch-airstrike-toretsk-182715439.html", + "isoDate": "2023-11-30T18:27:15.000Z" + }, + { + "title": "Bloomberg: EU to announce plans to use frozen Russian assets for Ukraine's reconstruction", + "link": "https://news.yahoo.com/bloomberg-eu-announce-plans-frozen-181756109.html", + "pubDate": "2023-11-30T18:17:56Z", + "guid": "bloomberg-eu-announce-plans-frozen-181756109.html", + "isoDate": "2023-11-30T18:17:56.000Z" + }, + { + "title": "Ukraine in OSCE: We must show Russia that world will never get tired of defending freedom", + "link": "https://news.yahoo.com/ukraine-osce-must-show-russia-181519304.html", + "pubDate": "2023-11-30T18:15:19Z", + "guid": "ukraine-osce-must-show-russia-181519304.html", + "isoDate": "2023-11-30T18:15:19.000Z" + }, + { + "title": "Abducted girl \"adopted\" by Russian politician has brother, his location unknown", + "link": "https://news.yahoo.com/abducted-girl-adopted-russian-politician-180110296.html", + "pubDate": "2023-11-30T18:01:10Z", + "guid": "abducted-girl-adopted-russian-politician-180110296.html", + "isoDate": "2023-11-30T18:01:10.000Z" + }, + { + "title": "Venezuela zoo welcomes three white lion cubs", + "link": "https://news.yahoo.com/venezuela-zoo-welcomes-three-white-174454423.html", + "pubDate": "2023-11-30T17:44:54Z", + "guid": "venezuela-zoo-welcomes-three-white-174454423.html", + "isoDate": "2023-11-30T17:44:54.000Z" + }, + { + "title": "Police in Rivne play the Grinch as they cite Santa Claus for driving without a license \u2013 video", + "link": "https://news.yahoo.com/police-rivne-play-grinch-cite-174100748.html", + "pubDate": "2023-11-30T17:41:00Z", + "guid": "police-rivne-play-grinch-cite-174100748.html", + "isoDate": "2023-11-30T17:41:00.000Z" + }, + { + "title": "Israel-Hamas truce extended for 7th day as more hostages are released", + "link": "https://news.yahoo.com/israel-hamas-truce-extended-7th-172249521.html", + "pubDate": "2023-11-30T17:22:49Z", + "guid": "israel-hamas-truce-extended-7th-172249521.html", + "isoDate": "2023-11-30T17:22:49.000Z" + }, + { + "title": "Ukraine's political parties agree on carrying out elections only after the war", + "link": "https://news.yahoo.com/ukraines-political-parties-agree-carrying-171326314.html", + "pubDate": "2023-11-30T17:13:26Z", + "guid": "ukraines-political-parties-agree-carrying-171326314.html", + "isoDate": "2023-11-30T17:13:26.000Z" + }, + { + "title": "Zelenskyy visits school set up in Kharkiv's metro", + "link": "https://news.yahoo.com/zelenskyy-visits-school-set-kharkivs-170714487.html", + "pubDate": "2023-11-30T17:07:14Z", + "guid": "zelenskyy-visits-school-set-kharkivs-170714487.html", + "isoDate": "2023-11-30T17:07:14.000Z" + }, + { + "title": "Russia hastily deploys poorly-trained Airborne Division to Kherson Oblast \u2013 UK intelligence", + "link": "https://news.yahoo.com/russia-hastily-deploys-poorly-trained-170300149.html", + "pubDate": "2023-11-30T17:03:00Z", + "guid": "russia-hastily-deploys-poorly-trained-170300149.html", + "isoDate": "2023-11-30T17:03:00.000Z" + }, + { + "title": "Seventy-year-old Ugandan woman gives birth to twins - hospital", + "link": "https://news.yahoo.com/seventy-old-ugandan-woman-gives-154759822.html", + "pubDate": "2023-11-30T16:38:07Z", + "guid": "seventy-old-ugandan-woman-gives-154759822.html", + "isoDate": "2023-11-30T16:38:07.000Z" + }, + { + "title": "Pochayiv Lavra searched in criminal case in Moscow Patriarchate leadership\u2019s role in inciting hatred", + "link": "https://news.yahoo.com/pochayiv-lavra-searched-criminal-case-163600633.html", + "pubDate": "2023-11-30T16:36:00Z", + "guid": "pochayiv-lavra-searched-criminal-case-163600633.html", + "isoDate": "2023-11-30T16:36:00.000Z" + }, + { + "title": "European Commission prepares to approve plan to use frozen Russian assets in December \u2013 Bloomberg", + "link": "https://news.yahoo.com/european-commission-prepares-approve-plan-161821964.html", + "pubDate": "2023-11-30T16:18:21Z", + "guid": "european-commission-prepares-approve-plan-161821964.html", + "isoDate": "2023-11-30T16:18:21.000Z" + }, + { + "title": "Viral Images of Dead Infants in Israel-Gaza War Are AI Fakes, Experts Say", + "link": "https://news.yahoo.com/viral-images-dead-infants-israel-154511677.html", + "pubDate": "2023-11-30T15:45:11Z", + "guid": "viral-images-dead-infants-israel-154511677.html", + "isoDate": "2023-11-30T15:45:11.000Z" + }, + { + "title": "10-month-old Ukrainian child abducted to Russia had her name changed", + "link": "https://news.yahoo.com/10-month-old-ukrainian-child-153929944.html", + "pubDate": "2023-11-30T15:39:29Z", + "guid": "10-month-old-ukrainian-child-153929944.html", + "isoDate": "2023-11-30T15:39:29.000Z" + }, + { + "title": "Russians try to reproduce Seababy Ukrainian drone from fragments", + "link": "https://news.yahoo.com/russians-try-reproduce-seababy-ukrainian-152238607.html", + "pubDate": "2023-11-30T15:22:38Z", + "guid": "russians-try-reproduce-seababy-ukrainian-152238607.html", + "isoDate": "2023-11-30T15:22:38.000Z" + }, + { + "title": "Sophie, Duchess of Edinburgh Visits Colombia to Continue Mission for Survivors of Gender-Based Violence", + "link": "https://www.yahoo.com/entertainment/sophie-duchess-edinburgh-visits-colombia-151325791.html", + "pubDate": "2023-11-30T15:13:25Z", + "guid": "sophie-duchess-edinburgh-visits-colombia-151325791.html", + "isoDate": "2023-11-30T15:13:25.000Z" + }, + { + "title": "Russian Orthodox Church forces parishioners to pray to \u2018Saint Putin\u2019 on giant screen - video", + "link": "https://news.yahoo.com/russian-orthodox-church-forces-parishioners-150400402.html", + "pubDate": "2023-11-30T15:04:00Z", + "guid": "russian-orthodox-church-forces-parishioners-150400402.html", + "isoDate": "2023-11-30T15:04:00.000Z" + }, + { + "title": "Zelenskyy stresses importance of air shield in conversation with UK PM", + "link": "https://news.yahoo.com/zelenskyy-stresses-importance-air-shield-145830735.html", + "pubDate": "2023-11-30T14:58:30Z", + "guid": "zelenskyy-stresses-importance-air-shield-145830735.html", + "isoDate": "2023-11-30T14:58:30.000Z" + }, + { + "title": "UN says 2023 will be hottest year on record", + "link": "https://news.yahoo.com/un-says-2023-hottest-record-144635905.html", + "pubDate": "2023-11-30T14:46:35Z", + "guid": "un-says-2023-hottest-record-144635905.html", + "isoDate": "2023-11-30T14:46:35.000Z" + }, + { + "title": "Russian Foreign Minister argues OSCE is no longer needed", + "link": "https://news.yahoo.com/russian-foreign-minister-argues-osce-142509672.html", + "pubDate": "2023-11-30T14:25:09Z", + "guid": "russian-foreign-minister-argues-osce-142509672.html", + "isoDate": "2023-11-30T14:25:09.000Z" + }, + { + "title": "Bedouin family desperate for news on teenagers held hostage in Gaza", + "link": "https://news.yahoo.com/bedouin-family-desperate-news-teenagers-142221191.html", + "pubDate": "2023-11-30T14:22:21Z", + "guid": "bedouin-family-desperate-news-teenagers-142221191.html", + "isoDate": "2023-11-30T14:22:21.000Z" + }, + { + "title": "Hungarian and Russian foreign ministers meet at OSCE meeting and discuss Ukraine", + "link": "https://news.yahoo.com/hungarian-russian-foreign-ministers-meet-142023863.html", + "pubDate": "2023-11-30T14:20:23Z", + "guid": "hungarian-russian-foreign-ministers-meet-142023863.html", + "isoDate": "2023-11-30T14:20:23.000Z" + }, + { + "title": "Deyda Hydara murder: Gambian sentenced in Germany for crimes against humanity", + "link": "https://news.yahoo.com/deyda-hydara-murder-gambian-sentenced-134210763.html", + "pubDate": "2023-11-30T13:59:50Z", + "guid": "deyda-hydara-murder-gambian-sentenced-134210763.html", + "isoDate": "2023-11-30T13:59:50.000Z" + }, + { + "title": "Hungary will not agree to starting EU membership talks with Ukraine, minister says", + "link": "https://news.yahoo.com/hungary-not-agree-starting-eu-135607058.html", + "pubDate": "2023-11-30T13:56:07Z", + "guid": "hungary-not-agree-starting-eu-135607058.html", + "isoDate": "2023-11-30T13:56:07.000Z" + }, + { + "title": "Russia is stuffing an elite paratrooper force with poorly trained troops that are eroding its power, UK intel says", + "link": "https://news.yahoo.com/russia-stuffing-elite-paratrooper-force-135416139.html", + "pubDate": "2023-11-30T13:54:16Z", + "guid": "russia-stuffing-elite-paratrooper-force-135416139.html", + "isoDate": "2023-11-30T13:54:16.000Z" + }, + { + "title": "EU defence strategy should include Ukraine \u2013 European Commission President", + "link": "https://news.yahoo.com/eu-defence-strategy-ukraine-european-135129412.html", + "pubDate": "2023-11-30T13:51:29Z", + "guid": "eu-defence-strategy-ukraine-european-135129412.html", + "isoDate": "2023-11-30T13:51:29.000Z" + }, + { + "title": "Families reunite with 17 Thai hostages freed by Hamas at homecoming at Bangkok airport", + "link": "https://news.yahoo.com/families-reunite-17-thai-hostages-135016303.html", + "pubDate": "2023-11-30T13:50:16Z", + "guid": "families-reunite-17-thai-hostages-135016303.html", + "isoDate": "2023-11-30T13:50:16.000Z" + }, + { + "title": "First Lady Zelenska named Top 25 most influential women of 2023 in Heroes category \u2013 Financial Times", + "link": "https://news.yahoo.com/first-lady-zelenska-named-top-132900099.html", + "pubDate": "2023-11-30T13:29:00Z", + "guid": "first-lady-zelenska-named-top-132900099.html", + "isoDate": "2023-11-30T13:29:00.000Z" + }, + { + "title": "The UK's former health secretary testifies at COVID inquiry that he argued for an earlier lockdown", + "link": "https://news.yahoo.com/ex-health-secretary-matt-hancock-132829599.html", + "pubDate": "2023-11-30T13:28:29Z", + "guid": "ex-health-secretary-matt-hancock-132829599.html", + "isoDate": "2023-11-30T13:28:29.000Z" + }, + { + "title": "Ukraine designates Belgian gas company Fluxys as 'international sponsor of war'", + "link": "https://news.yahoo.com/ukraine-designates-belgian-gas-company-131842937.html", + "pubDate": "2023-11-30T13:18:42Z", + "guid": "ukraine-designates-belgian-gas-company-131842937.html", + "isoDate": "2023-11-30T13:18:42.000Z" + }, + { + "title": "Ukrainian companies can again purchase exemptions in case of power outages \u2013 Energy Ministry", + "link": "https://news.yahoo.com/ukrainian-companies-again-purchase-exemptions-130700801.html", + "pubDate": "2023-11-30T13:07:00Z", + "guid": "ukrainian-companies-again-purchase-exemptions-130700801.html", + "isoDate": "2023-11-30T13:07:00.000Z" + }, + { + "title": "Zelenskyy discusses military aid and EU accession with Scholz", + "link": "https://news.yahoo.com/zelenskyy-discusses-military-aid-eu-130007076.html", + "pubDate": "2023-11-30T13:00:07Z", + "guid": "zelenskyy-discusses-military-aid-eu-130007076.html", + "isoDate": "2023-11-30T13:00:07.000Z" + }, + { + "title": "New dates for Christmas & St. Nicholas Day as Ukraine switches to a more European holiday calendar", + "link": "https://news.yahoo.com/dates-christmas-st-nicholas-day-124100549.html", + "pubDate": "2023-11-30T12:41:00Z", + "guid": "dates-christmas-st-nicholas-day-124100549.html", + "isoDate": "2023-11-30T12:41:00.000Z" + }, + { + "title": "Russia has a 'high tolerance' for losses after losing 100s of aircraft, 1000s of tanks, and more than 300,000 men in Ukraine, NATO chief says", + "link": "https://news.yahoo.com/russia-high-tolerance-losses-losing-123751927.html", + "pubDate": "2023-11-30T12:37:51Z", + "guid": "russia-high-tolerance-losses-losing-123751927.html", + "isoDate": "2023-11-30T12:37:51.000Z" + }, + { + "title": "Russia targeted Ukraine\u2019s military facilities and critical infrastructure in latest drone attack", + "link": "https://news.yahoo.com/russia-targeted-ukraine-military-facilities-123400966.html", + "pubDate": "2023-11-30T12:34:00Z", + "guid": "russia-targeted-ukraine-military-facilities-123400966.html", + "isoDate": "2023-11-30T12:34:00.000Z" + }, + { + "title": "SBU investigates grenade attack on Zakarpattia village council", + "link": "https://news.yahoo.com/sbu-investigates-grenade-attack-zakarpattia-152300590.html", + "pubDate": "2023-12-15T15:23:00Z", + "guid": "sbu-investigates-grenade-attack-zakarpattia-152300590.html", + "isoDate": "2023-12-15T15:23:00.000Z" + }, + { + "title": "Truck traffic resumes at Ukraine-Slovakia border with \u2018only\u2019 a thousand vehicles in the queue", + "link": "https://news.yahoo.com/truck-traffic-resumes-ukraine-slovakia-134100669.html", + "pubDate": "2023-12-15T13:41:00Z", + "guid": "truck-traffic-resumes-ukraine-slovakia-134100669.html", + "isoDate": "2023-12-15T13:41:00.000Z" + }, + { + "title": "\u2018We can block it 75 more times\u2019 \u2013 Orban continues to threaten to halt Ukraine's EU accession process", + "link": "https://news.yahoo.com/block-75-more-times-orban-133400058.html", + "pubDate": "2023-12-15T13:34:00Z", + "guid": "block-75-more-times-orban-133400058.html", + "isoDate": "2023-12-15T13:34:00.000Z" + }, + { + "title": "Fearing death, Russian soldiers spend hours lying next to their dead comrades pretending to be dead", + "link": "https://news.yahoo.com/fearing-death-russian-soldiers-spend-122300713.html", + "pubDate": "2023-12-15T12:23:00Z", + "guid": "fearing-death-russian-soldiers-spend-122300713.html", + "isoDate": "2023-12-15T12:23:00.000Z" + }, + { + "title": "Lewis Hamilton on Sitting (Very) Still With Mountain Gorillas", + "link": "https://www.yahoo.com/lifestyle/lewis-hamilton-sitting-very-still-213000928.html", + "pubDate": "2023-12-15T12:00:00Z", + "guid": "lewis-hamilton-sitting-very-still-213000928.html", + "isoDate": "2023-12-15T12:00:00.000Z" + }, + { + "title": "Russia stripped of its Danube Commission membership over attacks on Lower Danube in Ukraine", + "link": "https://news.yahoo.com/russia-stripped-danube-commission-membership-111956741.html", + "pubDate": "2023-12-15T11:19:56Z", + "guid": "russia-stripped-danube-commission-membership-111956741.html", + "isoDate": "2023-12-15T11:19:56.000Z" + }, + { + "title": "3 checkpoints from Poland still blocked, with 2,600 lorries in queues", + "link": "https://news.yahoo.com/3-checkpoints-poland-still-blocked-083631314.html", + "pubDate": "2023-12-15T08:36:31Z", + "guid": "3-checkpoints-poland-still-blocked-083631314.html", + "isoDate": "2023-12-15T08:36:31.000Z" + }, + { + "title": "Air defense downs 14 Russian drones overnight", + "link": "https://news.yahoo.com/air-defense-downs-14-russian-055301562.html", + "pubDate": "2023-12-15T05:53:01Z", + "guid": "air-defense-downs-14-russian-055301562.html", + "isoDate": "2023-12-15T05:53:01.000Z" + }, + { + "title": "Dutch PM anticipates funding decision for Ukraine early in 2024", + "link": "https://news.yahoo.com/dutch-pm-anticipates-funding-decision-052557395.html", + "pubDate": "2023-12-15T05:25:57Z", + "guid": "dutch-pm-anticipates-funding-decision-052557395.html", + "isoDate": "2023-12-15T05:25:57.000Z" + }, + { + "title": "Lisbon\u2019s Hot Housing Market Defies Push to Deter Foreign Buyers", + "link": "https://news.yahoo.com/lisbon-hot-housing-market-defies-050000477.html", + "pubDate": "2023-12-15T05:00:00Z", + "guid": "lisbon-hot-housing-market-defies-050000477.html", + "isoDate": "2023-12-15T05:00:00.000Z" + }, + { + "title": "Africa's week in pictures: 8-14 December 2023", + "link": "https://news.yahoo.com/africas-week-pictures-8-14-030427039.html", + "pubDate": "2023-12-15T03:04:27Z", + "guid": "africas-week-pictures-8-14-030427039.html", + "isoDate": "2023-12-15T03:04:27.000Z" + }, + { + "title": "Orb\u00e1n blocks EU \u20ac50 billion budget spending for Ukraine", + "link": "https://news.yahoo.com/orb-n-blocks-eu-50-025023171.html", + "pubDate": "2023-12-15T02:50:23Z", + "guid": "orb-n-blocks-eu-50-025023171.html", + "isoDate": "2023-12-15T02:50:23.000Z" + }, + { + "title": "Orb\u00e1n's advisor says EU needs to overcome Hungarian veto 70 times more for Ukraine to join", + "link": "https://news.yahoo.com/orb-ns-advisor-says-eu-235833239.html", + "pubDate": "2023-12-14T23:58:33Z", + "guid": "orb-ns-advisor-says-eu-235833239.html", + "isoDate": "2023-12-14T23:58:33.000Z" + }, + { + "title": "Finland to Close Russian Border Again in Sudden Reversal", + "link": "https://news.yahoo.com/finland-close-russian-border-again-164858421.html", + "pubDate": "2023-12-14T16:48:58Z", + "guid": "finland-close-russian-border-again-164858421.html", + "isoDate": "2023-12-14T16:48:58.000Z" + }, + { + "title": "Zelenskyy warns of endless internal conflicts in EU due to indecision on Ukraine", + "link": "https://news.yahoo.com/zelenskyy-warns-endless-internal-conflicts-130011095.html", + "pubDate": "2023-12-14T13:00:11Z", + "guid": "zelenskyy-warns-endless-internal-conflicts-130011095.html", + "isoDate": "2023-12-14T13:00:11.000Z" + }, + { + "title": "Meta Lets EU Users Sign Up to Threads Without an Instagram Link", + "link": "https://news.yahoo.com/meta-lets-eu-users-sign-125211924.html", + "pubDate": "2023-12-14T12:52:11Z", + "guid": "meta-lets-eu-users-sign-125211924.html", + "isoDate": "2023-12-14T12:52:11.000Z" + }, + { + "title": "China, Philippines Cooperate on Gambling Bust Involving 180", + "link": "https://news.yahoo.com/china-philippines-cooperate-gambling-bust-121001690.html", + "pubDate": "2023-12-14T12:10:01Z", + "guid": "china-philippines-cooperate-gambling-bust-121001690.html", + "isoDate": "2023-12-14T12:10:01.000Z" + }, + { + "title": "Putin asked about how war will end, Russia's next president and food prices \u2013 photo", + "link": "https://news.yahoo.com/putin-asked-war-end-russias-112211921.html", + "pubDate": "2023-12-14T11:22:11Z", + "guid": "putin-asked-war-end-russias-112211921.html", + "isoDate": "2023-12-14T11:22:11.000Z" + }, + { + "title": "How immigration is dominating politics across Europe", + "link": "https://news.yahoo.com/immigration-dominating-politics-across-europe-111856512.html", + "pubDate": "2023-12-14T11:18:56Z", + "guid": "immigration-dominating-politics-across-europe-111856512.html", + "isoDate": "2023-12-14T11:18:56.000Z" + }, + { + "title": "HUR behind night drone attack on Russian military bases \u2014 NV sources", + "link": "https://news.yahoo.com/hur-behind-night-drone-attack-111400271.html", + "pubDate": "2023-12-14T11:14:00Z", + "guid": "hur-behind-night-drone-attack-111400271.html", + "isoDate": "2023-12-14T11:14:00.000Z" + }, + { + "title": "13 more different types of ammunition approved for use in Armed Forces \u2013 Ukraine's Defence Ministry", + "link": "https://news.yahoo.com/13-more-different-types-ammunition-111031254.html", + "pubDate": "2023-12-14T11:10:31Z", + "guid": "13-more-different-types-ammunition-111031254.html", + "isoDate": "2023-12-14T11:10:31.000Z" + }, + { + "title": "\u2018We are stronger together\u2019: Zelensky invites Poland\u2019s Tusk to visit Ukraine", + "link": "https://news.yahoo.com/stronger-together-zelensky-invites-poland-104500762.html", + "pubDate": "2023-12-14T10:45:00Z", + "guid": "stronger-together-zelensky-invites-poland-104500762.html", + "isoDate": "2023-12-14T10:45:00.000Z" + }, + { + "title": "German Chancellor promises to seek agreement of EU summit on negotiations with Ukraine", + "link": "https://news.yahoo.com/german-chancellor-promises-seek-agreement-104022548.html", + "pubDate": "2023-12-14T10:40:22Z", + "guid": "german-chancellor-promises-seek-agreement-104022548.html", + "isoDate": "2023-12-14T10:40:22.000Z" + }, + { + "title": "Putin tells Russians the war in Ukraine will go on unless Kyiv does a deal", + "link": "https://finance.yahoo.com/news/putin-tells-russians-war-ukraine-101139816.html", + "pubDate": "2023-12-14T10:11:39Z", + "guid": "putin-tells-russians-war-ukraine-101139816.html", + "isoDate": "2023-12-14T10:11:39.000Z" + }, + { + "title": "The war will end when we achieve our goals \u2013 Putin", + "link": "https://news.yahoo.com/war-end-achieve-goals-putin-100915250.html", + "pubDate": "2023-12-14T10:09:15Z", + "guid": "war-end-achieve-goals-putin-100915250.html", + "isoDate": "2023-12-14T10:09:15.000Z" + }, + { + "title": "Russian paratroopers suffer huge losses near Krynky in Kherson Oblast \u2013 UK Defence Intelligence", + "link": "https://news.yahoo.com/russian-paratroopers-suffer-huge-losses-095724043.html", + "pubDate": "2023-12-14T09:57:24Z", + "guid": "russian-paratroopers-suffer-huge-losses-095724043.html", + "isoDate": "2023-12-14T09:57:24.000Z" + }, + { + "title": "Dutch PM confident he will be able to convince Orb\u00e1n to vote for Ukraine", + "link": "https://news.yahoo.com/dutch-pm-confident-able-convince-095143906.html", + "pubDate": "2023-12-14T09:51:43Z", + "guid": "dutch-pm-confident-able-convince-095143906.html", + "isoDate": "2023-12-14T09:51:43.000Z" + }, + { + "title": "Japan\u2019s Kishida Removes Ministers in Bid to Stay in Power", + "link": "https://news.yahoo.com/japan-kishida-reshuffle-cabinet-bid-003542508.html", + "pubDate": "2023-12-14T08:53:11Z", + "guid": "japan-kishida-reshuffle-cabinet-bid-003542508.html", + "isoDate": "2023-12-14T08:53:11.000Z" + }, + { + "title": "EU official says they are fed up with Hungary's antics", + "link": "https://news.yahoo.com/eu-official-says-fed-hungarys-084109485.html", + "pubDate": "2023-12-14T08:41:09Z", + "guid": "eu-official-says-fed-hungarys-084109485.html", + "isoDate": "2023-12-14T08:41:09.000Z" + }, + { + "title": "Transnet Halts Plan to Allow Private Companies to Operate Key Rail Line", + "link": "https://news.yahoo.com/transnet-halts-plan-allow-private-072353490.html", + "pubDate": "2023-12-14T07:23:53Z", + "guid": "transnet-halts-plan-allow-private-072353490.html", + "isoDate": "2023-12-14T07:23:53.000Z" + }, + { + "title": "Missile strike on Ukraine's south: woman killed in Kherson Oblast", + "link": "https://news.yahoo.com/missile-strike-ukraines-south-woman-070006650.html", + "pubDate": "2023-12-14T07:00:06Z", + "guid": "missile-strike-ukraines-south-woman-070006650.html", + "isoDate": "2023-12-14T07:00:06.000Z" + }, + { + "title": "Cameron Green: Australia all-rounder suffering from chronic kidney disease", + "link": "https://sports.yahoo.com/cameron-green-australia-rounder-suffering-064804165.html", + "pubDate": "2023-12-14T06:48:04Z", + "guid": "cameron-green-australia-rounder-suffering-064804165.html", + "isoDate": "2023-12-14T06:48:04.000Z" + }, + { + "title": "Banners calling for end to war in Gaza destroyed", + "link": "https://news.yahoo.com/banners-calling-end-war-gaza-062549887.html", + "pubDate": "2023-12-14T06:25:49Z", + "guid": "banners-calling-end-war-gaza-062549887.html", + "isoDate": "2023-12-14T06:25:49.000Z" + }, + { + "title": "Zelenskyy and Poland's new PM conduct first phone conversation", + "link": "https://news.yahoo.com/zelenskyy-polands-pm-conduct-first-061715556.html", + "pubDate": "2023-12-14T06:17:15Z", + "guid": "zelenskyy-polands-pm-conduct-first-061715556.html", + "isoDate": "2023-12-14T06:17:15.000Z" + }, + { + "title": "South Africa Takes a Major Step Toward Fixing Work Visa Mess", + "link": "https://news.yahoo.com/south-africa-takes-major-step-182523475.html", + "pubDate": "2023-12-14T06:03:04Z", + "guid": "south-africa-takes-major-step-182523475.html", + "isoDate": "2023-12-14T06:03:04.000Z" + }, + { + "title": "Gaza faces 'perfect storm' of deadly diseases", + "link": "https://finance.yahoo.com/news/gaza-faces-perfect-storm-deadly-060000355.html", + "pubDate": "2023-12-14T06:00:00Z", + "guid": "gaza-faces-perfect-storm-deadly-060000355.html", + "isoDate": "2023-12-14T06:00:00.000Z" + }, + { + "title": "Number of Russian attacks increases drastically on Avdiivka front \u2013 General Staff report", + "link": "https://news.yahoo.com/number-russian-attacks-increases-drastically-052346316.html", + "pubDate": "2023-12-14T05:23:46Z", + "guid": "number-russian-attacks-increases-drastically-052346316.html", + "isoDate": "2023-12-14T05:23:46.000Z" + }, + { + "title": "Brazil's Senate approves Lula ally as new Supreme Court justice", + "link": "https://news.yahoo.com/brazils-senate-approves-lula-ally-012141137.html", + "pubDate": "2023-12-14T01:21:41Z", + "guid": "brazils-senate-approves-lula-ally-012141137.html", + "isoDate": "2023-12-14T01:21:41.000Z" + }, + { + "title": "Borrell to visit Ukraine after Christmas", + "link": "https://news.yahoo.com/borrell-visit-ukraine-christmas-002009795.html", + "pubDate": "2023-12-14T00:20:09Z", + "guid": "borrell-visit-ukraine-christmas-002009795.html", + "isoDate": "2023-12-14T00:20:09.000Z" + }, + { + "title": "EU to deliver 500,000 out of promised 1 million shells to Ukraine by year's end \u2014 report", + "link": "https://news.yahoo.com/eu-deliver-500-000-promised-000700471.html", + "pubDate": "2023-12-14T00:07:00Z", + "guid": "eu-deliver-500-000-promised-000700471.html", + "isoDate": "2023-12-14T00:07:00.000Z" + }, + { + "title": "Zelenskyy talks on phone with European Council President Michel", + "link": "https://news.yahoo.com/zelenskyy-talks-phone-european-council-233641332.html", + "pubDate": "2023-12-13T23:36:41Z", + "guid": "zelenskyy-talks-phone-european-council-233641332.html", + "isoDate": "2023-12-13T23:36:41.000Z" + }, + { + "title": "Tropical Cyclone Jasper weakens while still lashing northeastern Australia with flooding rain", + "link": "https://news.yahoo.com/tropical-cyclone-jasper-weakens-while-223504649.html", + "pubDate": "2023-12-13T22:35:04Z", + "guid": "tropical-cyclone-jasper-weakens-while-223504649.html", + "isoDate": "2023-12-13T22:35:04.000Z" + }, + { + "title": "Global media company takes a stand against antisemitism amid Israel-Hamas conflict", + "link": "https://news.yahoo.com/global-media-company-takes-stand-220617590.html", + "pubDate": "2023-12-13T22:06:17Z", + "guid": "global-media-company-takes-stand-220617590.html", + "isoDate": "2023-12-13T22:06:17.000Z" + }, + { + "title": "Russians launch assault UAVs, danger of missile attack reported in several areas", + "link": "https://news.yahoo.com/russians-launch-assault-uavs-danger-220548388.html", + "pubDate": "2023-12-13T22:05:48Z", + "guid": "russians-launch-assault-uavs-danger-220548388.html", + "isoDate": "2023-12-13T22:05:48.000Z" + }, + { + "title": "Kyivstar\u2019s competitors can only absorb a 10% increase in subscribers", + "link": "https://news.yahoo.com/kyivstar-competitors-only-absorb-10-215000739.html", + "pubDate": "2023-12-13T21:50:00Z", + "guid": "kyivstar-competitors-only-absorb-10-215000739.html", + "isoDate": "2023-12-13T21:50:00.000Z" + }, + { + "title": "Russians launch attack UAVs from several directions, explosions rock Odesa", + "link": "https://news.yahoo.com/russians-launch-attack-uavs-several-202048577.html", + "pubDate": "2023-12-13T21:42:48Z", + "guid": "russians-launch-attack-uavs-several-202048577.html", + "isoDate": "2023-12-13T21:42:48.000Z" + }, + { + "title": "Refaat Alareer: UCL urged to issue statement on ex student's death", + "link": "https://news.yahoo.com/refaat-alareer-ucl-urged-issue-211528390.html", + "pubDate": "2023-12-13T21:15:28Z", + "guid": "refaat-alareer-ucl-urged-issue-211528390.html", + "isoDate": "2023-12-13T21:15:28.000Z" + }, + { + "title": "'We have to endure' - Argentines stoic as prices skyrocket", + "link": "https://news.yahoo.com/endure-argentines-stoic-prices-skyrocket-211430326.html", + "pubDate": "2023-12-13T21:14:30Z", + "guid": "endure-argentines-stoic-prices-skyrocket-211430326.html", + "isoDate": "2023-12-13T21:14:30.000Z" + }, + { + "title": "Ukraine faces second day of huge phone and internet outage after suspected Russian cyberattack", + "link": "https://news.yahoo.com/ukraine-faces-second-day-huge-210905450.html", + "pubDate": "2023-12-13T21:09:05Z", + "guid": "ukraine-faces-second-day-huge-210905450.html", + "isoDate": "2023-12-13T21:09:05.000Z" + }, + { + "title": "Scientists Preparing to Turn on Computer Intended to Simulate Entire Human Brain", + "link": "https://news.yahoo.com/scientists-preparing-turn-computer-intended-204508410.html", + "pubDate": "2023-12-13T20:45:08Z", + "guid": "scientists-preparing-turn-computer-intended-204508410.html", + "isoDate": "2023-12-13T20:45:08.000Z" + }, + { + "title": "The 21 best winter coats for women for 2023, according to experts", + "link": "https://www.yahoo.com/lifestyle/best-winter-jackets-coats-150935070.html", + "pubDate": "2023-12-15T15:09:35Z", + "guid": "best-winter-jackets-coats-150935070.html", + "isoDate": "2023-12-15T15:09:35.000Z" + }, + { + "title": "Hamas hostages: Stories of the people taken from Israel", + "link": "https://news.yahoo.com/hamas-hostages-people-taken-israel-154911569.html", + "pubDate": "2023-12-15T13:46:05Z", + "guid": "hamas-hostages-people-taken-israel-154911569.html", + "isoDate": "2023-12-15T13:46:05.000Z" + }, + { + "title": "Gerson: Attack on Israel makes this year's Chanukah somewhat bittersweet", + "link": "https://news.yahoo.com/gerson-attack-israel-makes-years-090513164.html", + "pubDate": "2023-12-15T09:05:13Z", + "guid": "gerson-attack-israel-makes-years-090513164.html", + "isoDate": "2023-12-15T09:05:13.000Z" + }, + { + "title": "Fifth column or useful idiot? Hungary\u2019s Orban blocks \u20ac50 billion in EU aid for Ukraine", + "link": "https://news.yahoo.com/fifth-column-useful-idiot-hungary-065800749.html", + "pubDate": "2023-12-15T06:58:00Z", + "guid": "fifth-column-useful-idiot-hungary-065800749.html", + "isoDate": "2023-12-15T06:58:00.000Z" + }, + { + "title": "Russian drone crashing in Romania was unintentional, NATO says", + "link": "https://news.yahoo.com/russian-drone-crashing-romania-unintentional-195000083.html", + "pubDate": "2023-12-14T19:50:00Z", + "guid": "russian-drone-crashing-romania-unintentional-195000083.html", + "isoDate": "2023-12-14T19:50:00.000Z" + }, + { + "title": "\"Orb\u00e1n left the room when we voted\": EU official explains how decision to open accession talks with Ukraine was made", + "link": "https://news.yahoo.com/orb-n-left-room-voted-182619045.html", + "pubDate": "2023-12-14T18:26:19Z", + "guid": "orb-n-left-room-voted-182619045.html", + "isoDate": "2023-12-14T18:26:19.000Z" + }, + { + "title": "Germany delivers Patriot missile defense system, ammunition to Ukraine", + "link": "https://news.yahoo.com/germany-delivers-patriot-missile-defense-171214982.html", + "pubDate": "2023-12-14T17:12:14Z", + "guid": "germany-delivers-patriot-missile-defense-171214982.html", + "isoDate": "2023-12-14T17:12:14.000Z" + }, + { + "title": "NATO sees no threat in Russian drone crash in Romania as it was unintentional", + "link": "https://news.yahoo.com/nato-sees-no-threat-russian-153853880.html", + "pubDate": "2023-12-14T15:38:53Z", + "guid": "nato-sees-no-threat-russian-153853880.html", + "isoDate": "2023-12-14T15:38:53.000Z" + }, + { + "title": "Pope Francis calls for binding global treaty to regulate AI", + "link": "https://finance.yahoo.com/news/pope-calls-binding-global-treaty-105514218.html", + "pubDate": "2023-12-14T10:55:14Z", + "guid": "pope-calls-binding-global-treaty-105514218.html", + "isoDate": "2023-12-14T10:55:14.000Z" + }, + { + "title": "Joshua Mollel: Tanzania says student killed in Israel by Hamas", + "link": "https://news.yahoo.com/joshua-mollel-tanzania-says-student-085636506.html", + "pubDate": "2023-12-14T09:55:48Z", + "guid": "joshua-mollel-tanzania-says-student-085636506.html", + "isoDate": "2023-12-14T09:55:48.000Z" + }, + { + "title": "Reporter's Notebook: Israel-Hamas war continues on deadly day for Israel, but its 'determination remains'", + "link": "https://news.yahoo.com/reporters-notebook-israel-hamas-war-185844468.html", + "pubDate": "2023-12-13T18:58:44Z", + "guid": "reporters-notebook-israel-hamas-war-185844468.html", + "isoDate": "2023-12-13T18:58:44.000Z" + }, + { + "title": "\u2018Putin is a terrible dictator\u2019 \u2014 Geert Wilders", + "link": "https://news.yahoo.com/putin-terrible-dictator-geert-wilders-185000819.html", + "pubDate": "2023-12-13T18:50:00Z", + "guid": "putin-terrible-dictator-geert-wilders-185000819.html", + "isoDate": "2023-12-13T18:50:00.000Z" + }, + { + "title": "12-year-old Indian activist Licypriya Kangujam interrupts COP28 stage in Dubai", + "link": "https://news.yahoo.com/12-old-indian-activist-licypriya-182337355.html", + "pubDate": "2023-12-13T18:23:37Z", + "guid": "12-old-indian-activist-licypriya-182337355.html", + "isoDate": "2023-12-13T18:23:37.000Z" + }, + { + "title": "Pope confirms plans to visit home Argentina after invitation from once-fierce critic President Javier Milei", + "link": "https://news.yahoo.com/pope-confirms-plans-visit-home-180826330.html", + "pubDate": "2023-12-13T18:08:26Z", + "guid": "pope-confirms-plans-visit-home-180826330.html", + "isoDate": "2023-12-13T18:08:26.000Z" + }, + { + "title": "Suspended MP Peter Bone returns to vote for Rwanda bill", + "link": "https://news.yahoo.com/suspended-mp-peter-bone-returns-180137515.html", + "pubDate": "2023-12-13T18:01:37Z", + "guid": "suspended-mp-peter-bone-returns-180137515.html", + "isoDate": "2023-12-13T18:01:37.000Z" + }, + { + "title": "EU Unlocks \u20ac10 Billion for Hungary in Boost for Orban", + "link": "https://news.yahoo.com/eu-unlocks-10-billion-hungary-170053143.html", + "pubDate": "2023-12-13T17:00:53Z", + "guid": "eu-unlocks-10-billion-hungary-170053143.html", + "isoDate": "2023-12-13T17:00:53.000Z" + }, + { + "title": "European Parliament calls for swift EU expansion talks with Ukraine", + "link": "https://news.yahoo.com/european-parliament-calls-swift-eu-170000872.html", + "pubDate": "2023-12-13T17:00:00Z", + "guid": "european-parliament-calls-swift-eu-170000872.html", + "isoDate": "2023-12-13T17:00:00.000Z" + }, + { + "title": "Russian hacker group claims responsibility for Kyivstar cyberattack", + "link": "https://news.yahoo.com/russian-hacker-group-claims-responsibility-161920251.html", + "pubDate": "2023-12-13T16:19:20Z", + "guid": "russian-hacker-group-claims-responsibility-161920251.html", + "isoDate": "2023-12-13T16:19:20.000Z" + }, + { + "title": "Spanish Prime Minister wants EU negotiations with Ukraine to start by the end of year", + "link": "https://news.yahoo.com/spanish-prime-minister-wants-eu-161028453.html", + "pubDate": "2023-12-13T16:10:28Z", + "guid": "spanish-prime-minister-wants-eu-161028453.html", + "isoDate": "2023-12-13T16:10:28.000Z" + }, + { + "title": "Orlando Science Center preps Paleontology Party", + "link": "https://news.yahoo.com/orlando-science-center-preps-paleontology-160700551.html", + "pubDate": "2023-12-13T16:07:00Z", + "guid": "orlando-science-center-preps-paleontology-160700551.html", + "isoDate": "2023-12-13T16:07:00.000Z" + }, + { + "title": "Italian chess sets, Apple Watches, crystal tableware: some General Staff purchases raise questions in media", + "link": "https://news.yahoo.com/italian-chess-sets-apple-watches-154719622.html", + "pubDate": "2023-12-13T15:47:19Z", + "guid": "italian-chess-sets-apple-watches-154719622.html", + "isoDate": "2023-12-13T15:47:19.000Z" + }, + { + "title": "COP28 nets first-ever global climate deal for transition away from fossil fuels", + "link": "https://news.yahoo.com/cop28-nets-first-ever-global-153522877.html", + "pubDate": "2023-12-13T15:35:22Z", + "guid": "cop28-nets-first-ever-global-153522877.html", + "isoDate": "2023-12-13T15:35:22.000Z" + }, + { + "title": "Video shows tree explode after lightning strike as man narrowly avoids being crushed by falling limbs", + "link": "https://news.yahoo.com/video-shows-tree-explode-lightning-153404505.html", + "pubDate": "2023-12-13T15:34:04Z", + "guid": "video-shows-tree-explode-lightning-153404505.html", + "isoDate": "2023-12-13T15:34:04.000Z" + }, + { + "title": "Nova Poshta enters the Italian market with 80th European branch", + "link": "https://news.yahoo.com/nova-poshta-enters-italian-market-153000682.html", + "pubDate": "2023-12-13T15:30:00Z", + "guid": "nova-poshta-enters-italian-market-153000682.html", + "isoDate": "2023-12-13T15:30:00.000Z" + }, + { + "title": "Hackers linked to Russian spy agency claim cyberattack on Ukrainian cell network", + "link": "https://finance.yahoo.com/news/ukraine-says-russian-intelligence-linked-151957151.html", + "pubDate": "2023-12-13T15:19:57Z", + "guid": "ukraine-says-russian-intelligence-linked-151957151.html", + "isoDate": "2023-12-13T15:19:57.000Z" + }, + { + "title": "South Africa Aims to Fire Up Economic Growth With Port, Rail Revival", + "link": "https://news.yahoo.com/south-africa-aims-fire-economic-150050618.html", + "pubDate": "2023-12-13T15:00:50Z", + "guid": "south-africa-aims-fire-economic-150050618.html", + "isoDate": "2023-12-13T15:00:50.000Z" + }, + { + "title": "Zelensky 'still waiting for answer' from Orban on why Ukraine should not join EU", + "link": "https://news.yahoo.com/zelensky-still-waiting-answer-orban-150022361.html", + "pubDate": "2023-12-13T15:00:22Z", + "guid": "zelensky-still-waiting-answer-orban-150022361.html", + "isoDate": "2023-12-13T15:00:22.000Z" + }, + { + "title": "Ammunition, tanks and drones: Denmark prepares \u20ac1 billion aid package for Ukraine", + "link": "https://news.yahoo.com/ammunition-tanks-drones-denmark-prepares-145521269.html", + "pubDate": "2023-12-13T14:55:21Z", + "guid": "ammunition-tanks-drones-denmark-prepares-145521269.html", + "isoDate": "2023-12-13T14:55:21.000Z" + }, + { + "title": "Yandex Founder Seeks Sanctions Removal After Condemning Russia\u2019s Invasion", + "link": "https://news.yahoo.com/yandex-founder-seeks-sanctions-removal-144109987.html", + "pubDate": "2023-12-13T14:41:09Z", + "guid": "yandex-founder-seeks-sanctions-removal-144109987.html", + "isoDate": "2023-12-13T14:41:09.000Z" + }, + { + "title": "We must live up to our commitments to Ukraine \u2013 European Council President ahead of key EU summit", + "link": "https://news.yahoo.com/must-live-commitments-ukraine-european-143347022.html", + "pubDate": "2023-12-13T14:33:47Z", + "guid": "must-live-commitments-ukraine-european-143347022.html", + "isoDate": "2023-12-13T14:33:47.000Z" + }, + { + "title": "European Parliament condemns Orb\u00e1n and urges EU to approve opening of membership talks with Ukraine", + "link": "https://news.yahoo.com/european-parliament-condemns-orb-n-134437639.html", + "pubDate": "2023-12-13T13:44:37Z", + "guid": "european-parliament-condemns-orb-n-134437639.html", + "isoDate": "2023-12-13T13:44:37.000Z" + }, + { + "title": "Give me one reason why Ukraine shouldn't be in the EU, Zelenskyy tells Orb\u00e1n", + "link": "https://news.yahoo.com/one-reason-why-ukraine-shouldnt-132400470.html", + "pubDate": "2023-12-13T13:24:00Z", + "guid": "one-reason-why-ukraine-shouldnt-132400470.html", + "isoDate": "2023-12-13T13:24:00.000Z" + }, + { + "title": "European Commission anticipates new procedure for accession negotiations for Ukraine", + "link": "https://news.yahoo.com/european-commission-anticipates-procedure-accession-132229819.html", + "pubDate": "2023-12-13T13:22:29Z", + "guid": "european-commission-anticipates-procedure-accession-132229819.html", + "isoDate": "2023-12-13T13:22:29.000Z" + }, + { + "title": "Germany presents details of agreement on 2024 budget with 8 billion euros for Ukraine", + "link": "https://news.yahoo.com/germany-presents-details-agreement-2024-132048776.html", + "pubDate": "2023-12-13T13:20:48Z", + "guid": "germany-presents-details-agreement-2024-132048776.html", + "isoDate": "2023-12-13T13:20:48.000Z" + }, + { + "title": "If Hungary blocks EU decision, it will mean Putin vetoed it \u2013 Zelenskyy", + "link": "https://news.yahoo.com/hungary-blocks-eu-decision-mean-130701137.html", + "pubDate": "2023-12-13T13:07:01Z", + "guid": "hungary-blocks-eu-decision-mean-130701137.html", + "isoDate": "2023-12-13T13:07:01.000Z" + }, + { + "title": "Fico confirms Slovakia not in opposition to Ukraine's EU accession talks", + "link": "https://news.yahoo.com/fico-confirms-slovakia-not-opposition-122701145.html", + "pubDate": "2023-12-13T12:27:01Z", + "guid": "fico-confirms-slovakia-not-opposition-122701145.html", + "isoDate": "2023-12-13T12:27:01.000Z" + }, + { + "title": "Without aid, we'll have to fight as in first days of Russia's invasion \u2013 Zelenskyy", + "link": "https://news.yahoo.com/without-aid-well-fight-first-114811106.html", + "pubDate": "2023-12-13T11:48:11Z", + "guid": "without-aid-well-fight-first-114811106.html", + "isoDate": "2023-12-13T11:48:11.000Z" + }, + { + "title": "Rishi Sunak seeks to defuse Tory revolt ahead of Rwanda vote", + "link": "https://news.yahoo.com/rishi-sunak-faces-crunch-rwanda-204512739.html", + "pubDate": "2023-12-13T11:12:59Z", + "guid": "rishi-sunak-faces-crunch-rwanda-204512739.html", + "isoDate": "2023-12-13T11:12:59.000Z" + }, + { + "title": "\"Japanese publishers need Xbox to expand,\" says ex-PlayStation exec as Microsoft gets serious about Japan", + "link": "https://finance.yahoo.com/news/japanese-publishers-xbox-expand-says-111155622.html", + "pubDate": "2023-12-13T11:11:55Z", + "guid": "japanese-publishers-xbox-expand-says-111155622.html", + "isoDate": "2023-12-13T11:11:55.000Z" + }, + { + "title": "More than 4,000 lorries queuing at borders of Ukraine \u2013 State Border Guard Service", + "link": "https://news.yahoo.com/more-4-000-lorries-queuing-105459667.html", + "pubDate": "2023-12-13T10:54:59Z", + "guid": "more-4-000-lorries-queuing-105459667.html", + "isoDate": "2023-12-13T10:54:59.000Z" + }, + { + "title": "Ukraine can import up to 1.7 GW of electricity from EU", + "link": "https://news.yahoo.com/ukraine-import-1-7-gw-105120326.html", + "pubDate": "2023-12-13T10:51:20Z", + "guid": "ukraine-import-1-7-gw-105120326.html", + "isoDate": "2023-12-13T10:51:20.000Z" + }, + { + "title": "Jessen: What I learned about religion talking to a craftsman in Egypt", + "link": "https://news.yahoo.com/jessen-learned-religion-talking-craftsman-102504709.html", + "pubDate": "2023-12-15T10:25:04Z", + "guid": "jessen-learned-religion-talking-craftsman-102504709.html", + "isoDate": "2023-12-15T10:25:04.000Z" + }, + { + "title": "India Court Allows Survey of Mosque in New Muslim-Hindu Dispute", + "link": "https://news.yahoo.com/india-court-allows-survey-mosque-015028509.html", + "pubDate": "2023-12-15T01:50:28Z", + "guid": "india-court-allows-survey-mosque-015028509.html", + "isoDate": "2023-12-15T01:50:28.000Z" + }, + { + "title": "Germany delivers second Patriot system to Ukraine in new aid package", + "link": "https://news.yahoo.com/germany-delivers-second-patriot-system-205000910.html", + "pubDate": "2023-12-14T20:50:00Z", + "guid": "germany-delivers-second-patriot-system-205000910.html", + "isoDate": "2023-12-14T20:50:00.000Z" + }, + { + "title": "Zelenskyy speaks to Michel and Macron after EU's historic decision", + "link": "https://news.yahoo.com/zelenskyy-speaks-michel-macron-eus-202535206.html", + "pubDate": "2023-12-14T20:25:35Z", + "guid": "zelenskyy-speaks-michel-macron-eus-202535206.html", + "isoDate": "2023-12-14T20:25:35.000Z" + }, + { + "title": "Hungry, thirsty and humiliated: Israel's mass arrest campaign sows fear in northern Gaza", + "link": "https://news.yahoo.com/hungry-thirsty-humiliated-israels-mass-192749995.html", + "pubDate": "2023-12-14T19:27:49Z", + "guid": "hungry-thirsty-humiliated-israels-mass-192749995.html", + "isoDate": "2023-12-14T19:27:49.000Z" + }, + { + "title": "James May: Our Man in India: release date, destinations, episode guide, exclusive interview and everything you need to know", + "link": "https://www.yahoo.com/entertainment/james-may-man-india-release-180848310.html", + "pubDate": "2023-12-14T18:08:48Z", + "guid": "james-may-man-india-release-180848310.html", + "isoDate": "2023-12-14T18:08:48.000Z" + }, + { + "title": "EU leaders support opening accession talks with Ukraine \u2013 Charles Michel", + "link": "https://news.yahoo.com/eu-leaders-support-opening-accession-173134172.html", + "pubDate": "2023-12-14T17:31:34Z", + "guid": "eu-leaders-support-opening-accession-173134172.html", + "isoDate": "2023-12-14T17:31:34.000Z" + }, + { + "title": "Turkish lawmaker who suffered heart attack after saying Israel will suffer 'the wrath of God' has died", + "link": "https://news.yahoo.com/turkish-lawmaker-suffered-heart-attack-172029775.html", + "pubDate": "2023-12-14T17:20:29Z", + "guid": "turkish-lawmaker-suffered-heart-attack-172029775.html", + "isoDate": "2023-12-14T17:20:29.000Z" + }, + { + "title": "EU Seeks Ukraine Aid Deal With 26 Nations to Press Holdout Orban", + "link": "https://news.yahoo.com/eu-seeks-ukraine-aid-deal-171414666.html", + "pubDate": "2023-12-14T17:14:14Z", + "guid": "eu-seeks-ukraine-aid-deal-171414666.html", + "isoDate": "2023-12-14T17:14:14.000Z" + }, + { + "title": "Netherlands\u2019 PM Rutte emphasizes prolonged timeline for Ukraine\u2019s EU accession", + "link": "https://news.yahoo.com/netherlands-pm-rutte-emphasizes-prolonged-144700773.html", + "pubDate": "2023-12-14T14:47:00Z", + "guid": "netherlands-pm-rutte-emphasizes-prolonged-144700773.html", + "isoDate": "2023-12-14T14:47:00.000Z" + }, + { + "title": "Putin parrots worn propaganda tropes at first public call-in marathon since 2021", + "link": "https://news.yahoo.com/putin-parrots-worn-propaganda-tropes-143100561.html", + "pubDate": "2023-12-14T14:31:00Z", + "guid": "putin-parrots-worn-propaganda-tropes-143100561.html", + "isoDate": "2023-12-14T14:31:00.000Z" + }, + { + "title": "South Korea, Japan scramble jets after China, Russia warplanes spotted entering Seoul's defense zone", + "link": "https://news.yahoo.com/south-korea-japan-scramble-jets-142935191.html", + "pubDate": "2023-12-14T14:29:35Z", + "guid": "south-korea-japan-scramble-jets-142935191.html", + "isoDate": "2023-12-14T14:29:35.000Z" + }, + { + "title": "Russians attack power plant in eastern Ukraine, equipment damaged", + "link": "https://news.yahoo.com/russians-attack-power-plant-eastern-131200244.html", + "pubDate": "2023-12-14T13:12:00Z", + "guid": "russians-attack-power-plant-eastern-131200244.html", + "isoDate": "2023-12-14T13:12:00.000Z" + }, + { + "title": "Spanish properties of former Odesa chief enlistment officer searched: assets seized \u2013 photo", + "link": "https://news.yahoo.com/spanish-properties-former-odesa-chief-093318608.html", + "pubDate": "2023-12-14T09:33:18Z", + "guid": "spanish-properties-former-odesa-chief-093318608.html", + "isoDate": "2023-12-14T09:33:18.000Z" + }, + { + "title": "DR Congo election: 'We would vote for peace - if we had a vote'", + "link": "https://news.yahoo.com/dr-congo-election-vote-peace-004328299.html", + "pubDate": "2023-12-14T09:20:28Z", + "guid": "dr-congo-election-vote-peace-004328299.html", + "isoDate": "2023-12-14T09:20:28.000Z" + }, + { + "title": "EU representative Borrell plans to return to Ukraine in December", + "link": "https://news.yahoo.com/eu-representative-borrell-plans-return-062400972.html", + "pubDate": "2023-12-14T06:24:00Z", + "guid": "eu-representative-borrell-plans-return-062400972.html", + "isoDate": "2023-12-14T06:24:00.000Z" + }, + { + "title": "Russians put Ukraine's intelligence chief on wanted list", + "link": "https://news.yahoo.com/russians-put-ukraines-intelligence-chief-021812225.html", + "pubDate": "2023-12-14T02:18:12Z", + "guid": "russians-put-ukraines-intelligence-chief-021812225.html", + "isoDate": "2023-12-14T02:18:12.000Z" + }, + { + "title": "HK Corporate Governance Tumbles to Decades Low", + "link": "https://news.yahoo.com/hk-corporate-governance-tumbles-decades-021248527.html", + "pubDate": "2023-12-14T02:12:48Z", + "guid": "hk-corporate-governance-tumbles-decades-021248527.html", + "isoDate": "2023-12-14T02:12:48.000Z" + }, + { + "title": "Intruders Breach Indian Parliament Security\u00a0on Shootout Anniversary", + "link": "https://news.yahoo.com/india-parliament-lower-house-adjourned-082943978.html", + "pubDate": "2023-12-14T01:13:42Z", + "guid": "india-parliament-lower-house-adjourned-082943978.html", + "isoDate": "2023-12-14T01:13:42.000Z" + }, + { + "title": "Guyana president calls Venezuela's Maduro an 'outlaw' in border dispute", + "link": "https://news.yahoo.com/guyana-president-calls-venezuelas-maduro-000905554.html", + "pubDate": "2023-12-14T00:09:05Z", + "guid": "guyana-president-calls-venezuelas-maduro-000905554.html", + "isoDate": "2023-12-14T00:09:05.000Z" + }, + { + "title": "Kyivstar attack carried out via compromised employee account, company says", + "link": "https://news.yahoo.com/kyivstar-attack-carried-via-compromised-202000966.html", + "pubDate": "2023-12-13T20:20:00Z", + "guid": "kyivstar-attack-carried-via-compromised-202000966.html", + "isoDate": "2023-12-13T20:20:00.000Z" + }, + { + "title": "Local authorities prohibit Polish hauliers from blocking border in Dorohusk", + "link": "https://news.yahoo.com/local-authorities-prohibit-polish-road-200727451.html", + "pubDate": "2023-12-13T20:07:27Z", + "guid": "local-authorities-prohibit-polish-road-200727451.html", + "isoDate": "2023-12-13T20:07:27.000Z" + }, + { + "title": "German 2024 budget deal could spur EU agreement on budget revision", + "link": "https://finance.yahoo.com/news/german-2024-budget-deal-could-191037125.html", + "pubDate": "2023-12-13T19:10:37Z", + "guid": "german-2024-budget-deal-could-191037125.html", + "isoDate": "2023-12-13T19:10:37.000Z" + }, + { + "title": "Video from Syria misrepresented as Israeli snipers targeting Palestinian children", + "link": "https://news.yahoo.com/video-syria-misrepresented-israeli-snipers-190948995.html", + "pubDate": "2023-12-13T19:09:48Z", + "guid": "video-syria-misrepresented-israeli-snipers-190948995.html", + "isoDate": "2023-12-13T19:09:48.000Z" + }, + { + "title": "Eight-eyed grassland creature with \u2018fanglike\u2019 sex organ turns out to be new species", + "link": "https://news.yahoo.com/eight-eyed-grassland-creature-fanglike-183252231.html", + "pubDate": "2023-12-13T18:32:52Z", + "guid": "eight-eyed-grassland-creature-fanglike-183252231.html", + "isoDate": "2023-12-13T18:32:52.000Z" + }, + { + "title": "Facelifted Genesis G80 Has Fresher Looks, New 27-Inch Screen And More Knobs", + "link": "https://news.yahoo.com/facelifted-genesis-g80-fresher-looks-180500644.html", + "pubDate": "2023-12-13T18:05:00Z", + "guid": "facelifted-genesis-g80-fresher-looks-180500644.html", + "isoDate": "2023-12-13T18:05:00.000Z" + }, + { + "title": "89 combat clashes occur at front, Russians attack mostly on Avdiivka front \u2013 General Staff report", + "link": "https://news.yahoo.com/89-combat-clashes-occur-front-175354115.html", + "pubDate": "2023-12-13T17:53:54Z", + "guid": "89-combat-clashes-occur-front-175354115.html", + "isoDate": "2023-12-13T17:53:54.000Z" + }, + { + "title": "EU unfreezes \u20ac10 billion for Hungary ahead of Ukraine-focused summit", + "link": "https://news.yahoo.com/eu-unfreezes-10-billion-hungary-174243396.html", + "pubDate": "2023-12-13T17:42:43Z", + "guid": "eu-unfreezes-10-billion-hungary-174243396.html", + "isoDate": "2023-12-13T17:42:43.000Z" + }, + { + "title": "Kyivstar begins restoring services following cyberattack", + "link": "https://news.yahoo.com/kyivstar-begins-restoring-services-following-170135279.html", + "pubDate": "2023-12-13T17:01:35Z", + "guid": "kyivstar-begins-restoring-services-following-170135279.html", + "isoDate": "2023-12-13T17:01:35.000Z" + }, + { + "title": "Argentina to devalue peso by over 50% as part of emergency economic reforms", + "link": "https://finance.yahoo.com/news/argentina-devalue-peso-over-50-000416495.html", + "pubDate": "2023-12-13T14:35:12Z", + "guid": "argentina-devalue-peso-over-50-000416495.html", + "isoDate": "2023-12-13T14:35:12.000Z" + }, + { + "title": "F\u00e9lix Tshisekedi: The man who vowed to make DR Congo the 'Germany of Africa'", + "link": "https://news.yahoo.com/f-lix-tshisekedi-man-vowed-171523936.html", + "pubDate": "2023-12-15T17:24:14Z", + "guid": "f-lix-tshisekedi-man-vowed-171523936.html", + "isoDate": "2023-12-15T17:24:14.000Z" + }, + { + "title": "Moldova and Georgia celebrate as their aspirations for EU membership take crucial steps forward", + "link": "https://news.yahoo.com/moldova-georgia-celebrate-aspirations-eu-151011949.html", + "pubDate": "2023-12-15T15:10:11Z", + "guid": "moldova-georgia-celebrate-aspirations-eu-151011949.html", + "isoDate": "2023-12-15T15:10:11.000Z" + }, + { + "title": "Mariupol doctor who betrayed wounded Ukrainian soldiers to Russians is sentenced to life in prison", + "link": "https://news.yahoo.com/mariupol-doctor-betrayed-wounded-ukrainian-111500106.html", + "pubDate": "2023-12-15T11:15:00Z", + "guid": "mariupol-doctor-betrayed-wounded-ukrainian-111500106.html", + "isoDate": "2023-12-15T11:15:00.000Z" + }, + { + "title": "DR Congo election 2023: What you need to know", + "link": "https://news.yahoo.com/dr-congo-election-2023-know-180851088.html", + "pubDate": "2023-12-15T10:07:52Z", + "guid": "dr-congo-election-2023-know-180851088.html", + "isoDate": "2023-12-15T10:07:52.000Z" + }, + { + "title": "Polish president congratulates Ukraine and Moldova on historic EU summit decision", + "link": "https://news.yahoo.com/polish-president-congratulates-ukraine-moldova-091454981.html", + "pubDate": "2023-12-15T09:14:54Z", + "guid": "polish-president-congratulates-ukraine-moldova-091454981.html", + "isoDate": "2023-12-15T09:14:54.000Z" + }, + { + "title": "European Council President expresses confidence for Ukraine funding despite Hungarian veto", + "link": "https://news.yahoo.com/european-council-president-expresses-confidence-030424569.html", + "pubDate": "2023-12-15T03:04:24Z", + "guid": "european-council-president-expresses-confidence-030424569.html", + "isoDate": "2023-12-15T03:04:24.000Z" + }, + { + "title": "Defense Ministry recoups $24 million from unreliable suppliers", + "link": "https://news.yahoo.com/defense-ministry-recoups-24-million-215000710.html", + "pubDate": "2023-12-14T21:50:00Z", + "guid": "defense-ministry-recoups-24-million-215000710.html", + "isoDate": "2023-12-14T21:50:00.000Z" + }, + { + "title": "\"Historic day\": European leaders celebrate EU decision on Ukraine and Moldova", + "link": "https://news.yahoo.com/historic-day-european-leaders-celebrate-200035130.html", + "pubDate": "2023-12-14T20:00:35Z", + "guid": "historic-day-european-leaders-celebrate-200035130.html", + "isoDate": "2023-12-14T20:00:35.000Z" + }, + { + "title": "Helen Mirren (\u2018Golda\u2019) on playing Israel\u2019s first female prime minister: She was \u2018absolutely revelatory\u2019 [Exclusive Video Interview]", + "link": "https://www.yahoo.com/entertainment/helen-mirren-golda-playing-israel-193011368.html", + "pubDate": "2023-12-14T19:30:11Z", + "guid": "helen-mirren-golda-playing-israel-193011368.html", + "isoDate": "2023-12-14T19:30:11.000Z" + }, + { + "title": "Court voids fine given to Russian activist for criticizing war and sends case back to prosecutors", + "link": "https://news.yahoo.com/court-voids-fine-given-russian-182243642.html", + "pubDate": "2023-12-14T18:22:43Z", + "guid": "court-voids-fine-given-russian-182243642.html", + "isoDate": "2023-12-14T18:22:43.000Z" + }, + { + "title": "Five more Ukrainian kids abducted by Russia are returned to Ukraine", + "link": "https://news.yahoo.com/five-more-ukrainian-kids-abducted-155900724.html", + "pubDate": "2023-12-14T15:59:00Z", + "guid": "five-more-ukrainian-kids-abducted-155900724.html", + "isoDate": "2023-12-14T15:59:00.000Z" + }, + { + "title": "Why Venezuela\u2019s Threatening to Take a Chunk of Guyana: QuickTake", + "link": "https://news.yahoo.com/why-venezuela-threatening-chunk-guyana-150441774.html", + "pubDate": "2023-12-14T15:04:41Z", + "guid": "why-venezuela-threatening-chunk-guyana-150441774.html", + "isoDate": "2023-12-14T15:04:41.000Z" + }, + { + "title": "BRICS influence in Africa grows with TV media deals", + "link": "https://news.yahoo.com/brics-influence-africa-grows-tv-132321078.html", + "pubDate": "2023-12-14T15:01:09Z", + "guid": "brics-influence-africa-grows-tv-132321078.html", + "isoDate": "2023-12-14T15:01:09.000Z" + }, + { + "title": "Ousmane Sonko: Senegal court boost for opposition leader's election bid", + "link": "https://news.yahoo.com/ousmane-sonko-senegal-court-boost-110154293.html", + "pubDate": "2023-12-14T14:07:51Z", + "guid": "ousmane-sonko-senegal-court-boost-110154293.html", + "isoDate": "2023-12-14T14:07:51.000Z" + }, + { + "title": "Explosions heard during air-raid in Khmelnytskyi Oblast: Starokostiantyniv under threat", + "link": "https://news.yahoo.com/air-raid-warning-issued-throughout-130353659.html", + "pubDate": "2023-12-14T13:03:53Z", + "guid": "air-raid-warning-issued-throughout-130353659.html", + "isoDate": "2023-12-14T13:03:53.000Z" + }, + { + "title": "Donetsk resident charged over allegedly fighting for Russia in Mariupol, elsewhere", + "link": "https://news.yahoo.com/donetsk-resident-charged-over-allegedly-102412282.html", + "pubDate": "2023-12-14T10:24:12Z", + "guid": "donetsk-resident-charged-over-allegedly-102412282.html", + "isoDate": "2023-12-14T10:24:12.000Z" + }, + { + "title": "Hungarian PM does not oppose Ukraine's EU accession but sees \"no reason\" for talks", + "link": "https://news.yahoo.com/hungarian-pm-does-not-oppose-092727280.html", + "pubDate": "2023-12-14T09:27:27Z", + "guid": "hungarian-pm-does-not-oppose-092727280.html", + "isoDate": "2023-12-14T09:27:27.000Z" + }, + { + "title": "UN\u00a0court hears South Africa's genocide case against Israel next week", + "link": "https://news.yahoo.com/un-court-hears-south-africas-094348781.html", + "pubDate": "2024-01-04T09:43:48Z", + "guid": "un-court-hears-south-africas-094348781.html", + "isoDate": "2024-01-04T09:43:48.000Z" + }, + { + "title": "The UK is not cooperating enough to curb migrant crossings of the Channel, a French report says", + "link": "https://news.yahoo.com/uk-not-cooperating-enough-curb-093956095.html", + "pubDate": "2024-01-04T09:39:56Z", + "guid": "uk-not-cooperating-enough-curb-093956095.html", + "isoDate": "2024-01-04T09:39:56.000Z" + }, + { + "title": "EU must provide Ukraine with long-range and anti-aircraft missiles \u2013 EU chief diplomat Borrell", + "link": "https://news.yahoo.com/eu-must-ukraine-long-range-084800295.html", + "pubDate": "2024-01-04T08:48:00Z", + "guid": "eu-must-ukraine-long-range-084800295.html", + "isoDate": "2024-01-04T08:48:00.000Z" + }, + { + "title": "Lethal Sydney funnel-web spider 'Hercules' sets record for largest specimen collected in Australia", + "link": "https://news.yahoo.com/lethal-sydney-funnel-spider-hercules-083451030.html", + "pubDate": "2024-01-04T08:34:51Z", + "guid": "lethal-sydney-funnel-spider-hercules-083451030.html", + "isoDate": "2024-01-04T08:34:51.000Z" + }, + { + "title": "Japan continues earthquake survivor search with more than 50 missing", + "link": "https://news.yahoo.com/japan-continues-earthquake-survivor-search-082843429.html", + "pubDate": "2024-01-04T08:28:43Z", + "guid": "japan-continues-earthquake-survivor-search-082843429.html", + "isoDate": "2024-01-04T08:28:43.000Z" + }, + { + "title": "Iran revises down death toll from blasts near Soleimani's grave to 84", + "link": "https://news.yahoo.com/iran-revises-down-death-toll-082828951.html", + "pubDate": "2024-01-04T08:28:28Z", + "guid": "iran-revises-down-death-toll-082828951.html", + "isoDate": "2024-01-04T08:28:28.000Z" + }, + { + "title": "Foreign capital needs to be secure and respected in Ukraine", + "link": "https://news.yahoo.com/foreign-capital-needs-secure-respected-070000466.html", + "pubDate": "2024-01-04T08:07:00Z", + "guid": "foreign-capital-needs-secure-respected-070000466.html", + "isoDate": "2024-01-04T08:07:00.000Z" + }, + { + "title": "Myanmar junta releases more than 9,600 prisoners", + "link": "https://news.yahoo.com/myanmar-junta-releases-more-9-075836579.html", + "pubDate": "2024-01-04T07:58:36Z", + "guid": "myanmar-junta-releases-more-9-075836579.html", + "isoDate": "2024-01-04T07:58:36.000Z" + }, + { + "title": "Tusk vows to convince Polish carriers to halt their blockade", + "link": "https://news.yahoo.com/tusk-vows-convince-polish-carriers-074547784.html", + "pubDate": "2024-01-04T07:45:47Z", + "guid": "tusk-vows-convince-polish-carriers-074547784.html", + "isoDate": "2024-01-04T07:45:47.000Z" + }, + { + "title": "Honour for Northampton doctor performing hernia ops in Ghana", + "link": "https://news.yahoo.com/honour-northampton-doctor-performing-hernia-064549660.html", + "pubDate": "2024-01-04T06:45:49Z", + "guid": "honour-northampton-doctor-performing-hernia-064549660.html", + "isoDate": "2024-01-04T06:45:49.000Z" + }, + { + "title": "Ukraine's defence forces have destroyed 6,000 Russian tanks to date \u2013 General Staff", + "link": "https://news.yahoo.com/ukraines-defence-forces-destroyed-6-061238558.html", + "pubDate": "2024-01-04T06:12:38Z", + "guid": "ukraines-defence-forces-destroyed-6-061238558.html", + "isoDate": "2024-01-04T06:12:38.000Z" + }, + { + "title": "Ombudsman says Ukraine may hold another prisoner swap in coming weeks", + "link": "https://news.yahoo.com/ombudsman-says-ukraine-may-hold-055000080.html", + "pubDate": "2024-01-04T05:50:00Z", + "guid": "ombudsman-says-ukraine-may-hold-055000080.html", + "isoDate": "2024-01-04T05:50:00.000Z" + }, + { + "title": "Australia struggles to ditch SUV habit even as electric vehicle sales hit record", + "link": "https://www.yahoo.com/tech/australia-struggles-ditch-suv-habit-053730940.html", + "pubDate": "2024-01-04T05:37:30Z", + "guid": "australia-struggles-ditch-suv-habit-053730940.html", + "isoDate": "2024-01-04T05:37:30.000Z" + }, + { + "title": "Ukraine's Foreign Minister says West could help Ukraine defeat Russia by taking five steps", + "link": "https://news.yahoo.com/ukraines-foreign-minister-says-west-052757871.html", + "pubDate": "2024-01-04T05:27:57Z", + "guid": "ukraines-foreign-minister-says-west-052757871.html", + "isoDate": "2024-01-04T05:27:57.000Z" + }, + { + "title": "Another PoW swap may be held in next few weeks \u2013 Human Rights Commissioner", + "link": "https://news.yahoo.com/another-pow-swap-may-held-035000959.html", + "pubDate": "2024-01-04T03:50:00Z", + "guid": "another-pow-swap-may-held-035000959.html", + "isoDate": "2024-01-04T03:50:00.000Z" + }, + { + "title": "Fact Check: Captured on Video: The Moment Conor McGregor Was Warned Not To Put His Arm Around Putin", + "link": "https://sports.yahoo.com/fact-check-captured-video-moment-014000601.html", + "pubDate": "2024-01-04T01:40:00Z", + "guid": "fact-check-captured-video-moment-014000601.html", + "isoDate": "2024-01-04T01:40:00.000Z" + }, + { + "title": "Military recovers black box from Osprey crash in Japan", + "link": "https://news.yahoo.com/military-recovers-black-box-osprey-002845351.html", + "pubDate": "2024-01-04T00:28:45Z", + "guid": "military-recovers-black-box-osprey-002845351.html", + "isoDate": "2024-01-04T00:28:45.000Z" + }, + { + "title": "Argentine court suspends labor changes in a blow to President Milei's economic plan", + "link": "https://news.yahoo.com/argentine-court-suspends-labor-changes-233858555.html", + "pubDate": "2024-01-03T23:38:58Z", + "guid": "argentine-court-suspends-labor-changes-233858555.html", + "isoDate": "2024-01-03T23:38:58.000Z" + }, + { + "title": "Hezbollah leader threatens Israel, says there is no fear of war following death of top Hamas official", + "link": "https://news.yahoo.com/hezbollah-leader-threatens-israel-says-223408873.html", + "pubDate": "2024-01-03T22:34:08Z", + "guid": "hezbollah-leader-threatens-israel-says-223408873.html", + "isoDate": "2024-01-03T22:34:08.000Z" + }, + { + "title": "Mexico to open its embassy in Ukraine", + "link": "https://news.yahoo.com/mexico-open-embassy-ukraine-214500110.html", + "pubDate": "2024-01-03T21:45:00Z", + "guid": "mexico-open-embassy-ukraine-214500110.html", + "isoDate": "2024-01-03T21:45:00.000Z" + }, + { + "title": "Top EU diplomat condemns Israeli statements on Gaza as irresponsible", + "link": "https://news.yahoo.com/top-eu-diplomat-condemns-israeli-214349404.html", + "pubDate": "2024-01-03T21:43:49Z", + "guid": "top-eu-diplomat-condemns-israeli-214349404.html", + "isoDate": "2024-01-03T21:43:49.000Z" + }, + { + "title": "Watch: Video shows inside Japan Airlines plane during fiery collision", + "link": "https://news.yahoo.com/watch-view-inside-japan-airlines-212444845.html", + "pubDate": "2024-01-03T21:24:44Z", + "guid": "watch-view-inside-japan-airlines-212444845.html", + "isoDate": "2024-01-03T21:24:44.000Z" + }, + { + "title": "Large crocodile jumps into Australian man's boat", + "link": "https://news.yahoo.com/large-crocodile-jumps-australian-mans-211925671.html", + "pubDate": "2024-01-03T21:19:25Z", + "guid": "large-crocodile-jumps-australian-mans-211925671.html", + "isoDate": "2024-01-03T21:19:25.000Z" + }, + { + "title": "NATO to supply more ammunition for Patriot air defense system", + "link": "https://news.yahoo.com/nato-supply-more-ammunition-patriot-204500862.html", + "pubDate": "2024-01-03T20:45:00Z", + "guid": "nato-supply-more-ammunition-patriot-204500862.html", + "isoDate": "2024-01-03T20:45:00.000Z" + }, + { + "title": "Why Online Video Revenue in Asia Jumped 13 Percent in 2023, While TV Barely Grew", + "link": "https://www.yahoo.com/entertainment/why-online-video-revenue-asia-203000285.html", + "pubDate": "2024-01-03T20:30:00Z", + "guid": "why-online-video-revenue-asia-203000285.html", + "isoDate": "2024-01-03T20:30:00.000Z" + }, + { + "title": "NATO to hold a meeting on Russia\u2019s recent wave of missile attacks on Ukrainian cities", + "link": "https://news.yahoo.com/nato-hold-meeting-russia-recent-201500734.html", + "pubDate": "2024-01-03T20:15:00Z", + "guid": "nato-hold-meeting-russia-recent-201500734.html", + "isoDate": "2024-01-03T20:15:00.000Z" + }, + { + "title": "Letters to the editor: Bias shown in pictures section; T.O.'s plan flawed", + "link": "https://news.yahoo.com/letters-editor-bias-shown-pictures-200041446.html", + "pubDate": "2024-01-03T20:00:41Z", + "guid": "letters-editor-bias-shown-pictures-200041446.html", + "isoDate": "2024-01-03T20:00:41.000Z" + }, + { + "title": "AP Photos: Search presses on for earthquake survivors as Japan grieves the lives lost", + "link": "https://news.yahoo.com/ap-photos-search-presses-earthquake-194726933.html", + "pubDate": "2024-01-03T19:47:26Z", + "guid": "ap-photos-search-presses-earthquake-194726933.html", + "isoDate": "2024-01-03T19:47:26.000Z" + }, + { + "title": "Ukrainian Paratroopers Eliminate Platoon of Invaders \u2013 Video", + "link": "https://news.yahoo.com/ukrainian-paratroopers-eliminate-platoon-invaders-191500887.html", + "pubDate": "2024-01-03T19:15:00Z", + "guid": "ukrainian-paratroopers-eliminate-platoon-invaders-191500887.html", + "isoDate": "2024-01-03T19:15:00.000Z" + }, + { + "title": "There will be no collapse in power system even if Russia takes advantage of cold snap to attack", + "link": "https://news.yahoo.com/no-collapse-power-system-even-191136312.html", + "pubDate": "2024-01-03T19:11:36Z", + "guid": "no-collapse-power-system-even-191136312.html", + "isoDate": "2024-01-03T19:11:36.000Z" + }, + { + "title": "Hezbollah chief dubs killing of Hamas leader 'blatant Israeli attack'", + "link": "https://news.yahoo.com/hezbollah-chief-dubs-killing-hamas-184333549.html", + "pubDate": "2024-01-03T18:43:33Z", + "guid": "hezbollah-chief-dubs-killing-hamas-184333549.html", + "isoDate": "2024-01-03T18:43:33.000Z" + }, + { + "title": "Kuleba: NATO-Ukraine Council to hold emergency meeting in response to Russia\u2019s mass strikes on Ukraine", + "link": "https://news.yahoo.com/kuleba-nato-ukraine-council-hold-183643825.html", + "pubDate": "2024-01-03T18:36:43Z", + "guid": "kuleba-nato-ukraine-council-hold-183643825.html", + "isoDate": "2024-01-03T18:36:43.000Z" + }, + { + "title": "Top Israeli court postpones effect for law on incapacity of leader", + "link": "https://news.yahoo.com/top-israeli-court-postpones-effect-182834219.html", + "pubDate": "2024-01-03T18:28:34Z", + "guid": "top-israeli-court-postpones-effect-182834219.html", + "isoDate": "2024-01-03T18:28:34.000Z" + }, + { + "title": "Russia is aggressor, Ukraine has right to defend itself \u2013 France on explosions in Russia's Belgorod", + "link": "https://news.yahoo.com/russia-aggressor-ukraine-defend-itself-181852811.html", + "pubDate": "2024-01-03T18:18:52Z", + "guid": "russia-aggressor-ukraine-defend-itself-181852811.html", + "isoDate": "2024-01-03T18:18:52.000Z" + }, + { + "title": "Iran's supreme leader vows harsh response to deadly attacks", + "link": "https://news.yahoo.com/irans-supreme-leader-vows-harsh-175838488.html", + "pubDate": "2024-01-03T17:58:38Z", + "guid": "irans-supreme-leader-vows-harsh-175838488.html", + "isoDate": "2024-01-03T17:58:38.000Z" + }, + { + "title": "Russia claims four injured from self-inflicted missile strike on village of Petropavlovka", + "link": "https://news.yahoo.com/russia-claims-four-injured-self-174300910.html", + "pubDate": "2024-01-03T17:43:00Z", + "guid": "russia-claims-four-injured-self-174300910.html", + "isoDate": "2024-01-03T17:43:00.000Z" + }, + { + "title": "Former Interior Ministry chief of Yekaterinburg killed in Ukraine", + "link": "https://news.yahoo.com/former-interior-ministry-chief-yekaterinburg-174037111.html", + "pubDate": "2024-01-03T17:40:37Z", + "guid": "former-interior-ministry-chief-yekaterinburg-174037111.html", + "isoDate": "2024-01-03T17:40:37.000Z" + }, + { + "title": "Berlin decries Russian strikes on Ukraine, but Scholz still opposes supplying Taurus missiles to Kyiv", + "link": "https://news.yahoo.com/berlin-decries-russian-strikes-ukraine-172900476.html", + "pubDate": "2024-01-03T17:29:00Z", + "guid": "berlin-decries-russian-strikes-ukraine-172900476.html", + "isoDate": "2024-01-03T17:29:00.000Z" + }, + { + "title": "Russia, Ukraine swap hundreds of prisoners in UAE-brokered deal", + "link": "https://news.yahoo.com/russia-ukraine-swap-hundreds-prisoners-172141880.html", + "pubDate": "2024-01-03T17:21:41Z", + "guid": "russia-ukraine-swap-hundreds-prisoners-172141880.html", + "isoDate": "2024-01-03T17:21:41.000Z" + }, + { + "title": "Complex, lengthy, supported by UAE \u2013 Defence Intelligence chief on \"biggest PoW swap\"", + "link": "https://news.yahoo.com/complex-lengthy-supported-uae-defence-171626878.html", + "pubDate": "2024-01-03T17:16:26Z", + "guid": "complex-lengthy-supported-uae-defence-171626878.html", + "isoDate": "2024-01-03T17:16:26.000Z" + }, + { + "title": "Russians try to improve tactical positions on Avdiivka front \u2013 General Staff", + "link": "https://news.yahoo.com/russians-tries-improve-tactical-positions-171557372.html", + "pubDate": "2024-01-03T17:15:57Z", + "guid": "russians-tries-improve-tactical-positions-171557372.html", + "isoDate": "2024-01-03T17:15:57.000Z" + }, + { + "title": "Ukraine eliminates corrupt Russian police general Trifonov", + "link": "https://news.yahoo.com/ukraine-eliminates-corrupt-russian-police-171400601.html", + "pubDate": "2024-01-03T17:14:00Z", + "guid": "ukraine-eliminates-corrupt-russian-police-171400601.html", + "isoDate": "2024-01-03T17:14:00.000Z" + }, + { + "title": "Iranian president condemns terror attack in strongest possible terms", + "link": "https://news.yahoo.com/iranian-president-condemns-terror-attack-171328700.html", + "pubDate": "2024-01-03T17:13:28Z", + "guid": "iranian-president-condemns-terror-attack-171328700.html", + "isoDate": "2024-01-03T17:13:28.000Z" + }, + { + "title": "EU foreign policy chief fears 'open war' and escalation following death of Hamas leader: 'Cannot be ruled out'", + "link": "https://news.yahoo.com/eu-foreign-policy-chief-fears-165959977.html", + "pubDate": "2024-01-03T16:59:59Z", + "guid": "eu-foreign-policy-chief-fears-165959977.html", + "isoDate": "2024-01-03T16:59:59.000Z" + }, + { + "title": "230 Ukrainian POWs return home from Russian captivity in largest prisoner exchange in full-scale war", + "link": "https://news.yahoo.com/230-ukrainian-pows-return-home-163613897.html", + "pubDate": "2024-01-03T16:36:13Z", + "guid": "230-ukrainian-pows-return-home-163613897.html", + "isoDate": "2024-01-03T16:36:13.000Z" + }, + { + "title": "NATO-Ukraine Council to hold extraordinary meeting in response to Russia's large-scale attacks", + "link": "https://news.yahoo.com/nato-ukraine-council-hold-extraordinary-161507804.html", + "pubDate": "2024-01-03T16:15:07Z", + "guid": "nato-ukraine-council-hold-extraordinary-161507804.html", + "isoDate": "2024-01-03T16:15:07.000Z" + }, + { + "title": "NATO members jointly buy up to 1,000 Patriot missiles for air defence", + "link": "https://news.yahoo.com/nato-members-jointly-buy-1-161333878.html", + "pubDate": "2024-01-03T16:13:33Z", + "guid": "nato-members-jointly-buy-1-161333878.html", + "isoDate": "2024-01-03T16:13:33.000Z" + }, + { + "title": "Record-breaking PoW swap: Ukraine brings back 230 soldiers and civilians from Russian captivity \u2013 photo, video", + "link": "https://news.yahoo.com/record-large-pow-swap-ukraine-160840578.html", + "pubDate": "2024-01-03T16:08:40Z", + "guid": "record-large-pow-swap-ukraine-160840578.html", + "isoDate": "2024-01-03T16:08:40.000Z" + }, + { + "title": "Hiroshi Tanahashi \u2018Honored\u2019 To Be President & Active Wrestler In NJPW", + "link": "https://www.yahoo.com/entertainment/hiroshi-tanahashi-honored-president-active-160620694.html", + "pubDate": "2024-01-03T16:06:20Z", + "guid": "hiroshi-tanahashi-honored-president-active-160620694.html", + "isoDate": "2024-01-03T16:06:20.000Z" + }, + { + "title": "Israeli parents grieve in flat full of memories and bullet holes", + "link": "https://news.yahoo.com/israeli-parents-grieve-flat-full-152219430.html", + "pubDate": "2024-01-03T15:22:19Z", + "guid": "israeli-parents-grieve-flat-full-152219430.html", + "isoDate": "2024-01-03T15:22:19.000Z" + }, + { + "title": "How to survive if you find yourself buried under rubble following a missile strike \u2013 helpful advice", + "link": "https://news.yahoo.com/survive-yourself-buried-under-rubble-103100734.html", + "pubDate": "2024-01-04T10:31:00Z", + "guid": "survive-yourself-buried-under-rubble-103100734.html", + "isoDate": "2024-01-04T10:31:00.000Z" + }, + { + "title": "Ukraine's Air Force says it is impossible to calculate date of Russia's next large-scale attack", + "link": "https://news.yahoo.com/ukraines-air-force-says-impossible-093627391.html", + "pubDate": "2024-01-04T09:36:27Z", + "guid": "ukraines-air-force-says-impossible-093627391.html", + "isoDate": "2024-01-04T09:36:27.000Z" + }, + { + "title": "Media: Ukraine's military intelligence torches Russian Su-34 jet at airbase", + "link": "https://news.yahoo.com/media-ukraines-military-intelligence-torches-093433124.html", + "pubDate": "2024-01-04T09:34:33Z", + "guid": "media-ukraines-military-intelligence-torches-093433124.html", + "isoDate": "2024-01-04T09:34:33.000Z" + }, + { + "title": "Russian hackers infiltrated Kyivstar's system at least in May 2023 \u2013 Security Service of Ukraine", + "link": "https://news.yahoo.com/russian-hackers-infiltrated-kyivstars-system-090110316.html", + "pubDate": "2024-01-04T09:01:10Z", + "guid": "russian-hackers-infiltrated-kyivstars-system-090110316.html", + "isoDate": "2024-01-04T09:01:10.000Z" + }, + { + "title": "SBU cybersecurity chief: Hackers had access to Kyivstar months before December attack", + "link": "https://news.yahoo.com/sbu-cybersecurity-chief-hackers-had-090057630.html", + "pubDate": "2024-01-04T09:00:57Z", + "guid": "sbu-cybersecurity-chief-hackers-had-090057630.html", + "isoDate": "2024-01-04T09:00:57.000Z" + }, + { + "title": "More than 220 Russians surrendered via I Want to Live hotline \u2212 FT", + "link": "https://news.yahoo.com/more-220-russians-surrendered-via-080529123.html", + "pubDate": "2024-01-04T08:05:29Z", + "guid": "more-220-russians-surrendered-via-080529123.html", + "isoDate": "2024-01-04T08:05:29.000Z" + }, + { + "title": "Puyallup family raising funds to help loved ones who lost home in Japan's New Year's Day quake", + "link": "https://news.yahoo.com/puyallup-family-raising-funds-help-062305634.html", + "pubDate": "2024-01-04T06:23:05Z", + "guid": "puyallup-family-raising-funds-help-062305634.html", + "isoDate": "2024-01-04T06:23:05.000Z" + }, + { + "title": "Nexon fined nearly $9M for falsifying loot box drop rates", + "link": "https://www.yahoo.com/tech/nexon-fined-nearly-9m-falsifying-222639214.html", + "pubDate": "2024-01-03T22:26:39Z", + "guid": "nexon-fined-nearly-9m-falsifying-222639214.html", + "isoDate": "2024-01-03T22:26:39.000Z" + }, + { + "title": "Hennessy opens its first flagship store in Asia", + "link": "https://news.yahoo.com/hennessy-opens-first-flagship-store-170206914.html", + "pubDate": "2024-01-04T17:02:06Z", + "guid": "hennessy-opens-first-flagship-store-170206914.html", + "isoDate": "2024-01-04T17:02:06.000Z" + }, + { + "title": "Slain Hamas leader was using movement's old office for a meeting", + "link": "https://news.yahoo.com/slain-hamas-leader-using-movements-164337205.html", + "pubDate": "2024-01-04T16:43:37Z", + "guid": "slain-hamas-leader-using-movements-164337205.html", + "isoDate": "2024-01-04T16:43:37.000Z" + }, + { + "title": "Russia appears poised to purchase ballistic missiles from Iran, official says", + "link": "https://news.yahoo.com/russia-appears-poised-purchase-ballistic-155901869.html", + "pubDate": "2024-01-04T15:59:01Z", + "guid": "russia-appears-poised-purchase-ballistic-155901869.html", + "isoDate": "2024-01-04T15:59:01.000Z" + }, + { + "title": "The key question about fiery crash at Tokyo airport: Did one or both planes have OK to use runway?", + "link": "https://news.yahoo.com/key-fiery-crash-tokyo-airport-152834519.html", + "pubDate": "2024-01-04T15:28:34Z", + "guid": "key-fiery-crash-tokyo-airport-152834519.html", + "isoDate": "2024-01-04T15:28:34.000Z" + }, + { + "title": "Parliament begins review of new conscription law with top military leadership in attendance", + "link": "https://news.yahoo.com/parliament-begins-review-conscription-law-152500343.html", + "pubDate": "2024-01-04T15:25:00Z", + "guid": "parliament-begins-review-conscription-law-152500343.html", + "isoDate": "2024-01-04T15:25:00.000Z" + }, + { + "title": "Israel says it killed several Hamas members in Gaza tunnel complex", + "link": "https://news.yahoo.com/israel-says-killed-several-hamas-145835052.html", + "pubDate": "2024-01-04T14:58:35Z", + "guid": "israel-says-killed-several-hamas-145835052.html", + "isoDate": "2024-01-04T14:58:35.000Z" + }, + { + "title": "Authorities: Russian attacks on Kherson Oblast kill 1, injure 3", + "link": "https://news.yahoo.com/authorities-russian-attacks-kherson-oblast-143557296.html", + "pubDate": "2024-01-04T14:35:57Z", + "guid": "authorities-russian-attacks-kherson-oblast-143557296.html", + "isoDate": "2024-01-04T14:35:57.000Z" + }, + { + "title": "Ukraine\u2019s security service dismantles scheme aiding draft dodgers to flee to Transnistria", + "link": "https://news.yahoo.com/ukraine-security-dismantles-scheme-aiding-143500800.html", + "pubDate": "2024-01-04T14:35:00Z", + "guid": "ukraine-security-dismantles-scheme-aiding-143500800.html", + "isoDate": "2024-01-04T14:35:00.000Z" + }, + { + "title": "Ukraine designates Lithuanian food company as 'international sponsor of war'", + "link": "https://news.yahoo.com/ukraine-designates-lithuanian-food-company-142756989.html", + "pubDate": "2024-01-04T14:27:56Z", + "guid": "ukraine-designates-lithuanian-food-company-142756989.html", + "isoDate": "2024-01-04T14:27:56.000Z" + }, + { + "title": "Italian Premier Meloni says curbing migrant arrivals from Africa is about investment, not charity", + "link": "https://news.yahoo.com/italian-premier-meloni-says-curbing-141623313.html", + "pubDate": "2024-01-04T14:16:23Z", + "guid": "italian-premier-meloni-says-curbing-141623313.html", + "isoDate": "2024-01-04T14:16:23.000Z" + }, + { + "title": "Russia plans to equip cruise missiles with cluster munitions \u2013 National Resistance Centre", + "link": "https://news.yahoo.com/russia-plans-equip-cruise-missiles-135810372.html", + "pubDate": "2024-01-04T13:58:10Z", + "guid": "russia-plans-equip-cruise-missiles-135810372.html", + "isoDate": "2024-01-04T13:58:10.000Z" + }, + { + "title": "Tearful reunions as Russia and Ukraine exchange hundreds of prisoners", + "link": "https://news.yahoo.com/tearful-reunions-russia-ukraine-exchange-135248292.html", + "pubDate": "2024-01-04T13:52:48Z", + "guid": "tearful-reunions-russia-ukraine-exchange-135248292.html", + "isoDate": "2024-01-04T13:52:48.000Z" + }, + { + "title": "Mobile air defence has enough ammo for \"a few more powerful attacks\" \u2013 Joint Forces \u0421ommander", + "link": "https://news.yahoo.com/mobile-air-defence-enough-ammo-134012651.html", + "pubDate": "2024-01-04T13:40:12Z", + "guid": "mobile-air-defence-enough-ammo-134012651.html", + "isoDate": "2024-01-04T13:40:12.000Z" + }, + { + "title": "Understanding the Eve of Epiphany: Do's and Don'ts for the holy celebration", + "link": "https://news.yahoo.com/understanding-eve-epiphany-dos-donts-132500323.html", + "pubDate": "2024-01-04T13:25:00Z", + "guid": "understanding-eve-epiphany-dos-donts-132500323.html", + "isoDate": "2024-01-04T13:25:00.000Z" + }, + { + "title": "Foreign Ministry condemns event on Russia's 'rebirth' of Mariupol to be held in Italy", + "link": "https://news.yahoo.com/foreign-ministry-condemns-event-russias-131802080.html", + "pubDate": "2024-01-04T13:18:02Z", + "guid": "foreign-ministry-condemns-event-russias-131802080.html", + "isoDate": "2024-01-04T13:18:02.000Z" + }, + { + "title": "Ukrainian intel likely behind destruction of Russian Su-34 fighter jet at Chelyabinsk airbase", + "link": "https://news.yahoo.com/ukrainian-intel-likely-behind-destruction-131500383.html", + "pubDate": "2024-01-04T13:15:00Z", + "guid": "ukrainian-intel-likely-behind-destruction-131500383.html", + "isoDate": "2024-01-04T13:15:00.000Z" + }, + { + "title": "Romania will help restore Ukraine's damaged digital infrastructure", + "link": "https://news.yahoo.com/romania-help-restore-ukraines-damaged-130826207.html", + "pubDate": "2024-01-04T13:08:26Z", + "guid": "romania-help-restore-ukraines-damaged-130826207.html", + "isoDate": "2024-01-04T13:08:26.000Z" + }, + { + "title": "Feeding the aggressor: Corruption Prevention Agency adds food manufacturer Vici to list of international sponsors of war", + "link": "https://news.yahoo.com/feeding-aggressor-corruption-prevention-agency-125448379.html", + "pubDate": "2024-01-04T12:54:48Z", + "guid": "feeding-aggressor-corruption-prevention-agency-125448379.html", + "isoDate": "2024-01-04T12:54:48.000Z" + }, + { + "title": "Ukraine quickly fixed a huge mistake in how it used tanks. Russia then repeated the error on a grand scale.", + "link": "https://news.yahoo.com/ukraine-quickly-fixed-huge-mistake-125218134.html", + "pubDate": "2024-01-04T12:52:18Z", + "guid": "ukraine-quickly-fixed-huge-mistake-125218134.html", + "isoDate": "2024-01-04T12:52:18.000Z" + }, + { + "title": "Ukraine brings back 12-year-old boy from Kherson Oblast whose mother died", + "link": "https://news.yahoo.com/ukraine-brings-back-12-old-124526312.html", + "pubDate": "2024-01-04T12:45:26Z", + "guid": "ukraine-brings-back-12-old-124526312.html", + "isoDate": "2024-01-04T12:45:26.000Z" + }, + { + "title": "Vatican moves to calm bishops over same-sex blessings approval", + "link": "https://news.yahoo.com/vatican-moves-calm-bishops-over-120406949.html", + "pubDate": "2024-01-04T12:04:06Z", + "guid": "vatican-moves-calm-bishops-over-120406949.html", + "isoDate": "2024-01-04T12:04:06.000Z" + }, + { + "title": "NATO-Ukraine Council to discuss air defences after Russian assaults", + "link": "https://news.yahoo.com/nato-ukraine-council-discuss-air-115830633.html", + "pubDate": "2024-01-04T11:58:30Z", + "guid": "nato-ukraine-council-discuss-air-115830633.html", + "isoDate": "2024-01-04T11:58:30.000Z" + }, + { + "title": "Putin signs decree on giving Russian citizenship to foreign fighters", + "link": "https://news.yahoo.com/putin-signs-decree-giving-russian-115246075.html", + "pubDate": "2024-01-04T11:52:46Z", + "guid": "putin-signs-decree-giving-russian-115246075.html", + "isoDate": "2024-01-04T11:52:46.000Z" + }, + { + "title": "Rice Water for Hair: A Hair Regrowth Treatment?", + "link": "https://www.yahoo.com/lifestyle/rice-water-hair-hair-regrowth-115112933.html", + "pubDate": "2024-01-04T11:51:12Z", + "guid": "rice-water-hair-hair-regrowth-115112933.html", + "isoDate": "2024-01-04T11:51:12.000Z" + }, + { + "title": "Ukraine's Foreign Ministry says Italian exhibition about \"flourishing\" Mariupol is a provocation", + "link": "https://news.yahoo.com/ukraines-foreign-ministry-says-italian-114759871.html", + "pubDate": "2024-01-04T11:47:59Z", + "guid": "ukraines-foreign-ministry-says-italian-114759871.html", + "isoDate": "2024-01-04T11:47:59.000Z" + }, + { + "title": "Ukraine's Defence Intelligence posts video of Russian Su-34 burning \u2013 video", + "link": "https://news.yahoo.com/ukraines-defence-intelligence-posts-video-112901524.html", + "pubDate": "2024-01-04T11:29:01Z", + "guid": "ukraines-defence-intelligence-posts-video-112901524.html", + "isoDate": "2024-01-04T11:29:01.000Z" + }, + { + "title": "Gaza's child amputees face further risks without expert care", + "link": "https://news.yahoo.com/gazas-child-amputees-face-further-112252881.html", + "pubDate": "2024-01-04T11:22:52Z", + "guid": "gazas-child-amputees-face-further-112252881.html", + "isoDate": "2024-01-04T11:22:52.000Z" + }, + { + "title": "82 Belarusians have received prison sentences for anti-war stance since Russia\u2019s invasion of Ukraine", + "link": "https://news.yahoo.com/82-belarusians-received-prison-sentences-110153662.html", + "pubDate": "2024-01-04T11:01:53Z", + "guid": "82-belarusians-received-prison-sentences-110153662.html", + "isoDate": "2024-01-04T11:01:53.000Z" + }, + { + "title": "Over 220 Russian soldiers surrender through 'I want to live' hotline", + "link": "https://news.yahoo.com/over-220-russian-soldiers-surrender-110146733.html", + "pubDate": "2024-01-04T11:01:46Z", + "guid": "over-220-russian-soldiers-surrender-110146733.html", + "isoDate": "2024-01-04T11:01:46.000Z" + }, + { + "title": "Zaluzhnyi, Umerov start talks with parliamentary committee on new mobilization law", + "link": "https://news.yahoo.com/zaluzhnyi-umerov-start-talks-parliamentary-105726150.html", + "pubDate": "2024-01-04T10:57:26Z", + "guid": "zaluzhnyi-umerov-start-talks-parliamentary-105726150.html", + "isoDate": "2024-01-04T10:57:26.000Z" + }, + { + "title": "Russian hackers had access to Kyivstar network at least since May 2023, says SBU", + "link": "https://news.yahoo.com/russian-hackers-had-access-kyivstar-104500915.html", + "pubDate": "2024-01-04T10:45:00Z", + "guid": "russian-hackers-had-access-kyivstar-104500915.html", + "isoDate": "2024-01-04T10:45:00.000Z" + }, + { + "title": "NATO announces date of emergency meeting to discuss large-scale Russian attacks on Ukraine", + "link": "https://news.yahoo.com/nato-announces-date-emergency-meeting-103900253.html", + "pubDate": "2024-01-04T10:39:00Z", + "guid": "nato-announces-date-emergency-meeting-103900253.html", + "isoDate": "2024-01-04T10:39:00.000Z" + }, + { + "title": "Putin to grant citizenship to foreigners who sign 1-year contract with Russian army", + "link": "https://news.yahoo.com/putin-grant-citizenship-foreigners-sign-102539304.html", + "pubDate": "2024-01-04T10:25:39Z", + "guid": "putin-grant-citizenship-foreigners-sign-102539304.html", + "isoDate": "2024-01-04T10:25:39.000Z" + }, + { + "title": "Scenes of loss play out across Japan's western coastline after quake kills 84, dozens still missing", + "link": "https://news.yahoo.com/scenes-loss-play-across-japans-070805418.html", + "pubDate": "2024-01-04T07:08:05Z", + "guid": "scenes-loss-play-across-japans-070805418.html", + "isoDate": "2024-01-04T07:08:05.000Z" + }, + { + "title": "France's Macron set to attend Sch\u00e4uble's memorial service", + "link": "https://news.yahoo.com/frances-macron-set-attend-sch-162836044.html", + "pubDate": "2024-01-04T16:28:36Z", + "guid": "frances-macron-set-attend-sch-162836044.html", + "isoDate": "2024-01-04T16:28:36.000Z" + }, + { + "title": "National Resistance Center: Russian occupation authorities to force Ukrainian teenagers into military registration", + "link": "https://news.yahoo.com/national-resistance-center-russian-occupation-153841663.html", + "pubDate": "2024-01-04T15:38:41Z", + "guid": "national-resistance-center-russian-occupation-153841663.html", + "isoDate": "2024-01-04T15:38:41.000Z" + }, + { + "title": "What next for Oscar Pistorius?", + "link": "https://news.yahoo.com/oscar-pistorius-fallen-hero-future-002115904.html", + "pubDate": "2024-01-05T13:14:30Z", + "guid": "oscar-pistorius-fallen-hero-future-002115904.html", + "isoDate": "2024-01-05T13:14:30.000Z" + }, + { + "title": "India sends navy after pirates attack ship off Somali coast", + "link": "https://news.yahoo.com/india-sends-navy-pirates-attack-115349551.html", + "pubDate": "2024-01-05T12:47:54Z", + "guid": "india-sends-navy-pirates-attack-115349551.html", + "isoDate": "2024-01-05T12:47:54.000Z" + }, + { + "title": "Plan for internal Israeli military probe of Oct. 7 attack angers some ministers", + "link": "https://news.yahoo.com/plan-internal-israeli-military-probe-122934301.html", + "pubDate": "2024-01-05T12:29:34Z", + "guid": "plan-internal-israeli-military-probe-122934301.html", + "isoDate": "2024-01-05T12:29:34.000Z" + }, + { + "title": "Russia loses 790 soldiers, 9 tanks in a single day", + "link": "https://news.yahoo.com/russia-loses-790-soldiers-9-121400672.html", + "pubDate": "2024-01-05T12:14:00Z", + "guid": "russia-loses-790-soldiers-9-121400672.html", + "isoDate": "2024-01-05T12:14:00.000Z" + }, + { + "title": "Sri Lanka declares moratorium on research ships for a year amid Indian concerns over Chinese vessels", + "link": "https://news.yahoo.com/sri-lanka-declares-moratorium-research-120336958.html", + "pubDate": "2024-01-05T12:03:36Z", + "guid": "sri-lanka-declares-moratorium-research-120336958.html", + "isoDate": "2024-01-05T12:03:36.000Z" + }, + { + "title": "Belarus Weekly: Lukashenko's Belarus abducts more Ukrainian children", + "link": "https://news.yahoo.com/belarus-weekly-lukashenkos-belarus-abducts-113827376.html", + "pubDate": "2024-01-05T11:38:27Z", + "guid": "belarus-weekly-lukashenkos-belarus-abducts-113827376.html", + "isoDate": "2024-01-05T11:38:27.000Z" + }, + { + "title": "Climate crisis is making sugar more expensive around the world, say experts", + "link": "https://news.yahoo.com/climate-crisis-making-sugar-more-110032903.html", + "pubDate": "2024-01-05T11:00:32Z", + "guid": "climate-crisis-making-sugar-more-110032903.html", + "isoDate": "2024-01-05T11:00:32.000Z" + }, + { + "title": "Russia approves 2 candidates for ballot against Putin in March election", + "link": "https://news.yahoo.com/russia-approves-2-candidates-ballot-105852093.html", + "pubDate": "2024-01-05T10:58:52Z", + "guid": "russia-approves-2-candidates-ballot-105852093.html", + "isoDate": "2024-01-05T10:58:52.000Z" + }, + { + "title": "Economy Minister: Ukraine's exports to grow by 9% in 2024", + "link": "https://news.yahoo.com/economy-minister-ukraines-exports-grow-104633035.html", + "pubDate": "2024-01-05T10:46:33Z", + "guid": "economy-minister-ukraines-exports-grow-104633035.html", + "isoDate": "2024-01-05T10:46:33.000Z" + }, + { + "title": "Not just command post: Russian defence system damaged in Crimea", + "link": "https://news.yahoo.com/not-just-command-post-russian-102003181.html", + "pubDate": "2024-01-05T10:20:03Z", + "guid": "not-just-command-post-russian-102003181.html", + "isoDate": "2024-01-05T10:20:03.000Z" + }, + { + "title": "Official: 2,000 trucks waiting in line at Polish border to enter Ukraine", + "link": "https://news.yahoo.com/official-2-000-trucks-waiting-101054573.html", + "pubDate": "2024-01-05T10:10:54Z", + "guid": "official-2-000-trucks-waiting-101054573.html", + "isoDate": "2024-01-05T10:10:54.000Z" + }, + { + "title": "UK intelligence analyses changes at front over past week", + "link": "https://news.yahoo.com/uk-intelligence-analyses-changes-front-100149120.html", + "pubDate": "2024-01-05T10:01:49Z", + "guid": "uk-intelligence-analyses-changes-front-100149120.html", + "isoDate": "2024-01-05T10:01:49.000Z" + }, + { + "title": "UN emergency relief agency says unable to deliver vital Gaza aid", + "link": "https://news.yahoo.com/un-emergency-relief-agency-says-095923227.html", + "pubDate": "2024-01-05T09:59:23Z", + "guid": "un-emergency-relief-agency-says-095923227.html", + "isoDate": "2024-01-05T09:59:23.000Z" + }, + { + "title": "Oscar Pistorius at home after leaving South African jail on parole", + "link": "https://news.yahoo.com/oscar-pistorius-home-leaving-south-095827129.html", + "pubDate": "2024-01-05T09:58:27Z", + "guid": "oscar-pistorius-home-leaving-south-095827129.html", + "isoDate": "2024-01-05T09:58:27.000Z" + }, + { + "title": "2,000 lorries queuing at Polish-Ukrainian border", + "link": "https://news.yahoo.com/2-000-lorries-queuing-polish-095250993.html", + "pubDate": "2024-01-05T09:52:50Z", + "guid": "2-000-lorries-queuing-polish-095250993.html", + "isoDate": "2024-01-05T09:52:50.000Z" + }, + { + "title": "Africa's week in pictures: 29 December 2023-4 January 2024", + "link": "https://news.yahoo.com/africas-week-pictures-29-december-005824222.html", + "pubDate": "2024-01-05T09:47:16Z", + "guid": "africas-week-pictures-29-december-005824222.html", + "isoDate": "2024-01-05T09:47:16.000Z" + }, + { + "title": "Russia under attack \u2014 Multiple drones spotted in Krasnodar, Belgorod and temporarily occupied Crimea", + "link": "https://news.yahoo.com/russia-under-attack-multiple-drones-093500403.html", + "pubDate": "2024-01-05T09:35:00Z", + "guid": "russia-under-attack-multiple-drones-093500403.html", + "isoDate": "2024-01-05T09:35:00.000Z" + }, + { + "title": "Reports: North Korea fires artillery into sea near maritime border", + "link": "https://news.yahoo.com/reports-north-korea-fires-artillery-091359755.html", + "pubDate": "2024-01-05T09:13:59Z", + "guid": "reports-north-korea-fires-artillery-091359755.html", + "isoDate": "2024-01-05T09:13:59.000Z" + }, + { + "title": "Nepal bars citizens from going to Russia or Ukraine for work, saying they are recruited as fighters", + "link": "https://news.yahoo.com/nepal-bars-citizens-going-russia-091000744.html", + "pubDate": "2024-01-05T09:10:00Z", + "guid": "nepal-bars-citizens-going-russia-091000744.html", + "isoDate": "2024-01-05T09:10:00.000Z" + }, + { + "title": "Ousmane Sonko: Senegal court upholds opposition leader's libel conviction", + "link": "https://news.yahoo.com/ousmane-sonko-senegal-court-upholds-085045267.html", + "pubDate": "2024-01-05T08:50:45Z", + "guid": "ousmane-sonko-senegal-court-upholds-085045267.html", + "isoDate": "2024-01-05T08:50:45.000Z" + }, + { + "title": "Ukraine's Security Service arrests agricultural businessman suspected of collaborating with Russians in Kherson Oblast", + "link": "https://news.yahoo.com/ukraines-security-arrests-agricultural-businessman-084327236.html", + "pubDate": "2024-01-05T08:43:27Z", + "guid": "ukraines-security-arrests-agricultural-businessman-084327236.html", + "isoDate": "2024-01-05T08:43:27.000Z" + }, + { + "title": "Japanese air safety experts search for voice data from plane debris after runway collision", + "link": "https://news.yahoo.com/japanese-air-safety-experts-search-083738717.html", + "pubDate": "2024-01-05T08:37:38Z", + "guid": "japanese-air-safety-experts-search-083738717.html", + "isoDate": "2024-01-05T08:37:38.000Z" + }, + { + "title": "Russians launch Shahed attack drones from south for second time in one night", + "link": "https://news.yahoo.com/russians-launch-shahed-attack-drones-042905852.html", + "pubDate": "2024-01-05T08:35:00Z", + "guid": "russians-launch-shahed-attack-drones-042905852.html", + "isoDate": "2024-01-05T08:35:00.000Z" + }, + { + "title": "India's foreign minister signs a deal to increase imports of electricity from Nepal", + "link": "https://news.yahoo.com/indias-foreign-minister-signs-deal-080601890.html", + "pubDate": "2024-01-05T08:06:01Z", + "guid": "indias-foreign-minister-signs-deal-080601890.html", + "isoDate": "2024-01-05T08:06:01.000Z" + }, + { + "title": "Tesla India Plans Hinge On Fast-Charging Infrastructure For Entry-Level Vehicle With Smaller Battery", + "link": "https://finance.yahoo.com/news/tesla-india-plans-hinge-fast-075612891.html", + "pubDate": "2024-01-05T07:56:12Z", + "guid": "tesla-india-plans-hinge-fast-075612891.html", + "isoDate": "2024-01-05T07:56:12.000Z" + }, + { + "title": "Russia can\u2019t recruit enough police in Ukraine\u2019s temporarily occupied territories", + "link": "https://news.yahoo.com/russia-t-recruit-enough-police-071500677.html", + "pubDate": "2024-01-05T07:15:00Z", + "guid": "russia-t-recruit-enough-police-071500677.html", + "isoDate": "2024-01-05T07:15:00.000Z" + }, + { + "title": "Ukrainian economy shows certain resilience in 2023, UN report states", + "link": "https://news.yahoo.com/ukrainian-economy-shows-certain-resilience-070653092.html", + "pubDate": "2024-01-05T07:06:53Z", + "guid": "ukrainian-economy-shows-certain-resilience-070653092.html", + "isoDate": "2024-01-05T07:06:53.000Z" + }, + { + "title": "Italy's Meloni assures Zelensky of G7 support for Ukraine", + "link": "https://news.yahoo.com/italys-meloni-assures-zelensky-g7-065830194.html", + "pubDate": "2024-01-05T06:58:30Z", + "guid": "italys-meloni-assures-zelensky-g7-065830194.html", + "isoDate": "2024-01-05T06:58:30.000Z" + }, + { + "title": "Russia's launching North Korean missiles in Ukraine: White House", + "link": "https://news.yahoo.com/russias-launching-north-korean-missiles-060442763.html", + "pubDate": "2024-01-05T06:04:42Z", + "guid": "russias-launching-north-korean-missiles-060442763.html", + "isoDate": "2024-01-05T06:04:42.000Z" + }, + { + "title": "Ukrainian forces kill 790 more Russian soldiers and destroy 30 artillery systems and 9 tanks", + "link": "https://news.yahoo.com/ukrainian-forces-kill-790-more-055604161.html", + "pubDate": "2024-01-05T05:56:04Z", + "guid": "ukrainian-forces-kill-790-more-055604161.html", + "isoDate": "2024-01-05T05:56:04.000Z" + }, + { + "title": "Ukrainian troops expand foothold in Kherson Oblast \u2013 General Staff report", + "link": "https://news.yahoo.com/ukrainian-troops-expand-foothold-kherson-045757191.html", + "pubDate": "2024-01-05T04:57:57Z", + "guid": "ukrainian-troops-expand-foothold-kherson-045757191.html", + "isoDate": "2024-01-05T04:57:57.000Z" + }, + { + "title": "Clip of 2011 Japan tsunami falsely shared as New Year's quake footage", + "link": "https://news.yahoo.com/clip-2011-japan-tsunami-falsely-044721714.html", + "pubDate": "2024-01-05T04:47:21Z", + "guid": "clip-2011-japan-tsunami-falsely-044721714.html", + "isoDate": "2024-01-05T04:47:21.000Z" + }, + { + "title": "ISW: Russia begins negotiations with Algeria, Saudi Arabia, UAE to open Russian cultural centers", + "link": "https://news.yahoo.com/isw-russia-begins-negotiations-algeria-042949151.html", + "pubDate": "2024-01-05T04:29:49Z", + "guid": "isw-russia-begins-negotiations-algeria-042949151.html", + "isoDate": "2024-01-05T04:29:49.000Z" + }, + { + "title": "Russians put teenagers from Ukrainian occupied territories on military register", + "link": "https://news.yahoo.com/russians-put-teenagers-ukrainian-occupied-025730994.html", + "pubDate": "2024-01-05T02:57:30Z", + "guid": "russians-put-teenagers-ukrainian-occupied-025730994.html", + "isoDate": "2024-01-05T02:57:30.000Z" + }, + { + "title": "Russia looks for ballistic missiles abroad as they are more effective in bypassing air defence systems \u2013 ISW", + "link": "https://news.yahoo.com/russia-wants-ballistic-missiles-abroad-014625997.html", + "pubDate": "2024-01-05T01:46:25Z", + "guid": "russia-wants-ballistic-missiles-abroad-014625997.html", + "isoDate": "2024-01-05T01:46:25.000Z" + }, + { + "title": "Israel says it killed several Hamas members in Gaza tunnel complex", + "link": "https://news.yahoo.com/israel-says-killed-several-hamas-205854377.html", + "pubDate": "2024-01-04T20:58:54Z", + "guid": "israel-says-killed-several-hamas-205854377.html", + "isoDate": "2024-01-04T20:58:54.000Z" + }, + { + "title": "Saleh al-Arouri: Thousands attend Hamas deputy leader's funeral in Beirut", + "link": "https://news.yahoo.com/saleh-al-arouri-thousands-attend-173622776.html", + "pubDate": "2024-01-04T20:39:05Z", + "guid": "saleh-al-arouri-thousands-attend-173622776.html", + "isoDate": "2024-01-04T20:39:05.000Z" + }, + { + "title": "Ukraine constantly needs supplies of anti-aircraft guided missiles that partners send on urgent basis", + "link": "https://news.yahoo.com/ukraine-constantly-needs-supplies-anti-203020503.html", + "pubDate": "2024-01-04T20:30:20Z", + "guid": "ukraine-constantly-needs-supplies-anti-203020503.html", + "isoDate": "2024-01-04T20:30:20.000Z" + }, + { + "title": "Germany sends Skynex air defense system, other military aid to Ukraine", + "link": "https://news.yahoo.com/germany-sends-skynex-air-defense-194934549.html", + "pubDate": "2024-01-04T19:49:34Z", + "guid": "germany-sends-skynex-air-defense-194934549.html", + "isoDate": "2024-01-04T19:49:34.000Z" + }, + { + "title": "Ukrainian hackers attack Russian President's Administration provider for the second time", + "link": "https://news.yahoo.com/ukrainian-hackers-attack-russian-presidents-191200580.html", + "pubDate": "2024-01-04T19:12:00Z", + "guid": "ukrainian-hackers-attack-russian-presidents-191200580.html", + "isoDate": "2024-01-04T19:12:00.000Z" + }, + { + "title": "India launches X-ray satellite to study black holes, supernovas and more (video)", + "link": "https://news.yahoo.com/india-launches-x-ray-satellite-190006989.html", + "pubDate": "2024-01-04T19:00:06Z", + "guid": "india-launches-x-ray-satellite-190006989.html", + "isoDate": "2024-01-04T19:00:06.000Z" + }, + { + "title": "Japan Coast Guard plane not cleared for takeoff before collision: transcripts", + "link": "https://news.yahoo.com/japan-coast-guard-plane-not-184547900.html", + "pubDate": "2024-01-04T18:45:47Z", + "guid": "japan-coast-guard-plane-not-184547900.html", + "isoDate": "2024-01-04T18:45:47.000Z" + }, + { + "title": "Germany supplies Ukraine with missiles for IRIS-T SLM air defence systems, Marder infantry fighting vehicles in new aid package", + "link": "https://news.yahoo.com/germany-supplies-ukraine-missiles-iris-184144190.html", + "pubDate": "2024-01-04T18:41:44Z", + "guid": "germany-supplies-ukraine-missiles-iris-184144190.html", + "isoDate": "2024-01-04T18:41:44.000Z" + }, + { + "title": "This Once-in-a-lifetime Trip to Patagonia and Antarctica Is Led by an All-star Conservationist \u2014 How to Get on Board", + "link": "https://www.yahoo.com/lifestyle/once-lifetime-trip-patagonia-antarctica-180344111.html", + "pubDate": "2024-01-04T18:03:44Z", + "guid": "once-lifetime-trip-patagonia-antarctica-180344111.html", + "isoDate": "2024-01-04T18:03:44.000Z" + }, + { + "title": "Russians try to knock out Ukrainian forces from bridgeheads on Dnipro's left bank \u2013 General Staff report", + "link": "https://news.yahoo.com/russians-try-knock-ukrainian-forces-180306108.html", + "pubDate": "2024-01-04T18:03:06Z", + "guid": "russians-try-knock-ukrainian-forces-180306108.html", + "isoDate": "2024-01-04T18:03:06.000Z" + }, + { + "title": "Japan delays MMX Mars moon sample-return mission to 2026", + "link": "https://news.yahoo.com/japan-delays-mmx-mars-moon-180001327.html", + "pubDate": "2024-01-04T18:00:01Z", + "guid": "japan-delays-mmx-mars-moon-180001327.html", + "isoDate": "2024-01-04T18:00:01.000Z" + }, + { + "title": "Zelenskyy: Russia tried to bring back threat of energy sector destruction with recent attacks", + "link": "https://news.yahoo.com/zelenskyy-russia-tried-bring-back-174826841.html", + "pubDate": "2024-01-04T17:48:26Z", + "guid": "zelenskyy-russia-tried-bring-back-174826841.html", + "isoDate": "2024-01-04T17:48:26.000Z" + }, + { + "title": "Interior Minister: Police open 9,000 criminal cases related to draft evasion", + "link": "https://news.yahoo.com/interior-minister-police-open-9-174517545.html", + "pubDate": "2024-01-04T17:45:17Z", + "guid": "interior-minister-police-open-9-174517545.html", + "isoDate": "2024-01-04T17:45:17.000Z" + }, + { + "title": "Ukraine's Foreign Minister explains why it is now easier to defeat Russia than in times of Cold War", + "link": "https://news.yahoo.com/ukraines-foreign-minister-explains-why-174316522.html", + "pubDate": "2024-01-04T17:43:16Z", + "guid": "ukraines-foreign-minister-explains-why-174316522.html", + "isoDate": "2024-01-04T17:43:16.000Z" + }, + { + "title": "Kyivstar rejects Security Service's claim that hackers had been in operator's system for months", + "link": "https://news.yahoo.com/kyivstar-rejects-security-services-claim-172111639.html", + "pubDate": "2024-01-04T17:21:11Z", + "guid": "kyivstar-rejects-security-services-claim-172111639.html", + "isoDate": "2024-01-04T17:21:11.000Z" + }, + { + "title": "Burundi shuts borders with 'bad neighbour' Rwanda", + "link": "https://news.yahoo.com/burundi-shuts-borders-bad-neighbour-210821713.html", + "pubDate": "2024-01-11T21:08:21Z", + "guid": "burundi-shuts-borders-bad-neighbour-210821713.html", + "isoDate": "2024-01-11T21:08:21.000Z" + }, + { + "title": "Ministers to prepare possible Zelensky-Orban meeting over EU\u00a0aid spat", + "link": "https://news.yahoo.com/ministers-prepare-possible-zelensky-orban-204139283.html", + "pubDate": "2024-01-11T20:41:39Z", + "guid": "ministers-prepare-possible-zelensky-orban-204139283.html", + "isoDate": "2024-01-11T20:41:39.000Z" + }, + { + "title": "Bayreuth Festival to have three women conductors, three years after gender barrier broken", + "link": "https://news.yahoo.com/bayreuth-festival-three-women-conductors-195916816.html", + "pubDate": "2024-01-11T19:59:16Z", + "guid": "bayreuth-festival-three-women-conductors-195916816.html", + "isoDate": "2024-01-11T19:59:16.000Z" + }, + { + "title": "DNA from ancient humans gives clues to common diseases", + "link": "https://news.yahoo.com/dna-ancient-humans-gives-clues-194014455.html", + "pubDate": "2024-01-11T19:40:14Z", + "guid": "dna-ancient-humans-gives-clues-194014455.html", + "isoDate": "2024-01-11T19:40:14.000Z" + }, + { + "title": "Ukrainians in Russia-occupied territories forced to register for military service, Kyiv says", + "link": "https://news.yahoo.com/ukrainians-russia-occupied-territories-forced-194000481.html", + "pubDate": "2024-01-11T19:40:00Z", + "guid": "ukrainians-russia-occupied-territories-forced-194000481.html", + "isoDate": "2024-01-11T19:40:00.000Z" + }, + { + "title": "Russian presidential hopeful calling for peace in Ukraine meets with soldiers' wives", + "link": "https://news.yahoo.com/russian-presidential-hopeful-calling-peace-192416009.html", + "pubDate": "2024-01-11T19:24:16Z", + "guid": "russian-presidential-hopeful-calling-peace-192416009.html", + "isoDate": "2024-01-11T19:24:16.000Z" + }, + { + "title": "Israel officials support Gaza destruction, court hears", + "link": "https://news.yahoo.com/un-court-hear-south-africa-071613746.html", + "pubDate": "2024-01-11T19:21:26Z", + "guid": "un-court-hear-south-africa-071613746.html", + "isoDate": "2024-01-11T19:21:26.000Z" + }, + { + "title": "South Korean filmmakers call for probe into \u2018Parasite\u2019 actor Lee Sun-kyun\u2019s death", + "link": "https://news.yahoo.com/south-korean-filmmakers-call-probe-191927064.html", + "pubDate": "2024-01-11T19:19:27Z", + "guid": "south-korean-filmmakers-call-probe-191927064.html", + "isoDate": "2024-01-11T19:19:27.000Z" + }, + { + "title": "Argentina annual inflation tops 211%, highest since early 90s", + "link": "https://finance.yahoo.com/news/argentina-annual-inflation-tops-211-191049892.html", + "pubDate": "2024-01-11T19:10:49Z", + "guid": "argentina-annual-inflation-tops-211-191049892.html", + "isoDate": "2024-01-11T19:10:49.000Z" + }, + { + "title": "Latvian President announces new aid package for Ukraine with howitzers and ammunition", + "link": "https://news.yahoo.com/latvian-president-announces-aid-package-183916764.html", + "pubDate": "2024-01-11T18:39:16Z", + "guid": "latvian-president-announces-aid-package-183916764.html", + "isoDate": "2024-01-11T18:39:16.000Z" + }, + { + "title": "Oil prices rise after Iran seizes oil tanker", + "link": "https://news.yahoo.com/oil-prices-rise-iran-seizes-183102174.html", + "pubDate": "2024-01-11T18:31:02Z", + "guid": "oil-prices-rise-iran-seizes-183102174.html", + "isoDate": "2024-01-11T18:31:02.000Z" + }, + { + "title": "Latvia leads drone coalition within Ramstein format", + "link": "https://news.yahoo.com/latvia-leads-drone-coalition-within-182954111.html", + "pubDate": "2024-01-11T18:29:54Z", + "guid": "latvia-leads-drone-coalition-within-182954111.html", + "isoDate": "2024-01-11T18:29:54.000Z" + }, + { + "title": "Latvia announces new aid for Kyiv, including artillery, munitions, helicopters", + "link": "https://news.yahoo.com/latvia-announces-aid-kyiv-including-175257953.html", + "pubDate": "2024-01-11T17:52:57Z", + "guid": "latvia-announces-aid-kyiv-including-175257953.html", + "isoDate": "2024-01-11T17:52:57.000Z" + }, + { + "title": "Russia releases mostly convicts in prisoner exchange \u2014 video", + "link": "https://news.yahoo.com/russia-releases-mostly-convicts-prisoner-174000233.html", + "pubDate": "2024-01-11T17:40:00Z", + "guid": "russia-releases-mostly-convicts-prisoner-174000233.html", + "isoDate": "2024-01-11T17:40:00.000Z" + }, + { + "title": "The Five Most Powerful Lines in The Hague\u2019s Israel Genocide Case", + "link": "https://news.yahoo.com/five-most-powerful-lines-israel-172810130.html", + "pubDate": "2024-01-11T17:28:10Z", + "guid": "five-most-powerful-lines-israel-172810130.html", + "isoDate": "2024-01-11T17:28:10.000Z" + }, + { + "title": "Russian army made 3 attempts to assault left bank of Dnipro River \u2013 General Staff", + "link": "https://news.yahoo.com/russian-army-made-3-attempts-172718092.html", + "pubDate": "2024-01-11T17:27:18Z", + "guid": "russian-army-made-3-attempts-172718092.html", + "isoDate": "2024-01-11T17:27:18.000Z" + }, + { + "title": "Defense Ministry approves second design of body armor for female soldiers", + "link": "https://news.yahoo.com/defense-ministry-approves-second-design-170640390.html", + "pubDate": "2024-01-11T17:06:40Z", + "guid": "defense-ministry-approves-second-design-170640390.html", + "isoDate": "2024-01-11T17:06:40.000Z" + }, + { + "title": "Somalia conflict: Seized UN helicopter hit by object - source", + "link": "https://news.yahoo.com/somalia-conflict-seized-un-helicopter-165549397.html", + "pubDate": "2024-01-11T17:04:28Z", + "guid": "somalia-conflict-seized-un-helicopter-165549397.html", + "isoDate": "2024-01-11T17:04:28.000Z" + }, + { + "title": "Estonian military robot maker weighs production in Ukraine", + "link": "https://news.yahoo.com/estonian-military-robot-maker-weighs-170126996.html", + "pubDate": "2024-01-11T17:01:26Z", + "guid": "estonian-military-robot-maker-weighs-170126996.html", + "isoDate": "2024-01-11T17:01:26.000Z" + }, + { + "title": "Blinken sees \u2018concrete steps forward\u2019 as he ends Middle East trip", + "link": "https://news.yahoo.com/blinken-sees-concrete-steps-forward-164242170.html", + "pubDate": "2024-01-11T16:42:42Z", + "guid": "blinken-sees-concrete-steps-forward-164242170.html", + "isoDate": "2024-01-11T16:42:42.000Z" + }, + { + "title": "Air raid alert declared across Ukraine for over 1 hour as Russian MiG-31K jet takes off", + "link": "https://news.yahoo.com/air-raid-alert-declared-across-164100586.html", + "pubDate": "2024-01-11T16:41:00Z", + "guid": "air-raid-alert-declared-across-164100586.html", + "isoDate": "2024-01-11T16:41:00.000Z" + }, + { + "title": "Ukraine's Ambassador responds to article where Slovak PM justifies Russian Federation", + "link": "https://news.yahoo.com/ukraines-ambassador-responds-article-where-162446272.html", + "pubDate": "2024-01-11T16:24:46Z", + "guid": "ukraines-ambassador-responds-article-where-162446272.html", + "isoDate": "2024-01-11T16:24:46.000Z" + }, + { + "title": "Government officially announces withdrawal of mobilisation draft law", + "link": "https://news.yahoo.com/government-officially-announces-withdrawal-mobilisation-162040767.html", + "pubDate": "2024-01-11T16:20:40Z", + "guid": "government-officially-announces-withdrawal-mobilisation-162040767.html", + "isoDate": "2024-01-11T16:20:40.000Z" + }, + { + "title": "Russia's Medvedev again threatens use of nukes against Ukraine", + "link": "https://news.yahoo.com/russias-medvedev-again-threatens-nukes-155706347.html", + "pubDate": "2024-01-11T15:57:06Z", + "guid": "russias-medvedev-again-threatens-nukes-155706347.html", + "isoDate": "2024-01-11T15:57:06.000Z" + }, + { + "title": "Turkey, Bulgaria, Romania team up to clear Black Sea mines", + "link": "https://news.yahoo.com/turkey-bulgaria-romania-team-clear-154426925.html", + "pubDate": "2024-01-11T15:44:26Z", + "guid": "turkey-bulgaria-romania-team-clear-154426925.html", + "isoDate": "2024-01-11T15:44:26.000Z" + }, + { + "title": "Finland extends closure of Russian border for another month, fearing a migrant influx", + "link": "https://news.yahoo.com/finland-extends-closure-russian-border-151132521.html", + "pubDate": "2024-01-11T15:11:32Z", + "guid": "finland-extends-closure-russian-border-151132521.html", + "isoDate": "2024-01-11T15:11:32.000Z" + }, + { + "title": "IDF reveals elaborate Hamas tunnel 'confirmed to have held Israeli hostages'", + "link": "https://news.yahoo.com/idf-reveals-elaborate-hamas-tunnel-150522840.html", + "pubDate": "2024-01-11T15:05:22Z", + "guid": "idf-reveals-elaborate-hamas-tunnel-150522840.html", + "isoDate": "2024-01-11T15:05:22.000Z" + }, + { + "title": "Russian imports of military components have hardly fallen at all compared to before full-scale invasion", + "link": "https://news.yahoo.com/russian-imports-military-components-hardly-150007590.html", + "pubDate": "2024-01-11T15:00:07Z", + "guid": "russian-imports-military-components-hardly-150007590.html", + "isoDate": "2024-01-11T15:00:07.000Z" + }, + { + "title": "Zelenskyy visits Latvia \u2013 photo", + "link": "https://news.yahoo.com/zelenskyy-visits-latvia-photo-144849458.html", + "pubDate": "2024-01-11T14:48:49Z", + "guid": "zelenskyy-visits-latvia-photo-144849458.html", + "isoDate": "2024-01-11T14:48:49.000Z" + }, + { + "title": "South Africa calls Israel\u2019s leaders \u2018genocidal inciters\u2019 at ICJ case opening", + "link": "https://news.yahoo.com/south-africa-calls-israel-leaders-133614412.html", + "pubDate": "2024-01-11T14:45:46Z", + "guid": "south-africa-calls-israel-leaders-133614412.html", + "isoDate": "2024-01-11T14:45:46.000Z" + }, + { + "title": "Turkey, Romania, Bulgaria sign deal on Black Sea mine clearance", + "link": "https://news.yahoo.com/turkey-romania-bulgaria-sign-deal-141550093.html", + "pubDate": "2024-01-11T14:15:50Z", + "guid": "turkey-romania-bulgaria-sign-deal-141550093.html", + "isoDate": "2024-01-11T14:15:50.000Z" + }, + { + "title": "Ukraine holds firm even though Russia\u2019s ambitions extend beyond Kharkiv \u2014 Ground Forces spokesperson", + "link": "https://news.yahoo.com/ukraine-holds-firm-even-though-140400351.html", + "pubDate": "2024-01-11T14:04:00Z", + "guid": "ukraine-holds-firm-even-though-140400351.html", + "isoDate": "2024-01-11T14:04:00.000Z" + }, + { + "title": "South Africa\u2019s Justice Minister Robert Lamola accuses Israel of acts of genocide at the International Court of Justice.", + "link": "https://news.yahoo.com/south-africa-justice-minister-robert-135039420.html", + "pubDate": "2024-01-11T13:50:39Z", + "guid": "south-africa-justice-minister-robert-135039420.html", + "isoDate": "2024-01-11T13:50:39.000Z" + }, + { + "title": "Nintendo Shares Hit High Point Amid Switch 2 Interest", + "link": "https://www.yahoo.com/tech/nintendo-shares-hit-high-point-135023692.html", + "pubDate": "2024-01-11T13:50:23Z", + "guid": "nintendo-shares-hit-high-point-135023692.html", + "isoDate": "2024-01-11T13:50:23.000Z" + }, + { + "title": "Cabinet of Ministers withdraws mobilisation bill after emergency meeting", + "link": "https://news.yahoo.com/ukrainian-cabinet-ministers-emergency-meeting-134747903.html", + "pubDate": "2024-01-11T13:47:47Z", + "guid": "ukrainian-cabinet-ministers-emergency-meeting-134747903.html", + "isoDate": "2024-01-11T13:47:47.000Z" + }, + { + "title": "Ukraine certifies second sample of women's body armour \u2013 photo", + "link": "https://news.yahoo.com/ukraine-certifies-second-sample-womens-134547510.html", + "pubDate": "2024-01-11T13:45:47Z", + "guid": "ukraine-certifies-second-sample-womens-134547510.html", + "isoDate": "2024-01-11T13:45:47.000Z" + }, + { + "title": "Ukraine aims to become EU's eastern customs \u2013 Ukrainian Treasury", + "link": "https://news.yahoo.com/ukraine-aims-become-eus-eastern-133928558.html", + "pubDate": "2024-01-11T13:39:28Z", + "guid": "ukraine-aims-become-eus-eastern-133928558.html", + "isoDate": "2024-01-11T13:39:28.000Z" + }, + { + "title": "Iran could soon supply Russia with a new batch of ballistic missiles and drones \u2013 UA Air Force", + "link": "https://news.yahoo.com/iran-could-soon-supply-russia-133500705.html", + "pubDate": "2024-01-11T13:35:00Z", + "guid": "iran-could-soon-supply-russia-133500705.html", + "isoDate": "2024-01-11T13:35:00.000Z" + }, + { + "title": "PrivatBank customers can now get new bank cards delivered free to homes across Ukraine and six European countries", + "link": "https://news.yahoo.com/privatbank-customers-now-bank-cards-132700017.html", + "pubDate": "2024-01-11T13:27:00Z", + "guid": "privatbank-customers-now-bank-cards-132700017.html", + "isoDate": "2024-01-11T13:27:00.000Z" + }, + { + "title": "Unprecedented inflation for basic foods has Russians queuing for eggs \u2013 Soviet-style", + "link": "https://news.yahoo.com/unprecedented-inflation-basic-foods-russians-130400149.html", + "pubDate": "2024-01-11T13:04:00Z", + "guid": "unprecedented-inflation-basic-foods-russians-130400149.html", + "isoDate": "2024-01-11T13:04:00.000Z" + }, + { + "title": "UN concerned over Taliban arrests of Afghan women and girls for alleged Islamic headscarf violations", + "link": "https://news.yahoo.com/un-concerned-over-taliban-arrests-130223760.html", + "pubDate": "2024-01-11T13:02:23Z", + "guid": "un-concerned-over-taliban-arrests-130223760.html", + "isoDate": "2024-01-11T13:02:23.000Z" + }, + { + "title": "Hungarian Foreign Minister to hold meeting with Ukrainian counterpart in Uzhhorod", + "link": "https://news.yahoo.com/hungarian-foreign-minister-hold-meeting-125909018.html", + "pubDate": "2024-01-11T12:59:09Z", + "guid": "hungarian-foreign-minister-hold-meeting-125909018.html", + "isoDate": "2024-01-11T12:59:09.000Z" + }, + { + "title": "Court seizes property of businessmen implicated in Defense Ministry corruption scandal", + "link": "https://news.yahoo.com/media-court-seizes-property-businessmen-125117270.html", + "pubDate": "2024-01-11T12:51:17Z", + "guid": "media-court-seizes-property-businessmen-125117270.html", + "isoDate": "2024-01-11T12:51:17.000Z" + }, + { + "title": "Turkey, Bulgaria, Romania join forces to hunt Black Sea mines", + "link": "https://news.yahoo.com/turkey-bulgaria-romania-join-forces-123608806.html", + "pubDate": "2024-01-11T12:36:08Z", + "guid": "turkey-bulgaria-romania-join-forces-123608806.html", + "isoDate": "2024-01-11T12:36:08.000Z" + }, + { + "title": "Dangerous stasis on Israel's northern border leaves evacuees in limbo", + "link": "https://news.yahoo.com/dangerous-stasis-israels-northern-border-123502703.html", + "pubDate": "2024-01-11T12:35:02Z", + "guid": "dangerous-stasis-israels-northern-border-123502703.html", + "isoDate": "2024-01-11T12:35:02.000Z" + }, + { + "title": "Zelenskyy says Ukrainian men should return to Ukraine at least to pay taxes", + "link": "https://news.yahoo.com/zelenskyy-says-ukrainian-men-return-123317572.html", + "pubDate": "2024-01-11T12:33:17Z", + "guid": "zelenskyy-says-ukrainian-men-return-123317572.html", + "isoDate": "2024-01-11T12:33:17.000Z" + }, + { + "title": "Russian agent detained in Donetsk Oblast faces life for tracking Ukrainian frontline positions", + "link": "https://news.yahoo.com/russian-agent-detained-donetsk-oblast-122900752.html", + "pubDate": "2024-01-11T12:29:00Z", + "guid": "russian-agent-detained-donetsk-oblast-122900752.html", + "isoDate": "2024-01-11T12:29:00.000Z" + }, + { + "title": "Corruption prevention agency accuses PM Shmyhal of illegally exposing whistleblower, PM denies", + "link": "https://news.yahoo.com/corruption-prevention-agency-accuses-pm-122245447.html", + "pubDate": "2024-01-11T12:22:45Z", + "guid": "corruption-prevention-agency-accuses-pm-122245447.html", + "isoDate": "2024-01-11T12:22:45.000Z" + }, + { + "title": "Demining Black Sea: T\u00fcrkiye, Bulgaria and Romania sign agreement", + "link": "https://news.yahoo.com/demining-black-sea-t-rkiye-121308571.html", + "pubDate": "2024-01-11T12:13:08Z", + "guid": "demining-black-sea-t-rkiye-121308571.html", + "isoDate": "2024-01-11T12:13:08.000Z" + }, + { + "title": "Estonia pledges $1.3 billion in long-term support for Kyiv as Zelensky tours Baltics", + "link": "https://news.yahoo.com/estonia-pledges-1-3-billion-121206534.html", + "pubDate": "2024-01-11T12:12:06Z", + "guid": "estonia-pledges-1-3-billion-121206534.html", + "isoDate": "2024-01-11T12:12:06.000Z" + }, + { + "title": "Israel says South Africa distorting the truth in ICJ genocide case", + "link": "https://news.yahoo.com/israel-says-south-africa-distorting-104925570.html", + "pubDate": "2024-01-12T10:57:32Z", + "guid": "israel-says-south-africa-distorting-104925570.html", + "isoDate": "2024-01-12T10:57:32.000Z" + }, + { + "title": "What is South Africa\u2019s genocide case against Israel at the ICJ?", + "link": "https://news.yahoo.com/south-africa-genocide-case-against-131213223.html", + "pubDate": "2024-01-12T10:55:04Z", + "guid": "south-africa-genocide-case-against-131213223.html", + "isoDate": "2024-01-12T10:55:04.000Z" + }, + { + "title": "Ukraine's economy rises 5% in 2023 after nearly 29% GDP plunge in 2022", + "link": "https://news.yahoo.com/ukraines-economy-rises-5-2023-105400010.html", + "pubDate": "2024-01-12T10:54:00Z", + "guid": "ukraines-economy-rises-5-2023-105400010.html", + "isoDate": "2024-01-12T10:54:00.000Z" + }, + { + "title": "Cape Verde reaches malaria-free milestone", + "link": "https://news.yahoo.com/cape-verde-reaches-malaria-free-092825228.html", + "pubDate": "2024-01-12T10:41:14Z", + "guid": "cape-verde-reaches-malaria-free-092825228.html", + "isoDate": "2024-01-12T10:41:14.000Z" + }, + { + "title": "Austrian food company lobbies against Ukrainian sugar quotas, continues operations in Russia", + "link": "https://news.yahoo.com/austrian-food-company-lobbies-against-101400445.html", + "pubDate": "2024-01-12T10:14:00Z", + "guid": "austrian-food-company-lobbies-against-101400445.html", + "isoDate": "2024-01-12T10:14:00.000Z" + }, + { + "title": "NATO\u2019s rotational air defense presence on its eastern borders would be \u2018appropriate response to Russian escalation,\u2019 says Lithuanian Foreign", + "link": "https://news.yahoo.com/nato-rotational-air-defense-presence-092100506.html", + "pubDate": "2024-01-12T09:21:00Z", + "guid": "nato-rotational-air-defense-presence-092100506.html", + "isoDate": "2024-01-12T09:21:00.000Z" + }, + { + "title": "2 Russian airlines want to keep flying Soviet-era planes, but some of them are so old they're set to be phased out this year", + "link": "https://news.yahoo.com/2-russian-airlines-want-keep-091500907.html", + "pubDate": "2024-01-12T09:15:00Z", + "guid": "2-russian-airlines-want-keep-091500907.html", + "isoDate": "2024-01-12T09:15:00.000Z" + }, + { + "title": "Japan successfully launches spy satellite", + "link": "https://news.yahoo.com/japan-successfully-launches-spy-satellite-090832766.html", + "pubDate": "2024-01-12T09:08:32Z", + "guid": "japan-successfully-launches-spy-satellite-090832766.html", + "isoDate": "2024-01-12T09:08:32.000Z" + }, + { + "title": "Sunak to visit Kyiv Friday to set out new 'support package'", + "link": "https://news.yahoo.com/sunak-visit-kyiv-friday-set-083948030.html", + "pubDate": "2024-01-12T08:39:48Z", + "guid": "sunak-visit-kyiv-friday-set-083948030.html", + "isoDate": "2024-01-12T08:39:48.000Z" + }, + { + "title": "Sunak will announce more than \u00a32.5bn in military support for Ukraine next year", + "link": "https://news.yahoo.com/sunak-announce-more-2-5bn-082539295.html", + "pubDate": "2024-01-12T08:25:39Z", + "guid": "sunak-announce-more-2-5bn-082539295.html", + "isoDate": "2024-01-12T08:25:39.000Z" + }, + { + "title": "Russia increases ammunition production, but its quality is dropping \u2013 Defence Intelligence of Ukraine", + "link": "https://news.yahoo.com/russia-increases-ammunition-production-quality-082011123.html", + "pubDate": "2024-01-12T08:20:11Z", + "guid": "russia-increases-ammunition-production-quality-082011123.html", + "isoDate": "2024-01-12T08:20:11.000Z" + }, + { + "title": "Advertised ski tour to North Korea suggests return of first tourists since 2020", + "link": "https://www.yahoo.com/lifestyle/advertised-ski-tour-north-korea-081634355.html", + "pubDate": "2024-01-12T08:16:34Z", + "guid": "advertised-ski-tour-north-korea-081634355.html", + "isoDate": "2024-01-12T08:16:34.000Z" + }, + { + "title": "Russia wants small victories on the front ahead of Putin's \u2018reelection\u2019, Zelenskyy", + "link": "https://news.yahoo.com/russia-wants-small-victories-front-074900184.html", + "pubDate": "2024-01-12T07:49:00Z", + "guid": "russia-wants-small-victories-front-074900184.html", + "isoDate": "2024-01-12T07:49:00.000Z" + }, + { + "title": "Hillhouse, Mitsui vying for Singapore's Eu Yan Sang in $700 million deal - sources", + "link": "https://news.yahoo.com/hillhouse-mitsui-vying-singapores-eu-074609514.html", + "pubDate": "2024-01-12T07:46:09Z", + "guid": "hillhouse-mitsui-vying-singapores-eu-074609514.html", + "isoDate": "2024-01-12T07:46:09.000Z" + }, + { + "title": "EU ready to make concessions to Hungary to unlock \u20ac50 billion for Ukraine \u2013 FT", + "link": "https://news.yahoo.com/eu-ready-concessions-hungary-unlock-074344603.html", + "pubDate": "2024-01-12T07:43:44Z", + "guid": "eu-ready-concessions-hungary-unlock-074344603.html", + "isoDate": "2024-01-12T07:43:44.000Z" + }, + { + "title": "Freeze \u2018em out: No Russian passport, no coal for you \u2013 in occupied Kherson Oblast", + "link": "https://news.yahoo.com/freeze-em-no-russian-passport-072700015.html", + "pubDate": "2024-01-12T07:27:00Z", + "guid": "freeze-em-no-russian-passport-072700015.html", + "isoDate": "2024-01-12T07:27:00.000Z" + }, + { + "title": "Queue at Medyka-Shehyni crossing longer than at blocked checkpoints \u2013 Ukrainian border guards", + "link": "https://news.yahoo.com/queue-medyka-shehyni-crossing-longer-072419494.html", + "pubDate": "2024-01-12T07:24:19Z", + "guid": "queue-medyka-shehyni-crossing-longer-072419494.html", + "isoDate": "2024-01-12T07:24:19.000Z" + }, + { + "title": "Women assume \"male\" roles amidst full-scale war in Ukraine", + "link": "https://news.yahoo.com/women-assume-male-roles-amidst-071126802.html", + "pubDate": "2024-01-12T07:11:26Z", + "guid": "women-assume-male-roles-amidst-071126802.html", + "isoDate": "2024-01-12T07:11:26.000Z" + }, + { + "title": "Air defence rotation in NATO's east would be adequate response to Russian threat \u2013 Lithuanian Foreign Minister", + "link": "https://news.yahoo.com/air-defence-rotation-natos-east-065250778.html", + "pubDate": "2024-01-12T06:52:50Z", + "guid": "air-defence-rotation-natos-east-065250778.html", + "isoDate": "2024-01-12T06:52:50.000Z" + }, + { + "title": "Western companies have exited Russia in droves. New companies with owners from China and former Soviet republics are stepping in.", + "link": "https://news.yahoo.com/western-companies-exited-russia-droves-064854814.html", + "pubDate": "2024-01-12T06:48:54Z", + "guid": "western-companies-exited-russia-droves-064854814.html", + "isoDate": "2024-01-12T06:48:54.000Z" + }, + { + "title": "Mother of American hostage held by Hamas asks for global support to mark 100 days of captivity", + "link": "https://news.yahoo.com/mother-american-hostage-held-hamas-053109337.html", + "pubDate": "2024-01-12T05:31:09Z", + "guid": "mother-american-hostage-held-hamas-053109337.html", + "isoDate": "2024-01-12T05:31:09.000Z" + }, + { + "title": "Hyundai Motor India fixes bug that exposed customers' personal data", + "link": "https://news.yahoo.com/hyundai-motor-india-fixes-bug-050550872.html", + "pubDate": "2024-01-12T05:05:50Z", + "guid": "hyundai-motor-india-fixes-bug-050550872.html", + "isoDate": "2024-01-12T05:05:50.000Z" + }, + { + "title": "ISW: Russian forces' operational rotations will likely sustain offensive tempo in eastern Ukraine", + "link": "https://news.yahoo.com/isw-russian-forces-operational-rotations-044200560.html", + "pubDate": "2024-01-12T04:42:00Z", + "guid": "isw-russian-forces-operational-rotations-044200560.html", + "isoDate": "2024-01-12T04:42:00.000Z" + }, + { + "title": "ISW explains how Russia manages to carry out planned rotations", + "link": "https://news.yahoo.com/isw-explains-russia-manages-carry-024803972.html", + "pubDate": "2024-01-12T02:48:03Z", + "guid": "isw-explains-russia-manages-carry-024803972.html", + "isoDate": "2024-01-12T02:48:03.000Z" + }, + { + "title": "Former Canadian political leader Ed Broadbent, a social democracy stalwart, dies at 87", + "link": "https://news.yahoo.com/former-canadian-political-leader-ed-005203858.html", + "pubDate": "2024-01-12T00:52:03Z", + "guid": "former-canadian-political-leader-ed-005203858.html", + "isoDate": "2024-01-12T00:52:03.000Z" + }, + { + "title": "Evidence shows Russia used North Korean missiles in Ukraine \u2013 law enforcement", + "link": "https://news.yahoo.com/evidence-shows-russia-used-north-001000710.html", + "pubDate": "2024-01-12T00:10:00Z", + "guid": "evidence-shows-russia-used-north-001000710.html", + "isoDate": "2024-01-12T00:10:00.000Z" + }, + { + "title": "Hybe cracks down on unauthorized use of BTS name and images", + "link": "https://news.yahoo.com/hybe-cracks-down-unauthorized-bts-234432057.html", + "pubDate": "2024-01-11T23:44:32Z", + "guid": "hybe-cracks-down-unauthorized-bts-234432057.html", + "isoDate": "2024-01-11T23:44:32.000Z" + }, + { + "title": "Red Sea shipping attacks halt Tesla production at German plant", + "link": "https://news.yahoo.com/red-sea-shipping-attacks-halt-225640996.html", + "pubDate": "2024-01-11T22:56:40Z", + "guid": "red-sea-shipping-attacks-halt-225640996.html", + "isoDate": "2024-01-11T22:56:40.000Z" + }, + { + "title": "Czech teen went to Ukraine to join the fight", + "link": "https://news.yahoo.com/czech-teen-went-ukraine-join-224000832.html", + "pubDate": "2024-01-11T22:40:00Z", + "guid": "czech-teen-went-ukraine-join-224000832.html", + "isoDate": "2024-01-11T22:40:00.000Z" + }, + { + "title": "Japanese earthquake on Jan. 1 shifted coastline over 800 feet, satellite photos show", + "link": "https://news.yahoo.com/japanese-earthquake-jan-1-shifted-223026378.html", + "pubDate": "2024-01-11T22:30:26Z", + "guid": "japanese-earthquake-jan-1-shifted-223026378.html", + "isoDate": "2024-01-11T22:30:26.000Z" + }, + { + "title": "Latvia to provide Ukraine with helicopters and howitzers in new aid package", + "link": "https://news.yahoo.com/latvia-ukraine-helicopters-howitzers-aid-221000525.html", + "pubDate": "2024-01-11T22:10:00Z", + "guid": "latvia-ukraine-helicopters-howitzers-aid-221000525.html", + "isoDate": "2024-01-11T22:10:00.000Z" + }, + { + "title": "Government withdraws controversial mobilization bill from parliament", + "link": "https://news.yahoo.com/government-withdraws-controversial-mobilization-bill-214000814.html", + "pubDate": "2024-01-11T21:40:00Z", + "guid": "government-withdraws-controversial-mobilization-bill-214000814.html", + "isoDate": "2024-01-11T21:40:00.000Z" + }, + { + "title": "Young moose gets stuck on icy river. Then couple rushes to its rescue, videos show", + "link": "https://news.yahoo.com/young-moose-gets-stuck-icy-213448149.html", + "pubDate": "2024-01-11T21:34:48Z", + "guid": "young-moose-gets-stuck-icy-213448149.html", + "isoDate": "2024-01-11T21:34:48.000Z" + }, + { + "title": "At least 10,200 civilians killed in Ukraine war \u2013 UN", + "link": "https://news.yahoo.com/least-10-200-civilians-killed-211000199.html", + "pubDate": "2024-01-11T21:10:00Z", + "guid": "least-10-200-civilians-killed-211000199.html", + "isoDate": "2024-01-11T21:10:00.000Z" + }, + { + "title": "Sony DualSense V2 controller leaked ahead of release by Best Buy Canada, promises way more battery life", + "link": "https://news.yahoo.com/sony-dualsense-v2-controller-leaked-202944727.html", + "pubDate": "2024-01-11T20:29:44Z", + "guid": "sony-dualsense-v2-controller-leaked-202944727.html", + "isoDate": "2024-01-11T20:29:44.000Z" + }, + { + "title": "Argentina's annual inflation soars to 211.4%, the highest in 32 years", + "link": "https://news.yahoo.com/argentinas-annual-inflation-soars-211-195942347.html", + "pubDate": "2024-01-11T19:59:42Z", + "guid": "argentinas-annual-inflation-soars-211-195942347.html", + "isoDate": "2024-01-11T19:59:42.000Z" + }, + { + "title": "Putin critic Sergei Udaltsov arrested charged with 'justifying terrorism'", + "link": "https://news.yahoo.com/putin-critic-sergei-udaltsov-arrested-195606438.html", + "pubDate": "2024-01-11T19:56:06Z", + "guid": "putin-critic-sergei-udaltsov-arrested-195606438.html", + "isoDate": "2024-01-11T19:56:06.000Z" + }, + { + "title": "Latvia to transfer funds from Russian assets, mainly Moscow House, to aid Ukraine", + "link": "https://news.yahoo.com/latvia-transfer-funds-russian-assets-194539515.html", + "pubDate": "2024-01-11T19:45:39Z", + "guid": "latvia-transfer-funds-russian-assets-194539515.html", + "isoDate": "2024-01-11T19:45:39.000Z" + }, + { + "title": "Zelenskyy criticises West: If Ukraine were given seven Patriot systems, people would not be killed", + "link": "https://news.yahoo.com/zelenskyy-criticises-west-ukraine-were-192522551.html", + "pubDate": "2024-01-11T19:25:22Z", + "guid": "zelenskyy-criticises-west-ukraine-were-192522551.html", + "isoDate": "2024-01-11T19:25:22.000Z" + }, + { + "title": "Ukraine has no major achievements in front because Russians control sky \u2013 Zelenskyy", + "link": "https://news.yahoo.com/ukraine-no-major-achievements-front-191927536.html", + "pubDate": "2024-01-11T19:19:27Z", + "guid": "ukraine-no-major-achievements-front-191927536.html", + "isoDate": "2024-01-11T19:19:27.000Z" + }, + { + "title": "Border Guard: Romanian farmers, truckers block another crossing at Ukraine border", + "link": "https://news.yahoo.com/border-guard-romanian-farmers-truckers-111241532.html", + "pubDate": "2024-01-18T11:12:41Z", + "guid": "border-guard-romanian-farmers-truckers-111241532.html", + "isoDate": "2024-01-18T11:12:41.000Z" + }, + { + "title": "France ramps up weapons production for Ukraine and says Russia is scrutinizing the West's mettle", + "link": "https://news.yahoo.com/france-ramps-weapons-production-ukraine-104333860.html", + "pubDate": "2024-01-18T10:43:33Z", + "guid": "france-ramps-weapons-production-ukraine-104333860.html", + "isoDate": "2024-01-18T10:43:33.000Z" + }, + { + "title": "Rwandan president Paul Kagame suggests UK could get money back", + "link": "https://news.yahoo.com/rwandan-president-paul-kagame-suggests-132635190.html", + "pubDate": "2024-01-18T10:42:24Z", + "guid": "rwandan-president-paul-kagame-suggests-132635190.html", + "isoDate": "2024-01-18T10:42:24.000Z" + }, + { + "title": "Battle of Khan Younis threatens biggest hospital still functioning in Gaza", + "link": "https://finance.yahoo.com/news/wrapup-1-battle-khan-younis-101739853.html", + "pubDate": "2024-01-18T10:17:39Z", + "guid": "wrapup-1-battle-khan-younis-101739853.html", + "isoDate": "2024-01-18T10:17:39.000Z" + }, + { + "title": "Jersey Mike's expanding to Canada as iconic Jersey Shore brand goes international", + "link": "https://finance.yahoo.com/news/jersey-mikes-expanding-canada-iconic-101526829.html", + "pubDate": "2024-01-18T10:15:26Z", + "guid": "jersey-mikes-expanding-canada-iconic-101526829.html", + "isoDate": "2024-01-18T10:15:26.000Z" + }, + { + "title": "The Black Rhino, aka Hook-lipped Rhinoceros", + "link": "https://news.yahoo.com/black-rhino-aka-hook-lipped-101502864.html", + "pubDate": "2024-01-18T10:15:02Z", + "guid": "black-rhino-aka-hook-lipped-101502864.html", + "isoDate": "2024-01-18T10:15:02.000Z" + }, + { + "title": "What is the UK's plan to send asylum seekers to Rwanda?", + "link": "https://news.yahoo.com/uks-plan-send-asylum-seekers-115140285.html", + "pubDate": "2024-01-18T09:57:23Z", + "guid": "uks-plan-send-asylum-seekers-115140285.html", + "isoDate": "2024-01-18T09:57:23.000Z" + }, + { + "title": "Media: Ukrainian drone attack hits oil depot near St Petersburg", + "link": "https://news.yahoo.com/media-ukrainian-drone-attack-hits-094355710.html", + "pubDate": "2024-01-18T09:43:55Z", + "guid": "media-ukrainian-drone-attack-hits-094355710.html", + "isoDate": "2024-01-18T09:43:55.000Z" + }, + { + "title": "Better Business Bureau: Making charitable donations after a natural disaster", + "link": "https://finance.yahoo.com/news/better-business-bureau-making-charitable-094013986.html", + "pubDate": "2024-01-18T09:40:13Z", + "guid": "better-business-bureau-making-charitable-094013986.html", + "isoDate": "2024-01-18T09:40:13.000Z" + }, + { + "title": "Rishi Sunak sees off Conservative rebels as MPs back Rwanda bill", + "link": "https://news.yahoo.com/rishi-sunak-sees-off-conservative-222047582.html", + "pubDate": "2024-01-18T09:40:00Z", + "guid": "rishi-sunak-sees-off-conservative-222047582.html", + "isoDate": "2024-01-18T09:40:00.000Z" + }, + { + "title": "Gharial: The Rare Crocodilian With an Extremely Narrow Snout", + "link": "https://news.yahoo.com/gharial-rare-crocodilian-extremely-narrow-093003698.html", + "pubDate": "2024-01-18T09:30:03Z", + "guid": "gharial-rare-crocodilian-extremely-narrow-093003698.html", + "isoDate": "2024-01-18T09:30:03.000Z" + }, + { + "title": "UK Foreign Secretary Cameron urges world \u2018not to appease Putin\u2019", + "link": "https://news.yahoo.com/uk-foreign-secretary-cameron-urges-092900125.html", + "pubDate": "2024-01-18T09:29:00Z", + "guid": "uk-foreign-secretary-cameron-urges-092900125.html", + "isoDate": "2024-01-18T09:29:00.000Z" + }, + { + "title": "'Renaissance figure' Lesley Lokko awarded architecture's Royal Gold Medal", + "link": "https://news.yahoo.com/renaissance-figure-lesley-lokko-awarded-012442969.html", + "pubDate": "2024-01-18T09:09:32Z", + "guid": "renaissance-figure-lesley-lokko-awarded-012442969.html", + "isoDate": "2024-01-18T09:09:32.000Z" + }, + { + "title": "German parliament to vote again on long-range Taurus missile transfer to UA \u2013 likely by Feb. 22", + "link": "https://news.yahoo.com/german-parliament-vote-again-long-090700000.html", + "pubDate": "2024-01-18T09:07:00Z", + "guid": "german-parliament-vote-again-long-090700000.html", + "isoDate": "2024-01-18T09:07:00.000Z" + }, + { + "title": "Ukraine needs increased Western support to avoid \"printing money,\" EBRD says", + "link": "https://news.yahoo.com/ukraine-needs-increased-western-support-081652959.html", + "pubDate": "2024-01-18T08:16:52Z", + "guid": "ukraine-needs-increased-western-support-081652959.html", + "isoDate": "2024-01-18T08:16:52.000Z" + }, + { + "title": "Polish-Ukrainian border no longer blocked, but Romanian border still is", + "link": "https://news.yahoo.com/polish-ukrainian-border-no-longer-081251249.html", + "pubDate": "2024-01-18T08:12:51Z", + "guid": "polish-ukrainian-border-no-longer-081251249.html", + "isoDate": "2024-01-18T08:12:51.000Z" + }, + { + "title": "Ukrainian drones hit oil depot in St Petersburg", + "link": "https://news.yahoo.com/ukrainian-drones-hit-oil-depot-075903662.html", + "pubDate": "2024-01-18T07:59:03Z", + "guid": "ukrainian-drones-hit-oil-depot-075903662.html", + "isoDate": "2024-01-18T07:59:03.000Z" + }, + { + "title": "Ukraine now a global leader in drone production, \u2018Our Western partners study our drones\u2019 \u2013 Danilov", + "link": "https://news.yahoo.com/ukraine-now-global-leader-drone-075800753.html", + "pubDate": "2024-01-18T07:58:00Z", + "guid": "ukraine-now-global-leader-drone-075800753.html", + "isoDate": "2024-01-18T07:58:00.000Z" + }, + { + "title": "Georgia grants visa-free travel to citizens from 95 countries, not just South Koreans", + "link": "https://news.yahoo.com/georgia-grants-visa-free-travel-070605265.html", + "pubDate": "2024-01-18T07:06:05Z", + "guid": "georgia-grants-visa-free-travel-070605265.html", + "isoDate": "2024-01-18T07:06:05.000Z" + }, + { + "title": "3 Russian drones destroyed over Khmelnytskyi Oblast at night, 4 more in Dnipropetrovsk Oblast", + "link": "https://news.yahoo.com/3-russian-drones-destroyed-over-065221872.html", + "pubDate": "2024-01-18T06:52:21Z", + "guid": "3-russian-drones-destroyed-over-065221872.html", + "isoDate": "2024-01-18T06:52:21.000Z" + }, + { + "title": "Ukrainian defenders destroy 24 artillery systems and 21 Russian tanks in one day", + "link": "https://news.yahoo.com/ukrainian-defenders-destroy-24-artillery-060912210.html", + "pubDate": "2024-01-18T06:09:12Z", + "guid": "ukrainian-defenders-destroy-24-artillery-060912210.html", + "isoDate": "2024-01-18T06:09:12.000Z" + }, + { + "title": "Japan's northern Aomori prefecture offers early sign of broadening wage hikes", + "link": "https://finance.yahoo.com/news/japans-northern-aomori-prefecture-offers-060648183.html", + "pubDate": "2024-01-18T06:06:48Z", + "guid": "japans-northern-aomori-prefecture-offers-060648183.html", + "isoDate": "2024-01-18T06:06:48.000Z" + }, + { + "title": "Macron Calls for Joint European Bonds to Fund Defense, Tech", + "link": "https://news.yahoo.com/macron-calls-joint-european-bonds-060223723.html", + "pubDate": "2024-01-18T06:02:23Z", + "guid": "macron-calls-joint-european-bonds-060223723.html", + "isoDate": "2024-01-18T06:02:23.000Z" + }, + { + "title": "Pakistan conducts retaliatory military strikes against Pakistani terrorists operating in Iran", + "link": "https://news.yahoo.com/pakistan-conducts-retaliatory-military-strikes-055055915.html", + "pubDate": "2024-01-18T05:50:55Z", + "guid": "pakistan-conducts-retaliatory-military-strikes-055055915.html", + "isoDate": "2024-01-18T05:50:55.000Z" + }, + { + "title": "Brazil's Indigenous Yanomami again face illegal mining-linked crisis", + "link": "https://news.yahoo.com/brazils-indigenous-yanomami-again-face-023312477.html", + "pubDate": "2024-01-18T02:33:12Z", + "guid": "brazils-indigenous-yanomami-again-face-023312477.html", + "isoDate": "2024-01-18T02:33:12.000Z" + }, + { + "title": "Bay Bridge protestors push to get charges dropped", + "link": "https://news.yahoo.com/bay-bridge-protestors-push-charges-014514484.html", + "pubDate": "2024-01-18T01:45:14Z", + "guid": "bay-bridge-protestors-push-charges-014514484.html", + "isoDate": "2024-01-18T01:45:14.000Z" + }, + { + "title": "Economists Favor Jokowi Critic as Top Choice to Lead Indonesia", + "link": "https://news.yahoo.com/economists-favor-jokowi-critic-top-010000793.html", + "pubDate": "2024-01-18T01:00:00Z", + "guid": "economists-favor-jokowi-critic-top-010000793.html", + "isoDate": "2024-01-18T01:00:00.000Z" + }, + { + "title": "France finalizing security agreement with Ukraine \u2014 Macron", + "link": "https://news.yahoo.com/france-finalizing-security-agreement-ukraine-002000117.html", + "pubDate": "2024-01-18T00:20:00Z", + "guid": "france-finalizing-security-agreement-ukraine-002000117.html", + "isoDate": "2024-01-18T00:20:00.000Z" + }, + { + "title": "Medicine for Gaza hostages arrives as part of Qatar-brokered aid deal", + "link": "https://news.yahoo.com/medicine-gaza-hostages-arrives-part-234131115.html", + "pubDate": "2024-01-17T23:41:31Z", + "guid": "medicine-gaza-hostages-arrives-part-234131115.html", + "isoDate": "2024-01-17T23:41:31.000Z" + }, + { + "title": "BTS' RM, V complete basic military training", + "link": "https://news.yahoo.com/bts-rm-v-complete-basic-231403328.html", + "pubDate": "2024-01-17T23:14:03Z", + "guid": "bts-rm-v-complete-basic-231403328.html", + "isoDate": "2024-01-17T23:14:03.000Z" + }, + { + "title": "Hostages in Gaza sent medicine as part of Qatar-brokered aid deal", + "link": "https://news.yahoo.com/hostages-gaza-sent-medicine-part-231132016.html", + "pubDate": "2024-01-17T23:11:32Z", + "guid": "hostages-gaza-sent-medicine-part-231132016.html", + "isoDate": "2024-01-17T23:11:32.000Z" + }, + { + "title": "\u2018Large\u2019 creature \u2014 with \u2018strangely shaped\u2019 tail tip \u2014 is new venomous species. See it", + "link": "https://news.yahoo.com/large-creature-strangely-shaped-tail-224051473.html", + "pubDate": "2024-01-17T22:40:51Z", + "guid": "large-creature-strangely-shaped-tail-224051473.html", + "isoDate": "2024-01-17T22:40:51.000Z" + }, + { + "title": "Bulgaria yet to deliver 100 APCs to Ukraine, despite July 2023 pledge", + "link": "https://news.yahoo.com/bulgaria-yet-deliver-100-apcs-222000185.html", + "pubDate": "2024-01-17T22:20:00Z", + "guid": "bulgaria-yet-deliver-100-apcs-222000185.html", + "isoDate": "2024-01-17T22:20:00.000Z" + }, + { + "title": "Ibadan explosion in Nigeria: 'The roof fell on my mother in bed'", + "link": "https://news.yahoo.com/nigeria-ibadan-explosion-deadly-blast-092047171.html", + "pubDate": "2024-01-17T21:27:22Z", + "guid": "nigeria-ibadan-explosion-deadly-blast-092047171.html", + "isoDate": "2024-01-17T21:27:22.000Z" + }, + { + "title": "Energy giant DTEK presses international partners to encourage flow of private capital to Ukraine", + "link": "https://news.yahoo.com/energy-giant-dtek-presses-international-212420164.html", + "pubDate": "2024-01-17T21:24:20Z", + "guid": "energy-giant-dtek-presses-international-212420164.html", + "isoDate": "2024-01-17T21:24:20.000Z" + }, + { + "title": "Poland gears up for further military aid to Ukraine", + "link": "https://news.yahoo.com/poland-gears-further-military-aid-212000338.html", + "pubDate": "2024-01-17T21:20:00Z", + "guid": "poland-gears-further-military-aid-212000338.html", + "isoDate": "2024-01-17T21:20:00.000Z" + }, + { + "title": "Ukraine's Security Service seizes hard drives containing covert recordings of Bihus.Info team", + "link": "https://news.yahoo.com/ukraines-security-seizes-hard-drives-211702771.html", + "pubDate": "2024-01-17T21:17:02Z", + "guid": "ukraines-security-seizes-hard-drives-211702771.html", + "isoDate": "2024-01-17T21:17:02.000Z" + }, + { + "title": "German parliament rejects motion to deliver Taurus missiles to Ukraine", + "link": "https://news.yahoo.com/german-parliament-rejects-motion-deliver-211557022.html", + "pubDate": "2024-01-17T21:15:57Z", + "guid": "german-parliament-rejects-motion-deliver-211557022.html", + "isoDate": "2024-01-17T21:15:57.000Z" + }, + { + "title": "Russia recruits Crimean locals for its African proxies, Kyiv says", + "link": "https://news.yahoo.com/russia-recruits-crimean-locals-african-205000866.html", + "pubDate": "2024-01-17T20:50:00Z", + "guid": "russia-recruits-crimean-locals-african-205000866.html", + "isoDate": "2024-01-17T20:50:00.000Z" + }, + { + "title": "Frontline situation and Ukraine's actions in 2024 discussed at Staff meeting", + "link": "https://news.yahoo.com/frontline-situation-ukraines-actions-2024-204328690.html", + "pubDate": "2024-01-17T20:43:28Z", + "guid": "frontline-situation-ukraines-actions-2024-204328690.html", + "isoDate": "2024-01-17T20:43:28.000Z" + }, + { + "title": "Zelenskyy on B\u0456hus.Info surveillance: Any pressure on journalists is unacceptable", + "link": "https://news.yahoo.com/zelenskyy-b-hus-surveillance-pressure-201938441.html", + "pubDate": "2024-01-17T20:19:38Z", + "guid": "zelenskyy-b-hus-surveillance-pressure-201938441.html", + "isoDate": "2024-01-17T20:19:38.000Z" + }, + { + "title": "Russians seek ways of being more effective in their attacks", + "link": "https://news.yahoo.com/russians-seek-ways-being-more-194534624.html", + "pubDate": "2024-01-17T19:45:34Z", + "guid": "russians-seek-ways-being-more-194534624.html", + "isoDate": "2024-01-17T19:45:34.000Z" + }, + { + "title": "World's second GovTech centre to open in Ukraine", + "link": "https://news.yahoo.com/worlds-second-govtech-centre-open-193854889.html", + "pubDate": "2024-01-17T19:38:54Z", + "guid": "worlds-second-govtech-centre-open-193854889.html", + "isoDate": "2024-01-17T19:38:54.000Z" + }, + { + "title": "Ukraine's state budget deficit after 2024 can be covered by revenues from frozen Russian assets \u2013 President's Office", + "link": "https://news.yahoo.com/ukraines-state-budget-deficit-2024-191411356.html", + "pubDate": "2024-01-17T19:14:11Z", + "guid": "ukraines-state-budget-deficit-2024-191411356.html", + "isoDate": "2024-01-17T19:14:11.000Z" + }, + { + "title": "German Bundestag rejects opposition proposal to supply Taurus to Ukraine", + "link": "https://news.yahoo.com/german-bundestag-rejects-opposition-proposal-191049215.html", + "pubDate": "2024-01-17T19:10:49Z", + "guid": "german-bundestag-rejects-opposition-proposal-191049215.html", + "isoDate": "2024-01-17T19:10:49.000Z" + }, + { + "title": "Ukraine's Foreign Minister talks to Serbian President in Davos about European integration and bilateral relations", + "link": "https://news.yahoo.com/ukraines-foreign-minister-talks-serbian-190715518.html", + "pubDate": "2024-01-17T19:07:15Z", + "guid": "ukraines-foreign-minister-talks-serbian-190715518.html", + "isoDate": "2024-01-17T19:07:15.000Z" + }, + { + "title": "NATO-Ukraine meeting in Brussels takes place without Ukraine's Commander-in-Chief \u2013 photo", + "link": "https://news.yahoo.com/nato-ukraine-meeting-brussels-takes-185154783.html", + "pubDate": "2024-01-17T18:51:54Z", + "guid": "nato-ukraine-meeting-brussels-takes-185154783.html", + "isoDate": "2024-01-17T18:51:54.000Z" + }, + { + "title": "Bulgaria has not yet sent Ukraine promised APCs, government explains why", + "link": "https://news.yahoo.com/bulgaria-not-yet-sent-ukraine-184112590.html", + "pubDate": "2024-01-17T18:41:12Z", + "guid": "bulgaria-not-yet-sent-ukraine-184112590.html", + "isoDate": "2024-01-17T18:41:12.000Z" + }, + { + "title": "Canada Named The Safest Place To Travel In 2024", + "link": "https://www.yahoo.com/entertainment/canada-named-safest-place-travel-182919043.html", + "pubDate": "2024-01-17T18:29:19Z", + "guid": "canada-named-safest-place-travel-182919043.html", + "isoDate": "2024-01-17T18:29:19.000Z" + }, + { + "title": "Ernest Bai Koroma: Former president can leave Sierra Leone amid Nigeria exile rumours", + "link": "https://news.yahoo.com/ernest-bai-koroma-former-president-173353668.html", + "pubDate": "2024-01-17T18:18:39Z", + "guid": "ernest-bai-koroma-former-president-173353668.html", + "isoDate": "2024-01-17T18:18:39.000Z" + }, + { + "title": "Ghana power crisis: Limited gas supply triggers nationwide power outage", + "link": "https://news.yahoo.com/ghana-power-crisis-limited-gas-062700589.html", + "pubDate": "2023-10-27T12:53:56Z", + "guid": "ghana-power-crisis-limited-gas-062700589.html", + "isoDate": "2023-10-27T12:53:56.000Z" + }, + { + "title": "War-weary mothers, wives and children of Ukrainian soldiers demand a cap on military service time", + "link": "https://news.yahoo.com/war-weary-mothers-wives-children-124310917.html", + "pubDate": "2023-10-27T12:43:10Z", + "guid": "war-weary-mothers-wives-children-124310917.html", + "isoDate": "2023-10-27T12:43:10.000Z" + }, + { + "title": "Russia using small waves of Iranian Shahed attack drones to probe Ukrainian air defenses, air force says", + "link": "https://news.yahoo.com/russia-using-small-waves-iranian-120500288.html", + "pubDate": "2023-10-27T12:05:00Z", + "guid": "russia-using-small-waves-iranian-120500288.html", + "isoDate": "2023-10-27T12:05:00.000Z" + }, + { + "title": "Ukraine to rally support at Malta talks, sees no cracks in allied backing", + "link": "https://finance.yahoo.com/news/ukraine-rally-support-malta-talks-115604950.html", + "pubDate": "2023-10-27T11:56:04Z", + "guid": "ukraine-rally-support-malta-talks-115604950.html", + "isoDate": "2023-10-27T11:56:04.000Z" + }, + { + "title": "Big explosion near Khmelnitskyi NPP, Kolomoisky turns over media network, hands-on F-16 training", + "link": "https://news.yahoo.com/big-explosion-near-khmelnitskyi-npp-114400091.html", + "pubDate": "2023-10-27T11:44:00Z", + "guid": "big-explosion-near-khmelnitskyi-npp-114400091.html", + "isoDate": "2023-10-27T11:44:00.000Z" + }, + { + "title": "China\u2019s Ex-Premier Li Keqiang, a Reformer Sidelined by Xi, Dies", + "link": "https://news.yahoo.com/china-ex-premier-li-keqiang-114026963.html", + "pubDate": "2023-10-27T11:40:26Z", + "guid": "china-ex-premier-li-keqiang-114026963.html", + "isoDate": "2023-10-27T11:40:26.000Z" + }, + { + "title": "Israel Latest: Hamas Won\u2019t Get Fuel for More Hostage Releases", + "link": "https://news.yahoo.com/israel-latest-troops-again-enter-054916158.html", + "pubDate": "2023-10-27T11:31:53Z", + "guid": "israel-latest-troops-again-enter-054916158.html", + "isoDate": "2023-10-27T11:31:53.000Z" + }, + { + "title": "16% of residents of front-line territories read Russian news \u2013 KIIS survey data", + "link": "https://news.yahoo.com/16-residents-front-line-territories-111900160.html", + "pubDate": "2023-10-27T11:19:00Z", + "guid": "16-residents-front-line-territories-111900160.html", + "isoDate": "2023-10-27T11:19:00.000Z" + }, + { + "title": "Ukraine Recap: Pro-Kremlin Ex-MP Shot in Assassination Attempt", + "link": "https://news.yahoo.com/ukraine-recap-china-likely-skip-070002566.html", + "pubDate": "2023-10-27T11:14:39Z", + "guid": "ukraine-recap-china-likely-skip-070002566.html", + "isoDate": "2023-10-27T11:14:39.000Z" + }, + { + "title": "In D.C., activists find that there are still pro-Ukraine Republicans, but their voters have mixed feelings on aid", + "link": "https://news.yahoo.com/d-c-activists-still-pro-110701338.html", + "pubDate": "2023-10-27T11:07:01Z", + "guid": "d-c-activists-still-pro-110701338.html", + "isoDate": "2023-10-27T11:07:01.000Z" + }, + { + "title": "Ukraine retrieves 50 bodies of fallen soldiers", + "link": "https://news.yahoo.com/ukraine-retrieves-50-bodies-fallen-110327486.html", + "pubDate": "2023-10-27T11:03:27Z", + "guid": "ukraine-retrieves-50-bodies-fallen-110327486.html", + "isoDate": "2023-10-27T11:03:27.000Z" + }, + { + "title": "Xi Faces \u2018Delicate Political Moment\u2019 in Handling Grief Over Li", + "link": "https://news.yahoo.com/xi-faces-delicate-political-moment-104705823.html", + "pubDate": "2023-10-27T10:47:05Z", + "guid": "xi-faces-delicate-political-moment-104705823.html", + "isoDate": "2023-10-27T10:47:05.000Z" + }, + { + "title": "The Kremlin plans to raffle off houses and holidays to shore up support for Putin ahead of an election: report", + "link": "https://news.yahoo.com/kremlin-plans-raffle-off-houses-103946087.html", + "pubDate": "2023-10-27T10:39:46Z", + "guid": "kremlin-plans-raffle-off-houses-103946087.html", + "isoDate": "2023-10-27T10:39:46.000Z" + }, + { + "title": "Scholz Warns\u00a0EU Leaders It\u2019s Time for Tough Spending Choices", + "link": "https://news.yahoo.com/scholz-warns-eu-leaders-time-103642794.html", + "pubDate": "2023-10-27T10:36:42Z", + "guid": "scholz-warns-eu-leaders-time-103642794.html", + "isoDate": "2023-10-27T10:36:42.000Z" + }, + { + "title": "Ukraine brings back bodies of 50 fallen soldiers", + "link": "https://news.yahoo.com/ukraine-brings-back-bodies-50-101100128.html", + "pubDate": "2023-10-27T10:11:00Z", + "guid": "ukraine-brings-back-bodies-50-101100128.html", + "isoDate": "2023-10-27T10:11:00.000Z" + }, + { + "title": "Ukraine\u2019s winter energy outlook: Challenges and opportunities \u2013 Interview with energy expert", + "link": "https://news.yahoo.com/ukraine-winter-energy-outlook-challenges-100600308.html", + "pubDate": "2023-10-27T10:06:00Z", + "guid": "ukraine-winter-energy-outlook-challenges-100600308.html", + "isoDate": "2023-10-27T10:06:00.000Z" + }, + { + "title": "Ugandan anger at plan to name road after slain tourists", + "link": "https://news.yahoo.com/ugandan-anger-plan-name-road-100116828.html", + "pubDate": "2023-10-27T10:05:15Z", + "guid": "ugandan-anger-plan-name-road-100116828.html", + "isoDate": "2023-10-27T10:05:15.000Z" + }, + { + "title": "US adds sanctions on Hamas, Iran's Revolutionary Guard members", + "link": "https://news.yahoo.com/us-puts-sanctions-hamas-members-100301815.html", + "pubDate": "2023-10-27T10:03:01Z", + "guid": "us-puts-sanctions-hamas-members-100301815.html", + "isoDate": "2023-10-27T10:03:01.000Z" + }, + { + "title": "Milei Support Opens Deep Crack in Argentina\u2019s Opposition Coalition", + "link": "https://news.yahoo.com/milei-support-opens-deep-crack-100000245.html", + "pubDate": "2023-10-27T10:00:00Z", + "guid": "milei-support-opens-deep-crack-100000245.html", + "isoDate": "2023-10-27T10:00:00.000Z" + }, + { + "title": "Orban repeats that Ukraine will not win war", + "link": "https://news.yahoo.com/orban-repeats-ukraine-not-win-095843629.html", + "pubDate": "2023-10-27T09:58:43Z", + "guid": "orban-repeats-ukraine-not-win-095843629.html", + "isoDate": "2023-10-27T09:58:43.000Z" + }, + { + "title": "Slovakia's PM says to EU that his country concerned about corruption in Ukraine \u2013 Politico", + "link": "https://news.yahoo.com/slovakias-pm-says-eu-country-095351899.html", + "pubDate": "2023-10-27T09:53:51Z", + "guid": "slovakias-pm-says-eu-country-095351899.html", + "isoDate": "2023-10-27T09:53:51.000Z" + }, + { + "title": "INSIGHT-Broken Lebanon cannot afford war, and Hezbollah knows it", + "link": "https://finance.yahoo.com/news/insight-broken-lebanon-cannot-afford-094621076.html", + "pubDate": "2023-10-27T09:46:21Z", + "guid": "insight-broken-lebanon-cannot-afford-094621076.html", + "isoDate": "2023-10-27T09:46:21.000Z" + }, + { + "title": "What Orb\u00e1n does towards Putin gives middle finger to Ukrainian soldiers \u2013 Luxembourg PM", + "link": "https://news.yahoo.com/orb-n-does-towards-putin-093538807.html", + "pubDate": "2023-10-27T09:35:38Z", + "guid": "orb-n-does-towards-putin-093538807.html", + "isoDate": "2023-10-27T09:35:38.000Z" + }, + { + "title": "Ukraine, Israel conflicts test US weapons production capacity", + "link": "https://news.yahoo.com/ukraine-israel-conflicts-test-us-093000675.html", + "pubDate": "2023-10-27T09:30:00Z", + "guid": "ukraine-israel-conflicts-test-us-093000675.html", + "isoDate": "2023-10-27T09:30:00.000Z" + }, + { + "title": "Expats in Netherlands Face Higher Taxes After House Votes to Shrink Benefit", + "link": "https://news.yahoo.com/expats-netherlands-face-higher-taxes-092439108.html", + "pubDate": "2023-10-27T09:24:39Z", + "guid": "expats-netherlands-face-higher-taxes-092439108.html", + "isoDate": "2023-10-27T09:24:39.000Z" + }, + { + "title": "Poll: Over half of Ukrainians in front-line, liberated regions lack news about war progress", + "link": "https://news.yahoo.com/poll-over-half-ukrainians-front-091729503.html", + "pubDate": "2023-10-27T09:17:29Z", + "guid": "poll-over-half-ukrainians-front-091729503.html", + "isoDate": "2023-10-27T09:17:29.000Z" + }, + { + "title": "Biden threads a needle with US strikes\u00a0against Iranian-backed militias", + "link": "https://news.yahoo.com/biden-threads-needle-us-strikes-043007298.html", + "pubDate": "2023-10-27T09:00:15Z", + "guid": "biden-threads-needle-us-strikes-043007298.html", + "isoDate": "2023-10-27T09:00:15.000Z" + }, + { + "title": "National newscast trusted by 44% of Ukrainians, Zelenskyy leads public figures list", + "link": "https://news.yahoo.com/national-newscast-trusted-44-ukrainians-085731899.html", + "pubDate": "2023-10-27T08:57:31Z", + "guid": "national-newscast-trusted-44-ukrainians-085731899.html", + "isoDate": "2023-10-27T08:57:31.000Z" + }, + { + "title": "Young Indians should work 70 hours a week, says billionaire tech founder", + "link": "https://finance.yahoo.com/news/young-indians-70-hours-week-084814107.html", + "pubDate": "2023-10-27T08:48:14Z", + "guid": "young-indians-70-hours-week-084814107.html", + "isoDate": "2023-10-27T08:48:14.000Z" + }, + { + "title": "Kakhovka HPP disaster goes beyond Ukraine's borders \u2013 UN assessment", + "link": "https://news.yahoo.com/kakhovka-hpp-disaster-goes-beyond-084626004.html", + "pubDate": "2023-10-27T08:46:26Z", + "guid": "kakhovka-hpp-disaster-goes-beyond-084626004.html", + "isoDate": "2023-10-27T08:46:26.000Z" + }, + { + "title": "Thaksin\u2019s Daughter Takes Helm of Thailand\u2019s Ruling Party", + "link": "https://news.yahoo.com/thaksin-daughter-takes-helm-thailand-082812592.html", + "pubDate": "2023-10-27T08:28:12Z", + "guid": "thaksin-daughter-takes-helm-thailand-082812592.html", + "isoDate": "2023-10-27T08:28:12.000Z" + }, + { + "title": "Putin will die, but it's not enough for changes in Russia \u2013 senior Ukrainian official", + "link": "https://news.yahoo.com/putin-die-not-enough-changes-082423329.html", + "pubDate": "2023-10-27T08:24:23Z", + "guid": "putin-die-not-enough-changes-082423329.html", + "isoDate": "2023-10-27T08:24:23.000Z" + }, + { + "title": "UK Defence Intelligence says Russia suspends missile launches while stockpiling for winter", + "link": "https://news.yahoo.com/uk-defence-intelligence-says-russia-082008426.html", + "pubDate": "2023-10-27T08:20:08Z", + "guid": "uk-defence-intelligence-says-russia-082008426.html", + "isoDate": "2023-10-27T08:20:08.000Z" + }, + { + "title": "Prime Ministers of Slovakia and Hungary \"stormed\" with questions about Ukraine at EU summit \u2013 Estonian Prime Minister", + "link": "https://news.yahoo.com/prime-ministers-slovakia-hungary-stormed-081502280.html", + "pubDate": "2023-10-27T08:15:02Z", + "guid": "prime-ministers-slovakia-hungary-stormed-081502280.html", + "isoDate": "2023-10-27T08:15:02.000Z" + }, + { + "title": "New US House speaker says aid requests for Ukraine, Israel should be split", + "link": "https://news.yahoo.com/us-house-speaker-says-aid-080201550.html", + "pubDate": "2023-10-27T08:02:01Z", + "guid": "us-house-speaker-says-aid-080201550.html", + "isoDate": "2023-10-27T08:02:01.000Z" + }, + { + "title": "In Photos: A Look Back at the Rise and Fall of Li\u00a0Keqiang\u2019s Political Career", + "link": "https://news.yahoo.com/photos-look-back-rise-fall-075125130.html", + "pubDate": "2023-10-27T07:51:25Z", + "guid": "photos-look-back-rise-fall-075125130.html", + "isoDate": "2023-10-27T07:51:25.000Z" + }, + { + "title": "Philippines Drops China Railway Deals, Seeks Other Funders", + "link": "https://news.yahoo.com/philippines-drops-china-railway-deals-064446168.html", + "pubDate": "2023-10-27T06:44:46Z", + "guid": "philippines-drops-china-railway-deals-064446168.html", + "isoDate": "2023-10-27T06:44:46.000Z" + }, + { + "title": "Ukraine's border guards capture Moscow resident, only survivor in his unit", + "link": "https://news.yahoo.com/ukraines-border-guards-capture-moscow-063949626.html", + "pubDate": "2023-10-27T06:39:49Z", + "guid": "ukraines-border-guards-capture-moscow-063949626.html", + "isoDate": "2023-10-27T06:39:49.000Z" + }, + { + "title": "Russian attacks kill 2, injure 11 in Ukraine", + "link": "https://news.yahoo.com/russian-attacks-kill-2-injure-063329281.html", + "pubDate": "2023-10-27T06:33:29Z", + "guid": "russian-attacks-kill-2-injure-063329281.html", + "isoDate": "2023-10-27T06:33:29.000Z" + }, + { + "title": "Russia launches 6 Shahed drones and a missile on Ukraine, air defence downs 5 UAVs", + "link": "https://news.yahoo.com/russia-launches-6-shahed-drones-055329405.html", + "pubDate": "2023-10-27T05:53:29Z", + "guid": "russia-launches-6-shahed-drones-055329405.html", + "isoDate": "2023-10-27T05:53:29.000Z" + }, + { + "title": "Taiwan Parties Push Alliance Talks in Bid to Beat Ruling DPP", + "link": "https://news.yahoo.com/taiwan-parties-push-alliance-talks-052321723.html", + "pubDate": "2023-10-27T05:23:21Z", + "guid": "taiwan-parties-push-alliance-talks-052321723.html", + "isoDate": "2023-10-27T05:23:21.000Z" + }, + { + "title": "Russia loses more than 500 soldiers, 4 tanks and 7 artillery systems", + "link": "https://news.yahoo.com/russia-loses-more-500-soldiers-051745615.html", + "pubDate": "2023-10-27T05:17:45Z", + "guid": "russia-loses-more-500-soldiers-051745615.html", + "isoDate": "2023-10-27T05:17:45.000Z" + }, + { + "title": "From Stalin to Putin, abortion has had a complicated history in Russia", + "link": "https://news.yahoo.com/stalin-putin-abortion-had-complicated-045809536.html", + "pubDate": "2023-10-27T04:58:09Z", + "guid": "stalin-putin-abortion-had-complicated-045809536.html", + "isoDate": "2023-10-27T04:58:09.000Z" + }, + { + "title": "New US House of Representatives speaker wants aid packages for Ukraine and Israel to be separate", + "link": "https://news.yahoo.com/us-house-representatives-speaker-wants-044750232.html", + "pubDate": "2023-10-27T04:47:50Z", + "guid": "us-house-representatives-speaker-wants-044750232.html", + "isoDate": "2023-10-27T04:47:50.000Z" + }, + { + "title": "South Korean and US forces stage drills for reaction to possible 'Hamas-style' attack by North Korea", + "link": "https://news.yahoo.com/south-korean-us-forces-stage-044600568.html", + "pubDate": "2023-10-27T04:46:00Z", + "guid": "south-korean-us-forces-stage-044600568.html", + "isoDate": "2023-10-27T04:46:00.000Z" + }, + { + "title": "China FM calls for 'stable' US ties on visit to weigh Xi summit", + "link": "https://news.yahoo.com/chinas-top-diplomat-starts-us-013420948.html", + "pubDate": "2023-10-27T04:03:06Z", + "guid": "chinas-top-diplomat-starts-us-013420948.html", + "isoDate": "2023-10-27T04:03:06.000Z" + }, + { + "title": "House Will Consider Ukraine, Israel Aid Separately, Johnson Says", + "link": "https://news.yahoo.com/house-consider-ukraine-israel-aid-033819381.html", + "pubDate": "2023-10-27T03:38:19Z", + "guid": "house-consider-ukraine-israel-aid-033819381.html", + "isoDate": "2023-10-27T03:38:19.000Z" + }, + { + "title": "US Military Attacks Two Syrian Facilities It Says Linked to Iran", + "link": "https://news.yahoo.com/us-military-attacks-two-syrian-032758454.html", + "pubDate": "2023-10-27T03:27:58Z", + "guid": "us-military-attacks-two-syrian-032758454.html", + "isoDate": "2023-10-27T03:27:58.000Z" + }, + { + "title": "What we know about Biden and House Speaker Mike Johnson's working relationship", + "link": "https://news.yahoo.com/know-biden-house-speaker-mike-030135382.html", + "pubDate": "2023-10-27T03:01:35Z", + "guid": "know-biden-house-speaker-mike-030135382.html", + "isoDate": "2023-10-27T03:01:35.000Z" + }, + { + "title": "US hits Iranian facilities in Syria following attacks on US troops", + "link": "https://news.yahoo.com/us-hits-iranian-facilities-syria-025558598.html", + "pubDate": "2023-10-27T02:55:58Z", + "guid": "us-hits-iranian-facilities-syria-025558598.html", + "isoDate": "2023-10-27T02:55:58.000Z" + }, + { + "title": "Bela bill: South Africans face jail if children not in school", + "link": "https://news.yahoo.com/bela-bill-south-africans-face-144635652.html", + "pubDate": "2023-10-27T15:13:14Z", + "guid": "bela-bill-south-africans-face-144635652.html", + "isoDate": "2023-10-27T15:13:14.000Z" + }, + { + "title": "Medvedchuk\u2019s family acquires $10 million Italian luxury yacht \u2018Amore Mio\u2019 \u2014 Russian media", + "link": "https://news.yahoo.com/medvedchuk-family-acquires-10-million-141500772.html", + "pubDate": "2023-10-27T14:15:00Z", + "guid": "medvedchuk-family-acquires-10-million-141500772.html", + "isoDate": "2023-10-27T14:15:00.000Z" + }, + { + "title": "Kirby says US strikes on Iran proxies in Syria were \u2018self-defense\u2019", + "link": "https://news.yahoo.com/kirby-says-us-strikes-iran-140326844.html", + "pubDate": "2023-10-27T14:03:26Z", + "guid": "kirby-says-us-strikes-iran-140326844.html", + "isoDate": "2023-10-27T14:03:26.000Z" + }, + { + "title": "OpenAI, Google and an 'digital anthropologist': the UN forms a high level board to explore AI governance", + "link": "https://news.yahoo.com/openai-google-digital-anthropologist-un-140258671.html", + "pubDate": "2023-10-27T14:02:58Z", + "guid": "openai-google-digital-anthropologist-un-140258671.html", + "isoDate": "2023-10-27T14:02:58.000Z" + }, + { + "title": "Blinken, Wang meet as US-China gear up towards expected leaders summit", + "link": "https://finance.yahoo.com/news/blinken-wang-meet-us-china-140108354.html", + "pubDate": "2023-10-27T14:01:08Z", + "guid": "blinken-wang-meet-us-china-140108354.html", + "isoDate": "2023-10-27T14:01:08.000Z" + }, + { + "title": "Nikki Haley\u2019s Foreign Policy Savvy Props Up Her Long-Shot Presidential Bid", + "link": "https://news.yahoo.com/nikki-haley-foreign-policy-savvy-140000069.html", + "pubDate": "2023-10-27T14:00:00Z", + "guid": "nikki-haley-foreign-policy-savvy-140000069.html", + "isoDate": "2023-10-27T14:00:00.000Z" + }, + { + "title": "UN Asks Google, Microsoft to Help It Figure Out How Risky AI Is", + "link": "https://news.yahoo.com/un-wants-figure-just-dangerous-135000609.html", + "pubDate": "2023-10-27T13:50:00Z", + "guid": "un-wants-figure-just-dangerous-135000609.html", + "isoDate": "2023-10-27T13:50:00.000Z" + }, + { + "title": "Poland sends personnel to Ukraine to repair military equipment", + "link": "https://news.yahoo.com/poland-sends-personnel-ukraine-repair-134546776.html", + "pubDate": "2023-10-27T13:45:46Z", + "guid": "poland-sends-personnel-ukraine-repair-134546776.html", + "isoDate": "2023-10-27T13:45:46.000Z" + }, + { + "title": "Satellites spot Russian Air Force painting decoy \u2018aircraft\u2019 instead of real fighters onto apron at Crimean base", + "link": "https://news.yahoo.com/satellites-spot-russian-air-force-134000156.html", + "pubDate": "2023-10-27T13:40:00Z", + "guid": "satellites-spot-russian-air-force-134000156.html", + "isoDate": "2023-10-27T13:40:00.000Z" + }, + { + "title": "US unveils new sanctions in push to cut off funding for Hamas", + "link": "https://news.yahoo.com/us-unveils-sanctions-push-cut-133818133.html", + "pubDate": "2023-10-27T13:38:18Z", + "guid": "us-unveils-sanctions-push-cut-133818133.html", + "isoDate": "2023-10-27T13:38:18.000Z" + }, + { + "title": "Russia seeks to gain some initiative in Ukraine to impress Putin \u2013 Estonian General Staff", + "link": "https://news.yahoo.com/russia-seeks-gain-initiative-ukraine-133619006.html", + "pubDate": "2023-10-27T13:36:19Z", + "guid": "russia-seeks-gain-initiative-ukraine-133619006.html", + "isoDate": "2023-10-27T13:36:19.000Z" + }, + { + "title": "Sanctioned Tycoon Fridman Denied Extra Cash for UK Mansion", + "link": "https://news.yahoo.com/sanctioned-billionaire-fridman-denied-extra-130533084.html", + "pubDate": "2023-10-27T13:23:29Z", + "guid": "sanctioned-billionaire-fridman-denied-extra-130533084.html", + "isoDate": "2023-10-27T13:23:29.000Z" + }, + { + "title": "UK Defense Ministry: Russia pauses air-launched cruise missile strikes against Ukraine", + "link": "https://news.yahoo.com/uk-defense-ministry-russia-pauses-131123043.html", + "pubDate": "2023-10-27T13:11:23Z", + "guid": "uk-defense-ministry-russia-pauses-131123043.html", + "isoDate": "2023-10-27T13:11:23.000Z" + }, + { + "title": "Johnson calls to \u2018bifurcate\u2019 funding for Ukraine, Israel", + "link": "https://news.yahoo.com/johnson-calls-bifurcate-funding-ukraine-130950111.html", + "pubDate": "2023-10-27T13:09:50Z", + "guid": "johnson-calls-bifurcate-funding-ukraine-130950111.html", + "isoDate": "2023-10-27T13:09:50.000Z" + }, + { + "title": "PM Shmyhal meets with new Canadian ambassador, discusses economic cooperation", + "link": "https://news.yahoo.com/pm-shmyhal-meets-canadian-ambassador-130011866.html", + "pubDate": "2023-10-27T13:00:11Z", + "guid": "pm-shmyhal-meets-canadian-ambassador-130011866.html", + "isoDate": "2023-10-27T13:00:11.000Z" + }, + { + "title": "Ukraine's State Investigation Bureau explains searches at thermal power plants in Kyiv: officials appropriated repair funds", + "link": "https://news.yahoo.com/ukraines-state-investigation-bureau-explains-125427731.html", + "pubDate": "2023-10-27T12:54:27Z", + "guid": "ukraines-state-investigation-bureau-explains-125427731.html", + "isoDate": "2023-10-27T12:54:27.000Z" + }, + { + "title": "Belarusian volunteer soldier who liberated Irpin and Kherson KIA in Ukraine", + "link": "https://news.yahoo.com/belarusian-volunteer-soldier-liberated-irpin-124300908.html", + "pubDate": "2023-10-27T12:43:00Z", + "guid": "belarusian-volunteer-soldier-liberated-irpin-124300908.html", + "isoDate": "2023-10-27T12:43:00.000Z" + }, + { + "title": "India Likely to Appeal Qatar Death Sentence for Eight in Spy Case", + "link": "https://news.yahoo.com/india-likely-appeal-qatar-death-122906502.html", + "pubDate": "2023-10-27T12:29:06Z", + "guid": "india-likely-appeal-qatar-death-122906502.html", + "isoDate": "2023-10-27T12:29:06.000Z" + }, + { + "title": "Pro-Russian oligarch becomes owner of new fighter yacht", + "link": "https://news.yahoo.com/pro-russian-oligarch-becomes-owner-121230298.html", + "pubDate": "2023-10-27T12:12:30Z", + "guid": "pro-russian-oligarch-becomes-owner-121230298.html", + "isoDate": "2023-10-27T12:12:30.000Z" + }, + { + "title": "Fico ready to increase contribution to EU budget under certain conditions to help Ukraine", + "link": "https://news.yahoo.com/fico-ready-increase-contribution-eu-115944498.html", + "pubDate": "2023-10-27T11:59:44Z", + "guid": "fico-ready-increase-contribution-eu-115944498.html", + "isoDate": "2023-10-27T11:59:44.000Z" + }, + { + "title": "Fico and Orb\u00e1n do not completely reject support for Ukraine \u2013 Bulgarian PM", + "link": "https://news.yahoo.com/fico-orb-n-not-completely-114752105.html", + "pubDate": "2023-10-27T11:47:52Z", + "guid": "fico-orb-n-not-completely-114752105.html", + "isoDate": "2023-10-27T11:47:52.000Z" + }, + { + "title": "Deputy police chief suspected of possible ties with Russia says media distorts facts", + "link": "https://news.yahoo.com/deputy-police-chief-suspected-possible-113404297.html", + "pubDate": "2023-10-27T11:34:04Z", + "guid": "deputy-police-chief-suspected-possible-113404297.html", + "isoDate": "2023-10-27T11:34:04.000Z" + }, + { + "title": "\"It's time others stepped up\": protests in support of demobilisation held in Ukraine", + "link": "https://news.yahoo.com/time-others-protests-support-demobilisation-105100473.html", + "pubDate": "2023-10-27T10:51:00Z", + "guid": "time-others-protests-support-demobilisation-105100473.html", + "isoDate": "2023-10-27T10:51:00.000Z" + }, + { + "title": "Digital Transformation Ministry demonstrates Ukrainian-made experimental mine-clearing drone", + "link": "https://news.yahoo.com/digital-transformation-ministry-shows-ukraine-102941391.html", + "pubDate": "2023-10-27T10:29:41Z", + "guid": "digital-transformation-ministry-shows-ukraine-102941391.html", + "isoDate": "2023-10-27T10:29:41.000Z" + }, + { + "title": "Zelenskyy tells Sunak Russia loses at least brigade in offensive on Avdiivka", + "link": "https://news.yahoo.com/russia-lost-least-brigade-avdiivka-101012061.html", + "pubDate": "2023-10-27T10:10:12Z", + "guid": "russia-lost-least-brigade-avdiivka-101012061.html", + "isoDate": "2023-10-27T10:10:12.000Z" + } +] diff --git a/intro to react/newData/oldNews/b324ab3713958bf454fad8dd6ea31b589603610a469fd80405dce00d0db6c452.json b/intro to react/newData/oldNews/b324ab3713958bf454fad8dd6ea31b589603610a469fd80405dce00d0db6c452.json index 486e42d..1e4afc8 100644 --- a/intro to react/newData/oldNews/b324ab3713958bf454fad8dd6ea31b589603610a469fd80405dce00d0db6c452.json +++ b/intro to react/newData/oldNews/b324ab3713958bf454fad8dd6ea31b589603610a469fd80405dce00d0db6c452.json @@ -1,2102 +1,2102 @@ [ - { - "creator": "futureisnow23", - "title": "Tesla Cybertruck Pricing and Specs", - "link": "https://www.tesla.com/cybertruck/design", - "pubDate": "Thu, 30 Nov 2023 20:57:29 +0000", - "dc:creator": "futureisnow23", - "comments": "https://news.ycombinator.com/item?id=38478964", - "content": "\n

Article URL: https://www.tesla.com/cybertruck/design

\n

Comments URL: https://news.ycombinator.com/item?id=38478964

\n

Points: 101

\n

# Comments: 288

\n", - "contentSnippet": "Article URL: https://www.tesla.com/cybertruck/design\nComments URL: https://news.ycombinator.com/item?id=38478964\nPoints: 101\n# Comments: 288", - "guid": "https://news.ycombinator.com/item?id=38478964", - "isoDate": "2023-11-30T20:57:29.000Z" - }, - { - "creator": "zvr", - "title": "Compiler Options Hardening Guide for C and C++", - "link": "https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html", - "pubDate": "Thu, 30 Nov 2023 20:50:36 +0000", - "dc:creator": "zvr", - "comments": "https://news.ycombinator.com/item?id=38478866", - "content": "\n

Article URL: https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html

\n

Comments URL: https://news.ycombinator.com/item?id=38478866

\n

Points: 30

\n

# Comments: 15

\n", - "contentSnippet": "Article URL: https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html\nComments URL: https://news.ycombinator.com/item?id=38478866\nPoints: 30\n# Comments: 15", - "guid": "https://news.ycombinator.com/item?id=38478866", - "isoDate": "2023-11-30T20:50:36.000Z" - }, - { - "creator": "lagniappe", - "title": "Retro.directory", - "link": "http://retro.directory/", - "pubDate": "Thu, 30 Nov 2023 20:08:09 +0000", - "dc:creator": "lagniappe", - "comments": "https://news.ycombinator.com/item?id=38478404", - "content": "\n

Article URL: http://retro.directory/

\n

Comments URL: https://news.ycombinator.com/item?id=38478404

\n

Points: 50

\n

# Comments: 8

\n", - "contentSnippet": "Article URL: http://retro.directory/\nComments URL: https://news.ycombinator.com/item?id=38478404\nPoints: 50\n# Comments: 8", - "guid": "https://news.ycombinator.com/item?id=38478404", - "isoDate": "2023-11-30T20:08:09.000Z" - }, - { - "creator": "Philpax", - "title": "How I made Bomb Rush Cyberfunk multiplayer", - "link": "https://notnite.com/blog/slop-crew", - "pubDate": "Thu, 30 Nov 2023 19:25:41 +0000", - "dc:creator": "Philpax", - "comments": "https://news.ycombinator.com/item?id=38477940", - "content": "\n

Article URL: https://notnite.com/blog/slop-crew

\n

Comments URL: https://news.ycombinator.com/item?id=38477940

\n

Points: 34

\n

# Comments: 3

\n", - "contentSnippet": "Article URL: https://notnite.com/blog/slop-crew\nComments URL: https://news.ycombinator.com/item?id=38477940\nPoints: 34\n# Comments: 3", - "guid": "https://news.ycombinator.com/item?id=38477940", - "isoDate": "2023-11-30T19:25:41.000Z" - }, - { - "creator": "andsoitis", - "title": "Turbo Pascal Turns 40", - "link": "https://blog.marcocantu.com/blog/2023-november-turbopascal40.html", - "pubDate": "Thu, 30 Nov 2023 19:08:48 +0000", - "dc:creator": "andsoitis", - "comments": "https://news.ycombinator.com/item?id=38477688", - "content": "\n

Article URL: https://blog.marcocantu.com/blog/2023-november-turbopascal40.html

\n

Comments URL: https://news.ycombinator.com/item?id=38477688

\n

Points: 102

\n

# Comments: 52

\n", - "contentSnippet": "Article URL: https://blog.marcocantu.com/blog/2023-november-turbopascal40.html\nComments URL: https://news.ycombinator.com/item?id=38477688\nPoints: 102\n# Comments: 52", - "guid": "https://news.ycombinator.com/item?id=38477688", - "isoDate": "2023-11-30T19:08:48.000Z" - }, - { - "creator": "beefman", - "title": "Visual Anagrams: Generating optical illusions with diffusion models", - "link": "https://dangeng.github.io/visual_anagrams/", - "pubDate": "Thu, 30 Nov 2023 18:39:47 +0000", - "dc:creator": "beefman", - "comments": "https://news.ycombinator.com/item?id=38477259", - "content": "\n

Article URL: https://dangeng.github.io/visual_anagrams/

\n

Comments URL: https://news.ycombinator.com/item?id=38477259

\n

Points: 325

\n

# Comments: 23

\n", - "contentSnippet": "Article URL: https://dangeng.github.io/visual_anagrams/\nComments URL: https://news.ycombinator.com/item?id=38477259\nPoints: 325\n# Comments: 23", - "guid": "https://news.ycombinator.com/item?id=38477259", - "isoDate": "2023-11-30T18:39:47.000Z" - }, - { - "creator": "polyrand", - "title": "Accelerating Generative AI with PyTorch II: GPT, Fast", - "link": "https://pytorch.org/blog/accelerating-generative-ai-2/", - "pubDate": "Thu, 30 Nov 2023 18:35:00 +0000", - "dc:creator": "polyrand", - "comments": "https://news.ycombinator.com/item?id=38477197", - "content": "\n

Article URL: https://pytorch.org/blog/accelerating-generative-ai-2/

\n

Comments URL: https://news.ycombinator.com/item?id=38477197

\n

Points: 174

\n

# Comments: 43

\n", - "contentSnippet": "Article URL: https://pytorch.org/blog/accelerating-generative-ai-2/\nComments URL: https://news.ycombinator.com/item?id=38477197\nPoints: 174\n# Comments: 43", - "guid": "https://news.ycombinator.com/item?id=38477197", - "isoDate": "2023-11-30T18:35:00.000Z" - }, - { - "creator": "jevans", - "title": "The weirdest bug I've seen yet", - "link": "https://engineering.gusto.com/the-weirdest-bug-ive-seen-yet/", - "pubDate": "Thu, 30 Nov 2023 18:29:01 +0000", - "dc:creator": "jevans", - "comments": "https://news.ycombinator.com/item?id=38477100", - "content": "\n

Article URL: https://engineering.gusto.com/the-weirdest-bug-ive-seen-yet/

\n

Comments URL: https://news.ycombinator.com/item?id=38477100

\n

Points: 309

\n

# Comments: 190

\n", - "contentSnippet": "Article URL: https://engineering.gusto.com/the-weirdest-bug-ive-seen-yet/\nComments URL: https://news.ycombinator.com/item?id=38477100\nPoints: 309\n# Comments: 190", - "guid": "https://news.ycombinator.com/item?id=38477100", - "isoDate": "2023-11-30T18:29:01.000Z" - }, - { - "creator": "todsacerdoti", - "title": "You do need a technical co-founder [video]", - "link": "https://www.ycombinator.com/blog/why-you-really-do-need-a-technical-co-founder/", - "pubDate": "Thu, 30 Nov 2023 18:25:44 +0000", - "dc:creator": "todsacerdoti", - "comments": "https://news.ycombinator.com/item?id=38477057", - "content": "\n

Article URL: https://www.ycombinator.com/blog/why-you-really-do-need-a-technical-co-founder/

\n

Comments URL: https://news.ycombinator.com/item?id=38477057

\n

Points: 161

\n

# Comments: 222

\n", - "contentSnippet": "Article URL: https://www.ycombinator.com/blog/why-you-really-do-need-a-technical-co-founder/\nComments URL: https://news.ycombinator.com/item?id=38477057\nPoints: 161\n# Comments: 222", - "guid": "https://news.ycombinator.com/item?id=38477057", - "isoDate": "2023-11-30T18:25:44.000Z" - }, - { - "creator": "jasondavies", - "title": "Animate Anyone: Image-to-video synthesis for character animation", - "link": "https://humanaigc.github.io/animate-anyone/", - "pubDate": "Thu, 30 Nov 2023 17:45:57 +0000", - "dc:creator": "jasondavies", - "comments": "https://news.ycombinator.com/item?id=38476482", - "content": "\n

Article URL: https://humanaigc.github.io/animate-anyone/

\n

Comments URL: https://news.ycombinator.com/item?id=38476482

\n

Points: 86

\n

# Comments: 33

\n", - "contentSnippet": "Article URL: https://humanaigc.github.io/animate-anyone/\nComments URL: https://news.ycombinator.com/item?id=38476482\nPoints: 86\n# Comments: 33", - "guid": "https://news.ycombinator.com/item?id=38476482", - "isoDate": "2023-11-30T17:45:57.000Z" - }, - { - "creator": "green-eclipse", - "title": "How to ripen and store avocados", - "link": "https://www.seriouseats.com/how-to-ripen-avocados-7377071", - "pubDate": "Thu, 30 Nov 2023 17:05:48 +0000", - "dc:creator": "green-eclipse", - "comments": "https://news.ycombinator.com/item?id=38475926", - "content": "\n

Article URL: https://www.seriouseats.com/how-to-ripen-avocados-7377071

\n

Comments URL: https://news.ycombinator.com/item?id=38475926

\n

Points: 164

\n

# Comments: 119

\n", - "contentSnippet": "Article URL: https://www.seriouseats.com/how-to-ripen-avocados-7377071\nComments URL: https://news.ycombinator.com/item?id=38475926\nPoints: 164\n# Comments: 119", - "guid": "https://news.ycombinator.com/item?id=38475926", - "isoDate": "2023-11-30T17:05:48.000Z" - }, - { - "creator": "axiomdata316", - "title": "Stanis\u0142aw Lem's vision of artificial life", - "link": "https://thereader.mitpress.mit.edu/stanislaw-lems-prescient-vision-of-artificial-life/", - "pubDate": "Thu, 30 Nov 2023 16:35:24 +0000", - "dc:creator": "axiomdata316", - "comments": "https://news.ycombinator.com/item?id=38475545", - "content": "\n

Article URL: https://thereader.mitpress.mit.edu/stanislaw-lems-prescient-vision-of-artificial-life/

\n

Comments URL: https://news.ycombinator.com/item?id=38475545

\n

Points: 303

\n

# Comments: 119

\n", - "contentSnippet": "Article URL: https://thereader.mitpress.mit.edu/stanislaw-lems-prescient-vision-of-artificial-life/\nComments URL: https://news.ycombinator.com/item?id=38475545\nPoints: 303\n# Comments: 119", - "guid": "https://news.ycombinator.com/item?id=38475545", - "isoDate": "2023-11-30T16:35:24.000Z" - }, - { - "creator": "mnode", - "title": "Large language models lack deep insights or a theory of mind", - "link": "https://arxiv.org/abs/2311.16093", - "pubDate": "Thu, 30 Nov 2023 15:31:26 +0000", - "dc:creator": "mnode", - "comments": "https://news.ycombinator.com/item?id=38474696", - "content": "\n

Article URL: https://arxiv.org/abs/2311.16093

\n

Comments URL: https://news.ycombinator.com/item?id=38474696

\n

Points: 210

\n

# Comments: 205

\n", - "contentSnippet": "Article URL: https://arxiv.org/abs/2311.16093\nComments URL: https://news.ycombinator.com/item?id=38474696\nPoints: 210\n# Comments: 205", - "guid": "https://news.ycombinator.com/item?id=38474696", - "isoDate": "2023-11-30T15:31:26.000Z" - }, - { - "creator": "gmays", - "title": "Astronomers find six planets orbiting in resonance", - "link": "https://www.astronomy.com/science/astronomers-find-six-planets-orbiting-in-resonance/", - "pubDate": "Thu, 30 Nov 2023 15:06:51 +0000", - "dc:creator": "gmays", - "comments": "https://news.ycombinator.com/item?id=38474364", - "content": "\n

Article URL: https://www.astronomy.com/science/astronomers-find-six-planets-orbiting-in-resonance/

\n

Comments URL: https://news.ycombinator.com/item?id=38474364

\n

Points: 128

\n

# Comments: 30

\n", - "contentSnippet": "Article URL: https://www.astronomy.com/science/astronomers-find-six-planets-orbiting-in-resonance/\nComments URL: https://news.ycombinator.com/item?id=38474364\nPoints: 128\n# Comments: 30", - "guid": "https://news.ycombinator.com/item?id=38474364", - "isoDate": "2023-11-30T15:06:51.000Z" - }, - { - "creator": "rcarmo", - "title": "Scripts for Streamlining Your Homelab with Proxmox VE", - "link": "https://tteck.github.io/Proxmox/", - "pubDate": "Thu, 30 Nov 2023 14:36:43 +0000", - "dc:creator": "rcarmo", - "comments": "https://news.ycombinator.com/item?id=38474003", - "content": "\n

Article URL: https://tteck.github.io/Proxmox/

\n

Comments URL: https://news.ycombinator.com/item?id=38474003

\n

Points: 137

\n

# Comments: 89

\n", - "contentSnippet": "Article URL: https://tteck.github.io/Proxmox/\nComments URL: https://news.ycombinator.com/item?id=38474003\nPoints: 137\n# Comments: 89", - "guid": "https://news.ycombinator.com/item?id=38474003", - "isoDate": "2023-11-30T14:36:43.000Z" - }, - { - "creator": "CathalMullan", - "title": "Yabai \u2013 A tiling window manager for macOS", - "link": "https://github.com/koekeishiya/yabai", - "pubDate": "Thu, 30 Nov 2023 14:32:15 +0000", - "dc:creator": "CathalMullan", - "comments": "https://news.ycombinator.com/item?id=38473942", - "content": "\n

Article URL: https://github.com/koekeishiya/yabai

\n

Comments URL: https://news.ycombinator.com/item?id=38473942

\n

Points: 222

\n

# Comments: 165

\n", - "contentSnippet": "Article URL: https://github.com/koekeishiya/yabai\nComments URL: https://news.ycombinator.com/item?id=38473942\nPoints: 222\n# Comments: 165", - "guid": "https://news.ycombinator.com/item?id=38473942", - "isoDate": "2023-11-30T14:32:15.000Z" - }, - { - "creator": "matharmin", - "title": "Show HN: Bi-directional sync between Postgres and SQLite", - "link": "https://powersync.com", - "pubDate": "Thu, 30 Nov 2023 14:13:25 +0000", - "dc:creator": "matharmin", - "comments": "https://news.ycombinator.com/item?id=38473743", - "content": "\n

Hi HN,

Today we\u2019re launching PowerSync, a Postgres<>SQLite bi-directional sync engine that enables an offline-first app architecture. It currently supports Flutter, React Native and web (JavaScript) using Wasm SQLite in the browser, with more client SDKs on the way.

Conrad and I (Ralf) have been working on our sync engine since 2009, originally as part of a full-stack app platform. That version of the system is still used in production worldwide and we\u2019ve learnt a lot from its use cases and scaling. About a year ago we started on spinning off PowerSync as a standalone product that is designed to be stack-agnostic.

If you\u2019d like to see a simple demo, check out the pebbles widget on the landing page here: https://www.powersync.com/

We wrote about our architecture and design philosophy here: https://www.powersync.com/blog/introducing-powersync-v1-0-po...

This covers amongst other things how we designed the system for scalable dynamic partial replication, why we use a server authority architecture based on an event log instead of CRDTs for merging changes, and the approach to consistency.

Our docs can be found here: https://docs.powersync.com/

We would love to hear your feedback!\n- Ralf, Conrad, Kobie, Phillip and team

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38473743

\n

Points: 34

\n

# Comments: 4

\n", - "contentSnippet": "Hi HN,\nToday we\u2019re launching PowerSync, a PostgresSQLite bi-directional sync engine that enables an offline-first app architecture. It currently supports Flutter, React Native and web (JavaScript) using Wasm SQLite in the browser, with more client SDKs on the way.\nConrad and I (Ralf) have been working on our sync engine since 2009, originally as part of a full-stack app platform. That version of the system is still used in production worldwide and we\u2019ve learnt a lot from its use cases and scaling. About a year ago we started on spinning off PowerSync as a standalone product that is designed to be stack-agnostic.\nIf you\u2019d like to see a simple demo, check out the pebbles widget on the landing page here: https://www.powersync.com/\nWe wrote about our architecture and design philosophy here: https://www.powersync.com/blog/introducing-powersync-v1-0-po...\nThis covers amongst other things how we designed the system for scalable dynamic partial replication, why we use a server authority architecture based on an event log instead of CRDTs for merging changes, and the approach to consistency.\nOur docs can be found here: https://docs.powersync.com/\nWe would love to hear your feedback!\n- Ralf, Conrad, Kobie, Phillip and team\nComments URL: https://news.ycombinator.com/item?id=38473743\nPoints: 34\n# Comments: 4", - "guid": "https://news.ycombinator.com/item?id=38473743", - "isoDate": "2023-11-30T14:13:25.000Z" - }, - { - "creator": "wslh", - "title": "Can generalist foundation models beat special-purpose tuning?", - "link": "https://arxiv.org/abs/2311.16452", - "pubDate": "Thu, 30 Nov 2023 11:14:23 +0000", - "dc:creator": "wslh", - "comments": "https://news.ycombinator.com/item?id=38472128", - "content": "\n

Article URL: https://arxiv.org/abs/2311.16452

\n

Comments URL: https://news.ycombinator.com/item?id=38472128

\n

Points: 100

\n

# Comments: 57

\n", - "contentSnippet": "Article URL: https://arxiv.org/abs/2311.16452\nComments URL: https://news.ycombinator.com/item?id=38472128\nPoints: 100\n# Comments: 57", - "guid": "https://news.ycombinator.com/item?id=38472128", - "isoDate": "2023-11-30T11:14:23.000Z" - }, - { - "creator": "duck", - "title": "Brickception", - "link": "https://brickception.xyz/", - "pubDate": "Thu, 30 Nov 2023 07:35:17 +0000", - "dc:creator": "duck", - "comments": "https://news.ycombinator.com/item?id=38470764", - "content": "\n

Article URL: https://brickception.xyz/

\n

Comments URL: https://news.ycombinator.com/item?id=38470764

\n

Points: 492

\n

# Comments: 73

\n", - "contentSnippet": "Article URL: https://brickception.xyz/\nComments URL: https://news.ycombinator.com/item?id=38470764\nPoints: 492\n# Comments: 73", - "guid": "https://news.ycombinator.com/item?id=38470764", - "isoDate": "2023-11-30T07:35:17.000Z" - }, - { - "creator": "costco", - "title": "Why I always hit the crosswalk button (2015)", - "link": "https://www.klittlepage.com/2015/01/21/why-i-always-hit-the-crosswalk-button/", - "pubDate": "Wed, 29 Nov 2023 16:46:00 +0000", - "dc:creator": "costco", - "comments": "https://news.ycombinator.com/item?id=38461726", - "content": "\n

Article URL: https://www.klittlepage.com/2015/01/21/why-i-always-hit-the-crosswalk-button/

\n

Comments URL: https://news.ycombinator.com/item?id=38461726

\n

Points: 31

\n

# Comments: 79

\n", - "contentSnippet": "Article URL: https://www.klittlepage.com/2015/01/21/why-i-always-hit-the-crosswalk-button/\nComments URL: https://news.ycombinator.com/item?id=38461726\nPoints: 31\n# Comments: 79", - "guid": "https://news.ycombinator.com/item?id=38461726", - "isoDate": "2023-11-29T16:46:00.000Z" - }, - { - "creator": "toomuchtodo", - "title": "Broadcom to Cut Almost 1,300 VMware Jobs in California After Takeover", - "link": "https://www.bloomberg.com/news/articles/2023-11-30/broadcom-to-cut-almost-1-300-vmware-jobs-in-california-after-takeover", - "pubDate": "Thu, 30 Nov 2023 23:28:42 +0000", - "dc:creator": "toomuchtodo", - "comments": "https://news.ycombinator.com/item?id=38480748", - "content": "\n

Article URL: https://www.bloomberg.com/news/articles/2023-11-30/broadcom-to-cut-almost-1-300-vmware-jobs-in-california-after-takeover

\n

Comments URL: https://news.ycombinator.com/item?id=38480748

\n

Points: 75

\n

# Comments: 21

\n", - "contentSnippet": "Article URL: https://www.bloomberg.com/news/articles/2023-11-30/broadcom-to-cut-almost-1-300-vmware-jobs-in-california-after-takeover\nComments URL: https://news.ycombinator.com/item?id=38480748\nPoints: 75\n# Comments: 21", - "guid": "https://news.ycombinator.com/item?id=38480748", - "isoDate": "2023-11-30T23:28:42.000Z" - }, - { - "creator": "Kharacternyk", - "title": "Show HN: Play a pen-and-paper game that is almost unknown in the US and Europe", - "link": "https://www.paper-tactics.com", - "pubDate": "Thu, 30 Nov 2023 11:44:43 +0000", - "dc:creator": "Kharacternyk", - "comments": "https://news.ycombinator.com/item?id=38472333", - "content": "\n

Article URL: https://www.paper-tactics.com

\n

Comments URL: https://news.ycombinator.com/item?id=38472333

\n

Points: 65

\n

# Comments: 26

\n", - "contentSnippet": "Article URL: https://www.paper-tactics.com\nComments URL: https://news.ycombinator.com/item?id=38472333\nPoints: 65\n# Comments: 26", - "guid": "https://news.ycombinator.com/item?id=38472333", - "isoDate": "2023-11-30T11:44:43.000Z" - }, - { - "creator": "whereistimbo", - "title": "In OpenZFS and Btrfs, everyone was just guessing", - "link": "https://www.phoronix.com/forums/forum/phoronix/latest-phoronix-articles/1424461-openzfs-is-still-battling-a-data-corruption-issue?p=1424496#post1424496", - "pubDate": "Thu, 30 Nov 2023 11:13:51 +0000", - "dc:creator": "whereistimbo", - "comments": "https://news.ycombinator.com/item?id=38472124", - "content": "\n

Article URL: https://www.phoronix.com/forums/forum/phoronix/latest-phoronix-articles/1424461-openzfs-is-still-battling-a-data-corruption-issue?p=1424496#post1424496

\n

Comments URL: https://news.ycombinator.com/item?id=38472124

\n

Points: 68

\n

# Comments: 50

\n", - "contentSnippet": "Article URL: https://www.phoronix.com/forums/forum/phoronix/latest-phoronix-articles/1424461-openzfs-is-still-battling-a-data-corruption-issue?p=1424496#post1424496\nComments URL: https://news.ycombinator.com/item?id=38472124\nPoints: 68\n# Comments: 50", - "guid": "https://news.ycombinator.com/item?id=38472124", - "isoDate": "2023-11-30T11:13:51.000Z" - }, - { - "creator": "luu", - "title": "Interview with Viktor Lofgren from Marginalia Search", - "link": "https://nlnet.nl/news/2023/20231016-marginalia.html", - "pubDate": "Thu, 30 Nov 2023 07:47:58 +0000", - "dc:creator": "luu", - "comments": "https://news.ycombinator.com/item?id=38470832", - "content": "\n

Article URL: https://nlnet.nl/news/2023/20231016-marginalia.html

\n

Comments URL: https://news.ycombinator.com/item?id=38470832

\n

Points: 37

\n

# Comments: 8

\n", - "contentSnippet": "Article URL: https://nlnet.nl/news/2023/20231016-marginalia.html\nComments URL: https://news.ycombinator.com/item?id=38470832\nPoints: 37\n# Comments: 8", - "guid": "https://news.ycombinator.com/item?id=38470832", - "isoDate": "2023-11-30T07:47:58.000Z" - }, - { - "creator": "duck", - "title": "Properties of Lights Out: The Game", - "link": "https://imois.in/posts/the-properties-of-lights-out-the-game/", - "pubDate": "Thu, 30 Nov 2023 06:27:49 +0000", - "dc:creator": "duck", - "comments": "https://news.ycombinator.com/item?id=38470355", - "content": "\n

Article URL: https://imois.in/posts/the-properties-of-lights-out-the-game/

\n

Comments URL: https://news.ycombinator.com/item?id=38470355

\n

Points: 32

\n

# Comments: 6

\n", - "contentSnippet": "Article URL: https://imois.in/posts/the-properties-of-lights-out-the-game/\nComments URL: https://news.ycombinator.com/item?id=38470355\nPoints: 32\n# Comments: 6", - "guid": "https://news.ycombinator.com/item?id=38470355", - "isoDate": "2023-11-30T06:27:49.000Z" - }, - { - "creator": "indrora", - "title": "A reality bending mistake in Apple's computational photography", - "link": "https://appleinsider.com/articles/23/11/30/a-bride-to-be-discovers-a-reality-bending-mistake-in-apples-computational-photography", - "pubDate": "Fri, 01 Dec 2023 02:02:25 +0000", - "dc:creator": "indrora", - "comments": "https://news.ycombinator.com/item?id=38482085", - "content": "\n

Article URL: https://appleinsider.com/articles/23/11/30/a-bride-to-be-discovers-a-reality-bending-mistake-in-apples-computational-photography

\n

Comments URL: https://news.ycombinator.com/item?id=38482085

\n

Points: 44

\n

# Comments: 6

\n", - "contentSnippet": "Article URL: https://appleinsider.com/articles/23/11/30/a-bride-to-be-discovers-a-reality-bending-mistake-in-apples-computational-photography\nComments URL: https://news.ycombinator.com/item?id=38482085\nPoints: 44\n# Comments: 6", - "guid": "https://news.ycombinator.com/item?id=38482085", - "isoDate": "2023-12-01T02:02:25.000Z" - }, - { - "creator": "rkwz", - "title": "ChatGPT's 1-Year Anniversary: Are Open-Source Large Language Models Catching Up?", - "link": "https://arxiv.org/abs/2311.16989", - "pubDate": "Fri, 01 Dec 2023 01:49:36 +0000", - "dc:creator": "rkwz", - "comments": "https://news.ycombinator.com/item?id=38481970", - "content": "\n

Article URL: https://arxiv.org/abs/2311.16989

\n

Comments URL: https://news.ycombinator.com/item?id=38481970

\n

Points: 33

\n

# Comments: 2

\n", - "contentSnippet": "Article URL: https://arxiv.org/abs/2311.16989\nComments URL: https://news.ycombinator.com/item?id=38481970\nPoints: 33\n# Comments: 2", - "guid": "https://news.ycombinator.com/item?id=38481970", - "isoDate": "2023-12-01T01:49:36.000Z" - }, - { - "creator": "explaininjs", - "title": "Music-Map \u2013 Find Similar Music", - "link": "https://www.music-map.com", - "pubDate": "Fri, 01 Dec 2023 00:44:21 +0000", - "dc:creator": "explaininjs", - "comments": "https://news.ycombinator.com/item?id=38481426", - "content": "\n

Article URL: https://www.music-map.com

\n

Comments URL: https://news.ycombinator.com/item?id=38481426

\n

Points: 35

\n

# Comments: 15

\n", - "contentSnippet": "Article URL: https://www.music-map.com\nComments URL: https://news.ycombinator.com/item?id=38481426\nPoints: 35\n# Comments: 15", - "guid": "https://news.ycombinator.com/item?id=38481426", - "isoDate": "2023-12-01T00:44:21.000Z" - }, - { - "creator": "stefankuehnel", - "title": "Skyfield: Elegant Astronomy for Python", - "link": "https://rhodesmill.org/skyfield/", - "pubDate": "Fri, 01 Dec 2023 00:03:11 +0000", - "dc:creator": "stefankuehnel", - "comments": "https://news.ycombinator.com/item?id=38481063", - "content": "\n

Article URL: https://rhodesmill.org/skyfield/

\n

Comments URL: https://news.ycombinator.com/item?id=38481063

\n

Points: 36

\n

# Comments: 4

\n", - "contentSnippet": "Article URL: https://rhodesmill.org/skyfield/\nComments URL: https://news.ycombinator.com/item?id=38481063\nPoints: 36\n# Comments: 4", - "guid": "https://news.ycombinator.com/item?id=38481063", - "isoDate": "2023-12-01T00:03:11.000Z" - }, - { - "creator": "kiyanwang", - "title": "Goodbye, Clean Code", - "link": "https://overreacted.io/goodbye-clean-code/", - "pubDate": "Fri, 08 Dec 2023 07:12:15 +0000", - "dc:creator": "kiyanwang", - "comments": "https://news.ycombinator.com/item?id=38566235", - "content": "\n

Article URL: https://overreacted.io/goodbye-clean-code/

\n

Comments URL: https://news.ycombinator.com/item?id=38566235

\n

Points: 93

\n

# Comments: 68

\n", - "contentSnippet": "Article URL: https://overreacted.io/goodbye-clean-code/\nComments URL: https://news.ycombinator.com/item?id=38566235\nPoints: 93\n# Comments: 68", - "guid": "https://news.ycombinator.com/item?id=38566235", - "isoDate": "2023-12-08T07:12:15.000Z" - }, - { - "creator": "kermitdekikker", - "title": "Average distance to a supermarket in Amsterdam is 400 meter or 1300 feet", - "link": "https://www.oozo.nl/nabije-voorzieningen/amsterdam", - "pubDate": "Fri, 08 Dec 2023 05:40:00 +0000", - "dc:creator": "kermitdekikker", - "comments": "https://news.ycombinator.com/item?id=38565801", - "content": "\n

Article URL: https://www.oozo.nl/nabije-voorzieningen/amsterdam

\n

Comments URL: https://news.ycombinator.com/item?id=38565801

\n

Points: 40

\n

# Comments: 57

\n", - "contentSnippet": "Article URL: https://www.oozo.nl/nabije-voorzieningen/amsterdam\nComments URL: https://news.ycombinator.com/item?id=38565801\nPoints: 40\n# Comments: 57", - "guid": "https://news.ycombinator.com/item?id=38565801", - "isoDate": "2023-12-08T05:40:00.000Z" - }, - { - "creator": "mroche", - "title": "Kagi Search \u2013 Paywalled articles indicator and improved weather widget", - "link": "https://kagi.com/changelog", - "pubDate": "Fri, 08 Dec 2023 05:03:50 +0000", - "dc:creator": "mroche", - "comments": "https://news.ycombinator.com/item?id=38565651", - "content": "\n

Article URL: https://kagi.com/changelog

\n

Comments URL: https://news.ycombinator.com/item?id=38565651

\n

Points: 87

\n

# Comments: 32

\n", - "contentSnippet": "Article URL: https://kagi.com/changelog\nComments URL: https://news.ycombinator.com/item?id=38565651\nPoints: 87\n# Comments: 32", - "guid": "https://news.ycombinator.com/item?id=38565651", - "isoDate": "2023-12-08T05:03:50.000Z" - }, - { - "creator": "indigodaddy", - "title": "Reviving decade-old Macs with antiX and MX Linux (2022)", - "link": "https://sts10.github.io/2022/12/14/antix-on-2008-macbook-5-1.html", - "pubDate": "Fri, 08 Dec 2023 04:59:34 +0000", - "dc:creator": "indigodaddy", - "comments": "https://news.ycombinator.com/item?id=38565629", - "content": "\n

Article URL: https://sts10.github.io/2022/12/14/antix-on-2008-macbook-5-1.html

\n

Comments URL: https://news.ycombinator.com/item?id=38565629

\n

Points: 68

\n

# Comments: 30

\n", - "contentSnippet": "Article URL: https://sts10.github.io/2022/12/14/antix-on-2008-macbook-5-1.html\nComments URL: https://news.ycombinator.com/item?id=38565629\nPoints: 68\n# Comments: 30", - "guid": "https://news.ycombinator.com/item?id=38565629", - "isoDate": "2023-12-08T04:59:34.000Z" - }, - { - "creator": "sebg", - "title": "We investigated France's mass profiling machine", - "link": "https://www.lighthousereports.com/methodology/how-we-investigated-frances-mass-profiling-machine/", - "pubDate": "Fri, 08 Dec 2023 02:45:28 +0000", - "dc:creator": "sebg", - "comments": "https://news.ycombinator.com/item?id=38564808", - "content": "\n

Article URL: https://www.lighthousereports.com/methodology/how-we-investigated-frances-mass-profiling-machine/

\n

Comments URL: https://news.ycombinator.com/item?id=38564808

\n

Points: 100

\n

# Comments: 32

\n", - "contentSnippet": "Article URL: https://www.lighthousereports.com/methodology/how-we-investigated-frances-mass-profiling-machine/\nComments URL: https://news.ycombinator.com/item?id=38564808\nPoints: 100\n# Comments: 32", - "guid": "https://news.ycombinator.com/item?id=38564808", - "isoDate": "2023-12-08T02:45:28.000Z" - }, - { - "creator": "pconst167", - "title": "Show HN: Homebrew 16bit CPU from 74HC logic with C compiler and Unix-like OS", - "link": "http://www.sol-1.org/index.php", - "pubDate": "Fri, 08 Dec 2023 01:32:39 +0000", - "dc:creator": "pconst167", - "comments": "https://news.ycombinator.com/item?id=38564286", - "content": "\n

This is a 16bit CPU+Minicomputer from pure 74 series logic. It has user/kernel modes, virtual memory, prioritized IRQ's and DMA. It has a full C compiler and a unix-like OS. It's still in development.

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38564286

\n

Points: 84

\n

# Comments: 11

\n", - "contentSnippet": "This is a 16bit CPU+Minicomputer from pure 74 series logic. It has user/kernel modes, virtual memory, prioritized IRQ's and DMA. It has a full C compiler and a unix-like OS. It's still in development.\nComments URL: https://news.ycombinator.com/item?id=38564286\nPoints: 84\n# Comments: 11", - "guid": "https://news.ycombinator.com/item?id=38564286", - "isoDate": "2023-12-08T01:32:39.000Z" - }, - { - "creator": "cglong", - "title": "The Omnichord will be re-produced to commemorate our 70th anniversary", - "link": "https://suzukimusic-global.com/products_single.php?parent_cate_cd=3&products_cate_cd=34&products_cd=315", - "pubDate": "Fri, 08 Dec 2023 00:06:27 +0000", - "dc:creator": "cglong", - "comments": "https://news.ycombinator.com/item?id=38563627", - "content": "\n

Article URL: https://suzukimusic-global.com/products_single.php?parent_cate_cd=3&products_cate_cd=34&products_cd=315

\n

Comments URL: https://news.ycombinator.com/item?id=38563627

\n

Points: 105

\n

# Comments: 29

\n", - "contentSnippet": "Article URL: https://suzukimusic-global.com/products_single.php?parent_cate_cd=3&products_cate_cd=34&products_cd=315\nComments URL: https://news.ycombinator.com/item?id=38563627\nPoints: 105\n# Comments: 29", - "guid": "https://news.ycombinator.com/item?id=38563627", - "isoDate": "2023-12-08T00:06:27.000Z" - }, - { - "creator": "vwoolf", - "title": "A genetically modified bacterium that outcompetes bacteria causing tooth decay", - "link": "https://www.astralcodexten.com/p/defying-cavity-lantern-bioworks-faq", - "pubDate": "Thu, 07 Dec 2023 22:55:44 +0000", - "dc:creator": "vwoolf", - "comments": "https://news.ycombinator.com/item?id=38562939", - "content": "\n

Article URL: https://www.astralcodexten.com/p/defying-cavity-lantern-bioworks-faq

\n

Comments URL: https://news.ycombinator.com/item?id=38562939

\n

Points: 135

\n

# Comments: 54

\n", - "contentSnippet": "Article URL: https://www.astralcodexten.com/p/defying-cavity-lantern-bioworks-faq\nComments URL: https://news.ycombinator.com/item?id=38562939\nPoints: 135\n# Comments: 54", - "guid": "https://news.ycombinator.com/item?id=38562939", - "isoDate": "2023-12-07T22:55:44.000Z" - }, - { - "creator": "apsec112", - "title": "How Many Hobbits? A Demographic Analysis of Middle Earth", - "link": "https://medium.com/@lymanstone/how-many-hobbits-a-demographic-analysis-of-middle-earth-cd53b91d141f", - "pubDate": "Thu, 07 Dec 2023 22:14:15 +0000", - "dc:creator": "apsec112", - "comments": "https://news.ycombinator.com/item?id=38562558", - "content": "\n

Article URL: https://medium.com/@lymanstone/how-many-hobbits-a-demographic-analysis-of-middle-earth-cd53b91d141f

\n

Comments URL: https://news.ycombinator.com/item?id=38562558

\n

Points: 108

\n

# Comments: 70

\n", - "contentSnippet": "Article URL: https://medium.com/@lymanstone/how-many-hobbits-a-demographic-analysis-of-middle-earth-cd53b91d141f\nComments URL: https://news.ycombinator.com/item?id=38562558\nPoints: 108\n# Comments: 70", - "guid": "https://news.ycombinator.com/item?id=38562558", - "isoDate": "2023-12-07T22:14:15.000Z" - }, - { - "creator": "dimmke", - "title": "Making noisy SVGs", - "link": "https://daniel.do/article/making-noisy-svgs/", - "pubDate": "Thu, 07 Dec 2023 18:04:56 +0000", - "dc:creator": "dimmke", - "comments": "https://news.ycombinator.com/item?id=38559607", - "content": "\n

Article URL: https://daniel.do/article/making-noisy-svgs/

\n

Comments URL: https://news.ycombinator.com/item?id=38559607

\n

Points: 397

\n

# Comments: 74

\n", - "contentSnippet": "Article URL: https://daniel.do/article/making-noisy-svgs/\nComments URL: https://news.ycombinator.com/item?id=38559607\nPoints: 397\n# Comments: 74", - "guid": "https://news.ycombinator.com/item?id=38559607", - "isoDate": "2023-12-07T18:04:56.000Z" - }, - { - "creator": "darthShadow", - "title": "Choose your own IP", - "link": "https://tailscale.com/blog/choose-your-ip/", - "pubDate": "Thu, 07 Dec 2023 17:29:50 +0000", - "dc:creator": "darthShadow", - "comments": "https://news.ycombinator.com/item?id=38559192", - "content": "\n

Article URL: https://tailscale.com/blog/choose-your-ip/

\n

Comments URL: https://news.ycombinator.com/item?id=38559192

\n

Points: 252

\n

# Comments: 120

\n", - "contentSnippet": "Article URL: https://tailscale.com/blog/choose-your-ip/\nComments URL: https://news.ycombinator.com/item?id=38559192\nPoints: 252\n# Comments: 120", - "guid": "https://news.ycombinator.com/item?id=38559192", - "isoDate": "2023-12-07T17:29:50.000Z" - }, - { - "creator": "tptacek", - "title": "A lost X-Files song", - "link": "https://twitter.com/laurenancona/status/1731900441800155459", - "pubDate": "Thu, 07 Dec 2023 16:36:10 +0000", - "dc:creator": "tptacek", - "comments": "https://news.ycombinator.com/item?id=38558423", - "content": "\n

Article URL: https://twitter.com/laurenancona/status/1731900441800155459

\n

Comments URL: https://news.ycombinator.com/item?id=38558423

\n

Points: 329

\n

# Comments: 128

\n", - "contentSnippet": "Article URL: https://twitter.com/laurenancona/status/1731900441800155459\nComments URL: https://news.ycombinator.com/item?id=38558423\nPoints: 329\n# Comments: 128", - "guid": "https://news.ycombinator.com/item?id=38558423", - "isoDate": "2023-12-07T16:36:10.000Z" - }, - { - "creator": "sebg", - "title": "Data Engineering Design Patterns", - "link": "https://www.dedp.online/", - "pubDate": "Thu, 07 Dec 2023 15:51:49 +0000", - "dc:creator": "sebg", - "comments": "https://news.ycombinator.com/item?id=38557715", - "content": "\n

Article URL: https://www.dedp.online/

\n

Comments URL: https://news.ycombinator.com/item?id=38557715

\n

Points: 269

\n

# Comments: 39

\n", - "contentSnippet": "Article URL: https://www.dedp.online/\nComments URL: https://news.ycombinator.com/item?id=38557715\nPoints: 269\n# Comments: 39", - "guid": "https://news.ycombinator.com/item?id=38557715", - "isoDate": "2023-12-07T15:51:49.000Z" - }, - { - "creator": "tosh", - "title": "Fake chips, I got stung", - "link": "https://linuxjedi.co.uk/2023/12/01/fake-chips-i-got-stung/", - "pubDate": "Thu, 07 Dec 2023 15:13:56 +0000", - "dc:creator": "tosh", - "comments": "https://news.ycombinator.com/item?id=38557246", - "content": "\n

Article URL: https://linuxjedi.co.uk/2023/12/01/fake-chips-i-got-stung/

\n

Comments URL: https://news.ycombinator.com/item?id=38557246

\n

Points: 253

\n

# Comments: 175

\n", - "contentSnippet": "Article URL: https://linuxjedi.co.uk/2023/12/01/fake-chips-i-got-stung/\nComments URL: https://news.ycombinator.com/item?id=38557246\nPoints: 253\n# Comments: 175", - "guid": "https://news.ycombinator.com/item?id=38557246", - "isoDate": "2023-12-07T15:13:56.000Z" - }, - { - "creator": "toomuchtodo", - "title": "Tesla shares 48V architecture with other automakers", - "link": "https://electrek.co/2023/12/07/tesla-shares-48v-architecture-with-other-automakers-to-move-the-industry/", - "pubDate": "Thu, 07 Dec 2023 15:10:30 +0000", - "dc:creator": "toomuchtodo", - "comments": "https://news.ycombinator.com/item?id=38557203", - "content": "\n

Article URL: https://electrek.co/2023/12/07/tesla-shares-48v-architecture-with-other-automakers-to-move-the-industry/

\n

Comments URL: https://news.ycombinator.com/item?id=38557203

\n

Points: 246

\n

# Comments: 363

\n", - "contentSnippet": "Article URL: https://electrek.co/2023/12/07/tesla-shares-48v-architecture-with-other-automakers-to-move-the-industry/\nComments URL: https://news.ycombinator.com/item?id=38557203\nPoints: 246\n# Comments: 363", - "guid": "https://news.ycombinator.com/item?id=38557203", - "isoDate": "2023-12-07T15:10:30.000Z" - }, - { - "creator": "geox", - "title": "Electric eel\u2019s zap can transfer genes to nearby animals", - "link": "https://www.nagoya-u.ac.jp/researchinfo/result-en/2023/12/20231207-01.html", - "pubDate": "Thu, 07 Dec 2023 12:36:01 +0000", - "dc:creator": "geox", - "comments": "https://news.ycombinator.com/item?id=38555655", - "content": "\n

Article URL: https://www.nagoya-u.ac.jp/researchinfo/result-en/2023/12/20231207-01.html

\n

Comments URL: https://news.ycombinator.com/item?id=38555655

\n

Points: 94

\n

# Comments: 30

\n", - "contentSnippet": "Article URL: https://www.nagoya-u.ac.jp/researchinfo/result-en/2023/12/20231207-01.html\nComments URL: https://news.ycombinator.com/item?id=38555655\nPoints: 94\n# Comments: 30", - "guid": "https://news.ycombinator.com/item?id=38555655", - "isoDate": "2023-12-07T12:36:01.000Z" - }, - { - "creator": "DamonHD", - "title": "Fairphone 5: Keeping it 10/10?", - "link": "https://www.ifixit.com/News/87664/fairphone-5-keeping-it-10-10", - "pubDate": "Thu, 07 Dec 2023 11:04:26 +0000", - "dc:creator": "DamonHD", - "comments": "https://news.ycombinator.com/item?id=38555115", - "content": "\n

Article URL: https://www.ifixit.com/News/87664/fairphone-5-keeping-it-10-10

\n

Comments URL: https://news.ycombinator.com/item?id=38555115

\n

Points: 337

\n

# Comments: 331

\n", - "contentSnippet": "Article URL: https://www.ifixit.com/News/87664/fairphone-5-keeping-it-10-10\nComments URL: https://news.ycombinator.com/item?id=38555115\nPoints: 337\n# Comments: 331", - "guid": "https://news.ycombinator.com/item?id=38555115", - "isoDate": "2023-12-07T11:04:26.000Z" - }, - { - "creator": "tomhazledine", - "title": "Show HN: My related-posts finder script (with LLM and GPT4 enhancement)", - "link": "https://tomhazledine.com/llm-related-posts/", - "pubDate": "Thu, 07 Dec 2023 10:43:46 +0000", - "dc:creator": "tomhazledine", - "comments": "https://news.ycombinator.com/item?id=38554994", - "content": "\n

I've open-sourced the script I use to find related blog posts (and to describe why they're similar).

Works on any set of markdown articles, so should fit into any SSG workflow.

Uses embeddings to calculate the similarities, and GPT4 to add descriptive text.

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38554994

\n

Points: 45

\n

# Comments: 4

\n", - "contentSnippet": "I've open-sourced the script I use to find related blog posts (and to describe why they're similar).\nWorks on any set of markdown articles, so should fit into any SSG workflow.\nUses embeddings to calculate the similarities, and GPT4 to add descriptive text.\nComments URL: https://news.ycombinator.com/item?id=38554994\nPoints: 45\n# Comments: 4", - "guid": "https://news.ycombinator.com/item?id=38554994", - "isoDate": "2023-12-07T10:43:46.000Z" - }, - { - "creator": "dmotz", - "title": "Gemini AI", - "link": "https://deepmind.google/technologies/gemini/", - "pubDate": "Wed, 06 Dec 2023 15:03:47 +0000", - "dc:creator": "dmotz", - "comments": "https://news.ycombinator.com/item?id=38544729", - "content": "\n

Article URL: https://deepmind.google/technologies/gemini/

\n

Comments URL: https://news.ycombinator.com/item?id=38544729

\n

Points: 2014

\n

# Comments: 1557

\n", - "contentSnippet": "Article URL: https://deepmind.google/technologies/gemini/\nComments URL: https://news.ycombinator.com/item?id=38544729\nPoints: 2014\n# Comments: 1557", - "guid": "https://news.ycombinator.com/item?id=38544729", - "isoDate": "2023-12-06T15:03:47.000Z" - }, - { - "creator": "sohkamyung", - "title": "Conway's Game of Life is omniperiodic", - "link": "https://arxiv.org/abs/2312.02799", - "pubDate": "Wed, 06 Dec 2023 12:47:22 +0000", - "dc:creator": "sohkamyung", - "comments": "https://news.ycombinator.com/item?id=38543133", - "content": "\n

Article URL: https://arxiv.org/abs/2312.02799

\n

Comments URL: https://news.ycombinator.com/item?id=38543133

\n

Points: 206

\n

# Comments: 68

\n", - "contentSnippet": "Article URL: https://arxiv.org/abs/2312.02799\nComments URL: https://news.ycombinator.com/item?id=38543133\nPoints: 206\n# Comments: 68", - "guid": "https://news.ycombinator.com/item?id=38543133", - "isoDate": "2023-12-06T12:47:22.000Z" - }, - { - "creator": "sohkamyung", - "title": "How Lego builds a new Lego set", - "link": "https://www.theverge.com/c/23991049/lego-ideas-polaroid-onestep-behind-the-scenes-price", - "pubDate": "Fri, 15 Dec 2023 12:25:26 +0000", - "dc:creator": "sohkamyung", - "comments": "https://news.ycombinator.com/item?id=38653456", - "content": "\n

Article URL: https://www.theverge.com/c/23991049/lego-ideas-polaroid-onestep-behind-the-scenes-price

\n

Comments URL: https://news.ycombinator.com/item?id=38653456

\n

Points: 151

\n

# Comments: 97

\n", - "contentSnippet": "Article URL: https://www.theverge.com/c/23991049/lego-ideas-polaroid-onestep-behind-the-scenes-price\nComments URL: https://news.ycombinator.com/item?id=38653456\nPoints: 151\n# Comments: 97", - "guid": "https://news.ycombinator.com/item?id=38653456", - "isoDate": "2023-12-15T12:25:26.000Z" - }, - { - "creator": "enz", - "title": "WebP is so great except it's not (2021)", - "link": "https://eng.aurelienpierre.com/2021/10/webp-is-so-great-except-its-not/", - "pubDate": "Fri, 15 Dec 2023 11:32:44 +0000", - "dc:creator": "enz", - "comments": "https://news.ycombinator.com/item?id=38653110", - "content": "\n

Article URL: https://eng.aurelienpierre.com/2021/10/webp-is-so-great-except-its-not/

\n

Comments URL: https://news.ycombinator.com/item?id=38653110

\n

Points: 150

\n

# Comments: 193

\n", - "contentSnippet": "Article URL: https://eng.aurelienpierre.com/2021/10/webp-is-so-great-except-its-not/\nComments URL: https://news.ycombinator.com/item?id=38653110\nPoints: 150\n# Comments: 193", - "guid": "https://news.ycombinator.com/item?id=38653110", - "isoDate": "2023-12-15T11:32:44.000Z" - }, - { - "creator": "miohtama", - "title": "EU tweaks law to allow using spyware against journalists", - "link": "https://www.politico.eu/article/eu-capitals-want-media-law-carve-out-to-spy-on-reporters/", - "pubDate": "Fri, 15 Dec 2023 10:51:29 +0000", - "dc:creator": "miohtama", - "comments": "https://news.ycombinator.com/item?id=38652905", - "content": "\n

Article URL: https://www.politico.eu/article/eu-capitals-want-media-law-carve-out-to-spy-on-reporters/

\n

Comments URL: https://news.ycombinator.com/item?id=38652905

\n

Points: 62

\n

# Comments: 14

\n", - "contentSnippet": "Article URL: https://www.politico.eu/article/eu-capitals-want-media-law-carve-out-to-spy-on-reporters/\nComments URL: https://news.ycombinator.com/item?id=38652905\nPoints: 62\n# Comments: 14", - "guid": "https://news.ycombinator.com/item?id=38652905", - "isoDate": "2023-12-15T10:51:29.000Z" - }, - { - "creator": "Hard_Space", - "title": "The Emergence of Full-Body Gaussian Splat Deepfake Humans", - "link": "https://blog.metaphysic.ai/the-emergence-of-full-body-gaussian-splat-deepfake-humans/", - "pubDate": "Fri, 15 Dec 2023 10:49:26 +0000", - "dc:creator": "Hard_Space", - "comments": "https://news.ycombinator.com/item?id=38652892", - "content": "\n

Article URL: https://blog.metaphysic.ai/the-emergence-of-full-body-gaussian-splat-deepfake-humans/

\n

Comments URL: https://news.ycombinator.com/item?id=38652892

\n

Points: 57

\n

# Comments: 33

\n", - "contentSnippet": "Article URL: https://blog.metaphysic.ai/the-emergence-of-full-body-gaussian-splat-deepfake-humans/\nComments URL: https://news.ycombinator.com/item?id=38652892\nPoints: 57\n# Comments: 33", - "guid": "https://news.ycombinator.com/item?id=38652892", - "isoDate": "2023-12-15T10:49:26.000Z" - }, - { - "creator": "pritambarhate", - "title": "Oxlint \u2013 Faster than ESLint", - "link": "https://oxc-project.github.io/blog/2023-12-12-announcing-oxlint.html", - "pubDate": "Fri, 15 Dec 2023 10:48:24 +0000", - "dc:creator": "pritambarhate", - "comments": "https://news.ycombinator.com/item?id=38652887", - "content": "\n

Article URL: https://oxc-project.github.io/blog/2023-12-12-announcing-oxlint.html

\n

Comments URL: https://news.ycombinator.com/item?id=38652887

\n

Points: 203

\n

# Comments: 139

\n", - "contentSnippet": "Article URL: https://oxc-project.github.io/blog/2023-12-12-announcing-oxlint.html\nComments URL: https://news.ycombinator.com/item?id=38652887\nPoints: 203\n# Comments: 139", - "guid": "https://news.ycombinator.com/item?id=38652887", - "isoDate": "2023-12-15T10:48:24.000Z" - }, - { - "creator": "joebig", - "title": "Interactive Tour of James Clerk Maxwell's House", - "link": "https://clerkmaxwellfoundation.org/india-street/housetour.html", - "pubDate": "Fri, 15 Dec 2023 10:31:37 +0000", - "dc:creator": "joebig", - "comments": "https://news.ycombinator.com/item?id=38652806", - "content": "\n

Article URL: https://clerkmaxwellfoundation.org/india-street/housetour.html

\n

Comments URL: https://news.ycombinator.com/item?id=38652806

\n

Points: 30

\n

# Comments: 12

\n", - "contentSnippet": "Article URL: https://clerkmaxwellfoundation.org/india-street/housetour.html\nComments URL: https://news.ycombinator.com/item?id=38652806\nPoints: 30\n# Comments: 12", - "guid": "https://news.ycombinator.com/item?id=38652806", - "isoDate": "2023-12-15T10:31:37.000Z" - }, - { - "creator": "uticus", - "title": "An Interactive Guide to the Fourier Transform", - "link": "https://betterexplained.com/articles/an-interactive-guide-to-the-fourier-transform/", - "pubDate": "Fri, 15 Dec 2023 10:29:40 +0000", - "dc:creator": "uticus", - "comments": "https://news.ycombinator.com/item?id=38652794", - "content": "\n

Article URL: https://betterexplained.com/articles/an-interactive-guide-to-the-fourier-transform/

\n

Comments URL: https://news.ycombinator.com/item?id=38652794

\n

Points: 80

\n

# Comments: 10

\n", - "contentSnippet": "Article URL: https://betterexplained.com/articles/an-interactive-guide-to-the-fourier-transform/\nComments URL: https://news.ycombinator.com/item?id=38652794\nPoints: 80\n# Comments: 10", - "guid": "https://news.ycombinator.com/item?id=38652794", - "isoDate": "2023-12-15T10:29:40.000Z" - }, - { - "creator": "hahnchen", - "title": "Ask HN: AI/ML papers to catch up with current state of AI?", - "link": "https://news.ycombinator.com/item?id=38652736", - "pubDate": "Fri, 15 Dec 2023 10:19:14 +0000", - "dc:creator": "hahnchen", - "comments": "https://news.ycombinator.com/item?id=38652736", - "content": "\n

I used to be into ML back in the R-CNN, GAN, ResNet era and would read papers/blogs.

Seems like ML is taking off recently and I want to get back into it! So far on my list I have attention is all you need, qlora, llama\u2019s and q learning. Suggestions?

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38652736

\n

Points: 121

\n

# Comments: 28

\n", - "contentSnippet": "I used to be into ML back in the R-CNN, GAN, ResNet era and would read papers/blogs.\nSeems like ML is taking off recently and I want to get back into it! So far on my list I have attention is all you need, qlora, llama\u2019s and q learning. Suggestions?\nComments URL: https://news.ycombinator.com/item?id=38652736\nPoints: 121\n# Comments: 28", - "guid": "https://news.ycombinator.com/item?id=38652736", - "isoDate": "2023-12-15T10:19:14.000Z" - }, - { - "creator": "ensocode", - "title": "Let it snow in your terminal", - "link": "https://pypi.org/project/snowjob/", - "pubDate": "Fri, 15 Dec 2023 08:56:59 +0000", - "dc:creator": "ensocode", - "comments": "https://news.ycombinator.com/item?id=38652339", - "content": "\n

Article URL: https://pypi.org/project/snowjob/

\n

Comments URL: https://news.ycombinator.com/item?id=38652339

\n

Points: 78

\n

# Comments: 35

\n", - "contentSnippet": "Article URL: https://pypi.org/project/snowjob/\nComments URL: https://news.ycombinator.com/item?id=38652339\nPoints: 78\n# Comments: 35", - "guid": "https://news.ycombinator.com/item?id=38652339", - "isoDate": "2023-12-15T08:56:59.000Z" - }, - { - "creator": "piebro", - "title": "Godot: A Collaboration with Google and the Forge", - "link": "https://godotengine.org/article/collaboration-with-google-forge-2023/", - "pubDate": "Fri, 15 Dec 2023 07:16:12 +0000", - "dc:creator": "piebro", - "comments": "https://news.ycombinator.com/item?id=38651818", - "content": "\n

Article URL: https://godotengine.org/article/collaboration-with-google-forge-2023/

\n

Comments URL: https://news.ycombinator.com/item?id=38651818

\n

Points: 113

\n

# Comments: 28

\n", - "contentSnippet": "Article URL: https://godotengine.org/article/collaboration-with-google-forge-2023/\nComments URL: https://news.ycombinator.com/item?id=38651818\nPoints: 113\n# Comments: 28", - "guid": "https://news.ycombinator.com/item?id=38651818", - "isoDate": "2023-12-15T07:16:12.000Z" - }, - { - "creator": "viewtransform", - "title": "AMD's Next GPU Is a 3D-Integrated Superchip", - "link": "https://spectrum.ieee.org/amd-mi300", - "pubDate": "Fri, 15 Dec 2023 04:18:19 +0000", - "dc:creator": "viewtransform", - "comments": "https://news.ycombinator.com/item?id=38650937", - "content": "\n

Article URL: https://spectrum.ieee.org/amd-mi300

\n

Comments URL: https://news.ycombinator.com/item?id=38650937

\n

Points: 117

\n

# Comments: 65

\n", - "contentSnippet": "Article URL: https://spectrum.ieee.org/amd-mi300\nComments URL: https://news.ycombinator.com/item?id=38650937\nPoints: 117\n# Comments: 65", - "guid": "https://news.ycombinator.com/item?id=38650937", - "isoDate": "2023-12-15T04:18:19.000Z" - }, - { - "creator": "type0", - "title": "Pipe Dreams: The life and times of Yahoo Pipes", - "link": "https://retool.com/pipes", - "pubDate": "Fri, 15 Dec 2023 04:07:09 +0000", - "dc:creator": "type0", - "comments": "https://news.ycombinator.com/item?id=38650878", - "content": "\n

Article URL: https://retool.com/pipes

\n

Comments URL: https://news.ycombinator.com/item?id=38650878

\n

Points: 263

\n

# Comments: 79

\n", - "contentSnippet": "Article URL: https://retool.com/pipes\nComments URL: https://news.ycombinator.com/item?id=38650878\nPoints: 263\n# Comments: 79", - "guid": "https://news.ycombinator.com/item?id=38650878", - "isoDate": "2023-12-15T04:07:09.000Z" - }, - { - "creator": "ncruces", - "title": "Show HN: My Go SQLite driver did poorly on a benchmark, so I fixed it", - "link": "https://github.com/ncruces/go-sqlite-bench", - "pubDate": "Fri, 15 Dec 2023 02:44:23 +0000", - "dc:creator": "ncruces", - "comments": "https://news.ycombinator.com/item?id=38650570", - "content": "\n

https://github.com/ncruces/go-sqlite3 was doing poorly on this benchmark that was posted yesterday to HackerNews [1].

With the help of some pprof, I was able to trace it to a serious performance regression introduced two weeks ago, and come up with the fix (happy to field questions, if you're interested in the nitty gritty).

It's not the fastest driver around, but it's no longer the slowest: comfortably middle of the pack.\nIt's based on a WASM build of SQLite, and thanks to https://wazero.io doesn't need CGO.

[1]: https://news.ycombinator.com/item?id=38626698

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38650570

\n

Points: 184

\n

# Comments: 34

\n", - "contentSnippet": "https://github.com/ncruces/go-sqlite3 was doing poorly on this benchmark that was posted yesterday to HackerNews [1].\nWith the help of some pprof, I was able to trace it to a serious performance regression introduced two weeks ago, and come up with the fix (happy to field questions, if you're interested in the nitty gritty).\nIt's not the fastest driver around, but it's no longer the slowest: comfortably middle of the pack.\nIt's based on a WASM build of SQLite, and thanks to https://wazero.io doesn't need CGO.\n[1]: https://news.ycombinator.com/item?id=38626698\nComments URL: https://news.ycombinator.com/item?id=38650570\nPoints: 184\n# Comments: 34", - "guid": "https://news.ycombinator.com/item?id=38650570", - "isoDate": "2023-12-15T02:44:23.000Z" - }, - { - "creator": "manojlds", - "title": "Mitchell reflects as he departs HashiCorp", - "link": "https://www.hashicorp.com/blog/mitchell-reflects-as-he-departs-hashicorp", - "pubDate": "Thu, 14 Dec 2023 21:27:17 +0000", - "dc:creator": "manojlds", - "comments": "https://news.ycombinator.com/item?id=38647484", - "content": "\n

Article URL: https://www.hashicorp.com/blog/mitchell-reflects-as-he-departs-hashicorp

\n

Comments URL: https://news.ycombinator.com/item?id=38647484

\n

Points: 633

\n

# Comments: 171

\n", - "contentSnippet": "Article URL: https://www.hashicorp.com/blog/mitchell-reflects-as-he-departs-hashicorp\nComments URL: https://news.ycombinator.com/item?id=38647484\nPoints: 633\n# Comments: 171", - "guid": "https://news.ycombinator.com/item?id=38647484", - "isoDate": "2023-12-14T21:27:17.000Z" - }, - { - "creator": "montyanderson", - "title": "Embeddings, vectors, and arithmetic", - "link": "https://montyanderson.net/writing/embeddings", - "pubDate": "Thu, 14 Dec 2023 18:50:37 +0000", - "dc:creator": "montyanderson", - "comments": "https://news.ycombinator.com/item?id=38645411", - "content": "\n

Article URL: https://montyanderson.net/writing/embeddings

\n

Comments URL: https://news.ycombinator.com/item?id=38645411

\n

Points: 49

\n

# Comments: 10

\n", - "contentSnippet": "Article URL: https://montyanderson.net/writing/embeddings\nComments URL: https://news.ycombinator.com/item?id=38645411\nPoints: 49\n# Comments: 10", - "guid": "https://news.ycombinator.com/item?id=38645411", - "isoDate": "2023-12-14T18:50:37.000Z" - }, - { - "creator": "gbacon", - "title": "First look at Microsoft 365 Copilot", - "link": "https://paulrobichaux.com/2023/12/14/first-look-at-microsoft-365-copilot/", - "pubDate": "Thu, 14 Dec 2023 16:45:41 +0000", - "dc:creator": "gbacon", - "comments": "https://news.ycombinator.com/item?id=38643406", - "content": "\n

Article URL: https://paulrobichaux.com/2023/12/14/first-look-at-microsoft-365-copilot/

\n

Comments URL: https://news.ycombinator.com/item?id=38643406

\n

Points: 171

\n

# Comments: 91

\n", - "contentSnippet": "Article URL: https://paulrobichaux.com/2023/12/14/first-look-at-microsoft-365-copilot/\nComments URL: https://news.ycombinator.com/item?id=38643406\nPoints: 171\n# Comments: 91", - "guid": "https://news.ycombinator.com/item?id=38643406", - "isoDate": "2023-12-14T16:45:41.000Z" - }, - { - "creator": "azan-n", - "title": "Using analytics on my website", - "link": "https://azan-n.com/projects/2023-11-11t061246138z/", - "pubDate": "Thu, 14 Dec 2023 16:13:56 +0000", - "dc:creator": "azan-n", - "comments": "https://news.ycombinator.com/item?id=38642940", - "content": "\n

Article URL: https://azan-n.com/projects/2023-11-11t061246138z/

\n

Comments URL: https://news.ycombinator.com/item?id=38642940

\n

Points: 31

\n

# Comments: 30

\n", - "contentSnippet": "Article URL: https://azan-n.com/projects/2023-11-11t061246138z/\nComments URL: https://news.ycombinator.com/item?id=38642940\nPoints: 31\n# Comments: 30", - "guid": "https://news.ycombinator.com/item?id=38642940", - "isoDate": "2023-12-14T16:13:56.000Z" - }, - { - "creator": "csmeyer", - "title": "Programs are games, programming is a game", - "link": "https://blog.charliemeyer.co/programs-are-games-programming-is-a-game/", - "pubDate": "Thu, 14 Dec 2023 15:30:49 +0000", - "dc:creator": "csmeyer", - "comments": "https://news.ycombinator.com/item?id=38642412", - "content": "\n

Article URL: https://blog.charliemeyer.co/programs-are-games-programming-is-a-game/

\n

Comments URL: https://news.ycombinator.com/item?id=38642412

\n

Points: 90

\n

# Comments: 60

\n", - "contentSnippet": "Article URL: https://blog.charliemeyer.co/programs-are-games-programming-is-a-game/\nComments URL: https://news.ycombinator.com/item?id=38642412\nPoints: 90\n# Comments: 60", - "guid": "https://news.ycombinator.com/item?id=38642412", - "isoDate": "2023-12-14T15:30:49.000Z" - }, - { - "creator": "my12parsecs", - "title": "Voyager 1 stops communicating with Earth", - "link": "https://www.cnn.com/2023/12/13/world/voyager-1-computer-issue-scn/index.html", - "pubDate": "Thu, 14 Dec 2023 13:07:12 +0000", - "dc:creator": "my12parsecs", - "comments": "https://news.ycombinator.com/item?id=38640900", - "content": "\n

Article URL: https://www.cnn.com/2023/12/13/world/voyager-1-computer-issue-scn/index.html

\n

Comments URL: https://news.ycombinator.com/item?id=38640900

\n

Points: 989

\n

# Comments: 507

\n", - "contentSnippet": "Article URL: https://www.cnn.com/2023/12/13/world/voyager-1-computer-issue-scn/index.html\nComments URL: https://news.ycombinator.com/item?id=38640900\nPoints: 989\n# Comments: 507", - "guid": "https://news.ycombinator.com/item?id=38640900", - "isoDate": "2023-12-14T13:07:12.000Z" - }, - { - "creator": "coffeeaddict1", - "title": "Qt Widgets Rendering Pipeline", - "link": "https://felipefarinon.com/articles/qt-widgets-rendering-pipeline", - "pubDate": "Thu, 14 Dec 2023 08:02:51 +0000", - "dc:creator": "coffeeaddict1", - "comments": "https://news.ycombinator.com/item?id=38638946", - "content": "\n

Article URL: https://felipefarinon.com/articles/qt-widgets-rendering-pipeline

\n

Comments URL: https://news.ycombinator.com/item?id=38638946

\n

Points: 55

\n

# Comments: 25

\n", - "contentSnippet": "Article URL: https://felipefarinon.com/articles/qt-widgets-rendering-pipeline\nComments URL: https://news.ycombinator.com/item?id=38638946\nPoints: 55\n# Comments: 25", - "guid": "https://news.ycombinator.com/item?id=38638946", - "isoDate": "2023-12-14T08:02:51.000Z" - }, - { - "creator": "bertman", - "title": "\"Anna's Archive\" Shadow Library Blocked Following Publishers' Complaint", - "link": "https://torrentfreak.com/silenzio-annas-archive-shadow-library-blocked-following-publishers-complaint-240104/", - "pubDate": "Thu, 04 Jan 2024 09:43:48 +0000", - "dc:creator": "bertman", - "comments": "https://news.ycombinator.com/item?id=38865079", - "content": "\n

Article URL: https://torrentfreak.com/silenzio-annas-archive-shadow-library-blocked-following-publishers-complaint-240104/

\n

Comments URL: https://news.ycombinator.com/item?id=38865079

\n

Points: 30

\n

# Comments: 11

\n", - "contentSnippet": "Article URL: https://torrentfreak.com/silenzio-annas-archive-shadow-library-blocked-following-publishers-complaint-240104/\nComments URL: https://news.ycombinator.com/item?id=38865079\nPoints: 30\n# Comments: 11", - "guid": "https://news.ycombinator.com/item?id=38865079", - "isoDate": "2024-01-04T09:43:48.000Z" - }, - { - "creator": "ingve", - "title": "Ten years isn't long enough for maximum age settings", - "link": "https://utcc.utoronto.ca/~cks/space/blog/sysadmin/TenYearsNotLongEnough", - "pubDate": "Thu, 04 Jan 2024 06:39:45 +0000", - "dc:creator": "ingve", - "comments": "https://news.ycombinator.com/item?id=38863844", - "content": "\n

Article URL: https://utcc.utoronto.ca/~cks/space/blog/sysadmin/TenYearsNotLongEnough

\n

Comments URL: https://news.ycombinator.com/item?id=38863844

\n

Points: 47

\n

# Comments: 12

\n", - "contentSnippet": "Article URL: https://utcc.utoronto.ca/~cks/space/blog/sysadmin/TenYearsNotLongEnough\nComments URL: https://news.ycombinator.com/item?id=38863844\nPoints: 47\n# Comments: 12", - "guid": "https://news.ycombinator.com/item?id=38863844", - "isoDate": "2024-01-04T06:39:45.000Z" - }, - { - "creator": "paulolc", - "title": "A Science of Concurrent Programs [pdf]", - "link": "https://lamport.azurewebsites.net/tla/science.pdf", - "pubDate": "Thu, 04 Jan 2024 05:20:11 +0000", - "dc:creator": "paulolc", - "comments": "https://news.ycombinator.com/item?id=38863339", - "content": "\n

Article URL: https://lamport.azurewebsites.net/tla/science.pdf

\n

Comments URL: https://news.ycombinator.com/item?id=38863339

\n

Points: 79

\n

# Comments: 16

\n", - "contentSnippet": "Article URL: https://lamport.azurewebsites.net/tla/science.pdf\nComments URL: https://news.ycombinator.com/item?id=38863339\nPoints: 79\n# Comments: 16", - "guid": "https://news.ycombinator.com/item?id=38863339", - "isoDate": "2024-01-04T05:20:11.000Z" - }, - { - "creator": "CharlesW", - "title": "Lilygo T-Deck: 2.8-inch IPS LCD display, mini keyboard, and ESP32 processor", - "link": "https://www.lilygo.cc/products/t-deck", - "pubDate": "Thu, 04 Jan 2024 04:02:31 +0000", - "dc:creator": "CharlesW", - "comments": "https://news.ycombinator.com/item?id=38862848", - "content": "\n

Article URL: https://www.lilygo.cc/products/t-deck

\n

Comments URL: https://news.ycombinator.com/item?id=38862848

\n

Points: 147

\n

# Comments: 72

\n", - "contentSnippet": "Article URL: https://www.lilygo.cc/products/t-deck\nComments URL: https://news.ycombinator.com/item?id=38862848\nPoints: 147\n# Comments: 72", - "guid": "https://news.ycombinator.com/item?id=38862848", - "isoDate": "2024-01-04T04:02:31.000Z" - }, - { - "creator": "belter", - "title": "Alan Turing \u2013 The Delilah Project", - "link": "https://www.bonhams.com/auction/28322/lot/45/turing-alan-the-delilah-project-the-papers-of-alan-turing-and-donald-bayley-relating-to-the-delilah-project/", - "pubDate": "Thu, 04 Jan 2024 01:50:10 +0000", - "dc:creator": "belter", - "comments": "https://news.ycombinator.com/item?id=38862147", - "content": "\n

Article URL: https://www.bonhams.com/auction/28322/lot/45/turing-alan-the-delilah-project-the-papers-of-alan-turing-and-donald-bayley-relating-to-the-delilah-project/

\n

Comments URL: https://news.ycombinator.com/item?id=38862147

\n

Points: 47

\n

# Comments: 3

\n", - "contentSnippet": "Article URL: https://www.bonhams.com/auction/28322/lot/45/turing-alan-the-delilah-project-the-papers-of-alan-turing-and-donald-bayley-relating-to-the-delilah-project/\nComments URL: https://news.ycombinator.com/item?id=38862147\nPoints: 47\n# Comments: 3", - "guid": "https://news.ycombinator.com/item?id=38862147", - "isoDate": "2024-01-04T01:50:10.000Z" - }, - { - "creator": "jger15", - "title": "Think more about what to focus on", - "link": "https://www.henrikkarlsson.xyz/p/multi-armed-bandit", - "pubDate": "Thu, 04 Jan 2024 00:02:37 +0000", - "dc:creator": "jger15", - "comments": "https://news.ycombinator.com/item?id=38861467", - "content": "\n

Article URL: https://www.henrikkarlsson.xyz/p/multi-armed-bandit

\n

Comments URL: https://news.ycombinator.com/item?id=38861467

\n

Points: 181

\n

# Comments: 29

\n", - "contentSnippet": "Article URL: https://www.henrikkarlsson.xyz/p/multi-armed-bandit\nComments URL: https://news.ycombinator.com/item?id=38861467\nPoints: 181\n# Comments: 29", - "guid": "https://news.ycombinator.com/item?id=38861467", - "isoDate": "2024-01-04T00:02:37.000Z" - }, - { - "creator": "lunarcave", - "title": "Amber: Smalltalk for the Web", - "link": "https://amber-lang.net/", - "pubDate": "Wed, 03 Jan 2024 23:26:04 +0000", - "dc:creator": "lunarcave", - "comments": "https://news.ycombinator.com/item?id=38861203", - "content": "\n

Article URL: https://amber-lang.net/

\n

Comments URL: https://news.ycombinator.com/item?id=38861203

\n

Points: 80

\n

# Comments: 5

\n", - "contentSnippet": "Article URL: https://amber-lang.net/\nComments URL: https://news.ycombinator.com/item?id=38861203\nPoints: 80\n# Comments: 5", - "guid": "https://news.ycombinator.com/item?id=38861203", - "isoDate": "2024-01-03T23:26:04.000Z" - }, - { - "creator": "w4lker", - "title": "The Curious Case of MD5", - "link": "https://katelynsills.com/law/the-curious-case-of-md5/", - "pubDate": "Wed, 03 Jan 2024 23:05:30 +0000", - "dc:creator": "w4lker", - "comments": "https://news.ycombinator.com/item?id=38861034", - "content": "\n

Article URL: https://katelynsills.com/law/the-curious-case-of-md5/

\n

Comments URL: https://news.ycombinator.com/item?id=38861034

\n

Points: 147

\n

# Comments: 97

\n", - "contentSnippet": "Article URL: https://katelynsills.com/law/the-curious-case-of-md5/\nComments URL: https://news.ycombinator.com/item?id=38861034\nPoints: 147\n# Comments: 97", - "guid": "https://news.ycombinator.com/item?id=38861034", - "isoDate": "2024-01-03T23:05:30.000Z" - }, - { - "creator": "LaserPineapple", - "title": "Understand how transformers work by demystifying the math behind them", - "link": "https://osanseviero.github.io/hackerllama/blog/posts/random_transformer/", - "pubDate": "Wed, 03 Jan 2024 21:10:35 +0000", - "dc:creator": "LaserPineapple", - "comments": "https://news.ycombinator.com/item?id=38859976", - "content": "\n

Article URL: https://osanseviero.github.io/hackerllama/blog/posts/random_transformer/

\n

Comments URL: https://news.ycombinator.com/item?id=38859976

\n

Points: 385

\n

# Comments: 90

\n", - "contentSnippet": "Article URL: https://osanseviero.github.io/hackerllama/blog/posts/random_transformer/\nComments URL: https://news.ycombinator.com/item?id=38859976\nPoints: 385\n# Comments: 90", - "guid": "https://news.ycombinator.com/item?id=38859976", - "isoDate": "2024-01-03T21:10:35.000Z" - }, - { - "creator": "T-A", - "title": "TinyGPT-V: Efficient Multimodal Large Language Model via Small Backbones", - "link": "https://github.com/DLYuanGod/TinyGPT-V", - "pubDate": "Wed, 03 Jan 2024 20:53:50 +0000", - "dc:creator": "T-A", - "comments": "https://news.ycombinator.com/item?id=38859749", - "content": "\n

Article URL: https://github.com/DLYuanGod/TinyGPT-V

\n

Comments URL: https://news.ycombinator.com/item?id=38859749

\n

Points: 192

\n

# Comments: 23

\n", - "contentSnippet": "Article URL: https://github.com/DLYuanGod/TinyGPT-V\nComments URL: https://news.ycombinator.com/item?id=38859749\nPoints: 192\n# Comments: 23", - "guid": "https://news.ycombinator.com/item?id=38859749", - "isoDate": "2024-01-03T20:53:50.000Z" - }, - { - "creator": "j4nek", - "title": "Someone was breaking into Orange Spain RIPE account (and break their /12)", - "link": "https://benjojo.co.uk/u/benjojo/h/r1zj333N4L6cF7P1xv", - "pubDate": "Wed, 03 Jan 2024 19:20:17 +0000", - "dc:creator": "j4nek", - "comments": "https://news.ycombinator.com/item?id=38858500", - "content": "\n

Article URL: https://benjojo.co.uk/u/benjojo/h/r1zj333N4L6cF7P1xv

\n

Comments URL: https://news.ycombinator.com/item?id=38858500

\n

Points: 115

\n

# Comments: 39

\n", - "contentSnippet": "Article URL: https://benjojo.co.uk/u/benjojo/h/r1zj333N4L6cF7P1xv\nComments URL: https://news.ycombinator.com/item?id=38858500\nPoints: 115\n# Comments: 39", - "guid": "https://news.ycombinator.com/item?id=38858500", - "isoDate": "2024-01-03T19:20:17.000Z" - }, - { - "creator": "bernawil", - "title": "Show HN: A Who is Hiring app with AI filters", - "link": "https://bernawil.github.io/hn-who-is-hiring/", - "pubDate": "Wed, 03 Jan 2024 19:10:00 +0000", - "dc:creator": "bernawil", - "comments": "https://news.ycombinator.com/item?id=38858369", - "content": "\n

Article URL: https://bernawil.github.io/hn-who-is-hiring/

\n

Comments URL: https://news.ycombinator.com/item?id=38858369

\n

Points: 116

\n

# Comments: 49

\n", - "contentSnippet": "Article URL: https://bernawil.github.io/hn-who-is-hiring/\nComments URL: https://news.ycombinator.com/item?id=38858369\nPoints: 116\n# Comments: 49", - "guid": "https://news.ycombinator.com/item?id=38858369", - "isoDate": "2024-01-03T19:10:00.000Z" - }, - { - "creator": "aarroyoc", - "title": "Niklaus Wirth has died", - "link": "https://twitter.com/Bertrand_Meyer/status/1742613897675178347", - "pubDate": "Wed, 03 Jan 2024 18:50:12 +0000", - "dc:creator": "aarroyoc", - "comments": "https://news.ycombinator.com/item?id=38858012", - "content": "\n

Article URL: https://twitter.com/Bertrand_Meyer/status/1742613897675178347

\n

Comments URL: https://news.ycombinator.com/item?id=38858012

\n

Points: 1724

\n

# Comments: 317

\n", - "contentSnippet": "Article URL: https://twitter.com/Bertrand_Meyer/status/1742613897675178347\nComments URL: https://news.ycombinator.com/item?id=38858012\nPoints: 1724\n# Comments: 317", - "guid": "https://news.ycombinator.com/item?id=38858012", - "isoDate": "2024-01-03T18:50:12.000Z" - }, - { - "creator": "leiferik", - "title": "The drive stats of Backblaze storage pods", - "link": "https://www.backblaze.com/blog/the-drive-stats-of-backblaze-storage-pods/", - "pubDate": "Wed, 03 Jan 2024 18:07:58 +0000", - "dc:creator": "leiferik", - "comments": "https://news.ycombinator.com/item?id=38857396", - "content": "\n

Article URL: https://www.backblaze.com/blog/the-drive-stats-of-backblaze-storage-pods/

\n

Comments URL: https://news.ycombinator.com/item?id=38857396

\n

Points: 242

\n

# Comments: 126

\n", - "contentSnippet": "Article URL: https://www.backblaze.com/blog/the-drive-stats-of-backblaze-storage-pods/\nComments URL: https://news.ycombinator.com/item?id=38857396\nPoints: 242\n# Comments: 126", - "guid": "https://news.ycombinator.com/item?id=38857396", - "isoDate": "2024-01-03T18:07:58.000Z" - }, - { - "creator": "matteason", - "title": "Show HN: Ambiphone, no-nonsense ambient music and white noise", - "link": "https://ambiph.one?hn", - "pubDate": "Wed, 03 Jan 2024 17:41:29 +0000", - "dc:creator": "matteason", - "comments": "https://news.ycombinator.com/item?id=38856999", - "content": "\n

I built this free, no-nonsense white noise app. I know there are plenty of them out there already, but I wanted to make something beautiful and easy-to-use, without logins or ads or in-app purchases or any of the other stuff a lot of them have.

I appeared on The Economist's The Intelligence podcast [0] this week talking about Ambiphone and another ambient music project, Ambient ScotRail Beats [1] - I'm on at about 17:30

There's a big selection of music and sounds already but I'm always adding more - if there's anything you'd like to see added, let me know!

[0] https://www.economist.com/podcasts/2024/01/01/why-2024-could...

[1] https://matteason.co.uk/scotbeats

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38856999

\n

Points: 289

\n

# Comments: 111

\n", - "contentSnippet": "I built this free, no-nonsense white noise app. I know there are plenty of them out there already, but I wanted to make something beautiful and easy-to-use, without logins or ads or in-app purchases or any of the other stuff a lot of them have.\nI appeared on The Economist's The Intelligence podcast [0] this week talking about Ambiphone and another ambient music project, Ambient ScotRail Beats [1] - I'm on at about 17:30\nThere's a big selection of music and sounds already but I'm always adding more - if there's anything you'd like to see added, let me know!\n[0] https://www.economist.com/podcasts/2024/01/01/why-2024-could...\n[1] https://matteason.co.uk/scotbeats\nComments URL: https://news.ycombinator.com/item?id=38856999\nPoints: 289\n# Comments: 111", - "guid": "https://news.ycombinator.com/item?id=38856999", - "isoDate": "2024-01-03T17:41:29.000Z" - }, - { - "creator": "ibobev", - "title": "C and C++ Hot-Reload/Live Coding", - "link": "https://liveplusplus.tech/", - "pubDate": "Wed, 03 Jan 2024 17:20:30 +0000", - "dc:creator": "ibobev", - "comments": "https://news.ycombinator.com/item?id=38856696", - "content": "\n

Article URL: https://liveplusplus.tech/

\n

Comments URL: https://news.ycombinator.com/item?id=38856696

\n

Points: 181

\n

# Comments: 73

\n", - "contentSnippet": "Article URL: https://liveplusplus.tech/\nComments URL: https://news.ycombinator.com/item?id=38856696\nPoints: 181\n# Comments: 73", - "guid": "https://news.ycombinator.com/item?id=38856696", - "isoDate": "2024-01-03T17:20:30.000Z" - }, - { - "creator": "NN88", - "title": "Fewer people are buying electric cars", - "link": "https://www.businessinsider.com/electric-car-ev-sales-prices-problem-transportation-2024-1", - "pubDate": "Wed, 03 Jan 2024 17:12:59 +0000", - "dc:creator": "NN88", - "comments": "https://news.ycombinator.com/item?id=38856586", - "content": "\n

Article URL: https://www.businessinsider.com/electric-car-ev-sales-prices-problem-transportation-2024-1

\n

Comments URL: https://news.ycombinator.com/item?id=38856586

\n

Points: 201

\n

# Comments: 918

\n", - "contentSnippet": "Article URL: https://www.businessinsider.com/electric-car-ev-sales-prices-problem-transportation-2024-1\nComments URL: https://news.ycombinator.com/item?id=38856586\nPoints: 201\n# Comments: 918", - "guid": "https://news.ycombinator.com/item?id=38856586", - "isoDate": "2024-01-03T17:12:59.000Z" - }, - { - "creator": "api", - "title": "Container2wasm: Convert Containers to WASM Blobs", - "link": "https://github.com/ktock/container2wasm", - "pubDate": "Wed, 03 Jan 2024 17:10:38 +0000", - "dc:creator": "api", - "comments": "https://news.ycombinator.com/item?id=38856559", - "content": "\n

Article URL: https://github.com/ktock/container2wasm

\n

Comments URL: https://news.ycombinator.com/item?id=38856559

\n

Points: 220

\n

# Comments: 63

\n", - "contentSnippet": "Article URL: https://github.com/ktock/container2wasm\nComments URL: https://news.ycombinator.com/item?id=38856559\nPoints: 220\n# Comments: 63", - "guid": "https://news.ycombinator.com/item?id=38856559", - "isoDate": "2024-01-03T17:10:38.000Z" - }, - { - "creator": "todsacerdoti", - "title": "Emacs commands I got by with for years", - "link": "https://macadie.info/2023/12/30/emacs-commands-i-got-by-with-for-years/", - "pubDate": "Wed, 03 Jan 2024 07:46:06 +0000", - "dc:creator": "todsacerdoti", - "comments": "https://news.ycombinator.com/item?id=38851699", - "content": "\n

Article URL: https://macadie.info/2023/12/30/emacs-commands-i-got-by-with-for-years/

\n

Comments URL: https://news.ycombinator.com/item?id=38851699

\n

Points: 61

\n

# Comments: 16

\n", - "contentSnippet": "Article URL: https://macadie.info/2023/12/30/emacs-commands-i-got-by-with-for-years/\nComments URL: https://news.ycombinator.com/item?id=38851699\nPoints: 61\n# Comments: 16", - "guid": "https://news.ycombinator.com/item?id=38851699", - "isoDate": "2024-01-03T07:46:06.000Z" - }, - { - "creator": "madmax108", - "title": "The One Billion Row Challenge", - "link": "https://www.morling.dev/blog/one-billion-row-challenge/", - "pubDate": "Wed, 03 Jan 2024 06:23:12 +0000", - "dc:creator": "madmax108", - "comments": "https://news.ycombinator.com/item?id=38851337", - "content": "\n

Article URL: https://www.morling.dev/blog/one-billion-row-challenge/

\n

Comments URL: https://news.ycombinator.com/item?id=38851337

\n

Points: 238

\n

# Comments: 137

\n", - "contentSnippet": "Article URL: https://www.morling.dev/blog/one-billion-row-challenge/\nComments URL: https://news.ycombinator.com/item?id=38851337\nPoints: 238\n# Comments: 137", - "guid": "https://news.ycombinator.com/item?id=38851337", - "isoDate": "2024-01-03T06:23:12.000Z" - }, - { - "creator": "distcs", - "title": "An app can be a home-cooked meal", - "link": "https://www.robinsloan.com/notes/home-cooked-app/", - "pubDate": "Fri, 05 Jan 2024 10:03:27 +0000", - "dc:creator": "distcs", - "comments": "https://news.ycombinator.com/item?id=38877423", - "content": "\n

Article URL: https://www.robinsloan.com/notes/home-cooked-app/

\n

Comments URL: https://news.ycombinator.com/item?id=38877423

\n

Points: 271

\n

# Comments: 86

\n", - "contentSnippet": "Article URL: https://www.robinsloan.com/notes/home-cooked-app/\nComments URL: https://news.ycombinator.com/item?id=38877423\nPoints: 271\n# Comments: 86", - "guid": "https://news.ycombinator.com/item?id=38877423", - "isoDate": "2024-01-05T10:03:27.000Z" - }, - { - "creator": "grungleshnorts", - "title": "CellLVM: A proof-of-concept LLVM to Excel spreadsheet compiler", - "link": "https://belkadan.com/blog/2023/12/CellLVM/", - "pubDate": "Fri, 05 Jan 2024 08:10:50 +0000", - "dc:creator": "grungleshnorts", - "comments": "https://news.ycombinator.com/item?id=38876863", - "content": "\n

Article URL: https://belkadan.com/blog/2023/12/CellLVM/

\n

Comments URL: https://news.ycombinator.com/item?id=38876863

\n

Points: 127

\n

# Comments: 15

\n", - "contentSnippet": "Article URL: https://belkadan.com/blog/2023/12/CellLVM/\nComments URL: https://news.ycombinator.com/item?id=38876863\nPoints: 127\n# Comments: 15", - "guid": "https://news.ycombinator.com/item?id=38876863", - "isoDate": "2024-01-05T08:10:50.000Z" - }, - { - "creator": "alexzeitler", - "title": "Apple's classic Pascal poster, remade as a vector image [pdf]", - "link": "http://www.danamania.com/print/Apple%20Pascal%20Poster/PascalPosterV3%20A1.pdf", - "pubDate": "Fri, 05 Jan 2024 03:59:47 +0000", - "dc:creator": "alexzeitler", - "comments": "https://news.ycombinator.com/item?id=38875551", - "content": "\n

Article URL: http://www.danamania.com/print/Apple%20Pascal%20Poster/PascalPosterV3%20A1.pdf

\n

Comments URL: https://news.ycombinator.com/item?id=38875551

\n

Points: 210

\n

# Comments: 42

\n", - "contentSnippet": "Article URL: http://www.danamania.com/print/Apple%20Pascal%20Poster/PascalPosterV3%20A1.pdf\nComments URL: https://news.ycombinator.com/item?id=38875551\nPoints: 210\n# Comments: 42", - "guid": "https://news.ycombinator.com/item?id=38875551", - "isoDate": "2024-01-05T03:59:47.000Z" - }, - { - "creator": "thunderbong", - "title": "WebRTC for the Curious (2020)", - "link": "https://webrtcforthecurious.com/", - "pubDate": "Fri, 05 Jan 2024 03:58:24 +0000", - "dc:creator": "thunderbong", - "comments": "https://news.ycombinator.com/item?id=38875542", - "content": "\n

Article URL: https://webrtcforthecurious.com/

\n

Comments URL: https://news.ycombinator.com/item?id=38875542

\n

Points: 144

\n

# Comments: 30

\n", - "contentSnippet": "Article URL: https://webrtcforthecurious.com/\nComments URL: https://news.ycombinator.com/item?id=38875542\nPoints: 144\n# Comments: 30", - "guid": "https://news.ycombinator.com/item?id=38875542", - "isoDate": "2024-01-05T03:58:24.000Z" - }, - { - "creator": "tristenharr", - "title": "Learning bimanual mobile manipulation with low-cost whole-body teleoperation", - "link": "https://mobile-aloha.github.io", - "pubDate": "Fri, 05 Jan 2024 03:42:01 +0000", - "dc:creator": "tristenharr", - "comments": "https://news.ycombinator.com/item?id=38875452", - "content": "\n

Article URL: https://mobile-aloha.github.io

\n

Comments URL: https://news.ycombinator.com/item?id=38875452

\n

Points: 81

\n

# Comments: 31

\n", - "contentSnippet": "Article URL: https://mobile-aloha.github.io\nComments URL: https://news.ycombinator.com/item?id=38875452\nPoints: 81\n# Comments: 31", - "guid": "https://news.ycombinator.com/item?id=38875452", - "isoDate": "2024-01-05T03:42:01.000Z" - }, - { - "creator": "todsacerdoti", - "title": "Don't pass structs bigger than 16 bytes on AMD64", - "link": "https://gist.github.com/FeepingCreature/5dff669aad380a123b15659e195fb96c", - "pubDate": "Fri, 05 Jan 2024 03:36:13 +0000", - "dc:creator": "todsacerdoti", - "comments": "https://news.ycombinator.com/item?id=38875422", - "content": "\n

Article URL: https://gist.github.com/FeepingCreature/5dff669aad380a123b15659e195fb96c

\n

Comments URL: https://news.ycombinator.com/item?id=38875422

\n

Points: 261

\n

# Comments: 73

\n", - "contentSnippet": "Article URL: https://gist.github.com/FeepingCreature/5dff669aad380a123b15659e195fb96c\nComments URL: https://news.ycombinator.com/item?id=38875422\nPoints: 261\n# Comments: 73", - "guid": "https://news.ycombinator.com/item?id=38875422", - "isoDate": "2024-01-05T03:36:13.000Z" - }, - { - "creator": "dmarto", - "title": "SIMD in Pure Python", - "link": "https://www.da.vidbuchanan.co.uk/blog/python-swar.html", - "pubDate": "Fri, 05 Jan 2024 02:09:58 +0000", - "dc:creator": "dmarto", - "comments": "https://news.ycombinator.com/item?id=38874885", - "content": "\n

Article URL: https://www.da.vidbuchanan.co.uk/blog/python-swar.html

\n

Comments URL: https://news.ycombinator.com/item?id=38874885

\n

Points: 184

\n

# Comments: 14

\n", - "contentSnippet": "Article URL: https://www.da.vidbuchanan.co.uk/blog/python-swar.html\nComments URL: https://news.ycombinator.com/item?id=38874885\nPoints: 184\n# Comments: 14", - "guid": "https://news.ycombinator.com/item?id=38874885", - "isoDate": "2024-01-05T02:09:58.000Z" - }, - { - "creator": "guyinblackshirt", - "title": "Clicks \u2013 Physical keyboard for iPhone", - "link": "https://www.clicks.tech/", - "pubDate": "Thu, 04 Jan 2024 20:43:20 +0000", - "dc:creator": "guyinblackshirt", - "comments": "https://news.ycombinator.com/item?id=38871987", - "content": "\n

Article URL: https://www.clicks.tech/

\n

Comments URL: https://news.ycombinator.com/item?id=38871987

\n

Points: 790

\n

# Comments: 461

\n", - "contentSnippet": "Article URL: https://www.clicks.tech/\nComments URL: https://news.ycombinator.com/item?id=38871987\nPoints: 790\n# Comments: 461", - "guid": "https://news.ycombinator.com/item?id=38871987", - "isoDate": "2024-01-04T20:43:20.000Z" - }, - { - "creator": "lishali88", - "title": "Launch HN: Rosebud (YC S19) \u2013 Turn game descriptions into browser games", - "link": "https://news.ycombinator.com/item?id=38868185", - "pubDate": "Thu, 04 Jan 2024 15:33:50 +0000", - "dc:creator": "lishali88", - "comments": "https://news.ycombinator.com/item?id=38868185", - "content": "\n

Hi everyone! I'm Lisha, the founder of Rosebud AI (https://www.rosebud.ai/). We're building a platform to help users go from description to code to game. We aim to make game creation accessible to non-technical creators, so our UI provides explanations alongside the generated code.

Users have created a diverse range of games on Rosebud, including top-down RPGs, AI companions, and 3D obstacle courses, all within a few hours and sometimes minutes. Here are some examples you can play and clone (to start your own project).

* Anime Jester Companion: https://play.rosebud.ai/games/ba438cc4-246e-432e-b170-4e1694...\n* Chat and Care for your Digital Puppy: https://play.rosebud.ai/games/f32a8159-7acf-4db6-a82c-70296f...\n* Sphere Sync (3D game: align the sphere with the right color): https://play.rosebud.ai/games/96dfd5e1-62d4-47d8-a3e9-11038c...\n* Basketball: https://play.rosebud.ai/games/a0e70622-e923-4517-8c1f-728dcf...\n* Neon Waltz Generative Art: https://play.rosebud.ai/games/e32bd12b-7cc9-4f9a-b385-42ae0b...\n* Chat with Deku from My Hero Academia: https://play.rosebud.ai/games/716fd998-aab6-4185-8375-85d9ee...

A simple way to think about Rosebud is ChatGPT + Midjourney + Replit. ChatGPT, because we give users a chat interface for this code editor so they can describe the game they want to make and generate game code; Midjourney, because we let users generate assets inside Rosebud, 2D and 3D, to be used in their games; And Replit, because Rosebud includes a browser based code editor that lets you deploy your game instantly.

Sometimes, users generate a code base from scratch via prompts. Often a simpler place to start is to modify (\u201cclone\u201d) an existing project on Rosebud. In both cases, we need to eventually convert user descriptions and modifications of the game into edits and changes to the codebase. To solve this problem, we had to experiment heavily with using LLM agents in production. Our agent framework tries to follow the instructions of user prompts by deciding when and whether to call upon a number of generative models (some for code generation, some for asset generation, some for character dialogue, and some for game ideas). It also must decide where to insert code snippets when it generates them. Often, a user is asking for ideas or something too vague, and our agent has to decide when to ask for feedback and clarifications.

Not surprisingly, if we impose more constraints, on both the programming framework and game genres supported, our agent will perform better. However, the constraints on the types of games users can make and frameworks we want to support also constrains how flexible our platform is. Balancing these two factors, we decided to only support browser-based, JavaScript frameworks and focus on supporting AI NPCs that use LLMs themselves for dialogue and actions. This allows us to create abstractions that enable the agent to alter the codebase more successfully and guide the creator towards a more successful experience. Furthermore, we found that our beta testers are very creative with making AI character based games, and the resulting game is usually fun for players.

How does Rosebud differ from Roblox, Unreal, or Unity simply adding a co-pilot? Incumbent game engines optimized their user-flow and tech stack before the advent of generative AI, and many of their user-flows are well established. We have the advantage of designing this game creation flow from the ground up. It's not just about adding code completion to an existing code editing app and including asset plugins. Such an approach wouldn't fully harness the power of LLMs. We have a chat-first interface, and having identified the limitations of agents, we can create more safeguards for users where failure is likely. Our approach will make it possible for non technical creators to also contribute to making games.\nCheck it out for yourself!

To try Rosebud: (1) head over to https://www.rosebud.ai/hn for access to our Discord beta tester channel and a special role. (2) then go to https://play.rosebud.ai and use the code HelloHN to get immediate access. We have an array of trending projects that users can clone and mod to get started, including various character chat based games.

Here\u2019s a video onboarding of Rosebud in action:\nhttps://www.youtube.com/watch?v=h99H3FefxU0&ab_channel=Roseb...

Re business model, we plan on following in Roblox\u2019s footsteps, i.e. keep it free for developers and take a cut of what they can charge users. Since AI tools cost more from usage than just hosting, we may have to evolve that model and see what the unit economics are (and separate a premium versus free tier for devs).

(Oh and in case you\u2019re wondering why a YC S19 startup is launching now: we basically pivoted. We were always in consumer generative AI, but focused on images until this spring, but always wanted to focus on games\u2013Rosebud is in fact a reference to the cheat code in The Sims. When code gen got good enough this year to work for UGC in gaming, we decided the time had finally come and switched.)

Some encouraging user feedback from our beta: \u201cI have done some modding before, and I must say, this is much easier. Even when I occasionally need to code, the AI can answer all my questions and tell me how to achieve what I want. Normally, I would have to conduct numerous Google searches. What you guys have created is truly amazing.\u201d \u201cI\u2019ve used Chat GPT to help me code simple games in Unity. This seems more connected and easier to work through.\u201d \u201cThis is fascinating. This is ** amazing. Yeah, I know it's obviously early on, but already works for rad generative art. I'll say that much.\u201d \u201cCan finally call myself a game developer lol. Damn that sounds so good.\u201d

We\u2019re a small team working on this for the last few months, so a lot of things are far from perfect. Constructive feedback is very welcome!

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38868185

\n

Points: 260

\n

# Comments: 94

\n", - "contentSnippet": "Hi everyone! I'm Lisha, the founder of Rosebud AI (https://www.rosebud.ai/). We're building a platform to help users go from description to code to game. We aim to make game creation accessible to non-technical creators, so our UI provides explanations alongside the generated code.\nUsers have created a diverse range of games on Rosebud, including top-down RPGs, AI companions, and 3D obstacle courses, all within a few hours and sometimes minutes. Here are some examples you can play and clone (to start your own project).\n* Anime Jester Companion: https://play.rosebud.ai/games/ba438cc4-246e-432e-b170-4e1694...\n* Chat and Care for your Digital Puppy: https://play.rosebud.ai/games/f32a8159-7acf-4db6-a82c-70296f...\n* Sphere Sync (3D game: align the sphere with the right color): https://play.rosebud.ai/games/96dfd5e1-62d4-47d8-a3e9-11038c...\n* Basketball: https://play.rosebud.ai/games/a0e70622-e923-4517-8c1f-728dcf...\n* Neon Waltz Generative Art: https://play.rosebud.ai/games/e32bd12b-7cc9-4f9a-b385-42ae0b...\n* Chat with Deku from My Hero Academia: https://play.rosebud.ai/games/716fd998-aab6-4185-8375-85d9ee...\nA simple way to think about Rosebud is ChatGPT + Midjourney + Replit. ChatGPT, because we give users a chat interface for this code editor so they can describe the game they want to make and generate game code; Midjourney, because we let users generate assets inside Rosebud, 2D and 3D, to be used in their games; And Replit, because Rosebud includes a browser based code editor that lets you deploy your game instantly.\nSometimes, users generate a code base from scratch via prompts. Often a simpler place to start is to modify (\u201cclone\u201d) an existing project on Rosebud. In both cases, we need to eventually convert user descriptions and modifications of the game into edits and changes to the codebase. To solve this problem, we had to experiment heavily with using LLM agents in production. Our agent framework tries to follow the instructions of user prompts by deciding when and whether to call upon a number of generative models (some for code generation, some for asset generation, some for character dialogue, and some for game ideas). It also must decide where to insert code snippets when it generates them. Often, a user is asking for ideas or something too vague, and our agent has to decide when to ask for feedback and clarifications.\nNot surprisingly, if we impose more constraints, on both the programming framework and game genres supported, our agent will perform better. However, the constraints on the types of games users can make and frameworks we want to support also constrains how flexible our platform is. Balancing these two factors, we decided to only support browser-based, JavaScript frameworks and focus on supporting AI NPCs that use LLMs themselves for dialogue and actions. This allows us to create abstractions that enable the agent to alter the codebase more successfully and guide the creator towards a more successful experience. Furthermore, we found that our beta testers are very creative with making AI character based games, and the resulting game is usually fun for players.\nHow does Rosebud differ from Roblox, Unreal, or Unity simply adding a co-pilot? Incumbent game engines optimized their user-flow and tech stack before the advent of generative AI, and many of their user-flows are well established. We have the advantage of designing this game creation flow from the ground up. It's not just about adding code completion to an existing code editing app and including asset plugins. Such an approach wouldn't fully harness the power of LLMs. We have a chat-first interface, and having identified the limitations of agents, we can create more safeguards for users where failure is likely. Our approach will make it possible for non technical creators to also contribute to making games.\nCheck it out for yourself!\nTo try Rosebud: (1) head over to https://www.rosebud.ai/hn for access to our Discord beta tester channel and a special role. (2) then go to https://play.rosebud.ai and use the code HelloHN to get immediate access. We have an array of trending projects that users can clone and mod to get started, including various character chat based games.\nHere\u2019s a video onboarding of Rosebud in action:\nhttps://www.youtube.com/watch?v=h99H3FefxU0&ab_channel=Roseb...\nRe business model, we plan on following in Roblox\u2019s footsteps, i.e. keep it free for developers and take a cut of what they can charge users. Since AI tools cost more from usage than just hosting, we may have to evolve that model and see what the unit economics are (and separate a premium versus free tier for devs).\n(Oh and in case you\u2019re wondering why a YC S19 startup is launching now: we basically pivoted. We were always in consumer generative AI, but focused on images until this spring, but always wanted to focus on games\u2013Rosebud is in fact a reference to the cheat code in The Sims. When code gen got good enough this year to work for UGC in gaming, we decided the time had finally come and switched.)\nSome encouraging user feedback from our beta: \u201cI have done some modding before, and I must say, this is much easier. Even when I occasionally need to code, the AI can answer all my questions and tell me how to achieve what I want. Normally, I would have to conduct numerous Google searches. What you guys have created is truly amazing.\u201d \u201cI\u2019ve used Chat GPT to help me code simple games in Unity. This seems more connected and easier to work through.\u201d \u201cThis is fascinating. This is ** amazing. Yeah, I know it's obviously early on, but already works for rad generative art. I'll say that much.\u201d \u201cCan finally call myself a game developer lol. Damn that sounds so good.\u201d\nWe\u2019re a small team working on this for the last few months, so a lot of things are far from perfect. Constructive feedback is very welcome!\nComments URL: https://news.ycombinator.com/item?id=38868185\nPoints: 260\n# Comments: 94", - "guid": "https://news.ycombinator.com/item?id=38868185", - "isoDate": "2024-01-04T15:33:50.000Z" - }, - { - "creator": "mooreds", - "title": "Sparkey: A simple constant key/value storage library", - "link": "https://github.com/spotify/sparkey", - "pubDate": "Thu, 04 Jan 2024 14:31:51 +0000", - "dc:creator": "mooreds", - "comments": "https://news.ycombinator.com/item?id=38867421", - "content": "\n

Article URL: https://github.com/spotify/sparkey

\n

Comments URL: https://news.ycombinator.com/item?id=38867421

\n

Points: 50

\n

# Comments: 12

\n", - "contentSnippet": "Article URL: https://github.com/spotify/sparkey\nComments URL: https://news.ycombinator.com/item?id=38867421\nPoints: 50\n# Comments: 12", - "guid": "https://news.ycombinator.com/item?id=38867421", - "isoDate": "2024-01-04T14:31:51.000Z" - }, - { - "creator": "pimterry", - "title": "9 years of Apple text editor solo dev", - "link": "https://papereditor.app/dev", - "pubDate": "Thu, 04 Jan 2024 12:30:35 +0000", - "dc:creator": "pimterry", - "comments": "https://news.ycombinator.com/item?id=38866170", - "content": "\n

Article URL: https://papereditor.app/dev

\n

Comments URL: https://news.ycombinator.com/item?id=38866170

\n

Points: 110

\n

# Comments: 35

\n", - "contentSnippet": "Article URL: https://papereditor.app/dev\nComments URL: https://news.ycombinator.com/item?id=38866170\nPoints: 110\n# Comments: 35", - "guid": "https://news.ycombinator.com/item?id=38866170", - "isoDate": "2024-01-04T12:30:35.000Z" - }, - { - "creator": "MAXPOOL", - "title": "Making Real-World Reinforcement Learning Practical [video]", - "link": "https://www.youtube.com/watch?v=17NrtKHdPDw", - "pubDate": "Thu, 04 Jan 2024 09:51:40 +0000", - "dc:creator": "MAXPOOL", - "comments": "https://news.ycombinator.com/item?id=38865131", - "content": "\n

Article URL: https://www.youtube.com/watch?v=17NrtKHdPDw

\n

Comments URL: https://news.ycombinator.com/item?id=38865131

\n

Points: 36

\n

# Comments: 1

\n", - "contentSnippet": "Article URL: https://www.youtube.com/watch?v=17NrtKHdPDw\nComments URL: https://news.ycombinator.com/item?id=38865131\nPoints: 36\n# Comments: 1", - "guid": "https://news.ycombinator.com/item?id=38865131", - "isoDate": "2024-01-04T09:51:40.000Z" - }, - { - "creator": "fagnerbrack", - "title": "Main-Thread-Scheduling", - "link": "https://github.com/astoilkov/main-thread-scheduling", - "pubDate": "Thu, 04 Jan 2024 09:06:59 +0000", - "dc:creator": "fagnerbrack", - "comments": "https://news.ycombinator.com/item?id=38864791", - "content": "\n

Article URL: https://github.com/astoilkov/main-thread-scheduling

\n

Comments URL: https://news.ycombinator.com/item?id=38864791

\n

Points: 36

\n

# Comments: 0

\n", - "contentSnippet": "Article URL: https://github.com/astoilkov/main-thread-scheduling\nComments URL: https://news.ycombinator.com/item?id=38864791\nPoints: 36\n# Comments: 0", - "guid": "https://news.ycombinator.com/item?id=38864791", - "isoDate": "2024-01-04T09:06:59.000Z" - }, - { - "creator": "joisig", - "title": "Turtles, a Shelly/Zigbee home automation tool in Elixir", - "link": "https://joisig.com/2023-holiday-side-project-turtles", - "pubDate": "Thu, 04 Jan 2024 09:05:31 +0000", - "dc:creator": "joisig", - "comments": "https://news.ycombinator.com/item?id=38864774", - "content": "\n

Article URL: https://joisig.com/2023-holiday-side-project-turtles

\n

Comments URL: https://news.ycombinator.com/item?id=38864774

\n

Points: 53

\n

# Comments: 22

\n", - "contentSnippet": "Article URL: https://joisig.com/2023-holiday-side-project-turtles\nComments URL: https://news.ycombinator.com/item?id=38864774\nPoints: 53\n# Comments: 22", - "guid": "https://news.ycombinator.com/item?id=38864774", - "isoDate": "2024-01-04T09:05:31.000Z" - }, - { - "creator": "amin", - "title": "Cleaning up my 200GB iCloud with some JavaScript", - "link": "https://andykong.org/blog/icloudconfusion", - "pubDate": "Thu, 04 Jan 2024 06:36:42 +0000", - "dc:creator": "amin", - "comments": "https://news.ycombinator.com/item?id=38863817", - "content": "\n

Article URL: https://andykong.org/blog/icloudconfusion

\n

Comments URL: https://news.ycombinator.com/item?id=38863817

\n

Points: 98

\n

# Comments: 70

\n", - "contentSnippet": "Article URL: https://andykong.org/blog/icloudconfusion\nComments URL: https://news.ycombinator.com/item?id=38863817\nPoints: 98\n# Comments: 70", - "guid": "https://news.ycombinator.com/item?id=38863817", - "isoDate": "2024-01-04T06:36:42.000Z" - }, - { - "creator": "Caiero", - "title": "A Visit to the Museo Nacional de Antropolog\u00eda, Mexico City (2023)", - "link": "https://johnhawks.net/weblog/museo-nacional-de-antropologia-visit/", - "pubDate": "Wed, 03 Jan 2024 22:42:46 +0000", - "dc:creator": "Caiero", - "comments": "https://news.ycombinator.com/item?id=38860842", - "content": "\n

Article URL: https://johnhawks.net/weblog/museo-nacional-de-antropologia-visit/

\n

Comments URL: https://news.ycombinator.com/item?id=38860842

\n

Points: 56

\n

# Comments: 15

\n", - "contentSnippet": "Article URL: https://johnhawks.net/weblog/museo-nacional-de-antropologia-visit/\nComments URL: https://news.ycombinator.com/item?id=38860842\nPoints: 56\n# Comments: 15", - "guid": "https://news.ycombinator.com/item?id=38860842", - "isoDate": "2024-01-03T22:42:46.000Z" - }, - { - "creator": "alexzeitler", - "title": "Let's Block It", - "link": "https://letsblock.it/", - "pubDate": "Thu, 11 Jan 2024 20:57:25 +0000", - "dc:creator": "alexzeitler", - "comments": "https://news.ycombinator.com/item?id=38958955", - "content": "\n

Article URL: https://letsblock.it/

\n

Comments URL: https://news.ycombinator.com/item?id=38958955

\n

Points: 77

\n

# Comments: 8

\n", - "contentSnippet": "Article URL: https://letsblock.it/\nComments URL: https://news.ycombinator.com/item?id=38958955\nPoints: 77\n# Comments: 8", - "guid": "https://news.ycombinator.com/item?id=38958955", - "isoDate": "2024-01-11T20:57:25.000Z" - }, - { - "creator": "Vaslo", - "title": "93% of U.S. households' stock market wealth is held by the top 10%", - "link": "https://www.axios.com/2024/01/10/wealthy-own-record-share-stock-market", - "pubDate": "Thu, 11 Jan 2024 20:29:02 +0000", - "dc:creator": "Vaslo", - "comments": "https://news.ycombinator.com/item?id=38958534", - "content": "\n

Article URL: https://www.axios.com/2024/01/10/wealthy-own-record-share-stock-market

\n

Comments URL: https://news.ycombinator.com/item?id=38958534

\n

Points: 39

\n

# Comments: 19

\n", - "contentSnippet": "Article URL: https://www.axios.com/2024/01/10/wealthy-own-record-share-stock-market\nComments URL: https://news.ycombinator.com/item?id=38958534\nPoints: 39\n# Comments: 19", - "guid": "https://news.ycombinator.com/item?id=38958534", - "isoDate": "2024-01-11T20:29:02.000Z" - }, - { - "creator": "rmason", - "title": "Engineer Used Water Pump to Get $1B Stuxnet Malware into Iranian Nuclear Plant", - "link": "https://www.securityweek.com/dutch-engineer-used-water-pump-to-get-billion-dollar-stuxnet-malware-into-iranian-nuclear-facility-report/", - "pubDate": "Thu, 11 Jan 2024 19:53:00 +0000", - "dc:creator": "rmason", - "comments": "https://news.ycombinator.com/item?id=38957961", - "content": "\n

Article URL: https://www.securityweek.com/dutch-engineer-used-water-pump-to-get-billion-dollar-stuxnet-malware-into-iranian-nuclear-facility-report/

\n

Comments URL: https://news.ycombinator.com/item?id=38957961

\n

Points: 62

\n

# Comments: 49

\n", - "contentSnippet": "Article URL: https://www.securityweek.com/dutch-engineer-used-water-pump-to-get-billion-dollar-stuxnet-malware-into-iranian-nuclear-facility-report/\nComments URL: https://news.ycombinator.com/item?id=38957961\nPoints: 62\n# Comments: 49", - "guid": "https://news.ycombinator.com/item?id=38957961", - "isoDate": "2024-01-11T19:53:00.000Z" - }, - { - "creator": "prideout", - "title": "Generating SVG for the Prime Knots", - "link": "https://prideout.net/blog/svg_knots/", - "pubDate": "Thu, 11 Jan 2024 18:50:51 +0000", - "dc:creator": "prideout", - "comments": "https://news.ycombinator.com/item?id=38956861", - "content": "\n

Article URL: https://prideout.net/blog/svg_knots/

\n

Comments URL: https://news.ycombinator.com/item?id=38956861

\n

Points: 94

\n

# Comments: 15

\n", - "contentSnippet": "Article URL: https://prideout.net/blog/svg_knots/\nComments URL: https://news.ycombinator.com/item?id=38956861\nPoints: 94\n# Comments: 15", - "guid": "https://news.ycombinator.com/item?id=38956861", - "isoDate": "2024-01-11T18:50:51.000Z" - }, - { - "creator": "grecy", - "title": "Majority of debtors to US hospitals now people with health insurance", - "link": "https://www.theguardian.com/us-news/2024/jan/11/hospital-debt-increase-people-with-insurance", - "pubDate": "Thu, 11 Jan 2024 18:49:44 +0000", - "dc:creator": "grecy", - "comments": "https://news.ycombinator.com/item?id=38956842", - "content": "\n

Article URL: https://www.theguardian.com/us-news/2024/jan/11/hospital-debt-increase-people-with-insurance

\n

Comments URL: https://news.ycombinator.com/item?id=38956842

\n

Points: 67

\n

# Comments: 36

\n", - "contentSnippet": "Article URL: https://www.theguardian.com/us-news/2024/jan/11/hospital-debt-increase-people-with-insurance\nComments URL: https://news.ycombinator.com/item?id=38956842\nPoints: 67\n# Comments: 36", - "guid": "https://news.ycombinator.com/item?id=38956842", - "isoDate": "2024-01-11T18:49:44.000Z" - }, - { - "creator": "minimaxir", - "title": "Discord is laying off 17 percent of employees", - "link": "https://www.theverge.com/2024/1/11/24034705/discord-layoffs-17-percent-employees", - "pubDate": "Thu, 11 Jan 2024 18:37:50 +0000", - "dc:creator": "minimaxir", - "comments": "https://news.ycombinator.com/item?id=38956623", - "content": "\n

Article URL: https://www.theverge.com/2024/1/11/24034705/discord-layoffs-17-percent-employees

\n

Comments URL: https://news.ycombinator.com/item?id=38956623

\n

Points: 351

\n

# Comments: 282

\n", - "contentSnippet": "Article URL: https://www.theverge.com/2024/1/11/24034705/discord-layoffs-17-percent-employees\nComments URL: https://news.ycombinator.com/item?id=38956623\nPoints: 351\n# Comments: 282", - "guid": "https://news.ycombinator.com/item?id=38956623", - "isoDate": "2024-01-11T18:37:50.000Z" - }, - { - "creator": "ent101", - "title": "Feynman: I am burned out and I'll never accomplish anything (1985)", - "link": "https://www.asc.ohio-state.edu/kilcup.1/262/feynman.html", - "pubDate": "Thu, 11 Jan 2024 18:35:40 +0000", - "dc:creator": "ent101", - "comments": "https://news.ycombinator.com/item?id=38956581", - "content": "\n

Article URL: https://www.asc.ohio-state.edu/kilcup.1/262/feynman.html

\n

Comments URL: https://news.ycombinator.com/item?id=38956581

\n

Points: 285

\n

# Comments: 117

\n", - "contentSnippet": "Article URL: https://www.asc.ohio-state.edu/kilcup.1/262/feynman.html\nComments URL: https://news.ycombinator.com/item?id=38956581\nPoints: 285\n# Comments: 117", - "guid": "https://news.ycombinator.com/item?id=38956581", - "isoDate": "2024-01-11T18:35:40.000Z" - }, - { - "creator": "kieranmaine", - "title": "Solar Will Supply Almost All Growth in U.S. Electricity Generation Through 2025", - "link": "https://cleantechnica.com/2024/01/09/u-s-eia-solar-will-supply-almost-all-growth-in-u-s-electricity-generation-through-2025/", - "pubDate": "Thu, 11 Jan 2024 17:18:28 +0000", - "dc:creator": "kieranmaine", - "comments": "https://news.ycombinator.com/item?id=38955274", - "content": "\n

Article URL: https://cleantechnica.com/2024/01/09/u-s-eia-solar-will-supply-almost-all-growth-in-u-s-electricity-generation-through-2025/

\n

Comments URL: https://news.ycombinator.com/item?id=38955274

\n

Points: 153

\n

# Comments: 133

\n", - "contentSnippet": "Article URL: https://cleantechnica.com/2024/01/09/u-s-eia-solar-will-supply-almost-all-growth-in-u-s-electricity-generation-through-2025/\nComments URL: https://news.ycombinator.com/item?id=38955274\nPoints: 153\n# Comments: 133", - "guid": "https://news.ycombinator.com/item?id=38955274", - "isoDate": "2024-01-11T17:18:28.000Z" - }, - { - "creator": "jacobprall", - "title": "A Technical Dive into PostgreSQL's replication mechanisms", - "link": "https://airbyte.com/blog/a-guide-to-logical-replication-and-cdc-in-postgresql", - "pubDate": "Thu, 11 Jan 2024 16:55:38 +0000", - "dc:creator": "jacobprall", - "comments": "https://news.ycombinator.com/item?id=38954867", - "content": "\n

Article URL: https://airbyte.com/blog/a-guide-to-logical-replication-and-cdc-in-postgresql

\n

Comments URL: https://news.ycombinator.com/item?id=38954867

\n

Points: 110

\n

# Comments: 18

\n", - "contentSnippet": "Article URL: https://airbyte.com/blog/a-guide-to-logical-replication-and-cdc-in-postgresql\nComments URL: https://news.ycombinator.com/item?id=38954867\nPoints: 110\n# Comments: 18", - "guid": "https://news.ycombinator.com/item?id=38954867", - "isoDate": "2024-01-11T16:55:38.000Z" - }, - { - "creator": "mfiguiere", - "title": "Microsoft overtakes Apple as most valuable company", - "link": "https://www.reuters.com/technology/microsoft-overtakes-apple-worlds-most-valuable-company-2024-01-11/", - "pubDate": "Thu, 11 Jan 2024 16:47:18 +0000", - "dc:creator": "mfiguiere", - "comments": "https://news.ycombinator.com/item?id=38954730", - "content": "\n

Article URL: https://www.reuters.com/technology/microsoft-overtakes-apple-worlds-most-valuable-company-2024-01-11/

\n

Comments URL: https://news.ycombinator.com/item?id=38954730

\n

Points: 104

\n

# Comments: 42

\n", - "contentSnippet": "Article URL: https://www.reuters.com/technology/microsoft-overtakes-apple-worlds-most-valuable-company-2024-01-11/\nComments URL: https://news.ycombinator.com/item?id=38954730\nPoints: 104\n# Comments: 42", - "guid": "https://news.ycombinator.com/item?id=38954730", - "isoDate": "2024-01-11T16:47:18.000Z" - }, - { - "creator": "LukeLambert", - "title": "Removing data transfer fees when moving off Google Cloud", - "link": "https://cloud.google.com/blog/products/networking/eliminating-data-transfer-fees-when-migrating-off-google-cloud/", - "pubDate": "Thu, 11 Jan 2024 15:49:27 +0000", - "dc:creator": "LukeLambert", - "comments": "https://news.ycombinator.com/item?id=38953846", - "content": "\n

Article URL: https://cloud.google.com/blog/products/networking/eliminating-data-transfer-fees-when-migrating-off-google-cloud/

\n

Comments URL: https://news.ycombinator.com/item?id=38953846

\n

Points: 93

\n

# Comments: 35

\n", - "contentSnippet": "Article URL: https://cloud.google.com/blog/products/networking/eliminating-data-transfer-fees-when-migrating-off-google-cloud/\nComments URL: https://news.ycombinator.com/item?id=38953846\nPoints: 93\n# Comments: 35", - "guid": "https://news.ycombinator.com/item?id=38953846", - "isoDate": "2024-01-11T15:49:27.000Z" - }, - { - "creator": "jlpcsl", - "title": "Outlook is Microsoft's new data collection service", - "link": "https://proton.me/blog/outlook-is-microsofts-new-data-collection-service", - "pubDate": "Thu, 11 Jan 2024 15:36:09 +0000", - "dc:creator": "jlpcsl", - "comments": "https://news.ycombinator.com/item?id=38953618", - "content": "\n

Article URL: https://proton.me/blog/outlook-is-microsofts-new-data-collection-service

\n

Comments URL: https://news.ycombinator.com/item?id=38953618

\n

Points: 395

\n

# Comments: 211

\n", - "contentSnippet": "Article URL: https://proton.me/blog/outlook-is-microsofts-new-data-collection-service\nComments URL: https://news.ycombinator.com/item?id=38953618\nPoints: 395\n# Comments: 211", - "guid": "https://news.ycombinator.com/item?id=38953618", - "isoDate": "2024-01-11T15:36:09.000Z" - }, - { - "creator": "throw0101d", - "title": "Timeline to remove DSA support in OpenSSH", - "link": "https://lists.mindrot.org/pipermail/openssh-unix-announce/2024-January/000156.html", - "pubDate": "Thu, 11 Jan 2024 13:20:49 +0000", - "dc:creator": "throw0101d", - "comments": "https://news.ycombinator.com/item?id=38951847", - "content": "\n

Article URL: https://lists.mindrot.org/pipermail/openssh-unix-announce/2024-January/000156.html

\n

Comments URL: https://news.ycombinator.com/item?id=38951847

\n

Points: 193

\n

# Comments: 115

\n", - "contentSnippet": "Article URL: https://lists.mindrot.org/pipermail/openssh-unix-announce/2024-January/000156.html\nComments URL: https://news.ycombinator.com/item?id=38951847\nPoints: 193\n# Comments: 115", - "guid": "https://news.ycombinator.com/item?id=38951847", - "isoDate": "2024-01-11T13:20:49.000Z" - }, - { - "creator": "naturalauction", - "title": "Blending Is All You Need: Cheaper, Better Alternative to Trillion-Parameters LLM", - "link": "https://arxiv.org/abs/2401.02994", - "pubDate": "Thu, 11 Jan 2024 13:00:51 +0000", - "dc:creator": "naturalauction", - "comments": "https://news.ycombinator.com/item?id=38951652", - "content": "\n

Article URL: https://arxiv.org/abs/2401.02994

\n

Comments URL: https://news.ycombinator.com/item?id=38951652

\n

Points: 50

\n

# Comments: 18

\n", - "contentSnippet": "Article URL: https://arxiv.org/abs/2401.02994\nComments URL: https://news.ycombinator.com/item?id=38951652\nPoints: 50\n# Comments: 18", - "guid": "https://news.ycombinator.com/item?id=38951652", - "isoDate": "2024-01-11T13:00:51.000Z" - }, - { - "creator": "throwup238", - "title": "Virtual Computer Museum \u2013 VNC into Archaic Windows Systems", - "link": "https://museum.trialanderror.tech/", - "pubDate": "Thu, 11 Jan 2024 12:27:33 +0000", - "dc:creator": "throwup238", - "comments": "https://news.ycombinator.com/item?id=38951315", - "content": "\n

Article URL: https://museum.trialanderror.tech/

\n

Comments URL: https://news.ycombinator.com/item?id=38951315

\n

Points: 52

\n

# Comments: 18

\n", - "contentSnippet": "Article URL: https://museum.trialanderror.tech/\nComments URL: https://news.ycombinator.com/item?id=38951315\nPoints: 52\n# Comments: 18", - "guid": "https://news.ycombinator.com/item?id=38951315", - "isoDate": "2024-01-11T12:27:33.000Z" - }, - { - "creator": "popcar2", - "title": "Show HN: GodotOS: A Fake Operating System Interface Made in the Godot Engine", - "link": "https://github.com/popcar2/GodotOS", - "pubDate": "Thu, 11 Jan 2024 12:09:59 +0000", - "dc:creator": "popcar2", - "comments": "https://news.ycombinator.com/item?id=38951172", - "content": "\n

GodotOS, an operating system interface created entirely in Godot! Browse folders, edit text files, view images, play games, and more in one cohesive polished interface that can even be used on the web.

Note that GodotOS is more of a toy than a serious project. It's meant to push the limits on UI design in Godot while creating a desktop that is minimalist, distraction-free, and aesthetically pleasing. Any feedback is greatly appreciated!

Apologies for posting again, but I forgot to include \"Show HN\" in the title, and when I did post yesterday Hackernews almost immediately went down for over an hour, which is unfortunate.

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38951172

\n

Points: 383

\n

# Comments: 158

\n", - "contentSnippet": "GodotOS, an operating system interface created entirely in Godot! Browse folders, edit text files, view images, play games, and more in one cohesive polished interface that can even be used on the web.\nNote that GodotOS is more of a toy than a serious project. It's meant to push the limits on UI design in Godot while creating a desktop that is minimalist, distraction-free, and aesthetically pleasing. Any feedback is greatly appreciated!\nApologies for posting again, but I forgot to include \"Show HN\" in the title, and when I did post yesterday Hackernews almost immediately went down for over an hour, which is unfortunate.\nComments URL: https://news.ycombinator.com/item?id=38951172\nPoints: 383\n# Comments: 158", - "guid": "https://news.ycombinator.com/item?id=38951172", - "isoDate": "2024-01-11T12:09:59.000Z" - }, - { - "creator": "Khaine", - "title": "Tell HN: Bash.org is no more", - "link": "https://news.ycombinator.com/item?id=38950721", - "pubDate": "Thu, 11 Jan 2024 11:17:08 +0000", - "dc:creator": "Khaine", - "comments": "https://news.ycombinator.com/item?id=38950721", - "content": "\n

Bash.org was a cornerstone of the old internet. It was a collection of silly quotes from IRC channels everywhere, many of which dated back to the 90s. And now it is no more.

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38950721

\n

Points: 452

\n

# Comments: 245

\n", - "contentSnippet": "Bash.org was a cornerstone of the old internet. It was a collection of silly quotes from IRC channels everywhere, many of which dated back to the 90s. And now it is no more.\nComments URL: https://news.ycombinator.com/item?id=38950721\nPoints: 452\n# Comments: 245", - "guid": "https://news.ycombinator.com/item?id=38950721", - "isoDate": "2024-01-11T11:17:08.000Z" - }, - { - "creator": "lawrencechen", - "title": "Building a baseline JIT for Lua automatically (2023)", - "link": "https://sillycross.github.io/2023/05/12/2023-05-12/", - "pubDate": "Thu, 11 Jan 2024 08:11:15 +0000", - "dc:creator": "lawrencechen", - "comments": "https://news.ycombinator.com/item?id=38949231", - "content": "\n

Article URL: https://sillycross.github.io/2023/05/12/2023-05-12/

\n

Comments URL: https://news.ycombinator.com/item?id=38949231

\n

Points: 120

\n

# Comments: 29

\n", - "contentSnippet": "Article URL: https://sillycross.github.io/2023/05/12/2023-05-12/\nComments URL: https://news.ycombinator.com/item?id=38949231\nPoints: 120\n# Comments: 29", - "guid": "https://news.ycombinator.com/item?id=38949231", - "isoDate": "2024-01-11T08:11:15.000Z" - }, - { - "creator": "shakna", - "title": "Lego Mechanical Computer", - "link": "https://www.drmoron.org/posts/mechanical-computer/", - "pubDate": "Wed, 10 Jan 2024 13:10:24 +0000", - "dc:creator": "shakna", - "comments": "https://news.ycombinator.com/item?id=38939070", - "content": "\n

Article URL: https://www.drmoron.org/posts/mechanical-computer/

\n

Comments URL: https://news.ycombinator.com/item?id=38939070

\n

Points: 178

\n

# Comments: 23

\n", - "contentSnippet": "Article URL: https://www.drmoron.org/posts/mechanical-computer/\nComments URL: https://news.ycombinator.com/item?id=38939070\nPoints: 178\n# Comments: 23", - "guid": "https://news.ycombinator.com/item?id=38939070", - "isoDate": "2024-01-10T13:10:24.000Z" - }, - { - "creator": "petercooper", - "title": "GitHub Actions as a time-sharing supercomputer", - "link": "https://blog.alexellis.io/github-actions-timesharing-supercomputer/", - "pubDate": "Wed, 10 Jan 2024 10:11:01 +0000", - "dc:creator": "petercooper", - "comments": "https://news.ycombinator.com/item?id=38938470", - "content": "\n

Article URL: https://blog.alexellis.io/github-actions-timesharing-supercomputer/

\n

Comments URL: https://news.ycombinator.com/item?id=38938470

\n

Points: 98

\n

# Comments: 38

\n", - "contentSnippet": "Article URL: https://blog.alexellis.io/github-actions-timesharing-supercomputer/\nComments URL: https://news.ycombinator.com/item?id=38938470\nPoints: 98\n# Comments: 38", - "guid": "https://news.ycombinator.com/item?id=38938470", - "isoDate": "2024-01-10T10:11:01.000Z" - }, - { - "creator": "rapnie", - "title": "Microsoft limits institutional cloud storage space for environmental reasons", - "link": "https://scholar.social/@researchfairy/111778617625312456", - "pubDate": "Fri, 19 Jan 2024 08:13:18 +0000", - "dc:creator": "rapnie", - "comments": "https://news.ycombinator.com/item?id=39052907", - "content": "\n

Article URL: https://scholar.social/@researchfairy/111778617625312456

\n

Comments URL: https://news.ycombinator.com/item?id=39052907

\n

Points: 56

\n

# Comments: 69

\n", - "contentSnippet": "Article URL: https://scholar.social/@researchfairy/111778617625312456\nComments URL: https://news.ycombinator.com/item?id=39052907\nPoints: 56\n# Comments: 69", - "guid": "https://news.ycombinator.com/item?id=39052907", - "isoDate": "2024-01-19T08:13:18.000Z" - }, - { - "creator": "sschueller", - "title": "Google will disable all but OAuth for IMAP, SMTP and POP starting Sept. 30", - "link": "https://workspaceupdates.googleblog.com/2023/09/winding-down-google-sync-and-less-secure-apps-support.html", - "pubDate": "Fri, 19 Jan 2024 06:30:36 +0000", - "dc:creator": "sschueller", - "comments": "https://news.ycombinator.com/item?id=39052196", - "content": "\n

Article URL: https://workspaceupdates.googleblog.com/2023/09/winding-down-google-sync-and-less-secure-apps-support.html

\n

Comments URL: https://news.ycombinator.com/item?id=39052196

\n

Points: 154

\n

# Comments: 56

\n", - "contentSnippet": "Article URL: https://workspaceupdates.googleblog.com/2023/09/winding-down-google-sync-and-less-secure-apps-support.html\nComments URL: https://news.ycombinator.com/item?id=39052196\nPoints: 154\n# Comments: 56", - "guid": "https://news.ycombinator.com/item?id=39052196", - "isoDate": "2024-01-19T06:30:36.000Z" - }, - { - "creator": "kfogel", - "title": "Culture Change at Google", - "link": "https://social.clawhammer.net/blog/posts/2024-01-19-CultureChange/", - "pubDate": "Fri, 19 Jan 2024 04:46:32 +0000", - "dc:creator": "kfogel", - "comments": "https://news.ycombinator.com/item?id=39051655", - "content": "\n

Article URL: https://social.clawhammer.net/blog/posts/2024-01-19-CultureChange/

\n

Comments URL: https://news.ycombinator.com/item?id=39051655

\n

Points: 231

\n

# Comments: 158

\n", - "contentSnippet": "Article URL: https://social.clawhammer.net/blog/posts/2024-01-19-CultureChange/\nComments URL: https://news.ycombinator.com/item?id=39051655\nPoints: 231\n# Comments: 158", - "guid": "https://news.ycombinator.com/item?id=39051655", - "isoDate": "2024-01-19T04:46:32.000Z" - }, - { - "creator": "saint11", - "title": "Orthic Shorthand \u2013 Write as fast as you type", - "link": "https://orthic.shorthand.fun/", - "pubDate": "Fri, 19 Jan 2024 03:48:01 +0000", - "dc:creator": "saint11", - "comments": "https://news.ycombinator.com/item?id=39051362", - "content": "\n

Article URL: https://orthic.shorthand.fun/

\n

Comments URL: https://news.ycombinator.com/item?id=39051362

\n

Points: 45

\n

# Comments: 26

\n", - "contentSnippet": "Article URL: https://orthic.shorthand.fun/\nComments URL: https://news.ycombinator.com/item?id=39051362\nPoints: 45\n# Comments: 26", - "guid": "https://news.ycombinator.com/item?id=39051362", - "isoDate": "2024-01-19T03:48:01.000Z" - }, - { - "creator": "todsacerdoti", - "title": "Dave Mills has died", - "link": "https://elists.isoc.org/pipermail/internet-history/2024-January/009265.html", - "pubDate": "Fri, 19 Jan 2024 03:27:58 +0000", - "dc:creator": "todsacerdoti", - "comments": "https://news.ycombinator.com/item?id=39051246", - "content": "\n

Article URL: https://elists.isoc.org/pipermail/internet-history/2024-January/009265.html

\n

Comments URL: https://news.ycombinator.com/item?id=39051246

\n

Points: 296

\n

# Comments: 31

\n", - "contentSnippet": "Article URL: https://elists.isoc.org/pipermail/internet-history/2024-January/009265.html\nComments URL: https://news.ycombinator.com/item?id=39051246\nPoints: 296\n# Comments: 31", - "guid": "https://news.ycombinator.com/item?id=39051246", - "isoDate": "2024-01-19T03:27:58.000Z" - }, - { - "creator": "cherysun", - "title": "Show HN: Quetta \u2013 A privacy-first web browser with enhanced ad blocker inside", - "link": "https://www.quetta.net/", - "pubDate": "Fri, 19 Jan 2024 02:37:29 +0000", - "dc:creator": "cherysun", - "comments": "https://news.ycombinator.com/item?id=39050967", - "content": "\n

Article URL: https://www.quetta.net/

\n

Comments URL: https://news.ycombinator.com/item?id=39050967

\n

Points: 37

\n

# Comments: 39

\n", - "contentSnippet": "Article URL: https://www.quetta.net/\nComments URL: https://news.ycombinator.com/item?id=39050967\nPoints: 37\n# Comments: 39", - "guid": "https://news.ycombinator.com/item?id=39050967", - "isoDate": "2024-01-19T02:37:29.000Z" - }, - { - "creator": "jyunwai", - "title": "Why holes at the bottom of the ocean disappear and reappear", - "link": "https://www.atlasobscura.com/articles/ocean-floor-holes-purposes-eels", - "pubDate": "Fri, 19 Jan 2024 00:26:28 +0000", - "dc:creator": "jyunwai", - "comments": "https://news.ycombinator.com/item?id=39049999", - "content": "\n

Article URL: https://www.atlasobscura.com/articles/ocean-floor-holes-purposes-eels

\n

Comments URL: https://news.ycombinator.com/item?id=39049999

\n

Points: 57

\n

# Comments: 10

\n", - "contentSnippet": "Article URL: https://www.atlasobscura.com/articles/ocean-floor-holes-purposes-eels\nComments URL: https://news.ycombinator.com/item?id=39049999\nPoints: 57\n# Comments: 10", - "guid": "https://news.ycombinator.com/item?id=39049999", - "isoDate": "2024-01-19T00:26:28.000Z" - }, - { - "creator": "EA-3167", - "title": "AlphaFold Found Possible Psychedelics", - "link": "https://www.nature.com/articles/d41586-024-00130-8", - "pubDate": "Thu, 18 Jan 2024 23:53:32 +0000", - "dc:creator": "EA-3167", - "comments": "https://news.ycombinator.com/item?id=39049703", - "content": "\n

Article URL: https://www.nature.com/articles/d41586-024-00130-8

\n

Comments URL: https://news.ycombinator.com/item?id=39049703

\n

Points: 237

\n

# Comments: 53

\n", - "contentSnippet": "Article URL: https://www.nature.com/articles/d41586-024-00130-8\nComments URL: https://news.ycombinator.com/item?id=39049703\nPoints: 237\n# Comments: 53", - "guid": "https://news.ycombinator.com/item?id=39049703", - "isoDate": "2024-01-18T23:53:32.000Z" - }, - { - "creator": "caydenm", - "title": "10 Second Teleportation", - "link": "https://upollo.ai/blog/10-second-teleportation", - "pubDate": "Thu, 18 Jan 2024 23:53:05 +0000", - "dc:creator": "caydenm", - "comments": "https://news.ycombinator.com/item?id=39049691", - "content": "\n

Article URL: https://upollo.ai/blog/10-second-teleportation

\n

Comments URL: https://news.ycombinator.com/item?id=39049691

\n

Points: 65

\n

# Comments: 46

\n", - "contentSnippet": "Article URL: https://upollo.ai/blog/10-second-teleportation\nComments URL: https://news.ycombinator.com/item?id=39049691\nPoints: 65\n# Comments: 46", - "guid": "https://news.ycombinator.com/item?id=39049691", - "isoDate": "2024-01-18T23:53:05.000Z" - }, - { - "creator": "hnuser0000", - "title": "YouTube and Spotify won't launch Apple Vision Pro apps, joining Netflix", - "link": "https://www.bloomberg.com/news/articles/2024-01-18/youtube-and-spotify-join-netflix-in-not-launching-apple-vision-pro-apps", - "pubDate": "Thu, 18 Jan 2024 23:07:29 +0000", - "dc:creator": "hnuser0000", - "comments": "https://news.ycombinator.com/item?id=39049217", - "content": "\n

Article URL: https://www.bloomberg.com/news/articles/2024-01-18/youtube-and-spotify-join-netflix-in-not-launching-apple-vision-pro-apps

\n

Comments URL: https://news.ycombinator.com/item?id=39049217

\n

Points: 105

\n

# Comments: 133

\n", - "contentSnippet": "Article URL: https://www.bloomberg.com/news/articles/2024-01-18/youtube-and-spotify-join-netflix-in-not-launching-apple-vision-pro-apps\nComments URL: https://news.ycombinator.com/item?id=39049217\nPoints: 105\n# Comments: 133", - "guid": "https://news.ycombinator.com/item?id=39049217", - "isoDate": "2024-01-18T23:07:29.000Z" - }, - { - "creator": "sh_tomer", - "title": "We migrated our PostgreSQL database with 11 seconds downtime", - "link": "https://gds.blog.gov.uk/2024/01/17/how-we-migrated-our-postgresql-database-with-11-seconds-downtime/", - "pubDate": "Thu, 18 Jan 2024 21:51:05 +0000", - "dc:creator": "sh_tomer", - "comments": "https://news.ycombinator.com/item?id=39048317", - "content": "\n

Article URL: https://gds.blog.gov.uk/2024/01/17/how-we-migrated-our-postgresql-database-with-11-seconds-downtime/

\n

Comments URL: https://news.ycombinator.com/item?id=39048317

\n

Points: 384

\n

# Comments: 146

\n", - "contentSnippet": "Article URL: https://gds.blog.gov.uk/2024/01/17/how-we-migrated-our-postgresql-database-with-11-seconds-downtime/\nComments URL: https://news.ycombinator.com/item?id=39048317\nPoints: 384\n# Comments: 146", - "guid": "https://news.ycombinator.com/item?id=39048317", - "isoDate": "2024-01-18T21:51:05.000Z" - }, - { - "creator": "gmays", - "title": "Relearning math as an adult", - "link": "https://gmays.com/how-im-relearning-math-as-an-adult/", - "pubDate": "Thu, 18 Jan 2024 21:12:54 +0000", - "dc:creator": "gmays", - "comments": "https://news.ycombinator.com/item?id=39047825", - "content": "\n

Article URL: https://gmays.com/how-im-relearning-math-as-an-adult/

\n

Comments URL: https://news.ycombinator.com/item?id=39047825

\n

Points: 202

\n

# Comments: 131

\n", - "contentSnippet": "Article URL: https://gmays.com/how-im-relearning-math-as-an-adult/\nComments URL: https://news.ycombinator.com/item?id=39047825\nPoints: 202\n# Comments: 131", - "guid": "https://news.ycombinator.com/item?id=39047825", - "isoDate": "2024-01-18T21:12:54.000Z" - }, - { - "creator": "wjb3", - "title": "Noisy brain may underlie some of autism's sensory features", - "link": "https://www.thetransmitter.org/spectrum/noisy-brain-may-underlie-some-of-autisms-sensory-features/", - "pubDate": "Thu, 18 Jan 2024 20:53:17 +0000", - "dc:creator": "wjb3", - "comments": "https://news.ycombinator.com/item?id=39047541", - "content": "\n

Article URL: https://www.thetransmitter.org/spectrum/noisy-brain-may-underlie-some-of-autisms-sensory-features/

\n

Comments URL: https://news.ycombinator.com/item?id=39047541

\n

Points: 196

\n

# Comments: 138

\n", - "contentSnippet": "Article URL: https://www.thetransmitter.org/spectrum/noisy-brain-may-underlie-some-of-autisms-sensory-features/\nComments URL: https://news.ycombinator.com/item?id=39047541\nPoints: 196\n# Comments: 138", - "guid": "https://news.ycombinator.com/item?id=39047541", - "isoDate": "2024-01-18T20:53:17.000Z" - }, - { - "creator": "matt_d", - "title": "Writing a Debugger from Scratch \u2013 DbgRs Part 7 \u2013 Disassembly", - "link": "https://www.timdbg.com/posts/writing-a-debugger-from-scratch-part-7/", - "pubDate": "Thu, 18 Jan 2024 20:45:06 +0000", - "dc:creator": "matt_d", - "comments": "https://news.ycombinator.com/item?id=39047437", - "content": "\n

Article URL: https://www.timdbg.com/posts/writing-a-debugger-from-scratch-part-7/

\n

Comments URL: https://news.ycombinator.com/item?id=39047437

\n

Points: 31

\n

# Comments: 0

\n", - "contentSnippet": "Article URL: https://www.timdbg.com/posts/writing-a-debugger-from-scratch-part-7/\nComments URL: https://news.ycombinator.com/item?id=39047437\nPoints: 31\n# Comments: 0", - "guid": "https://news.ycombinator.com/item?id=39047437", - "isoDate": "2024-01-18T20:45:06.000Z" - }, - { - "creator": "ecliptik", - "title": "Cracking the code of Linear B", - "link": "https://antigonejournal.com/2024/01/decipherment-linear-b/", - "pubDate": "Thu, 18 Jan 2024 20:20:39 +0000", - "dc:creator": "ecliptik", - "comments": "https://news.ycombinator.com/item?id=39047102", - "content": "\n

Article URL: https://antigonejournal.com/2024/01/decipherment-linear-b/

\n

Comments URL: https://news.ycombinator.com/item?id=39047102

\n

Points: 105

\n

# Comments: 17

\n", - "contentSnippet": "Article URL: https://antigonejournal.com/2024/01/decipherment-linear-b/\nComments URL: https://news.ycombinator.com/item?id=39047102\nPoints: 105\n# Comments: 17", - "guid": "https://news.ycombinator.com/item?id=39047102", - "isoDate": "2024-01-18T20:20:39.000Z" - }, - { - "creator": "laktak", - "title": "Virtual tour of Museum of Failure", - "link": "https://collection.museumoffailure.com/", - "pubDate": "Thu, 18 Jan 2024 17:35:11 +0000", - "dc:creator": "laktak", - "comments": "https://news.ycombinator.com/item?id=39044727", - "content": "\n

Article URL: https://collection.museumoffailure.com/

\n

Comments URL: https://news.ycombinator.com/item?id=39044727

\n

Points: 58

\n

# Comments: 26

\n", - "contentSnippet": "Article URL: https://collection.museumoffailure.com/\nComments URL: https://news.ycombinator.com/item?id=39044727\nPoints: 58\n# Comments: 26", - "guid": "https://news.ycombinator.com/item?id=39044727", - "isoDate": "2024-01-18T17:35:11.000Z" - }, - { - "creator": "jbrins1", - "title": "The case for single-stair multifamily", - "link": "https://www.thesisdriven.com/p/the-case-for-single-stair-multifamily", - "pubDate": "Thu, 18 Jan 2024 16:41:17 +0000", - "dc:creator": "jbrins1", - "comments": "https://news.ycombinator.com/item?id=39043956", - "content": "\n

Article URL: https://www.thesisdriven.com/p/the-case-for-single-stair-multifamily

\n

Comments URL: https://news.ycombinator.com/item?id=39043956

\n

Points: 282

\n

# Comments: 450

\n", - "contentSnippet": "Article URL: https://www.thesisdriven.com/p/the-case-for-single-stair-multifamily\nComments URL: https://news.ycombinator.com/item?id=39043956\nPoints: 282\n# Comments: 450", - "guid": "https://news.ycombinator.com/item?id=39043956", - "isoDate": "2024-01-18T16:41:17.000Z" - }, - { - "creator": "PaulHoule", - "title": "The value of information gathering in phage\u2013bacteria warfare", - "link": "https://academic.oup.com/pnasnexus/article/3/1/pgad431/7512761", - "pubDate": "Thu, 18 Jan 2024 16:38:20 +0000", - "dc:creator": "PaulHoule", - "comments": "https://news.ycombinator.com/item?id=39043911", - "content": "\n

Article URL: https://academic.oup.com/pnasnexus/article/3/1/pgad431/7512761

\n

Comments URL: https://news.ycombinator.com/item?id=39043911

\n

Points: 53

\n

# Comments: 13

\n", - "contentSnippet": "Article URL: https://academic.oup.com/pnasnexus/article/3/1/pgad431/7512761\nComments URL: https://news.ycombinator.com/item?id=39043911\nPoints: 53\n# Comments: 13", - "guid": "https://news.ycombinator.com/item?id=39043911", - "isoDate": "2024-01-18T16:38:20.000Z" - }, - { - "creator": "waxpancake", - "title": "The quiet death of Ello's big dreams", - "link": "https://waxy.org/2024/01/the-quiet-death-of-ellos-big-dreams/", - "pubDate": "Thu, 18 Jan 2024 16:35:59 +0000", - "dc:creator": "waxpancake", - "comments": "https://news.ycombinator.com/item?id=39043871", - "content": "\n

Article URL: https://waxy.org/2024/01/the-quiet-death-of-ellos-big-dreams/

\n

Comments URL: https://news.ycombinator.com/item?id=39043871

\n

Points: 411

\n

# Comments: 209

\n", - "contentSnippet": "Article URL: https://waxy.org/2024/01/the-quiet-death-of-ellos-big-dreams/\nComments URL: https://news.ycombinator.com/item?id=39043871\nPoints: 411\n# Comments: 209", - "guid": "https://news.ycombinator.com/item?id=39043871", - "isoDate": "2024-01-18T16:35:59.000Z" - }, - { - "creator": "maxrmk", - "title": "Launch HN: Talc AI (YC S23) \u2013 Test Sets for AI", - "link": "https://news.ycombinator.com/item?id=39042093", - "pubDate": "Thu, 18 Jan 2024 14:32:55 +0000", - "dc:creator": "maxrmk", - "comments": "https://news.ycombinator.com/item?id=39042093", - "content": "\n

Hey all! Max and Matt here from Talc AI. We do automated QA for anything built on top of an LLM. Check out our demo: https://talc.ai/demo

We\u2019ve found that it's very difficult to know how well LLM applications (and especially RAG systems) are going to work in the wild. Many companies tackle this by having developers or contractors run tests manually. It\u2019s a slow process that holds back development, and often results in unexpected behavior when the application ships.

We\u2019ve dealt with similar problems before; Max was a staff engineer working on systematic technical solutions for privacy problems at facebook, and Matt worked on ML ops on facebooks\u2019 election integrity team, helping run classifiers that handled trillions of data points. We learned that even the best predictive systems need to be deeply understood and trusted to be useful to product teams, and set out to build the same understanding in AI.

To solve this, we take ideas from academia on how to benchmark the general capabilities of language models, and apply them to generating domain specific test cases that run against your actual prompts and code.

Consider an analogy: If you\u2019re a lawyer, we don\u2019t need to be lawyers to open up a legal textbook and test your knowledge of the content. Similarly if you\u2019re building a legal AI application, we don\u2019t need to build your application to come up with an effective set of tests that can benchmark your performance.

To make this more concrete - when you pick a topic in the demo, we grab the associated wikipedia page and extract a bunch of facts from it using a classic NLP technique called \u201cnamed entity recognition\u201d. For example if you picked FreeBASIC, we might extract the following line from it:

    Source of truth: \"IDEs specifically made for FreeBASIC include FBide and FbEdit,[5] while more graphical options include WinFBE Suite and VisualFBEditor.\" \n\n
\nThis line is our source of truth. We then use an LLM to work backwards from this fact into a question and answer:

    Question: \"What programming language are the IDEs WinFBE Suite and FbEdit designed to support?\"\n    Reference Answer: \"FreeBasic\"\n\n
\nWe can then evaluate accurately by comparing the reference answer and the original source of truth\u2013 this is how we generate \u201csimple\u201d questions in the demo.

In production we\u2019re building this same functionality on our customers' knowledge base instead of wikipedia. We then employ a few different strategies to generate questions \u2013 these range from simple factual questions like \u201chow much does the 2024 chevy tahoe cost\u201d, to complex questions like \u201cWhat would a mechanic have to do to fix the recall on my 2018 Golf?\u201d These questions are based on facts extracted from your knowledge base and real customer examples.

This testing and grading process is fast \u2013 it\u2019s driven by a mixture of LLMs and traditional algorithms, and can turn around in minutes. Our business model is pretty simple - we charge for each test created. If you opt to use our grading product as well we charge for each example graded against the test.

We\u2019re excited to hear what the HN community thinks \u2013 please let us know in the comments if you have any feedback, questions or concerns!

\n
\n

Comments URL: https://news.ycombinator.com/item?id=39042093

\n

Points: 112

\n

# Comments: 42

\n", - "contentSnippet": "Hey all! Max and Matt here from Talc AI. We do automated QA for anything built on top of an LLM. Check out our demo: https://talc.ai/demo\nWe\u2019ve found that it's very difficult to know how well LLM applications (and especially RAG systems) are going to work in the wild. Many companies tackle this by having developers or contractors run tests manually. It\u2019s a slow process that holds back development, and often results in unexpected behavior when the application ships.\nWe\u2019ve dealt with similar problems before; Max was a staff engineer working on systematic technical solutions for privacy problems at facebook, and Matt worked on ML ops on facebooks\u2019 election integrity team, helping run classifiers that handled trillions of data points. We learned that even the best predictive systems need to be deeply understood and trusted to be useful to product teams, and set out to build the same understanding in AI.\nTo solve this, we take ideas from academia on how to benchmark the general capabilities of language models, and apply them to generating domain specific test cases that run against your actual prompts and code.\nConsider an analogy: If you\u2019re a lawyer, we don\u2019t need to be lawyers to open up a legal textbook and test your knowledge of the content. Similarly if you\u2019re building a legal AI application, we don\u2019t need to build your application to come up with an effective set of tests that can benchmark your performance.\nTo make this more concrete - when you pick a topic in the demo, we grab the associated wikipedia page and extract a bunch of facts from it using a classic NLP technique called \u201cnamed entity recognition\u201d. For example if you picked FreeBASIC, we might extract the following line from it:\n Source of truth: \"IDEs specifically made for FreeBASIC include FBide and FbEdit,[5] while more graphical options include WinFBE Suite and VisualFBEditor.\" \n\n\n Question: \"What programming language are the IDEs WinFBE Suite and FbEdit designed to support?\"\n Reference Answer: \"FreeBasic\"\n\n\nIn production we\u2019re building this same functionality on our customers' knowledge base instead of wikipedia. We then employ a few different strategies to generate questions \u2013 these range from simple factual questions like \u201chow much does the 2024 chevy tahoe cost\u201d, to complex questions like \u201cWhat would a mechanic have to do to fix the recall on my 2018 Golf?\u201d These questions are based on facts extracted from your knowledge base and real customer examples.\nThis testing and grading process is fast \u2013 it\u2019s driven by a mixture of LLMs and traditional algorithms, and can turn around in minutes. Our business model is pretty simple - we charge for each test created. If you opt to use our grading product as well we charge for each example graded against the test.\nWe\u2019re excited to hear what the HN community thinks \u2013 please let us know in the comments if you have any feedback, questions or concerns!\nComments URL: https://news.ycombinator.com/item?id=39042093\nPoints: 112\n# Comments: 42", - "guid": "https://news.ycombinator.com/item?id=39042093", - "isoDate": "2024-01-18T14:32:55.000Z" - }, - { - "creator": "rrampage", - "title": "Why you should probably be using SQLite", - "link": "https://www.epicweb.dev/why-you-should-probably-be-using-sqlite", - "pubDate": "Fri, 27 Oct 2023 10:51:52 +0000", - "dc:creator": "rrampage", - "comments": "https://news.ycombinator.com/item?id=38036921", - "content": "\n

Article URL: https://www.epicweb.dev/why-you-should-probably-be-using-sqlite

\n

Comments URL: https://news.ycombinator.com/item?id=38036921

\n

Points: 50

\n

# Comments: 29

\n", - "contentSnippet": "Article URL: https://www.epicweb.dev/why-you-should-probably-be-using-sqlite\nComments URL: https://news.ycombinator.com/item?id=38036921\nPoints: 50\n# Comments: 29", - "guid": "https://news.ycombinator.com/item?id=38036921", - "isoDate": "2023-10-27T10:51:52.000Z" - }, - { - "creator": "keepamovin", - "title": "0 To 100 kph in 1 second", - "link": "https://www.youtube.com/watch?v=XQIu5tZ0vbQ", - "pubDate": "Fri, 27 Oct 2023 10:30:53 +0000", - "dc:creator": "keepamovin", - "comments": "https://news.ycombinator.com/item?id=38036801", - "content": "\n

Article URL: https://www.youtube.com/watch?v=XQIu5tZ0vbQ

\n

Comments URL: https://news.ycombinator.com/item?id=38036801

\n

Points: 65

\n

# Comments: 53

\n", - "contentSnippet": "Article URL: https://www.youtube.com/watch?v=XQIu5tZ0vbQ\nComments URL: https://news.ycombinator.com/item?id=38036801\nPoints: 65\n# Comments: 53", - "guid": "https://news.ycombinator.com/item?id=38036801", - "isoDate": "2023-10-27T10:30:53.000Z" - }, - { - "creator": "HieronymusBosch", - "title": "Some Pirate Sites Received More Visitors After Being Blocked", - "link": "https://torrentfreak.com/some-pirate-sites-received-more-visitors-after-being-blocked-231027/", - "pubDate": "Fri, 27 Oct 2023 10:21:50 +0000", - "dc:creator": "HieronymusBosch", - "comments": "https://news.ycombinator.com/item?id=38036740", - "content": "\n

Article URL: https://torrentfreak.com/some-pirate-sites-received-more-visitors-after-being-blocked-231027/

\n

Comments URL: https://news.ycombinator.com/item?id=38036740

\n

Points: 31

\n

# Comments: 26

\n", - "contentSnippet": "Article URL: https://torrentfreak.com/some-pirate-sites-received-more-visitors-after-being-blocked-231027/\nComments URL: https://news.ycombinator.com/item?id=38036740\nPoints: 31\n# Comments: 26", - "guid": "https://news.ycombinator.com/item?id=38036740", - "isoDate": "2023-10-27T10:21:50.000Z" - }, - { - "creator": "gridentio", - "title": "Lean4 helped Terence Tao discover a small bug in his recent paper", - "link": "https://mathstodon.xyz/@tao/111287749336059662", - "pubDate": "Fri, 27 Oct 2023 07:25:32 +0000", - "dc:creator": "gridentio", - "comments": "https://news.ycombinator.com/item?id=38035672", - "content": "\n

Article URL: https://mathstodon.xyz/@tao/111287749336059662

\n

Comments URL: https://news.ycombinator.com/item?id=38035672

\n

Points: 203

\n

# Comments: 75

\n", - "contentSnippet": "Article URL: https://mathstodon.xyz/@tao/111287749336059662\nComments URL: https://news.ycombinator.com/item?id=38035672\nPoints: 203\n# Comments: 75", - "guid": "https://news.ycombinator.com/item?id=38035672", - "isoDate": "2023-10-27T07:25:32.000Z" - }, - { - "creator": "FabienC", - "title": "Let me tell you about me Gear Fabrication Syndrome", - "link": "https://weenoisemaker.com/blog/2023/10/21/gear-fabrication-syndrome.html", - "pubDate": "Fri, 27 Oct 2023 07:00:04 +0000", - "dc:creator": "FabienC", - "comments": "https://news.ycombinator.com/item?id=38035516", - "content": "\n

Article URL: https://weenoisemaker.com/blog/2023/10/21/gear-fabrication-syndrome.html

\n

Comments URL: https://news.ycombinator.com/item?id=38035516

\n

Points: 119

\n

# Comments: 115

\n", - "contentSnippet": "Article URL: https://weenoisemaker.com/blog/2023/10/21/gear-fabrication-syndrome.html\nComments URL: https://news.ycombinator.com/item?id=38035516\nPoints: 119\n# Comments: 115", - "guid": "https://news.ycombinator.com/item?id=38035516", - "isoDate": "2023-10-27T07:00:04.000Z" - }, - { - "creator": "walterbell", - "title": "How to draw beautiful software architecture diagrams (2022)", - "link": "https://terrastruct.com/blog/post/draw-software-architecture-diagrams/", - "pubDate": "Fri, 27 Oct 2023 06:57:37 +0000", - "dc:creator": "walterbell", - "comments": "https://news.ycombinator.com/item?id=38035505", - "content": "\n

Article URL: https://terrastruct.com/blog/post/draw-software-architecture-diagrams/

\n

Comments URL: https://news.ycombinator.com/item?id=38035505

\n

Points: 119

\n

# Comments: 58

\n", - "contentSnippet": "Article URL: https://terrastruct.com/blog/post/draw-software-architecture-diagrams/\nComments URL: https://news.ycombinator.com/item?id=38035505\nPoints: 119\n# Comments: 58", - "guid": "https://news.ycombinator.com/item?id=38035505", - "isoDate": "2023-10-27T06:57:37.000Z" - }, - { - "creator": "signa11", - "title": "My 2023 all-flash ZFS NAS (Network Storage) build", - "link": "https://michael.stapelberg.ch/posts/2023-10-25-my-all-flash-zfs-network-storage-build/", - "pubDate": "Fri, 27 Oct 2023 04:48:11 +0000", - "dc:creator": "signa11", - "comments": "https://news.ycombinator.com/item?id=38034797", - "content": "\n

Article URL: https://michael.stapelberg.ch/posts/2023-10-25-my-all-flash-zfs-network-storage-build/

\n

Comments URL: https://news.ycombinator.com/item?id=38034797

\n

Points: 41

\n

# Comments: 12

\n", - "contentSnippet": "Article URL: https://michael.stapelberg.ch/posts/2023-10-25-my-all-flash-zfs-network-storage-build/\nComments URL: https://news.ycombinator.com/item?id=38034797\nPoints: 41\n# Comments: 12", - "guid": "https://news.ycombinator.com/item?id=38034797", - "isoDate": "2023-10-27T04:48:11.000Z" - }, - { - "creator": "mmastrac", - "title": "How to catch a wild triangle", - "link": "https://securelist.com/operation-triangulation-catching-wild-triangle/110916/", - "pubDate": "Fri, 27 Oct 2023 03:05:37 +0000", - "dc:creator": "mmastrac", - "comments": "https://news.ycombinator.com/item?id=38034269", - "content": "\n

Article URL: https://securelist.com/operation-triangulation-catching-wild-triangle/110916/

\n

Comments URL: https://news.ycombinator.com/item?id=38034269

\n

Points: 84

\n

# Comments: 23

\n", - "contentSnippet": "Article URL: https://securelist.com/operation-triangulation-catching-wild-triangle/110916/\nComments URL: https://news.ycombinator.com/item?id=38034269\nPoints: 84\n# Comments: 23", - "guid": "https://news.ycombinator.com/item?id=38034269", - "isoDate": "2023-10-27T03:05:37.000Z" - }, - { - "creator": "impish9208", - "title": "My Left Kidney", - "link": "https://www.astralcodexten.com/p/my-left-kidney", - "pubDate": "Fri, 27 Oct 2023 02:55:34 +0000", - "dc:creator": "impish9208", - "comments": "https://news.ycombinator.com/item?id=38034184", - "content": "\n

Article URL: https://www.astralcodexten.com/p/my-left-kidney

\n

Comments URL: https://news.ycombinator.com/item?id=38034184

\n

Points: 200

\n

# Comments: 211

\n", - "contentSnippet": "Article URL: https://www.astralcodexten.com/p/my-left-kidney\nComments URL: https://news.ycombinator.com/item?id=38034184\nPoints: 200\n# Comments: 211", - "guid": "https://news.ycombinator.com/item?id=38034184", - "isoDate": "2023-10-27T02:55:34.000Z" - }, - { - "creator": "talonx", - "title": "Ceasing print publication of ACM journals and transactions", - "link": "https://www.acm.org/publications/ceasing-print", - "pubDate": "Fri, 27 Oct 2023 00:36:45 +0000", - "dc:creator": "talonx", - "comments": "https://news.ycombinator.com/item?id=38033385", - "content": "\n

Article URL: https://www.acm.org/publications/ceasing-print

\n

Comments URL: https://news.ycombinator.com/item?id=38033385

\n

Points: 144

\n

# Comments: 86

\n", - "contentSnippet": "Article URL: https://www.acm.org/publications/ceasing-print\nComments URL: https://news.ycombinator.com/item?id=38033385\nPoints: 144\n# Comments: 86", - "guid": "https://news.ycombinator.com/item?id=38033385", - "isoDate": "2023-10-27T00:36:45.000Z" - }, - { - "creator": "superMayo", - "title": "Interactive intro to shaders", - "link": "https://www.mayerowitz.io/blog/a-journey-into-shaders", - "pubDate": "Thu, 26 Oct 2023 22:03:07 +0000", - "dc:creator": "superMayo", - "comments": "https://news.ycombinator.com/item?id=38032288", - "content": "\n

Article URL: https://www.mayerowitz.io/blog/a-journey-into-shaders

\n

Comments URL: https://news.ycombinator.com/item?id=38032288

\n

Points: 381

\n

# Comments: 55

\n", - "contentSnippet": "Article URL: https://www.mayerowitz.io/blog/a-journey-into-shaders\nComments URL: https://news.ycombinator.com/item?id=38032288\nPoints: 381\n# Comments: 55", - "guid": "https://news.ycombinator.com/item?id=38032288", - "isoDate": "2023-10-26T22:03:07.000Z" - }, - { - "creator": "nickt", - "title": "WebSDR \u2013 Internet-connected Software-Defined Radios", - "link": "http://www.websdr.org/", - "pubDate": "Thu, 26 Oct 2023 22:00:16 +0000", - "dc:creator": "nickt", - "comments": "https://news.ycombinator.com/item?id=38032257", - "content": "\n

Article URL: http://www.websdr.org/

\n

Comments URL: https://news.ycombinator.com/item?id=38032257

\n

Points: 209

\n

# Comments: 52

\n", - "contentSnippet": "Article URL: http://www.websdr.org/\nComments URL: https://news.ycombinator.com/item?id=38032257\nPoints: 209\n# Comments: 52", - "guid": "https://news.ycombinator.com/item?id=38032257", - "isoDate": "2023-10-26T22:00:16.000Z" - }, - { - "creator": "sohkamyung", - "title": "Trying to make sense of why Otis exploded en route to Acapulco", - "link": "https://theeyewall.com/trying-to-make-sense-of-why-otis-exploded-en-route-to-acapulco-this-week/", - "pubDate": "Thu, 26 Oct 2023 21:58:22 +0000", - "dc:creator": "sohkamyung", - "comments": "https://news.ycombinator.com/item?id=38032242", - "content": "\n

Article URL: https://theeyewall.com/trying-to-make-sense-of-why-otis-exploded-en-route-to-acapulco-this-week/

\n

Comments URL: https://news.ycombinator.com/item?id=38032242

\n

Points: 205

\n

# Comments: 107

\n", - "contentSnippet": "Article URL: https://theeyewall.com/trying-to-make-sense-of-why-otis-exploded-en-route-to-acapulco-this-week/\nComments URL: https://news.ycombinator.com/item?id=38032242\nPoints: 205\n# Comments: 107", - "guid": "https://news.ycombinator.com/item?id=38032242", - "isoDate": "2023-10-26T21:58:22.000Z" - }, - { - "creator": "bookofjoe", - "title": "Takkyu-bin: Luggage forwarding in Japan", - "link": "https://craigmod.com/ridgeline/170/", - "pubDate": "Thu, 26 Oct 2023 19:56:19 +0000", - "dc:creator": "bookofjoe", - "comments": "https://news.ycombinator.com/item?id=38030932", - "content": "\n

Article URL: https://craigmod.com/ridgeline/170/

\n

Comments URL: https://news.ycombinator.com/item?id=38030932

\n

Points: 265

\n

# Comments: 127

\n", - "contentSnippet": "Article URL: https://craigmod.com/ridgeline/170/\nComments URL: https://news.ycombinator.com/item?id=38030932\nPoints: 265\n# Comments: 127", - "guid": "https://news.ycombinator.com/item?id=38030932", - "isoDate": "2023-10-26T19:56:19.000Z" - }, - { - "creator": "KenRuf", - "title": "How bioelectricity could regrow limbs and organs", - "link": "https://news.uchicago.edu/how-bioelectricity-could-regrow-limbs-and-organs", - "pubDate": "Thu, 26 Oct 2023 16:07:24 +0000", - "dc:creator": "KenRuf", - "comments": "https://news.ycombinator.com/item?id=38027587", - "content": "\n

Article URL: https://news.uchicago.edu/how-bioelectricity-could-regrow-limbs-and-organs

\n

Comments URL: https://news.ycombinator.com/item?id=38027587

\n

Points: 174

\n

# Comments: 81

\n", - "contentSnippet": "Article URL: https://news.uchicago.edu/how-bioelectricity-could-regrow-limbs-and-organs\nComments URL: https://news.ycombinator.com/item?id=38027587\nPoints: 174\n# Comments: 81", - "guid": "https://news.ycombinator.com/item?id=38027587", - "isoDate": "2023-10-26T16:07:24.000Z" - }, - { - "creator": "keepamovin", - "title": "I2P: End-to-end encrypted and anonymous internet", - "link": "https://github.com/PurpleI2P/i2pd", - "pubDate": "Thu, 26 Oct 2023 15:18:24 +0000", - "dc:creator": "keepamovin", - "comments": "https://news.ycombinator.com/item?id=38026736", - "content": "\n

Article URL: https://github.com/PurpleI2P/i2pd

\n

Comments URL: https://news.ycombinator.com/item?id=38026736

\n

Points: 350

\n

# Comments: 100

\n", - "contentSnippet": "Article URL: https://github.com/PurpleI2P/i2pd\nComments URL: https://news.ycombinator.com/item?id=38026736\nPoints: 350\n# Comments: 100", - "guid": "https://news.ycombinator.com/item?id=38026736", - "isoDate": "2023-10-26T15:18:24.000Z" - }, - { - "creator": "BerislavLopac", - "title": "Cold war satellite images reveal unknown Roman forts", - "link": "https://www.theguardian.com/science/2023/oct/26/cold-war-satellite-images-hundreds-unknown-roman-forts", - "pubDate": "Thu, 26 Oct 2023 12:31:58 +0000", - "dc:creator": "BerislavLopac", - "comments": "https://news.ycombinator.com/item?id=38024665", - "content": "\n

Article URL: https://www.theguardian.com/science/2023/oct/26/cold-war-satellite-images-hundreds-unknown-roman-forts

\n

Comments URL: https://news.ycombinator.com/item?id=38024665

\n

Points: 284

\n

# Comments: 107

\n", - "contentSnippet": "Article URL: https://www.theguardian.com/science/2023/oct/26/cold-war-satellite-images-hundreds-unknown-roman-forts\nComments URL: https://news.ycombinator.com/item?id=38024665\nPoints: 284\n# Comments: 107", - "guid": "https://news.ycombinator.com/item?id=38024665", - "isoDate": "2023-10-26T12:31:58.000Z" - }, - { - "creator": "CathalMullan", - "title": "The Cloud Computer", - "link": "https://oxide.computer/blog/the-cloud-computer", - "pubDate": "Thu, 26 Oct 2023 10:43:59 +0000", - "dc:creator": "CathalMullan", - "comments": "https://news.ycombinator.com/item?id=38023891", - "content": "\n

Article URL: https://oxide.computer/blog/the-cloud-computer

\n

Comments URL: https://news.ycombinator.com/item?id=38023891

\n

Points: 1563

\n

# Comments: 856

\n", - "contentSnippet": "Article URL: https://oxide.computer/blog/the-cloud-computer\nComments URL: https://news.ycombinator.com/item?id=38023891\nPoints: 1563\n# Comments: 856", - "guid": "https://news.ycombinator.com/item?id=38023891", - "isoDate": "2023-10-26T10:43:59.000Z" - }, - { - "creator": "LAC-Tech", - "title": "Temporal Databases (1986) [pdf]", - "link": "https://www2.cs.arizona.edu/~rts/pubs/Computer.pdf", - "pubDate": "Thu, 26 Oct 2023 08:51:46 +0000", - "dc:creator": "LAC-Tech", - "comments": "https://news.ycombinator.com/item?id=38023283", - "content": "\n

Article URL: https://www2.cs.arizona.edu/~rts/pubs/Computer.pdf

\n

Comments URL: https://news.ycombinator.com/item?id=38023283

\n

Points: 59

\n

# Comments: 12

\n", - "contentSnippet": "Article URL: https://www2.cs.arizona.edu/~rts/pubs/Computer.pdf\nComments URL: https://news.ycombinator.com/item?id=38023283\nPoints: 59\n# Comments: 12", - "guid": "https://news.ycombinator.com/item?id=38023283", - "isoDate": "2023-10-26T08:51:46.000Z" - }, - { - "creator": "benbreen", - "title": "Monsters in the Middle Ages", - "link": "https://www.medievalists.net/2023/10/how-to-make-a-monster/", - "pubDate": "Tue, 24 Oct 2023 20:05:18 +0000", - "dc:creator": "benbreen", - "comments": "https://news.ycombinator.com/item?id=38004666", - "content": "\n

Article URL: https://www.medievalists.net/2023/10/how-to-make-a-monster/

\n

Comments URL: https://news.ycombinator.com/item?id=38004666

\n

Points: 47

\n

# Comments: 9

\n", - "contentSnippet": "Article URL: https://www.medievalists.net/2023/10/how-to-make-a-monster/\nComments URL: https://news.ycombinator.com/item?id=38004666\nPoints: 47\n# Comments: 9", - "guid": "https://news.ycombinator.com/item?id=38004666", - "isoDate": "2023-10-24T20:05:18.000Z" - }, - { - "creator": "Metacelsus", - "title": "EPA moves towards banning leaded aviation gas", - "link": "https://www.federalregister.gov/documents/2023/10/20/2023-23247/finding-that-lead-emissions-from-aircraft-engines-that-operate-on-leaded-fuel-cause-or-contribute-to", - "pubDate": "Fri, 27 Oct 2023 14:44:57 +0000", - "dc:creator": "Metacelsus", - "comments": "https://news.ycombinator.com/item?id=38039133", - "content": "\n

Article URL: https://www.federalregister.gov/documents/2023/10/20/2023-23247/finding-that-lead-emissions-from-aircraft-engines-that-operate-on-leaded-fuel-cause-or-contribute-to

\n

Comments URL: https://news.ycombinator.com/item?id=38039133

\n

Points: 137

\n

# Comments: 77

\n", - "contentSnippet": "Article URL: https://www.federalregister.gov/documents/2023/10/20/2023-23247/finding-that-lead-emissions-from-aircraft-engines-that-operate-on-leaded-fuel-cause-or-contribute-to\nComments URL: https://news.ycombinator.com/item?id=38039133\nPoints: 137\n# Comments: 77", - "guid": "https://news.ycombinator.com/item?id=38039133", - "isoDate": "2023-10-27T14:44:57.000Z" - }, - { - "creator": "breakingciphers", - "title": "Food and Generative AI", - "link": "https://engineering.hellofresh.com/recipes-and-generative-ai-6d74a107860c?gi=86e12b1a8c6d", - "pubDate": "Fri, 27 Oct 2023 14:14:46 +0000", - "dc:creator": "breakingciphers", - "comments": "https://news.ycombinator.com/item?id=38038706", - "content": "\n

Article URL: https://engineering.hellofresh.com/recipes-and-generative-ai-6d74a107860c?gi=86e12b1a8c6d

\n

Comments URL: https://news.ycombinator.com/item?id=38038706

\n

Points: 30

\n

# Comments: 26

\n", - "contentSnippet": "Article URL: https://engineering.hellofresh.com/recipes-and-generative-ai-6d74a107860c?gi=86e12b1a8c6d\nComments URL: https://news.ycombinator.com/item?id=38038706\nPoints: 30\n# Comments: 26", - "guid": "https://news.ycombinator.com/item?id=38038706", - "isoDate": "2023-10-27T14:14:46.000Z" - }, - { - "creator": "wahnfrieden", - "title": "US immigration enforcement used AI-powered tool to scan posts derogatory to US", - "link": "https://www.techspot.com/news/100642-ice-used-ai-powered-tool-scan-social-media.html", - "pubDate": "Fri, 27 Oct 2023 14:00:13 +0000", - "dc:creator": "wahnfrieden", - "comments": "https://news.ycombinator.com/item?id=38038512", - "content": "\n

Article URL: https://www.techspot.com/news/100642-ice-used-ai-powered-tool-scan-social-media.html

\n

Comments URL: https://news.ycombinator.com/item?id=38038512

\n

Points: 44

\n

# Comments: 28

\n", - "contentSnippet": "Article URL: https://www.techspot.com/news/100642-ice-used-ai-powered-tool-scan-social-media.html\nComments URL: https://news.ycombinator.com/item?id=38038512\nPoints: 44\n# Comments: 28", - "guid": "https://news.ycombinator.com/item?id=38038512", - "isoDate": "2023-10-27T14:00:13.000Z" - }, - { - "creator": "geox", - "title": "A third of chocolate products are high in heavy metals", - "link": "https://www.consumerreports.org/health/food-safety/a-third-of-chocolate-products-are-high-in-heavy-metals-a4844566398/", - "pubDate": "Fri, 27 Oct 2023 13:57:00 +0000", - "dc:creator": "geox", - "comments": "https://news.ycombinator.com/item?id=38038465", - "content": "\n

Article URL: https://www.consumerreports.org/health/food-safety/a-third-of-chocolate-products-are-high-in-heavy-metals-a4844566398/

\n

Comments URL: https://news.ycombinator.com/item?id=38038465

\n

Points: 88

\n

# Comments: 46

\n", - "contentSnippet": "Article URL: https://www.consumerreports.org/health/food-safety/a-third-of-chocolate-products-are-high-in-heavy-metals-a4844566398/\nComments URL: https://news.ycombinator.com/item?id=38038465\nPoints: 88\n# Comments: 46", - "guid": "https://news.ycombinator.com/item?id=38038465", - "isoDate": "2023-10-27T13:57:00.000Z" - }, - { - "creator": "thunderbong", - "title": "How Soap Works: The Science Behind Handwashing", - "link": "https://www.pfizer.com/news/articles/how_soap_works_the_science_behind_handwashing", - "pubDate": "Fri, 27 Oct 2023 13:28:35 +0000", - "dc:creator": "thunderbong", - "comments": "https://news.ycombinator.com/item?id=38038174", - "content": "\n

Article URL: https://www.pfizer.com/news/articles/how_soap_works_the_science_behind_handwashing

\n

Comments URL: https://news.ycombinator.com/item?id=38038174

\n

Points: 58

\n

# Comments: 38

\n", - "contentSnippet": "Article URL: https://www.pfizer.com/news/articles/how_soap_works_the_science_behind_handwashing\nComments URL: https://news.ycombinator.com/item?id=38038174\nPoints: 58\n# Comments: 38", - "guid": "https://news.ycombinator.com/item?id=38038174", - "isoDate": "2023-10-27T13:28:35.000Z" - }, - { - "creator": "czue", - "title": "The slow death of authenticity in an attention economy", - "link": "https://www.coryzue.com/writing/authenticity-and-engagement/", - "pubDate": "Fri, 27 Oct 2023 13:00:54 +0000", - "dc:creator": "czue", - "comments": "https://news.ycombinator.com/item?id=38037851", - "content": "\n

Article URL: https://www.coryzue.com/writing/authenticity-and-engagement/

\n

Comments URL: https://news.ycombinator.com/item?id=38037851

\n

Points: 261

\n

# Comments: 159

\n", - "contentSnippet": "Article URL: https://www.coryzue.com/writing/authenticity-and-engagement/\nComments URL: https://news.ycombinator.com/item?id=38037851\nPoints: 261\n# Comments: 159", - "guid": "https://news.ycombinator.com/item?id=38037851", - "isoDate": "2023-10-27T13:00:54.000Z" - }, - { - "creator": "ThibWeb", - "title": "Why Is the Django Admin \"Ugly\"?", - "link": "https://www.coderedcorp.com/blog/why-is-the-django-admin-ugly/", - "pubDate": "Fri, 27 Oct 2023 12:32:53 +0000", - "dc:creator": "ThibWeb", - "comments": "https://news.ycombinator.com/item?id=38037596", - "content": "\n

Article URL: https://www.coderedcorp.com/blog/why-is-the-django-admin-ugly/

\n

Comments URL: https://news.ycombinator.com/item?id=38037596

\n

Points: 89

\n

# Comments: 92

\n", - "contentSnippet": "Article URL: https://www.coderedcorp.com/blog/why-is-the-django-admin-ugly/\nComments URL: https://news.ycombinator.com/item?id=38037596\nPoints: 89\n# Comments: 92", - "guid": "https://news.ycombinator.com/item?id=38037596", - "isoDate": "2023-10-27T12:32:53.000Z" - }, - { - "creator": "wjSgoWPm5bWAhXB", - "title": "Study shows antibodies against PEG in 83% of the German population", - "link": "https://www.mpip-mainz.mpg.de/en/press/pr-2022-22", - "pubDate": "Fri, 27 Oct 2023 11:42:17 +0000", - "dc:creator": "wjSgoWPm5bWAhXB", - "comments": "https://news.ycombinator.com/item?id=38037245", - "content": "\n

Article URL: https://www.mpip-mainz.mpg.de/en/press/pr-2022-22

\n

Comments URL: https://news.ycombinator.com/item?id=38037245

\n

Points: 106

\n

# Comments: 83

\n", - "contentSnippet": "Article URL: https://www.mpip-mainz.mpg.de/en/press/pr-2022-22\nComments URL: https://news.ycombinator.com/item?id=38037245\nPoints: 106\n# Comments: 83", - "guid": "https://news.ycombinator.com/item?id=38037245", - "isoDate": "2023-10-27T11:42:17.000Z" - }, - { - "creator": "maheshrjl", - "title": "Lessons Learned from Twenty Years of Site Reliability Engineering", - "link": "https://sre.google/resources/practices-and-processes/twenty-years-of-sre-lessons-learned/", - "pubDate": "Fri, 27 Oct 2023 11:25:28 +0000", - "dc:creator": "maheshrjl", - "comments": "https://news.ycombinator.com/item?id=38037141", - "content": "\n

Article URL: https://sre.google/resources/practices-and-processes/twenty-years-of-sre-lessons-learned/

\n

Comments URL: https://news.ycombinator.com/item?id=38037141

\n

Points: 65

\n

# Comments: 2

\n", - "contentSnippet": "Article URL: https://sre.google/resources/practices-and-processes/twenty-years-of-sre-lessons-learned/\nComments URL: https://news.ycombinator.com/item?id=38037141\nPoints: 65\n# Comments: 2", - "guid": "https://news.ycombinator.com/item?id=38037141", - "isoDate": "2023-10-27T11:25:28.000Z" - }, - { - "creator": "luu", - "title": "Generating Well-Typed Terms that are not \"Useless\" [pdf]", - "link": "https://lemonidas.github.io/pdf/NotUseless.pdf", - "pubDate": "Fri, 27 Oct 2023 04:23:27 +0000", - "dc:creator": "luu", - "comments": "https://news.ycombinator.com/item?id=38034668", - "content": "\n

Article URL: https://lemonidas.github.io/pdf/NotUseless.pdf

\n

Comments URL: https://news.ycombinator.com/item?id=38034668

\n

Points: 30

\n

# Comments: 3

\n", - "contentSnippet": "Article URL: https://lemonidas.github.io/pdf/NotUseless.pdf\nComments URL: https://news.ycombinator.com/item?id=38034668\nPoints: 30\n# Comments: 3", - "guid": "https://news.ycombinator.com/item?id=38034668", - "isoDate": "2023-10-27T04:23:27.000Z" - } -] \ No newline at end of file + { + "creator": "futureisnow23", + "title": "Tesla Cybertruck Pricing and Specs", + "link": "https://www.tesla.com/cybertruck/design", + "pubDate": "Thu, 30 Nov 2023 20:57:29 +0000", + "dc:creator": "futureisnow23", + "comments": "https://news.ycombinator.com/item?id=38478964", + "content": "\n

Article URL: https://www.tesla.com/cybertruck/design

\n

Comments URL: https://news.ycombinator.com/item?id=38478964

\n

Points: 101

\n

# Comments: 288

\n", + "contentSnippet": "Article URL: https://www.tesla.com/cybertruck/design\nComments URL: https://news.ycombinator.com/item?id=38478964\nPoints: 101\n# Comments: 288", + "guid": "https://news.ycombinator.com/item?id=38478964", + "isoDate": "2023-11-30T20:57:29.000Z" + }, + { + "creator": "zvr", + "title": "Compiler Options Hardening Guide for C and C++", + "link": "https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html", + "pubDate": "Thu, 30 Nov 2023 20:50:36 +0000", + "dc:creator": "zvr", + "comments": "https://news.ycombinator.com/item?id=38478866", + "content": "\n

Article URL: https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html

\n

Comments URL: https://news.ycombinator.com/item?id=38478866

\n

Points: 30

\n

# Comments: 15

\n", + "contentSnippet": "Article URL: https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html\nComments URL: https://news.ycombinator.com/item?id=38478866\nPoints: 30\n# Comments: 15", + "guid": "https://news.ycombinator.com/item?id=38478866", + "isoDate": "2023-11-30T20:50:36.000Z" + }, + { + "creator": "lagniappe", + "title": "Retro.directory", + "link": "http://retro.directory/", + "pubDate": "Thu, 30 Nov 2023 20:08:09 +0000", + "dc:creator": "lagniappe", + "comments": "https://news.ycombinator.com/item?id=38478404", + "content": "\n

Article URL: http://retro.directory/

\n

Comments URL: https://news.ycombinator.com/item?id=38478404

\n

Points: 50

\n

# Comments: 8

\n", + "contentSnippet": "Article URL: http://retro.directory/\nComments URL: https://news.ycombinator.com/item?id=38478404\nPoints: 50\n# Comments: 8", + "guid": "https://news.ycombinator.com/item?id=38478404", + "isoDate": "2023-11-30T20:08:09.000Z" + }, + { + "creator": "Philpax", + "title": "How I made Bomb Rush Cyberfunk multiplayer", + "link": "https://notnite.com/blog/slop-crew", + "pubDate": "Thu, 30 Nov 2023 19:25:41 +0000", + "dc:creator": "Philpax", + "comments": "https://news.ycombinator.com/item?id=38477940", + "content": "\n

Article URL: https://notnite.com/blog/slop-crew

\n

Comments URL: https://news.ycombinator.com/item?id=38477940

\n

Points: 34

\n

# Comments: 3

\n", + "contentSnippet": "Article URL: https://notnite.com/blog/slop-crew\nComments URL: https://news.ycombinator.com/item?id=38477940\nPoints: 34\n# Comments: 3", + "guid": "https://news.ycombinator.com/item?id=38477940", + "isoDate": "2023-11-30T19:25:41.000Z" + }, + { + "creator": "andsoitis", + "title": "Turbo Pascal Turns 40", + "link": "https://blog.marcocantu.com/blog/2023-november-turbopascal40.html", + "pubDate": "Thu, 30 Nov 2023 19:08:48 +0000", + "dc:creator": "andsoitis", + "comments": "https://news.ycombinator.com/item?id=38477688", + "content": "\n

Article URL: https://blog.marcocantu.com/blog/2023-november-turbopascal40.html

\n

Comments URL: https://news.ycombinator.com/item?id=38477688

\n

Points: 102

\n

# Comments: 52

\n", + "contentSnippet": "Article URL: https://blog.marcocantu.com/blog/2023-november-turbopascal40.html\nComments URL: https://news.ycombinator.com/item?id=38477688\nPoints: 102\n# Comments: 52", + "guid": "https://news.ycombinator.com/item?id=38477688", + "isoDate": "2023-11-30T19:08:48.000Z" + }, + { + "creator": "beefman", + "title": "Visual Anagrams: Generating optical illusions with diffusion models", + "link": "https://dangeng.github.io/visual_anagrams/", + "pubDate": "Thu, 30 Nov 2023 18:39:47 +0000", + "dc:creator": "beefman", + "comments": "https://news.ycombinator.com/item?id=38477259", + "content": "\n

Article URL: https://dangeng.github.io/visual_anagrams/

\n

Comments URL: https://news.ycombinator.com/item?id=38477259

\n

Points: 325

\n

# Comments: 23

\n", + "contentSnippet": "Article URL: https://dangeng.github.io/visual_anagrams/\nComments URL: https://news.ycombinator.com/item?id=38477259\nPoints: 325\n# Comments: 23", + "guid": "https://news.ycombinator.com/item?id=38477259", + "isoDate": "2023-11-30T18:39:47.000Z" + }, + { + "creator": "polyrand", + "title": "Accelerating Generative AI with PyTorch II: GPT, Fast", + "link": "https://pytorch.org/blog/accelerating-generative-ai-2/", + "pubDate": "Thu, 30 Nov 2023 18:35:00 +0000", + "dc:creator": "polyrand", + "comments": "https://news.ycombinator.com/item?id=38477197", + "content": "\n

Article URL: https://pytorch.org/blog/accelerating-generative-ai-2/

\n

Comments URL: https://news.ycombinator.com/item?id=38477197

\n

Points: 174

\n

# Comments: 43

\n", + "contentSnippet": "Article URL: https://pytorch.org/blog/accelerating-generative-ai-2/\nComments URL: https://news.ycombinator.com/item?id=38477197\nPoints: 174\n# Comments: 43", + "guid": "https://news.ycombinator.com/item?id=38477197", + "isoDate": "2023-11-30T18:35:00.000Z" + }, + { + "creator": "jevans", + "title": "The weirdest bug I've seen yet", + "link": "https://engineering.gusto.com/the-weirdest-bug-ive-seen-yet/", + "pubDate": "Thu, 30 Nov 2023 18:29:01 +0000", + "dc:creator": "jevans", + "comments": "https://news.ycombinator.com/item?id=38477100", + "content": "\n

Article URL: https://engineering.gusto.com/the-weirdest-bug-ive-seen-yet/

\n

Comments URL: https://news.ycombinator.com/item?id=38477100

\n

Points: 309

\n

# Comments: 190

\n", + "contentSnippet": "Article URL: https://engineering.gusto.com/the-weirdest-bug-ive-seen-yet/\nComments URL: https://news.ycombinator.com/item?id=38477100\nPoints: 309\n# Comments: 190", + "guid": "https://news.ycombinator.com/item?id=38477100", + "isoDate": "2023-11-30T18:29:01.000Z" + }, + { + "creator": "todsacerdoti", + "title": "You do need a technical co-founder [video]", + "link": "https://www.ycombinator.com/blog/why-you-really-do-need-a-technical-co-founder/", + "pubDate": "Thu, 30 Nov 2023 18:25:44 +0000", + "dc:creator": "todsacerdoti", + "comments": "https://news.ycombinator.com/item?id=38477057", + "content": "\n

Article URL: https://www.ycombinator.com/blog/why-you-really-do-need-a-technical-co-founder/

\n

Comments URL: https://news.ycombinator.com/item?id=38477057

\n

Points: 161

\n

# Comments: 222

\n", + "contentSnippet": "Article URL: https://www.ycombinator.com/blog/why-you-really-do-need-a-technical-co-founder/\nComments URL: https://news.ycombinator.com/item?id=38477057\nPoints: 161\n# Comments: 222", + "guid": "https://news.ycombinator.com/item?id=38477057", + "isoDate": "2023-11-30T18:25:44.000Z" + }, + { + "creator": "jasondavies", + "title": "Animate Anyone: Image-to-video synthesis for character animation", + "link": "https://humanaigc.github.io/animate-anyone/", + "pubDate": "Thu, 30 Nov 2023 17:45:57 +0000", + "dc:creator": "jasondavies", + "comments": "https://news.ycombinator.com/item?id=38476482", + "content": "\n

Article URL: https://humanaigc.github.io/animate-anyone/

\n

Comments URL: https://news.ycombinator.com/item?id=38476482

\n

Points: 86

\n

# Comments: 33

\n", + "contentSnippet": "Article URL: https://humanaigc.github.io/animate-anyone/\nComments URL: https://news.ycombinator.com/item?id=38476482\nPoints: 86\n# Comments: 33", + "guid": "https://news.ycombinator.com/item?id=38476482", + "isoDate": "2023-11-30T17:45:57.000Z" + }, + { + "creator": "green-eclipse", + "title": "How to ripen and store avocados", + "link": "https://www.seriouseats.com/how-to-ripen-avocados-7377071", + "pubDate": "Thu, 30 Nov 2023 17:05:48 +0000", + "dc:creator": "green-eclipse", + "comments": "https://news.ycombinator.com/item?id=38475926", + "content": "\n

Article URL: https://www.seriouseats.com/how-to-ripen-avocados-7377071

\n

Comments URL: https://news.ycombinator.com/item?id=38475926

\n

Points: 164

\n

# Comments: 119

\n", + "contentSnippet": "Article URL: https://www.seriouseats.com/how-to-ripen-avocados-7377071\nComments URL: https://news.ycombinator.com/item?id=38475926\nPoints: 164\n# Comments: 119", + "guid": "https://news.ycombinator.com/item?id=38475926", + "isoDate": "2023-11-30T17:05:48.000Z" + }, + { + "creator": "axiomdata316", + "title": "Stanis\u0142aw Lem's vision of artificial life", + "link": "https://thereader.mitpress.mit.edu/stanislaw-lems-prescient-vision-of-artificial-life/", + "pubDate": "Thu, 30 Nov 2023 16:35:24 +0000", + "dc:creator": "axiomdata316", + "comments": "https://news.ycombinator.com/item?id=38475545", + "content": "\n

Article URL: https://thereader.mitpress.mit.edu/stanislaw-lems-prescient-vision-of-artificial-life/

\n

Comments URL: https://news.ycombinator.com/item?id=38475545

\n

Points: 303

\n

# Comments: 119

\n", + "contentSnippet": "Article URL: https://thereader.mitpress.mit.edu/stanislaw-lems-prescient-vision-of-artificial-life/\nComments URL: https://news.ycombinator.com/item?id=38475545\nPoints: 303\n# Comments: 119", + "guid": "https://news.ycombinator.com/item?id=38475545", + "isoDate": "2023-11-30T16:35:24.000Z" + }, + { + "creator": "mnode", + "title": "Large language models lack deep insights or a theory of mind", + "link": "https://arxiv.org/abs/2311.16093", + "pubDate": "Thu, 30 Nov 2023 15:31:26 +0000", + "dc:creator": "mnode", + "comments": "https://news.ycombinator.com/item?id=38474696", + "content": "\n

Article URL: https://arxiv.org/abs/2311.16093

\n

Comments URL: https://news.ycombinator.com/item?id=38474696

\n

Points: 210

\n

# Comments: 205

\n", + "contentSnippet": "Article URL: https://arxiv.org/abs/2311.16093\nComments URL: https://news.ycombinator.com/item?id=38474696\nPoints: 210\n# Comments: 205", + "guid": "https://news.ycombinator.com/item?id=38474696", + "isoDate": "2023-11-30T15:31:26.000Z" + }, + { + "creator": "gmays", + "title": "Astronomers find six planets orbiting in resonance", + "link": "https://www.astronomy.com/science/astronomers-find-six-planets-orbiting-in-resonance/", + "pubDate": "Thu, 30 Nov 2023 15:06:51 +0000", + "dc:creator": "gmays", + "comments": "https://news.ycombinator.com/item?id=38474364", + "content": "\n

Article URL: https://www.astronomy.com/science/astronomers-find-six-planets-orbiting-in-resonance/

\n

Comments URL: https://news.ycombinator.com/item?id=38474364

\n

Points: 128

\n

# Comments: 30

\n", + "contentSnippet": "Article URL: https://www.astronomy.com/science/astronomers-find-six-planets-orbiting-in-resonance/\nComments URL: https://news.ycombinator.com/item?id=38474364\nPoints: 128\n# Comments: 30", + "guid": "https://news.ycombinator.com/item?id=38474364", + "isoDate": "2023-11-30T15:06:51.000Z" + }, + { + "creator": "rcarmo", + "title": "Scripts for Streamlining Your Homelab with Proxmox VE", + "link": "https://tteck.github.io/Proxmox/", + "pubDate": "Thu, 30 Nov 2023 14:36:43 +0000", + "dc:creator": "rcarmo", + "comments": "https://news.ycombinator.com/item?id=38474003", + "content": "\n

Article URL: https://tteck.github.io/Proxmox/

\n

Comments URL: https://news.ycombinator.com/item?id=38474003

\n

Points: 137

\n

# Comments: 89

\n", + "contentSnippet": "Article URL: https://tteck.github.io/Proxmox/\nComments URL: https://news.ycombinator.com/item?id=38474003\nPoints: 137\n# Comments: 89", + "guid": "https://news.ycombinator.com/item?id=38474003", + "isoDate": "2023-11-30T14:36:43.000Z" + }, + { + "creator": "CathalMullan", + "title": "Yabai \u2013 A tiling window manager for macOS", + "link": "https://github.com/koekeishiya/yabai", + "pubDate": "Thu, 30 Nov 2023 14:32:15 +0000", + "dc:creator": "CathalMullan", + "comments": "https://news.ycombinator.com/item?id=38473942", + "content": "\n

Article URL: https://github.com/koekeishiya/yabai

\n

Comments URL: https://news.ycombinator.com/item?id=38473942

\n

Points: 222

\n

# Comments: 165

\n", + "contentSnippet": "Article URL: https://github.com/koekeishiya/yabai\nComments URL: https://news.ycombinator.com/item?id=38473942\nPoints: 222\n# Comments: 165", + "guid": "https://news.ycombinator.com/item?id=38473942", + "isoDate": "2023-11-30T14:32:15.000Z" + }, + { + "creator": "matharmin", + "title": "Show HN: Bi-directional sync between Postgres and SQLite", + "link": "https://powersync.com", + "pubDate": "Thu, 30 Nov 2023 14:13:25 +0000", + "dc:creator": "matharmin", + "comments": "https://news.ycombinator.com/item?id=38473743", + "content": "\n

Hi HN,

Today we\u2019re launching PowerSync, a Postgres<>SQLite bi-directional sync engine that enables an offline-first app architecture. It currently supports Flutter, React Native and web (JavaScript) using Wasm SQLite in the browser, with more client SDKs on the way.

Conrad and I (Ralf) have been working on our sync engine since 2009, originally as part of a full-stack app platform. That version of the system is still used in production worldwide and we\u2019ve learnt a lot from its use cases and scaling. About a year ago we started on spinning off PowerSync as a standalone product that is designed to be stack-agnostic.

If you\u2019d like to see a simple demo, check out the pebbles widget on the landing page here: https://www.powersync.com/

We wrote about our architecture and design philosophy here: https://www.powersync.com/blog/introducing-powersync-v1-0-po...

This covers amongst other things how we designed the system for scalable dynamic partial replication, why we use a server authority architecture based on an event log instead of CRDTs for merging changes, and the approach to consistency.

Our docs can be found here: https://docs.powersync.com/

We would love to hear your feedback!\n- Ralf, Conrad, Kobie, Phillip and team

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38473743

\n

Points: 34

\n

# Comments: 4

\n", + "contentSnippet": "Hi HN,\nToday we\u2019re launching PowerSync, a PostgresSQLite bi-directional sync engine that enables an offline-first app architecture. It currently supports Flutter, React Native and web (JavaScript) using Wasm SQLite in the browser, with more client SDKs on the way.\nConrad and I (Ralf) have been working on our sync engine since 2009, originally as part of a full-stack app platform. That version of the system is still used in production worldwide and we\u2019ve learnt a lot from its use cases and scaling. About a year ago we started on spinning off PowerSync as a standalone product that is designed to be stack-agnostic.\nIf you\u2019d like to see a simple demo, check out the pebbles widget on the landing page here: https://www.powersync.com/\nWe wrote about our architecture and design philosophy here: https://www.powersync.com/blog/introducing-powersync-v1-0-po...\nThis covers amongst other things how we designed the system for scalable dynamic partial replication, why we use a server authority architecture based on an event log instead of CRDTs for merging changes, and the approach to consistency.\nOur docs can be found here: https://docs.powersync.com/\nWe would love to hear your feedback!\n- Ralf, Conrad, Kobie, Phillip and team\nComments URL: https://news.ycombinator.com/item?id=38473743\nPoints: 34\n# Comments: 4", + "guid": "https://news.ycombinator.com/item?id=38473743", + "isoDate": "2023-11-30T14:13:25.000Z" + }, + { + "creator": "wslh", + "title": "Can generalist foundation models beat special-purpose tuning?", + "link": "https://arxiv.org/abs/2311.16452", + "pubDate": "Thu, 30 Nov 2023 11:14:23 +0000", + "dc:creator": "wslh", + "comments": "https://news.ycombinator.com/item?id=38472128", + "content": "\n

Article URL: https://arxiv.org/abs/2311.16452

\n

Comments URL: https://news.ycombinator.com/item?id=38472128

\n

Points: 100

\n

# Comments: 57

\n", + "contentSnippet": "Article URL: https://arxiv.org/abs/2311.16452\nComments URL: https://news.ycombinator.com/item?id=38472128\nPoints: 100\n# Comments: 57", + "guid": "https://news.ycombinator.com/item?id=38472128", + "isoDate": "2023-11-30T11:14:23.000Z" + }, + { + "creator": "duck", + "title": "Brickception", + "link": "https://brickception.xyz/", + "pubDate": "Thu, 30 Nov 2023 07:35:17 +0000", + "dc:creator": "duck", + "comments": "https://news.ycombinator.com/item?id=38470764", + "content": "\n

Article URL: https://brickception.xyz/

\n

Comments URL: https://news.ycombinator.com/item?id=38470764

\n

Points: 492

\n

# Comments: 73

\n", + "contentSnippet": "Article URL: https://brickception.xyz/\nComments URL: https://news.ycombinator.com/item?id=38470764\nPoints: 492\n# Comments: 73", + "guid": "https://news.ycombinator.com/item?id=38470764", + "isoDate": "2023-11-30T07:35:17.000Z" + }, + { + "creator": "costco", + "title": "Why I always hit the crosswalk button (2015)", + "link": "https://www.klittlepage.com/2015/01/21/why-i-always-hit-the-crosswalk-button/", + "pubDate": "Wed, 29 Nov 2023 16:46:00 +0000", + "dc:creator": "costco", + "comments": "https://news.ycombinator.com/item?id=38461726", + "content": "\n

Article URL: https://www.klittlepage.com/2015/01/21/why-i-always-hit-the-crosswalk-button/

\n

Comments URL: https://news.ycombinator.com/item?id=38461726

\n

Points: 31

\n

# Comments: 79

\n", + "contentSnippet": "Article URL: https://www.klittlepage.com/2015/01/21/why-i-always-hit-the-crosswalk-button/\nComments URL: https://news.ycombinator.com/item?id=38461726\nPoints: 31\n# Comments: 79", + "guid": "https://news.ycombinator.com/item?id=38461726", + "isoDate": "2023-11-29T16:46:00.000Z" + }, + { + "creator": "toomuchtodo", + "title": "Broadcom to Cut Almost 1,300 VMware Jobs in California After Takeover", + "link": "https://www.bloomberg.com/news/articles/2023-11-30/broadcom-to-cut-almost-1-300-vmware-jobs-in-california-after-takeover", + "pubDate": "Thu, 30 Nov 2023 23:28:42 +0000", + "dc:creator": "toomuchtodo", + "comments": "https://news.ycombinator.com/item?id=38480748", + "content": "\n

Article URL: https://www.bloomberg.com/news/articles/2023-11-30/broadcom-to-cut-almost-1-300-vmware-jobs-in-california-after-takeover

\n

Comments URL: https://news.ycombinator.com/item?id=38480748

\n

Points: 75

\n

# Comments: 21

\n", + "contentSnippet": "Article URL: https://www.bloomberg.com/news/articles/2023-11-30/broadcom-to-cut-almost-1-300-vmware-jobs-in-california-after-takeover\nComments URL: https://news.ycombinator.com/item?id=38480748\nPoints: 75\n# Comments: 21", + "guid": "https://news.ycombinator.com/item?id=38480748", + "isoDate": "2023-11-30T23:28:42.000Z" + }, + { + "creator": "Kharacternyk", + "title": "Show HN: Play a pen-and-paper game that is almost unknown in the US and Europe", + "link": "https://www.paper-tactics.com", + "pubDate": "Thu, 30 Nov 2023 11:44:43 +0000", + "dc:creator": "Kharacternyk", + "comments": "https://news.ycombinator.com/item?id=38472333", + "content": "\n

Article URL: https://www.paper-tactics.com

\n

Comments URL: https://news.ycombinator.com/item?id=38472333

\n

Points: 65

\n

# Comments: 26

\n", + "contentSnippet": "Article URL: https://www.paper-tactics.com\nComments URL: https://news.ycombinator.com/item?id=38472333\nPoints: 65\n# Comments: 26", + "guid": "https://news.ycombinator.com/item?id=38472333", + "isoDate": "2023-11-30T11:44:43.000Z" + }, + { + "creator": "whereistimbo", + "title": "In OpenZFS and Btrfs, everyone was just guessing", + "link": "https://www.phoronix.com/forums/forum/phoronix/latest-phoronix-articles/1424461-openzfs-is-still-battling-a-data-corruption-issue?p=1424496#post1424496", + "pubDate": "Thu, 30 Nov 2023 11:13:51 +0000", + "dc:creator": "whereistimbo", + "comments": "https://news.ycombinator.com/item?id=38472124", + "content": "\n

Article URL: https://www.phoronix.com/forums/forum/phoronix/latest-phoronix-articles/1424461-openzfs-is-still-battling-a-data-corruption-issue?p=1424496#post1424496

\n

Comments URL: https://news.ycombinator.com/item?id=38472124

\n

Points: 68

\n

# Comments: 50

\n", + "contentSnippet": "Article URL: https://www.phoronix.com/forums/forum/phoronix/latest-phoronix-articles/1424461-openzfs-is-still-battling-a-data-corruption-issue?p=1424496#post1424496\nComments URL: https://news.ycombinator.com/item?id=38472124\nPoints: 68\n# Comments: 50", + "guid": "https://news.ycombinator.com/item?id=38472124", + "isoDate": "2023-11-30T11:13:51.000Z" + }, + { + "creator": "luu", + "title": "Interview with Viktor Lofgren from Marginalia Search", + "link": "https://nlnet.nl/news/2023/20231016-marginalia.html", + "pubDate": "Thu, 30 Nov 2023 07:47:58 +0000", + "dc:creator": "luu", + "comments": "https://news.ycombinator.com/item?id=38470832", + "content": "\n

Article URL: https://nlnet.nl/news/2023/20231016-marginalia.html

\n

Comments URL: https://news.ycombinator.com/item?id=38470832

\n

Points: 37

\n

# Comments: 8

\n", + "contentSnippet": "Article URL: https://nlnet.nl/news/2023/20231016-marginalia.html\nComments URL: https://news.ycombinator.com/item?id=38470832\nPoints: 37\n# Comments: 8", + "guid": "https://news.ycombinator.com/item?id=38470832", + "isoDate": "2023-11-30T07:47:58.000Z" + }, + { + "creator": "duck", + "title": "Properties of Lights Out: The Game", + "link": "https://imois.in/posts/the-properties-of-lights-out-the-game/", + "pubDate": "Thu, 30 Nov 2023 06:27:49 +0000", + "dc:creator": "duck", + "comments": "https://news.ycombinator.com/item?id=38470355", + "content": "\n

Article URL: https://imois.in/posts/the-properties-of-lights-out-the-game/

\n

Comments URL: https://news.ycombinator.com/item?id=38470355

\n

Points: 32

\n

# Comments: 6

\n", + "contentSnippet": "Article URL: https://imois.in/posts/the-properties-of-lights-out-the-game/\nComments URL: https://news.ycombinator.com/item?id=38470355\nPoints: 32\n# Comments: 6", + "guid": "https://news.ycombinator.com/item?id=38470355", + "isoDate": "2023-11-30T06:27:49.000Z" + }, + { + "creator": "indrora", + "title": "A reality bending mistake in Apple's computational photography", + "link": "https://appleinsider.com/articles/23/11/30/a-bride-to-be-discovers-a-reality-bending-mistake-in-apples-computational-photography", + "pubDate": "Fri, 01 Dec 2023 02:02:25 +0000", + "dc:creator": "indrora", + "comments": "https://news.ycombinator.com/item?id=38482085", + "content": "\n

Article URL: https://appleinsider.com/articles/23/11/30/a-bride-to-be-discovers-a-reality-bending-mistake-in-apples-computational-photography

\n

Comments URL: https://news.ycombinator.com/item?id=38482085

\n

Points: 44

\n

# Comments: 6

\n", + "contentSnippet": "Article URL: https://appleinsider.com/articles/23/11/30/a-bride-to-be-discovers-a-reality-bending-mistake-in-apples-computational-photography\nComments URL: https://news.ycombinator.com/item?id=38482085\nPoints: 44\n# Comments: 6", + "guid": "https://news.ycombinator.com/item?id=38482085", + "isoDate": "2023-12-01T02:02:25.000Z" + }, + { + "creator": "rkwz", + "title": "ChatGPT's 1-Year Anniversary: Are Open-Source Large Language Models Catching Up?", + "link": "https://arxiv.org/abs/2311.16989", + "pubDate": "Fri, 01 Dec 2023 01:49:36 +0000", + "dc:creator": "rkwz", + "comments": "https://news.ycombinator.com/item?id=38481970", + "content": "\n

Article URL: https://arxiv.org/abs/2311.16989

\n

Comments URL: https://news.ycombinator.com/item?id=38481970

\n

Points: 33

\n

# Comments: 2

\n", + "contentSnippet": "Article URL: https://arxiv.org/abs/2311.16989\nComments URL: https://news.ycombinator.com/item?id=38481970\nPoints: 33\n# Comments: 2", + "guid": "https://news.ycombinator.com/item?id=38481970", + "isoDate": "2023-12-01T01:49:36.000Z" + }, + { + "creator": "explaininjs", + "title": "Music-Map \u2013 Find Similar Music", + "link": "https://www.music-map.com", + "pubDate": "Fri, 01 Dec 2023 00:44:21 +0000", + "dc:creator": "explaininjs", + "comments": "https://news.ycombinator.com/item?id=38481426", + "content": "\n

Article URL: https://www.music-map.com

\n

Comments URL: https://news.ycombinator.com/item?id=38481426

\n

Points: 35

\n

# Comments: 15

\n", + "contentSnippet": "Article URL: https://www.music-map.com\nComments URL: https://news.ycombinator.com/item?id=38481426\nPoints: 35\n# Comments: 15", + "guid": "https://news.ycombinator.com/item?id=38481426", + "isoDate": "2023-12-01T00:44:21.000Z" + }, + { + "creator": "stefankuehnel", + "title": "Skyfield: Elegant Astronomy for Python", + "link": "https://rhodesmill.org/skyfield/", + "pubDate": "Fri, 01 Dec 2023 00:03:11 +0000", + "dc:creator": "stefankuehnel", + "comments": "https://news.ycombinator.com/item?id=38481063", + "content": "\n

Article URL: https://rhodesmill.org/skyfield/

\n

Comments URL: https://news.ycombinator.com/item?id=38481063

\n

Points: 36

\n

# Comments: 4

\n", + "contentSnippet": "Article URL: https://rhodesmill.org/skyfield/\nComments URL: https://news.ycombinator.com/item?id=38481063\nPoints: 36\n# Comments: 4", + "guid": "https://news.ycombinator.com/item?id=38481063", + "isoDate": "2023-12-01T00:03:11.000Z" + }, + { + "creator": "kiyanwang", + "title": "Goodbye, Clean Code", + "link": "https://overreacted.io/goodbye-clean-code/", + "pubDate": "Fri, 08 Dec 2023 07:12:15 +0000", + "dc:creator": "kiyanwang", + "comments": "https://news.ycombinator.com/item?id=38566235", + "content": "\n

Article URL: https://overreacted.io/goodbye-clean-code/

\n

Comments URL: https://news.ycombinator.com/item?id=38566235

\n

Points: 93

\n

# Comments: 68

\n", + "contentSnippet": "Article URL: https://overreacted.io/goodbye-clean-code/\nComments URL: https://news.ycombinator.com/item?id=38566235\nPoints: 93\n# Comments: 68", + "guid": "https://news.ycombinator.com/item?id=38566235", + "isoDate": "2023-12-08T07:12:15.000Z" + }, + { + "creator": "kermitdekikker", + "title": "Average distance to a supermarket in Amsterdam is 400 meter or 1300 feet", + "link": "https://www.oozo.nl/nabije-voorzieningen/amsterdam", + "pubDate": "Fri, 08 Dec 2023 05:40:00 +0000", + "dc:creator": "kermitdekikker", + "comments": "https://news.ycombinator.com/item?id=38565801", + "content": "\n

Article URL: https://www.oozo.nl/nabije-voorzieningen/amsterdam

\n

Comments URL: https://news.ycombinator.com/item?id=38565801

\n

Points: 40

\n

# Comments: 57

\n", + "contentSnippet": "Article URL: https://www.oozo.nl/nabije-voorzieningen/amsterdam\nComments URL: https://news.ycombinator.com/item?id=38565801\nPoints: 40\n# Comments: 57", + "guid": "https://news.ycombinator.com/item?id=38565801", + "isoDate": "2023-12-08T05:40:00.000Z" + }, + { + "creator": "mroche", + "title": "Kagi Search \u2013 Paywalled articles indicator and improved weather widget", + "link": "https://kagi.com/changelog", + "pubDate": "Fri, 08 Dec 2023 05:03:50 +0000", + "dc:creator": "mroche", + "comments": "https://news.ycombinator.com/item?id=38565651", + "content": "\n

Article URL: https://kagi.com/changelog

\n

Comments URL: https://news.ycombinator.com/item?id=38565651

\n

Points: 87

\n

# Comments: 32

\n", + "contentSnippet": "Article URL: https://kagi.com/changelog\nComments URL: https://news.ycombinator.com/item?id=38565651\nPoints: 87\n# Comments: 32", + "guid": "https://news.ycombinator.com/item?id=38565651", + "isoDate": "2023-12-08T05:03:50.000Z" + }, + { + "creator": "indigodaddy", + "title": "Reviving decade-old Macs with antiX and MX Linux (2022)", + "link": "https://sts10.github.io/2022/12/14/antix-on-2008-macbook-5-1.html", + "pubDate": "Fri, 08 Dec 2023 04:59:34 +0000", + "dc:creator": "indigodaddy", + "comments": "https://news.ycombinator.com/item?id=38565629", + "content": "\n

Article URL: https://sts10.github.io/2022/12/14/antix-on-2008-macbook-5-1.html

\n

Comments URL: https://news.ycombinator.com/item?id=38565629

\n

Points: 68

\n

# Comments: 30

\n", + "contentSnippet": "Article URL: https://sts10.github.io/2022/12/14/antix-on-2008-macbook-5-1.html\nComments URL: https://news.ycombinator.com/item?id=38565629\nPoints: 68\n# Comments: 30", + "guid": "https://news.ycombinator.com/item?id=38565629", + "isoDate": "2023-12-08T04:59:34.000Z" + }, + { + "creator": "sebg", + "title": "We investigated France's mass profiling machine", + "link": "https://www.lighthousereports.com/methodology/how-we-investigated-frances-mass-profiling-machine/", + "pubDate": "Fri, 08 Dec 2023 02:45:28 +0000", + "dc:creator": "sebg", + "comments": "https://news.ycombinator.com/item?id=38564808", + "content": "\n

Article URL: https://www.lighthousereports.com/methodology/how-we-investigated-frances-mass-profiling-machine/

\n

Comments URL: https://news.ycombinator.com/item?id=38564808

\n

Points: 100

\n

# Comments: 32

\n", + "contentSnippet": "Article URL: https://www.lighthousereports.com/methodology/how-we-investigated-frances-mass-profiling-machine/\nComments URL: https://news.ycombinator.com/item?id=38564808\nPoints: 100\n# Comments: 32", + "guid": "https://news.ycombinator.com/item?id=38564808", + "isoDate": "2023-12-08T02:45:28.000Z" + }, + { + "creator": "pconst167", + "title": "Show HN: Homebrew 16bit CPU from 74HC logic with C compiler and Unix-like OS", + "link": "http://www.sol-1.org/index.php", + "pubDate": "Fri, 08 Dec 2023 01:32:39 +0000", + "dc:creator": "pconst167", + "comments": "https://news.ycombinator.com/item?id=38564286", + "content": "\n

This is a 16bit CPU+Minicomputer from pure 74 series logic. It has user/kernel modes, virtual memory, prioritized IRQ's and DMA. It has a full C compiler and a unix-like OS. It's still in development.

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38564286

\n

Points: 84

\n

# Comments: 11

\n", + "contentSnippet": "This is a 16bit CPU+Minicomputer from pure 74 series logic. It has user/kernel modes, virtual memory, prioritized IRQ's and DMA. It has a full C compiler and a unix-like OS. It's still in development.\nComments URL: https://news.ycombinator.com/item?id=38564286\nPoints: 84\n# Comments: 11", + "guid": "https://news.ycombinator.com/item?id=38564286", + "isoDate": "2023-12-08T01:32:39.000Z" + }, + { + "creator": "cglong", + "title": "The Omnichord will be re-produced to commemorate our 70th anniversary", + "link": "https://suzukimusic-global.com/products_single.php?parent_cate_cd=3&products_cate_cd=34&products_cd=315", + "pubDate": "Fri, 08 Dec 2023 00:06:27 +0000", + "dc:creator": "cglong", + "comments": "https://news.ycombinator.com/item?id=38563627", + "content": "\n

Article URL: https://suzukimusic-global.com/products_single.php?parent_cate_cd=3&products_cate_cd=34&products_cd=315

\n

Comments URL: https://news.ycombinator.com/item?id=38563627

\n

Points: 105

\n

# Comments: 29

\n", + "contentSnippet": "Article URL: https://suzukimusic-global.com/products_single.php?parent_cate_cd=3&products_cate_cd=34&products_cd=315\nComments URL: https://news.ycombinator.com/item?id=38563627\nPoints: 105\n# Comments: 29", + "guid": "https://news.ycombinator.com/item?id=38563627", + "isoDate": "2023-12-08T00:06:27.000Z" + }, + { + "creator": "vwoolf", + "title": "A genetically modified bacterium that outcompetes bacteria causing tooth decay", + "link": "https://www.astralcodexten.com/p/defying-cavity-lantern-bioworks-faq", + "pubDate": "Thu, 07 Dec 2023 22:55:44 +0000", + "dc:creator": "vwoolf", + "comments": "https://news.ycombinator.com/item?id=38562939", + "content": "\n

Article URL: https://www.astralcodexten.com/p/defying-cavity-lantern-bioworks-faq

\n

Comments URL: https://news.ycombinator.com/item?id=38562939

\n

Points: 135

\n

# Comments: 54

\n", + "contentSnippet": "Article URL: https://www.astralcodexten.com/p/defying-cavity-lantern-bioworks-faq\nComments URL: https://news.ycombinator.com/item?id=38562939\nPoints: 135\n# Comments: 54", + "guid": "https://news.ycombinator.com/item?id=38562939", + "isoDate": "2023-12-07T22:55:44.000Z" + }, + { + "creator": "apsec112", + "title": "How Many Hobbits? A Demographic Analysis of Middle Earth", + "link": "https://medium.com/@lymanstone/how-many-hobbits-a-demographic-analysis-of-middle-earth-cd53b91d141f", + "pubDate": "Thu, 07 Dec 2023 22:14:15 +0000", + "dc:creator": "apsec112", + "comments": "https://news.ycombinator.com/item?id=38562558", + "content": "\n

Article URL: https://medium.com/@lymanstone/how-many-hobbits-a-demographic-analysis-of-middle-earth-cd53b91d141f

\n

Comments URL: https://news.ycombinator.com/item?id=38562558

\n

Points: 108

\n

# Comments: 70

\n", + "contentSnippet": "Article URL: https://medium.com/@lymanstone/how-many-hobbits-a-demographic-analysis-of-middle-earth-cd53b91d141f\nComments URL: https://news.ycombinator.com/item?id=38562558\nPoints: 108\n# Comments: 70", + "guid": "https://news.ycombinator.com/item?id=38562558", + "isoDate": "2023-12-07T22:14:15.000Z" + }, + { + "creator": "dimmke", + "title": "Making noisy SVGs", + "link": "https://daniel.do/article/making-noisy-svgs/", + "pubDate": "Thu, 07 Dec 2023 18:04:56 +0000", + "dc:creator": "dimmke", + "comments": "https://news.ycombinator.com/item?id=38559607", + "content": "\n

Article URL: https://daniel.do/article/making-noisy-svgs/

\n

Comments URL: https://news.ycombinator.com/item?id=38559607

\n

Points: 397

\n

# Comments: 74

\n", + "contentSnippet": "Article URL: https://daniel.do/article/making-noisy-svgs/\nComments URL: https://news.ycombinator.com/item?id=38559607\nPoints: 397\n# Comments: 74", + "guid": "https://news.ycombinator.com/item?id=38559607", + "isoDate": "2023-12-07T18:04:56.000Z" + }, + { + "creator": "darthShadow", + "title": "Choose your own IP", + "link": "https://tailscale.com/blog/choose-your-ip/", + "pubDate": "Thu, 07 Dec 2023 17:29:50 +0000", + "dc:creator": "darthShadow", + "comments": "https://news.ycombinator.com/item?id=38559192", + "content": "\n

Article URL: https://tailscale.com/blog/choose-your-ip/

\n

Comments URL: https://news.ycombinator.com/item?id=38559192

\n

Points: 252

\n

# Comments: 120

\n", + "contentSnippet": "Article URL: https://tailscale.com/blog/choose-your-ip/\nComments URL: https://news.ycombinator.com/item?id=38559192\nPoints: 252\n# Comments: 120", + "guid": "https://news.ycombinator.com/item?id=38559192", + "isoDate": "2023-12-07T17:29:50.000Z" + }, + { + "creator": "tptacek", + "title": "A lost X-Files song", + "link": "https://twitter.com/laurenancona/status/1731900441800155459", + "pubDate": "Thu, 07 Dec 2023 16:36:10 +0000", + "dc:creator": "tptacek", + "comments": "https://news.ycombinator.com/item?id=38558423", + "content": "\n

Article URL: https://twitter.com/laurenancona/status/1731900441800155459

\n

Comments URL: https://news.ycombinator.com/item?id=38558423

\n

Points: 329

\n

# Comments: 128

\n", + "contentSnippet": "Article URL: https://twitter.com/laurenancona/status/1731900441800155459\nComments URL: https://news.ycombinator.com/item?id=38558423\nPoints: 329\n# Comments: 128", + "guid": "https://news.ycombinator.com/item?id=38558423", + "isoDate": "2023-12-07T16:36:10.000Z" + }, + { + "creator": "sebg", + "title": "Data Engineering Design Patterns", + "link": "https://www.dedp.online/", + "pubDate": "Thu, 07 Dec 2023 15:51:49 +0000", + "dc:creator": "sebg", + "comments": "https://news.ycombinator.com/item?id=38557715", + "content": "\n

Article URL: https://www.dedp.online/

\n

Comments URL: https://news.ycombinator.com/item?id=38557715

\n

Points: 269

\n

# Comments: 39

\n", + "contentSnippet": "Article URL: https://www.dedp.online/\nComments URL: https://news.ycombinator.com/item?id=38557715\nPoints: 269\n# Comments: 39", + "guid": "https://news.ycombinator.com/item?id=38557715", + "isoDate": "2023-12-07T15:51:49.000Z" + }, + { + "creator": "tosh", + "title": "Fake chips, I got stung", + "link": "https://linuxjedi.co.uk/2023/12/01/fake-chips-i-got-stung/", + "pubDate": "Thu, 07 Dec 2023 15:13:56 +0000", + "dc:creator": "tosh", + "comments": "https://news.ycombinator.com/item?id=38557246", + "content": "\n

Article URL: https://linuxjedi.co.uk/2023/12/01/fake-chips-i-got-stung/

\n

Comments URL: https://news.ycombinator.com/item?id=38557246

\n

Points: 253

\n

# Comments: 175

\n", + "contentSnippet": "Article URL: https://linuxjedi.co.uk/2023/12/01/fake-chips-i-got-stung/\nComments URL: https://news.ycombinator.com/item?id=38557246\nPoints: 253\n# Comments: 175", + "guid": "https://news.ycombinator.com/item?id=38557246", + "isoDate": "2023-12-07T15:13:56.000Z" + }, + { + "creator": "toomuchtodo", + "title": "Tesla shares 48V architecture with other automakers", + "link": "https://electrek.co/2023/12/07/tesla-shares-48v-architecture-with-other-automakers-to-move-the-industry/", + "pubDate": "Thu, 07 Dec 2023 15:10:30 +0000", + "dc:creator": "toomuchtodo", + "comments": "https://news.ycombinator.com/item?id=38557203", + "content": "\n

Article URL: https://electrek.co/2023/12/07/tesla-shares-48v-architecture-with-other-automakers-to-move-the-industry/

\n

Comments URL: https://news.ycombinator.com/item?id=38557203

\n

Points: 246

\n

# Comments: 363

\n", + "contentSnippet": "Article URL: https://electrek.co/2023/12/07/tesla-shares-48v-architecture-with-other-automakers-to-move-the-industry/\nComments URL: https://news.ycombinator.com/item?id=38557203\nPoints: 246\n# Comments: 363", + "guid": "https://news.ycombinator.com/item?id=38557203", + "isoDate": "2023-12-07T15:10:30.000Z" + }, + { + "creator": "geox", + "title": "Electric eel\u2019s zap can transfer genes to nearby animals", + "link": "https://www.nagoya-u.ac.jp/researchinfo/result-en/2023/12/20231207-01.html", + "pubDate": "Thu, 07 Dec 2023 12:36:01 +0000", + "dc:creator": "geox", + "comments": "https://news.ycombinator.com/item?id=38555655", + "content": "\n

Article URL: https://www.nagoya-u.ac.jp/researchinfo/result-en/2023/12/20231207-01.html

\n

Comments URL: https://news.ycombinator.com/item?id=38555655

\n

Points: 94

\n

# Comments: 30

\n", + "contentSnippet": "Article URL: https://www.nagoya-u.ac.jp/researchinfo/result-en/2023/12/20231207-01.html\nComments URL: https://news.ycombinator.com/item?id=38555655\nPoints: 94\n# Comments: 30", + "guid": "https://news.ycombinator.com/item?id=38555655", + "isoDate": "2023-12-07T12:36:01.000Z" + }, + { + "creator": "DamonHD", + "title": "Fairphone 5: Keeping it 10/10?", + "link": "https://www.ifixit.com/News/87664/fairphone-5-keeping-it-10-10", + "pubDate": "Thu, 07 Dec 2023 11:04:26 +0000", + "dc:creator": "DamonHD", + "comments": "https://news.ycombinator.com/item?id=38555115", + "content": "\n

Article URL: https://www.ifixit.com/News/87664/fairphone-5-keeping-it-10-10

\n

Comments URL: https://news.ycombinator.com/item?id=38555115

\n

Points: 337

\n

# Comments: 331

\n", + "contentSnippet": "Article URL: https://www.ifixit.com/News/87664/fairphone-5-keeping-it-10-10\nComments URL: https://news.ycombinator.com/item?id=38555115\nPoints: 337\n# Comments: 331", + "guid": "https://news.ycombinator.com/item?id=38555115", + "isoDate": "2023-12-07T11:04:26.000Z" + }, + { + "creator": "tomhazledine", + "title": "Show HN: My related-posts finder script (with LLM and GPT4 enhancement)", + "link": "https://tomhazledine.com/llm-related-posts/", + "pubDate": "Thu, 07 Dec 2023 10:43:46 +0000", + "dc:creator": "tomhazledine", + "comments": "https://news.ycombinator.com/item?id=38554994", + "content": "\n

I've open-sourced the script I use to find related blog posts (and to describe why they're similar).

Works on any set of markdown articles, so should fit into any SSG workflow.

Uses embeddings to calculate the similarities, and GPT4 to add descriptive text.

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38554994

\n

Points: 45

\n

# Comments: 4

\n", + "contentSnippet": "I've open-sourced the script I use to find related blog posts (and to describe why they're similar).\nWorks on any set of markdown articles, so should fit into any SSG workflow.\nUses embeddings to calculate the similarities, and GPT4 to add descriptive text.\nComments URL: https://news.ycombinator.com/item?id=38554994\nPoints: 45\n# Comments: 4", + "guid": "https://news.ycombinator.com/item?id=38554994", + "isoDate": "2023-12-07T10:43:46.000Z" + }, + { + "creator": "dmotz", + "title": "Gemini AI", + "link": "https://deepmind.google/technologies/gemini/", + "pubDate": "Wed, 06 Dec 2023 15:03:47 +0000", + "dc:creator": "dmotz", + "comments": "https://news.ycombinator.com/item?id=38544729", + "content": "\n

Article URL: https://deepmind.google/technologies/gemini/

\n

Comments URL: https://news.ycombinator.com/item?id=38544729

\n

Points: 2014

\n

# Comments: 1557

\n", + "contentSnippet": "Article URL: https://deepmind.google/technologies/gemini/\nComments URL: https://news.ycombinator.com/item?id=38544729\nPoints: 2014\n# Comments: 1557", + "guid": "https://news.ycombinator.com/item?id=38544729", + "isoDate": "2023-12-06T15:03:47.000Z" + }, + { + "creator": "sohkamyung", + "title": "Conway's Game of Life is omniperiodic", + "link": "https://arxiv.org/abs/2312.02799", + "pubDate": "Wed, 06 Dec 2023 12:47:22 +0000", + "dc:creator": "sohkamyung", + "comments": "https://news.ycombinator.com/item?id=38543133", + "content": "\n

Article URL: https://arxiv.org/abs/2312.02799

\n

Comments URL: https://news.ycombinator.com/item?id=38543133

\n

Points: 206

\n

# Comments: 68

\n", + "contentSnippet": "Article URL: https://arxiv.org/abs/2312.02799\nComments URL: https://news.ycombinator.com/item?id=38543133\nPoints: 206\n# Comments: 68", + "guid": "https://news.ycombinator.com/item?id=38543133", + "isoDate": "2023-12-06T12:47:22.000Z" + }, + { + "creator": "sohkamyung", + "title": "How Lego builds a new Lego set", + "link": "https://www.theverge.com/c/23991049/lego-ideas-polaroid-onestep-behind-the-scenes-price", + "pubDate": "Fri, 15 Dec 2023 12:25:26 +0000", + "dc:creator": "sohkamyung", + "comments": "https://news.ycombinator.com/item?id=38653456", + "content": "\n

Article URL: https://www.theverge.com/c/23991049/lego-ideas-polaroid-onestep-behind-the-scenes-price

\n

Comments URL: https://news.ycombinator.com/item?id=38653456

\n

Points: 151

\n

# Comments: 97

\n", + "contentSnippet": "Article URL: https://www.theverge.com/c/23991049/lego-ideas-polaroid-onestep-behind-the-scenes-price\nComments URL: https://news.ycombinator.com/item?id=38653456\nPoints: 151\n# Comments: 97", + "guid": "https://news.ycombinator.com/item?id=38653456", + "isoDate": "2023-12-15T12:25:26.000Z" + }, + { + "creator": "enz", + "title": "WebP is so great except it's not (2021)", + "link": "https://eng.aurelienpierre.com/2021/10/webp-is-so-great-except-its-not/", + "pubDate": "Fri, 15 Dec 2023 11:32:44 +0000", + "dc:creator": "enz", + "comments": "https://news.ycombinator.com/item?id=38653110", + "content": "\n

Article URL: https://eng.aurelienpierre.com/2021/10/webp-is-so-great-except-its-not/

\n

Comments URL: https://news.ycombinator.com/item?id=38653110

\n

Points: 150

\n

# Comments: 193

\n", + "contentSnippet": "Article URL: https://eng.aurelienpierre.com/2021/10/webp-is-so-great-except-its-not/\nComments URL: https://news.ycombinator.com/item?id=38653110\nPoints: 150\n# Comments: 193", + "guid": "https://news.ycombinator.com/item?id=38653110", + "isoDate": "2023-12-15T11:32:44.000Z" + }, + { + "creator": "miohtama", + "title": "EU tweaks law to allow using spyware against journalists", + "link": "https://www.politico.eu/article/eu-capitals-want-media-law-carve-out-to-spy-on-reporters/", + "pubDate": "Fri, 15 Dec 2023 10:51:29 +0000", + "dc:creator": "miohtama", + "comments": "https://news.ycombinator.com/item?id=38652905", + "content": "\n

Article URL: https://www.politico.eu/article/eu-capitals-want-media-law-carve-out-to-spy-on-reporters/

\n

Comments URL: https://news.ycombinator.com/item?id=38652905

\n

Points: 62

\n

# Comments: 14

\n", + "contentSnippet": "Article URL: https://www.politico.eu/article/eu-capitals-want-media-law-carve-out-to-spy-on-reporters/\nComments URL: https://news.ycombinator.com/item?id=38652905\nPoints: 62\n# Comments: 14", + "guid": "https://news.ycombinator.com/item?id=38652905", + "isoDate": "2023-12-15T10:51:29.000Z" + }, + { + "creator": "Hard_Space", + "title": "The Emergence of Full-Body Gaussian Splat Deepfake Humans", + "link": "https://blog.metaphysic.ai/the-emergence-of-full-body-gaussian-splat-deepfake-humans/", + "pubDate": "Fri, 15 Dec 2023 10:49:26 +0000", + "dc:creator": "Hard_Space", + "comments": "https://news.ycombinator.com/item?id=38652892", + "content": "\n

Article URL: https://blog.metaphysic.ai/the-emergence-of-full-body-gaussian-splat-deepfake-humans/

\n

Comments URL: https://news.ycombinator.com/item?id=38652892

\n

Points: 57

\n

# Comments: 33

\n", + "contentSnippet": "Article URL: https://blog.metaphysic.ai/the-emergence-of-full-body-gaussian-splat-deepfake-humans/\nComments URL: https://news.ycombinator.com/item?id=38652892\nPoints: 57\n# Comments: 33", + "guid": "https://news.ycombinator.com/item?id=38652892", + "isoDate": "2023-12-15T10:49:26.000Z" + }, + { + "creator": "pritambarhate", + "title": "Oxlint \u2013 Faster than ESLint", + "link": "https://oxc-project.github.io/blog/2023-12-12-announcing-oxlint.html", + "pubDate": "Fri, 15 Dec 2023 10:48:24 +0000", + "dc:creator": "pritambarhate", + "comments": "https://news.ycombinator.com/item?id=38652887", + "content": "\n

Article URL: https://oxc-project.github.io/blog/2023-12-12-announcing-oxlint.html

\n

Comments URL: https://news.ycombinator.com/item?id=38652887

\n

Points: 203

\n

# Comments: 139

\n", + "contentSnippet": "Article URL: https://oxc-project.github.io/blog/2023-12-12-announcing-oxlint.html\nComments URL: https://news.ycombinator.com/item?id=38652887\nPoints: 203\n# Comments: 139", + "guid": "https://news.ycombinator.com/item?id=38652887", + "isoDate": "2023-12-15T10:48:24.000Z" + }, + { + "creator": "joebig", + "title": "Interactive Tour of James Clerk Maxwell's House", + "link": "https://clerkmaxwellfoundation.org/india-street/housetour.html", + "pubDate": "Fri, 15 Dec 2023 10:31:37 +0000", + "dc:creator": "joebig", + "comments": "https://news.ycombinator.com/item?id=38652806", + "content": "\n

Article URL: https://clerkmaxwellfoundation.org/india-street/housetour.html

\n

Comments URL: https://news.ycombinator.com/item?id=38652806

\n

Points: 30

\n

# Comments: 12

\n", + "contentSnippet": "Article URL: https://clerkmaxwellfoundation.org/india-street/housetour.html\nComments URL: https://news.ycombinator.com/item?id=38652806\nPoints: 30\n# Comments: 12", + "guid": "https://news.ycombinator.com/item?id=38652806", + "isoDate": "2023-12-15T10:31:37.000Z" + }, + { + "creator": "uticus", + "title": "An Interactive Guide to the Fourier Transform", + "link": "https://betterexplained.com/articles/an-interactive-guide-to-the-fourier-transform/", + "pubDate": "Fri, 15 Dec 2023 10:29:40 +0000", + "dc:creator": "uticus", + "comments": "https://news.ycombinator.com/item?id=38652794", + "content": "\n

Article URL: https://betterexplained.com/articles/an-interactive-guide-to-the-fourier-transform/

\n

Comments URL: https://news.ycombinator.com/item?id=38652794

\n

Points: 80

\n

# Comments: 10

\n", + "contentSnippet": "Article URL: https://betterexplained.com/articles/an-interactive-guide-to-the-fourier-transform/\nComments URL: https://news.ycombinator.com/item?id=38652794\nPoints: 80\n# Comments: 10", + "guid": "https://news.ycombinator.com/item?id=38652794", + "isoDate": "2023-12-15T10:29:40.000Z" + }, + { + "creator": "hahnchen", + "title": "Ask HN: AI/ML papers to catch up with current state of AI?", + "link": "https://news.ycombinator.com/item?id=38652736", + "pubDate": "Fri, 15 Dec 2023 10:19:14 +0000", + "dc:creator": "hahnchen", + "comments": "https://news.ycombinator.com/item?id=38652736", + "content": "\n

I used to be into ML back in the R-CNN, GAN, ResNet era and would read papers/blogs.

Seems like ML is taking off recently and I want to get back into it! So far on my list I have attention is all you need, qlora, llama\u2019s and q learning. Suggestions?

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38652736

\n

Points: 121

\n

# Comments: 28

\n", + "contentSnippet": "I used to be into ML back in the R-CNN, GAN, ResNet era and would read papers/blogs.\nSeems like ML is taking off recently and I want to get back into it! So far on my list I have attention is all you need, qlora, llama\u2019s and q learning. Suggestions?\nComments URL: https://news.ycombinator.com/item?id=38652736\nPoints: 121\n# Comments: 28", + "guid": "https://news.ycombinator.com/item?id=38652736", + "isoDate": "2023-12-15T10:19:14.000Z" + }, + { + "creator": "ensocode", + "title": "Let it snow in your terminal", + "link": "https://pypi.org/project/snowjob/", + "pubDate": "Fri, 15 Dec 2023 08:56:59 +0000", + "dc:creator": "ensocode", + "comments": "https://news.ycombinator.com/item?id=38652339", + "content": "\n

Article URL: https://pypi.org/project/snowjob/

\n

Comments URL: https://news.ycombinator.com/item?id=38652339

\n

Points: 78

\n

# Comments: 35

\n", + "contentSnippet": "Article URL: https://pypi.org/project/snowjob/\nComments URL: https://news.ycombinator.com/item?id=38652339\nPoints: 78\n# Comments: 35", + "guid": "https://news.ycombinator.com/item?id=38652339", + "isoDate": "2023-12-15T08:56:59.000Z" + }, + { + "creator": "piebro", + "title": "Godot: A Collaboration with Google and the Forge", + "link": "https://godotengine.org/article/collaboration-with-google-forge-2023/", + "pubDate": "Fri, 15 Dec 2023 07:16:12 +0000", + "dc:creator": "piebro", + "comments": "https://news.ycombinator.com/item?id=38651818", + "content": "\n

Article URL: https://godotengine.org/article/collaboration-with-google-forge-2023/

\n

Comments URL: https://news.ycombinator.com/item?id=38651818

\n

Points: 113

\n

# Comments: 28

\n", + "contentSnippet": "Article URL: https://godotengine.org/article/collaboration-with-google-forge-2023/\nComments URL: https://news.ycombinator.com/item?id=38651818\nPoints: 113\n# Comments: 28", + "guid": "https://news.ycombinator.com/item?id=38651818", + "isoDate": "2023-12-15T07:16:12.000Z" + }, + { + "creator": "viewtransform", + "title": "AMD's Next GPU Is a 3D-Integrated Superchip", + "link": "https://spectrum.ieee.org/amd-mi300", + "pubDate": "Fri, 15 Dec 2023 04:18:19 +0000", + "dc:creator": "viewtransform", + "comments": "https://news.ycombinator.com/item?id=38650937", + "content": "\n

Article URL: https://spectrum.ieee.org/amd-mi300

\n

Comments URL: https://news.ycombinator.com/item?id=38650937

\n

Points: 117

\n

# Comments: 65

\n", + "contentSnippet": "Article URL: https://spectrum.ieee.org/amd-mi300\nComments URL: https://news.ycombinator.com/item?id=38650937\nPoints: 117\n# Comments: 65", + "guid": "https://news.ycombinator.com/item?id=38650937", + "isoDate": "2023-12-15T04:18:19.000Z" + }, + { + "creator": "type0", + "title": "Pipe Dreams: The life and times of Yahoo Pipes", + "link": "https://retool.com/pipes", + "pubDate": "Fri, 15 Dec 2023 04:07:09 +0000", + "dc:creator": "type0", + "comments": "https://news.ycombinator.com/item?id=38650878", + "content": "\n

Article URL: https://retool.com/pipes

\n

Comments URL: https://news.ycombinator.com/item?id=38650878

\n

Points: 263

\n

# Comments: 79

\n", + "contentSnippet": "Article URL: https://retool.com/pipes\nComments URL: https://news.ycombinator.com/item?id=38650878\nPoints: 263\n# Comments: 79", + "guid": "https://news.ycombinator.com/item?id=38650878", + "isoDate": "2023-12-15T04:07:09.000Z" + }, + { + "creator": "ncruces", + "title": "Show HN: My Go SQLite driver did poorly on a benchmark, so I fixed it", + "link": "https://github.com/ncruces/go-sqlite-bench", + "pubDate": "Fri, 15 Dec 2023 02:44:23 +0000", + "dc:creator": "ncruces", + "comments": "https://news.ycombinator.com/item?id=38650570", + "content": "\n

https://github.com/ncruces/go-sqlite3 was doing poorly on this benchmark that was posted yesterday to HackerNews [1].

With the help of some pprof, I was able to trace it to a serious performance regression introduced two weeks ago, and come up with the fix (happy to field questions, if you're interested in the nitty gritty).

It's not the fastest driver around, but it's no longer the slowest: comfortably middle of the pack.\nIt's based on a WASM build of SQLite, and thanks to https://wazero.io doesn't need CGO.

[1]: https://news.ycombinator.com/item?id=38626698

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38650570

\n

Points: 184

\n

# Comments: 34

\n", + "contentSnippet": "https://github.com/ncruces/go-sqlite3 was doing poorly on this benchmark that was posted yesterday to HackerNews [1].\nWith the help of some pprof, I was able to trace it to a serious performance regression introduced two weeks ago, and come up with the fix (happy to field questions, if you're interested in the nitty gritty).\nIt's not the fastest driver around, but it's no longer the slowest: comfortably middle of the pack.\nIt's based on a WASM build of SQLite, and thanks to https://wazero.io doesn't need CGO.\n[1]: https://news.ycombinator.com/item?id=38626698\nComments URL: https://news.ycombinator.com/item?id=38650570\nPoints: 184\n# Comments: 34", + "guid": "https://news.ycombinator.com/item?id=38650570", + "isoDate": "2023-12-15T02:44:23.000Z" + }, + { + "creator": "manojlds", + "title": "Mitchell reflects as he departs HashiCorp", + "link": "https://www.hashicorp.com/blog/mitchell-reflects-as-he-departs-hashicorp", + "pubDate": "Thu, 14 Dec 2023 21:27:17 +0000", + "dc:creator": "manojlds", + "comments": "https://news.ycombinator.com/item?id=38647484", + "content": "\n

Article URL: https://www.hashicorp.com/blog/mitchell-reflects-as-he-departs-hashicorp

\n

Comments URL: https://news.ycombinator.com/item?id=38647484

\n

Points: 633

\n

# Comments: 171

\n", + "contentSnippet": "Article URL: https://www.hashicorp.com/blog/mitchell-reflects-as-he-departs-hashicorp\nComments URL: https://news.ycombinator.com/item?id=38647484\nPoints: 633\n# Comments: 171", + "guid": "https://news.ycombinator.com/item?id=38647484", + "isoDate": "2023-12-14T21:27:17.000Z" + }, + { + "creator": "montyanderson", + "title": "Embeddings, vectors, and arithmetic", + "link": "https://montyanderson.net/writing/embeddings", + "pubDate": "Thu, 14 Dec 2023 18:50:37 +0000", + "dc:creator": "montyanderson", + "comments": "https://news.ycombinator.com/item?id=38645411", + "content": "\n

Article URL: https://montyanderson.net/writing/embeddings

\n

Comments URL: https://news.ycombinator.com/item?id=38645411

\n

Points: 49

\n

# Comments: 10

\n", + "contentSnippet": "Article URL: https://montyanderson.net/writing/embeddings\nComments URL: https://news.ycombinator.com/item?id=38645411\nPoints: 49\n# Comments: 10", + "guid": "https://news.ycombinator.com/item?id=38645411", + "isoDate": "2023-12-14T18:50:37.000Z" + }, + { + "creator": "gbacon", + "title": "First look at Microsoft 365 Copilot", + "link": "https://paulrobichaux.com/2023/12/14/first-look-at-microsoft-365-copilot/", + "pubDate": "Thu, 14 Dec 2023 16:45:41 +0000", + "dc:creator": "gbacon", + "comments": "https://news.ycombinator.com/item?id=38643406", + "content": "\n

Article URL: https://paulrobichaux.com/2023/12/14/first-look-at-microsoft-365-copilot/

\n

Comments URL: https://news.ycombinator.com/item?id=38643406

\n

Points: 171

\n

# Comments: 91

\n", + "contentSnippet": "Article URL: https://paulrobichaux.com/2023/12/14/first-look-at-microsoft-365-copilot/\nComments URL: https://news.ycombinator.com/item?id=38643406\nPoints: 171\n# Comments: 91", + "guid": "https://news.ycombinator.com/item?id=38643406", + "isoDate": "2023-12-14T16:45:41.000Z" + }, + { + "creator": "azan-n", + "title": "Using analytics on my website", + "link": "https://azan-n.com/projects/2023-11-11t061246138z/", + "pubDate": "Thu, 14 Dec 2023 16:13:56 +0000", + "dc:creator": "azan-n", + "comments": "https://news.ycombinator.com/item?id=38642940", + "content": "\n

Article URL: https://azan-n.com/projects/2023-11-11t061246138z/

\n

Comments URL: https://news.ycombinator.com/item?id=38642940

\n

Points: 31

\n

# Comments: 30

\n", + "contentSnippet": "Article URL: https://azan-n.com/projects/2023-11-11t061246138z/\nComments URL: https://news.ycombinator.com/item?id=38642940\nPoints: 31\n# Comments: 30", + "guid": "https://news.ycombinator.com/item?id=38642940", + "isoDate": "2023-12-14T16:13:56.000Z" + }, + { + "creator": "csmeyer", + "title": "Programs are games, programming is a game", + "link": "https://blog.charliemeyer.co/programs-are-games-programming-is-a-game/", + "pubDate": "Thu, 14 Dec 2023 15:30:49 +0000", + "dc:creator": "csmeyer", + "comments": "https://news.ycombinator.com/item?id=38642412", + "content": "\n

Article URL: https://blog.charliemeyer.co/programs-are-games-programming-is-a-game/

\n

Comments URL: https://news.ycombinator.com/item?id=38642412

\n

Points: 90

\n

# Comments: 60

\n", + "contentSnippet": "Article URL: https://blog.charliemeyer.co/programs-are-games-programming-is-a-game/\nComments URL: https://news.ycombinator.com/item?id=38642412\nPoints: 90\n# Comments: 60", + "guid": "https://news.ycombinator.com/item?id=38642412", + "isoDate": "2023-12-14T15:30:49.000Z" + }, + { + "creator": "my12parsecs", + "title": "Voyager 1 stops communicating with Earth", + "link": "https://www.cnn.com/2023/12/13/world/voyager-1-computer-issue-scn/index.html", + "pubDate": "Thu, 14 Dec 2023 13:07:12 +0000", + "dc:creator": "my12parsecs", + "comments": "https://news.ycombinator.com/item?id=38640900", + "content": "\n

Article URL: https://www.cnn.com/2023/12/13/world/voyager-1-computer-issue-scn/index.html

\n

Comments URL: https://news.ycombinator.com/item?id=38640900

\n

Points: 989

\n

# Comments: 507

\n", + "contentSnippet": "Article URL: https://www.cnn.com/2023/12/13/world/voyager-1-computer-issue-scn/index.html\nComments URL: https://news.ycombinator.com/item?id=38640900\nPoints: 989\n# Comments: 507", + "guid": "https://news.ycombinator.com/item?id=38640900", + "isoDate": "2023-12-14T13:07:12.000Z" + }, + { + "creator": "coffeeaddict1", + "title": "Qt Widgets Rendering Pipeline", + "link": "https://felipefarinon.com/articles/qt-widgets-rendering-pipeline", + "pubDate": "Thu, 14 Dec 2023 08:02:51 +0000", + "dc:creator": "coffeeaddict1", + "comments": "https://news.ycombinator.com/item?id=38638946", + "content": "\n

Article URL: https://felipefarinon.com/articles/qt-widgets-rendering-pipeline

\n

Comments URL: https://news.ycombinator.com/item?id=38638946

\n

Points: 55

\n

# Comments: 25

\n", + "contentSnippet": "Article URL: https://felipefarinon.com/articles/qt-widgets-rendering-pipeline\nComments URL: https://news.ycombinator.com/item?id=38638946\nPoints: 55\n# Comments: 25", + "guid": "https://news.ycombinator.com/item?id=38638946", + "isoDate": "2023-12-14T08:02:51.000Z" + }, + { + "creator": "bertman", + "title": "\"Anna's Archive\" Shadow Library Blocked Following Publishers' Complaint", + "link": "https://torrentfreak.com/silenzio-annas-archive-shadow-library-blocked-following-publishers-complaint-240104/", + "pubDate": "Thu, 04 Jan 2024 09:43:48 +0000", + "dc:creator": "bertman", + "comments": "https://news.ycombinator.com/item?id=38865079", + "content": "\n

Article URL: https://torrentfreak.com/silenzio-annas-archive-shadow-library-blocked-following-publishers-complaint-240104/

\n

Comments URL: https://news.ycombinator.com/item?id=38865079

\n

Points: 30

\n

# Comments: 11

\n", + "contentSnippet": "Article URL: https://torrentfreak.com/silenzio-annas-archive-shadow-library-blocked-following-publishers-complaint-240104/\nComments URL: https://news.ycombinator.com/item?id=38865079\nPoints: 30\n# Comments: 11", + "guid": "https://news.ycombinator.com/item?id=38865079", + "isoDate": "2024-01-04T09:43:48.000Z" + }, + { + "creator": "ingve", + "title": "Ten years isn't long enough for maximum age settings", + "link": "https://utcc.utoronto.ca/~cks/space/blog/sysadmin/TenYearsNotLongEnough", + "pubDate": "Thu, 04 Jan 2024 06:39:45 +0000", + "dc:creator": "ingve", + "comments": "https://news.ycombinator.com/item?id=38863844", + "content": "\n

Article URL: https://utcc.utoronto.ca/~cks/space/blog/sysadmin/TenYearsNotLongEnough

\n

Comments URL: https://news.ycombinator.com/item?id=38863844

\n

Points: 47

\n

# Comments: 12

\n", + "contentSnippet": "Article URL: https://utcc.utoronto.ca/~cks/space/blog/sysadmin/TenYearsNotLongEnough\nComments URL: https://news.ycombinator.com/item?id=38863844\nPoints: 47\n# Comments: 12", + "guid": "https://news.ycombinator.com/item?id=38863844", + "isoDate": "2024-01-04T06:39:45.000Z" + }, + { + "creator": "paulolc", + "title": "A Science of Concurrent Programs [pdf]", + "link": "https://lamport.azurewebsites.net/tla/science.pdf", + "pubDate": "Thu, 04 Jan 2024 05:20:11 +0000", + "dc:creator": "paulolc", + "comments": "https://news.ycombinator.com/item?id=38863339", + "content": "\n

Article URL: https://lamport.azurewebsites.net/tla/science.pdf

\n

Comments URL: https://news.ycombinator.com/item?id=38863339

\n

Points: 79

\n

# Comments: 16

\n", + "contentSnippet": "Article URL: https://lamport.azurewebsites.net/tla/science.pdf\nComments URL: https://news.ycombinator.com/item?id=38863339\nPoints: 79\n# Comments: 16", + "guid": "https://news.ycombinator.com/item?id=38863339", + "isoDate": "2024-01-04T05:20:11.000Z" + }, + { + "creator": "CharlesW", + "title": "Lilygo T-Deck: 2.8-inch IPS LCD display, mini keyboard, and ESP32 processor", + "link": "https://www.lilygo.cc/products/t-deck", + "pubDate": "Thu, 04 Jan 2024 04:02:31 +0000", + "dc:creator": "CharlesW", + "comments": "https://news.ycombinator.com/item?id=38862848", + "content": "\n

Article URL: https://www.lilygo.cc/products/t-deck

\n

Comments URL: https://news.ycombinator.com/item?id=38862848

\n

Points: 147

\n

# Comments: 72

\n", + "contentSnippet": "Article URL: https://www.lilygo.cc/products/t-deck\nComments URL: https://news.ycombinator.com/item?id=38862848\nPoints: 147\n# Comments: 72", + "guid": "https://news.ycombinator.com/item?id=38862848", + "isoDate": "2024-01-04T04:02:31.000Z" + }, + { + "creator": "belter", + "title": "Alan Turing \u2013 The Delilah Project", + "link": "https://www.bonhams.com/auction/28322/lot/45/turing-alan-the-delilah-project-the-papers-of-alan-turing-and-donald-bayley-relating-to-the-delilah-project/", + "pubDate": "Thu, 04 Jan 2024 01:50:10 +0000", + "dc:creator": "belter", + "comments": "https://news.ycombinator.com/item?id=38862147", + "content": "\n

Article URL: https://www.bonhams.com/auction/28322/lot/45/turing-alan-the-delilah-project-the-papers-of-alan-turing-and-donald-bayley-relating-to-the-delilah-project/

\n

Comments URL: https://news.ycombinator.com/item?id=38862147

\n

Points: 47

\n

# Comments: 3

\n", + "contentSnippet": "Article URL: https://www.bonhams.com/auction/28322/lot/45/turing-alan-the-delilah-project-the-papers-of-alan-turing-and-donald-bayley-relating-to-the-delilah-project/\nComments URL: https://news.ycombinator.com/item?id=38862147\nPoints: 47\n# Comments: 3", + "guid": "https://news.ycombinator.com/item?id=38862147", + "isoDate": "2024-01-04T01:50:10.000Z" + }, + { + "creator": "jger15", + "title": "Think more about what to focus on", + "link": "https://www.henrikkarlsson.xyz/p/multi-armed-bandit", + "pubDate": "Thu, 04 Jan 2024 00:02:37 +0000", + "dc:creator": "jger15", + "comments": "https://news.ycombinator.com/item?id=38861467", + "content": "\n

Article URL: https://www.henrikkarlsson.xyz/p/multi-armed-bandit

\n

Comments URL: https://news.ycombinator.com/item?id=38861467

\n

Points: 181

\n

# Comments: 29

\n", + "contentSnippet": "Article URL: https://www.henrikkarlsson.xyz/p/multi-armed-bandit\nComments URL: https://news.ycombinator.com/item?id=38861467\nPoints: 181\n# Comments: 29", + "guid": "https://news.ycombinator.com/item?id=38861467", + "isoDate": "2024-01-04T00:02:37.000Z" + }, + { + "creator": "lunarcave", + "title": "Amber: Smalltalk for the Web", + "link": "https://amber-lang.net/", + "pubDate": "Wed, 03 Jan 2024 23:26:04 +0000", + "dc:creator": "lunarcave", + "comments": "https://news.ycombinator.com/item?id=38861203", + "content": "\n

Article URL: https://amber-lang.net/

\n

Comments URL: https://news.ycombinator.com/item?id=38861203

\n

Points: 80

\n

# Comments: 5

\n", + "contentSnippet": "Article URL: https://amber-lang.net/\nComments URL: https://news.ycombinator.com/item?id=38861203\nPoints: 80\n# Comments: 5", + "guid": "https://news.ycombinator.com/item?id=38861203", + "isoDate": "2024-01-03T23:26:04.000Z" + }, + { + "creator": "w4lker", + "title": "The Curious Case of MD5", + "link": "https://katelynsills.com/law/the-curious-case-of-md5/", + "pubDate": "Wed, 03 Jan 2024 23:05:30 +0000", + "dc:creator": "w4lker", + "comments": "https://news.ycombinator.com/item?id=38861034", + "content": "\n

Article URL: https://katelynsills.com/law/the-curious-case-of-md5/

\n

Comments URL: https://news.ycombinator.com/item?id=38861034

\n

Points: 147

\n

# Comments: 97

\n", + "contentSnippet": "Article URL: https://katelynsills.com/law/the-curious-case-of-md5/\nComments URL: https://news.ycombinator.com/item?id=38861034\nPoints: 147\n# Comments: 97", + "guid": "https://news.ycombinator.com/item?id=38861034", + "isoDate": "2024-01-03T23:05:30.000Z" + }, + { + "creator": "LaserPineapple", + "title": "Understand how transformers work by demystifying the math behind them", + "link": "https://osanseviero.github.io/hackerllama/blog/posts/random_transformer/", + "pubDate": "Wed, 03 Jan 2024 21:10:35 +0000", + "dc:creator": "LaserPineapple", + "comments": "https://news.ycombinator.com/item?id=38859976", + "content": "\n

Article URL: https://osanseviero.github.io/hackerllama/blog/posts/random_transformer/

\n

Comments URL: https://news.ycombinator.com/item?id=38859976

\n

Points: 385

\n

# Comments: 90

\n", + "contentSnippet": "Article URL: https://osanseviero.github.io/hackerllama/blog/posts/random_transformer/\nComments URL: https://news.ycombinator.com/item?id=38859976\nPoints: 385\n# Comments: 90", + "guid": "https://news.ycombinator.com/item?id=38859976", + "isoDate": "2024-01-03T21:10:35.000Z" + }, + { + "creator": "T-A", + "title": "TinyGPT-V: Efficient Multimodal Large Language Model via Small Backbones", + "link": "https://github.com/DLYuanGod/TinyGPT-V", + "pubDate": "Wed, 03 Jan 2024 20:53:50 +0000", + "dc:creator": "T-A", + "comments": "https://news.ycombinator.com/item?id=38859749", + "content": "\n

Article URL: https://github.com/DLYuanGod/TinyGPT-V

\n

Comments URL: https://news.ycombinator.com/item?id=38859749

\n

Points: 192

\n

# Comments: 23

\n", + "contentSnippet": "Article URL: https://github.com/DLYuanGod/TinyGPT-V\nComments URL: https://news.ycombinator.com/item?id=38859749\nPoints: 192\n# Comments: 23", + "guid": "https://news.ycombinator.com/item?id=38859749", + "isoDate": "2024-01-03T20:53:50.000Z" + }, + { + "creator": "j4nek", + "title": "Someone was breaking into Orange Spain RIPE account (and break their /12)", + "link": "https://benjojo.co.uk/u/benjojo/h/r1zj333N4L6cF7P1xv", + "pubDate": "Wed, 03 Jan 2024 19:20:17 +0000", + "dc:creator": "j4nek", + "comments": "https://news.ycombinator.com/item?id=38858500", + "content": "\n

Article URL: https://benjojo.co.uk/u/benjojo/h/r1zj333N4L6cF7P1xv

\n

Comments URL: https://news.ycombinator.com/item?id=38858500

\n

Points: 115

\n

# Comments: 39

\n", + "contentSnippet": "Article URL: https://benjojo.co.uk/u/benjojo/h/r1zj333N4L6cF7P1xv\nComments URL: https://news.ycombinator.com/item?id=38858500\nPoints: 115\n# Comments: 39", + "guid": "https://news.ycombinator.com/item?id=38858500", + "isoDate": "2024-01-03T19:20:17.000Z" + }, + { + "creator": "bernawil", + "title": "Show HN: A Who is Hiring app with AI filters", + "link": "https://bernawil.github.io/hn-who-is-hiring/", + "pubDate": "Wed, 03 Jan 2024 19:10:00 +0000", + "dc:creator": "bernawil", + "comments": "https://news.ycombinator.com/item?id=38858369", + "content": "\n

Article URL: https://bernawil.github.io/hn-who-is-hiring/

\n

Comments URL: https://news.ycombinator.com/item?id=38858369

\n

Points: 116

\n

# Comments: 49

\n", + "contentSnippet": "Article URL: https://bernawil.github.io/hn-who-is-hiring/\nComments URL: https://news.ycombinator.com/item?id=38858369\nPoints: 116\n# Comments: 49", + "guid": "https://news.ycombinator.com/item?id=38858369", + "isoDate": "2024-01-03T19:10:00.000Z" + }, + { + "creator": "aarroyoc", + "title": "Niklaus Wirth has died", + "link": "https://twitter.com/Bertrand_Meyer/status/1742613897675178347", + "pubDate": "Wed, 03 Jan 2024 18:50:12 +0000", + "dc:creator": "aarroyoc", + "comments": "https://news.ycombinator.com/item?id=38858012", + "content": "\n

Article URL: https://twitter.com/Bertrand_Meyer/status/1742613897675178347

\n

Comments URL: https://news.ycombinator.com/item?id=38858012

\n

Points: 1724

\n

# Comments: 317

\n", + "contentSnippet": "Article URL: https://twitter.com/Bertrand_Meyer/status/1742613897675178347\nComments URL: https://news.ycombinator.com/item?id=38858012\nPoints: 1724\n# Comments: 317", + "guid": "https://news.ycombinator.com/item?id=38858012", + "isoDate": "2024-01-03T18:50:12.000Z" + }, + { + "creator": "leiferik", + "title": "The drive stats of Backblaze storage pods", + "link": "https://www.backblaze.com/blog/the-drive-stats-of-backblaze-storage-pods/", + "pubDate": "Wed, 03 Jan 2024 18:07:58 +0000", + "dc:creator": "leiferik", + "comments": "https://news.ycombinator.com/item?id=38857396", + "content": "\n

Article URL: https://www.backblaze.com/blog/the-drive-stats-of-backblaze-storage-pods/

\n

Comments URL: https://news.ycombinator.com/item?id=38857396

\n

Points: 242

\n

# Comments: 126

\n", + "contentSnippet": "Article URL: https://www.backblaze.com/blog/the-drive-stats-of-backblaze-storage-pods/\nComments URL: https://news.ycombinator.com/item?id=38857396\nPoints: 242\n# Comments: 126", + "guid": "https://news.ycombinator.com/item?id=38857396", + "isoDate": "2024-01-03T18:07:58.000Z" + }, + { + "creator": "matteason", + "title": "Show HN: Ambiphone, no-nonsense ambient music and white noise", + "link": "https://ambiph.one?hn", + "pubDate": "Wed, 03 Jan 2024 17:41:29 +0000", + "dc:creator": "matteason", + "comments": "https://news.ycombinator.com/item?id=38856999", + "content": "\n

I built this free, no-nonsense white noise app. I know there are plenty of them out there already, but I wanted to make something beautiful and easy-to-use, without logins or ads or in-app purchases or any of the other stuff a lot of them have.

I appeared on The Economist's The Intelligence podcast [0] this week talking about Ambiphone and another ambient music project, Ambient ScotRail Beats [1] - I'm on at about 17:30

There's a big selection of music and sounds already but I'm always adding more - if there's anything you'd like to see added, let me know!

[0] https://www.economist.com/podcasts/2024/01/01/why-2024-could...

[1] https://matteason.co.uk/scotbeats

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38856999

\n

Points: 289

\n

# Comments: 111

\n", + "contentSnippet": "I built this free, no-nonsense white noise app. I know there are plenty of them out there already, but I wanted to make something beautiful and easy-to-use, without logins or ads or in-app purchases or any of the other stuff a lot of them have.\nI appeared on The Economist's The Intelligence podcast [0] this week talking about Ambiphone and another ambient music project, Ambient ScotRail Beats [1] - I'm on at about 17:30\nThere's a big selection of music and sounds already but I'm always adding more - if there's anything you'd like to see added, let me know!\n[0] https://www.economist.com/podcasts/2024/01/01/why-2024-could...\n[1] https://matteason.co.uk/scotbeats\nComments URL: https://news.ycombinator.com/item?id=38856999\nPoints: 289\n# Comments: 111", + "guid": "https://news.ycombinator.com/item?id=38856999", + "isoDate": "2024-01-03T17:41:29.000Z" + }, + { + "creator": "ibobev", + "title": "C and C++ Hot-Reload/Live Coding", + "link": "https://liveplusplus.tech/", + "pubDate": "Wed, 03 Jan 2024 17:20:30 +0000", + "dc:creator": "ibobev", + "comments": "https://news.ycombinator.com/item?id=38856696", + "content": "\n

Article URL: https://liveplusplus.tech/

\n

Comments URL: https://news.ycombinator.com/item?id=38856696

\n

Points: 181

\n

# Comments: 73

\n", + "contentSnippet": "Article URL: https://liveplusplus.tech/\nComments URL: https://news.ycombinator.com/item?id=38856696\nPoints: 181\n# Comments: 73", + "guid": "https://news.ycombinator.com/item?id=38856696", + "isoDate": "2024-01-03T17:20:30.000Z" + }, + { + "creator": "NN88", + "title": "Fewer people are buying electric cars", + "link": "https://www.businessinsider.com/electric-car-ev-sales-prices-problem-transportation-2024-1", + "pubDate": "Wed, 03 Jan 2024 17:12:59 +0000", + "dc:creator": "NN88", + "comments": "https://news.ycombinator.com/item?id=38856586", + "content": "\n

Article URL: https://www.businessinsider.com/electric-car-ev-sales-prices-problem-transportation-2024-1

\n

Comments URL: https://news.ycombinator.com/item?id=38856586

\n

Points: 201

\n

# Comments: 918

\n", + "contentSnippet": "Article URL: https://www.businessinsider.com/electric-car-ev-sales-prices-problem-transportation-2024-1\nComments URL: https://news.ycombinator.com/item?id=38856586\nPoints: 201\n# Comments: 918", + "guid": "https://news.ycombinator.com/item?id=38856586", + "isoDate": "2024-01-03T17:12:59.000Z" + }, + { + "creator": "api", + "title": "Container2wasm: Convert Containers to WASM Blobs", + "link": "https://github.com/ktock/container2wasm", + "pubDate": "Wed, 03 Jan 2024 17:10:38 +0000", + "dc:creator": "api", + "comments": "https://news.ycombinator.com/item?id=38856559", + "content": "\n

Article URL: https://github.com/ktock/container2wasm

\n

Comments URL: https://news.ycombinator.com/item?id=38856559

\n

Points: 220

\n

# Comments: 63

\n", + "contentSnippet": "Article URL: https://github.com/ktock/container2wasm\nComments URL: https://news.ycombinator.com/item?id=38856559\nPoints: 220\n# Comments: 63", + "guid": "https://news.ycombinator.com/item?id=38856559", + "isoDate": "2024-01-03T17:10:38.000Z" + }, + { + "creator": "todsacerdoti", + "title": "Emacs commands I got by with for years", + "link": "https://macadie.info/2023/12/30/emacs-commands-i-got-by-with-for-years/", + "pubDate": "Wed, 03 Jan 2024 07:46:06 +0000", + "dc:creator": "todsacerdoti", + "comments": "https://news.ycombinator.com/item?id=38851699", + "content": "\n

Article URL: https://macadie.info/2023/12/30/emacs-commands-i-got-by-with-for-years/

\n

Comments URL: https://news.ycombinator.com/item?id=38851699

\n

Points: 61

\n

# Comments: 16

\n", + "contentSnippet": "Article URL: https://macadie.info/2023/12/30/emacs-commands-i-got-by-with-for-years/\nComments URL: https://news.ycombinator.com/item?id=38851699\nPoints: 61\n# Comments: 16", + "guid": "https://news.ycombinator.com/item?id=38851699", + "isoDate": "2024-01-03T07:46:06.000Z" + }, + { + "creator": "madmax108", + "title": "The One Billion Row Challenge", + "link": "https://www.morling.dev/blog/one-billion-row-challenge/", + "pubDate": "Wed, 03 Jan 2024 06:23:12 +0000", + "dc:creator": "madmax108", + "comments": "https://news.ycombinator.com/item?id=38851337", + "content": "\n

Article URL: https://www.morling.dev/blog/one-billion-row-challenge/

\n

Comments URL: https://news.ycombinator.com/item?id=38851337

\n

Points: 238

\n

# Comments: 137

\n", + "contentSnippet": "Article URL: https://www.morling.dev/blog/one-billion-row-challenge/\nComments URL: https://news.ycombinator.com/item?id=38851337\nPoints: 238\n# Comments: 137", + "guid": "https://news.ycombinator.com/item?id=38851337", + "isoDate": "2024-01-03T06:23:12.000Z" + }, + { + "creator": "distcs", + "title": "An app can be a home-cooked meal", + "link": "https://www.robinsloan.com/notes/home-cooked-app/", + "pubDate": "Fri, 05 Jan 2024 10:03:27 +0000", + "dc:creator": "distcs", + "comments": "https://news.ycombinator.com/item?id=38877423", + "content": "\n

Article URL: https://www.robinsloan.com/notes/home-cooked-app/

\n

Comments URL: https://news.ycombinator.com/item?id=38877423

\n

Points: 271

\n

# Comments: 86

\n", + "contentSnippet": "Article URL: https://www.robinsloan.com/notes/home-cooked-app/\nComments URL: https://news.ycombinator.com/item?id=38877423\nPoints: 271\n# Comments: 86", + "guid": "https://news.ycombinator.com/item?id=38877423", + "isoDate": "2024-01-05T10:03:27.000Z" + }, + { + "creator": "grungleshnorts", + "title": "CellLVM: A proof-of-concept LLVM to Excel spreadsheet compiler", + "link": "https://belkadan.com/blog/2023/12/CellLVM/", + "pubDate": "Fri, 05 Jan 2024 08:10:50 +0000", + "dc:creator": "grungleshnorts", + "comments": "https://news.ycombinator.com/item?id=38876863", + "content": "\n

Article URL: https://belkadan.com/blog/2023/12/CellLVM/

\n

Comments URL: https://news.ycombinator.com/item?id=38876863

\n

Points: 127

\n

# Comments: 15

\n", + "contentSnippet": "Article URL: https://belkadan.com/blog/2023/12/CellLVM/\nComments URL: https://news.ycombinator.com/item?id=38876863\nPoints: 127\n# Comments: 15", + "guid": "https://news.ycombinator.com/item?id=38876863", + "isoDate": "2024-01-05T08:10:50.000Z" + }, + { + "creator": "alexzeitler", + "title": "Apple's classic Pascal poster, remade as a vector image [pdf]", + "link": "http://www.danamania.com/print/Apple%20Pascal%20Poster/PascalPosterV3%20A1.pdf", + "pubDate": "Fri, 05 Jan 2024 03:59:47 +0000", + "dc:creator": "alexzeitler", + "comments": "https://news.ycombinator.com/item?id=38875551", + "content": "\n

Article URL: http://www.danamania.com/print/Apple%20Pascal%20Poster/PascalPosterV3%20A1.pdf

\n

Comments URL: https://news.ycombinator.com/item?id=38875551

\n

Points: 210

\n

# Comments: 42

\n", + "contentSnippet": "Article URL: http://www.danamania.com/print/Apple%20Pascal%20Poster/PascalPosterV3%20A1.pdf\nComments URL: https://news.ycombinator.com/item?id=38875551\nPoints: 210\n# Comments: 42", + "guid": "https://news.ycombinator.com/item?id=38875551", + "isoDate": "2024-01-05T03:59:47.000Z" + }, + { + "creator": "thunderbong", + "title": "WebRTC for the Curious (2020)", + "link": "https://webrtcforthecurious.com/", + "pubDate": "Fri, 05 Jan 2024 03:58:24 +0000", + "dc:creator": "thunderbong", + "comments": "https://news.ycombinator.com/item?id=38875542", + "content": "\n

Article URL: https://webrtcforthecurious.com/

\n

Comments URL: https://news.ycombinator.com/item?id=38875542

\n

Points: 144

\n

# Comments: 30

\n", + "contentSnippet": "Article URL: https://webrtcforthecurious.com/\nComments URL: https://news.ycombinator.com/item?id=38875542\nPoints: 144\n# Comments: 30", + "guid": "https://news.ycombinator.com/item?id=38875542", + "isoDate": "2024-01-05T03:58:24.000Z" + }, + { + "creator": "tristenharr", + "title": "Learning bimanual mobile manipulation with low-cost whole-body teleoperation", + "link": "https://mobile-aloha.github.io", + "pubDate": "Fri, 05 Jan 2024 03:42:01 +0000", + "dc:creator": "tristenharr", + "comments": "https://news.ycombinator.com/item?id=38875452", + "content": "\n

Article URL: https://mobile-aloha.github.io

\n

Comments URL: https://news.ycombinator.com/item?id=38875452

\n

Points: 81

\n

# Comments: 31

\n", + "contentSnippet": "Article URL: https://mobile-aloha.github.io\nComments URL: https://news.ycombinator.com/item?id=38875452\nPoints: 81\n# Comments: 31", + "guid": "https://news.ycombinator.com/item?id=38875452", + "isoDate": "2024-01-05T03:42:01.000Z" + }, + { + "creator": "todsacerdoti", + "title": "Don't pass structs bigger than 16 bytes on AMD64", + "link": "https://gist.github.com/FeepingCreature/5dff669aad380a123b15659e195fb96c", + "pubDate": "Fri, 05 Jan 2024 03:36:13 +0000", + "dc:creator": "todsacerdoti", + "comments": "https://news.ycombinator.com/item?id=38875422", + "content": "\n

Article URL: https://gist.github.com/FeepingCreature/5dff669aad380a123b15659e195fb96c

\n

Comments URL: https://news.ycombinator.com/item?id=38875422

\n

Points: 261

\n

# Comments: 73

\n", + "contentSnippet": "Article URL: https://gist.github.com/FeepingCreature/5dff669aad380a123b15659e195fb96c\nComments URL: https://news.ycombinator.com/item?id=38875422\nPoints: 261\n# Comments: 73", + "guid": "https://news.ycombinator.com/item?id=38875422", + "isoDate": "2024-01-05T03:36:13.000Z" + }, + { + "creator": "dmarto", + "title": "SIMD in Pure Python", + "link": "https://www.da.vidbuchanan.co.uk/blog/python-swar.html", + "pubDate": "Fri, 05 Jan 2024 02:09:58 +0000", + "dc:creator": "dmarto", + "comments": "https://news.ycombinator.com/item?id=38874885", + "content": "\n

Article URL: https://www.da.vidbuchanan.co.uk/blog/python-swar.html

\n

Comments URL: https://news.ycombinator.com/item?id=38874885

\n

Points: 184

\n

# Comments: 14

\n", + "contentSnippet": "Article URL: https://www.da.vidbuchanan.co.uk/blog/python-swar.html\nComments URL: https://news.ycombinator.com/item?id=38874885\nPoints: 184\n# Comments: 14", + "guid": "https://news.ycombinator.com/item?id=38874885", + "isoDate": "2024-01-05T02:09:58.000Z" + }, + { + "creator": "guyinblackshirt", + "title": "Clicks \u2013 Physical keyboard for iPhone", + "link": "https://www.clicks.tech/", + "pubDate": "Thu, 04 Jan 2024 20:43:20 +0000", + "dc:creator": "guyinblackshirt", + "comments": "https://news.ycombinator.com/item?id=38871987", + "content": "\n

Article URL: https://www.clicks.tech/

\n

Comments URL: https://news.ycombinator.com/item?id=38871987

\n

Points: 790

\n

# Comments: 461

\n", + "contentSnippet": "Article URL: https://www.clicks.tech/\nComments URL: https://news.ycombinator.com/item?id=38871987\nPoints: 790\n# Comments: 461", + "guid": "https://news.ycombinator.com/item?id=38871987", + "isoDate": "2024-01-04T20:43:20.000Z" + }, + { + "creator": "lishali88", + "title": "Launch HN: Rosebud (YC S19) \u2013 Turn game descriptions into browser games", + "link": "https://news.ycombinator.com/item?id=38868185", + "pubDate": "Thu, 04 Jan 2024 15:33:50 +0000", + "dc:creator": "lishali88", + "comments": "https://news.ycombinator.com/item?id=38868185", + "content": "\n

Hi everyone! I'm Lisha, the founder of Rosebud AI (https://www.rosebud.ai/). We're building a platform to help users go from description to code to game. We aim to make game creation accessible to non-technical creators, so our UI provides explanations alongside the generated code.

Users have created a diverse range of games on Rosebud, including top-down RPGs, AI companions, and 3D obstacle courses, all within a few hours and sometimes minutes. Here are some examples you can play and clone (to start your own project).

* Anime Jester Companion: https://play.rosebud.ai/games/ba438cc4-246e-432e-b170-4e1694...\n* Chat and Care for your Digital Puppy: https://play.rosebud.ai/games/f32a8159-7acf-4db6-a82c-70296f...\n* Sphere Sync (3D game: align the sphere with the right color): https://play.rosebud.ai/games/96dfd5e1-62d4-47d8-a3e9-11038c...\n* Basketball: https://play.rosebud.ai/games/a0e70622-e923-4517-8c1f-728dcf...\n* Neon Waltz Generative Art: https://play.rosebud.ai/games/e32bd12b-7cc9-4f9a-b385-42ae0b...\n* Chat with Deku from My Hero Academia: https://play.rosebud.ai/games/716fd998-aab6-4185-8375-85d9ee...

A simple way to think about Rosebud is ChatGPT + Midjourney + Replit. ChatGPT, because we give users a chat interface for this code editor so they can describe the game they want to make and generate game code; Midjourney, because we let users generate assets inside Rosebud, 2D and 3D, to be used in their games; And Replit, because Rosebud includes a browser based code editor that lets you deploy your game instantly.

Sometimes, users generate a code base from scratch via prompts. Often a simpler place to start is to modify (\u201cclone\u201d) an existing project on Rosebud. In both cases, we need to eventually convert user descriptions and modifications of the game into edits and changes to the codebase. To solve this problem, we had to experiment heavily with using LLM agents in production. Our agent framework tries to follow the instructions of user prompts by deciding when and whether to call upon a number of generative models (some for code generation, some for asset generation, some for character dialogue, and some for game ideas). It also must decide where to insert code snippets when it generates them. Often, a user is asking for ideas or something too vague, and our agent has to decide when to ask for feedback and clarifications.

Not surprisingly, if we impose more constraints, on both the programming framework and game genres supported, our agent will perform better. However, the constraints on the types of games users can make and frameworks we want to support also constrains how flexible our platform is. Balancing these two factors, we decided to only support browser-based, JavaScript frameworks and focus on supporting AI NPCs that use LLMs themselves for dialogue and actions. This allows us to create abstractions that enable the agent to alter the codebase more successfully and guide the creator towards a more successful experience. Furthermore, we found that our beta testers are very creative with making AI character based games, and the resulting game is usually fun for players.

How does Rosebud differ from Roblox, Unreal, or Unity simply adding a co-pilot? Incumbent game engines optimized their user-flow and tech stack before the advent of generative AI, and many of their user-flows are well established. We have the advantage of designing this game creation flow from the ground up. It's not just about adding code completion to an existing code editing app and including asset plugins. Such an approach wouldn't fully harness the power of LLMs. We have a chat-first interface, and having identified the limitations of agents, we can create more safeguards for users where failure is likely. Our approach will make it possible for non technical creators to also contribute to making games.\nCheck it out for yourself!

To try Rosebud: (1) head over to https://www.rosebud.ai/hn for access to our Discord beta tester channel and a special role. (2) then go to https://play.rosebud.ai and use the code HelloHN to get immediate access. We have an array of trending projects that users can clone and mod to get started, including various character chat based games.

Here\u2019s a video onboarding of Rosebud in action:\nhttps://www.youtube.com/watch?v=h99H3FefxU0&ab_channel=Roseb...

Re business model, we plan on following in Roblox\u2019s footsteps, i.e. keep it free for developers and take a cut of what they can charge users. Since AI tools cost more from usage than just hosting, we may have to evolve that model and see what the unit economics are (and separate a premium versus free tier for devs).

(Oh and in case you\u2019re wondering why a YC S19 startup is launching now: we basically pivoted. We were always in consumer generative AI, but focused on images until this spring, but always wanted to focus on games\u2013Rosebud is in fact a reference to the cheat code in The Sims. When code gen got good enough this year to work for UGC in gaming, we decided the time had finally come and switched.)

Some encouraging user feedback from our beta: \u201cI have done some modding before, and I must say, this is much easier. Even when I occasionally need to code, the AI can answer all my questions and tell me how to achieve what I want. Normally, I would have to conduct numerous Google searches. What you guys have created is truly amazing.\u201d \u201cI\u2019ve used Chat GPT to help me code simple games in Unity. This seems more connected and easier to work through.\u201d \u201cThis is fascinating. This is ** amazing. Yeah, I know it's obviously early on, but already works for rad generative art. I'll say that much.\u201d \u201cCan finally call myself a game developer lol. Damn that sounds so good.\u201d

We\u2019re a small team working on this for the last few months, so a lot of things are far from perfect. Constructive feedback is very welcome!

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38868185

\n

Points: 260

\n

# Comments: 94

\n", + "contentSnippet": "Hi everyone! I'm Lisha, the founder of Rosebud AI (https://www.rosebud.ai/). We're building a platform to help users go from description to code to game. We aim to make game creation accessible to non-technical creators, so our UI provides explanations alongside the generated code.\nUsers have created a diverse range of games on Rosebud, including top-down RPGs, AI companions, and 3D obstacle courses, all within a few hours and sometimes minutes. Here are some examples you can play and clone (to start your own project).\n* Anime Jester Companion: https://play.rosebud.ai/games/ba438cc4-246e-432e-b170-4e1694...\n* Chat and Care for your Digital Puppy: https://play.rosebud.ai/games/f32a8159-7acf-4db6-a82c-70296f...\n* Sphere Sync (3D game: align the sphere with the right color): https://play.rosebud.ai/games/96dfd5e1-62d4-47d8-a3e9-11038c...\n* Basketball: https://play.rosebud.ai/games/a0e70622-e923-4517-8c1f-728dcf...\n* Neon Waltz Generative Art: https://play.rosebud.ai/games/e32bd12b-7cc9-4f9a-b385-42ae0b...\n* Chat with Deku from My Hero Academia: https://play.rosebud.ai/games/716fd998-aab6-4185-8375-85d9ee...\nA simple way to think about Rosebud is ChatGPT + Midjourney + Replit. ChatGPT, because we give users a chat interface for this code editor so they can describe the game they want to make and generate game code; Midjourney, because we let users generate assets inside Rosebud, 2D and 3D, to be used in their games; And Replit, because Rosebud includes a browser based code editor that lets you deploy your game instantly.\nSometimes, users generate a code base from scratch via prompts. Often a simpler place to start is to modify (\u201cclone\u201d) an existing project on Rosebud. In both cases, we need to eventually convert user descriptions and modifications of the game into edits and changes to the codebase. To solve this problem, we had to experiment heavily with using LLM agents in production. Our agent framework tries to follow the instructions of user prompts by deciding when and whether to call upon a number of generative models (some for code generation, some for asset generation, some for character dialogue, and some for game ideas). It also must decide where to insert code snippets when it generates them. Often, a user is asking for ideas or something too vague, and our agent has to decide when to ask for feedback and clarifications.\nNot surprisingly, if we impose more constraints, on both the programming framework and game genres supported, our agent will perform better. However, the constraints on the types of games users can make and frameworks we want to support also constrains how flexible our platform is. Balancing these two factors, we decided to only support browser-based, JavaScript frameworks and focus on supporting AI NPCs that use LLMs themselves for dialogue and actions. This allows us to create abstractions that enable the agent to alter the codebase more successfully and guide the creator towards a more successful experience. Furthermore, we found that our beta testers are very creative with making AI character based games, and the resulting game is usually fun for players.\nHow does Rosebud differ from Roblox, Unreal, or Unity simply adding a co-pilot? Incumbent game engines optimized their user-flow and tech stack before the advent of generative AI, and many of their user-flows are well established. We have the advantage of designing this game creation flow from the ground up. It's not just about adding code completion to an existing code editing app and including asset plugins. Such an approach wouldn't fully harness the power of LLMs. We have a chat-first interface, and having identified the limitations of agents, we can create more safeguards for users where failure is likely. Our approach will make it possible for non technical creators to also contribute to making games.\nCheck it out for yourself!\nTo try Rosebud: (1) head over to https://www.rosebud.ai/hn for access to our Discord beta tester channel and a special role. (2) then go to https://play.rosebud.ai and use the code HelloHN to get immediate access. We have an array of trending projects that users can clone and mod to get started, including various character chat based games.\nHere\u2019s a video onboarding of Rosebud in action:\nhttps://www.youtube.com/watch?v=h99H3FefxU0&ab_channel=Roseb...\nRe business model, we plan on following in Roblox\u2019s footsteps, i.e. keep it free for developers and take a cut of what they can charge users. Since AI tools cost more from usage than just hosting, we may have to evolve that model and see what the unit economics are (and separate a premium versus free tier for devs).\n(Oh and in case you\u2019re wondering why a YC S19 startup is launching now: we basically pivoted. We were always in consumer generative AI, but focused on images until this spring, but always wanted to focus on games\u2013Rosebud is in fact a reference to the cheat code in The Sims. When code gen got good enough this year to work for UGC in gaming, we decided the time had finally come and switched.)\nSome encouraging user feedback from our beta: \u201cI have done some modding before, and I must say, this is much easier. Even when I occasionally need to code, the AI can answer all my questions and tell me how to achieve what I want. Normally, I would have to conduct numerous Google searches. What you guys have created is truly amazing.\u201d \u201cI\u2019ve used Chat GPT to help me code simple games in Unity. This seems more connected and easier to work through.\u201d \u201cThis is fascinating. This is ** amazing. Yeah, I know it's obviously early on, but already works for rad generative art. I'll say that much.\u201d \u201cCan finally call myself a game developer lol. Damn that sounds so good.\u201d\nWe\u2019re a small team working on this for the last few months, so a lot of things are far from perfect. Constructive feedback is very welcome!\nComments URL: https://news.ycombinator.com/item?id=38868185\nPoints: 260\n# Comments: 94", + "guid": "https://news.ycombinator.com/item?id=38868185", + "isoDate": "2024-01-04T15:33:50.000Z" + }, + { + "creator": "mooreds", + "title": "Sparkey: A simple constant key/value storage library", + "link": "https://github.com/spotify/sparkey", + "pubDate": "Thu, 04 Jan 2024 14:31:51 +0000", + "dc:creator": "mooreds", + "comments": "https://news.ycombinator.com/item?id=38867421", + "content": "\n

Article URL: https://github.com/spotify/sparkey

\n

Comments URL: https://news.ycombinator.com/item?id=38867421

\n

Points: 50

\n

# Comments: 12

\n", + "contentSnippet": "Article URL: https://github.com/spotify/sparkey\nComments URL: https://news.ycombinator.com/item?id=38867421\nPoints: 50\n# Comments: 12", + "guid": "https://news.ycombinator.com/item?id=38867421", + "isoDate": "2024-01-04T14:31:51.000Z" + }, + { + "creator": "pimterry", + "title": "9 years of Apple text editor solo dev", + "link": "https://papereditor.app/dev", + "pubDate": "Thu, 04 Jan 2024 12:30:35 +0000", + "dc:creator": "pimterry", + "comments": "https://news.ycombinator.com/item?id=38866170", + "content": "\n

Article URL: https://papereditor.app/dev

\n

Comments URL: https://news.ycombinator.com/item?id=38866170

\n

Points: 110

\n

# Comments: 35

\n", + "contentSnippet": "Article URL: https://papereditor.app/dev\nComments URL: https://news.ycombinator.com/item?id=38866170\nPoints: 110\n# Comments: 35", + "guid": "https://news.ycombinator.com/item?id=38866170", + "isoDate": "2024-01-04T12:30:35.000Z" + }, + { + "creator": "MAXPOOL", + "title": "Making Real-World Reinforcement Learning Practical [video]", + "link": "https://www.youtube.com/watch?v=17NrtKHdPDw", + "pubDate": "Thu, 04 Jan 2024 09:51:40 +0000", + "dc:creator": "MAXPOOL", + "comments": "https://news.ycombinator.com/item?id=38865131", + "content": "\n

Article URL: https://www.youtube.com/watch?v=17NrtKHdPDw

\n

Comments URL: https://news.ycombinator.com/item?id=38865131

\n

Points: 36

\n

# Comments: 1

\n", + "contentSnippet": "Article URL: https://www.youtube.com/watch?v=17NrtKHdPDw\nComments URL: https://news.ycombinator.com/item?id=38865131\nPoints: 36\n# Comments: 1", + "guid": "https://news.ycombinator.com/item?id=38865131", + "isoDate": "2024-01-04T09:51:40.000Z" + }, + { + "creator": "fagnerbrack", + "title": "Main-Thread-Scheduling", + "link": "https://github.com/astoilkov/main-thread-scheduling", + "pubDate": "Thu, 04 Jan 2024 09:06:59 +0000", + "dc:creator": "fagnerbrack", + "comments": "https://news.ycombinator.com/item?id=38864791", + "content": "\n

Article URL: https://github.com/astoilkov/main-thread-scheduling

\n

Comments URL: https://news.ycombinator.com/item?id=38864791

\n

Points: 36

\n

# Comments: 0

\n", + "contentSnippet": "Article URL: https://github.com/astoilkov/main-thread-scheduling\nComments URL: https://news.ycombinator.com/item?id=38864791\nPoints: 36\n# Comments: 0", + "guid": "https://news.ycombinator.com/item?id=38864791", + "isoDate": "2024-01-04T09:06:59.000Z" + }, + { + "creator": "joisig", + "title": "Turtles, a Shelly/Zigbee home automation tool in Elixir", + "link": "https://joisig.com/2023-holiday-side-project-turtles", + "pubDate": "Thu, 04 Jan 2024 09:05:31 +0000", + "dc:creator": "joisig", + "comments": "https://news.ycombinator.com/item?id=38864774", + "content": "\n

Article URL: https://joisig.com/2023-holiday-side-project-turtles

\n

Comments URL: https://news.ycombinator.com/item?id=38864774

\n

Points: 53

\n

# Comments: 22

\n", + "contentSnippet": "Article URL: https://joisig.com/2023-holiday-side-project-turtles\nComments URL: https://news.ycombinator.com/item?id=38864774\nPoints: 53\n# Comments: 22", + "guid": "https://news.ycombinator.com/item?id=38864774", + "isoDate": "2024-01-04T09:05:31.000Z" + }, + { + "creator": "amin", + "title": "Cleaning up my 200GB iCloud with some JavaScript", + "link": "https://andykong.org/blog/icloudconfusion", + "pubDate": "Thu, 04 Jan 2024 06:36:42 +0000", + "dc:creator": "amin", + "comments": "https://news.ycombinator.com/item?id=38863817", + "content": "\n

Article URL: https://andykong.org/blog/icloudconfusion

\n

Comments URL: https://news.ycombinator.com/item?id=38863817

\n

Points: 98

\n

# Comments: 70

\n", + "contentSnippet": "Article URL: https://andykong.org/blog/icloudconfusion\nComments URL: https://news.ycombinator.com/item?id=38863817\nPoints: 98\n# Comments: 70", + "guid": "https://news.ycombinator.com/item?id=38863817", + "isoDate": "2024-01-04T06:36:42.000Z" + }, + { + "creator": "Caiero", + "title": "A Visit to the Museo Nacional de Antropolog\u00eda, Mexico City (2023)", + "link": "https://johnhawks.net/weblog/museo-nacional-de-antropologia-visit/", + "pubDate": "Wed, 03 Jan 2024 22:42:46 +0000", + "dc:creator": "Caiero", + "comments": "https://news.ycombinator.com/item?id=38860842", + "content": "\n

Article URL: https://johnhawks.net/weblog/museo-nacional-de-antropologia-visit/

\n

Comments URL: https://news.ycombinator.com/item?id=38860842

\n

Points: 56

\n

# Comments: 15

\n", + "contentSnippet": "Article URL: https://johnhawks.net/weblog/museo-nacional-de-antropologia-visit/\nComments URL: https://news.ycombinator.com/item?id=38860842\nPoints: 56\n# Comments: 15", + "guid": "https://news.ycombinator.com/item?id=38860842", + "isoDate": "2024-01-03T22:42:46.000Z" + }, + { + "creator": "alexzeitler", + "title": "Let's Block It", + "link": "https://letsblock.it/", + "pubDate": "Thu, 11 Jan 2024 20:57:25 +0000", + "dc:creator": "alexzeitler", + "comments": "https://news.ycombinator.com/item?id=38958955", + "content": "\n

Article URL: https://letsblock.it/

\n

Comments URL: https://news.ycombinator.com/item?id=38958955

\n

Points: 77

\n

# Comments: 8

\n", + "contentSnippet": "Article URL: https://letsblock.it/\nComments URL: https://news.ycombinator.com/item?id=38958955\nPoints: 77\n# Comments: 8", + "guid": "https://news.ycombinator.com/item?id=38958955", + "isoDate": "2024-01-11T20:57:25.000Z" + }, + { + "creator": "Vaslo", + "title": "93% of U.S. households' stock market wealth is held by the top 10%", + "link": "https://www.axios.com/2024/01/10/wealthy-own-record-share-stock-market", + "pubDate": "Thu, 11 Jan 2024 20:29:02 +0000", + "dc:creator": "Vaslo", + "comments": "https://news.ycombinator.com/item?id=38958534", + "content": "\n

Article URL: https://www.axios.com/2024/01/10/wealthy-own-record-share-stock-market

\n

Comments URL: https://news.ycombinator.com/item?id=38958534

\n

Points: 39

\n

# Comments: 19

\n", + "contentSnippet": "Article URL: https://www.axios.com/2024/01/10/wealthy-own-record-share-stock-market\nComments URL: https://news.ycombinator.com/item?id=38958534\nPoints: 39\n# Comments: 19", + "guid": "https://news.ycombinator.com/item?id=38958534", + "isoDate": "2024-01-11T20:29:02.000Z" + }, + { + "creator": "rmason", + "title": "Engineer Used Water Pump to Get $1B Stuxnet Malware into Iranian Nuclear Plant", + "link": "https://www.securityweek.com/dutch-engineer-used-water-pump-to-get-billion-dollar-stuxnet-malware-into-iranian-nuclear-facility-report/", + "pubDate": "Thu, 11 Jan 2024 19:53:00 +0000", + "dc:creator": "rmason", + "comments": "https://news.ycombinator.com/item?id=38957961", + "content": "\n

Article URL: https://www.securityweek.com/dutch-engineer-used-water-pump-to-get-billion-dollar-stuxnet-malware-into-iranian-nuclear-facility-report/

\n

Comments URL: https://news.ycombinator.com/item?id=38957961

\n

Points: 62

\n

# Comments: 49

\n", + "contentSnippet": "Article URL: https://www.securityweek.com/dutch-engineer-used-water-pump-to-get-billion-dollar-stuxnet-malware-into-iranian-nuclear-facility-report/\nComments URL: https://news.ycombinator.com/item?id=38957961\nPoints: 62\n# Comments: 49", + "guid": "https://news.ycombinator.com/item?id=38957961", + "isoDate": "2024-01-11T19:53:00.000Z" + }, + { + "creator": "prideout", + "title": "Generating SVG for the Prime Knots", + "link": "https://prideout.net/blog/svg_knots/", + "pubDate": "Thu, 11 Jan 2024 18:50:51 +0000", + "dc:creator": "prideout", + "comments": "https://news.ycombinator.com/item?id=38956861", + "content": "\n

Article URL: https://prideout.net/blog/svg_knots/

\n

Comments URL: https://news.ycombinator.com/item?id=38956861

\n

Points: 94

\n

# Comments: 15

\n", + "contentSnippet": "Article URL: https://prideout.net/blog/svg_knots/\nComments URL: https://news.ycombinator.com/item?id=38956861\nPoints: 94\n# Comments: 15", + "guid": "https://news.ycombinator.com/item?id=38956861", + "isoDate": "2024-01-11T18:50:51.000Z" + }, + { + "creator": "grecy", + "title": "Majority of debtors to US hospitals now people with health insurance", + "link": "https://www.theguardian.com/us-news/2024/jan/11/hospital-debt-increase-people-with-insurance", + "pubDate": "Thu, 11 Jan 2024 18:49:44 +0000", + "dc:creator": "grecy", + "comments": "https://news.ycombinator.com/item?id=38956842", + "content": "\n

Article URL: https://www.theguardian.com/us-news/2024/jan/11/hospital-debt-increase-people-with-insurance

\n

Comments URL: https://news.ycombinator.com/item?id=38956842

\n

Points: 67

\n

# Comments: 36

\n", + "contentSnippet": "Article URL: https://www.theguardian.com/us-news/2024/jan/11/hospital-debt-increase-people-with-insurance\nComments URL: https://news.ycombinator.com/item?id=38956842\nPoints: 67\n# Comments: 36", + "guid": "https://news.ycombinator.com/item?id=38956842", + "isoDate": "2024-01-11T18:49:44.000Z" + }, + { + "creator": "minimaxir", + "title": "Discord is laying off 17 percent of employees", + "link": "https://www.theverge.com/2024/1/11/24034705/discord-layoffs-17-percent-employees", + "pubDate": "Thu, 11 Jan 2024 18:37:50 +0000", + "dc:creator": "minimaxir", + "comments": "https://news.ycombinator.com/item?id=38956623", + "content": "\n

Article URL: https://www.theverge.com/2024/1/11/24034705/discord-layoffs-17-percent-employees

\n

Comments URL: https://news.ycombinator.com/item?id=38956623

\n

Points: 351

\n

# Comments: 282

\n", + "contentSnippet": "Article URL: https://www.theverge.com/2024/1/11/24034705/discord-layoffs-17-percent-employees\nComments URL: https://news.ycombinator.com/item?id=38956623\nPoints: 351\n# Comments: 282", + "guid": "https://news.ycombinator.com/item?id=38956623", + "isoDate": "2024-01-11T18:37:50.000Z" + }, + { + "creator": "ent101", + "title": "Feynman: I am burned out and I'll never accomplish anything (1985)", + "link": "https://www.asc.ohio-state.edu/kilcup.1/262/feynman.html", + "pubDate": "Thu, 11 Jan 2024 18:35:40 +0000", + "dc:creator": "ent101", + "comments": "https://news.ycombinator.com/item?id=38956581", + "content": "\n

Article URL: https://www.asc.ohio-state.edu/kilcup.1/262/feynman.html

\n

Comments URL: https://news.ycombinator.com/item?id=38956581

\n

Points: 285

\n

# Comments: 117

\n", + "contentSnippet": "Article URL: https://www.asc.ohio-state.edu/kilcup.1/262/feynman.html\nComments URL: https://news.ycombinator.com/item?id=38956581\nPoints: 285\n# Comments: 117", + "guid": "https://news.ycombinator.com/item?id=38956581", + "isoDate": "2024-01-11T18:35:40.000Z" + }, + { + "creator": "kieranmaine", + "title": "Solar Will Supply Almost All Growth in U.S. Electricity Generation Through 2025", + "link": "https://cleantechnica.com/2024/01/09/u-s-eia-solar-will-supply-almost-all-growth-in-u-s-electricity-generation-through-2025/", + "pubDate": "Thu, 11 Jan 2024 17:18:28 +0000", + "dc:creator": "kieranmaine", + "comments": "https://news.ycombinator.com/item?id=38955274", + "content": "\n

Article URL: https://cleantechnica.com/2024/01/09/u-s-eia-solar-will-supply-almost-all-growth-in-u-s-electricity-generation-through-2025/

\n

Comments URL: https://news.ycombinator.com/item?id=38955274

\n

Points: 153

\n

# Comments: 133

\n", + "contentSnippet": "Article URL: https://cleantechnica.com/2024/01/09/u-s-eia-solar-will-supply-almost-all-growth-in-u-s-electricity-generation-through-2025/\nComments URL: https://news.ycombinator.com/item?id=38955274\nPoints: 153\n# Comments: 133", + "guid": "https://news.ycombinator.com/item?id=38955274", + "isoDate": "2024-01-11T17:18:28.000Z" + }, + { + "creator": "jacobprall", + "title": "A Technical Dive into PostgreSQL's replication mechanisms", + "link": "https://airbyte.com/blog/a-guide-to-logical-replication-and-cdc-in-postgresql", + "pubDate": "Thu, 11 Jan 2024 16:55:38 +0000", + "dc:creator": "jacobprall", + "comments": "https://news.ycombinator.com/item?id=38954867", + "content": "\n

Article URL: https://airbyte.com/blog/a-guide-to-logical-replication-and-cdc-in-postgresql

\n

Comments URL: https://news.ycombinator.com/item?id=38954867

\n

Points: 110

\n

# Comments: 18

\n", + "contentSnippet": "Article URL: https://airbyte.com/blog/a-guide-to-logical-replication-and-cdc-in-postgresql\nComments URL: https://news.ycombinator.com/item?id=38954867\nPoints: 110\n# Comments: 18", + "guid": "https://news.ycombinator.com/item?id=38954867", + "isoDate": "2024-01-11T16:55:38.000Z" + }, + { + "creator": "mfiguiere", + "title": "Microsoft overtakes Apple as most valuable company", + "link": "https://www.reuters.com/technology/microsoft-overtakes-apple-worlds-most-valuable-company-2024-01-11/", + "pubDate": "Thu, 11 Jan 2024 16:47:18 +0000", + "dc:creator": "mfiguiere", + "comments": "https://news.ycombinator.com/item?id=38954730", + "content": "\n

Article URL: https://www.reuters.com/technology/microsoft-overtakes-apple-worlds-most-valuable-company-2024-01-11/

\n

Comments URL: https://news.ycombinator.com/item?id=38954730

\n

Points: 104

\n

# Comments: 42

\n", + "contentSnippet": "Article URL: https://www.reuters.com/technology/microsoft-overtakes-apple-worlds-most-valuable-company-2024-01-11/\nComments URL: https://news.ycombinator.com/item?id=38954730\nPoints: 104\n# Comments: 42", + "guid": "https://news.ycombinator.com/item?id=38954730", + "isoDate": "2024-01-11T16:47:18.000Z" + }, + { + "creator": "LukeLambert", + "title": "Removing data transfer fees when moving off Google Cloud", + "link": "https://cloud.google.com/blog/products/networking/eliminating-data-transfer-fees-when-migrating-off-google-cloud/", + "pubDate": "Thu, 11 Jan 2024 15:49:27 +0000", + "dc:creator": "LukeLambert", + "comments": "https://news.ycombinator.com/item?id=38953846", + "content": "\n

Article URL: https://cloud.google.com/blog/products/networking/eliminating-data-transfer-fees-when-migrating-off-google-cloud/

\n

Comments URL: https://news.ycombinator.com/item?id=38953846

\n

Points: 93

\n

# Comments: 35

\n", + "contentSnippet": "Article URL: https://cloud.google.com/blog/products/networking/eliminating-data-transfer-fees-when-migrating-off-google-cloud/\nComments URL: https://news.ycombinator.com/item?id=38953846\nPoints: 93\n# Comments: 35", + "guid": "https://news.ycombinator.com/item?id=38953846", + "isoDate": "2024-01-11T15:49:27.000Z" + }, + { + "creator": "jlpcsl", + "title": "Outlook is Microsoft's new data collection service", + "link": "https://proton.me/blog/outlook-is-microsofts-new-data-collection-service", + "pubDate": "Thu, 11 Jan 2024 15:36:09 +0000", + "dc:creator": "jlpcsl", + "comments": "https://news.ycombinator.com/item?id=38953618", + "content": "\n

Article URL: https://proton.me/blog/outlook-is-microsofts-new-data-collection-service

\n

Comments URL: https://news.ycombinator.com/item?id=38953618

\n

Points: 395

\n

# Comments: 211

\n", + "contentSnippet": "Article URL: https://proton.me/blog/outlook-is-microsofts-new-data-collection-service\nComments URL: https://news.ycombinator.com/item?id=38953618\nPoints: 395\n# Comments: 211", + "guid": "https://news.ycombinator.com/item?id=38953618", + "isoDate": "2024-01-11T15:36:09.000Z" + }, + { + "creator": "throw0101d", + "title": "Timeline to remove DSA support in OpenSSH", + "link": "https://lists.mindrot.org/pipermail/openssh-unix-announce/2024-January/000156.html", + "pubDate": "Thu, 11 Jan 2024 13:20:49 +0000", + "dc:creator": "throw0101d", + "comments": "https://news.ycombinator.com/item?id=38951847", + "content": "\n

Article URL: https://lists.mindrot.org/pipermail/openssh-unix-announce/2024-January/000156.html

\n

Comments URL: https://news.ycombinator.com/item?id=38951847

\n

Points: 193

\n

# Comments: 115

\n", + "contentSnippet": "Article URL: https://lists.mindrot.org/pipermail/openssh-unix-announce/2024-January/000156.html\nComments URL: https://news.ycombinator.com/item?id=38951847\nPoints: 193\n# Comments: 115", + "guid": "https://news.ycombinator.com/item?id=38951847", + "isoDate": "2024-01-11T13:20:49.000Z" + }, + { + "creator": "naturalauction", + "title": "Blending Is All You Need: Cheaper, Better Alternative to Trillion-Parameters LLM", + "link": "https://arxiv.org/abs/2401.02994", + "pubDate": "Thu, 11 Jan 2024 13:00:51 +0000", + "dc:creator": "naturalauction", + "comments": "https://news.ycombinator.com/item?id=38951652", + "content": "\n

Article URL: https://arxiv.org/abs/2401.02994

\n

Comments URL: https://news.ycombinator.com/item?id=38951652

\n

Points: 50

\n

# Comments: 18

\n", + "contentSnippet": "Article URL: https://arxiv.org/abs/2401.02994\nComments URL: https://news.ycombinator.com/item?id=38951652\nPoints: 50\n# Comments: 18", + "guid": "https://news.ycombinator.com/item?id=38951652", + "isoDate": "2024-01-11T13:00:51.000Z" + }, + { + "creator": "throwup238", + "title": "Virtual Computer Museum \u2013 VNC into Archaic Windows Systems", + "link": "https://museum.trialanderror.tech/", + "pubDate": "Thu, 11 Jan 2024 12:27:33 +0000", + "dc:creator": "throwup238", + "comments": "https://news.ycombinator.com/item?id=38951315", + "content": "\n

Article URL: https://museum.trialanderror.tech/

\n

Comments URL: https://news.ycombinator.com/item?id=38951315

\n

Points: 52

\n

# Comments: 18

\n", + "contentSnippet": "Article URL: https://museum.trialanderror.tech/\nComments URL: https://news.ycombinator.com/item?id=38951315\nPoints: 52\n# Comments: 18", + "guid": "https://news.ycombinator.com/item?id=38951315", + "isoDate": "2024-01-11T12:27:33.000Z" + }, + { + "creator": "popcar2", + "title": "Show HN: GodotOS: A Fake Operating System Interface Made in the Godot Engine", + "link": "https://github.com/popcar2/GodotOS", + "pubDate": "Thu, 11 Jan 2024 12:09:59 +0000", + "dc:creator": "popcar2", + "comments": "https://news.ycombinator.com/item?id=38951172", + "content": "\n

GodotOS, an operating system interface created entirely in Godot! Browse folders, edit text files, view images, play games, and more in one cohesive polished interface that can even be used on the web.

Note that GodotOS is more of a toy than a serious project. It's meant to push the limits on UI design in Godot while creating a desktop that is minimalist, distraction-free, and aesthetically pleasing. Any feedback is greatly appreciated!

Apologies for posting again, but I forgot to include \"Show HN\" in the title, and when I did post yesterday Hackernews almost immediately went down for over an hour, which is unfortunate.

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38951172

\n

Points: 383

\n

# Comments: 158

\n", + "contentSnippet": "GodotOS, an operating system interface created entirely in Godot! Browse folders, edit text files, view images, play games, and more in one cohesive polished interface that can even be used on the web.\nNote that GodotOS is more of a toy than a serious project. It's meant to push the limits on UI design in Godot while creating a desktop that is minimalist, distraction-free, and aesthetically pleasing. Any feedback is greatly appreciated!\nApologies for posting again, but I forgot to include \"Show HN\" in the title, and when I did post yesterday Hackernews almost immediately went down for over an hour, which is unfortunate.\nComments URL: https://news.ycombinator.com/item?id=38951172\nPoints: 383\n# Comments: 158", + "guid": "https://news.ycombinator.com/item?id=38951172", + "isoDate": "2024-01-11T12:09:59.000Z" + }, + { + "creator": "Khaine", + "title": "Tell HN: Bash.org is no more", + "link": "https://news.ycombinator.com/item?id=38950721", + "pubDate": "Thu, 11 Jan 2024 11:17:08 +0000", + "dc:creator": "Khaine", + "comments": "https://news.ycombinator.com/item?id=38950721", + "content": "\n

Bash.org was a cornerstone of the old internet. It was a collection of silly quotes from IRC channels everywhere, many of which dated back to the 90s. And now it is no more.

\n
\n

Comments URL: https://news.ycombinator.com/item?id=38950721

\n

Points: 452

\n

# Comments: 245

\n", + "contentSnippet": "Bash.org was a cornerstone of the old internet. It was a collection of silly quotes from IRC channels everywhere, many of which dated back to the 90s. And now it is no more.\nComments URL: https://news.ycombinator.com/item?id=38950721\nPoints: 452\n# Comments: 245", + "guid": "https://news.ycombinator.com/item?id=38950721", + "isoDate": "2024-01-11T11:17:08.000Z" + }, + { + "creator": "lawrencechen", + "title": "Building a baseline JIT for Lua automatically (2023)", + "link": "https://sillycross.github.io/2023/05/12/2023-05-12/", + "pubDate": "Thu, 11 Jan 2024 08:11:15 +0000", + "dc:creator": "lawrencechen", + "comments": "https://news.ycombinator.com/item?id=38949231", + "content": "\n

Article URL: https://sillycross.github.io/2023/05/12/2023-05-12/

\n

Comments URL: https://news.ycombinator.com/item?id=38949231

\n

Points: 120

\n

# Comments: 29

\n", + "contentSnippet": "Article URL: https://sillycross.github.io/2023/05/12/2023-05-12/\nComments URL: https://news.ycombinator.com/item?id=38949231\nPoints: 120\n# Comments: 29", + "guid": "https://news.ycombinator.com/item?id=38949231", + "isoDate": "2024-01-11T08:11:15.000Z" + }, + { + "creator": "shakna", + "title": "Lego Mechanical Computer", + "link": "https://www.drmoron.org/posts/mechanical-computer/", + "pubDate": "Wed, 10 Jan 2024 13:10:24 +0000", + "dc:creator": "shakna", + "comments": "https://news.ycombinator.com/item?id=38939070", + "content": "\n

Article URL: https://www.drmoron.org/posts/mechanical-computer/

\n

Comments URL: https://news.ycombinator.com/item?id=38939070

\n

Points: 178

\n

# Comments: 23

\n", + "contentSnippet": "Article URL: https://www.drmoron.org/posts/mechanical-computer/\nComments URL: https://news.ycombinator.com/item?id=38939070\nPoints: 178\n# Comments: 23", + "guid": "https://news.ycombinator.com/item?id=38939070", + "isoDate": "2024-01-10T13:10:24.000Z" + }, + { + "creator": "petercooper", + "title": "GitHub Actions as a time-sharing supercomputer", + "link": "https://blog.alexellis.io/github-actions-timesharing-supercomputer/", + "pubDate": "Wed, 10 Jan 2024 10:11:01 +0000", + "dc:creator": "petercooper", + "comments": "https://news.ycombinator.com/item?id=38938470", + "content": "\n

Article URL: https://blog.alexellis.io/github-actions-timesharing-supercomputer/

\n

Comments URL: https://news.ycombinator.com/item?id=38938470

\n

Points: 98

\n

# Comments: 38

\n", + "contentSnippet": "Article URL: https://blog.alexellis.io/github-actions-timesharing-supercomputer/\nComments URL: https://news.ycombinator.com/item?id=38938470\nPoints: 98\n# Comments: 38", + "guid": "https://news.ycombinator.com/item?id=38938470", + "isoDate": "2024-01-10T10:11:01.000Z" + }, + { + "creator": "rapnie", + "title": "Microsoft limits institutional cloud storage space for environmental reasons", + "link": "https://scholar.social/@researchfairy/111778617625312456", + "pubDate": "Fri, 19 Jan 2024 08:13:18 +0000", + "dc:creator": "rapnie", + "comments": "https://news.ycombinator.com/item?id=39052907", + "content": "\n

Article URL: https://scholar.social/@researchfairy/111778617625312456

\n

Comments URL: https://news.ycombinator.com/item?id=39052907

\n

Points: 56

\n

# Comments: 69

\n", + "contentSnippet": "Article URL: https://scholar.social/@researchfairy/111778617625312456\nComments URL: https://news.ycombinator.com/item?id=39052907\nPoints: 56\n# Comments: 69", + "guid": "https://news.ycombinator.com/item?id=39052907", + "isoDate": "2024-01-19T08:13:18.000Z" + }, + { + "creator": "sschueller", + "title": "Google will disable all but OAuth for IMAP, SMTP and POP starting Sept. 30", + "link": "https://workspaceupdates.googleblog.com/2023/09/winding-down-google-sync-and-less-secure-apps-support.html", + "pubDate": "Fri, 19 Jan 2024 06:30:36 +0000", + "dc:creator": "sschueller", + "comments": "https://news.ycombinator.com/item?id=39052196", + "content": "\n

Article URL: https://workspaceupdates.googleblog.com/2023/09/winding-down-google-sync-and-less-secure-apps-support.html

\n

Comments URL: https://news.ycombinator.com/item?id=39052196

\n

Points: 154

\n

# Comments: 56

\n", + "contentSnippet": "Article URL: https://workspaceupdates.googleblog.com/2023/09/winding-down-google-sync-and-less-secure-apps-support.html\nComments URL: https://news.ycombinator.com/item?id=39052196\nPoints: 154\n# Comments: 56", + "guid": "https://news.ycombinator.com/item?id=39052196", + "isoDate": "2024-01-19T06:30:36.000Z" + }, + { + "creator": "kfogel", + "title": "Culture Change at Google", + "link": "https://social.clawhammer.net/blog/posts/2024-01-19-CultureChange/", + "pubDate": "Fri, 19 Jan 2024 04:46:32 +0000", + "dc:creator": "kfogel", + "comments": "https://news.ycombinator.com/item?id=39051655", + "content": "\n

Article URL: https://social.clawhammer.net/blog/posts/2024-01-19-CultureChange/

\n

Comments URL: https://news.ycombinator.com/item?id=39051655

\n

Points: 231

\n

# Comments: 158

\n", + "contentSnippet": "Article URL: https://social.clawhammer.net/blog/posts/2024-01-19-CultureChange/\nComments URL: https://news.ycombinator.com/item?id=39051655\nPoints: 231\n# Comments: 158", + "guid": "https://news.ycombinator.com/item?id=39051655", + "isoDate": "2024-01-19T04:46:32.000Z" + }, + { + "creator": "saint11", + "title": "Orthic Shorthand \u2013 Write as fast as you type", + "link": "https://orthic.shorthand.fun/", + "pubDate": "Fri, 19 Jan 2024 03:48:01 +0000", + "dc:creator": "saint11", + "comments": "https://news.ycombinator.com/item?id=39051362", + "content": "\n

Article URL: https://orthic.shorthand.fun/

\n

Comments URL: https://news.ycombinator.com/item?id=39051362

\n

Points: 45

\n

# Comments: 26

\n", + "contentSnippet": "Article URL: https://orthic.shorthand.fun/\nComments URL: https://news.ycombinator.com/item?id=39051362\nPoints: 45\n# Comments: 26", + "guid": "https://news.ycombinator.com/item?id=39051362", + "isoDate": "2024-01-19T03:48:01.000Z" + }, + { + "creator": "todsacerdoti", + "title": "Dave Mills has died", + "link": "https://elists.isoc.org/pipermail/internet-history/2024-January/009265.html", + "pubDate": "Fri, 19 Jan 2024 03:27:58 +0000", + "dc:creator": "todsacerdoti", + "comments": "https://news.ycombinator.com/item?id=39051246", + "content": "\n

Article URL: https://elists.isoc.org/pipermail/internet-history/2024-January/009265.html

\n

Comments URL: https://news.ycombinator.com/item?id=39051246

\n

Points: 296

\n

# Comments: 31

\n", + "contentSnippet": "Article URL: https://elists.isoc.org/pipermail/internet-history/2024-January/009265.html\nComments URL: https://news.ycombinator.com/item?id=39051246\nPoints: 296\n# Comments: 31", + "guid": "https://news.ycombinator.com/item?id=39051246", + "isoDate": "2024-01-19T03:27:58.000Z" + }, + { + "creator": "cherysun", + "title": "Show HN: Quetta \u2013 A privacy-first web browser with enhanced ad blocker inside", + "link": "https://www.quetta.net/", + "pubDate": "Fri, 19 Jan 2024 02:37:29 +0000", + "dc:creator": "cherysun", + "comments": "https://news.ycombinator.com/item?id=39050967", + "content": "\n

Article URL: https://www.quetta.net/

\n

Comments URL: https://news.ycombinator.com/item?id=39050967

\n

Points: 37

\n

# Comments: 39

\n", + "contentSnippet": "Article URL: https://www.quetta.net/\nComments URL: https://news.ycombinator.com/item?id=39050967\nPoints: 37\n# Comments: 39", + "guid": "https://news.ycombinator.com/item?id=39050967", + "isoDate": "2024-01-19T02:37:29.000Z" + }, + { + "creator": "jyunwai", + "title": "Why holes at the bottom of the ocean disappear and reappear", + "link": "https://www.atlasobscura.com/articles/ocean-floor-holes-purposes-eels", + "pubDate": "Fri, 19 Jan 2024 00:26:28 +0000", + "dc:creator": "jyunwai", + "comments": "https://news.ycombinator.com/item?id=39049999", + "content": "\n

Article URL: https://www.atlasobscura.com/articles/ocean-floor-holes-purposes-eels

\n

Comments URL: https://news.ycombinator.com/item?id=39049999

\n

Points: 57

\n

# Comments: 10

\n", + "contentSnippet": "Article URL: https://www.atlasobscura.com/articles/ocean-floor-holes-purposes-eels\nComments URL: https://news.ycombinator.com/item?id=39049999\nPoints: 57\n# Comments: 10", + "guid": "https://news.ycombinator.com/item?id=39049999", + "isoDate": "2024-01-19T00:26:28.000Z" + }, + { + "creator": "EA-3167", + "title": "AlphaFold Found Possible Psychedelics", + "link": "https://www.nature.com/articles/d41586-024-00130-8", + "pubDate": "Thu, 18 Jan 2024 23:53:32 +0000", + "dc:creator": "EA-3167", + "comments": "https://news.ycombinator.com/item?id=39049703", + "content": "\n

Article URL: https://www.nature.com/articles/d41586-024-00130-8

\n

Comments URL: https://news.ycombinator.com/item?id=39049703

\n

Points: 237

\n

# Comments: 53

\n", + "contentSnippet": "Article URL: https://www.nature.com/articles/d41586-024-00130-8\nComments URL: https://news.ycombinator.com/item?id=39049703\nPoints: 237\n# Comments: 53", + "guid": "https://news.ycombinator.com/item?id=39049703", + "isoDate": "2024-01-18T23:53:32.000Z" + }, + { + "creator": "caydenm", + "title": "10 Second Teleportation", + "link": "https://upollo.ai/blog/10-second-teleportation", + "pubDate": "Thu, 18 Jan 2024 23:53:05 +0000", + "dc:creator": "caydenm", + "comments": "https://news.ycombinator.com/item?id=39049691", + "content": "\n

Article URL: https://upollo.ai/blog/10-second-teleportation

\n

Comments URL: https://news.ycombinator.com/item?id=39049691

\n

Points: 65

\n

# Comments: 46

\n", + "contentSnippet": "Article URL: https://upollo.ai/blog/10-second-teleportation\nComments URL: https://news.ycombinator.com/item?id=39049691\nPoints: 65\n# Comments: 46", + "guid": "https://news.ycombinator.com/item?id=39049691", + "isoDate": "2024-01-18T23:53:05.000Z" + }, + { + "creator": "hnuser0000", + "title": "YouTube and Spotify won't launch Apple Vision Pro apps, joining Netflix", + "link": "https://www.bloomberg.com/news/articles/2024-01-18/youtube-and-spotify-join-netflix-in-not-launching-apple-vision-pro-apps", + "pubDate": "Thu, 18 Jan 2024 23:07:29 +0000", + "dc:creator": "hnuser0000", + "comments": "https://news.ycombinator.com/item?id=39049217", + "content": "\n

Article URL: https://www.bloomberg.com/news/articles/2024-01-18/youtube-and-spotify-join-netflix-in-not-launching-apple-vision-pro-apps

\n

Comments URL: https://news.ycombinator.com/item?id=39049217

\n

Points: 105

\n

# Comments: 133

\n", + "contentSnippet": "Article URL: https://www.bloomberg.com/news/articles/2024-01-18/youtube-and-spotify-join-netflix-in-not-launching-apple-vision-pro-apps\nComments URL: https://news.ycombinator.com/item?id=39049217\nPoints: 105\n# Comments: 133", + "guid": "https://news.ycombinator.com/item?id=39049217", + "isoDate": "2024-01-18T23:07:29.000Z" + }, + { + "creator": "sh_tomer", + "title": "We migrated our PostgreSQL database with 11 seconds downtime", + "link": "https://gds.blog.gov.uk/2024/01/17/how-we-migrated-our-postgresql-database-with-11-seconds-downtime/", + "pubDate": "Thu, 18 Jan 2024 21:51:05 +0000", + "dc:creator": "sh_tomer", + "comments": "https://news.ycombinator.com/item?id=39048317", + "content": "\n

Article URL: https://gds.blog.gov.uk/2024/01/17/how-we-migrated-our-postgresql-database-with-11-seconds-downtime/

\n

Comments URL: https://news.ycombinator.com/item?id=39048317

\n

Points: 384

\n

# Comments: 146

\n", + "contentSnippet": "Article URL: https://gds.blog.gov.uk/2024/01/17/how-we-migrated-our-postgresql-database-with-11-seconds-downtime/\nComments URL: https://news.ycombinator.com/item?id=39048317\nPoints: 384\n# Comments: 146", + "guid": "https://news.ycombinator.com/item?id=39048317", + "isoDate": "2024-01-18T21:51:05.000Z" + }, + { + "creator": "gmays", + "title": "Relearning math as an adult", + "link": "https://gmays.com/how-im-relearning-math-as-an-adult/", + "pubDate": "Thu, 18 Jan 2024 21:12:54 +0000", + "dc:creator": "gmays", + "comments": "https://news.ycombinator.com/item?id=39047825", + "content": "\n

Article URL: https://gmays.com/how-im-relearning-math-as-an-adult/

\n

Comments URL: https://news.ycombinator.com/item?id=39047825

\n

Points: 202

\n

# Comments: 131

\n", + "contentSnippet": "Article URL: https://gmays.com/how-im-relearning-math-as-an-adult/\nComments URL: https://news.ycombinator.com/item?id=39047825\nPoints: 202\n# Comments: 131", + "guid": "https://news.ycombinator.com/item?id=39047825", + "isoDate": "2024-01-18T21:12:54.000Z" + }, + { + "creator": "wjb3", + "title": "Noisy brain may underlie some of autism's sensory features", + "link": "https://www.thetransmitter.org/spectrum/noisy-brain-may-underlie-some-of-autisms-sensory-features/", + "pubDate": "Thu, 18 Jan 2024 20:53:17 +0000", + "dc:creator": "wjb3", + "comments": "https://news.ycombinator.com/item?id=39047541", + "content": "\n

Article URL: https://www.thetransmitter.org/spectrum/noisy-brain-may-underlie-some-of-autisms-sensory-features/

\n

Comments URL: https://news.ycombinator.com/item?id=39047541

\n

Points: 196

\n

# Comments: 138

\n", + "contentSnippet": "Article URL: https://www.thetransmitter.org/spectrum/noisy-brain-may-underlie-some-of-autisms-sensory-features/\nComments URL: https://news.ycombinator.com/item?id=39047541\nPoints: 196\n# Comments: 138", + "guid": "https://news.ycombinator.com/item?id=39047541", + "isoDate": "2024-01-18T20:53:17.000Z" + }, + { + "creator": "matt_d", + "title": "Writing a Debugger from Scratch \u2013 DbgRs Part 7 \u2013 Disassembly", + "link": "https://www.timdbg.com/posts/writing-a-debugger-from-scratch-part-7/", + "pubDate": "Thu, 18 Jan 2024 20:45:06 +0000", + "dc:creator": "matt_d", + "comments": "https://news.ycombinator.com/item?id=39047437", + "content": "\n

Article URL: https://www.timdbg.com/posts/writing-a-debugger-from-scratch-part-7/

\n

Comments URL: https://news.ycombinator.com/item?id=39047437

\n

Points: 31

\n

# Comments: 0

\n", + "contentSnippet": "Article URL: https://www.timdbg.com/posts/writing-a-debugger-from-scratch-part-7/\nComments URL: https://news.ycombinator.com/item?id=39047437\nPoints: 31\n# Comments: 0", + "guid": "https://news.ycombinator.com/item?id=39047437", + "isoDate": "2024-01-18T20:45:06.000Z" + }, + { + "creator": "ecliptik", + "title": "Cracking the code of Linear B", + "link": "https://antigonejournal.com/2024/01/decipherment-linear-b/", + "pubDate": "Thu, 18 Jan 2024 20:20:39 +0000", + "dc:creator": "ecliptik", + "comments": "https://news.ycombinator.com/item?id=39047102", + "content": "\n

Article URL: https://antigonejournal.com/2024/01/decipherment-linear-b/

\n

Comments URL: https://news.ycombinator.com/item?id=39047102

\n

Points: 105

\n

# Comments: 17

\n", + "contentSnippet": "Article URL: https://antigonejournal.com/2024/01/decipherment-linear-b/\nComments URL: https://news.ycombinator.com/item?id=39047102\nPoints: 105\n# Comments: 17", + "guid": "https://news.ycombinator.com/item?id=39047102", + "isoDate": "2024-01-18T20:20:39.000Z" + }, + { + "creator": "laktak", + "title": "Virtual tour of Museum of Failure", + "link": "https://collection.museumoffailure.com/", + "pubDate": "Thu, 18 Jan 2024 17:35:11 +0000", + "dc:creator": "laktak", + "comments": "https://news.ycombinator.com/item?id=39044727", + "content": "\n

Article URL: https://collection.museumoffailure.com/

\n

Comments URL: https://news.ycombinator.com/item?id=39044727

\n

Points: 58

\n

# Comments: 26

\n", + "contentSnippet": "Article URL: https://collection.museumoffailure.com/\nComments URL: https://news.ycombinator.com/item?id=39044727\nPoints: 58\n# Comments: 26", + "guid": "https://news.ycombinator.com/item?id=39044727", + "isoDate": "2024-01-18T17:35:11.000Z" + }, + { + "creator": "jbrins1", + "title": "The case for single-stair multifamily", + "link": "https://www.thesisdriven.com/p/the-case-for-single-stair-multifamily", + "pubDate": "Thu, 18 Jan 2024 16:41:17 +0000", + "dc:creator": "jbrins1", + "comments": "https://news.ycombinator.com/item?id=39043956", + "content": "\n

Article URL: https://www.thesisdriven.com/p/the-case-for-single-stair-multifamily

\n

Comments URL: https://news.ycombinator.com/item?id=39043956

\n

Points: 282

\n

# Comments: 450

\n", + "contentSnippet": "Article URL: https://www.thesisdriven.com/p/the-case-for-single-stair-multifamily\nComments URL: https://news.ycombinator.com/item?id=39043956\nPoints: 282\n# Comments: 450", + "guid": "https://news.ycombinator.com/item?id=39043956", + "isoDate": "2024-01-18T16:41:17.000Z" + }, + { + "creator": "PaulHoule", + "title": "The value of information gathering in phage\u2013bacteria warfare", + "link": "https://academic.oup.com/pnasnexus/article/3/1/pgad431/7512761", + "pubDate": "Thu, 18 Jan 2024 16:38:20 +0000", + "dc:creator": "PaulHoule", + "comments": "https://news.ycombinator.com/item?id=39043911", + "content": "\n

Article URL: https://academic.oup.com/pnasnexus/article/3/1/pgad431/7512761

\n

Comments URL: https://news.ycombinator.com/item?id=39043911

\n

Points: 53

\n

# Comments: 13

\n", + "contentSnippet": "Article URL: https://academic.oup.com/pnasnexus/article/3/1/pgad431/7512761\nComments URL: https://news.ycombinator.com/item?id=39043911\nPoints: 53\n# Comments: 13", + "guid": "https://news.ycombinator.com/item?id=39043911", + "isoDate": "2024-01-18T16:38:20.000Z" + }, + { + "creator": "waxpancake", + "title": "The quiet death of Ello's big dreams", + "link": "https://waxy.org/2024/01/the-quiet-death-of-ellos-big-dreams/", + "pubDate": "Thu, 18 Jan 2024 16:35:59 +0000", + "dc:creator": "waxpancake", + "comments": "https://news.ycombinator.com/item?id=39043871", + "content": "\n

Article URL: https://waxy.org/2024/01/the-quiet-death-of-ellos-big-dreams/

\n

Comments URL: https://news.ycombinator.com/item?id=39043871

\n

Points: 411

\n

# Comments: 209

\n", + "contentSnippet": "Article URL: https://waxy.org/2024/01/the-quiet-death-of-ellos-big-dreams/\nComments URL: https://news.ycombinator.com/item?id=39043871\nPoints: 411\n# Comments: 209", + "guid": "https://news.ycombinator.com/item?id=39043871", + "isoDate": "2024-01-18T16:35:59.000Z" + }, + { + "creator": "maxrmk", + "title": "Launch HN: Talc AI (YC S23) \u2013 Test Sets for AI", + "link": "https://news.ycombinator.com/item?id=39042093", + "pubDate": "Thu, 18 Jan 2024 14:32:55 +0000", + "dc:creator": "maxrmk", + "comments": "https://news.ycombinator.com/item?id=39042093", + "content": "\n

Hey all! Max and Matt here from Talc AI. We do automated QA for anything built on top of an LLM. Check out our demo: https://talc.ai/demo

We\u2019ve found that it's very difficult to know how well LLM applications (and especially RAG systems) are going to work in the wild. Many companies tackle this by having developers or contractors run tests manually. It\u2019s a slow process that holds back development, and often results in unexpected behavior when the application ships.

We\u2019ve dealt with similar problems before; Max was a staff engineer working on systematic technical solutions for privacy problems at facebook, and Matt worked on ML ops on facebooks\u2019 election integrity team, helping run classifiers that handled trillions of data points. We learned that even the best predictive systems need to be deeply understood and trusted to be useful to product teams, and set out to build the same understanding in AI.

To solve this, we take ideas from academia on how to benchmark the general capabilities of language models, and apply them to generating domain specific test cases that run against your actual prompts and code.

Consider an analogy: If you\u2019re a lawyer, we don\u2019t need to be lawyers to open up a legal textbook and test your knowledge of the content. Similarly if you\u2019re building a legal AI application, we don\u2019t need to build your application to come up with an effective set of tests that can benchmark your performance.

To make this more concrete - when you pick a topic in the demo, we grab the associated wikipedia page and extract a bunch of facts from it using a classic NLP technique called \u201cnamed entity recognition\u201d. For example if you picked FreeBASIC, we might extract the following line from it:

    Source of truth: \"IDEs specifically made for FreeBASIC include FBide and FbEdit,[5] while more graphical options include WinFBE Suite and VisualFBEditor.\" \n\n
\nThis line is our source of truth. We then use an LLM to work backwards from this fact into a question and answer:

    Question: \"What programming language are the IDEs WinFBE Suite and FbEdit designed to support?\"\n    Reference Answer: \"FreeBasic\"\n\n
\nWe can then evaluate accurately by comparing the reference answer and the original source of truth\u2013 this is how we generate \u201csimple\u201d questions in the demo.

In production we\u2019re building this same functionality on our customers' knowledge base instead of wikipedia. We then employ a few different strategies to generate questions \u2013 these range from simple factual questions like \u201chow much does the 2024 chevy tahoe cost\u201d, to complex questions like \u201cWhat would a mechanic have to do to fix the recall on my 2018 Golf?\u201d These questions are based on facts extracted from your knowledge base and real customer examples.

This testing and grading process is fast \u2013 it\u2019s driven by a mixture of LLMs and traditional algorithms, and can turn around in minutes. Our business model is pretty simple - we charge for each test created. If you opt to use our grading product as well we charge for each example graded against the test.

We\u2019re excited to hear what the HN community thinks \u2013 please let us know in the comments if you have any feedback, questions or concerns!

\n
\n

Comments URL: https://news.ycombinator.com/item?id=39042093

\n

Points: 112

\n

# Comments: 42

\n", + "contentSnippet": "Hey all! Max and Matt here from Talc AI. We do automated QA for anything built on top of an LLM. Check out our demo: https://talc.ai/demo\nWe\u2019ve found that it's very difficult to know how well LLM applications (and especially RAG systems) are going to work in the wild. Many companies tackle this by having developers or contractors run tests manually. It\u2019s a slow process that holds back development, and often results in unexpected behavior when the application ships.\nWe\u2019ve dealt with similar problems before; Max was a staff engineer working on systematic technical solutions for privacy problems at facebook, and Matt worked on ML ops on facebooks\u2019 election integrity team, helping run classifiers that handled trillions of data points. We learned that even the best predictive systems need to be deeply understood and trusted to be useful to product teams, and set out to build the same understanding in AI.\nTo solve this, we take ideas from academia on how to benchmark the general capabilities of language models, and apply them to generating domain specific test cases that run against your actual prompts and code.\nConsider an analogy: If you\u2019re a lawyer, we don\u2019t need to be lawyers to open up a legal textbook and test your knowledge of the content. Similarly if you\u2019re building a legal AI application, we don\u2019t need to build your application to come up with an effective set of tests that can benchmark your performance.\nTo make this more concrete - when you pick a topic in the demo, we grab the associated wikipedia page and extract a bunch of facts from it using a classic NLP technique called \u201cnamed entity recognition\u201d. For example if you picked FreeBASIC, we might extract the following line from it:\n Source of truth: \"IDEs specifically made for FreeBASIC include FBide and FbEdit,[5] while more graphical options include WinFBE Suite and VisualFBEditor.\" \n\n\n Question: \"What programming language are the IDEs WinFBE Suite and FbEdit designed to support?\"\n Reference Answer: \"FreeBasic\"\n\n\nIn production we\u2019re building this same functionality on our customers' knowledge base instead of wikipedia. We then employ a few different strategies to generate questions \u2013 these range from simple factual questions like \u201chow much does the 2024 chevy tahoe cost\u201d, to complex questions like \u201cWhat would a mechanic have to do to fix the recall on my 2018 Golf?\u201d These questions are based on facts extracted from your knowledge base and real customer examples.\nThis testing and grading process is fast \u2013 it\u2019s driven by a mixture of LLMs and traditional algorithms, and can turn around in minutes. Our business model is pretty simple - we charge for each test created. If you opt to use our grading product as well we charge for each example graded against the test.\nWe\u2019re excited to hear what the HN community thinks \u2013 please let us know in the comments if you have any feedback, questions or concerns!\nComments URL: https://news.ycombinator.com/item?id=39042093\nPoints: 112\n# Comments: 42", + "guid": "https://news.ycombinator.com/item?id=39042093", + "isoDate": "2024-01-18T14:32:55.000Z" + }, + { + "creator": "rrampage", + "title": "Why you should probably be using SQLite", + "link": "https://www.epicweb.dev/why-you-should-probably-be-using-sqlite", + "pubDate": "Fri, 27 Oct 2023 10:51:52 +0000", + "dc:creator": "rrampage", + "comments": "https://news.ycombinator.com/item?id=38036921", + "content": "\n

Article URL: https://www.epicweb.dev/why-you-should-probably-be-using-sqlite

\n

Comments URL: https://news.ycombinator.com/item?id=38036921

\n

Points: 50

\n

# Comments: 29

\n", + "contentSnippet": "Article URL: https://www.epicweb.dev/why-you-should-probably-be-using-sqlite\nComments URL: https://news.ycombinator.com/item?id=38036921\nPoints: 50\n# Comments: 29", + "guid": "https://news.ycombinator.com/item?id=38036921", + "isoDate": "2023-10-27T10:51:52.000Z" + }, + { + "creator": "keepamovin", + "title": "0 To 100 kph in 1 second", + "link": "https://www.youtube.com/watch?v=XQIu5tZ0vbQ", + "pubDate": "Fri, 27 Oct 2023 10:30:53 +0000", + "dc:creator": "keepamovin", + "comments": "https://news.ycombinator.com/item?id=38036801", + "content": "\n

Article URL: https://www.youtube.com/watch?v=XQIu5tZ0vbQ

\n

Comments URL: https://news.ycombinator.com/item?id=38036801

\n

Points: 65

\n

# Comments: 53

\n", + "contentSnippet": "Article URL: https://www.youtube.com/watch?v=XQIu5tZ0vbQ\nComments URL: https://news.ycombinator.com/item?id=38036801\nPoints: 65\n# Comments: 53", + "guid": "https://news.ycombinator.com/item?id=38036801", + "isoDate": "2023-10-27T10:30:53.000Z" + }, + { + "creator": "HieronymusBosch", + "title": "Some Pirate Sites Received More Visitors After Being Blocked", + "link": "https://torrentfreak.com/some-pirate-sites-received-more-visitors-after-being-blocked-231027/", + "pubDate": "Fri, 27 Oct 2023 10:21:50 +0000", + "dc:creator": "HieronymusBosch", + "comments": "https://news.ycombinator.com/item?id=38036740", + "content": "\n

Article URL: https://torrentfreak.com/some-pirate-sites-received-more-visitors-after-being-blocked-231027/

\n

Comments URL: https://news.ycombinator.com/item?id=38036740

\n

Points: 31

\n

# Comments: 26

\n", + "contentSnippet": "Article URL: https://torrentfreak.com/some-pirate-sites-received-more-visitors-after-being-blocked-231027/\nComments URL: https://news.ycombinator.com/item?id=38036740\nPoints: 31\n# Comments: 26", + "guid": "https://news.ycombinator.com/item?id=38036740", + "isoDate": "2023-10-27T10:21:50.000Z" + }, + { + "creator": "gridentio", + "title": "Lean4 helped Terence Tao discover a small bug in his recent paper", + "link": "https://mathstodon.xyz/@tao/111287749336059662", + "pubDate": "Fri, 27 Oct 2023 07:25:32 +0000", + "dc:creator": "gridentio", + "comments": "https://news.ycombinator.com/item?id=38035672", + "content": "\n

Article URL: https://mathstodon.xyz/@tao/111287749336059662

\n

Comments URL: https://news.ycombinator.com/item?id=38035672

\n

Points: 203

\n

# Comments: 75

\n", + "contentSnippet": "Article URL: https://mathstodon.xyz/@tao/111287749336059662\nComments URL: https://news.ycombinator.com/item?id=38035672\nPoints: 203\n# Comments: 75", + "guid": "https://news.ycombinator.com/item?id=38035672", + "isoDate": "2023-10-27T07:25:32.000Z" + }, + { + "creator": "FabienC", + "title": "Let me tell you about me Gear Fabrication Syndrome", + "link": "https://weenoisemaker.com/blog/2023/10/21/gear-fabrication-syndrome.html", + "pubDate": "Fri, 27 Oct 2023 07:00:04 +0000", + "dc:creator": "FabienC", + "comments": "https://news.ycombinator.com/item?id=38035516", + "content": "\n

Article URL: https://weenoisemaker.com/blog/2023/10/21/gear-fabrication-syndrome.html

\n

Comments URL: https://news.ycombinator.com/item?id=38035516

\n

Points: 119

\n

# Comments: 115

\n", + "contentSnippet": "Article URL: https://weenoisemaker.com/blog/2023/10/21/gear-fabrication-syndrome.html\nComments URL: https://news.ycombinator.com/item?id=38035516\nPoints: 119\n# Comments: 115", + "guid": "https://news.ycombinator.com/item?id=38035516", + "isoDate": "2023-10-27T07:00:04.000Z" + }, + { + "creator": "walterbell", + "title": "How to draw beautiful software architecture diagrams (2022)", + "link": "https://terrastruct.com/blog/post/draw-software-architecture-diagrams/", + "pubDate": "Fri, 27 Oct 2023 06:57:37 +0000", + "dc:creator": "walterbell", + "comments": "https://news.ycombinator.com/item?id=38035505", + "content": "\n

Article URL: https://terrastruct.com/blog/post/draw-software-architecture-diagrams/

\n

Comments URL: https://news.ycombinator.com/item?id=38035505

\n

Points: 119

\n

# Comments: 58

\n", + "contentSnippet": "Article URL: https://terrastruct.com/blog/post/draw-software-architecture-diagrams/\nComments URL: https://news.ycombinator.com/item?id=38035505\nPoints: 119\n# Comments: 58", + "guid": "https://news.ycombinator.com/item?id=38035505", + "isoDate": "2023-10-27T06:57:37.000Z" + }, + { + "creator": "signa11", + "title": "My 2023 all-flash ZFS NAS (Network Storage) build", + "link": "https://michael.stapelberg.ch/posts/2023-10-25-my-all-flash-zfs-network-storage-build/", + "pubDate": "Fri, 27 Oct 2023 04:48:11 +0000", + "dc:creator": "signa11", + "comments": "https://news.ycombinator.com/item?id=38034797", + "content": "\n

Article URL: https://michael.stapelberg.ch/posts/2023-10-25-my-all-flash-zfs-network-storage-build/

\n

Comments URL: https://news.ycombinator.com/item?id=38034797

\n

Points: 41

\n

# Comments: 12

\n", + "contentSnippet": "Article URL: https://michael.stapelberg.ch/posts/2023-10-25-my-all-flash-zfs-network-storage-build/\nComments URL: https://news.ycombinator.com/item?id=38034797\nPoints: 41\n# Comments: 12", + "guid": "https://news.ycombinator.com/item?id=38034797", + "isoDate": "2023-10-27T04:48:11.000Z" + }, + { + "creator": "mmastrac", + "title": "How to catch a wild triangle", + "link": "https://securelist.com/operation-triangulation-catching-wild-triangle/110916/", + "pubDate": "Fri, 27 Oct 2023 03:05:37 +0000", + "dc:creator": "mmastrac", + "comments": "https://news.ycombinator.com/item?id=38034269", + "content": "\n

Article URL: https://securelist.com/operation-triangulation-catching-wild-triangle/110916/

\n

Comments URL: https://news.ycombinator.com/item?id=38034269

\n

Points: 84

\n

# Comments: 23

\n", + "contentSnippet": "Article URL: https://securelist.com/operation-triangulation-catching-wild-triangle/110916/\nComments URL: https://news.ycombinator.com/item?id=38034269\nPoints: 84\n# Comments: 23", + "guid": "https://news.ycombinator.com/item?id=38034269", + "isoDate": "2023-10-27T03:05:37.000Z" + }, + { + "creator": "impish9208", + "title": "My Left Kidney", + "link": "https://www.astralcodexten.com/p/my-left-kidney", + "pubDate": "Fri, 27 Oct 2023 02:55:34 +0000", + "dc:creator": "impish9208", + "comments": "https://news.ycombinator.com/item?id=38034184", + "content": "\n

Article URL: https://www.astralcodexten.com/p/my-left-kidney

\n

Comments URL: https://news.ycombinator.com/item?id=38034184

\n

Points: 200

\n

# Comments: 211

\n", + "contentSnippet": "Article URL: https://www.astralcodexten.com/p/my-left-kidney\nComments URL: https://news.ycombinator.com/item?id=38034184\nPoints: 200\n# Comments: 211", + "guid": "https://news.ycombinator.com/item?id=38034184", + "isoDate": "2023-10-27T02:55:34.000Z" + }, + { + "creator": "talonx", + "title": "Ceasing print publication of ACM journals and transactions", + "link": "https://www.acm.org/publications/ceasing-print", + "pubDate": "Fri, 27 Oct 2023 00:36:45 +0000", + "dc:creator": "talonx", + "comments": "https://news.ycombinator.com/item?id=38033385", + "content": "\n

Article URL: https://www.acm.org/publications/ceasing-print

\n

Comments URL: https://news.ycombinator.com/item?id=38033385

\n

Points: 144

\n

# Comments: 86

\n", + "contentSnippet": "Article URL: https://www.acm.org/publications/ceasing-print\nComments URL: https://news.ycombinator.com/item?id=38033385\nPoints: 144\n# Comments: 86", + "guid": "https://news.ycombinator.com/item?id=38033385", + "isoDate": "2023-10-27T00:36:45.000Z" + }, + { + "creator": "superMayo", + "title": "Interactive intro to shaders", + "link": "https://www.mayerowitz.io/blog/a-journey-into-shaders", + "pubDate": "Thu, 26 Oct 2023 22:03:07 +0000", + "dc:creator": "superMayo", + "comments": "https://news.ycombinator.com/item?id=38032288", + "content": "\n

Article URL: https://www.mayerowitz.io/blog/a-journey-into-shaders

\n

Comments URL: https://news.ycombinator.com/item?id=38032288

\n

Points: 381

\n

# Comments: 55

\n", + "contentSnippet": "Article URL: https://www.mayerowitz.io/blog/a-journey-into-shaders\nComments URL: https://news.ycombinator.com/item?id=38032288\nPoints: 381\n# Comments: 55", + "guid": "https://news.ycombinator.com/item?id=38032288", + "isoDate": "2023-10-26T22:03:07.000Z" + }, + { + "creator": "nickt", + "title": "WebSDR \u2013 Internet-connected Software-Defined Radios", + "link": "http://www.websdr.org/", + "pubDate": "Thu, 26 Oct 2023 22:00:16 +0000", + "dc:creator": "nickt", + "comments": "https://news.ycombinator.com/item?id=38032257", + "content": "\n

Article URL: http://www.websdr.org/

\n

Comments URL: https://news.ycombinator.com/item?id=38032257

\n

Points: 209

\n

# Comments: 52

\n", + "contentSnippet": "Article URL: http://www.websdr.org/\nComments URL: https://news.ycombinator.com/item?id=38032257\nPoints: 209\n# Comments: 52", + "guid": "https://news.ycombinator.com/item?id=38032257", + "isoDate": "2023-10-26T22:00:16.000Z" + }, + { + "creator": "sohkamyung", + "title": "Trying to make sense of why Otis exploded en route to Acapulco", + "link": "https://theeyewall.com/trying-to-make-sense-of-why-otis-exploded-en-route-to-acapulco-this-week/", + "pubDate": "Thu, 26 Oct 2023 21:58:22 +0000", + "dc:creator": "sohkamyung", + "comments": "https://news.ycombinator.com/item?id=38032242", + "content": "\n

Article URL: https://theeyewall.com/trying-to-make-sense-of-why-otis-exploded-en-route-to-acapulco-this-week/

\n

Comments URL: https://news.ycombinator.com/item?id=38032242

\n

Points: 205

\n

# Comments: 107

\n", + "contentSnippet": "Article URL: https://theeyewall.com/trying-to-make-sense-of-why-otis-exploded-en-route-to-acapulco-this-week/\nComments URL: https://news.ycombinator.com/item?id=38032242\nPoints: 205\n# Comments: 107", + "guid": "https://news.ycombinator.com/item?id=38032242", + "isoDate": "2023-10-26T21:58:22.000Z" + }, + { + "creator": "bookofjoe", + "title": "Takkyu-bin: Luggage forwarding in Japan", + "link": "https://craigmod.com/ridgeline/170/", + "pubDate": "Thu, 26 Oct 2023 19:56:19 +0000", + "dc:creator": "bookofjoe", + "comments": "https://news.ycombinator.com/item?id=38030932", + "content": "\n

Article URL: https://craigmod.com/ridgeline/170/

\n

Comments URL: https://news.ycombinator.com/item?id=38030932

\n

Points: 265

\n

# Comments: 127

\n", + "contentSnippet": "Article URL: https://craigmod.com/ridgeline/170/\nComments URL: https://news.ycombinator.com/item?id=38030932\nPoints: 265\n# Comments: 127", + "guid": "https://news.ycombinator.com/item?id=38030932", + "isoDate": "2023-10-26T19:56:19.000Z" + }, + { + "creator": "KenRuf", + "title": "How bioelectricity could regrow limbs and organs", + "link": "https://news.uchicago.edu/how-bioelectricity-could-regrow-limbs-and-organs", + "pubDate": "Thu, 26 Oct 2023 16:07:24 +0000", + "dc:creator": "KenRuf", + "comments": "https://news.ycombinator.com/item?id=38027587", + "content": "\n

Article URL: https://news.uchicago.edu/how-bioelectricity-could-regrow-limbs-and-organs

\n

Comments URL: https://news.ycombinator.com/item?id=38027587

\n

Points: 174

\n

# Comments: 81

\n", + "contentSnippet": "Article URL: https://news.uchicago.edu/how-bioelectricity-could-regrow-limbs-and-organs\nComments URL: https://news.ycombinator.com/item?id=38027587\nPoints: 174\n# Comments: 81", + "guid": "https://news.ycombinator.com/item?id=38027587", + "isoDate": "2023-10-26T16:07:24.000Z" + }, + { + "creator": "keepamovin", + "title": "I2P: End-to-end encrypted and anonymous internet", + "link": "https://github.com/PurpleI2P/i2pd", + "pubDate": "Thu, 26 Oct 2023 15:18:24 +0000", + "dc:creator": "keepamovin", + "comments": "https://news.ycombinator.com/item?id=38026736", + "content": "\n

Article URL: https://github.com/PurpleI2P/i2pd

\n

Comments URL: https://news.ycombinator.com/item?id=38026736

\n

Points: 350

\n

# Comments: 100

\n", + "contentSnippet": "Article URL: https://github.com/PurpleI2P/i2pd\nComments URL: https://news.ycombinator.com/item?id=38026736\nPoints: 350\n# Comments: 100", + "guid": "https://news.ycombinator.com/item?id=38026736", + "isoDate": "2023-10-26T15:18:24.000Z" + }, + { + "creator": "BerislavLopac", + "title": "Cold war satellite images reveal unknown Roman forts", + "link": "https://www.theguardian.com/science/2023/oct/26/cold-war-satellite-images-hundreds-unknown-roman-forts", + "pubDate": "Thu, 26 Oct 2023 12:31:58 +0000", + "dc:creator": "BerislavLopac", + "comments": "https://news.ycombinator.com/item?id=38024665", + "content": "\n

Article URL: https://www.theguardian.com/science/2023/oct/26/cold-war-satellite-images-hundreds-unknown-roman-forts

\n

Comments URL: https://news.ycombinator.com/item?id=38024665

\n

Points: 284

\n

# Comments: 107

\n", + "contentSnippet": "Article URL: https://www.theguardian.com/science/2023/oct/26/cold-war-satellite-images-hundreds-unknown-roman-forts\nComments URL: https://news.ycombinator.com/item?id=38024665\nPoints: 284\n# Comments: 107", + "guid": "https://news.ycombinator.com/item?id=38024665", + "isoDate": "2023-10-26T12:31:58.000Z" + }, + { + "creator": "CathalMullan", + "title": "The Cloud Computer", + "link": "https://oxide.computer/blog/the-cloud-computer", + "pubDate": "Thu, 26 Oct 2023 10:43:59 +0000", + "dc:creator": "CathalMullan", + "comments": "https://news.ycombinator.com/item?id=38023891", + "content": "\n

Article URL: https://oxide.computer/blog/the-cloud-computer

\n

Comments URL: https://news.ycombinator.com/item?id=38023891

\n

Points: 1563

\n

# Comments: 856

\n", + "contentSnippet": "Article URL: https://oxide.computer/blog/the-cloud-computer\nComments URL: https://news.ycombinator.com/item?id=38023891\nPoints: 1563\n# Comments: 856", + "guid": "https://news.ycombinator.com/item?id=38023891", + "isoDate": "2023-10-26T10:43:59.000Z" + }, + { + "creator": "LAC-Tech", + "title": "Temporal Databases (1986) [pdf]", + "link": "https://www2.cs.arizona.edu/~rts/pubs/Computer.pdf", + "pubDate": "Thu, 26 Oct 2023 08:51:46 +0000", + "dc:creator": "LAC-Tech", + "comments": "https://news.ycombinator.com/item?id=38023283", + "content": "\n

Article URL: https://www2.cs.arizona.edu/~rts/pubs/Computer.pdf

\n

Comments URL: https://news.ycombinator.com/item?id=38023283

\n

Points: 59

\n

# Comments: 12

\n", + "contentSnippet": "Article URL: https://www2.cs.arizona.edu/~rts/pubs/Computer.pdf\nComments URL: https://news.ycombinator.com/item?id=38023283\nPoints: 59\n# Comments: 12", + "guid": "https://news.ycombinator.com/item?id=38023283", + "isoDate": "2023-10-26T08:51:46.000Z" + }, + { + "creator": "benbreen", + "title": "Monsters in the Middle Ages", + "link": "https://www.medievalists.net/2023/10/how-to-make-a-monster/", + "pubDate": "Tue, 24 Oct 2023 20:05:18 +0000", + "dc:creator": "benbreen", + "comments": "https://news.ycombinator.com/item?id=38004666", + "content": "\n

Article URL: https://www.medievalists.net/2023/10/how-to-make-a-monster/

\n

Comments URL: https://news.ycombinator.com/item?id=38004666

\n

Points: 47

\n

# Comments: 9

\n", + "contentSnippet": "Article URL: https://www.medievalists.net/2023/10/how-to-make-a-monster/\nComments URL: https://news.ycombinator.com/item?id=38004666\nPoints: 47\n# Comments: 9", + "guid": "https://news.ycombinator.com/item?id=38004666", + "isoDate": "2023-10-24T20:05:18.000Z" + }, + { + "creator": "Metacelsus", + "title": "EPA moves towards banning leaded aviation gas", + "link": "https://www.federalregister.gov/documents/2023/10/20/2023-23247/finding-that-lead-emissions-from-aircraft-engines-that-operate-on-leaded-fuel-cause-or-contribute-to", + "pubDate": "Fri, 27 Oct 2023 14:44:57 +0000", + "dc:creator": "Metacelsus", + "comments": "https://news.ycombinator.com/item?id=38039133", + "content": "\n

Article URL: https://www.federalregister.gov/documents/2023/10/20/2023-23247/finding-that-lead-emissions-from-aircraft-engines-that-operate-on-leaded-fuel-cause-or-contribute-to

\n

Comments URL: https://news.ycombinator.com/item?id=38039133

\n

Points: 137

\n

# Comments: 77

\n", + "contentSnippet": "Article URL: https://www.federalregister.gov/documents/2023/10/20/2023-23247/finding-that-lead-emissions-from-aircraft-engines-that-operate-on-leaded-fuel-cause-or-contribute-to\nComments URL: https://news.ycombinator.com/item?id=38039133\nPoints: 137\n# Comments: 77", + "guid": "https://news.ycombinator.com/item?id=38039133", + "isoDate": "2023-10-27T14:44:57.000Z" + }, + { + "creator": "breakingciphers", + "title": "Food and Generative AI", + "link": "https://engineering.hellofresh.com/recipes-and-generative-ai-6d74a107860c?gi=86e12b1a8c6d", + "pubDate": "Fri, 27 Oct 2023 14:14:46 +0000", + "dc:creator": "breakingciphers", + "comments": "https://news.ycombinator.com/item?id=38038706", + "content": "\n

Article URL: https://engineering.hellofresh.com/recipes-and-generative-ai-6d74a107860c?gi=86e12b1a8c6d

\n

Comments URL: https://news.ycombinator.com/item?id=38038706

\n

Points: 30

\n

# Comments: 26

\n", + "contentSnippet": "Article URL: https://engineering.hellofresh.com/recipes-and-generative-ai-6d74a107860c?gi=86e12b1a8c6d\nComments URL: https://news.ycombinator.com/item?id=38038706\nPoints: 30\n# Comments: 26", + "guid": "https://news.ycombinator.com/item?id=38038706", + "isoDate": "2023-10-27T14:14:46.000Z" + }, + { + "creator": "wahnfrieden", + "title": "US immigration enforcement used AI-powered tool to scan posts derogatory to US", + "link": "https://www.techspot.com/news/100642-ice-used-ai-powered-tool-scan-social-media.html", + "pubDate": "Fri, 27 Oct 2023 14:00:13 +0000", + "dc:creator": "wahnfrieden", + "comments": "https://news.ycombinator.com/item?id=38038512", + "content": "\n

Article URL: https://www.techspot.com/news/100642-ice-used-ai-powered-tool-scan-social-media.html

\n

Comments URL: https://news.ycombinator.com/item?id=38038512

\n

Points: 44

\n

# Comments: 28

\n", + "contentSnippet": "Article URL: https://www.techspot.com/news/100642-ice-used-ai-powered-tool-scan-social-media.html\nComments URL: https://news.ycombinator.com/item?id=38038512\nPoints: 44\n# Comments: 28", + "guid": "https://news.ycombinator.com/item?id=38038512", + "isoDate": "2023-10-27T14:00:13.000Z" + }, + { + "creator": "geox", + "title": "A third of chocolate products are high in heavy metals", + "link": "https://www.consumerreports.org/health/food-safety/a-third-of-chocolate-products-are-high-in-heavy-metals-a4844566398/", + "pubDate": "Fri, 27 Oct 2023 13:57:00 +0000", + "dc:creator": "geox", + "comments": "https://news.ycombinator.com/item?id=38038465", + "content": "\n

Article URL: https://www.consumerreports.org/health/food-safety/a-third-of-chocolate-products-are-high-in-heavy-metals-a4844566398/

\n

Comments URL: https://news.ycombinator.com/item?id=38038465

\n

Points: 88

\n

# Comments: 46

\n", + "contentSnippet": "Article URL: https://www.consumerreports.org/health/food-safety/a-third-of-chocolate-products-are-high-in-heavy-metals-a4844566398/\nComments URL: https://news.ycombinator.com/item?id=38038465\nPoints: 88\n# Comments: 46", + "guid": "https://news.ycombinator.com/item?id=38038465", + "isoDate": "2023-10-27T13:57:00.000Z" + }, + { + "creator": "thunderbong", + "title": "How Soap Works: The Science Behind Handwashing", + "link": "https://www.pfizer.com/news/articles/how_soap_works_the_science_behind_handwashing", + "pubDate": "Fri, 27 Oct 2023 13:28:35 +0000", + "dc:creator": "thunderbong", + "comments": "https://news.ycombinator.com/item?id=38038174", + "content": "\n

Article URL: https://www.pfizer.com/news/articles/how_soap_works_the_science_behind_handwashing

\n

Comments URL: https://news.ycombinator.com/item?id=38038174

\n

Points: 58

\n

# Comments: 38

\n", + "contentSnippet": "Article URL: https://www.pfizer.com/news/articles/how_soap_works_the_science_behind_handwashing\nComments URL: https://news.ycombinator.com/item?id=38038174\nPoints: 58\n# Comments: 38", + "guid": "https://news.ycombinator.com/item?id=38038174", + "isoDate": "2023-10-27T13:28:35.000Z" + }, + { + "creator": "czue", + "title": "The slow death of authenticity in an attention economy", + "link": "https://www.coryzue.com/writing/authenticity-and-engagement/", + "pubDate": "Fri, 27 Oct 2023 13:00:54 +0000", + "dc:creator": "czue", + "comments": "https://news.ycombinator.com/item?id=38037851", + "content": "\n

Article URL: https://www.coryzue.com/writing/authenticity-and-engagement/

\n

Comments URL: https://news.ycombinator.com/item?id=38037851

\n

Points: 261

\n

# Comments: 159

\n", + "contentSnippet": "Article URL: https://www.coryzue.com/writing/authenticity-and-engagement/\nComments URL: https://news.ycombinator.com/item?id=38037851\nPoints: 261\n# Comments: 159", + "guid": "https://news.ycombinator.com/item?id=38037851", + "isoDate": "2023-10-27T13:00:54.000Z" + }, + { + "creator": "ThibWeb", + "title": "Why Is the Django Admin \"Ugly\"?", + "link": "https://www.coderedcorp.com/blog/why-is-the-django-admin-ugly/", + "pubDate": "Fri, 27 Oct 2023 12:32:53 +0000", + "dc:creator": "ThibWeb", + "comments": "https://news.ycombinator.com/item?id=38037596", + "content": "\n

Article URL: https://www.coderedcorp.com/blog/why-is-the-django-admin-ugly/

\n

Comments URL: https://news.ycombinator.com/item?id=38037596

\n

Points: 89

\n

# Comments: 92

\n", + "contentSnippet": "Article URL: https://www.coderedcorp.com/blog/why-is-the-django-admin-ugly/\nComments URL: https://news.ycombinator.com/item?id=38037596\nPoints: 89\n# Comments: 92", + "guid": "https://news.ycombinator.com/item?id=38037596", + "isoDate": "2023-10-27T12:32:53.000Z" + }, + { + "creator": "wjSgoWPm5bWAhXB", + "title": "Study shows antibodies against PEG in 83% of the German population", + "link": "https://www.mpip-mainz.mpg.de/en/press/pr-2022-22", + "pubDate": "Fri, 27 Oct 2023 11:42:17 +0000", + "dc:creator": "wjSgoWPm5bWAhXB", + "comments": "https://news.ycombinator.com/item?id=38037245", + "content": "\n

Article URL: https://www.mpip-mainz.mpg.de/en/press/pr-2022-22

\n

Comments URL: https://news.ycombinator.com/item?id=38037245

\n

Points: 106

\n

# Comments: 83

\n", + "contentSnippet": "Article URL: https://www.mpip-mainz.mpg.de/en/press/pr-2022-22\nComments URL: https://news.ycombinator.com/item?id=38037245\nPoints: 106\n# Comments: 83", + "guid": "https://news.ycombinator.com/item?id=38037245", + "isoDate": "2023-10-27T11:42:17.000Z" + }, + { + "creator": "maheshrjl", + "title": "Lessons Learned from Twenty Years of Site Reliability Engineering", + "link": "https://sre.google/resources/practices-and-processes/twenty-years-of-sre-lessons-learned/", + "pubDate": "Fri, 27 Oct 2023 11:25:28 +0000", + "dc:creator": "maheshrjl", + "comments": "https://news.ycombinator.com/item?id=38037141", + "content": "\n

Article URL: https://sre.google/resources/practices-and-processes/twenty-years-of-sre-lessons-learned/

\n

Comments URL: https://news.ycombinator.com/item?id=38037141

\n

Points: 65

\n

# Comments: 2

\n", + "contentSnippet": "Article URL: https://sre.google/resources/practices-and-processes/twenty-years-of-sre-lessons-learned/\nComments URL: https://news.ycombinator.com/item?id=38037141\nPoints: 65\n# Comments: 2", + "guid": "https://news.ycombinator.com/item?id=38037141", + "isoDate": "2023-10-27T11:25:28.000Z" + }, + { + "creator": "luu", + "title": "Generating Well-Typed Terms that are not \"Useless\" [pdf]", + "link": "https://lemonidas.github.io/pdf/NotUseless.pdf", + "pubDate": "Fri, 27 Oct 2023 04:23:27 +0000", + "dc:creator": "luu", + "comments": "https://news.ycombinator.com/item?id=38034668", + "content": "\n

Article URL: https://lemonidas.github.io/pdf/NotUseless.pdf

\n

Comments URL: https://news.ycombinator.com/item?id=38034668

\n

Points: 30

\n

# Comments: 3

\n", + "contentSnippet": "Article URL: https://lemonidas.github.io/pdf/NotUseless.pdf\nComments URL: https://news.ycombinator.com/item?id=38034668\nPoints: 30\n# Comments: 3", + "guid": "https://news.ycombinator.com/item?id=38034668", + "isoDate": "2023-10-27T04:23:27.000Z" + } +] diff --git a/intro to react/newData/oldNews/bf301c05c44ba5af1458a199a620f90a25c9217a9d611a7927497c1fc9be7703.json b/intro to react/newData/oldNews/bf301c05c44ba5af1458a199a620f90a25c9217a9d611a7927497c1fc9be7703.json index 2c05ab6..f238d0d 100644 --- a/intro to react/newData/oldNews/bf301c05c44ba5af1458a199a620f90a25c9217a9d611a7927497c1fc9be7703.json +++ b/intro to react/newData/oldNews/bf301c05c44ba5af1458a199a620f90a25c9217a9d611a7927497c1fc9be7703.json @@ -1,1442 +1,1442 @@ [ - { - "title": "Inactive Google accounts to be deleted from Friday", - "link": "https://www.reddit.com/r/technews/comments/187rrgg/inactive_google_accounts_to_be_deleted_from_friday/", - "pubDate": "2023-11-30T20:08:01.000Z", - "author": "/u/Typical-Plantain256", - "content": "
\"Inactive submitted by /u/Typical-Plantain256
[link] [comments]
", - "contentSnippet": "submitted by /u/Typical-Plantain256 \n [link] [comments]", - "id": "t3_187rrgg", - "isoDate": "2023-11-30T20:08:01.000Z" - }, - { - "title": "Google Drive users left in shock after months of files go missing \u2014 what you need to know", - "link": "https://www.reddit.com/r/technews/comments/187qv1u/google_drive_users_left_in_shock_after_months_of/", - "pubDate": "2023-11-30T19:30:26.000Z", - "author": "/u/wewewawa", - "content": "
\"Google submitted by /u/wewewawa
[link] [comments]
", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_187qv1u", - "isoDate": "2023-11-30T19:30:26.000Z" - }, - { - "title": "How to remove your personal data from Google", - "link": "https://www.reddit.com/r/technews/comments/187qr9t/how_to_remove_your_personal_data_from_google/", - "pubDate": "2023-11-30T19:26:04.000Z", - "author": "/u/wewewawa", - "content": "
\"How submitted by /u/wewewawa
[link] [comments]
", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_187qr9t", - "isoDate": "2023-11-30T19:26:04.000Z" - }, - { - "title": "Admin of $19M marketplace that sold social security numbers gets 8 years in jail", - "link": "https://www.reddit.com/r/technews/comments/187qkgr/admin_of_19m_marketplace_that_sold_social/", - "pubDate": "2023-11-30T19:17:58.000Z", - "author": "/u/Franco1875", - "content": "
\"Admin submitted by /u/Franco1875
[link] [comments]
", - "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", - "id": "t3_187qkgr", - "isoDate": "2023-11-30T19:17:58.000Z" - }, - { - "title": "Google Messages marks 1 billion RCS users with Photomoji, Custom Bubble colors, more", - "link": "https://www.reddit.com/r/technews/comments/187qk8r/google_messages_marks_1_billion_rcs_users_with/", - "pubDate": "2023-11-30T19:17:42.000Z", - "author": "/u/N2929", - "content": "
\"Google submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_187qk8r", - "isoDate": "2023-11-30T19:17:42.000Z" - }, - { - "title": "10-Year-Old Starts Petition for Apple to Change 'Insulting' Nerd Emoji", - "link": "https://www.reddit.com/r/technews/comments/187oo8n/10yearold_starts_petition_for_apple_to_change/", - "pubDate": "2023-11-30T17:57:17.000Z", - "author": "/u/777fer", - "content": "
\"10-Year-Old submitted by /u/777fer
[link] [comments]
", - "contentSnippet": "submitted by /u/777fer \n [link] [comments]", - "id": "t3_187oo8n", - "isoDate": "2023-11-30T17:57:17.000Z" - }, - { - "title": "Nvidia boss says achieving US chip independence could take up to 20 years | Two decades is longer than predicted", - "link": "https://www.reddit.com/r/technews/comments/187gwor/nvidia_boss_says_achieving_us_chip_independence/", - "pubDate": "2023-11-30T12:00:29.000Z", - "author": "/u/chrisdh79", - "content": "
\"Nvidia submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_187gwor", - "isoDate": "2023-11-30T12:00:29.000Z" - }, - { - "title": "Dollar Tree hit by third-party data breach impacting 2 million people", - "link": "https://www.reddit.com/r/technews/comments/187gnd0/dollar_tree_hit_by_thirdparty_data_breach/", - "pubDate": "2023-11-30T11:43:48.000Z", - "author": "/u/chrisdh79", - "content": "
\"Dollar submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_187gnd0", - "isoDate": "2023-11-30T11:43:48.000Z" - }, - { - "title": "A 'silly' attack made ChatGPT reveal real phone numbers and email addresses", - "link": "https://www.reddit.com/r/technews/comments/187fxll/a_silly_attack_made_chatgpt_reveal_real_phone/", - "pubDate": "2023-11-30T10:58:48.000Z", - "author": "/u/thebelsnickle1991", - "content": "
\"A submitted by /u/thebelsnickle1991
[link] [comments]
", - "contentSnippet": "submitted by /u/thebelsnickle1991 \n [link] [comments]", - "id": "t3_187fxll", - "isoDate": "2023-11-30T10:58:48.000Z" - }, - { - "title": "Sam Altman returns as CEO, OpenAI has a new initial board", - "link": "https://www.reddit.com/r/technews/comments/187c2mo/sam_altman_returns_as_ceo_openai_has_a_new/", - "pubDate": "2023-11-30T06:36:46.000Z", - "author": "/u/donutloop", - "content": "
\"Sam submitted by /u/donutloop
[link] [comments]
", - "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", - "id": "t3_187c2mo", - "isoDate": "2023-11-30T06:36:46.000Z" - }, - { - "title": "Bad Bots Account for 73% of Internet Traffic: Analysis", - "link": "https://www.reddit.com/r/technews/comments/187aqkw/bad_bots_account_for_73_of_internet_traffic/", - "pubDate": "2023-11-30T05:21:42.000Z", - "author": "/u/MicroSofty88", - "content": "
\"Bad submitted by /u/MicroSofty88
[link] [comments]
", - "contentSnippet": "submitted by /u/MicroSofty88 \n [link] [comments]", - "id": "t3_187aqkw", - "isoDate": "2023-11-30T05:21:42.000Z" - }, - { - "title": "Google DeepMind AI reveals potential for thousands of new materials", - "link": "https://www.reddit.com/r/technews/comments/1879fi0/google_deepmind_ai_reveals_potential_for/", - "pubDate": "2023-11-30T04:10:53.000Z", - "author": "/u/reuters", - "content": "
\"Google submitted by /u/reuters
[link] [comments]
", - "contentSnippet": "submitted by /u/reuters \n [link] [comments]", - "id": "t3_1879fi0", - "isoDate": "2023-11-30T04:10:53.000Z" - }, - { - "title": "2 municipal water facilities report falling to hackers in separate breaches", - "link": "https://www.reddit.com/r/technews/comments/1875fl4/2_municipal_water_facilities_report_falling_to/", - "pubDate": "2023-11-30T00:59:55.000Z", - "author": "/u/GeoWa", - "content": "
\"2 submitted by /u/GeoWa
[link] [comments]
", - "contentSnippet": "submitted by /u/GeoWa \n [link] [comments]", - "id": "t3_1875fl4", - "isoDate": "2023-11-30T00:59:55.000Z" - }, - { - "title": "Fidelity National Financial Cyberattack Spotlights a Surge in Threat Activity", - "link": "https://www.reddit.com/r/technews/comments/187y24a/fidelity_national_financial_cyberattack/", - "pubDate": "2023-12-01T00:33:11.000Z", - "author": "/u/feross", - "content": "
\"Fidelity submitted by /u/feross
[link] [comments]
", - "contentSnippet": "submitted by /u/feross \n [link] [comments]", - "id": "t3_187y24a", - "isoDate": "2023-12-01T00:33:11.000Z" - }, - { - "title": "Google researchers report critical zero-days in Chrome and all Apple OSes", - "link": "https://www.reddit.com/r/technews/comments/187z522/google_researchers_report_critical_zerodays_in/", - "pubDate": "2023-12-01T01:21:56.000Z", - "author": "/u/chrisdh79", - "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_187z522", - "isoDate": "2023-12-01T01:21:56.000Z" - }, - { - "title": "Detroit's newest road can charge electric cars as they travel on it", - "link": "https://www.reddit.com/r/technews/comments/187yufe/detroits_newest_road_can_charge_electric_cars_as/", - "pubDate": "2023-12-01T01:08:23.000Z", - "author": "/u/911_reddit", - "content": "
\"Detroit's submitted by /u/911_reddit
[link] [comments]
", - "contentSnippet": "submitted by /u/911_reddit \n [link] [comments]", - "id": "t3_187yufe", - "isoDate": "2023-12-01T01:08:23.000Z" - }, - { - "title": "White House threatens to veto anti-EV bill just passed by US House | The bill would prevent the EPA from enforcing tougher new pollution standards.", - "link": "https://www.reddit.com/r/technews/comments/18d4jpp/white_house_threatens_to_veto_antiev_bill_just/", - "pubDate": "2023-12-07T20:20:34.000Z", - "author": "/u/chrisdh79", - "content": "
\"White submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18d4jpp", - "isoDate": "2023-12-07T20:20:34.000Z" - }, - { - "title": "Amazon will no longer accept Venmo as a payment option starting next month | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/18d3zg6/amazon_will_no_longer_accept_venmo_as_a_payment/", - "pubDate": "2023-12-07T19:55:57.000Z", - "author": "/u/N2929", - "content": "
\"Amazon submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_18d3zg6", - "isoDate": "2023-12-07T19:55:57.000Z" - }, - { - "title": "iOS 17.2 release notes: Every new feature and change - 9to5Mac", - "link": "https://www.reddit.com/r/technews/comments/18d3ws4/ios_172_release_notes_every_new_feature_and/", - "pubDate": "2023-12-07T19:52:40.000Z", - "author": "/u/N2929", - "content": "
\"iOS submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_18d3ws4", - "isoDate": "2023-12-07T19:52:40.000Z" - }, - { - "title": "Apple Promotes iCloud's Advanced End-to-End Encryption Feature as Data Breaches Increase", - "link": "https://www.reddit.com/r/technews/comments/18d09kd/apple_promotes_iclouds_advanced_endtoend/", - "pubDate": "2023-12-07T17:09:21.000Z", - "author": "/u/chrisdh79", - "content": "
\"Apple submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18d09kd", - "isoDate": "2023-12-07T17:09:21.000Z" - }, - { - "title": "Meta and Microsoft say they will buy AMD\u2019s new AI chip as an alternative to Nvidia\u2019s", - "link": "https://www.reddit.com/r/technews/comments/18cz1di/meta_and_microsoft_say_they_will_buy_amds_new_ai/", - "pubDate": "2023-12-07T16:13:39.000Z", - "author": "/u/BasculinSushi", - "content": "
\"Meta submitted by /u/BasculinSushi
[link] [comments]
", - "contentSnippet": "submitted by /u/BasculinSushi \n [link] [comments]", - "id": "t3_18cz1di", - "isoDate": "2023-12-07T16:13:39.000Z" - }, - { - "title": "Yet another UK public sector data blab, this time info of pregnant women, cancer patients", - "link": "https://www.reddit.com/r/technews/comments/18cxzpe/yet_another_uk_public_sector_data_blab_this_time/", - "pubDate": "2023-12-07T15:26:01.000Z", - "author": "/u/Franco1875", - "content": "
\"Yet submitted by /u/Franco1875
[link] [comments]
", - "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", - "id": "t3_18cxzpe", - "isoDate": "2023-12-07T15:26:01.000Z" - }, - { - "title": "South Fork Wind energizes 70,000 New York homes with clean energy | South Fork Wind's green promise equals removing 60,000 cars from roads annually.", - "link": "https://www.reddit.com/r/technews/comments/18cxmxc/south_fork_wind_energizes_70000_new_york_homes/", - "pubDate": "2023-12-07T15:09:43.000Z", - "author": "/u/chrisdh79", - "content": "
\"South submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18cxmxc", - "isoDate": "2023-12-07T15:09:43.000Z" - }, - { - "title": "Quantum computer performs error-resistant operations with logical qubits", - "link": "https://www.reddit.com/r/technews/comments/18cw4fe/quantum_computer_performs_errorresistant/", - "pubDate": "2023-12-07T13:56:38.000Z", - "author": "/u/Sariel007", - "content": "
\"Quantum submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_18cw4fe", - "isoDate": "2023-12-07T13:56:38.000Z" - }, - { - "title": "Meta\u2019s new AI image generator was trained on 1.1 billion Instagram and Facebook photos", - "link": "https://www.reddit.com/r/technews/comments/18cw3f1/metas_new_ai_image_generator_was_trained_on_11/", - "pubDate": "2023-12-07T13:55:08.000Z", - "author": "/u/Sariel007", - "content": "
\"Meta\u2019s submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_18cw3f1", - "isoDate": "2023-12-07T13:55:08.000Z" - }, - { - "title": "New LogoFAIL exploit leaves Windows and Linux users vulnerable to remote attacks | LogoFAIL enables remote attacks by exploiting unpatched browsers, media players, and other apps", - "link": "https://www.reddit.com/r/technews/comments/18cvvrl/new_logofail_exploit_leaves_windows_and_linux/", - "pubDate": "2023-12-07T13:44:05.000Z", - "author": "/u/chrisdh79", - "content": "
\"New submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18cvvrl", - "isoDate": "2023-12-07T13:44:05.000Z" - }, - { - "title": "Ukrainian cellular and Internet still out, 1 day after suspected Russian cyberattack", - "link": "https://www.reddit.com/r/technews/comments/18iadud/ukrainian_cellular_and_internet_still_out_1_day/", - "pubDate": "2023-12-14T14:55:07.000Z", - "author": "/u/Sariel007", - "content": "
\"Ukrainian submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_18iadud", - "isoDate": "2023-12-14T14:55:07.000Z" - }, - { - "title": "Google will turn off third-party tracking for some Chrome users soon | Google\u2019s plan to implement a new Tracking Protection feature in Chrome begins in January with the intention to completely disable third-party cookies in the second half of 2024.", - "link": "https://www.reddit.com/r/technews/comments/18i9t55/google_will_turn_off_thirdparty_tracking_for_some/", - "pubDate": "2023-12-14T14:28:02.000Z", - "author": "/u/chrisdh79", - "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18i9t55", - "isoDate": "2023-12-14T14:28:02.000Z" - }, - { - "title": "I\u2019ve used a foldable laptop for a month, and I\u2019m ready to return to a clamshell", - "link": "https://www.reddit.com/r/technews/comments/18i8y8c/ive_used_a_foldable_laptop_for_a_month_and_im/", - "pubDate": "2023-12-14T13:46:01.000Z", - "author": "/u/feross", - "content": "
\"I\u2019ve submitted by /u/feross
[link] [comments]
", - "contentSnippet": "submitted by /u/feross \n [link] [comments]", - "id": "t3_18i8y8c", - "isoDate": "2023-12-14T13:46:01.000Z" - }, - { - "title": "Trains were designed to break down after third-party repairs, hackers find", - "link": "https://www.reddit.com/r/technews/comments/18i0t7d/trains_were_designed_to_break_down_after/", - "pubDate": "2023-12-14T04:52:38.000Z", - "author": "/u/MicroSofty88", - "content": "
\"Trains submitted by /u/MicroSofty88
[link] [comments]
", - "contentSnippet": "submitted by /u/MicroSofty88 \n [link] [comments]", - "id": "t3_18i0t7d", - "isoDate": "2023-12-14T04:52:38.000Z" - }, - { - "title": "Parent and consumer groups warn against 'naughty tech toys'", - "link": "https://www.reddit.com/r/technews/comments/18hut4w/parent_and_consumer_groups_warn_against_naughty/", - "pubDate": "2023-12-13T23:43:46.000Z", - "author": "/u/wewewawa", - "content": "
\"Parent submitted by /u/wewewawa
[link] [comments]
", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_18hut4w", - "isoDate": "2023-12-13T23:43:46.000Z" - }, - { - "title": "Early prototypes show that the iPhone 16 might not fall too far from the iPhone 15 tree", - "link": "https://www.reddit.com/r/technews/comments/18hth14/early_prototypes_show_that_the_iphone_16_might/", - "pubDate": "2023-12-13T22:44:31.000Z", - "author": "/u/GeoWa", - "content": "
\"Early submitted by /u/GeoWa
[link] [comments]
", - "contentSnippet": "submitted by /u/GeoWa \n [link] [comments]", - "id": "t3_18hth14", - "isoDate": "2023-12-13T22:44:31.000Z" - }, - { - "title": "Threads is officially starting to test ActivityPub integration", - "link": "https://www.reddit.com/r/technews/comments/18hqegd/threads_is_officially_starting_to_test/", - "pubDate": "2023-12-13T20:32:05.000Z", - "author": "/u/FitikWasTaken", - "content": "
\"Threads submitted by /u/FitikWasTaken
[link] [comments]
", - "contentSnippet": "submitted by /u/FitikWasTaken \n [link] [comments]", - "id": "t3_18hqegd", - "isoDate": "2023-12-13T20:32:05.000Z" - }, - { - "title": "Suspects can refuse to provide phone passcodes to police, court rules", - "link": "https://www.reddit.com/r/technews/comments/18iyhpq/suspects_can_refuse_to_provide_phone_passcodes_to/", - "pubDate": "2023-12-15T11:58:49.000Z", - "author": "/u/chrisdh79", - "content": "
\"Suspects submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18iyhpq", - "isoDate": "2023-12-15T11:58:49.000Z" - }, - { - "title": "TikTok faces watchdog probe after supplying inaccurate information", - "link": "https://www.reddit.com/r/technews/comments/18ix9l1/tiktok_faces_watchdog_probe_after_supplying/", - "pubDate": "2023-12-15T10:38:10.000Z", - "author": "/u/Franco1875", - "content": "
\"TikTok submitted by /u/Franco1875
[link] [comments]
", - "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", - "id": "t3_18ix9l1", - "isoDate": "2023-12-15T10:38:10.000Z" - }, - { - "title": "FBI gets at least four more months of Section 702 snooping", - "link": "https://www.reddit.com/r/technews/comments/18inp0q/fbi_gets_at_least_four_more_months_of_section_702/", - "pubDate": "2023-12-15T00:53:57.000Z", - "author": "/u/chrisdh79", - "content": "
\"FBI submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18inp0q", - "isoDate": "2023-12-15T00:53:57.000Z" - }, - { - "title": "SpaceX\u2019s Starlink Clears Military Tests, Paving Way for Contracts", - "link": "https://www.reddit.com/r/technews/comments/18imxmv/spacexs_starlink_clears_military_tests_paving_way/", - "pubDate": "2023-12-15T00:16:39.000Z", - "author": "/u/Hiversitize", - "content": " submitted by /u/Hiversitize
[link] [comments]", - "contentSnippet": "submitted by /u/Hiversitize \n [link] [comments]", - "id": "t3_18imxmv", - "isoDate": "2023-12-15T00:16:39.000Z" - }, - { - "title": "Why 2023 was the year of the e-bike and not the self-driving car", - "link": "https://www.reddit.com/r/technews/comments/18ilp1i/why_2023_was_the_year_of_the_ebike_and_not_the/", - "pubDate": "2023-12-14T23:18:36.000Z", - "author": "/u/Zen1", - "content": " submitted by /u/Zen1
[link] [comments]", - "contentSnippet": "submitted by /u/Zen1 \n [link] [comments]", - "id": "t3_18ilp1i", - "isoDate": "2023-12-14T23:18:36.000Z" - }, - { - "title": "US and China race to shield secrets from quantum computers", - "link": "https://www.reddit.com/r/technews/comments/18ij964/us_and_china_race_to_shield_secrets_from_quantum/", - "pubDate": "2023-12-14T21:31:26.000Z", - "author": "/u/reuters", - "content": " submitted by /u/reuters
[link] [comments]", - "contentSnippet": "submitted by /u/reuters \n [link] [comments]", - "id": "t3_18ij964", - "isoDate": "2023-12-14T21:31:26.000Z" - }, - { - "title": "AMD says overclocking blows a hidden fuse on Ryzen Threadripper 7000 to show if you've overclocked the chip, but it doesn't automatically void your CPU's warranty", - "link": "https://www.reddit.com/r/technews/comments/18ieohc/amd_says_overclocking_blows_a_hidden_fuse_on/", - "pubDate": "2023-12-14T18:07:30.000Z", - "author": "/u/CrankyBear", - "content": "
submitted by /u/CrankyBear
[link] [comments]
", - "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", - "id": "t3_18ieohc", - "isoDate": "2023-12-14T18:07:30.000Z" - }, - { - "title": "YouTube will have fewer ad breaks on TV \u2014 but the ads are getting longer | You\u2019re going to start seeing ads in between Shorts on TV, too.", - "link": "https://www.reddit.com/r/technews/comments/18ibzcf/youtube_will_have_fewer_ad_breaks_on_tv_but_the/", - "pubDate": "2023-12-14T16:08:49.000Z", - "author": "/u/chrisdh79", - "content": "
\"YouTube submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ibzcf", - "isoDate": "2023-12-14T16:08:49.000Z" - }, - { - "title": "Amazon's internet satellites will communicate using lasers in space | Thousands of satellites working as an optical mesh network in Earth's orbit", - "link": "https://www.reddit.com/r/technews/comments/18j26iv/amazons_internet_satellites_will_communicate/", - "pubDate": "2023-12-15T15:07:28.000Z", - "author": "/u/chrisdh79", - "content": "
\"Amazon's submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18j26iv", - "isoDate": "2023-12-15T15:07:28.000Z" - }, - { - "title": "These AI-generated news anchors are freaking me out", - "link": "https://www.reddit.com/r/technews/comments/18j4qt6/these_aigenerated_news_anchors_are_freaking_me_out/", - "pubDate": "2023-12-15T17:01:38.000Z", - "author": "/u/feross", - "content": "
\"These submitted by /u/feross
[link] [comments]
", - "contentSnippet": "submitted by /u/feross \n [link] [comments]", - "id": "t3_18j4qt6", - "isoDate": "2023-12-15T17:01:38.000Z" - }, - { - "title": "Why Is TikTok Parent ByteDance Moving Into Biology, Chemistry And Drug Discovery?", - "link": "https://www.reddit.com/r/technews/comments/18y1s86/why_is_tiktok_parent_bytedance_moving_into/", - "pubDate": "2024-01-04T02:29:41.000Z", - "author": "/u/777fer", - "content": "
\"Why submitted by /u/777fer
[link] [comments]
", - "contentSnippet": "submitted by /u/777fer \n [link] [comments]", - "id": "t3_18y1s86", - "isoDate": "2024-01-04T02:29:41.000Z" - }, - { - "title": "Toshiba NAND fab shuts down for checks amid rising SSD pricing \u2013 Japan\u2019s earthquake affects PC component manufacturing", - "link": "https://www.reddit.com/r/technews/comments/18y0dbn/toshiba_nand_fab_shuts_down_for_checks_amid/", - "pubDate": "2024-01-04T01:25:37.000Z", - "author": "/u/chrisdh79", - "content": "
\"Toshiba submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18y0dbn", - "isoDate": "2024-01-04T01:25:37.000Z" - }, - { - "title": "Apple agrees to settle lawsuit over iTunes gift card scam", - "link": "https://www.reddit.com/r/technews/comments/18xxmx4/apple_agrees_to_settle_lawsuit_over_itunes_gift/", - "pubDate": "2024-01-03T23:29:23.000Z", - "author": "/u/wewewawa", - "content": " submitted by /u/wewewawa
[link] [comments]", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_18xxmx4", - "isoDate": "2024-01-03T23:29:23.000Z" - }, - { - "title": "SpaceX launches first set of satellites with direct-to-cell capabilities", - "link": "https://www.reddit.com/r/technews/comments/18xxaw5/spacex_launches_first_set_of_satellites_with/", - "pubDate": "2024-01-03T23:15:34.000Z", - "author": "/u/wewewawa", - "content": " submitted by /u/wewewawa
[link] [comments]", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_18xxaw5", - "isoDate": "2024-01-03T23:15:34.000Z" - }, - { - "title": "23andMe tells victims it's their fault that their data was breached", - "link": "https://www.reddit.com/r/technews/comments/18xs4lv/23andme_tells_victims_its_their_fault_that_their/", - "pubDate": "2024-01-03T19:46:32.000Z", - "author": "/u/Typical-Plantain256", - "content": "
\"23andMe submitted by /u/Typical-Plantain256
[link] [comments]
", - "contentSnippet": "submitted by /u/Typical-Plantain256 \n [link] [comments]", - "id": "t3_18xs4lv", - "isoDate": "2024-01-03T19:46:32.000Z" - }, - { - "title": "Windows 10 holds strong: nearly 7 out of 10 desktops still powered by the older OS | Windows 11 just can't seem to catch up", - "link": "https://www.reddit.com/r/technews/comments/18xo4pm/windows_10_holds_strong_nearly_7_out_of_10/", - "pubDate": "2024-01-03T17:05:59.000Z", - "author": "/u/chrisdh79", - "content": "
\"Windows submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18xo4pm", - "isoDate": "2024-01-03T17:05:59.000Z" - }, - { - "title": "Vizio settles for $3M after saying 60 Hz TVs had 120 Hz \u201ceffective refresh rate\u201d | Vizio claimed backlight scanning made refresh rates seem twice as high.", - "link": "https://www.reddit.com/r/technews/comments/18xk01e/vizio_settles_for_3m_after_saying_60_hz_tvs_had/", - "pubDate": "2024-01-03T13:57:46.000Z", - "author": "/u/chrisdh79", - "content": "
\"Vizio submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18xk01e", - "isoDate": "2024-01-03T13:57:46.000Z" - }, - { - "title": "34 years later, a 13-year-old hits the NES Tetris \u201ckill screen\u201d | BlueScuti forces the game to crash after 40 minutes and 1,511 lines.", - "link": "https://www.reddit.com/r/technews/comments/18xhg9s/34_years_later_a_13yearold_hits_the_nes_tetris/", - "pubDate": "2024-01-03T11:40:35.000Z", - "author": "/u/chrisdh79", - "content": "
\"34 submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18xhg9s", - "isoDate": "2024-01-03T11:40:35.000Z" - }, - { - "title": "Pornhub blocks Montana and North Carolina as their age verification laws take effect | The website says the states' ID requirement would put users' privacy at risk", - "link": "https://www.reddit.com/r/technews/comments/18xhf6i/pornhub_blocks_montana_and_north_carolina_as/", - "pubDate": "2024-01-03T11:38:42.000Z", - "author": "/u/chrisdh79", - "content": "
\"Pornhub submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18xhf6i", - "isoDate": "2024-01-03T11:38:42.000Z" - }, - { - "title": "Samsung said to be planning human-free, fully automated fabs within six years", - "link": "https://www.reddit.com/r/technews/comments/18ybxit/samsung_said_to_be_planning_humanfree_fully/", - "pubDate": "2024-01-04T12:23:41.000Z", - "author": "/u/chrisdh79", - "content": "
\"Samsung submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ybxit", - "isoDate": "2024-01-04T12:23:41.000Z" - }, - { - "title": "Microsoft is adding a new key to PC keyboards for the first time since 1994 | Copilot key will eventually be required in new PC keyboards, though not yet.", - "link": "https://www.reddit.com/r/technews/comments/18yblso/microsoft_is_adding_a_new_key_to_pc_keyboards_for/", - "pubDate": "2024-01-04T12:05:32.000Z", - "author": "/u/chrisdh79", - "content": "
\"Microsoft submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18yblso", - "isoDate": "2024-01-04T12:05:32.000Z" - }, - { - "title": "U.S. delays re-imposing tariffs on Chinese goods, keeping graphics card prices stable for now | The deadline has been extended by five months", - "link": "https://www.reddit.com/r/technews/comments/18ye10v/us_delays_reimposing_tariffs_on_chinese_goods/", - "pubDate": "2024-01-04T14:09:00.000Z", - "author": "/u/chrisdh79", - "content": "
\"U.S. submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ye10v", - "isoDate": "2024-01-04T14:09:00.000Z" - }, - { - "title": "Millions still haven\u2019t patched Terrapin SSH protocol vulnerability", - "link": "https://www.reddit.com/r/technews/comments/18ydwyu/millions_still_havent_patched_terrapin_ssh/", - "pubDate": "2024-01-04T14:03:53.000Z", - "author": "/u/Sariel007", - "content": "
\"Millions submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_18ydwyu", - "isoDate": "2024-01-04T14:03:53.000Z" - }, - { - "title": "Starbucks accused of using dark patterns in its app to retain nearly $900 million | Akin to an \"involuntary subscription\"", - "link": "https://www.reddit.com/r/technews/comments/18z4xjw/starbucks_accused_of_using_dark_patterns_in_its/", - "pubDate": "2024-01-05T11:39:38.000Z", - "author": "/u/chrisdh79", - "content": "
\"Starbucks submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18z4xjw", - "isoDate": "2024-01-05T11:39:38.000Z" - }, - { - "title": "OpenAI boss Sam Altman says Muslims in tech world fear retaliation in speaking up", - "link": "https://www.reddit.com/r/technews/comments/18z3kqf/openai_boss_sam_altman_says_muslims_in_tech_world/", - "pubDate": "2024-01-05T10:12:16.000Z", - "author": "/u/reuters", - "content": " submitted by /u/reuters
[link] [comments]", - "contentSnippet": "submitted by /u/reuters \n [link] [comments]", - "id": "t3_18z3kqf", - "isoDate": "2024-01-05T10:12:16.000Z" - }, - { - "title": "macOS Info-Stealer Malware 'MetaStealer' Targeting Businesses", - "link": "https://www.reddit.com/r/technews/comments/18z23fj/macos_infostealer_malware_metastealer_targeting/", - "pubDate": "2024-01-05T08:32:00.000Z", - "author": "/u/wewewawa", - "content": "
\"macOS submitted by /u/wewewawa
[link] [comments]
", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_18z23fj", - "isoDate": "2024-01-05T08:32:00.000Z" - }, - { - "title": "US plans $162 million award to Microchip Technology to boost production", - "link": "https://www.reddit.com/r/technews/comments/18yxs2f/us_plans_162_million_award_to_microchip/", - "pubDate": "2024-01-05T04:19:43.000Z", - "author": "/u/reuters", - "content": " submitted by /u/reuters
[link] [comments]", - "contentSnippet": "submitted by /u/reuters \n [link] [comments]", - "id": "t3_18yxs2f", - "isoDate": "2024-01-05T04:19:43.000Z" - }, - { - "title": "Google broke labor laws when it refused to bargain with YouTube Music contract workers", - "link": "https://www.reddit.com/r/technews/comments/18yvd2j/google_broke_labor_laws_when_it_refused_to/", - "pubDate": "2024-01-05T02:21:13.000Z", - "author": "/u/chrisdh79", - "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18yvd2j", - "isoDate": "2024-01-05T02:21:13.000Z" - }, - { - "title": "Qualcomm next-gen XR chip promises up to 4.3K resolution per eye | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/18ys38a/qualcomm_nextgen_xr_chip_promises_up_to_43k/", - "pubDate": "2024-01-04T23:55:00.000Z", - "author": "/u/N2929", - "content": "
\"Qualcomm submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_18ys38a", - "isoDate": "2024-01-04T23:55:00.000Z" - }, - { - "title": "This startup is bringing a 'voice frequency absorber' to CES 2024 | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/18yr28x/this_startup_is_bringing_a_voice_frequency/", - "pubDate": "2024-01-04T23:11:35.000Z", - "author": "/u/N2929", - "content": "
\"This submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_18yr28x", - "isoDate": "2024-01-04T23:11:35.000Z" - }, - { - "title": "For just $139, this startup turns your iPhone into a BlackBerry-era relic | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/18yqyp2/for_just_139_this_startup_turns_your_iphone_into/", - "pubDate": "2024-01-04T23:07:26.000Z", - "author": "/u/N2929", - "content": "
\"For submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_18yqyp2", - "isoDate": "2024-01-04T23:07:26.000Z" - }, - { - "title": "23andMe told victims of data breach that suing is futile, letter shows", - "link": "https://www.reddit.com/r/technews/comments/18ymg4p/23andme_told_victims_of_data_breach_that_suing_is/", - "pubDate": "2024-01-04T20:04:04.000Z", - "author": "/u/chrisdh79", - "content": "
\"23andMe submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_18ymg4p", - "isoDate": "2024-01-04T20:04:04.000Z" - }, - { - "title": "Discord is laying off 17 percent of employees", - "link": "https://www.reddit.com/r/technews/comments/1949kpk/discord_is_laying_off_17_percent_of_employees/", - "pubDate": "2024-01-11T19:05:23.000Z", - "author": "/u/hangoverpho", - "content": "
\"Discord submitted by /u/hangoverpho
[link] [comments]
", - "contentSnippet": "submitted by /u/hangoverpho \n [link] [comments]", - "id": "t3_1949kpk", - "isoDate": "2024-01-11T19:05:23.000Z" - }, - { - "title": "Google challenges cloud rivals by making it free for customers to transfer data when they leave", - "link": "https://www.reddit.com/r/technews/comments/19474i4/google_challenges_cloud_rivals_by_making_it_free/", - "pubDate": "2024-01-11T17:26:31.000Z", - "author": "/u/thebelsnickle1991", - "content": "
\"Google submitted by /u/thebelsnickle1991
[link] [comments]
", - "contentSnippet": "submitted by /u/thebelsnickle1991 \n [link] [comments]", - "id": "t3_19474i4", - "isoDate": "2024-01-11T17:26:31.000Z" - }, - { - "title": "White House unveils $623m in funding to boost electric vehicle charging points", - "link": "https://www.reddit.com/r/technews/comments/1941hrh/white_house_unveils_623m_in_funding_to_boost/", - "pubDate": "2024-01-11T13:17:34.000Z", - "author": "/u/zsreport", - "content": "
\"White submitted by /u/zsreport
[link] [comments]
", - "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", - "id": "t3_1941hrh", - "isoDate": "2024-01-11T13:17:34.000Z" - }, - { - "title": "A Chinese professor used AI to write a science fiction novel. Then it was a winner in a national competition", - "link": "https://www.reddit.com/r/technews/comments/1940t1e/a_chinese_professor_used_ai_to_write_a_science/", - "pubDate": "2024-01-11T12:41:05.000Z", - "author": "/u/Maxie445", - "content": "
\"A submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_1940t1e", - "isoDate": "2024-01-11T12:41:05.000Z" - }, - { - "title": "A Volkswagen with ChatGPT told me a story about dinosaurs at CES 2024", - "link": "https://www.reddit.com/r/technews/comments/193yq7o/a_volkswagen_with_chatgpt_told_me_a_story_about/", - "pubDate": "2024-01-11T10:37:09.000Z", - "author": "/u/its_Safiullah", - "content": "
\"A submitted by /u/its_Safiullah
[link] [comments]
", - "contentSnippet": "submitted by /u/its_Safiullah \n [link] [comments]", - "id": "t3_193yq7o", - "isoDate": "2024-01-11T10:37:09.000Z" - }, - { - "title": "CES 2024 Day 3: 11 Awesome Gadgets You Need To See!", - "link": "https://www.reddit.com/r/technews/comments/193yp9g/ces_2024_day_3_11_awesome_gadgets_you_need_to_see/", - "pubDate": "2024-01-11T10:35:17.000Z", - "author": "/u/its_Safiullah", - "content": "
\"CES submitted by /u/its_Safiullah
[link] [comments]
", - "contentSnippet": "submitted by /u/its_Safiullah \n [link] [comments]", - "id": "t3_193yp9g", - "isoDate": "2024-01-11T10:35:17.000Z" - }, - { - "title": "OpenAI debuts ChatGPT subscription aimed at small teams", - "link": "https://www.reddit.com/r/technews/comments/193mw5y/openai_debuts_chatgpt_subscription_aimed_at_small/", - "pubDate": "2024-01-10T23:39:44.000Z", - "author": "/u/N2929", - "content": "
\"OpenAI submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_193mw5y", - "isoDate": "2024-01-10T23:39:44.000Z" - }, - { - "title": "Accesibility startup Augmental is working on head tracking and 'silent speech'", - "link": "https://www.reddit.com/r/technews/comments/193mv4u/accesibility_startup_augmental_is_working_on_head/", - "pubDate": "2024-01-10T23:38:29.000Z", - "author": "/u/N2929", - "content": "
\"Accesibility submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_193mv4u", - "isoDate": "2024-01-10T23:38:29.000Z" - }, - { - "title": "Brave Search can now deliver results for programming queries", - "link": "https://www.reddit.com/r/technews/comments/193mtv6/brave_search_can_now_deliver_results_for/", - "pubDate": "2024-01-10T23:36:57.000Z", - "author": "/u/N2929", - "content": "
\"Brave submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_193mtv6", - "isoDate": "2024-01-10T23:36:57.000Z" - }, - { - "title": "Zoe Care uses existing Wi-Fi signals to detect falls in care homes", - "link": "https://www.reddit.com/r/technews/comments/193msz0/zoe_care_uses_existing_wifi_signals_to_detect/", - "pubDate": "2024-01-10T23:35:50.000Z", - "author": "/u/N2929", - "content": "
\"Zoe submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_193msz0", - "isoDate": "2024-01-10T23:35:50.000Z" - }, - { - "title": "OpenAI launches a store for custom AI-powered chatbots", - "link": "https://www.reddit.com/r/technews/comments/193msfz/openai_launches_a_store_for_custom_aipowered/", - "pubDate": "2024-01-10T23:35:09.000Z", - "author": "/u/N2929", - "content": "
\"OpenAI submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_193msfz", - "isoDate": "2024-01-10T23:35:09.000Z" - }, - { - "title": "Intel\u2019s CPU branding was already confusing, and today\u2019s new CPUs made it worse", - "link": "https://www.reddit.com/r/technews/comments/193m49e/intels_cpu_branding_was_already_confusing_and/", - "pubDate": "2024-01-10T23:05:53.000Z", - "author": "/u/CrankyBear", - "content": "
\"Intel\u2019s submitted by /u/CrankyBear
[link] [comments]
", - "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", - "id": "t3_193m49e", - "isoDate": "2024-01-10T23:05:53.000Z" - }, - { - "title": "Scammy AI-Generated Book Rewrites Are Flooding Amazon", - "link": "https://www.reddit.com/r/technews/comments/194brxz/scammy_aigenerated_book_rewrites_are_flooding/", - "pubDate": "2024-01-11T20:36:42.000Z", - "author": "/u/ovirt001", - "content": "
\"Scammy submitted by /u/ovirt001
[link] [comments]
", - "contentSnippet": "submitted by /u/ovirt001 \n [link] [comments]", - "id": "t3_194brxz", - "isoDate": "2024-01-11T20:36:42.000Z" - }, - { - "title": "A US-Sanctioned Oligarch Ran Pro-Kremlin Ads on Facebook\u2014Again", - "link": "https://www.reddit.com/r/technews/comments/194bpzm/a_ussanctioned_oligarch_ran_prokremlin_ads_on/", - "pubDate": "2024-01-11T20:34:37.000Z", - "author": "/u/ovirt001", - "content": "
\"A submitted by /u/ovirt001
[link] [comments]
", - "contentSnippet": "submitted by /u/ovirt001 \n [link] [comments]", - "id": "t3_194bpzm", - "isoDate": "2024-01-11T20:34:37.000Z" - }, - { - "title": "FCC chair asks automakers about plans to stop abusers from using car electronics to stalk partners", - "link": "https://www.reddit.com/r/technews/comments/194u8dy/fcc_chair_asks_automakers_about_plans_to_stop/", - "pubDate": "2024-01-12T12:46:56.000Z", - "author": "/u/wewewawa", - "content": "
\"FCC submitted by /u/wewewawa
[link] [comments]
", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_194u8dy", - "isoDate": "2024-01-12T12:46:56.000Z" - }, - { - "title": "Data regulator fines HelloFresh \u00a3140k for sending 80M+ spams | Messaging menace used text and email to bombard people", - "link": "https://www.reddit.com/r/technews/comments/194tylh/data_regulator_fines_hellofresh_140k_for_sending/", - "pubDate": "2024-01-12T12:31:51.000Z", - "author": "/u/chrisdh79", - "content": "
\"Data submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_194tylh", - "isoDate": "2024-01-12T12:31:51.000Z" - }, - { - "title": "The once-secure profession of software engineer is under threat from AI and intense competition", - "link": "https://www.reddit.com/r/technews/comments/194tkhb/the_oncesecure_profession_of_software_engineer_is/", - "pubDate": "2024-01-12T12:09:24.000Z", - "author": "/u/chrisdh79", - "content": "
\"The submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_194tkhb", - "isoDate": "2024-01-12T12:09:24.000Z" - }, - { - "title": "Pimax Unveils Groundbreaking VR Innovations at CES 2024", - "link": "https://www.reddit.com/r/technews/comments/194rhn2/pimax_unveils_groundbreaking_vr_innovations_at/", - "pubDate": "2024-01-12T09:57:04.000Z", - "author": "/u/QuorraPimax", - "content": "
\"Pimax submitted by /u/QuorraPimax
[link] [comments]
", - "contentSnippet": "submitted by /u/QuorraPimax \n [link] [comments]", - "id": "t3_194rhn2", - "isoDate": "2024-01-12T09:57:04.000Z" - }, - { - "title": "Dexcom\u2019s new continuous glucose monitor is a health tech gadget with purpose", - "link": "https://www.reddit.com/r/technews/comments/194raia/dexcoms_new_continuous_glucose_monitor_is_a/", - "pubDate": "2024-01-12T09:42:56.000Z", - "author": "/u/N2929", - "content": "
\"Dexcom\u2019s submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194raia", - "isoDate": "2024-01-12T09:42:56.000Z" - }, - { - "title": "Wi-Fi 7 quietly took off while everyone was looking at AI", - "link": "https://www.reddit.com/r/technews/comments/194r8ra/wifi_7_quietly_took_off_while_everyone_was/", - "pubDate": "2024-01-12T09:39:41.000Z", - "author": "/u/N2929", - "content": "
\"Wi-Fi submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194r8ra", - "isoDate": "2024-01-12T09:39:41.000Z" - }, - { - "title": "Rabbit sells out two batches of 10,000 R1 pocket AI companions over two days", - "link": "https://www.reddit.com/r/technews/comments/194r6sg/rabbit_sells_out_two_batches_of_10000_r1_pocket/", - "pubDate": "2024-01-12T09:35:46.000Z", - "author": "/u/N2929", - "content": "
\"Rabbit submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194r6sg", - "isoDate": "2024-01-12T09:35:46.000Z" - }, - { - "title": "Hands-on: Sony\u2019s Afeela needs to be more than a feeling", - "link": "https://www.reddit.com/r/technews/comments/194r6hl/handson_sonys_afeela_needs_to_be_more_than_a/", - "pubDate": "2024-01-12T09:35:12.000Z", - "author": "/u/N2929", - "content": "
\"Hands-on: submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194r6hl", - "isoDate": "2024-01-12T09:35:12.000Z" - }, - { - "title": "Google confirms it just laid off around a thousand employees", - "link": "https://www.reddit.com/r/technews/comments/194qitm/google_confirms_it_just_laid_off_around_a/", - "pubDate": "2024-01-12T08:50:12.000Z", - "author": "/u/galaxyFighter0", - "content": "
\"Google submitted by /u/galaxyFighter0
[link] [comments]
", - "contentSnippet": "submitted by /u/galaxyFighter0 \n [link] [comments]", - "id": "t3_194qitm", - "isoDate": "2024-01-12T08:50:12.000Z" - }, - { - "title": "Samsung presents waterproof Galaxy Tab Active5 with 120 Hz display, S Pen, 5G and pogo pins", - "link": "https://www.reddit.com/r/technews/comments/194qfzm/samsung_presents_waterproof_galaxy_tab_active5/", - "pubDate": "2024-01-12T08:44:37.000Z", - "author": "/u/N2929", - "content": "
\"Samsung submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194qfzm", - "isoDate": "2024-01-12T08:44:37.000Z" - }, - { - "title": "After AI-generated \u2018George Carlin\u2019 routine, late comedian\u2019s daughter warns other entertainers: \u2018They\u2019re coming for you next\u2019", - "link": "https://www.reddit.com/r/technews/comments/194qeau/after_aigenerated_george_carlin_routine_late/", - "pubDate": "2024-01-12T08:41:13.000Z", - "author": "/u/Maxie445", - "content": "
\"After submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_194qeau", - "isoDate": "2024-01-12T08:41:13.000Z" - }, - { - "title": "Google to help build the first subsea cable directly connecting South America with Asia-Pacific | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/194q9nr/google_to_help_build_the_first_subsea_cable/", - "pubDate": "2024-01-12T08:31:46.000Z", - "author": "/u/N2929", - "content": "
\"Google submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194q9nr", - "isoDate": "2024-01-12T08:31:46.000Z" - }, - { - "title": "Polestar CEO promises to keep Apple CarPlay and Android Auto around | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/194q8fb/polestar_ceo_promises_to_keep_apple_carplay_and/", - "pubDate": "2024-01-12T08:29:30.000Z", - "author": "/u/N2929", - "content": "
\"Polestar submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194q8fb", - "isoDate": "2024-01-12T08:29:30.000Z" - }, - { - "title": "eBay to pay $3M over cyberstalking campaign that involved sending fetal pig, live insects to couple | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/194q773/ebay_to_pay_3m_over_cyberstalking_campaign_that/", - "pubDate": "2024-01-12T08:27:02.000Z", - "author": "/u/N2929", - "content": "
\"eBay submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194q773", - "isoDate": "2024-01-12T08:27:02.000Z" - }, - { - "title": "Google will allow more real-money games on the Play Store | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/194q6ub/google_will_allow_more_realmoney_games_on_the/", - "pubDate": "2024-01-12T08:26:19.000Z", - "author": "/u/N2929", - "content": "
\"Google submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194q6ub", - "isoDate": "2024-01-12T08:26:19.000Z" - }, - { - "title": "As Disney pushes toward streaming profitability, Pixar to undergo layoffs in 2024 | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/194q6gq/as_disney_pushes_toward_streaming_profitability/", - "pubDate": "2024-01-12T08:25:34.000Z", - "author": "/u/N2929", - "content": "
\"As submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194q6gq", - "isoDate": "2024-01-12T08:25:34.000Z" - }, - { - "title": "OpenAI-backed 1X raises another $100M for the race to humanoid robots | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/194q5f5/openaibacked_1x_raises_another_100m_for_the_race/", - "pubDate": "2024-01-12T08:23:39.000Z", - "author": "/u/N2929", - "content": "
\"OpenAI-backed submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_194q5f5", - "isoDate": "2024-01-12T08:23:39.000Z" - }, - { - "title": "Google lays off \u201chundreds\u201d more employees, strips Google Assistant features", - "link": "https://www.reddit.com/r/technews/comments/194oh0d/google_lays_off_hundreds_more_employees_strips/", - "pubDate": "2024-01-12T06:34:31.000Z", - "author": "/u/wewewawa", - "content": "
\"Google submitted by /u/wewewawa
[link] [comments]
", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_194oh0d", - "isoDate": "2024-01-12T06:34:31.000Z" - }, - { - "title": "Discord is laying off 17 percent of employees", - "link": "https://www.reddit.com/r/technews/comments/194nrtw/discord_is_laying_off_17_percent_of_employees/", - "pubDate": "2024-01-12T05:54:14.000Z", - "author": "/u/Abhi_mech007", - "content": "
\"Discord submitted by /u/Abhi_mech007
[link] [comments]
", - "contentSnippet": "submitted by /u/Abhi_mech007 \n [link] [comments]", - "id": "t3_194nrtw", - "isoDate": "2024-01-12T05:54:14.000Z" - }, - { - "title": "Microsoft's AI found a new material to replace li-ion batteries", - "link": "https://www.reddit.com/r/technews/comments/194hse2/microsofts_ai_found_a_new_material_to_replace/", - "pubDate": "2024-01-12T00:49:48.000Z", - "author": "/u/chrisdh79", - "content": "
\"Microsoft's submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_194hse2", - "isoDate": "2024-01-12T00:49:48.000Z" - }, - { - "title": "UK to make Big Tech give rivals access to data under new plans", - "link": "https://www.reddit.com/r/technews/comments/194gish/uk_to_make_big_tech_give_rivals_access_to_data/", - "pubDate": "2024-01-11T23:52:53.000Z", - "author": "/u/Sariel007", - "content": " submitted by /u/Sariel007
[link] [comments]", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_194gish", - "isoDate": "2024-01-11T23:52:53.000Z" - }, - { - "title": "Sundar Pichai warns Google staff more layoffs are coming", - "link": "https://www.reddit.com/r/technews/comments/199ni3v/sundar_pichai_warns_google_staff_more_layoffs_are/", - "pubDate": "2024-01-18T10:53:42.000Z", - "author": "/u/dotnip818", - "content": "
\"Sundar submitted by /u/dotnip818
[link] [comments]
", - "contentSnippet": "submitted by /u/dotnip818 \n [link] [comments]", - "id": "t3_199ni3v", - "isoDate": "2024-01-18T10:53:42.000Z" - }, - { - "title": "How social media algorithms 'flatten' our culture by making decisions for us", - "link": "https://www.reddit.com/r/technews/comments/199n09x/how_social_media_algorithms_flatten_our_culture/", - "pubDate": "2024-01-18T10:20:56.000Z", - "author": "/u/mrcanard", - "content": "
\"How submitted by /u/mrcanard
[link] [comments]
", - "contentSnippet": "submitted by /u/mrcanard \n [link] [comments]", - "id": "t3_199n09x", - "isoDate": "2024-01-18T10:20:56.000Z" - }, - { - "title": "Search engine results are getting worse, research confirms", - "link": "https://www.reddit.com/r/technews/comments/199ld81/search_engine_results_are_getting_worse_research/", - "pubDate": "2024-01-18T08:23:52.000Z", - "author": "/u/edfosho1", - "content": "
\"Search submitted by /u/edfosho1
[link] [comments]
", - "contentSnippet": "submitted by /u/edfosho1 \n [link] [comments]", - "id": "t3_199ld81", - "isoDate": "2024-01-18T08:23:52.000Z" - }, - { - "title": "Google DeepMind co-founder Mustafa Suleyman warns AI is a \"fundamentally labor replacing\" tool over the long term", - "link": "https://www.reddit.com/r/technews/comments/199jerv/google_deepmind_cofounder_mustafa_suleyman_warns/", - "pubDate": "2024-01-18T06:14:17.000Z", - "author": "/u/Maxie445", - "content": "
\"Google submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_199jerv", - "isoDate": "2024-01-18T06:14:17.000Z" - }, - { - "title": "How 'sleeper agent' AI assistants can sabotage your code without you realizing. Today's safety guardrails won't catch these backdoors, study warns.", - "link": "https://www.reddit.com/r/technews/comments/199cy34/how_sleeper_agent_ai_assistants_can_sabotage_your/", - "pubDate": "2024-01-18T00:44:51.000Z", - "author": "/u/Sariel007", - "content": "
\"How submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_199cy34", - "isoDate": "2024-01-18T00:44:51.000Z" - }, - { - "title": "Cable firms to FTC: We shouldn\u2019t have to let users cancel service with a click | Customers may \"misunderstand the consequences of canceling,\" cable lobby says.", - "link": "https://www.reddit.com/r/technews/comments/199c5ec/cable_firms_to_ftc_we_shouldnt_have_to_let_users/", - "pubDate": "2024-01-18T00:09:46.000Z", - "author": "/u/chrisdh79", - "content": "
\"Cable submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_199c5ec", - "isoDate": "2024-01-18T00:09:46.000Z" - }, - { - "title": "Apple's Vision Pro Won't Launch With Netflix App", - "link": "https://www.reddit.com/r/technews/comments/1999bed/apples_vision_pro_wont_launch_with_netflix_app/", - "pubDate": "2024-01-17T22:09:40.000Z", - "author": "/u/s1n0d3utscht3k", - "content": "
\"Apple's submitted by /u/s1n0d3utscht3k
[link] [comments]
", - "contentSnippet": "submitted by /u/s1n0d3utscht3k \n [link] [comments]", - "id": "t3_1999bed", - "isoDate": "2024-01-17T22:09:40.000Z" - }, - { - "title": "OpenAI must defend ChatGPT fabrications after failing to defeat libel suit", - "link": "https://www.reddit.com/r/technews/comments/1997tyl/openai_must_defend_chatgpt_fabrications_after/", - "pubDate": "2024-01-17T21:09:25.000Z", - "author": "/u/hata39", - "content": " submitted by /u/hata39
[link] [comments]", - "contentSnippet": "submitted by /u/hata39 \n [link] [comments]", - "id": "t3_1997tyl", - "isoDate": "2024-01-17T21:09:25.000Z" - }, - { - "title": "Court bars US imports of Apple watches that read blood-oxygen levels", - "link": "https://www.reddit.com/r/technews/comments/1997sqd/court_bars_us_imports_of_apple_watches_that_read/", - "pubDate": "2024-01-17T21:08:00.000Z", - "author": "/u/reuters", - "content": " submitted by /u/reuters
[link] [comments]", - "contentSnippet": "submitted by /u/reuters \n [link] [comments]", - "id": "t3_1997sqd", - "isoDate": "2024-01-17T21:08:00.000Z" - }, - { - "title": "A \u2018Shocking\u2019 Amount of the Web Is Already AI-Translated Trash, Scientists Determine", - "link": "https://www.reddit.com/r/technews/comments/1993cax/a_shocking_amount_of_the_web_is_already/", - "pubDate": "2024-01-17T18:11:43.000Z", - "author": "/u/777fer", - "content": "
\"A submitted by /u/777fer
[link] [comments]
", - "contentSnippet": "submitted by /u/777fer \n [link] [comments]", - "id": "t3_1993cax", - "isoDate": "2024-01-17T18:11:43.000Z" - }, - { - "title": "'It hasn't delivered': The spectacular failure of self-checkout technology", - "link": "https://www.reddit.com/r/technews/comments/1992xfg/it_hasnt_delivered_the_spectacular_failure_of/", - "pubDate": "2024-01-17T17:55:41.000Z", - "author": "/u/CrankyBear", - "content": "
\"'It submitted by /u/CrankyBear
[link] [comments]
", - "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", - "id": "t3_1992xfg", - "isoDate": "2024-01-17T17:55:41.000Z" - }, - { - "title": "Google now admits it could collect data in Chrome's Incognito mode | The company updated its disclaimer after settling a lawsuit accusing it of tracking Incognito users.", - "link": "https://www.reddit.com/r/technews/comments/198v2zt/google_now_admits_it_could_collect_data_in/", - "pubDate": "2024-01-17T12:08:15.000Z", - "author": "/u/chrisdh79", - "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_198v2zt", - "isoDate": "2024-01-17T12:08:15.000Z" - }, - { - "title": "Big tech firms recklessly pursuing profits from AI, says UN head: International community has no strategy to deal with risks", - "link": "https://www.reddit.com/r/technews/comments/198v2yj/big_tech_firms_recklessly_pursuing_profits_from/", - "pubDate": "2024-01-17T12:08:11.000Z", - "author": "/u/Maxie445", - "content": "
\"Big submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_198v2yj", - "isoDate": "2024-01-17T12:08:11.000Z" - }, - { - "title": "TSMC delays 3nm Arizona fab by a year, cites lack of U.S. subsidies and waning demand", - "link": "https://www.reddit.com/r/technews/comments/199unx6/tsmc_delays_3nm_arizona_fab_by_a_year_cites_lack/", - "pubDate": "2024-01-18T16:53:40.000Z", - "author": "/u/chrisdh79", - "content": "
\"TSMC submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_199unx6", - "isoDate": "2024-01-18T16:53:40.000Z" - }, - { - "title": "Google CEO tells employees to expect more job cuts this year", - "link": "https://www.reddit.com/r/technews/comments/199qwqr/google_ceo_tells_employees_to_expect_more_job/", - "pubDate": "2024-01-18T14:06:17.000Z", - "author": "/u/wewewawa", - "content": " submitted by /u/wewewawa
[link] [comments]", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_199qwqr", - "isoDate": "2024-01-18T14:06:17.000Z" - }, - { - "title": "Pope calls for treaty regulating AI, warning of potential for \u2018technological dictatorship\u2019", - "link": "https://www.reddit.com/r/technews/comments/19aefj0/pope_calls_for_treaty_regulating_ai_warning_of/", - "pubDate": "2024-01-19T08:30:06.000Z", - "author": "/u/Maxie445", - "content": "
\"Pope submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_19aefj0", - "isoDate": "2024-01-19T08:30:06.000Z" - }, - { - "title": "Google DeepMind cofounder says AI can act like an entrepreneur and inventor in the next five years", - "link": "https://www.reddit.com/r/technews/comments/19abvzf/google_deepmind_cofounder_says_ai_can_act_like_an/", - "pubDate": "2024-01-19T05:44:10.000Z", - "author": "/u/Maxie445", - "content": "
\"Google submitted by /u/Maxie445
[link] [comments]
", - "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", - "id": "t3_19abvzf", - "isoDate": "2024-01-19T05:44:10.000Z" - }, - { - "title": "1 in 4 CEOs planning to replace workers with AI this year, according to recent poll", - "link": "https://www.reddit.com/r/technews/comments/19abosx/1_in_4_ceos_planning_to_replace_workers_with_ai/", - "pubDate": "2024-01-19T05:32:45.000Z", - "author": "/u/PsychoComet", - "content": "
\"1 submitted by /u/PsychoComet
[link] [comments]
", - "contentSnippet": "submitted by /u/PsychoComet \n [link] [comments]", - "id": "t3_19abosx", - "isoDate": "2024-01-19T05:32:45.000Z" - }, - { - "title": "Microsoft makes its AI-powered reading tutor free | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/19a8q03/microsoft_makes_its_aipowered_reading_tutor_free/", - "pubDate": "2024-01-19T02:56:02.000Z", - "author": "/u/N2929", - "content": "
\"Microsoft submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_19a8q03", - "isoDate": "2024-01-19T02:56:02.000Z" - }, - { - "title": "iOS 17.3 Allows iPhones to Connect to Some Hotel Room TVs via AirPlay", - "link": "https://www.reddit.com/r/technews/comments/19a8pj4/ios_173_allows_iphones_to_connect_to_some_hotel/", - "pubDate": "2024-01-19T02:55:19.000Z", - "author": "/u/N2929", - "content": "
\"iOS submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_19a8pj4", - "isoDate": "2024-01-19T02:55:19.000Z" - }, - { - "title": "US sanctions will keep China 10 years behind on chipmaking, Intel CEO says", - "link": "https://www.reddit.com/r/technews/comments/19a7xmg/us_sanctions_will_keep_china_10_years_behind_on/", - "pubDate": "2024-01-19T02:16:47.000Z", - "author": "/u/chrisdh79", - "content": "
\"US submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_19a7xmg", - "isoDate": "2024-01-19T02:16:47.000Z" - }, - { - "title": "Amazon Wants You to Start Paying for Alexa", - "link": "https://www.reddit.com/r/technews/comments/19a57bd/amazon_wants_you_to_start_paying_for_alexa/", - "pubDate": "2024-01-19T00:08:54.000Z", - "author": "/u/wewewawa", - "content": "
\"Amazon submitted by /u/wewewawa
[link] [comments]
", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_19a57bd", - "isoDate": "2024-01-19T00:08:54.000Z" - }, - { - "title": "YouTube and Spotify Won\u2019t Launch Apple Vision Pro Apps, Joining Netflix", - "link": "https://www.reddit.com/r/technews/comments/19a396u/youtube_and_spotify_wont_launch_apple_vision_pro/", - "pubDate": "2024-01-18T22:45:00.000Z", - "author": "/u/s1n0d3utscht3k", - "content": "
\"YouTube submitted by /u/s1n0d3utscht3k
[link] [comments]
", - "contentSnippet": "submitted by /u/s1n0d3utscht3k \n [link] [comments]", - "id": "t3_19a396u", - "isoDate": "2024-01-18T22:45:00.000Z" - }, - { - "title": "Ayaneo\u2019s latest mini PC looks just like an old-school NES", - "link": "https://www.reddit.com/r/technews/comments/19a1y8o/ayaneos_latest_mini_pc_looks_just_like_an/", - "pubDate": "2024-01-18T21:51:06.000Z", - "author": "/u/N2929", - "content": "
\"Ayaneo\u2019s submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_19a1y8o", - "isoDate": "2024-01-18T21:51:06.000Z" - }, - { - "title": "Samsung\u2019s Galaxy S24 is first to be able to upload HDR photos to Instagram", - "link": "https://www.reddit.com/r/technews/comments/19a1uc2/samsungs_galaxy_s24_is_first_to_be_able_to_upload/", - "pubDate": "2024-01-18T21:46:33.000Z", - "author": "/u/N2929", - "content": "
\"Samsung\u2019s submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_19a1uc2", - "isoDate": "2024-01-18T21:46:33.000Z" - }, - { - "title": "Google reveals $1bn UK data centre it says will create jobs and 'boost growth of AI'", - "link": "https://www.reddit.com/r/technews/comments/199zbkj/google_reveals_1bn_uk_data_centre_it_says_will/", - "pubDate": "2024-01-18T20:04:20.000Z", - "author": "/u/Franco1875", - "content": "
\"Google submitted by /u/Franco1875
[link] [comments]
", - "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", - "id": "t3_199zbkj", - "isoDate": "2024-01-18T20:04:20.000Z" - }, - { - "title": "Mark Zuckerberg\u2019s new goal is creating artificial general intelligence", - "link": "https://www.reddit.com/r/technews/comments/199z7nf/mark_zuckerbergs_new_goal_is_creating_artificial/", - "pubDate": "2024-01-18T20:00:08.000Z", - "author": "/u/donutloop", - "content": "
\"Mark submitted by /u/donutloop
[link] [comments]
", - "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", - "id": "t3_199z7nf", - "isoDate": "2024-01-18T20:00:08.000Z" - }, - { - "title": "\u200b\u200bA brain-dead man was attached to a gene-edited pig liver for three days", - "link": "https://www.reddit.com/r/technews/comments/199wua3/a_braindead_man_was_attached_to_a_geneedited_pig/", - "pubDate": "2024-01-18T18:23:03.000Z", - "author": "/u/Sariel007", - "content": "
\"\u200b\u200bA submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_199wua3", - "isoDate": "2024-01-18T18:23:03.000Z" - }, - { - "title": "Google lays off \u201chundreds\u201d more as ad division switches to AI-powered sales. Googlers are now building AI tools so other Googlers can be laid off.", - "link": "https://www.reddit.com/r/technews/comments/199whx6/google_lays_off_hundreds_more_as_ad_division/", - "pubDate": "2024-01-18T18:09:07.000Z", - "author": "/u/Sariel007", - "content": "
\"Google submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_199whx6", - "isoDate": "2024-01-18T18:09:07.000Z" - }, - { - "title": "For truckers driving EVs, there\u2019s no going back", - "link": "https://www.reddit.com/r/technews/comments/199vq8t/for_truckers_driving_evs_theres_no_going_back/", - "pubDate": "2024-01-18T17:37:41.000Z", - "author": "/u/CrankyBear", - "content": "
\"For submitted by /u/CrankyBear
[link] [comments]
", - "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", - "id": "t3_199vq8t", - "isoDate": "2024-01-18T17:37:41.000Z" - }, - { - "title": "Novelist Scoops Literary Prize\u2014Then Reveals She Used ChatGPT", - "link": "https://www.reddit.com/r/technews/comments/19ahd44/novelist_scoops_literary_prizethen_reveals_she/", - "pubDate": "2024-01-19T11:51:05.000Z", - "author": "/u/PsychoComet", - "content": "
\"Novelist submitted by /u/PsychoComet
[link] [comments]
", - "contentSnippet": "submitted by /u/PsychoComet \n [link] [comments]", - "id": "t3_19ahd44", - "isoDate": "2024-01-19T11:51:05.000Z" - }, - { - "title": "A transforming robot is about to land on the moon, where it will die", - "link": "https://www.reddit.com/r/technews/comments/19ahchg/a_transforming_robot_is_about_to_land_on_the_moon/", - "pubDate": "2024-01-19T11:50:00.000Z", - "author": "/u/zsreport", - "content": "
\"A submitted by /u/zsreport
[link] [comments]
", - "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", - "id": "t3_19ahchg", - "isoDate": "2024-01-19T11:50:00.000Z" - }, - { - "title": "Donated bodies are powering gene-edited organ research", - "link": "https://www.reddit.com/r/technews/comments/19ak3m2/donated_bodies_are_powering_geneedited_organ/", - "pubDate": "2024-01-19T14:17:11.000Z", - "author": "/u/Sariel007", - "content": "
\"Donated submitted by /u/Sariel007
[link] [comments]
", - "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", - "id": "t3_19ak3m2", - "isoDate": "2024-01-19T14:17:11.000Z" - }, - { - "title": "X is rolling out audio and video calls to Android | TechCrunch", - "link": "https://www.reddit.com/r/technews/comments/19ajkoq/x_is_rolling_out_audio_and_video_calls_to_android/", - "pubDate": "2024-01-19T13:52:19.000Z", - "author": "/u/Abhi_mech007", - "content": "
\"X submitted by /u/Abhi_mech007
[link] [comments]
", - "contentSnippet": "submitted by /u/Abhi_mech007 \n [link] [comments]", - "id": "t3_19ajkoq", - "isoDate": "2024-01-19T13:52:19.000Z" - }, - { - "title": "US immigration enforcement used an AI-powered tool to scan social media posts \"derogatory\" to the US | \"The government should not be using algorithms to scrutinize our social media posts\"", - "link": "https://www.reddit.com/r/technews/comments/17hkkkt/us_immigration_enforcement_used_an_aipowered_tool/", - "pubDate": "2023-10-27T10:33:45.000Z", - "author": "/u/chrisdh79", - "content": "
\"US submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17hkkkt", - "isoDate": "2023-10-27T10:33:45.000Z" - }, - { - "title": "BP buys $100 million worth of Tesla chargers", - "link": "https://www.reddit.com/r/technews/comments/17hgnfw/bp_buys_100_million_worth_of_tesla_chargers/", - "pubDate": "2023-10-27T05:45:20.000Z", - "author": "/u/wewewawa", - "content": "
\"BP submitted by /u/wewewawa
[link] [comments]
", - "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", - "id": "t3_17hgnfw", - "isoDate": "2023-10-27T05:45:20.000Z" - }, - { - "title": "OpenAI forms team to study 'catastrophic' AI risks, including nuclear threats", - "link": "https://www.reddit.com/r/technews/comments/17h4pq0/openai_forms_team_to_study_catastrophic_ai_risks/", - "pubDate": "2023-10-26T19:40:14.000Z", - "author": "/u/N2929", - "content": "
\"OpenAI submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_17h4pq0", - "isoDate": "2023-10-26T19:40:14.000Z" - }, - { - "title": "PlayStation 5 supply issues finally fixed after three years, says Sony", - "link": "https://www.reddit.com/r/technews/comments/17h1zal/playstation_5_supply_issues_finally_fixed_after/", - "pubDate": "2023-10-26T17:39:21.000Z", - "author": "/u/hawlc", - "content": "
\"PlayStation submitted by /u/hawlc
[link] [comments]
", - "contentSnippet": "submitted by /u/hawlc \n [link] [comments]", - "id": "t3_17h1zal", - "isoDate": "2023-10-26T17:39:21.000Z" - }, - { - "title": "Memory chip maker SK Hynix, a shareholder of Kioxia, opposes a merger with Western Digital", - "link": "https://www.reddit.com/r/technews/comments/17h12up/memory_chip_maker_sk_hynix_a_shareholder_of/", - "pubDate": "2023-10-26T16:58:22.000Z", - "author": "/u/N2929", - "content": "
\"Memory submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_17h12up", - "isoDate": "2023-10-26T16:58:22.000Z" - }, - { - "title": "Amazon's virtual health clinic can now treat patients for a cough, cold or flu", - "link": "https://www.reddit.com/r/technews/comments/17h11u7/amazons_virtual_health_clinic_can_now_treat/", - "pubDate": "2023-10-26T16:57:05.000Z", - "author": "/u/N2929", - "content": "
\"Amazon's submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_17h11u7", - "isoDate": "2023-10-26T16:57:05.000Z" - }, - { - "title": "Google Maps is getting new AI-powered search updates, an enhanced navigation interface and more", - "link": "https://www.reddit.com/r/technews/comments/17h112o/google_maps_is_getting_new_aipowered_search/", - "pubDate": "2023-10-26T16:56:02.000Z", - "author": "/u/N2929", - "content": "
\"Google submitted by /u/N2929
[link] [comments]
", - "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", - "id": "t3_17h112o", - "isoDate": "2023-10-26T16:56:02.000Z" - }, - { - "title": "Google is building a subsea cable linking the US to Australia | Google cable will also connect the Pacific Islands to US and Australia", - "link": "https://www.reddit.com/r/technews/comments/17gyfi3/google_is_building_a_subsea_cable_linking_the_us/", - "pubDate": "2023-10-26T14:58:31.000Z", - "author": "/u/chrisdh79", - "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17gyfi3", - "isoDate": "2023-10-26T14:58:31.000Z" - }, - { - "title": "Privacy advocate challenges YouTube's ad blocking detection scripts under EU law", - "link": "https://www.reddit.com/r/technews/comments/17gwtl3/privacy_advocate_challenges_youtubes_ad_blocking/", - "pubDate": "2023-10-26T13:42:04.000Z", - "author": "/u/chrisdh79", - "content": "
\"Privacy submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17gwtl3", - "isoDate": "2023-10-26T13:42:04.000Z" - }, - { - "title": "Microsoft Word Is 40 Years Young and Here to Make You Feel Old", - "link": "https://www.reddit.com/r/technews/comments/17hogis/microsoft_word_is_40_years_young_and_here_to_make/", - "pubDate": "2023-10-27T14:12:25.000Z", - "author": "/u/chrisdh79", - "content": "
\"Microsoft submitted by /u/chrisdh79
[link] [comments]
", - "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", - "id": "t3_17hogis", - "isoDate": "2023-10-27T14:12:25.000Z" - } -] \ No newline at end of file + { + "title": "Inactive Google accounts to be deleted from Friday", + "link": "https://www.reddit.com/r/technews/comments/187rrgg/inactive_google_accounts_to_be_deleted_from_friday/", + "pubDate": "2023-11-30T20:08:01.000Z", + "author": "/u/Typical-Plantain256", + "content": "
\"Inactive submitted by /u/Typical-Plantain256
[link] [comments]
", + "contentSnippet": "submitted by /u/Typical-Plantain256 \n [link] [comments]", + "id": "t3_187rrgg", + "isoDate": "2023-11-30T20:08:01.000Z" + }, + { + "title": "Google Drive users left in shock after months of files go missing \u2014 what you need to know", + "link": "https://www.reddit.com/r/technews/comments/187qv1u/google_drive_users_left_in_shock_after_months_of/", + "pubDate": "2023-11-30T19:30:26.000Z", + "author": "/u/wewewawa", + "content": "
\"Google submitted by /u/wewewawa
[link] [comments]
", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_187qv1u", + "isoDate": "2023-11-30T19:30:26.000Z" + }, + { + "title": "How to remove your personal data from Google", + "link": "https://www.reddit.com/r/technews/comments/187qr9t/how_to_remove_your_personal_data_from_google/", + "pubDate": "2023-11-30T19:26:04.000Z", + "author": "/u/wewewawa", + "content": "
\"How submitted by /u/wewewawa
[link] [comments]
", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_187qr9t", + "isoDate": "2023-11-30T19:26:04.000Z" + }, + { + "title": "Admin of $19M marketplace that sold social security numbers gets 8 years in jail", + "link": "https://www.reddit.com/r/technews/comments/187qkgr/admin_of_19m_marketplace_that_sold_social/", + "pubDate": "2023-11-30T19:17:58.000Z", + "author": "/u/Franco1875", + "content": "
\"Admin submitted by /u/Franco1875
[link] [comments]
", + "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", + "id": "t3_187qkgr", + "isoDate": "2023-11-30T19:17:58.000Z" + }, + { + "title": "Google Messages marks 1 billion RCS users with Photomoji, Custom Bubble colors, more", + "link": "https://www.reddit.com/r/technews/comments/187qk8r/google_messages_marks_1_billion_rcs_users_with/", + "pubDate": "2023-11-30T19:17:42.000Z", + "author": "/u/N2929", + "content": "
\"Google submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_187qk8r", + "isoDate": "2023-11-30T19:17:42.000Z" + }, + { + "title": "10-Year-Old Starts Petition for Apple to Change 'Insulting' Nerd Emoji", + "link": "https://www.reddit.com/r/technews/comments/187oo8n/10yearold_starts_petition_for_apple_to_change/", + "pubDate": "2023-11-30T17:57:17.000Z", + "author": "/u/777fer", + "content": "
\"10-Year-Old submitted by /u/777fer
[link] [comments]
", + "contentSnippet": "submitted by /u/777fer \n [link] [comments]", + "id": "t3_187oo8n", + "isoDate": "2023-11-30T17:57:17.000Z" + }, + { + "title": "Nvidia boss says achieving US chip independence could take up to 20 years | Two decades is longer than predicted", + "link": "https://www.reddit.com/r/technews/comments/187gwor/nvidia_boss_says_achieving_us_chip_independence/", + "pubDate": "2023-11-30T12:00:29.000Z", + "author": "/u/chrisdh79", + "content": "
\"Nvidia submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_187gwor", + "isoDate": "2023-11-30T12:00:29.000Z" + }, + { + "title": "Dollar Tree hit by third-party data breach impacting 2 million people", + "link": "https://www.reddit.com/r/technews/comments/187gnd0/dollar_tree_hit_by_thirdparty_data_breach/", + "pubDate": "2023-11-30T11:43:48.000Z", + "author": "/u/chrisdh79", + "content": "
\"Dollar submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_187gnd0", + "isoDate": "2023-11-30T11:43:48.000Z" + }, + { + "title": "A 'silly' attack made ChatGPT reveal real phone numbers and email addresses", + "link": "https://www.reddit.com/r/technews/comments/187fxll/a_silly_attack_made_chatgpt_reveal_real_phone/", + "pubDate": "2023-11-30T10:58:48.000Z", + "author": "/u/thebelsnickle1991", + "content": "
\"A submitted by /u/thebelsnickle1991
[link] [comments]
", + "contentSnippet": "submitted by /u/thebelsnickle1991 \n [link] [comments]", + "id": "t3_187fxll", + "isoDate": "2023-11-30T10:58:48.000Z" + }, + { + "title": "Sam Altman returns as CEO, OpenAI has a new initial board", + "link": "https://www.reddit.com/r/technews/comments/187c2mo/sam_altman_returns_as_ceo_openai_has_a_new/", + "pubDate": "2023-11-30T06:36:46.000Z", + "author": "/u/donutloop", + "content": "
\"Sam submitted by /u/donutloop
[link] [comments]
", + "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", + "id": "t3_187c2mo", + "isoDate": "2023-11-30T06:36:46.000Z" + }, + { + "title": "Bad Bots Account for 73% of Internet Traffic: Analysis", + "link": "https://www.reddit.com/r/technews/comments/187aqkw/bad_bots_account_for_73_of_internet_traffic/", + "pubDate": "2023-11-30T05:21:42.000Z", + "author": "/u/MicroSofty88", + "content": "
\"Bad submitted by /u/MicroSofty88
[link] [comments]
", + "contentSnippet": "submitted by /u/MicroSofty88 \n [link] [comments]", + "id": "t3_187aqkw", + "isoDate": "2023-11-30T05:21:42.000Z" + }, + { + "title": "Google DeepMind AI reveals potential for thousands of new materials", + "link": "https://www.reddit.com/r/technews/comments/1879fi0/google_deepmind_ai_reveals_potential_for/", + "pubDate": "2023-11-30T04:10:53.000Z", + "author": "/u/reuters", + "content": "
\"Google submitted by /u/reuters
[link] [comments]
", + "contentSnippet": "submitted by /u/reuters \n [link] [comments]", + "id": "t3_1879fi0", + "isoDate": "2023-11-30T04:10:53.000Z" + }, + { + "title": "2 municipal water facilities report falling to hackers in separate breaches", + "link": "https://www.reddit.com/r/technews/comments/1875fl4/2_municipal_water_facilities_report_falling_to/", + "pubDate": "2023-11-30T00:59:55.000Z", + "author": "/u/GeoWa", + "content": "
\"2 submitted by /u/GeoWa
[link] [comments]
", + "contentSnippet": "submitted by /u/GeoWa \n [link] [comments]", + "id": "t3_1875fl4", + "isoDate": "2023-11-30T00:59:55.000Z" + }, + { + "title": "Fidelity National Financial Cyberattack Spotlights a Surge in Threat Activity", + "link": "https://www.reddit.com/r/technews/comments/187y24a/fidelity_national_financial_cyberattack/", + "pubDate": "2023-12-01T00:33:11.000Z", + "author": "/u/feross", + "content": "
\"Fidelity submitted by /u/feross
[link] [comments]
", + "contentSnippet": "submitted by /u/feross \n [link] [comments]", + "id": "t3_187y24a", + "isoDate": "2023-12-01T00:33:11.000Z" + }, + { + "title": "Google researchers report critical zero-days in Chrome and all Apple OSes", + "link": "https://www.reddit.com/r/technews/comments/187z522/google_researchers_report_critical_zerodays_in/", + "pubDate": "2023-12-01T01:21:56.000Z", + "author": "/u/chrisdh79", + "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_187z522", + "isoDate": "2023-12-01T01:21:56.000Z" + }, + { + "title": "Detroit's newest road can charge electric cars as they travel on it", + "link": "https://www.reddit.com/r/technews/comments/187yufe/detroits_newest_road_can_charge_electric_cars_as/", + "pubDate": "2023-12-01T01:08:23.000Z", + "author": "/u/911_reddit", + "content": "
\"Detroit's submitted by /u/911_reddit
[link] [comments]
", + "contentSnippet": "submitted by /u/911_reddit \n [link] [comments]", + "id": "t3_187yufe", + "isoDate": "2023-12-01T01:08:23.000Z" + }, + { + "title": "White House threatens to veto anti-EV bill just passed by US House | The bill would prevent the EPA from enforcing tougher new pollution standards.", + "link": "https://www.reddit.com/r/technews/comments/18d4jpp/white_house_threatens_to_veto_antiev_bill_just/", + "pubDate": "2023-12-07T20:20:34.000Z", + "author": "/u/chrisdh79", + "content": "
\"White submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18d4jpp", + "isoDate": "2023-12-07T20:20:34.000Z" + }, + { + "title": "Amazon will no longer accept Venmo as a payment option starting next month | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/18d3zg6/amazon_will_no_longer_accept_venmo_as_a_payment/", + "pubDate": "2023-12-07T19:55:57.000Z", + "author": "/u/N2929", + "content": "
\"Amazon submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_18d3zg6", + "isoDate": "2023-12-07T19:55:57.000Z" + }, + { + "title": "iOS 17.2 release notes: Every new feature and change - 9to5Mac", + "link": "https://www.reddit.com/r/technews/comments/18d3ws4/ios_172_release_notes_every_new_feature_and/", + "pubDate": "2023-12-07T19:52:40.000Z", + "author": "/u/N2929", + "content": "
\"iOS submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_18d3ws4", + "isoDate": "2023-12-07T19:52:40.000Z" + }, + { + "title": "Apple Promotes iCloud's Advanced End-to-End Encryption Feature as Data Breaches Increase", + "link": "https://www.reddit.com/r/technews/comments/18d09kd/apple_promotes_iclouds_advanced_endtoend/", + "pubDate": "2023-12-07T17:09:21.000Z", + "author": "/u/chrisdh79", + "content": "
\"Apple submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18d09kd", + "isoDate": "2023-12-07T17:09:21.000Z" + }, + { + "title": "Meta and Microsoft say they will buy AMD\u2019s new AI chip as an alternative to Nvidia\u2019s", + "link": "https://www.reddit.com/r/technews/comments/18cz1di/meta_and_microsoft_say_they_will_buy_amds_new_ai/", + "pubDate": "2023-12-07T16:13:39.000Z", + "author": "/u/BasculinSushi", + "content": "
\"Meta submitted by /u/BasculinSushi
[link] [comments]
", + "contentSnippet": "submitted by /u/BasculinSushi \n [link] [comments]", + "id": "t3_18cz1di", + "isoDate": "2023-12-07T16:13:39.000Z" + }, + { + "title": "Yet another UK public sector data blab, this time info of pregnant women, cancer patients", + "link": "https://www.reddit.com/r/technews/comments/18cxzpe/yet_another_uk_public_sector_data_blab_this_time/", + "pubDate": "2023-12-07T15:26:01.000Z", + "author": "/u/Franco1875", + "content": "
\"Yet submitted by /u/Franco1875
[link] [comments]
", + "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", + "id": "t3_18cxzpe", + "isoDate": "2023-12-07T15:26:01.000Z" + }, + { + "title": "South Fork Wind energizes 70,000 New York homes with clean energy | South Fork Wind's green promise equals removing 60,000 cars from roads annually.", + "link": "https://www.reddit.com/r/technews/comments/18cxmxc/south_fork_wind_energizes_70000_new_york_homes/", + "pubDate": "2023-12-07T15:09:43.000Z", + "author": "/u/chrisdh79", + "content": "
\"South submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18cxmxc", + "isoDate": "2023-12-07T15:09:43.000Z" + }, + { + "title": "Quantum computer performs error-resistant operations with logical qubits", + "link": "https://www.reddit.com/r/technews/comments/18cw4fe/quantum_computer_performs_errorresistant/", + "pubDate": "2023-12-07T13:56:38.000Z", + "author": "/u/Sariel007", + "content": "
\"Quantum submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_18cw4fe", + "isoDate": "2023-12-07T13:56:38.000Z" + }, + { + "title": "Meta\u2019s new AI image generator was trained on 1.1 billion Instagram and Facebook photos", + "link": "https://www.reddit.com/r/technews/comments/18cw3f1/metas_new_ai_image_generator_was_trained_on_11/", + "pubDate": "2023-12-07T13:55:08.000Z", + "author": "/u/Sariel007", + "content": "
\"Meta\u2019s submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_18cw3f1", + "isoDate": "2023-12-07T13:55:08.000Z" + }, + { + "title": "New LogoFAIL exploit leaves Windows and Linux users vulnerable to remote attacks | LogoFAIL enables remote attacks by exploiting unpatched browsers, media players, and other apps", + "link": "https://www.reddit.com/r/technews/comments/18cvvrl/new_logofail_exploit_leaves_windows_and_linux/", + "pubDate": "2023-12-07T13:44:05.000Z", + "author": "/u/chrisdh79", + "content": "
\"New submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18cvvrl", + "isoDate": "2023-12-07T13:44:05.000Z" + }, + { + "title": "Ukrainian cellular and Internet still out, 1 day after suspected Russian cyberattack", + "link": "https://www.reddit.com/r/technews/comments/18iadud/ukrainian_cellular_and_internet_still_out_1_day/", + "pubDate": "2023-12-14T14:55:07.000Z", + "author": "/u/Sariel007", + "content": "
\"Ukrainian submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_18iadud", + "isoDate": "2023-12-14T14:55:07.000Z" + }, + { + "title": "Google will turn off third-party tracking for some Chrome users soon | Google\u2019s plan to implement a new Tracking Protection feature in Chrome begins in January with the intention to completely disable third-party cookies in the second half of 2024.", + "link": "https://www.reddit.com/r/technews/comments/18i9t55/google_will_turn_off_thirdparty_tracking_for_some/", + "pubDate": "2023-12-14T14:28:02.000Z", + "author": "/u/chrisdh79", + "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18i9t55", + "isoDate": "2023-12-14T14:28:02.000Z" + }, + { + "title": "I\u2019ve used a foldable laptop for a month, and I\u2019m ready to return to a clamshell", + "link": "https://www.reddit.com/r/technews/comments/18i8y8c/ive_used_a_foldable_laptop_for_a_month_and_im/", + "pubDate": "2023-12-14T13:46:01.000Z", + "author": "/u/feross", + "content": "
\"I\u2019ve submitted by /u/feross
[link] [comments]
", + "contentSnippet": "submitted by /u/feross \n [link] [comments]", + "id": "t3_18i8y8c", + "isoDate": "2023-12-14T13:46:01.000Z" + }, + { + "title": "Trains were designed to break down after third-party repairs, hackers find", + "link": "https://www.reddit.com/r/technews/comments/18i0t7d/trains_were_designed_to_break_down_after/", + "pubDate": "2023-12-14T04:52:38.000Z", + "author": "/u/MicroSofty88", + "content": "
\"Trains submitted by /u/MicroSofty88
[link] [comments]
", + "contentSnippet": "submitted by /u/MicroSofty88 \n [link] [comments]", + "id": "t3_18i0t7d", + "isoDate": "2023-12-14T04:52:38.000Z" + }, + { + "title": "Parent and consumer groups warn against 'naughty tech toys'", + "link": "https://www.reddit.com/r/technews/comments/18hut4w/parent_and_consumer_groups_warn_against_naughty/", + "pubDate": "2023-12-13T23:43:46.000Z", + "author": "/u/wewewawa", + "content": "
\"Parent submitted by /u/wewewawa
[link] [comments]
", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_18hut4w", + "isoDate": "2023-12-13T23:43:46.000Z" + }, + { + "title": "Early prototypes show that the iPhone 16 might not fall too far from the iPhone 15 tree", + "link": "https://www.reddit.com/r/technews/comments/18hth14/early_prototypes_show_that_the_iphone_16_might/", + "pubDate": "2023-12-13T22:44:31.000Z", + "author": "/u/GeoWa", + "content": "
\"Early submitted by /u/GeoWa
[link] [comments]
", + "contentSnippet": "submitted by /u/GeoWa \n [link] [comments]", + "id": "t3_18hth14", + "isoDate": "2023-12-13T22:44:31.000Z" + }, + { + "title": "Threads is officially starting to test ActivityPub integration", + "link": "https://www.reddit.com/r/technews/comments/18hqegd/threads_is_officially_starting_to_test/", + "pubDate": "2023-12-13T20:32:05.000Z", + "author": "/u/FitikWasTaken", + "content": "
\"Threads submitted by /u/FitikWasTaken
[link] [comments]
", + "contentSnippet": "submitted by /u/FitikWasTaken \n [link] [comments]", + "id": "t3_18hqegd", + "isoDate": "2023-12-13T20:32:05.000Z" + }, + { + "title": "Suspects can refuse to provide phone passcodes to police, court rules", + "link": "https://www.reddit.com/r/technews/comments/18iyhpq/suspects_can_refuse_to_provide_phone_passcodes_to/", + "pubDate": "2023-12-15T11:58:49.000Z", + "author": "/u/chrisdh79", + "content": "
\"Suspects submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18iyhpq", + "isoDate": "2023-12-15T11:58:49.000Z" + }, + { + "title": "TikTok faces watchdog probe after supplying inaccurate information", + "link": "https://www.reddit.com/r/technews/comments/18ix9l1/tiktok_faces_watchdog_probe_after_supplying/", + "pubDate": "2023-12-15T10:38:10.000Z", + "author": "/u/Franco1875", + "content": "
\"TikTok submitted by /u/Franco1875
[link] [comments]
", + "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", + "id": "t3_18ix9l1", + "isoDate": "2023-12-15T10:38:10.000Z" + }, + { + "title": "FBI gets at least four more months of Section 702 snooping", + "link": "https://www.reddit.com/r/technews/comments/18inp0q/fbi_gets_at_least_four_more_months_of_section_702/", + "pubDate": "2023-12-15T00:53:57.000Z", + "author": "/u/chrisdh79", + "content": "
\"FBI submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18inp0q", + "isoDate": "2023-12-15T00:53:57.000Z" + }, + { + "title": "SpaceX\u2019s Starlink Clears Military Tests, Paving Way for Contracts", + "link": "https://www.reddit.com/r/technews/comments/18imxmv/spacexs_starlink_clears_military_tests_paving_way/", + "pubDate": "2023-12-15T00:16:39.000Z", + "author": "/u/Hiversitize", + "content": " submitted by /u/Hiversitize
[link] [comments]", + "contentSnippet": "submitted by /u/Hiversitize \n [link] [comments]", + "id": "t3_18imxmv", + "isoDate": "2023-12-15T00:16:39.000Z" + }, + { + "title": "Why 2023 was the year of the e-bike and not the self-driving car", + "link": "https://www.reddit.com/r/technews/comments/18ilp1i/why_2023_was_the_year_of_the_ebike_and_not_the/", + "pubDate": "2023-12-14T23:18:36.000Z", + "author": "/u/Zen1", + "content": " submitted by /u/Zen1
[link] [comments]", + "contentSnippet": "submitted by /u/Zen1 \n [link] [comments]", + "id": "t3_18ilp1i", + "isoDate": "2023-12-14T23:18:36.000Z" + }, + { + "title": "US and China race to shield secrets from quantum computers", + "link": "https://www.reddit.com/r/technews/comments/18ij964/us_and_china_race_to_shield_secrets_from_quantum/", + "pubDate": "2023-12-14T21:31:26.000Z", + "author": "/u/reuters", + "content": " submitted by /u/reuters
[link] [comments]", + "contentSnippet": "submitted by /u/reuters \n [link] [comments]", + "id": "t3_18ij964", + "isoDate": "2023-12-14T21:31:26.000Z" + }, + { + "title": "AMD says overclocking blows a hidden fuse on Ryzen Threadripper 7000 to show if you've overclocked the chip, but it doesn't automatically void your CPU's warranty", + "link": "https://www.reddit.com/r/technews/comments/18ieohc/amd_says_overclocking_blows_a_hidden_fuse_on/", + "pubDate": "2023-12-14T18:07:30.000Z", + "author": "/u/CrankyBear", + "content": "
submitted by /u/CrankyBear
[link] [comments]
", + "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", + "id": "t3_18ieohc", + "isoDate": "2023-12-14T18:07:30.000Z" + }, + { + "title": "YouTube will have fewer ad breaks on TV \u2014 but the ads are getting longer | You\u2019re going to start seeing ads in between Shorts on TV, too.", + "link": "https://www.reddit.com/r/technews/comments/18ibzcf/youtube_will_have_fewer_ad_breaks_on_tv_but_the/", + "pubDate": "2023-12-14T16:08:49.000Z", + "author": "/u/chrisdh79", + "content": "
\"YouTube submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ibzcf", + "isoDate": "2023-12-14T16:08:49.000Z" + }, + { + "title": "Amazon's internet satellites will communicate using lasers in space | Thousands of satellites working as an optical mesh network in Earth's orbit", + "link": "https://www.reddit.com/r/technews/comments/18j26iv/amazons_internet_satellites_will_communicate/", + "pubDate": "2023-12-15T15:07:28.000Z", + "author": "/u/chrisdh79", + "content": "
\"Amazon's submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18j26iv", + "isoDate": "2023-12-15T15:07:28.000Z" + }, + { + "title": "These AI-generated news anchors are freaking me out", + "link": "https://www.reddit.com/r/technews/comments/18j4qt6/these_aigenerated_news_anchors_are_freaking_me_out/", + "pubDate": "2023-12-15T17:01:38.000Z", + "author": "/u/feross", + "content": "
\"These submitted by /u/feross
[link] [comments]
", + "contentSnippet": "submitted by /u/feross \n [link] [comments]", + "id": "t3_18j4qt6", + "isoDate": "2023-12-15T17:01:38.000Z" + }, + { + "title": "Why Is TikTok Parent ByteDance Moving Into Biology, Chemistry And Drug Discovery?", + "link": "https://www.reddit.com/r/technews/comments/18y1s86/why_is_tiktok_parent_bytedance_moving_into/", + "pubDate": "2024-01-04T02:29:41.000Z", + "author": "/u/777fer", + "content": "
\"Why submitted by /u/777fer
[link] [comments]
", + "contentSnippet": "submitted by /u/777fer \n [link] [comments]", + "id": "t3_18y1s86", + "isoDate": "2024-01-04T02:29:41.000Z" + }, + { + "title": "Toshiba NAND fab shuts down for checks amid rising SSD pricing \u2013 Japan\u2019s earthquake affects PC component manufacturing", + "link": "https://www.reddit.com/r/technews/comments/18y0dbn/toshiba_nand_fab_shuts_down_for_checks_amid/", + "pubDate": "2024-01-04T01:25:37.000Z", + "author": "/u/chrisdh79", + "content": "
\"Toshiba submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18y0dbn", + "isoDate": "2024-01-04T01:25:37.000Z" + }, + { + "title": "Apple agrees to settle lawsuit over iTunes gift card scam", + "link": "https://www.reddit.com/r/technews/comments/18xxmx4/apple_agrees_to_settle_lawsuit_over_itunes_gift/", + "pubDate": "2024-01-03T23:29:23.000Z", + "author": "/u/wewewawa", + "content": " submitted by /u/wewewawa
[link] [comments]", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_18xxmx4", + "isoDate": "2024-01-03T23:29:23.000Z" + }, + { + "title": "SpaceX launches first set of satellites with direct-to-cell capabilities", + "link": "https://www.reddit.com/r/technews/comments/18xxaw5/spacex_launches_first_set_of_satellites_with/", + "pubDate": "2024-01-03T23:15:34.000Z", + "author": "/u/wewewawa", + "content": " submitted by /u/wewewawa
[link] [comments]", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_18xxaw5", + "isoDate": "2024-01-03T23:15:34.000Z" + }, + { + "title": "23andMe tells victims it's their fault that their data was breached", + "link": "https://www.reddit.com/r/technews/comments/18xs4lv/23andme_tells_victims_its_their_fault_that_their/", + "pubDate": "2024-01-03T19:46:32.000Z", + "author": "/u/Typical-Plantain256", + "content": "
\"23andMe submitted by /u/Typical-Plantain256
[link] [comments]
", + "contentSnippet": "submitted by /u/Typical-Plantain256 \n [link] [comments]", + "id": "t3_18xs4lv", + "isoDate": "2024-01-03T19:46:32.000Z" + }, + { + "title": "Windows 10 holds strong: nearly 7 out of 10 desktops still powered by the older OS | Windows 11 just can't seem to catch up", + "link": "https://www.reddit.com/r/technews/comments/18xo4pm/windows_10_holds_strong_nearly_7_out_of_10/", + "pubDate": "2024-01-03T17:05:59.000Z", + "author": "/u/chrisdh79", + "content": "
\"Windows submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18xo4pm", + "isoDate": "2024-01-03T17:05:59.000Z" + }, + { + "title": "Vizio settles for $3M after saying 60 Hz TVs had 120 Hz \u201ceffective refresh rate\u201d | Vizio claimed backlight scanning made refresh rates seem twice as high.", + "link": "https://www.reddit.com/r/technews/comments/18xk01e/vizio_settles_for_3m_after_saying_60_hz_tvs_had/", + "pubDate": "2024-01-03T13:57:46.000Z", + "author": "/u/chrisdh79", + "content": "
\"Vizio submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18xk01e", + "isoDate": "2024-01-03T13:57:46.000Z" + }, + { + "title": "34 years later, a 13-year-old hits the NES Tetris \u201ckill screen\u201d | BlueScuti forces the game to crash after 40 minutes and 1,511 lines.", + "link": "https://www.reddit.com/r/technews/comments/18xhg9s/34_years_later_a_13yearold_hits_the_nes_tetris/", + "pubDate": "2024-01-03T11:40:35.000Z", + "author": "/u/chrisdh79", + "content": "
\"34 submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18xhg9s", + "isoDate": "2024-01-03T11:40:35.000Z" + }, + { + "title": "Pornhub blocks Montana and North Carolina as their age verification laws take effect | The website says the states' ID requirement would put users' privacy at risk", + "link": "https://www.reddit.com/r/technews/comments/18xhf6i/pornhub_blocks_montana_and_north_carolina_as/", + "pubDate": "2024-01-03T11:38:42.000Z", + "author": "/u/chrisdh79", + "content": "
\"Pornhub submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18xhf6i", + "isoDate": "2024-01-03T11:38:42.000Z" + }, + { + "title": "Samsung said to be planning human-free, fully automated fabs within six years", + "link": "https://www.reddit.com/r/technews/comments/18ybxit/samsung_said_to_be_planning_humanfree_fully/", + "pubDate": "2024-01-04T12:23:41.000Z", + "author": "/u/chrisdh79", + "content": "
\"Samsung submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ybxit", + "isoDate": "2024-01-04T12:23:41.000Z" + }, + { + "title": "Microsoft is adding a new key to PC keyboards for the first time since 1994 | Copilot key will eventually be required in new PC keyboards, though not yet.", + "link": "https://www.reddit.com/r/technews/comments/18yblso/microsoft_is_adding_a_new_key_to_pc_keyboards_for/", + "pubDate": "2024-01-04T12:05:32.000Z", + "author": "/u/chrisdh79", + "content": "
\"Microsoft submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18yblso", + "isoDate": "2024-01-04T12:05:32.000Z" + }, + { + "title": "U.S. delays re-imposing tariffs on Chinese goods, keeping graphics card prices stable for now | The deadline has been extended by five months", + "link": "https://www.reddit.com/r/technews/comments/18ye10v/us_delays_reimposing_tariffs_on_chinese_goods/", + "pubDate": "2024-01-04T14:09:00.000Z", + "author": "/u/chrisdh79", + "content": "
\"U.S. submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ye10v", + "isoDate": "2024-01-04T14:09:00.000Z" + }, + { + "title": "Millions still haven\u2019t patched Terrapin SSH protocol vulnerability", + "link": "https://www.reddit.com/r/technews/comments/18ydwyu/millions_still_havent_patched_terrapin_ssh/", + "pubDate": "2024-01-04T14:03:53.000Z", + "author": "/u/Sariel007", + "content": "
\"Millions submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_18ydwyu", + "isoDate": "2024-01-04T14:03:53.000Z" + }, + { + "title": "Starbucks accused of using dark patterns in its app to retain nearly $900 million | Akin to an \"involuntary subscription\"", + "link": "https://www.reddit.com/r/technews/comments/18z4xjw/starbucks_accused_of_using_dark_patterns_in_its/", + "pubDate": "2024-01-05T11:39:38.000Z", + "author": "/u/chrisdh79", + "content": "
\"Starbucks submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18z4xjw", + "isoDate": "2024-01-05T11:39:38.000Z" + }, + { + "title": "OpenAI boss Sam Altman says Muslims in tech world fear retaliation in speaking up", + "link": "https://www.reddit.com/r/technews/comments/18z3kqf/openai_boss_sam_altman_says_muslims_in_tech_world/", + "pubDate": "2024-01-05T10:12:16.000Z", + "author": "/u/reuters", + "content": " submitted by /u/reuters
[link] [comments]", + "contentSnippet": "submitted by /u/reuters \n [link] [comments]", + "id": "t3_18z3kqf", + "isoDate": "2024-01-05T10:12:16.000Z" + }, + { + "title": "macOS Info-Stealer Malware 'MetaStealer' Targeting Businesses", + "link": "https://www.reddit.com/r/technews/comments/18z23fj/macos_infostealer_malware_metastealer_targeting/", + "pubDate": "2024-01-05T08:32:00.000Z", + "author": "/u/wewewawa", + "content": "
\"macOS submitted by /u/wewewawa
[link] [comments]
", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_18z23fj", + "isoDate": "2024-01-05T08:32:00.000Z" + }, + { + "title": "US plans $162 million award to Microchip Technology to boost production", + "link": "https://www.reddit.com/r/technews/comments/18yxs2f/us_plans_162_million_award_to_microchip/", + "pubDate": "2024-01-05T04:19:43.000Z", + "author": "/u/reuters", + "content": " submitted by /u/reuters
[link] [comments]", + "contentSnippet": "submitted by /u/reuters \n [link] [comments]", + "id": "t3_18yxs2f", + "isoDate": "2024-01-05T04:19:43.000Z" + }, + { + "title": "Google broke labor laws when it refused to bargain with YouTube Music contract workers", + "link": "https://www.reddit.com/r/technews/comments/18yvd2j/google_broke_labor_laws_when_it_refused_to/", + "pubDate": "2024-01-05T02:21:13.000Z", + "author": "/u/chrisdh79", + "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18yvd2j", + "isoDate": "2024-01-05T02:21:13.000Z" + }, + { + "title": "Qualcomm next-gen XR chip promises up to 4.3K resolution per eye | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/18ys38a/qualcomm_nextgen_xr_chip_promises_up_to_43k/", + "pubDate": "2024-01-04T23:55:00.000Z", + "author": "/u/N2929", + "content": "
\"Qualcomm submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_18ys38a", + "isoDate": "2024-01-04T23:55:00.000Z" + }, + { + "title": "This startup is bringing a 'voice frequency absorber' to CES 2024 | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/18yr28x/this_startup_is_bringing_a_voice_frequency/", + "pubDate": "2024-01-04T23:11:35.000Z", + "author": "/u/N2929", + "content": "
\"This submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_18yr28x", + "isoDate": "2024-01-04T23:11:35.000Z" + }, + { + "title": "For just $139, this startup turns your iPhone into a BlackBerry-era relic | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/18yqyp2/for_just_139_this_startup_turns_your_iphone_into/", + "pubDate": "2024-01-04T23:07:26.000Z", + "author": "/u/N2929", + "content": "
\"For submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_18yqyp2", + "isoDate": "2024-01-04T23:07:26.000Z" + }, + { + "title": "23andMe told victims of data breach that suing is futile, letter shows", + "link": "https://www.reddit.com/r/technews/comments/18ymg4p/23andme_told_victims_of_data_breach_that_suing_is/", + "pubDate": "2024-01-04T20:04:04.000Z", + "author": "/u/chrisdh79", + "content": "
\"23andMe submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_18ymg4p", + "isoDate": "2024-01-04T20:04:04.000Z" + }, + { + "title": "Discord is laying off 17 percent of employees", + "link": "https://www.reddit.com/r/technews/comments/1949kpk/discord_is_laying_off_17_percent_of_employees/", + "pubDate": "2024-01-11T19:05:23.000Z", + "author": "/u/hangoverpho", + "content": "
\"Discord submitted by /u/hangoverpho
[link] [comments]
", + "contentSnippet": "submitted by /u/hangoverpho \n [link] [comments]", + "id": "t3_1949kpk", + "isoDate": "2024-01-11T19:05:23.000Z" + }, + { + "title": "Google challenges cloud rivals by making it free for customers to transfer data when they leave", + "link": "https://www.reddit.com/r/technews/comments/19474i4/google_challenges_cloud_rivals_by_making_it_free/", + "pubDate": "2024-01-11T17:26:31.000Z", + "author": "/u/thebelsnickle1991", + "content": "
\"Google submitted by /u/thebelsnickle1991
[link] [comments]
", + "contentSnippet": "submitted by /u/thebelsnickle1991 \n [link] [comments]", + "id": "t3_19474i4", + "isoDate": "2024-01-11T17:26:31.000Z" + }, + { + "title": "White House unveils $623m in funding to boost electric vehicle charging points", + "link": "https://www.reddit.com/r/technews/comments/1941hrh/white_house_unveils_623m_in_funding_to_boost/", + "pubDate": "2024-01-11T13:17:34.000Z", + "author": "/u/zsreport", + "content": "
\"White submitted by /u/zsreport
[link] [comments]
", + "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", + "id": "t3_1941hrh", + "isoDate": "2024-01-11T13:17:34.000Z" + }, + { + "title": "A Chinese professor used AI to write a science fiction novel. Then it was a winner in a national competition", + "link": "https://www.reddit.com/r/technews/comments/1940t1e/a_chinese_professor_used_ai_to_write_a_science/", + "pubDate": "2024-01-11T12:41:05.000Z", + "author": "/u/Maxie445", + "content": "
\"A submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_1940t1e", + "isoDate": "2024-01-11T12:41:05.000Z" + }, + { + "title": "A Volkswagen with ChatGPT told me a story about dinosaurs at CES 2024", + "link": "https://www.reddit.com/r/technews/comments/193yq7o/a_volkswagen_with_chatgpt_told_me_a_story_about/", + "pubDate": "2024-01-11T10:37:09.000Z", + "author": "/u/its_Safiullah", + "content": "
\"A submitted by /u/its_Safiullah
[link] [comments]
", + "contentSnippet": "submitted by /u/its_Safiullah \n [link] [comments]", + "id": "t3_193yq7o", + "isoDate": "2024-01-11T10:37:09.000Z" + }, + { + "title": "CES 2024 Day 3: 11 Awesome Gadgets You Need To See!", + "link": "https://www.reddit.com/r/technews/comments/193yp9g/ces_2024_day_3_11_awesome_gadgets_you_need_to_see/", + "pubDate": "2024-01-11T10:35:17.000Z", + "author": "/u/its_Safiullah", + "content": "
\"CES submitted by /u/its_Safiullah
[link] [comments]
", + "contentSnippet": "submitted by /u/its_Safiullah \n [link] [comments]", + "id": "t3_193yp9g", + "isoDate": "2024-01-11T10:35:17.000Z" + }, + { + "title": "OpenAI debuts ChatGPT subscription aimed at small teams", + "link": "https://www.reddit.com/r/technews/comments/193mw5y/openai_debuts_chatgpt_subscription_aimed_at_small/", + "pubDate": "2024-01-10T23:39:44.000Z", + "author": "/u/N2929", + "content": "
\"OpenAI submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_193mw5y", + "isoDate": "2024-01-10T23:39:44.000Z" + }, + { + "title": "Accesibility startup Augmental is working on head tracking and 'silent speech'", + "link": "https://www.reddit.com/r/technews/comments/193mv4u/accesibility_startup_augmental_is_working_on_head/", + "pubDate": "2024-01-10T23:38:29.000Z", + "author": "/u/N2929", + "content": "
\"Accesibility submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_193mv4u", + "isoDate": "2024-01-10T23:38:29.000Z" + }, + { + "title": "Brave Search can now deliver results for programming queries", + "link": "https://www.reddit.com/r/technews/comments/193mtv6/brave_search_can_now_deliver_results_for/", + "pubDate": "2024-01-10T23:36:57.000Z", + "author": "/u/N2929", + "content": "
\"Brave submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_193mtv6", + "isoDate": "2024-01-10T23:36:57.000Z" + }, + { + "title": "Zoe Care uses existing Wi-Fi signals to detect falls in care homes", + "link": "https://www.reddit.com/r/technews/comments/193msz0/zoe_care_uses_existing_wifi_signals_to_detect/", + "pubDate": "2024-01-10T23:35:50.000Z", + "author": "/u/N2929", + "content": "
\"Zoe submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_193msz0", + "isoDate": "2024-01-10T23:35:50.000Z" + }, + { + "title": "OpenAI launches a store for custom AI-powered chatbots", + "link": "https://www.reddit.com/r/technews/comments/193msfz/openai_launches_a_store_for_custom_aipowered/", + "pubDate": "2024-01-10T23:35:09.000Z", + "author": "/u/N2929", + "content": "
\"OpenAI submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_193msfz", + "isoDate": "2024-01-10T23:35:09.000Z" + }, + { + "title": "Intel\u2019s CPU branding was already confusing, and today\u2019s new CPUs made it worse", + "link": "https://www.reddit.com/r/technews/comments/193m49e/intels_cpu_branding_was_already_confusing_and/", + "pubDate": "2024-01-10T23:05:53.000Z", + "author": "/u/CrankyBear", + "content": "
\"Intel\u2019s submitted by /u/CrankyBear
[link] [comments]
", + "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", + "id": "t3_193m49e", + "isoDate": "2024-01-10T23:05:53.000Z" + }, + { + "title": "Scammy AI-Generated Book Rewrites Are Flooding Amazon", + "link": "https://www.reddit.com/r/technews/comments/194brxz/scammy_aigenerated_book_rewrites_are_flooding/", + "pubDate": "2024-01-11T20:36:42.000Z", + "author": "/u/ovirt001", + "content": "
\"Scammy submitted by /u/ovirt001
[link] [comments]
", + "contentSnippet": "submitted by /u/ovirt001 \n [link] [comments]", + "id": "t3_194brxz", + "isoDate": "2024-01-11T20:36:42.000Z" + }, + { + "title": "A US-Sanctioned Oligarch Ran Pro-Kremlin Ads on Facebook\u2014Again", + "link": "https://www.reddit.com/r/technews/comments/194bpzm/a_ussanctioned_oligarch_ran_prokremlin_ads_on/", + "pubDate": "2024-01-11T20:34:37.000Z", + "author": "/u/ovirt001", + "content": "
\"A submitted by /u/ovirt001
[link] [comments]
", + "contentSnippet": "submitted by /u/ovirt001 \n [link] [comments]", + "id": "t3_194bpzm", + "isoDate": "2024-01-11T20:34:37.000Z" + }, + { + "title": "FCC chair asks automakers about plans to stop abusers from using car electronics to stalk partners", + "link": "https://www.reddit.com/r/technews/comments/194u8dy/fcc_chair_asks_automakers_about_plans_to_stop/", + "pubDate": "2024-01-12T12:46:56.000Z", + "author": "/u/wewewawa", + "content": "
\"FCC submitted by /u/wewewawa
[link] [comments]
", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_194u8dy", + "isoDate": "2024-01-12T12:46:56.000Z" + }, + { + "title": "Data regulator fines HelloFresh \u00a3140k for sending 80M+ spams | Messaging menace used text and email to bombard people", + "link": "https://www.reddit.com/r/technews/comments/194tylh/data_regulator_fines_hellofresh_140k_for_sending/", + "pubDate": "2024-01-12T12:31:51.000Z", + "author": "/u/chrisdh79", + "content": "
\"Data submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_194tylh", + "isoDate": "2024-01-12T12:31:51.000Z" + }, + { + "title": "The once-secure profession of software engineer is under threat from AI and intense competition", + "link": "https://www.reddit.com/r/technews/comments/194tkhb/the_oncesecure_profession_of_software_engineer_is/", + "pubDate": "2024-01-12T12:09:24.000Z", + "author": "/u/chrisdh79", + "content": "
\"The submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_194tkhb", + "isoDate": "2024-01-12T12:09:24.000Z" + }, + { + "title": "Pimax Unveils Groundbreaking VR Innovations at CES 2024", + "link": "https://www.reddit.com/r/technews/comments/194rhn2/pimax_unveils_groundbreaking_vr_innovations_at/", + "pubDate": "2024-01-12T09:57:04.000Z", + "author": "/u/QuorraPimax", + "content": "
\"Pimax submitted by /u/QuorraPimax
[link] [comments]
", + "contentSnippet": "submitted by /u/QuorraPimax \n [link] [comments]", + "id": "t3_194rhn2", + "isoDate": "2024-01-12T09:57:04.000Z" + }, + { + "title": "Dexcom\u2019s new continuous glucose monitor is a health tech gadget with purpose", + "link": "https://www.reddit.com/r/technews/comments/194raia/dexcoms_new_continuous_glucose_monitor_is_a/", + "pubDate": "2024-01-12T09:42:56.000Z", + "author": "/u/N2929", + "content": "
\"Dexcom\u2019s submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194raia", + "isoDate": "2024-01-12T09:42:56.000Z" + }, + { + "title": "Wi-Fi 7 quietly took off while everyone was looking at AI", + "link": "https://www.reddit.com/r/technews/comments/194r8ra/wifi_7_quietly_took_off_while_everyone_was/", + "pubDate": "2024-01-12T09:39:41.000Z", + "author": "/u/N2929", + "content": "
\"Wi-Fi submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194r8ra", + "isoDate": "2024-01-12T09:39:41.000Z" + }, + { + "title": "Rabbit sells out two batches of 10,000 R1 pocket AI companions over two days", + "link": "https://www.reddit.com/r/technews/comments/194r6sg/rabbit_sells_out_two_batches_of_10000_r1_pocket/", + "pubDate": "2024-01-12T09:35:46.000Z", + "author": "/u/N2929", + "content": "
\"Rabbit submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194r6sg", + "isoDate": "2024-01-12T09:35:46.000Z" + }, + { + "title": "Hands-on: Sony\u2019s Afeela needs to be more than a feeling", + "link": "https://www.reddit.com/r/technews/comments/194r6hl/handson_sonys_afeela_needs_to_be_more_than_a/", + "pubDate": "2024-01-12T09:35:12.000Z", + "author": "/u/N2929", + "content": "
\"Hands-on: submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194r6hl", + "isoDate": "2024-01-12T09:35:12.000Z" + }, + { + "title": "Google confirms it just laid off around a thousand employees", + "link": "https://www.reddit.com/r/technews/comments/194qitm/google_confirms_it_just_laid_off_around_a/", + "pubDate": "2024-01-12T08:50:12.000Z", + "author": "/u/galaxyFighter0", + "content": "
\"Google submitted by /u/galaxyFighter0
[link] [comments]
", + "contentSnippet": "submitted by /u/galaxyFighter0 \n [link] [comments]", + "id": "t3_194qitm", + "isoDate": "2024-01-12T08:50:12.000Z" + }, + { + "title": "Samsung presents waterproof Galaxy Tab Active5 with 120 Hz display, S Pen, 5G and pogo pins", + "link": "https://www.reddit.com/r/technews/comments/194qfzm/samsung_presents_waterproof_galaxy_tab_active5/", + "pubDate": "2024-01-12T08:44:37.000Z", + "author": "/u/N2929", + "content": "
\"Samsung submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194qfzm", + "isoDate": "2024-01-12T08:44:37.000Z" + }, + { + "title": "After AI-generated \u2018George Carlin\u2019 routine, late comedian\u2019s daughter warns other entertainers: \u2018They\u2019re coming for you next\u2019", + "link": "https://www.reddit.com/r/technews/comments/194qeau/after_aigenerated_george_carlin_routine_late/", + "pubDate": "2024-01-12T08:41:13.000Z", + "author": "/u/Maxie445", + "content": "
\"After submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_194qeau", + "isoDate": "2024-01-12T08:41:13.000Z" + }, + { + "title": "Google to help build the first subsea cable directly connecting South America with Asia-Pacific | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/194q9nr/google_to_help_build_the_first_subsea_cable/", + "pubDate": "2024-01-12T08:31:46.000Z", + "author": "/u/N2929", + "content": "
\"Google submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194q9nr", + "isoDate": "2024-01-12T08:31:46.000Z" + }, + { + "title": "Polestar CEO promises to keep Apple CarPlay and Android Auto around | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/194q8fb/polestar_ceo_promises_to_keep_apple_carplay_and/", + "pubDate": "2024-01-12T08:29:30.000Z", + "author": "/u/N2929", + "content": "
\"Polestar submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194q8fb", + "isoDate": "2024-01-12T08:29:30.000Z" + }, + { + "title": "eBay to pay $3M over cyberstalking campaign that involved sending fetal pig, live insects to couple | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/194q773/ebay_to_pay_3m_over_cyberstalking_campaign_that/", + "pubDate": "2024-01-12T08:27:02.000Z", + "author": "/u/N2929", + "content": "
\"eBay submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194q773", + "isoDate": "2024-01-12T08:27:02.000Z" + }, + { + "title": "Google will allow more real-money games on the Play Store | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/194q6ub/google_will_allow_more_realmoney_games_on_the/", + "pubDate": "2024-01-12T08:26:19.000Z", + "author": "/u/N2929", + "content": "
\"Google submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194q6ub", + "isoDate": "2024-01-12T08:26:19.000Z" + }, + { + "title": "As Disney pushes toward streaming profitability, Pixar to undergo layoffs in 2024 | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/194q6gq/as_disney_pushes_toward_streaming_profitability/", + "pubDate": "2024-01-12T08:25:34.000Z", + "author": "/u/N2929", + "content": "
\"As submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194q6gq", + "isoDate": "2024-01-12T08:25:34.000Z" + }, + { + "title": "OpenAI-backed 1X raises another $100M for the race to humanoid robots | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/194q5f5/openaibacked_1x_raises_another_100m_for_the_race/", + "pubDate": "2024-01-12T08:23:39.000Z", + "author": "/u/N2929", + "content": "
\"OpenAI-backed submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_194q5f5", + "isoDate": "2024-01-12T08:23:39.000Z" + }, + { + "title": "Google lays off \u201chundreds\u201d more employees, strips Google Assistant features", + "link": "https://www.reddit.com/r/technews/comments/194oh0d/google_lays_off_hundreds_more_employees_strips/", + "pubDate": "2024-01-12T06:34:31.000Z", + "author": "/u/wewewawa", + "content": "
\"Google submitted by /u/wewewawa
[link] [comments]
", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_194oh0d", + "isoDate": "2024-01-12T06:34:31.000Z" + }, + { + "title": "Discord is laying off 17 percent of employees", + "link": "https://www.reddit.com/r/technews/comments/194nrtw/discord_is_laying_off_17_percent_of_employees/", + "pubDate": "2024-01-12T05:54:14.000Z", + "author": "/u/Abhi_mech007", + "content": "
\"Discord submitted by /u/Abhi_mech007
[link] [comments]
", + "contentSnippet": "submitted by /u/Abhi_mech007 \n [link] [comments]", + "id": "t3_194nrtw", + "isoDate": "2024-01-12T05:54:14.000Z" + }, + { + "title": "Microsoft's AI found a new material to replace li-ion batteries", + "link": "https://www.reddit.com/r/technews/comments/194hse2/microsofts_ai_found_a_new_material_to_replace/", + "pubDate": "2024-01-12T00:49:48.000Z", + "author": "/u/chrisdh79", + "content": "
\"Microsoft's submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_194hse2", + "isoDate": "2024-01-12T00:49:48.000Z" + }, + { + "title": "UK to make Big Tech give rivals access to data under new plans", + "link": "https://www.reddit.com/r/technews/comments/194gish/uk_to_make_big_tech_give_rivals_access_to_data/", + "pubDate": "2024-01-11T23:52:53.000Z", + "author": "/u/Sariel007", + "content": " submitted by /u/Sariel007
[link] [comments]", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_194gish", + "isoDate": "2024-01-11T23:52:53.000Z" + }, + { + "title": "Sundar Pichai warns Google staff more layoffs are coming", + "link": "https://www.reddit.com/r/technews/comments/199ni3v/sundar_pichai_warns_google_staff_more_layoffs_are/", + "pubDate": "2024-01-18T10:53:42.000Z", + "author": "/u/dotnip818", + "content": "
\"Sundar submitted by /u/dotnip818
[link] [comments]
", + "contentSnippet": "submitted by /u/dotnip818 \n [link] [comments]", + "id": "t3_199ni3v", + "isoDate": "2024-01-18T10:53:42.000Z" + }, + { + "title": "How social media algorithms 'flatten' our culture by making decisions for us", + "link": "https://www.reddit.com/r/technews/comments/199n09x/how_social_media_algorithms_flatten_our_culture/", + "pubDate": "2024-01-18T10:20:56.000Z", + "author": "/u/mrcanard", + "content": "
\"How submitted by /u/mrcanard
[link] [comments]
", + "contentSnippet": "submitted by /u/mrcanard \n [link] [comments]", + "id": "t3_199n09x", + "isoDate": "2024-01-18T10:20:56.000Z" + }, + { + "title": "Search engine results are getting worse, research confirms", + "link": "https://www.reddit.com/r/technews/comments/199ld81/search_engine_results_are_getting_worse_research/", + "pubDate": "2024-01-18T08:23:52.000Z", + "author": "/u/edfosho1", + "content": "
\"Search submitted by /u/edfosho1
[link] [comments]
", + "contentSnippet": "submitted by /u/edfosho1 \n [link] [comments]", + "id": "t3_199ld81", + "isoDate": "2024-01-18T08:23:52.000Z" + }, + { + "title": "Google DeepMind co-founder Mustafa Suleyman warns AI is a \"fundamentally labor replacing\" tool over the long term", + "link": "https://www.reddit.com/r/technews/comments/199jerv/google_deepmind_cofounder_mustafa_suleyman_warns/", + "pubDate": "2024-01-18T06:14:17.000Z", + "author": "/u/Maxie445", + "content": "
\"Google submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_199jerv", + "isoDate": "2024-01-18T06:14:17.000Z" + }, + { + "title": "How 'sleeper agent' AI assistants can sabotage your code without you realizing. Today's safety guardrails won't catch these backdoors, study warns.", + "link": "https://www.reddit.com/r/technews/comments/199cy34/how_sleeper_agent_ai_assistants_can_sabotage_your/", + "pubDate": "2024-01-18T00:44:51.000Z", + "author": "/u/Sariel007", + "content": "
\"How submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_199cy34", + "isoDate": "2024-01-18T00:44:51.000Z" + }, + { + "title": "Cable firms to FTC: We shouldn\u2019t have to let users cancel service with a click | Customers may \"misunderstand the consequences of canceling,\" cable lobby says.", + "link": "https://www.reddit.com/r/technews/comments/199c5ec/cable_firms_to_ftc_we_shouldnt_have_to_let_users/", + "pubDate": "2024-01-18T00:09:46.000Z", + "author": "/u/chrisdh79", + "content": "
\"Cable submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_199c5ec", + "isoDate": "2024-01-18T00:09:46.000Z" + }, + { + "title": "Apple's Vision Pro Won't Launch With Netflix App", + "link": "https://www.reddit.com/r/technews/comments/1999bed/apples_vision_pro_wont_launch_with_netflix_app/", + "pubDate": "2024-01-17T22:09:40.000Z", + "author": "/u/s1n0d3utscht3k", + "content": "
\"Apple's submitted by /u/s1n0d3utscht3k
[link] [comments]
", + "contentSnippet": "submitted by /u/s1n0d3utscht3k \n [link] [comments]", + "id": "t3_1999bed", + "isoDate": "2024-01-17T22:09:40.000Z" + }, + { + "title": "OpenAI must defend ChatGPT fabrications after failing to defeat libel suit", + "link": "https://www.reddit.com/r/technews/comments/1997tyl/openai_must_defend_chatgpt_fabrications_after/", + "pubDate": "2024-01-17T21:09:25.000Z", + "author": "/u/hata39", + "content": " submitted by /u/hata39
[link] [comments]", + "contentSnippet": "submitted by /u/hata39 \n [link] [comments]", + "id": "t3_1997tyl", + "isoDate": "2024-01-17T21:09:25.000Z" + }, + { + "title": "Court bars US imports of Apple watches that read blood-oxygen levels", + "link": "https://www.reddit.com/r/technews/comments/1997sqd/court_bars_us_imports_of_apple_watches_that_read/", + "pubDate": "2024-01-17T21:08:00.000Z", + "author": "/u/reuters", + "content": " submitted by /u/reuters
[link] [comments]", + "contentSnippet": "submitted by /u/reuters \n [link] [comments]", + "id": "t3_1997sqd", + "isoDate": "2024-01-17T21:08:00.000Z" + }, + { + "title": "A \u2018Shocking\u2019 Amount of the Web Is Already AI-Translated Trash, Scientists Determine", + "link": "https://www.reddit.com/r/technews/comments/1993cax/a_shocking_amount_of_the_web_is_already/", + "pubDate": "2024-01-17T18:11:43.000Z", + "author": "/u/777fer", + "content": "
\"A submitted by /u/777fer
[link] [comments]
", + "contentSnippet": "submitted by /u/777fer \n [link] [comments]", + "id": "t3_1993cax", + "isoDate": "2024-01-17T18:11:43.000Z" + }, + { + "title": "'It hasn't delivered': The spectacular failure of self-checkout technology", + "link": "https://www.reddit.com/r/technews/comments/1992xfg/it_hasnt_delivered_the_spectacular_failure_of/", + "pubDate": "2024-01-17T17:55:41.000Z", + "author": "/u/CrankyBear", + "content": "
\"'It submitted by /u/CrankyBear
[link] [comments]
", + "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", + "id": "t3_1992xfg", + "isoDate": "2024-01-17T17:55:41.000Z" + }, + { + "title": "Google now admits it could collect data in Chrome's Incognito mode | The company updated its disclaimer after settling a lawsuit accusing it of tracking Incognito users.", + "link": "https://www.reddit.com/r/technews/comments/198v2zt/google_now_admits_it_could_collect_data_in/", + "pubDate": "2024-01-17T12:08:15.000Z", + "author": "/u/chrisdh79", + "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_198v2zt", + "isoDate": "2024-01-17T12:08:15.000Z" + }, + { + "title": "Big tech firms recklessly pursuing profits from AI, says UN head: International community has no strategy to deal with risks", + "link": "https://www.reddit.com/r/technews/comments/198v2yj/big_tech_firms_recklessly_pursuing_profits_from/", + "pubDate": "2024-01-17T12:08:11.000Z", + "author": "/u/Maxie445", + "content": "
\"Big submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_198v2yj", + "isoDate": "2024-01-17T12:08:11.000Z" + }, + { + "title": "TSMC delays 3nm Arizona fab by a year, cites lack of U.S. subsidies and waning demand", + "link": "https://www.reddit.com/r/technews/comments/199unx6/tsmc_delays_3nm_arizona_fab_by_a_year_cites_lack/", + "pubDate": "2024-01-18T16:53:40.000Z", + "author": "/u/chrisdh79", + "content": "
\"TSMC submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_199unx6", + "isoDate": "2024-01-18T16:53:40.000Z" + }, + { + "title": "Google CEO tells employees to expect more job cuts this year", + "link": "https://www.reddit.com/r/technews/comments/199qwqr/google_ceo_tells_employees_to_expect_more_job/", + "pubDate": "2024-01-18T14:06:17.000Z", + "author": "/u/wewewawa", + "content": " submitted by /u/wewewawa
[link] [comments]", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_199qwqr", + "isoDate": "2024-01-18T14:06:17.000Z" + }, + { + "title": "Pope calls for treaty regulating AI, warning of potential for \u2018technological dictatorship\u2019", + "link": "https://www.reddit.com/r/technews/comments/19aefj0/pope_calls_for_treaty_regulating_ai_warning_of/", + "pubDate": "2024-01-19T08:30:06.000Z", + "author": "/u/Maxie445", + "content": "
\"Pope submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_19aefj0", + "isoDate": "2024-01-19T08:30:06.000Z" + }, + { + "title": "Google DeepMind cofounder says AI can act like an entrepreneur and inventor in the next five years", + "link": "https://www.reddit.com/r/technews/comments/19abvzf/google_deepmind_cofounder_says_ai_can_act_like_an/", + "pubDate": "2024-01-19T05:44:10.000Z", + "author": "/u/Maxie445", + "content": "
\"Google submitted by /u/Maxie445
[link] [comments]
", + "contentSnippet": "submitted by /u/Maxie445 \n [link] [comments]", + "id": "t3_19abvzf", + "isoDate": "2024-01-19T05:44:10.000Z" + }, + { + "title": "1 in 4 CEOs planning to replace workers with AI this year, according to recent poll", + "link": "https://www.reddit.com/r/technews/comments/19abosx/1_in_4_ceos_planning_to_replace_workers_with_ai/", + "pubDate": "2024-01-19T05:32:45.000Z", + "author": "/u/PsychoComet", + "content": "
\"1 submitted by /u/PsychoComet
[link] [comments]
", + "contentSnippet": "submitted by /u/PsychoComet \n [link] [comments]", + "id": "t3_19abosx", + "isoDate": "2024-01-19T05:32:45.000Z" + }, + { + "title": "Microsoft makes its AI-powered reading tutor free | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/19a8q03/microsoft_makes_its_aipowered_reading_tutor_free/", + "pubDate": "2024-01-19T02:56:02.000Z", + "author": "/u/N2929", + "content": "
\"Microsoft submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_19a8q03", + "isoDate": "2024-01-19T02:56:02.000Z" + }, + { + "title": "iOS 17.3 Allows iPhones to Connect to Some Hotel Room TVs via AirPlay", + "link": "https://www.reddit.com/r/technews/comments/19a8pj4/ios_173_allows_iphones_to_connect_to_some_hotel/", + "pubDate": "2024-01-19T02:55:19.000Z", + "author": "/u/N2929", + "content": "
\"iOS submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_19a8pj4", + "isoDate": "2024-01-19T02:55:19.000Z" + }, + { + "title": "US sanctions will keep China 10 years behind on chipmaking, Intel CEO says", + "link": "https://www.reddit.com/r/technews/comments/19a7xmg/us_sanctions_will_keep_china_10_years_behind_on/", + "pubDate": "2024-01-19T02:16:47.000Z", + "author": "/u/chrisdh79", + "content": "
\"US submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_19a7xmg", + "isoDate": "2024-01-19T02:16:47.000Z" + }, + { + "title": "Amazon Wants You to Start Paying for Alexa", + "link": "https://www.reddit.com/r/technews/comments/19a57bd/amazon_wants_you_to_start_paying_for_alexa/", + "pubDate": "2024-01-19T00:08:54.000Z", + "author": "/u/wewewawa", + "content": "
\"Amazon submitted by /u/wewewawa
[link] [comments]
", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_19a57bd", + "isoDate": "2024-01-19T00:08:54.000Z" + }, + { + "title": "YouTube and Spotify Won\u2019t Launch Apple Vision Pro Apps, Joining Netflix", + "link": "https://www.reddit.com/r/technews/comments/19a396u/youtube_and_spotify_wont_launch_apple_vision_pro/", + "pubDate": "2024-01-18T22:45:00.000Z", + "author": "/u/s1n0d3utscht3k", + "content": "
\"YouTube submitted by /u/s1n0d3utscht3k
[link] [comments]
", + "contentSnippet": "submitted by /u/s1n0d3utscht3k \n [link] [comments]", + "id": "t3_19a396u", + "isoDate": "2024-01-18T22:45:00.000Z" + }, + { + "title": "Ayaneo\u2019s latest mini PC looks just like an old-school NES", + "link": "https://www.reddit.com/r/technews/comments/19a1y8o/ayaneos_latest_mini_pc_looks_just_like_an/", + "pubDate": "2024-01-18T21:51:06.000Z", + "author": "/u/N2929", + "content": "
\"Ayaneo\u2019s submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_19a1y8o", + "isoDate": "2024-01-18T21:51:06.000Z" + }, + { + "title": "Samsung\u2019s Galaxy S24 is first to be able to upload HDR photos to Instagram", + "link": "https://www.reddit.com/r/technews/comments/19a1uc2/samsungs_galaxy_s24_is_first_to_be_able_to_upload/", + "pubDate": "2024-01-18T21:46:33.000Z", + "author": "/u/N2929", + "content": "
\"Samsung\u2019s submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_19a1uc2", + "isoDate": "2024-01-18T21:46:33.000Z" + }, + { + "title": "Google reveals $1bn UK data centre it says will create jobs and 'boost growth of AI'", + "link": "https://www.reddit.com/r/technews/comments/199zbkj/google_reveals_1bn_uk_data_centre_it_says_will/", + "pubDate": "2024-01-18T20:04:20.000Z", + "author": "/u/Franco1875", + "content": "
\"Google submitted by /u/Franco1875
[link] [comments]
", + "contentSnippet": "submitted by /u/Franco1875 \n [link] [comments]", + "id": "t3_199zbkj", + "isoDate": "2024-01-18T20:04:20.000Z" + }, + { + "title": "Mark Zuckerberg\u2019s new goal is creating artificial general intelligence", + "link": "https://www.reddit.com/r/technews/comments/199z7nf/mark_zuckerbergs_new_goal_is_creating_artificial/", + "pubDate": "2024-01-18T20:00:08.000Z", + "author": "/u/donutloop", + "content": "
\"Mark submitted by /u/donutloop
[link] [comments]
", + "contentSnippet": "submitted by /u/donutloop \n [link] [comments]", + "id": "t3_199z7nf", + "isoDate": "2024-01-18T20:00:08.000Z" + }, + { + "title": "\u200b\u200bA brain-dead man was attached to a gene-edited pig liver for three days", + "link": "https://www.reddit.com/r/technews/comments/199wua3/a_braindead_man_was_attached_to_a_geneedited_pig/", + "pubDate": "2024-01-18T18:23:03.000Z", + "author": "/u/Sariel007", + "content": "
\"\u200b\u200bA submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_199wua3", + "isoDate": "2024-01-18T18:23:03.000Z" + }, + { + "title": "Google lays off \u201chundreds\u201d more as ad division switches to AI-powered sales. Googlers are now building AI tools so other Googlers can be laid off.", + "link": "https://www.reddit.com/r/technews/comments/199whx6/google_lays_off_hundreds_more_as_ad_division/", + "pubDate": "2024-01-18T18:09:07.000Z", + "author": "/u/Sariel007", + "content": "
\"Google submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_199whx6", + "isoDate": "2024-01-18T18:09:07.000Z" + }, + { + "title": "For truckers driving EVs, there\u2019s no going back", + "link": "https://www.reddit.com/r/technews/comments/199vq8t/for_truckers_driving_evs_theres_no_going_back/", + "pubDate": "2024-01-18T17:37:41.000Z", + "author": "/u/CrankyBear", + "content": "
\"For submitted by /u/CrankyBear
[link] [comments]
", + "contentSnippet": "submitted by /u/CrankyBear \n [link] [comments]", + "id": "t3_199vq8t", + "isoDate": "2024-01-18T17:37:41.000Z" + }, + { + "title": "Novelist Scoops Literary Prize\u2014Then Reveals She Used ChatGPT", + "link": "https://www.reddit.com/r/technews/comments/19ahd44/novelist_scoops_literary_prizethen_reveals_she/", + "pubDate": "2024-01-19T11:51:05.000Z", + "author": "/u/PsychoComet", + "content": "
\"Novelist submitted by /u/PsychoComet
[link] [comments]
", + "contentSnippet": "submitted by /u/PsychoComet \n [link] [comments]", + "id": "t3_19ahd44", + "isoDate": "2024-01-19T11:51:05.000Z" + }, + { + "title": "A transforming robot is about to land on the moon, where it will die", + "link": "https://www.reddit.com/r/technews/comments/19ahchg/a_transforming_robot_is_about_to_land_on_the_moon/", + "pubDate": "2024-01-19T11:50:00.000Z", + "author": "/u/zsreport", + "content": "
\"A submitted by /u/zsreport
[link] [comments]
", + "contentSnippet": "submitted by /u/zsreport \n [link] [comments]", + "id": "t3_19ahchg", + "isoDate": "2024-01-19T11:50:00.000Z" + }, + { + "title": "Donated bodies are powering gene-edited organ research", + "link": "https://www.reddit.com/r/technews/comments/19ak3m2/donated_bodies_are_powering_geneedited_organ/", + "pubDate": "2024-01-19T14:17:11.000Z", + "author": "/u/Sariel007", + "content": "
\"Donated submitted by /u/Sariel007
[link] [comments]
", + "contentSnippet": "submitted by /u/Sariel007 \n [link] [comments]", + "id": "t3_19ak3m2", + "isoDate": "2024-01-19T14:17:11.000Z" + }, + { + "title": "X is rolling out audio and video calls to Android | TechCrunch", + "link": "https://www.reddit.com/r/technews/comments/19ajkoq/x_is_rolling_out_audio_and_video_calls_to_android/", + "pubDate": "2024-01-19T13:52:19.000Z", + "author": "/u/Abhi_mech007", + "content": "
\"X submitted by /u/Abhi_mech007
[link] [comments]
", + "contentSnippet": "submitted by /u/Abhi_mech007 \n [link] [comments]", + "id": "t3_19ajkoq", + "isoDate": "2024-01-19T13:52:19.000Z" + }, + { + "title": "US immigration enforcement used an AI-powered tool to scan social media posts \"derogatory\" to the US | \"The government should not be using algorithms to scrutinize our social media posts\"", + "link": "https://www.reddit.com/r/technews/comments/17hkkkt/us_immigration_enforcement_used_an_aipowered_tool/", + "pubDate": "2023-10-27T10:33:45.000Z", + "author": "/u/chrisdh79", + "content": "
\"US submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17hkkkt", + "isoDate": "2023-10-27T10:33:45.000Z" + }, + { + "title": "BP buys $100 million worth of Tesla chargers", + "link": "https://www.reddit.com/r/technews/comments/17hgnfw/bp_buys_100_million_worth_of_tesla_chargers/", + "pubDate": "2023-10-27T05:45:20.000Z", + "author": "/u/wewewawa", + "content": "
\"BP submitted by /u/wewewawa
[link] [comments]
", + "contentSnippet": "submitted by /u/wewewawa \n [link] [comments]", + "id": "t3_17hgnfw", + "isoDate": "2023-10-27T05:45:20.000Z" + }, + { + "title": "OpenAI forms team to study 'catastrophic' AI risks, including nuclear threats", + "link": "https://www.reddit.com/r/technews/comments/17h4pq0/openai_forms_team_to_study_catastrophic_ai_risks/", + "pubDate": "2023-10-26T19:40:14.000Z", + "author": "/u/N2929", + "content": "
\"OpenAI submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_17h4pq0", + "isoDate": "2023-10-26T19:40:14.000Z" + }, + { + "title": "PlayStation 5 supply issues finally fixed after three years, says Sony", + "link": "https://www.reddit.com/r/technews/comments/17h1zal/playstation_5_supply_issues_finally_fixed_after/", + "pubDate": "2023-10-26T17:39:21.000Z", + "author": "/u/hawlc", + "content": "
\"PlayStation submitted by /u/hawlc
[link] [comments]
", + "contentSnippet": "submitted by /u/hawlc \n [link] [comments]", + "id": "t3_17h1zal", + "isoDate": "2023-10-26T17:39:21.000Z" + }, + { + "title": "Memory chip maker SK Hynix, a shareholder of Kioxia, opposes a merger with Western Digital", + "link": "https://www.reddit.com/r/technews/comments/17h12up/memory_chip_maker_sk_hynix_a_shareholder_of/", + "pubDate": "2023-10-26T16:58:22.000Z", + "author": "/u/N2929", + "content": "
\"Memory submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_17h12up", + "isoDate": "2023-10-26T16:58:22.000Z" + }, + { + "title": "Amazon's virtual health clinic can now treat patients for a cough, cold or flu", + "link": "https://www.reddit.com/r/technews/comments/17h11u7/amazons_virtual_health_clinic_can_now_treat/", + "pubDate": "2023-10-26T16:57:05.000Z", + "author": "/u/N2929", + "content": "
\"Amazon's submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_17h11u7", + "isoDate": "2023-10-26T16:57:05.000Z" + }, + { + "title": "Google Maps is getting new AI-powered search updates, an enhanced navigation interface and more", + "link": "https://www.reddit.com/r/technews/comments/17h112o/google_maps_is_getting_new_aipowered_search/", + "pubDate": "2023-10-26T16:56:02.000Z", + "author": "/u/N2929", + "content": "
\"Google submitted by /u/N2929
[link] [comments]
", + "contentSnippet": "submitted by /u/N2929 \n [link] [comments]", + "id": "t3_17h112o", + "isoDate": "2023-10-26T16:56:02.000Z" + }, + { + "title": "Google is building a subsea cable linking the US to Australia | Google cable will also connect the Pacific Islands to US and Australia", + "link": "https://www.reddit.com/r/technews/comments/17gyfi3/google_is_building_a_subsea_cable_linking_the_us/", + "pubDate": "2023-10-26T14:58:31.000Z", + "author": "/u/chrisdh79", + "content": "
\"Google submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17gyfi3", + "isoDate": "2023-10-26T14:58:31.000Z" + }, + { + "title": "Privacy advocate challenges YouTube's ad blocking detection scripts under EU law", + "link": "https://www.reddit.com/r/technews/comments/17gwtl3/privacy_advocate_challenges_youtubes_ad_blocking/", + "pubDate": "2023-10-26T13:42:04.000Z", + "author": "/u/chrisdh79", + "content": "
\"Privacy submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17gwtl3", + "isoDate": "2023-10-26T13:42:04.000Z" + }, + { + "title": "Microsoft Word Is 40 Years Young and Here to Make You Feel Old", + "link": "https://www.reddit.com/r/technews/comments/17hogis/microsoft_word_is_40_years_young_and_here_to_make/", + "pubDate": "2023-10-27T14:12:25.000Z", + "author": "/u/chrisdh79", + "content": "
\"Microsoft submitted by /u/chrisdh79
[link] [comments]
", + "contentSnippet": "submitted by /u/chrisdh79 \n [link] [comments]", + "id": "t3_17hogis", + "isoDate": "2023-10-27T14:12:25.000Z" + } +] diff --git a/intro to react/newData/oldNews/d3c9a46f4e5f61e202114b1a3f606a4a13d5aa3e0091618e5304faae87ce08b4.json b/intro to react/newData/oldNews/d3c9a46f4e5f61e202114b1a3f606a4a13d5aa3e0091618e5304faae87ce08b4.json index ea84c43..6bc9641 100644 --- a/intro to react/newData/oldNews/d3c9a46f4e5f61e202114b1a3f606a4a13d5aa3e0091618e5304faae87ce08b4.json +++ b/intro to react/newData/oldNews/d3c9a46f4e5f61e202114b1a3f606a4a13d5aa3e0091618e5304faae87ce08b4.json @@ -1,16670 +1,14112 @@ [ - { - "creator": "Holly Evans,Maanya Sachdeva,Tom Murray and Kevin E G Perry", - "date": "2023-11-30T23:27:42+00:00", - "title": "Shane MacGowan dead - latest: Pogues singer known for Fairytale of New York dies as tributes paid", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/shane-macgowan-pogues-death-singer-b2456118.html", - "pubDate": "Thu, 30 Nov 2023 23:27:42 GMT", - "dc:creator": "Holly Evans,Maanya Sachdeva,Tom Murray and Kevin E G Perry", - "dc:date": "2023-11-30T23:27:42+00:00", - "content": "

His death comes one week after he was discharged from hospital

", - "contentSnippet": "His death comes one week after he was discharged from hospital", - "guid": "b2456118", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-11-30T23:27:42.000Z" - }, - { - "creator": "Tom Krisher", - "date": "2023-11-30T23:26:33+00:00", - "title": "Tesla delivers 13 stainless steel Cybertruck pickups as it tries to work out production problems", - "link": "https://www.independent.co.uk/news/tesla-cybertruck-pickup-elon-musk-b2456522.html", - "pubDate": "Thu, 30 Nov 2023 23:26:33 GMT", - "dc:creator": "Tom Krisher", - "dc:date": "2023-11-30T23:26:33+00:00", - "content": "With manufacturing kinks still to be worked out, Tesla has delivered the first dozen or so of its futuristic Cybertruck pickups to customers", - "contentSnippet": "With manufacturing kinks still to be worked out, Tesla has delivered the first dozen or so of its futuristic Cybertruck pickups to customers", - "guid": "b2456522", - "isoDate": "2023-11-30T23:26:33.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-11-30T23:23:18+00:00", - "title": "Simon Calder delivers verdict on rail disruption this winter", - "link": "https://www.independent.co.uk/tv/news/rail-strikes-news-december-simon-calder-b2456521.html", - "pubDate": "Thu, 30 Nov 2023 23:23:18 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-11-30T23:23:18+00:00", - "content": "

Watch The Independent\u2019s Travel correspondent, Simon Calder, deliver his verdict on the train strikes coming this winter and how they might affect you.

", - "contentSnippet": "Watch The Independent\u2019s Travel correspondent, Simon Calder, deliver his verdict on the train strikes coming this winter and how they might affect you.", - "guid": "b2456521", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-11-30T23:23:18.000Z" - }, - { - "creator": "Holly Evans", - "date": "2023-11-30T23:21:15+00:00", - "title": "Omid Scobie refuses to apologise over Endgame \u2018error\u2019 as Dutch translator breaks silence - latest", - "link": "https://www.independent.co.uk/life-style/royal-family/royals-dutch-endgame-omid-scobie-piers-morgan-b2455926.html", - "pubDate": "Thu, 30 Nov 2023 23:21:15 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2023-11-30T23:21:15+00:00", - "content": "

\u2018It\u2019s not for me to apologise,\u2019 says author Omid Scobie

", - "contentSnippet": "\u2018It\u2019s not for me to apologise,\u2019 says author Omid Scobie", - "guid": "b2455926", - "categories": [ - "Royal Family", - "Lifestyle" - ], - "isoDate": "2023-11-30T23:21:15.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2023-11-30T23:14:42+00:00", - "title": "Unusual \u2018pancake\u2019 ice phenomenon covers lake in Wisconsin as temperatures drop", - "link": "https://www.independent.co.uk/tv/news/weather-wisconsin-ice-lake-pancake-b2456268.html", - "pubDate": "Thu, 30 Nov 2023 23:14:42 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2023-11-30T23:14:42+00:00", - "content": "

Unusual ice \"pancakes\" formed on top of Lake Superior in northern Wisconsin on Tuesday, 28 November, video shows.

", - "contentSnippet": "Unusual ice \"pancakes\" formed on top of Lake Superior in northern Wisconsin on Tuesday, 28 November, video shows.", - "guid": "b2456268", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-11-30T23:14:42.000Z" - }, - { - "creator": "Bevan Hurley", - "date": "2023-11-30T23:14:37+00:00", - "title": "Florida GOP chair accused of rape by woman he and wife were reportedly having affair with", - "link": "https://www.the-independent.com/news/world/americas/crime/christian-ziegler-florida-moms-for-liberty-b2456473.html", - "pubDate": "Thu, 30 Nov 2023 23:14:37 GMT", - "dc:creator": "Bevan Hurley", - "dc:date": "2023-11-30T23:14:37+00:00", - "content": "

\u2018As leaders in the Florida GOP and Moms for Liberty, the Zieglers have made a habit out of attacking anything they perceive as going against \u2018family values\u2019,\u2019 Florida Democratic Party chair Nikki Fried says

", - "contentSnippet": "\u2018As leaders in the Florida GOP and Moms for Liberty, the Zieglers have made a habit out of attacking anything they perceive as going against \u2018family values\u2019,\u2019 Florida Democratic Party chair Nikki Fried says", - "guid": "b2456473", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-11-30T23:14:37.000Z" - }, - { - "creator": "John Bowden", - "date": "2023-11-30T23:09:51+00:00", - "title": "Arizona GOP officials charged with refusing to certify 2022 election results", - "link": "https://www.the-independent.com/news/world/americas/us-politics/gop-arizona-election-fraud-charges-b2456516.html", - "pubDate": "Thu, 30 Nov 2023 23:09:51 GMT", - "dc:creator": "John Bowden", - "dc:date": "2023-11-30T23:09:51+00:00", - "content": "

Two Republicans face twin felony counts stemming from 2022 dispute

", - "contentSnippet": "Two Republicans face twin felony counts stemming from 2022 dispute", - "guid": "b2456516", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-11-30T23:09:51.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-11-30T23:08:49+00:00", - "title": "Pro-Palestine students protest at Canada school board meeting forcing trustees to walk out", - "link": "https://www.independent.co.uk/tv/news/propalestine-students-protest-canada-b2456517.html", - "pubDate": "Thu, 30 Nov 2023 23:08:49 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-11-30T23:08:49+00:00", - "content": "

Pro-Palestinian demonstrators broke up a school board meeting in Ontario on Wednesday 29 November.

", - "contentSnippet": "Pro-Palestinian demonstrators broke up a school board meeting in Ontario on Wednesday 29 November.", - "guid": "b2456517", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-11-30T23:08:49.000Z" - }, - { - "creator": "Graeme Massie and Michelle Del Rey", - "date": "2023-11-30T23:07:45+00:00", - "title": "Jonathan Majors jury selected in assault trial: Live", - "link": "https://www.independent.co.uk/news/world/americas/jonathan-majors-trial-domestic-violence-meagan-good-b2455966.html", - "pubDate": "Thu, 30 Nov 2023 23:07:45 GMT", - "dc:creator": "Graeme Massie and Michelle Del Rey", - "dc:date": "2023-11-30T23:07:45+00:00", - "content": "

Marvel actor\u2019s girlfriend Meagan Good is standing by him as trial begins

", - "contentSnippet": "Marvel actor\u2019s girlfriend Meagan Good is standing by him as trial begins", - "guid": "b2455966", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T23:07:45.000Z" - }, - { - "creator": "Andrea Blanco and Ariana Baio", - "date": "2023-11-30T23:07:00+00:00", - "title": "Henry Kissinger: A life in pictures", - "link": "https://www.independent.co.uk/news/world/americas/henry-kissinger-death-pictures-life-b2456202.html", - "pubDate": "Thu, 30 Nov 2023 23:07:00 GMT", - "dc:creator": "Andrea Blanco and Ariana Baio", - "dc:date": "2023-11-30T23:07:00+00:00", - "content": "

The death of Kissinger, hailed by many as the architect of American foreign policy, was announced on Wednesday. Andrea Blanco and Ariana Baio report

", - "contentSnippet": "The death of Kissinger, hailed by many as the architect of American foreign policy, was announced on Wednesday. Andrea Blanco and Ariana Baio report", - "guid": "b2456202", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T23:07:00.000Z" - }, - { - "creator": "Isobel Lewis", - "date": "2023-11-30T23:03:37+00:00", - "title": "Sam Thompson admits fears about ADHD and parenthood on I\u2019m a Celebrity", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/sam-thompson-adhd-zara-mcdermott-b2456504.html", - "pubDate": "Thu, 30 Nov 2023 23:03:37 GMT", - "dc:creator": "Isobel Lewis", - "dc:date": "2023-11-30T23:03:37+00:00", - "content": "

\u2018Made in Chelsea\u2019 star was diagnosed with behavioural disorder aged 30

", - "contentSnippet": "\u2018Made in Chelsea\u2019 star was diagnosed with behavioural disorder aged 30", - "guid": "b2456504", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-11-30T23:03:37.000Z" - }, - { - "creator": "Roisin O'Connor", - "date": "2023-11-30T23:03:00+00:00", - "title": "Renaissance: A Film by Beyonc\u00e9: Concert film shows a level of perfectionism beyond any other artist", - "link": "https://www.independent.co.uk/arts-entertainment/music/reviews/beyonce-renaissance-film-review-tour-setlist-b2456225.html", - "pubDate": "Thu, 30 Nov 2023 23:03:00 GMT", - "dc:creator": "Roisin O'Connor", - "dc:date": "2023-11-30T23:03:00+00:00", - "content": "

Everything appears flawless, but the US pop titan offers a behind-the-scenes look at just how much work that takes

", - "contentSnippet": "Everything appears flawless, but the US pop titan offers a behind-the-scenes look at just how much work that takes", - "guid": "b2456225", - "categories": [ - "Reviews", - "Music", - "Culture" - ], - "isoDate": "2023-11-30T23:03:00.000Z" - }, - { - "creator": "Nick Mashiter", - "date": "2023-11-30T23:01:48+00:00", - "title": "Unai Emery eager to top group after Aston Villa reach ECL knockout stages", - "link": "https://www.independent.co.uk/sport/football/aston-villa-legia-warsaw-unai-emery-europa-conference-league-villa-b2456519.html", - "pubDate": "Thu, 30 Nov 2023 23:01:48 GMT", - "dc:creator": "Nick Mashiter", - "dc:date": "2023-11-30T23:01:48+00:00", - "content": "Villa moved top of Group E after victory over Legia Warsaw.", - "contentSnippet": "Villa moved top of Group E after victory over Legia Warsaw.", - "guid": "b2456519", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T23:01:48.000Z" - }, - { - "creator": "Oliver O'Connell and Alex Woodward", - "date": "2023-11-30T23:01:18+00:00", - "title": "Trump hits out at judge\u2019s wife as fraud trial gag order reinstated: Live", - "link": "https://www.independent.co.uk/news/world/americas/donald-trump-news-today-sebastian-stan-latest-b2455990.html", - "pubDate": "Thu, 30 Nov 2023 23:01:18 GMT", - "dc:creator": "Oliver O'Connell and Alex Woodward", - "dc:date": "2023-11-30T23:01:18+00:00", - "content": "

Justice Arthur Engoron and his principal law clerk were subjected to \u2018hundreds of threats\u2019 after former president\u2019s Truth Social posts, now Trump lashes out at judge\u2019s wife

", - "contentSnippet": "Justice Arthur Engoron and his principal law clerk were subjected to \u2018hundreds of threats\u2019 after former president\u2019s Truth Social posts, now Trump lashes out at judge\u2019s wife", - "guid": "b2455990", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T23:01:18.000Z" - }, - { - "creator": "Andy Sims", - "date": "2023-11-30T23:00:13+00:00", - "title": "Tomas Soucek snatches late winner for West Ham in otherwise uneventful clash in Serbia", - "link": "https://www.independent.co.uk/sport/football/west-ham-tomas-soucek-serbia-said-benrahma-david-moyes-b2456424.html", - "pubDate": "Thu, 30 Nov 2023 23:00:13 GMT", - "dc:creator": "Andy Sims", - "dc:date": "2023-11-30T23:00:13+00:00", - "content": "

The Czech midfielder has now scored in his last five matches for club and country

", - "contentSnippet": "The Czech midfielder has now scored in his last five matches for club and country", - "guid": "b2456424", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T23:00:13.000Z" - }, - { - "creator": "Graeme Massie,Maroosha Muzaffar,Rachel Sharp and Ariana Baio", - "date": "2023-11-30T22:59:20+00:00", - "title": "Biden says he \u2018often strongly\u2019 disagreed with Kissinger after diplomat\u2019s death: Latest", - "link": "https://www.independent.co.uk/news/world/americas/henry-kissinger-dead-age-cause-of-death-controversy-b2455941.html", - "pubDate": "Thu, 30 Nov 2023 22:59:20 GMT", - "dc:creator": "Graeme Massie,Maroosha Muzaffar,Rachel Sharp and Ariana Baio", - "dc:date": "2023-11-30T22:59:20+00:00", - "content": "

Henry Kissinger leaves behind a complex legacy, remembered as a master of global politics by some and an alleged war criminal by others

", - "contentSnippet": "Henry Kissinger leaves behind a complex legacy, remembered as a master of global politics by some and an alleged war criminal by others", - "guid": "b2455941", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T22:59:20.000Z" - }, - { - "creator": "Ed Elliot", - "date": "2023-11-30T22:58:24+00:00", - "title": "Joao Pedro penalty sends Brighton through to Europa League knockout stages in unconvincing victory", - "link": "https://www.independent.co.uk/sport/football/brighton-europa-league-var-domagoj-vida-marseille-b2456423.html", - "pubDate": "Thu, 30 Nov 2023 22:58:24 GMT", - "dc:creator": "Ed Elliot", - "dc:date": "2023-11-30T22:58:24+00:00", - "content": "

Pedro netted his fifth goal of the competition to guarantee the Seagulls a top-two finish in Group B

", - "contentSnippet": "Pedro netted his fifth goal of the competition to guarantee the Seagulls a top-two finish in Group B", - "guid": "b2456423", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:58:24.000Z" - }, - { - "creator": "Richard Jolly", - "date": "2023-11-30T22:57:09+00:00", - "title": "Liverpool\u2019s Europa League job is done, but Mohamed Salah remains agonisingly short of a key milestone", - "link": "https://www.independent.co.uk/sport/football/liverpool-mohamed-salah-europa-league-result-b2456482.html", - "pubDate": "Thu, 30 Nov 2023 22:57:09 GMT", - "dc:creator": "Richard Jolly", - "dc:date": "2023-11-30T22:57:09+00:00", - "content": "

Liverpool 4-0 LASK: Mohamed Salah is just one goal away from joining the coveted 200 club at Liverpool

", - "contentSnippet": "Liverpool 4-0 LASK: Mohamed Salah is just one goal away from joining the coveted 200 club at Liverpool", - "guid": "b2456482", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:57:09.000Z" - }, - { - "creator": "Nick Mashiter", - "date": "2023-11-30T22:54:57+00:00", - "title": "Aston Villa progress in Europa Conference League but match overshadowed by fan violence", - "link": "https://www.independent.co.uk/sport/football/aston-villa-legia-warsaw-europa-conference-league-youri-tielemans-villarreal-b2456485.html", - "pubDate": "Thu, 30 Nov 2023 22:54:57 GMT", - "dc:creator": "Nick Mashiter", - "dc:date": "2023-11-30T22:54:57+00:00", - "content": "

Villa moved top of Group E after victory over Legia Warsaw

", - "contentSnippet": "Villa moved top of Group E after victory over Legia Warsaw", - "guid": "b2456485", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:54:57.000Z" - }, - { - "creator": "Alex Woodward", - "date": "2023-11-30T22:54:08+00:00", - "title": "Trump immediately attacks judge\u2019s wife after gag order reinstated in fraud trial", - "link": "https://www.the-independent.com/news/world/americas/us-politics/trump-arthur-engoron-wife-gag-order-b2456499.html", - "pubDate": "Thu, 30 Nov 2023 22:54:08 GMT", - "dc:creator": "Alex Woodward", - "dc:date": "2023-11-30T22:54:08+00:00", - "content": "

A recent court filing warned that credible threats from the former president\u2019s attacks posed an \u2018ongoing security risk\u2019 for the judge, his staff and family

", - "contentSnippet": "A recent court filing warned that credible threats from the former president\u2019s attacks posed an \u2018ongoing security risk\u2019 for the judge, his staff and family", - "guid": "b2456499", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-11-30T22:54:08.000Z" - }, - { - "creator": "Michael Goldberg", - "date": "2023-11-30T22:52:45+00:00", - "title": "Mississippi Supreme Court delays decision on whether to set execution date for man on death row", - "link": "https://www.independent.co.uk/news/ap-jackson-mississippi-attorney-general-fbi-b2456513.html", - "pubDate": "Thu, 30 Nov 2023 22:52:45 GMT", - "dc:creator": "Michael Goldberg", - "dc:date": "2023-11-30T22:52:45+00:00", - "content": "The Mississippi Supreme Court has temporarily delayed ruling on whether to set an execution date for a man on death row for capital murder", - "contentSnippet": "The Mississippi Supreme Court has temporarily delayed ruling on whether to set an execution date for a man on death row for capital murder", - "guid": "b2456513", - "isoDate": "2023-11-30T22:52:45.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2023-11-30T22:50:57+00:00", - "title": "Liverpool, Brighton and West Ham all secure place in the Europa League knockout stages", - "link": "https://www.independent.co.uk/sport/football/liverpool-brighton-west-ham-europa-league-b2456508.html", - "pubDate": "Thu, 30 Nov 2023 22:50:57 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2023-11-30T22:50:57+00:00", - "content": "

Brighton, West Ham and Liverpool all qualified from their Europa League groups

", - "contentSnippet": "Brighton, West Ham and Liverpool all qualified from their Europa League groups", - "guid": "b2456508", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:50:57.000Z" - }, - { - "creator": "Jonel Aleccia", - "date": "2023-11-30T22:50:53+00:00", - "title": "Don't eat pre-cut cantaloupe if the source is unknown, CDC says, as deadly salmonella outbreak grows", - "link": "https://www.independent.co.uk/news/consumers-ap-cdc-trader-joes-canada-b2456512.html", - "pubDate": "Thu, 30 Nov 2023 22:50:53 GMT", - "dc:creator": "Jonel Aleccia", - "dc:date": "2023-11-30T22:50:53+00:00", - "content": "U.S. health officials say consumers should not eat pre-cut cantaloupe if they don\u2019t know the source", - "contentSnippet": "U.S. health officials say consumers should not eat pre-cut cantaloupe if they don\u2019t know the source", - "guid": "b2456512", - "isoDate": "2023-11-30T22:50:53.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-11-30T22:50:17+00:00", - "title": "Cop28 president and oil executive opens climate conference", - "link": "https://www.independent.co.uk/tv/news/cop28-sultan-al-jaber-climate-action-b2456429.html", - "pubDate": "Thu, 30 Nov 2023 22:50:17 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-11-30T22:50:17+00:00", - "content": "

Sultan al-Jaber, CEO of one of the world\u2019s largest oil companies and Cop28 president, opened the climate conference in the United Arab Emirates on Thursday, 30 November.

", - "contentSnippet": "Sultan al-Jaber, CEO of one of the world\u2019s largest oil companies and Cop28 president, opened the climate conference in the United Arab Emirates on Thursday, 30 November.", - "guid": "b2456429", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-11-30T22:50:17.000Z" - }, - { - "creator": "Roisin O'Connor,Nicole Vassell and Inga Parkel", - "date": "2023-11-30T22:49:36+00:00", - "title": "Beyonc\u00e9\u2019s Renaissance \u2013 live: Inside the London premiere of her record-breaking world tour", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/beyonce-renaissance-london-live-red-carpet-b2456107.html", - "pubDate": "Thu, 30 Nov 2023 22:49:36 GMT", - "dc:creator": "Roisin O'Connor,Nicole Vassell and Inga Parkel", - "dc:date": "2023-11-30T22:49:36+00:00", - "content": "

US star premiered the concert film about her record-breaking 2023 tour

", - "contentSnippet": "US star premiered the concert film about her record-breaking 2023 tour", - "guid": "b2456107", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-11-30T22:49:36.000Z" - }, - { - "creator": "Andrea Cavallier", - "date": "2023-11-30T22:48:55+00:00", - "title": "Lori Vallow seen in new mug shot after \u2018very chatty\u2019 extradition trip to Arizona", - "link": "https://www.the-independent.com/news/world/americas/crime/lori-vallow-mugshot-murder-trial-b2456259.html", - "pubDate": "Thu, 30 Nov 2023 22:48:55 GMT", - "dc:creator": "Andrea Cavallier", - "dc:date": "2023-11-30T22:48:55+00:00", - "content": "

Lori faces charges of conspiring to kill her fourth husband Charles Vallow in Arizona

", - "contentSnippet": "Lori faces charges of conspiring to kill her fourth husband Charles Vallow in Arizona", - "guid": "b2456259", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-11-30T22:48:55.000Z" - }, - { - "creator": "Graeme Massie", - "date": "2023-11-30T22:43:04+00:00", - "title": "Social justice charity founder killed in LA home invasion", - "link": "https://www.the-independent.com/news/world/americas/crime/latt-home-invasion-shooting-death-b2456389.html", - "pubDate": "Thu, 30 Nov 2023 22:43:04 GMT", - "dc:creator": "Graeme Massie", - "dc:date": "2023-11-30T22:43:04+00:00", - "content": "

Prosecutors say Michael Latt targetted because he was friend of woman allegedly stalked by suspect

", - "contentSnippet": "Prosecutors say Michael Latt targetted because he was friend of woman allegedly stalked by suspect", - "guid": "b2456389", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-11-30T22:43:04.000Z" - }, - { - "creator": "Patrick Daly", - "date": "2023-11-30T22:40:32+00:00", - "title": "A Labour government would consider new powers to prevent \u2018banking deserts\u2019", - "link": "https://www.independent.co.uk/money/a-labour-government-would-consider-new-powers-to-prevent-banking-deserts-b2456498.html", - "pubDate": "Thu, 30 Nov 2023 22:40:32 GMT", - "dc:creator": "Patrick Daly", - "dc:date": "2023-11-30T22:40:32+00:00", - "content": "Shadow chancellor Rachel Reeves said her party wants to ensure \u2018every community has access to high street banking services\u2019.", - "contentSnippet": "Shadow chancellor Rachel Reeves said her party wants to ensure \u2018every community has access to high street banking services\u2019.", - "guid": "b2456498", - "categories": [ - "Money" - ], - "isoDate": "2023-11-30T22:40:32.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-11-30T22:33:49+00:00", - "title": "White lion cubs born in Venezuela with less than 200 left in the world", - "link": "https://www.independent.co.uk/tv/news/white-lion-cubs-venezuela-b2456480.html", - "pubDate": "Thu, 30 Nov 2023 22:33:49 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-11-30T22:33:49+00:00", - "content": "

Three white lion cubs were born in Venezuela on Wednesday 29 November.

", - "contentSnippet": "Three white lion cubs were born in Venezuela on Wednesday 29 November.", - "guid": "b2456480", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-11-30T22:33:49.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2023-11-30T22:32:08+00:00", - "title": "College football player dies after collapsing during team weights session", - "link": "https://www.independent.co.uk/news/world/americas/reed-ryan-college-football-cardiac-arrest-b2456459.html", - "pubDate": "Thu, 30 Nov 2023 22:32:08 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2023-11-30T22:32:08+00:00", - "content": "

A college football player has died at the age of 22, a week after suffering a cardiac arrest during a team weights session.

", - "contentSnippet": "A college football player has died at the age of 22, a week after suffering a cardiac arrest during a team weights session.", - "guid": "b2456459", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T22:32:08.000Z" - }, - { - "creator": "Larry Neumeister", - "date": "2023-11-30T22:30:17+00:00", - "title": "US prosecutors say plots to assassinate Sikh leaders were part of a campaign of planned killings", - "link": "https://www.independent.co.uk/news/ap-hardeep-singh-nijjar-india-sikh-new-york-b2456505.html", - "pubDate": "Thu, 30 Nov 2023 22:30:17 GMT", - "dc:creator": "Larry Neumeister", - "dc:date": "2023-11-30T22:30:17+00:00", - "content": "Law enforcement authorities say in court papers that the plot driven by a government official in India to assassinate a prominent Sikh separatist leader in New York City was meant to precede another killing in California and more assassinations in the U.S. and Canada", - "contentSnippet": "Law enforcement authorities say in court papers that the plot driven by a government official in India to assassinate a prominent Sikh separatist leader in New York City was meant to precede another killing in California and more assassinations in the U.S. and Canada", - "guid": "b2456505", - "isoDate": "2023-11-30T22:30:17.000Z" - }, - { - "creator": "David Hughes", - "date": "2023-11-30T22:30:00+00:00", - "title": "Starmer: Transition to net zero can \u2018turbo-charge growth\u2019", - "link": "https://www.independent.co.uk/business/starmer-transition-to-net-zero-can-turbocharge-growth-b2456497.html", - "pubDate": "Thu, 30 Nov 2023 22:30:00 GMT", - "dc:creator": "David Hughes", - "dc:date": "2023-11-30T22:30:00+00:00", - "content": "Labour leader Sir Keir Starmer is in Dubai for the Cop28 climate summit.", - "contentSnippet": "Labour leader Sir Keir Starmer is in Dubai for the Cop28 climate summit.", - "guid": "b2456497", - "categories": [ - "Business" - ], - "isoDate": "2023-11-30T22:30:00.000Z" - }, - { - "creator": "Wayne Parry", - "date": "2023-11-30T22:27:23+00:00", - "title": "Casino workers seethe as smoking ban bill is delayed yet again in New Jersey Legislature", - "link": "https://www.independent.co.uk/news/world/americas/atlantic-city-ap-trenton-phil-murphy-democratic-b2456502.html", - "pubDate": "Thu, 30 Nov 2023 22:27:23 GMT", - "dc:creator": "Wayne Parry", - "dc:date": "2023-11-30T22:27:23+00:00", - "content": "A bill that would end smoking in Atlantic City's casinos continues to go nowhere", - "contentSnippet": "A bill that would end smoking in Atlantic City's casinos continues to go nowhere", - "guid": "b2456502", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T22:27:23.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-11-30T22:26:37+00:00", - "title": "Mom convicted of killing kids in Idaho taken to Arizona in murder conspiracy case", - "link": "https://www.independent.co.uk/news/ap-arizona-idaho-chad-daybell-phoenix-b2456501.html", - "pubDate": "Thu, 30 Nov 2023 22:26:37 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-11-30T22:26:37+00:00", - "content": "A woman is in an Arizona jail facing charges in a killing after she was sentenced to life in an Idaho prison for murdering her two youngest children and another woman", - "contentSnippet": "A woman is in an Arizona jail facing charges in a killing after she was sentenced to life in an Idaho prison for murdering her two youngest children and another woman", - "guid": "b2456501", - "isoDate": "2023-11-30T22:26:37.000Z" - }, - { - "creator": "Scott Bauer", - "date": "2023-11-30T22:23:47+00:00", - "title": "Unions in Wisconsin sue to reverse collective bargaining restrictions on teachers, others", - "link": "https://www.independent.co.uk/news/wisconsin-ap-scott-walker-unions-republican-b2456494.html", - "pubDate": "Thu, 30 Nov 2023 22:23:47 GMT", - "dc:creator": "Scott Bauer", - "dc:date": "2023-11-30T22:23:47+00:00", - "content": "Seven unions representing teachers and other public workers in Wisconsin have filed a lawsuit attempting to end the state\u2019s near-total ban on collective bargaining for most public employees", - "contentSnippet": "Seven unions representing teachers and other public workers in Wisconsin have filed a lawsuit attempting to end the state\u2019s near-total ban on collective bargaining for most public employees", - "guid": "b2456494", - "isoDate": "2023-11-30T22:23:47.000Z" - }, - { - "creator": "Freida Frisaro and David Fischer", - "date": "2023-11-30T22:20:13+00:00", - "title": "Hurricane season that saw storms from California to Nova Scotia ends Thursday", - "link": "https://www.independent.co.uk/news/ap-southern-california-nova-scotia-fort-lauderdale-national-hurricane-center-b2456496.html", - "pubDate": "Thu, 30 Nov 2023 22:20:13 GMT", - "dc:creator": "Freida Frisaro and David Fischer", - "dc:date": "2023-11-30T22:20:13+00:00", - "content": "A busy Atlantic hurricane season is now coming to a close", - "contentSnippet": "A busy Atlantic hurricane season is now coming to a close", - "guid": "b2456496", - "isoDate": "2023-11-30T22:20:13.000Z" - }, - { - "creator": "Mead Gruver", - "date": "2023-11-30T22:20:07+00:00", - "title": "Family of Marine killed in Afghanistan fails to win lawsuit against Alec Baldwin", - "link": "https://www.independent.co.uk/news/ap-alec-baldwin-family-wyo-afghanistan-b2456495.html", - "pubDate": "Thu, 30 Nov 2023 22:20:07 GMT", - "dc:creator": "Mead Gruver", - "dc:date": "2023-11-30T22:20:07+00:00", - "content": "A lawsuit against Alec Baldwin filed by relatives of a U.S. Marine killed in Afghanistan has been resolved in the actor's favor", - "contentSnippet": "A lawsuit against Alec Baldwin filed by relatives of a U.S. Marine killed in Afghanistan has been resolved in the actor's favor", - "guid": "b2456495", - "isoDate": "2023-11-30T22:20:07.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2023-11-30T22:20:07+00:00", - "title": "Tiger Woods admits Hero World Challenge comeback comes at a cost", - "link": "https://www.independent.co.uk/sport/golf/tiger-woods-hero-world-challenge-golf-return-b2456490.html", - "pubDate": "Thu, 30 Nov 2023 22:20:07 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2023-11-30T22:20:07+00:00", - "content": "

", - "contentSnippet": "", - "guid": "b2456490", - "categories": [ - "Golf", - "Sport" - ], - "isoDate": "2023-11-30T22:20:07.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-11-30T22:18:08+00:00", - "title": "Sen. Rand Paul performed Heimlich maneuver on choking Sen. Joni Ernst during GOP lunch", - "link": "https://www.independent.co.uk/news/joni-ernst-ap-rand-paul-washington-gop-b2456492.html", - "pubDate": "Thu, 30 Nov 2023 22:18:08 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-11-30T22:18:08+00:00", - "content": "Sen. Joni Ernst, a Republican from Iowa, was choking on food during a luncheon when fellow Republican Sen. Rand Paul of Kentucky performed the Heimlich maneuver on her", - "contentSnippet": "Sen. Joni Ernst, a Republican from Iowa, was choking on food during a luncheon when fellow Republican Sen. Rand Paul of Kentucky performed the Heimlich maneuver on her", - "guid": "b2456492", - "isoDate": "2023-11-30T22:18:08.000Z" - }, - { - "creator": "Maryam Zakir-Hussain", - "date": "2023-11-30T22:14:27+00:00", - "title": "Dutch translator of Omid Scobie\u2019s Endgame denies making error: \u2018The names were there in black and white\u2019", - "link": "https://www.independent.co.uk/news/uk/home-news/endgame-royal-racism-row-dutch-translator-b2456475.html", - "pubDate": "Thu, 30 Nov 2023 22:14:27 GMT", - "dc:creator": "Maryam Zakir-Hussain", - "dc:date": "2023-11-30T22:14:27+00:00", - "content": "

Royal author Omid Scobie insists he never submitted a book with names in it as Endgame fallout continues

", - "contentSnippet": "Royal author Omid Scobie insists he never submitted a book with names in it as Endgame fallout continues", - "guid": "b2456475", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-11-30T22:14:27.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-11-30T22:13:34+00:00", - "title": "I\u2019m A Celeb: Sam Thompson opens up about ADHD diagnosis", - "link": "https://www.independent.co.uk/tv/lifestyle/adhd-sam-thompson-diagnosis-b2456478.html", - "pubDate": "Thu, 30 Nov 2023 22:13:34 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-11-30T22:13:34+00:00", - "content": "

I\u2019m a Celebrity\u2019s Sam Thompson opened up on being diagnosed with ADHD as an adult and how it\u2019s affected him.

", - "contentSnippet": "I\u2019m a Celebrity\u2019s Sam Thompson opened up on being diagnosed with ADHD as an adult and how it\u2019s affected him.", - "guid": "b2456478", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2023-11-30T22:13:34.000Z" - }, - { - "creator": "Carl Markham", - "date": "2023-11-30T22:11:29+00:00", - "title": "Mohamed Salah closes in on 200 club as Liverpool confirm top spot", - "link": "https://www.independent.co.uk/sport/football/mohamed-salah-liverpool-jurgen-klopp-luis-diaz-joe-gomez-b2456484.html", - "pubDate": "Thu, 30 Nov 2023 22:11:29 GMT", - "dc:creator": "Carl Markham", - "dc:date": "2023-11-30T22:11:29+00:00", - "content": "The Reds eased to a 4-0 Europa League victory against LASK at Anfield.", - "contentSnippet": "The Reds eased to a 4-0 Europa League victory against LASK at Anfield.", - "guid": "b2456484", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:11:29.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-11-30T22:10:08+00:00", - "title": "Facebook parent Meta sues the FTC claiming 'unconstitutional authority' in child privacy case", - "link": "https://www.independent.co.uk/news/meta-ap-ftc-facebook-menlo-park-b2456489.html", - "pubDate": "Thu, 30 Nov 2023 22:10:08 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-11-30T22:10:08+00:00", - "content": "The parent company of Instagram and Facebook has sued the Federal Trade Commission in an attempt to stop the agency from reopening a 2020 privacy settlement with the company that would prohibit it from profiting from data it collects on users under 18", - "contentSnippet": "The parent company of Instagram and Facebook has sued the Federal Trade Commission in an attempt to stop the agency from reopening a 2020 privacy settlement with the company that would prohibit it from profiting from data it collects on users under 18", - "guid": "b2456489", - "isoDate": "2023-11-30T22:10:08.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-11-30T22:06:03+00:00", - "title": "Taylor Swift attends Beyonce\u2019s \u2018Renaissance\u2019 World Tour film premiere in London", - "link": "https://www.independent.co.uk/tv/culture/taylor-swift-beyonce-renaissance-b2456483.html", - "pubDate": "Thu, 30 Nov 2023 22:06:03 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-11-30T22:06:03+00:00", - "content": "

Taylor Swift attended Beyonce\u2019s \u2018Renaissance\u2019 World Tour film premiere in London on Thursday 30 November.

", - "contentSnippet": "Taylor Swift attended Beyonce\u2019s \u2018Renaissance\u2019 World Tour film premiere in London on Thursday 30 November.", - "guid": "b2456483", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-11-30T22:06:03.000Z" - }, - { - "creator": "Gustaf Kilander", - "date": "2023-11-30T22:04:30+00:00", - "title": "George Santos decries \u2018bullying\u2019 ahead of expulsion vote: Latest", - "link": "https://www.independent.co.uk/news/world/americas/george-santos-news-vote-expulsion-latest-b2455996.html", - "pubDate": "Thu, 30 Nov 2023 22:04:30 GMT", - "dc:creator": "Gustaf Kilander", - "dc:date": "2023-11-30T22:04:30+00:00", - "content": "

Republicans unlikely to back Democratic resolution to oust 35-year-old, instead looking to GOP Ethics panel chair to take action

", - "contentSnippet": "Republicans unlikely to back Democratic resolution to oust 35-year-old, instead looking to GOP Ethics panel chair to take action", - "guid": "b2455996", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T22:04:30.000Z" - }, - { - "creator": "Graig Graziosi", - "date": "2023-11-30T22:02:13+00:00", - "title": "McCarthy says Gaetz \u2018belongs in jail\u2019 in latest spat between Republican enemies", - "link": "https://www.the-independent.com/news/world/americas/us-politics/kevin-mccarthy-matt-gaetz-jail-republicans-b2456469.html", - "pubDate": "Thu, 30 Nov 2023 22:02:13 GMT", - "dc:creator": "Graig Graziosi", - "dc:date": "2023-11-30T22:02:13+00:00", - "content": "

Mr McCarthy may be considering resigning from Congress, according to a recent report

", - "contentSnippet": "Mr McCarthy may be considering resigning from Congress, according to a recent report", - "guid": "b2456469", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-11-30T22:02:13.000Z" - }, - { - "creator": "Amber Raiken", - "date": "2023-11-30T22:01:29+00:00", - "title": "Beyonc\u00e9 honours late uncle with release of Renaissance film on Aids Day", - "link": "https://www.independent.co.uk/life-style/beyonce-renaissance-film-aids-day-b2456365.html", - "pubDate": "Thu, 30 Nov 2023 22:01:29 GMT", - "dc:creator": "Amber Raiken", - "dc:date": "2023-11-30T22:01:29+00:00", - "content": "

Concert film is hitting theatres on 1 December

", - "contentSnippet": "Concert film is hitting theatres on 1 December", - "guid": "b2456365", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-11-30T22:01:29.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-11-30T21:58:59+00:00", - "title": "Cockpit voice recordings get erased after some close calls. The FAA will try to fix that", - "link": "https://www.independent.co.uk/news/faa-ap-washington-american-airlines-delta-air-lines-b2456481.html", - "pubDate": "Thu, 30 Nov 2023 21:58:59 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-11-30T21:58:59+00:00", - "content": "Federal officials say they will give investigators a better tool for understanding accidents and close calls between planes", - "contentSnippet": "Federal officials say they will give investigators a better tool for understanding accidents and close calls between planes", - "guid": "b2456481", - "isoDate": "2023-11-30T21:58:59.000Z" - }, - { - "creator": "Sheila Flynn", - "date": "2023-11-30T21:57:32+00:00", - "title": "Taylor Swift\u2019s biggest fans: Meet the Swifties in Spotify\u2019s top .001% of listeners", - "link": "https://www.independent.co.uk/news/world/americas/taylor-swift-spotify-wrapped-travis-kelce-b2456368.html", - "pubDate": "Thu, 30 Nov 2023 21:57:32 GMT", - "dc:creator": "Sheila Flynn", - "dc:date": "2023-11-30T21:57:32+00:00", - "content": "

The top tier of listeners of the top-streamed artist spent more than two-thirds of the year streaming Taylor Swift on Spotify, reports Sheila Flynn

", - "contentSnippet": "The top tier of listeners of the top-streamed artist spent more than two-thirds of the year streaming Taylor Swift on Spotify, reports Sheila Flynn", - "guid": "b2456368", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T21:57:32.000Z" - }, - { - "creator": "Jane Dalton", - "date": "2023-11-30T21:55:49+00:00", - "title": "UK weather \u2013 live: Temperatures plunge below zero as big freeze set to bring snow and ice", - "link": "https://www.independent.co.uk/weather/snow-forecast-uk-weather-met-office-b2455964.html", - "pubDate": "Thu, 30 Nov 2023 21:55:49 GMT", - "dc:creator": "Jane Dalton", - "dc:date": "2023-11-30T21:55:49+00:00", - "content": "

Severe weather warnings in place as rough sleepers offered emergency beds

", - "contentSnippet": "Severe weather warnings in place as rough sleepers offered emergency beds", - "guid": "b2455964", - "categories": [ - "Weather" - ], - "isoDate": "2023-11-30T21:55:49.000Z" - }, - { - "creator": "Anthony Cuthbertson", - "date": "2023-11-30T21:46:32+00:00", - "title": "Google issues final warning to Gmail account holders", - "link": "https://www.independent.co.uk/tech/gmail-account-warning-google-deadline-b2452371.html", - "pubDate": "Thu, 30 Nov 2023 21:46:32 GMT", - "dc:creator": "Anthony Cuthbertson", - "dc:date": "2023-11-30T21:46:32+00:00", - "content": "

Users warned that documents, emails and photos are all at risk of mass purge

", - "contentSnippet": "Users warned that documents, emails and photos are all at risk of mass purge", - "guid": "b2452371", - "categories": [ - "Tech" - ], - "isoDate": "2023-11-30T21:46:32.000Z" - }, - { - "creator": "Gabriela Selser", - "date": "2023-11-30T21:44:59+00:00", - "title": "A new study says about half of Nicaragua's population wants to emigrate", - "link": "https://www.independent.co.uk/news/ap-daniel-ortega-nicaragua-mexico-city-americas-b2456479.html", - "pubDate": "Thu, 30 Nov 2023 21:44:59 GMT", - "dc:creator": "Gabriela Selser", - "dc:date": "2023-11-30T21:44:59+00:00", - "content": "A new study says that about half of Nicaragua's population of 6.2 million want to leave their homeland because of a mix of economic decline and repression from President Daniel Ortega's government", - "contentSnippet": "A new study says that about half of Nicaragua's population of 6.2 million want to leave their homeland because of a mix of economic decline and repression from President Daniel Ortega's government", - "guid": "b2456479", - "isoDate": "2023-11-30T21:44:59.000Z" - }, - { - "creator": "Olivia Hebert", - "date": "2023-11-30T21:40:59+00:00", - "title": "Kelly Clarkson\u2019s ex-husband Brandon Blackstock must pay her after overcharging her as manager", - "link": "https://www.independent.co.uk/life-style/kelly-clarkson-ex-husband-manager-brandon-blackstock-b2456353.html", - "pubDate": "Thu, 30 Nov 2023 21:40:59 GMT", - "dc:creator": "Olivia Hebert", - "dc:date": "2023-11-30T21:40:59+00:00", - "content": "

Singer\u2019s ex-husband and former manager has been ordered to return more than $2m to her

", - "contentSnippet": "Singer\u2019s ex-husband and former manager has been ordered to return more than $2m to her", - "guid": "b2456353", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-11-30T21:40:59.000Z" - }, - { - "creator": "Tom Bennett", - "date": "2023-11-30T21:39:49+00:00", - "title": "More Hamas hostages released from inside Gaza \u2013 with Palestinians in Israeli prisons also set to be freed", - "link": "https://www.independent.co.uk/news/world/middle-east/israel-hamas-hostages-gaza-jerusalem-b2456386.html", - "pubDate": "Thu, 30 Nov 2023 21:39:49 GMT", - "dc:creator": "Tom Bennett", - "dc:date": "2023-11-30T21:39:49+00:00", - "content": "

Latest exchange comes after shooting in Jerusalem \u2013 claimed by Hamas \u2013 that killed three. One of those wounded says he feels \u2018lucky\u2019 to be alive

", - "contentSnippet": "Latest exchange comes after shooting in Jerusalem \u2013 claimed by Hamas \u2013 that killed three. One of those wounded says he feels \u2018lucky\u2019 to be alive", - "guid": "b2456386", - "categories": [ - "Middle East", - "World" - ], - "isoDate": "2023-11-30T21:39:49.000Z" - }, - { - "creator": "Ed Elliot", - "date": "2023-11-30T21:39:10+00:00", - "title": "You\u2019ve got to dream big: Lewis Dunk eyes Europa League glory with Brighton", - "link": "https://www.independent.co.uk/sport/football/lewis-dunk-europa-league-marseille-greek-league-one-b2456476.html", - "pubDate": "Thu, 30 Nov 2023 21:39:10 GMT", - "dc:creator": "Ed Elliot", - "dc:date": "2023-11-30T21:39:10+00:00", - "content": "Albion have guaranteed a top-two finish in Group B with a game to spare.", - "contentSnippet": "Albion have guaranteed a top-two finish in Group B with a game to spare.", - "guid": "b2456476", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T21:39:10.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-11-30T21:38:05+00:00", - "title": "Police injured by Legia Warsaw fans ahead of game at Aston Villa", - "link": "https://www.independent.co.uk/tv/sport/aston-villa-legia-warsaw-fans-police-b2456472.html", - "pubDate": "Thu, 30 Nov 2023 21:38:05 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-11-30T21:38:05+00:00", - "content": "

Three police officers have reportedly been injured outside Villa Park after missiles were thrown at them by Legia Warsaw fans on Thursday 30 November.

", - "contentSnippet": "Three police officers have reportedly been injured outside Villa Park after missiles were thrown at them by Legia Warsaw fans on Thursday 30 November.", - "guid": "b2456472", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2023-11-30T21:38:05.000Z" - }, - { - "creator": "Darlene Superville", - "date": "2023-11-30T21:36:42+00:00", - "title": "Biden gets a chance to bring holiday spirit to Washington by lighting the National Christmas Tree", - "link": "https://www.independent.co.uk/news/joe-biden-ap-washington-kamala-harris-doug-emhoff-b2456477.html", - "pubDate": "Thu, 30 Nov 2023 21:36:42 GMT", - "dc:creator": "Darlene Superville", - "dc:date": "2023-11-30T21:36:42+00:00", - "content": "President Joe Biden is getting a turn at bringing the holiday spirit to Washington", - "contentSnippet": "President Joe Biden is getting a turn at bringing the holiday spirit to Washington", - "guid": "b2456477", - "isoDate": "2023-11-30T21:36:42.000Z" - }, - { - "creator": "Rachel Sharp and Ariana Baio", - "date": "2023-11-30T21:33:02+00:00", - "title": "As controversial in death as in life: Tributes pour in for Henry Kissinger", - "link": "https://www.independent.co.uk/news/world/americas/henry-kissinger-controversy-tributes-b2456258.html", - "pubDate": "Thu, 30 Nov 2023 21:33:02 GMT", - "dc:creator": "Rachel Sharp and Ariana Baio", - "dc:date": "2023-11-30T21:33:02+00:00", - "content": "

Tributes and statements have begun pouring in for the influential US diplomat after he died aged 100 at his Connecticut home on Wednesday

", - "contentSnippet": "Tributes and statements have begun pouring in for the influential US diplomat after he died aged 100 at his Connecticut home on Wednesday", - "guid": "b2456258", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T21:33:02.000Z" - }, - { - "creator": "Olivia Hebert", - "date": "2023-11-30T21:21:10+00:00", - "title": "Taylor Swift stuns at Beyonc\u00e9\u2019s Renaissance film premiere in London", - "link": "https://www.independent.co.uk/life-style/renaissance-film-beyonce-taylor-swift-b2456411.html", - "pubDate": "Thu, 30 Nov 2023 21:21:10 GMT", - "dc:creator": "Olivia Hebert", - "dc:date": "2023-11-30T21:21:10+00:00", - "content": "

\u2018Anti-Hero\u2019 singer showed up to support Beyonc\u00e9\u2019 for her London film premiere

", - "contentSnippet": "\u2018Anti-Hero\u2019 singer showed up to support Beyonc\u00e9\u2019 for her London film premiere", - "guid": "b2456411", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-11-30T21:21:10.000Z" - }, - { - "creator": "Jim Salter", - "date": "2023-11-30T21:16:36+00:00", - "title": "Missouri prosecutor accuses 3 men of holding student from India captive and beating him", - "link": "https://www.independent.co.uk/news/ap-india-missouri-charles-b2456471.html", - "pubDate": "Thu, 30 Nov 2023 21:16:36 GMT", - "dc:creator": "Jim Salter", - "dc:date": "2023-11-30T21:16:36+00:00", - "content": "A Missouri prosecutor says three men held a student from India captive over the course of several months and forced him to work and perform menial tasks, then viciously beat him when he didn\u2019t complete the chores to their satisfaction", - "contentSnippet": "A Missouri prosecutor says three men held a student from India captive over the course of several months and forced him to work and perform menial tasks, then viciously beat him when he didn\u2019t complete the chores to their satisfaction", - "guid": "b2456471", - "isoDate": "2023-11-30T21:16:36.000Z" - }, - { - "creator": "John Bowden", - "date": "2023-11-30T21:10:35+00:00", - "title": "McCarthy claims he swore at Trump in tense phone call, report says", - "link": "https://www.the-independent.com/news/world/americas/us-politics/mccarthy-trump-gaetz-gop-congress-b2456449.html", - "pubDate": "Thu, 30 Nov 2023 21:10:35 GMT", - "dc:creator": "John Bowden", - "dc:date": "2023-11-30T21:10:35+00:00", - "content": "

Ex-speaker has sought vengeance against political enemies following his ouster

", - "contentSnippet": "Ex-speaker has sought vengeance against political enemies following his ouster", - "guid": "b2456449", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-11-30T21:10:35.000Z" - }, - { - "creator": "Roisin O'Connor", - "date": "2023-11-30T21:02:54+00:00", - "title": "Shane MacGowan, shy and complex genius behind The Pogues, dies aged 65", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/shane-macgowan-death-age-pogues-news-b2456165.html", - "pubDate": "Thu, 30 Nov 2023 21:02:54 GMT", - "dc:creator": "Roisin O'Connor", - "dc:date": "2023-11-30T21:02:54+00:00", - "content": "

Musician had just returned home to be with his wife, Victoria Mary Clarke, after a lengthy stay in hospital

", - "contentSnippet": "Musician had just returned home to be with his wife, Victoria Mary Clarke, after a lengthy stay in hospital", - "guid": "b2456165", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-11-30T21:02:54.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-11-30T20:52:38+00:00", - "title": "Influential Detroit pastor the Rev. Charles Gilchrist Adams dies at age 86", - "link": "https://www.independent.co.uk/news/ap-detroit-mike-duggan-harvard-university-boston-b2456464.html", - "pubDate": "Thu, 30 Nov 2023 20:52:38 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-11-30T20:52:38+00:00", - "content": "Influential longtime Detroit pastor the Rev. Charles Gilchrist Adams has died following an illness", - "contentSnippet": "Influential longtime Detroit pastor the Rev. Charles Gilchrist Adams has died following an illness", - "guid": "b2456464", - "isoDate": "2023-11-30T20:52:38.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-11-30T20:49:16+00:00", - "title": "Ferry operators around the country to receive $200M in federal grants to modernize fleets", - "link": "https://www.independent.co.uk/news/ap-san-francisco-biden-new-york-maine-b2456462.html", - "pubDate": "Thu, 30 Nov 2023 20:49:16 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-11-30T20:49:16+00:00", - "content": "The Biden administration will issue $200 million in grants to modernize the country\u2019s ferry systems", - "contentSnippet": "The Biden administration will issue $200 million in grants to modernize the country\u2019s ferry systems", - "guid": "b2456462", - "isoDate": "2023-11-30T20:49:16.000Z" - }, - { - "creator": "Bevan Hurley", - "date": "2023-11-30T20:48:06+00:00", - "title": "From Cambodia to Bangladesh: a brief history of Henry Kissinger\u2019s alleged war crimes", - "link": "https://www.independent.co.uk/news/world/americas/henry-kissinger-war-crimes-cambodia-b2456372.html", - "pubDate": "Thu, 30 Nov 2023 20:48:06 GMT", - "dc:creator": "Bevan Hurley", - "dc:date": "2023-11-30T20:48:06+00:00", - "content": "

Henry Kissinger sided with military dictators and genocidal regimes in his pursuit of projecting US power during the Cold War, resulting in the deaths of millions of innocents, Bevan Hurley reports

", - "contentSnippet": "Henry Kissinger sided with military dictators and genocidal regimes in his pursuit of projecting US power during the Cold War, resulting in the deaths of millions of innocents, Bevan Hurley reports", - "guid": "b2456372", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T20:48:06.000Z" - }, - { - "creator": "Graig Graziosi", - "date": "2023-11-30T20:46:42+00:00", - "title": "GOP lawmaker makes not-so-veiled threat against Jack Smith", - "link": "https://www.the-independent.com/news/world/americas/us-politics/clay-higgins-jack-smith-days-are-numbered-threat-b2456401.html", - "pubDate": "Thu, 30 Nov 2023 20:46:42 GMT", - "dc:creator": "Graig Graziosi", - "dc:date": "2023-11-30T20:46:42+00:00", - "content": "

Mr Higgins previously threatened FBI Director Chris Wray, telling him \u2018your day is coming\u2019

", - "contentSnippet": "Mr Higgins previously threatened FBI Director Chris Wray, telling him \u2018your day is coming\u2019", - "guid": "b2456401", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-11-30T20:46:42.000Z" - }, - { - "creator": "Inga Parkel", - "date": "2023-11-30T20:44:28+00:00", - "title": "Squid Game: The Challenge contestants had to use lubricated condoms as chapstick", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/squid-game-the-challenge-condoms-b2456426.html", - "pubDate": "Thu, 30 Nov 2023 20:44:28 GMT", - "dc:creator": "Inga Parkel", - "dc:date": "2023-11-30T20:44:28+00:00", - "content": "

Player 301 said that \u2018within a day, maybe a day and a half, all the condoms were gone\u2019

", - "contentSnippet": "Player 301 said that \u2018within a day, maybe a day and a half, all the condoms were gone\u2019", - "guid": "b2456426", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-11-30T20:44:28.000Z" - }, - { - "creator": "Andy Sims", - "date": "2023-11-30T20:43:53+00:00", - "title": "David Moyes urges West Ham to finish the job and top Group A", - "link": "https://www.independent.co.uk/sport/football/tomas-soucek-david-moyes-europa-league-west-ham-freiburg-b2456460.html", - "pubDate": "Thu, 30 Nov 2023 20:43:53 GMT", - "dc:creator": "Andy Sims", - "dc:date": "2023-11-30T20:43:53+00:00", - "content": "The Hammers need to avoid defeat to Freiburg at the London Stadium in a fortnight.", - "contentSnippet": "The Hammers need to avoid defeat to Freiburg at the London Stadium in a fortnight.", - "guid": "b2456460", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T20:43:53.000Z" - }, - { - "creator": "Katie Hawkinson", - "date": "2023-11-30T20:38:41+00:00", - "title": "Rand Paul performs Heimlich maneuver on Senator Joni Ernst during lunch ", - "link": "https://www.the-independent.com/news/world/americas/us-politics/rand-paul-joni-ernst-heimlich-maneuver-senate-b2456431.html", - "pubDate": "Thu, 30 Nov 2023 20:38:41 GMT", - "dc:creator": "Katie Hawkinson", - "dc:date": "2023-11-30T20:38:41+00:00", - "content": "

\u2018Can\u2019t help but choke on the woke policies Dems are forcing down our throats,\u2019 Sen Joni Ernst writes after incident

", - "contentSnippet": "\u2018Can\u2019t help but choke on the woke policies Dems are forcing down our throats,\u2019 Sen Joni Ernst writes after incident", - "guid": "b2456431", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-11-30T20:38:41.000Z" - }, - { - "creator": "Gary Gerard Hamilton", - "date": "2023-11-30T20:36:49+00:00", - "title": "Eddie Murphy wants 'Candy Cane Lane' to put you in the Christmas spirit for years to come", - "link": "https://www.independent.co.uk/news/eddie-murphy-ap-new-york-brooklyn-tracee-ellis-ross-b2456458.html", - "pubDate": "Thu, 30 Nov 2023 20:36:49 GMT", - "dc:creator": "Gary Gerard Hamilton", - "dc:date": "2023-11-30T20:36:49+00:00", - "content": "Eddie Murphy fondly remembers watching classic Christmas movies as a child with his family during the holidays", - "contentSnippet": "Eddie Murphy fondly remembers watching classic Christmas movies as a child with his family during the holidays", - "guid": "b2456458", - "isoDate": "2023-11-30T20:36:49.000Z" - }, - { - "creator": "Simon Calder", - "date": "2023-11-30T20:36:26+00:00", - "title": "\u2018After 16 months, we\u2019re in it for as long as it takes,\u2019 says rail union boss as strikes resume", - "link": "https://www.independent.co.uk/travel/news-and-advice/aslef-train-strike-rail-union-b2456007.html", - "pubDate": "Thu, 30 Nov 2023 20:36:26 GMT", - "dc:creator": "Simon Calder", - "dc:date": "2023-11-30T20:36:26+00:00", - "content": "

Mick Whelan, general secretary of Aslef, has called for another round of industrial action from the start of December

", - "contentSnippet": "Mick Whelan, general secretary of Aslef, has called for another round of industrial action from the start of December", - "guid": "b2456007", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2023-11-30T20:36:26.000Z" - }, - { - "creator": "Travis Loller", - "date": "2023-11-30T20:35:22+00:00", - "title": "Former ambassador and Republican politician sues to block Tennessee voting law", - "link": "https://www.independent.co.uk/news/tennessee-ap-ambassador-republican-nashville-b2456457.html", - "pubDate": "Thu, 30 Nov 2023 20:35:22 GMT", - "dc:creator": "Travis Loller", - "dc:date": "2023-11-30T20:35:22+00:00", - "content": "Former Ambassador to Poland and longtime Republican politician Victor Ashe is suing Tennessee election officials over a state law he claims is so vague that he could be prosecuted for voting in a Republican primary", - "contentSnippet": "Former Ambassador to Poland and longtime Republican politician Victor Ashe is suing Tennessee election officials over a state law he claims is so vague that he could be prosecuted for voting in a Republican primary", - "guid": "b2456457", - "isoDate": "2023-11-30T20:35:22.000Z" - }, - { - "creator": "Russ Bynum", - "date": "2023-11-30T20:34:22+00:00", - "title": "Georgia county seeking to dismiss lawsuit by slave descendants over rezoning of their island homes", - "link": "https://www.independent.co.uk/news/georgia-ap-black-african-b2456455.html", - "pubDate": "Thu, 30 Nov 2023 20:34:22 GMT", - "dc:creator": "Russ Bynum", - "dc:date": "2023-11-30T20:34:22+00:00", - "content": "County commissioners in Georgia are asking a judge to throw out a lawsuit by Black residents descended from slaves who fear new zoning changes will force them to sell their island homes", - "contentSnippet": "County commissioners in Georgia are asking a judge to throw out a lawsuit by Black residents descended from slaves who fear new zoning changes will force them to sell their island homes", - "guid": "b2456455", - "isoDate": "2023-11-30T20:34:22.000Z" - }, - { - "creator": "Amber Raiken", - "date": "2023-11-30T20:27:12+00:00", - "title": "Shannen Doherty reveals cancer has spread to her bones", - "link": "https://www.independent.co.uk/life-style/shannen-doherty-breast-cancer-bones-b2456450.html", - "pubDate": "Thu, 30 Nov 2023 20:27:12 GMT", - "dc:creator": "Amber Raiken", - "dc:date": "2023-11-30T20:27:12+00:00", - "content": "

\u2018We are people who want to work and embrace life and keep moving forward,\u2019 she says

", - "contentSnippet": "\u2018We are people who want to work and embrace life and keep moving forward,\u2019 she says", - "guid": "b2456450", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-11-30T20:27:12.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-11-30T20:27:07+00:00", - "title": "Queen Victoria\u2019s Christmas decorations set to be auctioned", - "link": "https://www.independent.co.uk/tv/culture/queen-victoria-christmas-decorations-b2456452.html", - "pubDate": "Thu, 30 Nov 2023 20:27:07 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-11-30T20:27:07+00:00", - "content": "

Christmas decorations belonging to Queen Victoria are set to be auctioned for \u00a31,500 on 7 December.

", - "contentSnippet": "Christmas decorations belonging to Queen Victoria are set to be auctioned for \u00a31,500 on 7 December.", - "guid": "b2456452", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-11-30T20:27:07.000Z" - }, - { - "creator": "Leah Willingham", - "date": "2023-11-30T20:21:42+00:00", - "title": "Six West Virginia jail employees indicted in connection with death of incarcerated man", - "link": "https://www.independent.co.uk/news/ap-west-virginia-charleston-jim-justice-corrections-b2456451.html", - "pubDate": "Thu, 30 Nov 2023 20:21:42 GMT", - "dc:creator": "Leah Willingham", - "dc:date": "2023-11-30T20:21:42+00:00", - "content": "Five former correctional officers in West Virginia have been indicted by a federal grand jury in connection with the 2022 death of a man at a regional jail", - "contentSnippet": "Five former correctional officers in West Virginia have been indicted by a federal grand jury in connection with the 2022 death of a man at a regional jail", - "guid": "b2456451", - "isoDate": "2023-11-30T20:21:42.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2023-11-30T20:18:39+00:00", - "title": "Musk says antisemitic tweet was \u2018foolish\u2019 \u2013 but blames media for angry reaction", - "link": "https://www.independent.co.uk/tech/elon-musk-antisemitic-tweet-x-b2456440.html", - "pubDate": "Thu, 30 Nov 2023 20:18:39 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2023-11-30T20:18:39+00:00", - "content": "

The world\u2019s richest man says he had \u2018no problem being hated\u2019

", - "contentSnippet": "The world\u2019s richest man says he had \u2018no problem being hated\u2019", - "guid": "b2456440", - "categories": [ - "Tech" - ], - "isoDate": "2023-11-30T20:18:39.000Z" - }, - { - "creator": "Andrea Cavallier", - "date": "2023-11-30T20:17:56+00:00", - "title": "Gilgo Beach serial killer suspect\u2019s wife officially linked to crime scene DNA, report says", - "link": "https://www.the-independent.com/news/world/americas/crime/gilgo-beach-rex-heuermann-wife-dna-b2456316.html", - "pubDate": "Thu, 30 Nov 2023 20:17:56 GMT", - "dc:creator": "Andrea Cavallier", - "dc:date": "2023-11-30T20:17:56+00:00", - "content": "

Asa Ellerup\u2019s hair was found on the burlap-wrapped bodies of three of the four women her husband is accused of killing

", - "contentSnippet": "Asa Ellerup\u2019s hair was found on the burlap-wrapped bodies of three of the four women her husband is accused of killing", - "guid": "b2456316", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-11-30T20:17:56.000Z" - }, - { - "creator": "Isobel Lewis", - "date": "2023-11-30T20:16:55+00:00", - "title": "Kate dazzles at Royal Variety Performance as she puts on united front with William amid racism storm", - "link": "https://www.independent.co.uk/life-style/royal-family/news/kate-william-royal-variety-show-endgame-b2456427.html", - "pubDate": "Thu, 30 Nov 2023 20:16:55 GMT", - "dc:creator": "Isobel Lewis", - "dc:date": "2023-11-30T20:16:55+00:00", - "content": "

Kate stunned in blue Toteme gown and glittering jewellery

", - "contentSnippet": "Kate stunned in blue Toteme gown and glittering jewellery", - "guid": "b2456427", - "categories": [ - "Royal Family News", - "Royal Family", - "Lifestyle" - ], - "isoDate": "2023-11-30T20:16:55.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-11-30T20:15:13+00:00", - "title": "John Kirby on death of Henry Kissinger: \u2018He shaped foreign policy decisions for decades\u2019", - "link": "https://www.independent.co.uk/tv/news/henry-kissinger-death-john-kirby-b2456444.html", - "pubDate": "Thu, 30 Nov 2023 20:15:13 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-11-30T20:15:13+00:00", - "content": "

White House spokesman John Kirby gave his condolences to the family of Henry Kissinger after his passing on Wednesday 29 November.

", - "contentSnippet": "White House spokesman John Kirby gave his condolences to the family of Henry Kissinger after his passing on Wednesday 29 November.", - "guid": "b2456444", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-11-30T20:15:13.000Z" - }, - { - "creator": "Susan Montoya Bryan", - "date": "2023-11-30T20:13:17+00:00", - "title": "Work resumes on $10B renewable energy transmission project despite tribal objections", - "link": "https://www.independent.co.uk/news/ap-bureau-of-land-management-work-new-mexico-biden-b2456446.html", - "pubDate": "Thu, 30 Nov 2023 20:13:17 GMT", - "dc:creator": "Susan Montoya Bryan", - "dc:date": "2023-11-30T20:13:17+00:00", - "content": "It's back to work for construction crews that are clearing land and building access roads for a $10 billion project that the Biden administration describes as an important part of the nation's transition to renewable energy", - "contentSnippet": "It's back to work for construction crews that are clearing land and building access roads for a $10 billion project that the Biden administration describes as an important part of the nation's transition to renewable energy", - "guid": "b2456446", - "isoDate": "2023-11-30T20:13:17.000Z" - }, - { - "creator": "Andrea Blanco,Rachel Sharp and Sheila Flynn", - "date": "2023-11-30T20:11:27+00:00", - "title": "Four slain students, a weeks-long manhunt but no motive: What happened in the Idaho murders?", - "link": "https://www.the-independent.com/news/world/americas/crime/idaho-murders-moscow-update-bryan-kohberger-b2456443.html", - "pubDate": "Thu, 30 Nov 2023 20:11:27 GMT", - "dc:creator": "Andrea Blanco,Rachel Sharp and Sheila Flynn", - "dc:date": "2023-11-30T20:11:27+00:00", - "content": "

As suspect Bryan Kohberger prepares to face trial, Andrea Blanco, Rachel Sharp and Sheila Flynn report on the case in small town Idaho that shocked America

", - "contentSnippet": "As suspect Bryan Kohberger prepares to face trial, Andrea Blanco, Rachel Sharp and Sheila Flynn report on the case in small town Idaho that shocked America", - "guid": "b2456443", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-11-30T20:11:27.000Z" - }, - { - "creator": "Kaleigh Werner", - "date": "2023-11-30T20:09:53+00:00", - "title": "Jennifer Lawrence addresses plastic surgery rumours", - "link": "https://www.independent.co.uk/life-style/jennifer-lawrence-plastic-surgery-rumours-b2456442.html", - "pubDate": "Thu, 30 Nov 2023 20:09:53 GMT", - "dc:creator": "Kaleigh Werner", - "dc:date": "2023-11-30T20:09:53+00:00", - "content": "

\u2018Apparently, I\u2019ve had full plastic surgery,\u2019 Lawrence says

", - "contentSnippet": "\u2018Apparently, I\u2019ve had full plastic surgery,\u2019 Lawrence says", - "guid": "b2456442", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-11-30T20:09:53.000Z" - }, - { - "creator": "Michelle L. Price", - "date": "2023-11-30T20:09:39+00:00", - "title": "RNC\u2019s rules for 2024 convention don\u2019t address what would happen if Trump is convicted", - "link": "https://www.the-independent.com/news/world/americas/us-politics/republican-trump-rnc-convention-rules-b2456418.html", - "pubDate": "Thu, 30 Nov 2023 20:09:39 GMT", - "dc:creator": "Michelle L. Price", - "dc:date": "2023-11-30T20:09:39+00:00", - "content": "

Can delegates vote for a different candidate if the party\u2019s presumptive nominee is convicted of a felony?

", - "contentSnippet": "Can delegates vote for a different candidate if the party\u2019s presumptive nominee is convicted of a felony?", - "guid": "b2456418", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-11-30T20:09:39.000Z" - }, - { - "creator": "Olivia Hebert", - "date": "2023-11-30T20:04:42+00:00", - "title": "Steakhouse customer pays double for meal after miscommunication with waiter - who was in the right? ", - "link": "https://www.independent.co.uk/life-style/tiktok-steakhouse-unlimited-sides-b2456441.html", - "pubDate": "Thu, 30 Nov 2023 20:04:42 GMT", - "dc:creator": "Olivia Hebert", - "dc:date": "2023-11-30T20:04:42+00:00", - "content": "

\u2018I just meant you could order as many as you wanted to,\u2019 waiter tells customers

", - "contentSnippet": "\u2018I just meant you could order as many as you wanted to,\u2019 waiter tells customers", - "guid": "b2456441", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-11-30T20:04:42.000Z" - }, - { - "creator": "Meredith Clark", - "date": "2023-11-30T20:02:31+00:00", - "title": "Emily Ratajkowski\u2019s latest photo shoot sparks fury", - "link": "https://www.independent.co.uk/life-style/fashion/emily-ratajkowski-photo-shoot-plus-size-b2456439.html", - "pubDate": "Thu, 30 Nov 2023 20:02:31 GMT", - "dc:creator": "Meredith Clark", - "dc:date": "2023-11-30T20:02:31+00:00", - "content": "

Supermodel\u2019s latest photo shoot has been accused by body inclusivity activists of being \u2018fatphobic\u2019

", - "contentSnippet": "Supermodel\u2019s latest photo shoot has been accused by body inclusivity activists of being \u2018fatphobic\u2019", - "guid": "b2456439", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2023-11-30T20:02:31.000Z" - }, - { - "creator": "Brittany Miller", - "date": "2023-11-30T20:01:27+00:00", - "title": "Former royal chef explains unusual dinner rule for William and Kate\u2019s children", - "link": "https://www.independent.co.uk/life-style/royal-family/news/royal-family-chef-kate-william-kids-b2456437.html", - "pubDate": "Thu, 30 Nov 2023 20:01:27 GMT", - "dc:creator": "Brittany Miller", - "dc:date": "2023-11-30T20:01:27+00:00", - "content": "

Darren McGrady worked for royal family for 15 years

", - "contentSnippet": "Darren McGrady worked for royal family for 15 years", - "guid": "b2456437", - "categories": [ - "Royal Family News", - "Royal Family", - "Lifestyle" - ], - "isoDate": "2023-11-30T20:01:27.000Z" - }, - { - "creator": "Ariana Baio", - "date": "2023-11-30T19:54:50+00:00", - "title": "Senate Judiciary authorises subpoenas of conservative activists in Supreme Court ethics probe", - "link": "https://www.the-independent.com/news/world/americas/us-politics/supreme-court-ethics-subpoenas-crow-leo-b2456382.html", - "pubDate": "Thu, 30 Nov 2023 19:54:50 GMT", - "dc:creator": "Ariana Baio", - "dc:date": "2023-11-30T19:54:50+00:00", - "content": "

Thursday\u2019s contentious hearing ended in an entirely Democratic vote after Republican members of the committee walked out

", - "contentSnippet": "Thursday\u2019s contentious hearing ended in an entirely Democratic vote after Republican members of the committee walked out", - "guid": "b2456382", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-11-30T19:54:50.000Z" - }, - { - "creator": "Kevin E G Perry", - "date": "2023-11-30T19:54:01+00:00", - "title": "Zack Snyder says he doesn\u2019t \u2018get\u2019 why people don\u2019t like Amber Heard", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/amber-heard-zack-snyder-aquaman-b2456407.html", - "pubDate": "Thu, 30 Nov 2023 19:54:01 GMT", - "dc:creator": "Kevin E G Perry", - "dc:date": "2023-11-30T19:54:01+00:00", - "content": "

The \u2018Justice League\u2019 director said: \u2018If other people don\u2019t like her, I don\u2019t know what to say.\u2019

", - "contentSnippet": "The \u2018Justice League\u2019 director said: \u2018If other people don\u2019t like her, I don\u2019t know what to say.\u2019", - "guid": "b2456407", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2023-11-30T19:54:01.000Z" - }, - { - "creator": "Diane Jeantet and Mauricio Savarese", - "date": "2023-11-30T19:53:58+00:00", - "title": "Brazilian city enacts an ordinance secretly written by a surprising new staffer: ChatGPT", - "link": "https://www.independent.co.uk/news/chatgpt-ap-city-harvard-law-school-openai-b2456432.html", - "pubDate": "Thu, 30 Nov 2023 19:53:58 GMT", - "dc:creator": "Diane Jeantet and Mauricio Savarese", - "dc:date": "2023-11-30T19:53:58+00:00", - "content": "City lawmakers in Brazil passed what appears to be the nation\u2019s first legislation written entirely by artificial intelligence \u2014 after they were kept in the dark about its unprecedented origin", - "contentSnippet": "City lawmakers in Brazil passed what appears to be the nation\u2019s first legislation written entirely by artificial intelligence \u2014 after they were kept in the dark about its unprecedented origin", - "guid": "b2456432", - "isoDate": "2023-11-30T19:53:58.000Z" - }, - { - "creator": "Lisa Rathke", - "date": "2023-11-30T19:51:52+00:00", - "title": "Ex of man charged with shooting Palestinian students had police remove his gun from her home in 2013", - "link": "https://www.independent.co.uk/news/ap-vermont-syracuse-palestinian-new-york-b2456433.html", - "pubDate": "Thu, 30 Nov 2023 19:51:52 GMT", - "dc:creator": "Lisa Rathke", - "dc:date": "2023-11-30T19:51:52+00:00", - "content": "Syracuse, New York, police say an ex-girlfriend of the man charged with recently shooting and wounding three college students of Palestinian descent in Vermont asked officers 10 years ago to remove his gun from her home", - "contentSnippet": "Syracuse, New York, police say an ex-girlfriend of the man charged with recently shooting and wounding three college students of Palestinian descent in Vermont asked officers 10 years ago to remove his gun from her home", - "guid": "b2456433", - "isoDate": "2023-11-30T19:51:52.000Z" - }, - { - "creator": "Jake Coyle", - "date": "2023-11-30T19:51:32+00:00", - "title": "'Killers of the Flower Moon' named best film of 2023 by New York film critics", - "link": "https://www.independent.co.uk/news/martin-scorsese-ap-new-york-tar-christopher-nolan-b2456436.html", - "pubDate": "Thu, 30 Nov 2023 19:51:32 GMT", - "dc:creator": "Jake Coyle", - "dc:date": "2023-11-30T19:51:32+00:00", - "content": "Martin Scorsese\u2019s \u201cKillers of the Flower Moon\u201d has been named the best film of the year by the New York Film Critics Circle", - "contentSnippet": "Martin Scorsese\u2019s \u201cKillers of the Flower Moon\u201d has been named the best film of the year by the New York Film Critics Circle", - "guid": "b2456436", - "isoDate": "2023-11-30T19:51:32.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-11-30T19:50:48+00:00", - "title": "Suspect in custody after 2 troopers fatally struck while aiding driver on Las Vegas freeway", - "link": "https://www.independent.co.uk/news/las-vegas-ap-nevada-steve-wolfson-clark-county-b2456430.html", - "pubDate": "Thu, 30 Nov 2023 19:50:48 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-11-30T19:50:48+00:00", - "content": "Two Nevada state troopers have died after they were struck by a vehicle while helping another driver", - "contentSnippet": "Two Nevada state troopers have died after they were struck by a vehicle while helping another driver", - "guid": "b2456430", - "isoDate": "2023-11-30T19:50:48.000Z" - }, - { - "creator": "Lindsay Whitehurst", - "date": "2023-11-30T19:50:12+00:00", - "title": "Police searching for two people accused in FBI agent carjacking in Washington", - "link": "https://www.independent.co.uk/news/police-ap-fbi-joe-biden-metropolitan-police-department-b2456435.html", - "pubDate": "Thu, 30 Nov 2023 19:50:12 GMT", - "dc:creator": "Lindsay Whitehurst", - "dc:date": "2023-11-30T19:50:12+00:00", - "content": "Police are searching for two people after an FBI agent was carjacked in Washington D", - "contentSnippet": "Police are searching for two people after an FBI agent was carjacked in Washington D", - "guid": "b2456435", - "isoDate": "2023-11-30T19:50:12.000Z" - }, - { - "creator": "Eric Garcia", - "date": "2023-11-30T19:39:41+00:00", - "title": "Voices: Newsom and DeSantis face off in the name of recognition and desperation", - "link": "https://www.independent.co.uk/voices/newsom-desantis-debate-fox-news-b2456350.html", - "pubDate": "Thu, 30 Nov 2023 19:39:41 GMT", - "dc:creator": "Eric Garcia", - "dc:date": "2023-11-30T19:39:41+00:00", - "content": "

Their \u2018debate\u2019 on Fox News is an exercise in vanity that will do nothing to advance either of their ideas. But it will give them plenty of media attention

", - "contentSnippet": "Their \u2018debate\u2019 on Fox News is an exercise in vanity that will do nothing to advance either of their ideas. But it will give them plenty of media attention", - "guid": "b2456350", - "categories": [ - "Voices" - ], - "isoDate": "2023-11-30T19:39:41.000Z" - }, - { - "creator": "Jerry Harmer", - "date": "2023-11-30T19:39:21+00:00", - "title": "Families reunite with 17 Thai hostages freed by Hamas at homecoming at Bangkok airport", - "link": "https://www.independent.co.uk/news/ap-hamas-thai-israel-families-b2456198.html", - "pubDate": "Thu, 30 Nov 2023 19:39:21 GMT", - "dc:creator": "Jerry Harmer", - "dc:date": "2023-11-30T19:39:21+00:00", - "content": "Seventeen Thai workers released from captivity by the militant Hamas group have been greeted by family and friends, officials and journalists in an emotional homecoming at Bangkok\u2019s international airport", - "contentSnippet": "Seventeen Thai workers released from captivity by the militant Hamas group have been greeted by family and friends, officials and journalists in an emotional homecoming at Bangkok\u2019s international airport", - "guid": "b2456198", - "isoDate": "2023-11-30T19:39:21.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2023-11-30T19:36:37+00:00", - "title": "Wolverines may soon get government protection", - "link": "https://www.independent.co.uk/news/world/americas/north-american-wolverine-protection-government-b2456366.html", - "pubDate": "Thu, 30 Nov 2023 19:36:37 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2023-11-30T19:36:37+00:00", - "content": "

There are around 300 wolverines left in the wild in the US, and could face extinction due to the melting of their habitat

", - "contentSnippet": "There are around 300 wolverines left in the wild in the US, and could face extinction due to the melting of their habitat", - "guid": "b2456366", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-11-30T19:36:37.000Z" - }, - { - "creator": "Brittany Miller", - "date": "2023-11-30T19:36:34+00:00", - "title": "Woman defends throwing daughter \u2018extravagant\u2019 5th birthday day after sister-in-law\u2019s wedding", - "link": "https://www.independent.co.uk/life-style/daughter-birthday-family-wedding-reddit-b2455817.html", - "pubDate": "Thu, 30 Nov 2023 19:36:34 GMT", - "dc:creator": "Brittany Miller", - "dc:date": "2023-11-30T19:36:34+00:00", - "content": "

\u2018I think it\u2019s pretty crazy she\u2019s getting jealous over a little girl but quite a few family members on her side are saying I\u2019m in the wrong,\u2019 she says

", - "contentSnippet": "\u2018I think it\u2019s pretty crazy she\u2019s getting jealous over a little girl but quite a few family members on her side are saying I\u2019m in the wrong,\u2019 she says", - "guid": "b2455817", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-11-30T19:36:34.000Z" - }, - { - "creator": "Maira Butt", - "date": "2023-11-30T19:34:20+00:00", - "title": "Those stuck in Gaza spend the ceasefire checking if loved ones are alive: \u2018We don\u2019t think about the future\u2019", - "link": "https://www.independent.co.uk/news/world/middle-east/gaza-palestine-israel-bomb-idf-b2456244.html", - "pubDate": "Thu, 30 Nov 2023 19:34:20 GMT", - "dc:creator": "Maira Butt", - "dc:date": "2023-11-30T19:34:20+00:00", - "content": "

Palestinians in Gaza learn their loved ones have been found under the rubble as a ceasefire is extended for another day

", - "contentSnippet": "Palestinians in Gaza learn their loved ones have been found under the rubble as a ceasefire is extended for another day", - "guid": "b2456244", - "categories": [ - "Middle East", - "World" - ], - "isoDate": "2023-11-30T19:34:20.000Z" - }, - { - "creator": "Isobel Lewis and Tom Murray", - "date": "2023-11-30T17:23:54+00:00", - "title": "I\u2019m a Celebrity \u2013 live: Sam Thompson opens up about ADHD diagnosis as Josie Gibson quits trial", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/im-a-celebrity-2023-latest-b2456338.html", - "pubDate": "Thu, 30 Nov 2023 17:23:54 GMT", - "dc:creator": "Isobel Lewis and Tom Murray", - "dc:date": "2023-11-30T17:23:54+00:00", - "content": "

Tensions are running high in camp

", - "contentSnippet": "Tensions are running high in camp", - "guid": "b2456338", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-11-30T17:23:54.000Z" - }, - { - "creator": "Carl Markham", - "date": "2023-11-30T23:38:44+00:00", - "title": "Jurgen Klopp satisfied as Liverpool secure top spot with a game to spare", - "link": "https://www.independent.co.uk/sport/football/luis-diaz-jurgen-klopp-liverpool-europa-league-cody-gakpo-b2456524.html", - "pubDate": "Thu, 30 Nov 2023 23:38:44 GMT", - "dc:creator": "Carl Markham", - "dc:date": "2023-11-30T23:38:44+00:00", - "content": "Two goals from Cody Gakpo and one apiece from Luis Diaz and Mohamed Salah secured victory.", - "contentSnippet": "Two goals from Cody Gakpo and one apiece from Luis Diaz and Mohamed Salah secured victory.", - "guid": "b2456524", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T23:38:44.000Z" - }, - { - "creator": "Josh Funk", - "date": "2023-11-30T23:33:29+00:00", - "title": "Haslam family refutes allegation from Warren Buffett's company that it bribed truck stop chain execs", - "link": "https://www.independent.co.uk/news/ap-warren-buffett-bill-haslam-omaha-berkshire-hathaway-b2456523.html", - "pubDate": "Thu, 30 Nov 2023 23:33:29 GMT", - "dc:creator": "Josh Funk", - "dc:date": "2023-11-30T23:33:29+00:00", - "content": "An attorney for the billionaire Haslam family has called the bribery allegations from Warren Buffett\u2019s company a \u201cwild invention.\"", - "contentSnippet": "An attorney for the billionaire Haslam family has called the bribery allegations from Warren Buffett\u2019s company a \u201cwild invention.\"", - "guid": "b2456523", - "isoDate": "2023-11-30T23:33:29.000Z" - }, - { - "creator": "Tom Murray", - "date": "2023-12-01T01:07:55+00:00", - "title": "Jeremy Clarkson breaks silence on The Grand Tour exit alongside Clarkson\u2019s Farm update", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/jeremy-clarkson-grand-tour-clarksons-farm-b2456546.html", - "pubDate": "Fri, 01 Dec 2023 01:07:55 GMT", - "dc:creator": "Tom Murray", - "dc:date": "2023-12-01T01:07:55+00:00", - "content": "

News emerged on Wednesday that Clarkson, Richard Hammond and James May were leaving the Prime Video series

", - "contentSnippet": "News emerged on Wednesday that Clarkson, Richard Hammond and James May were leaving the Prime Video series", - "guid": "b2456546", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-01T01:07:55.000Z" - }, - { - "creator": "Manuel Valdes", - "date": "2023-12-01T01:03:20+00:00", - "title": "Young humpback whale leaps out of Seattle bay, dazzling onlookers", - "link": "https://www.independent.co.uk/news/seattle-ap-chip-b2456561.html", - "pubDate": "Fri, 01 Dec 2023 01:03:20 GMT", - "dc:creator": "Manuel Valdes", - "dc:date": "2023-12-01T01:03:20+00:00", - "content": "A humpback whale visiting the waters off Seattle gave people on shore a show Thursday morning", - "contentSnippet": "A humpback whale visiting the waters off Seattle gave people on shore a show Thursday morning", - "guid": "b2456561", - "isoDate": "2023-12-01T01:03:20.000Z" - }, - { - "creator": "David Rising", - "date": "2023-12-01T01:02:59+00:00", - "title": "Myanmar's military is losing ground against coordinated nationwide attacks, buoying opposition hopes", - "link": "https://www.independent.co.uk/news/myanmar-ap-beijing-bangkok-aung-san-suu-kyi-b2456560.html", - "pubDate": "Fri, 01 Dec 2023 01:02:59 GMT", - "dc:creator": "David Rising", - "dc:date": "2023-12-01T01:02:59+00:00", - "content": "A major offensive against Myanmar\u2019s military-run government by an alliance of three militias of ethnic minorities has been moving at lightning speed, inspiring resistance forces around the country to attack", - "contentSnippet": "A major offensive against Myanmar\u2019s military-run government by an alliance of three militias of ethnic minorities has been moving at lightning speed, inspiring resistance forces around the country to attack", - "guid": "b2456560", - "isoDate": "2023-12-01T01:02:59.000Z" - }, - { - "creator": "David Rising", - "date": "2023-12-01T01:01:37+00:00", - "title": "Myanmar's military is losing ground against coordinated nationwide attacks, buoying opposition hopes", - "link": "https://www.independent.co.uk/news/myanmar-ap-china-beijing-bangkok-b2456559.html", - "pubDate": "Fri, 01 Dec 2023 01:01:37 GMT", - "dc:creator": "David Rising", - "dc:date": "2023-12-01T01:01:37+00:00", - "content": "A major offensive against Myanmar's military-run government by an alliance of three militias of ethnic minorities has been moving at lightning speed, inspiring resistance forces around the country to attack", - "contentSnippet": "A major offensive against Myanmar's military-run government by an alliance of three militias of ethnic minorities has been moving at lightning speed, inspiring resistance forces around the country to attack", - "guid": "b2456559", - "isoDate": "2023-12-01T01:01:37.000Z" - }, - { - "creator": "Kevin E G Perry", - "date": "2023-12-01T00:52:26+00:00", - "title": "Judge sides with Daryl Hall over John Oates in ongoing legal case", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/daryl-hall-john-oates-judge-lawsuit-b2456545.html", - "pubDate": "Fri, 01 Dec 2023 00:52:26 GMT", - "dc:creator": "Kevin E G Perry", - "dc:date": "2023-12-01T00:52:26+00:00", - "content": "

Oates is temporarily blocked from selling his share of their joint business

", - "contentSnippet": "Oates is temporarily blocked from selling his share of their joint business", - "guid": "b2456545", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-12-01T00:52:26.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-01T00:51:03+00:00", - "title": "MSNBC shuffling weekend schedule, debuting new morning ensemble, heading into election year", - "link": "https://www.independent.co.uk/news/msnbc-ap-mehdi-hasan-rashida-jones-new-york-b2456556.html", - "pubDate": "Fri, 01 Dec 2023 00:51:03 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-01T00:51:03+00:00", - "content": "MSNBC is shuffling its weekend schedule early next year with an eye toward juicing ratings heading into an election year", - "contentSnippet": "MSNBC is shuffling its weekend schedule early next year with an eye toward juicing ratings heading into an election year", - "guid": "b2456556", - "isoDate": "2023-12-01T00:51:03.000Z" - }, - { - "creator": "The Associated Press", - "date": "2023-12-01T00:48:19+00:00", - "title": "Live updates | Live updates | Eight Israeli hostages are released during extended truce", - "link": "https://www.independent.co.uk/news/israeli-ap-hamas-gaza-strip-palestinian-b2456555.html", - "pubDate": "Fri, 01 Dec 2023 00:48:19 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2023-12-01T00:48:19+00:00", - "content": "The Israeli military says a total of eight Israeli hostages have been released from captivity in the Gaza Strip", - "contentSnippet": "The Israeli military says a total of eight Israeli hostages have been released from captivity in the Gaza Strip", - "guid": "b2456555", - "isoDate": "2023-12-01T00:48:19.000Z" - }, - { - "creator": "Faizah Malik", - "date": "2023-12-01T00:43:00+00:00", - "title": "\u2018Christmas miracle\u2019 for family as their cat returns after 11 years ", - "link": "https://www.independent.co.uk/news/uk/home-news/cat-returns-christmas-nuneaton-missing-b2456554.html", - "pubDate": "Fri, 01 Dec 2023 00:43:00 GMT", - "dc:creator": "Faizah Malik", - "dc:date": "2023-12-01T00:43:00+00:00", - "content": "

Toby was just a kitten when he went missing in 2012

", - "contentSnippet": "Toby was just a kitten when he went missing in 2012", - "guid": "b2456554", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-01T00:43:00.000Z" - }, - { - "creator": "Olivia Hebert", - "date": "2023-12-01T00:36:46+00:00", - "title": "Gwyneth Paltrow shares picture of herself and Dakota Johnson holding hands", - "link": "https://www.independent.co.uk/life-style/gwyneth-paltrow-dakota-johnson-picture-b2456514.html", - "pubDate": "Fri, 01 Dec 2023 00:36:46 GMT", - "dc:creator": "Olivia Hebert", - "dc:date": "2023-12-01T00:36:46+00:00", - "content": "

\u2018We\u2019re actually very good friends,\u2019 the Goop Founder says of the actor \u2013\u00a0who is going out with her ex, Chris Martin

", - "contentSnippet": "\u2018We\u2019re actually very good friends,\u2019 the Goop Founder says of the actor \u2013\u00a0who is going out with her ex, Chris Martin", - "guid": "b2456514", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-12-01T00:36:46.000Z" - }, - { - "creator": "Andrea Blanco", - "date": "2023-12-01T00:33:47+00:00", - "title": "FBI agent carjacked near Capitol Hill as incidents spike in Washington DC", - "link": "https://www.the-independent.com/news/world/americas/crime/fbi-agent-carjack-capitol-hill-b2456527.html", - "pubDate": "Fri, 01 Dec 2023 00:33:47 GMT", - "dc:creator": "Andrea Blanco", - "dc:date": "2023-12-01T00:33:47+00:00", - "content": "

The vehicle was eventually recovered, and the agent was not harmed during the attack

", - "contentSnippet": "The vehicle was eventually recovered, and the agent was not harmed during the attack", - "guid": "b2456527", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-12-01T00:33:47.000Z" - }, - { - "creator": "Matthew Cooper", - "date": "2023-12-01T00:30:43+00:00", - "title": "GTA 6: Everything we know and don\u2019t know ahead of trailer release from Rockstar", - "link": "https://www.independent.co.uk/games/gta-6-trailer-rockstar-announcement-release-b2444910.html", - "pubDate": "Fri, 01 Dec 2023 00:30:43 GMT", - "dc:creator": "Matthew Cooper", - "dc:date": "2023-12-01T00:30:43+00:00", - "content": "

Rockstar Games have announced there will be a trailer for the new Grand Theft Auto in December 2023, over 10 years after GTA came out for PS4 and Xbox 360

", - "contentSnippet": "Rockstar Games have announced there will be a trailer for the new Grand Theft Auto in December 2023, over 10 years after GTA came out for PS4 and Xbox 360", - "guid": "b2444910", - "categories": [ - "Games" - ], - "isoDate": "2023-12-01T00:30:43.000Z" - }, - { - "creator": "Frank Bajak and Marc Levy", - "date": "2023-12-01T00:28:48+00:00", - "title": "Congressmen ask DOJ to investigate water utility hack, warning it could happen anywhere", - "link": "https://www.independent.co.uk/news/world/americas/doj-ap-israel-john-fetterman-harrisburg-b2456552.html", - "pubDate": "Fri, 01 Dec 2023 00:28:48 GMT", - "dc:creator": "Frank Bajak and Marc Levy", - "dc:date": "2023-12-01T00:28:48+00:00", - "content": "Three members of Congress are asking the U.S. Justice Department to investigate how hackers breached a water utility system near Pittsburgh", - "contentSnippet": "Three members of Congress are asking the U.S. Justice Department to investigate how hackers breached a water utility system near Pittsburgh", - "guid": "b2456552", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-01T00:28:48.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2023-12-01T00:25:39+00:00", - "title": "Oklahoma executes double killer despite clemency recommendation", - "link": "https://www.the-independent.com/news/world/americas/crime/phillip-hancock-execution-oklahoma-stitt-b2456529.html", - "pubDate": "Fri, 01 Dec 2023 00:25:39 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2023-12-01T00:25:39+00:00", - "content": "

Phillip Dean Hancock, 59, received a three-drug lethal injection at the Oklahoma State Penitentiary for the 2001 killings of Robert Jett Jr and James Lynch

", - "contentSnippet": "Phillip Dean Hancock, 59, received a three-drug lethal injection at the Oklahoma State Penitentiary for the 2001 killings of Robert Jett Jr and James Lynch", - "guid": "b2456529", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-12-01T00:25:39.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-01T00:23:20+00:00", - "title": "Federal judge blocks Montana's first-in-the-nation ban on TikTok, says it's unconstitutional", - "link": "https://www.independent.co.uk/news/montana-ap-tiktok-chinese-helena-b2456550.html", - "pubDate": "Fri, 01 Dec 2023 00:23:20 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-01T00:23:20+00:00", - "content": "A federal judge has blocked Montana's first-in-the-nation law banning the video-sharing app TikTok in the state while a legal challenge to the law moves through the courts", - "contentSnippet": "A federal judge has blocked Montana's first-in-the-nation law banning the video-sharing app TikTok in the state while a legal challenge to the law moves through the courts", - "guid": "b2456550", - "isoDate": "2023-12-01T00:23:20.000Z" - }, - { - "creator": "Amy Beth Hanson", - "date": "2023-12-01T00:15:33+00:00", - "title": "Montana miner backs off expansion plans, lays off 100 due to lower palladium prices", - "link": "https://www.independent.co.uk/news/montana-ap-stillwater-united-states-south-africa-b2456548.html", - "pubDate": "Fri, 01 Dec 2023 00:15:33 GMT", - "dc:creator": "Amy Beth Hanson", - "dc:date": "2023-12-01T00:15:33+00:00", - "content": "The owner of two a south-central Montana precious metals mines is stopping work on an expansion project and laying off about 100 workers because the price of palladium fell sharply in the past year", - "contentSnippet": "The owner of two a south-central Montana precious metals mines is stopping work on an expansion project and laying off about 100 workers because the price of palladium fell sharply in the past year", - "guid": "b2456548", - "isoDate": "2023-12-01T00:15:33.000Z" - }, - { - "creator": "Louise Boyle", - "date": "2023-12-01T00:01:00+00:00", - "title": "As climate crisis reaches pivotal moment, what on earth are world leaders waiting for?", - "link": "https://www.independent.co.uk/climate-change/news/cop28-climate-change-conference-dubai-b2456358.html", - "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", - "dc:creator": "Louise Boyle", - "dc:date": "2023-12-01T00:01:00+00:00", - "content": "

2023 is officially the hottest year on record. World leaders gathering today in Dubai for the UN Climate Change Conference already know what they must do to reverse global warming but, as King Charles is set to warn them, this must be a \u2018critical turning point\u2019. Senior climate correspondent Louise Boyle reports

", - "contentSnippet": "2023 is officially the hottest year on record. World leaders gathering today in Dubai for the UN Climate Change Conference already know what they must do to reverse global warming but, as King Charles is set to warn them, this must be a \u2018critical turning point\u2019. Senior climate correspondent Louise Boyle reports", - "guid": "b2456358", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2023-12-01T00:01:00.000Z" - }, - { - "creator": "Karen Matthews", - "date": "2023-11-30T23:56:33+00:00", - "title": "Drivers would pay $15 to enter busiest part of NYC under plan to raise funds for mass transit", - "link": "https://www.independent.co.uk/news/ap-manhattan-metropolitan-transportation-authority-nyc-taxi-drivers-b2456530.html", - "pubDate": "Thu, 30 Nov 2023 23:56:33 GMT", - "dc:creator": "Karen Matthews", - "dc:date": "2023-11-30T23:56:33+00:00", - "content": "Most drivers would pay $15 to enter Manhattan\u2019s central business district under a plan released by New York officials", - "contentSnippet": "Most drivers would pay $15 to enter Manhattan\u2019s central business district under a plan released by New York officials", - "guid": "b2456530", - "isoDate": "2023-11-30T23:56:33.000Z" - }, - { - "creator": "Alex Woodward", - "date": "2023-11-30T23:53:30+00:00", - "title": "Tucker Carlson says he plans to vote for Trump", - "link": "https://www.the-independent.com/news/world/americas/us-politics/tucker-carlson-trump-vote-b2456525.html", - "pubDate": "Thu, 30 Nov 2023 23:53:30 GMT", - "dc:creator": "Alex Woodward", - "dc:date": "2023-11-30T23:53:30+00:00", - "content": "

The far-right former Fox News commentator previously said he \u2018passionately\u2019 hates the former president

", - "contentSnippet": "The far-right former Fox News commentator previously said he \u2018passionately\u2019 hates the former president", - "guid": "b2456525", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-11-30T23:53:30.000Z" - }, - { - "creator": "Brittany Miller", - "date": "2023-11-30T23:48:10+00:00", - "title": "Kim Kardashian reveals how she thinks her family earned their fame ", - "link": "https://www.independent.co.uk/life-style/kim-kardashian-jenner-family-fame-b2456264.html", - "pubDate": "Thu, 30 Nov 2023 23:48:10 GMT", - "dc:creator": "Brittany Miller", - "dc:date": "2023-11-30T23:48:10+00:00", - "content": "

\u2018We scammed the system\u2019

", - "contentSnippet": "\u2018We scammed the system\u2019", - "guid": "b2456264", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-11-30T23:48:10.000Z" - }, - { - "creator": "Tom Murray", - "date": "2023-12-01T02:02:54+00:00", - "title": "The Golden Bachelor: Gerry gives the final rose in heart-wrenching finale", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/golden-bachelor-winner-gerry-leslie-theresa-b2456503.html", - "pubDate": "Fri, 01 Dec 2023 02:02:54 GMT", - "dc:creator": "Tom Murray", - "dc:date": "2023-12-01T02:02:54+00:00", - "content": "

The two finalists fighting for Gerry\u2019s heart were 70-year-old financial services professional Theresa Nist and 64-year-old fitness instructor Leslie Fhima

", - "contentSnippet": "The two finalists fighting for Gerry\u2019s heart were 70-year-old financial services professional Theresa Nist and 64-year-old fitness instructor Leslie Fhima", - "guid": "b2456503", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-01T02:02:54.000Z" - }, - { - "creator": "Vishwam Sankaran", - "date": "2023-12-01T02:00:45+00:00", - "title": "Sports magazine under fire for publishing AI-written articles crediting non-existent authors", - "link": "https://www.independent.co.uk/tech/ai-articles-magazine-under-fire-b2455216.html", - "pubDate": "Fri, 01 Dec 2023 02:00:45 GMT", - "dc:creator": "Vishwam Sankaran", - "dc:date": "2023-12-01T02:00:45+00:00", - "content": "

Author profile found under deleted article was allegedly created using AI

", - "contentSnippet": "Author profile found under deleted article was allegedly created using AI", - "guid": "b2455216", - "categories": [ - "Tech" - ], - "isoDate": "2023-12-01T02:00:45.000Z" - }, - { - "creator": "Isobel Lewis", - "date": "2023-12-01T01:55:44+00:00", - "title": "The Crown recreates moment Kate Middleton wows Prince William at university fashion show ", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/crown-season-6-kate-william-fashion-show-b2456569.html", - "pubDate": "Fri, 01 Dec 2023 01:55:44 GMT", - "dc:creator": "Isobel Lewis", - "dc:date": "2023-12-01T01:55:44+00:00", - "content": "

Kate famously walked in St Andrews charity fashion show, which William attended

", - "contentSnippet": "Kate famously walked in St Andrews charity fashion show, which William attended", - "guid": "b2456569", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-01T01:55:44.000Z" - }, - { - "creator": "Josh Marcus", - "date": "2023-12-01T01:53:59+00:00", - "title": "Protesters target weapons manufacturers supplying Israel-Hamas war", - "link": "https://www.independent.co.uk/news/world/americas/protest-arizona-israel-raytheon-arrest-b2456566.html", - "pubDate": "Fri, 01 Dec 2023 01:53:59 GMT", - "dc:creator": "Josh Marcus", - "dc:date": "2023-12-01T01:53:59+00:00", - "content": "

Protests have occured in at least five US states with dozensof arrests

", - "contentSnippet": "Protests have occured in at least five US states with dozensof arrests", - "guid": "b2456566", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-01T01:53:59.000Z" - }, - { - "creator": "Graeme Massie", - "date": "2023-12-01T01:51:12+00:00", - "title": "Paramedics who injected Elijah McClain before his death \u2018did nothing\u2019 to help him, court hears", - "link": "https://www.the-independent.com/news/world/americas/crime/elijah-mcclain-paramedics-colorado-trial-b2456562.html", - "pubDate": "Fri, 01 Dec 2023 01:51:12 GMT", - "dc:creator": "Graeme Massie", - "dc:date": "2023-12-01T01:51:12+00:00", - "content": "

McClain, a 23-year-old Black man, died following a police encounter in Colorado in 2019

", - "contentSnippet": "McClain, a 23-year-old Black man, died following a police encounter in Colorado in 2019", - "guid": "b2456562", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-12-01T01:51:12.000Z" - }, - { - "creator": "Ed Davey and David Pereda Zavaleta", - "date": "2023-12-01T01:48:33+00:00", - "title": "Peruvian rainforest defender from embattled Kichwa tribe shot dead in river attack", - "link": "https://www.independent.co.uk/news/ap-lima-amazon-andes-b2456568.html", - "pubDate": "Fri, 01 Dec 2023 01:48:33 GMT", - "dc:creator": "Ed Davey and David Pereda Zavaleta", - "dc:date": "2023-12-01T01:48:33+00:00", - "content": "A Kichwa tribal leader has been shot to death in an area of the Peruvian rainforest that\u2019s seen high tension between Indigenous people and illegal loggers", - "contentSnippet": "A Kichwa tribal leader has been shot to death in an area of the Peruvian rainforest that\u2019s seen high tension between Indigenous people and illegal loggers", - "guid": "b2456568", - "isoDate": "2023-12-01T01:48:33.000Z" - }, - { - "creator": "Ed Davey and David Pereda Zavaleta", - "date": "2023-12-01T01:40:14+00:00", - "title": "Peruvian rainforest defender from embattled Kichwa tribe shot dead in river attack", - "link": "https://www.independent.co.uk/news/ap-lima-amazon-andes-b2456567.html", - "pubDate": "Fri, 01 Dec 2023 01:40:14 GMT", - "dc:creator": "Ed Davey and David Pereda Zavaleta", - "dc:date": "2023-12-01T01:40:14+00:00", - "content": "A Kichwa tribal leader has been shot to death in an area of the Peruvian rainforest that\u2019s seen high tension between Indigenous people and illegal loggers", - "contentSnippet": "A Kichwa tribal leader has been shot to death in an area of the Peruvian rainforest that\u2019s seen high tension between Indigenous people and illegal loggers", - "guid": "b2456567", - "isoDate": "2023-12-01T01:40:14.000Z" - }, - { - "creator": "Josh Marcus", - "date": "2023-12-01T02:28:12+00:00", - "title": "Newsom trolls DeSantis over flailing 2024 bid in hostile Fox News debate", - "link": "https://www.the-independent.com/news/world/americas/us-politics/newsom-desantis-debate-fox-news-b2456571.html", - "pubDate": "Fri, 01 Dec 2023 02:28:12 GMT", - "dc:creator": "Josh Marcus", - "dc:date": "2023-12-01T02:28:12+00:00", - "content": "

Florida governor trails former president Donald Trump in 2024 race

", - "contentSnippet": "Florida governor trails former president Donald Trump in 2024 race", - "guid": "b2456571", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-01T02:28:12.000Z" - }, - { - "creator": "Andrea Cavallier", - "date": "2023-12-08T09:37:19+00:00", - "title": "Why is Jonathan Majors on trial for assault?", - "link": "https://www.the-independent.com/news/world/americas/crime/jonathan-majors-trial-girlfriend-assault-b2460711.html", - "pubDate": "Fri, 08 Dec 2023 09:37:19 GMT", - "dc:creator": "Andrea Cavallier", - "dc:date": "2023-12-08T09:37:19+00:00", - "content": "

The 34-year-old Marvel actor could be sentenced to up to a year in jail if convicted

", - "contentSnippet": "The 34-year-old Marvel actor could be sentenced to up to a year in jail if convicted", - "guid": "b2460711", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-12-08T09:37:19.000Z" - }, - { - "creator": "Barney Davis", - "date": "2023-12-08T09:37:02+00:00", - "title": "\u2018Shane MacGowan a wildman? Nonsense \u2013 he was a shy gent\u2019", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/shane-macgowan-tributes-funeral-b2459783.html", - "pubDate": "Fri, 08 Dec 2023 09:37:02 GMT", - "dc:creator": "Barney Davis", - "dc:date": "2023-12-08T09:37:02+00:00", - "content": "

Shane MacGowan\u2019s \u2018hellraiser persona that was just fake\u2019, his close friend, pub landlord and now undertaker Philly Ryan said

", - "contentSnippet": "Shane MacGowan\u2019s \u2018hellraiser persona that was just fake\u2019, his close friend, pub landlord and now undertaker Philly Ryan said", - "guid": "b2459783", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-12-08T09:37:02.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-12-08T09:35:38+00:00", - "title": "New immigration minister mocked for claiming there is \u2018unity of purpose in parliament\u2019", - "link": "https://www.independent.co.uk/tv/news/tom-pursglove-immigration-minister-radio-4-b2460688.html", - "pubDate": "Fri, 08 Dec 2023 09:35:38 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-12-08T09:35:38+00:00", - "content": "

Tom Pursglove was mocked for claiming there is a \u201cunity of purpose in parliament\u201d on the Rwanda treaty.

", - "contentSnippet": "Tom Pursglove was mocked for claiming there is a \u201cunity of purpose in parliament\u201d on the Rwanda treaty.", - "guid": "b2460688", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-12-08T09:35:38.000Z" - }, - { - "creator": "Lawrence Ostlere", - "date": "2023-12-08T09:35:11+00:00", - "title": "Jon Rahm\u2019s LIV defection is the ultimate Saudi power play in pivotal PGA Tour talks", - "link": "https://www.independent.co.uk/sport/golf/jon-rahm-liv-golf-pga-tour-talks-news-b2460437.html", - "pubDate": "Fri, 08 Dec 2023 09:35:11 GMT", - "dc:creator": "Lawrence Ostlere", - "dc:date": "2023-12-08T09:35:11+00:00", - "content": "

The world No 3 has ditched the PGA Tour for LIV Golf \u2013 seismic news ahead of crucial negotiations for the future of the game

", - "contentSnippet": "The world No 3 has ditched the PGA Tour for LIV Golf \u2013 seismic news ahead of crucial negotiations for the future of the game", - "guid": "b2460437", - "categories": [ - "Golf", - "Sport" - ], - "isoDate": "2023-12-08T09:35:11.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2023-12-08T09:30:18+00:00", - "title": "Taiwan says Chinese \u2018weather balloon\u2019 spotted over Taiwan Strait ahead of crucial election", - "link": "https://www.independent.co.uk/asia/china/chinese-balloon-taiwan-strait-weather-b2460645.html", - "pubDate": "Fri, 08 Dec 2023 09:30:18 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2023-12-08T09:30:18+00:00", - "content": "

Taiwan says Chinese balloon travelled eastward for about an hour before disappearing

", - "contentSnippet": "Taiwan says Chinese balloon travelled eastward for about an hour before disappearing", - "guid": "b2460645", - "categories": [ - "China", - "Asia" - ], - "isoDate": "2023-12-08T09:30:18.000Z" - }, - { - "creator": "Vicky Shaw", - "date": "2023-12-08T09:30:17+00:00", - "title": "Average two-year mortgage rate dips below 6% for first time in nearly six months", - "link": "https://www.independent.co.uk/money/average-twoyear-mortgage-rate-dips-below-6-for-first-time-in-nearly-six-months-b2460709.html", - "pubDate": "Fri, 08 Dec 2023 09:30:17 GMT", - "dc:creator": "Vicky Shaw", - "dc:date": "2023-12-08T09:30:17+00:00", - "content": "The average two-year fixed-rate homeowner mortgage deal on the market dipped to 5.99% on Friday, according to Moneyfactscompare.co.uk.", - "contentSnippet": "The average two-year fixed-rate homeowner mortgage deal on the market dipped to 5.99% on Friday, according to Moneyfactscompare.co.uk.", - "guid": "b2460709", - "categories": [ - "Money" - ], - "isoDate": "2023-12-08T09:30:17.000Z" - }, - { - "creator": "Barney Davis", - "date": "2023-12-08T09:27:39+00:00", - "title": "Shane MacGowan funeral - latest: Thousands to line Dublin streets to give Pogues singer perfect send off ", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/shane-macgowan-funeral-today-the-pogues-time-b2460626.html", - "pubDate": "Fri, 08 Dec 2023 09:27:39 GMT", - "dc:creator": "Barney Davis", - "dc:date": "2023-12-08T09:27:39+00:00", - "content": "

The Fairytale of New York singer will be laid to rest in a private cremation in Nenagh

", - "contentSnippet": "The Fairytale of New York singer will be laid to rest in a private cremation in Nenagh", - "guid": "b2460626", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-12-08T09:27:39.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2023-12-08T09:15:58+00:00", - "title": "Tuberculosis scare strikes North Carolina school", - "link": "https://www.independent.co.uk/news/world/americas/tuberculosis-north-carolina-school-spread-b2460373.html", - "pubDate": "Fri, 08 Dec 2023 09:15:58 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2023-12-08T09:15:58+00:00", - "content": "

A rare case of tuberculosis left students and parents at Ragsdale High School in \u2018panic\u2019

", - "contentSnippet": "A rare case of tuberculosis left students and parents at Ragsdale High School in \u2018panic\u2019", - "guid": "b2460373", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-08T09:15:58.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-08T09:13:21+00:00", - "title": "When will Conor McGregor return to the UFC?", - "link": "https://www.independent.co.uk/sport/ufc/conor-mcgregor-next-fight-return-date-b2428512.html", - "pubDate": "Fri, 08 Dec 2023 09:13:21 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-08T09:13:21+00:00", - "content": "

The Irishman, who last fought in July 2021, has finally returned to the Usada drug-testing pool

", - "contentSnippet": "The Irishman, who last fought in July 2021, has finally returned to the Usada drug-testing pool", - "guid": "b2428512", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-12-08T09:13:21.000Z" - }, - { - "creator": "Sport Staff", - "date": "2023-12-08T09:13:03+00:00", - "title": "The Independent\u2019s pound-for-pound boxing rankings", - "link": "https://www.independent.co.uk/sport/boxing/boxing-rankings-fighters-p4p-list-2023-b2421206.html", - "pubDate": "Fri, 08 Dec 2023 09:13:03 GMT", - "dc:creator": "Sport Staff", - "dc:date": "2023-12-08T09:13:03+00:00", - "content": "

Here are our top 10 men\u2019s boxers in the world

", - "contentSnippet": "Here are our top 10 men\u2019s boxers in the world", - "guid": "b2421206", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-12-08T09:13:03.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-08T09:12:54+00:00", - "title": "UFC rankings: The Independent\u2019s pound-for-pound fighters list", - "link": "https://www.independent.co.uk/sport/ufc/ufc-rankings-fighters-p4p-list-2023-b2446348.html", - "pubDate": "Fri, 08 Dec 2023 09:12:54 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-08T09:12:54+00:00", - "content": "

Here are our top 10 men\u2019s fighters in the UFC, in a list to be updated throughout the year

", - "contentSnippet": "Here are our top 10 men\u2019s fighters in the UFC, in a list to be updated throughout the year", - "guid": "b2446348", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-12-08T09:12:54.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-08T09:12:49+00:00", - "title": "Next UFC Fight Night: Event start time, card and how to watch", - "link": "https://www.independent.co.uk/sport/ufc/next-ufc-fight-event-december-schedule-2023-b2457962.html", - "pubDate": "Fri, 08 Dec 2023 09:12:49 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-08T09:12:49+00:00", - "content": "

All you need to know about the MMA promotion\u2019s upcoming fights

", - "contentSnippet": "All you need to know about the MMA promotion\u2019s upcoming fights", - "guid": "b2457962", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-12-08T09:12:49.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-08T09:12:35+00:00", - "title": "UFC schedule 2023: Every major fight happening this year", - "link": "https://www.independent.co.uk/sport/ufc/ufc-schedule-2023-events-fights-december-b2457960.html", - "pubDate": "Fri, 08 Dec 2023 09:12:35 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-08T09:12:35+00:00", - "content": "

Here\u2019s a look at every fight and event that the MMA promotion has left in 2023

", - "contentSnippet": "Here\u2019s a look at every fight and event that the MMA promotion has left in 2023", - "guid": "b2457960", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-12-08T09:12:35.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-08T09:12:06+00:00", - "title": "Devin Haney vs Regis Prograis time: When does fight start in UK and US this weekend?", - "link": "https://www.independent.co.uk/sport/boxing/haney-prograis-start-time-ring-walks-b2457985.html", - "pubDate": "Fri, 08 Dec 2023 09:12:06 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-08T09:12:06+00:00", - "content": "

Haney is vacating the undisputed lightweight belts and moving up to challenge Prograis at super-lightweight

", - "contentSnippet": "Haney is vacating the undisputed lightweight belts and moving up to challenge Prograis at super-lightweight", - "guid": "b2457985", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-12-08T09:12:06.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-08T09:12:02+00:00", - "title": "Devin Haney vs Regis Prograis live stream: How to watch fight online and on TV this weekend", - "link": "https://www.independent.co.uk/sport/boxing/haney-prograis-live-stream-watch-online-b2457973.html", - "pubDate": "Fri, 08 Dec 2023 09:12:02 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-08T09:12:02+00:00", - "content": "

Haney is vacating the undisputed lightweight belts and moving up to challenge Prograis at super-lightweight

", - "contentSnippet": "Haney is vacating the undisputed lightweight belts and moving up to challenge Prograis at super-lightweight", - "guid": "b2457973", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-12-08T09:12:02.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-12-08T09:12:00+00:00", - "title": "The unpredictable mystery being called \u2018best film of 2023\u2019 ", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/best-film-2023-trenque-lauquen-b2460698.html", - "pubDate": "Fri, 08 Dec 2023 09:12:00 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-12-08T09:12:00+00:00", - "content": "

Unsettling puzzle of a movie is destined to become a cult classic

", - "contentSnippet": "Unsettling puzzle of a movie is destined to become a cult classic", - "guid": "b2460698", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2023-12-08T09:12:00.000Z" - }, - { - "creator": "Richard Jolly", - "date": "2023-12-08T09:10:04+00:00", - "title": "Overworked and overcome, Newcastle prove modern football takes more than 11 players", - "link": "https://www.independent.co.uk/sport/football/newcastle-united-injuries-news-everton-b2460695.html", - "pubDate": "Fri, 08 Dec 2023 09:10:04 GMT", - "dc:creator": "Richard Jolly", - "dc:date": "2023-12-08T09:10:04+00:00", - "content": "

With a packed fixture list and without replacements ready to change the game, Eddie Howe is left trying to limit the damage

", - "contentSnippet": "With a packed fixture list and without replacements ready to change the game, Eddie Howe is left trying to limit the damage", - "guid": "b2460695", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T09:10:04.000Z" - }, - { - "creator": "Andrea Blanco", - "date": "2023-12-08T09:05:19+00:00", - "title": "Texas shooting spree: Young mother and handyman named among six victims in Austin ", - "link": "https://www.independent.co.uk/news/world/americas/texas-austin-shooting-unlv-latest-news-b2460687.html", - "pubDate": "Fri, 08 Dec 2023 09:05:19 GMT", - "dc:creator": "Andrea Blanco", - "dc:date": "2023-12-08T09:05:19+00:00", - "content": "

Shane James, 34, arrested on capital murder charges on Tuesday

", - "contentSnippet": "Shane James, 34, arrested on capital murder charges on Tuesday", - "guid": "b2460687", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-08T09:05:19.000Z" - }, - { - "creator": "Henry Saker-Clark", - "date": "2023-12-08T09:02:12+00:00", - "title": "Miner Anglo American reveals production cuts to combat cost rises", - "link": "https://www.independent.co.uk/business/miner-anglo-american-reveals-production-cuts-to-combat-cost-rises-b2460702.html", - "pubDate": "Fri, 08 Dec 2023 09:02:12 GMT", - "dc:creator": "Henry Saker-Clark", - "dc:date": "2023-12-08T09:02:12+00:00", - "content": "Shares in the FTSE 100 company slumped in early trading after it announced the move, which is set to result in a 4% drop in production next year.", - "contentSnippet": "Shares in the FTSE 100 company slumped in early trading after it announced the move, which is set to result in a 4% drop in production next year.", - "guid": "b2460702", - "categories": [ - "Business" - ], - "isoDate": "2023-12-08T09:02:12.000Z" - }, - { - "creator": "Finn Cliff Hodges", - "date": "2023-12-08T09:00:24+00:00", - "title": "Ricky Gervais \u2018condemned for ableist slur\u2019 in new Netflix special", - "link": "https://www.independent.co.uk/arts-entertainment/comedy/news/ricky-gervais-netflix-special-ableist-slur-b2460690.html", - "pubDate": "Fri, 08 Dec 2023 09:00:24 GMT", - "dc:creator": "Finn Cliff Hodges", - "dc:date": "2023-12-08T09:00:24+00:00", - "content": "

Gervais recieves backlash after he jokes that terminally ill children are \u2018f****** re******\u2019, in new teaser for Netflix special

", - "contentSnippet": "Gervais recieves backlash after he jokes that terminally ill children are \u2018f****** re******\u2019, in new teaser for Netflix special", - "guid": "b2460690", - "categories": [ - "News", - "Comedy", - "Culture" - ], - "isoDate": "2023-12-08T09:00:24.000Z" - }, - { - "creator": "Jonathan Veal", - "date": "2023-12-08T09:00:23+00:00", - "title": "It would mean everything \u2013 Rob Cross hoping improved form can bring world title", - "link": "https://www.independent.co.uk/sport/rob-cross-phil-taylor-paddy-power-professional-darts-corporation-alexandra-palace-b2460699.html", - "pubDate": "Fri, 08 Dec 2023 09:00:23 GMT", - "dc:creator": "Jonathan Veal", - "dc:date": "2023-12-08T09:00:23+00:00", - "content": "The 33-year-old was crowned world champion in 2018.", - "contentSnippet": "The 33-year-old was crowned world champion in 2018.", - "guid": "b2460699", - "categories": [ - "Sport" - ], - "isoDate": "2023-12-08T09:00:23.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-08T08:58:37+00:00", - "title": "Watch: Intruder floods winery cellar with 5,000 gallons of wine", - "link": "https://www.independent.co.uk/tv/news/intruder-wine-cellar-floods-washington-b2460683.html", - "pubDate": "Fri, 08 Dec 2023 08:58:37 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-08T08:58:37+00:00", - "content": "

A masked intruder flooded a winery\u2019s cellar with 5,000 gallons of wine.

", - "contentSnippet": "A masked intruder flooded a winery\u2019s cellar with 5,000 gallons of wine.", - "guid": "b2460683", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-12-08T08:58:37.000Z" - }, - { - "creator": "Najib Jobain,Bassem Mroue and Elena Becatoros", - "date": "2023-12-08T08:57:48+00:00", - "title": "Palestinians crowd into ever-shrinking areas in Gaza as Israel's war against Hamas enters 3rd month", - "link": "https://www.independent.co.uk/news/gaza-ap-israel-hamas-united-nations-b2460694.html", - "pubDate": "Fri, 08 Dec 2023 08:57:48 GMT", - "dc:creator": "Najib Jobain,Bassem Mroue and Elena Becatoros", - "dc:date": "2023-12-08T08:57:48+00:00", - "content": "Desperate Palestinians fleeing Israel\u2019s expanding ground offensive crowded into an ever-shrinking area of the Gaza Strip as the Israel-Hamas war entered its third month Friday", - "contentSnippet": "Desperate Palestinians fleeing Israel\u2019s expanding ground offensive crowded into an ever-shrinking area of the Gaza Strip as the Israel-Hamas war entered its third month Friday", - "guid": "b2460694", - "isoDate": "2023-12-08T08:57:48.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-08T08:55:12+00:00", - "title": "Watch live: Cop28 President Al Jaber holds press conference as he urges nations to \u2018get out of comfort zones\u2019", - "link": "https://www.independent.co.uk/news/cop28-dubai-president-press-conference-stream-b2460677.html", - "pubDate": "Fri, 08 Dec 2023 08:55:12 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-08T08:55:12+00:00", - "content": "

Watch live as Cop28 President Sultan Al Jaber holds a news conference on Friday (8 December).

", - "contentSnippet": "Watch live as Cop28 President Sultan Al Jaber holds a news conference on Friday (8 December).", - "guid": "b2460677", - "isoDate": "2023-12-08T08:55:12.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2023-12-08T08:44:57+00:00", - "title": "Rishi Sunak news \u2013 live: Rwanda costs soar as PM \u2018hit by flurry of no confidence letters\u2019 in Tory revolt", - "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-rwanda-bill-suella-braverman-b2460660.html", - "pubDate": "Fri, 08 Dec 2023 08:44:57 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2023-12-08T08:44:57+00:00", - "content": "

Cost of scheme expected to rise to \u00a3290m after ministers initially spend \u00a3140m on deal

", - "contentSnippet": "Cost of scheme expected to rise to \u00a3290m after ministers initially spend \u00a3140m on deal", - "guid": "b2460660", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2023-12-08T08:44:57.000Z" - }, - { - "creator": "Graeme Massie and Michelle Del Rey", - "date": "2023-12-08T08:44:30+00:00", - "title": "Jonathan Majors trial - live: Grace Jabbari breaks down in court over video from night of alleged assault", - "link": "https://www.independent.co.uk/news/world/americas/jonathan-majors-trial-grace-jabbari-girlfriend-latest-b2460682.html", - "pubDate": "Fri, 08 Dec 2023 08:44:30 GMT", - "dc:creator": "Graeme Massie and Michelle Del Rey", - "dc:date": "2023-12-08T08:44:30+00:00", - "content": "

Ex-girlfriend Grace Jabbari cried while providing testimony

", - "contentSnippet": "Ex-girlfriend Grace Jabbari cried while providing testimony", - "guid": "b2460682", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-08T08:44:30.000Z" - }, - { - "creator": "Kelly Rissman and Katie Hawkinson", - "date": "2023-12-08T08:36:53+00:00", - "title": "Young Thug trial judge sends stark warning to jury: Live updates ", - "link": "https://www.independent.co.uk/news/world/americas/young-thug-trial-sentence-latest-update-b2460680.html", - "pubDate": "Fri, 08 Dec 2023 08:36:53 GMT", - "dc:creator": "Kelly Rissman and Katie Hawkinson", - "dc:date": "2023-12-08T08:36:53+00:00", - "content": "

Girlfriend Mariah the Scientist reacts to sweater claims in Rico trial

", - "contentSnippet": "Girlfriend Mariah the Scientist reacts to sweater claims in Rico trial", - "guid": "b2460680", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-08T08:36:53.000Z" - }, - { - "creator": "Nick Hilton", - "date": "2023-12-08T08:35:48+00:00", - "title": "Smothered review: A zeitgeisty portrait of millennial life", - "link": "https://www.independent.co.uk/arts-entertainment/tv/reviews/smothered-sky-comedy-review-b2459326.html", - "pubDate": "Fri, 08 Dec 2023 08:35:48 GMT", - "dc:creator": "Nick Hilton", - "dc:date": "2023-12-08T08:35:48+00:00", - "content": "

Sky Comedy romcom stars Danielle Vitalis and Jon Pointing as chalk-and-cheese lovers

", - "contentSnippet": "Sky Comedy romcom stars Danielle Vitalis and Jon Pointing as chalk-and-cheese lovers", - "guid": "b2459326", - "categories": [ - "Reviews", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-08T08:35:48.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2023-12-08T08:32:04+00:00", - "title": "A career professor gunman, three killed and a campus in fear: What we know about the UNLV shooting ", - "link": "https://www.the-independent.com/news/world/americas/crime/unlv-shooting-las-vegas-anthony-polito-professor-b2460679.html", - "pubDate": "Fri, 08 Dec 2023 08:32:04 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2023-12-08T08:32:04+00:00", - "content": "

While authorities reassured the commmuntity that there was \u2018no further threat,\u2019 many questions still remain, largely to do with the shooter and their motive. Mike Bedigan looks at what we know so far

", - "contentSnippet": "While authorities reassured the commmuntity that there was \u2018no further threat,\u2019 many questions still remain, largely to do with the shooter and their motive. Mike Bedigan looks at what we know so far", - "guid": "b2460679", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-12-08T08:32:04.000Z" - }, - { - "creator": "Karl Matchett", - "date": "2023-12-08T08:25:16+00:00", - "title": "Jermaine Jenas and the \u2018unique\u2019 skillset which can see Formula E thrive in 2024", - "link": "https://www.independent.co.uk/sport/formula-e/jermaine-jenas-new-presenter-tnt-sports-b2459418.html", - "pubDate": "Fri, 08 Dec 2023 08:25:16 GMT", - "dc:creator": "Karl Matchett", - "dc:date": "2023-12-08T08:25:16+00:00", - "content": "

Interview: The former England international midfielder and The One Show presenter tells the Independent about embarking on a new journey outside his comfort zone

", - "contentSnippet": "Interview: The former England international midfielder and The One Show presenter tells the Independent about embarking on a new journey outside his comfort zone", - "guid": "b2459418", - "categories": [ - "Formula E", - "Sport" - ], - "isoDate": "2023-12-08T08:25:16.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2023-12-08T08:25:11+00:00", - "title": "First victims in UNLV mass shooting identified", - "link": "https://www.the-independent.com/news/world/americas/crime/vegas-unlv-shooting-anthony-polito-victims-b2460678.html", - "pubDate": "Fri, 08 Dec 2023 08:25:11 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2023-12-08T08:25:11+00:00", - "content": "

All four of the victims were faculty members at the UNLV, the college\u2019s president Keith Whitfield has confirmed

", - "contentSnippet": "All four of the victims were faculty members at the UNLV, the college\u2019s president Keith Whitfield has confirmed", - "guid": "b2460678", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-12-08T08:25:11.000Z" - }, - { - "creator": "Jamie Braidwood", - "date": "2023-12-08T08:21:24+00:00", - "title": "Jon Rahm insists he is not joining LIV Golf \u2018for the money\u2019 after \u00a3450m move", - "link": "https://www.independent.co.uk/sport/golf/jon-rahm-liv-golf-money-pga-tour-b2460673.html", - "pubDate": "Fri, 08 Dec 2023 08:21:24 GMT", - "dc:creator": "Jamie Braidwood", - "dc:date": "2023-12-08T08:21:24+00:00", - "content": "

The Masters champion has become the highest-ranked player to sign for the Saudi-backed tour

", - "contentSnippet": "The Masters champion has become the highest-ranked player to sign for the Saudi-backed tour", - "guid": "b2460673", - "categories": [ - "Golf", - "Sport" - ], - "isoDate": "2023-12-08T08:21:24.000Z" - }, - { - "creator": "Rachel Sharp", - "date": "2023-12-08T08:20:40+00:00", - "title": "Who is Anthony Polito? The college professor accused of killing three in UNLV shooting ", - "link": "https://www.the-independent.com/news/world/americas/crime/anthony-polito-unlv-shooter-professor-b2460639.html", - "pubDate": "Fri, 08 Dec 2023 08:20:40 GMT", - "dc:creator": "Rachel Sharp", - "dc:date": "2023-12-08T08:20:40+00:00", - "content": "

Anthony Polito, 67, unsuccessfully applied for a college professorship at UNLV sometime prior to embarking on the deadly shooting rampage, sources say

", - "contentSnippet": "Anthony Polito, 67, unsuccessfully applied for a college professorship at UNLV sometime prior to embarking on the deadly shooting rampage, sources say", - "guid": "b2460639", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-12-08T08:20:40.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2023-12-08T08:17:46+00:00", - "title": "Australian man dies after \u2018falling head-first\u2019 into deep sand pit", - "link": "https://www.independent.co.uk/news/world/australasia/australia-man-dies-buried-sand-b2460581.html", - "pubDate": "Fri, 08 Dec 2023 08:17:46 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2023-12-08T08:17:46+00:00", - "content": "

Man succumbs to injuries after falling into a sand hole meant for roasting pig

", - "contentSnippet": "Man succumbs to injuries after falling into a sand hole meant for roasting pig", - "guid": "b2460581", - "categories": [ - "Australasia", - "World" - ], - "isoDate": "2023-12-08T08:17:46.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-12-08T08:17:38+00:00", - "title": "First look at Lego Fortnite as trailer released for Minecraft rival", - "link": "https://www.independent.co.uk/tv/culture/lego-fortnite-cinematic-trailer-release-b2460670.html", - "pubDate": "Fri, 08 Dec 2023 08:17:38 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-12-08T08:17:38+00:00", - "content": "

Fortnite released its first cinematic trailer for its collaboration with Lego alongside the game mode\u2019s launch on December 7.

", - "contentSnippet": "Fortnite released its first cinematic trailer for its collaboration with Lego alongside the game mode\u2019s launch on December 7.", - "guid": "b2460670", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-12-08T08:17:38.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-08T08:14:06+00:00", - "title": "Watch: Princess of Wales invites fans to join royal family for special Christmas carol service", - "link": "https://www.independent.co.uk/tv/lifestyle/kate-princess-royal-christmas-westminster-abbey-b2460665.html", - "pubDate": "Fri, 08 Dec 2023 08:14:06 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-08T08:14:06+00:00", - "content": "

The Princess of Wales invites people across the country to join her for a \u201cspecial carol service\u201d at Westminster Abbey.

", - "contentSnippet": "The Princess of Wales invites people across the country to join her for a \u201cspecial carol service\u201d at Westminster Abbey.", - "guid": "b2460665", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2023-12-08T08:14:06.000Z" - }, - { - "creator": "Ken Moritsugu", - "date": "2023-12-08T08:09:47+00:00", - "title": "Post-summit news conferences highlight the divide between China and the EU", - "link": "https://www.independent.co.uk/news/european-union-ap-china-chinese-ursula-von-der-leyen-b2460675.html", - "pubDate": "Fri, 08 Dec 2023 08:09:47 GMT", - "dc:creator": "Ken Moritsugu", - "dc:date": "2023-12-08T08:09:47+00:00", - "content": "From trade to human rights, the leaders of China and the European Union differed on a wide range of issues at a summit this week in the Chinese capital", - "contentSnippet": "From trade to human rights, the leaders of China and the European Union differed on a wide range of issues at a summit this week in the Chinese capital", - "guid": "b2460675", - "isoDate": "2023-12-08T08:09:47.000Z" - }, - { - "creator": "Oliver O'Connell and Alex Woodward", - "date": "2023-12-08T08:01:11+00:00", - "title": "Trump returns to court for New York fraud trial: Live updates ", - "link": "https://www.independent.co.uk/news/world/americas/trump-fraud-trial-live-updates-truth-social-b2460661.html", - "pubDate": "Fri, 08 Dec 2023 08:01:11 GMT", - "dc:creator": "Oliver O'Connell and Alex Woodward", - "dc:date": "2023-12-08T08:01:11+00:00", - "content": "

Court appearance comes on the heels of troubling \u2018dictator\u2019 comments

", - "contentSnippet": "Court appearance comes on the heels of troubling \u2018dictator\u2019 comments", - "guid": "b2460661", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-08T08:01:11.000Z" - }, - { - "creator": "Helen Brown", - "date": "2023-12-08T08:00:42+00:00", - "title": "I met Benjamin Zephaniah several times \u2013 he was as open and kind-hearted as his poetry ", - "link": "https://www.independent.co.uk/arts-entertainment/books/features/benjamin-zephaniah-death-poetry-poet-meeting-b2460666.html", - "pubDate": "Fri, 08 Dec 2023 08:00:42 GMT", - "dc:creator": "Helen Brown", - "dc:date": "2023-12-08T08:00:42+00:00", - "content": "

Helen Brown interviewed the poet and writer on many occasions before his death. Here, she speaks about what made him so special, both to herself and her autistic son on whom his poetry had such a profound effect

", - "contentSnippet": "Helen Brown interviewed the poet and writer on many occasions before his death. Here, she speaks about what made him so special, both to herself and her autistic son on whom his poetry had such a profound effect", - "guid": "b2460666", - "categories": [ - "Features", - "Books", - "Culture" - ], - "isoDate": "2023-12-08T08:00:42.000Z" - }, - { - "creator": "Marcia Dunn", - "date": "2023-12-08T08:00:06+00:00", - "title": "Asteroid will pass in front of bright star Betelgeuse to produce a rare eclipse visible to millions", - "link": "https://www.independent.co.uk/news/betelgeuse-ap-cape-canaveral-one-italy-b2460671.html", - "pubDate": "Fri, 08 Dec 2023 08:00:06 GMT", - "dc:creator": "Marcia Dunn", - "dc:date": "2023-12-08T08:00:06+00:00", - "content": "One of the biggest and brightest stars in the night sky will momentarily vanish", - "contentSnippet": "One of the biggest and brightest stars in the night sky will momentarily vanish", - "guid": "b2460671", - "isoDate": "2023-12-08T08:00:06.000Z" - }, - { - "creator": "Henry Saker-Clark", - "date": "2023-12-08T07:56:21+00:00", - "title": "House sales to stay \u2018subdued\u2019, warns Berkeley, as reservations slump", - "link": "https://www.independent.co.uk/business/house-sales-to-stay-subdued-warns-berkeley-as-reservations-slump-b2460667.html", - "pubDate": "Fri, 08 Dec 2023 07:56:21 GMT", - "dc:creator": "Henry Saker-Clark", - "dc:date": "2023-12-08T07:56:21+00:00", - "content": "The London-listed firm\u2019s profits lifted for the past half-year despite completing fewer homes.", - "contentSnippet": "The London-listed firm\u2019s profits lifted for the past half-year despite completing fewer homes.", - "guid": "b2460667", - "categories": [ - "Business" - ], - "isoDate": "2023-12-08T07:56:21.000Z" - }, - { - "creator": "Jamie Braidwood", - "date": "2023-12-08T07:56:06+00:00", - "title": "Rory McIlroy calls for major rule change after Jon Rahm\u2019s LIV Golf move", - "link": "https://www.independent.co.uk/sport/golf/jon-rahm-ryder-cup-liv-rory-mcilroy-b2460663.html", - "pubDate": "Fri, 08 Dec 2023 07:56:06 GMT", - "dc:creator": "Jamie Braidwood", - "dc:date": "2023-12-08T07:56:06+00:00", - "content": "

Rahm\u2019s place on Europe\u2019s future Ryder Cup team is in doubt after joining LIV Golf in a deal that could be worth up to \u00a3450m

", - "contentSnippet": "Rahm\u2019s place on Europe\u2019s future Ryder Cup team is in doubt after joining LIV Golf in a deal that could be worth up to \u00a3450m", - "guid": "b2460663", - "categories": [ - "Golf", - "Sport" - ], - "isoDate": "2023-12-08T07:56:06.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-08T07:45:07+00:00", - "title": "Joey Barton suggests women football pundits hired to \u2018tick boxes\u2019", - "link": "https://www.independent.co.uk/tv/sport/joey-barton-women-football-piers-morgan-b2460659.html", - "pubDate": "Fri, 08 Dec 2023 07:45:07 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-08T07:45:07+00:00", - "content": "

Joey Barton appears to suggest women football pundits are hired to \u201ctick boxes\u201d when he defended his controversial criticism of female broadcasters in men\u2019s football.

", - "contentSnippet": "Joey Barton appears to suggest women football pundits are hired to \u201ctick boxes\u201d when he defended his controversial criticism of female broadcasters in men\u2019s football.", - "guid": "b2460659", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2023-12-08T07:45:07.000Z" - }, - { - "creator": "Andy Hampson", - "date": "2023-12-08T07:35:48+00:00", - "title": "Sean Dyche hails Everton unity after climbing out of Premier League relegation zone", - "link": "https://www.independent.co.uk/sport/football/everton-sean-dyche-eddie-howe-abdoulaye-doucoure-dwight-mcneil-b2460534.html", - "pubDate": "Fri, 08 Dec 2023 07:35:48 GMT", - "dc:creator": "Andy Hampson", - "dc:date": "2023-12-08T07:35:48+00:00", - "content": "

Dwight McNeil, Abdoulaye Doucoure and Beto scored for the Toffees in a 3-0 win over Newcastle

", - "contentSnippet": "Dwight McNeil, Abdoulaye Doucoure and Beto scored for the Toffees in a 3-0 win over Newcastle", - "guid": "b2460534", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T07:35:48.000Z" - }, - { - "creator": "George Sessions", - "date": "2023-12-08T07:34:16+00:00", - "title": "Ange Postecoglou urges Tottenham to bounce back from West Ham defeat", - "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-west-ham-newcastle-cristian-romero-jarrod-bowen-b2460533.html", - "pubDate": "Fri, 08 Dec 2023 07:34:16 GMT", - "dc:creator": "George Sessions", - "dc:date": "2023-12-08T07:34:16+00:00", - "content": "

Spurs have not won since October 27 and welcome top-four rivals Newcastle to N17 on Sunday

", - "contentSnippet": "Spurs have not won since October 27 and welcome top-four rivals Newcastle to N17 on Sunday", - "guid": "b2460533", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T07:34:16.000Z" - }, - { - "creator": "Jamie Braidwood", - "date": "2023-12-08T07:31:14+00:00", - "title": "Son Heung-min labels Tottenham \u2018soft\u2019 as Spurs make unwanted Premier League history", - "link": "https://www.independent.co.uk/sport/football/tottenham-spurs-son-soft-premier-league-b2460658.html", - "pubDate": "Fri, 08 Dec 2023 07:31:14 GMT", - "dc:creator": "Jamie Braidwood", - "dc:date": "2023-12-08T07:31:14+00:00", - "content": "

A 2-1 defeat to West Ham means Spurs have now dropped points from a winning position in five straight games

", - "contentSnippet": "A 2-1 defeat to West Ham means Spurs have now dropped points from a winning position in five straight games", - "guid": "b2460658", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T07:31:14.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-08T07:28:05+00:00", - "title": "Watch Benjamin Zephaniah\u2019s last TV interview before death ", - "link": "https://www.independent.co.uk/tv/culture/benjamin-zephaniah-poet-death-last-interview-b2460657.html", - "pubDate": "Fri, 08 Dec 2023 07:28:05 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-08T07:28:05+00:00", - "content": "

Poet and author Benjamin Zephaniah discusses the repercussions of slavery in modern times in what is believed to be his last television interview before his death.

", - "contentSnippet": "Poet and author Benjamin Zephaniah discusses the repercussions of slavery in modern times in what is believed to be his last television interview before his death.", - "guid": "b2460657", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-12-08T07:28:05.000Z" - }, - { - "creator": "Nicole Vassell", - "date": "2023-12-08T07:26:08+00:00", - "title": "How Benjamin Zephaniah\u2019s brilliant performance in Peaky Blinders brought him to a wider global audience", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/zephaniah-death-peaky-blinders-star-b2460656.html", - "pubDate": "Fri, 08 Dec 2023 07:26:08 GMT", - "dc:creator": "Nicole Vassell", - "dc:date": "2023-12-08T07:26:08+00:00", - "content": "

Much loved writer and poet brought genuine Birmingham charm to the BBC period crime drama

", - "contentSnippet": "Much loved writer and poet brought genuine Birmingham charm to the BBC period crime drama", - "guid": "b2460656", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-08T07:26:08.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2023-12-08T07:24:27+00:00", - "title": "Trump marks Pearl Harbor anniversary years after claim he didn\u2019t know what it was", - "link": "https://www.the-independent.com/news/world/americas/us-politics/donald-trump-pearl-harbor-anniversary-b2460578.html", - "pubDate": "Fri, 08 Dec 2023 07:24:27 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2023-12-08T07:24:27+00:00", - "content": "

In 2020, a book by two Washington Post reporters claimed that Trump had limited knowledge of Pearl Harbor attack

", - "contentSnippet": "In 2020, a book by two Washington Post reporters claimed that Trump had limited knowledge of Pearl Harbor attack", - "guid": "b2460578", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-08T07:24:27.000Z" - }, - { - "creator": "Finn Cliff Hodges", - "date": "2023-12-08T07:24:15+00:00", - "title": "When Loyle Carner met his hero, Benjamin Zephaniah ", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/benjamin-zephaniah-loyle-carner-meet-b2460655.html", - "pubDate": "Fri, 08 Dec 2023 07:24:15 GMT", - "dc:creator": "Finn Cliff Hodges", - "dc:date": "2023-12-08T07:24:15+00:00", - "content": "

Carner pays tribute to \u2018the man that gave me my name\u2019 in heartfelt post after Zephiniah\u2019s death on Thursday

", - "contentSnippet": "Carner pays tribute to \u2018the man that gave me my name\u2019 in heartfelt post after Zephiniah\u2019s death on Thursday", - "guid": "b2460655", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-12-08T07:24:15.000Z" - }, - { - "creator": "Kevin E G Perry", - "date": "2023-12-08T07:21:50+00:00", - "title": "Cillian Murphy remembers \u2018proud Brummie and Peaky Blinder\u2019 Benjamin Zephaniah", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/cillian-murphy-benjamin-zephaniah-death-peaky-blinders-b2460654.html", - "pubDate": "Fri, 08 Dec 2023 07:21:50 GMT", - "dc:creator": "Kevin E G Perry", - "dc:date": "2023-12-08T07:21:50+00:00", - "content": "

Murphy paid tribute to the late poet as \u2018a truly gifted and beautiful human being\u2019

", - "contentSnippet": "Murphy paid tribute to the late poet as \u2018a truly gifted and beautiful human being\u2019", - "guid": "b2460654", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-08T07:21:50.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2023-12-08T07:21:19+00:00", - "title": "UNLV shooting suspect had \u2018target list\u2019 of people before deadly attack", - "link": "https://www.independent.co.uk/news/world/americas/las-vegas-nevada-campus-shooting-target-list-anthony-polito-b2460624.html", - "pubDate": "Fri, 08 Dec 2023 07:21:19 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2023-12-08T07:21:19+00:00", - "content": "

\u2018None of the individuals on the target list became a victim,\u2019 says Clark County sheriff Kevin McMahill

", - "contentSnippet": "\u2018None of the individuals on the target list became a victim,\u2019 says Clark County sheriff Kevin McMahill", - "guid": "b2460624", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-08T07:21:19.000Z" - }, - { - "creator": "Kehinde Andrews", - "date": "2023-12-08T07:16:59+00:00", - "title": "Voices: Benjamin Zephaniah was the heart and consciousness of Black Britain ", - "link": "https://www.independent.co.uk/voices/benjamin-zephaniah-death-poet-black-race-b2460651.html", - "pubDate": "Fri, 08 Dec 2023 07:16:59 GMT", - "dc:creator": "Kehinde Andrews", - "dc:date": "2023-12-08T07:16:59+00:00", - "content": "

The dub poet and national treasure did not try to fit in. Instead, he embraced the language and rhythm of his upbringing \u2013 and in doing so, he changed the establishment, writes academic and activist Kehinde Andrews

", - "contentSnippet": "The dub poet and national treasure did not try to fit in. Instead, he embraced the language and rhythm of his upbringing \u2013 and in doing so, he changed the establishment, writes academic and activist Kehinde Andrews", - "guid": "b2460651", - "categories": [ - "Voices" - ], - "isoDate": "2023-12-08T07:16:59.000Z" - }, - { - "creator": "Jim van Wijk", - "date": "2023-12-08T07:16:06+00:00", - "title": "Never say never \u2013 Kevin Sinfield needs rest before next MND fundraising mission", - "link": "https://www.independent.co.uk/sport/kevin-sinfield-mnd-rob-burrow-london-leeds-b2460430.html", - "pubDate": "Fri, 08 Dec 2023 07:16:06 GMT", - "dc:creator": "Jim van Wijk", - "dc:date": "2023-12-08T07:16:06+00:00", - "content": "On Thursday evening, the total raised by his ultramarathon challenge had passed the \u00a3777,777 target.", - "contentSnippet": "On Thursday evening, the total raised by his ultramarathon challenge had passed the \u00a3777,777 target.", - "guid": "b2460430", - "categories": [ - "Sport" - ], - "isoDate": "2023-12-08T07:16:06.000Z" - }, - { - "creator": "Tom Watling ,Arpan Rai and Maira Butt", - "date": "2023-12-08T07:07:30+00:00", - "title": "Ukraine-Russia war \u2013 live: Cameron warns blocking funds would be \u2018Christmas present\u2019 for Putin and Xi", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-vladimir-putin-news-today-b2460585.html", - "pubDate": "Fri, 08 Dec 2023 07:07:30 GMT", - "dc:creator": "Tom Watling ,Arpan Rai and Maira Butt", - "dc:date": "2023-12-08T07:07:30+00:00", - "content": "

US President Joe Biden says \u2018history will judge us\u2019 if further aid is not given to Ukraine

", - "contentSnippet": "US President Joe Biden says \u2018history will judge us\u2019 if further aid is not given to Ukraine", - "guid": "b2460585", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-08T07:07:30.000Z" - }, - { - "creator": "Karl Matchett", - "date": "2023-12-08T07:04:41+00:00", - "title": "Masters champion Jon Rahm confirms move to LIV Golf in \u00a3450m deal", - "link": "https://www.independent.co.uk/sport/golf/jon-rahm-liv-golf-pga-tour-pif-b2460643.html", - "pubDate": "Fri, 08 Dec 2023 07:04:41 GMT", - "dc:creator": "Karl Matchett", - "dc:date": "2023-12-08T07:04:41+00:00", - "content": "

The Masters champion joins the likes of Brooks Koepka at the Saudi-backed rival tour

", - "contentSnippet": "The Masters champion joins the likes of Brooks Koepka at the Saudi-backed rival tour", - "guid": "b2460643", - "categories": [ - "Golf", - "Sport" - ], - "isoDate": "2023-12-08T07:04:41.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2023-12-08T07:00:21+00:00", - "title": "Ukraine actor dies after battling frontline wounds for months", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-actor-dies-vasyl-kukharskyi-front-line-b2460596.html", - "pubDate": "Fri, 08 Dec 2023 07:00:21 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2023-12-08T07:00:21+00:00", - "content": "

Tributes pour in for actor who joined Ukraine army during onset of Russia\u2019s invasion

", - "contentSnippet": "Tributes pour in for actor who joined Ukraine army during onset of Russia\u2019s invasion", - "guid": "b2460596", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-08T07:00:21.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-12-08T06:51:19+00:00", - "title": "I\u2019m a Celebrity \u2013 live: Danielle Harold eliminated from series ", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/im-a-celebrity-2023-elimination-who-left-latest-b2460642.html", - "pubDate": "Fri, 08 Dec 2023 06:51:19 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-12-08T06:51:19+00:00", - "content": "

Fifth celebrity was sent home on Thursday night

", - "contentSnippet": "Fifth celebrity was sent home on Thursday night", - "guid": "b2460642", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-08T06:51:19.000Z" - }, - { - "creator": "Isabel Debre,Samy Magdy and Najib Jobain", - "date": "2023-12-08T06:47:55+00:00", - "title": "Bloodshed, fear, hunger, desperation: Palestinians try to survive war's new chapter in southern Gaza", - "link": "https://www.independent.co.uk/news/ap-palestinians-khan-younis-united-nations-people-b2460669.html", - "pubDate": "Fri, 08 Dec 2023 06:47:55 GMT", - "dc:creator": "Isabel Debre,Samy Magdy and Najib Jobain", - "dc:date": "2023-12-08T06:47:55+00:00", - "content": "In recent days, Israeli tanks have rumbled into southern Gaza, starting with Khan Younis", - "contentSnippet": "In recent days, Israeli tanks have rumbled into southern Gaza, starting with Khan Younis", - "guid": "b2460669", - "isoDate": "2023-12-08T06:47:55.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-12-08T06:47:37+00:00", - "title": "Emily Blunt tells Anne Hathaway how Devil Wears Prada \u2018misery\u2019 changed Meryl Streep\u2019s career ", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/anne-hathaway-emily-blunt-meryl-streep-b2460641.html", - "pubDate": "Fri, 08 Dec 2023 06:47:37 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-12-08T06:47:37+00:00", - "content": "

\u2018Do you know she\u2019s never done it since?\u2019 \u2018Oppenheimer\u2019 actor told former co-star

", - "contentSnippet": "\u2018Do you know she\u2019s never done it since?\u2019 \u2018Oppenheimer\u2019 actor told former co-star", - "guid": "b2460641", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2023-12-08T06:47:37.000Z" - }, - { - "creator": "Mike Bedigan,Rachel Sharp,Martha McHardy and Maroosha Muzaffar", - "date": "2023-12-08T06:41:32+00:00", - "title": "UNLV shooting suspect Anthony Polito had \u2018target list\u2019 before attack: Live", - "link": "https://www.independent.co.uk/news/world/americas/unlv-shooter-anthony-polito-las-vegas-b2460612.html", - "pubDate": "Fri, 08 Dec 2023 06:41:32 GMT", - "dc:creator": "Mike Bedigan,Rachel Sharp,Martha McHardy and Maroosha Muzaffar", - "dc:date": "2023-12-08T06:41:32+00:00", - "content": "

Three faculty members killed in shooting at university in Las Vegas

", - "contentSnippet": "Three faculty members killed in shooting at university in Las Vegas", - "guid": "b2460612", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-08T06:41:32.000Z" - }, - { - "creator": "Vishwam Sankaran", - "date": "2023-12-08T06:36:44+00:00", - "title": "X rival Threads now has new hashtag-like feature", - "link": "https://www.independent.co.uk/tech/threads-x-twitter-rival-hashtags-b2460637.html", - "pubDate": "Fri, 08 Dec 2023 06:36:44 GMT", - "dc:creator": "Vishwam Sankaran", - "dc:date": "2023-12-08T06:36:44+00:00", - "content": "

\u2018Only one tag per post,\u2019 Instagram boss says

", - "contentSnippet": "\u2018Only one tag per post,\u2019 Instagram boss says", - "guid": "b2460637", - "categories": [ - "Tech" - ], - "isoDate": "2023-12-08T06:36:44.000Z" - }, - { - "creator": "Louis Chilton", - "date": "2023-12-08T06:30:00+00:00", - "title": "Wonka shows Roald Dahl\u2019s biggest threat isn\u2019t \u2018cancel culture\u2019 \u2013 it\u2019s corporate greed", - "link": "https://www.independent.co.uk/arts-entertainment/films/features/wonka-roald-dahl-timothee-chalamet-b2460253.html", - "pubDate": "Fri, 08 Dec 2023 06:30:00 GMT", - "dc:creator": "Louis Chilton", - "dc:date": "2023-12-08T06:30:00+00:00", - "content": "

Warner Bros\u2019 effects-laden prequel starring Timoth\u00e9e Chalamet as the young chocolatier is far better than it had any right to be. But Hollywood\u2019s obsession with adapting Roald Dahl risks spoiling his singular legacy, writes Louis Chilton

", - "contentSnippet": "Warner Bros\u2019 effects-laden prequel starring Timoth\u00e9e Chalamet as the young chocolatier is far better than it had any right to be. But Hollywood\u2019s obsession with adapting Roald Dahl risks spoiling his singular legacy, writes Louis Chilton", - "guid": "b2460253", - "categories": [ - "Features", - "Film", - "Culture" - ], - "isoDate": "2023-12-08T06:30:00.000Z" - }, - { - "creator": "Isobel Lewis", - "date": "2023-12-08T06:30:00+00:00", - "title": "A festive treat or a living hell?: How Winter Wonderland became the most divisive attraction in Britain", - "link": "https://www.independent.co.uk/life-style/winter-wonderland-london-price-crowds-tickets-b2460271.html", - "pubDate": "Fri, 08 Dec 2023 06:30:00 GMT", - "dc:creator": "Isobel Lewis", - "dc:date": "2023-12-08T06:30:00+00:00", - "content": "

Every December, tourists, loved-up couples and the allegedly basic descend upon a gleefully inauthentic Christmas village in London\u2019s Hyde Park, where prices are high, neon lights shine bright, and cringe is inevitable. But, asks Isobel Lewis, is mocking Winter Wonderland an appropriate response to its festive evils? Or is it plain old snobbery?

", - "contentSnippet": "Every December, tourists, loved-up couples and the allegedly basic descend upon a gleefully inauthentic Christmas village in London\u2019s Hyde Park, where prices are high, neon lights shine bright, and cringe is inevitable. But, asks Isobel Lewis, is mocking Winter Wonderland an appropriate response to its festive evils? Or is it plain old snobbery?", - "guid": "b2460271", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-12-08T06:30:00.000Z" - }, - { - "creator": "The Associated Press", - "date": "2023-12-08T06:22:50+00:00", - "title": "AP Week in Pictures: Europe and Africa", - "link": "https://www.independent.co.uk/news/pope-francis-ap-europe-africa-bucharest-b2460638.html", - "pubDate": "Fri, 08 Dec 2023 06:22:50 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2023-12-08T06:22:50+00:00", - "content": "

Dec. 1\u20137, 2023

", - "contentSnippet": "Dec. 1\u20137, 2023", - "guid": "b2460638", - "isoDate": "2023-12-08T06:22:50.000Z" - }, - { - "creator": "Alex Ross", - "date": "2023-12-08T06:22:13+00:00", - "title": "The winter allowances and support can you claim in cold weather", - "link": "https://www.independent.co.uk/news/uk/home-news/winter-fuel-allowance-2023-b2460634.html", - "pubDate": "Fri, 08 Dec 2023 06:22:13 GMT", - "dc:creator": "Alex Ross", - "dc:date": "2023-12-08T06:22:13+00:00", - "content": "

The cash payments and support available for household heating bills over the winter, who can apply and how

", - "contentSnippet": "The cash payments and support available for household heating bills over the winter, who can apply and how", - "guid": "b2460634", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-08T06:22:13.000Z" - }, - { - "creator": "Luis Andres Henao", - "date": "2023-12-08T06:13:04+00:00", - "title": "What is Bodhi Day? And when do Buddhists celebrate it?", - "link": "https://www.independent.co.uk/news/buddha-ap-scott-mitchell-east-asia-japan-b2460635.html", - "pubDate": "Fri, 08 Dec 2023 06:13:04 GMT", - "dc:creator": "Luis Andres Henao", - "dc:date": "2023-12-08T06:13:04+00:00", - "content": "Bodhi Day is a Buddhist holiday that commemorates the day Siddhartha Gautama attained awakening or enlightenment and became the Buddha 2,600 years ago", - "contentSnippet": "Bodhi Day is a Buddhist holiday that commemorates the day Siddhartha Gautama attained awakening or enlightenment and became the Buddha 2,600 years ago", - "guid": "b2460635", - "isoDate": "2023-12-08T06:13:04.000Z" - }, - { - "creator": "Sonia Twigg", - "date": "2023-12-08T06:08:25+00:00", - "title": "Nick Kyrgios launches \u2018intimate\u2019 OnlyFans account ", - "link": "https://www.independent.co.uk/sport/tennis/nick-kyrgios-onlyfans-account-b2460629.html", - "pubDate": "Fri, 08 Dec 2023 06:08:25 GMT", - "dc:creator": "Sonia Twigg", - "dc:date": "2023-12-08T06:08:25+00:00", - "content": "

Kyrgios\u2019s OnlyFans content will be free to access

", - "contentSnippet": "Kyrgios\u2019s OnlyFans content will be free to access", - "guid": "b2460629", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2023-12-08T06:08:25.000Z" - }, - { - "creator": "Vishwam Sankaran", - "date": "2023-12-08T06:07:16+00:00", - "title": "One of the brightest stars is all set to disappear next week in \u2018once-in-a-lifetime\u2019 event", - "link": "https://www.independent.co.uk/space/betelgeuse-star-disappear-almost-rare-b2460610.html", - "pubDate": "Fri, 08 Dec 2023 06:07:16 GMT", - "dc:creator": "Vishwam Sankaran", - "dc:date": "2023-12-08T06:07:16+00:00", - "content": "

Rare event would be opportunity to gain new knowledge about one of universe\u2019s brightest stars

", - "contentSnippet": "Rare event would be opportunity to gain new knowledge about one of universe\u2019s brightest stars", - "guid": "b2460610", - "categories": [ - "Space" - ], - "isoDate": "2023-12-08T06:07:16.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2023-12-08T06:05:32+00:00", - "title": "New England Patriots snap five-game slide with win over Pittsburgh Steelers", - "link": "https://www.independent.co.uk/sport/pittsburgh-steelers-new-england-patriots-new-england-pittsburgh-mitch-trubisky-b2460630.html", - "pubDate": "Fri, 08 Dec 2023 06:05:32 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2023-12-08T06:05:32+00:00", - "content": "The New England defence was ultimately able to hold on for the Patriots to pick up just their third win of the year.", - "contentSnippet": "The New England defence was ultimately able to hold on for the Patriots to pick up just their third win of the year.", - "guid": "b2460630", - "categories": [ - "Sport" - ], - "isoDate": "2023-12-08T06:05:32.000Z" - }, - { - "creator": "David Biller", - "date": "2023-12-08T06:05:23+00:00", - "title": "AP PHOTOS: 2023 images show violence and vibrance in Latin America", - "link": "https://www.independent.co.uk/news/latin-america-ap-gangs-luiz-inacio-lula-da-silva-claude-monet-b2460631.html", - "pubDate": "Fri, 08 Dec 2023 06:05:23 GMT", - "dc:creator": "David Biller", - "dc:date": "2023-12-08T06:05:23+00:00", - "content": "

A little girl perches on the shoulder of her mom, whose eyes fill with trepidation as she wades through waist-deep water in the jungle of the Darien Gap.

", - "contentSnippet": "A little girl perches on the shoulder of her mom, whose eyes fill with trepidation as she wades through waist-deep water in the jungle of the Darien Gap.", - "guid": "b2460631", - "isoDate": "2023-12-08T06:05:23.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2023-12-08T06:00:00+00:00", - "title": "On this day in 2016: England\u2019s Keaton Jennings makes century on his Test debut", - "link": "https://www.independent.co.uk/sport/cricket/keaton-jennings-england-icc-india-mumbai-b2460628.html", - "pubDate": "Fri, 08 Dec 2023 06:00:00 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2023-12-08T06:00:00+00:00", - "content": "It was a contribution which looked to have put England ahead of the game as they reached 288 for five at stumps.", - "contentSnippet": "It was a contribution which looked to have put England ahead of the game as they reached 288 for five at stumps.", - "guid": "b2460628", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2023-12-08T06:00:00.000Z" - }, - { - "creator": "Joe Sommerlad", - "date": "2023-12-08T05:54:51+00:00", - "title": "December dates for benefits, pensions and cost of living payments ", - "link": "https://www.independent.co.uk/news/uk/home-news/dwp-cost-of-living-payment-december-b2460627.html", - "pubDate": "Fri, 08 Dec 2023 05:54:51 GMT", - "dc:creator": "Joe Sommerlad", - "dc:date": "2023-12-08T05:54:51+00:00", - "content": "

Many households still struggling and facing costly winter, even as inflation begins to ease

", - "contentSnippet": "Many households still struggling and facing costly winter, even as inflation begins to ease", - "guid": "b2460627", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-08T05:54:51.000Z" - }, - { - "creator": "Rio Yamat and Ben Finley", - "date": "2023-12-08T05:48:47+00:00", - "title": "UNLV gunman was unemployed professor who had 150 rounds of ammunition and a target list, police say", - "link": "https://www.independent.co.uk/news/ap-police-nevada-university-las-vegas-b2460625.html", - "pubDate": "Fri, 08 Dec 2023 05:48:47 GMT", - "dc:creator": "Rio Yamat and Ben Finley", - "dc:date": "2023-12-08T05:48:47+00:00", - "content": "Police say a gunman who killed three faculty members at the University of Nevada, Las Vegas, was an unemployed professor who stuffed his waistband with loaded handgun magazines before beginning the attack", - "contentSnippet": "Police say a gunman who killed three faculty members at the University of Nevada, Las Vegas, was an unemployed professor who stuffed his waistband with loaded handgun magazines before beginning the attack", - "guid": "b2460625", - "isoDate": "2023-12-08T05:48:47.000Z" - }, - { - "creator": "Simon Calder", - "date": "2023-12-08T05:47:11+00:00", - "title": "December train strike dates: Everything you need to know about rail disruption", - "link": "https://www.independent.co.uk/travel/news-and-advice/train-strikes-2023-december-dates-b2460623.html", - "pubDate": "Fri, 08 Dec 2023 05:47:11 GMT", - "dc:creator": "Simon Calder", - "dc:date": "2023-12-08T05:47:11+00:00", - "content": "

Latest wave of strikes targets different regions a day at a time

", - "contentSnippet": "Latest wave of strikes targets different regions a day at a time", - "guid": "b2460623", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2023-12-08T05:47:11.000Z" - }, - { - "creator": "Andrew Griffin", - "date": "2023-12-08T05:44:04+00:00", - "title": "iPhones get power to charge much faster with new iOS update", - "link": "https://www.independent.co.uk/tech/iphone-ios-update-charging-b2460620.html", - "pubDate": "Fri, 08 Dec 2023 05:44:04 GMT", - "dc:creator": "Andrew Griffin", - "dc:date": "2023-12-08T05:44:04+00:00", - "content": "

Upcoming update brings a host of new features \u2013\u00a0and now better wireless charging

", - "contentSnippet": "Upcoming update brings a host of new features \u2013\u00a0and now better wireless charging", - "guid": "b2460620", - "categories": [ - "Tech" - ], - "isoDate": "2023-12-08T05:44:04.000Z" - }, - { - "creator": "Edna Tarigan", - "date": "2023-12-08T05:39:02+00:00", - "title": "Indonesia's youth clean up trash from waterways, but more permanent solutions are still elusive", - "link": "https://www.independent.co.uk/news/ap-indonesia-garbage-waste-united-nations-b2460621.html", - "pubDate": "Fri, 08 Dec 2023 05:39:02 GMT", - "dc:creator": "Edna Tarigan", - "dc:date": "2023-12-08T05:39:02+00:00", - "content": "Young people have been at the forefront of environmental and climate change movements in recent years: initiatives like school strikes for climate action, protests at United Nations climate talks and around the world, and local clean ups have often been youth-led", - "contentSnippet": "Young people have been at the forefront of environmental and climate change movements in recent years: initiatives like school strikes for climate action, protests at United Nations climate talks and around the world, and local clean ups have often been youth-led", - "guid": "b2460621", - "isoDate": "2023-12-08T05:39:02.000Z" - }, - { - "creator": "Isobel Lewis,Nicole Vassell and Jacob Stolworthy", - "date": "2023-12-08T05:34:59+00:00", - "title": "Benjamin Zephaniah news: Tributes pour in for Talking Turkeys poet and Peaky Blinders star", - "link": "https://www.independent.co.uk/arts-entertainment/books/news/benjamin-zephaniah-death-age-peaky-blinders-news-b2460617.html", - "pubDate": "Fri, 08 Dec 2023 05:34:59 GMT", - "dc:creator": "Isobel Lewis,Nicole Vassell and Jacob Stolworthy", - "dc:date": "2023-12-08T05:34:59+00:00", - "content": "

\u2018Talking Turkeys\u2019 writer and activist was diagnosed with a brain tumour eight weeks ago

", - "contentSnippet": "\u2018Talking Turkeys\u2019 writer and activist was diagnosed with a brain tumour eight weeks ago", - "guid": "b2460617", - "categories": [ - "News", - "Books", - "Culture" - ], - "isoDate": "2023-12-08T05:34:59.000Z" - }, - { - "creator": "Namita Singh", - "date": "2023-12-08T05:34:55+00:00", - "title": "Why so many of Nepal\u2019s Gurkhas end up fighting for Russia in Ukraine ", - "link": "https://www.independent.co.uk/asia/south-asia/russia-army-nepal-gurkhas-soldiers-ukraine-war-b2460616.html", - "pubDate": "Fri, 08 Dec 2023 05:34:55 GMT", - "dc:creator": "Namita Singh", - "dc:date": "2023-12-08T05:34:55+00:00", - "content": "

Nearly 200 Nepalese nationals are serving as mercenaries in the Russian army \u2013 but it\u2019s not only a phenomenon benefitting the Kremlin\u2019s military recruitment, as Namita Singh explains

", - "contentSnippet": "Nearly 200 Nepalese nationals are serving as mercenaries in the Russian army \u2013 but it\u2019s not only a phenomenon benefitting the Kremlin\u2019s military recruitment, as Namita Singh explains", - "guid": "b2460616", - "categories": [ - "South Asia", - "Asia" - ], - "isoDate": "2023-12-08T05:34:55.000Z" - }, - { - "creator": "Alex Woodward", - "date": "2023-12-08T05:29:41+00:00", - "title": "Trump says he needs to lose weight after seeing courtroom sketch", - "link": "https://www.independent.co.uk/news/world/americas/trump-weight-loss-fraud-trial-courtroom-sketch-b2460615.html", - "pubDate": "Fri, 08 Dec 2023 05:29:41 GMT", - "dc:creator": "Alex Woodward", - "dc:date": "2023-12-08T05:29:41+00:00", - "content": "

Former president returns to court for the first time in a month as his attorneys wrap up their defence

", - "contentSnippet": "Former president returns to court for the first time in a month as his attorneys wrap up their defence", - "guid": "b2460615", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-08T05:29:41.000Z" - }, - { - "creator": "Zimo Zhong", - "date": "2023-12-08T05:28:09+00:00", - "title": "Stock market today: Asian shares are mostly higher ahead of a key US jobs report", - "link": "https://www.independent.co.uk/news/wall-street-ap-bank-of-japan-alphabet-asian-b2460618.html", - "pubDate": "Fri, 08 Dec 2023 05:28:09 GMT", - "dc:creator": "Zimo Zhong", - "dc:date": "2023-12-08T05:28:09+00:00", - "content": "Asian shares are mostly higher ahead of a U.S. jobs report after Wall Street rose Thursday to snap its first three-day losing streak since Halloween", - "contentSnippet": "Asian shares are mostly higher ahead of a U.S. jobs report after Wall Street rose Thursday to snap its first three-day losing streak since Halloween", - "guid": "b2460618", - "isoDate": "2023-12-08T05:28:09.000Z" - }, - { - "creator": "Brittany Miller", - "date": "2023-12-08T05:26:11+00:00", - "title": "Elderly couple refuses to move train seats for mother of three", - "link": "https://www.independent.co.uk/life-style/elderly-couple-train-seats-mother-b2460614.html", - "pubDate": "Fri, 08 Dec 2023 05:26:11 GMT", - "dc:creator": "Brittany Miller", - "dc:date": "2023-12-08T05:26:11+00:00", - "content": "

\u2018I would always give up a seat, reserved or not, for someone who needed it more,\u2019 mother says

", - "contentSnippet": "\u2018I would always give up a seat, reserved or not, for someone who needed it more,\u2019 mother says", - "guid": "b2460614", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-12-08T05:26:11.000Z" - }, - { - "creator": "Vishwam Sankaran", - "date": "2023-12-08T05:24:16+00:00", - "title": "Molecules \u2018entangled\u2019 in major physics breakthrough could advance quantum computing", - "link": "https://www.independent.co.uk/news/science/entangled-molecules-quantum-physics-breakthrough-b2460586.html", - "pubDate": "Fri, 08 Dec 2023 05:24:16 GMT", - "dc:creator": "Vishwam Sankaran", - "dc:date": "2023-12-08T05:24:16+00:00", - "content": "

Study key step in demonstrating that molecules can be viable platform for quantum science

", - "contentSnippet": "Study key step in demonstrating that molecules can be viable platform for quantum science", - "guid": "b2460586", - "categories": [ - "Science" - ], - "isoDate": "2023-12-08T05:24:16.000Z" - }, - { - "creator": "Anthony Cuthbertson", - "date": "2023-12-08T05:16:07+00:00", - "title": "World\u2019s biggest nuclear fusion reactor opens in huge boost for \u2018holy grail\u2019 of clean energy", - "link": "https://www.independent.co.uk/tech/japan-nuclear-fusion-biggest-reactor-b2460608.html", - "pubDate": "Fri, 08 Dec 2023 05:16:07 GMT", - "dc:creator": "Anthony Cuthbertson", - "dc:date": "2023-12-08T05:16:07+00:00", - "content": "

Harnessing the power of the sun offers near limitless clean energy

", - "contentSnippet": "Harnessing the power of the sun offers near limitless clean energy", - "guid": "b2460608", - "categories": [ - "Tech" - ], - "isoDate": "2023-12-08T05:16:07.000Z" - }, - { - "creator": "Michael R. Sisak and Michael Balsamo", - "date": "2023-12-08T05:15:06+00:00", - "title": "High-profile attacks on Derek Chauvin and Larry Nassar put spotlight on violence in federal prisons", - "link": "https://www.independent.co.uk/news/derek-chauvin-ap-larry-nassar-bureau-of-prisons-jeffrey-epstein-b2460613.html", - "pubDate": "Fri, 08 Dec 2023 05:15:06 GMT", - "dc:creator": "Michael R. Sisak and Michael Balsamo", - "dc:date": "2023-12-08T05:15:06+00:00", - "content": "Recent assaults on two notorious, high-profile federal prisoners have renewed concerns about whether the federal Bureau of Prisons is capable of keeping people in its custody safe", - "contentSnippet": "Recent assaults on two notorious, high-profile federal prisoners have renewed concerns about whether the federal Bureau of Prisons is capable of keeping people in its custody safe", - "guid": "b2460613", - "isoDate": "2023-12-08T05:15:06.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-12-08T05:11:32+00:00", - "title": "I\u2019m a Celebrity 2023 final five revealed as next star leaves ITV series ", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/im-a-celebrity-who-left-b2460605.html", - "pubDate": "Fri, 08 Dec 2023 05:11:32 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-12-08T05:11:32+00:00", - "content": "

Next star to leave ITV jungle has been revealed by Ant and Dec

", - "contentSnippet": "Next star to leave ITV jungle has been revealed by Ant and Dec", - "guid": "b2460605", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-08T05:11:32.000Z" - }, - { - "creator": "Mike Schneider", - "date": "2023-12-08T05:11:07+00:00", - "title": "Census Bureau wants to change how it asks about disabilities. Some advocates don't like it", - "link": "https://www.independent.co.uk/news/ap-disability-covid-american-syracuse-university-b2460611.html", - "pubDate": "Fri, 08 Dec 2023 05:11:07 GMT", - "dc:creator": "Mike Schneider", - "dc:date": "2023-12-08T05:11:07+00:00", - "content": "The U.S. Census Bureau wants to change how it asks people about disabilities, and some advocates don't like where things are heading", - "contentSnippet": "The U.S. Census Bureau wants to change how it asks people about disabilities, and some advocates don't like where things are heading", - "guid": "b2460611", - "isoDate": "2023-12-08T05:11:07.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-08T05:09:41+00:00", - "title": "A Chinese military surveillance balloon is spotted in Taiwan Strait, island's Defense Ministry says", - "link": "https://www.independent.co.uk/news/taiwan-strait-ap-chinese-taipei-china-b2460607.html", - "pubDate": "Fri, 08 Dec 2023 05:09:41 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-08T05:09:41+00:00", - "content": "Taiwan's Defense Ministry says a Chinese military surveillance balloon has been spotted in the Taiwan Strait, along with a large-scale dispatch of military aircraft and ships", - "contentSnippet": "Taiwan's Defense Ministry says a Chinese military surveillance balloon has been spotted in the Taiwan Strait, along with a large-scale dispatch of military aircraft and ships", - "guid": "b2460607", - "isoDate": "2023-12-08T05:09:41.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2023-12-08T05:05:18+00:00", - "title": "Doctors sound alarm over new infant fentanyl syndrome ", - "link": "https://www.independent.co.uk/news/world/americas/infant-fentanyl-syndrome-rise-cholesterol-b2460595.html", - "pubDate": "Fri, 08 Dec 2023 05:05:18 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2023-12-08T05:05:18+00:00", - "content": "

A new syndrome linked to prenatal fentanyl exposure produces similar abnormalites to babies who can\u2019t produce cholesterol

", - "contentSnippet": "A new syndrome linked to prenatal fentanyl exposure produces similar abnormalites to babies who can\u2019t produce cholesterol", - "guid": "b2460595", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-08T05:05:18.000Z" - }, - { - "creator": "Maria Sherman", - "date": "2023-12-08T05:03:31+00:00", - "title": "Attention all Barbz: Nicki Minaj has released 'Pink Friday 2,' 13 years after the original", - "link": "https://www.independent.co.uk/news/nicki-minaj-ap-los-angeles-grammy-future-b2460604.html", - "pubDate": "Fri, 08 Dec 2023 05:03:31 GMT", - "dc:creator": "Maria Sherman", - "dc:date": "2023-12-08T05:03:31+00:00", - "content": "Nicki Minaj\u2019s highly anticipated fifth studio album, \u201cPink Friday 2,\u201d is here", - "contentSnippet": "Nicki Minaj\u2019s highly anticipated fifth studio album, \u201cPink Friday 2,\u201d is here", - "guid": "b2460604", - "isoDate": "2023-12-08T05:03:31.000Z" - }, - { - "creator": "Kristin M. Hall", - "date": "2023-12-08T05:02:26+00:00", - "title": "Free toy store in Nashville gives families the dignity of choice while shopping for holiday gifts", - "link": "https://www.independent.co.uk/news/brad-paisley-ap-nashville-paisley-usda-b2460603.html", - "pubDate": "Fri, 08 Dec 2023 05:02:26 GMT", - "dc:creator": "Kristin M. Hall", - "dc:date": "2023-12-08T05:02:26+00:00", - "content": "Country music star Brad Paisley and his wife, Kimberly Williams-Paisley, helped create a free grocery in Nashville to offer dignity to low-income people when shopping for food", - "contentSnippet": "Country music star Brad Paisley and his wife, Kimberly Williams-Paisley, helped create a free grocery in Nashville to offer dignity to low-income people when shopping for food", - "guid": "b2460603", - "isoDate": "2023-12-08T05:02:26.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-08T05:01:12+00:00", - "title": "AP Week in Pictures: Latin America and Caribbean", - "link": "https://www.independent.co.uk/news/ap-latin-america-caribbean-guyana-peru-b2460601.html", - "pubDate": "Fri, 08 Dec 2023 05:01:12 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-08T05:01:12+00:00", - "content": "

Dec. 1- Dec. 7, 2023

", - "contentSnippet": "Dec. 1- Dec. 7, 2023", - "guid": "b2460601", - "isoDate": "2023-12-08T05:01:12.000Z" - }, - { - "creator": "Christopher Rugaber", - "date": "2023-12-08T05:01:06+00:00", - "title": "Is the US economy on track for a 'soft landing'? Friday's jobs report may offer clues", - "link": "https://www.independent.co.uk/news/americans-ap-jerome-powell-federal-reserve-washington-b2460600.html", - "pubDate": "Fri, 08 Dec 2023 05:01:06 GMT", - "dc:creator": "Christopher Rugaber", - "dc:date": "2023-12-08T05:01:06+00:00", - "content": "Can the U.S. economy achieve a much-hyped \u201csoft landing\u201d", - "contentSnippet": "Can the U.S. economy achieve a much-hyped \u201csoft landing\u201d", - "guid": "b2460600", - "isoDate": "2023-12-08T05:01:06.000Z" - }, - { - "creator": "Mike Stobbe", - "date": "2023-12-08T05:01:06+00:00", - "title": "Chronic fatigue syndrome is more common than some past studies suggest, CDC says", - "link": "https://www.independent.co.uk/news/ap-cdc-chronic-fatigue-syndrome-new-york-patients-b2460602.html", - "pubDate": "Fri, 08 Dec 2023 05:01:06 GMT", - "dc:creator": "Mike Stobbe", - "dc:date": "2023-12-08T05:01:06+00:00", - "content": "Health officials are releasing the first nationally representative estimate of how many U.S. adults have chronic fatigue syndrome: 3.3 million", - "contentSnippet": "Health officials are releasing the first nationally representative estimate of how many U.S. adults have chronic fatigue syndrome: 3.3 million", - "guid": "b2460602", - "isoDate": "2023-12-08T05:01:06.000Z" - }, - { - "creator": "Ed White", - "date": "2023-12-08T05:00:59+00:00", - "title": "Michigan school shooting victims to speak as teen faces possible life sentence", - "link": "https://www.independent.co.uk/news/ap-ethan-crumbley-michigan-detroit-b2460599.html", - "pubDate": "Fri, 08 Dec 2023 05:00:59 GMT", - "dc:creator": "Ed White", - "dc:date": "2023-12-08T05:00:59+00:00", - "content": "A court hearing in suburban Detroit is likely to be tense and emotional as a judge hears from families and surviving victims of the Oxford school shooting, Ethan Crumbley could be sentenced to life in prison Friday", - "contentSnippet": "A court hearing in suburban Detroit is likely to be tense and emotional as a judge hears from families and surviving victims of the Oxford school shooting, Ethan Crumbley could be sentenced to life in prison Friday", - "guid": "b2460599", - "isoDate": "2023-12-08T05:00:59.000Z" - }, - { - "creator": "Curt Anderson", - "date": "2023-12-08T05:00:45+00:00", - "title": "Drought vs deluge: Florida's unusual rainfall totals either too little or too much on each coast", - "link": "https://www.independent.co.uk/news/ap-atlantic-ocean-tampa-gulf-of-mexico-hillsborough-county-b2460598.html", - "pubDate": "Fri, 08 Dec 2023 05:00:45 GMT", - "dc:creator": "Curt Anderson", - "dc:date": "2023-12-08T05:00:45+00:00", - "content": "In Florida, this year has been a tale of two states as far as rainfall totals, with the southeast coast deluged by sometimes-record rainfall and much of the Gulf coast facing a major precipitation deficit", - "contentSnippet": "In Florida, this year has been a tale of two states as far as rainfall totals, with the southeast coast deluged by sometimes-record rainfall and much of the Gulf coast facing a major precipitation deficit", - "guid": "b2460598", - "isoDate": "2023-12-08T05:00:45.000Z" - }, - { - "creator": "Adam Forrest,Archie Mitchell and Tara Cobham", - "date": "2023-12-08T04:54:45+00:00", - "title": "Boris Johnson Covid inquiry \u2013 live: \u2018Dr Death\u2019 Rishi Sunak to face next grilling as former PM finishes up", - "link": "https://www.independent.co.uk/news/uk/home-news/boris-johnson-sunak-covid-inquiry-today-b2460593.html", - "pubDate": "Fri, 08 Dec 2023 04:54:45 GMT", - "dc:creator": "Adam Forrest,Archie Mitchell and Tara Cobham", - "dc:date": "2023-12-08T04:54:45+00:00", - "content": "

Boris Johnson was questioned for second day after being booed by angry bereaved families

", - "contentSnippet": "Boris Johnson was questioned for second day after being booed by angry bereaved families", - "guid": "b2460593", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-08T04:54:45.000Z" - }, - { - "creator": "Chris Edwards", - "date": "2023-12-07T06:30:00+00:00", - "title": "Was The Last Samurai Tom Cruise\u2019s last great movie?", - "link": "https://www.independent.co.uk/arts-entertainment/films/features/last-samurai-tom-cruise-b2459325.html", - "pubDate": "Thu, 07 Dec 2023 06:30:00 GMT", - "dc:creator": "Chris Edwards", - "dc:date": "2023-12-07T06:30:00+00:00", - "content": "

Twenty years ago, the \u2018Mission: Impossible\u2019 frontman did a lot more than just shoot people and jump off tall buildings. Today, \u2018The Last Samurai\u2019 marks one of the actor\u2019s final truly ambitious starring roles. As the film celebrates its 20th birthday, Chris Edwards speaks to director Edward Zwick about its place in Cruise\u2019s legacy and the stunt that nearly killed his leading man

", - "contentSnippet": "Twenty years ago, the \u2018Mission: Impossible\u2019 frontman did a lot more than just shoot people and jump off tall buildings. Today, \u2018The Last Samurai\u2019 marks one of the actor\u2019s final truly ambitious starring roles. As the film celebrates its 20th birthday, Chris Edwards speaks to director Edward Zwick about its place in Cruise\u2019s legacy and the stunt that nearly killed his leading man", - "guid": "b2459325", - "categories": [ - "Features", - "Film", - "Culture" - ], - "isoDate": "2023-12-07T06:30:00.000Z" - }, - { - "creator": "Ellie Muir", - "date": "2023-12-06T15:15:57+00:00", - "title": "Turner prize winner Jesse Darling waves Palestinian flag during speech", - "link": "https://www.independent.co.uk/arts-entertainment/art/news/turner-prize-jesse-darling-transgender-palestine-b2459483.html", - "pubDate": "Wed, 06 Dec 2023 15:15:57 GMT", - "dc:creator": "Ellie Muir", - "dc:date": "2023-12-06T15:15:57+00:00", - "content": "

Darling, 41, was handed the \u00a325,000 prize for work comprised of faded union jack bunting and metal pedestrian barriers

", - "contentSnippet": "Darling, 41, was handed the \u00a325,000 prize for work comprised of faded union jack bunting and metal pedestrian barriers", - "guid": "b2459483", - "categories": [ - "News", - "Art", - "Culture" - ], - "isoDate": "2023-12-06T15:15:57.000Z" - }, - { - "creator": "Sports Staff", - "date": "2023-02-24T17:57:12+00:00", - "title": "What is an exhibition fight and how is it different to a professional bout?", - "link": "https://www.independent.co.uk/sport/boxing/exhibition-fight-explained-professional-bout-difference-b2289095.html", - "pubDate": "Fri, 24 Feb 2023 17:57:12 GMT", - "dc:creator": "Sports Staff", - "dc:date": "2023-02-24T17:57:12+00:00", - "content": "

Here are the key pieces of information around professional and exhibition fights

", - "contentSnippet": "Here are the key pieces of information around professional and exhibition fights", - "guid": "b2289095", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-02-24T17:57:12.000Z" - }, - { - "creator": "Kieran Jackson", - "date": "2023-12-15T15:40:08+00:00", - "title": "Jenson Button announces shock return to professional racing", - "link": "https://www.independent.co.uk/f1/f1-jenson-button-le-mans-wec-porsche-b2464846.html", - "pubDate": "Fri, 15 Dec 2023 15:40:08 GMT", - "dc:creator": "Kieran Jackson", - "dc:date": "2023-12-15T15:40:08+00:00", - "content": "

The 2009 F1 world champion is back in top-tier motorsport seven years after retiring from Formula 1

", - "contentSnippet": "The 2009 F1 world champion is back in top-tier motorsport seven years after retiring from Formula 1", - "guid": "b2464846", - "categories": [ - "F1" - ], - "isoDate": "2023-12-15T15:40:08.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-15T15:36:49+00:00", - "title": "Watch: Piers Morgan statement in full as former Mirror editor launches scathing attack on Prince Harry", - "link": "https://www.independent.co.uk/tv/lifestyle/piers-morgan-prince-harry-mirror-phone-hacking-b2464844.html", - "pubDate": "Fri, 15 Dec 2023 15:36:49 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-15T15:36:49+00:00", - "content": "

Piers Morgan launched a scathing attack on Prince Harry after the Duke of Sussex won damages of \u00a3140,600 against Mirror Group Newspapers (MGN) over the phone hacking scandal.

", - "contentSnippet": "Piers Morgan launched a scathing attack on Prince Harry after the Duke of Sussex won damages of \u00a3140,600 against Mirror Group Newspapers (MGN) over the phone hacking scandal.", - "guid": "b2464844", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2023-12-15T15:36:49.000Z" - }, - { - "creator": "Clarisse Loughrey", - "date": "2023-12-15T15:36:38+00:00", - "title": "Rebel Moon Part One review: Zack Snyder\u2019s Netflix epic is a borderline incoherent shambles", - "link": "https://www.independent.co.uk/arts-entertainment/films/reviews/rebel-moon-review-zack-snyder-b2463306.html", - "pubDate": "Fri, 15 Dec 2023 15:36:38 GMT", - "dc:creator": "Clarisse Loughrey", - "dc:date": "2023-12-15T15:36:38+00:00", - "content": "

The \u2018Justice League\u2019 director\u2019s cut filmmaker has made his own version of a Star Wars movie, only filled with motivational speeches, sexual violence and Charlie Hunnam stumbling his way through a soon-to-be-infamous Irish accent

", - "contentSnippet": "The \u2018Justice League\u2019 director\u2019s cut filmmaker has made his own version of a Star Wars movie, only filled with motivational speeches, sexual violence and Charlie Hunnam stumbling his way through a soon-to-be-infamous Irish accent", - "guid": "b2463306", - "categories": [ - "Reviews", - "Film", - "Culture" - ], - "isoDate": "2023-12-15T15:36:38.000Z" - }, - { - "creator": "Andrew Feinberg", - "date": "2023-12-15T15:35:37+00:00", - "title": "White House wants Israel to begin \u2018precise targeting\u2019 of Hamas", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/jake-sullivan-israel-hamas-war-b2464836.html", - "pubDate": "Fri, 15 Dec 2023 15:35:37 GMT", - "dc:creator": "Andrew Feinberg", - "dc:date": "2023-12-15T15:35:37+00:00", - "content": "

President Joe Biden\u2019s national security adviser says he discussed a \u2018transition\u2019 to ground operations with the Israeli war cabinet

", - "contentSnippet": "President Joe Biden\u2019s national security adviser says he discussed a \u2018transition\u2019 to ground operations with the Israeli war cabinet", - "guid": "b2464836", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-15T15:35:37.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-15T15:35:17+00:00", - "title": "Leon Edwards vs Colby Covington is technique against tenacity at UFC 296", - "link": "https://www.independent.co.uk/sport/ufc/ufc-296-preview-leon-edwards-colby-covington-b2464079.html", - "pubDate": "Fri, 15 Dec 2023 15:35:17 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-15T15:35:17+00:00", - "content": "

Edwards defends the welterweight title against the former interim champion in the main event

", - "contentSnippet": "Edwards defends the welterweight title against the former interim champion in the main event", - "guid": "b2464079", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-12-15T15:35:17.000Z" - }, - { - "creator": "Tara Cobham", - "date": "2023-12-15T15:35:14+00:00", - "title": "Piers Morgan breaks silence on Prince Harry hacking win against Mirror publisher", - "link": "https://www.independent.co.uk/life-style/royal-family/news/piers-morgan-prince-harry-mirror-hacking-b2464800.html", - "pubDate": "Fri, 15 Dec 2023 15:35:14 GMT", - "dc:creator": "Tara Cobham", - "dc:date": "2023-12-15T15:35:14+00:00", - "content": "

Judge ruled Mr Morgan knew about and was involved in phone hacking when editor of the Daily Mirror

", - "contentSnippet": "Judge ruled Mr Morgan knew about and was involved in phone hacking when editor of the Daily Mirror", - "guid": "b2464800", - "categories": [ - "Royal Family News", - "Royal Family", - "Lifestyle" - ], - "isoDate": "2023-12-15T15:35:14.000Z" - }, - { - "creator": "Holly Evans,Andy Gregory,Jane Dalton and Tara Cobham", - "date": "2023-12-15T15:32:05+00:00", - "title": "Prince Harry attacks Mirror\u2019s \u2018vendetta journalism\u2019 and says Piers Morgan \u2018clearly knew\u2019 about hacking \u2013 live", - "link": "https://www.independent.co.uk/life-style/royal-family/news/prince-harry-phone-hacking-trial-mirror-latest-b2464238.html", - "pubDate": "Fri, 15 Dec 2023 15:32:05 GMT", - "dc:creator": "Holly Evans,Andy Gregory,Jane Dalton and Tara Cobham", - "dc:date": "2023-12-15T15:32:05+00:00", - "content": "

Duke of Sussex found to be victim of phone hacking by Mirror publisher and awarded \u00a3140,000 in damages

", - "contentSnippet": "Duke of Sussex found to be victim of phone hacking by Mirror publisher and awarded \u00a3140,000 in damages", - "guid": "b2464238", - "categories": [ - "Royal Family News", - "Royal Family", - "Lifestyle" - ], - "isoDate": "2023-12-15T15:32:05.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-15T15:31:57+00:00", - "title": "A Spanish official says spotter planes are helping curtail the number of West African migrant boats", - "link": "https://www.independent.co.uk/news/canary-islands-ap-spanish-senegal-madrid-b2464851.html", - "pubDate": "Fri, 15 Dec 2023 15:31:57 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-15T15:31:57+00:00", - "content": "A senior Spanish official says the deployment of two Spanish surveillance planes to watch for migrant boats heading on the treacherous route from West Africa to Spain\u2019s Canary Islands has enabled authorities to stop 59 canoes from Senegal and Gambia", - "contentSnippet": "A senior Spanish official says the deployment of two Spanish surveillance planes to watch for migrant boats heading on the treacherous route from West Africa to Spain\u2019s Canary Islands has enabled authorities to stop 59 canoes from Senegal and Gambia", - "guid": "b2464851", - "isoDate": "2023-12-15T15:31:57.000Z" - }, - { - "creator": "Mark Mann-Bryans", - "date": "2023-12-15T15:29:39+00:00", - "title": "Mikel Arteta wants managers and referees to work together to improve football", - "link": "https://www.independent.co.uk/sport/football/mikel-arteta-premier-league-football-association-newcastle-arsenal-b2464848.html", - "pubDate": "Fri, 15 Dec 2023 15:29:39 GMT", - "dc:creator": "Mark Mann-Bryans", - "dc:date": "2023-12-15T15:29:39+00:00", - "content": "Arteta escaped punishment following a Football Association charge after his post-match rant at Newcastle.", - "contentSnippet": "Arteta escaped punishment following a Football Association charge after his post-match rant at Newcastle.", - "guid": "b2464848", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T15:29:39.000Z" - }, - { - "creator": "Athena Stavrou and Lydia Patrick", - "date": "2023-12-15T15:28:10+00:00", - "title": "Gaynor Lord latest: Body found in river in search for missing Norwich mother", - "link": "https://www.independent.co.uk/news/uk/home-news/gaynor-lord-missing-mum-norwich-cctv-b2464533.html", - "pubDate": "Fri, 15 Dec 2023 15:28:10 GMT", - "dc:creator": "Athena Stavrou and Lydia Patrick", - "dc:date": "2023-12-15T15:28:10+00:00", - "content": "

Police said they are \u201cconfident\u201d with the evidence they have at this stage that no third party was involved

", - "contentSnippet": "Police said they are \u201cconfident\u201d with the evidence they have at this stage that no third party was involved", - "guid": "b2463795", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-15T15:28:10.000Z" - }, - { - "creator": "Inga Parkel", - "date": "2023-12-15T15:24:46+00:00", - "title": "Bradley Cooper\u2019s \u2018no chairs\u2019 policy on set sparks fierce backlash", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/bradley-cooper-maestro-director-b2464801.html", - "pubDate": "Fri, 15 Dec 2023 15:24:46 GMT", - "dc:creator": "Inga Parkel", - "dc:date": "2023-12-15T15:24:46+00:00", - "content": "

\u2018Maestro\u2019 actor and director said he\u2019s always \u2018hated chairs\u2019 and believes \u2018your energy dips the minute you sit down in a chair\u2019

", - "contentSnippet": "\u2018Maestro\u2019 actor and director said he\u2019s always \u2018hated chairs\u2019 and believes \u2018your energy dips the minute you sit down in a chair\u2019", - "guid": "b2464801", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2023-12-15T15:24:46.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-12-15T15:22:44+00:00", - "title": "\u2018Suicide\u2019 of G\u00e9rard Depardieu accuser Emmanuelle Debever sparks investigation by French police", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/gerard-depardieu-allegations-emmanuelle-debever-b2464702.html", - "pubDate": "Fri, 15 Dec 2023 15:22:44 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-12-15T15:22:44+00:00", - "content": "

The actor was renowned as one of the first women to accuse \u2018Cyrano de Bergerac\u2019 star of historic sexual assault

", - "contentSnippet": "The actor was renowned as one of the first women to accuse \u2018Cyrano de Bergerac\u2019 star of historic sexual assault", - "guid": "b2463984", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2023-12-15T15:22:44.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-12-15T15:21:47+00:00", - "title": "Mark Kermode targets Martin Scorsese\u2019s \u2018not cinema\u2019 Marvel criticism", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/mark-kermode-martin-scorsese-marvel-b2463945.html", - "pubDate": "Fri, 15 Dec 2023 15:21:47 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-12-15T15:21:47+00:00", - "content": "

Critic renowned for his movie takedowns backs studio slammed by Scorsese for churning out \u2018theme park\u2019 superhero films

", - "contentSnippet": "Critic renowned for his movie takedowns backs studio slammed by Scorsese for churning out \u2018theme park\u2019 superhero films", - "guid": "b2463945", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2023-12-15T15:21:47.000Z" - }, - { - "creator": "Martha McHardy", - "date": "2023-12-15T15:20:20+00:00", - "title": "Man accused of trying to kill his dying wife to \u2018ease her suffering\u2019", - "link": "https://www.independent.co.uk/news/world/americas/crime/utah-breast-cancer-attempted-murder-charge-b2464695.html", - "pubDate": "Fri, 15 Dec 2023 15:20:20 GMT", - "dc:creator": "Martha McHardy", - "dc:date": "2023-12-15T15:20:20+00:00", - "content": "

DeWayne McCulla, 45, was charged with attempted murder on Wednesday, two years after the death of his wife

", - "contentSnippet": "DeWayne McCulla, 45, was charged with attempted murder on Wednesday, two years after the death of his wife", - "guid": "b2464695", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-12-15T15:20:20.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-15T15:17:40+00:00", - "title": "Catherine Zeta-Jones sings Welsh song during festive family gathering as son Dylan watches on", - "link": "https://www.independent.co.uk/tv/culture/catherine-zeta-jones-michael-douglas-family-b2464771.html", - "pubDate": "Fri, 15 Dec 2023 15:17:40 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-15T15:17:40+00:00", - "content": "

Catherine Zeta-Jones has shared a glimpse into her family Christmas celebrations.

", - "contentSnippet": "Catherine Zeta-Jones has shared a glimpse into her family Christmas celebrations.", - "guid": "b2464771", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-12-15T15:17:40.000Z" - }, - { - "creator": "Elizabeth Ayoola", - "date": "2023-12-15T15:13:28+00:00", - "title": "5 questions that can help guide your holiday tipping", - "link": "https://www.independent.co.uk/news/ap-budget-tipping-manhattan-texas-b2464838.html", - "pubDate": "Fri, 15 Dec 2023 15:13:28 GMT", - "dc:creator": "Elizabeth Ayoola", - "dc:date": "2023-12-15T15:13:28+00:00", - "content": "As you plan your holiday giving, you may be thinking about adding service workers to your list of recipients", - "contentSnippet": "As you plan your holiday giving, you may be thinking about adding service workers to your list of recipients", - "guid": "b2464838", - "isoDate": "2023-12-15T15:13:28.000Z" - }, - { - "creator": "Marcia Dunn", - "date": "2023-12-15T15:13:02+00:00", - "title": "Biggest solar flare in years temporarily disrupts radio signals on Earth", - "link": "https://www.independent.co.uk/news/earth-ap-cape-canaveral-scientists-nasa-b2464839.html", - "pubDate": "Fri, 15 Dec 2023 15:13:02 GMT", - "dc:creator": "Marcia Dunn", - "dc:date": "2023-12-15T15:13:02+00:00", - "content": "A NASA telescope has captured the biggest solar flare in years, which temporarily knocked out radio communication on Earth", - "contentSnippet": "A NASA telescope has captured the biggest solar flare in years, which temporarily knocked out radio communication on Earth", - "guid": "b2464839", - "isoDate": "2023-12-15T15:13:02.000Z" - }, - { - "creator": "Daisy Lester", - "date": "2023-12-15T15:09:16+00:00", - "title": "Best Amazon January sale deals to expect: Details and early discounts", - "link": "https://www.independent.co.uk/extras/indybest/january-sales/amazon-january-new-year-sale-2024-b2464692.html", - "pubDate": "Fri, 15 Dec 2023 15:09:16 GMT", - "dc:creator": "Daisy Lester", - "dc:date": "2023-12-15T15:09:16+00:00", - "content": "

From Kindles to Shark cordless vacuums, the retailer\u2019s sale is a highlight

", - "contentSnippet": "From Kindles to Shark cordless vacuums, the retailer\u2019s sale is a highlight", - "guid": "b2464692", - "categories": [ - "January Sales", - "IndyBest", - "Extras" - ], - "isoDate": "2023-12-15T15:09:16.000Z" - }, - { - "creator": "Independent Staff", - "date": "2023-12-15T15:08:46+00:00", - "title": "The Independent\u2019s Bel Trew wins prestigious journalism award", - "link": "https://www.independent.co.uk/news/uk/home-news/independent-bel-trew-awards-journalism-marie-colvin-b2464791.html", - "pubDate": "Fri, 15 Dec 2023 15:08:46 GMT", - "dc:creator": "Independent Staff", - "dc:date": "2023-12-15T15:08:46+00:00", - "content": "

Chief international correspondent Bel Trew was described as one of the world\u2019s leading foreign correspondents at the British Journalism Awards

", - "contentSnippet": "Chief international correspondent Bel Trew was described as one of the world\u2019s leading foreign correspondents at the British Journalism Awards", - "guid": "b2464791", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-15T15:08:46.000Z" - }, - { - "creator": "Jan M. Olsen", - "date": "2023-12-15T15:07:45+00:00", - "title": "Finland reports a rush of migrant crossings hours before the reclosure of 2 border posts with Russia", - "link": "https://www.independent.co.uk/news/russia-ap-finland-nordic-denmark-b2464797.html", - "pubDate": "Fri, 15 Dec 2023 15:07:45 GMT", - "dc:creator": "Jan M. Olsen", - "dc:date": "2023-12-15T15:07:45+00:00", - "content": "Dozens of migrants have crossed into Finland hours before the reclosure of two southern crossing points on the border with Russia as the Nordic country experiences an influx of asylum-seekers", - "contentSnippet": "Dozens of migrants have crossed into Finland hours before the reclosure of two southern crossing points on the border with Russia as the Nordic country experiences an influx of asylum-seekers", - "guid": "b2464797", - "isoDate": "2023-12-15T15:07:45.000Z" - }, - { - "creator": "Jill Lawless", - "date": "2023-12-15T15:06:45+00:00", - "title": "Prince Harry's phone hacking victory is a landmark in the long saga of British tabloid misconduct", - "link": "https://www.independent.co.uk/news/ap-mirror-group-newspapers-phone-hacking-british-pin-number-b2464815.html", - "pubDate": "Fri, 15 Dec 2023 15:06:45 GMT", - "dc:creator": "Jill Lawless", - "dc:date": "2023-12-15T15:06:45+00:00", - "content": "Prince Harry\u2019s victory against Mirror Group Newspapers is a landmark moment in the long saga of lawbreaking by Britain\u2019s tabloids", - "contentSnippet": "Prince Harry\u2019s victory against Mirror Group Newspapers is a landmark moment in the long saga of lawbreaking by Britain\u2019s tabloids", - "guid": "b2464815", - "isoDate": "2023-12-15T15:06:45.000Z" - }, - { - "creator": "Maryam Zakir-Hussain", - "date": "2023-12-15T15:03:13+00:00", - "title": "Alex Batty news - live: Oldham teen \u2018abducted by mother\u2019 to return to UK after being found in France", - "link": "https://www.independent.co.uk/news/uk/home-news/alex-batty-missing-found-mother-oldham-latest-b2464594.html", - "pubDate": "Fri, 15 Dec 2023 15:03:13 GMT", - "dc:creator": "Maryam Zakir-Hussain", - "dc:date": "2023-12-15T15:03:13+00:00", - "content": "

Teenager videocalled grandmother after being \u2018kidnapped\u2019 six years ago

", - "contentSnippet": "Teenager videocalled grandmother after being \u2018kidnapped\u2019 six years ago", - "guid": "b2464594", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-15T15:03:13.000Z" - }, - { - "creator": "Miguel Delaney", - "date": "2023-12-15T15:01:24+00:00", - "title": "Jurgen Klopp creates Liverpool 2.0 to expose Man Utd\u2019s enduring problem", - "link": "https://www.independent.co.uk/sport/football/liverpool-manchester-united-jurgen-klopp-ten-hag-b2464615.html", - "pubDate": "Fri, 15 Dec 2023 15:01:24 GMT", - "dc:creator": "Miguel Delaney", - "dc:date": "2023-12-15T15:01:24+00:00", - "content": "

The Red Devils face a daunting trip to Anfield, the scene of their greatest humiliation under Erik ten Hag in last season\u2019s 7-0 defeat, with no sign of a brighter future

", - "contentSnippet": "The Red Devils face a daunting trip to Anfield, the scene of their greatest humiliation under Erik ten Hag in last season\u2019s 7-0 defeat, with no sign of a brighter future", - "guid": "b2464615", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T15:01:24.000Z" - }, - { - "creator": "Faiza Saqib", - "date": "2023-12-15T15:00:51+00:00", - "title": "Strictly\u2019s Vito Coppola says he and Ellie Leach are \u2018in rehearsals all day\u2019 ahead of final ", - "link": "https://www.independent.co.uk/arts-entertainment/tv/strictly-ellie-leach-vito-coppola-final-b2464613.html", - "pubDate": "Fri, 15 Dec 2023 15:00:51 GMT", - "dc:creator": "Faiza Saqib", - "dc:date": "2023-12-15T15:00:51+00:00", - "content": "

The Strictly Come Dancing final will air on Saturday 16 December on BBC One

", - "contentSnippet": "The Strictly Come Dancing final will air on Saturday 16 December on BBC One", - "guid": "b2464613", - "categories": [ - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-15T15:00:51.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-15T15:00:30+00:00", - "title": "Gaynor Lord police give update after body found in search for missing mother", - "link": "https://www.independent.co.uk/tv/news/gaynor-lord-body-found-police-update-b2464824.html", - "pubDate": "Fri, 15 Dec 2023 15:00:30 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-15T15:00:30+00:00", - "content": "

Police have said there is no evidence of third-party involvement after a body was found in the search for missing mother-of-three Gaynor Lord.

", - "contentSnippet": "Police have said there is no evidence of third-party involvement after a body was found in the search for missing mother-of-three Gaynor Lord.", - "guid": "b2464824", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-12-15T15:00:30.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-12-15T14:58:36+00:00", - "title": "Emmerdale\u2019s Zak Dingle actor Steve Halliwell dies aged 77", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/emmerdale-steve-halliwell-death-zak-dingle-b2464787.html", - "pubDate": "Fri, 15 Dec 2023 14:58:36 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-12-15T14:58:36+00:00", - "content": "

Actor was best known for playing flat cap-wearing head of the Dingle clan in ITV soap

", - "contentSnippet": "Actor was best known for playing flat cap-wearing head of the Dingle clan in ITV soap", - "guid": "b2464787", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-15T14:58:36.000Z" - }, - { - "creator": "Sam Mednick", - "date": "2023-12-15T14:58:36+00:00", - "title": "West African court orders Niger's president to be released and reinstated nearly 5 months after coup", - "link": "https://www.independent.co.uk/news/ap-niger-dakar-senegal-parliament-b2464832.html", - "pubDate": "Fri, 15 Dec 2023 14:58:36 GMT", - "dc:creator": "Sam Mednick", - "dc:date": "2023-12-15T14:58:36+00:00", - "content": "A court of the West African regional bloc has ordered the release and reinstatement of Niger\u2019s democratically elected president", - "contentSnippet": "A court of the West African regional bloc has ordered the release and reinstatement of Niger\u2019s democratically elected president", - "guid": "b2464832", - "isoDate": "2023-12-15T14:58:36.000Z" - }, - { - "creator": "Melissa Goldin", - "date": "2023-12-15T14:57:30+00:00", - "title": "NOT REAL NEWS: A look at what didn't happen this week", - "link": "https://www.independent.co.uk/news/world/americas/immigration-and-customs-enforcement-ap-facts-etsy-associated-press-b2464831.html", - "pubDate": "Fri, 15 Dec 2023 14:57:30 GMT", - "dc:creator": "Melissa Goldin", - "dc:date": "2023-12-15T14:57:30+00:00", - "content": "Social media users shared a range of false claims this week", - "contentSnippet": "Social media users shared a range of false claims this week", - "guid": "b2464831", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-15T14:57:30.000Z" - }, - { - "creator": "Jill Colvin", - "date": "2023-12-15T14:56:29+00:00", - "title": "Sports fan Trump hits UFC fights and big games to try to put his 2024 nomination in a headlock", - "link": "https://www.independent.co.uk/news/donald-trump-ap-ufc-dana-white-tucker-carlson-b2464827.html", - "pubDate": "Fri, 15 Dec 2023 14:56:29 GMT", - "dc:creator": "Jill Colvin", - "dc:date": "2023-12-15T14:56:29+00:00", - "content": "Donald Trump has spent less time campaigning in early-voting states than many of his Republican primary rivals", - "contentSnippet": "Donald Trump has spent less time campaigning in early-voting states than many of his Republican primary rivals", - "guid": "b2464827", - "isoDate": "2023-12-15T14:56:29.000Z" - }, - { - "creator": "Nicole Vassell", - "date": "2023-12-15T14:54:17+00:00", - "title": "Sharon Osbourne shares regret over facelift that made her \u2018look like Cyclops\u2019", - "link": "https://www.independent.co.uk/life-style/sharon-osbourne-facelift-regret-b2464790.html", - "pubDate": "Fri, 15 Dec 2023 14:54:17 GMT", - "dc:creator": "Nicole Vassell", - "dc:date": "2023-12-15T14:54:17+00:00", - "content": "

TV personality and music manager has called the cosmetic work \u2018the worst thing\u2019 she \u2018ever did\u2019

", - "contentSnippet": "TV personality and music manager has called the cosmetic work \u2018the worst thing\u2019 she \u2018ever did\u2019", - "guid": "b2464790", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-12-15T14:54:17.000Z" - }, - { - "creator": "Alexander Butler and Tom Watling ", - "date": "2023-12-15T14:49:37+00:00", - "title": "Ukraine-Russia war \u2013 live: 26 injured as Ukrainian councillor detonates grenades at meeting, police say", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-war-putin-counter-offensive-latest-b2464547.html", - "pubDate": "Fri, 15 Dec 2023 14:49:37 GMT", - "dc:creator": "Alexander Butler and Tom Watling ", - "dc:date": "2023-12-15T14:49:37+00:00", - "content": "

The councillor took grenades out of his jacket before tossing them onto the floor at a meeting livestreamed to Facebook

", - "contentSnippet": "The councillor took grenades out of his jacket before tossing them onto the floor at a meeting livestreamed to Facebook", - "guid": "b2463751", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-15T14:49:37.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-12-15T14:46:37+00:00", - "title": "Watch live: Nicholas Burns speaks about U.S.-China relations at Brookings", - "link": "https://www.independent.co.uk/news/us-china-relations-nicholas-burns-b2464816.html", - "pubDate": "Fri, 15 Dec 2023 14:46:37 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-12-15T14:46:37+00:00", - "content": "

Watch live as Nicholas Burns speaks about U.S.-China relations on December 15.

", - "contentSnippet": "Watch live as Nicholas Burns speaks about U.S.-China relations on December 15.", - "guid": "b2464816", - "isoDate": "2023-12-15T14:46:37.000Z" - }, - { - "creator": "Daniel Shailer", - "date": "2023-12-15T14:46:21+00:00", - "title": "International court rules against Guatemala in landmark Indigenous and environmental rights case", - "link": "https://www.independent.co.uk/news/guatemala-ap-indigenous-interamerican-court-of-human-rights-cop28-b2464821.html", - "pubDate": "Fri, 15 Dec 2023 14:46:21 GMT", - "dc:creator": "Daniel Shailer", - "dc:date": "2023-12-15T14:46:21+00:00", - "content": "Guatemala violated Indigenous rights by permitting a huge nickel mine on tribal land almost two decades ago, according to a ruling from the Inter-American Court of Human Rights", - "contentSnippet": "Guatemala violated Indigenous rights by permitting a huge nickel mine on tribal land almost two decades ago, according to a ruling from the Inter-American Court of Human Rights", - "guid": "b2464821", - "isoDate": "2023-12-15T14:46:21.000Z" - }, - { - "creator": "Simon Peach", - "date": "2023-12-15T14:42:10+00:00", - "title": "Erik ten Hag not worried about job as Manchester United look to turn around form", - "link": "https://www.independent.co.uk/sport/football/erik-ten-hag-manchester-united-bayern-munich-champions-league-premier-league-b2464819.html", - "pubDate": "Fri, 15 Dec 2023 14:42:10 GMT", - "dc:creator": "Simon Peach", - "dc:date": "2023-12-15T14:42:10+00:00", - "content": "A poor domestic campaign was compounded by their midweek Champions League exit.", - "contentSnippet": "A poor domestic campaign was compounded by their midweek Champions League exit.", - "guid": "b2464819", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:42:10.000Z" - }, - { - "creator": "Oliver O'Connell,Alex Woodward and Joe Sommerlad", - "date": "2023-12-15T14:40:58+00:00", - "title": "Trump hits out at New York AG as Rudy Giuliani verdict looms: Live", - "link": "https://www.independent.co.uk/news/world/americas/trump-fraud-trial-latest-news-b2464611.html", - "pubDate": "Fri, 15 Dec 2023 14:40:58 GMT", - "dc:creator": "Oliver O'Connell,Alex Woodward and Joe Sommerlad", - "dc:date": "2023-12-15T14:40:58+00:00", - "content": "

Truth Social rant comes after appeals court rejected challenge to order prohibiting Republican from speaking publicly about court staff

", - "contentSnippet": "Truth Social rant comes after appeals court rejected challenge to order prohibiting Republican from speaking publicly about court staff", - "guid": "b2463845", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-15T14:40:58.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2023-12-15T14:39:48+00:00", - "title": "Zak Dingle\u2019s last Emmerdale appearance as actor Steve Halliwell dies aged 77", - "link": "https://www.independent.co.uk/tv/culture/emmerdale-steve-halliwell-death-zak-dingle-b2464811.html", - "pubDate": "Fri, 15 Dec 2023 14:39:48 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2023-12-15T14:39:48+00:00", - "content": "

Watch the final Emmerdale appearance of actor Steve Halliwell, best known for playing Zak Dingle, after he passed away aged 77.

", - "contentSnippet": "Watch the final Emmerdale appearance of actor Steve Halliwell, best known for playing Zak Dingle, after he passed away aged 77.", - "guid": "b2464811", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-12-15T14:39:48.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2023-12-15T14:33:51+00:00", - "title": "Rebecca Welch appointment hailed as \u2018great moment\u2019 by Eddie Howe", - "link": "https://www.independent.co.uk/sport/football/premier-league-mikel-arteta-roy-hodgson-fulham-burnley-b2464694.html", - "pubDate": "Fri, 15 Dec 2023 14:33:51 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2023-12-15T14:33:51+00:00", - "content": "Welch will become the first female referee in top-flight history when she takes charge of the Fulham v Burnley match on December 23.", - "contentSnippet": "Welch will become the first female referee in top-flight history when she takes charge of the Fulham v Burnley match on December 23.", - "guid": "b2464694", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:33:51.000Z" - }, - { - "creator": "Brian Witte", - "date": "2023-12-15T14:31:37+00:00", - "title": "Maryland Gov. Wes Moore says Orioles lease at Camden Yards headed to a vote", - "link": "https://www.independent.co.uk/news/ap-maryland-baltimore-senate-baltimore-ravens-b2464812.html", - "pubDate": "Fri, 15 Dec 2023 14:31:37 GMT", - "dc:creator": "Brian Witte", - "dc:date": "2023-12-15T14:31:37+00:00", - "content": "Maryland Gov. Wes Moore says a long-term agreement between the Baltimore Orioles and the Maryland Stadium Authority for a new lease at Camden Yards is moving forward for a vote by state officials next week", - "contentSnippet": "Maryland Gov. Wes Moore says a long-term agreement between the Baltimore Orioles and the Maryland Stadium Authority for a new lease at Camden Yards is moving forward for a vote by state officials next week", - "guid": "b2464812", - "isoDate": "2023-12-15T14:31:37.000Z" - }, - { - "creator": "Michael Jones", - "date": "2023-12-15T14:29:28+00:00", - "title": "How to watch the World Darts Championship: TV channel and online stream", - "link": "https://www.independent.co.uk/sport/darts/world-darts-championship-tv-channel-live-stream-b2464804.html", - "pubDate": "Fri, 15 Dec 2023 14:29:28 GMT", - "dc:creator": "Michael Jones", - "dc:date": "2023-12-15T14:29:28+00:00", - "content": "

Everything you need to know about the tournament

", - "contentSnippet": "Everything you need to know about the tournament", - "guid": "b2454041", - "categories": [ - "Darts", - "Sport" - ], - "isoDate": "2023-12-15T14:29:28.000Z" - }, - { - "creator": "Mike Corder", - "date": "2023-12-15T14:26:52+00:00", - "title": "Shops in 2 Dutch cities start selling legally grown cannabis in an experiment to regulate pot trade", - "link": "https://www.independent.co.uk/news/ap-dutch-shops-amsterdam-union-b2464807.html", - "pubDate": "Fri, 15 Dec 2023 14:26:52 GMT", - "dc:creator": "Mike Corder", - "dc:date": "2023-12-15T14:26:52+00:00", - "content": "A paradox at the heart of the Netherlands\u2019 permissive pot policy has gone up in smoke in two Dutch cities as \u201ccoffeeshops\u201d began selling the country\u2019s first legally cultivated cannabis", - "contentSnippet": "A paradox at the heart of the Netherlands\u2019 permissive pot policy has gone up in smoke in two Dutch cities as \u201ccoffeeshops\u201d began selling the country\u2019s first legally cultivated cannabis", - "guid": "b2464807", - "isoDate": "2023-12-15T14:26:52.000Z" - }, - { - "creator": "Maanya Sachdeva", - "date": "2023-12-15T14:23:24+00:00", - "title": "Sam Thompson reacts to Nigel Farage\u2019s record I\u2019m a Celebrity salary", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/sam-thompson-nigel-farage-im-a-celebrity-b2464630.html", - "pubDate": "Fri, 15 Dec 2023 14:23:24 GMT", - "dc:creator": "Maanya Sachdeva", - "dc:date": "2023-12-15T14:23:24+00:00", - "content": "

Thompson, 31, was crowned King of the Jungle after three weeks of Bushtucker-filled fun in the Australian wilderness

", - "contentSnippet": "Thompson, 31, was crowned King of the Jungle after three weeks of Bushtucker-filled fun in the Australian wilderness", - "guid": "b2464630", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-15T14:23:24.000Z" - }, - { - "creator": "Alicia Rancilio", - "date": "2023-12-15T14:18:24+00:00", - "title": "'Reacher' star Alan Ritchson talks season two of hit show and how 'Amazon took a risk' on him", - "link": "https://www.independent.co.uk/news/jack-reacher-ap-amazon-child-lee-b2464802.html", - "pubDate": "Fri, 15 Dec 2023 14:18:24 GMT", - "dc:creator": "Alicia Rancilio", - "dc:date": "2023-12-15T14:18:24+00:00", - "content": "The wandering Jack Reacher, created by novelist Lee Child, returns in a second season of \u201cReacher\u201d on Prime Video", - "contentSnippet": "The wandering Jack Reacher, created by novelist Lee Child, returns in a second season of \u201cReacher\u201d on Prime Video", - "guid": "b2464802", - "isoDate": "2023-12-15T14:18:24.000Z" - }, - { - "creator": "Simon Calder", - "date": "2023-12-15T14:16:19+00:00", - "title": "New border system for entering the EU finally gets 2024 launch date", - "link": "https://www.independent.co.uk/travel/news-and-advice/eu-entry-exit-system-fingerprints-facial-biometric-b2464730.html", - "pubDate": "Fri, 15 Dec 2023 14:16:19 GMT", - "dc:creator": "Simon Calder", - "dc:date": "2023-12-15T14:16:19+00:00", - "content": "

British travellers to Europe will need to submit fingerprints and facial biometrics

", - "contentSnippet": "British travellers to Europe will need to submit fingerprints and facial biometrics", - "guid": "b2464730", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2023-12-15T14:16:19.000Z" - }, - { - "creator": "Sonia Twigg", - "date": "2023-12-15T14:14:57+00:00", - "title": "Erling Haaland ruled out for Manchester City as Pep Guardiola issues injury update", - "link": "https://www.independent.co.uk/sport/football/pep-guardiola-erling-haaland-man-city-b2464770.html", - "pubDate": "Fri, 15 Dec 2023 14:14:57 GMT", - "dc:creator": "Sonia Twigg", - "dc:date": "2023-12-15T14:14:57+00:00", - "content": "

Erling Haaland could still be ruled out of the upcoming Club World Cup

", - "contentSnippet": "Erling Haaland could still be ruled out of the upcoming Club World Cup", - "guid": "b2464770", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:14:57.000Z" - }, - { - "creator": "Kaleigh Werner", - "date": "2023-12-15T14:13:07+00:00", - "title": "Blake Lively, Selena Gomez, and Zoe Kravitz: Taylor Swift\u2019s 34th birthday was a star-studded affair", - "link": "https://www.independent.co.uk/life-style/taylor-swift-birthday-party-nyc-b2464181.html", - "pubDate": "Fri, 15 Dec 2023 14:13:07 GMT", - "dc:creator": "Kaleigh Werner", - "dc:date": "2023-12-15T14:13:07+00:00", - "content": "

Selena Gomez, Blake Lively, Miles Teller, and Sabrina Carpenter were among the stars in attendance at Swift\u2019s 34th birthday party

", - "contentSnippet": "Selena Gomez, Blake Lively, Miles Teller, and Sabrina Carpenter were among the stars in attendance at Swift\u2019s 34th birthday party", - "guid": "b2464181", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-12-15T14:13:07.000Z" - }, - { - "creator": "Richard Jolly", - "date": "2023-12-15T14:06:24+00:00", - "title": "Erik ten Hag responds amid Manchester United sack rumours and Graham Potter links", - "link": "https://www.independent.co.uk/sport/football/erik-ten-hag-manchester-united-b2464796.html", - "pubDate": "Fri, 15 Dec 2023 14:06:24 GMT", - "dc:creator": "Richard Jolly", - "dc:date": "2023-12-15T14:06:24+00:00", - "content": "

The United manager brushed off speculation ahead of a crunch meeting with Liverpool this weekend

", - "contentSnippet": "The United manager brushed off speculation ahead of a crunch meeting with Liverpool this weekend", - "guid": "b2464796", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:06:24.000Z" - }, - { - "creator": "Gustaf Kilander", - "date": "2023-12-15T13:56:41+00:00", - "title": "Two hurt after plane makes fiery emergency landing on North Carolina highway", - "link": "https://www.independent.co.uk/news/world/americas/north-carolina-plane-crash-landing-b2464763.html", - "pubDate": "Fri, 15 Dec 2023 13:56:41 GMT", - "dc:creator": "Gustaf Kilander", - "dc:date": "2023-12-15T13:56:41+00:00", - "content": "

\u2018Looks like, honestly, with our best glide, we\u2019re probably not going to make it,\u2019 person on plane tells air traffic control

", - "contentSnippet": "\u2018Looks like, honestly, with our best glide, we\u2019re probably not going to make it,\u2019 person on plane tells air traffic control", - "guid": "b2464763", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-15T13:56:41.000Z" - }, - { - "creator": "Kate Devlin", - "date": "2023-12-15T13:56:33+00:00", - "title": "Rishi Sunak called the bluff of Tory mafia families in Rwanda vote, says George Osborne", - "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-george-osborne-bluff-mafia-b2464768.html", - "pubDate": "Fri, 15 Dec 2023 13:56:33 GMT", - "dc:creator": "Kate Devlin", - "dc:date": "2023-12-15T13:56:33+00:00", - "content": "

Former chancellor invokes The Godfather as he says \u201cthe one thing you should never do is threaten to go to the mattresses and then lie down in bed\u2019

", - "contentSnippet": "Former chancellor invokes The Godfather as he says \u201cthe one thing you should never do is threaten to go to the mattresses and then lie down in bed\u2019", - "guid": "b2464768", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2023-12-15T13:56:33.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-15T13:55:47+00:00", - "title": "Watch: Donald Trump boasts he is healthier than Barack Obama", - "link": "https://www.independent.co.uk/tv/news/donald-trump-barack-obama-video-b2464781.html", - "pubDate": "Fri, 15 Dec 2023 13:55:47 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-15T13:55:47+00:00", - "content": "

Former President Donald Trump claims a former White House doctor told him he is healthier than his predecessor Barack Obama.

", - "contentSnippet": "Former President Donald Trump claims a former White House doctor told him he is healthier than his predecessor Barack Obama.", - "guid": "b2464781", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-12-15T13:55:47.000Z" - }, - { - "creator": "Alexander Butler", - "date": "2023-12-15T13:54:20+00:00", - "title": "Alex Batty: Timeline of British boy\u2019s disappearance as he\u2019s found after six years", - "link": "https://www.independent.co.uk/news/uk/home-news/alex-batty-missing-found-mother-oldham-latest-b2464681.html", - "pubDate": "Fri, 15 Dec 2023 13:54:20 GMT", - "dc:creator": "Alexander Butler", - "dc:date": "2023-12-15T13:54:20+00:00", - "content": "

Alex Batty went missing six years ago in October 2017 after going on a family holiday to Marbella

", - "contentSnippet": "Alex Batty went missing six years ago in October 2017 after going on a family holiday to Marbella", - "guid": "b2464681", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-15T13:54:20.000Z" - }, - { - "creator": "Lorne Cook", - "date": "2023-12-15T13:52:16+00:00", - "title": "The EU struggles to unify around a Gaza cease-fire call but work on peace moves continues", - "link": "https://www.independent.co.uk/news/uk/politics/hamas-ap-israel-gaza-brussels-b2464789.html", - "pubDate": "Fri, 15 Dec 2023 13:52:16 GMT", - "dc:creator": "Lorne Cook", - "dc:date": "2023-12-15T13:52:16+00:00", - "content": "A number of European Union leaders are trying to use mounting concern about civilian deaths in Israel\u2019s military offensive against Hamas to rally their partners around a united call for a ceasefire in Gaza", - "contentSnippet": "A number of European Union leaders are trying to use mounting concern about civilian deaths in Israel\u2019s military offensive against Hamas to rally their partners around a united call for a ceasefire in Gaza", - "guid": "b2464789", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2023-12-15T13:52:16.000Z" - }, - { - "creator": "Richard Jolly", - "date": "2023-12-15T13:49:44+00:00", - "title": "Jurgen Klopp reveals the \u2018truth\u2019 behind Liverpool\u2019s vulnerability during rebuild", - "link": "https://www.independent.co.uk/sport/football/liverpool-jurgen-klopp-manchester-united-b2464734.html", - "pubDate": "Fri, 15 Dec 2023 13:49:44 GMT", - "dc:creator": "Richard Jolly", - "dc:date": "2023-12-15T13:49:44+00:00", - "content": "

The Reds boss has also dismissed chances that his side will repeat last season\u2019s 7-0 hammering of their bitter rivals, describing that result as \u2018once in a lifetime\u2019

", - "contentSnippet": "The Reds boss has also dismissed chances that his side will repeat last season\u2019s 7-0 hammering of their bitter rivals, describing that result as \u2018once in a lifetime\u2019", - "guid": "b2456713", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T13:49:44.000Z" - }, - { - "creator": "Sarah Ward", - "date": "2023-12-15T13:43:55+00:00", - "title": "Students saddle up to learn how to ride on \u2018RoboCob\u2019", - "link": "https://www.independent.co.uk/tech/west-lothian-b2464784.html", - "pubDate": "Fri, 15 Dec 2023 13:43:55 GMT", - "dc:creator": "Sarah Ward", - "dc:date": "2023-12-15T13:43:55+00:00", - "content": "A \u00a3100,000 horse simulator has been unveiled at Scotland\u2019s Rural College in West Lothian.", - "contentSnippet": "A \u00a3100,000 horse simulator has been unveiled at Scotland\u2019s Rural College in West Lothian.", - "guid": "b2464784", - "categories": [ - "Tech" - ], - "isoDate": "2023-12-15T13:43:55.000Z" - }, - { - "creator": "Faiza Saqib", - "date": "2023-12-15T13:43:37+00:00", - "title": "Good Morning Britain presenter Susanna Reid announces Christmas break from ITV show", - "link": "https://www.independent.co.uk/arts-entertainment/tv/gmb-susanna-reid-christmas-itv-b2464657.html", - "pubDate": "Fri, 15 Dec 2023 13:43:37 GMT", - "dc:creator": "Faiza Saqib", - "dc:date": "2023-12-15T13:43:37+00:00", - "content": "

The presenter shared the news with her fans on social media

", - "contentSnippet": "The presenter shared the news with her fans on social media", - "guid": "b2464657", - "categories": [ - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-15T13:43:37.000Z" - }, - { - "creator": "Ariana Baio", - "date": "2023-12-15T13:41:36+00:00", - "title": "Five people injured in Brooklyn home fire ", - "link": "https://www.independent.co.uk/news/world/americas/brooklyn-fire-building-williamsburg-fdny-b2464766.html", - "pubDate": "Fri, 15 Dec 2023 13:41:36 GMT", - "dc:creator": "Ariana Baio", - "dc:date": "2023-12-15T13:41:36+00:00", - "content": "

Fire began in a two-story multi-family home before spreading to a nearby building

", - "contentSnippet": "Fire began in a two-story multi-family home before spreading to a nearby building", - "guid": "b2464766", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-15T13:41:36.000Z" - }, - { - "creator": "Alex Lee", - "date": "2023-12-15T13:38:55+00:00", - "title": "The Xbox Series X price has plummeted to an all-time low, and it arrives before Christmas", - "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/video-games-consoles/xbox-series-x-deal-amazon-b2446968.html", - "pubDate": "Fri, 15 Dec 2023 13:38:55 GMT", - "dc:creator": "Alex Lee", - "dc:date": "2023-12-15T13:38:55+00:00", - "content": "

The console has never been cheaper in the three years since it launched

", - "contentSnippet": "The console has never been cheaper in the three years since it launched", - "guid": "b2446968", - "categories": [ - "Video Games & Consoles", - "Tech", - "IndyBest", - "Extras" - ], - "isoDate": "2023-12-15T13:38:55.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-15T13:35:46+00:00", - "title": "The title of Bill Maher's new book promises \u201cWhat This Comedian Said Will Shock You\"", - "link": "https://www.independent.co.uk/news/bill-maher-ap-new-york-hbo-b2464782.html", - "pubDate": "Fri, 15 Dec 2023 13:35:46 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-15T13:35:46+00:00", - "content": "Bill Maher has had a few second thoughts, or at least some variations on the first ones", - "contentSnippet": "Bill Maher has had a few second thoughts, or at least some variations on the first ones", - "guid": "b2464782", - "isoDate": "2023-12-15T13:35:46.000Z" - }, - { - "creator": "Lawrence Ostlere", - "date": "2023-12-15T13:35:40+00:00", - "title": "Christopher Nkunku could make Chelsea debut against Sheffield United, says Mauricio Pochettino", - "link": "https://www.independent.co.uk/sport/football/christopher-nkunku-chelsea-squad-news-b2464764.html", - "pubDate": "Fri, 15 Dec 2023 13:35:40 GMT", - "dc:creator": "Lawrence Ostlere", - "dc:date": "2023-12-15T13:35:40+00:00", - "content": "

The 26-year-old France striker could finally begin his Chelsea career when the Blues take on Sheffield United at Stamford Bridge on Saturday

", - "contentSnippet": "The 26-year-old France striker could finally begin his Chelsea career when the Blues take on Sheffield United at Stamford Bridge on Saturday", - "guid": "b2464755", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T13:35:40.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2023-12-15T13:34:17+00:00", - "title": "Two men walk free from prison decades after being wrongfully convicted of murder as teens", - "link": "https://www.independent.co.uk/news/world/americas/two-men-freed-wrongful-conviction-b2464653.html", - "pubDate": "Fri, 15 Dec 2023 13:34:17 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2023-12-15T13:34:17+00:00", - "content": "

Two men have been exonerated after decades in prison for seperate murder charges on crimes they did not commit

", - "contentSnippet": "Two men have been exonerated after decades in prison for seperate murder charges on crimes they did not commit", - "guid": "b2464653", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-15T13:34:17.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-15T13:34:05+00:00", - "title": "Next UFC Fight Night: Event start time, card and how to watch", - "link": "https://www.independent.co.uk/sport/ufc/next-ufc-fight-event-december-schedule-2023-b2461922.html", - "pubDate": "Fri, 15 Dec 2023 13:34:05 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-15T13:34:05+00:00", - "content": "

All you need to know about the MMA promotion\u2019s upcoming fights

", - "contentSnippet": "All you need to know about the MMA promotion\u2019s upcoming fights", - "guid": "b2461922", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-12-15T13:34:05.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-15T13:33:50+00:00", - "title": "Jake Paul vs Andre August time: When does fight start in UK and US tonight?", - "link": "https://www.independent.co.uk/sport/boxing/jake-paul-andre-august-start-time-ring-walks-b2464663.html", - "pubDate": "Fri, 15 Dec 2023 13:33:50 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-15T13:33:50+00:00", - "content": "

The YouTuber-turned-boxer fights the unknown August in Orlando

", - "contentSnippet": "The YouTuber-turned-boxer fights the unknown August in Orlando", - "guid": "b2463514", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-12-15T13:33:50.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-15T13:33:37+00:00", - "title": "Jake Paul vs Andre August live stream: How to watch fight online and on TV tonight", - "link": "https://www.independent.co.uk/sport/boxing/jake-paul-andre-august-live-stream-watch-online-b2464662.html", - "pubDate": "Fri, 15 Dec 2023 13:33:37 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-15T13:33:37+00:00", - "content": "

The YouTuber-turned-boxer fights the unknown August in Orlando

", - "contentSnippet": "The YouTuber-turned-boxer fights the unknown August in Orlando", - "guid": "b2463489", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-12-15T13:33:37.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-15T13:33:22+00:00", - "title": "UFC 296 card: Leon Edwards and Paddy Pimblett in action ", - "link": "https://www.independent.co.uk/sport/ufc/ufc-296-card-leon-edwards-paddy-pimblett-b2463904.html", - "pubDate": "Fri, 15 Dec 2023 13:33:22 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-15T13:33:22+00:00", - "content": "

Here\u2019s all you need to know ahead of a stacked card in Las Vegas this weekend

", - "contentSnippet": "Here\u2019s all you need to know ahead of a stacked card in Las Vegas this weekend", - "guid": "b2463904", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-12-15T13:33:22.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-15T13:33:13+00:00", - "title": "UFC 296 time: When does Leon Edwards vs Colby Covington start in UK and US this weekend?", - "link": "https://www.independent.co.uk/sport/ufc/ufc-296-start-time-uk-b2461954.html", - "pubDate": "Fri, 15 Dec 2023 13:33:13 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-15T13:33:13+00:00", - "content": "

Here\u2019s all you need to know ahead of two title fights in Las Vegas this weekend

", - "contentSnippet": "Here\u2019s all you need to know ahead of two title fights in Las Vegas this weekend", - "guid": "b2461954", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-12-15T13:33:13.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-12-15T13:33:01+00:00", - "title": "UFC 296 live stream: How to watch Leon Edwards vs Colby Covington online and on TV this weekend", - "link": "https://www.independent.co.uk/sport/ufc/ufc-296-live-stream-watch-online-b2461948.html", - "pubDate": "Fri, 15 Dec 2023 13:33:01 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-12-15T13:33:01+00:00", - "content": "

Here\u2019s all you need to know ahead of two title fights in Las Vegas this weekend

", - "contentSnippet": "Here\u2019s all you need to know ahead of two title fights in Las Vegas this weekend", - "guid": "b2461948", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-12-15T13:33:01.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-15T13:31:21+00:00", - "title": "Landlord uses chainsaw to cut through door \u2018to evict tenants\u2019", - "link": "https://www.independent.co.uk/tv/lifestyle/landlord-chainsaw-eviction-video-b2464752.html", - "pubDate": "Fri, 15 Dec 2023 13:31:21 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-15T13:31:21+00:00", - "content": "

This is the moment a landlord cuts a hole in the door of a property to allegedly evict a tenant.

", - "contentSnippet": "This is the moment a landlord cuts a hole in the door of a property to allegedly evict a tenant.", - "guid": "b2464752", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2023-12-15T13:31:21.000Z" - }, - { - "creator": "Holly Evans", - "date": "2023-12-15T13:29:42+00:00", - "title": "Judge rules Prince Harry was hacked and awards him \u00a3140,000", - "link": "https://www.independent.co.uk/news/uk/home-news/prince-harry-mirror-group-phone-hacking-b2464171.html", - "pubDate": "Fri, 15 Dec 2023 13:29:42 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2023-12-15T13:29:42+00:00", - "content": "

The Duke of Sussex has been awarded \u00a3140,600 after the judge found he was the victim of \u2018extensive\u2019 hacking over several years

", - "contentSnippet": "The Duke of Sussex has been awarded \u00a3140,600 after the judge found he was the victim of \u2018extensive\u2019 hacking over several years", - "guid": "b2464171", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-15T13:29:42.000Z" - }, - { - "creator": "Alexander Butler and Adam Forrest", - "date": "2023-12-15T13:24:05+00:00", - "title": "One dead and another fighting for life after small boat carrying 66 migrants sinks in Channel", - "link": "https://www.independent.co.uk/news/world/europe/channel-crossing-migrant-death-latest-news-b2464588.html", - "pubDate": "Fri, 15 Dec 2023 13:24:05 GMT", - "dc:creator": "Alexander Butler and Adam Forrest", - "dc:date": "2023-12-15T13:24:05+00:00", - "content": "

No 10 says woman\u2019s death is \u2018stark reminder\u2019 of the importance of Sunak\u2019s stop the boats plan

", - "contentSnippet": "No 10 says woman\u2019s death is \u2018stark reminder\u2019 of the importance of Sunak\u2019s stop the boats plan", - "guid": "b2464588", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-15T13:24:05.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2023-12-15T13:16:12+00:00", - "title": "French driver who found British teenager Alex Batty recalls taking him to police station", - "link": "https://www.independent.co.uk/tv/news/alex-batty-found-france-oldham-driver-b2464660.html", - "pubDate": "Fri, 15 Dec 2023 13:16:12 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2023-12-15T13:16:12+00:00", - "content": "

The driver who picked up missing British teenager Alex Batty and took him to a police station in southwestern France has recalled the conversations they shared.

", - "contentSnippet": "The driver who picked up missing British teenager Alex Batty and took him to a police station in southwestern France has recalled the conversations they shared.", - "guid": "b2464660", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-12-15T13:16:12.000Z" - }, - { - "creator": "Pan Pylas", - "date": "2023-12-15T13:06:26+00:00", - "title": "Migrant dies and another is in critical condition after boat partially deflates in English Channel", - "link": "https://www.independent.co.uk/news/world/europe/english-channel-ap-rwanda-french-france-b2464761.html", - "pubDate": "Fri, 15 Dec 2023 13:06:26 GMT", - "dc:creator": "Pan Pylas", - "dc:date": "2023-12-15T13:06:26+00:00", - "content": "One person died Friday and another is in critical condition after a boat carrying more than 60 migrants got into difficulty as it attempted to make the dangerous crossing across the English Channel from France", - "contentSnippet": "One person died Friday and another is in critical condition after a boat carrying more than 60 migrants got into difficulty as it attempted to make the dangerous crossing across the English Channel from France", - "guid": "b2464761", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-15T13:06:26.000Z" - }, - { - "creator": "Alex Ross and Peter Allen", - "date": "2023-12-15T13:04:57+00:00", - "title": "Alex Batty\u2019s family fear teenager was \u2018brainwashed\u2019 in commune while missing for six years", - "link": "https://www.independent.co.uk/news/world/europe/missing-alex-batty-found-oldham-brainwashed-b2464690.html", - "pubDate": "Fri, 15 Dec 2023 13:04:57 GMT", - "dc:creator": "Alex Ross and Peter Allen", - "dc:date": "2023-12-15T13:04:57+00:00", - "content": "

Relatives are overjoyed by Alex Batty\u2019s discovery, but fear for his wellbeing after six years away

", - "contentSnippet": "Relatives are overjoyed by Alex Batty\u2019s discovery, but fear for his wellbeing after six years away", - "guid": "b2464690", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-15T13:04:57.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2023-12-15T13:02:53+00:00", - "title": "Matt Gaetz trolled with fake award for \u2018paying underage girls for sex\u2019", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/matt-gaetz-gop-fake-award-b2464504.html", - "pubDate": "Fri, 15 Dec 2023 13:02:53 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2023-12-15T13:02:53+00:00", - "content": "

The Florida congressman was caught off guard by the troll, who appeared onstage at the Strongsville Republican Party\u2019s Christmas gathering

", - "contentSnippet": "The Florida congressman was caught off guard by the troll, who appeared onstage at the Strongsville Republican Party\u2019s Christmas gathering", - "guid": "b2464504", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-15T13:02:53.000Z" - }, - { - "creator": "Associated Press", - "date": "2023-12-15T13:02:53+00:00", - "title": "Why have thousands of United Methodist churches in the US quit the denomination?", - "link": "https://www.independent.co.uk/news/ap-progressives-churches-associated-press-europe-b2464760.html", - "pubDate": "Fri, 15 Dec 2023 13:02:53 GMT", - "dc:creator": "Associated Press", - "dc:date": "2023-12-15T13:02:53+00:00", - "content": "The United Methodist Church has been undergoing a major upheaval as more than 7,000 congregations across the country decided to leave the denomination", - "contentSnippet": "The United Methodist Church has been undergoing a major upheaval as more than 7,000 congregations across the country decided to leave the denomination", - "guid": "b2464760", - "isoDate": "2023-12-15T13:02:53.000Z" - }, - { - "creator": "Kris Griffiths", - "date": "2023-12-15T13:01:31+00:00", - "title": "How to spend a day in San Francisco\u2019s Japantown, the poster child for the city\u2019s post-Covid recovery", - "link": "https://www.independent.co.uk/travel/north-america/usa/california/san-francisco-japantown-guide-b2463779.html", - "pubDate": "Fri, 15 Dec 2023 13:01:31 GMT", - "dc:creator": "Kris Griffiths", - "dc:date": "2023-12-15T13:01:31+00:00", - "content": "

Now\u2019s a better time than ever to visit this thriving, underrated district of a city that is still getting back onto its feet, writes Kris Griffiths

", - "contentSnippet": "Now\u2019s a better time than ever to visit this thriving, underrated district of a city that is still getting back onto its feet, writes Kris Griffiths", - "guid": "b2463779", - "categories": [ - "California", - "USA", - "North America", - "Travel" - ], - "isoDate": "2023-12-15T13:01:31.000Z" - }, - { - "creator": "Bassem Mroue", - "date": "2023-12-15T13:00:18+00:00", - "title": "US national security adviser says a negotiated outcome is the best way to end Lebanon-Israel tension", - "link": "https://www.independent.co.uk/news/jake-sullivan-ap-israel-lebanon-hezbollah-b2464759.html", - "pubDate": "Fri, 15 Dec 2023 13:00:18 GMT", - "dc:creator": "Bassem Mroue", - "dc:date": "2023-12-15T13:00:18+00:00", - "content": "U.S. National Security Adviser Jake Sullivan says he has discussed with Israeli officials the volatile situation along the Lebanon-Israel border", - "contentSnippet": "U.S. National Security Adviser Jake Sullivan says he has discussed with Israeli officials the volatile situation along the Lebanon-Israel border", - "guid": "b2464759", - "isoDate": "2023-12-15T13:00:18.000Z" - }, - { - "creator": "Peter Smith", - "date": "2023-12-15T12:59:53+00:00", - "title": "One fourth of United Methodist churches in US have left in schism over LGBTQ ban. What happens now?", - "link": "https://www.independent.co.uk/news/ap-africa-conservatives-african-associated-press-b2464758.html", - "pubDate": "Fri, 15 Dec 2023 12:59:53 GMT", - "dc:creator": "Peter Smith", - "dc:date": "2023-12-15T12:59:53+00:00", - "content": "United Methodist churches had a five-year window to leave the denomination over disputes involving its bans on same-sex marriage and ordaining LGBTQ persons", - "contentSnippet": "United Methodist churches had a five-year window to leave the denomination over disputes involving its bans on same-sex marriage and ordaining LGBTQ persons", - "guid": "b2464758", - "isoDate": "2023-12-15T12:59:53.000Z" - }, - { - "creator": "Gerold Rozenblad", - "date": "2023-12-15T12:58:22+00:00", - "title": "Suriname's ex-dictator faces final verdict in 1982 killings of political opponents. Some fear unrest", - "link": "https://www.independent.co.uk/news/desi-bouterse-ap-suriname-african-hezbollah-b2464757.html", - "pubDate": "Fri, 15 Dec 2023 12:58:22 GMT", - "dc:creator": "Gerold Rozenblad", - "dc:date": "2023-12-15T12:58:22+00:00", - "content": "Suriname\u2019s former dictator will face a final verdict this month in the years-long judicial process over the 1982 killings of 15 political opponents that deeply scarred the South American country", - "contentSnippet": "Suriname\u2019s former dictator will face a final verdict this month in the years-long judicial process over the 1982 killings of 15 political opponents that deeply scarred the South American country", - "guid": "b2464757", - "isoDate": "2023-12-15T12:58:22.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2023-12-15T12:56:30+00:00", - "title": "Police handcuff 11-year-old girl over prank phone call", - "link": "https://www.independent.co.uk/news/world/americas/police-handcuff-schoolgirl-prank-call-b2464728.html", - "pubDate": "Fri, 15 Dec 2023 12:56:30 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2023-12-15T12:56:30+00:00", - "content": "

Parents of an 11-year-old girl outraged after she was handcuffed over a prank call

", - "contentSnippet": "Parents of an 11-year-old girl outraged after she was handcuffed over a prank call", - "guid": "b2464728", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-15T12:56:30.000Z" - }, - { - "creator": "", - "date": "2023-12-15T12:53:54+00:00", - "title": "Gift someone up to $1 million with the 2 Million Dollar Puzzle by MSCHF", - "link": "https://www.independent.co.uk/us/gift-someone-up-to-1-million-with-the-2-million-dollar-puzzle-b2464048.html", - "pubDate": "Fri, 15 Dec 2023 12:53:54 GMT", - "dc:creator": "", - "dc:date": "2023-12-15T12:53:54+00:00", - "content": "

If winning $1 million by completing a simple puzzle seems like a golden ticket fantasy, then MSCHF is Willy Wonka

", - "contentSnippet": "If winning $1 million by completing a simple puzzle seems like a golden ticket fantasy, then MSCHF is Willy Wonka", - "guid": "b2464048", - "categories": [ - "US" - ], - "isoDate": "2023-12-15T12:53:54.000Z" - }, - { - "creator": "Martha McHardy", - "date": "2023-12-15T12:45:44+00:00", - "title": "Jill Biden\u2019s \u2018tacky\u2019 Christmas video draws mockery - and comparison to Melania Trump ", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/jill-biden-christmas-video-melania-trump-b2464558.html", - "pubDate": "Fri, 15 Dec 2023 12:45:44 GMT", - "dc:creator": "Martha McHardy", - "dc:date": "2023-12-15T12:45:44+00:00", - "content": "

Dr Biden previously said she wanted everyone who visits the White House during the holidays to feel like a kid again

", - "contentSnippet": "Dr Biden previously said she wanted everyone who visits the White House during the holidays to feel like a kid again", - "guid": "b2464167", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-15T12:45:44.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-15T12:41:07+00:00", - "title": "Spanish police arrest 14 airport workers after items go missing from checked-in luggage", - "link": "https://www.independent.co.uk/news/spanish-ap-madrid-police-canary-islands-b2464745.html", - "pubDate": "Fri, 15 Dec 2023 12:41:07 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-15T12:41:07+00:00", - "content": "Spanish police say they have arrested 14 workers at one of the country\u2019s main tourist airports on suspicion of stealing items from checked-in luggage", - "contentSnippet": "Spanish police say they have arrested 14 workers at one of the country\u2019s main tourist airports on suspicion of stealing items from checked-in luggage", - "guid": "b2464745", - "isoDate": "2023-12-15T12:41:07.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-12-15T12:40:33+00:00", - "title": "Kenny DeForest death: Comedy world mourns loss of beloved stand-up, 37, killed in road accident ", - "link": "https://www.independent.co.uk/arts-entertainment/comedy/news/kenny-deforest-death-cause-comedy-b2464618.html", - "pubDate": "Fri, 15 Dec 2023 12:40:33 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-12-15T12:40:33+00:00", - "content": "

The stand-up has been hailed as \u2018one of the funniest and most beloved comics any of us knew\u2019

", - "contentSnippet": "The stand-up has been hailed as \u2018one of the funniest and most beloved comics any of us knew\u2019", - "guid": "b2464618", - "categories": [ - "News", - "Comedy", - "Culture" - ], - "isoDate": "2023-12-15T12:40:33.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-12-15T12:39:23+00:00", - "title": "Netflix has renewed its \u2018best show of 2023\u2019 a month after quietly releasing it ", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/blue-eye-samurai-season-2-netflix-uk-b2464742.html", - "pubDate": "Fri, 15 Dec 2023 12:39:23 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-12-15T12:39:23+00:00", - "content": "

The hidden gem has a 100 per cent rating on Rotten Tomatoes

", - "contentSnippet": "The hidden gem has a 100 per cent rating on Rotten Tomatoes", - "guid": "b2463057", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-15T12:39:23.000Z" - }, - { - "creator": "Joe Sommerlad", - "date": "2023-12-15T12:36:17+00:00", - "title": "Trump lashes out at New York AG after losing gag order appeal", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/trump-letitia-james-civil-trial-b2464723.html", - "pubDate": "Fri, 15 Dec 2023 12:36:17 GMT", - "dc:creator": "Joe Sommerlad", - "dc:date": "2023-12-15T12:36:17+00:00", - "content": "

Republican presidential frontrunner insists financial statements \u2018undervalued\u2019, not overstated as Letitia James has alleged in $250m lawsuit

", - "contentSnippet": "Republican presidential frontrunner insists financial statements \u2018undervalued\u2019, not overstated as Letitia James has alleged in $250m lawsuit", - "guid": "b2464723", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-12-15T12:36:17.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-15T12:33:16+00:00", - "title": "Germany's parliament approves a plan for a bigger hike in carbon price after a budget deal", - "link": "https://www.independent.co.uk/news/world/europe/germany-ap-berlin-olaf-scholz-covid-b2464741.html", - "pubDate": "Fri, 15 Dec 2023 12:33:16 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-15T12:33:16+00:00", - "content": "Germany's parliament has approved plans to raise the country\u2019s levy on carbon dioxide emissions from fuel by more than previously planned next month", - "contentSnippet": "Germany's parliament has approved plans to raise the country\u2019s levy on carbon dioxide emissions from fuel by more than previously planned next month", - "guid": "b2464741", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-12-15T12:33:16.000Z" - }, - { - "creator": "Simon Calder", - "date": "2023-12-15T12:32:04+00:00", - "title": "More travel red tape for Europe trips: Get ready for Etias and EES", - "link": "https://www.independent.co.uk/travel/news-and-advice/brexit-border-etias-dover-eurostar-b2130495.html", - "pubDate": "Fri, 15 Dec 2023 12:32:04 GMT", - "dc:creator": "Simon Calder", - "dc:date": "2023-12-15T12:32:04+00:00", - "content": "

Under the Entry/Exit System every British traveller to the Schengen Area must be fingerprinted and provide a facial biometric

", - "contentSnippet": "Under the Entry/Exit System every British traveller to the Schengen Area must be fingerprinted and provide a facial biometric", - "guid": "b2130495", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2023-12-15T12:32:04.000Z" - }, - { - "creator": "Culture Staff,Jessie Thompson,Matt Payton,Louis Chilton,Ellie Harrison,Olivia Petter,Katie Rosseinsky,Victoria Richards and Tom Murray", - "date": "2023-12-15T12:31:39+00:00", - "title": "Best books to gift (and gift again) at Christmas: The Independent newsroom make their picks", - "link": "https://www.independent.co.uk/arts-entertainment/books/features/best-books-gifts-christmas-2023-b2463991.html", - "pubDate": "Fri, 15 Dec 2023 12:31:39 GMT", - "dc:creator": "Culture Staff,Jessie Thompson,Matt Payton,Louis Chilton,Ellie Harrison,Olivia Petter,Katie Rosseinsky,Victoria Richards and Tom Murray", - "dc:date": "2023-12-15T12:31:39+00:00", - "content": "

When you give someone a book as a gift, what you\u2019re really giving them is a few hours of pleasure. Indy staff share their trusted literary gifts this Christmas

", - "contentSnippet": "When you give someone a book as a gift, what you\u2019re really giving them is a few hours of pleasure. Indy staff share their trusted literary gifts this Christmas", - "guid": "b2463991", - "categories": [ - "Features", - "Books", - "Culture" - ], - "isoDate": "2023-12-15T12:31:39.000Z" - }, - { - "creator": "Gemma Abbott", - "date": "2023-12-15T12:30:25+00:00", - "title": "Voices: At last, women referees are here to fix men\u2019s football", - "link": "https://www.independent.co.uk/voices/women-referees-premier-league-men-football-b2464720.html", - "pubDate": "Fri, 15 Dec 2023 12:30:25 GMT", - "dc:creator": "Gemma Abbott", - "dc:date": "2023-12-15T12:30:25+00:00", - "content": "

The beautiful game needs a woman\u2019s touch, writes Gemma Abbott \u2013 not just to stop male grandstanding, but to help stem the exodus of officials from the sport

", - "contentSnippet": "The beautiful game needs a woman\u2019s touch, writes Gemma Abbott \u2013 not just to stop male grandstanding, but to help stem the exodus of officials from the sport", - "guid": "b2464720", - "categories": [ - "Voices" - ], - "isoDate": "2023-12-15T12:30:25.000Z" - }, - { - "creator": "Anna Wise", - "date": "2023-12-15T12:22:43+00:00", - "title": "More than a quarter of people worried about affording Christmas \u2013 ONS", - "link": "https://www.independent.co.uk/money/more-than-a-quarter-of-people-worried-about-affording-christmas-ons-b2464738.html", - "pubDate": "Fri, 15 Dec 2023 12:22:43 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2023-12-15T12:22:43+00:00", - "content": "Some 28% reported feeling worried about being able to afford the things they planned to do this Christmas, the Office for National Statistics found.", - "contentSnippet": "Some 28% reported feeling worried about being able to afford the things they planned to do this Christmas, the Office for National Statistics found.", - "guid": "b2464738", - "categories": [ - "Money" - ], - "isoDate": "2023-12-15T12:22:43.000Z" - }, - { - "creator": "Alexander Butler", - "date": "2023-12-15T12:18:02+00:00", - "title": "Met Office issues 24-hour \u2018danger to life\u2019 weather warning", - "link": "https://www.independent.co.uk/news/uk/home-news/met-office-weather-warning-weekend-amber-danger-b2464711.html", - "pubDate": "Fri, 15 Dec 2023 12:18:02 GMT", - "dc:creator": "Alexander Butler", - "dc:date": "2023-12-15T12:18:02+00:00", - "content": "

The 24-hour amber warning is in place across Scotland ahead of heavy rain forecast in parts of the UK

", - "contentSnippet": "The 24-hour amber warning is in place across Scotland ahead of heavy rain forecast in parts of the UK", - "guid": "b2464711", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-12-15T12:18:02.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-12-15T12:16:21+00:00", - "title": "Will Smith reveals stylist\u2019s \u2018terrible error\u2019 ahead of fashion shoot", - "link": "https://www.independent.co.uk/tv/culture/will-smith-fashion-shoot-mishap-b2464632.html", - "pubDate": "Fri, 15 Dec 2023 12:16:21 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-12-15T12:16:21+00:00", - "content": "

Hollywood star Will Smith revealed a fashion mishap ahead of a shoot on set saying he had \u201cnever experienced anything like it\u201d.

", - "contentSnippet": "Hollywood star Will Smith revealed a fashion mishap ahead of a shoot on set saying he had \u201cnever experienced anything like it\u201d.", - "guid": "b2464632", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-12-15T12:16:21.000Z" - }, - { - "creator": "Guy Walters", - "date": "2023-12-15T12:13:03+00:00", - "title": "Fergie goes to Burnley on a weight-loss mission", - "link": "https://www.independent.co.uk/tv/news/sarah-ferguson-burnley-obesity-b2464717.html", - "pubDate": "Fri, 15 Dec 2023 12:13:03 GMT", - "dc:creator": "Guy Walters", - "dc:date": "2023-12-15T12:13:03+00:00", - "content": "

Sarah Ferguson has visited Burnley in a bid to tackle the town\u2019s obesity problems.

", - "contentSnippet": "Sarah Ferguson has visited Burnley in a bid to tackle the town\u2019s obesity problems.", - "guid": "b2464717", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-12-15T12:13:03.000Z" - }, - { - "creator": "Karin Laub,Najib Jobain and Bassem Mroue", - "date": "2023-12-15T12:12:32+00:00", - "title": "US and Israel discuss when to scale back Gaza combat but agree fight will take months, envoy says", - "link": "https://www.independent.co.uk/news/world/americas/israel-ap-jake-sullivan-gaza-hamas-b2464736.html", - "pubDate": "Fri, 15 Dec 2023 12:12:32 GMT", - "dc:creator": "Karin Laub,Najib Jobain and Bassem Mroue", - "dc:date": "2023-12-15T12:12:32+00:00", - "content": "A top U.S. envoy says the United States agrees with Israel that the fight against Hamas will take months, but officials are discussing the timetable for scaling back from high-intensity combat to more precise ways of targeting the militant group\u2019s leaders", - "contentSnippet": "A top U.S. envoy says the United States agrees with Israel that the fight against Hamas will take months, but officials are discussing the timetable for scaling back from high-intensity combat to more precise ways of targeting the militant group\u2019s leaders", - "guid": "b2464736", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-12-15T12:12:32.000Z" - }, - { - "creator": "Kieran Jackson", - "date": "2023-12-15T12:06:57+00:00", - "title": "\u2018His life is different now\u2019: Michael Schumacher update given by close friend", - "link": "https://www.independent.co.uk/f1/f1-michael-schumacher-update-health-jean-todt-b2464713.html", - "pubDate": "Fri, 15 Dec 2023 12:06:57 GMT", - "dc:creator": "Kieran Jackson", - "dc:date": "2023-12-15T12:06:57+00:00", - "content": "

Schumacher has not been seen publicly since a near-fatal skiing accident in France almost 10 years ago

", - "contentSnippet": "Schumacher has not been seen publicly since a near-fatal skiing accident in France almost 10 years ago", - "guid": "b2464713", - "categories": [ - "F1" - ], - "isoDate": "2023-12-15T12:06:57.000Z" - }, - { - "creator": "Lauren Cunningham", - "date": "2023-12-15T12:04:35+00:00", - "title": "11 luxury fashion finds under \u00a3100 that will make great Christmas gifts", - "link": "https://www.independent.co.uk/extras/indybest/christmasgifts/affordable-luxury-fashion-christmas-gifts-b2464443.html", - "pubDate": "Fri, 15 Dec 2023 12:04:35 GMT", - "dc:creator": "Lauren Cunningham", - "dc:date": "2023-12-15T12:04:35+00:00", - "content": "

No matter who you\u2019re shopping for, these gifts are sure to put a smile on somebody\u2019s face

", - "contentSnippet": "No matter who you\u2019re shopping for, these gifts are sure to put a smile on somebody\u2019s face", - "guid": "b2464443", - "categories": [ - "Christmas", - "IndyBest", - "Extras" - ], - "isoDate": "2023-12-15T12:04:35.000Z" - }, - { - "creator": "George Sessions", - "date": "2023-12-15T12:00:04+00:00", - "title": "Ange Postecoglou hopeful of landing January targets to boost Tottenham ranks", - "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-son-heungmin-arsenal-australian-celtic-b2464724.html", - "pubDate": "Fri, 15 Dec 2023 12:00:04 GMT", - "dc:creator": "George Sessions", - "dc:date": "2023-12-15T12:00:04+00:00", - "content": "Top of Ange Postecoglou\u2019s Christmas list is the Tottenham hierarchy giving him new players at the start of January.", - "contentSnippet": "Top of Ange Postecoglou\u2019s Christmas list is the Tottenham hierarchy giving him new players at the start of January.", - "guid": "b2464724", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T12:00:04.000Z" - }, - { - "creator": "Harry Latham-Coyle", - "date": "2023-12-15T11:59:48+00:00", - "title": "Controversial ex-Billericay Town owner on the run from police", - "link": "https://www.independent.co.uk/sport/football/glenn-tamplin-police-billericay-town-b2464685.html", - "pubDate": "Fri, 15 Dec 2023 11:59:48 GMT", - "dc:creator": "Harry Latham-Coyle", - "dc:date": "2023-12-15T11:59:48+00:00", - "content": "

Two arrest warrants have been issued for Glenn Tamplin

", - "contentSnippet": "Two arrest warrants have been issued for Glenn Tamplin", - "guid": "b2464685", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T11:59:48.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-12-15T11:56:59+00:00", - "title": "Airbnb agrees to pay $621 million to settle a tax dispute in Italy", - "link": "https://www.independent.co.uk/news/airbnb-ap-italy-italian-giorgia-meloni-b2464729.html", - "pubDate": "Fri, 15 Dec 2023 11:56:59 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-12-15T11:56:59+00:00", - "content": "Short-term rental platform Airbnb has agreed to pay 576 million euros ($621 million) to settle a years-long dispute over unpaid taxes in Italy but won\u2019t try to recover the money from its hosts", - "contentSnippet": "Short-term rental platform Airbnb has agreed to pay 576 million euros ($621 million) to settle a years-long dispute over unpaid taxes in Italy but won\u2019t try to recover the money from its hosts", - "guid": "b2464729", - "isoDate": "2023-12-15T11:56:59.000Z" - }, - { - "creator": "Michael Jones", - "date": "2023-12-15T11:55:51+00:00", - "title": "What is the World Darts Championship prize money?", - "link": "https://www.independent.co.uk/sport/darts/world-darts-championship-prize-money-b2464722.html", - "pubDate": "Fri, 15 Dec 2023 11:55:51 GMT", - "dc:creator": "Michael Jones", - "dc:date": "2023-12-15T11:55:51+00:00", - "content": "

Here\u2019s a breakdown of how much players will earn for each round of the tournament

", - "contentSnippet": "Here\u2019s a breakdown of how much players will earn for each round of the tournament", - "guid": "b2454082", - "categories": [ - "Darts", - "Sport" - ], - "isoDate": "2023-12-15T11:55:51.000Z" - }, - { - "creator": "Annabel Nugent", - "date": "2023-12-15T06:30:19+00:00", - "title": "Christina Hendricks on Wonder Woman, Mad Men spin-offs and Victorian corsets: \u2018People always think I\u2019m going to be much more of a lady than I am\u2019", - "link": "https://www.independent.co.uk/arts-entertainment/tv/features/christina-hendricks-buccaneers-mad-men-b2464137.html", - "pubDate": "Fri, 15 Dec 2023 06:30:19 GMT", - "dc:creator": "Annabel Nugent", - "dc:date": "2023-12-15T06:30:19+00:00", - "content": "

The beloved star of \u2018Mad Men\u2019 and \u2018Good Girls\u2019 is swapping Sixties girdles for Victorian hosiery in Apple TV+'s charming Edith Wharton adaptation. On break from filming her new Irish comedy with Chris O\u2019Dowd, the actor speaks to Annabel Nugent about feminism, staying true to her goth roots, and whether Joan could get her very own spin-off

", - "contentSnippet": "The beloved star of \u2018Mad Men\u2019 and \u2018Good Girls\u2019 is swapping Sixties girdles for Victorian hosiery in Apple TV+'s charming Edith Wharton adaptation. On break from filming her new Irish comedy with Chris O\u2019Dowd, the actor speaks to Annabel Nugent about feminism, staying true to her goth roots, and whether Joan could get her very own spin-off", - "guid": "b2464137", - "categories": [ - "Features", - "TV & Radio", - "Culture" - ], - "isoDate": "2023-12-15T06:30:19.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-04T10:57:01+00:00", - "title": "BBC presenter struggles to keep a straight face while asking: \u2018How big is your hole?\u2019", - "link": "https://www.independent.co.uk/tv/culture/bbc-peter-levy-laughing-news-report-b2473060.html", - "pubDate": "Thu, 04 Jan 2024 10:57:01 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-04T10:57:01+00:00", - "content": "

A BBC presenter struggles to keep a straight face while asking \u201cHow big is your hole?\u201d during a live news report on potholes.

", - "contentSnippet": "A BBC presenter struggles to keep a straight face while asking \u201cHow big is your hole?\u201d during a live news report on potholes.", - "guid": "b2473060", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-04T10:57:01.000Z" - }, - { - "creator": "Jonathan Veal", - "date": "2024-01-04T10:56:51+00:00", - "title": "Premier League selection and learning to drive \u2013 what next for Luke Littler?", - "link": "https://www.independent.co.uk/sport/darts/luke-littler-premier-league-darts-age-b2473134.html", - "pubDate": "Thu, 04 Jan 2024 10:56:51 GMT", - "dc:creator": "Jonathan Veal", - "dc:date": "2024-01-04T10:56:51+00:00", - "content": "

The teenager has taken the darting world by storm

", - "contentSnippet": "The teenager has taken the darting world by storm", - "guid": "b2473077", - "categories": [ - "Darts", - "Sport" - ], - "isoDate": "2024-01-04T10:56:51.000Z" - }, - { - "creator": "Tara Cobham,Athena Stavrou and Lydia Patrick", - "date": "2024-01-04T10:54:07+00:00", - "title": "UK weather - live: Met Office warns 15 hours of torrential rain may cut off homes in wake of Storm Henk floods", - "link": "https://www.independent.co.uk/weather/uk-storm-henk-met-office-weather-forecast-b2473016.html", - "pubDate": "Thu, 04 Jan 2024 10:54:07 GMT", - "dc:creator": "Tara Cobham,Athena Stavrou and Lydia Patrick", - "dc:date": "2024-01-04T10:54:07+00:00", - "content": "

The pod\u2019s access hatch was blown open as a terrified family was stuck inside at the top of the attraction

", - "contentSnippet": "The pod\u2019s access hatch was blown open as a terrified family was stuck inside at the top of the attraction", - "guid": "b2472054", - "categories": [ - "Weather" - ], - "isoDate": "2024-01-04T10:54:07.000Z" - }, - { - "creator": "Jonathan Veal", - "date": "2024-01-04T10:52:48+00:00", - "title": "Luke Littler wants to inspire youngsters after stunning World Darts Championship debut", - "link": "https://www.independent.co.uk/sport/darts/luke-littler-luke-humphries-alexandra-palace-darts-b2473130.html", - "pubDate": "Thu, 04 Jan 2024 10:52:48 GMT", - "dc:creator": "Jonathan Veal", - "dc:date": "2024-01-04T10:52:48+00:00", - "content": "

The 16-year-old was beaten in the final by world number one Luke Humphries on Wednesday night

", - "contentSnippet": "The 16-year-old was beaten in the final by world number one Luke Humphries on Wednesday night", - "guid": "b2473090", - "categories": [ - "Darts", - "Sport" - ], - "isoDate": "2024-01-04T10:52:48.000Z" - }, - { - "creator": "Qassim Abdul-Zahra and Ali Jabar", - "date": "2024-01-04T10:52:34+00:00", - "title": "Airstrike in central Baghdad kills Iran-backed militia leader as regional tensions escalate", - "link": "https://www.independent.co.uk/news/baghdad-ap-hamas-iran-israel-b2473137.html", - "pubDate": "Thu, 04 Jan 2024 10:52:34 GMT", - "dc:creator": "Qassim Abdul-Zahra and Ali Jabar", - "dc:date": "2024-01-04T10:52:34+00:00", - "content": "Officials say an airstrike on the logistical support headquarters of an Iran-backed militia in central Baghdad has killed a high-ranking militia commander", - "contentSnippet": "Officials say an airstrike on the logistical support headquarters of an Iran-backed militia in central Baghdad has killed a high-ranking militia commander", - "guid": "b2473137", - "isoDate": "2024-01-04T10:52:34.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2024-01-04T10:52:24+00:00", - "title": "Emma Raducanu injury comeback ended by Elina Svitolina defeat in Auckland", - "link": "https://www.independent.co.uk/sport/tennis/emma-raducanu-injury-elina-svitolina-auckland-b2473081.html", - "pubDate": "Thu, 04 Jan 2024 10:52:24 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2024-01-04T10:52:24+00:00", - "content": "

Raducanu won the opening set in her second match at the ASB Classic but Svitolina hit back to snatch victory

", - "contentSnippet": "Raducanu won the opening set in her second match at the ASB Classic but Svitolina hit back to snatch victory", - "guid": "b2473081", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2024-01-04T10:52:24.000Z" - }, - { - "creator": "Ianthe Butt", - "date": "2024-01-04T10:51:13+00:00", - "title": "The hottest new hotel openings in the UK and Ireland for 2024", - "link": "https://www.independent.co.uk/travel/uk/new-hotels-opening-uk-ireland-2024-b2468486.html", - "pubDate": "Thu, 04 Jan 2024 10:51:13 GMT", - "dc:creator": "Ianthe Butt", - "dc:date": "2024-01-04T10:51:13+00:00", - "content": "

Scores of exciting properties are set to debut in the next 12 months; hotel expert Ianthe Butt outlines the best of the bunch to check into this year

", - "contentSnippet": "Scores of exciting properties are set to debut in the next 12 months; hotel expert Ianthe Butt outlines the best of the bunch to check into this year", - "guid": "b2468486", - "categories": [ - "UK", - "Travel" - ], - "isoDate": "2024-01-04T10:51:13.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-04T10:49:44+00:00", - "title": "Britain\u2019s service sector ends year with stronger-than-expected growth", - "link": "https://www.independent.co.uk/business/britain-s-service-sector-ends-year-with-strongerthanexpected-growth-b2473131.html", - "pubDate": "Thu, 04 Jan 2024 10:49:44 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-04T10:49:44+00:00", - "content": "The S&P Global/CIPS UK services PMI survey showed a reading of 53.4 in December, up from 50.9 in November.", - "contentSnippet": "The S&P Global/CIPS UK services PMI survey showed a reading of 53.4 in December, up from 50.9 in November.", - "guid": "b2473131", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T10:49:44.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2024-01-04T10:49:43+00:00", - "title": "Sir Ben Ainslie steps down as driver of Great Britain\u2019s SailGP team", - "link": "https://www.independent.co.uk/sport/ben-ainslie-ceo-great-britain-giles-scott-ineos-b2473123.html", - "pubDate": "Thu, 04 Jan 2024 10:49:43 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2024-01-04T10:49:43+00:00", - "content": "Ainslie, 46, insisted he would take the step away from his role as driver to make way for the next generation.", - "contentSnippet": "Ainslie, 46, insisted he would take the step away from his role as driver to make way for the next generation.", - "guid": "b2473123", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T10:49:43.000Z" - }, - { - "creator": "Lawrence Ostlere", - "date": "2024-01-04T10:48:05+00:00", - "title": "Is VAR being used in the FA Cup third round? Well, yes and no", - "link": "https://www.independent.co.uk/sport/football/var-fa-cup-rules-third-round-b2473129.html", - "pubDate": "Thu, 04 Jan 2024 10:48:05 GMT", - "dc:creator": "Lawrence Ostlere", - "dc:date": "2024-01-04T10:48:05+00:00", - "content": "

Video Assistant Referee technology will be partially in action during the FA Cup third round

", - "contentSnippet": "Video Assistant Referee technology will be partially in action during the FA Cup third round", - "guid": "b2473129", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T10:48:05.000Z" - }, - { - "creator": "Mike Bedigan and Martha McHardy", - "date": "2024-01-04T10:47:13+00:00", - "title": "A pregnant teen vanished a day before giving birth. She and her boyfriend are now dead", - "link": "https://www.independent.co.uk/news/world/americas/crime/savanah-soto-found-dead-san-antonio-b2469927.html", - "pubDate": "Thu, 04 Jan 2024 10:47:13 GMT", - "dc:creator": "Mike Bedigan and Martha McHardy", - "dc:date": "2024-01-04T10:47:13+00:00", - "content": "

The bodies of Savanah Nicole Soto, 18, and Matthew Guerra, 23, were found inside a Kia Optima on 26 December. An unborn baby was also found dead inside the car. Mike Bedigan explains the case

", - "contentSnippet": "The bodies of Savanah Nicole Soto, 18, and Matthew Guerra, 23, were found inside a Kia Optima on 26 December. An unborn baby was also found dead inside the car. Mike Bedigan explains the case", - "guid": "b2469927", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T10:47:13.000Z" - }, - { - "creator": "Rachael Phillips", - "date": "2024-01-04T10:46:33+00:00", - "title": "10 best casserole dishes for stews, chillies and other wintry delights", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/kitchen-accessories/best-casserole-dishes-cast-iron-lid-argos-le-creuset-a9107266.html", - "pubDate": "Thu, 04 Jan 2024 10:46:33 GMT", - "dc:creator": "Rachael Phillips", - "dc:date": "2024-01-04T10:46:33+00:00", - "content": "

Make the most of the one-pot lifestyle with these hardworking items

", - "contentSnippet": "Make the most of the one-pot lifestyle with these hardworking items", - "guid": "a9107266", - "categories": [ - "Kitchen Accessories", - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-04T10:46:33.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-04T10:42:35+00:00", - "title": "Luke Humphries heaps praise on runner-up Luke Littler after World Championship win", - "link": "https://www.independent.co.uk/tv/sport/luke-littler-luke-humphries-darts-final-b2473125.html", - "pubDate": "Thu, 04 Jan 2024 10:42:35 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-04T10:42:35+00:00", - "content": "

Luke Humphries has heaped praise on fellow finalist Luke Littler after Humphries\u2019 PDC World Darts Championship victory.

", - "contentSnippet": "Luke Humphries has heaped praise on fellow finalist Luke Littler after Humphries\u2019 PDC World Darts Championship victory.", - "guid": "b2473125", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2024-01-04T10:42:35.000Z" - }, - { - "creator": "Vicky Shaw", - "date": "2024-01-04T10:42:26+00:00", - "title": "Consumer credit borrowing increases at fastest annual rate in five years", - "link": "https://www.independent.co.uk/money/consumer-credit-borrowing-increases-at-fastest-annual-rate-in-five-years-b2473132.html", - "pubDate": "Thu, 04 Jan 2024 10:42:26 GMT", - "dc:creator": "Vicky Shaw", - "dc:date": "2024-01-04T10:42:26+00:00", - "content": "The annual growth rate for consumer credit was 8.6% in November, the highest rate since September 2018, according to the Bank of England.", - "contentSnippet": "The annual growth rate for consumer credit was 8.6% in November, the highest rate since September 2018, according to the Bank of England.", - "guid": "b2473132", - "categories": [ - "Money" - ], - "isoDate": "2024-01-04T10:42:26.000Z" - }, - { - "creator": "Lauren Cunningham", - "date": "2024-01-04T10:42:20+00:00", - "title": "17 best air fryers for cooking low-fat, fast and delicious dinners", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/kitchen-appliances/best-air-fryer-uk-reviews-b1979237.html", - "pubDate": "Thu, 04 Jan 2024 10:42:20 GMT", - "dc:creator": "Lauren Cunningham", - "dc:date": "2024-01-04T10:42:20+00:00", - "content": "

Having tried and tested the best air fryers, these models from the likes of Ninja, Tower and Lakeland mean serious business

", - "contentSnippet": "Having tried and tested the best air fryers, these models from the likes of Ninja, Tower and Lakeland mean serious business", - "guid": "b1979237", - "categories": [ - "Kitchen Appliances", - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-04T10:42:20.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-04T10:42:01+00:00", - "title": "London building partially collapses and damages vehicles during Storm Henk", - "link": "https://www.independent.co.uk/tv/news/weather-storm-henk-london-damage-b2473117.html", - "pubDate": "Thu, 04 Jan 2024 10:42:01 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-04T10:42:01+00:00", - "content": "

A London building partially collapsed onto a street, damaging vehicles, during Storm Henk on Tuesday, 2 January.

", - "contentSnippet": "A London building partially collapsed onto a street, damaging vehicles, during Storm Henk on Tuesday, 2 January.", - "guid": "b2473117", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-04T10:42:01.000Z" - }, - { - "creator": "Kieran Jackson", - "date": "2024-01-04T10:41:47+00:00", - "title": "Michael Schumacher\u2019s son Mick posts moving birthday message", - "link": "https://www.independent.co.uk/f1/f1-michael-schumacher-mick-health-b2473120.html", - "pubDate": "Thu, 04 Jan 2024 10:41:47 GMT", - "dc:creator": "Kieran Jackson", - "dc:date": "2024-01-04T10:41:47+00:00", - "content": "

F1 icon Michael turned 55 on Wednesday, over a decade since he was last seen in public after his skiing accident

", - "contentSnippet": "F1 icon Michael turned 55 on Wednesday, over a decade since he was last seen in public after his skiing accident", - "guid": "b2473120", - "categories": [ - "F1" - ], - "isoDate": "2024-01-04T10:41:47.000Z" - }, - { - "creator": "Oliver O'Connell,Alex Woodward,Gustaf Kilander and Joe Sommerlad", - "date": "2024-01-04T10:40:24+00:00", - "title": "Trump takes Colorado primary ballot fight to Supreme Court: Live", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/donald-trump-2024-supreme-court-latest-news-b2473063.html", - "pubDate": "Thu, 04 Jan 2024 10:40:24 GMT", - "dc:creator": "Oliver O'Connell,Alex Woodward,Gustaf Kilander and Joe Sommerlad", - "dc:date": "2024-01-04T10:40:24+00:00", - "content": "

Former president challenges nation\u2019s highest court to rule on state decision as he readies Iowa rally alongside potential running mate

", - "contentSnippet": "Former president challenges nation\u2019s highest court to rule on state decision as he readies Iowa rally alongside potential running mate", - "guid": "b2463845", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-04T10:40:24.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-04T10:38:08+00:00", - "title": "Jarrell Miller arrested over alleged carjacking \u2013 two weeks after loss to Daniel Dubois", - "link": "https://www.independent.co.uk/sport/boxing/jarrell-miller-arrest-carjacking-florida-b2473097.html", - "pubDate": "Thu, 04 Jan 2024 10:38:08 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-04T10:38:08+00:00", - "content": "

The American heavyweight reportedly attacked an employee at a car dealership, before driving off in a repossessed vehicle

", - "contentSnippet": "The American heavyweight reportedly attacked an employee at a car dealership, before driving off in a repossessed vehicle", - "guid": "b2473097", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2024-01-04T10:38:08.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2024-01-04T10:33:02+00:00", - "title": "BBC expertly shuts down viewer complaints about trans character in Doctor Who", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/doctor-who-bbc-trans-rose-b2473105.html", - "pubDate": "Thu, 04 Jan 2024 10:33:02 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2024-01-04T10:33:02+00:00", - "content": "

\u2018We will always continue to proudly reflect the world we live in,\u2019 corporation said

", - "contentSnippet": "\u2018We will always continue to proudly reflect the world we live in,\u2019 corporation said", - "guid": "b2473105", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-04T10:33:02.000Z" - }, - { - "creator": "Geir Moulson", - "date": "2024-01-04T10:29:43+00:00", - "title": "Germany's CO2 emissions are at their lowest in 7 decades, study shows", - "link": "https://www.independent.co.uk/news/germany-ap-co2-emissions-berlin-europe-b2473119.html", - "pubDate": "Thu, 04 Jan 2024 10:29:43 GMT", - "dc:creator": "Geir Moulson", - "dc:date": "2024-01-04T10:29:43+00:00", - "content": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", - "contentSnippet": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", - "guid": "b2473119", - "isoDate": "2024-01-04T10:29:43.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-04T10:29:38+00:00", - "title": "Target shoppers scramble to get hands on limited-edition Stanley cups", - "link": "https://www.independent.co.uk/tv/lifestyle/target-stanley-cup-starbucks-pink-b2473115.html", - "pubDate": "Thu, 04 Jan 2024 10:29:38 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-04T10:29:38+00:00", - "content": "

Target shoppers have been scrambling in stores to get their hands on a limited-edition version of the popular Stanley cup.

", - "contentSnippet": "Target shoppers have been scrambling in stores to get their hands on a limited-edition version of the popular Stanley cup.", - "guid": "b2473115", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-04T10:29:38.000Z" - }, - { - "creator": "Katy Clifton", - "date": "2024-01-04T10:29:27+00:00", - "title": "Monstrous funnel-web spider \u2018Herculese\u2019 breaks record in Australia ", - "link": "https://www.independent.co.uk/news/world/australasia/spider-australia-funnel-web-herculese-b2473116.html", - "pubDate": "Thu, 04 Jan 2024 10:29:27 GMT", - "dc:creator": "Katy Clifton", - "dc:date": "2024-01-04T10:29:27+00:00", - "content": "

It has surpassed the previous record-holder, named \u2018Colossus\u2019

", - "contentSnippet": "It has surpassed the previous record-holder, named \u2018Colossus\u2019", - "guid": "b2473116", - "categories": [ - "Australasia", - "World" - ], - "isoDate": "2024-01-04T10:29:27.000Z" - }, - { - "creator": "Anthony Cuthbertson", - "date": "2024-01-04T10:27:14+00:00", - "title": "SpaceX launches first Starlink phone service", - "link": "https://www.independent.co.uk/space/starlink-phone-spacex-launch-cell-b2473067.html", - "pubDate": "Thu, 04 Jan 2024 10:27:14 GMT", - "dc:creator": "Anthony Cuthbertson", - "dc:date": "2024-01-04T10:27:14+00:00", - "content": "

Direct to Cell service will support texts, calls and browsing to make dead zones \u2018a thing of the past\u2019

", - "contentSnippet": "Direct to Cell service will support texts, calls and browsing to make dead zones \u2018a thing of the past\u2019", - "guid": "b2473067", - "categories": [ - "Space" - ], - "isoDate": "2024-01-04T10:27:14.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-04T10:27:09+00:00", - "title": "TikTokers claim popular body butter \u2018attracts spiders\u2019", - "link": "https://www.independent.co.uk/tv/lifestyle/sephora-body-butter-spiders-b2473112.html", - "pubDate": "Thu, 04 Jan 2024 10:27:09 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-04T10:27:09+00:00", - "content": "

Customers and TikTokers have claimed that a popular body butter is attracting spiders after using the product.

", - "contentSnippet": "Customers and TikTokers have claimed that a popular body butter is attracting spiders after using the product.", - "guid": "b2473112", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-04T10:27:09.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-04T10:22:40+00:00", - "title": "Extreme cold leaves thousands without power in Nordic countries while floods again hit Germany", - "link": "https://www.independent.co.uk/news/denmark-ap-nordic-germany-copenhagen-b2473113.html", - "pubDate": "Thu, 04 Jan 2024 10:22:40 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-04T10:22:40+00:00", - "content": "Extremely cold temperatures compounded by strong winds and snow are wreaking havoc across the Nordic region, leaving thousands without power while others braved the cold for hours stuck in their cars along clogged highways", - "contentSnippet": "Extremely cold temperatures compounded by strong winds and snow are wreaking havoc across the Nordic region, leaving thousands without power while others braved the cold for hours stuck in their cars along clogged highways", - "guid": "b2473113", - "isoDate": "2024-01-04T10:22:40.000Z" - }, - { - "creator": "Holly Evans", - "date": "2024-01-04T10:15:24+00:00", - "title": "Paedophile Jeffrey Epstein offered reward to disprove claims Stephen Hawking took part in orgy", - "link": "https://www.independent.co.uk/news/world/americas/stephen-hawking-jeffrey-epstein-underage-orgy-b2472989.html", - "pubDate": "Thu, 04 Jan 2024 10:15:24 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2024-01-04T10:15:24+00:00", - "content": "

An email shows that the billionaire was willing to give money to Virginia Giuffre\u2019s friends to \u2018help prove\u2019 her claims were false

", - "contentSnippet": "An email shows that the billionaire was willing to give money to Virginia Giuffre\u2019s friends to \u2018help prove\u2019 her claims were false", - "guid": "b2472979", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T10:15:24.000Z" - }, - { - "creator": "Roisin O'Connor", - "date": "2024-01-04T10:12:59+00:00", - "title": "Scottish troubadour Dylan John Thomas performs \u2018Wake Up Ma\u2019 on Music Box", - "link": "https://www.independent.co.uk/tv/culture/dylan-john-thomas-acoustic-music-session-b2472086.html", - "pubDate": "Thu, 04 Jan 2024 10:12:59 GMT", - "dc:creator": "Roisin O'Connor", - "dc:date": "2024-01-04T10:12:59+00:00", - "content": "

Ahead of the release of his debut album, Scottish singer Dylan John Thomas performs his song \"Wake Up Ma\" on Music Box.

", - "contentSnippet": "Ahead of the release of his debut album, Scottish singer Dylan John Thomas performs his song \"Wake Up Ma\" on Music Box.", - "guid": "b2472086", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-04T10:12:59.000Z" - }, - { - "creator": "Martha McHardy", - "date": "2024-01-04T10:12:43+00:00", - "title": "Father and son arrested in murders of pregnant teen Savanah Soto and boyfriend", - "link": "https://www.independent.co.uk/news/world/americas/crime/savanah-soto-murder-father-son-arrest-b2473093.html", - "pubDate": "Thu, 04 Jan 2024 10:12:43 GMT", - "dc:creator": "Martha McHardy", - "dc:date": "2024-01-04T10:12:43+00:00", - "content": "

Savanah Soto was found dead on Boxing Day, a day before she was scheduled to go into labour

", - "contentSnippet": "Savanah Soto was found dead on Boxing Day, a day before she was scheduled to go into labour", - "guid": "b2473093", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T10:12:43.000Z" - }, - { - "creator": "Lawrence Ostlere", - "date": "2024-01-04T10:05:46+00:00", - "title": "The one thing missing to turn darts prodigy Luke Littler into a world champion", - "link": "https://www.independent.co.uk/sport/darts/luke-littler-darts-world-championship-b2473076.html", - "pubDate": "Thu, 04 Jan 2024 10:05:46 GMT", - "dc:creator": "Lawrence Ostlere", - "dc:date": "2024-01-04T10:05:46+00:00", - "content": "

Littler produced a near-flawless championship which suggested he will be a future king of the sport, and his crucial missed double-two to win the seventh set will serve as a valuable lesson in years to come

", - "contentSnippet": "Littler produced a near-flawless championship which suggested he will be a future king of the sport, and his crucial missed double-two to win the seventh set will serve as a valuable lesson in years to come", - "guid": "b2473076", - "categories": [ - "Darts", - "Sport" - ], - "isoDate": "2024-01-04T10:05:46.000Z" - }, - { - "creator": "Rachel Sharp", - "date": "2024-01-04T10:05:25+00:00", - "title": "Epstein told victim Bill Clinton \u2018likes them young\u2019, new court filings reveal", - "link": "https://www.independent.co.uk/news/world/americas/bill-clinton-epstein-list-maxwell-b2473095.html", - "pubDate": "Thu, 04 Jan 2024 10:05:25 GMT", - "dc:creator": "Rachel Sharp", - "dc:date": "2024-01-04T10:05:25+00:00", - "content": "

Among the hundreds of pages of filings unsealed Wednesday, victim Johanna Sjoberg spoke about what she knew about Bill Clinton\u2019s ties to Epstein

", - "contentSnippet": "Among the hundreds of pages of filings unsealed Wednesday, victim Johanna Sjoberg spoke about what she knew about Bill Clinton\u2019s ties to Epstein", - "guid": "b2473095", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T10:05:25.000Z" - }, - { - "creator": "Josh Boak", - "date": "2024-01-04T10:03:09+00:00", - "title": "Biden administration announces $162 million to expand computer chip factories in Colorado and Oregon", - "link": "https://www.independent.co.uk/news/world/americas/joe-biden-ap-commerce-department-colorado-bae-systems-b2473107.html", - "pubDate": "Thu, 04 Jan 2024 10:03:09 GMT", - "dc:creator": "Josh Boak", - "dc:date": "2024-01-04T10:03:09+00:00", - "content": "The Biden administration is providing $162 million to Microchip Technology to support the domestic production of computer chips", - "contentSnippet": "The Biden administration is providing $162 million to Microchip Technology to support the domestic production of computer chips", - "guid": "b2473107", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T10:03:09.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-04T10:02:44+00:00", - "title": "Watch live: Keir Starmer set to launch 2024 general election bid as he vows Labour will help \u2018exhausted\u2019 Britain", - "link": "https://www.independent.co.uk/news/livestream-keir-starmer-labour-election-speech-b2473089.html", - "pubDate": "Thu, 04 Jan 2024 10:02:44 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-04T10:02:44+00:00", - "content": "

Watch live as Keir Starmer gives a speech in South West England, pledging to bring hope to Britain as Labour prepares for general elections.

", - "contentSnippet": "Watch live as Keir Starmer gives a speech in South West England, pledging to bring hope to Britain as Labour prepares for general elections.", - "guid": "b2473089", - "isoDate": "2024-01-04T10:02:44.000Z" - }, - { - "creator": "Vicky Shaw", - "date": "2024-01-04T10:01:30+00:00", - "title": "First Direct unveils sub-4% mortgage rates", - "link": "https://www.independent.co.uk/money/first-direct-unveils-sub4-mortgage-rates-b2473108.html", - "pubDate": "Thu, 04 Jan 2024 10:01:30 GMT", - "dc:creator": "Vicky Shaw", - "dc:date": "2024-01-04T10:01:30+00:00", - "content": "Several lenders have started the new year by making cuts to their rates.", - "contentSnippet": "Several lenders have started the new year by making cuts to their rates.", - "guid": "b2473108", - "categories": [ - "Money" - ], - "isoDate": "2024-01-04T10:01:30.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2024-01-04T09:55:23+00:00", - "title": "Death toll from Japan earthquake rises to 81 as search for survivors continues", - "link": "https://www.independent.co.uk/asia/japan/ishikawa-earthquake-death-rescue-latest-b2473036.html", - "pubDate": "Thu, 04 Jan 2024 09:55:23 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2024-01-04T09:55:23+00:00", - "content": "

At leats 51 people still missing as thousands of rescuers brave cold to find survivors

", - "contentSnippet": "At leats 51 people still missing as thousands of rescuers brave cold to find survivors", - "guid": "b2473036", - "categories": [ - "Japan", - "Asia" - ], - "isoDate": "2024-01-04T09:55:23.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar and Holly Evans", - "date": "2024-01-04T09:51:42+00:00", - "title": "Liverpool triple shooting horror as cinema and shop put on lockdown", - "link": "https://www.independent.co.uk/news/uk/crime/liverpool-gunman-showcase-cinema-shooting-b2473102.html", - "pubDate": "Thu, 04 Jan 2024 09:51:42 GMT", - "dc:creator": "Alisha Rahaman Sarkar and Holly Evans", - "dc:date": "2024-01-04T09:51:42+00:00", - "content": "

Armed police officers tasered and arrested a man shortly before 5am

", - "contentSnippet": "Armed police officers tasered and arrested a man shortly before 5am", - "guid": "b2473008", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2024-01-04T09:51:42.000Z" - }, - { - "creator": "Kelly Rissman and Katie Hawkinson", - "date": "2024-01-04T09:48:29+00:00", - "title": "Young Thug trial sparks online questions about YSL rapper\u2019s shirt: Live ", - "link": "https://www.independent.co.uk/news/world/americas/crime/young-thug-trial-ysl-gang-jail-latest-b2473099.html", - "pubDate": "Thu, 04 Jan 2024 09:48:29 GMT", - "dc:creator": "Kelly Rissman and Katie Hawkinson", - "dc:date": "2024-01-04T09:48:29+00:00", - "content": "

Young Thug is charged in a sprawling RICO trial which accuses YSL of being a criminal gang

", - "contentSnippet": "Young Thug is charged in a sprawling RICO trial which accuses YSL of being a criminal gang", - "guid": "b2472186", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T09:48:29.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-04T09:47:50+00:00", - "title": "JD Sports hit as wary customers flock to sale prices", - "link": "https://www.independent.co.uk/business/jd-sports-hit-as-wary-customers-flock-to-sale-prices-b2473049.html", - "pubDate": "Thu, 04 Jan 2024 09:47:50 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-04T09:47:50+00:00", - "content": "The company downgraded its profit forecast by more than \u00a3100 million after a disappointing Christmas.", - "contentSnippet": "The company downgraded its profit forecast by more than \u00a3100 million after a disappointing Christmas.", - "guid": "b2473049", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T09:47:50.000Z" - }, - { - "creator": "Paul Cargill", - "date": "2024-01-04T09:44:38+00:00", - "title": "Scientists turn whisky-making by-product into fuel for the future", - "link": "https://www.independent.co.uk/news/science/scientists-heriotwatt-university-scottish-b2472946.html", - "pubDate": "Thu, 04 Jan 2024 09:44:38 GMT", - "dc:creator": "Paul Cargill", - "dc:date": "2024-01-04T09:44:38+00:00", - "content": "A team from Heriot-Watt University have developed materials that can use wastewater from distilleries to produce green hydrogen.", - "contentSnippet": "A team from Heriot-Watt University have developed materials that can use wastewater from distilleries to produce green hydrogen.", - "guid": "b2472946", - "categories": [ - "Science" - ], - "isoDate": "2024-01-04T09:44:38.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2024-01-04T09:43:18+00:00", - "title": "Madonna defended after \u2018ageist\u2019 trolls incorrectly mock singer for using support beam", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/madonna-age-tour-2024-twitter-b2473065.html", - "pubDate": "Thu, 04 Jan 2024 09:43:18 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2024-01-04T09:43:18+00:00", - "content": "

Critics were hasty with their vitriolic messages aimed at singer

", - "contentSnippet": "Critics were hasty with their vitriolic messages aimed at singer", - "guid": "b2473065", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2024-01-04T09:43:18.000Z" - }, - { - "creator": "Sylvie Corbet", - "date": "2024-01-04T09:39:57+00:00", - "title": "The UK is not cooperating enough to curb migrant crossings of the Channel, a French report says", - "link": "https://www.independent.co.uk/news/france-ap-french-english-channel-paris-b2473100.html", - "pubDate": "Thu, 04 Jan 2024 09:39:57 GMT", - "dc:creator": "Sylvie Corbet", - "dc:date": "2024-01-04T09:39:57+00:00", - "content": "A French report says the United Kingdom is not sufficiently coordinating with France in efforts to reduce the number of migrants illegally crossing the English Channel in small boats", - "contentSnippet": "A French report says the United Kingdom is not sufficiently coordinating with France in efforts to reduce the number of migrants illegally crossing the English Channel in small boats", - "guid": "b2473100", - "isoDate": "2024-01-04T09:39:57.000Z" - }, - { - "creator": "Andrew Griffin", - "date": "2024-01-04T09:34:46+00:00", - "title": "Microsoft changes the PC keyboard for the first time in 30 years", - "link": "https://www.independent.co.uk/tech/microsoft-keyboard-windows-pc-copilot-key-b2473092.html", - "pubDate": "Thu, 04 Jan 2024 09:34:46 GMT", - "dc:creator": "Andrew Griffin", - "dc:date": "2024-01-04T09:34:46+00:00", - "content": "

New Copilot key begins the era of the \u2018AI PC\u2019, Microsoft says

", - "contentSnippet": "New Copilot key begins the era of the \u2018AI PC\u2019, Microsoft says", - "guid": "b2473092", - "categories": [ - "Tech" - ], - "isoDate": "2024-01-04T09:34:46.000Z" - }, - { - "creator": "Archie Mitchell", - "date": "2024-01-04T09:32:49+00:00", - "title": "Ministers warned of \u2018massive\u2019 security risks of Donald Trump presidency", - "link": "https://www.independent.co.uk/news/uk/politics/donald-trump-president-election-biden-2024-politics-b2473073.html", - "pubDate": "Thu, 04 Jan 2024 09:32:49 GMT", - "dc:creator": "Archie Mitchell", - "dc:date": "2024-01-04T09:32:49+00:00", - "content": "

Three of Britain\u2019s former top US diplomats have urged the government to develop contingency plans in case Mr Trump\u2019s bid to return to the White House is successful

", - "contentSnippet": "Three of Britain\u2019s former top US diplomats have urged the government to develop contingency plans in case Mr Trump\u2019s bid to return to the White House is successful", - "guid": "b2473073", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-04T09:32:49.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2024-01-04T09:29:15+00:00", - "title": "Why Taylor Swift is caught up in Taiwan\u2019s presidential election ", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/taylor-swift-taiwan-china-elections-b2473084.html", - "pubDate": "Thu, 04 Jan 2024 09:29:15 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2024-01-04T09:29:15+00:00", - "content": "

Election candidate blames tensions with China for Shake It Off singer refusing to perform in Taipei

", - "contentSnippet": "Election candidate blames tensions with China for Shake It Off singer refusing to perform in Taipei", - "guid": "b2472460", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2024-01-04T09:29:15.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-04T09:29:06+00:00", - "title": "Traitors contestant Jasmine takes swipe at host Claudia Winkleman", - "link": "https://www.independent.co.uk/tv/culture/traitors-contestants-claudia-winkleman-swipe-b2473048.html", - "pubDate": "Thu, 04 Jan 2024 09:29:06 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-04T09:29:06+00:00", - "content": "

Traitors has returned to our television screens for a much anticipated second series and it is already creating quite a stir.

", - "contentSnippet": "Traitors has returned to our television screens for a much anticipated second series and it is already creating quite a stir.", - "guid": "b2473048", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-04T09:29:06.000Z" - }, - { - "creator": "Travel Desk", - "date": "2024-01-04T09:21:34+00:00", - "title": "The destinations we\u2019re most excited about visiting in 2024", - "link": "https://www.independent.co.uk/travel/inspiration/best-destinations-2024-holidays-b2462151.html", - "pubDate": "Thu, 04 Jan 2024 09:21:34 GMT", - "dc:creator": "Travel Desk", - "dc:date": "2024-01-04T09:21:34+00:00", - "content": "

From cities flexing their cultural muscles to rugged regions begging to be explored on foot, these are the places The Independent\u2019s travel team can\u2019t wait to uncover this year

", - "contentSnippet": "From cities flexing their cultural muscles to rugged regions begging to be explored on foot, these are the places The Independent\u2019s travel team can\u2019t wait to uncover this year", - "guid": "b2462151", - "categories": [ - "Inspiration", - "Travel" - ], - "isoDate": "2024-01-04T09:21:34.000Z" - }, - { - "creator": "Katie Hawkinson", - "date": "2024-01-04T09:19:41+00:00", - "title": "JN.1: What to know about the new Covid variant surging in the US", - "link": "https://www.independent.co.uk/news/health/covid-symptoms-2024-jn1-variant-b2473085.html", - "pubDate": "Thu, 04 Jan 2024 09:19:41 GMT", - "dc:creator": "Katie Hawkinson", - "dc:date": "2024-01-04T09:19:41+00:00", - "content": "

Infectious disease experts say the best way to protect yourself from the JN.1 subvariant is to get the updated Covid 19 vaccine

", - "contentSnippet": "Infectious disease experts say the best way to protect yourself from the JN.1 subvariant is to get the updated Covid 19 vaccine", - "guid": "b2467446", - "categories": [ - "Health" - ], - "isoDate": "2024-01-04T09:19:41.000Z" - }, - { - "creator": "Hyung-Jin Kim and Jiwon Song", - "date": "2024-01-04T09:14:08+00:00", - "title": "South Korea views the young daughter of North Korean leader Kim Jong Un as his likely successor", - "link": "https://www.independent.co.uk/news/kim-jong-un-ap-south-korea-seoul-kim-jong-il-b2473087.html", - "pubDate": "Thu, 04 Jan 2024 09:14:08 GMT", - "dc:creator": "Hyung-Jin Kim and Jiwon Song", - "dc:date": "2024-01-04T09:14:08+00:00", - "content": "South Korea's intelligence service says it views the young daughter of North Korean leader Kim Jong Un as her father\u2019s likely heir apparent", - "contentSnippet": "South Korea's intelligence service says it views the young daughter of North Korean leader Kim Jong Un as her father\u2019s likely heir apparent", - "guid": "b2473087", - "isoDate": "2024-01-04T09:14:08.000Z" - }, - { - "creator": "Jan M. Olsen", - "date": "2024-01-04T09:14:02+00:00", - "title": "Danish queen in her last public appearance before she steps down in rare abdication", - "link": "https://www.independent.co.uk/news/ap-copenhagen-europe-mary-australian-b2473086.html", - "pubDate": "Thu, 04 Jan 2024 09:14:02 GMT", - "dc:creator": "Jan M. Olsen", - "dc:date": "2024-01-04T09:14:02+00:00", - "content": "Queen Margrethe rode through Denmark\u2019s capital in a gilded, horse-drawn coach as she concluded her last New Year celebrations before her Jan. 14 abdication after 52 years on the throne", - "contentSnippet": "Queen Margrethe rode through Denmark\u2019s capital in a gilded, horse-drawn coach as she concluded her last New Year celebrations before her Jan. 14 abdication after 52 years on the throne", - "guid": "b2473086", - "isoDate": "2024-01-04T09:14:02.000Z" - }, - { - "creator": "Holly Williams", - "date": "2024-01-04T09:13:35+00:00", - "title": "Next boss cautions over stock delays from Red Sea attacks", - "link": "https://www.independent.co.uk/business/next-boss-cautions-over-stock-delays-from-red-sea-attacks-b2473088.html", - "pubDate": "Thu, 04 Jan 2024 09:13:35 GMT", - "dc:creator": "Holly Williams", - "dc:date": "2024-01-04T09:13:35+00:00", - "content": "Chief executive Lord Simon Wolfson said an extra two and a half weeks must be added to stock delivery times for goods and garments from the Far East.", - "contentSnippet": "Chief executive Lord Simon Wolfson said an extra two and a half weeks must be added to stock delivery times for goods and garments from the Far East.", - "guid": "b2473088", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T09:13:35.000Z" - }, - { - "creator": "Tara Cobham", - "date": "2024-01-04T09:12:16+00:00", - "title": "Prince Andrew named in Jeffrey Epstein court documents as secret files made public ", - "link": "https://www.independent.co.uk/news/uk/home-news/prince-andrew-jeffrey-epstein-documents-b2472986.html", - "pubDate": "Thu, 04 Jan 2024 09:12:16 GMT", - "dc:creator": "Tara Cobham", - "dc:date": "2024-01-04T09:12:16+00:00", - "content": "

Scores of names are contained in long-running, now-settled defamation lawsuit brought by Epstein victim Virginia Giuffre

", - "contentSnippet": "Scores of names are contained in long-running, now-settled defamation lawsuit brought by Epstein victim Virginia Giuffre", - "guid": "b2472905", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-04T09:12:16.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2024-01-04T09:07:54+00:00", - "title": "The alleged associates of Jeffrey Epstein: Names by numbers", - "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-associates-numbers-b2472983.html", - "pubDate": "Thu, 04 Jan 2024 09:07:54 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2024-01-04T09:07:54+00:00", - "content": "

Being identified through the court documents does not necessarily mean that the individual was involved in or aware of any wrongdoing by the disgraced financier

", - "contentSnippet": "Being identified through the court documents does not necessarily mean that the individual was involved in or aware of any wrongdoing by the disgraced financier", - "guid": "b2472983", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T09:07:54.000Z" - }, - { - "creator": "Tom Watling and Maryam Zakir-Hussain", - "date": "2024-01-04T09:06:21+00:00", - "title": "Ukraine-Russia war live: Kyiv steps up drone strikes as Nato to buy 1,000 Patriot missiles ", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-latest-putin-nato-pow-b2473013.html", - "pubDate": "Thu, 04 Jan 2024 09:06:21 GMT", - "dc:creator": "Tom Watling and Maryam Zakir-Hussain", - "dc:date": "2024-01-04T09:06:21+00:00", - "content": "

Russian missile attacks on Ukraine have killed at least 44 people in the last five days and injured roughly 300 more

", - "contentSnippet": "Russian missile attacks on Ukraine have killed at least 44 people in the last five days and injured roughly 300 more", - "guid": "b2466307", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-04T09:06:21.000Z" - }, - { - "creator": "Andrea Blanco and Bevan Hurley", - "date": "2024-01-04T09:05:58+00:00", - "title": "Jeffrey Epstein associate names unsealed in court documents", - "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-list-names-documents-b2472960.html", - "pubDate": "Thu, 04 Jan 2024 09:05:58 GMT", - "dc:creator": "Andrea Blanco and Bevan Hurley", - "dc:date": "2024-01-04T09:05:58+00:00", - "content": "

At least 40 documents were unsealed on Wednesday

", - "contentSnippet": "At least 40 documents were unsealed on Wednesday", - "guid": "b2472955", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T09:05:58.000Z" - }, - { - "creator": "Katie Hawkinson", - "date": "2024-01-04T09:03:04+00:00", - "title": "Mask mandates reinstated by local officials across the US as Covid-19, respiratory illnesses spread", - "link": "https://www.independent.co.uk/news/health/mask-mandates-hospitals-covid-new-york-los-angeles-b2472884.html", - "pubDate": "Thu, 04 Jan 2024 09:03:04 GMT", - "dc:creator": "Katie Hawkinson", - "dc:date": "2024-01-04T09:03:04+00:00", - "content": "

The mandates come amid a spike in Covid-19 cases and other respiratory illnesses like the flu and RSV

", - "contentSnippet": "The mandates come amid a spike in Covid-19 cases and other respiratory illnesses like the flu and RSV", - "guid": "b2472884", - "categories": [ - "Health" - ], - "isoDate": "2024-01-04T09:03:04.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-04T09:01:09+00:00", - "title": "Topps Tiles shares slide after cautious consumers hit revenue", - "link": "https://www.independent.co.uk/business/topps-tiles-shares-slide-after-cautious-consumers-hit-revenue-b2473083.html", - "pubDate": "Thu, 04 Jan 2024 09:01:09 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-04T09:01:09+00:00", - "content": "Revenue was down by 4% in the last three months of 2022, the business said on Thursday.", - "contentSnippet": "Revenue was down by 4% in the last three months of 2022, the business said on Thursday.", - "guid": "b2473083", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T09:01:09.000Z" - }, - { - "creator": "Io Dodds ", - "date": "2024-01-04T09:00:57+00:00", - "title": "Jeffrey Epstein\u2019s island: What really happened there?", - "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-island-ghislaine-maxwell-b2472131.html", - "pubDate": "Thu, 04 Jan 2024 09:00:57 GMT", - "dc:creator": "Io Dodds ", - "dc:date": "2024-01-04T09:00:57+00:00", - "content": "

Accusers say billionaire\u2019s private paradise of Little St James in US Virgin Islands was centre of international sex trafficking ring

", - "contentSnippet": "Accusers say billionaire\u2019s private paradise of Little St James in US Virgin Islands was centre of international sex trafficking ring", - "guid": "b2111535", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T09:00:57.000Z" - }, - { - "creator": "Martyn Landi", - "date": "2024-01-04T08:58:56+00:00", - "title": "Microsoft adds dedicated AI assistant button to Windows PC keyboards", - "link": "https://www.independent.co.uk/tech/microsoft-google-las-vegas-ces-amazon-b2473059.html", - "pubDate": "Thu, 04 Jan 2024 08:58:56 GMT", - "dc:creator": "Martyn Landi", - "dc:date": "2024-01-04T08:58:56+00:00", - "content": "The addition is the first major design change to Windows computer keyboards in nearly 30 years.", - "contentSnippet": "The addition is the first major design change to Windows computer keyboards in nearly 30 years.", - "guid": "b2473059", - "categories": [ - "Tech" - ], - "isoDate": "2024-01-04T08:58:56.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2024-01-04T08:58:34+00:00", - "title": "Ex-GOP lawmaker accused of stealing photos of food and claiming them as her own cooking", - "link": "https://www.independent.co.uk/news/world/americas/mayra-flores-stealing-mexican-food-pictures-b2473025.html", - "pubDate": "Thu, 04 Jan 2024 08:58:34 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2024-01-04T08:58:34+00:00", - "content": "

She later changed her social media handle and blocked accusers

", - "contentSnippet": "She later changed her social media handle and blocked accusers", - "guid": "b2473025", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T08:58:34.000Z" - }, - { - "creator": "Namita Singh,Rachel Sharp and Mike Bedigan", - "date": "2024-01-04T08:58:34+00:00", - "title": "Jeffrey Epstein list latest: Unsealed documents name associates including Trump, Clinton and Prince Andrew", - "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-names-unsealed-latest-news-b2472177.html", - "pubDate": "Thu, 04 Jan 2024 08:58:34 GMT", - "dc:creator": "Namita Singh,Rachel Sharp and Mike Bedigan", - "dc:date": "2024-01-04T08:58:34+00:00", - "content": "

Also named in the first batch of documents are Ghislaine Maxwell and US magician David Copperfield

", - "contentSnippet": "Also named in the first batch of documents are Ghislaine Maxwell and US magician David Copperfield", - "guid": "b2472177", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T08:58:34.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2024-01-04T08:58:05+00:00", - "title": "Alton Towers makes \u2018difficult decision\u2019 to close popular attraction after 20 years", - "link": "https://www.independent.co.uk/news/uk/home-news/alton-towers-shut-down-spa-resort-b2473075.html", - "pubDate": "Thu, 04 Jan 2024 08:58:05 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2024-01-04T08:58:05+00:00", - "content": "

Popular theme park resort says move is \u2018essential\u2019 for future growth

", - "contentSnippet": "Popular theme park resort says move is \u2018essential\u2019 for future growth", - "guid": "b2472658", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-04T08:58:05.000Z" - }, - { - "creator": "Joe Sommerlad", - "date": "2024-01-04T08:52:31+00:00", - "title": "DWP benefits recipients face payments cut next year \u2013 everything you need to know", - "link": "https://www.independent.co.uk/news/uk/home-news/dwp-pensions-benefits-payments-2024-b2473074.html", - "pubDate": "Thu, 04 Jan 2024 08:52:31 GMT", - "dc:creator": "Joe Sommerlad", - "dc:date": "2024-01-04T08:52:31+00:00", - "content": "

Child Poverty Action Group cautions that failure to raise cap will push more people beyond its threshold

", - "contentSnippet": "Child Poverty Action Group cautions that failure to raise cap will push more people beyond its threshold", - "guid": "b2463811", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-04T08:52:31.000Z" - }, - { - "creator": "Shweta Sharma", - "date": "2024-01-04T08:50:32+00:00", - "title": "Japan Coast Guard plane was not cleared for take-off before fatal Tokyo crash", - "link": "https://www.independent.co.uk/asia/japan/japan-airlines-coast-guard-plane-permission-b2473045.html", - "pubDate": "Thu, 04 Jan 2024 08:50:32 GMT", - "dc:creator": "Shweta Sharma", - "dc:date": "2024-01-04T08:50:32+00:00", - "content": "

Newly released transcript contradict coastguard plane pilot\u2019s account of getting take-off permission

", - "contentSnippet": "Newly released transcript contradict coastguard plane pilot\u2019s account of getting take-off permission", - "guid": "b2473045", - "categories": [ - "Japan", - "Asia" - ], - "isoDate": "2024-01-04T08:50:32.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2024-01-04T08:48:57+00:00", - "title": "Game of Thrones actor reveals \u2018bonkers\u2019 contestant on The Traitors is their mother", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/game-of-thrones-the-traitors-season-2-diane-b2473056.html", - "pubDate": "Thu, 04 Jan 2024 08:48:57 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2024-01-04T08:48:57+00:00", - "content": "

\u2018I\u2019ve only just found out,\u2019 shocked star, who also appeared in \u2018Alias Grace\u2019, said

", - "contentSnippet": "\u2018I\u2019ve only just found out,\u2019 shocked star, who also appeared in \u2018Alias Grace\u2019, said", - "guid": "b2473056", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-04T08:48:57.000Z" - }, - { - "creator": "Albert Toth and Joe Sommerlad", - "date": "2024-01-04T08:44:40+00:00", - "title": "January 2024 dates for benefits, pensions and cost of living payments ", - "link": "https://www.independent.co.uk/news/uk/home-news/dwp-cost-of-living-payment-b2473072.html", - "pubDate": "Thu, 04 Jan 2024 08:44:40 GMT", - "dc:creator": "Albert Toth and Joe Sommerlad", - "dc:date": "2024-01-04T08:44:40+00:00", - "content": "

Despite inflation beginning to ease, many households continue to struggle

", - "contentSnippet": "Despite inflation beginning to ease, many households continue to struggle", - "guid": "b2470001", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-04T08:44:40.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-04T08:40:41+00:00", - "title": "Luke Littler reveals future ambitions after finishing runner-up in World Darts Championship", - "link": "https://www.independent.co.uk/tv/sport/luke-littler-darts-ranking-final-b2472923.html", - "pubDate": "Thu, 04 Jan 2024 08:40:41 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-04T08:40:41+00:00", - "content": "

Luke Littler has revealed his future ambitions after finishing runner-up in the World Darts Championship.

", - "contentSnippet": "Luke Littler has revealed his future ambitions after finishing runner-up in the World Darts Championship.", - "guid": "b2472923", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2024-01-04T08:40:41.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-04T08:39:41+00:00", - "title": "Luke Littler confident of future world title after historic debut tournament", - "link": "https://www.independent.co.uk/tv/sport/luke-littler-luke-humphries-darts-final-b2473069.html", - "pubDate": "Thu, 04 Jan 2024 08:39:41 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-04T08:39:41+00:00", - "content": "

Luke Littler sees no reason why he can\u2019t win a world title in the future after his impressive debut run in the PDC World Darts Championship.

", - "contentSnippet": "Luke Littler sees no reason why he can\u2019t win a world title in the future after his impressive debut run in the PDC World Darts Championship.", - "guid": "b2473069", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2024-01-04T08:39:41.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-04T08:34:52+00:00", - "title": "Lethal Sydney funnel-web spider 'Hercules' sets record for largest specimen collected in Australia", - "link": "https://www.independent.co.uk/news/sydney-ap-hercules-australia-blue-mountains-b2473068.html", - "pubDate": "Thu, 04 Jan 2024 08:34:52 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-04T08:34:52+00:00", - "content": "The largest male specimen of the world's most poisonous spider that boasts fangs powerful enough to pierce a human fingernail has found a new home after being discovered north of Sydney, Australia", - "contentSnippet": "The largest male specimen of the world's most poisonous spider that boasts fangs powerful enough to pierce a human fingernail has found a new home after being discovered north of Sydney, Australia", - "guid": "b2473068", - "isoDate": "2024-01-04T08:34:52.000Z" - }, - { - "creator": "Arpan Rai", - "date": "2024-01-04T08:29:39+00:00", - "title": "UN nuclear watchdog says Russia is denying access to Ukrainian power station", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-nuclear-power-plant-russia-inaccessible-b2473031.html", - "pubDate": "Thu, 04 Jan 2024 08:29:39 GMT", - "dc:creator": "Arpan Rai", - "dc:date": "2024-01-04T08:29:39+00:00", - "content": "

IAEA says it is first time it has been denied access to key parts of plant, including where reactor core and spent fuel are located

", - "contentSnippet": "IAEA says it is first time it has been denied access to key parts of plant, including where reactor core and spent fuel are located", - "guid": "b2473031", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-04T08:29:39.000Z" - }, - { - "creator": "Vishwam Sankaran", - "date": "2024-01-04T08:27:37+00:00", - "title": "Nasa\u2019s Webb telescope could use this new hack to find life on other planets, study says", - "link": "https://www.independent.co.uk/space/nasa-webb-telescope-life-planets-b2473055.html", - "pubDate": "Thu, 04 Jan 2024 08:27:37 GMT", - "dc:creator": "Vishwam Sankaran", - "dc:date": "2024-01-04T08:27:37+00:00", - "content": "

\u2018Now we have a way to find out if there\u2019s liquid water on another planet,\u2019 scientists say

", - "contentSnippet": "\u2018Now we have a way to find out if there\u2019s liquid water on another planet,\u2019 scientists say", - "guid": "b2473055", - "categories": [ - "Space" - ], - "isoDate": "2024-01-04T08:27:37.000Z" - }, - { - "creator": "David B. Caruso", - "date": "2024-01-04T08:21:20+00:00", - "title": "Court records related to Jeffrey Epstein are set to be released, but they aren't a client list", - "link": "https://www.independent.co.uk/news/jeffrey-epstein-ap-court-records-virginia-giuffre-social-media-b2472792.html", - "pubDate": "Thu, 04 Jan 2024 08:21:20 GMT", - "dc:creator": "David B. Caruso", - "dc:date": "2024-01-04T08:21:20+00:00", - "content": "Social media has been rife in recent weeks with posts speculating that a judge is about to release a list of clients or co-conspirators of Jeffrey Epstein, the jet-setting financier who killed himself in 2019 while awaiting trial on sex trafficking charges", - "contentSnippet": "Social media has been rife in recent weeks with posts speculating that a judge is about to release a list of clients or co-conspirators of Jeffrey Epstein, the jet-setting financier who killed himself in 2019 while awaiting trial on sex trafficking charges", - "guid": "b2472792", - "isoDate": "2024-01-04T08:21:20.000Z" - }, - { - "creator": "By Adam Beam and Trn Nguyn", - "date": "2024-01-04T08:20:59+00:00", - "title": "Jewish protesters calling for cease-fire in Gaza disrupt first day of California legislative session", - "link": "https://www.independent.co.uk/news/ap-california-jewish-gavin-newsom-israel-b2472977.html", - "pubDate": "Thu, 04 Jan 2024 08:20:59 GMT", - "dc:creator": "By Adam Beam and Trn Nguyn", - "dc:date": "2024-01-04T08:20:59+00:00", - "content": "Protesters calling for a cease-fire in the Israel-Hamas war have disrupted the first day of California's legislative session", - "contentSnippet": "Protesters calling for a cease-fire in the Israel-Hamas war have disrupted the first day of California's legislative session", - "guid": "b2472977", - "isoDate": "2024-01-04T08:20:59.000Z" - }, - { - "creator": "Edith M. Lederer", - "date": "2024-01-04T08:20:43+00:00", - "title": "US calls for urgent UN action on attacks by Yemen's Houthi rebels on ships in the Red Sea", - "link": "https://www.independent.co.uk/news/houthi-ap-red-sea-yemen-iran-b2472978.html", - "pubDate": "Thu, 04 Jan 2024 08:20:43 GMT", - "dc:creator": "Edith M. Lederer", - "dc:date": "2024-01-04T08:20:43+00:00", - "content": "The United States is calling on the U.N. Security Council to take urgent action against Yemen\u2019s Houthi rebels for attacking ships in the key Red Sea trade route, and is warning their longtime financier and weapons supplier Iran that it has a choice", - "contentSnippet": "The United States is calling on the U.N. Security Council to take urgent action against Yemen\u2019s Houthi rebels for attacking ships in the key Red Sea trade route, and is warning their longtime financier and weapons supplier Iran that it has a choice", - "guid": "b2472978", - "isoDate": "2024-01-04T08:20:43.000Z" - }, - { - "creator": "Richard Jolly", - "date": "2024-01-04T08:19:26+00:00", - "title": "Eddie Howe needs a turning point as he faces crunch moment in Newcastle reign ", - "link": "https://www.independent.co.uk/sport/football/newcastle-sunderland-preview-eddie-howe-january-b2472714.html", - "pubDate": "Thu, 04 Jan 2024 08:19:26 GMT", - "dc:creator": "Richard Jolly", - "dc:date": "2024-01-04T08:19:26+00:00", - "content": "

A derby against Sunderland has caused the downfall of Newcastle managers in the past and Howe can\u2019t afford to slip on that FA Cup banana skin

", - "contentSnippet": "A derby against Sunderland has caused the downfall of Newcastle managers in the past and Howe can\u2019t afford to slip on that FA Cup banana skin", - "guid": "b2472714", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T08:19:26.000Z" - }, - { - "creator": "Joe Sommerlad", - "date": "2024-01-04T08:16:26+00:00", - "title": "A 16-year-old was already nervous about his first lone flight to Ohio \u2013 then he landed in Puerto Rico", - "link": "https://www.independent.co.uk/travel/news-and-advice/florida-teen-wrong-flight-puerto-rico-ohio-b2473062.html", - "pubDate": "Thu, 04 Jan 2024 08:16:26 GMT", - "dc:creator": "Joe Sommerlad", - "dc:date": "2024-01-04T08:16:26+00:00", - "content": "

Logan Lose finds himself in San Juan after Florida boarding agent allegedly neglected to scan his ticket

", - "contentSnippet": "Logan Lose finds himself in San Juan after Florida boarding agent allegedly neglected to scan his ticket", - "guid": "b2472728", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2024-01-04T08:16:26.000Z" - }, - { - "creator": "Shweta Sharma", - "date": "2024-01-04T08:09:42+00:00", - "title": "Japan Airlines says Tokyo crash will cost it more than $100m", - "link": "https://www.independent.co.uk/asia/japan/tokyo-plane-crash-2024-japan-airlines-haneda-b2472997.html", - "pubDate": "Thu, 04 Jan 2024 08:09:42 GMT", - "dc:creator": "Shweta Sharma", - "dc:date": "2024-01-04T08:09:42+00:00", - "content": "

This is first time globally that hull of an A350 model airbus is lost in aviation disaster

", - "contentSnippet": "This is first time globally that hull of an A350 model airbus is lost in aviation disaster", - "guid": "b2472997", - "categories": [ - "Japan", - "Asia" - ], - "isoDate": "2024-01-04T08:09:42.000Z" - }, - { - "creator": "Jessie Thompson", - "date": "2024-01-04T08:06:53+00:00", - "title": "The Traitors season two, review: You\u2019ll be staying faithful to your sofa for the rest of the month", - "link": "https://www.independent.co.uk/arts-entertainment/tv/reviews/the-traitors-season-two-review-bbc-winkleman-b2472567.html", - "pubDate": "Thu, 04 Jan 2024 08:06:53 GMT", - "dc:creator": "Jessie Thompson", - "dc:date": "2024-01-04T08:06:53+00:00", - "content": "

The cloaks, the chaos and Claudia Winkleman are all back for a second season of the BBC\u2019s runaway gameshow hit. Resistance is futile \u2013 just cancel all your January plans now

", - "contentSnippet": "The cloaks, the chaos and Claudia Winkleman are all back for a second season of the BBC\u2019s runaway gameshow hit. Resistance is futile \u2013 just cancel all your January plans now", - "guid": "b2472567", - "categories": [ - "Reviews", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-04T08:06:53.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-04T08:00:02+00:00", - "title": "AI Elvis Presley to be beamed on London stage in immersive concert experience", - "link": "https://www.independent.co.uk/tv/culture/ai-elvis-presley-london-concert-b2473057.html", - "pubDate": "Thu, 04 Jan 2024 08:00:02 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-04T08:00:02+00:00", - "content": "

Elvis Presley fans will finally be able to see the King of Rock \u2018n\u2019 Roll perform in the UK for the first time later this year.

", - "contentSnippet": "Elvis Presley fans will finally be able to see the King of Rock \u2018n\u2019 Roll perform in the UK for the first time later this year.", - "guid": "b2473057", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-04T08:00:02.000Z" - }, - { - "creator": "Laura Harding", - "date": "2024-01-04T07:59:36+00:00", - "title": "Elvis gets the Abba treatment: Concert using AI and holograph technology to open in UK this year", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/elvis-presley-holograph-concert-london-b2473050.html", - "pubDate": "Thu, 04 Jan 2024 07:59:36 GMT", - "dc:creator": "Laura Harding", - "dc:date": "2024-01-04T07:59:36+00:00", - "content": "

The show will use AI to bring the star to life using thousands of his personal photos and home-video footage

", - "contentSnippet": "The show will use AI to bring the star to life using thousands of his personal photos and home-video footage", - "guid": "b2472945", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2024-01-04T07:59:36.000Z" - }, - { - "creator": "Lawrence Ostlere", - "date": "2024-01-04T07:59:25+00:00", - "title": "How Luke Humphries overcame anxiety attacks to become darts world champion", - "link": "https://www.independent.co.uk/sport/darts/luke-humphries-anxiety-attacks-darts-world-final-littler-b2473054.html", - "pubDate": "Thu, 04 Jan 2024 07:59:25 GMT", - "dc:creator": "Lawrence Ostlere", - "dc:date": "2024-01-04T07:59:25+00:00", - "content": "

The understated Humphries, nicknamed \u2018Cool Hand Luke\u2019, has had to overcome adversity to rise to the top of the sport

", - "contentSnippet": "The understated Humphries, nicknamed \u2018Cool Hand Luke\u2019, has had to overcome adversity to rise to the top of the sport", - "guid": "b2472530", - "categories": [ - "Darts", - "Sport" - ], - "isoDate": "2024-01-04T07:59:25.000Z" - }, - { - "creator": "Holly Williams", - "date": "2024-01-04T07:53:29+00:00", - "title": "Next raises profit outlook after better-than-forecast festive trading", - "link": "https://www.independent.co.uk/business/next-raises-profit-outlook-after-betterthanforecast-festive-trading-b2473058.html", - "pubDate": "Thu, 04 Jan 2024 07:53:29 GMT", - "dc:creator": "Holly Williams", - "dc:date": "2024-01-04T07:53:29+00:00", - "content": "The retail giant saw full-price sales jump 5.7% higher over the nine weeks to December 30.", - "contentSnippet": "The retail giant saw full-price sales jump 5.7% higher over the nine weeks to December 30.", - "guid": "b2473058", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T07:53:29.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2024-01-04T07:53:26+00:00", - "title": "Attack on Las Vegas judge as she sentenced felon captured on court cameras", - "link": "https://www.independent.co.uk/news/world/americas/crime/vegas-judge-attacked-mary-kay-holthus-b2472981.html", - "pubDate": "Thu, 04 Jan 2024 07:53:26 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2024-01-04T07:53:26+00:00", - "content": "

Defendant subdued by court officials following violent brawl

", - "contentSnippet": "Defendant subdued by court officials following violent brawl", - "guid": "b2472981", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T07:53:26.000Z" - }, - { - "creator": "Roisin O'Connor", - "date": "2024-01-04T07:50:31+00:00", - "title": "Saltburn, TikTok and a naked Barry Keoghan: Sophie Ellis-Bextor rejoices over Murder on the Dancefloor\u2019s revival", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/murder-on-the-dancefloor-sophie-ellis-bextor-saltburn-b2472686.html", - "pubDate": "Thu, 04 Jan 2024 07:50:31 GMT", - "dc:creator": "Roisin O'Connor", - "dc:date": "2024-01-04T07:50:31+00:00", - "content": "

Exclusive: British pop star and \u2018Saltburn\u2019 writer and director Emerald Fennell react to a renewed appreciation for Ellis-Bextor\u2019s 2001 hit, as it goes viral on TikTok and re-enters the charts after featuring in the class satire

", - "contentSnippet": "Exclusive: British pop star and \u2018Saltburn\u2019 writer and director Emerald Fennell react to a renewed appreciation for Ellis-Bextor\u2019s 2001 hit, as it goes viral on TikTok and re-enters the charts after featuring in the class satire", - "guid": "b2472686", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2024-01-04T07:50:31.000Z" - }, - { - "creator": "Jonathan Veal", - "date": "2024-01-04T07:48:38+00:00", - "title": "Luke Littler vows to win world darts title in the future after near miss", - "link": "https://www.independent.co.uk/sport/darts/luke-littler-final-world-title-trophy-b2473006.html", - "pubDate": "Thu, 04 Jan 2024 07:48:38 GMT", - "dc:creator": "Jonathan Veal", - "dc:date": "2024-01-04T07:48:38+00:00", - "content": "

Luke Humphries edged the 16-year-old in an epic World Darts Championship final but Littler has promised to return to win the trophy in future years

", - "contentSnippet": "Luke Humphries edged the 16-year-old in an epic World Darts Championship final but Littler has promised to return to win the trophy in future years", - "guid": "b2473006", - "categories": [ - "Darts", - "Sport" - ], - "isoDate": "2024-01-04T07:48:38.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-04T07:46:38+00:00", - "title": "A Texas father and son arrested in the killings of a pregnant woman and her boyfriend", - "link": "https://www.independent.co.uk/news/ap-san-antonio-texas-police-b2473051.html", - "pubDate": "Thu, 04 Jan 2024 07:46:38 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-04T07:46:38+00:00", - "content": "A father and son in Texas have been charged in the killings of an 18-year-old pregnant woman who disappeared before Christmas and her boyfriend", - "contentSnippet": "A father and son in Texas have been charged in the killings of an 18-year-old pregnant woman who disappeared before Christmas and her boyfriend", - "guid": "b2473051", - "isoDate": "2024-01-04T07:46:38.000Z" - }, - { - "creator": "Vishwam Sankaran", - "date": "2024-01-04T07:44:11+00:00", - "title": "Elon Musk suggests Tesla\u2019s bulletproof Cybertruck could make for good police vehicle", - "link": "https://www.independent.co.uk/tech/musk-tesla-cybertruck-police-vehicle-b2473029.html", - "pubDate": "Thu, 04 Jan 2024 07:44:11 GMT", - "dc:creator": "Vishwam Sankaran", - "dc:date": "2024-01-04T07:44:11+00:00", - "content": "

Tesla recently delivered first Cybertrucks to customers, years after vehicle was unveiled for advance orders

", - "contentSnippet": "Tesla recently delivered first Cybertrucks to customers, years after vehicle was unveiled for advance orders", - "guid": "b2473029", - "categories": [ - "Tech" - ], - "isoDate": "2024-01-04T07:44:11.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-04T07:39:50+00:00", - "title": "Defendant leaps over table and attacks judge during sentencing in Las Vegas courtroom", - "link": "https://www.independent.co.uk/tv/news/judge-attack-court-las-vegas-video-b2473041.html", - "pubDate": "Thu, 04 Jan 2024 07:39:50 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-04T07:39:50+00:00", - "content": "

This is the moment a defendant leaps over a table and attacks a Nevada judge during a courtroom sentencing in Las Vegas on Wednesday (3 January).

", - "contentSnippet": "This is the moment a defendant leaps over a table and attacks a Nevada judge during a courtroom sentencing in Las Vegas on Wednesday (3 January).", - "guid": "b2473041", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-04T07:39:50.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2024-01-04T07:39:21+00:00", - "title": "Netflix has just released its most harrowing movie to date", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/netflix-movies-tv-shows-society-snow-january-b2473046.html", - "pubDate": "Thu, 04 Jan 2024 07:39:21 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2024-01-04T07:39:21+00:00", - "content": "

Everything to add to your watchlist in the next 31 days

", - "contentSnippet": "Everything to add to your watchlist in the next 31 days", - "guid": "b2471536", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-04T07:39:21.000Z" - }, - { - "creator": "Vishwam Sankaran", - "date": "2024-01-04T07:38:07+00:00", - "title": "Giant \u2018terror beast\u2019 worms that colonised water 518 million years ago unearthed in Greenland", - "link": "https://www.independent.co.uk/news/science/giant-worms-terror-beast-greenland-b2473042.html", - "pubDate": "Thu, 04 Jan 2024 07:38:07 GMT", - "dc:creator": "Vishwam Sankaran", - "dc:date": "2024-01-04T07:38:07+00:00", - "content": "

Worms were close to top of food chain, scientists say

", - "contentSnippet": "Worms were close to top of food chain, scientists say", - "guid": "b2473042", - "categories": [ - "Science" - ], - "isoDate": "2024-01-04T07:38:07.000Z" - }, - { - "creator": "Shweta Sharma", - "date": "2024-01-04T07:26:00+00:00", - "title": "Extreme cold temperatures not seen for decades in Scandinavia cause widespread disruption", - "link": "https://www.independent.co.uk/climate-change/news/winter-temperature-scandinavia-europe-deaths-b2473020.html", - "pubDate": "Thu, 04 Jan 2024 07:26:00 GMT", - "dc:creator": "Shweta Sharma", - "dc:date": "2024-01-04T07:26:00+00:00", - "content": "

Temperatures plunge to below -40C in Nordic region with most parts blanketed in heavy snow

", - "contentSnippet": "Temperatures plunge to below -40C in Nordic region with most parts blanketed in heavy snow", - "guid": "b2473020", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2024-01-04T07:26:00.000Z" - }, - { - "creator": "Helen Coffey", - "date": "2024-01-04T07:22:54+00:00", - "title": "Tube strikes: Which London Underground services are running next week and how will I get around?", - "link": "https://www.independent.co.uk/travel/news-and-advice/tube-strikes-next-week-london-underground-b2473044.html", - "pubDate": "Thu, 04 Jan 2024 07:22:54 GMT", - "dc:creator": "Helen Coffey", - "dc:date": "2024-01-04T07:22:54+00:00", - "content": "

Transport for London has warned London Underground passengers to \u2018only travel if their journey is essential\u2019 from Sunday until Friday

", - "contentSnippet": "Transport for London has warned London Underground passengers to \u2018only travel if their journey is essential\u2019 from Sunday until Friday", - "guid": "b2472503", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2024-01-04T07:22:54.000Z" - }, - { - "creator": "Graeme Massie", - "date": "2024-01-04T07:14:34+00:00", - "title": "Release of documents listing Jeffrey Epstein associates crashes website ", - "link": "https://www.independent.co.uk/news/world/americas/courtlistener-jeffrey-epstein-list-documents-b2473039.html", - "pubDate": "Thu, 04 Jan 2024 07:14:34 GMT", - "dc:creator": "Graeme Massie", - "dc:date": "2024-01-04T07:14:34+00:00", - "content": "

The CourtListener site, run by the non-profit Free Law Project, went down within minutes

", - "contentSnippet": "The CourtListener site, run by the non-profit Free Law Project, went down within minutes", - "guid": "b2472962", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T07:14:34.000Z" - }, - { - "creator": "Rebecca Thomas", - "date": "2024-01-04T07:12:05+00:00", - "title": "Junior doctors\u2019 strike: Why are they taking action and what are their demands? ", - "link": "https://www.independent.co.uk/news/health/junior-doctors-strike-pay-salary-demands-b2473038.html", - "pubDate": "Thu, 04 Jan 2024 07:12:05 GMT", - "dc:creator": "Rebecca Thomas", - "dc:date": "2024-01-04T07:12:05+00:00", - "content": "

Ninety eight per cent of members who were balloted voted in favour of 72-hour walkouts last March

", - "contentSnippet": "Ninety eight per cent of members who were balloted voted in favour of 72-hour walkouts last March", - "guid": "b2285815", - "categories": [ - "Health" - ], - "isoDate": "2024-01-04T07:12:05.000Z" - }, - { - "creator": "Lawrence Ostlere", - "date": "2024-01-04T07:12:04+00:00", - "title": "Luke Littler\u2019s genius shines through even in World Darts Championship final defeat by Luke Humphries", - "link": "https://www.independent.co.uk/sport/darts/luke-littler-humphries-world-darts-final-b2473037.html", - "pubDate": "Thu, 04 Jan 2024 07:12:04 GMT", - "dc:creator": "Lawrence Ostlere", - "dc:date": "2024-01-04T07:12:04+00:00", - "content": "

Humphries won five sets in a row to defeat the remarkable 16-year-old Luke Littler and clinch his first world title

", - "contentSnippet": "Humphries won five sets in a row to defeat the remarkable 16-year-old Luke Littler and clinch his first world title", - "guid": "b2472800", - "categories": [ - "Darts", - "Sport" - ], - "isoDate": "2024-01-04T07:12:04.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-04T07:09:54+00:00", - "title": "Myanmar's military government pardons 10,000 prisoners to mark Independence Day", - "link": "https://www.independent.co.uk/news/myanmar-ap-aung-san-suu-kyi-britain-yangon-b2473043.html", - "pubDate": "Thu, 04 Jan 2024 07:09:54 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-04T07:09:54+00:00", - "content": "Myanmar\u2019s military government has pardoned nearly 10,000 prisoners to mark the 76th anniversary of gaining independence from Britain, but it wasn\u2019t immediately clear if any of those released included the thousands of political detainees jailed for opposing army rule", - "contentSnippet": "Myanmar\u2019s military government has pardoned nearly 10,000 prisoners to mark the 76th anniversary of gaining independence from Britain, but it wasn\u2019t immediately clear if any of those released included the thousands of political detainees jailed for opposing army rule", - "guid": "b2473043", - "isoDate": "2024-01-04T07:09:54.000Z" - }, - { - "creator": "Hiro Komae,Ayaka McGill and Yuri Kageyama", - "date": "2024-01-04T07:08:06+00:00", - "title": "Scenes of loss play out across Japan's western coastline after quake kills 78, dozens still missing", - "link": "https://www.independent.co.uk/news/ap-japan-fumio-kishida-tokyo-snow-b2473040.html", - "pubDate": "Thu, 04 Jan 2024 07:08:06 GMT", - "dc:creator": "Hiro Komae,Ayaka McGill and Yuri Kageyama", - "dc:date": "2024-01-04T07:08:06+00:00", - "content": "Rescue workers are braving the cold to save people still trapped under collapsed buildings in western Japan", - "contentSnippet": "Rescue workers are braving the cold to save people still trapped under collapsed buildings in western Japan", - "guid": "b2473040", - "isoDate": "2024-01-04T07:08:06.000Z" - }, - { - "creator": "Maanya Sachdeva", - "date": "2024-01-04T07:00:23+00:00", - "title": "Jimmy Kimmel threatens to sue Aaron Rodgers over Epstein client list taunt ", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/jimmy-kimmel-aaron-rodgers-epstein-list-b2473034.html", - "pubDate": "Thu, 04 Jan 2024 07:00:23 GMT", - "dc:creator": "Maanya Sachdeva", - "dc:date": "2024-01-04T07:00:23+00:00", - "content": "

Kimmel, 56, condemned the 40-year-old NFL star\u2019s \u2018reckless words\u2019 during a talk show appearance

", - "contentSnippet": "Kimmel, 56, condemned the 40-year-old NFL star\u2019s \u2018reckless words\u2019 during a talk show appearance", - "guid": "b2472502", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-04T07:00:23.000Z" - }, - { - "creator": "Josh Marcus", - "date": "2024-01-04T06:58:08+00:00", - "title": "Jeffrey Epstein: How did disgraced financier die?", - "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-die-what-happened-ghislaine-maxwell-b2473033.html", - "pubDate": "Thu, 04 Jan 2024 06:58:08 GMT", - "dc:creator": "Josh Marcus", - "dc:date": "2024-01-04T06:58:08+00:00", - "content": "

Epstein died on 10 August inside the Metropolitan Correctional Center in New York

", - "contentSnippet": "Epstein died on 10 August inside the Metropolitan Correctional Center in New York", - "guid": "b2110915", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T06:58:08.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2024-01-04T06:56:04+00:00", - "title": "Absolutely amazing \u2013 Luke Littler\u2019s former coach stunned by run to world final", - "link": "https://www.independent.co.uk/sport/luke-littler-luke-humphries-alexandra-palace-warrington-raymond-van-barneveld-b2472961.html", - "pubDate": "Thu, 04 Jan 2024 06:56:04 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2024-01-04T06:56:04+00:00", - "content": "Tournament debutant Littler, the youngest-ever finalist, was beaten 7-4 at Alexandra Palace by Luke Humphries.", - "contentSnippet": "Tournament debutant Littler, the youngest-ever finalist, was beaten 7-4 at Alexandra Palace by Luke Humphries.", - "guid": "b2472961", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T06:56:04.000Z" - }, - { - "creator": "Andy Lynes", - "date": "2022-10-07T15:15:00+00:00", - "title": "8 best electric hand mixers that whizz up a storm in the kitchen", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/kitchen-appliances/best-hand-mixers-baking-cooking-kitchen-a8474836.html", - "pubDate": "Fri, 07 Oct 2022 15:15:00 GMT", - "dc:creator": "Andy Lynes", - "dc:date": "2022-10-07T15:15:00+00:00", - "content": "

Whether you\u2019re mixing or whipping, these culinary aids are baking essentials

", - "contentSnippet": "Whether you\u2019re mixing or whipping, these culinary aids are baking essentials", - "guid": "a8474836", - "categories": [ - "Kitchen Appliances", - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2022-10-07T15:15:00.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-04T11:02:54+00:00", - "title": "Seven coffees baristas say you should never order", - "link": "https://www.independent.co.uk/tv/lifestyle/viral-coffee-latte-barista-order-b2473126.html", - "pubDate": "Thu, 04 Jan 2024 11:02:54 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-04T11:02:54+00:00", - "content": "

Baristas have shared the seven types of coffee that they will never order - and why you shouldn't either.

", - "contentSnippet": "Baristas have shared the seven types of coffee that they will never order - and why you shouldn't either.", - "guid": "b2473126", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-04T11:02:54.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2024-01-04T11:01:14+00:00", - "title": "Manchester City handed boost with Erling Haaland injury news", - "link": "https://www.independent.co.uk/sport/football/erling-haaland-manchester-city-injury-news-b2473136.html", - "pubDate": "Thu, 04 Jan 2024 11:01:14 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2024-01-04T11:01:14+00:00", - "content": "

Haaland has been sidelined with a foot injury since City\u2019s 1-0 defeat at Aston Villa on 6 December

", - "contentSnippet": "Haaland has been sidelined with a foot injury since City\u2019s 1-0 defeat at Aston Villa on 6 December", - "guid": "b2472893", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T11:01:14.000Z" - }, - { - "creator": "Jonathan Veal", - "date": "2024-01-04T10:52:10+00:00", - "title": "Luke Humphries: From suffering with anxiety to world champion in five years", - "link": "https://www.independent.co.uk/sport/luke-humphries-james-wade-peter-wright-paddy-power-grand-slam-of-darts-b2473138.html", - "pubDate": "Thu, 04 Jan 2024 10:52:10 GMT", - "dc:creator": "Jonathan Veal", - "dc:date": "2024-01-04T10:52:10+00:00", - "content": "Humphries contemplated retiring after suffering an anxiety attack during a match at the German Open in 2019.", - "contentSnippet": "Humphries contemplated retiring after suffering an anxiety attack during a match at the German Open in 2019.", - "guid": "b2473138", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T10:52:10.000Z" - }, - { - "creator": "Joe Sommerlad and Celine Wadhera", - "date": "2024-01-04T11:14:37+00:00", - "title": "Ghislaine Maxwell: The life of the Jeffrey Epstein associate found guilty of sex trafficking", - "link": "https://www.independent.co.uk/news/world/americas/ghislaine-maxwell-sentence-who-jeffrey-epstein-b2472889.html", - "pubDate": "Thu, 04 Jan 2024 11:14:37 GMT", - "dc:creator": "Joe Sommerlad and Celine Wadhera", - "dc:date": "2024-01-04T11:14:37+00:00", - "content": "

Socialite daughter of late British press baron was jailed after being found guilty of federal sex trafficking charges for her role in procuring and grooming underage girls for billionaire paedophile ex-boyfriend

", - "contentSnippet": "Socialite daughter of late British press baron was jailed after being found guilty of federal sex trafficking charges for her role in procuring and grooming underage girls for billionaire paedophile ex-boyfriend", - "guid": "b2110909", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T11:14:37.000Z" - }, - { - "creator": "Josie Clarke", - "date": "2024-01-04T11:09:29+00:00", - "title": "Eurostar reprimanded by watchdog over \u00a339 fare promotion", - "link": "https://www.independent.co.uk/travel/news-and-advice/eurostar-cheaps-fares-promotion-complaint-b2473139.html", - "pubDate": "Thu, 04 Jan 2024 11:09:29 GMT", - "dc:creator": "Josie Clarke", - "dc:date": "2024-01-04T11:09:29+00:00", - "content": "

The advertising authority found that the promotion applied to only a \u2018very small percentage\u2019 of available seats

", - "contentSnippet": "The advertising authority found that the promotion applied to only a \u2018very small percentage\u2019 of available seats", - "guid": "b2472577", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2024-01-04T11:09:29.000Z" - }, - { - "creator": "Graeme Massie", - "date": "2024-01-04T11:08:05+00:00", - "title": "How Ghislaine Maxwell met Jeffrey Epstein", - "link": "https://www.independent.co.uk/news/world/americas/crime/ghislaine-maxwell-robert-jeffrey-epstein-b2472888.html", - "pubDate": "Thu, 04 Jan 2024 11:08:05 GMT", - "dc:creator": "Graeme Massie", - "dc:date": "2024-01-04T11:08:05+00:00", - "content": "

British socialite was sentenced to 20 years behind bars for sex trafficking charges

", - "contentSnippet": "British socialite was sentenced to 20 years behind bars for sex trafficking charges", - "guid": "b2110911", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T11:08:05.000Z" - }, - { - "creator": "Ariana Baio", - "date": "2024-01-04T17:10:13+00:00", - "title": "Iowa high school shooting leaves \u2018multiple\u2019 injured", - "link": "https://www.independent.co.uk/news/world/americas/perry-high-school-iowa-shooting-b2473258.html", - "pubDate": "Thu, 04 Jan 2024 17:10:13 GMT", - "dc:creator": "Ariana Baio", - "dc:date": "2024-01-04T17:10:13+00:00", - "content": "

Shooting occurred early on Thursday before classes began at Perry High School

", - "contentSnippet": "Shooting occurred early on Thursday before classes began at Perry High School", - "guid": "b2473258", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T17:10:13.000Z" - }, - { - "creator": "Cl\u00e9mence Michallon", - "date": "2024-01-04T17:09:32+00:00", - "title": "Voices: The most remarkable thing about \u2018The Iron Claw\u2019 is happening off-camera", - "link": "https://www.independent.co.uk/voices/the-iron-claw-von-erich-zac-efron-b2472863.html", - "pubDate": "Thu, 04 Jan 2024 17:09:32 GMT", - "dc:creator": "Cl\u00e9mence Michallon", - "dc:date": "2024-01-04T17:09:32+00:00", - "content": "

How the movie\u2019s real-life subjects have received the film is nothing short of fascinating, Cl\u00e9mence Michallon writes

", - "contentSnippet": "How the movie\u2019s real-life subjects have received the film is nothing short of fascinating, Cl\u00e9mence Michallon writes", - "guid": "b2472863", - "categories": [ - "Voices" - ], - "isoDate": "2024-01-04T17:09:32.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-04T17:04:25+00:00", - "title": "Critically endangered baby gorilla welcomed at Prague Zoo", - "link": "https://www.independent.co.uk/tv/lifestyle/prague-zoo-gorilla-birth-video-b2473367.html", - "pubDate": "Thu, 04 Jan 2024 17:04:25 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-04T17:04:25+00:00", - "content": "

Prague Zoo has welcomed the birth of a critically endangered baby western lowland gorilla.

", - "contentSnippet": "Prague Zoo has welcomed the birth of a critically endangered baby western lowland gorilla.", - "guid": "b2473367", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-04T17:04:25.000Z" - }, - { - "creator": "Matt O'Brien", - "date": "2024-01-04T17:02:20+00:00", - "title": "Microsoft's new AI key is first big change to keyboards in decades", - "link": "https://www.independent.co.uk/news/world/americas/microsoft-ap-dell-apple-openai-b2473368.html", - "pubDate": "Thu, 04 Jan 2024 17:02:20 GMT", - "dc:creator": "Matt O'Brien", - "dc:date": "2024-01-04T17:02:20+00:00", - "content": "Starting this month, some new personal computers that run Microsoft\u2019s Windows 11 operating system will have a special \u201cCopilot key\u201d that launches the software giant\u2019s AI chatbot", - "contentSnippet": "Starting this month, some new personal computers that run Microsoft\u2019s Windows 11 operating system will have a special \u201cCopilot key\u201d that launches the software giant\u2019s AI chatbot", - "guid": "b2473368", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T17:02:20.000Z" - }, - { - "creator": "Graig Graziosi", - "date": "2024-01-04T17:01:03+00:00", - "title": "Iowa shooting live updates: Suspect reported dead, multiple injured at Perry High School", - "link": "https://www.independent.co.uk/news/world/americas/crime/iowa-shooting-perry-high-school-updates-b2473288.html", - "pubDate": "Thu, 04 Jan 2024 17:01:03 GMT", - "dc:creator": "Graig Graziosi", - "dc:date": "2024-01-04T17:01:03+00:00", - "content": "

The Dallas County sherrif said there were \u2018multiple\u2019 gunshot victims found at the school

", - "contentSnippet": "The Dallas County sherrif said there were \u2018multiple\u2019 gunshot victims found at the school", - "guid": "b2473288", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T17:01:03.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-04T17:00:22+00:00", - "title": "Denmark\u2019s Queen Margrethe II completes final ride in gold carriage ahead of rare abdication", - "link": "https://www.independent.co.uk/tv/lifestyle/denmark-queen-margrethe-abdication-copenhagen-b2473359.html", - "pubDate": "Thu, 04 Jan 2024 17:00:22 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-04T17:00:22+00:00", - "content": "

Europe\u2019s longest reigning monarch, Queen Margrethe II, rode through Denmark\u2019s capital on Thursday 4 January in a gilded, horse-drawn coach as she concluded her last New Year celebrations before her abdication later this month.

", - "contentSnippet": "Europe\u2019s longest reigning monarch, Queen Margrethe II, rode through Denmark\u2019s capital on Thursday 4 January in a gilded, horse-drawn coach as she concluded her last New Year celebrations before her abdication later this month.", - "guid": "b2473359", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-04T17:00:22.000Z" - }, - { - "creator": "Tom White", - "date": "2024-01-04T17:00:20+00:00", - "title": "A star is born \u2013 Luke Littler\u2019s impressive achievements at World Championship", - "link": "https://www.independent.co.uk/sport/luke-littler-alexandra-palace-luke-humphries-christian-kist-rob-cross-b2473362.html", - "pubDate": "Thu, 04 Jan 2024 17:00:20 GMT", - "dc:creator": "Tom White", - "dc:date": "2024-01-04T17:00:20+00:00", - "content": "Littler\u2019s displays at Alexandra Palace were hugely impressive even without considering his age.", - "contentSnippet": "Littler\u2019s displays at Alexandra Palace were hugely impressive even without considering his age.", - "guid": "b2473362", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T17:00:20.000Z" - }, - { - "creator": "Najib Jobain and Jack Jefffery", - "date": "2024-01-04T17:00:08+00:00", - "title": "Strike kills 12 people, mostly children, in Gaza area declared safe zone by Israel", - "link": "https://www.independent.co.uk/news/gaza-ap-hamas-israeli-khan-younis-b2473371.html", - "pubDate": "Thu, 04 Jan 2024 17:00:08 GMT", - "dc:creator": "Najib Jobain and Jack Jefffery", - "dc:date": "2024-01-04T17:00:08+00:00", - "content": "Palestinian hospital officials say an Israeli strike hit a home in an area of southern Gaza that the military had declared a safe zone, killing at least 12 people, almost all children", - "contentSnippet": "Palestinian hospital officials say an Israeli strike hit a home in an area of southern Gaza that the military had declared a safe zone, killing at least 12 people, almost all children", - "guid": "b2473371", - "isoDate": "2024-01-04T17:00:08.000Z" - }, - { - "creator": "Jamie Braidwood", - "date": "2024-01-04T16:57:35+00:00", - "title": "Premier League Darts line-up revealed as PDC makes Luke Littler decision", - "link": "https://www.independent.co.uk/sport/darts/luke-littler-premier-league-darts-players-2024-b2473311.html", - "pubDate": "Thu, 04 Jan 2024 16:57:35 GMT", - "dc:creator": "Jamie Braidwood", - "dc:date": "2024-01-04T16:57:35+00:00", - "content": "

The 16-year-old darts sensation will make his Premier League debut after his stunning World Championship run

", - "contentSnippet": "The 16-year-old darts sensation will make his Premier League debut after his stunning World Championship run", - "guid": "b2473311", - "categories": [ - "Darts", - "Sport" - ], - "isoDate": "2024-01-04T16:57:35.000Z" - }, - { - "creator": "Tara Copp", - "date": "2024-01-04T16:57:23+00:00", - "title": "Houthis launch sea drone to attack ships hours after US, allies issue 'final warning'", - "link": "https://www.independent.co.uk/news/houthis-ap-white-house-red-sea-washington-b2473366.html", - "pubDate": "Thu, 04 Jan 2024 16:57:23 GMT", - "dc:creator": "Tara Copp", - "dc:date": "2024-01-04T16:57:23+00:00", - "content": "An armed unmanned surface vessel launched from Houthi-controlled Yemen got within a \u201ccouple of miles\u201d of U.S. Navy and commercial vessels before detonating", - "contentSnippet": "An armed unmanned surface vessel launched from Houthi-controlled Yemen got within a \u201ccouple of miles\u201d of U.S. Navy and commercial vessels before detonating", - "guid": "b2473366", - "isoDate": "2024-01-04T16:57:23.000Z" - }, - { - "creator": "Adam Forrest", - "date": "2024-01-04T16:57:18+00:00", - "title": "Rishi Sunak rules out spring 2024 general election and reveals timeframe for vote", - "link": "https://www.independent.co.uk/news/uk/politics/general-election-when-uk-sunak-b2473184.html", - "pubDate": "Thu, 04 Jan 2024 16:57:18 GMT", - "dc:creator": "Adam Forrest", - "dc:date": "2024-01-04T16:57:18+00:00", - "content": "

Labour accuses PM of \u2018squatting\u2019 at No 10 \u2013 after Tory leader says election later in 2024 is his \u2018working assumption\u2019

", - "contentSnippet": "Labour accuses PM of \u2018squatting\u2019 at No 10 \u2013 after Tory leader says election later in 2024 is his \u2018working assumption\u2019", - "guid": "b2473184", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-04T16:57:18.000Z" - }, - { - "creator": "Andrew Feinberg", - "date": "2024-01-04T16:55:55+00:00", - "title": "House Democrats find \u2018stunning web\u2019 of foreign payments to Trump during his presidency", - "link": "https://www.independent.co.uk/news/presidents/trump-foreign-payments-president-house-democrats-b2473321.html", - "pubDate": "Thu, 04 Jan 2024 16:55:55 GMT", - "dc:creator": "Andrew Feinberg", - "dc:date": "2024-01-04T16:55:55+00:00", - "content": "

The House investigation into Mr Trump\u2019s finances was cut short after Republicans took over the lower chamber and ended the probe

", - "contentSnippet": "The House investigation into Mr Trump\u2019s finances was cut short after Republicans took over the lower chamber and ended the probe", - "guid": "b2473321", - "categories": [ - "US Presidents' Lives" - ], - "isoDate": "2024-01-04T16:55:55.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-04T16:54:30+00:00", - "title": "Exploding toilet at a Dunkin' store in Florida left a customer filthy and injured, lawsuit claims", - "link": "https://www.independent.co.uk/news/ap-orlando-florida-massachusetts-b2473365.html", - "pubDate": "Thu, 04 Jan 2024 16:54:30 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-04T16:54:30+00:00", - "content": "A customer who claims he was injured by an exploding toilet at a Dunkin' store in central Florida has filed a negligence lawsuit against the coffee chain", - "contentSnippet": "A customer who claims he was injured by an exploding toilet at a Dunkin' store in central Florida has filed a negligence lawsuit against the coffee chain", - "guid": "b2473365", - "isoDate": "2024-01-04T16:54:30.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-04T16:52:08+00:00", - "title": "Tiny porcupine stops to visit seals during stroll around Oregon Zoo", - "link": "https://www.independent.co.uk/tv/lifestyle/oregon-zoo-animals-seals-porcupine-b2473356.html", - "pubDate": "Thu, 04 Jan 2024 16:52:08 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-04T16:52:08+00:00", - "content": "

Watch as a porcupine takes a stroll around its zoo, stopping to admire the seals.

", - "contentSnippet": "Watch as a porcupine takes a stroll around its zoo, stopping to admire the seals.", - "guid": "b2473356", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-04T16:52:08.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2024-01-04T16:51:28+00:00", - "title": "Positively shocking: Film season issues caution for \u2018outdated\u2019 language in James Bond films", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/james-bond-films-bfi-trigger-warning-b2473283.html", - "pubDate": "Thu, 04 Jan 2024 16:51:28 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2024-01-04T16:51:28+00:00", - "content": "

Film watchers are being warned about potentially offensive content ahead of new retrospective

", - "contentSnippet": "Film watchers are being warned about potentially offensive content ahead of new retrospective", - "guid": "b2473283", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2024-01-04T16:51:28.000Z" - }, - { - "creator": "Kelly Rissman", - "date": "2024-01-04T16:51:06+00:00", - "title": "Florida surgeon general calls to stop using mRNA Covid vaccines, citing debunked claim", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/florida-covid-vaccine-surgeon-general-b2473282.html", - "pubDate": "Thu, 04 Jan 2024 16:51:06 GMT", - "dc:creator": "Kelly Rissman", - "dc:date": "2024-01-04T16:51:06+00:00", - "content": "

\u2018These vaccines are not appropriate for use in human beings,\u2019 Dr Ladapo wrote

", - "contentSnippet": "\u2018These vaccines are not appropriate for use in human beings,\u2019 Dr Ladapo wrote", - "guid": "b2473282", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-04T16:51:06.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-04T16:48:53+00:00", - "title": "Thousands of drivers trapped on snowy Swedish motorway during extreme cold snap", - "link": "https://www.independent.co.uk/tv/news/sweden-snow-traffic-motorway-b2473291.html", - "pubDate": "Thu, 04 Jan 2024 16:48:53 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-04T16:48:53+00:00", - "content": "

Drivers in Sweden were stranded on a snowy motorway as an extreme cold snap brought icy conditions and led to big traffic jams.

", - "contentSnippet": "Drivers in Sweden were stranded on a snowy motorway as an extreme cold snap brought icy conditions and led to big traffic jams.", - "guid": "b2473291", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-04T16:48:53.000Z" - }, - { - "creator": "George Sessions", - "date": "2024-01-04T16:48:16+00:00", - "title": "Ange Postecoglou calls on Tottenham squad to step up in Son Heung-min\u2019s absence", - "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-son-heungmin-burnley-south-korea-richarlison-b2473292.html", - "pubDate": "Thu, 04 Jan 2024 16:48:16 GMT", - "dc:creator": "George Sessions", - "dc:date": "2024-01-04T16:48:16+00:00", - "content": "

South Korea captain Son is at the Asian Cup and will miss Friday\u2019s visit of Burnley, but Micky van de Ven is back in training and could feature

", - "contentSnippet": "South Korea captain Son is at the Asian Cup and will miss Friday\u2019s visit of Burnley, but Micky van de Ven is back in training and could feature", - "guid": "b2473292", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T16:48:16.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-04T16:47:13+00:00", - "title": "Luke Littler reveals which celebrities have reached out to him after World Championship final", - "link": "https://www.independent.co.uk/tv/sport/luke-littler-darts-final-celebrities-rio-ferdinand-b2473278.html", - "pubDate": "Thu, 04 Jan 2024 16:47:13 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-04T16:47:13+00:00", - "content": "

He has taken the darts world by storm after reaching the finals of the World Darts Championship.

", - "contentSnippet": "He has taken the darts world by storm after reaching the finals of the World Darts Championship.", - "guid": "b2473278", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2024-01-04T16:47:13.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2024-01-04T16:46:10+00:00", - "title": "Harmony Montgomery\u2019s father seeks to block power tool evidence from murder trial", - "link": "https://www.independent.co.uk/news/world/americas/crime/harmony-montgomery-lime-power-tools-b2473177.html", - "pubDate": "Thu, 04 Jan 2024 16:46:10 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2024-01-04T16:46:10+00:00", - "content": "

Prosecutors believe lime and powertools were allegedly used to conceal Harmony\u2019s body

", - "contentSnippet": "Prosecutors believe lime and powertools were allegedly used to conceal Harmony\u2019s body", - "guid": "b2473177", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T16:46:10.000Z" - }, - { - "creator": "Alexander Butler", - "date": "2024-01-04T16:45:58+00:00", - "title": "Woman, 87, dies after car crashes into fallen tree during Storm Henk", - "link": "https://www.independent.co.uk/news/uk/car-crash-death-storm-henk-fallen-tree-b2473336.html", - "pubDate": "Thu, 04 Jan 2024 16:45:58 GMT", - "dc:creator": "Alexander Butler", - "dc:date": "2024-01-04T16:45:58+00:00", - "content": "

The 87-year-old died after hitting the fallen tree which was reported to police around 90 minutes earlier

", - "contentSnippet": "The 87-year-old died after hitting the fallen tree which was reported to police around 90 minutes earlier", - "guid": "b2473336", - "categories": [ - "UK" - ], - "isoDate": "2024-01-04T16:45:58.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-04T16:45:21+00:00", - "title": "Iowa school shooting: Police \u2018still working\u2019 on confirming number of victims", - "link": "https://www.independent.co.uk/tv/news/school-shooting-iowa-perry-victims-b2473347.html", - "pubDate": "Thu, 04 Jan 2024 16:45:21 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-04T16:45:21+00:00", - "content": "

\u201cMultiple\u201d gunshot victims were found by law enforcement officers responding to a shooting at a high school in Iowa on Thursday 4 January.

", - "contentSnippet": "\u201cMultiple\u201d gunshot victims were found by law enforcement officers responding to a shooting at a high school in Iowa on Thursday 4 January.", - "guid": "b2473347", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-04T16:45:21.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-04T16:42:08+00:00", - "title": "Kia EV9, Toyota Prius and Ford Super Duty pickup win 2024 North American SUV, car and truck awards", - "link": "https://www.independent.co.uk/news/ap-kia-ford-toyota-genesis-b2473353.html", - "pubDate": "Thu, 04 Jan 2024 16:42:08 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-04T16:42:08+00:00", - "content": "The Kia EV9 large electric SUV won the 2024 North American Utility of the Year award, while the Toyota Prius hybrid took the top car honors, and Ford\u2019s Super Duty pickup won the truck award", - "contentSnippet": "The Kia EV9 large electric SUV won the 2024 North American Utility of the Year award, while the Toyota Prius hybrid took the top car honors, and Ford\u2019s Super Duty pickup won the truck award", - "guid": "b2473353", - "isoDate": "2024-01-04T16:42:08.000Z" - }, - { - "creator": "Holly Evans", - "date": "2024-01-04T16:39:16+00:00", - "title": "What next for Ghislaine Maxwell now secret Epstein files have been released?", - "link": "https://www.independent.co.uk/news/world/americas/ghislaine-maxwell-jeffrey-epstein-appeal-b2473241.html", - "pubDate": "Thu, 04 Jan 2024 16:39:16 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2024-01-04T16:39:16+00:00", - "content": "

Court documents relating to the British socialite\u2019s paedophile friend Jeffrey Epstein have been made public

", - "contentSnippet": "Court documents relating to the British socialite\u2019s paedophile friend Jeffrey Epstein have been made public", - "guid": "b2473241", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T16:39:16.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-04T16:38:31+00:00", - "title": "Iggy Azalea hints at exit from music industry in social media post", - "link": "https://www.independent.co.uk/tv/culture/iggy-azalea-new-album-twitter-b2473344.html", - "pubDate": "Thu, 04 Jan 2024 16:38:31 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-04T16:38:31+00:00", - "content": "

Iggy Azalea has hinted that she may leave the music industry behind in a new social media post.

", - "contentSnippet": "Iggy Azalea has hinted that she may leave the music industry behind in a new social media post.", - "guid": "b2473344", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-04T16:38:31.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2024-01-04T16:38:08+00:00", - "title": "A New Jersey imam was shot dead in a \u2018senseless\u2019 attack. The killer is a mystery", - "link": "https://www.independent.co.uk/news/world/americas/crime/imam-new-jersey-newark-shooting-b2473082.html", - "pubDate": "Thu, 04 Jan 2024 16:38:08 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2024-01-04T16:38:08+00:00", - "content": "

Imam Hassan Sharif was shot and killed on Wednesday morning. The suspect and the motive for the killing remain unclear, Amelia Neath reports

", - "contentSnippet": "Imam Hassan Sharif was shot and killed on Wednesday morning. The suspect and the motive for the killing remain unclear, Amelia Neath reports", - "guid": "b2473082", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T16:38:08.000Z" - }, - { - "creator": "Ronald Blum", - "date": "2024-01-04T16:37:58+00:00", - "title": "MetLife Stadium to remove 1,740 seats for 2026 World Cup, officials hoping to host final", - "link": "https://www.independent.co.uk/news/fifa-ap-phil-murphy-metlife-new-york-b2473351.html", - "pubDate": "Thu, 04 Jan 2024 16:37:58 GMT", - "dc:creator": "Ronald Blum", - "dc:date": "2024-01-04T16:37:58+00:00", - "content": "MetLife Stadium officials plan to remove 1,740 seats to widen the field for World Cup matches as they hope to host the 2026 final", - "contentSnippet": "MetLife Stadium officials plan to remove 1,740 seats to widen the field for World Cup matches as they hope to host the 2026 final", - "guid": "b2473351", - "isoDate": "2024-01-04T16:37:58.000Z" - }, - { - "creator": "Andrea Blanco and Rachel Sharp", - "date": "2024-01-04T16:37:25+00:00", - "title": "Alan Dershowitz posts 31-minute defence video after Epstein documents unsealed", - "link": "https://www.independent.co.uk/news/world/americas/epstein-list-associates-alan-dershowitz-b2473195.html", - "pubDate": "Thu, 04 Jan 2024 16:37:25 GMT", - "dc:creator": "Andrea Blanco and Rachel Sharp", - "dc:date": "2024-01-04T16:37:25+00:00", - "content": "

Dershowitz issued a 31-minute response titled \u2018The Epstein list and guilty by association\u2019 following the unsealing of 40 Epstein-linked legal filings on Wednesday

", - "contentSnippet": "Dershowitz issued a 31-minute response titled \u2018The Epstein list and guilty by association\u2019 following the unsealing of 40 Epstein-linked legal filings on Wednesday", - "guid": "b2472637", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T16:37:25.000Z" - }, - { - "creator": "The Associated Press", - "date": "2024-01-04T16:35:31+00:00", - "title": "Russia and Ukraine exchange long-range attacks as their front-line forces remain bogged down", - "link": "https://www.independent.co.uk/news/ukraine-ap-russia-kharkiv-crimea-b2473350.html", - "pubDate": "Thu, 04 Jan 2024 16:35:31 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2024-01-04T16:35:31+00:00", - "content": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", - "contentSnippet": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", - "guid": "b2473350", - "isoDate": "2024-01-04T16:35:31.000Z" - }, - { - "creator": "Alex Woodward", - "date": "2024-01-04T16:33:23+00:00", - "title": "Quarter of Americans falsely believe FBI orchestrated January 6, poll finds", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/trump-jan-6-anniversary-fbi-b2473328.html", - "pubDate": "Thu, 04 Jan 2024 16:33:23 GMT", - "dc:creator": "Alex Woodward", - "dc:date": "2024-01-04T16:33:23+00:00", - "content": "

A large share of Trump voters and Fox News viewers continue to believe misinformation and conspiracy theories surrounding the attack, survey finds

", - "contentSnippet": "A large share of Trump voters and Fox News viewers continue to believe misinformation and conspiracy theories surrounding the attack, survey finds", - "guid": "b2473328", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-04T16:33:23.000Z" - }, - { - "creator": "Jane Dalton", - "date": "2024-01-04T16:31:45+00:00", - "title": "Police release pictures of two wanted in connection with Harry Pitman murder", - "link": "https://www.independent.co.uk/news/uk/crime/murder-primrose-hill-harry-pitman-suspect-photo-b2473324.html", - "pubDate": "Thu, 04 Jan 2024 16:31:45 GMT", - "dc:creator": "Jane Dalton", - "dc:date": "2024-01-04T16:31:45+00:00", - "content": "

Detectives want to know identities of pair pictured around time 16-year-old was stabbed

", - "contentSnippet": "Detectives want to know identities of pair pictured around time 16-year-old was stabbed", - "guid": "b2473324", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2024-01-04T16:31:45.000Z" - }, - { - "creator": "Samuel Mathewson ", - "date": "2024-01-04T16:31:43+00:00", - "title": "Best men\u2019s winter coats to wrap up warm, from overcoats to puffer jackets", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/mens-clothing/best-winter-coats-men-warmest-b1613600.html", - "pubDate": "Thu, 04 Jan 2024 16:31:43 GMT", - "dc:creator": "Samuel Mathewson ", - "dc:date": "2024-01-04T16:31:43+00:00", - "content": "

Fend off the chill this season with outwear that won\u2019t compromise on style

", - "contentSnippet": "Fend off the chill this season with outwear that won\u2019t compromise on style", - "guid": "b1613600", - "categories": [ - "Men's Clothing", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-04T16:31:43.000Z" - }, - { - "creator": "Mike Catalini", - "date": "2024-01-04T16:31:21+00:00", - "title": "New Jersey police seek killer of a Muslim cleric outside Newark mosque", - "link": "https://www.independent.co.uk/news/ap-muslim-new-jersey-council-on-americanislamic-relations-hamas-b2473346.html", - "pubDate": "Thu, 04 Jan 2024 16:31:21 GMT", - "dc:creator": "Mike Catalini", - "dc:date": "2024-01-04T16:31:21+00:00", - "content": "Police in New Jersey are hunting for the killer of a Muslim cleric who was shot outside his mosque", - "contentSnippet": "Police in New Jersey are hunting for the killer of a Muslim cleric who was shot outside his mosque", - "guid": "b2473346", - "isoDate": "2024-01-04T16:31:21.000Z" - }, - { - "creator": "Zoe Griffin", - "date": "2024-01-04T16:30:37+00:00", - "title": "Best cordless vacuum cleaners for hassle-free hoovering, from Shark to Dyson ", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/vacuum-cleaners/best-cordless-vacuum-cleaner-uk-b2101754.html", - "pubDate": "Thu, 04 Jan 2024 16:30:37 GMT", - "dc:creator": "Zoe Griffin", - "dc:date": "2024-01-04T16:30:37+00:00", - "content": "

Simplify chores with these lightweight cordless vacuums that perform just as well as their corded counterparts

", - "contentSnippet": "Simplify chores with these lightweight cordless vacuums that perform just as well as their corded counterparts", - "guid": "b2101754", - "categories": [ - "Vacuum Cleaners", - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-04T16:30:37.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-04T16:27:12+00:00", - "title": "Britney Spears shoots down album rumors, vowing to 'never return to the music industry'", - "link": "https://www.independent.co.uk/news/britney-spears-ap-instagram-los-angeles-salome-b2473343.html", - "pubDate": "Thu, 04 Jan 2024 16:27:12 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-04T16:27:12+00:00", - "content": "Britney Spears is shooting down rumors of a new album, vowing to \u201cnever return to the music industry.\u201d", - "contentSnippet": "Britney Spears is shooting down rumors of a new album, vowing to \u201cnever return to the music industry.\u201d", - "guid": "b2473343", - "isoDate": "2024-01-04T16:27:12.000Z" - }, - { - "creator": "Jane Dalton", - "date": "2024-01-04T16:25:07+00:00", - "title": "TV fitness guru Jody Bunting arrested for \u2018attempted murder\u2019 after colleague\u2019s allergic reaction to chocolate", - "link": "https://www.independent.co.uk/news/uk/crime/jody-bunting-arrest-attempted-murder-b2472769.html", - "pubDate": "Thu, 04 Jan 2024 16:25:07 GMT", - "dc:creator": "Jane Dalton", - "dc:date": "2024-01-04T16:25:07+00:00", - "content": "

Bunting, who presented the \u2018Lose it with Jody\u2019 feature on Channel 4\u2019s\u00a0The Big Breakfast , says co-worker was treated in intensive care

", - "contentSnippet": "Bunting, who presented the \u2018Lose it with Jody\u2019 feature on Channel 4\u2019s\u00a0The Big Breakfast , says co-worker was treated in intensive care", - "guid": "b2472769", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2024-01-04T16:25:07.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2024-01-04T16:22:11+00:00", - "title": "Trainee prison officers \u2018encouraged to be more violent\u2019 in sexist graduate scheme that sees a third drop out", - "link": "https://www.independent.co.uk/news/uk/home-news/unlocked-prison-officer-trainee-complaints-b2464216.html", - "pubDate": "Thu, 04 Jan 2024 16:22:11 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2024-01-04T16:22:11+00:00", - "content": "

Exclusive: Women hired as prison officers through a university graduate programme claim a boys\u2019 club of male officers made their lives hell

", - "contentSnippet": "Exclusive: Women hired as prison officers through a university graduate programme claim a boys\u2019 club of male officers made their lives hell", - "guid": "b2464216", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-04T16:22:11.000Z" - }, - { - "creator": "Kim Sengupta", - "date": "2024-01-04T16:20:42+00:00", - "title": "Taiwan\u2019s Matsu Islands prepare for a possible China invasion: \u2018I don\u2019t want to die, but we have to fight\u2019", - "link": "https://www.independent.co.uk/asia/china-taiwan-invasion-army-matsu-b2473217.html", - "pubDate": "Thu, 04 Jan 2024 16:20:42 GMT", - "dc:creator": "Kim Sengupta", - "dc:date": "2024-01-04T16:20:42+00:00", - "content": "

Beijing has been ramping up military pressure on Taiwan ahead of crucial elections next week. On the Matsu Islands \u2013 which would be the first line of defence if an attack were launched \u2013 Kim Sengupta speaks to soldiers and civilians preparing for China to make good on its threats to take control of the nation

", - "contentSnippet": "Beijing has been ramping up military pressure on Taiwan ahead of crucial elections next week. On the Matsu Islands \u2013 which would be the first line of defence if an attack were launched \u2013 Kim Sengupta speaks to soldiers and civilians preparing for China to make good on its threats to take control of the nation", - "guid": "b2473217", - "categories": [ - "Asia" - ], - "isoDate": "2024-01-04T16:20:42.000Z" - }, - { - "creator": "Harajah Nalwadda", - "date": "2024-01-04T16:20:22+00:00", - "title": "Uganda gay activist blames knife attack on a worsening climate of intolerance", - "link": "https://www.independent.co.uk/news/ap-lgbtq-uganda-yoweri-museveni-kenya-b2473340.html", - "pubDate": "Thu, 04 Jan 2024 16:20:22 GMT", - "dc:creator": "Harajah Nalwadda", - "dc:date": "2024-01-04T16:20:22+00:00", - "content": "A well-known gay rights activist in Uganda who was stabbed by unknown assailants this week is attributing the attack to what he describes as a growing intolerance of the LGBTQ+ community fueled by politicians", - "contentSnippet": "A well-known gay rights activist in Uganda who was stabbed by unknown assailants this week is attributing the attack to what he describes as a growing intolerance of the LGBTQ+ community fueled by politicians", - "guid": "b2473340", - "isoDate": "2024-01-04T16:20:22.000Z" - }, - { - "creator": "Jabed Ahmed", - "date": "2024-01-04T16:18:04+00:00", - "title": "Next warns of stock shortages if Red Sea shipping problems continue", - "link": "https://www.independent.co.uk/news/uk/home-news/next-red-sea-stock-shortages-b2473320.html", - "pubDate": "Thu, 04 Jan 2024 16:18:04 GMT", - "dc:creator": "Jabed Ahmed", - "dc:date": "2024-01-04T16:18:04+00:00", - "content": "

Next boss warns extra two and a half weeks must be added to stock delivery times for products coming through Suez Canal

", - "contentSnippet": "Next boss warns extra two and a half weeks must be added to stock delivery times for products coming through Suez Canal", - "guid": "b2473320", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-04T16:18:04.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-04T16:17:50+00:00", - "title": "Travis Kelce opens up on New Year\u2019s Eve spent with Taylor Swift", - "link": "https://www.independent.co.uk/tv/lifestyle/taylor-swift-travis-kelce-nye-b2473329.html", - "pubDate": "Thu, 04 Jan 2024 16:17:50 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-04T16:17:50+00:00", - "content": "

Travis Kelce has shared details of his New Year's Eve celebrations with Taylor Swift.

", - "contentSnippet": "Travis Kelce has shared details of his New Year's Eve celebrations with Taylor Swift.", - "guid": "b2473329", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-04T16:17:50.000Z" - }, - { - "creator": "Joe Sommerlad", - "date": "2024-01-04T16:16:41+00:00", - "title": "Mark Meadows makes latest bid to move Trump trial from Georgia to federal court", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/mark-meadows-trump-georgia-trial-b2473191.html", - "pubDate": "Thu, 04 Jan 2024 16:16:41 GMT", - "dc:creator": "Joe Sommerlad", - "dc:date": "2024-01-04T16:16:41+00:00", - "content": "

Former congressman trying to shift case in hope of invoking immunity defence to protect actions carried out in line of duty as president\u2019s aide

", - "contentSnippet": "Former congressman trying to shift case in hope of invoking immunity defence to protect actions carried out in line of duty as president\u2019s aide", - "guid": "b2473191", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-04T16:16:41.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-04T16:14:26+00:00", - "title": "Charlotte Brown\u2019s father urges daughter\u2019s killer to tell truth about speedboat death", - "link": "https://www.independent.co.uk/tv/news/charlotte-brown-jack-shepherd-speedboat-death-b2473091.html", - "pubDate": "Thu, 04 Jan 2024 16:14:26 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-04T16:14:26+00:00", - "content": "

The father of Charlotte Brown, who died after she was flung from a speedboat on the River Thames, says he wants to know exactly what happened on the night of his daughter\u2019s death.

", - "contentSnippet": "The father of Charlotte Brown, who died after she was flung from a speedboat on the River Thames, says he wants to know exactly what happened on the night of his daughter\u2019s death.", - "guid": "b2473091", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-04T16:14:26.000Z" - }, - { - "creator": "Miguel Delaney", - "date": "2024-01-04T16:08:03+00:00", - "title": "Crystal Palace told price for Peterborough wonderkid Ronnie Edwards", - "link": "https://www.independent.co.uk/sport/football/crystal-palace-transfer-ronnie-edwards-peterborough-b2473313.html", - "pubDate": "Thu, 04 Jan 2024 16:08:03 GMT", - "dc:creator": "Miguel Delaney", - "dc:date": "2024-01-04T16:08:03+00:00", - "content": "

Edwards, 20, has become one of League One\u2019s most sought-after players and has starred for England\u2019s youth sides

", - "contentSnippet": "Edwards, 20, has become one of League One\u2019s most sought-after players and has starred for England\u2019s youth sides", - "guid": "b2473313", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T16:08:03.000Z" - }, - { - "creator": "Rachel Sharp", - "date": "2024-01-04T16:06:09+00:00", - "title": "Donald Trump Jr mocked for celebratory response to Epstein document drop", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/donald-trump-jr-epstein-list-b2473279.html", - "pubDate": "Thu, 04 Jan 2024 16:06:09 GMT", - "dc:creator": "Rachel Sharp", - "dc:date": "2024-01-04T16:06:09+00:00", - "content": "

Social media users were quick to school Don Jr about the contents of the records \u2013 which featured his father\u2019s name four times

", - "contentSnippet": "Social media users were quick to school Don Jr about the contents of the records \u2013 which featured his father\u2019s name four times", - "guid": "b2473279", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-04T16:06:09.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2024-01-04T16:01:39+00:00", - "title": "Mountain rescue team blames Instagram tourists taking beauty spot selfies for record callouts", - "link": "https://www.independent.co.uk/news/uk/home-news/instagram-tourists-mountain-rescue-call-outs-b2473274.html", - "pubDate": "Thu, 04 Jan 2024 16:01:39 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2024-01-04T16:01:39+00:00", - "content": "

Mountain rescue teams operating in the Lake District, Snowdon and Ben Nevis have all seen demand spike over the past 12 months

", - "contentSnippet": "Mountain rescue teams operating in the Lake District, Snowdon and Ben Nevis have all seen demand spike over the past 12 months", - "guid": "b2473274", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-04T16:01:39.000Z" - }, - { - "creator": "The Associated Press", - "date": "2024-01-04T16:00:46+00:00", - "title": "Live updates | Hamas loses a leader in Lebanon but holds on in Gaza", - "link": "https://www.independent.co.uk/news/ap-mike-pence-hamas-beirut-lebanon-b2473323.html", - "pubDate": "Thu, 04 Jan 2024 16:00:46 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2024-01-04T16:00:46+00:00", - "content": "Israel appears far from achieving its goals of crushing Hamas and freeing an estimated 129 hostages still held in Gaza nearly three months after the group\u2019s surprise cross-border attack and the Israeli government\u2019s declaration of war", - "contentSnippet": "Israel appears far from achieving its goals of crushing Hamas and freeing an estimated 129 hostages still held in Gaza nearly three months after the group\u2019s surprise cross-border attack and the Israeli government\u2019s declaration of war", - "guid": "b2473323", - "isoDate": "2024-01-04T16:00:46.000Z" - }, - { - "creator": "Nina Massey", - "date": "2024-01-04T16:00:00+00:00", - "title": "Study reveals genetic link between anorexia and being an early riser", - "link": "https://www.independent.co.uk/news/science/study-people-usa-experts-harvard-medical-school-b2473317.html", - "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", - "dc:creator": "Nina Massey", - "dc:date": "2024-01-04T16:00:00+00:00", - "content": "People with the eating disorder often wake early and experience insomnia, the researchers found.", - "contentSnippet": "People with the eating disorder often wake early and experience insomnia, the researchers found.", - "guid": "b2473317", - "categories": [ - "Science" - ], - "isoDate": "2024-01-04T16:00:00.000Z" - }, - { - "creator": "Clarisse Loughrey", - "date": "2024-01-04T16:00:00+00:00", - "title": "One Life review: Anthony Hopkins\u2019 performance as the That\u2019s Life! hero is better than the film that surrounds him", - "link": "https://www.independent.co.uk/arts-entertainment/films/reviews/one-life-review-nicholas-winton-b2472629.html", - "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", - "dc:creator": "Clarisse Loughrey", - "dc:date": "2024-01-04T16:00:00+00:00", - "content": "

The actor recreates Sir Nicholas Winton\u2019s famous chat show appearance \u2013 but this flashback-heavy tale of the British humanitarian who facilitated the rescue of 669 Jewish children otherwise struggles

", - "contentSnippet": "The actor recreates Sir Nicholas Winton\u2019s famous chat show appearance \u2013 but this flashback-heavy tale of the British humanitarian who facilitated the rescue of 669 Jewish children otherwise struggles", - "guid": "b2472629", - "categories": [ - "Reviews", - "Film", - "Culture" - ], - "isoDate": "2024-01-04T16:00:00.000Z" - }, - { - "creator": "Storm Newton", - "date": "2024-01-04T16:00:00+00:00", - "title": "Hearing aid use linked to lower dementia risk, study suggests", - "link": "https://www.independent.co.uk/news/health/research-hearing-loss-denmark-government-university-college-london-b2473316.html", - "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", - "dc:creator": "Storm Newton", - "dc:date": "2024-01-04T16:00:00+00:00", - "content": "Research was carried out in Denmark from 2003 to 2017 and included more than 500,000 people.", - "contentSnippet": "Research was carried out in Denmark from 2003 to 2017 and included more than 500,000 people.", - "guid": "b2473316", - "categories": [ - "Health" - ], - "isoDate": "2024-01-04T16:00:00.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2024-01-04T15:59:24+00:00", - "title": "Hundreds of Russian soldiers surrender to Ukraine using \u2018I want to live\u2019 hotline ", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-surrender-hotline-b2473198.html", - "pubDate": "Thu, 04 Jan 2024 15:59:24 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2024-01-04T15:59:24+00:00", - "content": "

Roughly three Russian soldiers surrendering every week through hotline

", - "contentSnippet": "Roughly three Russian soldiers surrendering every week through hotline", - "guid": "b2473198", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-04T15:59:24.000Z" - }, - { - "creator": "George Sessions", - "date": "2024-01-04T15:58:40+00:00", - "title": "Ange Postecoglou pays tribute after death of Tottenham fan Harry Pitman", - "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-london-camden-primrose-hill-b2473315.html", - "pubDate": "Thu, 04 Jan 2024 15:58:40 GMT", - "dc:creator": "George Sessions", - "dc:date": "2024-01-04T15:58:40+00:00", - "content": "Spurs supporter Pitman was killed at a firework display in north London on New Year\u2019s Eve.", - "contentSnippet": "Spurs supporter Pitman was killed at a firework display in north London on New Year\u2019s Eve.", - "guid": "b2473315", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T15:58:40.000Z" - }, - { - "creator": "Amy-Clare Martin", - "date": "2024-01-04T15:57:43+00:00", - "title": "Sentencing delayed for depraved Glasgow child abuse ring who held rape nights", - "link": "https://www.independent.co.uk/news/uk/crime/glasgow-child-abuse-ring-court-trial-b2473231.html", - "pubDate": "Thu, 04 Jan 2024 15:57:43 GMT", - "dc:creator": "Amy-Clare Martin", - "dc:date": "2024-01-04T15:57:43+00:00", - "content": "

One child was forced to dance before being raped while group members clapped and cheered, the court heard

", - "contentSnippet": "One child was forced to dance before being raped while group members clapped and cheered, the court heard", - "guid": "b2473231", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2024-01-04T15:57:43.000Z" - }, - { - "creator": "Kaleigh Werner", - "date": "2024-01-04T15:56:25+00:00", - "title": "Is ClassPass worth it? Why I\u2019ll never go back to regular gym memberships", - "link": "https://www.independent.co.uk/life-style/health-and-families/class-pass-fitness-review-b2471018.html", - "pubDate": "Thu, 04 Jan 2024 15:56:25 GMT", - "dc:creator": "Kaleigh Werner", - "dc:date": "2024-01-04T15:56:25+00:00", - "content": "

If you\u2019re having trouble deciding what health club membership is right for you, stop questioning and try Class Pass. After signing up for a two-week free trial, Kaleigh Werner says she will never join a gym again

", - "contentSnippet": "If you\u2019re having trouble deciding what health club membership is right for you, stop questioning and try Class Pass. After signing up for a two-week free trial, Kaleigh Werner says she will never join a gym again", - "guid": "b2471018", - "categories": [ - "Health & Families", - "Lifestyle" - ], - "isoDate": "2024-01-04T15:56:25.000Z" - }, - { - "creator": "Adam Forrest", - "date": "2024-01-04T15:56:09+00:00", - "title": "Post-Brexit subsidy scheme leaves UK farmers \u2018hugely frustrated\u2019", - "link": "https://www.independent.co.uk/climate-change/news/brexit-farming-subsidies-uk-barclay-b2473257.html", - "pubDate": "Thu, 04 Jan 2024 15:56:09 GMT", - "dc:creator": "Adam Forrest", - "dc:date": "2024-01-04T15:56:09+00:00", - "content": "

Environment secretary Steve Barclay sets out long-awaited plan to replace EU agricultural payments

", - "contentSnippet": "Environment secretary Steve Barclay sets out long-awaited plan to replace EU agricultural payments", - "guid": "b2473257", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2024-01-04T15:56:09.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-04T15:56:02+00:00", - "title": "Huge funnel spider to be milked for \u2018life-saving anti-venom\u2019", - "link": "https://www.independent.co.uk/tv/lifestyle/australia-spider-venom-reptile-park-b2473298.html", - "pubDate": "Thu, 04 Jan 2024 15:56:02 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-04T15:56:02+00:00", - "content": "

A huge funnel-web spider has been handed into the Australian Reptile Park - where it will be milked for \u201clife-saving anti-venom\u201d.

", - "contentSnippet": "A huge funnel-web spider has been handed into the Australian Reptile Park - where it will be milked for \u201clife-saving anti-venom\u201d.", - "guid": "b2473298", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-04T15:56:02.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2024-01-04T15:54:51+00:00", - "title": "Key takeaways from the new Epstein documents", - "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-documents-takeaways-b2472990.html", - "pubDate": "Thu, 04 Jan 2024 15:54:51 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2024-01-04T15:54:51+00:00", - "content": "

More documents are expected to be unsealed in the coming weeks

", - "contentSnippet": "More documents are expected to be unsealed in the coming weeks", - "guid": "b2472990", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T15:54:51.000Z" - }, - { - "creator": "Inga Parkel", - "date": "2024-01-04T15:53:13+00:00", - "title": "Dionne Warwick blasts \u2018ridiculous\u2019 RFK Jr fundraiser report: \u2018At least lie about something cool\u2019", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/dionne-warwick-rfk-jr-campaign-b2473253.html", - "pubDate": "Thu, 04 Jan 2024 15:53:13 GMT", - "dc:creator": "Inga Parkel", - "dc:date": "2024-01-04T15:53:13+00:00", - "content": "

Singer and actor said she doesn\u2019t know anything about event and \u2018certainly won\u2019t be there\u2019

", - "contentSnippet": "Singer and actor said she doesn\u2019t know anything about event and \u2018certainly won\u2019t be there\u2019", - "guid": "b2473253", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2024-01-04T15:53:13.000Z" - }, - { - "creator": "Simon Calder", - "date": "2024-01-04T15:51:03+00:00", - "title": "Ask Simon Calder anything as Tube strikes set to bring London Underground to a halt", - "link": "https://www.independent.co.uk/travel/rail-travel/tube-strikes-tfl-underground-questions-b2473238.html", - "pubDate": "Thu, 04 Jan 2024 15:51:03 GMT", - "dc:creator": "Simon Calder", - "dc:date": "2024-01-04T15:51:03+00:00", - "content": "

The Independent\u2019s travel correspondent Simon Calder is on hand to help you navigate next week\u2019s TfL commuter chaos

", - "contentSnippet": "The Independent\u2019s travel correspondent Simon Calder is on hand to help you navigate next week\u2019s TfL commuter chaos", - "guid": "b2473238", - "categories": [ - "Rail Travel", - "Travel" - ], - "isoDate": "2024-01-04T15:51:03.000Z" - }, - { - "creator": "Alex Ross", - "date": "2024-01-04T15:49:26+00:00", - "title": "The Epstein List: Full list of names revealed in unsealed court records so far", - "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-maxwell-prince-andrew-b2473096.html", - "pubDate": "Thu, 04 Jan 2024 15:49:26 GMT", - "dc:creator": "Alex Ross", - "dc:date": "2024-01-04T15:49:26+00:00", - "content": "

Prince Andrew, David Copperfield and Bill Clinton are among the names included in court documents published

", - "contentSnippet": "Prince Andrew, David Copperfield and Bill Clinton are among the names included in court documents published", - "guid": "b2473096", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T15:49:26.000Z" - }, - { - "creator": "Reuben Rosso-Powell", - "date": "2024-01-04T15:44:03+00:00", - "title": "Luke Littler reflects on fateful moment he missed double two in final showdown", - "link": "https://www.independent.co.uk/sport/luke-littler-luke-humphries-bray-warrington-jonny-evans-b2473307.html", - "pubDate": "Thu, 04 Jan 2024 15:44:03 GMT", - "dc:creator": "Reuben Rosso-Powell", - "dc:date": "2024-01-04T15:44:03+00:00", - "content": "Sixteen-year-old debutant Littler lost 7-4 to world number one Luke Humphries.", - "contentSnippet": "Sixteen-year-old debutant Littler lost 7-4 to world number one Luke Humphries.", - "guid": "b2473307", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T15:44:03.000Z" - }, - { - "creator": "Lauren Cunningham", - "date": "2024-01-04T15:36:33+00:00", - "title": "This Bed of Nails mat helped relieve my back pain and makes me sleep more soundly", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/beauty/bed-of-nails-acupressure-mat-review-amazon-b2473147.html", - "pubDate": "Thu, 04 Jan 2024 15:36:33 GMT", - "dc:creator": "Lauren Cunningham", - "dc:date": "2024-01-04T15:36:33+00:00", - "content": "

The acupressure mat is touted as relieving headaches, stress, muscle tension and much more

", - "contentSnippet": "The acupressure mat is touted as relieving headaches, stress, muscle tension and much more", - "guid": "b2473147", - "categories": [ - "Beauty", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-04T15:36:33.000Z" - }, - { - "creator": "Miguel Delaney", - "date": "2024-01-04T15:33:35+00:00", - "title": "Brentford set huge Ivan Toney transfer price as Arsenal and Chelsea consider player sales", - "link": "https://www.independent.co.uk/sport/football/ivan-toney-arsenal-transfer-latest-brentford-b2473272.html", - "pubDate": "Thu, 04 Jan 2024 15:33:35 GMT", - "dc:creator": "Miguel Delaney", - "dc:date": "2024-01-04T15:33:35+00:00", - "content": "

It is understood both Arsenal and Chelsea would need to sell players first in order to meet Brentford\u2019s \u00a3100m asking price

", - "contentSnippet": "It is understood both Arsenal and Chelsea would need to sell players first in order to meet Brentford\u2019s \u00a3100m asking price", - "guid": "b2473272", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T15:33:35.000Z" - }, - { - "creator": "Andrew Griffin", - "date": "2024-01-04T15:33:32+00:00", - "title": "Twitch bans streamers from tricking users into thinking they are naked", - "link": "https://www.independent.co.uk/tech/twitch-rules-nudity-sexual-content-policies-update-b2473164.html", - "pubDate": "Thu, 04 Jan 2024 15:33:32 GMT", - "dc:creator": "Andrew Griffin", - "dc:date": "2024-01-04T15:33:32+00:00", - "content": "

Rules on sexual content and nudity have been in flux for weeks

", - "contentSnippet": "Rules on sexual content and nudity have been in flux for weeks", - "guid": "b2473164", - "categories": [ - "Tech" - ], - "isoDate": "2024-01-04T15:33:32.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-04T15:29:46+00:00", - "title": "Watch: Law enforcement responds to Iowa school shooting", - "link": "https://www.independent.co.uk/news/world/americas/iowa-shooting-school-perry-b2473289.html", - "pubDate": "Thu, 04 Jan 2024 15:29:46 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-04T15:29:46+00:00", - "content": "

Watch from the scene of a school in Perry, Iowa, where law enforcement responded to reports of a shooting.

", - "contentSnippet": "Watch from the scene of a school in Perry, Iowa, where law enforcement responded to reports of a shooting.", - "guid": "b2473289", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T15:29:46.000Z" - }, - { - "creator": "Emily Goddard", - "date": "2024-01-04T15:29:06+00:00", - "title": "6 best vitamin D supplements to help boost your health and immunity", - "link": "https://www.independent.co.uk/extras/indybest/food-drink/best-vitamin-d-supplement-uk-b2004002.html", - "pubDate": "Thu, 04 Jan 2024 15:29:06 GMT", - "dc:creator": "Emily Goddard", - "dc:date": "2024-01-04T15:29:06+00:00", - "content": "

Top up on the \u2018sunshine vitamin\u2019 this winter and beyond with our top tablets, sweets and sprays

", - "contentSnippet": "Top up on the \u2018sunshine vitamin\u2019 this winter and beyond with our top tablets, sweets and sprays", - "guid": "b2004002", - "categories": [ - "Food & Drink", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-04T15:29:06.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2024-01-04T15:28:59+00:00", - "title": "Tube strikes: What is the dispute between RMT union and TfL?", - "link": "https://www.independent.co.uk/news/uk/home-news/tube-strikes-rmt-tfl-talks-pay-dispute-b2473111.html", - "pubDate": "Thu, 04 Jan 2024 15:28:59 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2024-01-04T15:28:59+00:00", - "content": "

Tube services face severe disruption next week as RMT workers stage huge walkout

", - "contentSnippet": "Tube services face severe disruption next week as RMT workers stage huge walkout", - "guid": "b2473111", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-04T15:28:59.000Z" - }, - { - "creator": "Mari Yamaguchi", - "date": "2024-01-04T15:28:34+00:00", - "title": "The key question about fiery crash at Tokyo airport: Did one or both planes have OK to use runway?", - "link": "https://www.independent.co.uk/news/ap-tokyo-passengers-sapporo-japan-airlines-b2473295.html", - "pubDate": "Thu, 04 Jan 2024 15:28:34 GMT", - "dc:creator": "Mari Yamaguchi", - "dc:date": "2024-01-04T15:28:34+00:00", - "content": "Passengers on Japan Airlines Flight 516 were buckled up as their pilot made a final approach to Tokyo\u2019s Haneda Airport", - "contentSnippet": "Passengers on Japan Airlines Flight 516 were buckled up as their pilot made a final approach to Tokyo\u2019s Haneda Airport", - "guid": "b2473295", - "isoDate": "2024-01-04T15:28:34.000Z" - }, - { - "creator": "Kaleigh Werner", - "date": "2024-01-04T15:22:38+00:00", - "title": "Prince Gyasi\u2019s 2024 Pirelli Calendar wraps timeless artistry with community notes", - "link": "https://www.independent.co.uk/life-style/fashion/pirelli-calendar-2024-prince-gyasi-b2472796.html", - "pubDate": "Thu, 04 Jan 2024 15:22:38 GMT", - "dc:creator": "Kaleigh Werner", - "dc:date": "2024-01-04T15:22:38+00:00", - "content": "

From international supermodel Naomi Campbell, His Majesty Otumfuo Osei Tutu II, to renowned actor Idris Elba, and revolutionary producer Jeymes Samuel, this year\u2019s Pirelli Calendar featured leaders, inventors, writers, and icons through the lens of photographer Prince Gyasi, Kaleigh Werner writes

", - "contentSnippet": "From international supermodel Naomi Campbell, His Majesty Otumfuo Osei Tutu II, to renowned actor Idris Elba, and revolutionary producer Jeymes Samuel, this year\u2019s Pirelli Calendar featured leaders, inventors, writers, and icons through the lens of photographer Prince Gyasi, Kaleigh Werner writes", - "guid": "b2472796", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2024-01-04T15:22:38.000Z" - }, - { - "creator": "Holly Bancroft", - "date": "2024-01-04T15:21:11+00:00", - "title": "Rishi Sunak\u2019s claim to have cleared the asylum backlog labelled \u2018misleading\u2019 by factchecker", - "link": "https://www.independent.co.uk/news/uk/home-news/rishi-sunak-asylum-backlog-fact-check-b2473124.html", - "pubDate": "Thu, 04 Jan 2024 15:21:11 GMT", - "dc:creator": "Holly Bancroft", - "dc:date": "2024-01-04T15:21:11+00:00", - "content": "

Statistics watchdog, the Office for Statistics Regulation, are also probing the PM\u2019s claims

", - "contentSnippet": "Statistics watchdog, the Office for Statistics Regulation, are also probing the PM\u2019s claims", - "guid": "b2473124", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-04T15:21:11.000Z" - }, - { - "creator": "Eleanor Crooks", - "date": "2024-01-04T15:15:56+00:00", - "title": "Rafael Nadal wins again on return from injury in Brisbane", - "link": "https://www.independent.co.uk/sport/tennis/rafael-nadal-brisbane-australian-grigor-dimitrov-dominic-thiem-b2473222.html", - "pubDate": "Thu, 04 Jan 2024 15:15:56 GMT", - "dc:creator": "Eleanor Crooks", - "dc:date": "2024-01-04T15:15:56+00:00", - "content": "The Spaniard defeated his Australian opponent 6-1 6-2 to reach the quarter-finals of his comeback event.", - "contentSnippet": "The Spaniard defeated his Australian opponent 6-1 6-2 to reach the quarter-finals of his comeback event.", - "guid": "b2473222", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2024-01-04T15:15:56.000Z" - }, - { - "creator": "Anthony Cuthbertson", - "date": "2024-01-04T15:14:05+00:00", - "title": "Solar panel breakthrough harnesses wasted light to boost efficiency", - "link": "https://www.independent.co.uk/tech/solar-panel-efficiency-renewable-energy-b2473236.html", - "pubDate": "Thu, 04 Jan 2024 15:14:05 GMT", - "dc:creator": "Anthony Cuthbertson", - "dc:date": "2024-01-04T15:14:05+00:00", - "content": "

Transparent layer converts UV to visible light, while also providing protection for the solar cell

", - "contentSnippet": "Transparent layer converts UV to visible light, while also providing protection for the solar cell", - "guid": "b2473236", - "categories": [ - "Tech" - ], - "isoDate": "2024-01-04T15:14:05.000Z" - }, - { - "creator": "Duncan Bech", - "date": "2024-01-04T15:14:05+00:00", - "title": "Kevin Sinfield to step away from England set-up after summer tour", - "link": "https://www.independent.co.uk/sport/rugby/rugby-union/kevin-sinfield-england-coach-rugby-b2473275.html", - "pubDate": "Thu, 04 Jan 2024 15:14:05 GMT", - "dc:creator": "Duncan Bech", - "dc:date": "2024-01-04T15:14:05+00:00", - "content": "

Sinfield has overseen the defence since his appointment by Borthwick in December 2022, but the former Leeds rugby league great has decided to move on

", - "contentSnippet": "Sinfield has overseen the defence since his appointment by Borthwick in December 2022, but the former Leeds rugby league great has decided to move on", - "guid": "b2473250", - "categories": [ - "Rugby Union", - "Rugby", - "Sport" - ], - "isoDate": "2024-01-04T15:14:05.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-04T15:10:42+00:00", - "title": "Inspiration for ITV drama Alan Bates denounces Paula Vennells for keeping CBE", - "link": "https://www.independent.co.uk/tv/culture/alan-bates-post-office-paula-vennells-b2473273.html", - "pubDate": "Thu, 04 Jan 2024 15:10:42 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-04T15:10:42+00:00", - "content": "

The real-life Alan Bates, who inspired Mr Bates vs The Post Office, has slammed Paula Vennells for keeping her CBE (3 January).

", - "contentSnippet": "The real-life Alan Bates, who inspired Mr Bates vs The Post Office, has slammed Paula Vennells for keeping her CBE (3 January).", - "guid": "b2473273", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-04T15:10:42.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-04T15:08:36+00:00", - "title": "Police say there has been a shooting at a high school in Perry, Iowa; extent of injuries unclear", - "link": "https://www.independent.co.uk/news/ap-police-iowa-des-moines-b2473277.html", - "pubDate": "Thu, 04 Jan 2024 15:08:36 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-04T15:08:36+00:00", - "content": "Police say there has been a shooting at a high school in Perry, Iowa", - "contentSnippet": "Police say there has been a shooting at a high school in Perry, Iowa", - "guid": "b2473277", - "isoDate": "2024-01-04T15:08:36.000Z" - }, - { - "creator": "Oliver O'Connell", - "date": "2024-01-04T15:05:38+00:00", - "title": "Chris Christie admits endorsing Trump in 2016 was a mistake", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/trump-2024-chris-christie-endorsement-b2473261.html", - "pubDate": "Thu, 04 Jan 2024 15:05:38 GMT", - "dc:creator": "Oliver O'Connell", - "dc:date": "2024-01-04T15:05:38+00:00", - "content": "

Former New Jersey governor was once an ally of Trump, but no more...

", - "contentSnippet": "Former New Jersey governor was once an ally of Trump, but no more...", - "guid": "b2473261", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-04T15:05:38.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-04T15:02:55+00:00", - "title": "Boots website sees \u2018biggest ever month of sales in November\u2019", - "link": "https://www.independent.co.uk/business/boots-website-sees-biggest-ever-month-of-sales-in-november-b2473223.html", - "pubDate": "Thu, 04 Jan 2024 15:02:55 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-04T15:02:55+00:00", - "content": "The company said footfall to its shops had also increased in the most recent quarter.", - "contentSnippet": "The company said footfall to its shops had also increased in the most recent quarter.", - "guid": "b2473223", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T15:02:55.000Z" - }, - { - "creator": "Brittany Miller", - "date": "2024-01-04T15:02:47+00:00", - "title": "Former teacher calls out parents for being \u2018in denial\u2019 about their children\u2019s academic skills", - "link": "https://www.independent.co.uk/life-style/teacher-parents-children-academics-tiktok-b2472901.html", - "pubDate": "Thu, 04 Jan 2024 15:02:47 GMT", - "dc:creator": "Brittany Miller", - "dc:date": "2024-01-04T15:02:47+00:00", - "content": "

\u2018You can\u2019t tell me you can\u2019t read to the kid. It takes 10 minutes to read to the kid,\u2019 former teacher says

", - "contentSnippet": "\u2018You can\u2019t tell me you can\u2019t read to the kid. It takes 10 minutes to read to the kid,\u2019 former teacher says", - "guid": "b2472901", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-04T15:02:47.000Z" - }, - { - "creator": "Fadi Tawil and Bassem Mroue", - "date": "2024-01-04T15:00:33+00:00", - "title": "Thousands attend the funeral of a top Hamas official killed in an apparent Israeli strike in Beirut", - "link": "https://www.independent.co.uk/news/ap-hamas-israeli-gaza-ismail-haniyeh-b2473271.html", - "pubDate": "Thu, 04 Jan 2024 15:00:33 GMT", - "dc:creator": "Fadi Tawil and Bassem Mroue", - "dc:date": "2024-01-04T15:00:33+00:00", - "content": "Thousands of people took to the streets of Beirut for the funeral of a top Hamas commander, Saleh Arouri, who was killed earlier this week in an apparent Israeli airstrike in the Lebanese capital", - "contentSnippet": "Thousands of people took to the streets of Beirut for the funeral of a top Hamas commander, Saleh Arouri, who was killed earlier this week in an apparent Israeli airstrike in the Lebanese capital", - "guid": "b2473271", - "isoDate": "2024-01-04T15:00:33.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-04T14:58:35+00:00", - "title": "\u2018Not so athletic\u2019 burglar ninja rolls through glass door during theft", - "link": "https://www.independent.co.uk/tv/news/rolling-burglar-salinas-california-b2473267.html", - "pubDate": "Thu, 04 Jan 2024 14:58:35 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-04T14:58:35+00:00", - "content": "

A burglar who stole hundreds of dollars worth from a store was caught on camera breaking in with a unique style.

", - "contentSnippet": "A burglar who stole hundreds of dollars worth from a store was caught on camera breaking in with a unique style.", - "guid": "b2473267", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-04T14:58:35.000Z" - }, - { - "creator": "Terry Tang", - "date": "2024-01-04T14:58:03+00:00", - "title": "In 'The Brothers Sun,' Michelle Yeoh again leads an immigrant family with dark humor \u2014 but new faces", - "link": "https://www.independent.co.uk/news/world/americas/ap-michelle-yeoh-jenny-yang-asian-simu-liu-b2473270.html", - "pubDate": "Thu, 04 Jan 2024 14:58:03 GMT", - "dc:creator": "Terry Tang", - "dc:date": "2024-01-04T14:58:03+00:00", - "content": "Sam Song Li only got his SAG-AFTRA card two years ago", - "contentSnippet": "Sam Song Li only got his SAG-AFTRA card two years ago", - "guid": "b2473270", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-04T14:58:03.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-04T14:57:31+00:00", - "title": "Reform leader Richard Tice hits back at Lee Anderson after being branded \u2018pound shop Farage\u2019", - "link": "https://www.independent.co.uk/tv/news/richard-tice-reform-uk-lee-anderson-farage-b2473260.html", - "pubDate": "Thu, 04 Jan 2024 14:57:31 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-04T14:57:31+00:00", - "content": "

Richard Tice has hit back at Lee Anderson after the Conservative MP branded him a \u201cpound shop Nigel Farage,\u201d while speaking to GB News on 4 January.

", - "contentSnippet": "Richard Tice has hit back at Lee Anderson after the Conservative MP branded him a \u201cpound shop Nigel Farage,\u201d while speaking to GB News on 4 January.", - "guid": "b2473260", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-04T14:57:31.000Z" - }, - { - "creator": "Sport Staff", - "date": "2024-01-04T14:54:22+00:00", - "title": "The Independent\u2019s pound-for-pound boxing rankings", - "link": "https://www.independent.co.uk/sport/boxing/boxing-rankings-fighters-p4p-list-2023-b2469529.html", - "pubDate": "Thu, 04 Jan 2024 14:54:22 GMT", - "dc:creator": "Sport Staff", - "dc:date": "2024-01-04T14:54:22+00:00", - "content": "

Here are our top 10 men\u2019s boxers in the world

", - "contentSnippet": "Here are our top 10 men\u2019s boxers in the world", - "guid": "b2461927", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2024-01-04T14:54:22.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-04T14:54:03+00:00", - "title": "UFC rankings: The Independent\u2019s pound-for-pound fighters list", - "link": "https://www.independent.co.uk/sport/ufc/ufc-rankings-fighters-p4p-list-2024-b2465563.html", - "pubDate": "Thu, 04 Jan 2024 14:54:03 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-04T14:54:03+00:00", - "content": "

Here are our top 10 men\u2019s fighters in the UFC, in a list to be updated throughout the year

", - "contentSnippet": "Here are our top 10 men\u2019s fighters in the UFC, in a list to be updated throughout the year", - "guid": "b2446348", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2024-01-04T14:54:03.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-04T14:53:51+00:00", - "title": "Next UFC Fight Night: Event start time, card and how to watch", - "link": "https://www.independent.co.uk/sport/ufc/next-ufc-fight-event-january-schedule-2024-b2465558.html", - "pubDate": "Thu, 04 Jan 2024 14:53:51 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-04T14:53:51+00:00", - "content": "

All you need to know about the MMA promotion\u2019s upcoming fights

", - "contentSnippet": "All you need to know about the MMA promotion\u2019s upcoming fights", - "guid": "b2461922", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2024-01-04T14:53:51.000Z" - }, - { - "creator": "Maanya Sachdeva", - "date": "2024-01-04T14:53:49+00:00", - "title": "Sienna Miller gives birth to baby girl with boyfriend Oli Green", - "link": "https://www.independent.co.uk/life-style/sienna-miller-oli-green-daughter-b2473165.html", - "pubDate": "Thu, 04 Jan 2024 14:53:49 GMT", - "dc:creator": "Maanya Sachdeva", - "dc:date": "2024-01-04T14:53:49+00:00", - "content": "

Pair were seen with newborn for the first time this week

", - "contentSnippet": "Pair were seen with newborn for the first time this week", - "guid": "b2473165", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-04T14:53:49.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-04T14:53:44+00:00", - "title": "UFC schedule 2024: Every fight happening this year", - "link": "https://www.independent.co.uk/sport/ufc/ufc-schedule-2024-events-fights-january-b2465554.html", - "pubDate": "Thu, 04 Jan 2024 14:53:44 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-04T14:53:44+00:00", - "content": "

Here\u2019s a look at every fight and event that the MMA promotion has scheduled for 2024 so far

", - "contentSnippet": "Here\u2019s a look at every fight and event that the MMA promotion has scheduled for 2024 so far", - "guid": "b2457960", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2024-01-04T14:53:44.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-04T14:52:29+00:00", - "title": "Students march in Prague to honor the victims of the worst mass killing in Czech history", - "link": "https://www.independent.co.uk/news/prague-ap-education-ministry-b2473266.html", - "pubDate": "Thu, 04 Jan 2024 14:52:29 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-04T14:52:29+00:00", - "content": "Hundreds of students and others have marched in silence in the Czech capital to honor the victims of the country\u2019s worst mass killing two weeks ago that left 14 dead", - "contentSnippet": "Hundreds of students and others have marched in silence in the Czech capital to honor the victims of the country\u2019s worst mass killing two weeks ago that left 14 dead", - "guid": "b2473266", - "isoDate": "2024-01-04T14:52:29.000Z" - }, - { - "creator": "Zoe Griffin", - "date": "2024-01-04T14:51:53+00:00", - "title": "Best skiwear and snowboard gear for hitting the slopes in style ", - "link": "https://www.independent.co.uk/extras/indybest/outdoor-activity/winter-sports/best-skiwear-womens-mens-kids-b2472059.html", - "pubDate": "Thu, 04 Jan 2024 14:51:53 GMT", - "dc:creator": "Zoe Griffin", - "dc:date": "2024-01-04T14:51:53+00:00", - "content": "

Don\u2019t know what to wear or pack for a ski or snowboard holiday? Our experts have rounded up the best gear for the slopes

", - "contentSnippet": "Don\u2019t know what to wear or pack for a ski or snowboard holiday? Our experts have rounded up the best gear for the slopes", - "guid": "b2472059", - "categories": [ - "Winter Sports", - "Sports & Fitness", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-04T14:51:53.000Z" - }, - { - "creator": "Olivia Hebert", - "date": "2024-01-03T20:01:26+00:00", - "title": "America Ferrera reacts to young girls performing her Barbie monologue", - "link": "https://www.independent.co.uk/life-style/america-ferrera-barbie-monologue-girls-b2472793.html", - "pubDate": "Wed, 03 Jan 2024 20:01:26 GMT", - "dc:creator": "Olivia Hebert", - "dc:date": "2024-01-03T20:01:26+00:00", - "content": "

The actor found it bittersweet that young girls resonate with her \u2018Barbie\u2019 monologue

", - "contentSnippet": "The actor found it bittersweet that young girls resonate with her \u2018Barbie\u2019 monologue", - "guid": "b2472793", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-03T20:01:26.000Z" - }, - { - "creator": "Kaleigh Werner", - "date": "2024-01-04T17:24:00+00:00", - "title": "People love family\u2019s sentimental adult sleepover with grandparents", - "link": "https://www.independent.co.uk/life-style/adult-sleepover-grandparents-trend-b2473310.html", - "pubDate": "Thu, 04 Jan 2024 17:24:00 GMT", - "dc:creator": "Kaleigh Werner", - "dc:date": "2024-01-04T17:24:00+00:00", - "content": "

\u2018I would give anything to have an adult sleepover at my nans\u2019

", - "contentSnippet": "\u2018I would give anything to have an adult sleepover at my nans\u2019", - "guid": "b2473310", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-04T17:24:00.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-04T17:20:22+00:00", - "title": "Jeremy Allen White stars in new Calvin Klein advert after bulking up for Iron Claw role", - "link": "https://www.independent.co.uk/tv/lifestyle/jeremy-allen-white-calvin-klein-advert-b2473380.html", - "pubDate": "Thu, 04 Jan 2024 17:20:22 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-04T17:20:22+00:00", - "content": "

Jeremy Allen White showcased his impressive physique in a new advertising campaign for Calvin Klein.

", - "contentSnippet": "Jeremy Allen White showcased his impressive physique in a new advertising campaign for Calvin Klein.", - "guid": "b2473380", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-04T17:20:22.000Z" - }, - { - "creator": "Freida Frisaro and Alanis Thames", - "date": "2024-01-04T17:18:25+00:00", - "title": "Fire at home of Dolphins receiver Tyreek Hill started by child playing with cigarette lighter", - "link": "https://www.independent.co.uk/news/tyreek-hill-ap-dolphins-fort-lauderdale-miami-b2473383.html", - "pubDate": "Thu, 04 Jan 2024 17:18:25 GMT", - "dc:creator": "Freida Frisaro and Alanis Thames", - "dc:date": "2024-01-04T17:18:25+00:00", - "content": "Fire officials say a child playing with a cigarette lighter started a fire at the $6.9 million home owned by Miami Dolphins receiver Tyreek Hill", - "contentSnippet": "Fire officials say a child playing with a cigarette lighter started a fire at the $6.9 million home owned by Miami Dolphins receiver Tyreek Hill", - "guid": "b2473383", - "isoDate": "2024-01-04T17:18:25.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-04T17:17:06+00:00", - "title": "Out-of-control truck rams cars at busy junction in Philippines", - "link": "https://www.independent.co.uk/tv/news/car-crash-philippines-junction-manila-b2473379.html", - "pubDate": "Thu, 04 Jan 2024 17:17:06 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-04T17:17:06+00:00", - "content": "

An out-of-control truck crashed into cars at a busy junction in the Philippines on Wednesday, 3 January.

", - "contentSnippet": "An out-of-control truck crashed into cars at a busy junction in the Philippines on Wednesday, 3 January.", - "guid": "b2473379", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-04T17:17:06.000Z" - }, - { - "creator": "Sabine Wiesel", - "date": "2024-01-04T17:15:42+00:00", - "title": "10 best body moisturisers that nourish, hydrate and soothe dry skin", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/skincare/best-body-moisturiser-dry-skin-b1847430.html", - "pubDate": "Thu, 04 Jan 2024 17:15:42 GMT", - "dc:creator": "Sabine Wiesel", - "dc:date": "2024-01-04T17:15:42+00:00", - "content": "

Prepare for the softest skin of your life, with these tried-and-tested body moisturisers

", - "contentSnippet": "Prepare for the softest skin of your life, with these tried-and-tested body moisturisers", - "guid": "b1847430", - "categories": [ - "Skincare", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-04T17:15:42.000Z" - }, - { - "creator": "Alex Veiga", - "date": "2024-01-04T17:15:10+00:00", - "title": "Average long-term mortgage rates edge higher, snapping 9-week slide", - "link": "https://www.independent.co.uk/news/ap-los-angeles-federal-reserve-treasury-b2473382.html", - "pubDate": "Thu, 04 Jan 2024 17:15:10 GMT", - "dc:creator": "Alex Veiga", - "dc:date": "2024-01-04T17:15:10+00:00", - "content": "The average long-term U.S. mortgage rate edged higher this week, ending a nine-week slide that gave prospective homebuyers some breathing room after home loan borrowing soared to the highest level in more than two decades", - "contentSnippet": "The average long-term U.S. mortgage rate edged higher this week, ending a nine-week slide that gave prospective homebuyers some breathing room after home loan borrowing soared to the highest level in more than two decades", - "guid": "b2473382", - "isoDate": "2024-01-04T17:15:10.000Z" - }, - { - "creator": "Luke Baker", - "date": "2024-01-04T17:15:10+00:00", - "title": "Could Oscar Pistorius make Paralympic return after prison release?", - "link": "https://www.independent.co.uk/sport/olympics/paralympics/oscar-pistorius-prison-release-now-atheltics-return-b2473335.html", - "pubDate": "Thu, 04 Jan 2024 17:15:10 GMT", - "dc:creator": "Luke Baker", - "dc:date": "2024-01-04T17:15:10+00:00", - "content": "

Six-time Paralympic champion Pistorius is being released on parole this week and, at the age of 37, speculation has started over a potential return to athletics

", - "contentSnippet": "Six-time Paralympic champion Pistorius is being released on parole this week and, at the age of 37, speculation has started over a potential return to athletics", - "guid": "b2473335", - "categories": [ - "Paralympics", - "Olympics", - "Sport" - ], - "isoDate": "2024-01-04T17:15:10.000Z" - }, - { - "creator": "Kelly Rissman", - "date": "2024-01-04T17:13:00+00:00", - "title": "Fox News host mocks idea Trump \u2013 who brought Vanilla Ice to NYE party \u2013 can win young voters", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/fox-news-trump-vanilla-ice-youth-vote-b2473309.html", - "pubDate": "Thu, 04 Jan 2024 17:13:00 GMT", - "dc:creator": "Kelly Rissman", - "dc:date": "2024-01-04T17:13:00+00:00", - "content": "

\u2018Ice, ice, baby, you\u2019re losing the youth vote,\u2019 The Five co-host Jessica Tarlov said

", - "contentSnippet": "\u2018Ice, ice, baby, you\u2019re losing the youth vote,\u2019 The Five co-host Jessica Tarlov said", - "guid": "b2473309", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-04T17:13:00.000Z" - }, - { - "creator": "Martha McHardy", - "date": "2024-01-04T17:11:10+00:00", - "title": "Woman arrested for robbing home of professor killed in UNLV shooting", - "link": "https://www.independent.co.uk/news/world/americas/crime/naoko-takemaru-unlv-shooting-burglary-b2473330.html", - "pubDate": "Thu, 04 Jan 2024 17:11:10 GMT", - "dc:creator": "Martha McHardy", - "dc:date": "2024-01-04T17:11:10+00:00", - "content": "

Bianca Hernandez, 30, was arrested for an alleged burglary at the home of Naoko Takemaru

", - "contentSnippet": "Bianca Hernandez, 30, was arrested for an alleged burglary at the home of Naoko Takemaru", - "guid": "b2473330", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-04T17:11:10.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-04T17:08:42+00:00", - "title": "Red Sea attacks: What has happened and what does it mean for prices?", - "link": "https://www.independent.co.uk/business/red-sea-attacks-what-has-happened-and-what-does-it-mean-for-prices-b2473373.html", - "pubDate": "Thu, 04 Jan 2024 17:08:42 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-04T17:08:42+00:00", - "content": "Here the PA news agency looks at what has happened and what the knock-on effects could be for people in the UK.", - "contentSnippet": "Here the PA news agency looks at what has happened and what the knock-on effects could be for people in the UK.", - "guid": "b2473373", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T17:08:42.000Z" - }, - { - "creator": "Andrew Feinberg", - "date": "2024-01-05T13:53:54+00:00", - "title": "Officer who protected the US Capitol on January 6 announces run for Congress", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/harry-dunn-congress-bid-capitol-police-b2473748.html", - "pubDate": "Fri, 05 Jan 2024 13:53:54 GMT", - "dc:creator": "Andrew Feinberg", - "dc:date": "2024-01-05T13:53:54+00:00", - "content": "

Harry Dunn recently retired from the Capitol Police department

", - "contentSnippet": "Harry Dunn recently retired from the Capitol Police department", - "guid": "b2473748", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-05T13:53:54.000Z" - }, - { - "creator": "Ryan Coogan", - "date": "2024-01-05T13:53:48+00:00", - "title": "Voices: Natwest\u2019s boss thinks \u2018it\u2019s not that hard to buy a home\u2019 \u2013 tell that to Gen Z and millennials like me", - "link": "https://www.independent.co.uk/voices/natwest-howard-davies-buying-house-difficult-gen-z-b2473764.html", - "pubDate": "Fri, 05 Jan 2024 13:53:48 GMT", - "dc:creator": "Ryan Coogan", - "dc:date": "2024-01-05T13:53:48+00:00", - "content": "

Like most people my age, I\u2019ve accepted that I\u2019ll probably never own a property \u2013 and contrary to what Natwest boss Sir Howard Davies believes, it\u2019s got nothing to do with \u2018needing to save up more\u2019

", - "contentSnippet": "Like most people my age, I\u2019ve accepted that I\u2019ll probably never own a property \u2013 and contrary to what Natwest boss Sir Howard Davies believes, it\u2019s got nothing to do with \u2018needing to save up more\u2019", - "guid": "b2473764", - "categories": [ - "Voices" - ], - "isoDate": "2024-01-05T13:53:48.000Z" - }, - { - "creator": "Lydia Patrick,Maryam Zakir-Hussain and Maroosha Muzaffar", - "date": "2024-01-05T13:52:11+00:00", - "title": "UK flooding latest - Hundreds of warnings across England as heavy rain sparks chaos on trains", - "link": "https://www.independent.co.uk/weather/uk-storm-henk-flooding-weather-forecast-latest-b2473613.html", - "pubDate": "Fri, 05 Jan 2024 13:52:11 GMT", - "dc:creator": "Lydia Patrick,Maryam Zakir-Hussain and Maroosha Muzaffar", - "dc:date": "2024-01-05T13:52:11+00:00", - "content": "

Southeast England will experience cloudy weather with occasional rain and drizzle today

", - "contentSnippet": "Southeast England will experience cloudy weather with occasional rain and drizzle today", - "guid": "b2472054", - "categories": [ - "Weather" - ], - "isoDate": "2024-01-05T13:52:11.000Z" - }, - { - "creator": "Eric Garcia", - "date": "2024-01-05T13:52:06+00:00", - "title": "Jobs report surpasses expectations with 216,000 new jobs added in December", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/jobs-report-us-economy-biden-b2473807.html", - "pubDate": "Fri, 05 Jan 2024 13:52:06 GMT", - "dc:creator": "Eric Garcia", - "dc:date": "2024-01-05T13:52:06+00:00", - "content": "

The US economy continued to show surprising resiliency as the Bureau of Labor Statistics reported on Friday that the economy added 216,000 new jobs in December.

", - "contentSnippet": "The US economy continued to show surprising resiliency as the Bureau of Labor Statistics reported on Friday that the economy added 216,000 new jobs in December.", - "guid": "b2473807", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-05T13:52:06.000Z" - }, - { - "creator": "Tom Watling and Maryam Zakir-Hussain", - "date": "2024-01-05T13:47:39+00:00", - "title": "Ukraine-Russia war live: Kyiv inflicting significant losses on Putin\u2019s forces around Dnipro River", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-putin-kyiv-latest-news-b2473609.html", - "pubDate": "Fri, 05 Jan 2024 13:47:39 GMT", - "dc:creator": "Tom Watling and Maryam Zakir-Hussain", - "dc:date": "2024-01-05T13:47:39+00:00", - "content": "

Russia began its tank-heavy assault on the eastern Ukrianian city of Avdiivka in October last year and have lost five battalions worth of equipment since

", - "contentSnippet": "Russia began its tank-heavy assault on the eastern Ukrianian city of Avdiivka in October last year and have lost five battalions worth of equipment since", - "guid": "b2466307", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-05T13:47:39.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-05T13:45:56+00:00", - "title": "Moment Derek Draper\u2019s death announced live on This Morning", - "link": "https://www.independent.co.uk/tv/news/derek-draper-kate-garraway-covid-b2473798.html", - "pubDate": "Fri, 05 Jan 2024 13:45:56 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-05T13:45:56+00:00", - "content": "

Alison Hammond and Dermot O'Leary broke the news of Derek Draper's death live on This Morning on Friday, 5 January, sending a message of support to his wife Kate Garraway and their family.

", - "contentSnippet": "Alison Hammond and Dermot O'Leary broke the news of Derek Draper's death live on This Morning on Friday, 5 January, sending a message of support to his wife Kate Garraway and their family.", - "guid": "b2473798", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-05T13:45:56.000Z" - }, - { - "creator": "Tamara Hinson", - "date": "2024-01-05T13:42:27+00:00", - "title": "Best cabin bags, suitcases and overnight backpacks for travel in 2024", - "link": "https://www.independent.co.uk/extras/indybest/travel-outdoors/luggage/best-cabin-bag-a9702471.html", - "pubDate": "Fri, 05 Jan 2024 13:42:27 GMT", - "dc:creator": "Tamara Hinson", - "dc:date": "2024-01-05T13:42:27+00:00", - "content": "

Whether for buisness or pleasure, choose one of these and you\u2019ll pack like a pro

", - "contentSnippet": "Whether for buisness or pleasure, choose one of these and you\u2019ll pack like a pro", - "guid": "a9702471", - "categories": [ - "Luggage", - "Travel & outdoors", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:42:27.000Z" - }, - { - "creator": "Zoe Phillimore", - "date": "2024-01-05T13:41:35+00:00", - "title": "7 best blenders, tried and tested for super-quick smoothies, sauces and more", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/best-blender-b1997190.html", - "pubDate": "Fri, 05 Jan 2024 13:41:35 GMT", - "dc:creator": "Zoe Phillimore", - "dc:date": "2024-01-05T13:41:35+00:00", - "content": "

Our experts review the best handheld, vacuum and jug-style blenders for all your kitchen duties

", - "contentSnippet": "Our experts review the best handheld, vacuum and jug-style blenders for all your kitchen duties", - "guid": "b1997190", - "categories": [ - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:41:35.000Z" - }, - { - "creator": "Vanessa Gera", - "date": "2024-01-05T13:40:30+00:00", - "title": "Companies pull ads from TV station after comments on tattooing and sending migrants to Auschwitz", - "link": "https://www.independent.co.uk/news/world/europe/ap-law-and-justice-donald-tusk-ikea-poland-b2473809.html", - "pubDate": "Fri, 05 Jan 2024 13:40:30 GMT", - "dc:creator": "Vanessa Gera", - "dc:date": "2024-01-05T13:40:30+00:00", - "content": "Commentators who joked on a Polish right-wing television station that migrants should be sent to Auschwitz or be tattooed or microchipped like dogs are facing widespread condemnation", - "contentSnippet": "Commentators who joked on a Polish right-wing television station that migrants should be sent to Auschwitz or be tattooed or microchipped like dogs are facing widespread condemnation", - "guid": "b2473809", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-05T13:40:30.000Z" - }, - { - "creator": "Lauren Cunningham", - "date": "2024-01-05T13:40:27+00:00", - "title": "10 best beauty subscription boxes: Monthly skincare and make-up treats worth signing up for ", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/beauty/best-beauty-subscription-boxes-uk-b1954393.html", - "pubDate": "Fri, 05 Jan 2024 13:40:27 GMT", - "dc:creator": "Lauren Cunningham", - "dc:date": "2024-01-05T13:40:27+00:00", - "content": "

From the latest launches to bespoke skincare, home delivery has never looked so good

", - "contentSnippet": "From the latest launches to bespoke skincare, home delivery has never looked so good", - "guid": "b1954393", - "categories": [ - "Beauty", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:40:27.000Z" - }, - { - "creator": "Zoe Phillimore", - "date": "2024-01-05T13:38:48+00:00", - "title": "17 best coffee machines for 2024, tried and tested for barista-worthy drinks", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/coffee/best-coffee-machines-b2375287.html", - "pubDate": "Fri, 05 Jan 2024 13:38:48 GMT", - "dc:creator": "Zoe Phillimore", - "dc:date": "2024-01-05T13:38:48+00:00", - "content": "

There\u2019s a better way to get your caffeine fix, from bean-to-cup to espresso machines

", - "contentSnippet": "There\u2019s a better way to get your caffeine fix, from bean-to-cup to espresso machines", - "guid": "b2375287", - "categories": [ - "Coffee", - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:38:48.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2024-01-05T13:37:48+00:00", - "title": "Lori Vallow\u2019s Arizona trial for murder conspiracy faces delay", - "link": "https://www.independent.co.uk/news/world/americas/crime/lori-vallow-arizona-trial-delay-b2473733.html", - "pubDate": "Fri, 05 Jan 2024 13:37:48 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2024-01-05T13:37:48+00:00", - "content": "

Vallow charges for conspiring to kill her fourth husband Charles and her niece\u2019s ex-husband Brandon Boudreaux

", - "contentSnippet": "Vallow charges for conspiring to kill her fourth husband Charles and her niece\u2019s ex-husband Brandon Boudreaux", - "guid": "b2473733", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-05T13:37:48.000Z" - }, - { - "creator": "Daisy Lester and Lois Borny", - "date": "2024-01-05T13:33:56+00:00", - "title": "Best vegan launches for 2024: Greggs, M&S and more Veganuary menus", - "link": "https://www.independent.co.uk/extras/indybest/food-drink/vegan-food-burger-delivery-uk-b2265967.html", - "pubDate": "Fri, 05 Jan 2024 13:33:56 GMT", - "dc:creator": "Daisy Lester and Lois Borny", - "dc:date": "2024-01-05T13:33:56+00:00", - "content": "

Are you pledging to go plant-based this year? These new vegan alternatives leave you spoiled for choice

", - "contentSnippet": "Are you pledging to go plant-based this year? These new vegan alternatives leave you spoiled for choice", - "guid": "b2265967", - "categories": [ - "Food & Drink", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:33:56.000Z" - }, - { - "creator": "Jane Kirby", - "date": "2024-01-05T13:33:37+00:00", - "title": "Combination of strikes and rise in flu and Covid \u2018a perfect storm for the NHS\u2019", - "link": "https://www.independent.co.uk/business/combination-of-strikes-and-rise-in-flu-and-covid-a-perfect-storm-for-the-nhs-b2473757.html", - "pubDate": "Fri, 05 Jan 2024 13:33:37 GMT", - "dc:creator": "Jane Kirby", - "dc:date": "2024-01-05T13:33:37+00:00", - "content": "Figures published by NHS England on Friday show the number of flu patients jumped by more than a third over Christmas.", - "contentSnippet": "Figures published by NHS England on Friday show the number of flu patients jumped by more than a third over Christmas.", - "guid": "b2473757", - "categories": [ - "Business" - ], - "isoDate": "2024-01-05T13:33:37.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-05T13:32:58+00:00", - "title": "Derek Draper cries as he reads birthday card from his children in resurfaced clip", - "link": "https://www.independent.co.uk/tv/culture/derek-draper-death-children-birthday-video-b2473803.html", - "pubDate": "Fri, 05 Jan 2024 13:32:58 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-05T13:32:58+00:00", - "content": "

This is the touching moment Derek Draper cries as he receives a birthday card from his daughter Darcy, declaring him the \u201cbest father in the world\u201d.

", - "contentSnippet": "This is the touching moment Derek Draper cries as he receives a birthday card from his daughter Darcy, declaring him the \u201cbest father in the world\u201d.", - "guid": "b2473803", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-05T13:32:58.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2024-01-05T13:32:13+00:00", - "title": "Film stars named in unsealed Epstein court documents deny any involvement", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/epstein-list-dicaprio-blanchett-willis-diaz-b2473686.html", - "pubDate": "Fri, 05 Jan 2024 13:32:13 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2024-01-05T13:32:13+00:00", - "content": "

Their names are mentioned in legal records despite having \u2018no association\u2019 with Epstein \u2018whatsoever\u2019

", - "contentSnippet": "Their names are mentioned in legal records despite having \u2018no association\u2019 with Epstein \u2018whatsoever\u2019", - "guid": "b2473686", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2024-01-05T13:32:13.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-05T13:28:51+00:00", - "title": "AP Week in Pictures: Global | Dec.29-January 5, 2024", - "link": "https://www.independent.co.uk/news/beijing-ap-taiwan-europe-instagram-b2473806.html", - "pubDate": "Fri, 05 Jan 2024 13:28:51 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-05T13:28:51+00:00", - "content": "

DECEMBER 31-JANUARY 5, 2024

", - "contentSnippet": "DECEMBER 31-JANUARY 5, 2024", - "guid": "b2473806", - "isoDate": "2024-01-05T13:28:51.000Z" - }, - { - "creator": "Lauren Cunningham", - "date": "2024-01-05T13:26:20+00:00", - "title": "8 best BB creams that can\u2019t be beaten for a bare-faced look", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/make-up/best-bb-cream-uk-oily-dry-spf-b1790164.html", - "pubDate": "Fri, 05 Jan 2024 13:26:20 GMT", - "dc:creator": "Lauren Cunningham", - "dc:date": "2024-01-05T13:26:20+00:00", - "content": "

The barely there base that\u2019s lighter than foundation, yet covers more than concealer

", - "contentSnippet": "The barely there base that\u2019s lighter than foundation, yet covers more than concealer", - "guid": "b1790164", - "categories": [ - "Make-up", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:26:20.000Z" - }, - { - "creator": "Zoe Griffin", - "date": "2024-01-05T13:25:17+00:00", - "title": "10 best baby play mats for tummy-time fun", - "link": "https://www.independent.co.uk/extras/indybest/kids/baby-tech-essentials/best-baby-play-mat-gym-uk-activity-development-tummy-time-a9438656.html", - "pubDate": "Fri, 05 Jan 2024 13:25:17 GMT", - "dc:creator": "Zoe Griffin", - "dc:date": "2024-01-05T13:25:17+00:00", - "content": "

From simple a play mat to baby gym, these help little ones roll, push up and crawl in comfort

", - "contentSnippet": "From simple a play mat to baby gym, these help little ones roll, push up and crawl in comfort", - "guid": "a9438656", - "categories": [ - "Baby Tech & Essentials", - "Kids", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:25:17.000Z" - }, - { - "creator": "Katie Hawkinson", - "date": "2024-01-05T13:24:24+00:00", - "title": "Germany\u2019s carbon emissions hit 70-year low, new study finds", - "link": "https://www.independent.co.uk/climate-change/news/germany-carbon-emissions-record-coal-b2473532.html", - "pubDate": "Fri, 05 Jan 2024 13:24:24 GMT", - "dc:creator": "Katie Hawkinson", - "dc:date": "2024-01-05T13:24:24+00:00", - "content": "

While there\u2019s still more work to be done, researchers say Germany\u2019s carbon emissions fell 56 per cent from 1996 and are at their lowest since the 1950s

", - "contentSnippet": "While there\u2019s still more work to be done, researchers say Germany\u2019s carbon emissions fell 56 per cent from 1996 and are at their lowest since the 1950s", - "guid": "b2473532", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2024-01-05T13:24:24.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2024-01-05T13:24:17+00:00", - "title": "Derek Draper: Tributes pour in as \u2018brave\u2019 Kate Garraway announces husband\u2019s death", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/derek-draper-death-kate-garraway-husband-b2473754.html", - "pubDate": "Fri, 05 Jan 2024 13:24:17 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2024-01-05T13:24:17+00:00", - "content": "

\u2018GMB\u2019 host has been caring for Draper ever since he contracted Covid in March 2020

", - "contentSnippet": "\u2018GMB\u2019 host has been caring for Draper ever since he contracted Covid in March 2020", - "guid": "b2473754", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-05T13:24:17.000Z" - }, - { - "creator": "Rachel Sharp", - "date": "2024-01-05T13:24:13+00:00", - "title": "Epstein documents reveal new details of Palm Beach police investigation", - "link": "https://www.independent.co.uk/news/world/americas/epstein-list-investigation-florida-police-b2473747.html", - "pubDate": "Fri, 05 Jan 2024 13:24:13 GMT", - "dc:creator": "Rachel Sharp", - "dc:date": "2024-01-05T13:24:13+00:00", - "content": "

Palm Beach detective testified in deposition that he had spoken with around 30 underage girls who claimed they were recruited by Ghislaine Maxwell to come to Epstein\u2019s Palm Beach home and give him sexual massages

", - "contentSnippet": "Palm Beach detective testified in deposition that he had spoken with around 30 underage girls who claimed they were recruited by Ghislaine Maxwell to come to Epstein\u2019s Palm Beach home and give him sexual massages", - "guid": "b2473747", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-05T13:24:13.000Z" - }, - { - "creator": "Zoe Griffin", - "date": "2024-01-05T13:23:53+00:00", - "title": "\u200b\u200b14 best baby carriers and slings, reviewed by parents", - "link": "https://www.independent.co.uk/extras/indybest/kids/baby-tech-essentials/best-baby-carriers-a9436251.html", - "pubDate": "Fri, 05 Jan 2024 13:23:53 GMT", - "dc:creator": "Zoe Griffin", - "dc:date": "2024-01-05T13:23:53+00:00", - "content": "

Bonding while on the move? These baby carriers make it happen

", - "contentSnippet": "Bonding while on the move? These baby carriers make it happen", - "guid": "a9436251", - "categories": [ - "Baby Tech & Essentials", - "Kids", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:23:53.000Z" - }, - { - "creator": "Krutika Pathi", - "date": "2024-01-05T13:22:26+00:00", - "title": "Thousands of opposition activists languish in prison as Bangladesh gears up for national election", - "link": "https://www.independent.co.uk/news/ap-sheikh-hasina-bangladesh-bangladesh-nationalist-party-khaleda-zia-b2473805.html", - "pubDate": "Fri, 05 Jan 2024 13:22:26 GMT", - "dc:creator": "Krutika Pathi", - "dc:date": "2024-01-05T13:22:26+00:00", - "content": "In the months leading to Bangladesh\u2019s national election on Sunday, thousands of opposition supporters and politicians have been arrested", - "contentSnippet": "In the months leading to Bangladesh\u2019s national election on Sunday, thousands of opposition supporters and politicians have been arrested", - "guid": "b2473805", - "isoDate": "2024-01-05T13:22:26.000Z" - }, - { - "creator": "Barney Davis", - "date": "2024-01-05T13:21:35+00:00", - "title": "\u2018All is lost\u2019: Captain of party boat sunk in Thames speaks of devastation", - "link": "https://www.independent.co.uk/news/uk/home-news/thames-floods-london-party-boat-b2473710.html", - "pubDate": "Fri, 05 Jan 2024 13:21:35 GMT", - "dc:creator": "Barney Davis", - "dc:date": "2024-01-05T13:21:35+00:00", - "content": "

\u2018It was always my dream to own a boat like this in London\u2019 the devasted owner of Bar & Co said

", - "contentSnippet": "\u2018It was always my dream to own a boat like this in London\u2019 the devasted owner of Bar & Co said", - "guid": "b2473710", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-05T13:21:35.000Z" - }, - { - "creator": "Steve Douglas", - "date": "2024-01-05T13:13:59+00:00", - "title": "Ryan Reynolds' Wrexham riding a wave of euphoria in charge through English soccer leagues", - "link": "https://www.independent.co.uk/news/wrexham-ap-reynolds-ryan-reynolds-rob-mcelhenney-b2473802.html", - "pubDate": "Fri, 05 Jan 2024 13:13:59 GMT", - "dc:creator": "Steve Douglas", - "dc:date": "2024-01-05T13:13:59+00:00", - "content": "Hollywood stars Ryan Reynolds and Rob McElhenney are three years into their unlikely ownership of Welsh soccer club Wrexham and their enthusiasm is far from fading", - "contentSnippet": "Hollywood stars Ryan Reynolds and Rob McElhenney are three years into their unlikely ownership of Welsh soccer club Wrexham and their enthusiasm is far from fading", - "guid": "b2473802", - "isoDate": "2024-01-05T13:13:59.000Z" - }, - { - "creator": "Maanya Sachdeva", - "date": "2024-01-05T13:13:56+00:00", - "title": "Jeremy Allen White fans \u2018not OK\u2019 after star\u2019s Calvin Klein ad drops", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/jeremy-allen-white-calvin-klein-b2473691.html", - "pubDate": "Fri, 05 Jan 2024 13:13:56 GMT", - "dc:creator": "Maanya Sachdeva", - "dc:date": "2024-01-05T13:13:56+00:00", - "content": "

White, 32, plays Chicago-based chef Carmy in 2023\u2019s hottest show \u2018The Bear\u2019

", - "contentSnippet": "White, 32, plays Chicago-based chef Carmy in 2023\u2019s hottest show \u2018The Bear\u2019", - "guid": "b2473691", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-05T13:13:56.000Z" - }, - { - "creator": "Archie Mitchell", - "date": "2024-01-05T13:13:31+00:00", - "title": "It\u2019s not that difficult to buy a house in Britain, NatWest boss claims", - "link": "https://www.independent.co.uk/news/uk/politics/uk-housing-crisis-natwest-radio-4-b2473675.html", - "pubDate": "Fri, 05 Jan 2024 13:13:31 GMT", - "dc:creator": "Archie Mitchell", - "dc:date": "2024-01-05T13:13:31+00:00", - "content": "

Sir Howard Davies said people \u2018will have to save more\u2019 but that \u2018I don\u2019t think it is that difficult at the moment\u2019

", - "contentSnippet": "Sir Howard Davies said people \u2018will have to save more\u2019 but that \u2018I don\u2019t think it is that difficult at the moment\u2019", - "guid": "b2473675", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-05T13:13:31.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-05T13:09:51+00:00", - "title": "Tom Aspinall makes case against interim title defence amid talk of Alex Pereira fight", - "link": "https://www.independent.co.uk/sport/ufc/tom-aspinall-ufc-300-alex-pereira-b2473684.html", - "pubDate": "Fri, 05 Jan 2024 13:09:51 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-05T13:09:51+00:00", - "content": "

A source told The Independent that the UFC has made no contact over a potential fight between Aspinall and Pereira at UFC 300

", - "contentSnippet": "A source told The Independent that the UFC has made no contact over a potential fight between Aspinall and Pereira at UFC 300", - "guid": "b2473684", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2024-01-05T13:09:51.000Z" - }, - { - "creator": "Rachael Phillips", - "date": "2024-01-05T13:09:17+00:00", - "title": "12 best dehumidifiers to help tackle damp and mould at home", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/household-appliances/best-dehumidifier-uk-b1987947.html", - "pubDate": "Fri, 05 Jan 2024 13:09:17 GMT", - "dc:creator": "Rachael Phillips", - "dc:date": "2024-01-05T13:09:17+00:00", - "content": "

Speed up laundry-drying times while ousting odours with these tried and tested appliances

", - "contentSnippet": "Speed up laundry-drying times while ousting odours with these tried and tested appliances", - "guid": "b1987947", - "categories": [ - "Household Appliances", - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:09:17.000Z" - }, - { - "creator": "Andrea Blanco,Rachel Sharp,Mike Bedigan and Namita Singh", - "date": "2024-01-05T13:08:18+00:00", - "title": "Jeffrey Epstein list: New Clinton allegations revealed in second batch of unsealed documents", - "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-names-list-documents-b2473538.html", - "pubDate": "Fri, 05 Jan 2024 13:08:18 GMT", - "dc:creator": "Andrea Blanco,Rachel Sharp,Mike Bedigan and Namita Singh", - "dc:date": "2024-01-05T13:08:18+00:00", - "content": "

Ghislaine Maxwell, Prince Andrew, magician David Copperfield, Donald Trump, Stephen Hawking and Bill Clinton have all been named in the documents so far

", - "contentSnippet": "Ghislaine Maxwell, Prince Andrew, magician David Copperfield, Donald Trump, Stephen Hawking and Bill Clinton have all been named in the documents so far", - "guid": "b2472177", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-05T13:08:18.000Z" - }, - { - "creator": "Oliver O'Connell,Alex Woodward,Gustaf Kilander and Joe Sommerlad", - "date": "2024-01-05T13:07:20+00:00", - "title": "Trump accused of \u2018rampant illegality\u2019 over earnings as president: Live", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/donald-trump-foreign-money-ballot-2024-latest-b2473625.html", - "pubDate": "Fri, 05 Jan 2024 13:07:20 GMT", - "dc:creator": "Oliver O'Connell,Alex Woodward,Gustaf Kilander and Joe Sommerlad", - "dc:date": "2024-01-05T13:07:20+00:00", - "content": "

House Democrats investigate accounts from key Trump properties and say findings \u2018allow America to glimpse the corruption\u2019 of Republican\u2019s presidency

", - "contentSnippet": "House Democrats investigate accounts from key Trump properties and say findings \u2018allow America to glimpse the corruption\u2019 of Republican\u2019s presidency", - "guid": "b2463845", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-05T13:07:20.000Z" - }, - { - "creator": "Emmie Harrison-West", - "date": "2024-01-05T13:05:44+00:00", - "title": "6 best home beer dispensers for pouring the perfect draught pint ", - "link": "https://www.independent.co.uk/extras/indybest/food-drink/beer-cider-perry/best-home-beer-dispensers-b2335473.html", - "pubDate": "Fri, 05 Jan 2024 13:05:44 GMT", - "dc:creator": "Emmie Harrison-West", - "dc:date": "2024-01-05T13:05:44+00:00", - "content": "

Get beer on tap without leaving the comfort of your own home

", - "contentSnippet": "Get beer on tap without leaving the comfort of your own home", - "guid": "b2335473", - "categories": [ - "Beer, Cider & Perry", - "Food & Drink", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T13:05:44.000Z" - }, - { - "creator": "Michael Jones", - "date": "2024-01-05T13:04:10+00:00", - "title": "Transfer news LIVE: Arsenal told Toney price tag as Sancho heads for Man Utd exit and Firmino nears return", - "link": "https://www.independent.co.uk/sport/football/transfer-news-live-arsenal-liverpool-man-utd-b2473369.html", - "pubDate": "Fri, 05 Jan 2024 13:04:10 GMT", - "dc:creator": "Michael Jones", - "dc:date": "2024-01-05T13:04:10+00:00", - "content": "

Brentford have set a huge price for Arsenal and Chelsea target Toney, while Tottenham and Manchester United are also lining up January targets

", - "contentSnippet": "Brentford have set a huge price for Arsenal and Chelsea target Toney, while Tottenham and Manchester United are also lining up January targets", - "guid": "b2473369", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T13:04:10.000Z" - }, - { - "creator": "Richard Jolly", - "date": "2024-01-05T13:02:34+00:00", - "title": "How Wigan\u2019s Callum McManaman went from FA Cup final glory to retirement and back again", - "link": "https://www.independent.co.uk/sport/football/callum-mcmanaman-wigan-fa-cup-final-2013-b2473213.html", - "pubDate": "Fri, 05 Jan 2024 13:02:34 GMT", - "dc:creator": "Richard Jolly", - "dc:date": "2024-01-05T13:02:34+00:00", - "content": "

The player of the match in perhaps the greatest upset in FA Cup final history thought his football career was over a decade later, writes Richard Jolly, before a call from his former team offered him a fresh chance

", - "contentSnippet": "The player of the match in perhaps the greatest upset in FA Cup final history thought his football career was over a decade later, writes Richard Jolly, before a call from his former team offered him a fresh chance", - "guid": "b2473213", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T13:02:34.000Z" - }, - { - "creator": "Lawrence Ostlere", - "date": "2024-01-05T12:59:21+00:00", - "title": "England\u2019s Euro 2024 squad: Who\u2019s on the plane, who\u2019s in contention and who has work to do?", - "link": "https://www.independent.co.uk/sport/football/england-euro-2024-squad-b2473763.html", - "pubDate": "Fri, 05 Jan 2024 12:59:21 GMT", - "dc:creator": "Lawrence Ostlere", - "dc:date": "2024-01-05T12:59:21+00:00", - "content": "

A closer look at which England players are heading to Germany for Euro 2024 and who might miss out on the final 23

", - "contentSnippet": "A closer look at which England players are heading to Germany for Euro 2024 and who might miss out on the final 23", - "guid": "b2450917", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T12:59:21.000Z" - }, - { - "creator": "Jon Axworthy", - "date": "2024-01-05T12:53:28+00:00", - "title": "8 best rowing machines to kit out home gyms for building muscle and boosting fitness in 2024", - "link": "https://www.independent.co.uk/extras/indybest/outdoor-activity/best-home-rowing-machines-a8692191.html", - "pubDate": "Fri, 05 Jan 2024 12:53:28 GMT", - "dc:creator": "Jon Axworthy", - "dc:date": "2024-01-05T12:53:28+00:00", - "content": "

Resistance isn\u2019t futile \u2013 it\u2019s very, very good for you. These rowing machines will help

", - "contentSnippet": "Resistance isn\u2019t futile \u2013 it\u2019s very, very good for you. These rowing machines will help", - "guid": "a8692191", - "categories": [ - "Sports & Fitness", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T12:53:28.000Z" - }, - { - "creator": "Io Dodds ", - "date": "2024-01-05T12:51:39+00:00", - "title": "Jeffrey Epstein\u2019s island: What really happened there?", - "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-island-ghislaine-maxwell-b2473788.html", - "pubDate": "Fri, 05 Jan 2024 12:51:39 GMT", - "dc:creator": "Io Dodds ", - "dc:date": "2024-01-05T12:51:39+00:00", - "content": "

Accusers say billionaire\u2019s private paradise of Little St James in US Virgin Islands was centre of international sex trafficking ring

", - "contentSnippet": "Accusers say billionaire\u2019s private paradise of Little St James in US Virgin Islands was centre of international sex trafficking ring", - "guid": "b2111535", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-05T12:51:39.000Z" - }, - { - "creator": "Kate Devlin", - "date": "2024-01-05T12:50:55+00:00", - "title": "Starmer backs change in law on assisted dying ", - "link": "https://www.independent.co.uk/news/uk/politics/keir-starmer-assisted-dying-law-b2473787.html", - "pubDate": "Fri, 05 Jan 2024 12:50:55 GMT", - "dc:creator": "Kate Devlin", - "dc:date": "2024-01-05T12:50:55+00:00", - "content": "

Labour leader\u2019s comments come amid growing calls for reform

", - "contentSnippet": "Labour leader\u2019s comments come amid growing calls for reform", - "guid": "b2473787", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-05T12:50:55.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-05T12:49:29+00:00", - "title": "Telegraph bidder vows Abu Dhabi will be \u2018passive investor\u2019", - "link": "https://www.independent.co.uk/business/telegraph-bidder-vows-abu-dhabi-will-be-passive-investor-b2473786.html", - "pubDate": "Fri, 05 Jan 2024 12:49:29 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-05T12:49:29+00:00", - "content": "Last year the Government got involved in the deal, amid worries the authoritarian Gulf State could get a say over the journalism of the UK paper.", - "contentSnippet": "Last year the Government got involved in the deal, amid worries the authoritarian Gulf State could get a say over the journalism of the UK paper.", - "guid": "b2473786", - "categories": [ - "Business" - ], - "isoDate": "2024-01-05T12:49:29.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2024-01-05T12:49:28+00:00", - "title": "The alleged associates of Jeffrey Epstein: Names by numbers", - "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-associates-numbers-names-b2473785.html", - "pubDate": "Fri, 05 Jan 2024 12:49:28 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2024-01-05T12:49:28+00:00", - "content": "

Being identified through the court documents does not necessarily mean that the individual was involved in or aware of any wrongdoing by the disgraced financier

", - "contentSnippet": "Being identified through the court documents does not necessarily mean that the individual was involved in or aware of any wrongdoing by the disgraced financier", - "guid": "b2472983", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-05T12:49:28.000Z" - }, - { - "creator": "Andy Gregory", - "date": "2024-01-05T12:47:32+00:00", - "title": "What we know about Kim Jong Un\u2019s daughter \u2013 the \u2018successor\u2019 for North Korea at 10 years old", - "link": "https://www.independent.co.uk/news/world/asia/kim-jong-un-daughter-north-korea-b2473672.html", - "pubDate": "Fri, 05 Jan 2024 12:47:32 GMT", - "dc:creator": "Andy Gregory", - "dc:date": "2024-01-05T12:47:32+00:00", - "content": "

North Korea\u2019s state media bestowing rare praise on Kim Ju Ae, not enjoyed by her father until his position as future leader was set in stone

", - "contentSnippet": "North Korea\u2019s state media bestowing rare praise on Kim Ju Ae, not enjoyed by her father until his position as future leader was set in stone", - "guid": "b2473672", - "categories": [ - "Asia", - "World" - ], - "isoDate": "2024-01-05T12:47:32.000Z" - }, - { - "creator": "Adam Forrest", - "date": "2024-01-05T12:47:16+00:00", - "title": "Interest rate cuts will soften mortgage blow by \u00a311bn \u2013 but Brits still face \u00a319bn rise", - "link": "https://www.independent.co.uk/news/business/interest-rates-mortgages-bank-england-b2473777.html", - "pubDate": "Fri, 05 Jan 2024 12:47:16 GMT", - "dc:creator": "Adam Forrest", - "dc:date": "2024-01-05T12:47:16+00:00", - "content": "

Goldman Sachs says faster-than-expected fall in borrowing costs will ease the pain for millions

", - "contentSnippet": "Goldman Sachs says faster-than-expected fall in borrowing costs will ease the pain for millions", - "guid": "b2473777", - "categories": [ - "Business" - ], - "isoDate": "2024-01-05T12:47:16.000Z" - }, - { - "creator": "Amira Arasteh", - "date": "2024-01-05T12:47:13+00:00", - "title": "10 best IPL machines and laser hair removal devices to buy now for at-home salon results", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/beauty/best-ipl-machines-laser-hair-removal-devices-home-b2313633.html", - "pubDate": "Fri, 05 Jan 2024 12:47:13 GMT", - "dc:creator": "Amira Arasteh", - "dc:date": "2024-01-05T12:47:13+00:00", - "content": "

Cancel your next waxing appointment and throw out your razor in favour of these money-saving IPL and laser hair-removal devices

", - "contentSnippet": "Cancel your next waxing appointment and throw out your razor in favour of these money-saving IPL and laser hair-removal devices", - "guid": "b2313633", - "categories": [ - "Beauty", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T12:47:13.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-05T12:45:37+00:00", - "title": "PepsiCo products are being pulled from some Carrefour grocery stores in Europe over price hikes", - "link": "https://www.independent.co.uk/news/carrefour-ap-pepsico-quaker-oats-spain-b2473790.html", - "pubDate": "Fri, 05 Jan 2024 12:45:37 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-05T12:45:37+00:00", - "content": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", - "contentSnippet": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", - "guid": "b2473790", - "isoDate": "2024-01-05T12:45:37.000Z" - }, - { - "creator": "Vicky Shaw", - "date": "2024-01-05T12:42:33+00:00", - "title": "Average UK house price ended last year \u00a34,800 higher than at end of 2022 \u2013 index", - "link": "https://www.independent.co.uk/money/average-uk-house-price-ended-last-year-ps4-800-higher-than-at-end-of-2022-index-b2473655.html", - "pubDate": "Fri, 05 Jan 2024 12:42:33 GMT", - "dc:creator": "Vicky Shaw", - "dc:date": "2024-01-05T12:42:33+00:00", - "content": "The typical UK house price in December 2023 was \u00a3287,105, up from \u00a3282,305 in the same month a year earlier, Halifax said.", - "contentSnippet": "The typical UK house price in December 2023 was \u00a3287,105, up from \u00a3282,305 in the same month a year earlier, Halifax said.", - "guid": "b2473655", - "categories": [ - "Money" - ], - "isoDate": "2024-01-05T12:42:33.000Z" - }, - { - "creator": "Gerald Imray", - "date": "2024-01-05T12:42:25+00:00", - "title": "Track star, convicted killer, now parolee. A timeline of Oscar Pistorius's life", - "link": "https://www.independent.co.uk/news/oscar-pistorius-ap-reeva-steenkamp-south-africa-cape-town-b2473784.html", - "pubDate": "Fri, 05 Jan 2024 12:42:25 GMT", - "dc:creator": "Gerald Imray", - "dc:date": "2024-01-05T12:42:25+00:00", - "content": "A list of the major moments in the life of Oscar Pistorius, the South African double-amputee Olympic runner who was released from prison on parole Friday having served nearly nine years of a murder sentence for the 2013 killing of girlfriend Reeva Steenkamp", - "contentSnippet": "A list of the major moments in the life of Oscar Pistorius, the South African double-amputee Olympic runner who was released from prison on parole Friday having served nearly nine years of a murder sentence for the 2013 killing of girlfriend Reeva Steenkamp", - "guid": "b2473784", - "isoDate": "2024-01-05T12:42:25.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-05T12:42:09+00:00", - "title": "Chelsea ban season-ticket holder who barged into Newcastle goalkeeper Martin Dubravka", - "link": "https://www.independent.co.uk/sport/football/chelsea-newcastle-pitch-invader-dubravka-ban-b2473782.html", - "pubDate": "Fri, 05 Jan 2024 12:42:09 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-05T12:42:09+00:00", - "content": "

The fan took to the pitch at Stamford Bridge after his side\u2019s late equaliser in the Carabao Cup quarter-final

", - "contentSnippet": "The fan took to the pitch at Stamford Bridge after his side\u2019s late equaliser in the Carabao Cup quarter-final", - "guid": "b2473782", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T12:42:09.000Z" - }, - { - "creator": "Rob Freeman", - "date": "2024-01-05T12:41:26+00:00", - "title": "David Warner finally reunited with stolen Australian cricket cap after prime minister\u2019s help", - "link": "https://www.independent.co.uk/sport/cricket/david-warner-baggy-green-cap-australia-b2473683.html", - "pubDate": "Fri, 05 Jan 2024 12:41:26 GMT", - "dc:creator": "Rob Freeman", - "dc:date": "2024-01-05T12:41:26+00:00", - "content": "

The opener revealed the missing cap had been returned midway through his final Test match

", - "contentSnippet": "The opener revealed the missing cap had been returned midway through his final Test match", - "guid": "b2473581", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2024-01-05T12:41:26.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-05T12:38:52+00:00", - "title": "Sophie Ellis-Bextor reveals her teenage son watched Saltburn with her", - "link": "https://www.independent.co.uk/tv/culture/saltburn-sophie-ellis-bextor-murder-dancefloor-b2473720.html", - "pubDate": "Fri, 05 Jan 2024 12:38:52 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-05T12:38:52+00:00", - "content": "

Sophie Ellis-Bextor said she watched Saltburn with her teenage son sat between her and his grandmother.

", - "contentSnippet": "Sophie Ellis-Bextor said she watched Saltburn with her teenage son sat between her and his grandmother.", - "guid": "b2473720", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-05T12:38:52.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-05T12:37:00+00:00", - "title": "Major supermarkets to reveal festive sales after bumper Christmas for rivals", - "link": "https://www.independent.co.uk/business/major-supermarkets-to-reveal-festive-sales-after-bumper-christmas-for-rivals-b2473779.html", - "pubDate": "Fri, 05 Jan 2024 12:37:00 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-05T12:37:00+00:00", - "content": "Sainsbury\u2019s, Tesco and Marks & Spencer will give investors an update on their recent sales.", - "contentSnippet": "Sainsbury\u2019s, Tesco and Marks & Spencer will give investors an update on their recent sales.", - "guid": "b2473779", - "categories": [ - "Business" - ], - "isoDate": "2024-01-05T12:37:00.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-05T12:35:50+00:00", - "title": "New Zealand MP performs haka in powerful maiden speech, resurfaced video shows", - "link": "https://www.independent.co.uk/tv/news/new-zealand-haka-parliament-maori-b2473725.html", - "pubDate": "Fri, 05 Jan 2024 12:35:50 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-05T12:35:50+00:00", - "content": "

A New Zealand MP performed a haka in a powerful speech for her first appearance in parliament, resurfaced video shows.

", - "contentSnippet": "A New Zealand MP performed a haka in a powerful speech for her first appearance in parliament, resurfaced video shows.", - "guid": "b2473725", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-05T12:35:50.000Z" - }, - { - "creator": "Tom Harle", - "date": "2024-01-05T12:32:13+00:00", - "title": "Dame Sarah Storey reveals how her son convinced her to target a ninth Paralympics", - "link": "https://www.independent.co.uk/sport/olympics/paralympics/dame-sarah-storey-paralympics-paris-2024-b2473760.html", - "pubDate": "Fri, 05 Jan 2024 12:32:13 GMT", - "dc:creator": "Tom Harle", - "dc:date": "2024-01-05T12:32:13+00:00", - "content": "

Great Britain\u2019s most-decorated Paralympian will try to add to her 17 gold medals at Paris 2024 \u2013 and the 46-year-old has her children to thank

", - "contentSnippet": "Great Britain\u2019s most-decorated Paralympian will try to add to her 17 gold medals at Paris 2024 \u2013 and the 46-year-old has her children to thank", - "guid": "b2473760", - "categories": [ - "Paralympics", - "Olympics", - "Sport" - ], - "isoDate": "2024-01-05T12:32:13.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-05T12:30:45+00:00", - "title": "Watch live: Oscar Pistorius to be seen for first time since prison release 11 years after Reeva Steenkamp murder", - "link": "https://www.independent.co.uk/news/oscar-pistorius-prison-release-livestream-b2473772.html", - "pubDate": "Fri, 05 Jan 2024 12:30:45 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-05T12:30:45+00:00", - "content": "

Watch live as Oscar Pistorius to be seen for first time since prison release 11 years after Reeva Steenkamp murder on Friday (5 January).

", - "contentSnippet": "Watch live as Oscar Pistorius to be seen for first time since prison release 11 years after Reeva Steenkamp murder on Friday (5 January).", - "guid": "b2473772", - "isoDate": "2024-01-05T12:30:45.000Z" - }, - { - "creator": "Martha McHardy", - "date": "2024-01-05T12:30:31+00:00", - "title": "Iowa school shooter\u2019s chilling final social media post revealed", - "link": "https://www.independent.co.uk/news/world/americas/crime/iowa-school-shooting-dylan-butler-final-post-b2473769.html", - "pubDate": "Fri, 05 Jan 2024 12:30:31 GMT", - "dc:creator": "Martha McHardy", - "dc:date": "2024-01-05T12:30:31+00:00", - "content": "

Dylan Butler, 17, was named as the gunman who opened fire in Perry High School in Iowa on Thursday

", - "contentSnippet": "Dylan Butler, 17, was named as the gunman who opened fire in Perry High School in Iowa on Thursday", - "guid": "b2473769", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-05T12:30:31.000Z" - }, - { - "creator": "Helen Wilson-Beevers", - "date": "2024-01-05T12:30:05+00:00", - "title": "14 best sunscreens for sensitive skin to protect you from UV rays", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/skincare/best-sunscreen-sensitive-skin-b1858138.html", - "pubDate": "Fri, 05 Jan 2024 12:30:05 GMT", - "dc:creator": "Helen Wilson-Beevers", - "dc:date": "2024-01-05T12:30:05+00:00", - "content": "

Look to these soothing SPF formulas that\u2019ll keep skin happy year-round

", - "contentSnippet": "Look to these soothing SPF formulas that\u2019ll keep skin happy year-round", - "guid": "b1858138", - "categories": [ - "Skincare", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T12:30:05.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2024-01-05T12:29:16+00:00", - "title": "In pictures: Storm Henk wreaks flood chaos across the UK", - "link": "https://www.independent.co.uk/news/uk/home-news/storm-henk-flood-map-uk-b2473734.html", - "pubDate": "Fri, 05 Jan 2024 12:29:16 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2024-01-05T12:29:16+00:00", - "content": "

Environment Agency issues more than 300 flood warnings after torrential downpours overnight on Thursday

", - "contentSnippet": "Environment Agency issues more than 300 flood warnings after torrential downpours overnight on Thursday", - "guid": "b2473734", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-05T12:29:16.000Z" - }, - { - "creator": "The Associated Press", - "date": "2024-01-05T12:28:11+00:00", - "title": "Ukraine unleashes more drones and missiles at Russian areas as part of its new year strategy", - "link": "https://www.independent.co.uk/news/ukraine-ap-kyiv-crimea-moscow-b2473775.html", - "pubDate": "Fri, 05 Jan 2024 12:28:11 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2024-01-05T12:28:11+00:00", - "content": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", - "contentSnippet": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", - "guid": "b2473775", - "isoDate": "2024-01-05T12:28:11.000Z" - }, - { - "creator": "Tamara Hinson", - "date": "2024-01-05T12:26:29+00:00", - "title": "9 best packing cubes to help keep your suitcase organised while travelling", - "link": "https://www.independent.co.uk/extras/indybest/travel-outdoors/best-packing-cubes-suitcase-b1805563.html", - "pubDate": "Fri, 05 Jan 2024 12:26:29 GMT", - "dc:creator": "Tamara Hinson", - "dc:date": "2024-01-05T12:26:29+00:00", - "content": "

These luggage lifesavers are the perfect companion for your next trip

", - "contentSnippet": "These luggage lifesavers are the perfect companion for your next trip", - "guid": "b1805563", - "categories": [ - "Travel & outdoors", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T12:26:29.000Z" - }, - { - "creator": "Alex Ross", - "date": "2024-01-05T12:25:49+00:00", - "title": "Meet the man driving across the country to \u2018rescue\u2019 XL bully dogs ", - "link": "https://www.independent.co.uk/news/uk/home-news/xl-bully-dog-ban-rehome-b2473759.html", - "pubDate": "Fri, 05 Jan 2024 12:25:49 GMT", - "dc:creator": "Alex Ross", - "dc:date": "2024-01-05T12:25:49+00:00", - "content": "

Sammy Wilkinson has driven as far as Scotland from his West Midlands home to rehoming 35 XL Bully dogs since October

", - "contentSnippet": "Sammy Wilkinson has driven as far as Scotland from his West Midlands home to rehoming 35 XL Bully dogs since October", - "guid": "b2473759", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-05T12:25:49.000Z" - }, - { - "creator": "Rachael Phillips", - "date": "2024-01-05T12:24:19+00:00", - "title": "17 best kitchen knife sets for sharpening your culinary skills", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/kitchen-accessories/best-kitchen-knife-block-set-japanese-steel-budget-a9118261.html", - "pubDate": "Fri, 05 Jan 2024 12:24:19 GMT", - "dc:creator": "Rachael Phillips", - "dc:date": "2024-01-05T12:24:19+00:00", - "content": "

From Japanese steel to carbon and stainless, carve out a space for these high-quality blades

", - "contentSnippet": "From Japanese steel to carbon and stainless, carve out a space for these high-quality blades", - "guid": "a9118261", - "categories": [ - "Kitchen Accessories", - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T12:24:19.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-05T12:21:47+00:00", - "title": "Former detective details prison phone calls with Oscar Pistorius", - "link": "https://www.independent.co.uk/tv/news/oscar-pistorius-reeva-steencamp-prison-phone-calls-b2473756.html", - "pubDate": "Fri, 05 Jan 2024 12:21:47 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-05T12:21:47+00:00", - "content": "

A former detective and investigative journalist has detailed his prison phone calls with Oscar Pistorius.

", - "contentSnippet": "A former detective and investigative journalist has detailed his prison phone calls with Oscar Pistorius.", - "guid": "b2473756", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-05T12:21:47.000Z" - }, - { - "creator": "Zoe Phillimore", - "date": "2024-01-05T12:21:33+00:00", - "title": "13 best home security cameras to give you peace of mind", - "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/best-home-security-cameras-b1987806.html", - "pubDate": "Fri, 05 Jan 2024 12:21:33 GMT", - "dc:creator": "Zoe Phillimore", - "dc:date": "2024-01-05T12:21:33+00:00", - "content": "

Choose from indoor and outdoor devices to help keep an eye on the fort while you\u2019re away

", - "contentSnippet": "Choose from indoor and outdoor devices to help keep an eye on the fort while you\u2019re away", - "guid": "b1987806", - "categories": [ - "Tech", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T12:21:33.000Z" - }, - { - "creator": "Grant Peck", - "date": "2024-01-05T12:18:59+00:00", - "title": "Armed ethnic alliance in northern Myanmar is said to have seized a city that was a key goal", - "link": "https://www.independent.co.uk/news/ap-myanmar-china-bangkok-rakhine-state-b2473771.html", - "pubDate": "Fri, 05 Jan 2024 12:18:59 GMT", - "dc:creator": "Grant Peck", - "dc:date": "2024-01-05T12:18:59+00:00", - "content": "An alliance of ethnic armed groups in northeastern Myanmar has reportedly achieved one of the main goals it set when it launched an offensive last October by taking control of Laukkaing, a key city on the border with China", - "contentSnippet": "An alliance of ethnic armed groups in northeastern Myanmar has reportedly achieved one of the main goals it set when it launched an offensive last October by taking control of Laukkaing, a key city on the border with China", - "guid": "b2473771", - "isoDate": "2024-01-05T12:18:59.000Z" - }, - { - "creator": "Martha Alexander", - "date": "2024-01-05T12:16:12+00:00", - "title": " 19 best gifts and toys for six-year-olds to inspire fun and learning", - "link": "https://www.independent.co.uk/extras/indybest/kids/gifts/best-gifts-for-six-year-olds-girls-boys-b1925755.html", - "pubDate": "Fri, 05 Jan 2024 12:16:12 GMT", - "dc:creator": "Martha Alexander", - "dc:date": "2024-01-05T12:16:12+00:00", - "content": "

We\u2019ve compiled this handy guide to help you buy the right gift for a six-year-old

", - "contentSnippet": "We\u2019ve compiled this handy guide to help you buy the right gift for a six-year-old", - "guid": "b1925755", - "categories": [ - "Gifts", - "Kids", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T12:16:12.000Z" - }, - { - "creator": "Carl Markham", - "date": "2024-01-05T12:08:10+00:00", - "title": "Jurgen Klopp happy for Mohamed Salah and Wataru Endo\u2019s absences to be minimum", - "link": "https://www.independent.co.uk/sport/football/mohamed-salah-jurgen-klopp-egypt-japan-dominik-szoboszlai-b2473724.html", - "pubDate": "Fri, 05 Jan 2024 12:08:10 GMT", - "dc:creator": "Carl Markham", - "dc:date": "2024-01-05T12:08:10+00:00", - "content": "Salah is away with Egypt in the African Nations Cup, while Japan captain Endo is at the Asian Cup.", - "contentSnippet": "Salah is away with Egypt in the African Nations Cup, while Japan captain Endo is at the Asian Cup.", - "guid": "b2473724", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T12:08:10.000Z" - }, - { - "creator": "Alex Lee", - "date": "2024-01-05T12:05:23+00:00", - "title": "Best iPad deals January 2024: Offers on Apple\u2019s Pro, Air and Mini tablets", - "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/laptops-tablets/best-ipad-deals-cheap-offers-b2023092.html", - "pubDate": "Fri, 05 Jan 2024 12:05:23 GMT", - "dc:creator": "Alex Lee", - "dc:date": "2024-01-05T12:05:23+00:00", - "content": "

We\u2019ve searched for the cheapest prices on Apple tablets, so you don\u2019t have to

", - "contentSnippet": "We\u2019ve searched for the cheapest prices on Apple tablets, so you don\u2019t have to", - "guid": "b2023092", - "categories": [ - "Laptops & Tablets", - "Tech", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T12:05:23.000Z" - }, - { - "creator": "Tara Cobham", - "date": "2024-01-05T12:04:02+00:00", - "title": "Two teenagers arrested on suspicion of murder after Harry Pitman stabbed to death at NYE fireworks", - "link": "https://www.independent.co.uk/news/uk/crime/london-stabbing-harry-pitman-suspect-arrest-b2473681.html", - "pubDate": "Fri, 05 Jan 2024 12:04:02 GMT", - "dc:creator": "Tara Cobham", - "dc:date": "2024-01-05T12:04:02+00:00", - "content": "

The 16-year-old died in a \u2018spontaneous fight\u2019 as crowds gathered in Primrose Hill

", - "contentSnippet": "The 16-year-old died in a \u2018spontaneous fight\u2019 as crowds gathered in Primrose Hill", - "guid": "b2473681", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2024-01-05T12:04:02.000Z" - }, - { - "creator": "Arpan Rai", - "date": "2024-01-05T11:57:00+00:00", - "title": "Haneda airport crew remove charred wreckage of Japan Airlines plane from runway", - "link": "https://www.independent.co.uk/asia/japan/japan-plane-crash-haneda-airport-runway-clear-b2473743.html", - "pubDate": "Fri, 05 Jan 2024 11:57:00 GMT", - "dc:creator": "Arpan Rai", - "dc:date": "2024-01-05T11:57:00+00:00", - "content": "

Investigators also trying to retrieve plane\u2019s cockpit voice recorder to find clues leading to deadly collision with Coast Guard aircraft

", - "contentSnippet": "Investigators also trying to retrieve plane\u2019s cockpit voice recorder to find clues leading to deadly collision with Coast Guard aircraft", - "guid": "b2473743", - "categories": [ - "Japan", - "Asia" - ], - "isoDate": "2024-01-05T11:57:00.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-05T11:56:48+00:00", - "title": "Sky News presenter tells teenager who beat Tetris \u2018go outside and get fresh air\u2019", - "link": "https://www.independent.co.uk/tv/culture/sky-news-presenter-tetris-teenager-b2473729.html", - "pubDate": "Fri, 05 Jan 2024 11:56:48 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-05T11:56:48+00:00", - "content": "

A Sky News presenter tells a teenager who broke a Tetris record \"go outside\" and \"get some fresh air\".

", - "contentSnippet": "A Sky News presenter tells a teenager who broke a Tetris record \"go outside\" and \"get some fresh air\".", - "guid": "b2473729", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-05T11:56:48.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2024-01-05T11:53:54+00:00", - "title": "Indian Navy deploys warship after hijack bid on Liberia-flagged bulk carrier", - "link": "https://www.independent.co.uk/asia/india/indian-navy-patrol-somalia-coast-hijack-mv-lila-norfolk-b2473692.html", - "pubDate": "Fri, 05 Jan 2024 11:53:54 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2024-01-05T11:53:54+00:00", - "content": "

All 15 Indian crew members on board the vessel are safe

", - "contentSnippet": "All 15 Indian crew members on board the vessel are safe", - "guid": "b2473692", - "categories": [ - "India", - "Asia" - ], - "isoDate": "2024-01-05T11:53:54.000Z" - }, - { - "creator": "Chris Wilson", - "date": "2024-01-05T11:53:07+00:00", - "title": "7 of the best countries to visit in South America", - "link": "https://www.independent.co.uk/travel/south-america/best-countries-visit-south-america-b2472253.html", - "pubDate": "Fri, 05 Jan 2024 11:53:07 GMT", - "dc:creator": "Chris Wilson", - "dc:date": "2024-01-05T11:53:07+00:00", - "content": "

This continent contains some of the world\u2019s most amazing natural landscapes, enchanting cities and a fascinating history

", - "contentSnippet": "This continent contains some of the world\u2019s most amazing natural landscapes, enchanting cities and a fascinating history", - "guid": "b2472253", - "categories": [ - "South America", - "Travel" - ], - "isoDate": "2024-01-05T11:53:07.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-05T11:48:35+00:00", - "title": "Kate Garraway gives update on Derek Draper\u2019s health in last interview before his death", - "link": "https://www.independent.co.uk/tv/culture/derek-draper-dead-kate-garraway-interview-b2473744.html", - "pubDate": "Fri, 05 Jan 2024 11:48:35 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-05T11:48:35+00:00", - "content": "

Kate Garraway has revealed husband Derek Draper is back in hospital as she shared an update on his health.

", - "contentSnippet": "Kate Garraway has revealed husband Derek Draper is back in hospital as she shared an update on his health.", - "guid": "b2452766", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-05T11:48:35.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-05T11:48:00+00:00", - "title": "Sunderland apologizes to its fans for rebranding stadium bar in Newcastle colors for FA Cup game", - "link": "https://www.independent.co.uk/news/sunderland-ap-newcastle-england-stadium-of-light-b2473752.html", - "pubDate": "Fri, 05 Jan 2024 11:48:00 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-05T11:48:00+00:00", - "content": "Sunderland has scored a spectacular own-goal off the field well before its FA Cup showdown with archrival Newcastle", - "contentSnippet": "Sunderland has scored a spectacular own-goal off the field well before its FA Cup showdown with archrival Newcastle", - "guid": "b2473752", - "isoDate": "2024-01-05T11:48:00.000Z" - }, - { - "creator": "Damian Spellman", - "date": "2024-01-05T11:45:45+00:00", - "title": "Eddie Howe not worried about job security as Newcastle prepare for derby day", - "link": "https://www.independent.co.uk/sport/football/eddie-howe-sunderland-tyneside-champions-league-stadium-of-light-b2473749.html", - "pubDate": "Fri, 05 Jan 2024 11:45:45 GMT", - "dc:creator": "Damian Spellman", - "dc:date": "2024-01-05T11:45:45+00:00", - "content": "The Magpies have won only one of their last eight games and face Sunderland next.", - "contentSnippet": "The Magpies have won only one of their last eight games and face Sunderland next.", - "guid": "b2473749", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:45:45.000Z" - }, - { - "creator": "Adam Forrest", - "date": "2024-01-05T11:40:00+00:00", - "title": "Starmer suggests no tax cuts for two years under Labour without economic growth", - "link": "https://www.independent.co.uk/news/uk/politics/starmer-labour-tax-cuts-tories-election-b2473717.html", - "pubDate": "Fri, 05 Jan 2024 11:40:00 GMT", - "dc:creator": "Adam Forrest", - "dc:date": "2024-01-05T11:40:00+00:00", - "content": "

Labour leader says growth must come first, and concedes his \u00a328bn green energy investment could shrink

", - "contentSnippet": "Labour leader says growth must come first, and concedes his \u00a328bn green energy investment could shrink", - "guid": "b2473717", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-05T11:40:00.000Z" - }, - { - "creator": "Maanya Sachdeva", - "date": "2024-01-05T11:36:28+00:00", - "title": "Derek Draper death: Kate Garraway\u2019s husband dies after devastating Covid battle, aged 56", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/derek-draper-dead-kate-garraway-husband-covid-b2467103.html", - "pubDate": "Fri, 05 Jan 2024 11:36:28 GMT", - "dc:creator": "Maanya Sachdeva", - "dc:date": "2024-01-05T11:36:28+00:00", - "content": "

Former Labour party adviser was \u2018fighting for his life\u2019 in hospital after a cardiac arrest

", - "contentSnippet": "Former Labour party adviser was \u2018fighting for his life\u2019 in hospital after a cardiac arrest", - "guid": "b2467103", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-05T11:36:28.000Z" - }, - { - "creator": "Damian Spellman", - "date": "2024-01-05T11:34:07+00:00", - "title": "Eddie Howe reacts to \u2018inappropriate\u2019 bar blunder overshadowing Tyne-Wear derby", - "link": "https://www.independent.co.uk/sport/football/sunderland-newcastle-colours-bar-derby-eddie-howe-b2473735.html", - "pubDate": "Fri, 05 Jan 2024 11:34:07 GMT", - "dc:creator": "Damian Spellman", - "dc:date": "2024-01-05T11:34:07+00:00", - "content": "

Sunderland have apologised to fans after a bar at the Stadium of Light was decked out with \u2018inappropriate signage\u2019 in Newcastle colours ahead of the derby this weekend

", - "contentSnippet": "Sunderland have apologised to fans after a bar at the Stadium of Light was decked out with \u2018inappropriate signage\u2019 in Newcastle colours ahead of the derby this weekend", - "guid": "b2473731", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:34:07.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-05T11:30:33+00:00", - "title": "Davina McCall reveals she cried as friend unveiled as The Masked Singer character", - "link": "https://www.independent.co.uk/tv/culture/masked-singer-davina-mccall-cries-b2473696.html", - "pubDate": "Fri, 05 Jan 2024 11:30:33 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-05T11:30:33+00:00", - "content": "

Davina McCall has revealed she cried when discovering her friend was unveiled as a character on ITV\u2019s The Masked Singer.

", - "contentSnippet": "Davina McCall has revealed she cried when discovering her friend was unveiled as a character on ITV\u2019s The Masked Singer.", - "guid": "b2473696", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-05T11:30:33.000Z" - }, - { - "creator": "Tara Cobham", - "date": "2024-01-05T11:20:44+00:00", - "title": "Passenger \u2018found dead in bathroom\u2019 on flight from Tenerife to Manchester", - "link": "https://www.independent.co.uk/travel/news-and-advice/jet2-flight-dead-passenger-manchester-tenerife-b2473721.html", - "pubDate": "Fri, 05 Jan 2024 11:20:44 GMT", - "dc:creator": "Tara Cobham", - "dc:date": "2024-01-05T11:20:44+00:00", - "content": "

Fellow travellers reportedly noticed the toilet door had been locked for a while and alerted staff

", - "contentSnippet": "Fellow travellers reportedly noticed the toilet door had been locked for a while and alerted staff", - "guid": "b2473721", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2024-01-05T11:20:44.000Z" - }, - { - "creator": "Paul Wiseman", - "date": "2024-01-05T11:16:35+00:00", - "title": "Jobs report for December will likely conclude another solid year of hiring in 2023", - "link": "https://www.independent.co.uk/news/ap-jerome-powell-washington-americans-federal-reserve-b2473619.html", - "pubDate": "Fri, 05 Jan 2024 11:16:35 GMT", - "dc:creator": "Paul Wiseman", - "dc:date": "2024-01-05T11:16:35+00:00", - "content": "Bringing resurgent inflation down was never expected to be so relatively pain-free", - "contentSnippet": "Bringing resurgent inflation down was never expected to be so relatively pain-free", - "guid": "b2473619", - "isoDate": "2024-01-05T11:16:35.000Z" - }, - { - "creator": "Jake Offenhartz", - "date": "2024-01-05T11:16:14+00:00", - "title": "New York City is suing charter bus companies for transporting migrants from Texas", - "link": "https://www.independent.co.uk/news/greg-abbott-ap-texas-new-york-city-eric-adams-b2473589.html", - "pubDate": "Fri, 05 Jan 2024 11:16:14 GMT", - "dc:creator": "Jake Offenhartz", - "dc:date": "2024-01-05T11:16:14+00:00", - "content": "New York City is suing more than a dozen charter bus companies for their role in Texas Gov. Greg Abbott\u2019s operation to send tens of thousands of migrants to urban areas", - "contentSnippet": "New York City is suing more than a dozen charter bus companies for their role in Texas Gov. Greg Abbott\u2019s operation to send tens of thousands of migrants to urban areas", - "guid": "b2473589", - "isoDate": "2024-01-05T11:16:14.000Z" - }, - { - "creator": "Andy Gregory", - "date": "2024-01-05T11:14:31+00:00", - "title": "Mortgages \u2013 live: Price war to hit banks as rates fall below 4%", - "link": "https://www.independent.co.uk/news/uk/home-news/mortgage-deals-banks-natwest-latest-b2473690.html", - "pubDate": "Fri, 05 Jan 2024 11:14:31 GMT", - "dc:creator": "Andy Gregory", - "dc:date": "2024-01-05T11:14:31+00:00", - "content": "

House prices rose by 1.7 per cent in 2023, index finds, as NatWest boss claims it\u2019s not \u2018that difficult\u2019 to get onto housing ladder

", - "contentSnippet": "House prices rose by 1.7 per cent in 2023, index finds, as NatWest boss claims it\u2019s not \u2018that difficult\u2019 to get onto housing ladder", - "guid": "b2473690", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-05T11:14:31.000Z" - }, - { - "creator": "Namita Singh and Holly Evans", - "date": "2024-01-05T11:14:14+00:00", - "title": "Oscar Pistorius released on parole and at home 11 years after murdering Reeva Steenkamp - live", - "link": "https://www.independent.co.uk/news/world/crime/oscar-pistorius-release-reeva-steenkamp-latest-b2473623.html", - "pubDate": "Fri, 05 Jan 2024 11:14:14 GMT", - "dc:creator": "Namita Singh and Holly Evans", - "dc:date": "2024-01-05T11:14:14+00:00", - "content": "

Pistorius admitted to system of community corrections and is now at home

", - "contentSnippet": "Pistorius admitted to system of community corrections and is now at home", - "guid": "b2473325", - "categories": [ - "World - Crime", - "World" - ], - "isoDate": "2024-01-05T11:14:14.000Z" - }, - { - "creator": "Joe Sommerlad", - "date": "2024-01-05T11:10:18+00:00", - "title": "Nikki Haley digs another hole over Civil War comments: \u2018I had Black friends growing up\u2019", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/nikki-haley-civil-war-slavery-cnn-town-hall-b2473704.html", - "pubDate": "Fri, 05 Jan 2024 11:10:18 GMT", - "dc:creator": "Joe Sommerlad", - "dc:date": "2024-01-05T11:10:18+00:00", - "content": "

The Republican candidate appeared on stage at a CNN town hall on Thursday night where her attempt to address her slavery omission was likened to \u2018cleaning up with a dirty rag\u2019

", - "contentSnippet": "The Republican candidate appeared on stage at a CNN town hall on Thursday night where her attempt to address her slavery omission was likened to \u2018cleaning up with a dirty rag\u2019", - "guid": "b2473704", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-05T11:10:18.000Z" - }, - { - "creator": "Richard Jolly", - "date": "2024-01-05T11:07:14+00:00", - "title": "Liverpool give update on Dominik Szoboszlai injury", - "link": "https://www.independent.co.uk/sport/football/dominik-szoboszlai-injury-liverpool-jurgen-klopp-b2473728.html", - "pubDate": "Fri, 05 Jan 2024 11:07:14 GMT", - "dc:creator": "Richard Jolly", - "dc:date": "2024-01-05T11:07:14+00:00", - "content": "

Midfielder Szoboszlai hurt his hamstring in the New Year\u2019s Day win over Newcastle

", - "contentSnippet": "Midfielder Szoboszlai hurt his hamstring in the New Year\u2019s Day win over Newcastle", - "guid": "b2473728", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:07:14.000Z" - }, - { - "creator": "Ellie Muir", - "date": "2024-01-05T11:06:36+00:00", - "title": "HMRC rolls out \u2018side hustle tax\u2019 for online sellers on eBay, Vinted and more", - "link": "https://www.independent.co.uk/life-style/vinted-depop-ebay-hmrc-tax-how-much-b2472249.html", - "pubDate": "Fri, 05 Jan 2024 11:06:36 GMT", - "dc:creator": "Ellie Muir", - "dc:date": "2024-01-05T11:06:36+00:00", - "content": "

Dgital platforms such as eBay, Airbnb, Etsy, Amazon and Vinted must now share seller information with HMRC

", - "contentSnippet": "Dgital platforms such as eBay, Airbnb, Etsy, Amazon and Vinted must now share seller information with HMRC", - "guid": "b2472249", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-05T11:06:36.000Z" - }, - { - "creator": "Adam Forrest and Laura Elston", - "date": "2024-01-05T11:04:49+00:00", - "title": "Keir Starmer says police should be willing to look into Prince Andrew allegations", - "link": "https://www.independent.co.uk/news/uk/politics/starmer-prince-andrew-epstein-police-b2473726.html", - "pubDate": "Fri, 05 Jan 2024 11:04:49 GMT", - "dc:creator": "Adam Forrest and Laura Elston", - "dc:date": "2024-01-05T11:04:49+00:00", - "content": "

Investigators should look at victims\u2019 claims \u2018whoever\u2019 is accused, says Labour leader

", - "contentSnippet": "Investigators should look at victims\u2019 claims \u2018whoever\u2019 is accused, says Labour leader", - "guid": "b2473726", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-05T11:04:49.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-05T10:59:52+00:00", - "title": "David Tennant hails \u2018honour\u2019 of being selected as 2024 Baftas host", - "link": "https://www.independent.co.uk/tv/culture/baftas-2024-david-tennant-host-b2473714.html", - "pubDate": "Fri, 05 Jan 2024 10:59:52 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-05T10:59:52+00:00", - "content": "

David Tennant has spoken of the \"honour\" of being selected as the host for the 2024 Baftas.

", - "contentSnippet": "David Tennant has spoken of the \"honour\" of being selected as the host for the 2024 Baftas.", - "guid": "b2473714", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-05T10:59:52.000Z" - }, - { - "creator": "Anthony Cuthbertson", - "date": "2024-01-05T10:55:04+00:00", - "title": "Hackers discover way to access Google accounts without a password", - "link": "https://www.independent.co.uk/tech/google-security-hack-cookies-password-b2473319.html", - "pubDate": "Fri, 05 Jan 2024 10:55:04 GMT", - "dc:creator": "Anthony Cuthbertson", - "dc:date": "2024-01-05T10:55:04+00:00", - "content": "

\u2018Exploit enables continuous access to Google services, even after a user\u2019s password is reset,\u2019 researcher warns

", - "contentSnippet": "\u2018Exploit enables continuous access to Google services, even after a user\u2019s password is reset,\u2019 researcher warns", - "guid": "b2473319", - "categories": [ - "Tech" - ], - "isoDate": "2024-01-05T10:55:04.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-05T10:53:51+00:00", - "title": "Spice Girls star on Royal Mail stamps for 30th anniversary celebrations", - "link": "https://www.independent.co.uk/tv/culture/spice-girls-royal-mail-stamps-30th-anniversary-b2473705.html", - "pubDate": "Fri, 05 Jan 2024 10:53:51 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-05T10:53:51+00:00", - "content": "

A new set of stamps will come with a special dose of zig-a-zig ah as they celebrate the 30th anniversary of the Spice Girls.

", - "contentSnippet": "A new set of stamps will come with a special dose of zig-a-zig ah as they celebrate the 30th anniversary of the Spice Girls.", - "guid": "b2473705", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-05T10:53:51.000Z" - }, - { - "creator": "Richard Franks", - "date": "2024-01-05T10:53:11+00:00", - "title": "How to spend a day in Haight-Ashbury, San Francisco\u2019s historic home of counterculture", - "link": "https://www.independent.co.uk/travel/north-america/usa/california/haight-ashbury-san-francisco-guide-b2473303.html", - "pubDate": "Fri, 05 Jan 2024 10:53:11 GMT", - "dc:creator": "Richard Franks", - "dc:date": "2024-01-05T10:53:11+00:00", - "content": "

The Summer of Love bestowed this district with its bone fide cool factor in the 1960s, but Richard Franks discovers that it still remains in hipster stores, diverse places to eat and on-trend bars

", - "contentSnippet": "The Summer of Love bestowed this district with its bone fide cool factor in the 1960s, but Richard Franks discovers that it still remains in hipster stores, diverse places to eat and on-trend bars", - "guid": "b2473303", - "categories": [ - "California", - "USA", - "North America", - "Travel" - ], - "isoDate": "2024-01-05T10:53:11.000Z" - }, - { - "creator": "Sabine Wiesel", - "date": "2024-01-05T10:50:39+00:00", - "title": "12 best hair straighteners, tried and tested for every hair type and budget", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/hair/best-hair-straighteners-a9548571.html", - "pubDate": "Fri, 05 Jan 2024 10:50:39 GMT", - "dc:creator": "Sabine Wiesel", - "dc:date": "2024-01-05T10:50:39+00:00", - "content": "

Our beauty expert reviewed top-rated hair straighteners for salon-worthy results

", - "contentSnippet": "Our beauty expert reviewed top-rated hair straighteners for salon-worthy results", - "guid": "a9548571", - "categories": [ - "Hair", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-05T10:50:39.000Z" - }, - { - "creator": "Andrea Blanco", - "date": "2024-01-05T00:06:15+00:00", - "title": "Clinton, Vanity Fair and Giuffre\u2019s memoir: Second batch of Epstein documents unsealed", - "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-documents-second-b2473572.html", - "pubDate": "Fri, 05 Jan 2024 00:06:15 GMT", - "dc:creator": "Andrea Blanco", - "dc:date": "2024-01-05T00:06:15+00:00", - "content": "

More than 300 pages stemming from a 2015 lawsuit between Virginia Giuffre and Ghislaine Maxwell were unsealed on Thursday

", - "contentSnippet": "More than 300 pages stemming from a 2015 lawsuit between Virginia Giuffre and Ghislaine Maxwell were unsealed on Thursday", - "guid": "b2473572", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-05T00:06:15.000Z" - }, - { - "creator": "Maryam Zakir-Hussain", - "date": "2024-01-04T22:17:44+00:00", - "title": "Torrential rain lashes UK as flash flooding forces residents to evacuate", - "link": "https://www.independent.co.uk/weather/flood-weather-storm-henk-rain-b2473519.html", - "pubDate": "Thu, 04 Jan 2024 22:17:44 GMT", - "dc:creator": "Maryam Zakir-Hussain", - "dc:date": "2024-01-04T22:17:44+00:00", - "content": "

Yellow weather warning remains in place until 3am on Friday

", - "contentSnippet": "Yellow weather warning remains in place until 3am on Friday", - "guid": "b2473519", - "categories": [ - "Weather" - ], - "isoDate": "2024-01-04T22:17:44.000Z" - }, - { - "creator": "Samuel Mathewson ", - "date": "2023-12-15T12:03:00+00:00", - "title": "Best men\u2019s knitwear 2024, from cardigans to cashmere", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/mens-clothing/best-mens-knitwear-b2461690.html", - "pubDate": "Fri, 15 Dec 2023 12:03:00 GMT", - "dc:creator": "Samuel Mathewson ", - "dc:date": "2023-12-15T12:03:00+00:00", - "content": "

From patterned and colourful to timeless classics, here\u2019s the best men\u2019s knitwear for winter dressing

", - "contentSnippet": "From patterned and colourful to timeless classics, here\u2019s the best men\u2019s knitwear for winter dressing", - "guid": "b2461690", - "categories": [ - "Men's Clothing", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2023-12-15T12:03:00.000Z" - }, - { - "creator": "Daisy Lester", - "date": "2022-11-03T16:47:54+00:00", - "title": "Best blanket hoodies for hunkering down this winter", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/best-blanket-hoodies-hooded-sleeves-uk-b2216712.html", - "pubDate": "Thu, 03 Nov 2022 16:47:54 GMT", - "dc:creator": "Daisy Lester", - "dc:date": "2022-11-03T16:47:54+00:00", - "content": "

An oversized wearable throw is a cost-effective way to keep warm

", - "contentSnippet": "An oversized wearable throw is a cost-effective way to keep warm", - "guid": "b2216712", - "categories": [ - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2022-11-03T16:47:54.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2024-01-05T13:59:15+00:00", - "title": "How a couple recovered $3,550 cash after Cecil the dog ate it: \u2018It smelled so bad\u2019", - "link": "https://www.independent.co.uk/news/world/americas/cecil-dog-ate-cash-pennsylvania-b2473816.html", - "pubDate": "Fri, 05 Jan 2024 13:59:15 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2024-01-05T13:59:15+00:00", - "content": "

Cecil the dog, who previously had \u2018never done anything bad in his life\u2019, was reportedly not hurt after his expensive meal on Friday

", - "contentSnippet": "Cecil the dog, who previously had \u2018never done anything bad in his life\u2019, was reportedly not hurt after his expensive meal on Friday", - "guid": "b2473476", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-05T13:59:15.000Z" - }, - { - "creator": "Daisy Lester", - "date": "2024-01-05T14:04:18+00:00", - "title": "Royal Mail\u2019s Spice Girls stamps are about to spice up your life", - "link": "https://www.independent.co.uk/indybest/royal-mail-spice-girls-stamps-how-buy-b2473753.html", - "pubDate": "Fri, 05 Jan 2024 14:04:18 GMT", - "dc:creator": "Daisy Lester", - "dc:date": "2024-01-05T14:04:18+00:00", - "content": "

Viva forever! The stamps we didn\u2019t know we needed are here

", - "contentSnippet": "Viva forever! The stamps we didn\u2019t know we needed are here", - "guid": "b2473753", - "categories": [ - "IndyBest" - ], - "isoDate": "2024-01-05T14:04:18.000Z" - }, - { - "creator": "Archie Mitchell", - "date": "2024-01-05T14:02:55+00:00", - "title": "Rishi Sunak\u2019s tax cuts will not ease the burden, economists warn, as National insurance cut ", - "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-tax-cut-rachel-reeves-national-insurance-b2473799.html", - "pubDate": "Fri, 05 Jan 2024 14:02:55 GMT", - "dc:creator": "Archie Mitchell", - "dc:date": "2024-01-05T14:02:55+00:00", - "content": "

The Institute for Fiscal Studies personal taxes are rising despite Rishi Sunak and Jeremy Hunt\u2019s much-hyped tax cuts

", - "contentSnippet": "The Institute for Fiscal Studies personal taxes are rising despite Rishi Sunak and Jeremy Hunt\u2019s much-hyped tax cuts", - "guid": "b2473799", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-05T14:02:55.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-11T21:12:46+00:00", - "title": "FCC chair asks automakers about plans to stop abusers from using car electronics to stalk partners", - "link": "https://www.independent.co.uk/news/ap-fcc-detroit-the-new-york-times-toyota-b2477325.html", - "pubDate": "Thu, 11 Jan 2024 21:12:46 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-11T21:12:46+00:00", - "content": "The top U.S. telecommunications regulator is asking automakers how they plan to protect people from being stalked or harassed by partners who have access to vehicle location and other data", - "contentSnippet": "The top U.S. telecommunications regulator is asking automakers how they plan to protect people from being stalked or harassed by partners who have access to vehicle location and other data", - "guid": "b2477325", - "isoDate": "2024-01-11T21:12:46.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2024-01-11T20:58:49+00:00", - "title": "Rishi Sunak holding full Cabinet over potential strike after Houthi Red Sea attacks", - "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-emergency-cabinet-meeting-yemen-b2477280.html", - "pubDate": "Thu, 11 Jan 2024 20:58:49 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2024-01-11T20:58:49+00:00", - "content": "

Emergency Cobra meeting said to have taken place on Thursday morning followed by a meeting of the National Security Council

", - "contentSnippet": "Emergency Cobra meeting said to have taken place on Thursday morning followed by a meeting of the National Security Council", - "guid": "b2477280", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-11T20:58:49.000Z" - }, - { - "creator": "Alex Lee", - "date": "2024-01-11T20:57:21+00:00", - "title": "4 Dragons\u2019 Den companies to know, from Secret Garden Glamping to Nini skincare", - "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/television/dragons-den-companies-glamping-skincare-b2477054.html", - "pubDate": "Thu, 11 Jan 2024 20:57:21 GMT", - "dc:creator": "Alex Lee", - "dc:date": "2024-01-11T20:57:21+00:00", - "content": "

We also saw an app for renters looking to get on the housing ladder, and a RuckRaft for outdoor adventures

", - "contentSnippet": "We also saw an app for renters looking to get on the housing ladder, and a RuckRaft for outdoor adventures", - "guid": "b2477054", - "categories": [ - "Television", - "Tech", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-11T20:57:21.000Z" - }, - { - "creator": "Isabel Debre", - "date": "2024-01-11T20:56:58+00:00", - "title": "Palestinian viewers are captivated and moved by case at UN's top court accusing Israel of genocide", - "link": "https://www.independent.co.uk/news/world/europe/gaza-strip-ap-south-africa-israel-palestinian-b2477319.html", - "pubDate": "Thu, 11 Jan 2024 20:56:58 GMT", - "dc:creator": "Isabel Debre", - "dc:date": "2024-01-11T20:56:58+00:00", - "content": "Palestinians across the occupied West Bank and east Jerusalem have been captivated by the proceedings in a faraway courtroom where the first hearing in an unprecedented case against Israel was held", - "contentSnippet": "Palestinians across the occupied West Bank and east Jerusalem have been captivated by the proceedings in a faraway courtroom where the first hearing in an unprecedented case against Israel was held", - "guid": "b2477319", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-11T20:56:58.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-11T20:53:48+00:00", - "title": "Tesla is raising factory worker pay as auto union tries to organize its electric vehicle plants", - "link": "https://www.independent.co.uk/news/tesla-ap-united-auto-workers-detroit-bloomberg-news-b2477316.html", - "pubDate": "Thu, 11 Jan 2024 20:53:48 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-11T20:53:48+00:00", - "content": "Factory workers at Tesla have been told to expect pay raises this year", - "contentSnippet": "Factory workers at Tesla have been told to expect pay raises this year", - "guid": "b2477316", - "isoDate": "2024-01-11T20:53:48.000Z" - }, - { - "creator": "Andrea Blanco", - "date": "2024-01-11T20:53:45+00:00", - "title": "Ohio woman who miscarried in her toilet is cleared of charges", - "link": "https://www.independent.co.uk/news/world/americas/abortion-miscarriage-charges-ohio-grand-jury-b2477278.html", - "pubDate": "Thu, 11 Jan 2024 20:53:45 GMT", - "dc:creator": "Andrea Blanco", - "dc:date": "2024-01-11T20:53:45+00:00", - "content": "

Brittany Watts, 34, miscarried after visiting the emergency room twice without being able to get treatment

", - "contentSnippet": "Brittany Watts, 34, miscarried after visiting the emergency room twice without being able to get treatment", - "guid": "b2477278", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-11T20:53:45.000Z" - }, - { - "creator": "Kaleigh Werner", - "date": "2024-01-11T20:53:37+00:00", - "title": "Chris Pratt shares his morning routine with his three children", - "link": "https://www.independent.co.uk/life-style/chris-pratt-morning-routine-children-b2477181.html", - "pubDate": "Thu, 11 Jan 2024 20:53:37 GMT", - "dc:creator": "Kaleigh Werner", - "dc:date": "2024-01-11T20:53:37+00:00", - "content": "

\u2018When I said that I was up before the kids yesterday, I was, and now up before the kids today,\u2019 the actor says

", - "contentSnippet": "\u2018When I said that I was up before the kids yesterday, I was, and now up before the kids today,\u2019 the actor says", - "guid": "b2477181", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-11T20:53:37.000Z" - }, - { - "creator": "Helen Coffey", - "date": "2024-01-11T20:53:08+00:00", - "title": "Google Flights feature gives you money back on your flights - without changing them", - "link": "https://www.independent.co.uk/travel/news-and-advice/google-flights-price-guarantee-airfare-b2314469.html", - "pubDate": "Thu, 11 Jan 2024 20:53:08 GMT", - "dc:creator": "Helen Coffey", - "dc:date": "2024-01-11T20:53:08+00:00", - "content": "

Travellers could receive up to $500 by using Google Flights\u2019 price guarantee tool

", - "contentSnippet": "Travellers could receive up to $500 by using Google Flights\u2019 price guarantee tool", - "guid": "b2314469", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2024-01-11T20:53:08.000Z" - }, - { - "creator": "Kevin E G Perry", - "date": "2024-01-11T20:51:09+00:00", - "title": "Vincent Gallo accused of making threatening, sexual comments during auditions", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/vincent-gallo-sexual-misconduct-golden-state-killer-b2477300.html", - "pubDate": "Thu, 11 Jan 2024 20:51:09 GMT", - "dc:creator": "Kevin E G Perry", - "dc:date": "2024-01-11T20:51:09+00:00", - "content": "

Two women who tried out for roles in Golden State Killer drama \u2018The Policeman\u2019 lodged complaints with SAG-AFTRA

", - "contentSnippet": "Two women who tried out for roles in Golden State Killer drama \u2018The Policeman\u2019 lodged complaints with SAG-AFTRA", - "guid": "b2477300", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2024-01-11T20:51:09.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-11T20:49:57+00:00", - "title": "Fox town hall with Trump draws more TV viewers than debate between Haley and DeSantis", - "link": "https://www.independent.co.uk/news/ap-nikki-haley-trump-ron-desantis-republican-b2477317.html", - "pubDate": "Thu, 11 Jan 2024 20:49:57 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-11T20:49:57+00:00", - "content": "Former President Donald Trump reached an estimated 4.3 million viewers during his live town hall on Fox News Wednesday night", - "contentSnippet": "Former President Donald Trump reached an estimated 4.3 million viewers during his live town hall on Fox News Wednesday night", - "guid": "b2477317", - "isoDate": "2024-01-11T20:49:57.000Z" - }, - { - "creator": "Jeffrey Collins", - "date": "2024-01-11T20:49:06+00:00", - "title": "Microscopic fibers link couple to 5-year-old son's strangulation 34 years ago, sheriff says", - "link": "https://www.independent.co.uk/news/ap-south-carolina-b2477315.html", - "pubDate": "Thu, 11 Jan 2024 20:49:06 GMT", - "dc:creator": "Jeffrey Collins", - "dc:date": "2024-01-11T20:49:06+00:00", - "content": "Investigators long thought a 5-year-old South Carolina boy found strangled in 1989 had been killed by his father and stepmother", - "contentSnippet": "Investigators long thought a 5-year-old South Carolina boy found strangled in 1989 had been killed by his father and stepmother", - "guid": "b2477315", - "isoDate": "2024-01-11T20:49:06.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-11T20:48:16+00:00", - "title": "Tornado destroys building in 10 seconds as it rips through South Carolina", - "link": "https://www.independent.co.uk/tv/news/weather-south-carolina-tornado-bamberg-b2477313.html", - "pubDate": "Thu, 11 Jan 2024 20:48:16 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-11T20:48:16+00:00", - "content": "

A tornado destroyed a South Carolina building in ten seconds, dramatic footage shows.

", - "contentSnippet": "A tornado destroyed a South Carolina building in ten seconds, dramatic footage shows.", - "guid": "b2477313", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-11T20:48:16.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2024-01-11T20:47:37+00:00", - "title": "New Mexico police officer charged with murder after shooting woman as she drove away", - "link": "https://www.independent.co.uk/news/world/americas/crime/police-officer-murder-new-mexico-b2477243.html", - "pubDate": "Thu, 11 Jan 2024 20:47:37 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2024-01-11T20:47:37+00:00", - "content": "

Felipe Hernandez is accused of shooting Teresa Gomez, 45, in Las Cruces last October

", - "contentSnippet": "Felipe Hernandez is accused of shooting Teresa Gomez, 45, in Las Cruces last October", - "guid": "b2477243", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-11T20:47:37.000Z" - }, - { - "creator": "Barney Davis", - "date": "2024-01-11T20:41:26+00:00", - "title": "Mother and her two dogs killed in horror crash \u2018hit and run\u2019 as teenager arrested", - "link": "https://www.independent.co.uk/news/uk/crime/enfield-crash-laura-sone-demetrious-b2477148.html", - "pubDate": "Thu, 11 Jan 2024 20:41:26 GMT", - "dc:creator": "Barney Davis", - "dc:date": "2024-01-11T20:41:26+00:00", - "content": "

Laura Sone-Demetrious was mourned by her family as she was killed walking her two dogs across the A10

", - "contentSnippet": "Laura Sone-Demetrious was mourned by her family as she was killed walking her two dogs across the A10", - "guid": "b2477148", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2024-01-11T20:41:26.000Z" - }, - { - "creator": "Andrea Blanco,Rachel Sharp and Andrea Cavallier", - "date": "2024-01-11T20:37:03+00:00", - "title": "Michelle Troconis defended by family outside her Jennifer Dulos murder conspiracy trial: Live", - "link": "https://www.independent.co.uk/news/world/americas/crime/michelle-troconis-trial-jennifer-dulos-fotis-murder-b2476918.html", - "pubDate": "Thu, 11 Jan 2024 20:37:03 GMT", - "dc:creator": "Andrea Blanco,Rachel Sharp and Andrea Cavallier", - "dc:date": "2024-01-11T20:37:03+00:00", - "content": "

Michelle Troconis is accused of helping then-boyfriend Fotis Dulos cover up the murder of his estranged wife Jennifer Dulos in Connecticut in 2019

", - "contentSnippet": "Michelle Troconis is accused of helping then-boyfriend Fotis Dulos cover up the murder of his estranged wife Jennifer Dulos in Connecticut in 2019", - "guid": "b2476918", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-11T20:37:03.000Z" - }, - { - "creator": "Andrea Cavallier", - "date": "2024-01-11T20:34:04+00:00", - "title": "Michelle Troconis trial kicks off with new bodycam video from Jennifer Dulos search", - "link": "https://www.independent.co.uk/news/world/americas/crime/jennifer-dulos-search-video-michelle-troconis-trial-b2477263.html", - "pubDate": "Thu, 11 Jan 2024 20:34:04 GMT", - "dc:creator": "Andrea Cavallier", - "dc:date": "2024-01-11T20:34:04+00:00", - "content": "

Troconis is accused of conspiring with her lover Fotis Dulos to murder his estranged wife Jennifer

", - "contentSnippet": "Troconis is accused of conspiring with her lover Fotis Dulos to murder his estranged wife Jennifer", - "guid": "b2477263", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-11T20:34:04.000Z" - }, - { - "creator": "Eric Garcia", - "date": "2024-01-11T20:33:43+00:00", - "title": "Voices: The GOP dumpster fire is getting worse \u2013 and even 2024 wins might not help", - "link": "https://www.independent.co.uk/voices/republican-dumpster-fire-civil-war-b2477131.html", - "pubDate": "Thu, 11 Jan 2024 20:33:43 GMT", - "dc:creator": "Eric Garcia", - "dc:date": "2024-01-11T20:33:43+00:00", - "content": "

Trump leads in all the polls, the government is barreling toward a shutdown and the world is on fire. Do Republicans care? No

", - "contentSnippet": "Trump leads in all the polls, the government is barreling toward a shutdown and the world is on fire. Do Republicans care? No", - "guid": "b2477131", - "categories": [ - "Voices" - ], - "isoDate": "2024-01-11T20:33:43.000Z" - }, - { - "creator": "Jabed Ahmed", - "date": "2024-01-11T20:30:21+00:00", - "title": "\u2018Incredibly bright\u2019 boy, 16, dies on railway tracks as heartbroken family pays tribute", - "link": "https://www.independent.co.uk/news/uk/home-news/leo-barber-death-shortland-station-bromley-b2477127.html", - "pubDate": "Thu, 11 Jan 2024 20:30:21 GMT", - "dc:creator": "Jabed Ahmed", - "dc:date": "2024-01-11T20:30:21+00:00", - "content": "

Leo Barber was found near Shortlands Station, Bromley

", - "contentSnippet": "Leo Barber was found near Shortlands Station, Bromley", - "guid": "b2477127", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-11T20:30:21.000Z" - }, - { - "creator": "Tom Murray", - "date": "2024-01-11T20:26:16+00:00", - "title": "Golden Globes host Jo Koy apologises for throwing his writers under the bus during monologue", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/golden-globes-jo-koy-monologue-writers-b2477295.html", - "pubDate": "Thu, 11 Jan 2024 20:26:16 GMT", - "dc:creator": "Tom Murray", - "dc:date": "2024-01-11T20:26:16+00:00", - "content": "

Koy claimed that the audience were only laughing at the jokes he wrote while presenting the recent Golden Globe Awards

", - "contentSnippet": "Koy claimed that the audience were only laughing at the jokes he wrote while presenting the recent Golden Globe Awards", - "guid": "b2477295", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-11T20:26:16.000Z" - }, - { - "creator": "Tom Canavan", - "date": "2024-01-11T20:25:22+00:00", - "title": "NFL Hall of Famer Michael Strahan's 19-year-old daughter is fighting cancer", - "link": "https://www.independent.co.uk/news/michael-strahan-ap-nfl-robin-roberts-new-york-b2477308.html", - "pubDate": "Thu, 11 Jan 2024 20:25:22 GMT", - "dc:creator": "Tom Canavan", - "dc:date": "2024-01-11T20:25:22+00:00", - "content": "The 19-year-old daughter of NFL Hall of Famer and \u201cGood Morning America\u201d co-anchor Michael Strahan is undergoing treatment for brain cancer", - "contentSnippet": "The 19-year-old daughter of NFL Hall of Famer and \u201cGood Morning America\u201d co-anchor Michael Strahan is undergoing treatment for brain cancer", - "guid": "b2477308", - "isoDate": "2024-01-11T20:25:22.000Z" - }, - { - "creator": "Richard Hall", - "date": "2024-01-11T20:24:01+00:00", - "title": "Fetterman says South Africa should focus on its own continent as it brings case of genocide against Israel", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/john-fetterman-south-africa-israel-b2477217.html", - "pubDate": "Thu, 11 Jan 2024 20:24:01 GMT", - "dc:creator": "Richard Hall", - "dc:date": "2024-01-11T20:24:01+00:00", - "content": "

Pennsylvania senator says it is \u2018appalling\u2019 that South Africa brought the case given its history

", - "contentSnippet": "Pennsylvania senator says it is \u2018appalling\u2019 that South Africa brought the case given its history", - "guid": "b2477217", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-11T20:24:01.000Z" - }, - { - "creator": "Zoe Grunewald", - "date": "2024-01-11T20:22:35+00:00", - "title": "Government got through 1,433 bottles of wine and spirits during the Covid pandemic, delayed report reveals", - "link": "https://www.independent.co.uk/news/uk/politics/government-wine-spirits-covid-foreign-office-b2477216.html", - "pubDate": "Thu, 11 Jan 2024 20:22:35 GMT", - "dc:creator": "Zoe Grunewald", - "dc:date": "2024-01-11T20:22:35+00:00", - "content": "

Labour has accused the government of living \u201cthe high life at taxpayers\u2019 expense\u201d after report reveals the extent of government alcohol consumption during the pandemic

", - "contentSnippet": "Labour has accused the government of living \u201cthe high life at taxpayers\u2019 expense\u201d after report reveals the extent of government alcohol consumption during the pandemic", - "guid": "b2477216", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-11T20:22:35.000Z" - }, - { - "creator": "Katie Hawkinson", - "date": "2024-01-11T20:21:00+00:00", - "title": "Florida school district pulls dictionaries, encyclopedias from shelves to review for sexual content", - "link": "https://www.independent.co.uk/news/world/americas/florida-escambia-school-district-dictionaries-b2477185.html", - "pubDate": "Thu, 11 Jan 2024 20:21:00 GMT", - "dc:creator": "Katie Hawkinson", - "dc:date": "2024-01-11T20:21:00+00:00", - "content": "

Escambia County School District has pulled more than 1,600 books to review them for pornography or depictions of sexual conduct

", - "contentSnippet": "Escambia County School District has pulled more than 1,600 books to review them for pornography or depictions of sexual conduct", - "guid": "b2477185", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-11T20:21:00.000Z" - }, - { - "creator": "Adam Forrest and Kate Devlin", - "date": "2024-01-11T20:17:50+00:00", - "title": "Sunak warned Post Office compensation not enough as hundreds of victims fall through cracks", - "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-post-office-billion-b2477234.html", - "pubDate": "Thu, 11 Jan 2024 20:17:50 GMT", - "dc:creator": "Adam Forrest and Kate Devlin", - "dc:date": "2024-01-11T20:17:50+00:00", - "content": "

Lawyers say hundreds of subpostmasters who have yet to make claims may be too \u2018traumatised\u2019 to come forward because of mistrust

", - "contentSnippet": "Lawyers say hundreds of subpostmasters who have yet to make claims may be too \u2018traumatised\u2019 to come forward because of mistrust", - "guid": "b2477234", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-11T20:17:50.000Z" - }, - { - "creator": "Alex Ross", - "date": "2024-01-11T20:16:33+00:00", - "title": "South West Water forced to apologise after sending hundreds of tanker loads of sewage to seaside resort", - "link": "https://www.independent.co.uk/climate-change/exmouth-sewage-south-west-water-b2476934.html", - "pubDate": "Thu, 11 Jan 2024 20:16:33 GMT", - "dc:creator": "Alex Ross", - "dc:date": "2024-01-11T20:16:33+00:00", - "content": "

South West Water transported up to 240 tanker loads of sewage through Exmouth every day due to a burst pipe

", - "contentSnippet": "South West Water transported up to 240 tanker loads of sewage through Exmouth every day due to a burst pipe", - "guid": "b2476934", - "categories": [ - "Climate" - ], - "isoDate": "2024-01-11T20:16:33.000Z" - }, - { - "creator": "Nilima Marshall", - "date": "2024-01-11T20:15:00+00:00", - "title": "Discovery of gargantuan ring structure \u2018challenges understanding of universe\u2019", - "link": "https://www.independent.co.uk/space/university-of-central-lancashire-scientists-moon-university-of-warwick-university-of-louisville-b2477306.html", - "pubDate": "Thu, 11 Jan 2024 20:15:00 GMT", - "dc:creator": "Nilima Marshall", - "dc:date": "2024-01-11T20:15:00+00:00", - "content": "The Big Ring is about 1.3 billion light-years in diameter.", - "contentSnippet": "The Big Ring is about 1.3 billion light-years in diameter.", - "guid": "b2477306", - "categories": [ - "Space" - ], - "isoDate": "2024-01-11T20:15:00.000Z" - }, - { - "creator": "Andrea Blanco,Rachel Sharp,Mike Bedigan and Maroosha Muzaffar", - "date": "2024-01-11T20:09:11+00:00", - "title": "Jeffrey Epstein list: New documents reveal paedophile\u2019s responses to sex trafficking claims", - "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-list-documents-latest-b2477302.html", - "pubDate": "Thu, 11 Jan 2024 20:09:11 GMT", - "dc:creator": "Andrea Blanco,Rachel Sharp,Mike Bedigan and Maroosha Muzaffar", - "dc:date": "2024-01-11T20:09:11+00:00", - "content": "

Donald Trump, Bill Clinton, Prince Andrew, Bill Richardson and other high profile figures have been named in the filings from a lawsuit between Virginia Giuffre and Ghislaine Maxwell

", - "contentSnippet": "Donald Trump, Bill Clinton, Prince Andrew, Bill Richardson and other high profile figures have been named in the filings from a lawsuit between Virginia Giuffre and Ghislaine Maxwell", - "guid": "b2472177", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-11T20:09:11.000Z" - }, - { - "creator": "Albert Toth and Katie Hawkinson", - "date": "2024-01-11T20:08:03+00:00", - "title": "Covid JN.1: Everything we know about the new Juno variant", - "link": "https://www.independent.co.uk/news/health/covid-new-variant-jn-1-symptoms-b2476910.html", - "pubDate": "Thu, 11 Jan 2024 20:08:03 GMT", - "dc:creator": "Albert Toth and Katie Hawkinson", - "dc:date": "2024-01-11T20:08:03+00:00", - "content": "

JN.1, nicknamed \u2018Juno\u2019, may now account for 70 percent of UK Covid cases

", - "contentSnippet": "JN.1, nicknamed \u2018Juno\u2019, may now account for 70 percent of UK Covid cases", - "guid": "b2476910", - "categories": [ - "Health" - ], - "isoDate": "2024-01-11T20:08:03.000Z" - }, - { - "creator": "Katie Dickinson", - "date": "2024-01-11T20:01:35+00:00", - "title": "Rob Burrow and Kevin Sinfield presented with CBEs by Prince of Wales in Leeds", - "link": "https://www.independent.co.uk/sport/prince-of-wales-rob-burrow-kevin-sinfield-mnd-leeds-b2477126.html", - "pubDate": "Thu, 11 Jan 2024 20:01:35 GMT", - "dc:creator": "Katie Dickinson", - "dc:date": "2024-01-11T20:01:35+00:00", - "content": "The former Leeds Rhinos pair received their honours from the Prince of Wales at Headingley Stadium.", - "contentSnippet": "The former Leeds Rhinos pair received their honours from the Prince of Wales at Headingley Stadium.", - "guid": "b2477126", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-11T20:01:35.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-11T19:59:43+00:00", - "title": "Argentina's annual inflation soars to 211.4%, the highest in 32 years", - "link": "https://www.independent.co.uk/news/argentina-ap-buenos-aires-latin-america-caribbean-b2477299.html", - "pubDate": "Thu, 11 Jan 2024 19:59:43 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-11T19:59:43+00:00", - "content": "Argentina's statistics agency says the country has registered a monthly inflation rate of 25.5% in December and closed 2023 with an annual inflation of 211.4%", - "contentSnippet": "Argentina's statistics agency says the country has registered a monthly inflation rate of 25.5% in December and closed 2023 with an annual inflation of 211.4%", - "guid": "b2477299", - "isoDate": "2024-01-11T19:59:43.000Z" - }, - { - "creator": "The Associated Press", - "date": "2024-01-11T19:59:17+00:00", - "title": "Bayreuth Festival to have three women conductors, three years after gender barrier broken", - "link": "https://www.independent.co.uk/news/richard-wagner-ap-australian-b2477298.html", - "pubDate": "Thu, 11 Jan 2024 19:59:17 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2024-01-11T19:59:17+00:00", - "content": "The Bayreuth Festival will have three female conductors this summer, three years after the podium gender barrier was broken at the annual showcase of Richard Wagner\u2019s operas", - "contentSnippet": "The Bayreuth Festival will have three female conductors this summer, three years after the podium gender barrier was broken at the annual showcase of Richard Wagner\u2019s operas", - "guid": "b2477298", - "isoDate": "2024-01-11T19:59:17.000Z" - }, - { - "creator": "Kelly Rissman", - "date": "2024-01-11T19:55:33+00:00", - "title": "Epstein\u2019s brother claims dead sex trafficker was \u2018just having a good time\u2019", - "link": "https://www.independent.co.uk/news/world/americas/epstein-brother-sex-trafficker-list-b2477142.html", - "pubDate": "Thu, 11 Jan 2024 19:55:33 GMT", - "dc:creator": "Kelly Rissman", - "dc:date": "2024-01-11T19:55:33+00:00", - "content": "

Mark Epstein said he refused to speculate on his brother\u2019s behaviour \u2018because I wasn\u2019t there\u2019

", - "contentSnippet": "Mark Epstein said he refused to speculate on his brother\u2019s behaviour \u2018because I wasn\u2019t there\u2019", - "guid": "b2477142", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-11T19:55:33.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-11T19:55:10+00:00", - "title": "Franz Welser-M\u00f6st to retire as Cleveland Orchestra music director in June 2027", - "link": "https://www.independent.co.uk/news/ap-cleveland-orchestra-carnegie-hall-severance-b2477297.html", - "pubDate": "Thu, 11 Jan 2024 19:55:10 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-11T19:55:10+00:00", - "content": "Franz Welser-M\u00f6st will retire as music director of the Cleveland Orchestra in June 2027, ending a 25-season tenure that will be the longest in the ensemble\u2019s history", - "contentSnippet": "Franz Welser-M\u00f6st will retire as music director of the Cleveland Orchestra in June 2027, ending a 25-season tenure that will be the longest in the ensemble\u2019s history", - "guid": "b2477297", - "isoDate": "2024-01-11T19:55:10.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2024-01-11T19:53:10+00:00", - "title": "DeSantis accuses Trump of \u2018massive, massive gaslighting\u2019 on Covid-19 response", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/ron-desantis-donald-trump-covid-b2477276.html", - "pubDate": "Thu, 11 Jan 2024 19:53:10 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2024-01-11T19:53:10+00:00", - "content": "

The presidential hopeful said his Republican nominee rival had \u2018dropped the ball\u2019 during the global pandemic

", - "contentSnippet": "The presidential hopeful said his Republican nominee rival had \u2018dropped the ball\u2019 during the global pandemic", - "guid": "b2477276", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-11T19:53:10.000Z" - }, - { - "creator": "Joe Middleton", - "date": "2024-01-11T19:43:33+00:00", - "title": "Price war erupts as six of seven major mortgage lenders slash rates", - "link": "https://www.independent.co.uk/news/uk/home-news/price-war-erupts-mortgage-lenders-b2476857.html", - "pubDate": "Thu, 11 Jan 2024 19:43:33 GMT", - "dc:creator": "Joe Middleton", - "dc:date": "2024-01-11T19:43:33+00:00", - "content": "

Top mortgage broker says major lenders are now engaged in a price war as rates dip below 4 per cent

", - "contentSnippet": "Top mortgage broker says major lenders are now engaged in a price war as rates dip below 4 per cent", - "guid": "b2476857", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-11T19:43:33.000Z" - }, - { - "creator": "Adam Forrest and Kate Devlin", - "date": "2024-01-11T19:43:23+00:00", - "title": "Post Office investigator denies behaving like \u2018Mafia gangster\u2019 over Horizon scandal", - "link": "https://www.independent.co.uk/news/uk/politics/post-office-horizon-scandal-inquiry-b2476978.html", - "pubDate": "Thu, 11 Jan 2024 19:43:23 GMT", - "dc:creator": "Adam Forrest and Kate Devlin", - "dc:date": "2024-01-11T19:43:23+00:00", - "content": "

Astonishing day of evidence sees fraud investigator forced to deny he \u2018collected bounty with threats and lies\u2019 \u2013 as Rishi Sunak is warned hundreds more victims could come forward

", - "contentSnippet": "Astonishing day of evidence sees fraud investigator forced to deny he \u2018collected bounty with threats and lies\u2019 \u2013 as Rishi Sunak is warned hundreds more victims could come forward", - "guid": "b2476978", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-11T19:43:23.000Z" - }, - { - "creator": "Kevin E G Perry", - "date": "2024-01-11T19:42:36+00:00", - "title": "George Carlin\u2019s daughter rebukes AI comedy special: \u2018No machine will ever replace his genius\u2019", - "link": "https://www.independent.co.uk/arts-entertainment/comedy/george-carlin-kelly-ai-comedy-special-b2477267.html", - "pubDate": "Thu, 11 Jan 2024 19:42:36 GMT", - "dc:creator": "Kevin E G Perry", - "dc:date": "2024-01-11T19:42:36+00:00", - "content": "

Kelly Carlin suggested: \u2018Here\u2019s an idea, how about we give some actual living human comedians a listen to?\u2019

", - "contentSnippet": "Kelly Carlin suggested: \u2018Here\u2019s an idea, how about we give some actual living human comedians a listen to?\u2019", - "guid": "b2477267", - "categories": [ - "Comedy", - "Culture" - ], - "isoDate": "2024-01-11T19:42:36.000Z" - }, - { - "creator": "Amber Raiken", - "date": "2024-01-11T19:40:30+00:00", - "title": " Carmen Electra files to legally change her name", - "link": "https://www.independent.co.uk/life-style/carmen-electra-name-change-b2477153.html", - "pubDate": "Thu, 11 Jan 2024 19:40:30 GMT", - "dc:creator": "Amber Raiken", - "dc:date": "2024-01-11T19:40:30+00:00", - "content": "

The model first discovered her stage name when working with Prince

", - "contentSnippet": "The model first discovered her stage name when working with Prince", - "guid": "b2477153", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-11T19:40:30.000Z" - }, - { - "creator": "Graig Graziosi", - "date": "2024-01-11T19:38:44+00:00", - "title": "New York prosecutor puts out call for whistleblowers to help uncover corruption", - "link": "https://www.independent.co.uk/news/world/americas/crime/new-york-prosecutor-whistleblowers-corruption-b2477270.html", - "pubDate": "Thu, 11 Jan 2024 19:38:44 GMT", - "dc:creator": "Graig Graziosi", - "dc:date": "2024-01-11T19:38:44+00:00", - "content": "

\u2018Call us before we call you,\u2019 the prosecutor said

", - "contentSnippet": "\u2018Call us before we call you,\u2019 the prosecutor said", - "guid": "b2477270", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-11T19:38:44.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-11T19:33:19+00:00", - "title": "Rome opens new archaeological park and museum in shadow of Colosseum", - "link": "https://www.independent.co.uk/news/ancient-rome-ap-museum-visitors-b2477289.html", - "pubDate": "Thu, 11 Jan 2024 19:33:19 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-11T19:33:19+00:00", - "content": "Rome authorities have inaugurated a new archaeological park and museum in the shadow of the Colosseum that features an original marble map of Ancient Rome that visitors can literally walk over", - "contentSnippet": "Rome authorities have inaugurated a new archaeological park and museum in the shadow of the Colosseum that features an original marble map of Ancient Rome that visitors can literally walk over", - "guid": "b2477289", - "isoDate": "2024-01-11T19:33:19.000Z" - }, - { - "creator": "Julie Carr Smyth", - "date": "2024-01-11T19:32:11+00:00", - "title": "Ohio woman who miscarried at home won't be charged with corpse abuse, grand jury decides", - "link": "https://www.independent.co.uk/news/ohio-ap-columbus-catholic-cleveland-b2477288.html", - "pubDate": "Thu, 11 Jan 2024 19:32:11 GMT", - "dc:creator": "Julie Carr Smyth", - "dc:date": "2024-01-11T19:32:11+00:00", - "content": "An Ohio woman who miscarried on a home toilet and then left the house will not be criminally charged for her handling of a home miscarriage", - "contentSnippet": "An Ohio woman who miscarried on a home toilet and then left the house will not be criminally charged for her handling of a home miscarriage", - "guid": "b2477288", - "isoDate": "2024-01-11T19:32:11.000Z" - }, - { - "creator": "Wayne Parry", - "date": "2024-01-11T19:28:46+00:00", - "title": "Through sobs, cargo ship officer says crew is 'broken' over deaths of 2 firefighters in blaze", - "link": "https://www.independent.co.uk/news/ap-union-america-italian-national-transportation-safety-board-b2477283.html", - "pubDate": "Thu, 11 Jan 2024 19:28:46 GMT", - "dc:creator": "Wayne Parry", - "dc:date": "2024-01-11T19:28:46+00:00", - "content": "A top officer of an Italian cargo ship that caught fire last summer in one of America\u2019s busiest seaports broke down in sobs recalling his crew\u2019s initial efforts to put out the blaze", - "contentSnippet": "A top officer of an Italian cargo ship that caught fire last summer in one of America\u2019s busiest seaports broke down in sobs recalling his crew\u2019s initial efforts to put out the blaze", - "guid": "b2477283", - "isoDate": "2024-01-11T19:28:46.000Z" - }, - { - "creator": "Hannah Twiggs", - "date": "2024-01-11T19:25:53+00:00", - "title": "The rise and fall of BrewDog: how the anarchic brewery went from progressive to problematic", - "link": "https://www.independent.co.uk/life-style/food-and-drink/features/brewdog-scandal-london-living-wage-b2477041.html", - "pubDate": "Thu, 11 Jan 2024 19:25:53 GMT", - "dc:creator": "Hannah Twiggs", - "dc:date": "2024-01-11T19:25:53+00:00", - "content": "

The unorthodox Scottish brewers have made a name for themselves over the last 17 years by making headlines with bold and outlandish marketing strategies, often in response to rulings and criticisms. But they\u2019ll have a hard time coming back from their latest blunder, writes Hannah Twiggs

", - "contentSnippet": "The unorthodox Scottish brewers have made a name for themselves over the last 17 years by making headlines with bold and outlandish marketing strategies, often in response to rulings and criticisms. But they\u2019ll have a hard time coming back from their latest blunder, writes Hannah Twiggs", - "guid": "b2477041", - "categories": [ - "Features", - "Food and Drink", - "Lifestyle" - ], - "isoDate": "2024-01-11T19:25:53.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2024-01-11T19:24:40+00:00", - "title": "South Africa accuses Israel of \u2018chilling\u2019 intent to commit genocide in Gaza during landmark court case", - "link": "https://www.independent.co.uk/news/world/middle-east/israel-court-un-south-africa-hague-b2477129.html", - "pubDate": "Thu, 11 Jan 2024 19:24:40 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2024-01-11T19:24:40+00:00", - "content": "

Israeli prime minister Benjamin Netanyahu says Petoria\u2019s \u2018hypocrisy screams to the heavens\u2019 as he denies the allegations. Israel will present its defence to the UN\u2019s top court on Friday

", - "contentSnippet": "Israeli prime minister Benjamin Netanyahu says Petoria\u2019s \u2018hypocrisy screams to the heavens\u2019 as he denies the allegations. Israel will present its defence to the UN\u2019s top court on Friday", - "guid": "b2477129", - "categories": [ - "Middle East", - "World" - ], - "isoDate": "2024-01-11T19:24:40.000Z" - }, - { - "creator": "Jake Coyle", - "date": "2024-01-11T19:23:38+00:00", - "title": "7 years after Weinstein, commission finds cultural shift in Hollywood but less accountability", - "link": "https://www.independent.co.uk/news/ap-anita-hill-hollywood-harvey-weinstein-new-york-b2477281.html", - "pubDate": "Thu, 11 Jan 2024 19:23:38 GMT", - "dc:creator": "Jake Coyle", - "dc:date": "2024-01-11T19:23:38+00:00", - "content": "A new survey of the entertainment industry finds that the culture of Hollywood has shifted in the years since the downfall of Harvey Weinstein and the launch of the #MeToo movement, but many still don\u2019t trust that sexual harassers will be held accountable", - "contentSnippet": "A new survey of the entertainment industry finds that the culture of Hollywood has shifted in the years since the downfall of Harvey Weinstein and the launch of the #MeToo movement, but many still don\u2019t trust that sexual harassers will be held accountable", - "guid": "b2477281", - "isoDate": "2024-01-11T19:23:38.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2024-01-11T19:19:03+00:00", - "title": "NFL coaching great Bill Belichick leaves New England Patriots after 24 years", - "link": "https://www.independent.co.uk/sport/bill-belichick-new-england-patriots-nfl-robert-kraft-tom-brady-b2477210.html", - "pubDate": "Thu, 11 Jan 2024 19:19:03 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2024-01-11T19:19:03+00:00", - "content": "Belichick, who had one year remaining on his contract, paid an emotional farewell to the Patriots at a press conference on Thursday.", - "contentSnippet": "Belichick, who had one year remaining on his contract, paid an emotional farewell to the Patriots at a press conference on Thursday.", - "guid": "b2477210", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-11T19:19:03.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-11T19:16:38+00:00", - "title": "Michael Strahan\u2019s teenage daughter breaks down as she shares cancer diagnosis", - "link": "https://www.independent.co.uk/tv/lifestyle/michael-strahan-daughter-cancer-diagnosis-b2477258.html", - "pubDate": "Thu, 11 Jan 2024 19:16:38 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-11T19:16:38+00:00", - "content": "

Michael Strahan\u2019s teenage daughter broke down in tears as she shared that she has been diagnosed with a rare form of brain cancer.

", - "contentSnippet": "Michael Strahan\u2019s teenage daughter broke down in tears as she shared that she has been diagnosed with a rare form of brain cancer.", - "guid": "b2477258", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-11T19:16:38.000Z" - }, - { - "creator": "George Sessions", - "date": "2024-01-11T19:13:04+00:00", - "title": "Tottenham sign Radu Dragusin as Eric Dier nears Bayern Munich move ", - "link": "https://www.independent.co.uk/sport/football/eric-dier-radu-dragusin-tottenham-b2477273.html", - "pubDate": "Thu, 11 Jan 2024 19:13:04 GMT", - "dc:creator": "George Sessions", - "dc:date": "2024-01-11T19:13:04+00:00", - "content": "

The Romania international follows Timo Werner to Spurs, while Dier is set to join the Bundesliga champions

", - "contentSnippet": "The Romania international follows Timo Werner to Spurs, while Dier is set to join the Bundesliga champions", - "guid": "b2477269", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T19:13:04.000Z" - }, - { - "creator": "Inga Parkel", - "date": "2024-01-11T19:12:23+00:00", - "title": "Angus Cloud appears in horror movie trailer for one of his final roles", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/abigail-trailer-angus-cloud-melissa-barrera-b2477235.html", - "pubDate": "Thu, 11 Jan 2024 19:12:23 GMT", - "dc:creator": "Inga Parkel", - "dc:date": "2024-01-11T19:12:23+00:00", - "content": "

\u2018Euphoria\u2019 star posthumously appears alongside Melissa Barrera in \u2018Abigail\u2019

", - "contentSnippet": "\u2018Euphoria\u2019 star posthumously appears alongside Melissa Barrera in \u2018Abigail\u2019", - "guid": "b2477235", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2024-01-11T19:12:23.000Z" - }, - { - "creator": "Mike Bedigan", - "date": "2024-01-11T19:12:08+00:00", - "title": "Biden knocks Trump by comparing him to Herbert Hoover in new campaign video", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/joe-biden-donald-trump-herbert-hoover-b2477220.html", - "pubDate": "Thu, 11 Jan 2024 19:12:08 GMT", - "dc:creator": "Mike Bedigan", - "dc:date": "2024-01-11T19:12:08+00:00", - "content": "

President was responding to a viral clip of his predecessor from earlier this week

", - "contentSnippet": "President was responding to a viral clip of his predecessor from earlier this week", - "guid": "b2477220", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-11T19:12:08.000Z" - }, - { - "creator": "Jamie Gardner", - "date": "2024-01-11T19:11:45+00:00", - "title": "Colin Graves set for Yorkshire return \u2013 what\u2019s happening at Headingley?", - "link": "https://www.independent.co.uk/sport/cricket/yorkshire-colin-graves-graves-headingley-actions-b2477162.html", - "pubDate": "Thu, 11 Jan 2024 19:11:45 GMT", - "dc:creator": "Jamie Gardner", - "dc:date": "2024-01-11T19:11:45+00:00", - "content": "Graves served as executive chair at Yorkshire between 2012 and 2015.", - "contentSnippet": "Graves served as executive chair at Yorkshire between 2012 and 2015.", - "guid": "b2477162", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2024-01-11T19:11:45.000Z" - }, - { - "creator": "Rory Dollard", - "date": "2024-01-11T19:10:37+00:00", - "title": "Colin Graves sorry for Yorkshire racism but Azeem Rafiq wants \u2018more than words\u2019", - "link": "https://www.independent.co.uk/sport/cricket/colin-graves-yorkshire-graves-azeem-rafiq-house-of-commons-b2477108.html", - "pubDate": "Thu, 11 Jan 2024 19:10:37 GMT", - "dc:creator": "Rory Dollard", - "dc:date": "2024-01-11T19:10:37+00:00", - "content": "Graves looks set to return as Yorkshire chair.", - "contentSnippet": "Graves looks set to return as Yorkshire chair.", - "guid": "b2477108", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2024-01-11T19:10:37.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-11T19:08:59+00:00", - "title": "United Airlines plane makes an emergency landing after a warning about a possible door issue", - "link": "https://www.independent.co.uk/news/tampa-ap-united-airlines-alaska-airlines-oregon-b2477275.html", - "pubDate": "Thu, 11 Jan 2024 19:08:59 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-11T19:08:59+00:00", - "content": "An Airbus plane operated by United Airlines cut short a flight after crews got a door-indicator warning, according to a spokesperson for the airport in Tampa, Florida", - "contentSnippet": "An Airbus plane operated by United Airlines cut short a flight after crews got a door-indicator warning, according to a spokesperson for the airport in Tampa, Florida", - "guid": "b2477275", - "isoDate": "2024-01-11T19:08:59.000Z" - }, - { - "creator": "Trisha Ahmed and Steve Karnowski", - "date": "2024-01-11T19:07:51+00:00", - "title": "St. Paul makes history with all-female city council, a rarity among large U.S. cities", - "link": "https://www.independent.co.uk/news/ap-experts-st-paul-rutgers-university-north-dakota-b2477271.html", - "pubDate": "Thu, 11 Jan 2024 19:07:51 GMT", - "dc:creator": "Trisha Ahmed and Steve Karnowski", - "dc:date": "2024-01-11T19:07:51+00:00", - "content": "St. Paul, Minnesota, has an all-woman city council for the first time in its history \u2014 and experts say it may be the largest U.S. city to ever have an all-woman council", - "contentSnippet": "St. Paul, Minnesota, has an all-woman city council for the first time in its history \u2014 and experts say it may be the largest U.S. city to ever have an all-woman council", - "guid": "b2477271", - "isoDate": "2024-01-11T19:07:51.000Z" - }, - { - "creator": "Andy Gregory", - "date": "2024-01-11T19:06:26+00:00", - "title": "New Covid variant Juno surges as expert warns school return will fuel more cases", - "link": "https://www.independent.co.uk/news/health/covid-cases-variant-juno-schools-latest-b2477113.html", - "pubDate": "Thu, 11 Jan 2024 19:06:26 GMT", - "dc:creator": "Andy Gregory", - "dc:date": "2024-01-11T19:06:26+00:00", - "content": "

Rapid rise of global \u2018Juno\u2019 variant infections is yet another reminder \u2018pandemic is far from over\u2019, warns virologist

", - "contentSnippet": "Rapid rise of global \u2018Juno\u2019 variant infections is yet another reminder \u2018pandemic is far from over\u2019, warns virologist", - "guid": "b2477113", - "categories": [ - "Health" - ], - "isoDate": "2024-01-11T19:06:26.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-11T19:05:30+00:00", - "title": "Relive Andy Farrell\u2019s iconic \u2018hurt arena\u2019 speech from British and Irish Lions\u2019 2013 tour of Australia", - "link": "https://www.independent.co.uk/tv/sport/andy-farrell-british-and-irish-lions-head-coach-b2477262.html", - "pubDate": "Thu, 11 Jan 2024 19:05:30 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-11T19:05:30+00:00", - "content": "

Relive Andy Farrell\u2019s iconic \u201churt arena\u201d speech from the British and Irish Lions\u2019 2013 tour to Australia.

", - "contentSnippet": "Relive Andy Farrell\u2019s iconic \u201churt arena\u201d speech from the British and Irish Lions\u2019 2013 tour to Australia.", - "guid": "b2477262", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2024-01-11T19:05:30.000Z" - }, - { - "creator": "Bert Wilkinson", - "date": "2024-01-11T19:04:59+00:00", - "title": "Guyana rejects quest for US military base as territorial dispute with Venezuela deepens", - "link": "https://www.independent.co.uk/news/guyana-ap-venezuela-georgetown-nicolas-maduro-b2477274.html", - "pubDate": "Thu, 11 Jan 2024 19:04:59 GMT", - "dc:creator": "Bert Wilkinson", - "dc:date": "2024-01-11T19:04:59+00:00", - "content": "Attorney General Anil Nandlall tells The Associated Press that Guyana\u2019s government has reassured neighboring Venezuela there is no plan for the U.S. to establish a military base in the South American country and that it has not made a formal request for one", - "contentSnippet": "Attorney General Anil Nandlall tells The Associated Press that Guyana\u2019s government has reassured neighboring Venezuela there is no plan for the U.S. to establish a military base in the South American country and that it has not made a formal request for one", - "guid": "b2477274", - "isoDate": "2024-01-11T19:04:59.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-11T19:04:11+00:00", - "title": "Josh Hutcherson addresses possibility of future Hunger Games project", - "link": "https://www.independent.co.uk/tv/culture/hunger-games-josh-hutcherson-peeta-b2477259.html", - "pubDate": "Thu, 11 Jan 2024 19:04:11 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-11T19:04:11+00:00", - "content": "

Josh Hutcherson appeared to be enthusiastic about reprising his Hunger Games role as he appeared on Thursday\u2019s (11 January) Good Morning America.

", - "contentSnippet": "Josh Hutcherson appeared to be enthusiastic about reprising his Hunger Games role as he appeared on Thursday\u2019s (11 January) Good Morning America.", - "guid": "b2477259", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-11T19:04:11.000Z" - }, - { - "creator": "Christina Larson", - "date": "2024-01-11T19:04:09+00:00", - "title": "Archeologists map lost cities in Ecuadorian Amazon, settlements that lasted 1,000 years", - "link": "https://www.independent.co.uk/news/ap-amazon-washington-ecuador-scientists-b2477265.html", - "pubDate": "Thu, 11 Jan 2024 19:04:09 GMT", - "dc:creator": "Christina Larson", - "dc:date": "2024-01-11T19:04:09+00:00", - "content": "Archeologists have uncovered a cluster of lost cities in the Amazon rainforest that was home to at least 10,000 farmers about 2,000 years ago", - "contentSnippet": "Archeologists have uncovered a cluster of lost cities in the Amazon rainforest that was home to at least 10,000 farmers about 2,000 years ago", - "guid": "b2477265", - "isoDate": "2024-01-11T19:04:09.000Z" - }, - { - "creator": "Jimmy Golen", - "date": "2024-01-11T19:00:09+00:00", - "title": "The Patriots don't just need a new coach. They need a quarterback and talent to put around him", - "link": "https://www.independent.co.uk/news/bill-belichick-ap-robert-kraft-new-england-patriots-bill-b2477264.html", - "pubDate": "Thu, 11 Jan 2024 19:00:09 GMT", - "dc:creator": "Jimmy Golen", - "dc:date": "2024-01-11T19:00:09+00:00", - "content": "New England Patriots owner Robert Kraft needs to find himself a new coach for the first time in almost a quarter century", - "contentSnippet": "New England Patriots owner Robert Kraft needs to find himself a new coach for the first time in almost a quarter century", - "guid": "b2477264", - "isoDate": "2024-01-11T19:00:09.000Z" - }, - { - "creator": "Jonel Aleccia", - "date": "2024-01-11T18:56:55+00:00", - "title": "Drugs like Ozempic and Wegovy show no link with suicide, FDA says", - "link": "https://www.independent.co.uk/news/fda-ap-ozempic-patients-b2477261.html", - "pubDate": "Thu, 11 Jan 2024 18:56:55 GMT", - "dc:creator": "Jonel Aleccia", - "dc:date": "2024-01-11T18:56:55+00:00", - "content": "Federal officials say a preliminary review finds no connection between suicidal thoughts and a new class of diabetes and obesity drugs", - "contentSnippet": "Federal officials say a preliminary review finds no connection between suicidal thoughts and a new class of diabetes and obesity drugs", - "guid": "b2477261", - "isoDate": "2024-01-11T18:56:55.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2024-01-11T18:55:56+00:00", - "title": "Iran seizes oil tanker off Oman as Middle East tensions rise", - "link": "https://www.independent.co.uk/news/world/middle-east/iran-ship-oman-oil-us-b2477062.html", - "pubDate": "Thu, 11 Jan 2024 18:55:56 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2024-01-11T18:55:56+00:00", - "content": "

Seizure comes as the Iran-backed Houthis attack ships in the Red Sea

", - "contentSnippet": "Seizure comes as the Iran-backed Houthis attack ships in the Red Sea", - "guid": "b2477062", - "categories": [ - "Middle East", - "World" - ], - "isoDate": "2024-01-11T18:55:56.000Z" - }, - { - "creator": "Julia Reinstein", - "date": "2024-01-11T18:54:48+00:00", - "title": "Police officer jailed for drunken car crash that left colleague dead", - "link": "https://www.independent.co.uk/news/world/americas/crime/police-officer-jailed-car-crash-b2477247.html", - "pubDate": "Thu, 11 Jan 2024 18:54:48 GMT", - "dc:creator": "Julia Reinstein", - "dc:date": "2024-01-11T18:54:48+00:00", - "content": "

Robert Ferraro, 36, faces at least two years in prison for the crash that killed his fellow officer and friend.

", - "contentSnippet": "Robert Ferraro, 36, faces at least two years in prison for the crash that killed his fellow officer and friend.", - "guid": "b2477247", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-11T18:54:48.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-11T18:53:36+00:00", - "title": "Prince William laughs off \u2018secret nickname\u2019 with Rob Burrow as Mike Tindall apologises", - "link": "https://www.independent.co.uk/tv/sport/prince-william-rob-burrow-mnd-b2477257.html", - "pubDate": "Thu, 11 Jan 2024 18:53:36 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-11T18:53:36+00:00", - "content": "

The Prince of Wales shared a joke with Rob Burrow about his \u201csecret\u201d nickname in the royal family as he surprised the rugby legend with his CBE.

", - "contentSnippet": "The Prince of Wales shared a joke with Rob Burrow about his \u201csecret\u201d nickname in the royal family as he surprised the rugby legend with his CBE.", - "guid": "b2477257", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2024-01-11T18:53:36.000Z" - }, - { - "creator": "Alex Woodward", - "date": "2024-01-11T18:52:38+00:00", - "title": "Trump speaks out in court against fraud trial judge during closing arguments", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/trump-speaks-judge-closing-arguments-b2477233.html", - "pubDate": "Thu, 11 Jan 2024 18:52:38 GMT", - "dc:creator": "Alex Woodward", - "dc:date": "2024-01-11T18:52:38+00:00", - "content": "

The former president called the case \u2018a fraud on me\u2019 during a brief tirade from the defence table

", - "contentSnippet": "The former president called the case \u2018a fraud on me\u2019 during a brief tirade from the defence table", - "guid": "b2477233", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-11T18:52:38.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-11T18:51:02+00:00", - "title": "Dozens of rats scurry out of homeless person\u2019s blanket in New York subway", - "link": "https://www.independent.co.uk/tv/lifestyle/new-york-rats-homeless-person-blanket-b2477255.html", - "pubDate": "Thu, 11 Jan 2024 18:51:02 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-11T18:51:02+00:00", - "content": "

Shocking footage shows the moment dozens of rats scurried out of a homeless person\u2019s blanket in the New York subway.

", - "contentSnippet": "Shocking footage shows the moment dozens of rats scurried out of a homeless person\u2019s blanket in the New York subway.", - "guid": "b2477255", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-11T18:51:02.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-11T18:50:26+00:00", - "title": "Kate Garraway shares daughter\u2019s heartfelt request after death of father Derek Draper", - "link": "https://www.independent.co.uk/tv/lifestyle/kate-garraway-derek-draper-daughter-b2477252.html", - "pubDate": "Thu, 11 Jan 2024 18:50:26 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-11T18:50:26+00:00", - "content": "

Kate Garraway has shared a heartfelt conversation she had with her daughter Darcey after the death of her father Derek Draper.

", - "contentSnippet": "Kate Garraway has shared a heartfelt conversation she had with her daughter Darcey after the death of her father Derek Draper.", - "guid": "b2477252", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-11T18:50:26.000Z" - }, - { - "creator": "Joe Sommerlad", - "date": "2024-01-11T18:48:45+00:00", - "title": "What is a government shutdown and why do they happen?", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/government-shutdowns-house-senate-budgets-b2476960.html", - "pubDate": "Thu, 11 Jan 2024 18:48:45 GMT", - "dc:creator": "Joe Sommerlad", - "dc:date": "2024-01-11T18:48:45+00:00", - "content": "

Senate minority leader Mitch McConnell has indicated a new stop-gap funding deal could be needed to avert federal outage, creating a headache for new House speaker Mike Johnson

", - "contentSnippet": "Senate minority leader Mitch McConnell has indicated a new stop-gap funding deal could be needed to avert federal outage, creating a headache for new House speaker Mike Johnson", - "guid": "b2476960", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-11T18:48:45.000Z" - }, - { - "creator": "Graig Graziosi", - "date": "2024-01-11T18:48:31+00:00", - "title": "Marjorie Taylor Greene calls for Georgia DA to face criminal probe", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/marjorie-taylor-greene-georgia-criminal-probe-b2477222.html", - "pubDate": "Thu, 11 Jan 2024 18:48:31 GMT", - "dc:creator": "Graig Graziosi", - "dc:date": "2024-01-11T18:48:31+00:00", - "content": "

Georgia firebrand accused Fani Willis of laundering kickbacks through her \u2018secret boyfriend\u2019

", - "contentSnippet": "Georgia firebrand accused Fani Willis of laundering kickbacks through her \u2018secret boyfriend\u2019", - "guid": "b2477222", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-11T18:48:31.000Z" - }, - { - "creator": "Michael Jones", - "date": "2024-01-11T18:47:27+00:00", - "title": "Transfer news live: Arsenal target Borja Mayoral; Manchester United and Chelsea latest ", - "link": "https://www.independent.co.uk/sport/football/transfer-news-tottenham-arsenal-liverpool-chelsea-b2476854.html", - "pubDate": "Thu, 11 Jan 2024 18:47:27 GMT", - "dc:creator": "Michael Jones", - "dc:date": "2024-01-11T18:47:27+00:00", - "content": "

Timo Werner has completed a Premier League return while Ajax are reportedly interested in former Liverpool captain Jordan Henderson

", - "contentSnippet": "Timo Werner has completed a Premier League return while Ajax are reportedly interested in former Liverpool captain Jordan Henderson", - "guid": "b2474851", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T18:47:27.000Z" - }, - { - "creator": "George Sessions", - "date": "2024-01-11T18:45:34+00:00", - "title": "Tottenham defender Eric Dier set for medical ahead of move to Bayern Munich ", - "link": "https://www.independent.co.uk/sport/football/eric-dier-tottenham-bayern-munich-medical-b2477251.html", - "pubDate": "Thu, 11 Jan 2024 18:45:34 GMT", - "dc:creator": "George Sessions", - "dc:date": "2024-01-11T18:45:34+00:00", - "content": "

Spurs have been willing to listen to offers for Dier

", - "contentSnippet": "Spurs have been willing to listen to offers for Dier", - "guid": "b2476899", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T18:45:34.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-11T18:44:11+00:00", - "title": "Drew Barrymore cries watching The Wedding Singer as she sends message to co-star Adam Sandler", - "link": "https://www.independent.co.uk/tv/culture/drew-barrymore-cries-wedding-singer-adam-sandler-b2477112.html", - "pubDate": "Thu, 11 Jan 2024 18:44:11 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-11T18:44:11+00:00", - "content": "

Actress Drew Barrymore cries as she watches her 1998 smash-hit film The Wedding Singer.

", - "contentSnippet": "Actress Drew Barrymore cries as she watches her 1998 smash-hit film The Wedding Singer.", - "guid": "b2477112", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-11T18:44:11.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-11T18:44:00+00:00", - "title": "\u2018Exceeded my wildest dreams\u2019: Bill Belichick leaves the Patriots after record six Super Bowl wins", - "link": "https://www.independent.co.uk/tv/sport/bill-belichick-leaves-new-england-patriots-b2477223.html", - "pubDate": "Thu, 11 Jan 2024 18:44:00 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-11T18:44:00+00:00", - "content": "

Watch the moment legendary NFL coach Bill Belichick parts ways with the New England Patriots after 24 seasons as head coach.

", - "contentSnippet": "Watch the moment legendary NFL coach Bill Belichick parts ways with the New England Patriots after 24 seasons as head coach.", - "guid": "b2477223", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2024-01-11T18:44:00.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-11T18:42:01+00:00", - "title": "Bungling brothers sent tumbling from stolen motorbike during police chase", - "link": "https://www.independent.co.uk/tv/news/nottingham-crime-motorbike-police-chase-b2477093.html", - "pubDate": "Thu, 11 Jan 2024 18:42:01 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-11T18:42:01+00:00", - "content": "

Watch the moment two brothers were thrown from their stolen motorbike during a police chase.

", - "contentSnippet": "Watch the moment two brothers were thrown from their stolen motorbike during a police chase.", - "guid": "b2477093", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-11T18:42:01.000Z" - }, - { - "creator": "Kelly Rissman", - "date": "2024-01-11T18:41:14+00:00", - "title": "Tahoe resort avalanche victim named as harrowing warning signs revealed", - "link": "https://www.independent.co.uk/news/world/americas/avalanche-tahoe-palisades-resort-victim-b2477184.html", - "pubDate": "Thu, 11 Jan 2024 18:41:14 GMT", - "dc:creator": "Kelly Rissman", - "dc:date": "2024-01-11T18:41:14+00:00", - "content": "

The avalanche struck just 30 minutes after the KT-22 chairlift opened for the season

", - "contentSnippet": "The avalanche struck just 30 minutes after the KT-22 chairlift opened for the season", - "guid": "b2477184", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-11T18:41:14.000Z" - }, - { - "creator": "Kaleigh Werner", - "date": "2024-01-11T18:39:54+00:00", - "title": "Full list of US 2024 federal holiday dates", - "link": "https://www.independent.co.uk/life-style/us-federal-holidays-2024-dates-b2477250.html", - "pubDate": "Thu, 11 Jan 2024 18:39:54 GMT", - "dc:creator": "Kaleigh Werner", - "dc:date": "2024-01-11T18:39:54+00:00", - "content": "

The list of US federal holidays is made up of 11 days of significance that Americans recognise and celebrate

", - "contentSnippet": "The list of US federal holidays is made up of 11 days of significance that Americans recognise and celebrate", - "guid": "b2451952", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-11T18:39:54.000Z" - }, - { - "creator": "Rachel Sharp", - "date": "2024-01-11T18:38:59+00:00", - "title": "Full timeline of Jennifer Dulos\u2019 disappearance as her love rival faces trial over murder", - "link": "https://www.independent.co.uk/news/world/americas/crime/jennifer-dulos-murder-timeline-michelle-troconis-b2477156.html", - "pubDate": "Thu, 11 Jan 2024 18:38:59 GMT", - "dc:creator": "Rachel Sharp", - "dc:date": "2024-01-11T18:38:59+00:00", - "content": "

After almost five years, the tragic case of Jennifer Dulos has finally made its way into a courtroom in Connecticut as the trial of her dead husband Fotis Dulos\u2019 lover Michelle Troconis gets under way. Rachel Sharp reports

", - "contentSnippet": "After almost five years, the tragic case of Jennifer Dulos has finally made its way into a courtroom in Connecticut as the trial of her dead husband Fotis Dulos\u2019 lover Michelle Troconis gets under way. Rachel Sharp reports", - "guid": "b2477156", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-11T18:38:59.000Z" - }, - { - "creator": "Julia Reinstein", - "date": "2024-01-11T18:38:25+00:00", - "title": "Florida man arrested for threatening \u2018racially motivated mass casualty event\u2019", - "link": "https://www.independent.co.uk/news/world/americas/crime/florida-arrest-white-supremacist-shooting-b2477177.html", - "pubDate": "Thu, 11 Jan 2024 18:38:25 GMT", - "dc:creator": "Julia Reinstein", - "dc:date": "2024-01-11T18:38:25+00:00", - "content": "

FBI agents found white supremacist propaganda and firearms in the man\u2019s home.

", - "contentSnippet": "FBI agents found white supremacist propaganda and firearms in the man\u2019s home.", - "guid": "b2477177", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2024-01-11T18:38:25.000Z" - }, - { - "creator": "Michelle Del Rey", - "date": "2024-01-11T18:36:10+00:00", - "title": "How the Alaska Airlines flight will impact the future of air travel", - "link": "https://www.independent.co.uk/news/world/americas/alaska-airlines-flight-emergency-door-b2476045.html", - "pubDate": "Thu, 11 Jan 2024 18:36:10 GMT", - "dc:creator": "Michelle Del Rey", - "dc:date": "2024-01-11T18:36:10+00:00", - "content": "

In the short term, experts say passengers should anticipate flight cancellations, writes Michelle Del Rey

", - "contentSnippet": "In the short term, experts say passengers should anticipate flight cancellations, writes Michelle Del Rey", - "guid": "b2476045", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-11T18:36:10.000Z" - }, - { - "creator": "Corey Williams", - "date": "2024-01-11T18:33:39+00:00", - "title": "Prosecutors seek 28-year sentence for Heather Mack in mom's Bali slaying, stuffing into suitcase", - "link": "https://www.independent.co.uk/news/ap-heather-mack-chicago-bali-american-b2477249.html", - "pubDate": "Thu, 11 Jan 2024 18:33:39 GMT", - "dc:creator": "Corey Williams", - "dc:date": "2024-01-11T18:33:39+00:00", - "content": "Federal prosecutors in Chicago are recommending a 28-year prison sentence for an American woman who pleaded guilty to helping kill her mother and stuffing the body in a suitcase during a vacation at a Bali resort nearly a decade ago", - "contentSnippet": "Federal prosecutors in Chicago are recommending a 28-year prison sentence for an American woman who pleaded guilty to helping kill her mother and stuffing the body in a suitcase during a vacation at a Bali resort nearly a decade ago", - "guid": "b2477249", - "isoDate": "2024-01-11T18:33:39.000Z" - }, - { - "creator": "Brooke Schultz", - "date": "2024-01-11T18:32:19+00:00", - "title": "Philly's elected prosecutor sues to stop law designed to limit authority on transit system crimes", - "link": "https://www.independent.co.uk/news/ap-senate-republican-supreme-court-america-b2477248.html", - "pubDate": "Thu, 11 Jan 2024 18:32:19 GMT", - "dc:creator": "Brooke Schultz", - "dc:date": "2024-01-11T18:32:19+00:00", - "content": "Philadelphia\u2019s two-term elected progressive district attorney is suing to halt the appointment of a new special prosecutor for crimes that occur on the city\u2019s trains", - "contentSnippet": "Philadelphia\u2019s two-term elected progressive district attorney is suing to halt the appointment of a new special prosecutor for crimes that occur on the city\u2019s trains", - "guid": "b2477248", - "isoDate": "2024-01-11T18:32:19.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-11T18:28:48+00:00", - "title": "Scottish football club asks Taylor Swift to \u2018gies some dosh\u2019 in appeal for A-list investment", - "link": "https://www.independent.co.uk/tv/sport/taylor-swift-scotland-football-motherwell-b2477245.html", - "pubDate": "Thu, 11 Jan 2024 18:28:48 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-11T18:28:48+00:00", - "content": "

A Scottish football club has asked Taylor Swift to \u201cgies some dosh\u201d in a viral video aimed at attracting investment from A-listers.

", - "contentSnippet": "A Scottish football club has asked Taylor Swift to \u201cgies some dosh\u201d in a viral video aimed at attracting investment from A-listers.", - "guid": "b2477245", - "categories": [ - "Sport", - "Indy TV" - ], - "isoDate": "2024-01-11T18:28:48.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-11T18:27:00+00:00", - "title": "California ski resort reopens as workers clear debris from deadly avalanche", - "link": "https://www.independent.co.uk/news/california-ap-lake-tahoe-reno-nevada-b2477246.html", - "pubDate": "Thu, 11 Jan 2024 18:27:00 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-11T18:27:00+00:00", - "content": "The California ski resorts Palisades Tahoe and Alpine Meadows are reopening with a focus on safety a day after an avalanche killed a skier and injured three others", - "contentSnippet": "The California ski resorts Palisades Tahoe and Alpine Meadows are reopening with a focus on safety a day after an avalanche killed a skier and injured three others", - "guid": "b2477246", - "isoDate": "2024-01-11T18:27:00.000Z" - }, - { - "creator": "The Associated Press", - "date": "2024-01-11T18:23:21+00:00", - "title": "Shohei Ohtani visits US Embassy in Japan and his dog gets mock visa", - "link": "https://www.independent.co.uk/news/shohei-ohtani-ap-rahm-emanuel-tokyo-us-embassy-b2477244.html", - "pubDate": "Thu, 11 Jan 2024 18:23:21 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2024-01-11T18:23:21+00:00", - "content": "Shohei Ohtani has visited the U.S. Embassy in Tokyo", - "contentSnippet": "Shohei Ohtani has visited the U.S. Embassy in Tokyo", - "guid": "b2477244", - "isoDate": "2024-01-11T18:23:21.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2024-01-11T18:22:13+00:00", - "title": "Ronnie O\u2019Sullivan overcomes illness to grind past Barry Hawkins at Masters", - "link": "https://www.independent.co.uk/sport/snooker/ronnie-osullivan-barry-hawkins-masters-result-b2477154.html", - "pubDate": "Thu, 11 Jan 2024 18:22:13 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2024-01-11T18:22:13+00:00", - "content": "

An apparently under-the-weather O\u2019Sullivan was keen for a curry after fighting his way into the last four

", - "contentSnippet": "An apparently under-the-weather O\u2019Sullivan was keen for a curry after fighting his way into the last four", - "guid": "b2477154", - "categories": [ - "Snooker", - "Sport" - ], - "isoDate": "2024-01-11T18:22:13.000Z" - }, - { - "creator": "Michael Hill", - "date": "2024-01-11T18:19:35+00:00", - "title": "Murder trial begins months after young woman driven into wrong driveway shot in upstate New York", - "link": "https://www.independent.co.uk/news/ap-kaylin-gillis-new-york-vermont-albany-b2477241.html", - "pubDate": "Thu, 11 Jan 2024 18:19:35 GMT", - "dc:creator": "Michael Hill", - "dc:date": "2024-01-11T18:19:35+00:00", - "content": "An attorney for an upstate New York man accused of fatally shooting a 20-year-old woman who was with a group of friends who accidentally turned into his backcountry driveway called it a \u201cterrible accident\u201d involving a defective gun as arguments in his murder trial began", - "contentSnippet": "An attorney for an upstate New York man accused of fatally shooting a 20-year-old woman who was with a group of friends who accidentally turned into his backcountry driveway called it a \u201cterrible accident\u201d involving a defective gun as arguments in his murder trial began", - "guid": "b2477241", - "isoDate": "2024-01-11T18:19:35.000Z" - }, - { - "creator": "Dusan Stojanovic", - "date": "2024-01-11T18:17:50+00:00", - "title": "Serbia says it is disappointed with Kosovo's request to buy anti-tank missiles from the US", - "link": "https://www.independent.co.uk/news/kosovo-ap-serbia-aleksandar-vucic-belgrade-b2477242.html", - "pubDate": "Thu, 11 Jan 2024 18:17:50 GMT", - "dc:creator": "Dusan Stojanovic", - "dc:date": "2024-01-11T18:17:50+00:00", - "content": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", - "contentSnippet": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", - "guid": "b2477242", - "isoDate": "2024-01-11T18:17:50.000Z" - }, - { - "creator": "Scott McFetridge", - "date": "2024-01-11T18:17:11+00:00", - "title": "Iowa community recalls 11-year-old boy with 'vibrant soul' killed in school shooting", - "link": "https://www.independent.co.uk/news/ap-iowa-school-catholic-church-des-moines-b2477239.html", - "pubDate": "Thu, 11 Jan 2024 18:17:11 GMT", - "dc:creator": "Scott McFetridge", - "dc:date": "2024-01-11T18:17:11+00:00", - "content": "Hundreds of people said goodbye to an 11-year-old boy known as \u201cSmiley,\u201d a week after he was shot to death at his Iowa school by an older student who also wounded seven other children and staff members before killing himself", - "contentSnippet": "Hundreds of people said goodbye to an 11-year-old boy known as \u201cSmiley,\u201d a week after he was shot to death at his Iowa school by an older student who also wounded seven other children and staff members before killing himself", - "guid": "b2477239", - "isoDate": "2024-01-11T18:17:11.000Z" - }, - { - "creator": "Rhys Jones", - "date": "2024-01-11T18:15:15+00:00", - "title": "The toilet-trained cat with impeccable bathroom etiquette", - "link": "https://www.independent.co.uk/tv/lifestyle/cat-taught-use-toilet-b2477238.html", - "pubDate": "Thu, 11 Jan 2024 18:15:15 GMT", - "dc:creator": "Rhys Jones", - "dc:date": "2024-01-11T18:15:15+00:00", - "content": "

Many owners treat their pets like furry children, but this French owner has taken pet humanisation to the next level.

", - "contentSnippet": "Many owners treat their pets like furry children, but this French owner has taken pet humanisation to the next level.", - "guid": "b2477238", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-11T18:15:15.000Z" - }, - { - "creator": "Kevin E G Perry", - "date": "2024-01-11T18:12:19+00:00", - "title": "Riley Keough helped finish mother Lisa Marie Presley\u2019s forthcoming posthumous memoir", - "link": "https://www.independent.co.uk/arts-entertainment/books/news/lisa-marie-presley-riley-keough-memoir-b2477224.html", - "pubDate": "Thu, 11 Jan 2024 18:12:19 GMT", - "dc:creator": "Kevin E G Perry", - "dc:date": "2024-01-11T18:12:19+00:00", - "content": "

Presley was working on the book at the time of her death last year

", - "contentSnippet": "Presley was working on the book at the time of her death last year", - "guid": "b2477224", - "categories": [ - "News", - "Books", - "Culture" - ], - "isoDate": "2024-01-11T18:12:19.000Z" - }, - { - "creator": "Tim Reynolds", - "date": "2024-01-11T18:09:33+00:00", - "title": "Lionel Messi wasn't seen at MLS media day. Doesn't matter, since everyone talked about him", - "link": "https://www.independent.co.uk/news/world/americas/lionel-messi-ap-mls-inter-miami-john-herdman-b2477231.html", - "pubDate": "Thu, 11 Jan 2024 18:09:33 GMT", - "dc:creator": "Tim Reynolds", - "dc:date": "2024-01-11T18:09:33+00:00", - "content": "Lionel Messi was not visible at Major League Soccer\u2019s annual media day on Thursday", - "contentSnippet": "Lionel Messi was not visible at Major League Soccer\u2019s annual media day on Thursday", - "guid": "b2477231", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-11T18:09:33.000Z" - }, - { - "creator": "Archie Mitchell", - "date": "2024-01-11T18:00:38+00:00", - "title": "Disgraced former Tory MP Peter Bone spotted campaigning for girlfriend in seat he was stripped of", - "link": "https://www.independent.co.uk/news/uk/politics/tory-election-peter-bone-sunak-b2477212.html", - "pubDate": "Thu, 11 Jan 2024 18:00:38 GMT", - "dc:creator": "Archie Mitchell", - "dc:date": "2024-01-11T18:00:38+00:00", - "content": "

In a move which pollsters have said will add to the party\u2019s woes, Tory HQ picked his partner Helen Harrison, a local councillor, to fight the contest to replace him

", - "contentSnippet": "In a move which pollsters have said will add to the party\u2019s woes, Tory HQ picked his partner Helen Harrison, a local councillor, to fight the contest to replace him", - "guid": "b2477212", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-11T18:00:38.000Z" - }, - { - "creator": "Andrew Feinberg", - "date": "2024-01-11T17:55:00+00:00", - "title": "Jill Biden says GOP\u2019s \u2018cruel\u2019 attacks on Hunter and family motivate her heading into 2024", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/jill-biden-hunter-biden-b2477125.html", - "pubDate": "Thu, 11 Jan 2024 17:55:00 GMT", - "dc:creator": "Andrew Feinberg", - "dc:date": "2024-01-11T17:55:00+00:00", - "content": "

Hunter Biden has long been a target of attacks from Republicans looking to deflect from former president Donald Trump\u2019s behaviour

", - "contentSnippet": "Hunter Biden has long been a target of attacks from Republicans looking to deflect from former president Donald Trump\u2019s behaviour", - "guid": "b2477125", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-11T17:55:00.000Z" - }, - { - "creator": "Inga Parkel", - "date": "2024-01-11T17:52:58+00:00", - "title": "Kristen Stewart confesses she \u2018hated making\u2019 Charlie\u2019s Angels reboot", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/kristen-stewart-charlies-angels-b2477147.html", - "pubDate": "Thu, 11 Jan 2024 17:52:58 GMT", - "dc:creator": "Inga Parkel", - "dc:date": "2024-01-11T17:52:58+00:00", - "content": "

\u2018Twilight\u2019 star led 2019 remake alongside Ella Balinska and Naomi Scott

", - "contentSnippet": "\u2018Twilight\u2019 star led 2019 remake alongside Ella Balinska and Naomi Scott", - "guid": "b2477147", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2024-01-11T17:52:58.000Z" - }, - { - "creator": "Sonia Twigg", - "date": "2024-01-11T17:52:49+00:00", - "title": "Azeem Rafiq says Colin Graves\u2019 return to Yorkshire \u2018empowers\u2019 racists", - "link": "https://www.independent.co.uk/sport/cricket/azeem-rafiq-colin-graves-yorkshire-b2477215.html", - "pubDate": "Thu, 11 Jan 2024 17:52:49 GMT", - "dc:creator": "Sonia Twigg", - "dc:date": "2024-01-11T17:52:49+00:00", - "content": "

Azeem Rafiq has spoken out against the return of Colin Graves, who is due to return as Yorkshire chairman.

", - "contentSnippet": "Azeem Rafiq has spoken out against the return of Colin Graves, who is due to return as Yorkshire chairman.", - "guid": "b2477215", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2024-01-11T17:52:49.000Z" - }, - { - "creator": "Helen Wilson-Beevers", - "date": "2024-01-11T17:52:06+00:00", - "title": "14 best tinted moisturisers for lightweight coverage and skincare benefits", - "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/skincare/best-tinted-moisturiser-spf-face-oil-free-sensitive-pale-skin-uk-review-a9579666.html", - "pubDate": "Thu, 11 Jan 2024 17:52:06 GMT", - "dc:creator": "Helen Wilson-Beevers", - "dc:date": "2024-01-11T17:52:06+00:00", - "content": "

From buildable coverage to sheer and subtle finishes, these skin-blurring formulas are well worth a browse

", - "contentSnippet": "From buildable coverage to sheer and subtle finishes, these skin-blurring formulas are well worth a browse", - "guid": "a9579666", - "categories": [ - "Skincare", - "Fashion & Beauty", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-11T17:52:06.000Z" - }, - { - "creator": "Jane Dalton", - "date": "2024-01-11T17:49:52+00:00", - "title": "XL bully dogs to be banned in Scotland after owners cross border to beat new rules", - "link": "https://www.independent.co.uk/news/uk/home-news/xl-bully-ban-scotland-update-confirmed-b2477023.html", - "pubDate": "Thu, 11 Jan 2024 17:49:52 GMT", - "dc:creator": "Jane Dalton", - "dc:date": "2024-01-11T17:49:52+00:00", - "content": "

England crackdown will be mirrored after influx of banned breed being dumped

", - "contentSnippet": "England crackdown will be mirrored after influx of banned breed being dumped", - "guid": "b2477023", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-11T17:49:52.000Z" - }, - { - "creator": "Fiona McIntosh", - "date": "2024-01-11T17:48:49+00:00", - "title": "The UK\u2019s best spa towns: Where to stay for restoration and relaxation in 2024", - "link": "https://www.independent.co.uk/travel/uk/best-spa-towns-uk-hotels-bath-b2475529.html", - "pubDate": "Thu, 11 Jan 2024 17:48:49 GMT", - "dc:creator": "Fiona McIntosh", - "dc:date": "2024-01-11T17:48:49+00:00", - "content": "

Britain\u2019s natural spring resorts have had a glow-up, with new multi-million-pound retreats and state-of-the art treatments, finds Fiona McIntosh

", - "contentSnippet": "Britain\u2019s natural spring resorts have had a glow-up, with new multi-million-pound retreats and state-of-the art treatments, finds Fiona McIntosh", - "guid": "b2475529", - "categories": [ - "UK", - "Travel" - ], - "isoDate": "2024-01-11T17:48:49.000Z" - }, - { - "creator": "Alanna Durkin Richer", - "date": "2024-01-11T17:48:14+00:00", - "title": "Feds charge eBay over employees who sent live spiders and cockroaches to couple; company to pay $3M", - "link": "https://www.independent.co.uk/news/ap-massachusetts-boston-justice-department-california-b2477213.html", - "pubDate": "Thu, 11 Jan 2024 17:48:14 GMT", - "dc:creator": "Alanna Durkin Richer", - "dc:date": "2024-01-11T17:48:14+00:00", - "content": "Online retailer eBay has agreed to pay a $3 million fine to resolve criminal charges over employees who harassed a Massachusetts couple by sending live spiders, cockroaches and other disturbing items to their home", - "contentSnippet": "Online retailer eBay has agreed to pay a $3 million fine to resolve criminal charges over employees who harassed a Massachusetts couple by sending live spiders, cockroaches and other disturbing items to their home", - "guid": "b2477213", - "isoDate": "2024-01-11T17:48:14.000Z" - }, - { - "creator": "Louise Boyle", - "date": "2024-01-07T13:01:23+00:00", - "title": "Parenting through the climate crisis: Advice for raising children amid the battle for a livable planet", - "link": "https://www.independent.co.uk/climate-change/news/parenting-children-debate-environment-b2448782.html", - "pubDate": "Sun, 07 Jan 2024 13:01:23 GMT", - "dc:creator": "Louise Boyle", - "dc:date": "2024-01-07T13:01:23+00:00", - "content": "

A new book tackles big questions on reproduction and parenting, along with \u2018how to get politically involved to make the world safer for everyone\u2019s children\u2019

", - "contentSnippet": "A new book tackles big questions on reproduction and parenting, along with \u2018how to get politically involved to make the world safer for everyone\u2019s children\u2019", - "guid": "b2448782", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2024-01-07T13:01:23.000Z" - }, - { - "creator": "Maanya Sachdeva", - "date": "2024-01-18T12:26:07+00:00", - "title": "Comedian Dana Carvey opens up about son\u2019s death as he returns to work ", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/dana-carvey-son-dex-death-b2480767.html", - "pubDate": "Thu, 18 Jan 2024 12:26:07 GMT", - "dc:creator": "Maanya Sachdeva", - "dc:date": "2024-01-18T12:26:07+00:00", - "content": "

Carvey, 68, confirmed his \u2018extremely talented\u2019 son had died from an accidental drug overdose last November

", - "contentSnippet": "Carvey, 68, confirmed his \u2018extremely talented\u2019 son had died from an accidental drug overdose last November", - "guid": "b2480767", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-18T12:26:07.000Z" - }, - { - "creator": "Nicole Vassell", - "date": "2024-01-18T12:25:37+00:00", - "title": "Baftas 2024: The full list of Bafta nominations \u2013 updating live", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/bafta-nominations-2024-list-b2480759.html", - "pubDate": "Thu, 18 Jan 2024 12:25:37 GMT", - "dc:creator": "Nicole Vassell", - "dc:date": "2024-01-18T12:25:37+00:00", - "content": "

\u2018Oppenheimer\u2019, \u2018Barbie\u2019 and \u2018Killers of the Flower Moon\u2019 are expected to battle it out for top prize

", - "contentSnippet": "\u2018Oppenheimer\u2019, \u2018Barbie\u2019 and \u2018Killers of the Flower Moon\u2019 are expected to battle it out for top prize", - "guid": "b2285242", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2024-01-18T12:25:37.000Z" - }, - { - "creator": "Matt Mathers,Archie Mitchell,Zoe Grunewald and Joe Middleton", - "date": "2024-01-18T12:25:19+00:00", - "title": "Rwanda bill - latest: Rishi Sunak pleads with the House of Lords to back deportation plan \u2013 live", - "link": "https://www.independent.co.uk/news/uk/politics/rwanda-bill-vote-rishi-sunak-results-tories-b2480641.html", - "pubDate": "Thu, 18 Jan 2024 12:25:19 GMT", - "dc:creator": "Matt Mathers,Archie Mitchell,Zoe Grunewald and Joe Middleton", - "dc:date": "2024-01-18T12:25:19+00:00", - "content": "

\u2018It\u2019s now time for the Lords to pass this bill\u2019, PM says

", - "contentSnippet": "\u2018It\u2019s now time for the Lords to pass this bill\u2019, PM says", - "guid": "b2479124", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-18T12:25:19.000Z" - }, - { - "creator": "John Bowden,Oliver O'Connell,Ariana Baio and Joe Sommerlad", - "date": "2024-01-18T12:24:59+00:00", - "title": "Election 2024 live: Haley says DeSantis \u2018invisible\u2019 in New Hampshire", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/2024-elections-nh-gop-debate-biden-trump-b2480666.html", - "pubDate": "Thu, 18 Jan 2024 12:24:59 GMT", - "dc:creator": "John Bowden,Oliver O'Connell,Ariana Baio and Joe Sommerlad", - "dc:date": "2024-01-18T12:24:59+00:00", - "content": "

Ex-UN ambassador turns fire on Florida governor ahead of crucial Granite State primary

", - "contentSnippet": "Ex-UN ambassador turns fire on Florida governor ahead of crucial Granite State primary", - "guid": "b2475808", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-18T12:24:59.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-18T12:21:35+00:00", - "title": "Fujitsu engineer claims he \u2018can\u2019t remember\u2019 IT software in Post Office Horizon inquiry", - "link": "https://www.independent.co.uk/tv/news/horizon-fujitsu-scandal-post-office-inquiry-b2480792.html", - "pubDate": "Thu, 18 Jan 2024 12:21:35 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-18T12:21:35+00:00", - "content": "

A Fujitsu engineer claimed he \u201ccouldn\u2019t remember\u201d IT software he used during the Post Office Horizon IT scandal, an inquiry has heard.

", - "contentSnippet": "A Fujitsu engineer claimed he \u201ccouldn\u2019t remember\u201d IT software he used during the Post Office Horizon IT scandal, an inquiry has heard.", - "guid": "b2480792", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-18T12:21:35.000Z" - }, - { - "creator": "Amy-Clare Martin", - "date": "2024-01-18T12:21:22+00:00", - "title": "Convictions posthumously quashed for two rail workers framed by corrupt police officer", - "link": "https://www.independent.co.uk/news/uk/crime/convictions-quashed-appeal-court-derek-ridgewell-b2480776.html", - "pubDate": "Thu, 18 Jan 2024 12:21:22 GMT", - "dc:creator": "Amy-Clare Martin", - "dc:date": "2024-01-18T12:21:22+00:00", - "content": "

A judge said it was \u2018very unfortunate\u2019 that Basil Peterkin and Saliah Mehmet did not live to learn of their vindication

", - "contentSnippet": "A judge said it was \u2018very unfortunate\u2019 that Basil Peterkin and Saliah Mehmet did not live to learn of their vindication", - "guid": "b2480776", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2024-01-18T12:21:22.000Z" - }, - { - "creator": "Ellie Muir", - "date": "2024-01-18T12:18:36+00:00", - "title": "The Traitors: Diane confronts murderer and reveals family twist ", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/traitors-diane-carson-ross-kerr-logan-b2480783.html", - "pubDate": "Thu, 18 Jan 2024 12:18:36 GMT", - "dc:creator": "Ellie Muir", - "dc:date": "2024-01-18T12:18:36+00:00", - "content": "

Diane Carson revealed her best-kept secret to a Traitor

", - "contentSnippet": "Diane Carson revealed her best-kept secret to a Traitor", - "guid": "b2480783", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-18T12:18:36.000Z" - }, - { - "creator": "Simon Calder", - "date": "2024-01-18T12:14:12+00:00", - "title": "Travel firm sells sunseeker holiday for \u00a31.40 an hour \u2013 but you have to be quick", - "link": "https://www.independent.co.uk/travel/news-and-advice/winter-sun-holiday-tunisia-tui-cold-weather-b2480805.html", - "pubDate": "Thu, 18 Jan 2024 12:14:12 GMT", - "dc:creator": "Simon Calder", - "dc:date": "2024-01-18T12:14:12+00:00", - "content": "

Exclusive: Flights to Egypt\u2019s Red Sea are selling for \u00a315 less than the Air Passenger Duty the airline must pay when the passenger steps aboard

", - "contentSnippet": "Exclusive: Flights to Egypt\u2019s Red Sea are selling for \u00a315 less than the Air Passenger Duty the airline must pay when the passenger steps aboard", - "guid": "b2480700", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2024-01-18T12:14:12.000Z" - }, - { - "creator": "Bassem Mroue", - "date": "2024-01-18T12:09:44+00:00", - "title": "An airstrike on southern Syria, likely carried out by Jordan's air force, kills 9", - "link": "https://www.independent.co.uk/news/jordan-ap-syria-beirut-syrian-observatory-for-human-rights-b2480811.html", - "pubDate": "Thu, 18 Jan 2024 12:09:44 GMT", - "dc:creator": "Bassem Mroue", - "dc:date": "2024-01-18T12:09:44+00:00", - "content": "Syrian opposition activists say an airstrike that was likely carried out by Jordan\u2019s air force on southern Syria has killed at least nine people in the latest of strikes in recent months", - "contentSnippet": "Syrian opposition activists say an airstrike that was likely carried out by Jordan\u2019s air force on southern Syria has killed at least nine people in the latest of strikes in recent months", - "guid": "b2480811", - "isoDate": "2024-01-18T12:09:44.000Z" - }, - { - "creator": "Lawrence Ostlere", - "date": "2024-01-18T12:09:19+00:00", - "title": "Transfer news live: Henderson to join Ajax, Newcastle chase Phillips, Arsenal and Tottenham eye winger", - "link": "https://www.independent.co.uk/sport/football/transfer-news-chelsea-arsenal-manchester-united-liverpool-b2480691.html", - "pubDate": "Thu, 18 Jan 2024 12:09:19 GMT", - "dc:creator": "Lawrence Ostlere", - "dc:date": "2024-01-18T12:09:19+00:00", - "content": "

Chelsea set a price for Armando Broja, Liverpool want defender and Amad Diallo makes clear his plans at Manchester United amid loan talk

", - "contentSnippet": "Chelsea set a price for Armando Broja, Liverpool want defender and Amad Diallo makes clear his plans at Manchester United amid loan talk", - "guid": "b2474851", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T12:09:19.000Z" - }, - { - "creator": "Jim van Wijk", - "date": "2024-01-18T12:07:01+00:00", - "title": "Restoring trust in Jordan Henderson \u2018will take some time\u2019 for LGBTQ+ community", - "link": "https://www.independent.co.uk/sport/football/jordan-henderson-lgbtq-saudi-arabia-wembley-liverpool-b2480753.html", - "pubDate": "Thu, 18 Jan 2024 12:07:01 GMT", - "dc:creator": "Jim van Wijk", - "dc:date": "2024-01-18T12:07:01+00:00", - "content": "Henderson, a high-profile supporter of LGBTQ+ rights in his time at Liverpool, was booed off the pitch at Wembley during a friendly in October.", - "contentSnippet": "Henderson, a high-profile supporter of LGBTQ+ rights in his time at Liverpool, was booed off the pitch at Wembley during a friendly in October.", - "guid": "b2480753", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T12:07:01.000Z" - }, - { - "creator": "Tom Watling ,Maroosha Muzaffar and Maira Butt", - "date": "2024-01-18T12:04:13+00:00", - "title": "Pakistan-Iran strikes latest: At least 9 dead as Islamabad hits back following missile attack from Tehran", - "link": "https://www.independent.co.uk/news/world/middle-east/pakistan-iran-attack-airstrikes-yemen-houthis-news-b2480663.html", - "pubDate": "Thu, 18 Jan 2024 12:04:13 GMT", - "dc:creator": "Tom Watling ,Maroosha Muzaffar and Maira Butt", - "dc:date": "2024-01-18T12:04:13+00:00", - "content": "

US conducted strikes on 14 Iran-backed Houthi missiles that were loaded to be fired in Houthi-controlled areas in Yemen

", - "contentSnippet": "US conducted strikes on 14 Iran-backed Houthi missiles that were loaded to be fired in Houthi-controlled areas in Yemen", - "guid": "b2477284", - "categories": [ - "Middle East", - "World" - ], - "isoDate": "2024-01-18T12:04:13.000Z" - }, - { - "creator": "Kate Devlin", - "date": "2024-01-18T12:03:52+00:00", - "title": "Rishi Sunak rapped by watchdog over claim to have \u2018cleared\u2019 asylum backlog", - "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-asylum-backlog-watchdog-b2480789.html", - "pubDate": "Thu, 18 Jan 2024 12:03:52 GMT", - "dc:creator": "Kate Devlin", - "dc:date": "2024-01-18T12:03:52+00:00", - "content": "

Comes after the PM was accused of trying to \u2018cook the books\u2019 and a \u2018barefaced lie\u2019

", - "contentSnippet": "Comes after the PM was accused of trying to \u2018cook the books\u2019 and a \u2018barefaced lie\u2019", - "guid": "b2480789", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-18T12:03:52.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-18T12:03:04+00:00", - "title": "Travis Kelce offered free custom-made ring if he proposes to Taylor Swift", - "link": "https://www.independent.co.uk/tv/lifestyle/taylor-swift-travis-kelce-proposal-b2480803.html", - "pubDate": "Thu, 18 Jan 2024 12:03:04 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-18T12:03:04+00:00", - "content": "

Travis Kelce has been offered a free $1 million custom-made ring to use if he proposes to Taylor Swift.

", - "contentSnippet": "Travis Kelce has been offered a free $1 million custom-made ring to use if he proposes to Taylor Swift.", - "guid": "b2480803", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-18T12:03:04.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2024-01-18T12:02:44+00:00", - "title": "Bafta nominations 2024 \u2013 live: Awards announcement begins in London", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/bafta-nominations-2024-live-updates-films-b2480657.html", - "pubDate": "Thu, 18 Jan 2024 12:02:44 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2024-01-18T12:02:44+00:00", - "content": "

All the nominated films, actors and directors \u2013 as they\u2019re revealed

", - "contentSnippet": "All the nominated films, actors and directors \u2013 as they\u2019re revealed", - "guid": "b2480209", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2024-01-18T12:02:44.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2024-01-18T12:02:33+00:00", - "title": "Jordan Henderson set for medical ahead of move to Ajax from Al-Ettifaq \u2013 reports", - "link": "https://www.independent.co.uk/sport/football/jordan-henderson-alettifaq-liverpool-saudi-arabian-amsterdam-b2480730.html", - "pubDate": "Thu, 18 Jan 2024 12:02:33 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2024-01-18T12:02:33+00:00", - "content": "Former Liverpool captain Henderson, 33, signed for Al-Ettifaq in a lucrative but controversial move last summer.", - "contentSnippet": "Former Liverpool captain Henderson, 33, signed for Al-Ettifaq in a lucrative but controversial move last summer.", - "guid": "b2480730", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T12:02:33.000Z" - }, - { - "creator": "Oliver O'Connell,Joe Sommerlad and Gustaf Kilander", - "date": "2024-01-18T12:01:57+00:00", - "title": "Trump rages over E Jean Carroll prior to mother-in-law\u2019s funeral: Live", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/donald-trump-e-jean-carroll-trial-live-judge-court-b2480633.html", - "pubDate": "Thu, 18 Jan 2024 12:01:57 GMT", - "dc:creator": "Oliver O'Connell,Joe Sommerlad and Gustaf Kilander", - "dc:date": "2024-01-18T12:01:57+00:00", - "content": "

Former president juggling latest legal battle with campaigning ahead of New Hampshire primary

", - "contentSnippet": "Former president juggling latest legal battle with campaigning ahead of New Hampshire primary", - "guid": "b2463845", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-18T12:01:57.000Z" - }, - { - "creator": "Associated Press reporter", - "date": "2024-01-18T12:01:25+00:00", - "title": "Chaos at Panama Canal as global warming hits trade route", - "link": "https://www.independent.co.uk/news/world/americas/panama-canal-shipping-drought-figures-b2480802.html", - "pubDate": "Thu, 18 Jan 2024 12:01:25 GMT", - "dc:creator": "Associated Press reporter", - "dc:date": "2024-01-18T12:01:25+00:00", - "content": "

One of the most severe droughts to ever hit the Central American nation has stirred chaos in the 50-mile maritime route

", - "contentSnippet": "One of the most severe droughts to ever hit the Central American nation has stirred chaos in the 50-mile maritime route", - "guid": "b2480802", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2024-01-18T12:01:25.000Z" - }, - { - "creator": "Rory Dollard", - "date": "2024-01-18T11:55:56+00:00", - "title": "Last-gasp TV deal agreed for England\u2019s Test cricket series in India to avoid blackout", - "link": "https://www.independent.co.uk/sport/cricket/england-india-tv-where-to-watch-tnt-sports-b2480787.html", - "pubDate": "Thu, 18 Jan 2024 11:55:56 GMT", - "dc:creator": "Rory Dollard", - "dc:date": "2024-01-18T11:55:56+00:00", - "content": "

TNT Sports will show the five-match series that starts next week, narrowing avoiding a blackout in the UK

", - "contentSnippet": "TNT Sports will show the five-match series that starts next week, narrowing avoiding a blackout in the UK", - "guid": "b2480787", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2024-01-18T11:55:56.000Z" - }, - { - "creator": "Stuti Mishra and Lydia Patrick", - "date": "2024-01-18T11:54:36+00:00", - "title": "UK weather- live: Flying debris to cause \u2018danger to life\u2019 as Met Office issue fresh warning amid snow chaos", - "link": "https://www.independent.co.uk/weather/met-office-weather-warnings-snow-b2480578.html", - "pubDate": "Thu, 18 Jan 2024 11:54:36 GMT", - "dc:creator": "Stuti Mishra and Lydia Patrick", - "dc:date": "2024-01-18T11:54:36+00:00", - "content": "

Rare amber warning in place in Scotland as UK sees another below-freezing night

", - "contentSnippet": "Rare amber warning in place in Scotland as UK sees another below-freezing night", - "guid": "b2472054", - "categories": [ - "Weather" - ], - "isoDate": "2024-01-18T11:54:36.000Z" - }, - { - "creator": "Eleanor Crooks", - "date": "2024-01-18T11:53:25+00:00", - "title": "Cameron Norrie plays down physical issues after five-set win at Australian Open", - "link": "https://www.independent.co.uk/sport/tennis/cameron-norrie-british-australian-auckland-eurosport-b2480800.html", - "pubDate": "Thu, 18 Jan 2024 11:53:25 GMT", - "dc:creator": "Eleanor Crooks", - "dc:date": "2024-01-18T11:53:25+00:00", - "content": "The British number one fought back from two sets to love down to win a match for the third time in his career.", - "contentSnippet": "The British number one fought back from two sets to love down to win a match for the third time in his career.", - "guid": "b2480800", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2024-01-18T11:53:25.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-18T11:52:01+00:00", - "title": "Jennifer Lopez and Ben Affleck ride motorcycle together in This Is Me... Now trailer", - "link": "https://www.independent.co.uk/tv/culture/jlo-ben-affleck-this-is-me-now-b2480793.html", - "pubDate": "Thu, 18 Jan 2024 11:52:01 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-18T11:52:01+00:00", - "content": "

Jennifer Lopez stars in a trailer for her upcoming film This Is Me... Now: A Love Story, which will be released on Amazon's Prime Video to coincide with her first studio album in more than ten years.

", - "contentSnippet": "Jennifer Lopez stars in a trailer for her upcoming film This Is Me... Now: A Love Story, which will be released on Amazon's Prime Video to coincide with her first studio album in more than ten years.", - "guid": "b2480793", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-18T11:52:01.000Z" - }, - { - "creator": "Ben Hatton", - "date": "2024-01-18T11:52:01+00:00", - "title": "Fujitsu vows to compensate victims of Post Office Horizon IT scandal", - "link": "https://www.independent.co.uk/business/fujitsu-vows-to-compensate-victims-of-post-office-horizon-it-scandal-b2480801.html", - "pubDate": "Thu, 18 Jan 2024 11:52:01 GMT", - "dc:creator": "Ben Hatton", - "dc:date": "2024-01-18T11:52:01+00:00", - "content": "The Japanese technology firm offered its \u2018deepest apologies\u2019 to subpostmasters and their families in a fresh statement on Thursday.", - "contentSnippet": "The Japanese technology firm offered its \u2018deepest apologies\u2019 to subpostmasters and their families in a fresh statement on Thursday.", - "guid": "b2480801", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T11:52:01.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-18T11:51:44+00:00", - "title": "Rishi Sunak unable to confirm when Rwanda flights will take off after policy win", - "link": "https://www.independent.co.uk/tv/news/rishi-sunak-rwanda-vote-flights-b2480781.html", - "pubDate": "Thu, 18 Jan 2024 11:51:44 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-18T11:51:44+00:00", - "content": "

Rishi Sunak did not guarantee that a flight would take off to Rwanda before the general election if legislation passed the House of Lords quickly.

", - "contentSnippet": "Rishi Sunak did not guarantee that a flight would take off to Rwanda before the general election if legislation passed the House of Lords quickly.", - "guid": "b2480781", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-18T11:51:44.000Z" - }, - { - "creator": "Tom Watling and Maira Butt", - "date": "2024-01-18T11:46:42+00:00", - "title": "Russia-Ukraine war \u2013 live: Kyiv targets St Petersburg oil facility in rare drone attack on Putin\u2019s home city", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-putin-drone-strikes-b2480572.html", - "pubDate": "Thu, 18 Jan 2024 11:46:42 GMT", - "dc:creator": "Tom Watling and Maira Butt", - "dc:date": "2024-01-18T11:46:42+00:00", - "content": "

Russian outlets are claiming that the drone struck between two fuel tanks in a St Petersburg oil facility

", - "contentSnippet": "Russian outlets are claiming that the drone struck between two fuel tanks in a St Petersburg oil facility", - "guid": "b2466307", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-18T11:46:42.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2024-01-18T11:46:31+00:00", - "title": "Visual artists need better protection from AI, group warns", - "link": "https://www.independent.co.uk/tech/government-b2480794.html", - "pubDate": "Thu, 18 Jan 2024 11:46:31 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2024-01-18T11:46:31+00:00", - "content": "The Design And Artists Copyright Society called for Government action after a survey found that respondents wanted greater protection.", - "contentSnippet": "The Design And Artists Copyright Society called for Government action after a survey found that respondents wanted greater protection.", - "guid": "b2480794", - "categories": [ - "Tech" - ], - "isoDate": "2024-01-18T11:46:31.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-18T11:45:04+00:00", - "title": "Halle Bailey reveals why she kept pregnancy secret", - "link": "https://www.independent.co.uk/tv/lifestyle/halle-bailey-secret-pregnancy-baby-b2480791.html", - "pubDate": "Thu, 18 Jan 2024 11:45:04 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-18T11:45:04+00:00", - "content": "

Halle Bailey has explained why she decided to keep her pregnancy a secret, after announcing the birth of her baby boy.

", - "contentSnippet": "Halle Bailey has explained why she decided to keep her pregnancy a secret, after announcing the birth of her baby boy.", - "guid": "b2480791", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-18T11:45:04.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-18T11:43:39+00:00", - "title": "Watch live: Bafta 2024 nominations announced by Kingsley Ben-Adir and Naomi Ackie as Barbie and Oppenheimer expected to triumph", - "link": "https://www.independent.co.uk/arts-entertainment/bafta-nominations-2024-watch-live-b2480717.html", - "pubDate": "Thu, 18 Jan 2024 11:43:39 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-18T11:43:39+00:00", - "content": "

Watch live as Bafta nominations for the 2024 awards are announced on Thursday, 18 January.

", - "contentSnippet": "Watch live as Bafta nominations for the 2024 awards are announced on Thursday, 18 January.", - "guid": "b2480717", - "categories": [ - "Culture" - ], - "isoDate": "2024-01-18T11:43:39.000Z" - }, - { - "creator": "Joe Middleton", - "date": "2024-01-18T11:42:12+00:00", - "title": "The most scammed items on Facebook Marketplace revelaed", - "link": "https://www.independent.co.uk/news/uk/home-news/facebook-markeplace-scams-tsb-phone-b2480716.html", - "pubDate": "Thu, 18 Jan 2024 11:42:12 GMT", - "dc:creator": "Joe Middleton", - "dc:date": "2024-01-18T11:42:12+00:00", - "content": "

The banking retail group found that 34 per cent of the listings on the online shop were fraudulent

", - "contentSnippet": "The banking retail group found that 34 per cent of the listings on the online shop were fraudulent", - "guid": "b2480716", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-18T11:42:12.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2024-01-18T11:41:14+00:00", - "title": "Pakistan conducts retaliatory strikes inside Iran amid fears of widening conflict", - "link": "https://www.independent.co.uk/asia/south-asia/pakistan-response-iran-airstrikes-attack-latest-b2480574.html", - "pubDate": "Thu, 18 Jan 2024 11:41:14 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2024-01-18T11:41:14+00:00", - "content": "

Tehran says at least nine killed in Pakistan\u2019s air strike on border village

", - "contentSnippet": "Tehran says at least nine killed in Pakistan\u2019s air strike on border village", - "guid": "b2480574", - "categories": [ - "South Asia", - "Asia" - ], - "isoDate": "2024-01-18T11:41:14.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2024-01-18T11:36:38+00:00", - "title": "US launches fourth day of strikes against Houthis in Yemen targeting missiles ready for launch", - "link": "https://www.independent.co.uk/news/world/middle-east/yemen-houthi-rebels-us-central-command-attacks-b2480687.html", - "pubDate": "Thu, 18 Jan 2024 11:36:38 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2024-01-18T11:36:38+00:00", - "content": "

US military initiates new series of missile strikes on locations in Yemen under Houthi control

", - "contentSnippet": "US military initiates new series of missile strikes on locations in Yemen under Houthi control", - "guid": "b2480687", - "categories": [ - "Middle East", - "World" - ], - "isoDate": "2024-01-18T11:36:38.000Z" - }, - { - "creator": "Anthony Cuthbertson", - "date": "2024-01-18T11:36:22+00:00", - "title": "First ever space-to-Earth solar power mission succeeds", - "link": "https://www.independent.co.uk/space/space-solar-power-electricity-microwaves-b2480671.html", - "pubDate": "Thu, 18 Jan 2024 11:36:22 GMT", - "dc:creator": "Anthony Cuthbertson", - "dc:date": "2024-01-18T11:36:22+00:00", - "content": "

Scientists say success of test will \u2018help chart the future of space solar power\u2019

", - "contentSnippet": "Scientists say success of test will \u2018help chart the future of space solar power\u2019", - "guid": "b2480671", - "categories": [ - "Space" - ], - "isoDate": "2024-01-18T11:36:22.000Z" - }, - { - "creator": "Francois Murphy", - "date": "2024-01-18T11:34:31+00:00", - "title": "Beer Party to provide sober warning to rival politicians in Austrian elections", - "link": "https://www.independent.co.uk/news/world/europe/austria-beer-party-election-leader-b2480782.html", - "pubDate": "Thu, 18 Jan 2024 11:34:31 GMT", - "dc:creator": "Francois Murphy", - "dc:date": "2024-01-18T11:34:31+00:00", - "content": "

\u2018We are convinced the Beer Party can make a positive contribution in parliament\u2019

", - "contentSnippet": "\u2018We are convinced the Beer Party can make a positive contribution in parliament\u2019", - "guid": "b2480782", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2024-01-18T11:34:31.000Z" - }, - { - "creator": "Nilima Marshall", - "date": "2024-01-18T11:32:08+00:00", - "title": "Peregrine Moon lander on course to burn up in Earth\u2019s atmosphere", - "link": "https://www.independent.co.uk/space/earth-moon-south-pacific-open-university-cape-canaveral-b2480632.html", - "pubDate": "Thu, 18 Jan 2024 11:32:08 GMT", - "dc:creator": "Nilima Marshall", - "dc:date": "2024-01-18T11:32:08+00:00", - "content": "The spacecraft is due to re-enter at 9pm UK time.", - "contentSnippet": "The spacecraft is due to re-enter at 9pm UK time.", - "guid": "b2480632", - "categories": [ - "Space" - ], - "isoDate": "2024-01-18T11:32:08.000Z" - }, - { - "creator": "Andrew Baldock", - "date": "2024-01-18T11:31:31+00:00", - "title": "Exeter boss backing \u2018calm character\u2019 Immanuel Feyi-Waboso to thrive with England", - "link": "https://www.independent.co.uk/sport/rugby/rugby-union/rob-baxter-exeter-england-six-nations-wales-b2480788.html", - "pubDate": "Thu, 18 Jan 2024 11:31:31 GMT", - "dc:creator": "Andrew Baldock", - "dc:date": "2024-01-18T11:31:31+00:00", - "content": "Chiefs wing is pushing hard for England Six Nations selection.", - "contentSnippet": "Chiefs wing is pushing hard for England Six Nations selection.", - "guid": "b2480788", - "categories": [ - "Rugby Union", - "Rugby", - "Sport" - ], - "isoDate": "2024-01-18T11:31:31.000Z" - }, - { - "creator": "Chloe Hubbard", - "date": "2024-01-18T11:30:29+00:00", - "title": "7 best running buggies for tackling trail, track and city routes with baby in tow", - "link": "https://www.independent.co.uk/extras/indybest/kids/baby-tech-essentials/best-running-buggy-b2155675.html", - "pubDate": "Thu, 18 Jan 2024 11:30:29 GMT", - "dc:creator": "Chloe Hubbard", - "dc:date": "2024-01-18T11:30:29+00:00", - "content": "

Exercising with little passengers on board provides a convenient way to keep fit

", - "contentSnippet": "Exercising with little passengers on board provides a convenient way to keep fit", - "guid": "b2155675", - "categories": [ - "Baby Tech & Essentials", - "Kids", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-18T11:30:29.000Z" - }, - { - "creator": "Jamie Braidwood", - "date": "2024-01-18T11:28:55+00:00", - "title": "Emma Raducanu struggles physically in marathon Australian Open defeat", - "link": "https://www.independent.co.uk/sport/tennis/emma-raducanu-australian-open-result-wang-b2480703.html", - "pubDate": "Thu, 18 Jan 2024 11:28:55 GMT", - "dc:creator": "Jamie Braidwood", - "dc:date": "2024-01-18T11:28:55+00:00", - "content": "

The 21-year-old was beaten 6-4 4-6 6-4 by Yafan Wang after almost three hours in the Australian Open second round

", - "contentSnippet": "The 21-year-old was beaten 6-4 4-6 6-4 by Yafan Wang after almost three hours in the Australian Open second round", - "guid": "b2480703", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2024-01-18T11:28:55.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-18T11:28:46+00:00", - "title": "Ryan Gosling shares amusing reason his daughters have not seen Barbie", - "link": "https://www.independent.co.uk/tv/culture/barbie-ryan-gosling-film-daughters-b2480777.html", - "pubDate": "Thu, 18 Jan 2024 11:28:46 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-18T11:28:46+00:00", - "content": "

Ryan Gosling has revealed why his two daughters have not seen Barbie.

", - "contentSnippet": "Ryan Gosling has revealed why his two daughters have not seen Barbie.", - "guid": "b2480777", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-18T11:28:46.000Z" - }, - { - "creator": "Steve Hogarty", - "date": "2024-01-18T11:23:28+00:00", - "title": "Where to pre-order the Samsung Galaxy S24, S24 Plus and S24 Ultra", - "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/phones-accessories/samsung-galaxy-s24-preorder-review-b2477629.html", - "pubDate": "Thu, 18 Jan 2024 11:23:28 GMT", - "dc:creator": "Steve Hogarty", - "dc:date": "2024-01-18T11:23:28+00:00", - "content": "

Pre-order deals include free double storage and a Samsung Galaxy Watch 6

", - "contentSnippet": "Pre-order deals include free double storage and a Samsung Galaxy Watch 6", - "guid": "b2477629", - "categories": [ - "Phones & Accessories", - "Tech", - "IndyBest", - "Extras" - ], - "isoDate": "2024-01-18T11:23:28.000Z" - }, - { - "creator": "Christopher McKeon", - "date": "2024-01-18T11:22:15+00:00", - "title": "Sunak insists his plan is working despite surprise hike in inflation", - "link": "https://www.independent.co.uk/business/sunak-insists-his-plan-is-working-despite-surprise-hike-in-inflation-b2480779.html", - "pubDate": "Thu, 18 Jan 2024 11:22:15 GMT", - "dc:creator": "Christopher McKeon", - "dc:date": "2024-01-18T11:22:15+00:00", - "content": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", - "contentSnippet": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", - "guid": "b2480779", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T11:22:15.000Z" - }, - { - "creator": "Holly Williams", - "date": "2024-01-18T11:20:28+00:00", - "title": "Naked Wines cutting jobs as sales continue to slide", - "link": "https://www.independent.co.uk/business/naked-wines-cutting-jobs-as-sales-continue-to-slide-b2480755.html", - "pubDate": "Thu, 18 Jan 2024 11:20:28 GMT", - "dc:creator": "Holly Williams", - "dc:date": "2024-01-18T11:20:28+00:00", - "content": "The online wine firm said jobs were being axed across \u2018all levels of the organisation\u2019 under plans to save another \u00a37 million a year.", - "contentSnippet": "The online wine firm said jobs were being axed across \u2018all levels of the organisation\u2019 under plans to save another \u00a37 million a year.", - "guid": "b2480755", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T11:20:28.000Z" - }, - { - "creator": "Tara Cobham", - "date": "2024-01-18T11:20:04+00:00", - "title": "Man charged with spiking woman\u2019s drink at Mayfair club", - "link": "https://www.independent.co.uk/news/uk/crime/spiking-drink-met-police-women-mayfair-b2480764.html", - "pubDate": "Thu, 18 Jan 2024 11:20:04 GMT", - "dc:creator": "Tara Cobham", - "dc:date": "2024-01-18T11:20:04+00:00", - "content": "

Vikas Nath, 61, will next appear in court in February

", - "contentSnippet": "Vikas Nath, 61, will next appear in court in February", - "guid": "b2480764", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2024-01-18T11:20:04.000Z" - }, - { - "creator": "Jonathan McCambridge", - "date": "2024-01-18T11:18:49+00:00", - "title": "Unions warn of escalating action as thousands strike across Northern Ireland", - "link": "https://www.independent.co.uk/business/unions-warn-of-escalating-action-as-thousands-strike-across-northern-ireland-b2480772.html", - "pubDate": "Thu, 18 Jan 2024 11:18:49 GMT", - "dc:creator": "Jonathan McCambridge", - "dc:date": "2024-01-18T11:18:49+00:00", - "content": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", - "contentSnippet": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", - "guid": "b2480772", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T11:18:49.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-18T11:18:38+00:00", - "title": "Red Sea shipping problems have \u2018limited impact\u2019 on products \u2013 Poundland owner", - "link": "https://www.independent.co.uk/business/red-sea-shipping-problems-have-limited-impact-on-products-poundland-owner-b2480714.html", - "pubDate": "Thu, 18 Jan 2024 11:18:38 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-18T11:18:38+00:00", - "content": "Global shipping has been forced to revert to its ancient routes as the Houthi group started hitting cargo ships.", - "contentSnippet": "Global shipping has been forced to revert to its ancient routes as the Houthi group started hitting cargo ships.", - "guid": "b2480714", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T11:18:38.000Z" - }, - { - "creator": "Holly Evans", - "date": "2024-01-18T11:18:06+00:00", - "title": "Uniqlo sues Shein over claims they copied popular \u2018Mary Poppins\u2019 shoulder bag", - "link": "https://www.independent.co.uk/news/uniqlo-sues-shein-mary-poppins-bag-b2480729.html", - "pubDate": "Thu, 18 Jan 2024 11:18:06 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2024-01-18T11:18:06+00:00", - "content": "Uniqlo Co_ has sued rival retailer Shein over a small shoulder bag the Japanese retailer said was an inferior and unlawful copy of its own hit product touted as the \u201cMary Poppins bag.\u201d", - "contentSnippet": "Uniqlo Co_ has sued rival retailer Shein over a small shoulder bag the Japanese retailer said was an inferior and unlawful copy of its own hit product touted as the \u201cMary Poppins bag.\u201d", - "guid": "b2480551", - "isoDate": "2024-01-18T11:18:06.000Z" - }, - { - "creator": "Alexander Butler", - "date": "2024-01-18T11:17:11+00:00", - "title": "Biscuits and crackers recalled as moth larvae found in snack", - "link": "https://www.independent.co.uk/news/uk/home-news/crackers-moth-warning-b2480747.html", - "pubDate": "Thu, 18 Jan 2024 11:17:11 GMT", - "dc:creator": "Alexander Butler", - "dc:date": "2024-01-18T11:17:11+00:00", - "content": "

The crackers and biscuits were declared unfit for consumption after moth larvae was discovered in them

", - "contentSnippet": "The crackers and biscuits were declared unfit for consumption after moth larvae was discovered in them", - "guid": "b2480747", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-18T11:17:11.000Z" - }, - { - "creator": "Albert Toth", - "date": "2024-01-18T11:16:14+00:00", - "title": "Cold weather guide: Frozen pipes, energy bills, and keeping warm", - "link": "https://www.independent.co.uk/news/uk/home-news/cold-weather-uk-help-pipes-heating-bills-warm-b2480699.html", - "pubDate": "Thu, 18 Jan 2024 11:16:14 GMT", - "dc:creator": "Albert Toth", - "dc:date": "2024-01-18T11:16:14+00:00", - "content": "

Everything you need to know to protect yourself from cold and heating costs this winter

", - "contentSnippet": "Everything you need to know to protect yourself from cold and heating costs this winter", - "guid": "b2480699", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-18T11:16:14.000Z" - }, - { - "creator": "Holly Evans", - "date": "2024-01-18T11:14:40+00:00", - "title": "Mothers who don\u2019t brush their teeth pass bad hygiene onto children", - "link": "https://www.independent.co.uk/news/health/mothers-children-dental-hygiene-study-b2480706.html", - "pubDate": "Thu, 18 Jan 2024 11:14:40 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2024-01-18T11:14:40+00:00", - "content": "

An analysis found women with high levels of dental plaque were more likely to transfer the fungus to their children

", - "contentSnippet": "An analysis found women with high levels of dental plaque were more likely to transfer the fungus to their children", - "guid": "b2480706", - "categories": [ - "Health" - ], - "isoDate": "2024-01-18T11:14:40.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2024-01-18T11:11:45+00:00", - "title": "Apple Daily publisher testifies against former owner Jimmy Lai in Hong Kong trial", - "link": "https://www.independent.co.uk/asia/china/hong-kong-jimmy-lai-trial-b2480688.html", - "pubDate": "Thu, 18 Jan 2024 11:11:45 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2024-01-18T11:11:45+00:00", - "content": "

Prosecution witness says Lai \u2018pursued democracy, freedom and was anti-totalitarian\u2019

", - "contentSnippet": "Prosecution witness says Lai \u2018pursued democracy, freedom and was anti-totalitarian\u2019", - "guid": "b2480688", - "categories": [ - "China", - "Asia" - ], - "isoDate": "2024-01-18T11:11:45.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-18T11:09:19+00:00", - "title": "Hundreds of bats freeze to death as temperatures plummet in Texas", - "link": "https://www.independent.co.uk/tv/news/texas-weather-cold-stunned-bats-b2480762.html", - "pubDate": "Thu, 18 Jan 2024 11:09:19 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-18T11:09:19+00:00", - "content": "

Hundreds of bats are freezing to death as temperatures plummet in Texas.

", - "contentSnippet": "Hundreds of bats are freezing to death as temperatures plummet in Texas.", - "guid": "b2480762", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-18T11:09:19.000Z" - }, - { - "creator": "Alex Woodward", - "date": "2024-01-18T11:08:22+00:00", - "title": "Judge warns Trump can be kicked out of E Jean Carroll trial for in-court outbursts", - "link": "https://www.independent.co.uk/news/world/americas/us-politics/judge-threatens-trump-e-jean-carroll-b2480760.html", - "pubDate": "Thu, 18 Jan 2024 11:08:22 GMT", - "dc:creator": "Alex Woodward", - "dc:date": "2024-01-18T11:08:22+00:00", - "content": "

The former president defies a judge\u2019s orders as he faces paying out millions of dollars for defamation

", - "contentSnippet": "The former president defies a judge\u2019s orders as he faces paying out millions of dollars for defamation", - "guid": "b2480376", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2024-01-18T11:08:22.000Z" - }, - { - "creator": "Vladimir Isachenkov", - "date": "2024-01-18T11:05:35+00:00", - "title": "Russia's foreign minister rejects a US proposal to resume talks on nuclear arms control", - "link": "https://www.independent.co.uk/news/russia-ap-washington-sergey-lavrov-moscow-b2480765.html", - "pubDate": "Thu, 18 Jan 2024 11:05:35 GMT", - "dc:creator": "Vladimir Isachenkov", - "dc:date": "2024-01-18T11:05:35+00:00", - "content": "Russia\u2019s top diplomat has dismissed a proposal by the United States to resume a dialogue on nuclear arms control", - "contentSnippet": "Russia\u2019s top diplomat has dismissed a proposal by the United States to resume a dialogue on nuclear arms control", - "guid": "b2480765", - "isoDate": "2024-01-18T11:05:35.000Z" - }, - { - "creator": "Kelvin Chan and Jamey Keaten", - "date": "2024-01-18T11:03:57+00:00", - "title": "AI is the buzz, the big opportunity and the risk to watch among the Davos glitterati", - "link": "https://www.independent.co.uk/news/ap-openai-satya-nadella-microsoft-emmanuel-macron-b2480761.html", - "pubDate": "Thu, 18 Jan 2024 11:03:57 GMT", - "dc:creator": "Kelvin Chan and Jamey Keaten", - "dc:date": "2024-01-18T11:03:57+00:00", - "content": "Artificial intelligence is easily the biggest buzzword for world leaders and corporate bosses diving into big ideas at the World Economic Forum\u2019s glitzy annual meeting in Davos", - "contentSnippet": "Artificial intelligence is easily the biggest buzzword for world leaders and corporate bosses diving into big ideas at the World Economic Forum\u2019s glitzy annual meeting in Davos", - "guid": "b2480761", - "isoDate": "2024-01-18T11:03:57.000Z" - }, - { - "creator": "Harry Latham-Coyle", - "date": "2024-01-18T11:03:03+00:00", - "title": "Glazers could force Sir Jim Ratcliffe to sell stake in Manchester United", - "link": "https://www.independent.co.uk/sport/football/manchester-united-jim-ratcliffe-glazers-b2480693.html", - "pubDate": "Thu, 18 Jan 2024 11:03:03 GMT", - "dc:creator": "Harry Latham-Coyle", - "dc:date": "2024-01-18T11:03:03+00:00", - "content": "

Ineos chairman Ratcliffe is set to complete a deal for a 25 per cent stake in the Old Trafford club

", - "contentSnippet": "Ineos chairman Ratcliffe is set to complete a deal for a 25 per cent stake in the Old Trafford club", - "guid": "b2480693", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T11:03:03.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-18T10:59:16+00:00", - "title": "Flutter loses out on US football results, but shares soar", - "link": "https://www.independent.co.uk/business/flutter-loses-out-on-us-football-results-but-shares-soar-b2480754.html", - "pubDate": "Thu, 18 Jan 2024 10:59:16 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-18T10:59:16+00:00", - "content": "The business said that \u2018customer friendly\u2019 sports results had cost it \u00a3270 million in the US in the fourth quarter.", - "contentSnippet": "The business said that \u2018customer friendly\u2019 sports results had cost it \u00a3270 million in the US in the fourth quarter.", - "guid": "b2480754", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T10:59:16.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2024-01-18T10:59:01+00:00", - "title": "Passengers discover live snake on a plane on AirAsia flight in Thailand ", - "link": "https://www.independent.co.uk/travel/news-and-advice/snake-in-airasia-flight-b2480749.html", - "pubDate": "Thu, 18 Jan 2024 10:59:01 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2024-01-18T10:59:01+00:00", - "content": "

Reptile spotted slithering over lights above plane\u2019s overhead compartments

", - "contentSnippet": "Reptile spotted slithering over lights above plane\u2019s overhead compartments", - "guid": "b2479927", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2024-01-18T10:59:01.000Z" - }, - { - "creator": "Ellie Muir", - "date": "2024-01-18T10:54:18+00:00", - "title": "Channel 5\u2019s Bargain Loving Brits in the Sun star Graham Boland dies ", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/graham-boland-death-bargain-benidorm-b2480741.html", - "pubDate": "Thu, 18 Jan 2024 10:54:18 GMT", - "dc:creator": "Ellie Muir", - "dc:date": "2024-01-18T10:54:18+00:00", - "content": "

TV star owned the popular Benidorm bar Happy Days, which featured on channel\u2019s \u2018Bargain Loving Brits In The Sun\u2019

", - "contentSnippet": "TV star owned the popular Benidorm bar Happy Days, which featured on channel\u2019s \u2018Bargain Loving Brits In The Sun\u2019", - "guid": "b2480741", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-18T10:54:18.000Z" - }, - { - "creator": "Shweta Sharma", - "date": "2024-01-18T10:53:51+00:00", - "title": "Passenger stuck inside plane toilet for entire flight: \u2018Please close the commode lid and sit on it\u2019", - "link": "https://www.independent.co.uk/travel/news-and-advice/india-spicejet-passenger-stuck-plane-toilet-b2480746.html", - "pubDate": "Thu, 18 Jan 2024 10:53:51 GMT", - "dc:creator": "Shweta Sharma", - "dc:date": "2024-01-18T10:53:51+00:00", - "content": "

Passenger flying from Mumbai to Bengaluru on SpiceJet flight went to use toilet after plane became airborne but soon found himself trapped inside

", - "contentSnippet": "Passenger flying from Mumbai to Bengaluru on SpiceJet flight went to use toilet after plane became airborne but soon found himself trapped inside", - "guid": "b2479926", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2024-01-18T10:53:51.000Z" - }, - { - "creator": "Nicole Vassell", - "date": "2024-01-18T10:53:31+00:00", - "title": "Sara Ram\u00edrez hints at And Just Like That exit in cryptic post about \u2018performative\u2019 Hollywood industry", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/and-just-like-that-gaza-che-diaz-b2480713.html", - "pubDate": "Thu, 18 Jan 2024 10:53:31 GMT", - "dc:creator": "Nicole Vassell", - "dc:date": "2024-01-18T10:53:31+00:00", - "content": "

Actor has left fans curious about their future involvement in \u2018Sex and the City\u2019 spin-off

", - "contentSnippet": "Actor has left fans curious about their future involvement in \u2018Sex and the City\u2019 spin-off", - "guid": "b2480713", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-18T10:53:31.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-18T10:51:23+00:00", - "title": "Britney Spears dances in gold sequin dress as she makes social media return", - "link": "https://www.independent.co.uk/tv/lifestyle/britney-spears-instagram-dancing-video-b2480645.html", - "pubDate": "Thu, 18 Jan 2024 10:51:23 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-18T10:51:23+00:00", - "content": "

Britney Spears danced in a gold sequin dress in an Instagram video marking her return to the platform after a 10-day silence.

", - "contentSnippet": "Britney Spears danced in a gold sequin dress in an Instagram video marking her return to the platform after a 10-day silence.", - "guid": "b2480645", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2024-01-18T10:51:23.000Z" - }, - { - "creator": "Justin Spike", - "date": "2024-01-18T10:49:02+00:00", - "title": "Hungary won't back down and change LGBTQ+ and asylum policies criticized by EU, minister says", - "link": "https://www.independent.co.uk/news/hungary-ap-lgbtq-budapest-european-commission-b2480748.html", - "pubDate": "Thu, 18 Jan 2024 10:49:02 GMT", - "dc:creator": "Justin Spike", - "dc:date": "2024-01-18T10:49:02+00:00", - "content": "Hungary\u2019s government will not change policies the European Union believes infringe on LGBTQ+ rights and those of asylum seekers, even if doing so would unfreeze billions in funding the bloc has withheld from Budapest", - "contentSnippet": "Hungary\u2019s government will not change policies the European Union believes infringe on LGBTQ+ rights and those of asylum seekers, even if doing so would unfreeze billions in funding the bloc has withheld from Budapest", - "guid": "b2480748", - "isoDate": "2024-01-18T10:49:02.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-18T10:48:33+00:00", - "title": "Watch Molly and Callum\u2019s tense exchange over past relationship on Love Island All Stars", - "link": "https://www.independent.co.uk/tv/culture/love-island-molly-callum-argument-b2480635.html", - "pubDate": "Thu, 18 Jan 2024 10:48:33 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-18T10:48:33+00:00", - "content": "

Molly and Callum had a tense exchange on Love Island All Stars on Wednesday night (17 January) as their past relationship came up in conversation.

", - "contentSnippet": "Molly and Callum had a tense exchange on Love Island All Stars on Wednesday night (17 January) as their past relationship came up in conversation.", - "guid": "b2480635", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-18T10:48:33.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2024-01-18T10:43:34+00:00", - "title": "France ramps up weapons production for Ukraine and says Russia is scrutinizing the West's mettle", - "link": "https://www.independent.co.uk/news/ukraine-ap-france-russia-paris-b2480740.html", - "pubDate": "Thu, 18 Jan 2024 10:43:34 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2024-01-18T10:43:34+00:00", - "content": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", - "contentSnippet": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", - "guid": "b2480740", - "isoDate": "2024-01-18T10:43:34.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-18T10:42:00+00:00", - "title": "Shares plummet by a third as Watches of Switzerland slashes outlook", - "link": "https://www.independent.co.uk/business/shares-plummet-by-a-third-as-watches-of-switzerland-slashes-outlook-b2480743.html", - "pubDate": "Thu, 18 Jan 2024 10:42:00 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-18T10:42:00+00:00", - "content": "Revenue is expected to grow at a quarter of the pace previously guided, the business said after a tough Christmas.", - "contentSnippet": "Revenue is expected to grow at a quarter of the pace previously guided, the business said after a tough Christmas.", - "guid": "b2480743", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T10:42:00.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2024-01-18T10:41:53+00:00", - "title": "Sunak says party \u2018came together\u2019 for Rwanda bill vote despite Tory rebellion", - "link": "https://www.independent.co.uk/tv/news/rwanda-bill-sunak-press-conference-b2480735.html", - "pubDate": "Thu, 18 Jan 2024 10:41:53 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2024-01-18T10:41:53+00:00", - "content": "

Rishi Sunak has praised the Conservative Party for \u201ccoming together\u201d to pass his Rwanda bill.

", - "contentSnippet": "Rishi Sunak has praised the Conservative Party for \u201ccoming together\u201d to pass his Rwanda bill.", - "guid": "b2480735", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-18T10:41:53.000Z" - }, - { - "creator": "Maanya Sachdeva", - "date": "2024-01-18T10:41:16+00:00", - "title": "TV fitness star Richard Simmons lambasts new biopic about his life in rare statement", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/richard-simmons-biopic-pauly-shore-b2480676.html", - "pubDate": "Thu, 18 Jan 2024 10:41:16 GMT", - "dc:creator": "Maanya Sachdeva", - "dc:date": "2024-01-18T10:41:16+00:00", - "content": "

The uncanny resemblance between Simmons and Shore became the subject of a viral meme last year

", - "contentSnippet": "The uncanny resemblance between Simmons and Shore became the subject of a viral meme last year", - "guid": "b2480676", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2024-01-18T10:41:16.000Z" - }, - { - "creator": "Alan Jones", - "date": "2024-01-18T10:39:39+00:00", - "title": "Steel unions meeting Tata for talks over future of company", - "link": "https://www.independent.co.uk/business/steel-unions-meeting-tata-for-talks-over-future-of-company-b2480526.html", - "pubDate": "Thu, 18 Jan 2024 10:39:39 GMT", - "dc:creator": "Alan Jones", - "dc:date": "2024-01-18T10:39:39+00:00", - "content": "There have been fears of heavy job losses, especially at the plant in Port Talbot.", - "contentSnippet": "There have been fears of heavy job losses, especially at the plant in Port Talbot.", - "guid": "b2480526", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T10:39:39.000Z" - }, - { - "creator": "Roisin O'Connor", - "date": "2024-01-18T10:35:53+00:00", - "title": "Sophie Ellis-Bextor\u2019s \u2018Murder on the Dancefloor\u2019 waltzes into the US charts", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/sophie-ellis-bextor-murder-dancefloor-charts-b2480727.html", - "pubDate": "Thu, 18 Jan 2024 10:35:53 GMT", - "dc:creator": "Roisin O'Connor", - "dc:date": "2024-01-18T10:35:53+00:00", - "content": "

Pop singer\u2019s 2001 hit entered the US charts for the first time in 22 years after experiencing a revival after featuring in \u2018Saltburn\u2019

", - "contentSnippet": "Pop singer\u2019s 2001 hit entered the US charts for the first time in 22 years after experiencing a revival after featuring in \u2018Saltburn\u2019", - "guid": "b2480727", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2024-01-18T10:35:53.000Z" - }, - { - "creator": "Harry Latham-Coyle", - "date": "2024-01-18T10:35:11+00:00", - "title": "Will Jordan Henderson ever be paid for his stint in Saudi Arabia?", - "link": "https://www.independent.co.uk/sport/football/jordan-henderson-saudi-arabia-ajax-liverpool-b2480722.html", - "pubDate": "Thu, 18 Jan 2024 10:35:11 GMT", - "dc:creator": "Harry Latham-Coyle", - "dc:date": "2024-01-18T10:35:11+00:00", - "content": "

The England international appears set to return to Europe and join Ajax

", - "contentSnippet": "The England international appears set to return to Europe and join Ajax", - "guid": "b2480722", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T10:35:11.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-18T10:35:03+00:00", - "title": "Brooklyn Beckham shares \u2018secret\u2019 recipe for grandmother\u2019s sausage and bacon sandwich", - "link": "https://www.independent.co.uk/tv/culture/brookyln-beckham-viral-sandwich-grandmother-uber-eats-b2480631.html", - "pubDate": "Thu, 18 Jan 2024 10:35:03 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-18T10:35:03+00:00", - "content": "

Brooklyn Beckham has shared his \u201csecret\u201d recipe for his grandmother's sausage and bacon sandwich, as well as revealing some of is family\u2019s favourite dishes.

", - "contentSnippet": "Brooklyn Beckham has shared his \u201csecret\u201d recipe for his grandmother's sausage and bacon sandwich, as well as revealing some of is family\u2019s favourite dishes.", - "guid": "b2480631", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-18T10:35:03.000Z" - }, - { - "creator": "Eleanor Crooks", - "date": "2024-01-18T10:31:55+00:00", - "title": "Carlos Alcaraz battles through on testing day for top names at Australian Open", - "link": "https://www.independent.co.uk/sport/tennis/alexander-zverev-carlos-alcaraz-casper-ruud-australian-american-b2480734.html", - "pubDate": "Thu, 18 Jan 2024 10:31:55 GMT", - "dc:creator": "Eleanor Crooks", - "dc:date": "2024-01-18T10:31:55+00:00", - "content": "Alcaraz prevailed 6-4 6-7 (3) 6-3 7-6 (3) while Alexander Zverev and Casper Ruud both needed fifth-set tie-breaks.", - "contentSnippet": "Alcaraz prevailed 6-4 6-7 (3) 6-3 7-6 (3) while Alexander Zverev and Casper Ruud both needed fifth-set tie-breaks.", - "guid": "b2480734", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2024-01-18T10:31:55.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-18T10:29:42+00:00", - "title": "Watch the moment The Traitors\u2019 Diane reveals family secret to Miles", - "link": "https://www.independent.co.uk/tv/culture/traitors-season-2-bbc-diane-miles-b2480728.html", - "pubDate": "Thu, 18 Jan 2024 10:29:42 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-18T10:29:42+00:00", - "content": "

The Traitors contestant Miles was shocked as Diane revealed the secret she kept during her time on the show - that Ross is her son.

", - "contentSnippet": "The Traitors contestant Miles was shocked as Diane revealed the secret she kept during her time on the show - that Ross is her son.", - "guid": "b2480728", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2024-01-18T10:29:42.000Z" - }, - { - "creator": "Archie Mitchell", - "date": "2024-01-18T10:24:03+00:00", - "title": "Jacob Rees-Mogg says he would prefer President Donald Trump to Joe Biden", - "link": "https://www.independent.co.uk/news/uk/politics/trump-biden-election-jacob-rees-mogg-b2480720.html", - "pubDate": "Thu, 18 Jan 2024 10:24:03 GMT", - "dc:creator": "Archie Mitchell", - "dc:date": "2024-01-18T10:24:03+00:00", - "content": "

Jacob Rees-Mogg said Mr Trump is \u2018better disposed\u2019 towards the United Kingdom

", - "contentSnippet": "Jacob Rees-Mogg said Mr Trump is \u2018better disposed\u2019 towards the United Kingdom", - "guid": "b2480720", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-18T10:24:03.000Z" - }, - { - "creator": "Maanya Sachdeva", - "date": "2024-01-18T10:20:12+00:00", - "title": "\u2018Weird\u2019 South Park AI \u2018creepily\u2019 reimagines main characters as real people", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/south-park-deepfake-new-episodes-b2479992.html", - "pubDate": "Thu, 18 Jan 2024 10:20:12 GMT", - "dc:creator": "Maanya Sachdeva", - "dc:date": "2024-01-18T10:20:12+00:00", - "content": "

Ever wondered what Cartman, Kyle, Stan and Kenny would like as humans? Wonder no more

", - "contentSnippet": "Ever wondered what Cartman, Kyle, Stan and Kenny would like as humans? Wonder no more", - "guid": "b2479992", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-18T10:20:12.000Z" - }, - { - "creator": "Najib Jobain and Bassem Mroue", - "date": "2024-01-18T10:19:33+00:00", - "title": "Israeli strike kills 16 in southern Gaza; no word on whether medicines reached hostages", - "link": "https://www.independent.co.uk/news/gaza-ap-israeli-hamas-palestinians-b2480725.html", - "pubDate": "Thu, 18 Jan 2024 10:19:33 GMT", - "dc:creator": "Najib Jobain and Bassem Mroue", - "dc:date": "2024-01-18T10:19:33+00:00", - "content": "Palestinian medics say an Israeli airstrike on a home killed 16 people, half of them children, in the southern Gaza town of Rafah", - "contentSnippet": "Palestinian medics say an Israeli airstrike on a home killed 16 people, half of them children, in the southern Gaza town of Rafah", - "guid": "b2480725", - "isoDate": "2024-01-18T10:19:33.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-18T10:15:32+00:00", - "title": "Th\u00e9r\u00e8se Coffey mistakes Rwanda capital for another country while slamming minister", - "link": "https://www.independent.co.uk/tv/news/therese-coffey-rwanda-gaffe-yvette-cooper-b2480677.html", - "pubDate": "Thu, 18 Jan 2024 10:15:32 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-18T10:15:32+00:00", - "content": "

This is the moment Th\u00e9r\u00e8se Coffey mistakes Rwanda\u2019s capital for another country while hitting out at Labour\u2019s shadow home secretary, Yvette Cooper.

", - "contentSnippet": "This is the moment Th\u00e9r\u00e8se Coffey mistakes Rwanda\u2019s capital for another country while hitting out at Labour\u2019s shadow home secretary, Yvette Cooper.", - "guid": "b2480677", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2024-01-18T10:15:32.000Z" - }, - { - "creator": "Andy Gregory", - "date": "2024-01-18T10:14:54+00:00", - "title": "Call to increase exam grades for pupils at schools hit by concrete crisis ", - "link": "https://www.independent.co.uk/news/education/schools-raac-exam-grades-concrete-b2480696.html", - "pubDate": "Thu, 18 Jan 2024 10:14:54 GMT", - "dc:creator": "Andy Gregory", - "dc:date": "2024-01-18T10:14:54+00:00", - "content": "

Exam marks should be increased by up to 10 per cent, education experts say, after \u2018precedent set during Covid\u2019

", - "contentSnippet": "Exam marks should be increased by up to 10 per cent, education experts say, after \u2018precedent set during Covid\u2019", - "guid": "b2480696", - "categories": [ - "Education" - ], - "isoDate": "2024-01-18T10:14:54.000Z" - }, - { - "creator": "Holly Patrick", - "date": "2024-01-18T10:14:47+00:00", - "title": "Watch: Rishi Sunak makes statement on Rwanda asylum policy after winning Commons vote", - "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-rwanda-livefeed-watch-policy-b2480680.html", - "pubDate": "Thu, 18 Jan 2024 10:14:47 GMT", - "dc:creator": "Holly Patrick", - "dc:date": "2024-01-18T10:14:47+00:00", - "content": "

Watch as Rishi Sunak held a press conference on Thursday, 18 January, after seeing off the prospect of a defeat on his Rwanda asylum policy at the hands of right-wing Conservative MPs.

", - "contentSnippet": "Watch as Rishi Sunak held a press conference on Thursday, 18 January, after seeing off the prospect of a defeat on his Rwanda asylum policy at the hands of right-wing Conservative MPs.", - "guid": "b2480680", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-18T10:14:47.000Z" - }, - { - "creator": "Archie Mitchell", - "date": "2024-01-18T10:09:32+00:00", - "title": "Rishi Sunak\u2019s Rwanda bill is step towards totalitarianism, top lawyer in the Lords warns", - "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-rwanda-election-carlile-b2480702.html", - "pubDate": "Thu, 18 Jan 2024 10:09:32 GMT", - "dc:creator": "Archie Mitchell", - "dc:date": "2024-01-18T10:09:32+00:00", - "content": "

Lord Carlile, the former Independent Reviewer of Terrorism Legislation, said ministers were seeking to elevate themselves \u2018to an unacceptable level above the law\u2019

", - "contentSnippet": "Lord Carlile, the former Independent Reviewer of Terrorism Legislation, said ministers were seeking to elevate themselves \u2018to an unacceptable level above the law\u2019", - "guid": "b2480702", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2024-01-18T10:09:32.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2024-01-18T10:07:06+00:00", - "title": "Watch live: Fujitsu employees give evidence in Post Office Horizon IT inquiry as MPs demand victim compensation", - "link": "https://www.independent.co.uk/news/fujitsu-post-office-inquiry-livestream-b2480698.html", - "pubDate": "Thu, 18 Jan 2024 10:07:06 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2024-01-18T10:07:06+00:00", - "content": "

Watch live as Fujitsu employees give evidence in the Post Office scandal Horizon IT inquiry on Tursday (18 January).

", - "contentSnippet": "Watch live as Fujitsu employees give evidence in the Post Office scandal Horizon IT inquiry on Tursday (18 January).", - "guid": "b2480698", - "isoDate": "2024-01-18T10:07:06.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2024-01-18T10:06:24+00:00", - "title": "Jordan Henderson \u2018set for Ajax medical\u2019 ahead of move from Al-Ettifaq", - "link": "https://www.independent.co.uk/sport/football/jordan-henderson-ajax-transfer-saudi-arabia-b2480712.html", - "pubDate": "Thu, 18 Jan 2024 10:06:24 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2024-01-18T10:06:24+00:00", - "content": "

Henderson is expected to sign an initial 18-month deal at the Dutch giants

", - "contentSnippet": "Henderson is expected to sign an initial 18-month deal at the Dutch giants", - "guid": "b2480660", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T10:06:24.000Z" - }, - { - "creator": "Danny Halpin", - "date": "2024-01-18T10:02:30+00:00", - "title": "UK \u2018largely off track\u2019 on environmental targets, watchdog says", - "link": "https://www.independent.co.uk/climate-change/news/uk-environment-protection-plan-rishi-sunak-b2480710.html", - "pubDate": "Thu, 18 Jan 2024 10:02:30 GMT", - "dc:creator": "Danny Halpin", - "dc:date": "2024-01-18T10:02:30+00:00", - "content": "

Environmental protection head says \u2018deeply concerning adverse environmental trends continue\u2019

", - "contentSnippet": "Environmental protection head says \u2018deeply concerning adverse environmental trends continue\u2019", - "guid": "b2480522", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2024-01-18T10:02:30.000Z" - }, - { - "creator": "Sheikh Saaliq and Biswajeet Banerjee", - "date": "2024-01-18T09:54:53+00:00", - "title": "Modi\u2019s promised Ram temple is set to open and resonate with Hindus ahead of 2024 Indian election", - "link": "https://www.independent.co.uk/asia/india/ayodhya-ram-mandir-inauguration-india-election-2024-b2480692.html", - "pubDate": "Thu, 18 Jan 2024 09:54:53 GMT", - "dc:creator": "Sheikh Saaliq and Biswajeet Banerjee", - "dc:date": "2024-01-18T09:54:53+00:00", - "content": "Preparations are underway in India\u2019s northern Ayodhya city to mark the opening of a grand temple for Lord Ram, Hinduism\u2019s most revered deity", - "contentSnippet": "Preparations are underway in India\u2019s northern Ayodhya city to mark the opening of a grand temple for Lord Ram, Hinduism\u2019s most revered deity", - "guid": "b2479878", - "categories": [ - "India", - "Asia" - ], - "isoDate": "2024-01-18T09:54:53.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-18T09:53:22+00:00", - "title": "Currys reveals slow festive sales as consumers remain \u2018hard-pressed\u2019", - "link": "https://www.independent.co.uk/business/currys-reveals-slow-festive-sales-as-consumers-remain-hardpressed-b2480705.html", - "pubDate": "Thu, 18 Jan 2024 09:53:22 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-18T09:53:22+00:00", - "content": "But the electricals retailer said its profit for the year is likely to be higher than previously expected despite challenging conditions.", - "contentSnippet": "But the electricals retailer said its profit for the year is likely to be higher than previously expected despite challenging conditions.", - "guid": "b2480705", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T09:53:22.000Z" - }, - { - "creator": "Holly Williams", - "date": "2024-01-18T09:52:59+00:00", - "title": "Travis Perkins reveals year-end job losses and signals further staff cuts", - "link": "https://www.independent.co.uk/business/travis-perkins-reveals-yearend-job-losses-and-signals-further-staff-cuts-b2480695.html", - "pubDate": "Thu, 18 Jan 2024 09:52:59 GMT", - "dc:creator": "Holly Williams", - "dc:date": "2024-01-18T09:52:59+00:00", - "content": "The firm is ramping up cost-cutting efforts to save about \u00a335 million a year amid a construction sector slowdown.", - "contentSnippet": "The firm is ramping up cost-cutting efforts to save about \u00a335 million a year amid a construction sector slowdown.", - "guid": "b2480695", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T09:52:59.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2024-01-18T09:50:54+00:00", - "title": "10 actors who regret famous movie roles, from Daniel Radcliffe to Eddie Redmayne", - "link": "https://www.independent.co.uk/arts-entertainment/films/features/actors-famous-movie-roles-regret-b2480708.html", - "pubDate": "Thu, 18 Jan 2024 09:50:54 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2024-01-18T09:50:54+00:00", - "content": "

Some stars wish they could forget certain performances

", - "contentSnippet": "Some stars wish they could forget certain performances", - "guid": "b2336240", - "categories": [ - "Features", - "Film", - "Culture" - ], - "isoDate": "2024-01-18T09:50:54.000Z" - }, - { - "creator": "Martyn Landi", - "date": "2024-01-18T09:47:31+00:00", - "title": "Samsung unveils AI-powered S24 range as it hails \u2018new era of mobile\u2019", - "link": "https://www.independent.co.uk/tech/samsung-korean-google-pixel-apple-b2480339.html", - "pubDate": "Thu, 18 Jan 2024 09:47:31 GMT", - "dc:creator": "Martyn Landi", - "dc:date": "2024-01-18T09:47:31+00:00", - "content": "The smartphone maker has built a range of AI tools into its new phones, including translation, transcription and photo-editing features.", - "contentSnippet": "The smartphone maker has built a range of AI tools into its new phones, including translation, transcription and photo-editing features.", - "guid": "b2480339", - "categories": [ - "Tech" - ], - "isoDate": "2024-01-18T09:47:31.000Z" - }, - { - "creator": "Jack Rathborn", - "date": "2024-01-18T09:46:36+00:00", - "title": "Novak Djokovic has a \u2018special relationship\u2019... and it\u2019s with a Melbourne tree", - "link": "https://www.independent.co.uk/sport/tennis/novak-djokovic-tree-australian-open-2024-b2480678.html", - "pubDate": "Thu, 18 Jan 2024 09:46:36 GMT", - "dc:creator": "Jack Rathborn", - "dc:date": "2024-01-18T09:46:36+00:00", - "content": "

The Serbian has grown to love a certain part of the city during his time competing at the Australian Open

", - "contentSnippet": "The Serbian has grown to love a certain part of the city during his time competing at the Australian Open", - "guid": "b2480678", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2024-01-18T09:46:36.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2024-01-18T09:46:25+00:00", - "title": "Rwanda plan puts modern slavery victims at further risk of exploitation, campaigners warn", - "link": "https://www.independent.co.uk/news/uk/home-news/rwanda-plan-modern-slavery-campaigners-b2477046.html", - "pubDate": "Thu, 18 Jan 2024 09:46:25 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2024-01-18T09:46:25+00:00", - "content": "

Unseen UK, an anti-slavery charity, received a record number of calls to its helpline in March- and there are fears the figures will rise under the government\u2019s Rwanda plan

", - "contentSnippet": "Unseen UK, an anti-slavery charity, received a record number of calls to its helpline in March- and there are fears the figures will rise under the government\u2019s Rwanda plan", - "guid": "b2477046", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2024-01-18T09:46:25.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-18T09:46:21+00:00", - "title": "\u2018We have to hustle harder than the men\u2019: Mikaela Mayer and Natasha Jonas on the risks that are changing a sport", - "link": "https://www.independent.co.uk/sport/boxing/jonas-mayer-fight-preview-prediction-b2479572.html", - "pubDate": "Thu, 18 Jan 2024 09:46:21 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-18T09:46:21+00:00", - "content": "

Ahead of their title bout in Liverpool, the fighters spoke to Alex Pattle about the past, present and future of women\u2019s boxing

", - "contentSnippet": "Ahead of their title bout in Liverpool, the fighters spoke to Alex Pattle about the past, present and future of women\u2019s boxing", - "guid": "b2479572", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2024-01-18T09:46:21.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-18T09:46:07+00:00", - "title": "Natasha Jonas vs Mikaela Mayer time: When does fight start in UK and US this weekend?", - "link": "https://www.independent.co.uk/sport/boxing/jonas-mayer-start-time-ring-walks-b2478840.html", - "pubDate": "Thu, 18 Jan 2024 09:46:07 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-18T09:46:07+00:00", - "content": "

Jonas defends the IBF welterweight title in her hometown of Liverpool

", - "contentSnippet": "Jonas defends the IBF welterweight title in her hometown of Liverpool", - "guid": "b2478834", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2024-01-18T09:46:07.000Z" - }, - { - "creator": "Roisin O'Connor", - "date": "2024-01-18T09:46:04+00:00", - "title": "Ice Spice sued for alleged copyright infringement over \u2018In Ha Mood\u2019", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/ice-spice-in-ha-mood-lawsuit-copyright-d-chamberz-b2480701.html", - "pubDate": "Thu, 18 Jan 2024 09:46:04 GMT", - "dc:creator": "Roisin O'Connor", - "dc:date": "2024-01-18T09:46:04+00:00", - "content": "

Rapper D Chamberz claims the Grammy-nominated artist\u2019s track is a copy of his song \u2018In That Mood\u2019

", - "contentSnippet": "Rapper D Chamberz claims the Grammy-nominated artist\u2019s track is a copy of his song \u2018In That Mood\u2019", - "guid": "b2480701", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2024-01-18T09:46:04.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-18T09:45:57+00:00", - "title": "It\u2019s difficult to ban even a sex offender from working in finance \u2013 FCA boss", - "link": "https://www.independent.co.uk/business/it-s-difficult-to-ban-even-a-sex-offender-from-working-in-finance-fca-boss-b2480310.html", - "pubDate": "Thu, 18 Jan 2024 09:45:57 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-18T09:45:57+00:00", - "content": "Nikhil Rathi said that child grooming alone was not enough for him to remove someone\u2019s permission to work in regulated finance.", - "contentSnippet": "Nikhil Rathi said that child grooming alone was not enough for him to remove someone\u2019s permission to work in regulated finance.", - "guid": "b2480310", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T09:45:57.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-18T09:45:52+00:00", - "title": "UFC 297 card: Strickland vs Du Plessis and all fights this weekend", - "link": "https://www.independent.co.uk/sport/ufc/ufc-297-card-strickland-du-plessis-fights-b2478808.html", - "pubDate": "Thu, 18 Jan 2024 09:45:52 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-18T09:45:52+00:00", - "content": "

The middleweight title is on the line in the main event, after a fight for the vacant women\u2019s bantamweight belt

", - "contentSnippet": "The middleweight title is on the line in the main event, after a fight for the vacant women\u2019s bantamweight belt", - "guid": "b2478797", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2024-01-18T09:45:52.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-18T09:45:48+00:00", - "title": "UFC 297 time: When does Strickland vs Du Plessis start in UK and US this weekend?", - "link": "https://www.independent.co.uk/sport/ufc/ufc-297-start-time-uk-b2478804.html", - "pubDate": "Thu, 18 Jan 2024 09:45:48 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-18T09:45:48+00:00", - "content": "

The middleweight title is on the line in the main event, after a fight for the vacant women\u2019s bantamweight belt

", - "contentSnippet": "The middleweight title is on the line in the main event, after a fight for the vacant women\u2019s bantamweight belt", - "guid": "b2478797", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2024-01-18T09:45:48.000Z" - }, - { - "creator": "Henry Saker-Clark", - "date": "2024-01-18T09:45:34+00:00", - "title": "London markets plunge after surprise jump in inflation", - "link": "https://www.independent.co.uk/business/london-markets-plunge-after-surprise-jump-in-inflation-b2480311.html", - "pubDate": "Thu, 18 Jan 2024 09:45:34 GMT", - "dc:creator": "Henry Saker-Clark", - "dc:date": "2024-01-18T09:45:34+00:00", - "content": "The city\u2019s top financial index, the FTSE 100, moved 1.48%, or 112.05 points lower, to finish at 7,446.29.", - "contentSnippet": "The city\u2019s top financial index, the FTSE 100, moved 1.48%, or 112.05 points lower, to finish at 7,446.29.", - "guid": "b2480311", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T09:45:34.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2024-01-18T09:45:13+00:00", - "title": "Next UFC Fight Night: Event start time, card and how to watch", - "link": "https://www.independent.co.uk/sport/ufc/next-ufc-fight-event-january-schedule-2024-b2478473.html", - "pubDate": "Thu, 18 Jan 2024 09:45:13 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2024-01-18T09:45:13+00:00", - "content": "

All you need to know about the MMA promotion\u2019s upcoming fights

", - "contentSnippet": "All you need to know about the MMA promotion\u2019s upcoming fights", - "guid": "b2461922", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2024-01-18T09:45:13.000Z" - }, - { - "creator": "Nicole Vassell", - "date": "2024-01-18T09:12:29+00:00", - "title": "American Nightmare: Netflix documentary leaves users disgusted \u2013 \u2018I\u2019m in a complete state of shock\u2019", - "link": "https://www.independent.co.uk/arts-entertainment/tv/news/american-nightmare-tv-netflix-denise-huskins-b2480681.html", - "pubDate": "Thu, 18 Jan 2024 09:12:29 GMT", - "dc:creator": "Nicole Vassell", - "dc:date": "2024-01-18T09:12:29+00:00", - "content": "

\u2018This is the craziest thing I have EVER watched,\u2019 one astounded viewer wrote

", - "contentSnippet": "\u2018This is the craziest thing I have EVER watched,\u2019 one astounded viewer wrote", - "guid": "b2479955", - "categories": [ - "News", - "TV & Radio", - "Culture" - ], - "isoDate": "2024-01-18T09:12:29.000Z" - }, - { - "creator": "Adam Forrest and Kate Devlin", - "date": "2023-10-27T12:50:03+00:00", - "title": "Starmer urged to back Gaza ceasefire as Sadiq Khan becomes most senior Labour figure to join rebellion", - "link": "https://www.independent.co.uk/news/uk/politics/starmer-sadiq-khan-labour-gaza-ceasefire-b2437046.html", - "pubDate": "Fri, 27 Oct 2023 12:50:03 GMT", - "dc:creator": "Adam Forrest and Kate Devlin", - "dc:date": "2023-10-27T12:50:03+00:00", - "content": "

London mayor says ceasefire would \u2018stop the killing\u2019 and let in aid \u2013 as nearly quarter of Labour MPs defy leadership

", - "contentSnippet": "London mayor says ceasefire would \u2018stop the killing\u2019 and let in aid \u2013 as nearly quarter of Labour MPs defy leadership", - "guid": "b2437046", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2023-10-27T12:50:03.000Z" - }, - { - "creator": "Alexander Butler,Bel Trew and Namita Singh", - "date": "2023-10-27T12:48:28+00:00", - "title": "Israel-Gaza live: Hamas commander \u2018killed in IDF air strike\u2019 as 10 trucks of aid for Palestinians enter strip", - "link": "https://www.independent.co.uk/news/world/middle-east/israel-palestine-war-gaza-hamas-ground-invasion-b2436944.html", - "pubDate": "Fri, 27 Oct 2023 12:48:28 GMT", - "dc:creator": "Alexander Butler,Bel Trew and Namita Singh", - "dc:date": "2023-10-27T12:48:28+00:00", - "content": "

The Israel Defence Forces said it had conducted more air strikes on Hamas targets over the last 24 hours

", - "contentSnippet": "The Israel Defence Forces said it had conducted more air strikes on Hamas targets over the last 24 hours", - "guid": "b2436944", - "categories": [ - "Middle East", - "World" - ], - "isoDate": "2023-10-27T12:48:28.000Z" - }, - { - "creator": "R.j. Rico", - "date": "2023-10-27T12:47:33+00:00", - "title": "As the 'Hollywood of the South,' Atlanta has boomed. Its actors and crew are now at a crossroads", - "link": "https://www.independent.co.uk/news/ap-georgia-writers-los-angeles-netflix-b2437156.html", - "pubDate": "Fri, 27 Oct 2023 12:47:33 GMT", - "dc:creator": "R.j. Rico", - "dc:date": "2023-10-27T12:47:33+00:00", - "content": "For more than a decade, work had been nonstop in Atlanta\u2019s booming film industry thanks to Georgia\u2019s extremely generous tax break", - "contentSnippet": "For more than a decade, work had been nonstop in Atlanta\u2019s booming film industry thanks to Georgia\u2019s extremely generous tax break", - "guid": "b2437156", - "isoDate": "2023-10-27T12:47:33.000Z" - }, - { - "creator": "Daisy Lester", - "date": "2023-10-27T12:46:33+00:00", - "title": "This SAD lamp will help banish the blues \u2013 and it\u2019s reduced at Amazon", - "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/sad-lamp-amazon-deal-uk-b2437078.html", - "pubDate": "Fri, 27 Oct 2023 12:46:33 GMT", - "dc:creator": "Daisy Lester", - "dc:date": "2023-10-27T12:46:33+00:00", - "content": "

The light can help tackle the symptoms of seasonal affective disorder

", - "contentSnippet": "The light can help tackle the symptoms of seasonal affective disorder", - "guid": "b2437078", - "categories": [ - "Tech", - "IndyBest", - "Extras" - ], - "isoDate": "2023-10-27T12:46:33.000Z" - }, - { - "creator": "Rachel Sharp", - "date": "2023-10-27T12:45:17+00:00", - "title": "What we know about the Maine mass shooting: A children\u2019s party, an Army Reservist and 18 dead ", - "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-victims-suspect-b2437073.html", - "pubDate": "Fri, 27 Oct 2023 12:45:17 GMT", - "dc:creator": "Rachel Sharp", - "dc:date": "2023-10-27T12:45:17+00:00", - "content": "

It was by all accounts a normal Wednesday night in Lewiston, Maine \u2013 until it was rocked by the latest horrific act of gun violence in America, Rachel Sharp reports. WARNING: Disturbing images

", - "contentSnippet": "It was by all accounts a normal Wednesday night in Lewiston, Maine \u2013 until it was rocked by the latest horrific act of gun violence in America, Rachel Sharp reports. WARNING: Disturbing images", - "guid": "b2437073", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T12:45:17.000Z" - }, - { - "creator": "Simon Calder", - "date": "2023-10-27T12:45:04+00:00", - "title": "British Airways made \u00a350 per second profit during first nine months of 2023", - "link": "https://www.independent.co.uk/travel/news-and-advice/british-airways-profit-2023-iag-b2436997.html", - "pubDate": "Fri, 27 Oct 2023 12:45:04 GMT", - "dc:creator": "Simon Calder", - "dc:date": "2023-10-27T12:45:04+00:00", - "content": "

BA parent company IAG warns of possible problems with air-traffic control and airports\u2019 resilience, despite \u00a31.15bn profit

", - "contentSnippet": "BA parent company IAG warns of possible problems with air-traffic control and airports\u2019 resilience, despite \u00a31.15bn profit", - "guid": "b2436997", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2023-10-27T12:45:04.000Z" - }, - { - "creator": "Andrea Rosa", - "date": "2023-10-27T12:43:11+00:00", - "title": "War-weary mothers, wives and children of Ukrainian soldiers demand a cap on military service time", - "link": "https://www.independent.co.uk/news/ap-kremlin-scores-kyiv-russia-b2437155.html", - "pubDate": "Fri, 27 Oct 2023 12:43:11 GMT", - "dc:creator": "Andrea Rosa", - "dc:date": "2023-10-27T12:43:11+00:00", - "content": "Scores of protesters have gathered in the streets of Ukrainian cities to demand a cap of 18 months on mandatory military service", - "contentSnippet": "Scores of protesters have gathered in the streets of Ukrainian cities to demand a cap of 18 months on mandatory military service", - "guid": "b2437155", - "isoDate": "2023-10-27T12:43:11.000Z" - }, - { - "creator": "Daisy Lester", - "date": "2023-10-27T12:42:48+00:00", - "title": "11 best jewellery advent calendars for a daily dose of bling this Christmas", - "link": "https://www.independent.co.uk/extras/indybest/christmasgifts/advent-calendars/best-jewellery-advent-calendar-2023-b2212590.html", - "pubDate": "Fri, 27 Oct 2023 12:42:48 GMT", - "dc:creator": "Daisy Lester", - "dc:date": "2023-10-27T12:42:48+00:00", - "content": "

Frankincense and myrrh won\u2019t get a look in with these gifts from Missoma, Astrid & Miyu and more

", - "contentSnippet": "Frankincense and myrrh won\u2019t get a look in with these gifts from Missoma, Astrid & Miyu and more", - "guid": "b2212590", - "categories": [ - "Advent calendars", - "Christmas", - "IndyBest", - "Extras" - ], - "isoDate": "2023-10-27T12:42:48.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-10-27T12:42:07+00:00", - "title": "A blast kills at least 4 people and injures others in a Shiite neighborhood of the Afghan capital", - "link": "https://www.independent.co.uk/news/kabul-ap-shiite-afghan-muslim-b2437153.html", - "pubDate": "Fri, 27 Oct 2023 12:42:07 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-10-27T12:42:07+00:00", - "content": "A police spokesperson in Afghanistan's capital says the death toll from an explosion at a boxing club has increased to four, with another seven people critically injured", - "contentSnippet": "A police spokesperson in Afghanistan's capital says the death toll from an explosion at a boxing club has increased to four, with another seven people critically injured", - "guid": "b2437153", - "isoDate": "2023-10-27T12:42:07.000Z" - }, - { - "creator": "Stephanie Wareham", - "date": "2023-10-27T12:40:55+00:00", - "title": "\u2018Dangerous\u2019 gang kidnapped and tortured men in return for cash and jewellery", - "link": "https://www.independent.co.uk/news/uk/crime/south-wales-police-cardiff-hemel-hempstead-northwick-park-hospital-rolex-b2437148.html", - "pubDate": "Fri, 27 Oct 2023 12:40:55 GMT", - "dc:creator": "Stephanie Wareham", - "dc:date": "2023-10-27T12:40:55+00:00", - "content": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", - "contentSnippet": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", - "guid": "b2437148", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T12:40:55.000Z" - }, - { - "creator": "Chris Wilson", - "date": "2023-10-27T12:39:19+00:00", - "title": "Woman tries to get around airline luggage policy by hiding bag under her shirt", - "link": "https://www.independent.co.uk/travel/news-and-advice/woman-airline-hand-luggage-hiding-bag-shirt-b2437068.html", - "pubDate": "Fri, 27 Oct 2023 12:39:19 GMT", - "dc:creator": "Chris Wilson", - "dc:date": "2023-10-27T12:39:19+00:00", - "content": "

The passenger was allegedly attempting to evade Ryanair\u2019s strict baggage limits

", - "contentSnippet": "The passenger was allegedly attempting to evade Ryanair\u2019s strict baggage limits", - "guid": "b2437068", - "categories": [ - "News & Advice", - "Travel" - ], - "isoDate": "2023-10-27T12:39:19.000Z" - }, - { - "creator": "Rory Dollard", - "date": "2023-10-27T12:37:34+00:00", - "title": "Where has it all gone wrong for England at the World Cup?", - "link": "https://www.independent.co.uk/sport/cricket/england-ben-stokes-odi-jos-buttler-reece-topley-b2437146.html", - "pubDate": "Fri, 27 Oct 2023 12:37:34 GMT", - "dc:creator": "Rory Dollard", - "dc:date": "2023-10-27T12:37:34+00:00", - "content": "An ageing squad, confused selection and individual errors have all contributed to a dismal title defence.", - "contentSnippet": "An ageing squad, confused selection and individual errors have all contributed to a dismal title defence.", - "guid": "b2437146", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2023-10-27T12:37:34.000Z" - }, - { - "creator": "Holly Evans", - "date": "2023-10-27T12:36:39+00:00", - "title": "Man accused of being \u2018Somerset gimp\u2019 wrote disturbing journal about masks, court hears", - "link": "https://www.independent.co.uk/news/uk/crime/joshua-hunt-somerset-gimp-man-b2437085.html", - "pubDate": "Fri, 27 Oct 2023 12:36:39 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2023-10-27T12:36:39+00:00", - "content": "

Joshua Hunt told a police officer \u201cI\u2019m not a gimp\u201d when he was arrested on May 9

", - "contentSnippet": "Joshua Hunt told a police officer \u201cI\u2019m not a gimp\u201d when he was arrested on May 9", - "guid": "b2437085", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T12:36:39.000Z" - }, - { - "creator": "Nina Lloyd", - "date": "2023-10-27T12:34:11+00:00", - "title": "UK ministers continue to resist calls for ceasefire in Middle East", - "link": "https://www.independent.co.uk/news/uk/government-israel-middle-east-hamas-foreign-office-b2437036.html", - "pubDate": "Fri, 27 Oct 2023 12:34:11 GMT", - "dc:creator": "Nina Lloyd", - "dc:date": "2023-10-27T12:34:11+00:00", - "content": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", - "contentSnippet": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", - "guid": "b2437036", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T12:34:11.000Z" - }, - { - "creator": "Shi Jing and Li Wenfang", - "date": "2023-10-27T12:34:04+00:00", - "title": "Foreign firms set to invest more", - "link": "https://www.independent.co.uk/asia/china/china-daily/investment-foreign-trade-multinational-companies-b2435345.html", - "pubDate": "Fri, 27 Oct 2023 12:34:04 GMT", - "dc:creator": "Shi Jing and Li Wenfang", - "dc:date": "2023-10-27T12:34:04+00:00", - "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", - "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", - "guid": "b2435345", - "categories": [ - "China Daily", - "China", - "Asia" - ], - "isoDate": "2023-10-27T12:34:04.000Z" - }, - { - "creator": "Ashraf Khalil", - "date": "2023-10-27T12:33:59+00:00", - "title": "The Biden administration is encouraging the conversion of empty office space to affordable housing", - "link": "https://www.independent.co.uk/news/pete-buttigieg-ap-biden-washington-office-of-management-and-budget-b2437145.html", - "pubDate": "Fri, 27 Oct 2023 12:33:59 GMT", - "dc:creator": "Ashraf Khalil", - "dc:date": "2023-10-27T12:33:59+00:00", - "content": "The Biden administration is launching a multi-agency effort to encourage states and cities to convert more empty office buildings into housing units, with billions of federal dollars available to help spur such transitions", - "contentSnippet": "The Biden administration is launching a multi-agency effort to encourage states and cities to convert more empty office buildings into housing units, with billions of federal dollars available to help spur such transitions", - "guid": "b2437145", - "isoDate": "2023-10-27T12:33:59.000Z" - }, - { - "creator": "Joseph Draper", - "date": "2023-10-27T12:33:38+00:00", - "title": "Children leave teddies outside Foreign Office as part of call for Gaza ceasefire", - "link": "https://www.independent.co.uk/news/uk/gaza-foreign-office-hamas-children-uk-government-b2437129.html", - "pubDate": "Fri, 27 Oct 2023 12:33:38 GMT", - "dc:creator": "Joseph Draper", - "dc:date": "2023-10-27T12:33:38+00:00", - "content": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", - "contentSnippet": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", - "guid": "b2437129", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T12:33:38.000Z" - }, - { - "creator": "Liu Zhihua and Zhou Lanxu", - "date": "2023-10-27T12:33:09+00:00", - "title": "New e-CNY payment feature to benefit foreigners", - "link": "https://www.independent.co.uk/asia/china/china-daily/digital-currency-ecny-foreign-travel-b2435338.html", - "pubDate": "Fri, 27 Oct 2023 12:33:09 GMT", - "dc:creator": "Liu Zhihua and Zhou Lanxu", - "dc:date": "2023-10-27T12:33:09+00:00", - "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", - "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", - "guid": "b2435338", - "categories": [ - "China Daily", - "China", - "Asia" - ], - "isoDate": "2023-10-27T12:33:09.000Z" - }, - { - "creator": "Cheng Yuezhu", - "date": "2023-10-27T12:32:45+00:00", - "title": "Clean, green and serene", - "link": "https://www.independent.co.uk/asia/china/china-daily/greenery-urban-planning-oxygen-plant-culture-tourism-b2435331.html", - "pubDate": "Fri, 27 Oct 2023 12:32:45 GMT", - "dc:creator": "Cheng Yuezhu", - "dc:date": "2023-10-27T12:32:45+00:00", - "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", - "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", - "guid": "b2435331", - "categories": [ - "China Daily", - "China", - "Asia" - ], - "isoDate": "2023-10-27T12:32:45.000Z" - }, - { - "creator": "Yang Feiyue", - "date": "2023-10-27T12:32:35+00:00", - "title": "Museum puts the excitement into excavations", - "link": "https://www.independent.co.uk/asia/china/china-daily/museum-excavations-archeology-exhibition-culture-b2435318.html", - "pubDate": "Fri, 27 Oct 2023 12:32:35 GMT", - "dc:creator": "Yang Feiyue", - "dc:date": "2023-10-27T12:32:35+00:00", - "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", - "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", - "guid": "b2435318", - "categories": [ - "China Daily", - "China", - "Asia" - ], - "isoDate": "2023-10-27T12:32:35.000Z" - }, - { - "creator": "Laurie Kellman", - "date": "2023-10-27T12:32:28+00:00", - "title": "About 30 children were taken hostage by Hamas militants. Their families wait in agony", - "link": "https://www.independent.co.uk/news/ap-gaza-hamas-israel-children-b2437144.html", - "pubDate": "Fri, 27 Oct 2023 12:32:28 GMT", - "dc:creator": "Laurie Kellman", - "dc:date": "2023-10-27T12:32:28+00:00", - "content": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", - "contentSnippet": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", - "guid": "b2437144", - "isoDate": "2023-10-27T12:32:28.000Z" - }, - { - "creator": "Zhou Huiying and Tan Xuefei", - "date": "2023-10-27T12:32:18+00:00", - "title": "Skills improve lives for those with disabilities", - "link": "https://www.independent.co.uk/asia/china/china-daily/disabilities-special-educational-needs-life-skills-b2435303.html", - "pubDate": "Fri, 27 Oct 2023 12:32:18 GMT", - "dc:creator": "Zhou Huiying and Tan Xuefei", - "dc:date": "2023-10-27T12:32:18+00:00", - "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", - "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", - "guid": "b2435303", - "categories": [ - "China Daily", - "China", - "Asia" - ], - "isoDate": "2023-10-27T12:32:18.000Z" - }, - { - "creator": "Liu Jianqiao", - "date": "2023-10-27T12:31:20+00:00", - "title": "Love for hanfu brings people together", - "link": "https://www.independent.co.uk/asia/china/china-daily/hanfu-traditional-dress-xiaohongshu-b2435292.html", - "pubDate": "Fri, 27 Oct 2023 12:31:20 GMT", - "dc:creator": "Liu Jianqiao", - "dc:date": "2023-10-27T12:31:20+00:00", - "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", - "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", - "guid": "b2435292", - "categories": [ - "China Daily", - "China", - "Asia" - ], - "isoDate": "2023-10-27T12:31:20.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2023-10-27T12:31:02+00:00", - "title": "Wife of off-duty pilot who \u2018tried to turn off engines mid-flight\u2019 breaks silence", - "link": "https://www.the-independent.com/news/world/americas/crime/alaska-airlines-pilot-joseph-emerson-wife-b2437098.html", - "pubDate": "Fri, 27 Oct 2023 12:31:02 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2023-10-27T12:31:02+00:00", - "content": "

\u2018This is not my Joe,\u2019 says wife of Joseph Emerson who is now facing 83 counts of attempted murder

", - "contentSnippet": "\u2018This is not my Joe,\u2019 says wife of Joseph Emerson who is now facing 83 counts of attempted murder", - "guid": "b2437098", - "categories": [ - "US Crime News", - "Americas", - "World" - ], - "isoDate": "2023-10-27T12:31:02.000Z" - }, - { - "creator": "Namita Singh,Oliver O'Connell and Rachel Sharp", - "date": "2023-10-27T12:30:29+00:00", - "title": "Lewiston Maine shooting LIVE: Robert Card manhunt enters third day as 14-year-old boy among victims", - "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-robert-card-motive-b2436896.html", - "pubDate": "Fri, 27 Oct 2023 12:30:29 GMT", - "dc:creator": "Namita Singh,Oliver O'Connell and Rachel Sharp", - "dc:date": "2023-10-27T12:30:29+00:00", - "content": "

Several victims have now been identified including a 14-year-old boy who was killed at the bowling alley in Lewiston \u2013 while the manhunt for Robert Card continues

", - "contentSnippet": "Several victims have now been identified including a 14-year-old boy who was killed at the bowling alley in Lewiston \u2013 while the manhunt for Robert Card continues", - "guid": "b2436896", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T12:30:29.000Z" - }, - { - "creator": "Namita Singh", - "date": "2023-10-27T12:29:25+00:00", - "title": "How Malaysia\u2019s unique system of rolling monarchy works", - "link": "https://www.independent.co.uk/asia/southeast-asia/malaysia-rolling-monarchy-king-b2437089.html", - "pubDate": "Fri, 27 Oct 2023 12:29:25 GMT", - "dc:creator": "Namita Singh", - "dc:date": "2023-10-27T12:29:25+00:00", - "content": "

Sultan Ibrahim Sultan Iskandar is set to take over from King Al-Sultan Abdullah in January 2024

", - "contentSnippet": "Sultan Ibrahim Sultan Iskandar is set to take over from King Al-Sultan Abdullah in January 2024", - "guid": "b2437089", - "categories": [ - "Southeast Asia", - "Asia" - ], - "isoDate": "2023-10-27T12:29:25.000Z" - }, - { - "creator": "Athena Stavrou", - "date": "2023-10-27T12:29:16+00:00", - "title": "Range Rover drivers struggling to insure cars in crime-hit London as premiums soar", - "link": "https://www.independent.co.uk/news/uk/home-news/range-rover-insure-london-premiums-soar-b2437075.html", - "pubDate": "Fri, 27 Oct 2023 12:29:16 GMT", - "dc:creator": "Athena Stavrou", - "dc:date": "2023-10-27T12:29:16+00:00", - "content": "

Range Rovers are now Britain\u2019s most stolen vehicle and drivers are struggling to get affordable insurance

", - "contentSnippet": "Range Rovers are now Britain\u2019s most stolen vehicle and drivers are struggling to get affordable insurance", - "guid": "b2437075", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-10-27T12:29:16.000Z" - }, - { - "creator": "Emily Pennink", - "date": "2023-10-27T12:21:46+00:00", - "title": "\u2018Terrorist\u2019 ex-GCHQ worker launched knife attack on US spy, court told", - "link": "https://www.independent.co.uk/news/uk/crime/cheltenham-national-security-agency-old-bailey-cctv-b2437119.html", - "pubDate": "Fri, 27 Oct 2023 12:21:46 GMT", - "dc:creator": "Emily Pennink", - "dc:date": "2023-10-27T12:21:46+00:00", - "content": "Joshua Bowles, 29, described himself as a \u2018terrorist\u2019 to police after the attack in Cheltenham on March 9.", - "contentSnippet": "Joshua Bowles, 29, described himself as a \u2018terrorist\u2019 to police after the attack in Cheltenham on March 9.", - "guid": "b2437119", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T12:21:46.000Z" - }, - { - "creator": "Jacob Stolworthy", - "date": "2023-10-27T12:20:38+00:00", - "title": "Fantastic Beasts director says he was left blindsided by JK Rowling comment at first screening", - "link": "https://www.independent.co.uk/arts-entertainment/films/news/harry-potter-fantastic-beasts-jk-rowling-b2437097.html", - "pubDate": "Fri, 27 Oct 2023 12:20:38 GMT", - "dc:creator": "Jacob Stolworthy", - "dc:date": "2023-10-27T12:20:38+00:00", - "content": "

\u2018It was a surprise to most of us,\u2019 David Yates admitted

", - "contentSnippet": "\u2018It was a surprise to most of us,\u2019 David Yates admitted", - "guid": "b2437097", - "categories": [ - "News", - "Film", - "Culture" - ], - "isoDate": "2023-10-27T12:20:38.000Z" - }, - { - "creator": "Mari Yamaguchi", - "date": "2023-10-27T12:20:12+00:00", - "title": "Tokyo's Shibuya district raises alarm against unruly Halloween, even caging landmark statue", - "link": "https://www.independent.co.uk/news/ap-tokyo-seoul-japan-south-korea-b2437141.html", - "pubDate": "Fri, 27 Oct 2023 12:20:12 GMT", - "dc:creator": "Mari Yamaguchi", - "dc:date": "2023-10-27T12:20:12+00:00", - "content": "Ahead of this year\u2019s Halloween weekend, Tokyo\u2019s busy shopping, business and entertainment district of Shibuya is trying hard to shoo away visitors", - "contentSnippet": "Ahead of this year\u2019s Halloween weekend, Tokyo\u2019s busy shopping, business and entertainment district of Shibuya is trying hard to shoo away visitors", - "guid": "b2437141", - "isoDate": "2023-10-27T12:20:12.000Z" - }, - { - "creator": "Sam Russell", - "date": "2023-10-27T12:15:00+00:00", - "title": "Man denies phone linked to Mark Cavendish robbery is his", - "link": "https://www.independent.co.uk/news/uk/crime/mark-cavendish-chelmsford-crown-court-dna-ongar-b2437133.html", - "pubDate": "Fri, 27 Oct 2023 12:15:00 GMT", - "dc:creator": "Sam Russell", - "dc:date": "2023-10-27T12:15:00+00:00", - "content": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", - "contentSnippet": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", - "guid": "b2437133", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T12:15:00.000Z" - }, - { - "creator": "Andrea Cavallier and Rachel Sharp", - "date": "2023-10-27T12:11:03+00:00", - "title": "14-year-old boy bowling with his father is identified as victim of Lewiston mass shooting", - "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-bar-victims-b2436676.html", - "pubDate": "Fri, 27 Oct 2023 12:11:03 GMT", - "dc:creator": "Andrea Cavallier and Rachel Sharp", - "dc:date": "2023-10-27T12:11:03+00:00", - "content": "

Aaron Young, 14, was with his father Bill Young at the Just-In-Time Recreation bowling alley for an evening with their bowling league on Wednesday night

", - "contentSnippet": "Aaron Young, 14, was with his father Bill Young at the Just-In-Time Recreation bowling alley for an evening with their bowling league on Wednesday night", - "guid": "b2436676", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T12:11:03.000Z" - }, - { - "creator": "Craig Paton", - "date": "2023-10-27T12:03:50+00:00", - "title": "Musk responds \u2018blatant racist\u2019 to Yousaf speech made after George Floyd murder", - "link": "https://www.independent.co.uk/news/uk/elon-musk-george-floyd-twitter-first-minister-derek-chauvin-b2437137.html", - "pubDate": "Fri, 27 Oct 2023 12:03:50 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2023-10-27T12:03:50+00:00", - "content": "The video to which the X owner replied was posted by a right-wing account.", - "contentSnippet": "The video to which the X owner replied was posted by a right-wing account.", - "guid": "b2437137", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T12:03:50.000Z" - }, - { - "creator": "Associated Press", - "date": "2023-10-27T12:03:26+00:00", - "title": "Diamondbacks fueled by \u2018disrespect\u2019 in surprise World Series with Rangers", - "link": "https://www.independent.co.uk/sport/us-sport/major-league-baseball/world-series-2023-rangers-diamondbacks-preview-b2437111.html", - "pubDate": "Fri, 27 Oct 2023 12:03:26 GMT", - "dc:creator": "Associated Press", - "dc:date": "2023-10-27T12:03:26+00:00", - "content": "

In the third wild card matchup in MLB history, manager Torey Lovullo insists Arizona will play Texas with \u2018a chip on our shoulder\u2019

", - "contentSnippet": "In the third wild card matchup in MLB history, manager Torey Lovullo insists Arizona will play Texas with \u2018a chip on our shoulder\u2019", - "guid": "b2437111", - "categories": [ - "MLB", - "US Sport", - "Sport" - ], - "isoDate": "2023-10-27T12:03:26.000Z" - }, - { - "creator": "The Associated Press", - "date": "2023-10-27T12:03:11+00:00", - "title": "Live Updates | Search for suspected shooter prompts dread in Maine", - "link": "https://www.independent.co.uk/news/maine-ap-robert-card-shooter-portland-b2437135.html", - "pubDate": "Fri, 27 Oct 2023 12:03:11 GMT", - "dc:creator": "The Associated Press", - "dc:date": "2023-10-27T12:03:11+00:00", - "content": "The ongoing search for Robert Card, an Army reservist who authorities say fatally shot 18 people at a bowling alley and a bar in Maine, is prompting dread around the state", - "contentSnippet": "The ongoing search for Robert Card, an Army reservist who authorities say fatally shot 18 people at a bowling alley and a bar in Maine, is prompting dread around the state", - "guid": "b2437135", - "isoDate": "2023-10-27T12:03:11.000Z" - }, - { - "creator": "Holly Meyer", - "date": "2023-10-27T12:01:45+00:00", - "title": "How a South Dakota priest inspired 125 years of direct democracy \u2014 and the fight to preserve it", - "link": "https://www.independent.co.uk/news/ap-south-dakota-ohio-republican-socialist-party-b2437134.html", - "pubDate": "Fri, 27 Oct 2023 12:01:45 GMT", - "dc:creator": "Holly Meyer", - "dc:date": "2023-10-27T12:01:45+00:00", - "content": "Thanks to a rabble-rousing, socialist priest, it\u2019s a milestone year for direct democracy in the U.S. The practice of citizen-originated ballot measures began 125 years ago when South Dakota became the first state to have them", - "contentSnippet": "Thanks to a rabble-rousing, socialist priest, it\u2019s a milestone year for direct democracy in the U.S. The practice of citizen-originated ballot measures began 125 years ago when South Dakota became the first state to have them", - "guid": "b2437134", - "isoDate": "2023-10-27T12:01:45.000Z" - }, - { - "creator": "Richard Jolly", - "date": "2023-10-27T12:00:30+00:00", - "title": "Mohamed Salah combines reinvention and record-breaking as Premier League\u2019s greatest all-round threat", - "link": "https://www.independent.co.uk/sport/football/mohamed-salah-liverpool-goals-darwin-nunez-b2436964.html", - "pubDate": "Fri, 27 Oct 2023 12:00:30 GMT", - "dc:creator": "Richard Jolly", - "dc:date": "2023-10-27T12:00:30+00:00", - "content": "

Jurgen Klopp hailed the Egyptian as \u2018world-class\u2019 after another midweek strike in the Europa League

", - "contentSnippet": "Jurgen Klopp hailed the Egyptian as \u2018world-class\u2019 after another midweek strike in the Europa League", - "guid": "b2436964", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T12:00:30.000Z" - }, - { - "creator": "Ian Parker", - "date": "2023-10-27T12:00:09+00:00", - "title": "Jurgen Klopp believes Mohamed Salah is \u2018biologically\u2019 still a young player", - "link": "https://www.independent.co.uk/sport/football/mohamed-salah-jurgen-klopp-premier-league-europa-league-arsenal-b2437131.html", - "pubDate": "Fri, 27 Oct 2023 12:00:09 GMT", - "dc:creator": "Ian Parker", - "dc:date": "2023-10-27T12:00:09+00:00", - "content": "Salah has now scored or assisted in each of his last 13 Premier League games at Anfield.", - "contentSnippet": "Salah has now scored or assisted in each of his last 13 Premier League games at Anfield.", - "guid": "b2437131", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T12:00:09.000Z" - }, - { - "creator": "Victoria Richards", - "date": "2023-10-27T11:59:17+00:00", - "title": "Voices: Have men just found a way to be even creepier online?", - "link": "https://www.independent.co.uk/voices/men-woman-sexual-harassment-social-media-ebay-b2436984.html", - "pubDate": "Fri, 27 Oct 2023 11:59:17 GMT", - "dc:creator": "Victoria Richards", - "dc:date": "2023-10-27T11:59:17+00:00", - "content": "

It\u2019s no secret that toxic men will go to extraordinary lengths to berate, bore and belittle women on the internet. But that doesn\u2019t mean I wasn\u2019t shocked to find one man taking things to another level

", - "contentSnippet": "It\u2019s no secret that toxic men will go to extraordinary lengths to berate, bore and belittle women on the internet. But that doesn\u2019t mean I wasn\u2019t shocked to find one man taking things to another level", - "guid": "b2436984", - "categories": [ - "Voices" - ], - "isoDate": "2023-10-27T11:59:17.000Z" - }, - { - "creator": "Mark Staniforth", - "date": "2023-10-27T11:58:58+00:00", - "title": "Mike McMeeken\u2019s move \u2018out of comfort zone\u2019 to Catalans earned England recall", - "link": "https://www.independent.co.uk/sport/england-rugby-league-france-huddersfield-castleford-b2437132.html", - "pubDate": "Fri, 27 Oct 2023 11:58:58 GMT", - "dc:creator": "Mark Staniforth", - "dc:date": "2023-10-27T11:58:58+00:00", - "content": "The 29-year-old made the brave switch to the south of France in 2021 after six seasons with Castleford.", - "contentSnippet": "The 29-year-old made the brave switch to the south of France in 2021 after six seasons with Castleford.", - "guid": "b2437132", - "categories": [ - "Sport" - ], - "isoDate": "2023-10-27T11:58:58.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2023-10-27T11:57:41+00:00", - "title": "Rishi Sunak\u2019s billionaire father-in-law sparks backlash by suggesting young people should work 70-hour weeks", - "link": "https://www.independent.co.uk/asia/india/narayana-murthy-rishi-sunak-workweek-backlash-india-infosys-b2437048.html", - "pubDate": "Fri, 27 Oct 2023 11:57:41 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2023-10-27T11:57:41+00:00", - "content": "

Murthy says India\u2019s work productivity is one of the lowest in the world

", - "contentSnippet": "Murthy says India\u2019s work productivity is one of the lowest in the world", - "guid": "b2437048", - "categories": [ - "India", - "Asia" - ], - "isoDate": "2023-10-27T11:57:41.000Z" - }, - { - "creator": "Andrew Griffin", - "date": "2023-10-27T11:56:48+00:00", - "title": "Your brain doesn\u2019t work the same on Zoom, scientists say", - "link": "https://www.independent.co.uk/tech/zoom-effects-brain-person-conversation-b2437084.html", - "pubDate": "Fri, 27 Oct 2023 11:56:48 GMT", - "dc:creator": "Andrew Griffin", - "dc:date": "2023-10-27T11:56:48+00:00", - "content": "

\u2018Zoom appears to be an impoverished social communication system,\u2019 scientists say after studying the brains of people using it

", - "contentSnippet": "\u2018Zoom appears to be an impoverished social communication system,\u2019 scientists say after studying the brains of people using it", - "guid": "b2437084", - "categories": [ - "Tech" - ], - "isoDate": "2023-10-27T11:56:48.000Z" - }, - { - "creator": "Rebecca Thomas", - "date": "2023-10-27T11:55:41+00:00", - "title": "Warning as patients hospitalised after taking fake Ozempic weight-loss drug", - "link": "https://www.independent.co.uk/news/health/ozempic-weight-loss-jab-patients-hospital-b2437045.html", - "pubDate": "Fri, 27 Oct 2023 11:55:41 GMT", - "dc:creator": "Rebecca Thomas", - "dc:date": "2023-10-27T11:55:41+00:00", - "content": "

Hundreds of fake Ozempic jabs from the black market have been seied by the regulator

", - "contentSnippet": "Hundreds of fake Ozempic jabs from the black market have been seied by the regulator", - "guid": "b2437045", - "categories": [ - "Health" - ], - "isoDate": "2023-10-27T11:55:41.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-10-27T11:53:39+00:00", - "title": "Fury vs Ngannou prize money: How much are fighters earning this weekend?", - "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-prize-money-purse-b2434994.html", - "pubDate": "Fri, 27 Oct 2023 11:53:39 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-10-27T11:53:39+00:00", - "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", - "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", - "guid": "b2434994", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-10-27T11:53:39.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-10-27T11:53:26+00:00", - "title": "Fury vs Ngannou undercard: Who else is fighting this weekend?", - "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-undercard-fights-fighters-b2434991.html", - "pubDate": "Fri, 27 Oct 2023 11:53:26 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-10-27T11:53:26+00:00", - "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", - "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", - "guid": "b2434991", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-10-27T11:53:26.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-10-27T11:53:25+00:00", - "title": "Fury vs Ngannou rules: How many rounds and do knockouts count?", - "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-rules-rounds-knockouts-b2434992.html", - "pubDate": "Fri, 27 Oct 2023 11:53:25 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-10-27T11:53:25+00:00", - "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", - "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", - "guid": "b2434992", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-10-27T11:53:25.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-10-27T11:52:54+00:00", - "title": "Fury vs Ngannou time: When does fight start in UK and US this weekend?", - "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-start-time-ring-walks-b2434990.html", - "pubDate": "Fri, 27 Oct 2023 11:52:54 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-10-27T11:52:54+00:00", - "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", - "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", - "guid": "b2434990", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-10-27T11:52:54.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-10-27T11:52:44+00:00", - "title": "Fury vs Ngannou live stream: When is the fight and how to watch it online and on TV ", - "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-date-time-live-stream-online-b2434975.html", - "pubDate": "Fri, 27 Oct 2023 11:52:44 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-10-27T11:52:44+00:00", - "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", - "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", - "guid": "b2434975", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-10-27T11:52:44.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-10-27T11:51:27+00:00", - "title": "Big Brother\u2019s Jordan shares \u2018dark\u2019 family tragedy with shocked housemates", - "link": "https://www.independent.co.uk/tv/culture/big-brother-jordan-family-tragedy-drugs-b2437123.html", - "pubDate": "Fri, 27 Oct 2023 11:51:27 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-10-27T11:51:27+00:00", - "content": "

Big Brother star Jordan has opened up about his tragic relationship with his father.

", - "contentSnippet": "Big Brother star Jordan has opened up about his tragic relationship with his father.", - "guid": "b2437123", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-10-27T11:51:27.000Z" - }, - { - "creator": "Maya Oppenheim", - "date": "2023-10-27T11:50:12+00:00", - "title": "\u2018When you admit the truth, you have to take action\u2019: The phoneline helping abusers change their behaviour ", - "link": "https://www.independent.co.uk/news/uk/home-news/helpline-domestic-abuse-perpetrators-respect-b2423834.html", - "pubDate": "Fri, 27 Oct 2023 11:50:12 GMT", - "dc:creator": "Maya Oppenheim", - "dc:date": "2023-10-27T11:50:12+00:00", - "content": "

The number of abusers calling a helpline over their actions has surged. But are they really willing to change? Maya Oppenheim listens in to find out

", - "contentSnippet": "The number of abusers calling a helpline over their actions has surged. But are they really willing to change? Maya Oppenheim listens in to find out", - "guid": "b2423834", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-10-27T11:50:12.000Z" - }, - { - "creator": "Aine Fox", - "date": "2023-10-27T11:49:22+00:00", - "title": "Unions accuse Keegan of \u2018inflaming controversy\u2019 over sex education teaching", - "link": "https://www.independent.co.uk/news/uk/unions-education-secretary-secretary-of-state-government-geoff-barton-b2437128.html", - "pubDate": "Fri, 27 Oct 2023 11:49:22 GMT", - "dc:creator": "Aine Fox", - "dc:date": "2023-10-27T11:49:22+00:00", - "content": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", - "contentSnippet": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", - "guid": "b2437128", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T11:49:22.000Z" - }, - { - "creator": "Alisha Rahaman Sarkar", - "date": "2023-10-27T11:44:59+00:00", - "title": "US says Chinese fighter jet risked major accident by flying 10ft from B-52 bomber in South China Sea", - "link": "https://www.independent.co.uk/asia/china/chinese-jet-us-bomber-south-china-sea-b2437060.html", - "pubDate": "Fri, 27 Oct 2023 11:44:59 GMT", - "dc:creator": "Alisha Rahaman Sarkar", - "dc:date": "2023-10-27T11:44:59+00:00", - "content": "

US says Chinese jet flew with \u2018uncontrolled excessive speed\u2019 that put both aircraft in danger

", - "contentSnippet": "US says Chinese jet flew with \u2018uncontrolled excessive speed\u2019 that put both aircraft in danger", - "guid": "b2437060", - "categories": [ - "China", - "Asia" - ], - "isoDate": "2023-10-27T11:44:59.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2023-10-27T11:40:45+00:00", - "title": "Man found dead in chimney a month after tenants hear screams for help", - "link": "https://www.independent.co.uk/news/world/americas/chimney-man-dead-norfolk-nebraska-b2437051.html", - "pubDate": "Fri, 27 Oct 2023 11:40:45 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2023-10-27T11:40:45+00:00", - "content": "

Zachariah Andrews was discovered by maintenance worker investigating foul smell

", - "contentSnippet": "Zachariah Andrews was discovered by maintenance worker investigating foul smell", - "guid": "b2437051", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T11:40:45.000Z" - }, - { - "creator": "PA Reporters", - "date": "2023-10-27T11:40:19+00:00", - "title": "First charter flight for Afghan refugees living in Pakistan arrives in London", - "link": "https://www.independent.co.uk/news/uk/afghan-pakistan-london-afghanistan-government-b2437125.html", - "pubDate": "Fri, 27 Oct 2023 11:40:19 GMT", - "dc:creator": "PA Reporters", - "dc:date": "2023-10-27T11:40:19+00:00", - "content": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", - "contentSnippet": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", - "guid": "b2437125", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T11:40:19.000Z" - }, - { - "creator": "Nicole Winfield", - "date": "2023-10-27T11:39:05+00:00", - "title": "Pope orders Vatican to reopen case of priest ousted from Jesuits after claims of adult abuse", - "link": "https://www.independent.co.uk/news/ap-vatican-jesuits-pope-francis-rome-b2437126.html", - "pubDate": "Fri, 27 Oct 2023 11:39:05 GMT", - "dc:creator": "Nicole Winfield", - "dc:date": "2023-10-27T11:39:05+00:00", - "content": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", - "contentSnippet": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", - "guid": "b2437126", - "isoDate": "2023-10-27T11:39:05.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-10-27T11:36:07+00:00", - "title": "Beyonc\u00e9 clip blamed for reason singer rarely does interviews resurfaces", - "link": "https://www.independent.co.uk/tv/culture/beyonce-foot-mouth-disease-rare-interview-video-b2437093.html", - "pubDate": "Fri, 27 Oct 2023 11:36:07 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-10-27T11:36:07+00:00", - "content": "

A clip dubbed the reason singer Beyonce rarely does interviews anymore has resurfaced.

", - "contentSnippet": "A clip dubbed the reason singer Beyonce rarely does interviews anymore has resurfaced.", - "guid": "b2437093", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-10-27T11:36:07.000Z" - }, - { - "creator": "Isobel Lewis", - "date": "2023-10-27T11:33:15+00:00", - "title": "Hans Zimmer and Raye release \u2018Mother Nature\u2019 from David Attenborough\u2019s Planet Earth III", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/hans-zimmer-raye-planet-earth-3-soundtrack-b2437113.html", - "pubDate": "Fri, 27 Oct 2023 11:33:15 GMT", - "dc:creator": "Isobel Lewis", - "dc:date": "2023-10-27T11:33:15+00:00", - "content": "

\u2018Forgive us, Mother Nature, for we know not what we do,\u2019 Raye sings on soaring track

", - "contentSnippet": "\u2018Forgive us, Mother Nature, for we know not what we do,\u2019 Raye sings on soaring track", - "guid": "b2437113", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-10-27T11:33:15.000Z" - }, - { - "creator": "Ted Hennessey", - "date": "2023-10-27T11:30:49+00:00", - "title": "Search for four sailors missing after British cargo ship sank is called off", - "link": "https://www.independent.co.uk/news/uk/british-north-sea-bahamas-bremen-england-b2437118.html", - "pubDate": "Fri, 27 Oct 2023 11:30:49 GMT", - "dc:creator": "Ted Hennessey", - "dc:date": "2023-10-27T11:30:49+00:00", - "content": "One man died and two others were hospitalised after British-flagged Verity collided with a larger cargo ship, Polesie.", - "contentSnippet": "One man died and two others were hospitalised after British-flagged Verity collided with a larger cargo ship, Polesie.", - "guid": "b2437118", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T11:30:49.000Z" - }, - { - "creator": "Craig Paton", - "date": "2023-10-27T11:30:05+00:00", - "title": "Scottish Government deleted most pandemic WhatsApp messages, inquiry believes", - "link": "https://www.independent.co.uk/news/uk/scottish-government-humza-yousaf-scottish-government-solicitor-general-b2437071.html", - "pubDate": "Fri, 27 Oct 2023 11:30:05 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2023-10-27T11:30:05+00:00", - "content": "First Minister Humza Yousaf has said the matter is being investigated.", - "contentSnippet": "First Minister Humza Yousaf has said the matter is being investigated.", - "guid": "b2437071", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T11:30:05.000Z" - }, - { - "creator": "Nicole Vassell", - "date": "2023-10-27T11:29:30+00:00", - "title": "Breaking down the easter eggs in Taylor Swift\u2019s 1989", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/taylor-swift-1989-easter-eggs-b2436996.html", - "pubDate": "Fri, 27 Oct 2023 11:29:30 GMT", - "dc:creator": "Nicole Vassell", - "dc:date": "2023-10-27T11:29:30+00:00", - "content": "

Fans of the pop star have pored over every clue sprinkled throughout re-released hit record

", - "contentSnippet": "Fans of the pop star have pored over every clue sprinkled throughout re-released hit record", - "guid": "b2436996", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-10-27T11:29:30.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-10-27T11:27:18+00:00", - "title": "China's chief epidemiologist Wu Zunyou who helped drive the anti-COVID fight dies at age 60", - "link": "https://www.independent.co.uk/news/ap-china-beijing-li-keqiang-b2437121.html", - "pubDate": "Fri, 27 Oct 2023 11:27:18 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-10-27T11:27:18+00:00", - "content": "China's chief epidemiologist who helped drive anti-COVID-19 measures in the country that suspended access to cities and confined millions to their homes has died", - "contentSnippet": "China's chief epidemiologist who helped drive anti-COVID-19 measures in the country that suspended access to cities and confined millions to their homes has died", - "guid": "b2437121", - "isoDate": "2023-10-27T11:27:18.000Z" - }, - { - "creator": "Lauren Gilmour", - "date": "2023-10-27T11:27:05+00:00", - "title": "Radiographers to stage first strike at Scottish hospital", - "link": "https://www.independent.co.uk/news/uk/hairmyres-hospital-scottish-south-lanarkshire-b2437120.html", - "pubDate": "Fri, 27 Oct 2023 11:27:05 GMT", - "dc:creator": "Lauren Gilmour", - "dc:date": "2023-10-27T11:27:05+00:00", - "content": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", - "contentSnippet": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", - "guid": "b2437120", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T11:27:05.000Z" - }, - { - "creator": "Ariana Baio", - "date": "2023-10-27T11:26:09+00:00", - "title": "Map of Maine shootings as shelter in place ordered amid manhunt ", - "link": "https://www.independent.co.uk/news/world/americas/maine-shooting-map-suspect-manhunt-b2437100.html", - "pubDate": "Fri, 27 Oct 2023 11:26:09 GMT", - "dc:creator": "Ariana Baio", - "dc:date": "2023-10-27T11:26:09+00:00", - "content": "

Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman

", - "contentSnippet": "Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman", - "guid": "b2437100", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T11:26:09.000Z" - }, - { - "creator": "Tom Harle", - "date": "2023-10-27T11:26:03+00:00", - "title": "Lark Atkin-Davies scores four tries as England thrash Canada in WXV1", - "link": "https://www.independent.co.uk/sport/rugby/rugby-union/england-canada-result-wxv1-lark-atkin-davies-b2437112.html", - "pubDate": "Fri, 27 Oct 2023 11:26:03 GMT", - "dc:creator": "Tom Harle", - "dc:date": "2023-10-27T11:26:03+00:00", - "content": "

England 45-12 Canada: Jess Breach notches her 35th try in dominant Red Roses victory

", - "contentSnippet": "England 45-12 Canada: Jess Breach notches her 35th try in dominant Red Roses victory", - "guid": "b2437112", - "categories": [ - "Rugby Union", - "Rugby", - "Sport" - ], - "isoDate": "2023-10-27T11:26:03.000Z" - }, - { - "creator": "Lorne Cook", - "date": "2023-10-27T11:24:21+00:00", - "title": "Seeing no military answer to Israel-Palestinian tensions, the EU plans for a more peaceful future", - "link": "https://www.independent.co.uk/news/world/europe/hamas-ap-israel-gaza-palestinian-b2437117.html", - "pubDate": "Fri, 27 Oct 2023 11:24:21 GMT", - "dc:creator": "Lorne Cook", - "dc:date": "2023-10-27T11:24:21+00:00", - "content": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", - "contentSnippet": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", - "guid": "b2437117", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T11:24:21.000Z" - }, - { - "creator": "Tom Watling ", - "date": "2023-10-27T11:18:10+00:00", - "title": "Tunnels, traps and Tehran: Why Israel hasn\u2019t attacked Gaza yet and what will happen when it does", - "link": "https://www.independent.co.uk/news/world/middle-east/israel-gaza-ground-offensive-hamas-b2432775.html", - "pubDate": "Fri, 27 Oct 2023 11:18:10 GMT", - "dc:creator": "Tom Watling ", - "dc:date": "2023-10-27T11:18:10+00:00", - "content": "

The Independent explains what this incursion could look like and the myriad hurdles that Israel must overcome

", - "contentSnippet": "The Independent explains what this incursion could look like and the myriad hurdles that Israel must overcome", - "guid": "b2432775", - "categories": [ - "Middle East", - "World" - ], - "isoDate": "2023-10-27T11:18:10.000Z" - }, - { - "creator": "Sakshi Gupta", - "date": "2023-10-27T11:16:44+00:00", - "title": "Dhoni drops major hint about his Indian Premier League future", - "link": "https://www.independent.co.uk/sport/cricket/dhoni-ipl-2024-chennai-super-kings-b2437088.html", - "pubDate": "Fri, 27 Oct 2023 11:16:44 GMT", - "dc:creator": "Sakshi Gupta", - "dc:date": "2023-10-27T11:16:44+00:00", - "content": "

Former India captain MS Dhoni has 5 IPL trophies with CSK

", - "contentSnippet": "Former India captain MS Dhoni has 5 IPL trophies with CSK", - "guid": "b2437088", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2023-10-27T11:16:44.000Z" - }, - { - "creator": "Aine Fox", - "date": "2023-10-27T11:16:06+00:00", - "title": "Equalities watchdog expresses concerns for disabled over benefits reforms", - "link": "https://www.independent.co.uk/news/uk/mel-stride-government-work-and-pensions-secretary-parliament-b2437115.html", - "pubDate": "Fri, 27 Oct 2023 11:16:06 GMT", - "dc:creator": "Aine Fox", - "dc:date": "2023-10-27T11:16:06+00:00", - "content": "The Government\u2019s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", - "contentSnippet": "The Government\u2019s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", - "guid": "b2437115", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T11:16:06.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-10-27T11:15:51+00:00", - "title": "Drone footage captures moment sharks surround \u2018frightened\u2019 snorkelers", - "link": "https://www.independent.co.uk/tv/lifestyle/sharks-snorkelers-sea-drone-footage-video-b2437107.html", - "pubDate": "Fri, 27 Oct 2023 11:15:51 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-10-27T11:15:51+00:00", - "content": "

Drone footage has captured the moment sharks surround \u201cfrightened\u201d snorkelers swimming in the sea near Israel.

", - "contentSnippet": "Drone footage has captured the moment sharks surround \u201cfrightened\u201d snorkelers swimming in the sea near Israel.", - "guid": "b2437107", - "categories": [ - "Lifestyle", - "Indy TV" - ], - "isoDate": "2023-10-27T11:15:51.000Z" - }, - { - "creator": "Lydia Patrick", - "date": "2023-10-27T11:14:47+00:00", - "title": "Wilko to return to five high streets before Christmas - is one opening in your area?", - "link": "https://www.independent.co.uk/news/uk/home-news/wilko-new-stores-opening-uk-christmas-b2437081.html", - "pubDate": "Fri, 27 Oct 2023 11:14:47 GMT", - "dc:creator": "Lydia Patrick", - "dc:date": "2023-10-27T11:14:47+00:00", - "content": "

Five \u2018concept stores\u2019 to return to high streets before Christmas

", - "contentSnippet": "Five \u2018concept stores\u2019 to return to high streets before Christmas", - "guid": "b2437081", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-10-27T11:14:47.000Z" - }, - { - "creator": "Alan Jones", - "date": "2023-10-27T11:13:10+00:00", - "title": "Investment urged in \u2018dangerously overstretched\u2019 fire service to aid floods work", - "link": "https://www.independent.co.uk/news/uk/investment-fbu-storm-babet-stapleford-nottinghamshire-b2436833.html", - "pubDate": "Fri, 27 Oct 2023 11:13:10 GMT", - "dc:creator": "Alan Jones", - "dc:date": "2023-10-27T11:13:10+00:00", - "content": "The call from the FBU follows the devastating floods caused by Storm Babet.", - "contentSnippet": "The call from the FBU follows the devastating floods caused by Storm Babet.", - "guid": "b2436833", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T11:13:10.000Z" - }, - { - "creator": "Adam White", - "date": "2023-10-27T11:10:56+00:00", - "title": "Taylor Swift review, 1989 (Taylor\u2019s Version): A pop classic is re-recorded to diminishing returns", - "link": "https://www.independent.co.uk/arts-entertainment/music/reviews/taylor-swift-1989-review-rerecording-b2436457.html", - "pubDate": "Fri, 27 Oct 2023 11:10:56 GMT", - "dc:creator": "Adam White", - "dc:date": "2023-10-27T11:10:56+00:00", - "content": "

This revamp does at least serve as a reminder of the album\u2019s untouchable greatness

", - "contentSnippet": "This revamp does at least serve as a reminder of the album\u2019s untouchable greatness", - "guid": "b2436457", - "categories": [ - "Reviews", - "Music", - "Culture" - ], - "isoDate": "2023-10-27T11:10:56.000Z" - }, - { - "creator": "By Cillian Sherlock", - "date": "2023-10-27T11:09:27+00:00", - "title": "\u2018Essential not to lose focus\u2019 on war in Ukraine, Varadkar warns", - "link": "https://www.independent.co.uk/news/uk/ukraine-leo-varadkar-irish-taoiseach-israel-b2437104.html", - "pubDate": "Fri, 27 Oct 2023 11:09:27 GMT", - "dc:creator": "By Cillian Sherlock", - "dc:date": "2023-10-27T11:09:27+00:00", - "content": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", - "contentSnippet": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", - "guid": "b2437104", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T11:09:27.000Z" - }, - { - "creator": "Sam Russell", - "date": "2023-10-27T11:08:08+00:00", - "title": "Husband jailed for life for murder of university lecturer wife in knife attack", - "link": "https://www.independent.co.uk/news/uk/crime/colchester-english-b2437105.html", - "pubDate": "Fri, 27 Oct 2023 11:08:08 GMT", - "dc:creator": "Sam Russell", - "dc:date": "2023-10-27T11:08:08+00:00", - "content": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", - "contentSnippet": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", - "guid": "b2437105", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T11:08:08.000Z" - }, - { - "creator": "Danica Kirka", - "date": "2023-10-27T11:06:23+00:00", - "title": "US expands its effort to cut off funding for Hamas", - "link": "https://www.independent.co.uk/news/ap-hamas-israel-iran-london-b2437108.html", - "pubDate": "Fri, 27 Oct 2023 11:06:23 GMT", - "dc:creator": "Danica Kirka", - "dc:date": "2023-10-27T11:06:23+00:00", - "content": "The United States on Friday expanded its effort to cut off funding for Hamas, announcing a second round of sanctions against people and organizations linked to the group since it launched an attack on Israel that killed more than 1,400 people", - "contentSnippet": "The United States on Friday expanded its effort to cut off funding for Hamas, announcing a second round of sanctions against people and organizations linked to the group since it launched an attack on Israel that killed more than 1,400 people", - "guid": "b2437108", - "isoDate": "2023-10-27T11:06:23.000Z" - }, - { - "creator": "Anya Cooklin-Lofting", - "date": "2023-10-27T11:00:50+00:00", - "title": "Expert lighting tips to get you through the darker months", - "link": "https://www.independent.co.uk/property/house-and-home/winter-lighting-interiors-clocks-go-back-daylight-b2436418.html", - "pubDate": "Fri, 27 Oct 2023 11:00:50 GMT", - "dc:creator": "Anya Cooklin-Lofting", - "dc:date": "2023-10-27T11:00:50+00:00", - "content": "

As the clocks go back and the cold sets in, it\u2019s time to up the ante on your lighting at home. From holistic philosophies on what it means to light your home well, to the kind of bulbs you should choose, Anya Cooklin-Loftin rounds up top lighting tips from experts

", - "contentSnippet": "As the clocks go back and the cold sets in, it\u2019s time to up the ante on your lighting at home. From holistic philosophies on what it means to light your home well, to the kind of bulbs you should choose, Anya Cooklin-Loftin rounds up top lighting tips from experts", - "guid": "b2436418", - "categories": [ - "House & Home", - "Property" - ], - "isoDate": "2023-10-27T11:00:50.000Z" - }, - { - "creator": "George Sessions", - "date": "2023-10-27T11:00:17+00:00", - "title": "Ange Postecoglou: Tottenham not a better team without Harry Kane, just different", - "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-spurs-harry-kane-premier-league-london-b2437103.html", - "pubDate": "Fri, 27 Oct 2023 11:00:17 GMT", - "dc:creator": "George Sessions", - "dc:date": "2023-10-27T11:00:17+00:00", - "content": "Spurs have scored 20 goals in nine matches to storm to the Premier League summit since Kane\u2019s exit.", - "contentSnippet": "Spurs have scored 20 goals in nine matches to storm to the Premier League summit since Kane\u2019s exit.", - "guid": "b2437103", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T11:00:17.000Z" - }, - { - "creator": "Ariana Baio", - "date": "2023-10-27T10:59:22+00:00", - "title": "Map of Maine shootings as shelter in place ordered amid manhunt", - "link": "https://www.independent.co.uk/news/world/americas/map-maine-shootings-lewiston-b2436630.html", - "pubDate": "Fri, 27 Oct 2023 10:59:22 GMT", - "dc:creator": "Ariana Baio", - "dc:date": "2023-10-27T10:59:22+00:00", - "content": "

Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman

", - "contentSnippet": "Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman", - "guid": "b2436630", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T10:59:22.000Z" - }, - { - "creator": "Kieran Jackson", - "date": "2023-10-27T10:59:00+00:00", - "title": "What time is F1 qualifying tomorrow at the Mexican Grand Prix? ", - "link": "https://www.independent.co.uk/f1/f1-time-qualifying-start-mexico-city-mexican-b2436620.html", - "pubDate": "Fri, 27 Oct 2023 10:59:00 GMT", - "dc:creator": "Kieran Jackson", - "dc:date": "2023-10-27T10:59:00+00:00", - "content": "

Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez\u2019s home race this weekend

", - "contentSnippet": "Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez\u2019s home race this weekend", - "guid": "b2436620", - "categories": [ - "F1" - ], - "isoDate": "2023-10-27T10:59:00.000Z" - }, - { - "creator": "Matt Cooper", - "date": "2023-10-27T10:55:52+00:00", - "title": "Cadbury World master chocolatiers make 50kg chocolate Halloween toad", - "link": "https://www.independent.co.uk/news/uk/birmingham-b2437101.html", - "pubDate": "Fri, 27 Oct 2023 10:55:52 GMT", - "dc:creator": "Matt Cooper", - "dc:date": "2023-10-27T10:55:52+00:00", - "content": "The toad is designed to be \u2018as whimsical as possible without being too scary\u2019.", - "contentSnippet": "The toad is designed to be \u2018as whimsical as possible without being too scary\u2019.", - "guid": "b2437101", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T10:55:52.000Z" - }, - { - "creator": "Pan Pylas", - "date": "2023-10-27T10:48:13+00:00", - "title": "Probe finds 'serious failings' in way British politician Nigel Farage had his bank account closed", - "link": "https://www.independent.co.uk/news/nigel-farage-ap-alison-rose-british-financial-conduct-authority-b2437096.html", - "pubDate": "Fri, 27 Oct 2023 10:48:13 GMT", - "dc:creator": "Pan Pylas", - "dc:date": "2023-10-27T10:48:13+00:00", - "content": "An independent probe has found \u201cserious failings\u201d in how NatWest Group\u2019s private and exclusive Coutts Bank shut down the account of the right-wing British politician Nigel Farage", - "contentSnippet": "An independent probe has found \u201cserious failings\u201d in how NatWest Group\u2019s private and exclusive Coutts Bank shut down the account of the right-wing British politician Nigel Farage", - "guid": "b2437096", - "isoDate": "2023-10-27T10:48:13.000Z" - }, - { - "creator": "Helen William", - "date": "2023-10-27T10:47:47+00:00", - "title": "Over \u00a350,000 raised for Met officers sacked over Bianca Williams and Ricardo Dos Santos stop and search", - "link": "https://www.independent.co.uk/news/uk/home-news/bianca-williams-fundraiser-met-officers-b2437043.html", - "pubDate": "Fri, 27 Oct 2023 10:47:47 GMT", - "dc:creator": "Helen William", - "dc:date": "2023-10-27T10:47:47+00:00", - "content": "

Jonathan Clapham and Sam Franks were sacked after it was found they lied about smelling cannabis

", - "contentSnippet": "Jonathan Clapham and Sam Franks were sacked after it was found they lied about smelling cannabis", - "guid": "b2437043", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-10-27T10:47:47.000Z" - }, - { - "creator": "Amy-Clare Martin", - "date": "2023-10-27T10:47:44+00:00", - "title": "Judge warned sex attacker wanted in murder probe may never be safe to release from jail", - "link": "https://www.independent.co.uk/news/uk/crime/richard-scatchard-sex-offender-manhunt-minehead-b2437065.html", - "pubDate": "Fri, 27 Oct 2023 10:47:44 GMT", - "dc:creator": "Amy-Clare Martin", - "dc:date": "2023-10-27T10:47:44+00:00", - "content": "

Exclusive: A judge jailed Scatchard for life for depraved sex offences in 2000, adding \u2018I cannot predict at what stage you would be safe to release.\u2019

", - "contentSnippet": "Exclusive: A judge jailed Scatchard for life for depraved sex offences in 2000, adding \u2018I cannot predict at what stage you would be safe to release.\u2019", - "guid": "b2437065", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T10:47:44.000Z" - }, - { - "creator": "By Grinne N. Aodha", - "date": "2023-10-27T10:44:47+00:00", - "title": "Varadkar cautions against supermajority in any future Irish unity vote", - "link": "https://www.independent.co.uk/news/uk/northern-ireland-leo-varadkar-irish-steve-baker-taoiseach-b2437095.html", - "pubDate": "Fri, 27 Oct 2023 10:44:47 GMT", - "dc:creator": "By Grinne N. Aodha", - "dc:date": "2023-10-27T10:44:47+00:00", - "content": "The Taoiseach said there is not enough talk to convince people in Northern Ireland \u201cthat a united Ireland would be a warm home for them\u201d.", - "contentSnippet": "The Taoiseach said there is not enough talk to convince people in Northern Ireland \u201cthat a united Ireland would be a warm home for them\u201d.", - "guid": "b2437095", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T10:44:47.000Z" - }, - { - "creator": "Oliver O'Connell and Alex Woodward", - "date": "2023-10-27T10:43:42+00:00", - "title": "Trump attacks judge over $10k fine for violating gag order: Live", - "link": "https://www.independent.co.uk/news/world/americas/trump-fraud-trial-latest-update-today-b2436988.html", - "pubDate": "Fri, 27 Oct 2023 10:43:42 GMT", - "dc:creator": "Oliver O'Connell and Alex Woodward", - "dc:date": "2023-10-27T10:43:42+00:00", - "content": "

The former president railed against Judge Engoron in a series of Truth Social posts after he was fined $10,000 in New York civil fraud trial

", - "contentSnippet": "The former president railed against Judge Engoron in a series of Truth Social posts after he was fined $10,000 in New York civil fraud trial", - "guid": "b2436988", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T10:43:42.000Z" - }, - { - "creator": "Jintamas Saksornchai", - "date": "2023-10-27T10:42:59+00:00", - "title": "Daughter of divisive former Thai Prime Minister Thaksin named head of political party linked to him", - "link": "https://www.independent.co.uk/news/thaksin-shinawatra-ap-pheu-thai-party-daughter-thai-b2437092.html", - "pubDate": "Fri, 27 Oct 2023 10:42:59 GMT", - "dc:creator": "Jintamas Saksornchai", - "dc:date": "2023-10-27T10:42:59+00:00", - "content": "Thailand\u2019s ruling party has selected as its leader the daughter of Thaksin Shinawatra, the country\u2019s divisive former prime minister, highlighting the family\u2019s continuing influence more than two decades after Thaksin entered politics", - "contentSnippet": "Thailand\u2019s ruling party has selected as its leader the daughter of Thaksin Shinawatra, the country\u2019s divisive former prime minister, highlighting the family\u2019s continuing influence more than two decades after Thaksin entered politics", - "guid": "b2437092", - "isoDate": "2023-10-27T10:42:59.000Z" - }, - { - "creator": "August Graham", - "date": "2023-10-27T10:40:59+00:00", - "title": "NatWest sees customers switch to savings accounts as interest rates rise", - "link": "https://www.independent.co.uk/business/natwest-sees-customers-switch-to-savings-accounts-as-interest-rates-rise-b2436987.html", - "pubDate": "Fri, 27 Oct 2023 10:40:59 GMT", - "dc:creator": "August Graham", - "dc:date": "2023-10-27T10:40:59+00:00", - "content": "The business\u2019s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", - "contentSnippet": "The business\u2019s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", - "guid": "b2436987", - "categories": [ - "Business" - ], - "isoDate": "2023-10-27T10:40:59.000Z" - }, - { - "creator": "Kelly Rissman", - "date": "2023-10-27T10:40:38+00:00", - "title": "Robert Card\u2019s ties to Maine shooting sites revealed by stunned relative", - "link": "https://www.independent.co.uk/news/world/americas/maine-shooting-robert-card-sister-in-law-b2436658.html", - "pubDate": "Fri, 27 Oct 2023 10:40:38 GMT", - "dc:creator": "Kelly Rissman", - "dc:date": "2023-10-27T10:40:38+00:00", - "content": "

Although the 40-year-old is the \u2018most loving\u2019 person, Karen Card said, \u2018he had an acute episode of mental health, and it\u2019s been a struggle\u2019 over the last year

", - "contentSnippet": "Although the 40-year-old is the \u2018most loving\u2019 person, Karen Card said, \u2018he had an acute episode of mental health, and it\u2019s been a struggle\u2019 over the last year", - "guid": "b2436658", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T10:40:38.000Z" - }, - { - "creator": "Kelly Rissman", - "date": "2023-10-27T10:40:22+00:00", - "title": "Robert Card\u2019s ties to Maine shooting sites revealed by stunned relative", - "link": "https://www.independent.co.uk/news/world/americas/robert-card-sister-in-law-maine-shooting-b2437090.html", - "pubDate": "Fri, 27 Oct 2023 10:40:22 GMT", - "dc:creator": "Kelly Rissman", - "dc:date": "2023-10-27T10:40:22+00:00", - "content": "

Although the 40-year-old is the \u2018most loving\u2019 person, Karen Card said, \u2018he had an acute episode of mental health, and it\u2019s been a struggle\u2019 over the last year

", - "contentSnippet": "Although the 40-year-old is the \u2018most loving\u2019 person, Karen Card said, \u2018he had an acute episode of mental health, and it\u2019s been a struggle\u2019 over the last year", - "guid": "b2437090", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T10:40:22.000Z" - }, - { - "creator": "Damian Spellman", - "date": "2023-10-27T10:39:15+00:00", - "title": "Sandro Tonali could play for Newcastle this weekend despite 10-month ban", - "link": "https://www.independent.co.uk/sport/football/sandro-tonali-eddie-howe-fifa-newcastle-premier-league-b2437080.html", - "pubDate": "Fri, 27 Oct 2023 10:39:15 GMT", - "dc:creator": "Damian Spellman", - "dc:date": "2023-10-27T10:39:15+00:00", - "content": "The punishment is yet to be ratified by world governing body FIFA.", - "contentSnippet": "The punishment is yet to be ratified by world governing body FIFA.", - "guid": "b2437080", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T10:39:15.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-10-27T10:37:57+00:00", - "title": "Britney Spears teaches Loose Women stars how to dance in newly emerged clip", - "link": "https://www.independent.co.uk/tv/culture/britney-spears-dance-loose-women-video-b2437083.html", - "pubDate": "Fri, 27 Oct 2023 10:37:57 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-10-27T10:37:57+00:00", - "content": "

Footage has emerged of singer Britney Spears teaching the Loose Women panelists how to dance.

", - "contentSnippet": "Footage has emerged of singer Britney Spears teaching the Loose Women panelists how to dance.", - "guid": "b2437083", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-10-27T10:37:57.000Z" - }, - { - "creator": "Tara Cobham", - "date": "2023-10-27T10:36:10+00:00", - "title": "\u2018Aggressive\u2019 man charged after shouting insults at Orthodox Jewish man as antisemitism rises 1,400 per cent", - "link": "https://www.independent.co.uk/news/uk/crime/antisemitism-orthodox-jewish-israel-hamas-gaza-b2437004.html", - "pubDate": "Fri, 27 Oct 2023 10:36:10 GMT", - "dc:creator": "Tara Cobham", - "dc:date": "2023-10-27T10:36:10+00:00", - "content": "

The 21-year-old was also wanted over allegations of threatening to kill a man for being in a mixed relationship earlier in the year

", - "contentSnippet": "The 21-year-old was also wanted over allegations of threatening to kill a man for being in a mixed relationship earlier in the year", - "guid": "b2437004", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T10:36:10.000Z" - }, - { - "creator": "Zoe Griffin", - "date": "2023-10-27T10:36:09+00:00", - "title": "12 best heated clothes airers and drying racks, tried and tested", - "link": "https://www.independent.co.uk/extras/indybest/house-garden/household-appliances/best-heated-clothes-airer-indoors-b1892835.html", - "pubDate": "Fri, 27 Oct 2023 10:36:09 GMT", - "dc:creator": "Zoe Griffin", - "dc:date": "2023-10-27T10:36:09+00:00", - "content": "

Save money on energy bills with these top-rated heated clothes airers and drying racks

", - "contentSnippet": "Save money on energy bills with these top-rated heated clothes airers and drying racks", - "guid": "b1892835", - "categories": [ - "Household Appliances", - "Home & Garden", - "IndyBest", - "Extras" - ], - "isoDate": "2023-10-27T10:36:09.000Z" - }, - { - "creator": "By Grinne N. Aodha", - "date": "2023-10-27T10:31:50+00:00", - "title": "Irish premier says EU position on Israel-Palestine conflict is evolving", - "link": "https://www.independent.co.uk/news/uk/leo-varadkar-israel-irish-palestine-president-b2437091.html", - "pubDate": "Fri, 27 Oct 2023 10:31:50 GMT", - "dc:creator": "By Grinne N. Aodha", - "dc:date": "2023-10-27T10:31:50+00:00", - "content": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", - "contentSnippet": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", - "guid": "b2437091", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T10:31:50.000Z" - }, - { - "creator": "Louise Boyle", - "date": "2023-10-27T10:30:44+00:00", - "title": "Hurricane Otis leaves 27 dead in Acapulco after devastating Category 5 storm", - "link": "https://www.independent.co.uk/climate-change/news/hurricane-otis-death-toll-acapulco-b2436520.html", - "pubDate": "Fri, 27 Oct 2023 10:30:44 GMT", - "dc:creator": "Louise Boyle", - "dc:date": "2023-10-27T10:30:44+00:00", - "content": "

Otis is the strongest ever storm to make landfall on Mexico\u2019s west coast

", - "contentSnippet": "Otis is the strongest ever storm to make landfall on Mexico\u2019s west coast", - "guid": "b2436520", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2023-10-27T10:30:44.000Z" - }, - { - "creator": "Louise Boyle", - "date": "2023-10-27T10:30:19+00:00", - "title": "Hurricane Otis leaves 27 dead in Acapulco after devastating Category 5 storm ", - "link": "https://www.independent.co.uk/climate-change/news/hurricane-otis-mexico-death-toll-b2437086.html", - "pubDate": "Fri, 27 Oct 2023 10:30:19 GMT", - "dc:creator": "Louise Boyle", - "dc:date": "2023-10-27T10:30:19+00:00", - "content": "

Otis is the strongest ever storm to make landfall on Mexico\u2019s west coast

", - "contentSnippet": "Otis is the strongest ever storm to make landfall on Mexico\u2019s west coast", - "guid": "b2437086", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2023-10-27T10:30:19.000Z" - }, - { - "creator": "Maroosha Muzaffar", - "date": "2023-10-27T10:30:02+00:00", - "title": "Australia approves aerial culling of wild horses after banning it more than two decades ago", - "link": "https://www.independent.co.uk/news/world/australasia/australia-wild-horses-culling-wildlife-b2436978.html", - "pubDate": "Fri, 27 Oct 2023 10:30:02 GMT", - "dc:creator": "Maroosha Muzaffar", - "dc:date": "2023-10-27T10:30:02+00:00", - "content": "

\u2018The change is essential to protecting the park\u2019s threatened native wildlife and ecosystems\u2019

", - "contentSnippet": "\u2018The change is essential to protecting the park\u2019s threatened native wildlife and ecosystems\u2019", - "guid": "b2436978", - "categories": [ - "Australasia", - "World" - ], - "isoDate": "2023-10-27T10:30:02.000Z" - }, - { - "creator": "Isobel Lewis", - "date": "2023-10-27T10:27:38+00:00", - "title": "Michelle Williams fans predict EGOT for Britney Spears audiobook \u2013 but she\u2019s still got a way to go", - "link": "https://www.independent.co.uk/arts-entertainment/books/news/michelle-williams-britney-spears-audiobook-egot-b2437066.html", - "pubDate": "Fri, 27 Oct 2023 10:27:38 GMT", - "dc:creator": "Isobel Lewis", - "dc:date": "2023-10-27T10:27:38+00:00", - "content": "

Clip of Williams impersonating Justin Timberlake has gone viral

", - "contentSnippet": "Clip of Williams impersonating Justin Timberlake has gone viral", - "guid": "b2437066", - "categories": [ - "News", - "Books", - "Culture" - ], - "isoDate": "2023-10-27T10:27:38.000Z" - }, - { - "creator": "Rachel Sharp", - "date": "2023-10-27T10:26:59+00:00", - "title": "Ten-year-old girl injured in Maine bowling alley shooting asks heartbreaking question", - "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-girl-bowling-alley-b2436651.html", - "pubDate": "Fri, 27 Oct 2023 10:26:59 GMT", - "dc:creator": "Rachel Sharp", - "dc:date": "2023-10-27T10:26:59+00:00", - "content": "

\u2018Why do people do this?\u2019 asked Zoey Levesque after she found herself among a growing list of victims and survivors of mass shootings

", - "contentSnippet": "\u2018Why do people do this?\u2019 asked Zoey Levesque after she found herself among a growing list of victims and survivors of mass shootings", - "guid": "b2436651", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T10:26:59.000Z" - }, - { - "creator": "Mike Bedigan,Maroosha Muzaffar,Richard Hall and Rachel Sharp", - "date": "2023-10-27T04:14:50+00:00", - "title": "Robert Card: What we know about the suspect in Maine mass shooting ", - "link": "https://www.independent.co.uk/news/world/americas/robert-card-maine-shooting-suspect-shooter-b2436886.html", - "pubDate": "Fri, 27 Oct 2023 04:14:50 GMT", - "dc:creator": "Mike Bedigan,Maroosha Muzaffar,Richard Hall and Rachel Sharp", - "dc:date": "2023-10-27T04:14:50+00:00", - "content": "

An arrest warrant has been issued for 40-year-old Army Reservist Robert Card. Mike Bedigan, Maroosha Muzaffar and Richard Hall report on what we know about the suspect in the Lewiston mass shooting. WARNING: Disturbing images

", - "contentSnippet": "An arrest warrant has been issued for 40-year-old Army Reservist Robert Card. Mike Bedigan, Maroosha Muzaffar and Richard Hall report on what we know about the suspect in the Lewiston mass shooting. WARNING: Disturbing images", - "guid": "b2436886", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T04:14:50.000Z" - }, - { - "creator": "Eric Garcia", - "date": "2023-10-27T15:52:48+00:00", - "title": "Embattled Rep George Santos pleads not guilty to new charges", - "link": "https://www.the-independent.com/news/world/americas/us-politics/george-santos-plea-superseding-indictment-b2437248.html", - "pubDate": "Fri, 27 Oct 2023 15:52:48 GMT", - "dc:creator": "Eric Garcia", - "dc:date": "2023-10-27T15:52:48+00:00", - "content": "

Embattled Rep George Santos (R-NY) pleaded not guilty to ten new felony charges in a superseding indictment on Friday, The New York Times reported.

", - "contentSnippet": "Embattled Rep George Santos (R-NY) pleaded not guilty to ten new felony charges in a superseding indictment on Friday, The New York Times reported.", - "guid": "b2437248", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:52:48.000Z" - }, - { - "creator": "Nicole Vassell", - "date": "2023-10-27T15:51:40+00:00", - "title": "The easter eggs in Taylor Swift\u2019s 1989", - "link": "https://www.independent.co.uk/arts-entertainment/music/news/taylor-swift-1989-meaning-easter-eggs-b2437257.html", - "pubDate": "Fri, 27 Oct 2023 15:51:40 GMT", - "dc:creator": "Nicole Vassell", - "dc:date": "2023-10-27T15:51:40+00:00", - "content": "

Fans of the pop star have pored over every clue sprinkled throughout re-released hit record

", - "contentSnippet": "Fans of the pop star have pored over every clue sprinkled throughout re-released hit record", - "guid": "b2437257", - "categories": [ - "News", - "Music", - "Culture" - ], - "isoDate": "2023-10-27T15:51:40.000Z" - }, - { - "creator": "Martha McHardy", - "date": "2023-10-27T15:50:25+00:00", - "title": "Mexico\u2019s president cut disaster fund two years before Hurricane Otis", - "link": "https://www.independent.co.uk/climate-change/news/mexico-disaster-relief-hurricane-otis-b2437147.html", - "pubDate": "Fri, 27 Oct 2023 15:50:25 GMT", - "dc:creator": "Martha McHardy", - "dc:date": "2023-10-27T15:50:25+00:00", - "content": "

Mexican President Andr\u00e9s Manuel L\u00f3pez Obrador claimed the disaster relief fund was \u2018riddled with corruption\u2019

", - "contentSnippet": "Mexican President Andr\u00e9s Manuel L\u00f3pez Obrador claimed the disaster relief fund was \u2018riddled with corruption\u2019", - "guid": "b2437147", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2023-10-27T15:50:25.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2023-10-27T15:49:52+00:00", - "title": "Ex-Russian spy can sue UK crime agency for \u2018revealing new identity\u2019, court rules", - "link": "https://www.independent.co.uk/news/uk/home-news/ex-russian-spy-lawsuit-nca-b2437175.html", - "pubDate": "Fri, 27 Oct 2023 15:49:52 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2023-10-27T15:49:52+00:00", - "content": "

Boris Karpichkov, former name of double agent, is suing the National Crime Agency for revealing new identity

", - "contentSnippet": "Boris Karpichkov, former name of double agent, is suing the National Crime Agency for revealing new identity", - "guid": "b2437175", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-10-27T15:49:52.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-10-27T15:48:58+00:00", - "title": "Robert E. Lee statue that prompted deadly protest in Virginia melted down", - "link": "https://www.independent.co.uk/news/ap-charlottesville-virginia-confederate-city-b2437262.html", - "pubDate": "Fri, 27 Oct 2023 15:48:58 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-10-27T15:48:58+00:00", - "content": "A statue of Confederate Gen. Robert E", - "contentSnippet": "A statue of Confederate Gen. Robert E", - "guid": "b2437262", - "isoDate": "2023-10-27T15:48:58.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-10-27T15:48:57+00:00", - "title": "Watch: Boris Johnson announces he\u2019s joining GB News and claims \u2018best days yet to come\u2019", - "link": "https://www.independent.co.uk/tv/news/boris-johnson-gb-news-announcement-video-b2437243.html", - "pubDate": "Fri, 27 Oct 2023 15:48:57 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-10-27T15:48:57+00:00", - "content": "

Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming \u201cthe best days are yet to come\u201d.

", - "contentSnippet": "Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming \u201cthe best days are yet to come\u201d.", - "guid": "b2437243", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-10-27T15:48:57.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-10-27T15:47:45+00:00", - "title": "Pete Doherty suggests meeting Mark Blanco\u2019s mother to \u2018move on\u2019 from death", - "link": "https://www.independent.co.uk/news/uk/pete-doherty-crown-prosecution-service-london-whitechapel-b2437246.html", - "pubDate": "Fri, 27 Oct 2023 15:47:45 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-10-27T15:47:45+00:00", - "content": "The rock star was interviewed by police but never arrested over the death.", - "contentSnippet": "The rock star was interviewed by police but never arrested over the death.", - "guid": "b2437246", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T15:47:45.000Z" - }, - { - "creator": "Laura Ungar", - "date": "2023-10-27T15:47:14+00:00", - "title": "A new cure for sickle cell disease may be coming. Health advisers will review it next week", - "link": "https://www.independent.co.uk/news/food-and-drug-administration-ap-crispr-patients-issues-b2437261.html", - "pubDate": "Fri, 27 Oct 2023 15:47:14 GMT", - "dc:creator": "Laura Ungar", - "dc:date": "2023-10-27T15:47:14+00:00", - "content": "There soon may be a new cure for sickle cell disease that attacks the disorder at its genetic source", - "contentSnippet": "There soon may be a new cure for sickle cell disease that attacks the disorder at its genetic source", - "guid": "b2437261", - "isoDate": "2023-10-27T15:47:14.000Z" - }, - { - "creator": "Gustaf Kilander", - "date": "2023-10-27T15:44:15+00:00", - "title": "How Speaker Mike Johnson kept pushing to overturn the 2020 election", - "link": "https://www.the-independent.com/news/world/americas/us-politics/speaker-mike-johnson-2020-election-b2436685.html", - "pubDate": "Fri, 27 Oct 2023 15:44:15 GMT", - "dc:creator": "Gustaf Kilander", - "dc:date": "2023-10-27T15:44:15+00:00", - "content": "

Speaker Mike Johnson pushed same debunked conspiracy theories that led to guilty plea from Trump lawyer Sidney Powell

", - "contentSnippet": "Speaker Mike Johnson pushed same debunked conspiracy theories that led to guilty plea from Trump lawyer Sidney Powell", - "guid": "b2436685", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:44:15.000Z" - }, - { - "creator": "Rod Minchin", - "date": "2023-10-27T15:43:59+00:00", - "title": "\u2018Somerset Gimp\u2019 unmasked as gardener convicted of scaring female motorists", - "link": "https://www.independent.co.uk/news/uk/crime/avon-and-somerset-police-police-b2437260.html", - "pubDate": "Fri, 27 Oct 2023 15:43:59 GMT", - "dc:creator": "Rod Minchin", - "dc:date": "2023-10-27T15:43:59+00:00", - "content": "When Joshua Hunt, 32, was arrested in May this year, he told police: \u2018I am not a gimp.\u2019", - "contentSnippet": "When Joshua Hunt, 32, was arrested in May this year, he told police: \u2018I am not a gimp.\u2019", - "guid": "b2437260", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T15:43:59.000Z" - }, - { - "creator": "Rod Minchin", - "date": "2023-10-27T15:43:12+00:00", - "title": "Man found guilty of gimp suit offences towards female motorists", - "link": "https://www.independent.co.uk/news/uk/crime/somerset-avon-and-somerset-police-b2437229.html", - "pubDate": "Fri, 27 Oct 2023 15:43:12 GMT", - "dc:creator": "Rod Minchin", - "dc:date": "2023-10-27T15:43:12+00:00", - "content": "He was fined \u00a3100 and ordered to pay \u00a3200 compensation to each of his three victims and \u00a3620 prosecution costs.", - "contentSnippet": "He was fined \u00a3100 and ordered to pay \u00a3200 compensation to each of his three victims and \u00a3620 prosecution costs.", - "guid": "b2437229", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T15:43:12.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2023-10-27T15:40:59+00:00", - "title": "Scientists reveal why California\u2019s angriest otter has mellowed out", - "link": "https://www.independent.co.uk/news/world/americas/california-angry-otter-surfboard-baby-mother-b2437008.html", - "pubDate": "Fri, 27 Oct 2023 15:40:59 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2023-10-27T15:40:59+00:00", - "content": "

The five-year-old animal had gained a reputation as \u2018California\u2019s angriest otter\u2019 after she was captured on social media attacking surfers in Santa Cruz and biting their boards

", - "contentSnippet": "The five-year-old animal had gained a reputation as \u2018California\u2019s angriest otter\u2019 after she was captured on social media attacking surfers in Santa Cruz and biting their boards", - "guid": "b2437008", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:40:59.000Z" - }, - { - "creator": "Tara Cobham", - "date": "2023-10-27T15:40:46+00:00", - "title": "Prison nurse and inmate lover among 16 jailed for \u2018flooding\u2019 jail with drugs", - "link": "https://www.independent.co.uk/news/uk/crime/hmp-lindholme-prison-court-sentencing-amy-hatfield-b2437049.html", - "pubDate": "Fri, 27 Oct 2023 15:40:46 GMT", - "dc:creator": "Tara Cobham", - "dc:date": "2023-10-27T15:40:46+00:00", - "content": "

Affair was at heart of what\u2019s believed to be UK\u2019s biggest-ever prison drugs conspiracy

", - "contentSnippet": "Affair was at heart of what\u2019s believed to be UK\u2019s biggest-ever prison drugs conspiracy", - "guid": "b2437049", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T15:40:46.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-10-27T15:38:03+00:00", - "title": "Live Updates | Police hunt for the shooter as residents take shelter after deadly Maine shooting", - "link": "https://www.independent.co.uk/news/ap-maine-police-parent-united-states-b2436555.html", - "pubDate": "Fri, 27 Oct 2023 15:38:03 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-10-27T15:38:03+00:00", - "content": "Diana Florence of New York says her son, a sophomore at Bates College in Lewiston, Maine, where at least 16 people were killed when a man opened fire at a bar and a bowling alley, stayed in his dorm with his roommate with the blinds closed", - "contentSnippet": "Diana Florence of New York says her son, a sophomore at Bates College in Lewiston, Maine, where at least 16 people were killed when a man opened fire at a bar and a bowling alley, stayed in his dorm with his roommate with the blinds closed", - "guid": "b2436555", - "isoDate": "2023-10-27T15:38:03.000Z" - }, - { - "creator": "Holly Evans", - "date": "2023-10-27T15:35:16+00:00", - "title": "Man known as \u2018Somerset gimp\u2019 guilty of terrifying female drivers in black latex suit ", - "link": "https://www.independent.co.uk/news/uk/crime/joshua-hunt-somerset-gimp-suit-b2437158.html", - "pubDate": "Fri, 27 Oct 2023 15:35:16 GMT", - "dc:creator": "Holly Evans", - "dc:date": "2023-10-27T15:35:16+00:00", - "content": "

Joshua Hunt seen writhing around on the ground during bizarre incident in Somerset, court told

", - "contentSnippet": "Joshua Hunt seen writhing around on the ground during bizarre incident in Somerset, court told", - "guid": "b2437158", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T15:35:16.000Z" - }, - { - "creator": "Lydia Patrick", - "date": "2023-10-27T15:32:45+00:00", - "title": "Tanks containing \u2018large quantity of cattle semen\u2019 stolen in burglary", - "link": "https://www.independent.co.uk/news/uk/crime/bull-semen-tanks-stolen-clogher-b2437138.html", - "pubDate": "Fri, 27 Oct 2023 15:32:45 GMT", - "dc:creator": "Lydia Patrick", - "dc:date": "2023-10-27T15:32:45+00:00", - "content": "

The theft has baffled the agricultural community

", - "contentSnippet": "The theft has baffled the agricultural community", - "guid": "b2437138", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T15:32:45.000Z" - }, - { - "creator": "Alex Woodward", - "date": "2023-10-27T15:30:16+00:00", - "title": "Ivanka Trump must testify in father\u2019s civil fraud trial, judge rules", - "link": "https://www.the-independent.com/news/world/americas/us-politics/ivanka-trump-testify-fraud-trial-b2437220.html", - "pubDate": "Fri, 27 Oct 2023 15:30:16 GMT", - "dc:creator": "Alex Woodward", - "dc:date": "2023-10-27T15:30:16+00:00", - "content": "

The former president\u2019s oldest daughter lost her attempt to block her testimony

", - "contentSnippet": "The former president\u2019s oldest daughter lost her attempt to block her testimony", - "guid": "b2437220", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:30:16.000Z" - }, - { - "creator": "Jamie Braidwood", - "date": "2023-10-27T15:29:28+00:00", - "title": "Is Crystal Palace vs Tottenham on TV? Channel, kick-off time and how to watch Premier League fixture", - "link": "https://www.independent.co.uk/sport/football/crystal-palace-tottenham-tv-channel-time-b2435116.html", - "pubDate": "Fri, 27 Oct 2023 15:29:28 GMT", - "dc:creator": "Jamie Braidwood", - "dc:date": "2023-10-27T15:29:28+00:00", - "content": "

Everything you need to know ahead of Friday night\u2019s London derby

", - "contentSnippet": "Everything you need to know ahead of Friday night\u2019s London derby", - "guid": "b2435116", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T15:29:28.000Z" - }, - { - "creator": "Jamie Braidwood", - "date": "2023-10-27T15:28:50+00:00", - "title": "Is England vs Belgium on TV? Channel, time and how to watch Lionesses tonight", - "link": "https://www.independent.co.uk/sport/football/england-belgium-tv-channel-time-lionesses-b2435131.html", - "pubDate": "Fri, 27 Oct 2023 15:28:50 GMT", - "dc:creator": "Jamie Braidwood", - "dc:date": "2023-10-27T15:28:50+00:00", - "content": "

England have slipped to third in Women\u2019s Nations League Group A1 ahead of this week\u2019s double-header with Belgium

", - "contentSnippet": "England have slipped to third in Women\u2019s Nations League Group A1 ahead of this week\u2019s double-header with Belgium", - "guid": "b2435131", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T15:28:50.000Z" - }, - { - "creator": "Michael Jones", - "date": "2023-10-27T15:28:40+00:00", - "title": "Is England v Argentina on TV? Channel, time and how to watch Rugby World Cup bronze final", - "link": "https://www.independent.co.uk/sport/rugby/rugby-union/england-argentina-rugby-world-cup-tv-channel-time-b2436340.html", - "pubDate": "Fri, 27 Oct 2023 15:28:40 GMT", - "dc:creator": "Michael Jones", - "dc:date": "2023-10-27T15:28:40+00:00", - "content": "

Everything you need to know ahead of the third place play-off

", - "contentSnippet": "Everything you need to know ahead of the third place play-off", - "guid": "b2436340", - "categories": [ - "Rugby Union", - "Rugby", - "Sport" - ], - "isoDate": "2023-10-27T15:28:40.000Z" - }, - { - "creator": "Meredith Clark", - "date": "2023-10-27T15:28:31+00:00", - "title": "Voices: In The Woman in Me, Justin Timberlake benefits from abortion access", - "link": "https://www.independent.co.uk/voices/britney-spears-abortion-justin-timberlake-b2437244.html", - "pubDate": "Fri, 27 Oct 2023 15:28:31 GMT", - "dc:creator": "Meredith Clark", - "dc:date": "2023-10-27T15:28:31+00:00", - "content": "

Britney Spears heavily details her \u2018excruciating\u2019 abortion in her memoir, \u2018The Woman in Me\u2019. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it

", - "contentSnippet": "Britney Spears heavily details her \u2018excruciating\u2019 abortion in her memoir, \u2018The Woman in Me\u2019. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it", - "guid": "b2437244", - "categories": [ - "Voices" - ], - "isoDate": "2023-10-27T15:28:31.000Z" - }, - { - "creator": "Rachel Sharp", - "date": "2023-10-27T15:28:11+00:00", - "title": "Mystery note left behind by Maine mass shooting suspect revealed", - "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-note-robert-card-b2437233.html", - "pubDate": "Fri, 27 Oct 2023 15:28:11 GMT", - "dc:creator": "Rachel Sharp", - "dc:date": "2023-10-27T15:28:11+00:00", - "content": "

Maine police refused to reveal the contents of the note left by Robert Card, hinting that it may point to a possible motive for the Lewiston mass shootings

", - "contentSnippet": "Maine police refused to reveal the contents of the note left by Robert Card, hinting that it may point to a possible motive for the Lewiston mass shootings", - "guid": "b2437233", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:28:11.000Z" - }, - { - "creator": "Adam Forrest", - "date": "2023-10-27T15:28:04+00:00", - "title": "Boris Johnson reveals he is joining GB News", - "link": "https://www.independent.co.uk/news/uk/politics/boris-johnson-gb-news-presenter-b2437198.html", - "pubDate": "Fri, 27 Oct 2023 15:28:04 GMT", - "dc:creator": "Adam Forrest", - "dc:date": "2023-10-27T15:28:04+00:00", - "content": "

Former PM promises to share his \u2018unvarnished\u2019 views on politics \u2013 in new warning to Rishi Sunak

", - "contentSnippet": "Former PM promises to share his \u2018unvarnished\u2019 views on politics \u2013 in new warning to Rishi Sunak", - "guid": "b2437198", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2023-10-27T15:28:04.000Z" - }, - { - "creator": "Lauren Gilmour", - "date": "2023-10-27T15:27:36+00:00", - "title": "Rail services suspended as weather warning for rain extended", - "link": "https://www.independent.co.uk/news/uk/aberdeen-inverness-scotrail-perth-dundee-b2437024.html", - "pubDate": "Fri, 27 Oct 2023 15:27:36 GMT", - "dc:creator": "Lauren Gilmour", - "dc:date": "2023-10-27T15:27:36+00:00", - "content": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", - "contentSnippet": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", - "guid": "b2437024", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T15:27:36.000Z" - }, - { - "creator": "Meredith Clark", - "date": "2023-10-27T15:26:58+00:00", - "title": "Voices: In The Woman in Me, Justin Timberlake benefits from abortion access", - "link": "https://www.independent.co.uk/voices/abortion-britney-spears-and-justin-timberlake-b2435639.html", - "pubDate": "Fri, 27 Oct 2023 15:26:58 GMT", - "dc:creator": "Meredith Clark", - "dc:date": "2023-10-27T15:26:58+00:00", - "content": "

Britney Spears heavily details her \u2018excruciating\u2019 abortion in her memoir, \u2018The Woman in Me\u2019. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it

", - "contentSnippet": "Britney Spears heavily details her \u2018excruciating\u2019 abortion in her memoir, \u2018The Woman in Me\u2019. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it", - "guid": "b2435639", - "categories": [ - "Voices" - ], - "isoDate": "2023-10-27T15:26:58.000Z" - }, - { - "creator": "Kieran Jackson", - "date": "2023-10-27T15:22:15+00:00", - "title": "F1 Mexican Grand Prix: When is practice on Friday in Mexico City? ", - "link": "https://www.independent.co.uk/f1/f1-practice-start-time-mexican-mexico-city-b2436619.html", - "pubDate": "Fri, 27 Oct 2023 15:22:15 GMT", - "dc:creator": "Kieran Jackson", - "dc:date": "2023-10-27T15:22:15+00:00", - "content": "

Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez\u2019s home race this weekend

", - "contentSnippet": "Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez\u2019s home race this weekend", - "guid": "b2436619", - "categories": [ - "F1" - ], - "isoDate": "2023-10-27T15:22:15.000Z" - }, - { - "creator": "Ariana Baio", - "date": "2023-10-27T15:21:38+00:00", - "title": "Divers join search for Maine shooting suspect in river", - "link": "https://www.independent.co.uk/news/world/americas/divers-maine-shooting-search-river-b2437197.html", - "pubDate": "Fri, 27 Oct 2023 15:21:38 GMT", - "dc:creator": "Ariana Baio", - "dc:date": "2023-10-27T15:21:38+00:00", - "content": "

Vehicle connected to Maine shooting suspect was found at a boat ramp near the Androscoggin river in Lisbon

", - "contentSnippet": "Vehicle connected to Maine shooting suspect was found at a boat ramp near the Androscoggin river in Lisbon", - "guid": "b2437197", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:21:38.000Z" - }, - { - "creator": "Callum Parke", - "date": "2023-10-27T15:21:07+00:00", - "title": "Thai football team captain who was trapped in cave killed himself, coroner rules", - "link": "https://www.independent.co.uk/news/uk/thai-leicester-city-tham-luang-bbc-b2437228.html", - "pubDate": "Fri, 27 Oct 2023 15:21:07 GMT", - "dc:creator": "Callum Parke", - "dc:date": "2023-10-27T15:21:07+00:00", - "content": "The coroner said Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019.", - "contentSnippet": "The coroner said Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019.", - "guid": "b2437228", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T15:21:07.000Z" - }, - { - "creator": "Raf Casert", - "date": "2023-10-27T15:20:38+00:00", - "title": "EU summit turns its eyes away from Ukraine despite a commitment to stay the course with Zelenskyy", - "link": "https://www.independent.co.uk/news/world/europe/ukraine-ap-viktor-orban-robert-fico-russia-b2437245.html", - "pubDate": "Fri, 27 Oct 2023 15:20:38 GMT", - "dc:creator": "Raf Casert", - "dc:date": "2023-10-27T15:20:38+00:00", - "content": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", - "contentSnippet": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", - "guid": "b2437245", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T15:20:38.000Z" - }, - { - "creator": "Callum Parke", - "date": "2023-10-27T15:20:30+00:00", - "title": "Thai cave rescue football team captain killed himself at UK school, coroner rules", - "link": "https://www.independent.co.uk/news/uk/home-news/thai-cave-rescue-duangphet-phromthep-suicide-b2437230.html", - "pubDate": "Fri, 27 Oct 2023 15:20:30 GMT", - "dc:creator": "Callum Parke", - "dc:date": "2023-10-27T15:20:30+00:00", - "content": "

Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019, coroner rules

", - "contentSnippet": "Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019, coroner rules", - "guid": "b2437230", - "categories": [ - "Home News", - "UK" - ], - "isoDate": "2023-10-27T15:20:30.000Z" - }, - { - "creator": "Robert O'Connor", - "date": "2023-10-27T15:20:13+00:00", - "title": "Christopher Nkunku return teased by Mauricio Pochettino ahead of long-awaited Chelsea debut", - "link": "https://www.independent.co.uk/sport/football/christopher-nkunku-chelsea-injury-news-pochettino-b2437237.html", - "pubDate": "Fri, 27 Oct 2023 15:20:13 GMT", - "dc:creator": "Robert O'Connor", - "dc:date": "2023-10-27T15:20:13+00:00", - "content": "

The \u00a352m signing has been sidelined since the summer

", - "contentSnippet": "The \u00a352m signing has been sidelined since the summer", - "guid": "b2437237", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T15:20:13.000Z" - }, - { - "creator": "Oliver Browning", - "date": "2023-10-27T15:20:00+00:00", - "title": "Watch: Maine State Police hold press conference as manhunt underway after mass shootings", - "link": "https://www.independent.co.uk/news/world/americas/maine-shooting-manhunt-police-live-b2436512.html", - "pubDate": "Fri, 27 Oct 2023 15:20:00 GMT", - "dc:creator": "Oliver Browning", - "dc:date": "2023-10-27T15:20:00+00:00", - "content": "

Watch as Maine State Police hold a news conference as the hunt for man linked to major mass shootings continues on Thursday 26 October.

", - "contentSnippet": "Watch as Maine State Police hold a news conference as the hunt for man linked to major mass shootings continues on Thursday 26 October.", - "guid": "b2436512", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:20:00.000Z" - }, - { - "creator": "Amelia Neath", - "date": "2023-10-27T15:19:38+00:00", - "title": "Fears for missing 16-year-old last seen in Idaho with his doomsday family", - "link": "https://www.independent.co.uk/news/world/americas/blaze-thibaudeau-doomsday-family-idaho-b2437151.html", - "pubDate": "Fri, 27 Oct 2023 15:19:38 GMT", - "dc:creator": "Amelia Neath", - "dc:date": "2023-10-27T15:19:38+00:00", - "content": "

The four potentially could be now have enterted Canada to prepare for the \u2018last days\u2019 in the doomsday judgement.

", - "contentSnippet": "The four potentially could be now have enterted Canada to prepare for the \u2018last days\u2019 in the doomsday judgement.", - "guid": "b2437151", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:19:38.000Z" - }, - { - "creator": "Kaleigh Werner", - "date": "2023-10-27T15:17:12+00:00", - "title": "Kristen Stewart shares wedding plans with fianc\u00e9e Dylan Meyer and Guy Fieri", - "link": "https://www.independent.co.uk/life-style/kristen-stewart-wedding-dylan-meyer-b2437199.html", - "pubDate": "Fri, 27 Oct 2023 15:17:12 GMT", - "dc:creator": "Kaleigh Werner", - "dc:date": "2023-10-27T15:17:12+00:00", - "content": "

\u2018Twilight\u2019 lead met her fianc\u00e9e on set of a 2013 movie but didn\u2019t start dating her until six years later

", - "contentSnippet": "\u2018Twilight\u2019 lead met her fianc\u00e9e on set of a 2013 movie but didn\u2019t start dating her until six years later", - "guid": "b2437199", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-10-27T15:17:12.000Z" - }, - { - "creator": "Martha McHardy,Louise Boyle and Stuti Mishra", - "date": "2023-10-27T15:16:06+00:00", - "title": "Hurricane Otis \u2013 latest: Fears grow for people still missing in Acapulco after storm killed 27", - "link": "https://www.independent.co.uk/climate-change/news/hurricane-otis-acapulco-path-latest-news-b2437003.html", - "pubDate": "Fri, 27 Oct 2023 15:16:06 GMT", - "dc:creator": "Martha McHardy,Louise Boyle and Stuti Mishra", - "dc:date": "2023-10-27T15:16:06+00:00", - "content": "

Four people are missing after the strongest ever storm to make landfall on Mexico\u2019s west coast

", - "contentSnippet": "Four people are missing after the strongest ever storm to make landfall on Mexico\u2019s west coast", - "guid": "b2437003", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2023-10-27T15:16:06.000Z" - }, - { - "creator": "Didi Tang and Matthew Lee", - "date": "2023-10-27T15:14:49+00:00", - "title": "China's top diplomat visits Washington to help stabilize ties and perhaps set up a Biden-Xi summit", - "link": "https://www.independent.co.uk/news/world/americas/wang-yi-ap-joe-biden-china-xi-jinping-b2437231.html", - "pubDate": "Fri, 27 Oct 2023 15:14:49 GMT", - "dc:creator": "Didi Tang and Matthew Lee", - "dc:date": "2023-10-27T15:14:49+00:00", - "content": "China\u2019s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", - "contentSnippet": "China\u2019s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", - "guid": "b2437231", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T15:14:49.000Z" - }, - { - "creator": "Paul Cargill", - "date": "2023-10-27T15:13:25+00:00", - "title": "Hundreds of offshore workers to be balloted in row over rotas and pay", - "link": "https://www.independent.co.uk/news/uk/sharon-graham-b2437239.html", - "pubDate": "Fri, 27 Oct 2023 15:13:25 GMT", - "dc:creator": "Paul Cargill", - "dc:date": "2023-10-27T15:13:25+00:00", - "content": "The dispute centres on a company\u2019s alleged refusal to reform working rotas and provide paid leave.", - "contentSnippet": "The dispute centres on a company\u2019s alleged refusal to reform working rotas and provide paid leave.", - "guid": "b2437239", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T15:13:25.000Z" - }, - { - "creator": "Brittany Miller", - "date": "2023-10-27T15:13:02+00:00", - "title": "Restaurant charges parents $50 fee for \u2018loud\u2019 children", - "link": "https://www.independent.co.uk/life-style/restaurant-parenting-extra-charge-reddit-b2436694.html", - "pubDate": "Fri, 27 Oct 2023 15:13:02 GMT", - "dc:creator": "Brittany Miller", - "dc:date": "2023-10-27T15:13:02+00:00", - "content": "

\u2018Adult surcharge: For adults unable to parent $$$\u2019 menu reads

", - "contentSnippet": "\u2018Adult surcharge: For adults unable to parent $$$\u2019 menu reads", - "guid": "b2436694", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-10-27T15:13:02.000Z" - }, - { - "creator": "Nina Lloyd", - "date": "2023-10-27T15:12:09+00:00", - "title": "UK ministers continue to resist calls for ceasefire in Middle East", - "link": "https://www.independent.co.uk/news/uk/israel-middle-east-gaza-hamas-foreign-office-b2437036.html", - "pubDate": "Fri, 27 Oct 2023 15:12:09 GMT", - "dc:creator": "Nina Lloyd", - "dc:date": "2023-10-27T15:12:09+00:00", - "content": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", - "contentSnippet": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", - "guid": "b2437036", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T15:12:09.000Z" - }, - { - "creator": "David Charlesworth", - "date": "2023-10-27T15:11:59+00:00", - "title": "Pep Guardiola condemns Man City fans who sang offensive Sir Bobby Charlton chant", - "link": "https://www.independent.co.uk/sport/football/manchester-city-fans-bobby-charlton-song-video-b2437221.html", - "pubDate": "Fri, 27 Oct 2023 15:11:59 GMT", - "dc:creator": "David Charlesworth", - "dc:date": "2023-10-27T15:11:59+00:00", - "content": "

Two people, both minors, have been banned by the club after chanting during City\u2019s match against Brighton last weekend

", - "contentSnippet": "Two people, both minors, have been banned by the club after chanting during City\u2019s match against Brighton last weekend", - "guid": "b2437221", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T15:11:59.000Z" - }, - { - "creator": "Craig Paton", - "date": "2023-10-27T15:10:07+00:00", - "title": "Yousaf calls on every UK political leader to back Gaza ceasefire", - "link": "https://www.independent.co.uk/news/uk/humza-yousaf-gaza-hamas-rishi-sunak-first-minister-b2437226.html", - "pubDate": "Fri, 27 Oct 2023 15:10:07 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2023-10-27T15:10:07+00:00", - "content": "The First Minister has written to the leaders of all parties to warn without action, the situation will become \u2018cataclysmic\u2019.", - "contentSnippet": "The First Minister has written to the leaders of all parties to warn without action, the situation will become \u2018cataclysmic\u2019.", - "guid": "b2437226", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T15:10:07.000Z" - }, - { - "creator": "Sam Hall", - "date": "2023-10-27T15:09:00+00:00", - "title": "Olympic gymnast hopes MBE will inspire others \u2018to be the best that they can\u2019", - "link": "https://www.independent.co.uk/news/uk/great-britain-mbe-los-angeles-royal-buckingham-palace-b2437227.html", - "pubDate": "Fri, 27 Oct 2023 15:09:00 GMT", - "dc:creator": "Sam Hall", - "dc:date": "2023-10-27T15:09:00+00:00", - "content": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", - "contentSnippet": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", - "guid": "b2437227", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T15:09:00.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-10-27T15:08:26+00:00", - "title": "Reckless man steals bus before smashing it into car on 10-mile trip across busy city centre", - "link": "https://www.independent.co.uk/tv/news/man-steals-bus-crash-car-nottingham-video-b2437215.html", - "pubDate": "Fri, 27 Oct 2023 15:08:26 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-10-27T15:08:26+00:00", - "content": "

This is the moment a man hops onto a bus before stealing the vehicle and smashing it into a car as he drives recklessly through the streets of Nottingham.

", - "contentSnippet": "This is the moment a man hops onto a bus before stealing the vehicle and smashing it into a car as he drives recklessly through the streets of Nottingham.", - "guid": "b2437215", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-10-27T15:08:26.000Z" - }, - { - "creator": "Alex Pattle", - "date": "2023-10-27T15:03:48+00:00", - "title": "Jon Jones apologises to Stipe Miocic after injury derails UFC 295 clash", - "link": "https://www.independent.co.uk/sport/ufc/jon-jones-injury-miocic-ufc-295-b2437006.html", - "pubDate": "Fri, 27 Oct 2023 15:03:48 GMT", - "dc:creator": "Alex Pattle", - "dc:date": "2023-10-27T15:03:48+00:00", - "content": "

The heavyweight champion was due to defend his belt against divisional great Miocic on 11 November, but he will instead face months of rehab on a shoulder injury

", - "contentSnippet": "The heavyweight champion was due to defend his belt against divisional great Miocic on 11 November, but he will instead face months of rehab on a shoulder injury", - "guid": "b2437006", - "categories": [ - "UFC", - "Sport" - ], - "isoDate": "2023-10-27T15:03:48.000Z" - }, - { - "creator": "Billal Rahman", - "date": "2023-10-27T15:01:54+00:00", - "title": "Climate activist scales Louvre to throw orange paint over pyramid ", - "link": "https://www.independent.co.uk/tv/news/lourve-orange-paint-climate-activist-b2437211.html", - "pubDate": "Fri, 27 Oct 2023 15:01:54 GMT", - "dc:creator": "Billal Rahman", - "dc:date": "2023-10-27T15:01:54+00:00", - "content": "

Climate activists scaled the Louvre Museum Pyramid and threw orange paint over the iconic museum in Paris on Friday, 27 October.

", - "contentSnippet": "Climate activists scaled the Louvre Museum Pyramid and threw orange paint over the iconic museum in Paris on Friday, 27 October.", - "guid": "b2437211", - "categories": [ - "News", - "Indy TV" - ], - "isoDate": "2023-10-27T15:01:54.000Z" - }, - { - "creator": "Philip Duncan", - "date": "2023-10-27T15:01:28+00:00", - "title": "Max Verstappen urges fans to show him respect ahead of feisty Mexican Grand Prix", - "link": "https://www.independent.co.uk/f1/max-verstappen-sergio-perez-mexico-city-austin-mexican-b2437225.html", - "pubDate": "Fri, 27 Oct 2023 15:01:28 GMT", - "dc:creator": "Philip Duncan", - "dc:date": "2023-10-27T15:01:28+00:00", - "content": "Verstappen has beefed up his security for Sergio Perez\u2019s home race at the high-altitude Autodromo Hermanos Rodriguez venue in Mexico City.", - "contentSnippet": "Verstappen has beefed up his security for Sergio Perez\u2019s home race at the high-altitude Autodromo Hermanos Rodriguez venue in Mexico City.", - "guid": "b2437225", - "categories": [ - "F1" - ], - "isoDate": "2023-10-27T15:01:28.000Z" - }, - { - "creator": "Via AP news wire", - "date": "2023-10-27T15:00:51+00:00", - "title": "Cruise, GM's robotaxi service, suspends all driverless operations nationwide", - "link": "https://www.independent.co.uk/news/ap-general-motors-california-new-york-san-francisco-b2437224.html", - "pubDate": "Fri, 27 Oct 2023 15:00:51 GMT", - "dc:creator": "Via AP news wire", - "dc:date": "2023-10-27T15:00:51+00:00", - "content": "General Motors\u2019 Cruise says it's suspending its driverless operations nationwide as the robotaxi service works to rebuild public trust", - "contentSnippet": "General Motors\u2019 Cruise says it's suspending its driverless operations nationwide as the robotaxi service works to rebuild public trust", - "guid": "b2437224", - "isoDate": "2023-10-27T15:00:51.000Z" - }, - { - "creator": "Sarah Young", - "date": "2023-10-27T14:59:43+00:00", - "title": "Black Friday microwave deals 2023: Early deals and what to expect", - "link": "https://www.independent.co.uk/extras/indybest/black-friday/microwave-deals-black-friday-2023-b2416599.html", - "pubDate": "Fri, 27 Oct 2023 14:59:43 GMT", - "dc:creator": "Sarah Young", - "dc:date": "2023-10-27T14:59:43+00:00", - "content": "

Save on big-name brands such as Samsung, Sage and more

", - "contentSnippet": "Save on big-name brands such as Samsung, Sage and more", - "guid": "b2416599", - "categories": [ - "Black Friday", - "IndyBest", - "Extras" - ], - "isoDate": "2023-10-27T14:59:43.000Z" - }, - { - "creator": "Sam Blewett", - "date": "2023-10-27T14:55:39+00:00", - "title": "Khan, Sarwar and Burnham pile pressure on Starmer by demanding Israel ceasefire", - "link": "https://www.independent.co.uk/news/uk/israel-sadiq-khan-burnham-andy-burnham-kate-green-b2437217.html", - "pubDate": "Fri, 27 Oct 2023 14:55:39 GMT", - "dc:creator": "Sam Blewett", - "dc:date": "2023-10-27T14:55:39+00:00", - "content": "The Labour leader is standing by his stance of supporting Israel\u2019s right to self defence despite the Palestinian civilians being killed.", - "contentSnippet": "The Labour leader is standing by his stance of supporting Israel\u2019s right to self defence despite the Palestinian civilians being killed.", - "guid": "b2437217", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T14:55:39.000Z" - }, - { - "creator": "Sonia Twigg", - "date": "2023-10-27T14:54:39+00:00", - "title": "Mohammed Rizwan evokes memories of Jonny Bairstow controversy in World Cup incident", - "link": "https://www.independent.co.uk/sport/cricket/mohammad-rizwan-alex-carey-jonny-bairstow-b2437212.html", - "pubDate": "Fri, 27 Oct 2023 14:54:39 GMT", - "dc:creator": "Sonia Twigg", - "dc:date": "2023-10-27T14:54:39+00:00", - "content": "

Mohammad Rizwan evoked memories of Alex Carey to Jonny Bairstow at Lord\u2019s in World Cup match

", - "contentSnippet": "Mohammad Rizwan evoked memories of Alex Carey to Jonny Bairstow at Lord\u2019s in World Cup match", - "guid": "b2437212", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2023-10-27T14:54:39.000Z" - }, - { - "creator": "Lauren Gilmour", - "date": "2023-10-27T14:54:38+00:00", - "title": "Scottish Water staff plan weekly strikes over three months amid pay row", - "link": "https://www.independent.co.uk/business/scottish-water-staff-plan-weekly-strikes-over-three-months-amid-pay-row-b2437216.html", - "pubDate": "Fri, 27 Oct 2023 14:54:38 GMT", - "dc:creator": "Lauren Gilmour", - "dc:date": "2023-10-27T14:54:38+00:00", - "content": "Unions accused the firm of \u2018insatiable greed\u2019.", - "contentSnippet": "Unions accused the firm of \u2018insatiable greed\u2019.", - "guid": "b2437216", - "categories": [ - "Business" - ], - "isoDate": "2023-10-27T14:54:38.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2023-10-27T14:53:19+00:00", - "title": "Boris Johnson joining GB News to offer \u2018unvarnished\u2019 views", - "link": "https://www.independent.co.uk/news/uk/boris-johnson-britain-jacob-reesmogg-gb-news-conservative-b2437209.html", - "pubDate": "Fri, 27 Oct 2023 14:53:19 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2023-10-27T14:53:19+00:00", - "content": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", - "contentSnippet": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", - "guid": "b2437209", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T14:53:19.000Z" - }, - { - "creator": "", - "date": "2023-10-27T14:52:18+00:00", - "title": "Streamline your life with these cool gadgets", - "link": "https://www.independent.co.uk/tech/streamline-your-life-with-these-cool-gadgets-b2435825.html", - "pubDate": "Fri, 27 Oct 2023 14:52:18 GMT", - "dc:creator": "", - "dc:date": "2023-10-27T14:52:18+00:00", - "content": "

From robot cleaners to solar generators, check out these super-stylish tech upgrades

", - "contentSnippet": "From robot cleaners to solar generators, check out these super-stylish tech upgrades", - "guid": "b2435825", - "categories": [ - "Tech" - ], - "isoDate": "2023-10-27T14:52:18.000Z" - }, - { - "creator": "Eric Garcia", - "date": "2023-10-27T14:51:10+00:00", - "title": "New Speaker Mike Johnson blames \u2018human heart\u2019 for gun violence", - "link": "https://www.the-independent.com/news/world/americas/us-politics/speaker-mike-johnson-gun-control-b2437161.html", - "pubDate": "Fri, 27 Oct 2023 14:51:10 GMT", - "dc:creator": "Eric Garcia", - "dc:date": "2023-10-27T14:51:10+00:00", - "content": "

The newly elected speaker also tells Sean Hannity that the House might impeach Joe Biden but he likely will not pursue expelling Rep George Santos (R-NY)

", - "contentSnippet": "The newly elected speaker also tells Sean Hannity that the House might impeach Joe Biden but he likely will not pursue expelling Rep George Santos (R-NY)", - "guid": "b2437161", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-10-27T14:51:10.000Z" - }, - { - "creator": "Matt Mathers", - "date": "2023-10-27T14:45:33+00:00", - "title": "Separatist lined up to be Putin\u2019s puppet leader in Ukraine \u2018is shot in Crimea home\u2019", - "link": "https://www.independent.co.uk/news/world/europe/oleg-tsaryov-shot-ukraine-crimea-b2437109.html", - "pubDate": "Fri, 27 Oct 2023 14:45:33 GMT", - "dc:creator": "Matt Mathers", - "dc:date": "2023-10-27T14:45:33+00:00", - "content": "

Pro-Russian former politician fighting for life in intensive care, official says

", - "contentSnippet": "Pro-Russian former politician fighting for life in intensive care, official says", - "guid": "b2437109", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T14:45:33.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-10-27T14:43:52+00:00", - "title": "Ken Bruce urges people to listen to autistic community as he is made an MBE", - "link": "https://www.independent.co.uk/news/uk/ken-bruce-scottish-buckingham-palace-rajar-one-b2437213.html", - "pubDate": "Fri, 27 Oct 2023 14:43:52 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-10-27T14:43:52+00:00", - "content": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", - "contentSnippet": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", - "guid": "b2437213", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T14:43:52.000Z" - }, - { - "creator": "Mike MacEacheran", - "date": "2023-10-27T14:43:04+00:00", - "title": "Abu Dhabi guide: where to sightsee, stay and eat in the UAE capital", - "link": "https://www.independent.co.uk/travel/north-africa-middle-east/uae/abu-dhabi/abu-dhabi-guide-where-to-stay-play-eat-and-drink-in-the-uae-capital-b2436909.html", - "pubDate": "Fri, 27 Oct 2023 14:43:04 GMT", - "dc:creator": "Mike MacEacheran", - "dc:date": "2023-10-27T14:43:04+00:00", - "content": "

With its mix of heritage, pomp and oil-rich circumstance, the UAE capital inspires a particular kind of devotion, says Mike MacEacheran

", - "contentSnippet": "With its mix of heritage, pomp and oil-rich circumstance, the UAE capital inspires a particular kind of devotion, says Mike MacEacheran", - "guid": "b2436909", - "categories": [ - "Abu Dhabi", - "UAE", - "North Africa & Middle East", - "Travel" - ], - "isoDate": "2023-10-27T14:43:04.000Z" - }, - { - "creator": "Luke Baker", - "date": "2023-10-27T14:41:35+00:00", - "title": "Pakistan vs South Africa LIVE: Cricket score and World Cup updates", - "link": "https://www.independent.co.uk/sport/cricket/pakistan-south-africa-live-stream-score-updates-b2436979.html", - "pubDate": "Fri, 27 Oct 2023 14:41:35 GMT", - "dc:creator": "Luke Baker", - "dc:date": "2023-10-27T14:41:35+00:00", - "content": "Follow all the action from M.A. Chidambaram Stadium", - "contentSnippet": "Follow all the action from M.A. Chidambaram Stadium", - "guid": "b2436979", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2023-10-27T14:41:35.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-10-27T14:41:00+00:00", - "title": "Will Smith tells Jada she\u2019s \u2018taken a lot of bullets\u2019 for their relationship", - "link": "https://www.independent.co.uk/tv/culture/will-smith-jada-pinkett-marriage-relationship-video-b2437186.html", - "pubDate": "Fri, 27 Oct 2023 14:41:00 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-10-27T14:41:00+00:00", - "content": "

Will Smith has told his wife Jada that she has \u201ctaken a lot of bullets\u201d for them during their relationship.

", - "contentSnippet": "Will Smith has told his wife Jada that she has \u201ctaken a lot of bullets\u201d for them during their relationship.", - "guid": "b2437186", - "categories": [ - "Culture", - "Indy TV" - ], - "isoDate": "2023-10-27T14:41:00.000Z" - }, - { - "creator": "David Charlesworth", - "date": "2023-10-27T14:36:50+00:00", - "title": "Pep Guardiola condemns Manchester City fans who chanted about Sir Bobby Charlton", - "link": "https://www.independent.co.uk/sport/football/pep-guardiola-bobby-charlton-manchester-united-manchester-city-charlton-b2437208.html", - "pubDate": "Fri, 27 Oct 2023 14:36:50 GMT", - "dc:creator": "David Charlesworth", - "dc:date": "2023-10-27T14:36:50+00:00", - "content": "Two people, both minors, chanted during City\u2019s match against Brighton last weekend, soon after the Manchester United great\u2019s death was announced.", - "contentSnippet": "Two people, both minors, chanted during City\u2019s match against Brighton last weekend, soon after the Manchester United great\u2019s death was announced.", - "guid": "b2437208", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T14:36:50.000Z" - }, - { - "creator": "Jack Rathborn", - "date": "2023-10-27T14:34:21+00:00", - "title": "Arsenal vs Sheffield United predicted lineups: Team news for Premier League fixture", - "link": "https://www.independent.co.uk/sport/football/arsenal-sheffield-united-predicted-lineups-team-news-b2437191.html", - "pubDate": "Fri, 27 Oct 2023 14:34:21 GMT", - "dc:creator": "Jack Rathborn", - "dc:date": "2023-10-27T14:34:21+00:00", - "content": "

Everything you need to know ahead of the Gunners\u2019 match against the Blades

", - "contentSnippet": "Everything you need to know ahead of the Gunners\u2019 match against the Blades", - "guid": "b2437191", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T14:34:21.000Z" - }, - { - "creator": "Adam Forrest", - "date": "2023-10-27T14:33:37+00:00", - "title": "Boris Johnson and Dominic Cummings sent \u2018disgusting and misogynistic\u2019 WhatsApps, George Osborne claims", - "link": "https://www.independent.co.uk/news/uk/politics/boris-johnson-cummings-whatsapp-covid-b2437013.html", - "pubDate": "Fri, 27 Oct 2023 14:33:37 GMT", - "dc:creator": "Adam Forrest", - "dc:date": "2023-10-27T14:33:37+00:00", - "content": "

George Osborne says \u2018shocking\u2019 and \u2018staggering\u2019 messages will soon be shared at public inquiry

", - "contentSnippet": "George Osborne says \u2018shocking\u2019 and \u2018staggering\u2019 messages will soon be shared at public inquiry", - "guid": "b2437013", - "categories": [ - "UK Politics", - "UK" - ], - "isoDate": "2023-10-27T14:33:37.000Z" - }, - { - "creator": "Sonia Twigg", - "date": "2023-10-27T14:27:31+00:00", - "title": "Mary Earps reveals difficulties with fan relationship following rise of women\u2019s football", - "link": "https://www.independent.co.uk/sport/football/mary-earps-england-lionesses-manchester-united-b2437193.html", - "pubDate": "Fri, 27 Oct 2023 14:27:31 GMT", - "dc:creator": "Sonia Twigg", - "dc:date": "2023-10-27T14:27:31+00:00", - "content": "

Earps has also discussed her shirt selling out after Nike belatedly decided to release a limited number following the Lionesses\u2019 success at the World Cup

", - "contentSnippet": "Earps has also discussed her shirt selling out after Nike belatedly decided to release a limited number following the Lionesses\u2019 success at the World Cup", - "guid": "b2437193", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T14:27:31.000Z" - }, - { - "creator": "Mark Mann-Bryans", - "date": "2023-10-27T14:26:20+00:00", - "title": "Mikel Arteta calls for increased squad sizes as Arsenal suffer fresh injury blow", - "link": "https://www.independent.co.uk/sport/football/mikel-arteta-arsenal-thomas-partey-premier-league-martin-odegaard-b2437195.html", - "pubDate": "Fri, 27 Oct 2023 14:26:20 GMT", - "dc:creator": "Mark Mann-Bryans", - "dc:date": "2023-10-27T14:26:20+00:00", - "content": "

Gabriel Jesus and Thomas Partey are both facing a spell on the sidelines

", - "contentSnippet": "Gabriel Jesus and Thomas Partey are both facing a spell on the sidelines", - "guid": "b2437195", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T14:26:20.000Z" - }, - { - "creator": "Jamel Smith", - "date": "2023-10-27T14:25:53+00:00", - "title": "Son of Hamas hostage says Palestinian protests \u2018celebrated his pain\u2019", - "link": "https://www.independent.co.uk/news/uk/north-london-hamas-palestinian-british-life-b2437204.html", - "pubDate": "Fri, 27 Oct 2023 14:25:53 GMT", - "dc:creator": "Jamel Smith", - "dc:date": "2023-10-27T14:25:53+00:00", - "content": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", - "contentSnippet": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", - "guid": "b2437204", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T14:25:53.000Z" - }, - { - "creator": "Ken Sweet and Larry Neumeister", - "date": "2023-10-27T14:21:44+00:00", - "title": "FTX founder Sam Bankman-Fried testifies at his fraud trial", - "link": "https://www.independent.co.uk/news/sam-bankmanfried-ap-ftx-new-york-california-b2437206.html", - "pubDate": "Fri, 27 Oct 2023 14:21:44 GMT", - "dc:creator": "Ken Sweet and Larry Neumeister", - "dc:date": "2023-10-27T14:21:44+00:00", - "content": "FTX founder Sam Bankman-Fried has begun testifying at his fraud trial, saying the innovative business he hoped would move the cryptocurrency ecosystem forward ended up doing the opposite and customers were hurt", - "contentSnippet": "FTX founder Sam Bankman-Fried has begun testifying at his fraud trial, saying the innovative business he hoped would move the cryptocurrency ecosystem forward ended up doing the opposite and customers were hurt", - "guid": "b2437206", - "isoDate": "2023-10-27T14:21:44.000Z" - }, - { - "creator": "Ariana Baio", - "date": "2023-10-27T14:21:04+00:00", - "title": "Maine rep reverses stance on assault weapons ban after mass shooting", - "link": "https://www.the-independent.com/news/world/americas/us-politics/jared-golden-assault-weapon-maine-shooting-b2437177.html", - "pubDate": "Fri, 27 Oct 2023 14:21:04 GMT", - "dc:creator": "Ariana Baio", - "dc:date": "2023-10-27T14:21:04+00:00", - "content": "

Rep Jared Golden voted against legislation to ban assault weapons last July

", - "contentSnippet": "Rep Jared Golden voted against legislation to ban assault weapons last July", - "guid": "b2437177", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-10-27T14:21:04.000Z" - }, - { - "creator": "Jake Coyle", - "date": "2023-10-27T14:20:24+00:00", - "title": "The strike has dimmed the spotlight on the fall's best performances. Here's 13 you shouldn't miss", - "link": "https://www.independent.co.uk/news/ap-paul-giamatti-annette-bening-jamie-foxx-eve-hewson-b2437205.html", - "pubDate": "Fri, 27 Oct 2023 14:20:24 GMT", - "dc:creator": "Jake Coyle", - "dc:date": "2023-10-27T14:20:24+00:00", - "content": "One of the many impacts of Hollywood's lengthy actors strike has been that most performers haven't been able to promote their work", - "contentSnippet": "One of the many impacts of Hollywood's lengthy actors strike has been that most performers haven't been able to promote their work", - "guid": "b2437205", - "isoDate": "2023-10-27T14:20:24.000Z" - }, - { - "creator": "Bruce Schreiner", - "date": "2023-10-27T14:20:03+00:00", - "title": "In the Kentucky governor's race, the gun policy debate is both personal and political", - "link": "https://www.independent.co.uk/news/andy-beshear-ap-kentucky-daniel-cameron-louisville-b2437203.html", - "pubDate": "Fri, 27 Oct 2023 14:20:03 GMT", - "dc:creator": "Bruce Schreiner", - "dc:date": "2023-10-27T14:20:03+00:00", - "content": "Kentucky Gov. Andy Beshear was struck by tragedy when one of his closest friends died in a mass shooting", - "contentSnippet": "Kentucky Gov. Andy Beshear was struck by tragedy when one of his closest friends died in a mass shooting", - "guid": "b2437203", - "isoDate": "2023-10-27T14:20:03.000Z" - }, - { - "creator": "Rachel Sharp,Andrea Blanco and Andrea Cavallier", - "date": "2023-10-27T14:18:59+00:00", - "title": "Bryan Kohberger update: Idaho murders judge makes key camera ruling as dismissal bid tossed ", - "link": "https://www.independent.co.uk/news/world/americas/bryan-kohberger-court-idaho-murders-update-b2437001.html", - "pubDate": "Fri, 27 Oct 2023 14:18:59 GMT", - "dc:creator": "Rachel Sharp,Andrea Blanco and Andrea Cavallier", - "dc:date": "2023-10-27T14:18:59+00:00", - "content": "

Bryan Kohberger appeared at Latah County Court for two hearings on Thursday

", - "contentSnippet": "Bryan Kohberger appeared at Latah County Court for two hearings on Thursday", - "guid": "b2437001", - "categories": [ - "Americas", - "World" - ], - "isoDate": "2023-10-27T14:18:59.000Z" - }, - { - "creator": "Olivia Petter", - "date": "2023-10-27T14:15:49+00:00", - "title": "Tyson Fury reveals why he missed the birth of his seventh child", - "link": "https://www.independent.co.uk/life-style/tyson-fury-children-names-prince-birth-b2437174.html", - "pubDate": "Fri, 27 Oct 2023 14:15:49 GMT", - "dc:creator": "Olivia Petter", - "dc:date": "2023-10-27T14:15:49+00:00", - "content": "

\u2018Daddy has to do what Daddy has to do,\u2019 says the 35-year-old boxer

", - "contentSnippet": "\u2018Daddy has to do what Daddy has to do,\u2019 says the 35-year-old boxer", - "guid": "b2437174", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-10-27T14:15:49.000Z" - }, - { - "creator": "Gustaf Kilander", - "date": "2023-10-27T14:15:19+00:00", - "title": "Six more of Trump\u2019s Georgia co-defendants may be looking at plea deals", - "link": "https://www.the-independent.com/news/world/americas/us-politics/donald-trump-georgia-plea-deals-b2437140.html", - "pubDate": "Fri, 27 Oct 2023 14:15:19 GMT", - "dc:creator": "Gustaf Kilander", - "dc:date": "2023-10-27T14:15:19+00:00", - "content": "

Prosecutors are attempting to have defendants \u2018as witnesses as opposed to adversaries,\u2019 former DA says

", - "contentSnippet": "Prosecutors are attempting to have defendants \u2018as witnesses as opposed to adversaries,\u2019 former DA says", - "guid": "b2437140", - "categories": [ - "US politics", - "Americas", - "World" - ], - "isoDate": "2023-10-27T14:15:19.000Z" - }, - { - "creator": "Alexander Butler and Maira Butt", - "date": "2023-10-27T14:14:15+00:00", - "title": "Ukraine-Russia war - live: Putin\u2019s troops \u2018executed for retreating\u2019 as Moscow \u2018loses entire brigade\u2019 in Avdiivka", - "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-losses-weapons-latest-b2436926.html", - "pubDate": "Fri, 27 Oct 2023 14:14:15 GMT", - "dc:creator": "Alexander Butler and Maira Butt", - "dc:date": "2023-10-27T14:14:15+00:00", - "content": "

The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said

", - "contentSnippet": "The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said", - "guid": "b2436926", - "categories": [ - "Europe", - "World" - ], - "isoDate": "2023-10-27T14:14:15.000Z" - }, - { - "creator": "Vix Leyton", - "date": "2023-10-27T14:08:35+00:00", - "title": "Voices: Like Hasan Minhaj, I exaggerate funny stories for effect \u2013 who doesn\u2019t?", - "link": "https://www.independent.co.uk/voices/hasan-minhaj-comedy-new-yorker-daily-show-b2437142.html", - "pubDate": "Fri, 27 Oct 2023 14:08:35 GMT", - "dc:creator": "Vix Leyton", - "dc:date": "2023-10-27T14:08:35+00:00", - "content": "

Should a stand-up be held to account for fabricating elements of the stories they tell on stage? Comedian Vix Leyton explains why embellishing anecdotes is just a part of human nature

", - "contentSnippet": "Should a stand-up be held to account for fabricating elements of the stories they tell on stage? Comedian Vix Leyton explains why embellishing anecdotes is just a part of human nature", - "guid": "b2437142", - "categories": [ - "Voices" - ], - "isoDate": "2023-10-27T14:08:35.000Z" - }, - { - "creator": "Duncan Bech", - "date": "2023-10-27T14:05:57+00:00", - "title": "South Africa out to inspire new generation in World Cup final against All Blacks", - "link": "https://www.independent.co.uk/sport/rugby/rugby-union/south-africa-all-blacks-springboks-england-stade-de-france-b2437163.html", - "pubDate": "Fri, 27 Oct 2023 14:05:57 GMT", - "dc:creator": "Duncan Bech", - "dc:date": "2023-10-27T14:05:57+00:00", - "content": "The winner will be crowned the most successful nation in the tournament\u2019s history.", - "contentSnippet": "The winner will be crowned the most successful nation in the tournament\u2019s history.", - "guid": "b2437163", - "categories": [ - "Rugby Union", - "Rugby", - "Sport" - ], - "isoDate": "2023-10-27T14:05:57.000Z" - }, - { - "creator": "Pa Sport Staff", - "date": "2023-10-27T14:03:46+00:00", - "title": "England\u2019s woes at World Cup down to lack of preparation \u2013 Sir Geoffrey Boycott", - "link": "https://www.independent.co.uk/sport/cricket/geoffrey-boycott-jos-buttler-england-india-matthew-mott-b2437050.html", - "pubDate": "Fri, 27 Oct 2023 14:03:46 GMT", - "dc:creator": "Pa Sport Staff", - "dc:date": "2023-10-27T14:03:46+00:00", - "content": "Head coach Matthew Mott has written off England\u2019s chances after four defeats in five games in India.", - "contentSnippet": "Head coach Matthew Mott has written off England\u2019s chances after four defeats in five games in India.", - "guid": "b2437050", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2023-10-27T14:03:46.000Z" - }, - { - "creator": "Tony Jones", - "date": "2023-10-27T14:00:05+00:00", - "title": "Leopards feature in latest edition of acclaimed wildlife photobook series", - "link": "https://www.independent.co.uk/climate-change/news/ricky-gervais-african-russell-crowe-botswana-photographers-b2437192.html", - "pubDate": "Fri, 27 Oct 2023 14:00:05 GMT", - "dc:creator": "Tony Jones", - "dc:date": "2023-10-27T14:00:05+00:00", - "content": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", - "contentSnippet": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", - "guid": "b2437192", - "categories": [ - "News", - "Climate" - ], - "isoDate": "2023-10-27T14:00:05.000Z" - }, - { - "creator": "Ted Hennessey", - "date": "2023-10-27T13:59:49+00:00", - "title": "Counter-terror police searching for women with images of Hamas paragliders", - "link": "https://www.independent.co.uk/news/uk/hamas-israel-metropolitan-police-whitehall-bond-street-b2437170.html", - "pubDate": "Fri, 27 Oct 2023 13:59:49 GMT", - "dc:creator": "Ted Hennessey", - "dc:date": "2023-10-27T13:59:49+00:00", - "content": "Hamas, which is classed as a terrorist organisation in the UK, used paragliders as part of its attack on Israel on October 7.", - "contentSnippet": "Hamas, which is classed as a terrorist organisation in the UK, used paragliders as part of its attack on Israel on October 7.", - "guid": "b2437170", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T13:59:49.000Z" - }, - { - "creator": "Barney Davis", - "date": "2023-10-27T13:57:25+00:00", - "title": "Anti-terror police appeal to find London protesters with pictures of Hamas hangliders", - "link": "https://www.independent.co.uk/news/uk/crime/palestine-march-london-police-hamas-b2437167.html", - "pubDate": "Fri, 27 Oct 2023 13:57:25 GMT", - "dc:creator": "Barney Davis", - "dc:date": "2023-10-27T13:57:25+00:00", - "content": "

Police are searching for four people suspected of displaying support for Hamas among the thousands that joined the marches

", - "contentSnippet": "Police are searching for four people suspected of displaying support for Hamas among the thousands that joined the marches", - "guid": "b2437167", - "categories": [ - "Crime", - "UK" - ], - "isoDate": "2023-10-27T13:57:25.000Z" - }, - { - "creator": "Michael Jones", - "date": "2023-10-27T13:56:34+00:00", - "title": "Ballon d\u2019Or shortlist: Who are the nominees for 2023 award?", - "link": "https://www.independent.co.uk/sport/football/ballon-d-or-shortlist-lionel-messi-erling-haaland-b2435911.html", - "pubDate": "Fri, 27 Oct 2023 13:56:34 GMT", - "dc:creator": "Michael Jones", - "dc:date": "2023-10-27T13:56:34+00:00", - "content": "

Everything you need to know ahead of the awards ceremony

", - "contentSnippet": "Everything you need to know ahead of the awards ceremony", - "guid": "b2435911", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T13:56:34.000Z" - }, - { - "creator": "Michael Jones", - "date": "2023-10-27T13:56:32+00:00", - "title": "When is the Ballon d\u2019Or? Date, time and how to watch ", - "link": "https://www.independent.co.uk/sport/football/ballon-d-or-time-tv-channel-live-stream-b2435861.html", - "pubDate": "Fri, 27 Oct 2023 13:56:32 GMT", - "dc:creator": "Michael Jones", - "dc:date": "2023-10-27T13:56:32+00:00", - "content": "

Everything you need to know ahead of the presentation ceremony

", - "contentSnippet": "Everything you need to know ahead of the presentation ceremony", - "guid": "b2435861", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T13:56:32.000Z" - }, - { - "creator": "Lucy Leeson", - "date": "2023-10-27T13:55:21+00:00", - "title": "Watch live: Maine shooting latest as police give update in hunt for suspect Robert Card", - "link": "https://www.independent.co.uk/news/maine-shooting-police-press-conference-robert-card-b2437188.html", - "pubDate": "Fri, 27 Oct 2023 13:55:21 GMT", - "dc:creator": "Lucy Leeson", - "dc:date": "2023-10-27T13:55:21+00:00", - "content": "

Watch live as Maine State Police hold a news conference at Lewiston City Hall to discuss the mass shooting and manhunt in Lewiston on Friday (27 October).

", - "contentSnippet": "Watch live as Maine State Police hold a news conference at Lewiston City Hall to discuss the mass shooting and manhunt in Lewiston on Friday (27 October).", - "guid": "b2437188", - "isoDate": "2023-10-27T13:55:21.000Z" - }, - { - "creator": "Sam Blewett", - "date": "2023-10-27T13:48:01+00:00", - "title": "Khan and Sarwar demand Israel-Hamas ceasefire, adding to pressure on Starmer", - "link": "https://www.independent.co.uk/news/uk/sadiq-khan-israel-gaza-muslim-mayor-b2437165.html", - "pubDate": "Fri, 27 Oct 2023 13:48:01 GMT", - "dc:creator": "Sam Blewett", - "dc:date": "2023-10-27T13:48:01+00:00", - "content": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", - "contentSnippet": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", - "guid": "b2437165", - "categories": [ - "UK" - ], - "isoDate": "2023-10-27T13:48:01.000Z" - } -] \ No newline at end of file + { + "creator": "Holly Evans,Maanya Sachdeva,Tom Murray and Kevin E G Perry", + "date": "2023-11-30T23:27:42+00:00", + "title": "Shane MacGowan dead - latest: Pogues singer known for Fairytale of New York dies as tributes paid", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/shane-macgowan-pogues-death-singer-b2456118.html", + "pubDate": "Thu, 30 Nov 2023 23:27:42 GMT", + "dc:creator": "Holly Evans,Maanya Sachdeva,Tom Murray and Kevin E G Perry", + "dc:date": "2023-11-30T23:27:42+00:00", + "content": "

His death comes one week after he was discharged from hospital

", + "contentSnippet": "His death comes one week after he was discharged from hospital", + "guid": "b2456118", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-11-30T23:27:42.000Z" + }, + { + "creator": "Tom Krisher", + "date": "2023-11-30T23:26:33+00:00", + "title": "Tesla delivers 13 stainless steel Cybertruck pickups as it tries to work out production problems", + "link": "https://www.independent.co.uk/news/tesla-cybertruck-pickup-elon-musk-b2456522.html", + "pubDate": "Thu, 30 Nov 2023 23:26:33 GMT", + "dc:creator": "Tom Krisher", + "dc:date": "2023-11-30T23:26:33+00:00", + "content": "With manufacturing kinks still to be worked out, Tesla has delivered the first dozen or so of its futuristic Cybertruck pickups to customers", + "contentSnippet": "With manufacturing kinks still to be worked out, Tesla has delivered the first dozen or so of its futuristic Cybertruck pickups to customers", + "guid": "b2456522", + "isoDate": "2023-11-30T23:26:33.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-11-30T23:23:18+00:00", + "title": "Simon Calder delivers verdict on rail disruption this winter", + "link": "https://www.independent.co.uk/tv/news/rail-strikes-news-december-simon-calder-b2456521.html", + "pubDate": "Thu, 30 Nov 2023 23:23:18 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-11-30T23:23:18+00:00", + "content": "

Watch The Independent\u2019s Travel correspondent, Simon Calder, deliver his verdict on the train strikes coming this winter and how they might affect you.

", + "contentSnippet": "Watch The Independent\u2019s Travel correspondent, Simon Calder, deliver his verdict on the train strikes coming this winter and how they might affect you.", + "guid": "b2456521", + "categories": ["News", "Indy TV"], + "isoDate": "2023-11-30T23:23:18.000Z" + }, + { + "creator": "Holly Evans", + "date": "2023-11-30T23:21:15+00:00", + "title": "Omid Scobie refuses to apologise over Endgame \u2018error\u2019 as Dutch translator breaks silence - latest", + "link": "https://www.independent.co.uk/life-style/royal-family/royals-dutch-endgame-omid-scobie-piers-morgan-b2455926.html", + "pubDate": "Thu, 30 Nov 2023 23:21:15 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2023-11-30T23:21:15+00:00", + "content": "

\u2018It\u2019s not for me to apologise,\u2019 says author Omid Scobie

", + "contentSnippet": "\u2018It\u2019s not for me to apologise,\u2019 says author Omid Scobie", + "guid": "b2455926", + "categories": ["Royal Family", "Lifestyle"], + "isoDate": "2023-11-30T23:21:15.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2023-11-30T23:14:42+00:00", + "title": "Unusual \u2018pancake\u2019 ice phenomenon covers lake in Wisconsin as temperatures drop", + "link": "https://www.independent.co.uk/tv/news/weather-wisconsin-ice-lake-pancake-b2456268.html", + "pubDate": "Thu, 30 Nov 2023 23:14:42 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2023-11-30T23:14:42+00:00", + "content": "

Unusual ice \"pancakes\" formed on top of Lake Superior in northern Wisconsin on Tuesday, 28 November, video shows.

", + "contentSnippet": "Unusual ice \"pancakes\" formed on top of Lake Superior in northern Wisconsin on Tuesday, 28 November, video shows.", + "guid": "b2456268", + "categories": ["News", "Indy TV"], + "isoDate": "2023-11-30T23:14:42.000Z" + }, + { + "creator": "Bevan Hurley", + "date": "2023-11-30T23:14:37+00:00", + "title": "Florida GOP chair accused of rape by woman he and wife were reportedly having affair with", + "link": "https://www.the-independent.com/news/world/americas/crime/christian-ziegler-florida-moms-for-liberty-b2456473.html", + "pubDate": "Thu, 30 Nov 2023 23:14:37 GMT", + "dc:creator": "Bevan Hurley", + "dc:date": "2023-11-30T23:14:37+00:00", + "content": "

\u2018As leaders in the Florida GOP and Moms for Liberty, the Zieglers have made a habit out of attacking anything they perceive as going against \u2018family values\u2019,\u2019 Florida Democratic Party chair Nikki Fried says

", + "contentSnippet": "\u2018As leaders in the Florida GOP and Moms for Liberty, the Zieglers have made a habit out of attacking anything they perceive as going against \u2018family values\u2019,\u2019 Florida Democratic Party chair Nikki Fried says", + "guid": "b2456473", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-11-30T23:14:37.000Z" + }, + { + "creator": "John Bowden", + "date": "2023-11-30T23:09:51+00:00", + "title": "Arizona GOP officials charged with refusing to certify 2022 election results", + "link": "https://www.the-independent.com/news/world/americas/us-politics/gop-arizona-election-fraud-charges-b2456516.html", + "pubDate": "Thu, 30 Nov 2023 23:09:51 GMT", + "dc:creator": "John Bowden", + "dc:date": "2023-11-30T23:09:51+00:00", + "content": "

Two Republicans face twin felony counts stemming from 2022 dispute

", + "contentSnippet": "Two Republicans face twin felony counts stemming from 2022 dispute", + "guid": "b2456516", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-11-30T23:09:51.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-11-30T23:08:49+00:00", + "title": "Pro-Palestine students protest at Canada school board meeting forcing trustees to walk out", + "link": "https://www.independent.co.uk/tv/news/propalestine-students-protest-canada-b2456517.html", + "pubDate": "Thu, 30 Nov 2023 23:08:49 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-11-30T23:08:49+00:00", + "content": "

Pro-Palestinian demonstrators broke up a school board meeting in Ontario on Wednesday 29 November.

", + "contentSnippet": "Pro-Palestinian demonstrators broke up a school board meeting in Ontario on Wednesday 29 November.", + "guid": "b2456517", + "categories": ["News", "Indy TV"], + "isoDate": "2023-11-30T23:08:49.000Z" + }, + { + "creator": "Graeme Massie and Michelle Del Rey", + "date": "2023-11-30T23:07:45+00:00", + "title": "Jonathan Majors jury selected in assault trial: Live", + "link": "https://www.independent.co.uk/news/world/americas/jonathan-majors-trial-domestic-violence-meagan-good-b2455966.html", + "pubDate": "Thu, 30 Nov 2023 23:07:45 GMT", + "dc:creator": "Graeme Massie and Michelle Del Rey", + "dc:date": "2023-11-30T23:07:45+00:00", + "content": "

Marvel actor\u2019s girlfriend Meagan Good is standing by him as trial begins

", + "contentSnippet": "Marvel actor\u2019s girlfriend Meagan Good is standing by him as trial begins", + "guid": "b2455966", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T23:07:45.000Z" + }, + { + "creator": "Andrea Blanco and Ariana Baio", + "date": "2023-11-30T23:07:00+00:00", + "title": "Henry Kissinger: A life in pictures", + "link": "https://www.independent.co.uk/news/world/americas/henry-kissinger-death-pictures-life-b2456202.html", + "pubDate": "Thu, 30 Nov 2023 23:07:00 GMT", + "dc:creator": "Andrea Blanco and Ariana Baio", + "dc:date": "2023-11-30T23:07:00+00:00", + "content": "

The death of Kissinger, hailed by many as the architect of American foreign policy, was announced on Wednesday. Andrea Blanco and Ariana Baio report

", + "contentSnippet": "The death of Kissinger, hailed by many as the architect of American foreign policy, was announced on Wednesday. Andrea Blanco and Ariana Baio report", + "guid": "b2456202", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T23:07:00.000Z" + }, + { + "creator": "Isobel Lewis", + "date": "2023-11-30T23:03:37+00:00", + "title": "Sam Thompson admits fears about ADHD and parenthood on I\u2019m a Celebrity", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/sam-thompson-adhd-zara-mcdermott-b2456504.html", + "pubDate": "Thu, 30 Nov 2023 23:03:37 GMT", + "dc:creator": "Isobel Lewis", + "dc:date": "2023-11-30T23:03:37+00:00", + "content": "

\u2018Made in Chelsea\u2019 star was diagnosed with behavioural disorder aged 30

", + "contentSnippet": "\u2018Made in Chelsea\u2019 star was diagnosed with behavioural disorder aged 30", + "guid": "b2456504", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-11-30T23:03:37.000Z" + }, + { + "creator": "Roisin O'Connor", + "date": "2023-11-30T23:03:00+00:00", + "title": "Renaissance: A Film by Beyonc\u00e9: Concert film shows a level of perfectionism beyond any other artist", + "link": "https://www.independent.co.uk/arts-entertainment/music/reviews/beyonce-renaissance-film-review-tour-setlist-b2456225.html", + "pubDate": "Thu, 30 Nov 2023 23:03:00 GMT", + "dc:creator": "Roisin O'Connor", + "dc:date": "2023-11-30T23:03:00+00:00", + "content": "

Everything appears flawless, but the US pop titan offers a behind-the-scenes look at just how much work that takes

", + "contentSnippet": "Everything appears flawless, but the US pop titan offers a behind-the-scenes look at just how much work that takes", + "guid": "b2456225", + "categories": ["Reviews", "Music", "Culture"], + "isoDate": "2023-11-30T23:03:00.000Z" + }, + { + "creator": "Nick Mashiter", + "date": "2023-11-30T23:01:48+00:00", + "title": "Unai Emery eager to top group after Aston Villa reach ECL knockout stages", + "link": "https://www.independent.co.uk/sport/football/aston-villa-legia-warsaw-unai-emery-europa-conference-league-villa-b2456519.html", + "pubDate": "Thu, 30 Nov 2023 23:01:48 GMT", + "dc:creator": "Nick Mashiter", + "dc:date": "2023-11-30T23:01:48+00:00", + "content": "Villa moved top of Group E after victory over Legia Warsaw.", + "contentSnippet": "Villa moved top of Group E after victory over Legia Warsaw.", + "guid": "b2456519", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T23:01:48.000Z" + }, + { + "creator": "Oliver O'Connell and Alex Woodward", + "date": "2023-11-30T23:01:18+00:00", + "title": "Trump hits out at judge\u2019s wife as fraud trial gag order reinstated: Live", + "link": "https://www.independent.co.uk/news/world/americas/donald-trump-news-today-sebastian-stan-latest-b2455990.html", + "pubDate": "Thu, 30 Nov 2023 23:01:18 GMT", + "dc:creator": "Oliver O'Connell and Alex Woodward", + "dc:date": "2023-11-30T23:01:18+00:00", + "content": "

Justice Arthur Engoron and his principal law clerk were subjected to \u2018hundreds of threats\u2019 after former president\u2019s Truth Social posts, now Trump lashes out at judge\u2019s wife

", + "contentSnippet": "Justice Arthur Engoron and his principal law clerk were subjected to \u2018hundreds of threats\u2019 after former president\u2019s Truth Social posts, now Trump lashes out at judge\u2019s wife", + "guid": "b2455990", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T23:01:18.000Z" + }, + { + "creator": "Andy Sims", + "date": "2023-11-30T23:00:13+00:00", + "title": "Tomas Soucek snatches late winner for West Ham in otherwise uneventful clash in Serbia", + "link": "https://www.independent.co.uk/sport/football/west-ham-tomas-soucek-serbia-said-benrahma-david-moyes-b2456424.html", + "pubDate": "Thu, 30 Nov 2023 23:00:13 GMT", + "dc:creator": "Andy Sims", + "dc:date": "2023-11-30T23:00:13+00:00", + "content": "

The Czech midfielder has now scored in his last five matches for club and country

", + "contentSnippet": "The Czech midfielder has now scored in his last five matches for club and country", + "guid": "b2456424", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T23:00:13.000Z" + }, + { + "creator": "Graeme Massie,Maroosha Muzaffar,Rachel Sharp and Ariana Baio", + "date": "2023-11-30T22:59:20+00:00", + "title": "Biden says he \u2018often strongly\u2019 disagreed with Kissinger after diplomat\u2019s death: Latest", + "link": "https://www.independent.co.uk/news/world/americas/henry-kissinger-dead-age-cause-of-death-controversy-b2455941.html", + "pubDate": "Thu, 30 Nov 2023 22:59:20 GMT", + "dc:creator": "Graeme Massie,Maroosha Muzaffar,Rachel Sharp and Ariana Baio", + "dc:date": "2023-11-30T22:59:20+00:00", + "content": "

Henry Kissinger leaves behind a complex legacy, remembered as a master of global politics by some and an alleged war criminal by others

", + "contentSnippet": "Henry Kissinger leaves behind a complex legacy, remembered as a master of global politics by some and an alleged war criminal by others", + "guid": "b2455941", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T22:59:20.000Z" + }, + { + "creator": "Ed Elliot", + "date": "2023-11-30T22:58:24+00:00", + "title": "Joao Pedro penalty sends Brighton through to Europa League knockout stages in unconvincing victory", + "link": "https://www.independent.co.uk/sport/football/brighton-europa-league-var-domagoj-vida-marseille-b2456423.html", + "pubDate": "Thu, 30 Nov 2023 22:58:24 GMT", + "dc:creator": "Ed Elliot", + "dc:date": "2023-11-30T22:58:24+00:00", + "content": "

Pedro netted his fifth goal of the competition to guarantee the Seagulls a top-two finish in Group B

", + "contentSnippet": "Pedro netted his fifth goal of the competition to guarantee the Seagulls a top-two finish in Group B", + "guid": "b2456423", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:58:24.000Z" + }, + { + "creator": "Richard Jolly", + "date": "2023-11-30T22:57:09+00:00", + "title": "Liverpool\u2019s Europa League job is done, but Mohamed Salah remains agonisingly short of a key milestone", + "link": "https://www.independent.co.uk/sport/football/liverpool-mohamed-salah-europa-league-result-b2456482.html", + "pubDate": "Thu, 30 Nov 2023 22:57:09 GMT", + "dc:creator": "Richard Jolly", + "dc:date": "2023-11-30T22:57:09+00:00", + "content": "

Liverpool 4-0 LASK: Mohamed Salah is just one goal away from joining the coveted 200 club at Liverpool

", + "contentSnippet": "Liverpool 4-0 LASK: Mohamed Salah is just one goal away from joining the coveted 200 club at Liverpool", + "guid": "b2456482", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:57:09.000Z" + }, + { + "creator": "Nick Mashiter", + "date": "2023-11-30T22:54:57+00:00", + "title": "Aston Villa progress in Europa Conference League but match overshadowed by fan violence", + "link": "https://www.independent.co.uk/sport/football/aston-villa-legia-warsaw-europa-conference-league-youri-tielemans-villarreal-b2456485.html", + "pubDate": "Thu, 30 Nov 2023 22:54:57 GMT", + "dc:creator": "Nick Mashiter", + "dc:date": "2023-11-30T22:54:57+00:00", + "content": "

Villa moved top of Group E after victory over Legia Warsaw

", + "contentSnippet": "Villa moved top of Group E after victory over Legia Warsaw", + "guid": "b2456485", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:54:57.000Z" + }, + { + "creator": "Alex Woodward", + "date": "2023-11-30T22:54:08+00:00", + "title": "Trump immediately attacks judge\u2019s wife after gag order reinstated in fraud trial", + "link": "https://www.the-independent.com/news/world/americas/us-politics/trump-arthur-engoron-wife-gag-order-b2456499.html", + "pubDate": "Thu, 30 Nov 2023 22:54:08 GMT", + "dc:creator": "Alex Woodward", + "dc:date": "2023-11-30T22:54:08+00:00", + "content": "

A recent court filing warned that credible threats from the former president\u2019s attacks posed an \u2018ongoing security risk\u2019 for the judge, his staff and family

", + "contentSnippet": "A recent court filing warned that credible threats from the former president\u2019s attacks posed an \u2018ongoing security risk\u2019 for the judge, his staff and family", + "guid": "b2456499", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-11-30T22:54:08.000Z" + }, + { + "creator": "Michael Goldberg", + "date": "2023-11-30T22:52:45+00:00", + "title": "Mississippi Supreme Court delays decision on whether to set execution date for man on death row", + "link": "https://www.independent.co.uk/news/ap-jackson-mississippi-attorney-general-fbi-b2456513.html", + "pubDate": "Thu, 30 Nov 2023 22:52:45 GMT", + "dc:creator": "Michael Goldberg", + "dc:date": "2023-11-30T22:52:45+00:00", + "content": "The Mississippi Supreme Court has temporarily delayed ruling on whether to set an execution date for a man on death row for capital murder", + "contentSnippet": "The Mississippi Supreme Court has temporarily delayed ruling on whether to set an execution date for a man on death row for capital murder", + "guid": "b2456513", + "isoDate": "2023-11-30T22:52:45.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2023-11-30T22:50:57+00:00", + "title": "Liverpool, Brighton and West Ham all secure place in the Europa League knockout stages", + "link": "https://www.independent.co.uk/sport/football/liverpool-brighton-west-ham-europa-league-b2456508.html", + "pubDate": "Thu, 30 Nov 2023 22:50:57 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2023-11-30T22:50:57+00:00", + "content": "

Brighton, West Ham and Liverpool all qualified from their Europa League groups

", + "contentSnippet": "Brighton, West Ham and Liverpool all qualified from their Europa League groups", + "guid": "b2456508", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:50:57.000Z" + }, + { + "creator": "Jonel Aleccia", + "date": "2023-11-30T22:50:53+00:00", + "title": "Don't eat pre-cut cantaloupe if the source is unknown, CDC says, as deadly salmonella outbreak grows", + "link": "https://www.independent.co.uk/news/consumers-ap-cdc-trader-joes-canada-b2456512.html", + "pubDate": "Thu, 30 Nov 2023 22:50:53 GMT", + "dc:creator": "Jonel Aleccia", + "dc:date": "2023-11-30T22:50:53+00:00", + "content": "U.S. health officials say consumers should not eat pre-cut cantaloupe if they don\u2019t know the source", + "contentSnippet": "U.S. health officials say consumers should not eat pre-cut cantaloupe if they don\u2019t know the source", + "guid": "b2456512", + "isoDate": "2023-11-30T22:50:53.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-11-30T22:50:17+00:00", + "title": "Cop28 president and oil executive opens climate conference", + "link": "https://www.independent.co.uk/tv/news/cop28-sultan-al-jaber-climate-action-b2456429.html", + "pubDate": "Thu, 30 Nov 2023 22:50:17 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-11-30T22:50:17+00:00", + "content": "

Sultan al-Jaber, CEO of one of the world\u2019s largest oil companies and Cop28 president, opened the climate conference in the United Arab Emirates on Thursday, 30 November.

", + "contentSnippet": "Sultan al-Jaber, CEO of one of the world\u2019s largest oil companies and Cop28 president, opened the climate conference in the United Arab Emirates on Thursday, 30 November.", + "guid": "b2456429", + "categories": ["News", "Indy TV"], + "isoDate": "2023-11-30T22:50:17.000Z" + }, + { + "creator": "Roisin O'Connor,Nicole Vassell and Inga Parkel", + "date": "2023-11-30T22:49:36+00:00", + "title": "Beyonc\u00e9\u2019s Renaissance \u2013 live: Inside the London premiere of her record-breaking world tour", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/beyonce-renaissance-london-live-red-carpet-b2456107.html", + "pubDate": "Thu, 30 Nov 2023 22:49:36 GMT", + "dc:creator": "Roisin O'Connor,Nicole Vassell and Inga Parkel", + "dc:date": "2023-11-30T22:49:36+00:00", + "content": "

US star premiered the concert film about her record-breaking 2023 tour

", + "contentSnippet": "US star premiered the concert film about her record-breaking 2023 tour", + "guid": "b2456107", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-11-30T22:49:36.000Z" + }, + { + "creator": "Andrea Cavallier", + "date": "2023-11-30T22:48:55+00:00", + "title": "Lori Vallow seen in new mug shot after \u2018very chatty\u2019 extradition trip to Arizona", + "link": "https://www.the-independent.com/news/world/americas/crime/lori-vallow-mugshot-murder-trial-b2456259.html", + "pubDate": "Thu, 30 Nov 2023 22:48:55 GMT", + "dc:creator": "Andrea Cavallier", + "dc:date": "2023-11-30T22:48:55+00:00", + "content": "

Lori faces charges of conspiring to kill her fourth husband Charles Vallow in Arizona

", + "contentSnippet": "Lori faces charges of conspiring to kill her fourth husband Charles Vallow in Arizona", + "guid": "b2456259", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-11-30T22:48:55.000Z" + }, + { + "creator": "Graeme Massie", + "date": "2023-11-30T22:43:04+00:00", + "title": "Social justice charity founder killed in LA home invasion", + "link": "https://www.the-independent.com/news/world/americas/crime/latt-home-invasion-shooting-death-b2456389.html", + "pubDate": "Thu, 30 Nov 2023 22:43:04 GMT", + "dc:creator": "Graeme Massie", + "dc:date": "2023-11-30T22:43:04+00:00", + "content": "

Prosecutors say Michael Latt targetted because he was friend of woman allegedly stalked by suspect

", + "contentSnippet": "Prosecutors say Michael Latt targetted because he was friend of woman allegedly stalked by suspect", + "guid": "b2456389", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-11-30T22:43:04.000Z" + }, + { + "creator": "Patrick Daly", + "date": "2023-11-30T22:40:32+00:00", + "title": "A Labour government would consider new powers to prevent \u2018banking deserts\u2019", + "link": "https://www.independent.co.uk/money/a-labour-government-would-consider-new-powers-to-prevent-banking-deserts-b2456498.html", + "pubDate": "Thu, 30 Nov 2023 22:40:32 GMT", + "dc:creator": "Patrick Daly", + "dc:date": "2023-11-30T22:40:32+00:00", + "content": "Shadow chancellor Rachel Reeves said her party wants to ensure \u2018every community has access to high street banking services\u2019.", + "contentSnippet": "Shadow chancellor Rachel Reeves said her party wants to ensure \u2018every community has access to high street banking services\u2019.", + "guid": "b2456498", + "categories": ["Money"], + "isoDate": "2023-11-30T22:40:32.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-11-30T22:33:49+00:00", + "title": "White lion cubs born in Venezuela with less than 200 left in the world", + "link": "https://www.independent.co.uk/tv/news/white-lion-cubs-venezuela-b2456480.html", + "pubDate": "Thu, 30 Nov 2023 22:33:49 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-11-30T22:33:49+00:00", + "content": "

Three white lion cubs were born in Venezuela on Wednesday 29 November.

", + "contentSnippet": "Three white lion cubs were born in Venezuela on Wednesday 29 November.", + "guid": "b2456480", + "categories": ["News", "Indy TV"], + "isoDate": "2023-11-30T22:33:49.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2023-11-30T22:32:08+00:00", + "title": "College football player dies after collapsing during team weights session", + "link": "https://www.independent.co.uk/news/world/americas/reed-ryan-college-football-cardiac-arrest-b2456459.html", + "pubDate": "Thu, 30 Nov 2023 22:32:08 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2023-11-30T22:32:08+00:00", + "content": "

A college football player has died at the age of 22, a week after suffering a cardiac arrest during a team weights session.

", + "contentSnippet": "A college football player has died at the age of 22, a week after suffering a cardiac arrest during a team weights session.", + "guid": "b2456459", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T22:32:08.000Z" + }, + { + "creator": "Larry Neumeister", + "date": "2023-11-30T22:30:17+00:00", + "title": "US prosecutors say plots to assassinate Sikh leaders were part of a campaign of planned killings", + "link": "https://www.independent.co.uk/news/ap-hardeep-singh-nijjar-india-sikh-new-york-b2456505.html", + "pubDate": "Thu, 30 Nov 2023 22:30:17 GMT", + "dc:creator": "Larry Neumeister", + "dc:date": "2023-11-30T22:30:17+00:00", + "content": "Law enforcement authorities say in court papers that the plot driven by a government official in India to assassinate a prominent Sikh separatist leader in New York City was meant to precede another killing in California and more assassinations in the U.S. and Canada", + "contentSnippet": "Law enforcement authorities say in court papers that the plot driven by a government official in India to assassinate a prominent Sikh separatist leader in New York City was meant to precede another killing in California and more assassinations in the U.S. and Canada", + "guid": "b2456505", + "isoDate": "2023-11-30T22:30:17.000Z" + }, + { + "creator": "David Hughes", + "date": "2023-11-30T22:30:00+00:00", + "title": "Starmer: Transition to net zero can \u2018turbo-charge growth\u2019", + "link": "https://www.independent.co.uk/business/starmer-transition-to-net-zero-can-turbocharge-growth-b2456497.html", + "pubDate": "Thu, 30 Nov 2023 22:30:00 GMT", + "dc:creator": "David Hughes", + "dc:date": "2023-11-30T22:30:00+00:00", + "content": "Labour leader Sir Keir Starmer is in Dubai for the Cop28 climate summit.", + "contentSnippet": "Labour leader Sir Keir Starmer is in Dubai for the Cop28 climate summit.", + "guid": "b2456497", + "categories": ["Business"], + "isoDate": "2023-11-30T22:30:00.000Z" + }, + { + "creator": "Wayne Parry", + "date": "2023-11-30T22:27:23+00:00", + "title": "Casino workers seethe as smoking ban bill is delayed yet again in New Jersey Legislature", + "link": "https://www.independent.co.uk/news/world/americas/atlantic-city-ap-trenton-phil-murphy-democratic-b2456502.html", + "pubDate": "Thu, 30 Nov 2023 22:27:23 GMT", + "dc:creator": "Wayne Parry", + "dc:date": "2023-11-30T22:27:23+00:00", + "content": "A bill that would end smoking in Atlantic City's casinos continues to go nowhere", + "contentSnippet": "A bill that would end smoking in Atlantic City's casinos continues to go nowhere", + "guid": "b2456502", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T22:27:23.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-11-30T22:26:37+00:00", + "title": "Mom convicted of killing kids in Idaho taken to Arizona in murder conspiracy case", + "link": "https://www.independent.co.uk/news/ap-arizona-idaho-chad-daybell-phoenix-b2456501.html", + "pubDate": "Thu, 30 Nov 2023 22:26:37 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-11-30T22:26:37+00:00", + "content": "A woman is in an Arizona jail facing charges in a killing after she was sentenced to life in an Idaho prison for murdering her two youngest children and another woman", + "contentSnippet": "A woman is in an Arizona jail facing charges in a killing after she was sentenced to life in an Idaho prison for murdering her two youngest children and another woman", + "guid": "b2456501", + "isoDate": "2023-11-30T22:26:37.000Z" + }, + { + "creator": "Scott Bauer", + "date": "2023-11-30T22:23:47+00:00", + "title": "Unions in Wisconsin sue to reverse collective bargaining restrictions on teachers, others", + "link": "https://www.independent.co.uk/news/wisconsin-ap-scott-walker-unions-republican-b2456494.html", + "pubDate": "Thu, 30 Nov 2023 22:23:47 GMT", + "dc:creator": "Scott Bauer", + "dc:date": "2023-11-30T22:23:47+00:00", + "content": "Seven unions representing teachers and other public workers in Wisconsin have filed a lawsuit attempting to end the state\u2019s near-total ban on collective bargaining for most public employees", + "contentSnippet": "Seven unions representing teachers and other public workers in Wisconsin have filed a lawsuit attempting to end the state\u2019s near-total ban on collective bargaining for most public employees", + "guid": "b2456494", + "isoDate": "2023-11-30T22:23:47.000Z" + }, + { + "creator": "Freida Frisaro and David Fischer", + "date": "2023-11-30T22:20:13+00:00", + "title": "Hurricane season that saw storms from California to Nova Scotia ends Thursday", + "link": "https://www.independent.co.uk/news/ap-southern-california-nova-scotia-fort-lauderdale-national-hurricane-center-b2456496.html", + "pubDate": "Thu, 30 Nov 2023 22:20:13 GMT", + "dc:creator": "Freida Frisaro and David Fischer", + "dc:date": "2023-11-30T22:20:13+00:00", + "content": "A busy Atlantic hurricane season is now coming to a close", + "contentSnippet": "A busy Atlantic hurricane season is now coming to a close", + "guid": "b2456496", + "isoDate": "2023-11-30T22:20:13.000Z" + }, + { + "creator": "Mead Gruver", + "date": "2023-11-30T22:20:07+00:00", + "title": "Family of Marine killed in Afghanistan fails to win lawsuit against Alec Baldwin", + "link": "https://www.independent.co.uk/news/ap-alec-baldwin-family-wyo-afghanistan-b2456495.html", + "pubDate": "Thu, 30 Nov 2023 22:20:07 GMT", + "dc:creator": "Mead Gruver", + "dc:date": "2023-11-30T22:20:07+00:00", + "content": "A lawsuit against Alec Baldwin filed by relatives of a U.S. Marine killed in Afghanistan has been resolved in the actor's favor", + "contentSnippet": "A lawsuit against Alec Baldwin filed by relatives of a U.S. Marine killed in Afghanistan has been resolved in the actor's favor", + "guid": "b2456495", + "isoDate": "2023-11-30T22:20:07.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2023-11-30T22:20:07+00:00", + "title": "Tiger Woods admits Hero World Challenge comeback comes at a cost", + "link": "https://www.independent.co.uk/sport/golf/tiger-woods-hero-world-challenge-golf-return-b2456490.html", + "pubDate": "Thu, 30 Nov 2023 22:20:07 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2023-11-30T22:20:07+00:00", + "content": "

", + "contentSnippet": "", + "guid": "b2456490", + "categories": ["Golf", "Sport"], + "isoDate": "2023-11-30T22:20:07.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-11-30T22:18:08+00:00", + "title": "Sen. Rand Paul performed Heimlich maneuver on choking Sen. Joni Ernst during GOP lunch", + "link": "https://www.independent.co.uk/news/joni-ernst-ap-rand-paul-washington-gop-b2456492.html", + "pubDate": "Thu, 30 Nov 2023 22:18:08 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-11-30T22:18:08+00:00", + "content": "Sen. Joni Ernst, a Republican from Iowa, was choking on food during a luncheon when fellow Republican Sen. Rand Paul of Kentucky performed the Heimlich maneuver on her", + "contentSnippet": "Sen. Joni Ernst, a Republican from Iowa, was choking on food during a luncheon when fellow Republican Sen. Rand Paul of Kentucky performed the Heimlich maneuver on her", + "guid": "b2456492", + "isoDate": "2023-11-30T22:18:08.000Z" + }, + { + "creator": "Maryam Zakir-Hussain", + "date": "2023-11-30T22:14:27+00:00", + "title": "Dutch translator of Omid Scobie\u2019s Endgame denies making error: \u2018The names were there in black and white\u2019", + "link": "https://www.independent.co.uk/news/uk/home-news/endgame-royal-racism-row-dutch-translator-b2456475.html", + "pubDate": "Thu, 30 Nov 2023 22:14:27 GMT", + "dc:creator": "Maryam Zakir-Hussain", + "dc:date": "2023-11-30T22:14:27+00:00", + "content": "

Royal author Omid Scobie insists he never submitted a book with names in it as Endgame fallout continues

", + "contentSnippet": "Royal author Omid Scobie insists he never submitted a book with names in it as Endgame fallout continues", + "guid": "b2456475", + "categories": ["Home News", "UK"], + "isoDate": "2023-11-30T22:14:27.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-11-30T22:13:34+00:00", + "title": "I\u2019m A Celeb: Sam Thompson opens up about ADHD diagnosis", + "link": "https://www.independent.co.uk/tv/lifestyle/adhd-sam-thompson-diagnosis-b2456478.html", + "pubDate": "Thu, 30 Nov 2023 22:13:34 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-11-30T22:13:34+00:00", + "content": "

I\u2019m a Celebrity\u2019s Sam Thompson opened up on being diagnosed with ADHD as an adult and how it\u2019s affected him.

", + "contentSnippet": "I\u2019m a Celebrity\u2019s Sam Thompson opened up on being diagnosed with ADHD as an adult and how it\u2019s affected him.", + "guid": "b2456478", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2023-11-30T22:13:34.000Z" + }, + { + "creator": "Carl Markham", + "date": "2023-11-30T22:11:29+00:00", + "title": "Mohamed Salah closes in on 200 club as Liverpool confirm top spot", + "link": "https://www.independent.co.uk/sport/football/mohamed-salah-liverpool-jurgen-klopp-luis-diaz-joe-gomez-b2456484.html", + "pubDate": "Thu, 30 Nov 2023 22:11:29 GMT", + "dc:creator": "Carl Markham", + "dc:date": "2023-11-30T22:11:29+00:00", + "content": "The Reds eased to a 4-0 Europa League victory against LASK at Anfield.", + "contentSnippet": "The Reds eased to a 4-0 Europa League victory against LASK at Anfield.", + "guid": "b2456484", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:11:29.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-11-30T22:10:08+00:00", + "title": "Facebook parent Meta sues the FTC claiming 'unconstitutional authority' in child privacy case", + "link": "https://www.independent.co.uk/news/meta-ap-ftc-facebook-menlo-park-b2456489.html", + "pubDate": "Thu, 30 Nov 2023 22:10:08 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-11-30T22:10:08+00:00", + "content": "The parent company of Instagram and Facebook has sued the Federal Trade Commission in an attempt to stop the agency from reopening a 2020 privacy settlement with the company that would prohibit it from profiting from data it collects on users under 18", + "contentSnippet": "The parent company of Instagram and Facebook has sued the Federal Trade Commission in an attempt to stop the agency from reopening a 2020 privacy settlement with the company that would prohibit it from profiting from data it collects on users under 18", + "guid": "b2456489", + "isoDate": "2023-11-30T22:10:08.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-11-30T22:06:03+00:00", + "title": "Taylor Swift attends Beyonce\u2019s \u2018Renaissance\u2019 World Tour film premiere in London", + "link": "https://www.independent.co.uk/tv/culture/taylor-swift-beyonce-renaissance-b2456483.html", + "pubDate": "Thu, 30 Nov 2023 22:06:03 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-11-30T22:06:03+00:00", + "content": "

Taylor Swift attended Beyonce\u2019s \u2018Renaissance\u2019 World Tour film premiere in London on Thursday 30 November.

", + "contentSnippet": "Taylor Swift attended Beyonce\u2019s \u2018Renaissance\u2019 World Tour film premiere in London on Thursday 30 November.", + "guid": "b2456483", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-11-30T22:06:03.000Z" + }, + { + "creator": "Gustaf Kilander", + "date": "2023-11-30T22:04:30+00:00", + "title": "George Santos decries \u2018bullying\u2019 ahead of expulsion vote: Latest", + "link": "https://www.independent.co.uk/news/world/americas/george-santos-news-vote-expulsion-latest-b2455996.html", + "pubDate": "Thu, 30 Nov 2023 22:04:30 GMT", + "dc:creator": "Gustaf Kilander", + "dc:date": "2023-11-30T22:04:30+00:00", + "content": "

Republicans unlikely to back Democratic resolution to oust 35-year-old, instead looking to GOP Ethics panel chair to take action

", + "contentSnippet": "Republicans unlikely to back Democratic resolution to oust 35-year-old, instead looking to GOP Ethics panel chair to take action", + "guid": "b2455996", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T22:04:30.000Z" + }, + { + "creator": "Graig Graziosi", + "date": "2023-11-30T22:02:13+00:00", + "title": "McCarthy says Gaetz \u2018belongs in jail\u2019 in latest spat between Republican enemies", + "link": "https://www.the-independent.com/news/world/americas/us-politics/kevin-mccarthy-matt-gaetz-jail-republicans-b2456469.html", + "pubDate": "Thu, 30 Nov 2023 22:02:13 GMT", + "dc:creator": "Graig Graziosi", + "dc:date": "2023-11-30T22:02:13+00:00", + "content": "

Mr McCarthy may be considering resigning from Congress, according to a recent report

", + "contentSnippet": "Mr McCarthy may be considering resigning from Congress, according to a recent report", + "guid": "b2456469", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-11-30T22:02:13.000Z" + }, + { + "creator": "Amber Raiken", + "date": "2023-11-30T22:01:29+00:00", + "title": "Beyonc\u00e9 honours late uncle with release of Renaissance film on Aids Day", + "link": "https://www.independent.co.uk/life-style/beyonce-renaissance-film-aids-day-b2456365.html", + "pubDate": "Thu, 30 Nov 2023 22:01:29 GMT", + "dc:creator": "Amber Raiken", + "dc:date": "2023-11-30T22:01:29+00:00", + "content": "

Concert film is hitting theatres on 1 December

", + "contentSnippet": "Concert film is hitting theatres on 1 December", + "guid": "b2456365", + "categories": ["Lifestyle"], + "isoDate": "2023-11-30T22:01:29.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-11-30T21:58:59+00:00", + "title": "Cockpit voice recordings get erased after some close calls. The FAA will try to fix that", + "link": "https://www.independent.co.uk/news/faa-ap-washington-american-airlines-delta-air-lines-b2456481.html", + "pubDate": "Thu, 30 Nov 2023 21:58:59 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-11-30T21:58:59+00:00", + "content": "Federal officials say they will give investigators a better tool for understanding accidents and close calls between planes", + "contentSnippet": "Federal officials say they will give investigators a better tool for understanding accidents and close calls between planes", + "guid": "b2456481", + "isoDate": "2023-11-30T21:58:59.000Z" + }, + { + "creator": "Sheila Flynn", + "date": "2023-11-30T21:57:32+00:00", + "title": "Taylor Swift\u2019s biggest fans: Meet the Swifties in Spotify\u2019s top .001% of listeners", + "link": "https://www.independent.co.uk/news/world/americas/taylor-swift-spotify-wrapped-travis-kelce-b2456368.html", + "pubDate": "Thu, 30 Nov 2023 21:57:32 GMT", + "dc:creator": "Sheila Flynn", + "dc:date": "2023-11-30T21:57:32+00:00", + "content": "

The top tier of listeners of the top-streamed artist spent more than two-thirds of the year streaming Taylor Swift on Spotify, reports Sheila Flynn

", + "contentSnippet": "The top tier of listeners of the top-streamed artist spent more than two-thirds of the year streaming Taylor Swift on Spotify, reports Sheila Flynn", + "guid": "b2456368", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T21:57:32.000Z" + }, + { + "creator": "Jane Dalton", + "date": "2023-11-30T21:55:49+00:00", + "title": "UK weather \u2013 live: Temperatures plunge below zero as big freeze set to bring snow and ice", + "link": "https://www.independent.co.uk/weather/snow-forecast-uk-weather-met-office-b2455964.html", + "pubDate": "Thu, 30 Nov 2023 21:55:49 GMT", + "dc:creator": "Jane Dalton", + "dc:date": "2023-11-30T21:55:49+00:00", + "content": "

Severe weather warnings in place as rough sleepers offered emergency beds

", + "contentSnippet": "Severe weather warnings in place as rough sleepers offered emergency beds", + "guid": "b2455964", + "categories": ["Weather"], + "isoDate": "2023-11-30T21:55:49.000Z" + }, + { + "creator": "Anthony Cuthbertson", + "date": "2023-11-30T21:46:32+00:00", + "title": "Google issues final warning to Gmail account holders", + "link": "https://www.independent.co.uk/tech/gmail-account-warning-google-deadline-b2452371.html", + "pubDate": "Thu, 30 Nov 2023 21:46:32 GMT", + "dc:creator": "Anthony Cuthbertson", + "dc:date": "2023-11-30T21:46:32+00:00", + "content": "

Users warned that documents, emails and photos are all at risk of mass purge

", + "contentSnippet": "Users warned that documents, emails and photos are all at risk of mass purge", + "guid": "b2452371", + "categories": ["Tech"], + "isoDate": "2023-11-30T21:46:32.000Z" + }, + { + "creator": "Gabriela Selser", + "date": "2023-11-30T21:44:59+00:00", + "title": "A new study says about half of Nicaragua's population wants to emigrate", + "link": "https://www.independent.co.uk/news/ap-daniel-ortega-nicaragua-mexico-city-americas-b2456479.html", + "pubDate": "Thu, 30 Nov 2023 21:44:59 GMT", + "dc:creator": "Gabriela Selser", + "dc:date": "2023-11-30T21:44:59+00:00", + "content": "A new study says that about half of Nicaragua's population of 6.2 million want to leave their homeland because of a mix of economic decline and repression from President Daniel Ortega's government", + "contentSnippet": "A new study says that about half of Nicaragua's population of 6.2 million want to leave their homeland because of a mix of economic decline and repression from President Daniel Ortega's government", + "guid": "b2456479", + "isoDate": "2023-11-30T21:44:59.000Z" + }, + { + "creator": "Olivia Hebert", + "date": "2023-11-30T21:40:59+00:00", + "title": "Kelly Clarkson\u2019s ex-husband Brandon Blackstock must pay her after overcharging her as manager", + "link": "https://www.independent.co.uk/life-style/kelly-clarkson-ex-husband-manager-brandon-blackstock-b2456353.html", + "pubDate": "Thu, 30 Nov 2023 21:40:59 GMT", + "dc:creator": "Olivia Hebert", + "dc:date": "2023-11-30T21:40:59+00:00", + "content": "

Singer\u2019s ex-husband and former manager has been ordered to return more than $2m to her

", + "contentSnippet": "Singer\u2019s ex-husband and former manager has been ordered to return more than $2m to her", + "guid": "b2456353", + "categories": ["Lifestyle"], + "isoDate": "2023-11-30T21:40:59.000Z" + }, + { + "creator": "Tom Bennett", + "date": "2023-11-30T21:39:49+00:00", + "title": "More Hamas hostages released from inside Gaza \u2013 with Palestinians in Israeli prisons also set to be freed", + "link": "https://www.independent.co.uk/news/world/middle-east/israel-hamas-hostages-gaza-jerusalem-b2456386.html", + "pubDate": "Thu, 30 Nov 2023 21:39:49 GMT", + "dc:creator": "Tom Bennett", + "dc:date": "2023-11-30T21:39:49+00:00", + "content": "

Latest exchange comes after shooting in Jerusalem \u2013 claimed by Hamas \u2013 that killed three. One of those wounded says he feels \u2018lucky\u2019 to be alive

", + "contentSnippet": "Latest exchange comes after shooting in Jerusalem \u2013 claimed by Hamas \u2013 that killed three. One of those wounded says he feels \u2018lucky\u2019 to be alive", + "guid": "b2456386", + "categories": ["Middle East", "World"], + "isoDate": "2023-11-30T21:39:49.000Z" + }, + { + "creator": "Ed Elliot", + "date": "2023-11-30T21:39:10+00:00", + "title": "You\u2019ve got to dream big: Lewis Dunk eyes Europa League glory with Brighton", + "link": "https://www.independent.co.uk/sport/football/lewis-dunk-europa-league-marseille-greek-league-one-b2456476.html", + "pubDate": "Thu, 30 Nov 2023 21:39:10 GMT", + "dc:creator": "Ed Elliot", + "dc:date": "2023-11-30T21:39:10+00:00", + "content": "Albion have guaranteed a top-two finish in Group B with a game to spare.", + "contentSnippet": "Albion have guaranteed a top-two finish in Group B with a game to spare.", + "guid": "b2456476", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T21:39:10.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-11-30T21:38:05+00:00", + "title": "Police injured by Legia Warsaw fans ahead of game at Aston Villa", + "link": "https://www.independent.co.uk/tv/sport/aston-villa-legia-warsaw-fans-police-b2456472.html", + "pubDate": "Thu, 30 Nov 2023 21:38:05 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-11-30T21:38:05+00:00", + "content": "

Three police officers have reportedly been injured outside Villa Park after missiles were thrown at them by Legia Warsaw fans on Thursday 30 November.

", + "contentSnippet": "Three police officers have reportedly been injured outside Villa Park after missiles were thrown at them by Legia Warsaw fans on Thursday 30 November.", + "guid": "b2456472", + "categories": ["Sport", "Indy TV"], + "isoDate": "2023-11-30T21:38:05.000Z" + }, + { + "creator": "Darlene Superville", + "date": "2023-11-30T21:36:42+00:00", + "title": "Biden gets a chance to bring holiday spirit to Washington by lighting the National Christmas Tree", + "link": "https://www.independent.co.uk/news/joe-biden-ap-washington-kamala-harris-doug-emhoff-b2456477.html", + "pubDate": "Thu, 30 Nov 2023 21:36:42 GMT", + "dc:creator": "Darlene Superville", + "dc:date": "2023-11-30T21:36:42+00:00", + "content": "President Joe Biden is getting a turn at bringing the holiday spirit to Washington", + "contentSnippet": "President Joe Biden is getting a turn at bringing the holiday spirit to Washington", + "guid": "b2456477", + "isoDate": "2023-11-30T21:36:42.000Z" + }, + { + "creator": "Rachel Sharp and Ariana Baio", + "date": "2023-11-30T21:33:02+00:00", + "title": "As controversial in death as in life: Tributes pour in for Henry Kissinger", + "link": "https://www.independent.co.uk/news/world/americas/henry-kissinger-controversy-tributes-b2456258.html", + "pubDate": "Thu, 30 Nov 2023 21:33:02 GMT", + "dc:creator": "Rachel Sharp and Ariana Baio", + "dc:date": "2023-11-30T21:33:02+00:00", + "content": "

Tributes and statements have begun pouring in for the influential US diplomat after he died aged 100 at his Connecticut home on Wednesday

", + "contentSnippet": "Tributes and statements have begun pouring in for the influential US diplomat after he died aged 100 at his Connecticut home on Wednesday", + "guid": "b2456258", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T21:33:02.000Z" + }, + { + "creator": "Olivia Hebert", + "date": "2023-11-30T21:21:10+00:00", + "title": "Taylor Swift stuns at Beyonc\u00e9\u2019s Renaissance film premiere in London", + "link": "https://www.independent.co.uk/life-style/renaissance-film-beyonce-taylor-swift-b2456411.html", + "pubDate": "Thu, 30 Nov 2023 21:21:10 GMT", + "dc:creator": "Olivia Hebert", + "dc:date": "2023-11-30T21:21:10+00:00", + "content": "

\u2018Anti-Hero\u2019 singer showed up to support Beyonc\u00e9\u2019 for her London film premiere

", + "contentSnippet": "\u2018Anti-Hero\u2019 singer showed up to support Beyonc\u00e9\u2019 for her London film premiere", + "guid": "b2456411", + "categories": ["Lifestyle"], + "isoDate": "2023-11-30T21:21:10.000Z" + }, + { + "creator": "Jim Salter", + "date": "2023-11-30T21:16:36+00:00", + "title": "Missouri prosecutor accuses 3 men of holding student from India captive and beating him", + "link": "https://www.independent.co.uk/news/ap-india-missouri-charles-b2456471.html", + "pubDate": "Thu, 30 Nov 2023 21:16:36 GMT", + "dc:creator": "Jim Salter", + "dc:date": "2023-11-30T21:16:36+00:00", + "content": "A Missouri prosecutor says three men held a student from India captive over the course of several months and forced him to work and perform menial tasks, then viciously beat him when he didn\u2019t complete the chores to their satisfaction", + "contentSnippet": "A Missouri prosecutor says three men held a student from India captive over the course of several months and forced him to work and perform menial tasks, then viciously beat him when he didn\u2019t complete the chores to their satisfaction", + "guid": "b2456471", + "isoDate": "2023-11-30T21:16:36.000Z" + }, + { + "creator": "John Bowden", + "date": "2023-11-30T21:10:35+00:00", + "title": "McCarthy claims he swore at Trump in tense phone call, report says", + "link": "https://www.the-independent.com/news/world/americas/us-politics/mccarthy-trump-gaetz-gop-congress-b2456449.html", + "pubDate": "Thu, 30 Nov 2023 21:10:35 GMT", + "dc:creator": "John Bowden", + "dc:date": "2023-11-30T21:10:35+00:00", + "content": "

Ex-speaker has sought vengeance against political enemies following his ouster

", + "contentSnippet": "Ex-speaker has sought vengeance against political enemies following his ouster", + "guid": "b2456449", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-11-30T21:10:35.000Z" + }, + { + "creator": "Roisin O'Connor", + "date": "2023-11-30T21:02:54+00:00", + "title": "Shane MacGowan, shy and complex genius behind The Pogues, dies aged 65", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/shane-macgowan-death-age-pogues-news-b2456165.html", + "pubDate": "Thu, 30 Nov 2023 21:02:54 GMT", + "dc:creator": "Roisin O'Connor", + "dc:date": "2023-11-30T21:02:54+00:00", + "content": "

Musician had just returned home to be with his wife, Victoria Mary Clarke, after a lengthy stay in hospital

", + "contentSnippet": "Musician had just returned home to be with his wife, Victoria Mary Clarke, after a lengthy stay in hospital", + "guid": "b2456165", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-11-30T21:02:54.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-11-30T20:52:38+00:00", + "title": "Influential Detroit pastor the Rev. Charles Gilchrist Adams dies at age 86", + "link": "https://www.independent.co.uk/news/ap-detroit-mike-duggan-harvard-university-boston-b2456464.html", + "pubDate": "Thu, 30 Nov 2023 20:52:38 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-11-30T20:52:38+00:00", + "content": "Influential longtime Detroit pastor the Rev. Charles Gilchrist Adams has died following an illness", + "contentSnippet": "Influential longtime Detroit pastor the Rev. Charles Gilchrist Adams has died following an illness", + "guid": "b2456464", + "isoDate": "2023-11-30T20:52:38.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-11-30T20:49:16+00:00", + "title": "Ferry operators around the country to receive $200M in federal grants to modernize fleets", + "link": "https://www.independent.co.uk/news/ap-san-francisco-biden-new-york-maine-b2456462.html", + "pubDate": "Thu, 30 Nov 2023 20:49:16 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-11-30T20:49:16+00:00", + "content": "The Biden administration will issue $200 million in grants to modernize the country\u2019s ferry systems", + "contentSnippet": "The Biden administration will issue $200 million in grants to modernize the country\u2019s ferry systems", + "guid": "b2456462", + "isoDate": "2023-11-30T20:49:16.000Z" + }, + { + "creator": "Bevan Hurley", + "date": "2023-11-30T20:48:06+00:00", + "title": "From Cambodia to Bangladesh: a brief history of Henry Kissinger\u2019s alleged war crimes", + "link": "https://www.independent.co.uk/news/world/americas/henry-kissinger-war-crimes-cambodia-b2456372.html", + "pubDate": "Thu, 30 Nov 2023 20:48:06 GMT", + "dc:creator": "Bevan Hurley", + "dc:date": "2023-11-30T20:48:06+00:00", + "content": "

Henry Kissinger sided with military dictators and genocidal regimes in his pursuit of projecting US power during the Cold War, resulting in the deaths of millions of innocents, Bevan Hurley reports

", + "contentSnippet": "Henry Kissinger sided with military dictators and genocidal regimes in his pursuit of projecting US power during the Cold War, resulting in the deaths of millions of innocents, Bevan Hurley reports", + "guid": "b2456372", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T20:48:06.000Z" + }, + { + "creator": "Graig Graziosi", + "date": "2023-11-30T20:46:42+00:00", + "title": "GOP lawmaker makes not-so-veiled threat against Jack Smith", + "link": "https://www.the-independent.com/news/world/americas/us-politics/clay-higgins-jack-smith-days-are-numbered-threat-b2456401.html", + "pubDate": "Thu, 30 Nov 2023 20:46:42 GMT", + "dc:creator": "Graig Graziosi", + "dc:date": "2023-11-30T20:46:42+00:00", + "content": "

Mr Higgins previously threatened FBI Director Chris Wray, telling him \u2018your day is coming\u2019

", + "contentSnippet": "Mr Higgins previously threatened FBI Director Chris Wray, telling him \u2018your day is coming\u2019", + "guid": "b2456401", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-11-30T20:46:42.000Z" + }, + { + "creator": "Inga Parkel", + "date": "2023-11-30T20:44:28+00:00", + "title": "Squid Game: The Challenge contestants had to use lubricated condoms as chapstick", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/squid-game-the-challenge-condoms-b2456426.html", + "pubDate": "Thu, 30 Nov 2023 20:44:28 GMT", + "dc:creator": "Inga Parkel", + "dc:date": "2023-11-30T20:44:28+00:00", + "content": "

Player 301 said that \u2018within a day, maybe a day and a half, all the condoms were gone\u2019

", + "contentSnippet": "Player 301 said that \u2018within a day, maybe a day and a half, all the condoms were gone\u2019", + "guid": "b2456426", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-11-30T20:44:28.000Z" + }, + { + "creator": "Andy Sims", + "date": "2023-11-30T20:43:53+00:00", + "title": "David Moyes urges West Ham to finish the job and top Group A", + "link": "https://www.independent.co.uk/sport/football/tomas-soucek-david-moyes-europa-league-west-ham-freiburg-b2456460.html", + "pubDate": "Thu, 30 Nov 2023 20:43:53 GMT", + "dc:creator": "Andy Sims", + "dc:date": "2023-11-30T20:43:53+00:00", + "content": "The Hammers need to avoid defeat to Freiburg at the London Stadium in a fortnight.", + "contentSnippet": "The Hammers need to avoid defeat to Freiburg at the London Stadium in a fortnight.", + "guid": "b2456460", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T20:43:53.000Z" + }, + { + "creator": "Katie Hawkinson", + "date": "2023-11-30T20:38:41+00:00", + "title": "Rand Paul performs Heimlich maneuver on Senator Joni Ernst during lunch ", + "link": "https://www.the-independent.com/news/world/americas/us-politics/rand-paul-joni-ernst-heimlich-maneuver-senate-b2456431.html", + "pubDate": "Thu, 30 Nov 2023 20:38:41 GMT", + "dc:creator": "Katie Hawkinson", + "dc:date": "2023-11-30T20:38:41+00:00", + "content": "

\u2018Can\u2019t help but choke on the woke policies Dems are forcing down our throats,\u2019 Sen Joni Ernst writes after incident

", + "contentSnippet": "\u2018Can\u2019t help but choke on the woke policies Dems are forcing down our throats,\u2019 Sen Joni Ernst writes after incident", + "guid": "b2456431", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-11-30T20:38:41.000Z" + }, + { + "creator": "Gary Gerard Hamilton", + "date": "2023-11-30T20:36:49+00:00", + "title": "Eddie Murphy wants 'Candy Cane Lane' to put you in the Christmas spirit for years to come", + "link": "https://www.independent.co.uk/news/eddie-murphy-ap-new-york-brooklyn-tracee-ellis-ross-b2456458.html", + "pubDate": "Thu, 30 Nov 2023 20:36:49 GMT", + "dc:creator": "Gary Gerard Hamilton", + "dc:date": "2023-11-30T20:36:49+00:00", + "content": "Eddie Murphy fondly remembers watching classic Christmas movies as a child with his family during the holidays", + "contentSnippet": "Eddie Murphy fondly remembers watching classic Christmas movies as a child with his family during the holidays", + "guid": "b2456458", + "isoDate": "2023-11-30T20:36:49.000Z" + }, + { + "creator": "Simon Calder", + "date": "2023-11-30T20:36:26+00:00", + "title": "\u2018After 16 months, we\u2019re in it for as long as it takes,\u2019 says rail union boss as strikes resume", + "link": "https://www.independent.co.uk/travel/news-and-advice/aslef-train-strike-rail-union-b2456007.html", + "pubDate": "Thu, 30 Nov 2023 20:36:26 GMT", + "dc:creator": "Simon Calder", + "dc:date": "2023-11-30T20:36:26+00:00", + "content": "

Mick Whelan, general secretary of Aslef, has called for another round of industrial action from the start of December

", + "contentSnippet": "Mick Whelan, general secretary of Aslef, has called for another round of industrial action from the start of December", + "guid": "b2456007", + "categories": ["News & Advice", "Travel"], + "isoDate": "2023-11-30T20:36:26.000Z" + }, + { + "creator": "Travis Loller", + "date": "2023-11-30T20:35:22+00:00", + "title": "Former ambassador and Republican politician sues to block Tennessee voting law", + "link": "https://www.independent.co.uk/news/tennessee-ap-ambassador-republican-nashville-b2456457.html", + "pubDate": "Thu, 30 Nov 2023 20:35:22 GMT", + "dc:creator": "Travis Loller", + "dc:date": "2023-11-30T20:35:22+00:00", + "content": "Former Ambassador to Poland and longtime Republican politician Victor Ashe is suing Tennessee election officials over a state law he claims is so vague that he could be prosecuted for voting in a Republican primary", + "contentSnippet": "Former Ambassador to Poland and longtime Republican politician Victor Ashe is suing Tennessee election officials over a state law he claims is so vague that he could be prosecuted for voting in a Republican primary", + "guid": "b2456457", + "isoDate": "2023-11-30T20:35:22.000Z" + }, + { + "creator": "Russ Bynum", + "date": "2023-11-30T20:34:22+00:00", + "title": "Georgia county seeking to dismiss lawsuit by slave descendants over rezoning of their island homes", + "link": "https://www.independent.co.uk/news/georgia-ap-black-african-b2456455.html", + "pubDate": "Thu, 30 Nov 2023 20:34:22 GMT", + "dc:creator": "Russ Bynum", + "dc:date": "2023-11-30T20:34:22+00:00", + "content": "County commissioners in Georgia are asking a judge to throw out a lawsuit by Black residents descended from slaves who fear new zoning changes will force them to sell their island homes", + "contentSnippet": "County commissioners in Georgia are asking a judge to throw out a lawsuit by Black residents descended from slaves who fear new zoning changes will force them to sell their island homes", + "guid": "b2456455", + "isoDate": "2023-11-30T20:34:22.000Z" + }, + { + "creator": "Amber Raiken", + "date": "2023-11-30T20:27:12+00:00", + "title": "Shannen Doherty reveals cancer has spread to her bones", + "link": "https://www.independent.co.uk/life-style/shannen-doherty-breast-cancer-bones-b2456450.html", + "pubDate": "Thu, 30 Nov 2023 20:27:12 GMT", + "dc:creator": "Amber Raiken", + "dc:date": "2023-11-30T20:27:12+00:00", + "content": "

\u2018We are people who want to work and embrace life and keep moving forward,\u2019 she says

", + "contentSnippet": "\u2018We are people who want to work and embrace life and keep moving forward,\u2019 she says", + "guid": "b2456450", + "categories": ["Lifestyle"], + "isoDate": "2023-11-30T20:27:12.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-11-30T20:27:07+00:00", + "title": "Queen Victoria\u2019s Christmas decorations set to be auctioned", + "link": "https://www.independent.co.uk/tv/culture/queen-victoria-christmas-decorations-b2456452.html", + "pubDate": "Thu, 30 Nov 2023 20:27:07 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-11-30T20:27:07+00:00", + "content": "

Christmas decorations belonging to Queen Victoria are set to be auctioned for \u00a31,500 on 7 December.

", + "contentSnippet": "Christmas decorations belonging to Queen Victoria are set to be auctioned for \u00a31,500 on 7 December.", + "guid": "b2456452", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-11-30T20:27:07.000Z" + }, + { + "creator": "Leah Willingham", + "date": "2023-11-30T20:21:42+00:00", + "title": "Six West Virginia jail employees indicted in connection with death of incarcerated man", + "link": "https://www.independent.co.uk/news/ap-west-virginia-charleston-jim-justice-corrections-b2456451.html", + "pubDate": "Thu, 30 Nov 2023 20:21:42 GMT", + "dc:creator": "Leah Willingham", + "dc:date": "2023-11-30T20:21:42+00:00", + "content": "Five former correctional officers in West Virginia have been indicted by a federal grand jury in connection with the 2022 death of a man at a regional jail", + "contentSnippet": "Five former correctional officers in West Virginia have been indicted by a federal grand jury in connection with the 2022 death of a man at a regional jail", + "guid": "b2456451", + "isoDate": "2023-11-30T20:21:42.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2023-11-30T20:18:39+00:00", + "title": "Musk says antisemitic tweet was \u2018foolish\u2019 \u2013 but blames media for angry reaction", + "link": "https://www.independent.co.uk/tech/elon-musk-antisemitic-tweet-x-b2456440.html", + "pubDate": "Thu, 30 Nov 2023 20:18:39 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2023-11-30T20:18:39+00:00", + "content": "

The world\u2019s richest man says he had \u2018no problem being hated\u2019

", + "contentSnippet": "The world\u2019s richest man says he had \u2018no problem being hated\u2019", + "guid": "b2456440", + "categories": ["Tech"], + "isoDate": "2023-11-30T20:18:39.000Z" + }, + { + "creator": "Andrea Cavallier", + "date": "2023-11-30T20:17:56+00:00", + "title": "Gilgo Beach serial killer suspect\u2019s wife officially linked to crime scene DNA, report says", + "link": "https://www.the-independent.com/news/world/americas/crime/gilgo-beach-rex-heuermann-wife-dna-b2456316.html", + "pubDate": "Thu, 30 Nov 2023 20:17:56 GMT", + "dc:creator": "Andrea Cavallier", + "dc:date": "2023-11-30T20:17:56+00:00", + "content": "

Asa Ellerup\u2019s hair was found on the burlap-wrapped bodies of three of the four women her husband is accused of killing

", + "contentSnippet": "Asa Ellerup\u2019s hair was found on the burlap-wrapped bodies of three of the four women her husband is accused of killing", + "guid": "b2456316", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-11-30T20:17:56.000Z" + }, + { + "creator": "Isobel Lewis", + "date": "2023-11-30T20:16:55+00:00", + "title": "Kate dazzles at Royal Variety Performance as she puts on united front with William amid racism storm", + "link": "https://www.independent.co.uk/life-style/royal-family/news/kate-william-royal-variety-show-endgame-b2456427.html", + "pubDate": "Thu, 30 Nov 2023 20:16:55 GMT", + "dc:creator": "Isobel Lewis", + "dc:date": "2023-11-30T20:16:55+00:00", + "content": "

Kate stunned in blue Toteme gown and glittering jewellery

", + "contentSnippet": "Kate stunned in blue Toteme gown and glittering jewellery", + "guid": "b2456427", + "categories": ["Royal Family News", "Royal Family", "Lifestyle"], + "isoDate": "2023-11-30T20:16:55.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-11-30T20:15:13+00:00", + "title": "John Kirby on death of Henry Kissinger: \u2018He shaped foreign policy decisions for decades\u2019", + "link": "https://www.independent.co.uk/tv/news/henry-kissinger-death-john-kirby-b2456444.html", + "pubDate": "Thu, 30 Nov 2023 20:15:13 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-11-30T20:15:13+00:00", + "content": "

White House spokesman John Kirby gave his condolences to the family of Henry Kissinger after his passing on Wednesday 29 November.

", + "contentSnippet": "White House spokesman John Kirby gave his condolences to the family of Henry Kissinger after his passing on Wednesday 29 November.", + "guid": "b2456444", + "categories": ["News", "Indy TV"], + "isoDate": "2023-11-30T20:15:13.000Z" + }, + { + "creator": "Susan Montoya Bryan", + "date": "2023-11-30T20:13:17+00:00", + "title": "Work resumes on $10B renewable energy transmission project despite tribal objections", + "link": "https://www.independent.co.uk/news/ap-bureau-of-land-management-work-new-mexico-biden-b2456446.html", + "pubDate": "Thu, 30 Nov 2023 20:13:17 GMT", + "dc:creator": "Susan Montoya Bryan", + "dc:date": "2023-11-30T20:13:17+00:00", + "content": "It's back to work for construction crews that are clearing land and building access roads for a $10 billion project that the Biden administration describes as an important part of the nation's transition to renewable energy", + "contentSnippet": "It's back to work for construction crews that are clearing land and building access roads for a $10 billion project that the Biden administration describes as an important part of the nation's transition to renewable energy", + "guid": "b2456446", + "isoDate": "2023-11-30T20:13:17.000Z" + }, + { + "creator": "Andrea Blanco,Rachel Sharp and Sheila Flynn", + "date": "2023-11-30T20:11:27+00:00", + "title": "Four slain students, a weeks-long manhunt but no motive: What happened in the Idaho murders?", + "link": "https://www.the-independent.com/news/world/americas/crime/idaho-murders-moscow-update-bryan-kohberger-b2456443.html", + "pubDate": "Thu, 30 Nov 2023 20:11:27 GMT", + "dc:creator": "Andrea Blanco,Rachel Sharp and Sheila Flynn", + "dc:date": "2023-11-30T20:11:27+00:00", + "content": "

As suspect Bryan Kohberger prepares to face trial, Andrea Blanco, Rachel Sharp and Sheila Flynn report on the case in small town Idaho that shocked America

", + "contentSnippet": "As suspect Bryan Kohberger prepares to face trial, Andrea Blanco, Rachel Sharp and Sheila Flynn report on the case in small town Idaho that shocked America", + "guid": "b2456443", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-11-30T20:11:27.000Z" + }, + { + "creator": "Kaleigh Werner", + "date": "2023-11-30T20:09:53+00:00", + "title": "Jennifer Lawrence addresses plastic surgery rumours", + "link": "https://www.independent.co.uk/life-style/jennifer-lawrence-plastic-surgery-rumours-b2456442.html", + "pubDate": "Thu, 30 Nov 2023 20:09:53 GMT", + "dc:creator": "Kaleigh Werner", + "dc:date": "2023-11-30T20:09:53+00:00", + "content": "

\u2018Apparently, I\u2019ve had full plastic surgery,\u2019 Lawrence says

", + "contentSnippet": "\u2018Apparently, I\u2019ve had full plastic surgery,\u2019 Lawrence says", + "guid": "b2456442", + "categories": ["Lifestyle"], + "isoDate": "2023-11-30T20:09:53.000Z" + }, + { + "creator": "Michelle L. Price", + "date": "2023-11-30T20:09:39+00:00", + "title": "RNC\u2019s rules for 2024 convention don\u2019t address what would happen if Trump is convicted", + "link": "https://www.the-independent.com/news/world/americas/us-politics/republican-trump-rnc-convention-rules-b2456418.html", + "pubDate": "Thu, 30 Nov 2023 20:09:39 GMT", + "dc:creator": "Michelle L. Price", + "dc:date": "2023-11-30T20:09:39+00:00", + "content": "

Can delegates vote for a different candidate if the party\u2019s presumptive nominee is convicted of a felony?

", + "contentSnippet": "Can delegates vote for a different candidate if the party\u2019s presumptive nominee is convicted of a felony?", + "guid": "b2456418", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-11-30T20:09:39.000Z" + }, + { + "creator": "Olivia Hebert", + "date": "2023-11-30T20:04:42+00:00", + "title": "Steakhouse customer pays double for meal after miscommunication with waiter - who was in the right? ", + "link": "https://www.independent.co.uk/life-style/tiktok-steakhouse-unlimited-sides-b2456441.html", + "pubDate": "Thu, 30 Nov 2023 20:04:42 GMT", + "dc:creator": "Olivia Hebert", + "dc:date": "2023-11-30T20:04:42+00:00", + "content": "

\u2018I just meant you could order as many as you wanted to,\u2019 waiter tells customers

", + "contentSnippet": "\u2018I just meant you could order as many as you wanted to,\u2019 waiter tells customers", + "guid": "b2456441", + "categories": ["Lifestyle"], + "isoDate": "2023-11-30T20:04:42.000Z" + }, + { + "creator": "Meredith Clark", + "date": "2023-11-30T20:02:31+00:00", + "title": "Emily Ratajkowski\u2019s latest photo shoot sparks fury", + "link": "https://www.independent.co.uk/life-style/fashion/emily-ratajkowski-photo-shoot-plus-size-b2456439.html", + "pubDate": "Thu, 30 Nov 2023 20:02:31 GMT", + "dc:creator": "Meredith Clark", + "dc:date": "2023-11-30T20:02:31+00:00", + "content": "

Supermodel\u2019s latest photo shoot has been accused by body inclusivity activists of being \u2018fatphobic\u2019

", + "contentSnippet": "Supermodel\u2019s latest photo shoot has been accused by body inclusivity activists of being \u2018fatphobic\u2019", + "guid": "b2456439", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2023-11-30T20:02:31.000Z" + }, + { + "creator": "Brittany Miller", + "date": "2023-11-30T20:01:27+00:00", + "title": "Former royal chef explains unusual dinner rule for William and Kate\u2019s children", + "link": "https://www.independent.co.uk/life-style/royal-family/news/royal-family-chef-kate-william-kids-b2456437.html", + "pubDate": "Thu, 30 Nov 2023 20:01:27 GMT", + "dc:creator": "Brittany Miller", + "dc:date": "2023-11-30T20:01:27+00:00", + "content": "

Darren McGrady worked for royal family for 15 years

", + "contentSnippet": "Darren McGrady worked for royal family for 15 years", + "guid": "b2456437", + "categories": ["Royal Family News", "Royal Family", "Lifestyle"], + "isoDate": "2023-11-30T20:01:27.000Z" + }, + { + "creator": "Ariana Baio", + "date": "2023-11-30T19:54:50+00:00", + "title": "Senate Judiciary authorises subpoenas of conservative activists in Supreme Court ethics probe", + "link": "https://www.the-independent.com/news/world/americas/us-politics/supreme-court-ethics-subpoenas-crow-leo-b2456382.html", + "pubDate": "Thu, 30 Nov 2023 19:54:50 GMT", + "dc:creator": "Ariana Baio", + "dc:date": "2023-11-30T19:54:50+00:00", + "content": "

Thursday\u2019s contentious hearing ended in an entirely Democratic vote after Republican members of the committee walked out

", + "contentSnippet": "Thursday\u2019s contentious hearing ended in an entirely Democratic vote after Republican members of the committee walked out", + "guid": "b2456382", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-11-30T19:54:50.000Z" + }, + { + "creator": "Kevin E G Perry", + "date": "2023-11-30T19:54:01+00:00", + "title": "Zack Snyder says he doesn\u2019t \u2018get\u2019 why people don\u2019t like Amber Heard", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/amber-heard-zack-snyder-aquaman-b2456407.html", + "pubDate": "Thu, 30 Nov 2023 19:54:01 GMT", + "dc:creator": "Kevin E G Perry", + "dc:date": "2023-11-30T19:54:01+00:00", + "content": "

The \u2018Justice League\u2019 director said: \u2018If other people don\u2019t like her, I don\u2019t know what to say.\u2019

", + "contentSnippet": "The \u2018Justice League\u2019 director said: \u2018If other people don\u2019t like her, I don\u2019t know what to say.\u2019", + "guid": "b2456407", + "categories": ["News", "Film", "Culture"], + "isoDate": "2023-11-30T19:54:01.000Z" + }, + { + "creator": "Diane Jeantet and Mauricio Savarese", + "date": "2023-11-30T19:53:58+00:00", + "title": "Brazilian city enacts an ordinance secretly written by a surprising new staffer: ChatGPT", + "link": "https://www.independent.co.uk/news/chatgpt-ap-city-harvard-law-school-openai-b2456432.html", + "pubDate": "Thu, 30 Nov 2023 19:53:58 GMT", + "dc:creator": "Diane Jeantet and Mauricio Savarese", + "dc:date": "2023-11-30T19:53:58+00:00", + "content": "City lawmakers in Brazil passed what appears to be the nation\u2019s first legislation written entirely by artificial intelligence \u2014 after they were kept in the dark about its unprecedented origin", + "contentSnippet": "City lawmakers in Brazil passed what appears to be the nation\u2019s first legislation written entirely by artificial intelligence \u2014 after they were kept in the dark about its unprecedented origin", + "guid": "b2456432", + "isoDate": "2023-11-30T19:53:58.000Z" + }, + { + "creator": "Lisa Rathke", + "date": "2023-11-30T19:51:52+00:00", + "title": "Ex of man charged with shooting Palestinian students had police remove his gun from her home in 2013", + "link": "https://www.independent.co.uk/news/ap-vermont-syracuse-palestinian-new-york-b2456433.html", + "pubDate": "Thu, 30 Nov 2023 19:51:52 GMT", + "dc:creator": "Lisa Rathke", + "dc:date": "2023-11-30T19:51:52+00:00", + "content": "Syracuse, New York, police say an ex-girlfriend of the man charged with recently shooting and wounding three college students of Palestinian descent in Vermont asked officers 10 years ago to remove his gun from her home", + "contentSnippet": "Syracuse, New York, police say an ex-girlfriend of the man charged with recently shooting and wounding three college students of Palestinian descent in Vermont asked officers 10 years ago to remove his gun from her home", + "guid": "b2456433", + "isoDate": "2023-11-30T19:51:52.000Z" + }, + { + "creator": "Jake Coyle", + "date": "2023-11-30T19:51:32+00:00", + "title": "'Killers of the Flower Moon' named best film of 2023 by New York film critics", + "link": "https://www.independent.co.uk/news/martin-scorsese-ap-new-york-tar-christopher-nolan-b2456436.html", + "pubDate": "Thu, 30 Nov 2023 19:51:32 GMT", + "dc:creator": "Jake Coyle", + "dc:date": "2023-11-30T19:51:32+00:00", + "content": "Martin Scorsese\u2019s \u201cKillers of the Flower Moon\u201d has been named the best film of the year by the New York Film Critics Circle", + "contentSnippet": "Martin Scorsese\u2019s \u201cKillers of the Flower Moon\u201d has been named the best film of the year by the New York Film Critics Circle", + "guid": "b2456436", + "isoDate": "2023-11-30T19:51:32.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-11-30T19:50:48+00:00", + "title": "Suspect in custody after 2 troopers fatally struck while aiding driver on Las Vegas freeway", + "link": "https://www.independent.co.uk/news/las-vegas-ap-nevada-steve-wolfson-clark-county-b2456430.html", + "pubDate": "Thu, 30 Nov 2023 19:50:48 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-11-30T19:50:48+00:00", + "content": "Two Nevada state troopers have died after they were struck by a vehicle while helping another driver", + "contentSnippet": "Two Nevada state troopers have died after they were struck by a vehicle while helping another driver", + "guid": "b2456430", + "isoDate": "2023-11-30T19:50:48.000Z" + }, + { + "creator": "Lindsay Whitehurst", + "date": "2023-11-30T19:50:12+00:00", + "title": "Police searching for two people accused in FBI agent carjacking in Washington", + "link": "https://www.independent.co.uk/news/police-ap-fbi-joe-biden-metropolitan-police-department-b2456435.html", + "pubDate": "Thu, 30 Nov 2023 19:50:12 GMT", + "dc:creator": "Lindsay Whitehurst", + "dc:date": "2023-11-30T19:50:12+00:00", + "content": "Police are searching for two people after an FBI agent was carjacked in Washington D", + "contentSnippet": "Police are searching for two people after an FBI agent was carjacked in Washington D", + "guid": "b2456435", + "isoDate": "2023-11-30T19:50:12.000Z" + }, + { + "creator": "Eric Garcia", + "date": "2023-11-30T19:39:41+00:00", + "title": "Voices: Newsom and DeSantis face off in the name of recognition and desperation", + "link": "https://www.independent.co.uk/voices/newsom-desantis-debate-fox-news-b2456350.html", + "pubDate": "Thu, 30 Nov 2023 19:39:41 GMT", + "dc:creator": "Eric Garcia", + "dc:date": "2023-11-30T19:39:41+00:00", + "content": "

Their \u2018debate\u2019 on Fox News is an exercise in vanity that will do nothing to advance either of their ideas. But it will give them plenty of media attention

", + "contentSnippet": "Their \u2018debate\u2019 on Fox News is an exercise in vanity that will do nothing to advance either of their ideas. But it will give them plenty of media attention", + "guid": "b2456350", + "categories": ["Voices"], + "isoDate": "2023-11-30T19:39:41.000Z" + }, + { + "creator": "Jerry Harmer", + "date": "2023-11-30T19:39:21+00:00", + "title": "Families reunite with 17 Thai hostages freed by Hamas at homecoming at Bangkok airport", + "link": "https://www.independent.co.uk/news/ap-hamas-thai-israel-families-b2456198.html", + "pubDate": "Thu, 30 Nov 2023 19:39:21 GMT", + "dc:creator": "Jerry Harmer", + "dc:date": "2023-11-30T19:39:21+00:00", + "content": "Seventeen Thai workers released from captivity by the militant Hamas group have been greeted by family and friends, officials and journalists in an emotional homecoming at Bangkok\u2019s international airport", + "contentSnippet": "Seventeen Thai workers released from captivity by the militant Hamas group have been greeted by family and friends, officials and journalists in an emotional homecoming at Bangkok\u2019s international airport", + "guid": "b2456198", + "isoDate": "2023-11-30T19:39:21.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2023-11-30T19:36:37+00:00", + "title": "Wolverines may soon get government protection", + "link": "https://www.independent.co.uk/news/world/americas/north-american-wolverine-protection-government-b2456366.html", + "pubDate": "Thu, 30 Nov 2023 19:36:37 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2023-11-30T19:36:37+00:00", + "content": "

There are around 300 wolverines left in the wild in the US, and could face extinction due to the melting of their habitat

", + "contentSnippet": "There are around 300 wolverines left in the wild in the US, and could face extinction due to the melting of their habitat", + "guid": "b2456366", + "categories": ["Americas", "World"], + "isoDate": "2023-11-30T19:36:37.000Z" + }, + { + "creator": "Brittany Miller", + "date": "2023-11-30T19:36:34+00:00", + "title": "Woman defends throwing daughter \u2018extravagant\u2019 5th birthday day after sister-in-law\u2019s wedding", + "link": "https://www.independent.co.uk/life-style/daughter-birthday-family-wedding-reddit-b2455817.html", + "pubDate": "Thu, 30 Nov 2023 19:36:34 GMT", + "dc:creator": "Brittany Miller", + "dc:date": "2023-11-30T19:36:34+00:00", + "content": "

\u2018I think it\u2019s pretty crazy she\u2019s getting jealous over a little girl but quite a few family members on her side are saying I\u2019m in the wrong,\u2019 she says

", + "contentSnippet": "\u2018I think it\u2019s pretty crazy she\u2019s getting jealous over a little girl but quite a few family members on her side are saying I\u2019m in the wrong,\u2019 she says", + "guid": "b2455817", + "categories": ["Lifestyle"], + "isoDate": "2023-11-30T19:36:34.000Z" + }, + { + "creator": "Maira Butt", + "date": "2023-11-30T19:34:20+00:00", + "title": "Those stuck in Gaza spend the ceasefire checking if loved ones are alive: \u2018We don\u2019t think about the future\u2019", + "link": "https://www.independent.co.uk/news/world/middle-east/gaza-palestine-israel-bomb-idf-b2456244.html", + "pubDate": "Thu, 30 Nov 2023 19:34:20 GMT", + "dc:creator": "Maira Butt", + "dc:date": "2023-11-30T19:34:20+00:00", + "content": "

Palestinians in Gaza learn their loved ones have been found under the rubble as a ceasefire is extended for another day

", + "contentSnippet": "Palestinians in Gaza learn their loved ones have been found under the rubble as a ceasefire is extended for another day", + "guid": "b2456244", + "categories": ["Middle East", "World"], + "isoDate": "2023-11-30T19:34:20.000Z" + }, + { + "creator": "Isobel Lewis and Tom Murray", + "date": "2023-11-30T17:23:54+00:00", + "title": "I\u2019m a Celebrity \u2013 live: Sam Thompson opens up about ADHD diagnosis as Josie Gibson quits trial", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/im-a-celebrity-2023-latest-b2456338.html", + "pubDate": "Thu, 30 Nov 2023 17:23:54 GMT", + "dc:creator": "Isobel Lewis and Tom Murray", + "dc:date": "2023-11-30T17:23:54+00:00", + "content": "

Tensions are running high in camp

", + "contentSnippet": "Tensions are running high in camp", + "guid": "b2456338", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-11-30T17:23:54.000Z" + }, + { + "creator": "Carl Markham", + "date": "2023-11-30T23:38:44+00:00", + "title": "Jurgen Klopp satisfied as Liverpool secure top spot with a game to spare", + "link": "https://www.independent.co.uk/sport/football/luis-diaz-jurgen-klopp-liverpool-europa-league-cody-gakpo-b2456524.html", + "pubDate": "Thu, 30 Nov 2023 23:38:44 GMT", + "dc:creator": "Carl Markham", + "dc:date": "2023-11-30T23:38:44+00:00", + "content": "Two goals from Cody Gakpo and one apiece from Luis Diaz and Mohamed Salah secured victory.", + "contentSnippet": "Two goals from Cody Gakpo and one apiece from Luis Diaz and Mohamed Salah secured victory.", + "guid": "b2456524", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T23:38:44.000Z" + }, + { + "creator": "Josh Funk", + "date": "2023-11-30T23:33:29+00:00", + "title": "Haslam family refutes allegation from Warren Buffett's company that it bribed truck stop chain execs", + "link": "https://www.independent.co.uk/news/ap-warren-buffett-bill-haslam-omaha-berkshire-hathaway-b2456523.html", + "pubDate": "Thu, 30 Nov 2023 23:33:29 GMT", + "dc:creator": "Josh Funk", + "dc:date": "2023-11-30T23:33:29+00:00", + "content": "An attorney for the billionaire Haslam family has called the bribery allegations from Warren Buffett\u2019s company a \u201cwild invention.\"", + "contentSnippet": "An attorney for the billionaire Haslam family has called the bribery allegations from Warren Buffett\u2019s company a \u201cwild invention.\"", + "guid": "b2456523", + "isoDate": "2023-11-30T23:33:29.000Z" + }, + { + "creator": "Tom Murray", + "date": "2023-12-01T01:07:55+00:00", + "title": "Jeremy Clarkson breaks silence on The Grand Tour exit alongside Clarkson\u2019s Farm update", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/jeremy-clarkson-grand-tour-clarksons-farm-b2456546.html", + "pubDate": "Fri, 01 Dec 2023 01:07:55 GMT", + "dc:creator": "Tom Murray", + "dc:date": "2023-12-01T01:07:55+00:00", + "content": "

News emerged on Wednesday that Clarkson, Richard Hammond and James May were leaving the Prime Video series

", + "contentSnippet": "News emerged on Wednesday that Clarkson, Richard Hammond and James May were leaving the Prime Video series", + "guid": "b2456546", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-01T01:07:55.000Z" + }, + { + "creator": "Manuel Valdes", + "date": "2023-12-01T01:03:20+00:00", + "title": "Young humpback whale leaps out of Seattle bay, dazzling onlookers", + "link": "https://www.independent.co.uk/news/seattle-ap-chip-b2456561.html", + "pubDate": "Fri, 01 Dec 2023 01:03:20 GMT", + "dc:creator": "Manuel Valdes", + "dc:date": "2023-12-01T01:03:20+00:00", + "content": "A humpback whale visiting the waters off Seattle gave people on shore a show Thursday morning", + "contentSnippet": "A humpback whale visiting the waters off Seattle gave people on shore a show Thursday morning", + "guid": "b2456561", + "isoDate": "2023-12-01T01:03:20.000Z" + }, + { + "creator": "David Rising", + "date": "2023-12-01T01:02:59+00:00", + "title": "Myanmar's military is losing ground against coordinated nationwide attacks, buoying opposition hopes", + "link": "https://www.independent.co.uk/news/myanmar-ap-beijing-bangkok-aung-san-suu-kyi-b2456560.html", + "pubDate": "Fri, 01 Dec 2023 01:02:59 GMT", + "dc:creator": "David Rising", + "dc:date": "2023-12-01T01:02:59+00:00", + "content": "A major offensive against Myanmar\u2019s military-run government by an alliance of three militias of ethnic minorities has been moving at lightning speed, inspiring resistance forces around the country to attack", + "contentSnippet": "A major offensive against Myanmar\u2019s military-run government by an alliance of three militias of ethnic minorities has been moving at lightning speed, inspiring resistance forces around the country to attack", + "guid": "b2456560", + "isoDate": "2023-12-01T01:02:59.000Z" + }, + { + "creator": "David Rising", + "date": "2023-12-01T01:01:37+00:00", + "title": "Myanmar's military is losing ground against coordinated nationwide attacks, buoying opposition hopes", + "link": "https://www.independent.co.uk/news/myanmar-ap-china-beijing-bangkok-b2456559.html", + "pubDate": "Fri, 01 Dec 2023 01:01:37 GMT", + "dc:creator": "David Rising", + "dc:date": "2023-12-01T01:01:37+00:00", + "content": "A major offensive against Myanmar's military-run government by an alliance of three militias of ethnic minorities has been moving at lightning speed, inspiring resistance forces around the country to attack", + "contentSnippet": "A major offensive against Myanmar's military-run government by an alliance of three militias of ethnic minorities has been moving at lightning speed, inspiring resistance forces around the country to attack", + "guid": "b2456559", + "isoDate": "2023-12-01T01:01:37.000Z" + }, + { + "creator": "Kevin E G Perry", + "date": "2023-12-01T00:52:26+00:00", + "title": "Judge sides with Daryl Hall over John Oates in ongoing legal case", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/daryl-hall-john-oates-judge-lawsuit-b2456545.html", + "pubDate": "Fri, 01 Dec 2023 00:52:26 GMT", + "dc:creator": "Kevin E G Perry", + "dc:date": "2023-12-01T00:52:26+00:00", + "content": "

Oates is temporarily blocked from selling his share of their joint business

", + "contentSnippet": "Oates is temporarily blocked from selling his share of their joint business", + "guid": "b2456545", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-12-01T00:52:26.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-01T00:51:03+00:00", + "title": "MSNBC shuffling weekend schedule, debuting new morning ensemble, heading into election year", + "link": "https://www.independent.co.uk/news/msnbc-ap-mehdi-hasan-rashida-jones-new-york-b2456556.html", + "pubDate": "Fri, 01 Dec 2023 00:51:03 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-01T00:51:03+00:00", + "content": "MSNBC is shuffling its weekend schedule early next year with an eye toward juicing ratings heading into an election year", + "contentSnippet": "MSNBC is shuffling its weekend schedule early next year with an eye toward juicing ratings heading into an election year", + "guid": "b2456556", + "isoDate": "2023-12-01T00:51:03.000Z" + }, + { + "creator": "The Associated Press", + "date": "2023-12-01T00:48:19+00:00", + "title": "Live updates | Live updates | Eight Israeli hostages are released during extended truce", + "link": "https://www.independent.co.uk/news/israeli-ap-hamas-gaza-strip-palestinian-b2456555.html", + "pubDate": "Fri, 01 Dec 2023 00:48:19 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2023-12-01T00:48:19+00:00", + "content": "The Israeli military says a total of eight Israeli hostages have been released from captivity in the Gaza Strip", + "contentSnippet": "The Israeli military says a total of eight Israeli hostages have been released from captivity in the Gaza Strip", + "guid": "b2456555", + "isoDate": "2023-12-01T00:48:19.000Z" + }, + { + "creator": "Faizah Malik", + "date": "2023-12-01T00:43:00+00:00", + "title": "\u2018Christmas miracle\u2019 for family as their cat returns after 11 years ", + "link": "https://www.independent.co.uk/news/uk/home-news/cat-returns-christmas-nuneaton-missing-b2456554.html", + "pubDate": "Fri, 01 Dec 2023 00:43:00 GMT", + "dc:creator": "Faizah Malik", + "dc:date": "2023-12-01T00:43:00+00:00", + "content": "

Toby was just a kitten when he went missing in 2012

", + "contentSnippet": "Toby was just a kitten when he went missing in 2012", + "guid": "b2456554", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-01T00:43:00.000Z" + }, + { + "creator": "Olivia Hebert", + "date": "2023-12-01T00:36:46+00:00", + "title": "Gwyneth Paltrow shares picture of herself and Dakota Johnson holding hands", + "link": "https://www.independent.co.uk/life-style/gwyneth-paltrow-dakota-johnson-picture-b2456514.html", + "pubDate": "Fri, 01 Dec 2023 00:36:46 GMT", + "dc:creator": "Olivia Hebert", + "dc:date": "2023-12-01T00:36:46+00:00", + "content": "

\u2018We\u2019re actually very good friends,\u2019 the Goop Founder says of the actor \u2013\u00a0who is going out with her ex, Chris Martin

", + "contentSnippet": "\u2018We\u2019re actually very good friends,\u2019 the Goop Founder says of the actor \u2013\u00a0who is going out with her ex, Chris Martin", + "guid": "b2456514", + "categories": ["Lifestyle"], + "isoDate": "2023-12-01T00:36:46.000Z" + }, + { + "creator": "Andrea Blanco", + "date": "2023-12-01T00:33:47+00:00", + "title": "FBI agent carjacked near Capitol Hill as incidents spike in Washington DC", + "link": "https://www.the-independent.com/news/world/americas/crime/fbi-agent-carjack-capitol-hill-b2456527.html", + "pubDate": "Fri, 01 Dec 2023 00:33:47 GMT", + "dc:creator": "Andrea Blanco", + "dc:date": "2023-12-01T00:33:47+00:00", + "content": "

The vehicle was eventually recovered, and the agent was not harmed during the attack

", + "contentSnippet": "The vehicle was eventually recovered, and the agent was not harmed during the attack", + "guid": "b2456527", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-12-01T00:33:47.000Z" + }, + { + "creator": "Matthew Cooper", + "date": "2023-12-01T00:30:43+00:00", + "title": "GTA 6: Everything we know and don\u2019t know ahead of trailer release from Rockstar", + "link": "https://www.independent.co.uk/games/gta-6-trailer-rockstar-announcement-release-b2444910.html", + "pubDate": "Fri, 01 Dec 2023 00:30:43 GMT", + "dc:creator": "Matthew Cooper", + "dc:date": "2023-12-01T00:30:43+00:00", + "content": "

Rockstar Games have announced there will be a trailer for the new Grand Theft Auto in December 2023, over 10 years after GTA came out for PS4 and Xbox 360

", + "contentSnippet": "Rockstar Games have announced there will be a trailer for the new Grand Theft Auto in December 2023, over 10 years after GTA came out for PS4 and Xbox 360", + "guid": "b2444910", + "categories": ["Games"], + "isoDate": "2023-12-01T00:30:43.000Z" + }, + { + "creator": "Frank Bajak and Marc Levy", + "date": "2023-12-01T00:28:48+00:00", + "title": "Congressmen ask DOJ to investigate water utility hack, warning it could happen anywhere", + "link": "https://www.independent.co.uk/news/world/americas/doj-ap-israel-john-fetterman-harrisburg-b2456552.html", + "pubDate": "Fri, 01 Dec 2023 00:28:48 GMT", + "dc:creator": "Frank Bajak and Marc Levy", + "dc:date": "2023-12-01T00:28:48+00:00", + "content": "Three members of Congress are asking the U.S. Justice Department to investigate how hackers breached a water utility system near Pittsburgh", + "contentSnippet": "Three members of Congress are asking the U.S. Justice Department to investigate how hackers breached a water utility system near Pittsburgh", + "guid": "b2456552", + "categories": ["Americas", "World"], + "isoDate": "2023-12-01T00:28:48.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2023-12-01T00:25:39+00:00", + "title": "Oklahoma executes double killer despite clemency recommendation", + "link": "https://www.the-independent.com/news/world/americas/crime/phillip-hancock-execution-oklahoma-stitt-b2456529.html", + "pubDate": "Fri, 01 Dec 2023 00:25:39 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2023-12-01T00:25:39+00:00", + "content": "

Phillip Dean Hancock, 59, received a three-drug lethal injection at the Oklahoma State Penitentiary for the 2001 killings of Robert Jett Jr and James Lynch

", + "contentSnippet": "Phillip Dean Hancock, 59, received a three-drug lethal injection at the Oklahoma State Penitentiary for the 2001 killings of Robert Jett Jr and James Lynch", + "guid": "b2456529", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-12-01T00:25:39.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-01T00:23:20+00:00", + "title": "Federal judge blocks Montana's first-in-the-nation ban on TikTok, says it's unconstitutional", + "link": "https://www.independent.co.uk/news/montana-ap-tiktok-chinese-helena-b2456550.html", + "pubDate": "Fri, 01 Dec 2023 00:23:20 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-01T00:23:20+00:00", + "content": "A federal judge has blocked Montana's first-in-the-nation law banning the video-sharing app TikTok in the state while a legal challenge to the law moves through the courts", + "contentSnippet": "A federal judge has blocked Montana's first-in-the-nation law banning the video-sharing app TikTok in the state while a legal challenge to the law moves through the courts", + "guid": "b2456550", + "isoDate": "2023-12-01T00:23:20.000Z" + }, + { + "creator": "Amy Beth Hanson", + "date": "2023-12-01T00:15:33+00:00", + "title": "Montana miner backs off expansion plans, lays off 100 due to lower palladium prices", + "link": "https://www.independent.co.uk/news/montana-ap-stillwater-united-states-south-africa-b2456548.html", + "pubDate": "Fri, 01 Dec 2023 00:15:33 GMT", + "dc:creator": "Amy Beth Hanson", + "dc:date": "2023-12-01T00:15:33+00:00", + "content": "The owner of two a south-central Montana precious metals mines is stopping work on an expansion project and laying off about 100 workers because the price of palladium fell sharply in the past year", + "contentSnippet": "The owner of two a south-central Montana precious metals mines is stopping work on an expansion project and laying off about 100 workers because the price of palladium fell sharply in the past year", + "guid": "b2456548", + "isoDate": "2023-12-01T00:15:33.000Z" + }, + { + "creator": "Louise Boyle", + "date": "2023-12-01T00:01:00+00:00", + "title": "As climate crisis reaches pivotal moment, what on earth are world leaders waiting for?", + "link": "https://www.independent.co.uk/climate-change/news/cop28-climate-change-conference-dubai-b2456358.html", + "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", + "dc:creator": "Louise Boyle", + "dc:date": "2023-12-01T00:01:00+00:00", + "content": "

2023 is officially the hottest year on record. World leaders gathering today in Dubai for the UN Climate Change Conference already know what they must do to reverse global warming but, as King Charles is set to warn them, this must be a \u2018critical turning point\u2019. Senior climate correspondent Louise Boyle reports

", + "contentSnippet": "2023 is officially the hottest year on record. World leaders gathering today in Dubai for the UN Climate Change Conference already know what they must do to reverse global warming but, as King Charles is set to warn them, this must be a \u2018critical turning point\u2019. Senior climate correspondent Louise Boyle reports", + "guid": "b2456358", + "categories": ["News", "Climate"], + "isoDate": "2023-12-01T00:01:00.000Z" + }, + { + "creator": "Karen Matthews", + "date": "2023-11-30T23:56:33+00:00", + "title": "Drivers would pay $15 to enter busiest part of NYC under plan to raise funds for mass transit", + "link": "https://www.independent.co.uk/news/ap-manhattan-metropolitan-transportation-authority-nyc-taxi-drivers-b2456530.html", + "pubDate": "Thu, 30 Nov 2023 23:56:33 GMT", + "dc:creator": "Karen Matthews", + "dc:date": "2023-11-30T23:56:33+00:00", + "content": "Most drivers would pay $15 to enter Manhattan\u2019s central business district under a plan released by New York officials", + "contentSnippet": "Most drivers would pay $15 to enter Manhattan\u2019s central business district under a plan released by New York officials", + "guid": "b2456530", + "isoDate": "2023-11-30T23:56:33.000Z" + }, + { + "creator": "Alex Woodward", + "date": "2023-11-30T23:53:30+00:00", + "title": "Tucker Carlson says he plans to vote for Trump", + "link": "https://www.the-independent.com/news/world/americas/us-politics/tucker-carlson-trump-vote-b2456525.html", + "pubDate": "Thu, 30 Nov 2023 23:53:30 GMT", + "dc:creator": "Alex Woodward", + "dc:date": "2023-11-30T23:53:30+00:00", + "content": "

The far-right former Fox News commentator previously said he \u2018passionately\u2019 hates the former president

", + "contentSnippet": "The far-right former Fox News commentator previously said he \u2018passionately\u2019 hates the former president", + "guid": "b2456525", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-11-30T23:53:30.000Z" + }, + { + "creator": "Brittany Miller", + "date": "2023-11-30T23:48:10+00:00", + "title": "Kim Kardashian reveals how she thinks her family earned their fame ", + "link": "https://www.independent.co.uk/life-style/kim-kardashian-jenner-family-fame-b2456264.html", + "pubDate": "Thu, 30 Nov 2023 23:48:10 GMT", + "dc:creator": "Brittany Miller", + "dc:date": "2023-11-30T23:48:10+00:00", + "content": "

\u2018We scammed the system\u2019

", + "contentSnippet": "\u2018We scammed the system\u2019", + "guid": "b2456264", + "categories": ["Lifestyle"], + "isoDate": "2023-11-30T23:48:10.000Z" + }, + { + "creator": "Tom Murray", + "date": "2023-12-01T02:02:54+00:00", + "title": "The Golden Bachelor: Gerry gives the final rose in heart-wrenching finale", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/golden-bachelor-winner-gerry-leslie-theresa-b2456503.html", + "pubDate": "Fri, 01 Dec 2023 02:02:54 GMT", + "dc:creator": "Tom Murray", + "dc:date": "2023-12-01T02:02:54+00:00", + "content": "

The two finalists fighting for Gerry\u2019s heart were 70-year-old financial services professional Theresa Nist and 64-year-old fitness instructor Leslie Fhima

", + "contentSnippet": "The two finalists fighting for Gerry\u2019s heart were 70-year-old financial services professional Theresa Nist and 64-year-old fitness instructor Leslie Fhima", + "guid": "b2456503", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-01T02:02:54.000Z" + }, + { + "creator": "Vishwam Sankaran", + "date": "2023-12-01T02:00:45+00:00", + "title": "Sports magazine under fire for publishing AI-written articles crediting non-existent authors", + "link": "https://www.independent.co.uk/tech/ai-articles-magazine-under-fire-b2455216.html", + "pubDate": "Fri, 01 Dec 2023 02:00:45 GMT", + "dc:creator": "Vishwam Sankaran", + "dc:date": "2023-12-01T02:00:45+00:00", + "content": "

Author profile found under deleted article was allegedly created using AI

", + "contentSnippet": "Author profile found under deleted article was allegedly created using AI", + "guid": "b2455216", + "categories": ["Tech"], + "isoDate": "2023-12-01T02:00:45.000Z" + }, + { + "creator": "Isobel Lewis", + "date": "2023-12-01T01:55:44+00:00", + "title": "The Crown recreates moment Kate Middleton wows Prince William at university fashion show ", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/crown-season-6-kate-william-fashion-show-b2456569.html", + "pubDate": "Fri, 01 Dec 2023 01:55:44 GMT", + "dc:creator": "Isobel Lewis", + "dc:date": "2023-12-01T01:55:44+00:00", + "content": "

Kate famously walked in St Andrews charity fashion show, which William attended

", + "contentSnippet": "Kate famously walked in St Andrews charity fashion show, which William attended", + "guid": "b2456569", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-01T01:55:44.000Z" + }, + { + "creator": "Josh Marcus", + "date": "2023-12-01T01:53:59+00:00", + "title": "Protesters target weapons manufacturers supplying Israel-Hamas war", + "link": "https://www.independent.co.uk/news/world/americas/protest-arizona-israel-raytheon-arrest-b2456566.html", + "pubDate": "Fri, 01 Dec 2023 01:53:59 GMT", + "dc:creator": "Josh Marcus", + "dc:date": "2023-12-01T01:53:59+00:00", + "content": "

Protests have occured in at least five US states with dozensof arrests

", + "contentSnippet": "Protests have occured in at least five US states with dozensof arrests", + "guid": "b2456566", + "categories": ["Americas", "World"], + "isoDate": "2023-12-01T01:53:59.000Z" + }, + { + "creator": "Graeme Massie", + "date": "2023-12-01T01:51:12+00:00", + "title": "Paramedics who injected Elijah McClain before his death \u2018did nothing\u2019 to help him, court hears", + "link": "https://www.the-independent.com/news/world/americas/crime/elijah-mcclain-paramedics-colorado-trial-b2456562.html", + "pubDate": "Fri, 01 Dec 2023 01:51:12 GMT", + "dc:creator": "Graeme Massie", + "dc:date": "2023-12-01T01:51:12+00:00", + "content": "

McClain, a 23-year-old Black man, died following a police encounter in Colorado in 2019

", + "contentSnippet": "McClain, a 23-year-old Black man, died following a police encounter in Colorado in 2019", + "guid": "b2456562", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-12-01T01:51:12.000Z" + }, + { + "creator": "Ed Davey and David Pereda Zavaleta", + "date": "2023-12-01T01:48:33+00:00", + "title": "Peruvian rainforest defender from embattled Kichwa tribe shot dead in river attack", + "link": "https://www.independent.co.uk/news/ap-lima-amazon-andes-b2456568.html", + "pubDate": "Fri, 01 Dec 2023 01:48:33 GMT", + "dc:creator": "Ed Davey and David Pereda Zavaleta", + "dc:date": "2023-12-01T01:48:33+00:00", + "content": "A Kichwa tribal leader has been shot to death in an area of the Peruvian rainforest that\u2019s seen high tension between Indigenous people and illegal loggers", + "contentSnippet": "A Kichwa tribal leader has been shot to death in an area of the Peruvian rainforest that\u2019s seen high tension between Indigenous people and illegal loggers", + "guid": "b2456568", + "isoDate": "2023-12-01T01:48:33.000Z" + }, + { + "creator": "Ed Davey and David Pereda Zavaleta", + "date": "2023-12-01T01:40:14+00:00", + "title": "Peruvian rainforest defender from embattled Kichwa tribe shot dead in river attack", + "link": "https://www.independent.co.uk/news/ap-lima-amazon-andes-b2456567.html", + "pubDate": "Fri, 01 Dec 2023 01:40:14 GMT", + "dc:creator": "Ed Davey and David Pereda Zavaleta", + "dc:date": "2023-12-01T01:40:14+00:00", + "content": "A Kichwa tribal leader has been shot to death in an area of the Peruvian rainforest that\u2019s seen high tension between Indigenous people and illegal loggers", + "contentSnippet": "A Kichwa tribal leader has been shot to death in an area of the Peruvian rainforest that\u2019s seen high tension between Indigenous people and illegal loggers", + "guid": "b2456567", + "isoDate": "2023-12-01T01:40:14.000Z" + }, + { + "creator": "Josh Marcus", + "date": "2023-12-01T02:28:12+00:00", + "title": "Newsom trolls DeSantis over flailing 2024 bid in hostile Fox News debate", + "link": "https://www.the-independent.com/news/world/americas/us-politics/newsom-desantis-debate-fox-news-b2456571.html", + "pubDate": "Fri, 01 Dec 2023 02:28:12 GMT", + "dc:creator": "Josh Marcus", + "dc:date": "2023-12-01T02:28:12+00:00", + "content": "

Florida governor trails former president Donald Trump in 2024 race

", + "contentSnippet": "Florida governor trails former president Donald Trump in 2024 race", + "guid": "b2456571", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-01T02:28:12.000Z" + }, + { + "creator": "Andrea Cavallier", + "date": "2023-12-08T09:37:19+00:00", + "title": "Why is Jonathan Majors on trial for assault?", + "link": "https://www.the-independent.com/news/world/americas/crime/jonathan-majors-trial-girlfriend-assault-b2460711.html", + "pubDate": "Fri, 08 Dec 2023 09:37:19 GMT", + "dc:creator": "Andrea Cavallier", + "dc:date": "2023-12-08T09:37:19+00:00", + "content": "

The 34-year-old Marvel actor could be sentenced to up to a year in jail if convicted

", + "contentSnippet": "The 34-year-old Marvel actor could be sentenced to up to a year in jail if convicted", + "guid": "b2460711", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-12-08T09:37:19.000Z" + }, + { + "creator": "Barney Davis", + "date": "2023-12-08T09:37:02+00:00", + "title": "\u2018Shane MacGowan a wildman? Nonsense \u2013 he was a shy gent\u2019", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/shane-macgowan-tributes-funeral-b2459783.html", + "pubDate": "Fri, 08 Dec 2023 09:37:02 GMT", + "dc:creator": "Barney Davis", + "dc:date": "2023-12-08T09:37:02+00:00", + "content": "

Shane MacGowan\u2019s \u2018hellraiser persona that was just fake\u2019, his close friend, pub landlord and now undertaker Philly Ryan said

", + "contentSnippet": "Shane MacGowan\u2019s \u2018hellraiser persona that was just fake\u2019, his close friend, pub landlord and now undertaker Philly Ryan said", + "guid": "b2459783", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-12-08T09:37:02.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-12-08T09:35:38+00:00", + "title": "New immigration minister mocked for claiming there is \u2018unity of purpose in parliament\u2019", + "link": "https://www.independent.co.uk/tv/news/tom-pursglove-immigration-minister-radio-4-b2460688.html", + "pubDate": "Fri, 08 Dec 2023 09:35:38 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-12-08T09:35:38+00:00", + "content": "

Tom Pursglove was mocked for claiming there is a \u201cunity of purpose in parliament\u201d on the Rwanda treaty.

", + "contentSnippet": "Tom Pursglove was mocked for claiming there is a \u201cunity of purpose in parliament\u201d on the Rwanda treaty.", + "guid": "b2460688", + "categories": ["News", "Indy TV"], + "isoDate": "2023-12-08T09:35:38.000Z" + }, + { + "creator": "Lawrence Ostlere", + "date": "2023-12-08T09:35:11+00:00", + "title": "Jon Rahm\u2019s LIV defection is the ultimate Saudi power play in pivotal PGA Tour talks", + "link": "https://www.independent.co.uk/sport/golf/jon-rahm-liv-golf-pga-tour-talks-news-b2460437.html", + "pubDate": "Fri, 08 Dec 2023 09:35:11 GMT", + "dc:creator": "Lawrence Ostlere", + "dc:date": "2023-12-08T09:35:11+00:00", + "content": "

The world No 3 has ditched the PGA Tour for LIV Golf \u2013 seismic news ahead of crucial negotiations for the future of the game

", + "contentSnippet": "The world No 3 has ditched the PGA Tour for LIV Golf \u2013 seismic news ahead of crucial negotiations for the future of the game", + "guid": "b2460437", + "categories": ["Golf", "Sport"], + "isoDate": "2023-12-08T09:35:11.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2023-12-08T09:30:18+00:00", + "title": "Taiwan says Chinese \u2018weather balloon\u2019 spotted over Taiwan Strait ahead of crucial election", + "link": "https://www.independent.co.uk/asia/china/chinese-balloon-taiwan-strait-weather-b2460645.html", + "pubDate": "Fri, 08 Dec 2023 09:30:18 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2023-12-08T09:30:18+00:00", + "content": "

Taiwan says Chinese balloon travelled eastward for about an hour before disappearing

", + "contentSnippet": "Taiwan says Chinese balloon travelled eastward for about an hour before disappearing", + "guid": "b2460645", + "categories": ["China", "Asia"], + "isoDate": "2023-12-08T09:30:18.000Z" + }, + { + "creator": "Vicky Shaw", + "date": "2023-12-08T09:30:17+00:00", + "title": "Average two-year mortgage rate dips below 6% for first time in nearly six months", + "link": "https://www.independent.co.uk/money/average-twoyear-mortgage-rate-dips-below-6-for-first-time-in-nearly-six-months-b2460709.html", + "pubDate": "Fri, 08 Dec 2023 09:30:17 GMT", + "dc:creator": "Vicky Shaw", + "dc:date": "2023-12-08T09:30:17+00:00", + "content": "The average two-year fixed-rate homeowner mortgage deal on the market dipped to 5.99% on Friday, according to Moneyfactscompare.co.uk.", + "contentSnippet": "The average two-year fixed-rate homeowner mortgage deal on the market dipped to 5.99% on Friday, according to Moneyfactscompare.co.uk.", + "guid": "b2460709", + "categories": ["Money"], + "isoDate": "2023-12-08T09:30:17.000Z" + }, + { + "creator": "Barney Davis", + "date": "2023-12-08T09:27:39+00:00", + "title": "Shane MacGowan funeral - latest: Thousands to line Dublin streets to give Pogues singer perfect send off ", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/shane-macgowan-funeral-today-the-pogues-time-b2460626.html", + "pubDate": "Fri, 08 Dec 2023 09:27:39 GMT", + "dc:creator": "Barney Davis", + "dc:date": "2023-12-08T09:27:39+00:00", + "content": "

The Fairytale of New York singer will be laid to rest in a private cremation in Nenagh

", + "contentSnippet": "The Fairytale of New York singer will be laid to rest in a private cremation in Nenagh", + "guid": "b2460626", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-12-08T09:27:39.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2023-12-08T09:15:58+00:00", + "title": "Tuberculosis scare strikes North Carolina school", + "link": "https://www.independent.co.uk/news/world/americas/tuberculosis-north-carolina-school-spread-b2460373.html", + "pubDate": "Fri, 08 Dec 2023 09:15:58 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2023-12-08T09:15:58+00:00", + "content": "

A rare case of tuberculosis left students and parents at Ragsdale High School in \u2018panic\u2019

", + "contentSnippet": "A rare case of tuberculosis left students and parents at Ragsdale High School in \u2018panic\u2019", + "guid": "b2460373", + "categories": ["Americas", "World"], + "isoDate": "2023-12-08T09:15:58.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-08T09:13:21+00:00", + "title": "When will Conor McGregor return to the UFC?", + "link": "https://www.independent.co.uk/sport/ufc/conor-mcgregor-next-fight-return-date-b2428512.html", + "pubDate": "Fri, 08 Dec 2023 09:13:21 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-08T09:13:21+00:00", + "content": "

The Irishman, who last fought in July 2021, has finally returned to the Usada drug-testing pool

", + "contentSnippet": "The Irishman, who last fought in July 2021, has finally returned to the Usada drug-testing pool", + "guid": "b2428512", + "categories": ["UFC", "Sport"], + "isoDate": "2023-12-08T09:13:21.000Z" + }, + { + "creator": "Sport Staff", + "date": "2023-12-08T09:13:03+00:00", + "title": "The Independent\u2019s pound-for-pound boxing rankings", + "link": "https://www.independent.co.uk/sport/boxing/boxing-rankings-fighters-p4p-list-2023-b2421206.html", + "pubDate": "Fri, 08 Dec 2023 09:13:03 GMT", + "dc:creator": "Sport Staff", + "dc:date": "2023-12-08T09:13:03+00:00", + "content": "

Here are our top 10 men\u2019s boxers in the world

", + "contentSnippet": "Here are our top 10 men\u2019s boxers in the world", + "guid": "b2421206", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-12-08T09:13:03.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-08T09:12:54+00:00", + "title": "UFC rankings: The Independent\u2019s pound-for-pound fighters list", + "link": "https://www.independent.co.uk/sport/ufc/ufc-rankings-fighters-p4p-list-2023-b2446348.html", + "pubDate": "Fri, 08 Dec 2023 09:12:54 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-08T09:12:54+00:00", + "content": "

Here are our top 10 men\u2019s fighters in the UFC, in a list to be updated throughout the year

", + "contentSnippet": "Here are our top 10 men\u2019s fighters in the UFC, in a list to be updated throughout the year", + "guid": "b2446348", + "categories": ["UFC", "Sport"], + "isoDate": "2023-12-08T09:12:54.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-08T09:12:49+00:00", + "title": "Next UFC Fight Night: Event start time, card and how to watch", + "link": "https://www.independent.co.uk/sport/ufc/next-ufc-fight-event-december-schedule-2023-b2457962.html", + "pubDate": "Fri, 08 Dec 2023 09:12:49 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-08T09:12:49+00:00", + "content": "

All you need to know about the MMA promotion\u2019s upcoming fights

", + "contentSnippet": "All you need to know about the MMA promotion\u2019s upcoming fights", + "guid": "b2457962", + "categories": ["UFC", "Sport"], + "isoDate": "2023-12-08T09:12:49.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-08T09:12:35+00:00", + "title": "UFC schedule 2023: Every major fight happening this year", + "link": "https://www.independent.co.uk/sport/ufc/ufc-schedule-2023-events-fights-december-b2457960.html", + "pubDate": "Fri, 08 Dec 2023 09:12:35 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-08T09:12:35+00:00", + "content": "

Here\u2019s a look at every fight and event that the MMA promotion has left in 2023

", + "contentSnippet": "Here\u2019s a look at every fight and event that the MMA promotion has left in 2023", + "guid": "b2457960", + "categories": ["UFC", "Sport"], + "isoDate": "2023-12-08T09:12:35.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-08T09:12:06+00:00", + "title": "Devin Haney vs Regis Prograis time: When does fight start in UK and US this weekend?", + "link": "https://www.independent.co.uk/sport/boxing/haney-prograis-start-time-ring-walks-b2457985.html", + "pubDate": "Fri, 08 Dec 2023 09:12:06 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-08T09:12:06+00:00", + "content": "

Haney is vacating the undisputed lightweight belts and moving up to challenge Prograis at super-lightweight

", + "contentSnippet": "Haney is vacating the undisputed lightweight belts and moving up to challenge Prograis at super-lightweight", + "guid": "b2457985", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-12-08T09:12:06.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-08T09:12:02+00:00", + "title": "Devin Haney vs Regis Prograis live stream: How to watch fight online and on TV this weekend", + "link": "https://www.independent.co.uk/sport/boxing/haney-prograis-live-stream-watch-online-b2457973.html", + "pubDate": "Fri, 08 Dec 2023 09:12:02 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-08T09:12:02+00:00", + "content": "

Haney is vacating the undisputed lightweight belts and moving up to challenge Prograis at super-lightweight

", + "contentSnippet": "Haney is vacating the undisputed lightweight belts and moving up to challenge Prograis at super-lightweight", + "guid": "b2457973", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-12-08T09:12:02.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-12-08T09:12:00+00:00", + "title": "The unpredictable mystery being called \u2018best film of 2023\u2019 ", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/best-film-2023-trenque-lauquen-b2460698.html", + "pubDate": "Fri, 08 Dec 2023 09:12:00 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-12-08T09:12:00+00:00", + "content": "

Unsettling puzzle of a movie is destined to become a cult classic

", + "contentSnippet": "Unsettling puzzle of a movie is destined to become a cult classic", + "guid": "b2460698", + "categories": ["News", "Film", "Culture"], + "isoDate": "2023-12-08T09:12:00.000Z" + }, + { + "creator": "Richard Jolly", + "date": "2023-12-08T09:10:04+00:00", + "title": "Overworked and overcome, Newcastle prove modern football takes more than 11 players", + "link": "https://www.independent.co.uk/sport/football/newcastle-united-injuries-news-everton-b2460695.html", + "pubDate": "Fri, 08 Dec 2023 09:10:04 GMT", + "dc:creator": "Richard Jolly", + "dc:date": "2023-12-08T09:10:04+00:00", + "content": "

With a packed fixture list and without replacements ready to change the game, Eddie Howe is left trying to limit the damage

", + "contentSnippet": "With a packed fixture list and without replacements ready to change the game, Eddie Howe is left trying to limit the damage", + "guid": "b2460695", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T09:10:04.000Z" + }, + { + "creator": "Andrea Blanco", + "date": "2023-12-08T09:05:19+00:00", + "title": "Texas shooting spree: Young mother and handyman named among six victims in Austin ", + "link": "https://www.independent.co.uk/news/world/americas/texas-austin-shooting-unlv-latest-news-b2460687.html", + "pubDate": "Fri, 08 Dec 2023 09:05:19 GMT", + "dc:creator": "Andrea Blanco", + "dc:date": "2023-12-08T09:05:19+00:00", + "content": "

Shane James, 34, arrested on capital murder charges on Tuesday

", + "contentSnippet": "Shane James, 34, arrested on capital murder charges on Tuesday", + "guid": "b2460687", + "categories": ["Americas", "World"], + "isoDate": "2023-12-08T09:05:19.000Z" + }, + { + "creator": "Henry Saker-Clark", + "date": "2023-12-08T09:02:12+00:00", + "title": "Miner Anglo American reveals production cuts to combat cost rises", + "link": "https://www.independent.co.uk/business/miner-anglo-american-reveals-production-cuts-to-combat-cost-rises-b2460702.html", + "pubDate": "Fri, 08 Dec 2023 09:02:12 GMT", + "dc:creator": "Henry Saker-Clark", + "dc:date": "2023-12-08T09:02:12+00:00", + "content": "Shares in the FTSE 100 company slumped in early trading after it announced the move, which is set to result in a 4% drop in production next year.", + "contentSnippet": "Shares in the FTSE 100 company slumped in early trading after it announced the move, which is set to result in a 4% drop in production next year.", + "guid": "b2460702", + "categories": ["Business"], + "isoDate": "2023-12-08T09:02:12.000Z" + }, + { + "creator": "Finn Cliff Hodges", + "date": "2023-12-08T09:00:24+00:00", + "title": "Ricky Gervais \u2018condemned for ableist slur\u2019 in new Netflix special", + "link": "https://www.independent.co.uk/arts-entertainment/comedy/news/ricky-gervais-netflix-special-ableist-slur-b2460690.html", + "pubDate": "Fri, 08 Dec 2023 09:00:24 GMT", + "dc:creator": "Finn Cliff Hodges", + "dc:date": "2023-12-08T09:00:24+00:00", + "content": "

Gervais recieves backlash after he jokes that terminally ill children are \u2018f****** re******\u2019, in new teaser for Netflix special

", + "contentSnippet": "Gervais recieves backlash after he jokes that terminally ill children are \u2018f****** re******\u2019, in new teaser for Netflix special", + "guid": "b2460690", + "categories": ["News", "Comedy", "Culture"], + "isoDate": "2023-12-08T09:00:24.000Z" + }, + { + "creator": "Jonathan Veal", + "date": "2023-12-08T09:00:23+00:00", + "title": "It would mean everything \u2013 Rob Cross hoping improved form can bring world title", + "link": "https://www.independent.co.uk/sport/rob-cross-phil-taylor-paddy-power-professional-darts-corporation-alexandra-palace-b2460699.html", + "pubDate": "Fri, 08 Dec 2023 09:00:23 GMT", + "dc:creator": "Jonathan Veal", + "dc:date": "2023-12-08T09:00:23+00:00", + "content": "The 33-year-old was crowned world champion in 2018.", + "contentSnippet": "The 33-year-old was crowned world champion in 2018.", + "guid": "b2460699", + "categories": ["Sport"], + "isoDate": "2023-12-08T09:00:23.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-08T08:58:37+00:00", + "title": "Watch: Intruder floods winery cellar with 5,000 gallons of wine", + "link": "https://www.independent.co.uk/tv/news/intruder-wine-cellar-floods-washington-b2460683.html", + "pubDate": "Fri, 08 Dec 2023 08:58:37 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-08T08:58:37+00:00", + "content": "

A masked intruder flooded a winery\u2019s cellar with 5,000 gallons of wine.

", + "contentSnippet": "A masked intruder flooded a winery\u2019s cellar with 5,000 gallons of wine.", + "guid": "b2460683", + "categories": ["News", "Indy TV"], + "isoDate": "2023-12-08T08:58:37.000Z" + }, + { + "creator": "Najib Jobain,Bassem Mroue and Elena Becatoros", + "date": "2023-12-08T08:57:48+00:00", + "title": "Palestinians crowd into ever-shrinking areas in Gaza as Israel's war against Hamas enters 3rd month", + "link": "https://www.independent.co.uk/news/gaza-ap-israel-hamas-united-nations-b2460694.html", + "pubDate": "Fri, 08 Dec 2023 08:57:48 GMT", + "dc:creator": "Najib Jobain,Bassem Mroue and Elena Becatoros", + "dc:date": "2023-12-08T08:57:48+00:00", + "content": "Desperate Palestinians fleeing Israel\u2019s expanding ground offensive crowded into an ever-shrinking area of the Gaza Strip as the Israel-Hamas war entered its third month Friday", + "contentSnippet": "Desperate Palestinians fleeing Israel\u2019s expanding ground offensive crowded into an ever-shrinking area of the Gaza Strip as the Israel-Hamas war entered its third month Friday", + "guid": "b2460694", + "isoDate": "2023-12-08T08:57:48.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-08T08:55:12+00:00", + "title": "Watch live: Cop28 President Al Jaber holds press conference as he urges nations to \u2018get out of comfort zones\u2019", + "link": "https://www.independent.co.uk/news/cop28-dubai-president-press-conference-stream-b2460677.html", + "pubDate": "Fri, 08 Dec 2023 08:55:12 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-08T08:55:12+00:00", + "content": "

Watch live as Cop28 President Sultan Al Jaber holds a news conference on Friday (8 December).

", + "contentSnippet": "Watch live as Cop28 President Sultan Al Jaber holds a news conference on Friday (8 December).", + "guid": "b2460677", + "isoDate": "2023-12-08T08:55:12.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2023-12-08T08:44:57+00:00", + "title": "Rishi Sunak news \u2013 live: Rwanda costs soar as PM \u2018hit by flurry of no confidence letters\u2019 in Tory revolt", + "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-rwanda-bill-suella-braverman-b2460660.html", + "pubDate": "Fri, 08 Dec 2023 08:44:57 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2023-12-08T08:44:57+00:00", + "content": "

Cost of scheme expected to rise to \u00a3290m after ministers initially spend \u00a3140m on deal

", + "contentSnippet": "Cost of scheme expected to rise to \u00a3290m after ministers initially spend \u00a3140m on deal", + "guid": "b2460660", + "categories": ["UK Politics", "UK"], + "isoDate": "2023-12-08T08:44:57.000Z" + }, + { + "creator": "Graeme Massie and Michelle Del Rey", + "date": "2023-12-08T08:44:30+00:00", + "title": "Jonathan Majors trial - live: Grace Jabbari breaks down in court over video from night of alleged assault", + "link": "https://www.independent.co.uk/news/world/americas/jonathan-majors-trial-grace-jabbari-girlfriend-latest-b2460682.html", + "pubDate": "Fri, 08 Dec 2023 08:44:30 GMT", + "dc:creator": "Graeme Massie and Michelle Del Rey", + "dc:date": "2023-12-08T08:44:30+00:00", + "content": "

Ex-girlfriend Grace Jabbari cried while providing testimony

", + "contentSnippet": "Ex-girlfriend Grace Jabbari cried while providing testimony", + "guid": "b2460682", + "categories": ["Americas", "World"], + "isoDate": "2023-12-08T08:44:30.000Z" + }, + { + "creator": "Kelly Rissman and Katie Hawkinson", + "date": "2023-12-08T08:36:53+00:00", + "title": "Young Thug trial judge sends stark warning to jury: Live updates ", + "link": "https://www.independent.co.uk/news/world/americas/young-thug-trial-sentence-latest-update-b2460680.html", + "pubDate": "Fri, 08 Dec 2023 08:36:53 GMT", + "dc:creator": "Kelly Rissman and Katie Hawkinson", + "dc:date": "2023-12-08T08:36:53+00:00", + "content": "

Girlfriend Mariah the Scientist reacts to sweater claims in Rico trial

", + "contentSnippet": "Girlfriend Mariah the Scientist reacts to sweater claims in Rico trial", + "guid": "b2460680", + "categories": ["Americas", "World"], + "isoDate": "2023-12-08T08:36:53.000Z" + }, + { + "creator": "Nick Hilton", + "date": "2023-12-08T08:35:48+00:00", + "title": "Smothered review: A zeitgeisty portrait of millennial life", + "link": "https://www.independent.co.uk/arts-entertainment/tv/reviews/smothered-sky-comedy-review-b2459326.html", + "pubDate": "Fri, 08 Dec 2023 08:35:48 GMT", + "dc:creator": "Nick Hilton", + "dc:date": "2023-12-08T08:35:48+00:00", + "content": "

Sky Comedy romcom stars Danielle Vitalis and Jon Pointing as chalk-and-cheese lovers

", + "contentSnippet": "Sky Comedy romcom stars Danielle Vitalis and Jon Pointing as chalk-and-cheese lovers", + "guid": "b2459326", + "categories": ["Reviews", "TV & Radio", "Culture"], + "isoDate": "2023-12-08T08:35:48.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2023-12-08T08:32:04+00:00", + "title": "A career professor gunman, three killed and a campus in fear: What we know about the UNLV shooting ", + "link": "https://www.the-independent.com/news/world/americas/crime/unlv-shooting-las-vegas-anthony-polito-professor-b2460679.html", + "pubDate": "Fri, 08 Dec 2023 08:32:04 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2023-12-08T08:32:04+00:00", + "content": "

While authorities reassured the commmuntity that there was \u2018no further threat,\u2019 many questions still remain, largely to do with the shooter and their motive. Mike Bedigan looks at what we know so far

", + "contentSnippet": "While authorities reassured the commmuntity that there was \u2018no further threat,\u2019 many questions still remain, largely to do with the shooter and their motive. Mike Bedigan looks at what we know so far", + "guid": "b2460679", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-12-08T08:32:04.000Z" + }, + { + "creator": "Karl Matchett", + "date": "2023-12-08T08:25:16+00:00", + "title": "Jermaine Jenas and the \u2018unique\u2019 skillset which can see Formula E thrive in 2024", + "link": "https://www.independent.co.uk/sport/formula-e/jermaine-jenas-new-presenter-tnt-sports-b2459418.html", + "pubDate": "Fri, 08 Dec 2023 08:25:16 GMT", + "dc:creator": "Karl Matchett", + "dc:date": "2023-12-08T08:25:16+00:00", + "content": "

Interview: The former England international midfielder and The One Show presenter tells the Independent about embarking on a new journey outside his comfort zone

", + "contentSnippet": "Interview: The former England international midfielder and The One Show presenter tells the Independent about embarking on a new journey outside his comfort zone", + "guid": "b2459418", + "categories": ["Formula E", "Sport"], + "isoDate": "2023-12-08T08:25:16.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2023-12-08T08:25:11+00:00", + "title": "First victims in UNLV mass shooting identified", + "link": "https://www.the-independent.com/news/world/americas/crime/vegas-unlv-shooting-anthony-polito-victims-b2460678.html", + "pubDate": "Fri, 08 Dec 2023 08:25:11 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2023-12-08T08:25:11+00:00", + "content": "

All four of the victims were faculty members at the UNLV, the college\u2019s president Keith Whitfield has confirmed

", + "contentSnippet": "All four of the victims were faculty members at the UNLV, the college\u2019s president Keith Whitfield has confirmed", + "guid": "b2460678", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-12-08T08:25:11.000Z" + }, + { + "creator": "Jamie Braidwood", + "date": "2023-12-08T08:21:24+00:00", + "title": "Jon Rahm insists he is not joining LIV Golf \u2018for the money\u2019 after \u00a3450m move", + "link": "https://www.independent.co.uk/sport/golf/jon-rahm-liv-golf-money-pga-tour-b2460673.html", + "pubDate": "Fri, 08 Dec 2023 08:21:24 GMT", + "dc:creator": "Jamie Braidwood", + "dc:date": "2023-12-08T08:21:24+00:00", + "content": "

The Masters champion has become the highest-ranked player to sign for the Saudi-backed tour

", + "contentSnippet": "The Masters champion has become the highest-ranked player to sign for the Saudi-backed tour", + "guid": "b2460673", + "categories": ["Golf", "Sport"], + "isoDate": "2023-12-08T08:21:24.000Z" + }, + { + "creator": "Rachel Sharp", + "date": "2023-12-08T08:20:40+00:00", + "title": "Who is Anthony Polito? The college professor accused of killing three in UNLV shooting ", + "link": "https://www.the-independent.com/news/world/americas/crime/anthony-polito-unlv-shooter-professor-b2460639.html", + "pubDate": "Fri, 08 Dec 2023 08:20:40 GMT", + "dc:creator": "Rachel Sharp", + "dc:date": "2023-12-08T08:20:40+00:00", + "content": "

Anthony Polito, 67, unsuccessfully applied for a college professorship at UNLV sometime prior to embarking on the deadly shooting rampage, sources say

", + "contentSnippet": "Anthony Polito, 67, unsuccessfully applied for a college professorship at UNLV sometime prior to embarking on the deadly shooting rampage, sources say", + "guid": "b2460639", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-12-08T08:20:40.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2023-12-08T08:17:46+00:00", + "title": "Australian man dies after \u2018falling head-first\u2019 into deep sand pit", + "link": "https://www.independent.co.uk/news/world/australasia/australia-man-dies-buried-sand-b2460581.html", + "pubDate": "Fri, 08 Dec 2023 08:17:46 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2023-12-08T08:17:46+00:00", + "content": "

Man succumbs to injuries after falling into a sand hole meant for roasting pig

", + "contentSnippet": "Man succumbs to injuries after falling into a sand hole meant for roasting pig", + "guid": "b2460581", + "categories": ["Australasia", "World"], + "isoDate": "2023-12-08T08:17:46.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-12-08T08:17:38+00:00", + "title": "First look at Lego Fortnite as trailer released for Minecraft rival", + "link": "https://www.independent.co.uk/tv/culture/lego-fortnite-cinematic-trailer-release-b2460670.html", + "pubDate": "Fri, 08 Dec 2023 08:17:38 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-12-08T08:17:38+00:00", + "content": "

Fortnite released its first cinematic trailer for its collaboration with Lego alongside the game mode\u2019s launch on December 7.

", + "contentSnippet": "Fortnite released its first cinematic trailer for its collaboration with Lego alongside the game mode\u2019s launch on December 7.", + "guid": "b2460670", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-12-08T08:17:38.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-08T08:14:06+00:00", + "title": "Watch: Princess of Wales invites fans to join royal family for special Christmas carol service", + "link": "https://www.independent.co.uk/tv/lifestyle/kate-princess-royal-christmas-westminster-abbey-b2460665.html", + "pubDate": "Fri, 08 Dec 2023 08:14:06 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-08T08:14:06+00:00", + "content": "

The Princess of Wales invites people across the country to join her for a \u201cspecial carol service\u201d at Westminster Abbey.

", + "contentSnippet": "The Princess of Wales invites people across the country to join her for a \u201cspecial carol service\u201d at Westminster Abbey.", + "guid": "b2460665", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2023-12-08T08:14:06.000Z" + }, + { + "creator": "Ken Moritsugu", + "date": "2023-12-08T08:09:47+00:00", + "title": "Post-summit news conferences highlight the divide between China and the EU", + "link": "https://www.independent.co.uk/news/european-union-ap-china-chinese-ursula-von-der-leyen-b2460675.html", + "pubDate": "Fri, 08 Dec 2023 08:09:47 GMT", + "dc:creator": "Ken Moritsugu", + "dc:date": "2023-12-08T08:09:47+00:00", + "content": "From trade to human rights, the leaders of China and the European Union differed on a wide range of issues at a summit this week in the Chinese capital", + "contentSnippet": "From trade to human rights, the leaders of China and the European Union differed on a wide range of issues at a summit this week in the Chinese capital", + "guid": "b2460675", + "isoDate": "2023-12-08T08:09:47.000Z" + }, + { + "creator": "Oliver O'Connell and Alex Woodward", + "date": "2023-12-08T08:01:11+00:00", + "title": "Trump returns to court for New York fraud trial: Live updates ", + "link": "https://www.independent.co.uk/news/world/americas/trump-fraud-trial-live-updates-truth-social-b2460661.html", + "pubDate": "Fri, 08 Dec 2023 08:01:11 GMT", + "dc:creator": "Oliver O'Connell and Alex Woodward", + "dc:date": "2023-12-08T08:01:11+00:00", + "content": "

Court appearance comes on the heels of troubling \u2018dictator\u2019 comments

", + "contentSnippet": "Court appearance comes on the heels of troubling \u2018dictator\u2019 comments", + "guid": "b2460661", + "categories": ["Americas", "World"], + "isoDate": "2023-12-08T08:01:11.000Z" + }, + { + "creator": "Helen Brown", + "date": "2023-12-08T08:00:42+00:00", + "title": "I met Benjamin Zephaniah several times \u2013 he was as open and kind-hearted as his poetry ", + "link": "https://www.independent.co.uk/arts-entertainment/books/features/benjamin-zephaniah-death-poetry-poet-meeting-b2460666.html", + "pubDate": "Fri, 08 Dec 2023 08:00:42 GMT", + "dc:creator": "Helen Brown", + "dc:date": "2023-12-08T08:00:42+00:00", + "content": "

Helen Brown interviewed the poet and writer on many occasions before his death. Here, she speaks about what made him so special, both to herself and her autistic son on whom his poetry had such a profound effect

", + "contentSnippet": "Helen Brown interviewed the poet and writer on many occasions before his death. Here, she speaks about what made him so special, both to herself and her autistic son on whom his poetry had such a profound effect", + "guid": "b2460666", + "categories": ["Features", "Books", "Culture"], + "isoDate": "2023-12-08T08:00:42.000Z" + }, + { + "creator": "Marcia Dunn", + "date": "2023-12-08T08:00:06+00:00", + "title": "Asteroid will pass in front of bright star Betelgeuse to produce a rare eclipse visible to millions", + "link": "https://www.independent.co.uk/news/betelgeuse-ap-cape-canaveral-one-italy-b2460671.html", + "pubDate": "Fri, 08 Dec 2023 08:00:06 GMT", + "dc:creator": "Marcia Dunn", + "dc:date": "2023-12-08T08:00:06+00:00", + "content": "One of the biggest and brightest stars in the night sky will momentarily vanish", + "contentSnippet": "One of the biggest and brightest stars in the night sky will momentarily vanish", + "guid": "b2460671", + "isoDate": "2023-12-08T08:00:06.000Z" + }, + { + "creator": "Henry Saker-Clark", + "date": "2023-12-08T07:56:21+00:00", + "title": "House sales to stay \u2018subdued\u2019, warns Berkeley, as reservations slump", + "link": "https://www.independent.co.uk/business/house-sales-to-stay-subdued-warns-berkeley-as-reservations-slump-b2460667.html", + "pubDate": "Fri, 08 Dec 2023 07:56:21 GMT", + "dc:creator": "Henry Saker-Clark", + "dc:date": "2023-12-08T07:56:21+00:00", + "content": "The London-listed firm\u2019s profits lifted for the past half-year despite completing fewer homes.", + "contentSnippet": "The London-listed firm\u2019s profits lifted for the past half-year despite completing fewer homes.", + "guid": "b2460667", + "categories": ["Business"], + "isoDate": "2023-12-08T07:56:21.000Z" + }, + { + "creator": "Jamie Braidwood", + "date": "2023-12-08T07:56:06+00:00", + "title": "Rory McIlroy calls for major rule change after Jon Rahm\u2019s LIV Golf move", + "link": "https://www.independent.co.uk/sport/golf/jon-rahm-ryder-cup-liv-rory-mcilroy-b2460663.html", + "pubDate": "Fri, 08 Dec 2023 07:56:06 GMT", + "dc:creator": "Jamie Braidwood", + "dc:date": "2023-12-08T07:56:06+00:00", + "content": "

Rahm\u2019s place on Europe\u2019s future Ryder Cup team is in doubt after joining LIV Golf in a deal that could be worth up to \u00a3450m

", + "contentSnippet": "Rahm\u2019s place on Europe\u2019s future Ryder Cup team is in doubt after joining LIV Golf in a deal that could be worth up to \u00a3450m", + "guid": "b2460663", + "categories": ["Golf", "Sport"], + "isoDate": "2023-12-08T07:56:06.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-08T07:45:07+00:00", + "title": "Joey Barton suggests women football pundits hired to \u2018tick boxes\u2019", + "link": "https://www.independent.co.uk/tv/sport/joey-barton-women-football-piers-morgan-b2460659.html", + "pubDate": "Fri, 08 Dec 2023 07:45:07 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-08T07:45:07+00:00", + "content": "

Joey Barton appears to suggest women football pundits are hired to \u201ctick boxes\u201d when he defended his controversial criticism of female broadcasters in men\u2019s football.

", + "contentSnippet": "Joey Barton appears to suggest women football pundits are hired to \u201ctick boxes\u201d when he defended his controversial criticism of female broadcasters in men\u2019s football.", + "guid": "b2460659", + "categories": ["Sport", "Indy TV"], + "isoDate": "2023-12-08T07:45:07.000Z" + }, + { + "creator": "Andy Hampson", + "date": "2023-12-08T07:35:48+00:00", + "title": "Sean Dyche hails Everton unity after climbing out of Premier League relegation zone", + "link": "https://www.independent.co.uk/sport/football/everton-sean-dyche-eddie-howe-abdoulaye-doucoure-dwight-mcneil-b2460534.html", + "pubDate": "Fri, 08 Dec 2023 07:35:48 GMT", + "dc:creator": "Andy Hampson", + "dc:date": "2023-12-08T07:35:48+00:00", + "content": "

Dwight McNeil, Abdoulaye Doucoure and Beto scored for the Toffees in a 3-0 win over Newcastle

", + "contentSnippet": "Dwight McNeil, Abdoulaye Doucoure and Beto scored for the Toffees in a 3-0 win over Newcastle", + "guid": "b2460534", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T07:35:48.000Z" + }, + { + "creator": "George Sessions", + "date": "2023-12-08T07:34:16+00:00", + "title": "Ange Postecoglou urges Tottenham to bounce back from West Ham defeat", + "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-west-ham-newcastle-cristian-romero-jarrod-bowen-b2460533.html", + "pubDate": "Fri, 08 Dec 2023 07:34:16 GMT", + "dc:creator": "George Sessions", + "dc:date": "2023-12-08T07:34:16+00:00", + "content": "

Spurs have not won since October 27 and welcome top-four rivals Newcastle to N17 on Sunday

", + "contentSnippet": "Spurs have not won since October 27 and welcome top-four rivals Newcastle to N17 on Sunday", + "guid": "b2460533", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T07:34:16.000Z" + }, + { + "creator": "Jamie Braidwood", + "date": "2023-12-08T07:31:14+00:00", + "title": "Son Heung-min labels Tottenham \u2018soft\u2019 as Spurs make unwanted Premier League history", + "link": "https://www.independent.co.uk/sport/football/tottenham-spurs-son-soft-premier-league-b2460658.html", + "pubDate": "Fri, 08 Dec 2023 07:31:14 GMT", + "dc:creator": "Jamie Braidwood", + "dc:date": "2023-12-08T07:31:14+00:00", + "content": "

A 2-1 defeat to West Ham means Spurs have now dropped points from a winning position in five straight games

", + "contentSnippet": "A 2-1 defeat to West Ham means Spurs have now dropped points from a winning position in five straight games", + "guid": "b2460658", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T07:31:14.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-08T07:28:05+00:00", + "title": "Watch Benjamin Zephaniah\u2019s last TV interview before death ", + "link": "https://www.independent.co.uk/tv/culture/benjamin-zephaniah-poet-death-last-interview-b2460657.html", + "pubDate": "Fri, 08 Dec 2023 07:28:05 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-08T07:28:05+00:00", + "content": "

Poet and author Benjamin Zephaniah discusses the repercussions of slavery in modern times in what is believed to be his last television interview before his death.

", + "contentSnippet": "Poet and author Benjamin Zephaniah discusses the repercussions of slavery in modern times in what is believed to be his last television interview before his death.", + "guid": "b2460657", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-12-08T07:28:05.000Z" + }, + { + "creator": "Nicole Vassell", + "date": "2023-12-08T07:26:08+00:00", + "title": "How Benjamin Zephaniah\u2019s brilliant performance in Peaky Blinders brought him to a wider global audience", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/zephaniah-death-peaky-blinders-star-b2460656.html", + "pubDate": "Fri, 08 Dec 2023 07:26:08 GMT", + "dc:creator": "Nicole Vassell", + "dc:date": "2023-12-08T07:26:08+00:00", + "content": "

Much loved writer and poet brought genuine Birmingham charm to the BBC period crime drama

", + "contentSnippet": "Much loved writer and poet brought genuine Birmingham charm to the BBC period crime drama", + "guid": "b2460656", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-08T07:26:08.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2023-12-08T07:24:27+00:00", + "title": "Trump marks Pearl Harbor anniversary years after claim he didn\u2019t know what it was", + "link": "https://www.the-independent.com/news/world/americas/us-politics/donald-trump-pearl-harbor-anniversary-b2460578.html", + "pubDate": "Fri, 08 Dec 2023 07:24:27 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2023-12-08T07:24:27+00:00", + "content": "

In 2020, a book by two Washington Post reporters claimed that Trump had limited knowledge of Pearl Harbor attack

", + "contentSnippet": "In 2020, a book by two Washington Post reporters claimed that Trump had limited knowledge of Pearl Harbor attack", + "guid": "b2460578", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-08T07:24:27.000Z" + }, + { + "creator": "Finn Cliff Hodges", + "date": "2023-12-08T07:24:15+00:00", + "title": "When Loyle Carner met his hero, Benjamin Zephaniah ", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/benjamin-zephaniah-loyle-carner-meet-b2460655.html", + "pubDate": "Fri, 08 Dec 2023 07:24:15 GMT", + "dc:creator": "Finn Cliff Hodges", + "dc:date": "2023-12-08T07:24:15+00:00", + "content": "

Carner pays tribute to \u2018the man that gave me my name\u2019 in heartfelt post after Zephiniah\u2019s death on Thursday

", + "contentSnippet": "Carner pays tribute to \u2018the man that gave me my name\u2019 in heartfelt post after Zephiniah\u2019s death on Thursday", + "guid": "b2460655", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-12-08T07:24:15.000Z" + }, + { + "creator": "Kevin E G Perry", + "date": "2023-12-08T07:21:50+00:00", + "title": "Cillian Murphy remembers \u2018proud Brummie and Peaky Blinder\u2019 Benjamin Zephaniah", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/cillian-murphy-benjamin-zephaniah-death-peaky-blinders-b2460654.html", + "pubDate": "Fri, 08 Dec 2023 07:21:50 GMT", + "dc:creator": "Kevin E G Perry", + "dc:date": "2023-12-08T07:21:50+00:00", + "content": "

Murphy paid tribute to the late poet as \u2018a truly gifted and beautiful human being\u2019

", + "contentSnippet": "Murphy paid tribute to the late poet as \u2018a truly gifted and beautiful human being\u2019", + "guid": "b2460654", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-08T07:21:50.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2023-12-08T07:21:19+00:00", + "title": "UNLV shooting suspect had \u2018target list\u2019 of people before deadly attack", + "link": "https://www.independent.co.uk/news/world/americas/las-vegas-nevada-campus-shooting-target-list-anthony-polito-b2460624.html", + "pubDate": "Fri, 08 Dec 2023 07:21:19 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2023-12-08T07:21:19+00:00", + "content": "

\u2018None of the individuals on the target list became a victim,\u2019 says Clark County sheriff Kevin McMahill

", + "contentSnippet": "\u2018None of the individuals on the target list became a victim,\u2019 says Clark County sheriff Kevin McMahill", + "guid": "b2460624", + "categories": ["Americas", "World"], + "isoDate": "2023-12-08T07:21:19.000Z" + }, + { + "creator": "Kehinde Andrews", + "date": "2023-12-08T07:16:59+00:00", + "title": "Voices: Benjamin Zephaniah was the heart and consciousness of Black Britain ", + "link": "https://www.independent.co.uk/voices/benjamin-zephaniah-death-poet-black-race-b2460651.html", + "pubDate": "Fri, 08 Dec 2023 07:16:59 GMT", + "dc:creator": "Kehinde Andrews", + "dc:date": "2023-12-08T07:16:59+00:00", + "content": "

The dub poet and national treasure did not try to fit in. Instead, he embraced the language and rhythm of his upbringing \u2013 and in doing so, he changed the establishment, writes academic and activist Kehinde Andrews

", + "contentSnippet": "The dub poet and national treasure did not try to fit in. Instead, he embraced the language and rhythm of his upbringing \u2013 and in doing so, he changed the establishment, writes academic and activist Kehinde Andrews", + "guid": "b2460651", + "categories": ["Voices"], + "isoDate": "2023-12-08T07:16:59.000Z" + }, + { + "creator": "Jim van Wijk", + "date": "2023-12-08T07:16:06+00:00", + "title": "Never say never \u2013 Kevin Sinfield needs rest before next MND fundraising mission", + "link": "https://www.independent.co.uk/sport/kevin-sinfield-mnd-rob-burrow-london-leeds-b2460430.html", + "pubDate": "Fri, 08 Dec 2023 07:16:06 GMT", + "dc:creator": "Jim van Wijk", + "dc:date": "2023-12-08T07:16:06+00:00", + "content": "On Thursday evening, the total raised by his ultramarathon challenge had passed the \u00a3777,777 target.", + "contentSnippet": "On Thursday evening, the total raised by his ultramarathon challenge had passed the \u00a3777,777 target.", + "guid": "b2460430", + "categories": ["Sport"], + "isoDate": "2023-12-08T07:16:06.000Z" + }, + { + "creator": "Tom Watling ,Arpan Rai and Maira Butt", + "date": "2023-12-08T07:07:30+00:00", + "title": "Ukraine-Russia war \u2013 live: Cameron warns blocking funds would be \u2018Christmas present\u2019 for Putin and Xi", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-vladimir-putin-news-today-b2460585.html", + "pubDate": "Fri, 08 Dec 2023 07:07:30 GMT", + "dc:creator": "Tom Watling ,Arpan Rai and Maira Butt", + "dc:date": "2023-12-08T07:07:30+00:00", + "content": "

US President Joe Biden says \u2018history will judge us\u2019 if further aid is not given to Ukraine

", + "contentSnippet": "US President Joe Biden says \u2018history will judge us\u2019 if further aid is not given to Ukraine", + "guid": "b2460585", + "categories": ["Europe", "World"], + "isoDate": "2023-12-08T07:07:30.000Z" + }, + { + "creator": "Karl Matchett", + "date": "2023-12-08T07:04:41+00:00", + "title": "Masters champion Jon Rahm confirms move to LIV Golf in \u00a3450m deal", + "link": "https://www.independent.co.uk/sport/golf/jon-rahm-liv-golf-pga-tour-pif-b2460643.html", + "pubDate": "Fri, 08 Dec 2023 07:04:41 GMT", + "dc:creator": "Karl Matchett", + "dc:date": "2023-12-08T07:04:41+00:00", + "content": "

The Masters champion joins the likes of Brooks Koepka at the Saudi-backed rival tour

", + "contentSnippet": "The Masters champion joins the likes of Brooks Koepka at the Saudi-backed rival tour", + "guid": "b2460643", + "categories": ["Golf", "Sport"], + "isoDate": "2023-12-08T07:04:41.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2023-12-08T07:00:21+00:00", + "title": "Ukraine actor dies after battling frontline wounds for months", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-actor-dies-vasyl-kukharskyi-front-line-b2460596.html", + "pubDate": "Fri, 08 Dec 2023 07:00:21 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2023-12-08T07:00:21+00:00", + "content": "

Tributes pour in for actor who joined Ukraine army during onset of Russia\u2019s invasion

", + "contentSnippet": "Tributes pour in for actor who joined Ukraine army during onset of Russia\u2019s invasion", + "guid": "b2460596", + "categories": ["Europe", "World"], + "isoDate": "2023-12-08T07:00:21.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-12-08T06:51:19+00:00", + "title": "I\u2019m a Celebrity \u2013 live: Danielle Harold eliminated from series ", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/im-a-celebrity-2023-elimination-who-left-latest-b2460642.html", + "pubDate": "Fri, 08 Dec 2023 06:51:19 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-12-08T06:51:19+00:00", + "content": "

Fifth celebrity was sent home on Thursday night

", + "contentSnippet": "Fifth celebrity was sent home on Thursday night", + "guid": "b2460642", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-08T06:51:19.000Z" + }, + { + "creator": "Isabel Debre,Samy Magdy and Najib Jobain", + "date": "2023-12-08T06:47:55+00:00", + "title": "Bloodshed, fear, hunger, desperation: Palestinians try to survive war's new chapter in southern Gaza", + "link": "https://www.independent.co.uk/news/ap-palestinians-khan-younis-united-nations-people-b2460669.html", + "pubDate": "Fri, 08 Dec 2023 06:47:55 GMT", + "dc:creator": "Isabel Debre,Samy Magdy and Najib Jobain", + "dc:date": "2023-12-08T06:47:55+00:00", + "content": "In recent days, Israeli tanks have rumbled into southern Gaza, starting with Khan Younis", + "contentSnippet": "In recent days, Israeli tanks have rumbled into southern Gaza, starting with Khan Younis", + "guid": "b2460669", + "isoDate": "2023-12-08T06:47:55.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-12-08T06:47:37+00:00", + "title": "Emily Blunt tells Anne Hathaway how Devil Wears Prada \u2018misery\u2019 changed Meryl Streep\u2019s career ", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/anne-hathaway-emily-blunt-meryl-streep-b2460641.html", + "pubDate": "Fri, 08 Dec 2023 06:47:37 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-12-08T06:47:37+00:00", + "content": "

\u2018Do you know she\u2019s never done it since?\u2019 \u2018Oppenheimer\u2019 actor told former co-star

", + "contentSnippet": "\u2018Do you know she\u2019s never done it since?\u2019 \u2018Oppenheimer\u2019 actor told former co-star", + "guid": "b2460641", + "categories": ["News", "Film", "Culture"], + "isoDate": "2023-12-08T06:47:37.000Z" + }, + { + "creator": "Mike Bedigan,Rachel Sharp,Martha McHardy and Maroosha Muzaffar", + "date": "2023-12-08T06:41:32+00:00", + "title": "UNLV shooting suspect Anthony Polito had \u2018target list\u2019 before attack: Live", + "link": "https://www.independent.co.uk/news/world/americas/unlv-shooter-anthony-polito-las-vegas-b2460612.html", + "pubDate": "Fri, 08 Dec 2023 06:41:32 GMT", + "dc:creator": "Mike Bedigan,Rachel Sharp,Martha McHardy and Maroosha Muzaffar", + "dc:date": "2023-12-08T06:41:32+00:00", + "content": "

Three faculty members killed in shooting at university in Las Vegas

", + "contentSnippet": "Three faculty members killed in shooting at university in Las Vegas", + "guid": "b2460612", + "categories": ["Americas", "World"], + "isoDate": "2023-12-08T06:41:32.000Z" + }, + { + "creator": "Vishwam Sankaran", + "date": "2023-12-08T06:36:44+00:00", + "title": "X rival Threads now has new hashtag-like feature", + "link": "https://www.independent.co.uk/tech/threads-x-twitter-rival-hashtags-b2460637.html", + "pubDate": "Fri, 08 Dec 2023 06:36:44 GMT", + "dc:creator": "Vishwam Sankaran", + "dc:date": "2023-12-08T06:36:44+00:00", + "content": "

\u2018Only one tag per post,\u2019 Instagram boss says

", + "contentSnippet": "\u2018Only one tag per post,\u2019 Instagram boss says", + "guid": "b2460637", + "categories": ["Tech"], + "isoDate": "2023-12-08T06:36:44.000Z" + }, + { + "creator": "Louis Chilton", + "date": "2023-12-08T06:30:00+00:00", + "title": "Wonka shows Roald Dahl\u2019s biggest threat isn\u2019t \u2018cancel culture\u2019 \u2013 it\u2019s corporate greed", + "link": "https://www.independent.co.uk/arts-entertainment/films/features/wonka-roald-dahl-timothee-chalamet-b2460253.html", + "pubDate": "Fri, 08 Dec 2023 06:30:00 GMT", + "dc:creator": "Louis Chilton", + "dc:date": "2023-12-08T06:30:00+00:00", + "content": "

Warner Bros\u2019 effects-laden prequel starring Timoth\u00e9e Chalamet as the young chocolatier is far better than it had any right to be. But Hollywood\u2019s obsession with adapting Roald Dahl risks spoiling his singular legacy, writes Louis Chilton

", + "contentSnippet": "Warner Bros\u2019 effects-laden prequel starring Timoth\u00e9e Chalamet as the young chocolatier is far better than it had any right to be. But Hollywood\u2019s obsession with adapting Roald Dahl risks spoiling his singular legacy, writes Louis Chilton", + "guid": "b2460253", + "categories": ["Features", "Film", "Culture"], + "isoDate": "2023-12-08T06:30:00.000Z" + }, + { + "creator": "Isobel Lewis", + "date": "2023-12-08T06:30:00+00:00", + "title": "A festive treat or a living hell?: How Winter Wonderland became the most divisive attraction in Britain", + "link": "https://www.independent.co.uk/life-style/winter-wonderland-london-price-crowds-tickets-b2460271.html", + "pubDate": "Fri, 08 Dec 2023 06:30:00 GMT", + "dc:creator": "Isobel Lewis", + "dc:date": "2023-12-08T06:30:00+00:00", + "content": "

Every December, tourists, loved-up couples and the allegedly basic descend upon a gleefully inauthentic Christmas village in London\u2019s Hyde Park, where prices are high, neon lights shine bright, and cringe is inevitable. But, asks Isobel Lewis, is mocking Winter Wonderland an appropriate response to its festive evils? Or is it plain old snobbery?

", + "contentSnippet": "Every December, tourists, loved-up couples and the allegedly basic descend upon a gleefully inauthentic Christmas village in London\u2019s Hyde Park, where prices are high, neon lights shine bright, and cringe is inevitable. But, asks Isobel Lewis, is mocking Winter Wonderland an appropriate response to its festive evils? Or is it plain old snobbery?", + "guid": "b2460271", + "categories": ["Lifestyle"], + "isoDate": "2023-12-08T06:30:00.000Z" + }, + { + "creator": "The Associated Press", + "date": "2023-12-08T06:22:50+00:00", + "title": "AP Week in Pictures: Europe and Africa", + "link": "https://www.independent.co.uk/news/pope-francis-ap-europe-africa-bucharest-b2460638.html", + "pubDate": "Fri, 08 Dec 2023 06:22:50 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2023-12-08T06:22:50+00:00", + "content": "

Dec. 1\u20137, 2023

", + "contentSnippet": "Dec. 1\u20137, 2023", + "guid": "b2460638", + "isoDate": "2023-12-08T06:22:50.000Z" + }, + { + "creator": "Alex Ross", + "date": "2023-12-08T06:22:13+00:00", + "title": "The winter allowances and support can you claim in cold weather", + "link": "https://www.independent.co.uk/news/uk/home-news/winter-fuel-allowance-2023-b2460634.html", + "pubDate": "Fri, 08 Dec 2023 06:22:13 GMT", + "dc:creator": "Alex Ross", + "dc:date": "2023-12-08T06:22:13+00:00", + "content": "

The cash payments and support available for household heating bills over the winter, who can apply and how

", + "contentSnippet": "The cash payments and support available for household heating bills over the winter, who can apply and how", + "guid": "b2460634", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-08T06:22:13.000Z" + }, + { + "creator": "Luis Andres Henao", + "date": "2023-12-08T06:13:04+00:00", + "title": "What is Bodhi Day? And when do Buddhists celebrate it?", + "link": "https://www.independent.co.uk/news/buddha-ap-scott-mitchell-east-asia-japan-b2460635.html", + "pubDate": "Fri, 08 Dec 2023 06:13:04 GMT", + "dc:creator": "Luis Andres Henao", + "dc:date": "2023-12-08T06:13:04+00:00", + "content": "Bodhi Day is a Buddhist holiday that commemorates the day Siddhartha Gautama attained awakening or enlightenment and became the Buddha 2,600 years ago", + "contentSnippet": "Bodhi Day is a Buddhist holiday that commemorates the day Siddhartha Gautama attained awakening or enlightenment and became the Buddha 2,600 years ago", + "guid": "b2460635", + "isoDate": "2023-12-08T06:13:04.000Z" + }, + { + "creator": "Sonia Twigg", + "date": "2023-12-08T06:08:25+00:00", + "title": "Nick Kyrgios launches \u2018intimate\u2019 OnlyFans account ", + "link": "https://www.independent.co.uk/sport/tennis/nick-kyrgios-onlyfans-account-b2460629.html", + "pubDate": "Fri, 08 Dec 2023 06:08:25 GMT", + "dc:creator": "Sonia Twigg", + "dc:date": "2023-12-08T06:08:25+00:00", + "content": "

Kyrgios\u2019s OnlyFans content will be free to access

", + "contentSnippet": "Kyrgios\u2019s OnlyFans content will be free to access", + "guid": "b2460629", + "categories": ["Tennis", "Sport"], + "isoDate": "2023-12-08T06:08:25.000Z" + }, + { + "creator": "Vishwam Sankaran", + "date": "2023-12-08T06:07:16+00:00", + "title": "One of the brightest stars is all set to disappear next week in \u2018once-in-a-lifetime\u2019 event", + "link": "https://www.independent.co.uk/space/betelgeuse-star-disappear-almost-rare-b2460610.html", + "pubDate": "Fri, 08 Dec 2023 06:07:16 GMT", + "dc:creator": "Vishwam Sankaran", + "dc:date": "2023-12-08T06:07:16+00:00", + "content": "

Rare event would be opportunity to gain new knowledge about one of universe\u2019s brightest stars

", + "contentSnippet": "Rare event would be opportunity to gain new knowledge about one of universe\u2019s brightest stars", + "guid": "b2460610", + "categories": ["Space"], + "isoDate": "2023-12-08T06:07:16.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2023-12-08T06:05:32+00:00", + "title": "New England Patriots snap five-game slide with win over Pittsburgh Steelers", + "link": "https://www.independent.co.uk/sport/pittsburgh-steelers-new-england-patriots-new-england-pittsburgh-mitch-trubisky-b2460630.html", + "pubDate": "Fri, 08 Dec 2023 06:05:32 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2023-12-08T06:05:32+00:00", + "content": "The New England defence was ultimately able to hold on for the Patriots to pick up just their third win of the year.", + "contentSnippet": "The New England defence was ultimately able to hold on for the Patriots to pick up just their third win of the year.", + "guid": "b2460630", + "categories": ["Sport"], + "isoDate": "2023-12-08T06:05:32.000Z" + }, + { + "creator": "David Biller", + "date": "2023-12-08T06:05:23+00:00", + "title": "AP PHOTOS: 2023 images show violence and vibrance in Latin America", + "link": "https://www.independent.co.uk/news/latin-america-ap-gangs-luiz-inacio-lula-da-silva-claude-monet-b2460631.html", + "pubDate": "Fri, 08 Dec 2023 06:05:23 GMT", + "dc:creator": "David Biller", + "dc:date": "2023-12-08T06:05:23+00:00", + "content": "

A little girl perches on the shoulder of her mom, whose eyes fill with trepidation as she wades through waist-deep water in the jungle of the Darien Gap.

", + "contentSnippet": "A little girl perches on the shoulder of her mom, whose eyes fill with trepidation as she wades through waist-deep water in the jungle of the Darien Gap.", + "guid": "b2460631", + "isoDate": "2023-12-08T06:05:23.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2023-12-08T06:00:00+00:00", + "title": "On this day in 2016: England\u2019s Keaton Jennings makes century on his Test debut", + "link": "https://www.independent.co.uk/sport/cricket/keaton-jennings-england-icc-india-mumbai-b2460628.html", + "pubDate": "Fri, 08 Dec 2023 06:00:00 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2023-12-08T06:00:00+00:00", + "content": "It was a contribution which looked to have put England ahead of the game as they reached 288 for five at stumps.", + "contentSnippet": "It was a contribution which looked to have put England ahead of the game as they reached 288 for five at stumps.", + "guid": "b2460628", + "categories": ["Cricket", "Sport"], + "isoDate": "2023-12-08T06:00:00.000Z" + }, + { + "creator": "Joe Sommerlad", + "date": "2023-12-08T05:54:51+00:00", + "title": "December dates for benefits, pensions and cost of living payments ", + "link": "https://www.independent.co.uk/news/uk/home-news/dwp-cost-of-living-payment-december-b2460627.html", + "pubDate": "Fri, 08 Dec 2023 05:54:51 GMT", + "dc:creator": "Joe Sommerlad", + "dc:date": "2023-12-08T05:54:51+00:00", + "content": "

Many households still struggling and facing costly winter, even as inflation begins to ease

", + "contentSnippet": "Many households still struggling and facing costly winter, even as inflation begins to ease", + "guid": "b2460627", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-08T05:54:51.000Z" + }, + { + "creator": "Rio Yamat and Ben Finley", + "date": "2023-12-08T05:48:47+00:00", + "title": "UNLV gunman was unemployed professor who had 150 rounds of ammunition and a target list, police say", + "link": "https://www.independent.co.uk/news/ap-police-nevada-university-las-vegas-b2460625.html", + "pubDate": "Fri, 08 Dec 2023 05:48:47 GMT", + "dc:creator": "Rio Yamat and Ben Finley", + "dc:date": "2023-12-08T05:48:47+00:00", + "content": "Police say a gunman who killed three faculty members at the University of Nevada, Las Vegas, was an unemployed professor who stuffed his waistband with loaded handgun magazines before beginning the attack", + "contentSnippet": "Police say a gunman who killed three faculty members at the University of Nevada, Las Vegas, was an unemployed professor who stuffed his waistband with loaded handgun magazines before beginning the attack", + "guid": "b2460625", + "isoDate": "2023-12-08T05:48:47.000Z" + }, + { + "creator": "Simon Calder", + "date": "2023-12-08T05:47:11+00:00", + "title": "December train strike dates: Everything you need to know about rail disruption", + "link": "https://www.independent.co.uk/travel/news-and-advice/train-strikes-2023-december-dates-b2460623.html", + "pubDate": "Fri, 08 Dec 2023 05:47:11 GMT", + "dc:creator": "Simon Calder", + "dc:date": "2023-12-08T05:47:11+00:00", + "content": "

Latest wave of strikes targets different regions a day at a time

", + "contentSnippet": "Latest wave of strikes targets different regions a day at a time", + "guid": "b2460623", + "categories": ["News & Advice", "Travel"], + "isoDate": "2023-12-08T05:47:11.000Z" + }, + { + "creator": "Andrew Griffin", + "date": "2023-12-08T05:44:04+00:00", + "title": "iPhones get power to charge much faster with new iOS update", + "link": "https://www.independent.co.uk/tech/iphone-ios-update-charging-b2460620.html", + "pubDate": "Fri, 08 Dec 2023 05:44:04 GMT", + "dc:creator": "Andrew Griffin", + "dc:date": "2023-12-08T05:44:04+00:00", + "content": "

Upcoming update brings a host of new features \u2013\u00a0and now better wireless charging

", + "contentSnippet": "Upcoming update brings a host of new features \u2013\u00a0and now better wireless charging", + "guid": "b2460620", + "categories": ["Tech"], + "isoDate": "2023-12-08T05:44:04.000Z" + }, + { + "creator": "Edna Tarigan", + "date": "2023-12-08T05:39:02+00:00", + "title": "Indonesia's youth clean up trash from waterways, but more permanent solutions are still elusive", + "link": "https://www.independent.co.uk/news/ap-indonesia-garbage-waste-united-nations-b2460621.html", + "pubDate": "Fri, 08 Dec 2023 05:39:02 GMT", + "dc:creator": "Edna Tarigan", + "dc:date": "2023-12-08T05:39:02+00:00", + "content": "Young people have been at the forefront of environmental and climate change movements in recent years: initiatives like school strikes for climate action, protests at United Nations climate talks and around the world, and local clean ups have often been youth-led", + "contentSnippet": "Young people have been at the forefront of environmental and climate change movements in recent years: initiatives like school strikes for climate action, protests at United Nations climate talks and around the world, and local clean ups have often been youth-led", + "guid": "b2460621", + "isoDate": "2023-12-08T05:39:02.000Z" + }, + { + "creator": "Isobel Lewis,Nicole Vassell and Jacob Stolworthy", + "date": "2023-12-08T05:34:59+00:00", + "title": "Benjamin Zephaniah news: Tributes pour in for Talking Turkeys poet and Peaky Blinders star", + "link": "https://www.independent.co.uk/arts-entertainment/books/news/benjamin-zephaniah-death-age-peaky-blinders-news-b2460617.html", + "pubDate": "Fri, 08 Dec 2023 05:34:59 GMT", + "dc:creator": "Isobel Lewis,Nicole Vassell and Jacob Stolworthy", + "dc:date": "2023-12-08T05:34:59+00:00", + "content": "

\u2018Talking Turkeys\u2019 writer and activist was diagnosed with a brain tumour eight weeks ago

", + "contentSnippet": "\u2018Talking Turkeys\u2019 writer and activist was diagnosed with a brain tumour eight weeks ago", + "guid": "b2460617", + "categories": ["News", "Books", "Culture"], + "isoDate": "2023-12-08T05:34:59.000Z" + }, + { + "creator": "Namita Singh", + "date": "2023-12-08T05:34:55+00:00", + "title": "Why so many of Nepal\u2019s Gurkhas end up fighting for Russia in Ukraine ", + "link": "https://www.independent.co.uk/asia/south-asia/russia-army-nepal-gurkhas-soldiers-ukraine-war-b2460616.html", + "pubDate": "Fri, 08 Dec 2023 05:34:55 GMT", + "dc:creator": "Namita Singh", + "dc:date": "2023-12-08T05:34:55+00:00", + "content": "

Nearly 200 Nepalese nationals are serving as mercenaries in the Russian army \u2013 but it\u2019s not only a phenomenon benefitting the Kremlin\u2019s military recruitment, as Namita Singh explains

", + "contentSnippet": "Nearly 200 Nepalese nationals are serving as mercenaries in the Russian army \u2013 but it\u2019s not only a phenomenon benefitting the Kremlin\u2019s military recruitment, as Namita Singh explains", + "guid": "b2460616", + "categories": ["South Asia", "Asia"], + "isoDate": "2023-12-08T05:34:55.000Z" + }, + { + "creator": "Alex Woodward", + "date": "2023-12-08T05:29:41+00:00", + "title": "Trump says he needs to lose weight after seeing courtroom sketch", + "link": "https://www.independent.co.uk/news/world/americas/trump-weight-loss-fraud-trial-courtroom-sketch-b2460615.html", + "pubDate": "Fri, 08 Dec 2023 05:29:41 GMT", + "dc:creator": "Alex Woodward", + "dc:date": "2023-12-08T05:29:41+00:00", + "content": "

Former president returns to court for the first time in a month as his attorneys wrap up their defence

", + "contentSnippet": "Former president returns to court for the first time in a month as his attorneys wrap up their defence", + "guid": "b2460615", + "categories": ["Americas", "World"], + "isoDate": "2023-12-08T05:29:41.000Z" + }, + { + "creator": "Zimo Zhong", + "date": "2023-12-08T05:28:09+00:00", + "title": "Stock market today: Asian shares are mostly higher ahead of a key US jobs report", + "link": "https://www.independent.co.uk/news/wall-street-ap-bank-of-japan-alphabet-asian-b2460618.html", + "pubDate": "Fri, 08 Dec 2023 05:28:09 GMT", + "dc:creator": "Zimo Zhong", + "dc:date": "2023-12-08T05:28:09+00:00", + "content": "Asian shares are mostly higher ahead of a U.S. jobs report after Wall Street rose Thursday to snap its first three-day losing streak since Halloween", + "contentSnippet": "Asian shares are mostly higher ahead of a U.S. jobs report after Wall Street rose Thursday to snap its first three-day losing streak since Halloween", + "guid": "b2460618", + "isoDate": "2023-12-08T05:28:09.000Z" + }, + { + "creator": "Brittany Miller", + "date": "2023-12-08T05:26:11+00:00", + "title": "Elderly couple refuses to move train seats for mother of three", + "link": "https://www.independent.co.uk/life-style/elderly-couple-train-seats-mother-b2460614.html", + "pubDate": "Fri, 08 Dec 2023 05:26:11 GMT", + "dc:creator": "Brittany Miller", + "dc:date": "2023-12-08T05:26:11+00:00", + "content": "

\u2018I would always give up a seat, reserved or not, for someone who needed it more,\u2019 mother says

", + "contentSnippet": "\u2018I would always give up a seat, reserved or not, for someone who needed it more,\u2019 mother says", + "guid": "b2460614", + "categories": ["Lifestyle"], + "isoDate": "2023-12-08T05:26:11.000Z" + }, + { + "creator": "Vishwam Sankaran", + "date": "2023-12-08T05:24:16+00:00", + "title": "Molecules \u2018entangled\u2019 in major physics breakthrough could advance quantum computing", + "link": "https://www.independent.co.uk/news/science/entangled-molecules-quantum-physics-breakthrough-b2460586.html", + "pubDate": "Fri, 08 Dec 2023 05:24:16 GMT", + "dc:creator": "Vishwam Sankaran", + "dc:date": "2023-12-08T05:24:16+00:00", + "content": "

Study key step in demonstrating that molecules can be viable platform for quantum science

", + "contentSnippet": "Study key step in demonstrating that molecules can be viable platform for quantum science", + "guid": "b2460586", + "categories": ["Science"], + "isoDate": "2023-12-08T05:24:16.000Z" + }, + { + "creator": "Anthony Cuthbertson", + "date": "2023-12-08T05:16:07+00:00", + "title": "World\u2019s biggest nuclear fusion reactor opens in huge boost for \u2018holy grail\u2019 of clean energy", + "link": "https://www.independent.co.uk/tech/japan-nuclear-fusion-biggest-reactor-b2460608.html", + "pubDate": "Fri, 08 Dec 2023 05:16:07 GMT", + "dc:creator": "Anthony Cuthbertson", + "dc:date": "2023-12-08T05:16:07+00:00", + "content": "

Harnessing the power of the sun offers near limitless clean energy

", + "contentSnippet": "Harnessing the power of the sun offers near limitless clean energy", + "guid": "b2460608", + "categories": ["Tech"], + "isoDate": "2023-12-08T05:16:07.000Z" + }, + { + "creator": "Michael R. Sisak and Michael Balsamo", + "date": "2023-12-08T05:15:06+00:00", + "title": "High-profile attacks on Derek Chauvin and Larry Nassar put spotlight on violence in federal prisons", + "link": "https://www.independent.co.uk/news/derek-chauvin-ap-larry-nassar-bureau-of-prisons-jeffrey-epstein-b2460613.html", + "pubDate": "Fri, 08 Dec 2023 05:15:06 GMT", + "dc:creator": "Michael R. Sisak and Michael Balsamo", + "dc:date": "2023-12-08T05:15:06+00:00", + "content": "Recent assaults on two notorious, high-profile federal prisoners have renewed concerns about whether the federal Bureau of Prisons is capable of keeping people in its custody safe", + "contentSnippet": "Recent assaults on two notorious, high-profile federal prisoners have renewed concerns about whether the federal Bureau of Prisons is capable of keeping people in its custody safe", + "guid": "b2460613", + "isoDate": "2023-12-08T05:15:06.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-12-08T05:11:32+00:00", + "title": "I\u2019m a Celebrity 2023 final five revealed as next star leaves ITV series ", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/im-a-celebrity-who-left-b2460605.html", + "pubDate": "Fri, 08 Dec 2023 05:11:32 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-12-08T05:11:32+00:00", + "content": "

Next star to leave ITV jungle has been revealed by Ant and Dec

", + "contentSnippet": "Next star to leave ITV jungle has been revealed by Ant and Dec", + "guid": "b2460605", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-08T05:11:32.000Z" + }, + { + "creator": "Mike Schneider", + "date": "2023-12-08T05:11:07+00:00", + "title": "Census Bureau wants to change how it asks about disabilities. Some advocates don't like it", + "link": "https://www.independent.co.uk/news/ap-disability-covid-american-syracuse-university-b2460611.html", + "pubDate": "Fri, 08 Dec 2023 05:11:07 GMT", + "dc:creator": "Mike Schneider", + "dc:date": "2023-12-08T05:11:07+00:00", + "content": "The U.S. Census Bureau wants to change how it asks people about disabilities, and some advocates don't like where things are heading", + "contentSnippet": "The U.S. Census Bureau wants to change how it asks people about disabilities, and some advocates don't like where things are heading", + "guid": "b2460611", + "isoDate": "2023-12-08T05:11:07.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-08T05:09:41+00:00", + "title": "A Chinese military surveillance balloon is spotted in Taiwan Strait, island's Defense Ministry says", + "link": "https://www.independent.co.uk/news/taiwan-strait-ap-chinese-taipei-china-b2460607.html", + "pubDate": "Fri, 08 Dec 2023 05:09:41 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-08T05:09:41+00:00", + "content": "Taiwan's Defense Ministry says a Chinese military surveillance balloon has been spotted in the Taiwan Strait, along with a large-scale dispatch of military aircraft and ships", + "contentSnippet": "Taiwan's Defense Ministry says a Chinese military surveillance balloon has been spotted in the Taiwan Strait, along with a large-scale dispatch of military aircraft and ships", + "guid": "b2460607", + "isoDate": "2023-12-08T05:09:41.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2023-12-08T05:05:18+00:00", + "title": "Doctors sound alarm over new infant fentanyl syndrome ", + "link": "https://www.independent.co.uk/news/world/americas/infant-fentanyl-syndrome-rise-cholesterol-b2460595.html", + "pubDate": "Fri, 08 Dec 2023 05:05:18 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2023-12-08T05:05:18+00:00", + "content": "

A new syndrome linked to prenatal fentanyl exposure produces similar abnormalites to babies who can\u2019t produce cholesterol

", + "contentSnippet": "A new syndrome linked to prenatal fentanyl exposure produces similar abnormalites to babies who can\u2019t produce cholesterol", + "guid": "b2460595", + "categories": ["Americas", "World"], + "isoDate": "2023-12-08T05:05:18.000Z" + }, + { + "creator": "Maria Sherman", + "date": "2023-12-08T05:03:31+00:00", + "title": "Attention all Barbz: Nicki Minaj has released 'Pink Friday 2,' 13 years after the original", + "link": "https://www.independent.co.uk/news/nicki-minaj-ap-los-angeles-grammy-future-b2460604.html", + "pubDate": "Fri, 08 Dec 2023 05:03:31 GMT", + "dc:creator": "Maria Sherman", + "dc:date": "2023-12-08T05:03:31+00:00", + "content": "Nicki Minaj\u2019s highly anticipated fifth studio album, \u201cPink Friday 2,\u201d is here", + "contentSnippet": "Nicki Minaj\u2019s highly anticipated fifth studio album, \u201cPink Friday 2,\u201d is here", + "guid": "b2460604", + "isoDate": "2023-12-08T05:03:31.000Z" + }, + { + "creator": "Kristin M. Hall", + "date": "2023-12-08T05:02:26+00:00", + "title": "Free toy store in Nashville gives families the dignity of choice while shopping for holiday gifts", + "link": "https://www.independent.co.uk/news/brad-paisley-ap-nashville-paisley-usda-b2460603.html", + "pubDate": "Fri, 08 Dec 2023 05:02:26 GMT", + "dc:creator": "Kristin M. Hall", + "dc:date": "2023-12-08T05:02:26+00:00", + "content": "Country music star Brad Paisley and his wife, Kimberly Williams-Paisley, helped create a free grocery in Nashville to offer dignity to low-income people when shopping for food", + "contentSnippet": "Country music star Brad Paisley and his wife, Kimberly Williams-Paisley, helped create a free grocery in Nashville to offer dignity to low-income people when shopping for food", + "guid": "b2460603", + "isoDate": "2023-12-08T05:02:26.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-08T05:01:12+00:00", + "title": "AP Week in Pictures: Latin America and Caribbean", + "link": "https://www.independent.co.uk/news/ap-latin-america-caribbean-guyana-peru-b2460601.html", + "pubDate": "Fri, 08 Dec 2023 05:01:12 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-08T05:01:12+00:00", + "content": "

Dec. 1- Dec. 7, 2023

", + "contentSnippet": "Dec. 1- Dec. 7, 2023", + "guid": "b2460601", + "isoDate": "2023-12-08T05:01:12.000Z" + }, + { + "creator": "Christopher Rugaber", + "date": "2023-12-08T05:01:06+00:00", + "title": "Is the US economy on track for a 'soft landing'? Friday's jobs report may offer clues", + "link": "https://www.independent.co.uk/news/americans-ap-jerome-powell-federal-reserve-washington-b2460600.html", + "pubDate": "Fri, 08 Dec 2023 05:01:06 GMT", + "dc:creator": "Christopher Rugaber", + "dc:date": "2023-12-08T05:01:06+00:00", + "content": "Can the U.S. economy achieve a much-hyped \u201csoft landing\u201d", + "contentSnippet": "Can the U.S. economy achieve a much-hyped \u201csoft landing\u201d", + "guid": "b2460600", + "isoDate": "2023-12-08T05:01:06.000Z" + }, + { + "creator": "Mike Stobbe", + "date": "2023-12-08T05:01:06+00:00", + "title": "Chronic fatigue syndrome is more common than some past studies suggest, CDC says", + "link": "https://www.independent.co.uk/news/ap-cdc-chronic-fatigue-syndrome-new-york-patients-b2460602.html", + "pubDate": "Fri, 08 Dec 2023 05:01:06 GMT", + "dc:creator": "Mike Stobbe", + "dc:date": "2023-12-08T05:01:06+00:00", + "content": "Health officials are releasing the first nationally representative estimate of how many U.S. adults have chronic fatigue syndrome: 3.3 million", + "contentSnippet": "Health officials are releasing the first nationally representative estimate of how many U.S. adults have chronic fatigue syndrome: 3.3 million", + "guid": "b2460602", + "isoDate": "2023-12-08T05:01:06.000Z" + }, + { + "creator": "Ed White", + "date": "2023-12-08T05:00:59+00:00", + "title": "Michigan school shooting victims to speak as teen faces possible life sentence", + "link": "https://www.independent.co.uk/news/ap-ethan-crumbley-michigan-detroit-b2460599.html", + "pubDate": "Fri, 08 Dec 2023 05:00:59 GMT", + "dc:creator": "Ed White", + "dc:date": "2023-12-08T05:00:59+00:00", + "content": "A court hearing in suburban Detroit is likely to be tense and emotional as a judge hears from families and surviving victims of the Oxford school shooting, Ethan Crumbley could be sentenced to life in prison Friday", + "contentSnippet": "A court hearing in suburban Detroit is likely to be tense and emotional as a judge hears from families and surviving victims of the Oxford school shooting, Ethan Crumbley could be sentenced to life in prison Friday", + "guid": "b2460599", + "isoDate": "2023-12-08T05:00:59.000Z" + }, + { + "creator": "Curt Anderson", + "date": "2023-12-08T05:00:45+00:00", + "title": "Drought vs deluge: Florida's unusual rainfall totals either too little or too much on each coast", + "link": "https://www.independent.co.uk/news/ap-atlantic-ocean-tampa-gulf-of-mexico-hillsborough-county-b2460598.html", + "pubDate": "Fri, 08 Dec 2023 05:00:45 GMT", + "dc:creator": "Curt Anderson", + "dc:date": "2023-12-08T05:00:45+00:00", + "content": "In Florida, this year has been a tale of two states as far as rainfall totals, with the southeast coast deluged by sometimes-record rainfall and much of the Gulf coast facing a major precipitation deficit", + "contentSnippet": "In Florida, this year has been a tale of two states as far as rainfall totals, with the southeast coast deluged by sometimes-record rainfall and much of the Gulf coast facing a major precipitation deficit", + "guid": "b2460598", + "isoDate": "2023-12-08T05:00:45.000Z" + }, + { + "creator": "Adam Forrest,Archie Mitchell and Tara Cobham", + "date": "2023-12-08T04:54:45+00:00", + "title": "Boris Johnson Covid inquiry \u2013 live: \u2018Dr Death\u2019 Rishi Sunak to face next grilling as former PM finishes up", + "link": "https://www.independent.co.uk/news/uk/home-news/boris-johnson-sunak-covid-inquiry-today-b2460593.html", + "pubDate": "Fri, 08 Dec 2023 04:54:45 GMT", + "dc:creator": "Adam Forrest,Archie Mitchell and Tara Cobham", + "dc:date": "2023-12-08T04:54:45+00:00", + "content": "

Boris Johnson was questioned for second day after being booed by angry bereaved families

", + "contentSnippet": "Boris Johnson was questioned for second day after being booed by angry bereaved families", + "guid": "b2460593", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-08T04:54:45.000Z" + }, + { + "creator": "Chris Edwards", + "date": "2023-12-07T06:30:00+00:00", + "title": "Was The Last Samurai Tom Cruise\u2019s last great movie?", + "link": "https://www.independent.co.uk/arts-entertainment/films/features/last-samurai-tom-cruise-b2459325.html", + "pubDate": "Thu, 07 Dec 2023 06:30:00 GMT", + "dc:creator": "Chris Edwards", + "dc:date": "2023-12-07T06:30:00+00:00", + "content": "

Twenty years ago, the \u2018Mission: Impossible\u2019 frontman did a lot more than just shoot people and jump off tall buildings. Today, \u2018The Last Samurai\u2019 marks one of the actor\u2019s final truly ambitious starring roles. As the film celebrates its 20th birthday, Chris Edwards speaks to director Edward Zwick about its place in Cruise\u2019s legacy and the stunt that nearly killed his leading man

", + "contentSnippet": "Twenty years ago, the \u2018Mission: Impossible\u2019 frontman did a lot more than just shoot people and jump off tall buildings. Today, \u2018The Last Samurai\u2019 marks one of the actor\u2019s final truly ambitious starring roles. As the film celebrates its 20th birthday, Chris Edwards speaks to director Edward Zwick about its place in Cruise\u2019s legacy and the stunt that nearly killed his leading man", + "guid": "b2459325", + "categories": ["Features", "Film", "Culture"], + "isoDate": "2023-12-07T06:30:00.000Z" + }, + { + "creator": "Ellie Muir", + "date": "2023-12-06T15:15:57+00:00", + "title": "Turner prize winner Jesse Darling waves Palestinian flag during speech", + "link": "https://www.independent.co.uk/arts-entertainment/art/news/turner-prize-jesse-darling-transgender-palestine-b2459483.html", + "pubDate": "Wed, 06 Dec 2023 15:15:57 GMT", + "dc:creator": "Ellie Muir", + "dc:date": "2023-12-06T15:15:57+00:00", + "content": "

Darling, 41, was handed the \u00a325,000 prize for work comprised of faded union jack bunting and metal pedestrian barriers

", + "contentSnippet": "Darling, 41, was handed the \u00a325,000 prize for work comprised of faded union jack bunting and metal pedestrian barriers", + "guid": "b2459483", + "categories": ["News", "Art", "Culture"], + "isoDate": "2023-12-06T15:15:57.000Z" + }, + { + "creator": "Sports Staff", + "date": "2023-02-24T17:57:12+00:00", + "title": "What is an exhibition fight and how is it different to a professional bout?", + "link": "https://www.independent.co.uk/sport/boxing/exhibition-fight-explained-professional-bout-difference-b2289095.html", + "pubDate": "Fri, 24 Feb 2023 17:57:12 GMT", + "dc:creator": "Sports Staff", + "dc:date": "2023-02-24T17:57:12+00:00", + "content": "

Here are the key pieces of information around professional and exhibition fights

", + "contentSnippet": "Here are the key pieces of information around professional and exhibition fights", + "guid": "b2289095", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-02-24T17:57:12.000Z" + }, + { + "creator": "Kieran Jackson", + "date": "2023-12-15T15:40:08+00:00", + "title": "Jenson Button announces shock return to professional racing", + "link": "https://www.independent.co.uk/f1/f1-jenson-button-le-mans-wec-porsche-b2464846.html", + "pubDate": "Fri, 15 Dec 2023 15:40:08 GMT", + "dc:creator": "Kieran Jackson", + "dc:date": "2023-12-15T15:40:08+00:00", + "content": "

The 2009 F1 world champion is back in top-tier motorsport seven years after retiring from Formula 1

", + "contentSnippet": "The 2009 F1 world champion is back in top-tier motorsport seven years after retiring from Formula 1", + "guid": "b2464846", + "categories": ["F1"], + "isoDate": "2023-12-15T15:40:08.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-15T15:36:49+00:00", + "title": "Watch: Piers Morgan statement in full as former Mirror editor launches scathing attack on Prince Harry", + "link": "https://www.independent.co.uk/tv/lifestyle/piers-morgan-prince-harry-mirror-phone-hacking-b2464844.html", + "pubDate": "Fri, 15 Dec 2023 15:36:49 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-15T15:36:49+00:00", + "content": "

Piers Morgan launched a scathing attack on Prince Harry after the Duke of Sussex won damages of \u00a3140,600 against Mirror Group Newspapers (MGN) over the phone hacking scandal.

", + "contentSnippet": "Piers Morgan launched a scathing attack on Prince Harry after the Duke of Sussex won damages of \u00a3140,600 against Mirror Group Newspapers (MGN) over the phone hacking scandal.", + "guid": "b2464844", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2023-12-15T15:36:49.000Z" + }, + { + "creator": "Clarisse Loughrey", + "date": "2023-12-15T15:36:38+00:00", + "title": "Rebel Moon Part One review: Zack Snyder\u2019s Netflix epic is a borderline incoherent shambles", + "link": "https://www.independent.co.uk/arts-entertainment/films/reviews/rebel-moon-review-zack-snyder-b2463306.html", + "pubDate": "Fri, 15 Dec 2023 15:36:38 GMT", + "dc:creator": "Clarisse Loughrey", + "dc:date": "2023-12-15T15:36:38+00:00", + "content": "

The \u2018Justice League\u2019 director\u2019s cut filmmaker has made his own version of a Star Wars movie, only filled with motivational speeches, sexual violence and Charlie Hunnam stumbling his way through a soon-to-be-infamous Irish accent

", + "contentSnippet": "The \u2018Justice League\u2019 director\u2019s cut filmmaker has made his own version of a Star Wars movie, only filled with motivational speeches, sexual violence and Charlie Hunnam stumbling his way through a soon-to-be-infamous Irish accent", + "guid": "b2463306", + "categories": ["Reviews", "Film", "Culture"], + "isoDate": "2023-12-15T15:36:38.000Z" + }, + { + "creator": "Andrew Feinberg", + "date": "2023-12-15T15:35:37+00:00", + "title": "White House wants Israel to begin \u2018precise targeting\u2019 of Hamas", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/jake-sullivan-israel-hamas-war-b2464836.html", + "pubDate": "Fri, 15 Dec 2023 15:35:37 GMT", + "dc:creator": "Andrew Feinberg", + "dc:date": "2023-12-15T15:35:37+00:00", + "content": "

President Joe Biden\u2019s national security adviser says he discussed a \u2018transition\u2019 to ground operations with the Israeli war cabinet

", + "contentSnippet": "President Joe Biden\u2019s national security adviser says he discussed a \u2018transition\u2019 to ground operations with the Israeli war cabinet", + "guid": "b2464836", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-15T15:35:37.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-15T15:35:17+00:00", + "title": "Leon Edwards vs Colby Covington is technique against tenacity at UFC 296", + "link": "https://www.independent.co.uk/sport/ufc/ufc-296-preview-leon-edwards-colby-covington-b2464079.html", + "pubDate": "Fri, 15 Dec 2023 15:35:17 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-15T15:35:17+00:00", + "content": "

Edwards defends the welterweight title against the former interim champion in the main event

", + "contentSnippet": "Edwards defends the welterweight title against the former interim champion in the main event", + "guid": "b2464079", + "categories": ["UFC", "Sport"], + "isoDate": "2023-12-15T15:35:17.000Z" + }, + { + "creator": "Tara Cobham", + "date": "2023-12-15T15:35:14+00:00", + "title": "Piers Morgan breaks silence on Prince Harry hacking win against Mirror publisher", + "link": "https://www.independent.co.uk/life-style/royal-family/news/piers-morgan-prince-harry-mirror-hacking-b2464800.html", + "pubDate": "Fri, 15 Dec 2023 15:35:14 GMT", + "dc:creator": "Tara Cobham", + "dc:date": "2023-12-15T15:35:14+00:00", + "content": "

Judge ruled Mr Morgan knew about and was involved in phone hacking when editor of the Daily Mirror

", + "contentSnippet": "Judge ruled Mr Morgan knew about and was involved in phone hacking when editor of the Daily Mirror", + "guid": "b2464800", + "categories": ["Royal Family News", "Royal Family", "Lifestyle"], + "isoDate": "2023-12-15T15:35:14.000Z" + }, + { + "creator": "Holly Evans,Andy Gregory,Jane Dalton and Tara Cobham", + "date": "2023-12-15T15:32:05+00:00", + "title": "Prince Harry attacks Mirror\u2019s \u2018vendetta journalism\u2019 and says Piers Morgan \u2018clearly knew\u2019 about hacking \u2013 live", + "link": "https://www.independent.co.uk/life-style/royal-family/news/prince-harry-phone-hacking-trial-mirror-latest-b2464238.html", + "pubDate": "Fri, 15 Dec 2023 15:32:05 GMT", + "dc:creator": "Holly Evans,Andy Gregory,Jane Dalton and Tara Cobham", + "dc:date": "2023-12-15T15:32:05+00:00", + "content": "

Duke of Sussex found to be victim of phone hacking by Mirror publisher and awarded \u00a3140,000 in damages

", + "contentSnippet": "Duke of Sussex found to be victim of phone hacking by Mirror publisher and awarded \u00a3140,000 in damages", + "guid": "b2464238", + "categories": ["Royal Family News", "Royal Family", "Lifestyle"], + "isoDate": "2023-12-15T15:32:05.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-15T15:31:57+00:00", + "title": "A Spanish official says spotter planes are helping curtail the number of West African migrant boats", + "link": "https://www.independent.co.uk/news/canary-islands-ap-spanish-senegal-madrid-b2464851.html", + "pubDate": "Fri, 15 Dec 2023 15:31:57 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-15T15:31:57+00:00", + "content": "A senior Spanish official says the deployment of two Spanish surveillance planes to watch for migrant boats heading on the treacherous route from West Africa to Spain\u2019s Canary Islands has enabled authorities to stop 59 canoes from Senegal and Gambia", + "contentSnippet": "A senior Spanish official says the deployment of two Spanish surveillance planes to watch for migrant boats heading on the treacherous route from West Africa to Spain\u2019s Canary Islands has enabled authorities to stop 59 canoes from Senegal and Gambia", + "guid": "b2464851", + "isoDate": "2023-12-15T15:31:57.000Z" + }, + { + "creator": "Mark Mann-Bryans", + "date": "2023-12-15T15:29:39+00:00", + "title": "Mikel Arteta wants managers and referees to work together to improve football", + "link": "https://www.independent.co.uk/sport/football/mikel-arteta-premier-league-football-association-newcastle-arsenal-b2464848.html", + "pubDate": "Fri, 15 Dec 2023 15:29:39 GMT", + "dc:creator": "Mark Mann-Bryans", + "dc:date": "2023-12-15T15:29:39+00:00", + "content": "Arteta escaped punishment following a Football Association charge after his post-match rant at Newcastle.", + "contentSnippet": "Arteta escaped punishment following a Football Association charge after his post-match rant at Newcastle.", + "guid": "b2464848", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T15:29:39.000Z" + }, + { + "creator": "Athena Stavrou and Lydia Patrick", + "date": "2023-12-15T15:28:10+00:00", + "title": "Gaynor Lord latest: Body found in river in search for missing Norwich mother", + "link": "https://www.independent.co.uk/news/uk/home-news/gaynor-lord-missing-mum-norwich-cctv-b2464533.html", + "pubDate": "Fri, 15 Dec 2023 15:28:10 GMT", + "dc:creator": "Athena Stavrou and Lydia Patrick", + "dc:date": "2023-12-15T15:28:10+00:00", + "content": "

Police said they are \u201cconfident\u201d with the evidence they have at this stage that no third party was involved

", + "contentSnippet": "Police said they are \u201cconfident\u201d with the evidence they have at this stage that no third party was involved", + "guid": "b2463795", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-15T15:28:10.000Z" + }, + { + "creator": "Inga Parkel", + "date": "2023-12-15T15:24:46+00:00", + "title": "Bradley Cooper\u2019s \u2018no chairs\u2019 policy on set sparks fierce backlash", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/bradley-cooper-maestro-director-b2464801.html", + "pubDate": "Fri, 15 Dec 2023 15:24:46 GMT", + "dc:creator": "Inga Parkel", + "dc:date": "2023-12-15T15:24:46+00:00", + "content": "

\u2018Maestro\u2019 actor and director said he\u2019s always \u2018hated chairs\u2019 and believes \u2018your energy dips the minute you sit down in a chair\u2019

", + "contentSnippet": "\u2018Maestro\u2019 actor and director said he\u2019s always \u2018hated chairs\u2019 and believes \u2018your energy dips the minute you sit down in a chair\u2019", + "guid": "b2464801", + "categories": ["News", "Film", "Culture"], + "isoDate": "2023-12-15T15:24:46.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-12-15T15:22:44+00:00", + "title": "\u2018Suicide\u2019 of G\u00e9rard Depardieu accuser Emmanuelle Debever sparks investigation by French police", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/gerard-depardieu-allegations-emmanuelle-debever-b2464702.html", + "pubDate": "Fri, 15 Dec 2023 15:22:44 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-12-15T15:22:44+00:00", + "content": "

The actor was renowned as one of the first women to accuse \u2018Cyrano de Bergerac\u2019 star of historic sexual assault

", + "contentSnippet": "The actor was renowned as one of the first women to accuse \u2018Cyrano de Bergerac\u2019 star of historic sexual assault", + "guid": "b2463984", + "categories": ["News", "Film", "Culture"], + "isoDate": "2023-12-15T15:22:44.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-12-15T15:21:47+00:00", + "title": "Mark Kermode targets Martin Scorsese\u2019s \u2018not cinema\u2019 Marvel criticism", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/mark-kermode-martin-scorsese-marvel-b2463945.html", + "pubDate": "Fri, 15 Dec 2023 15:21:47 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-12-15T15:21:47+00:00", + "content": "

Critic renowned for his movie takedowns backs studio slammed by Scorsese for churning out \u2018theme park\u2019 superhero films

", + "contentSnippet": "Critic renowned for his movie takedowns backs studio slammed by Scorsese for churning out \u2018theme park\u2019 superhero films", + "guid": "b2463945", + "categories": ["News", "Film", "Culture"], + "isoDate": "2023-12-15T15:21:47.000Z" + }, + { + "creator": "Martha McHardy", + "date": "2023-12-15T15:20:20+00:00", + "title": "Man accused of trying to kill his dying wife to \u2018ease her suffering\u2019", + "link": "https://www.independent.co.uk/news/world/americas/crime/utah-breast-cancer-attempted-murder-charge-b2464695.html", + "pubDate": "Fri, 15 Dec 2023 15:20:20 GMT", + "dc:creator": "Martha McHardy", + "dc:date": "2023-12-15T15:20:20+00:00", + "content": "

DeWayne McCulla, 45, was charged with attempted murder on Wednesday, two years after the death of his wife

", + "contentSnippet": "DeWayne McCulla, 45, was charged with attempted murder on Wednesday, two years after the death of his wife", + "guid": "b2464695", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-12-15T15:20:20.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-15T15:17:40+00:00", + "title": "Catherine Zeta-Jones sings Welsh song during festive family gathering as son Dylan watches on", + "link": "https://www.independent.co.uk/tv/culture/catherine-zeta-jones-michael-douglas-family-b2464771.html", + "pubDate": "Fri, 15 Dec 2023 15:17:40 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-15T15:17:40+00:00", + "content": "

Catherine Zeta-Jones has shared a glimpse into her family Christmas celebrations.

", + "contentSnippet": "Catherine Zeta-Jones has shared a glimpse into her family Christmas celebrations.", + "guid": "b2464771", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-12-15T15:17:40.000Z" + }, + { + "creator": "Elizabeth Ayoola", + "date": "2023-12-15T15:13:28+00:00", + "title": "5 questions that can help guide your holiday tipping", + "link": "https://www.independent.co.uk/news/ap-budget-tipping-manhattan-texas-b2464838.html", + "pubDate": "Fri, 15 Dec 2023 15:13:28 GMT", + "dc:creator": "Elizabeth Ayoola", + "dc:date": "2023-12-15T15:13:28+00:00", + "content": "As you plan your holiday giving, you may be thinking about adding service workers to your list of recipients", + "contentSnippet": "As you plan your holiday giving, you may be thinking about adding service workers to your list of recipients", + "guid": "b2464838", + "isoDate": "2023-12-15T15:13:28.000Z" + }, + { + "creator": "Marcia Dunn", + "date": "2023-12-15T15:13:02+00:00", + "title": "Biggest solar flare in years temporarily disrupts radio signals on Earth", + "link": "https://www.independent.co.uk/news/earth-ap-cape-canaveral-scientists-nasa-b2464839.html", + "pubDate": "Fri, 15 Dec 2023 15:13:02 GMT", + "dc:creator": "Marcia Dunn", + "dc:date": "2023-12-15T15:13:02+00:00", + "content": "A NASA telescope has captured the biggest solar flare in years, which temporarily knocked out radio communication on Earth", + "contentSnippet": "A NASA telescope has captured the biggest solar flare in years, which temporarily knocked out radio communication on Earth", + "guid": "b2464839", + "isoDate": "2023-12-15T15:13:02.000Z" + }, + { + "creator": "Daisy Lester", + "date": "2023-12-15T15:09:16+00:00", + "title": "Best Amazon January sale deals to expect: Details and early discounts", + "link": "https://www.independent.co.uk/extras/indybest/january-sales/amazon-january-new-year-sale-2024-b2464692.html", + "pubDate": "Fri, 15 Dec 2023 15:09:16 GMT", + "dc:creator": "Daisy Lester", + "dc:date": "2023-12-15T15:09:16+00:00", + "content": "

From Kindles to Shark cordless vacuums, the retailer\u2019s sale is a highlight

", + "contentSnippet": "From Kindles to Shark cordless vacuums, the retailer\u2019s sale is a highlight", + "guid": "b2464692", + "categories": ["January Sales", "IndyBest", "Extras"], + "isoDate": "2023-12-15T15:09:16.000Z" + }, + { + "creator": "Independent Staff", + "date": "2023-12-15T15:08:46+00:00", + "title": "The Independent\u2019s Bel Trew wins prestigious journalism award", + "link": "https://www.independent.co.uk/news/uk/home-news/independent-bel-trew-awards-journalism-marie-colvin-b2464791.html", + "pubDate": "Fri, 15 Dec 2023 15:08:46 GMT", + "dc:creator": "Independent Staff", + "dc:date": "2023-12-15T15:08:46+00:00", + "content": "

Chief international correspondent Bel Trew was described as one of the world\u2019s leading foreign correspondents at the British Journalism Awards

", + "contentSnippet": "Chief international correspondent Bel Trew was described as one of the world\u2019s leading foreign correspondents at the British Journalism Awards", + "guid": "b2464791", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-15T15:08:46.000Z" + }, + { + "creator": "Jan M. Olsen", + "date": "2023-12-15T15:07:45+00:00", + "title": "Finland reports a rush of migrant crossings hours before the reclosure of 2 border posts with Russia", + "link": "https://www.independent.co.uk/news/russia-ap-finland-nordic-denmark-b2464797.html", + "pubDate": "Fri, 15 Dec 2023 15:07:45 GMT", + "dc:creator": "Jan M. Olsen", + "dc:date": "2023-12-15T15:07:45+00:00", + "content": "Dozens of migrants have crossed into Finland hours before the reclosure of two southern crossing points on the border with Russia as the Nordic country experiences an influx of asylum-seekers", + "contentSnippet": "Dozens of migrants have crossed into Finland hours before the reclosure of two southern crossing points on the border with Russia as the Nordic country experiences an influx of asylum-seekers", + "guid": "b2464797", + "isoDate": "2023-12-15T15:07:45.000Z" + }, + { + "creator": "Jill Lawless", + "date": "2023-12-15T15:06:45+00:00", + "title": "Prince Harry's phone hacking victory is a landmark in the long saga of British tabloid misconduct", + "link": "https://www.independent.co.uk/news/ap-mirror-group-newspapers-phone-hacking-british-pin-number-b2464815.html", + "pubDate": "Fri, 15 Dec 2023 15:06:45 GMT", + "dc:creator": "Jill Lawless", + "dc:date": "2023-12-15T15:06:45+00:00", + "content": "Prince Harry\u2019s victory against Mirror Group Newspapers is a landmark moment in the long saga of lawbreaking by Britain\u2019s tabloids", + "contentSnippet": "Prince Harry\u2019s victory against Mirror Group Newspapers is a landmark moment in the long saga of lawbreaking by Britain\u2019s tabloids", + "guid": "b2464815", + "isoDate": "2023-12-15T15:06:45.000Z" + }, + { + "creator": "Maryam Zakir-Hussain", + "date": "2023-12-15T15:03:13+00:00", + "title": "Alex Batty news - live: Oldham teen \u2018abducted by mother\u2019 to return to UK after being found in France", + "link": "https://www.independent.co.uk/news/uk/home-news/alex-batty-missing-found-mother-oldham-latest-b2464594.html", + "pubDate": "Fri, 15 Dec 2023 15:03:13 GMT", + "dc:creator": "Maryam Zakir-Hussain", + "dc:date": "2023-12-15T15:03:13+00:00", + "content": "

Teenager videocalled grandmother after being \u2018kidnapped\u2019 six years ago

", + "contentSnippet": "Teenager videocalled grandmother after being \u2018kidnapped\u2019 six years ago", + "guid": "b2464594", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-15T15:03:13.000Z" + }, + { + "creator": "Miguel Delaney", + "date": "2023-12-15T15:01:24+00:00", + "title": "Jurgen Klopp creates Liverpool 2.0 to expose Man Utd\u2019s enduring problem", + "link": "https://www.independent.co.uk/sport/football/liverpool-manchester-united-jurgen-klopp-ten-hag-b2464615.html", + "pubDate": "Fri, 15 Dec 2023 15:01:24 GMT", + "dc:creator": "Miguel Delaney", + "dc:date": "2023-12-15T15:01:24+00:00", + "content": "

The Red Devils face a daunting trip to Anfield, the scene of their greatest humiliation under Erik ten Hag in last season\u2019s 7-0 defeat, with no sign of a brighter future

", + "contentSnippet": "The Red Devils face a daunting trip to Anfield, the scene of their greatest humiliation under Erik ten Hag in last season\u2019s 7-0 defeat, with no sign of a brighter future", + "guid": "b2464615", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T15:01:24.000Z" + }, + { + "creator": "Faiza Saqib", + "date": "2023-12-15T15:00:51+00:00", + "title": "Strictly\u2019s Vito Coppola says he and Ellie Leach are \u2018in rehearsals all day\u2019 ahead of final ", + "link": "https://www.independent.co.uk/arts-entertainment/tv/strictly-ellie-leach-vito-coppola-final-b2464613.html", + "pubDate": "Fri, 15 Dec 2023 15:00:51 GMT", + "dc:creator": "Faiza Saqib", + "dc:date": "2023-12-15T15:00:51+00:00", + "content": "

The Strictly Come Dancing final will air on Saturday 16 December on BBC One

", + "contentSnippet": "The Strictly Come Dancing final will air on Saturday 16 December on BBC One", + "guid": "b2464613", + "categories": ["TV & Radio", "Culture"], + "isoDate": "2023-12-15T15:00:51.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-15T15:00:30+00:00", + "title": "Gaynor Lord police give update after body found in search for missing mother", + "link": "https://www.independent.co.uk/tv/news/gaynor-lord-body-found-police-update-b2464824.html", + "pubDate": "Fri, 15 Dec 2023 15:00:30 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-15T15:00:30+00:00", + "content": "

Police have said there is no evidence of third-party involvement after a body was found in the search for missing mother-of-three Gaynor Lord.

", + "contentSnippet": "Police have said there is no evidence of third-party involvement after a body was found in the search for missing mother-of-three Gaynor Lord.", + "guid": "b2464824", + "categories": ["News", "Indy TV"], + "isoDate": "2023-12-15T15:00:30.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-12-15T14:58:36+00:00", + "title": "Emmerdale\u2019s Zak Dingle actor Steve Halliwell dies aged 77", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/emmerdale-steve-halliwell-death-zak-dingle-b2464787.html", + "pubDate": "Fri, 15 Dec 2023 14:58:36 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-12-15T14:58:36+00:00", + "content": "

Actor was best known for playing flat cap-wearing head of the Dingle clan in ITV soap

", + "contentSnippet": "Actor was best known for playing flat cap-wearing head of the Dingle clan in ITV soap", + "guid": "b2464787", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-15T14:58:36.000Z" + }, + { + "creator": "Sam Mednick", + "date": "2023-12-15T14:58:36+00:00", + "title": "West African court orders Niger's president to be released and reinstated nearly 5 months after coup", + "link": "https://www.independent.co.uk/news/ap-niger-dakar-senegal-parliament-b2464832.html", + "pubDate": "Fri, 15 Dec 2023 14:58:36 GMT", + "dc:creator": "Sam Mednick", + "dc:date": "2023-12-15T14:58:36+00:00", + "content": "A court of the West African regional bloc has ordered the release and reinstatement of Niger\u2019s democratically elected president", + "contentSnippet": "A court of the West African regional bloc has ordered the release and reinstatement of Niger\u2019s democratically elected president", + "guid": "b2464832", + "isoDate": "2023-12-15T14:58:36.000Z" + }, + { + "creator": "Melissa Goldin", + "date": "2023-12-15T14:57:30+00:00", + "title": "NOT REAL NEWS: A look at what didn't happen this week", + "link": "https://www.independent.co.uk/news/world/americas/immigration-and-customs-enforcement-ap-facts-etsy-associated-press-b2464831.html", + "pubDate": "Fri, 15 Dec 2023 14:57:30 GMT", + "dc:creator": "Melissa Goldin", + "dc:date": "2023-12-15T14:57:30+00:00", + "content": "Social media users shared a range of false claims this week", + "contentSnippet": "Social media users shared a range of false claims this week", + "guid": "b2464831", + "categories": ["Americas", "World"], + "isoDate": "2023-12-15T14:57:30.000Z" + }, + { + "creator": "Jill Colvin", + "date": "2023-12-15T14:56:29+00:00", + "title": "Sports fan Trump hits UFC fights and big games to try to put his 2024 nomination in a headlock", + "link": "https://www.independent.co.uk/news/donald-trump-ap-ufc-dana-white-tucker-carlson-b2464827.html", + "pubDate": "Fri, 15 Dec 2023 14:56:29 GMT", + "dc:creator": "Jill Colvin", + "dc:date": "2023-12-15T14:56:29+00:00", + "content": "Donald Trump has spent less time campaigning in early-voting states than many of his Republican primary rivals", + "contentSnippet": "Donald Trump has spent less time campaigning in early-voting states than many of his Republican primary rivals", + "guid": "b2464827", + "isoDate": "2023-12-15T14:56:29.000Z" + }, + { + "creator": "Nicole Vassell", + "date": "2023-12-15T14:54:17+00:00", + "title": "Sharon Osbourne shares regret over facelift that made her \u2018look like Cyclops\u2019", + "link": "https://www.independent.co.uk/life-style/sharon-osbourne-facelift-regret-b2464790.html", + "pubDate": "Fri, 15 Dec 2023 14:54:17 GMT", + "dc:creator": "Nicole Vassell", + "dc:date": "2023-12-15T14:54:17+00:00", + "content": "

TV personality and music manager has called the cosmetic work \u2018the worst thing\u2019 she \u2018ever did\u2019

", + "contentSnippet": "TV personality and music manager has called the cosmetic work \u2018the worst thing\u2019 she \u2018ever did\u2019", + "guid": "b2464790", + "categories": ["Lifestyle"], + "isoDate": "2023-12-15T14:54:17.000Z" + }, + { + "creator": "Alexander Butler and Tom Watling ", + "date": "2023-12-15T14:49:37+00:00", + "title": "Ukraine-Russia war \u2013 live: 26 injured as Ukrainian councillor detonates grenades at meeting, police say", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-war-putin-counter-offensive-latest-b2464547.html", + "pubDate": "Fri, 15 Dec 2023 14:49:37 GMT", + "dc:creator": "Alexander Butler and Tom Watling ", + "dc:date": "2023-12-15T14:49:37+00:00", + "content": "

The councillor took grenades out of his jacket before tossing them onto the floor at a meeting livestreamed to Facebook

", + "contentSnippet": "The councillor took grenades out of his jacket before tossing them onto the floor at a meeting livestreamed to Facebook", + "guid": "b2463751", + "categories": ["Europe", "World"], + "isoDate": "2023-12-15T14:49:37.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-12-15T14:46:37+00:00", + "title": "Watch live: Nicholas Burns speaks about U.S.-China relations at Brookings", + "link": "https://www.independent.co.uk/news/us-china-relations-nicholas-burns-b2464816.html", + "pubDate": "Fri, 15 Dec 2023 14:46:37 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-12-15T14:46:37+00:00", + "content": "

Watch live as Nicholas Burns speaks about U.S.-China relations on December 15.

", + "contentSnippet": "Watch live as Nicholas Burns speaks about U.S.-China relations on December 15.", + "guid": "b2464816", + "isoDate": "2023-12-15T14:46:37.000Z" + }, + { + "creator": "Daniel Shailer", + "date": "2023-12-15T14:46:21+00:00", + "title": "International court rules against Guatemala in landmark Indigenous and environmental rights case", + "link": "https://www.independent.co.uk/news/guatemala-ap-indigenous-interamerican-court-of-human-rights-cop28-b2464821.html", + "pubDate": "Fri, 15 Dec 2023 14:46:21 GMT", + "dc:creator": "Daniel Shailer", + "dc:date": "2023-12-15T14:46:21+00:00", + "content": "Guatemala violated Indigenous rights by permitting a huge nickel mine on tribal land almost two decades ago, according to a ruling from the Inter-American Court of Human Rights", + "contentSnippet": "Guatemala violated Indigenous rights by permitting a huge nickel mine on tribal land almost two decades ago, according to a ruling from the Inter-American Court of Human Rights", + "guid": "b2464821", + "isoDate": "2023-12-15T14:46:21.000Z" + }, + { + "creator": "Simon Peach", + "date": "2023-12-15T14:42:10+00:00", + "title": "Erik ten Hag not worried about job as Manchester United look to turn around form", + "link": "https://www.independent.co.uk/sport/football/erik-ten-hag-manchester-united-bayern-munich-champions-league-premier-league-b2464819.html", + "pubDate": "Fri, 15 Dec 2023 14:42:10 GMT", + "dc:creator": "Simon Peach", + "dc:date": "2023-12-15T14:42:10+00:00", + "content": "A poor domestic campaign was compounded by their midweek Champions League exit.", + "contentSnippet": "A poor domestic campaign was compounded by their midweek Champions League exit.", + "guid": "b2464819", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:42:10.000Z" + }, + { + "creator": "Oliver O'Connell,Alex Woodward and Joe Sommerlad", + "date": "2023-12-15T14:40:58+00:00", + "title": "Trump hits out at New York AG as Rudy Giuliani verdict looms: Live", + "link": "https://www.independent.co.uk/news/world/americas/trump-fraud-trial-latest-news-b2464611.html", + "pubDate": "Fri, 15 Dec 2023 14:40:58 GMT", + "dc:creator": "Oliver O'Connell,Alex Woodward and Joe Sommerlad", + "dc:date": "2023-12-15T14:40:58+00:00", + "content": "

Truth Social rant comes after appeals court rejected challenge to order prohibiting Republican from speaking publicly about court staff

", + "contentSnippet": "Truth Social rant comes after appeals court rejected challenge to order prohibiting Republican from speaking publicly about court staff", + "guid": "b2463845", + "categories": ["Americas", "World"], + "isoDate": "2023-12-15T14:40:58.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2023-12-15T14:39:48+00:00", + "title": "Zak Dingle\u2019s last Emmerdale appearance as actor Steve Halliwell dies aged 77", + "link": "https://www.independent.co.uk/tv/culture/emmerdale-steve-halliwell-death-zak-dingle-b2464811.html", + "pubDate": "Fri, 15 Dec 2023 14:39:48 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2023-12-15T14:39:48+00:00", + "content": "

Watch the final Emmerdale appearance of actor Steve Halliwell, best known for playing Zak Dingle, after he passed away aged 77.

", + "contentSnippet": "Watch the final Emmerdale appearance of actor Steve Halliwell, best known for playing Zak Dingle, after he passed away aged 77.", + "guid": "b2464811", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-12-15T14:39:48.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2023-12-15T14:33:51+00:00", + "title": "Rebecca Welch appointment hailed as \u2018great moment\u2019 by Eddie Howe", + "link": "https://www.independent.co.uk/sport/football/premier-league-mikel-arteta-roy-hodgson-fulham-burnley-b2464694.html", + "pubDate": "Fri, 15 Dec 2023 14:33:51 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2023-12-15T14:33:51+00:00", + "content": "Welch will become the first female referee in top-flight history when she takes charge of the Fulham v Burnley match on December 23.", + "contentSnippet": "Welch will become the first female referee in top-flight history when she takes charge of the Fulham v Burnley match on December 23.", + "guid": "b2464694", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:33:51.000Z" + }, + { + "creator": "Brian Witte", + "date": "2023-12-15T14:31:37+00:00", + "title": "Maryland Gov. Wes Moore says Orioles lease at Camden Yards headed to a vote", + "link": "https://www.independent.co.uk/news/ap-maryland-baltimore-senate-baltimore-ravens-b2464812.html", + "pubDate": "Fri, 15 Dec 2023 14:31:37 GMT", + "dc:creator": "Brian Witte", + "dc:date": "2023-12-15T14:31:37+00:00", + "content": "Maryland Gov. Wes Moore says a long-term agreement between the Baltimore Orioles and the Maryland Stadium Authority for a new lease at Camden Yards is moving forward for a vote by state officials next week", + "contentSnippet": "Maryland Gov. Wes Moore says a long-term agreement between the Baltimore Orioles and the Maryland Stadium Authority for a new lease at Camden Yards is moving forward for a vote by state officials next week", + "guid": "b2464812", + "isoDate": "2023-12-15T14:31:37.000Z" + }, + { + "creator": "Michael Jones", + "date": "2023-12-15T14:29:28+00:00", + "title": "How to watch the World Darts Championship: TV channel and online stream", + "link": "https://www.independent.co.uk/sport/darts/world-darts-championship-tv-channel-live-stream-b2464804.html", + "pubDate": "Fri, 15 Dec 2023 14:29:28 GMT", + "dc:creator": "Michael Jones", + "dc:date": "2023-12-15T14:29:28+00:00", + "content": "

Everything you need to know about the tournament

", + "contentSnippet": "Everything you need to know about the tournament", + "guid": "b2454041", + "categories": ["Darts", "Sport"], + "isoDate": "2023-12-15T14:29:28.000Z" + }, + { + "creator": "Mike Corder", + "date": "2023-12-15T14:26:52+00:00", + "title": "Shops in 2 Dutch cities start selling legally grown cannabis in an experiment to regulate pot trade", + "link": "https://www.independent.co.uk/news/ap-dutch-shops-amsterdam-union-b2464807.html", + "pubDate": "Fri, 15 Dec 2023 14:26:52 GMT", + "dc:creator": "Mike Corder", + "dc:date": "2023-12-15T14:26:52+00:00", + "content": "A paradox at the heart of the Netherlands\u2019 permissive pot policy has gone up in smoke in two Dutch cities as \u201ccoffeeshops\u201d began selling the country\u2019s first legally cultivated cannabis", + "contentSnippet": "A paradox at the heart of the Netherlands\u2019 permissive pot policy has gone up in smoke in two Dutch cities as \u201ccoffeeshops\u201d began selling the country\u2019s first legally cultivated cannabis", + "guid": "b2464807", + "isoDate": "2023-12-15T14:26:52.000Z" + }, + { + "creator": "Maanya Sachdeva", + "date": "2023-12-15T14:23:24+00:00", + "title": "Sam Thompson reacts to Nigel Farage\u2019s record I\u2019m a Celebrity salary", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/sam-thompson-nigel-farage-im-a-celebrity-b2464630.html", + "pubDate": "Fri, 15 Dec 2023 14:23:24 GMT", + "dc:creator": "Maanya Sachdeva", + "dc:date": "2023-12-15T14:23:24+00:00", + "content": "

Thompson, 31, was crowned King of the Jungle after three weeks of Bushtucker-filled fun in the Australian wilderness

", + "contentSnippet": "Thompson, 31, was crowned King of the Jungle after three weeks of Bushtucker-filled fun in the Australian wilderness", + "guid": "b2464630", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-15T14:23:24.000Z" + }, + { + "creator": "Alicia Rancilio", + "date": "2023-12-15T14:18:24+00:00", + "title": "'Reacher' star Alan Ritchson talks season two of hit show and how 'Amazon took a risk' on him", + "link": "https://www.independent.co.uk/news/jack-reacher-ap-amazon-child-lee-b2464802.html", + "pubDate": "Fri, 15 Dec 2023 14:18:24 GMT", + "dc:creator": "Alicia Rancilio", + "dc:date": "2023-12-15T14:18:24+00:00", + "content": "The wandering Jack Reacher, created by novelist Lee Child, returns in a second season of \u201cReacher\u201d on Prime Video", + "contentSnippet": "The wandering Jack Reacher, created by novelist Lee Child, returns in a second season of \u201cReacher\u201d on Prime Video", + "guid": "b2464802", + "isoDate": "2023-12-15T14:18:24.000Z" + }, + { + "creator": "Simon Calder", + "date": "2023-12-15T14:16:19+00:00", + "title": "New border system for entering the EU finally gets 2024 launch date", + "link": "https://www.independent.co.uk/travel/news-and-advice/eu-entry-exit-system-fingerprints-facial-biometric-b2464730.html", + "pubDate": "Fri, 15 Dec 2023 14:16:19 GMT", + "dc:creator": "Simon Calder", + "dc:date": "2023-12-15T14:16:19+00:00", + "content": "

British travellers to Europe will need to submit fingerprints and facial biometrics

", + "contentSnippet": "British travellers to Europe will need to submit fingerprints and facial biometrics", + "guid": "b2464730", + "categories": ["News & Advice", "Travel"], + "isoDate": "2023-12-15T14:16:19.000Z" + }, + { + "creator": "Sonia Twigg", + "date": "2023-12-15T14:14:57+00:00", + "title": "Erling Haaland ruled out for Manchester City as Pep Guardiola issues injury update", + "link": "https://www.independent.co.uk/sport/football/pep-guardiola-erling-haaland-man-city-b2464770.html", + "pubDate": "Fri, 15 Dec 2023 14:14:57 GMT", + "dc:creator": "Sonia Twigg", + "dc:date": "2023-12-15T14:14:57+00:00", + "content": "

Erling Haaland could still be ruled out of the upcoming Club World Cup

", + "contentSnippet": "Erling Haaland could still be ruled out of the upcoming Club World Cup", + "guid": "b2464770", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:14:57.000Z" + }, + { + "creator": "Kaleigh Werner", + "date": "2023-12-15T14:13:07+00:00", + "title": "Blake Lively, Selena Gomez, and Zoe Kravitz: Taylor Swift\u2019s 34th birthday was a star-studded affair", + "link": "https://www.independent.co.uk/life-style/taylor-swift-birthday-party-nyc-b2464181.html", + "pubDate": "Fri, 15 Dec 2023 14:13:07 GMT", + "dc:creator": "Kaleigh Werner", + "dc:date": "2023-12-15T14:13:07+00:00", + "content": "

Selena Gomez, Blake Lively, Miles Teller, and Sabrina Carpenter were among the stars in attendance at Swift\u2019s 34th birthday party

", + "contentSnippet": "Selena Gomez, Blake Lively, Miles Teller, and Sabrina Carpenter were among the stars in attendance at Swift\u2019s 34th birthday party", + "guid": "b2464181", + "categories": ["Lifestyle"], + "isoDate": "2023-12-15T14:13:07.000Z" + }, + { + "creator": "Richard Jolly", + "date": "2023-12-15T14:06:24+00:00", + "title": "Erik ten Hag responds amid Manchester United sack rumours and Graham Potter links", + "link": "https://www.independent.co.uk/sport/football/erik-ten-hag-manchester-united-b2464796.html", + "pubDate": "Fri, 15 Dec 2023 14:06:24 GMT", + "dc:creator": "Richard Jolly", + "dc:date": "2023-12-15T14:06:24+00:00", + "content": "

The United manager brushed off speculation ahead of a crunch meeting with Liverpool this weekend

", + "contentSnippet": "The United manager brushed off speculation ahead of a crunch meeting with Liverpool this weekend", + "guid": "b2464796", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:06:24.000Z" + }, + { + "creator": "Gustaf Kilander", + "date": "2023-12-15T13:56:41+00:00", + "title": "Two hurt after plane makes fiery emergency landing on North Carolina highway", + "link": "https://www.independent.co.uk/news/world/americas/north-carolina-plane-crash-landing-b2464763.html", + "pubDate": "Fri, 15 Dec 2023 13:56:41 GMT", + "dc:creator": "Gustaf Kilander", + "dc:date": "2023-12-15T13:56:41+00:00", + "content": "

\u2018Looks like, honestly, with our best glide, we\u2019re probably not going to make it,\u2019 person on plane tells air traffic control

", + "contentSnippet": "\u2018Looks like, honestly, with our best glide, we\u2019re probably not going to make it,\u2019 person on plane tells air traffic control", + "guid": "b2464763", + "categories": ["Americas", "World"], + "isoDate": "2023-12-15T13:56:41.000Z" + }, + { + "creator": "Kate Devlin", + "date": "2023-12-15T13:56:33+00:00", + "title": "Rishi Sunak called the bluff of Tory mafia families in Rwanda vote, says George Osborne", + "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-george-osborne-bluff-mafia-b2464768.html", + "pubDate": "Fri, 15 Dec 2023 13:56:33 GMT", + "dc:creator": "Kate Devlin", + "dc:date": "2023-12-15T13:56:33+00:00", + "content": "

Former chancellor invokes The Godfather as he says \u201cthe one thing you should never do is threaten to go to the mattresses and then lie down in bed\u2019

", + "contentSnippet": "Former chancellor invokes The Godfather as he says \u201cthe one thing you should never do is threaten to go to the mattresses and then lie down in bed\u2019", + "guid": "b2464768", + "categories": ["UK Politics", "UK"], + "isoDate": "2023-12-15T13:56:33.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-15T13:55:47+00:00", + "title": "Watch: Donald Trump boasts he is healthier than Barack Obama", + "link": "https://www.independent.co.uk/tv/news/donald-trump-barack-obama-video-b2464781.html", + "pubDate": "Fri, 15 Dec 2023 13:55:47 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-15T13:55:47+00:00", + "content": "

Former President Donald Trump claims a former White House doctor told him he is healthier than his predecessor Barack Obama.

", + "contentSnippet": "Former President Donald Trump claims a former White House doctor told him he is healthier than his predecessor Barack Obama.", + "guid": "b2464781", + "categories": ["News", "Indy TV"], + "isoDate": "2023-12-15T13:55:47.000Z" + }, + { + "creator": "Alexander Butler", + "date": "2023-12-15T13:54:20+00:00", + "title": "Alex Batty: Timeline of British boy\u2019s disappearance as he\u2019s found after six years", + "link": "https://www.independent.co.uk/news/uk/home-news/alex-batty-missing-found-mother-oldham-latest-b2464681.html", + "pubDate": "Fri, 15 Dec 2023 13:54:20 GMT", + "dc:creator": "Alexander Butler", + "dc:date": "2023-12-15T13:54:20+00:00", + "content": "

Alex Batty went missing six years ago in October 2017 after going on a family holiday to Marbella

", + "contentSnippet": "Alex Batty went missing six years ago in October 2017 after going on a family holiday to Marbella", + "guid": "b2464681", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-15T13:54:20.000Z" + }, + { + "creator": "Lorne Cook", + "date": "2023-12-15T13:52:16+00:00", + "title": "The EU struggles to unify around a Gaza cease-fire call but work on peace moves continues", + "link": "https://www.independent.co.uk/news/uk/politics/hamas-ap-israel-gaza-brussels-b2464789.html", + "pubDate": "Fri, 15 Dec 2023 13:52:16 GMT", + "dc:creator": "Lorne Cook", + "dc:date": "2023-12-15T13:52:16+00:00", + "content": "A number of European Union leaders are trying to use mounting concern about civilian deaths in Israel\u2019s military offensive against Hamas to rally their partners around a united call for a ceasefire in Gaza", + "contentSnippet": "A number of European Union leaders are trying to use mounting concern about civilian deaths in Israel\u2019s military offensive against Hamas to rally their partners around a united call for a ceasefire in Gaza", + "guid": "b2464789", + "categories": ["UK Politics", "UK"], + "isoDate": "2023-12-15T13:52:16.000Z" + }, + { + "creator": "Richard Jolly", + "date": "2023-12-15T13:49:44+00:00", + "title": "Jurgen Klopp reveals the \u2018truth\u2019 behind Liverpool\u2019s vulnerability during rebuild", + "link": "https://www.independent.co.uk/sport/football/liverpool-jurgen-klopp-manchester-united-b2464734.html", + "pubDate": "Fri, 15 Dec 2023 13:49:44 GMT", + "dc:creator": "Richard Jolly", + "dc:date": "2023-12-15T13:49:44+00:00", + "content": "

The Reds boss has also dismissed chances that his side will repeat last season\u2019s 7-0 hammering of their bitter rivals, describing that result as \u2018once in a lifetime\u2019

", + "contentSnippet": "The Reds boss has also dismissed chances that his side will repeat last season\u2019s 7-0 hammering of their bitter rivals, describing that result as \u2018once in a lifetime\u2019", + "guid": "b2456713", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T13:49:44.000Z" + }, + { + "creator": "Sarah Ward", + "date": "2023-12-15T13:43:55+00:00", + "title": "Students saddle up to learn how to ride on \u2018RoboCob\u2019", + "link": "https://www.independent.co.uk/tech/west-lothian-b2464784.html", + "pubDate": "Fri, 15 Dec 2023 13:43:55 GMT", + "dc:creator": "Sarah Ward", + "dc:date": "2023-12-15T13:43:55+00:00", + "content": "A \u00a3100,000 horse simulator has been unveiled at Scotland\u2019s Rural College in West Lothian.", + "contentSnippet": "A \u00a3100,000 horse simulator has been unveiled at Scotland\u2019s Rural College in West Lothian.", + "guid": "b2464784", + "categories": ["Tech"], + "isoDate": "2023-12-15T13:43:55.000Z" + }, + { + "creator": "Faiza Saqib", + "date": "2023-12-15T13:43:37+00:00", + "title": "Good Morning Britain presenter Susanna Reid announces Christmas break from ITV show", + "link": "https://www.independent.co.uk/arts-entertainment/tv/gmb-susanna-reid-christmas-itv-b2464657.html", + "pubDate": "Fri, 15 Dec 2023 13:43:37 GMT", + "dc:creator": "Faiza Saqib", + "dc:date": "2023-12-15T13:43:37+00:00", + "content": "

The presenter shared the news with her fans on social media

", + "contentSnippet": "The presenter shared the news with her fans on social media", + "guid": "b2464657", + "categories": ["TV & Radio", "Culture"], + "isoDate": "2023-12-15T13:43:37.000Z" + }, + { + "creator": "Ariana Baio", + "date": "2023-12-15T13:41:36+00:00", + "title": "Five people injured in Brooklyn home fire ", + "link": "https://www.independent.co.uk/news/world/americas/brooklyn-fire-building-williamsburg-fdny-b2464766.html", + "pubDate": "Fri, 15 Dec 2023 13:41:36 GMT", + "dc:creator": "Ariana Baio", + "dc:date": "2023-12-15T13:41:36+00:00", + "content": "

Fire began in a two-story multi-family home before spreading to a nearby building

", + "contentSnippet": "Fire began in a two-story multi-family home before spreading to a nearby building", + "guid": "b2464766", + "categories": ["Americas", "World"], + "isoDate": "2023-12-15T13:41:36.000Z" + }, + { + "creator": "Alex Lee", + "date": "2023-12-15T13:38:55+00:00", + "title": "The Xbox Series X price has plummeted to an all-time low, and it arrives before Christmas", + "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/video-games-consoles/xbox-series-x-deal-amazon-b2446968.html", + "pubDate": "Fri, 15 Dec 2023 13:38:55 GMT", + "dc:creator": "Alex Lee", + "dc:date": "2023-12-15T13:38:55+00:00", + "content": "

The console has never been cheaper in the three years since it launched

", + "contentSnippet": "The console has never been cheaper in the three years since it launched", + "guid": "b2446968", + "categories": ["Video Games & Consoles", "Tech", "IndyBest", "Extras"], + "isoDate": "2023-12-15T13:38:55.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-15T13:35:46+00:00", + "title": "The title of Bill Maher's new book promises \u201cWhat This Comedian Said Will Shock You\"", + "link": "https://www.independent.co.uk/news/bill-maher-ap-new-york-hbo-b2464782.html", + "pubDate": "Fri, 15 Dec 2023 13:35:46 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-15T13:35:46+00:00", + "content": "Bill Maher has had a few second thoughts, or at least some variations on the first ones", + "contentSnippet": "Bill Maher has had a few second thoughts, or at least some variations on the first ones", + "guid": "b2464782", + "isoDate": "2023-12-15T13:35:46.000Z" + }, + { + "creator": "Lawrence Ostlere", + "date": "2023-12-15T13:35:40+00:00", + "title": "Christopher Nkunku could make Chelsea debut against Sheffield United, says Mauricio Pochettino", + "link": "https://www.independent.co.uk/sport/football/christopher-nkunku-chelsea-squad-news-b2464764.html", + "pubDate": "Fri, 15 Dec 2023 13:35:40 GMT", + "dc:creator": "Lawrence Ostlere", + "dc:date": "2023-12-15T13:35:40+00:00", + "content": "

The 26-year-old France striker could finally begin his Chelsea career when the Blues take on Sheffield United at Stamford Bridge on Saturday

", + "contentSnippet": "The 26-year-old France striker could finally begin his Chelsea career when the Blues take on Sheffield United at Stamford Bridge on Saturday", + "guid": "b2464755", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T13:35:40.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2023-12-15T13:34:17+00:00", + "title": "Two men walk free from prison decades after being wrongfully convicted of murder as teens", + "link": "https://www.independent.co.uk/news/world/americas/two-men-freed-wrongful-conviction-b2464653.html", + "pubDate": "Fri, 15 Dec 2023 13:34:17 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2023-12-15T13:34:17+00:00", + "content": "

Two men have been exonerated after decades in prison for seperate murder charges on crimes they did not commit

", + "contentSnippet": "Two men have been exonerated after decades in prison for seperate murder charges on crimes they did not commit", + "guid": "b2464653", + "categories": ["Americas", "World"], + "isoDate": "2023-12-15T13:34:17.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-15T13:34:05+00:00", + "title": "Next UFC Fight Night: Event start time, card and how to watch", + "link": "https://www.independent.co.uk/sport/ufc/next-ufc-fight-event-december-schedule-2023-b2461922.html", + "pubDate": "Fri, 15 Dec 2023 13:34:05 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-15T13:34:05+00:00", + "content": "

All you need to know about the MMA promotion\u2019s upcoming fights

", + "contentSnippet": "All you need to know about the MMA promotion\u2019s upcoming fights", + "guid": "b2461922", + "categories": ["UFC", "Sport"], + "isoDate": "2023-12-15T13:34:05.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-15T13:33:50+00:00", + "title": "Jake Paul vs Andre August time: When does fight start in UK and US tonight?", + "link": "https://www.independent.co.uk/sport/boxing/jake-paul-andre-august-start-time-ring-walks-b2464663.html", + "pubDate": "Fri, 15 Dec 2023 13:33:50 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-15T13:33:50+00:00", + "content": "

The YouTuber-turned-boxer fights the unknown August in Orlando

", + "contentSnippet": "The YouTuber-turned-boxer fights the unknown August in Orlando", + "guid": "b2463514", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-12-15T13:33:50.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-15T13:33:37+00:00", + "title": "Jake Paul vs Andre August live stream: How to watch fight online and on TV tonight", + "link": "https://www.independent.co.uk/sport/boxing/jake-paul-andre-august-live-stream-watch-online-b2464662.html", + "pubDate": "Fri, 15 Dec 2023 13:33:37 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-15T13:33:37+00:00", + "content": "

The YouTuber-turned-boxer fights the unknown August in Orlando

", + "contentSnippet": "The YouTuber-turned-boxer fights the unknown August in Orlando", + "guid": "b2463489", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-12-15T13:33:37.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-15T13:33:22+00:00", + "title": "UFC 296 card: Leon Edwards and Paddy Pimblett in action ", + "link": "https://www.independent.co.uk/sport/ufc/ufc-296-card-leon-edwards-paddy-pimblett-b2463904.html", + "pubDate": "Fri, 15 Dec 2023 13:33:22 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-15T13:33:22+00:00", + "content": "

Here\u2019s all you need to know ahead of a stacked card in Las Vegas this weekend

", + "contentSnippet": "Here\u2019s all you need to know ahead of a stacked card in Las Vegas this weekend", + "guid": "b2463904", + "categories": ["UFC", "Sport"], + "isoDate": "2023-12-15T13:33:22.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-15T13:33:13+00:00", + "title": "UFC 296 time: When does Leon Edwards vs Colby Covington start in UK and US this weekend?", + "link": "https://www.independent.co.uk/sport/ufc/ufc-296-start-time-uk-b2461954.html", + "pubDate": "Fri, 15 Dec 2023 13:33:13 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-15T13:33:13+00:00", + "content": "

Here\u2019s all you need to know ahead of two title fights in Las Vegas this weekend

", + "contentSnippet": "Here\u2019s all you need to know ahead of two title fights in Las Vegas this weekend", + "guid": "b2461954", + "categories": ["UFC", "Sport"], + "isoDate": "2023-12-15T13:33:13.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-12-15T13:33:01+00:00", + "title": "UFC 296 live stream: How to watch Leon Edwards vs Colby Covington online and on TV this weekend", + "link": "https://www.independent.co.uk/sport/ufc/ufc-296-live-stream-watch-online-b2461948.html", + "pubDate": "Fri, 15 Dec 2023 13:33:01 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-12-15T13:33:01+00:00", + "content": "

Here\u2019s all you need to know ahead of two title fights in Las Vegas this weekend

", + "contentSnippet": "Here\u2019s all you need to know ahead of two title fights in Las Vegas this weekend", + "guid": "b2461948", + "categories": ["UFC", "Sport"], + "isoDate": "2023-12-15T13:33:01.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-15T13:31:21+00:00", + "title": "Landlord uses chainsaw to cut through door \u2018to evict tenants\u2019", + "link": "https://www.independent.co.uk/tv/lifestyle/landlord-chainsaw-eviction-video-b2464752.html", + "pubDate": "Fri, 15 Dec 2023 13:31:21 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-15T13:31:21+00:00", + "content": "

This is the moment a landlord cuts a hole in the door of a property to allegedly evict a tenant.

", + "contentSnippet": "This is the moment a landlord cuts a hole in the door of a property to allegedly evict a tenant.", + "guid": "b2464752", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2023-12-15T13:31:21.000Z" + }, + { + "creator": "Holly Evans", + "date": "2023-12-15T13:29:42+00:00", + "title": "Judge rules Prince Harry was hacked and awards him \u00a3140,000", + "link": "https://www.independent.co.uk/news/uk/home-news/prince-harry-mirror-group-phone-hacking-b2464171.html", + "pubDate": "Fri, 15 Dec 2023 13:29:42 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2023-12-15T13:29:42+00:00", + "content": "

The Duke of Sussex has been awarded \u00a3140,600 after the judge found he was the victim of \u2018extensive\u2019 hacking over several years

", + "contentSnippet": "The Duke of Sussex has been awarded \u00a3140,600 after the judge found he was the victim of \u2018extensive\u2019 hacking over several years", + "guid": "b2464171", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-15T13:29:42.000Z" + }, + { + "creator": "Alexander Butler and Adam Forrest", + "date": "2023-12-15T13:24:05+00:00", + "title": "One dead and another fighting for life after small boat carrying 66 migrants sinks in Channel", + "link": "https://www.independent.co.uk/news/world/europe/channel-crossing-migrant-death-latest-news-b2464588.html", + "pubDate": "Fri, 15 Dec 2023 13:24:05 GMT", + "dc:creator": "Alexander Butler and Adam Forrest", + "dc:date": "2023-12-15T13:24:05+00:00", + "content": "

No 10 says woman\u2019s death is \u2018stark reminder\u2019 of the importance of Sunak\u2019s stop the boats plan

", + "contentSnippet": "No 10 says woman\u2019s death is \u2018stark reminder\u2019 of the importance of Sunak\u2019s stop the boats plan", + "guid": "b2464588", + "categories": ["Europe", "World"], + "isoDate": "2023-12-15T13:24:05.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2023-12-15T13:16:12+00:00", + "title": "French driver who found British teenager Alex Batty recalls taking him to police station", + "link": "https://www.independent.co.uk/tv/news/alex-batty-found-france-oldham-driver-b2464660.html", + "pubDate": "Fri, 15 Dec 2023 13:16:12 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2023-12-15T13:16:12+00:00", + "content": "

The driver who picked up missing British teenager Alex Batty and took him to a police station in southwestern France has recalled the conversations they shared.

", + "contentSnippet": "The driver who picked up missing British teenager Alex Batty and took him to a police station in southwestern France has recalled the conversations they shared.", + "guid": "b2464660", + "categories": ["News", "Indy TV"], + "isoDate": "2023-12-15T13:16:12.000Z" + }, + { + "creator": "Pan Pylas", + "date": "2023-12-15T13:06:26+00:00", + "title": "Migrant dies and another is in critical condition after boat partially deflates in English Channel", + "link": "https://www.independent.co.uk/news/world/europe/english-channel-ap-rwanda-french-france-b2464761.html", + "pubDate": "Fri, 15 Dec 2023 13:06:26 GMT", + "dc:creator": "Pan Pylas", + "dc:date": "2023-12-15T13:06:26+00:00", + "content": "One person died Friday and another is in critical condition after a boat carrying more than 60 migrants got into difficulty as it attempted to make the dangerous crossing across the English Channel from France", + "contentSnippet": "One person died Friday and another is in critical condition after a boat carrying more than 60 migrants got into difficulty as it attempted to make the dangerous crossing across the English Channel from France", + "guid": "b2464761", + "categories": ["Europe", "World"], + "isoDate": "2023-12-15T13:06:26.000Z" + }, + { + "creator": "Alex Ross and Peter Allen", + "date": "2023-12-15T13:04:57+00:00", + "title": "Alex Batty\u2019s family fear teenager was \u2018brainwashed\u2019 in commune while missing for six years", + "link": "https://www.independent.co.uk/news/world/europe/missing-alex-batty-found-oldham-brainwashed-b2464690.html", + "pubDate": "Fri, 15 Dec 2023 13:04:57 GMT", + "dc:creator": "Alex Ross and Peter Allen", + "dc:date": "2023-12-15T13:04:57+00:00", + "content": "

Relatives are overjoyed by Alex Batty\u2019s discovery, but fear for his wellbeing after six years away

", + "contentSnippet": "Relatives are overjoyed by Alex Batty\u2019s discovery, but fear for his wellbeing after six years away", + "guid": "b2464690", + "categories": ["Europe", "World"], + "isoDate": "2023-12-15T13:04:57.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2023-12-15T13:02:53+00:00", + "title": "Matt Gaetz trolled with fake award for \u2018paying underage girls for sex\u2019", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/matt-gaetz-gop-fake-award-b2464504.html", + "pubDate": "Fri, 15 Dec 2023 13:02:53 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2023-12-15T13:02:53+00:00", + "content": "

The Florida congressman was caught off guard by the troll, who appeared onstage at the Strongsville Republican Party\u2019s Christmas gathering

", + "contentSnippet": "The Florida congressman was caught off guard by the troll, who appeared onstage at the Strongsville Republican Party\u2019s Christmas gathering", + "guid": "b2464504", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-15T13:02:53.000Z" + }, + { + "creator": "Associated Press", + "date": "2023-12-15T13:02:53+00:00", + "title": "Why have thousands of United Methodist churches in the US quit the denomination?", + "link": "https://www.independent.co.uk/news/ap-progressives-churches-associated-press-europe-b2464760.html", + "pubDate": "Fri, 15 Dec 2023 13:02:53 GMT", + "dc:creator": "Associated Press", + "dc:date": "2023-12-15T13:02:53+00:00", + "content": "The United Methodist Church has been undergoing a major upheaval as more than 7,000 congregations across the country decided to leave the denomination", + "contentSnippet": "The United Methodist Church has been undergoing a major upheaval as more than 7,000 congregations across the country decided to leave the denomination", + "guid": "b2464760", + "isoDate": "2023-12-15T13:02:53.000Z" + }, + { + "creator": "Kris Griffiths", + "date": "2023-12-15T13:01:31+00:00", + "title": "How to spend a day in San Francisco\u2019s Japantown, the poster child for the city\u2019s post-Covid recovery", + "link": "https://www.independent.co.uk/travel/north-america/usa/california/san-francisco-japantown-guide-b2463779.html", + "pubDate": "Fri, 15 Dec 2023 13:01:31 GMT", + "dc:creator": "Kris Griffiths", + "dc:date": "2023-12-15T13:01:31+00:00", + "content": "

Now\u2019s a better time than ever to visit this thriving, underrated district of a city that is still getting back onto its feet, writes Kris Griffiths

", + "contentSnippet": "Now\u2019s a better time than ever to visit this thriving, underrated district of a city that is still getting back onto its feet, writes Kris Griffiths", + "guid": "b2463779", + "categories": ["California", "USA", "North America", "Travel"], + "isoDate": "2023-12-15T13:01:31.000Z" + }, + { + "creator": "Bassem Mroue", + "date": "2023-12-15T13:00:18+00:00", + "title": "US national security adviser says a negotiated outcome is the best way to end Lebanon-Israel tension", + "link": "https://www.independent.co.uk/news/jake-sullivan-ap-israel-lebanon-hezbollah-b2464759.html", + "pubDate": "Fri, 15 Dec 2023 13:00:18 GMT", + "dc:creator": "Bassem Mroue", + "dc:date": "2023-12-15T13:00:18+00:00", + "content": "U.S. National Security Adviser Jake Sullivan says he has discussed with Israeli officials the volatile situation along the Lebanon-Israel border", + "contentSnippet": "U.S. National Security Adviser Jake Sullivan says he has discussed with Israeli officials the volatile situation along the Lebanon-Israel border", + "guid": "b2464759", + "isoDate": "2023-12-15T13:00:18.000Z" + }, + { + "creator": "Peter Smith", + "date": "2023-12-15T12:59:53+00:00", + "title": "One fourth of United Methodist churches in US have left in schism over LGBTQ ban. What happens now?", + "link": "https://www.independent.co.uk/news/ap-africa-conservatives-african-associated-press-b2464758.html", + "pubDate": "Fri, 15 Dec 2023 12:59:53 GMT", + "dc:creator": "Peter Smith", + "dc:date": "2023-12-15T12:59:53+00:00", + "content": "United Methodist churches had a five-year window to leave the denomination over disputes involving its bans on same-sex marriage and ordaining LGBTQ persons", + "contentSnippet": "United Methodist churches had a five-year window to leave the denomination over disputes involving its bans on same-sex marriage and ordaining LGBTQ persons", + "guid": "b2464758", + "isoDate": "2023-12-15T12:59:53.000Z" + }, + { + "creator": "Gerold Rozenblad", + "date": "2023-12-15T12:58:22+00:00", + "title": "Suriname's ex-dictator faces final verdict in 1982 killings of political opponents. Some fear unrest", + "link": "https://www.independent.co.uk/news/desi-bouterse-ap-suriname-african-hezbollah-b2464757.html", + "pubDate": "Fri, 15 Dec 2023 12:58:22 GMT", + "dc:creator": "Gerold Rozenblad", + "dc:date": "2023-12-15T12:58:22+00:00", + "content": "Suriname\u2019s former dictator will face a final verdict this month in the years-long judicial process over the 1982 killings of 15 political opponents that deeply scarred the South American country", + "contentSnippet": "Suriname\u2019s former dictator will face a final verdict this month in the years-long judicial process over the 1982 killings of 15 political opponents that deeply scarred the South American country", + "guid": "b2464757", + "isoDate": "2023-12-15T12:58:22.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2023-12-15T12:56:30+00:00", + "title": "Police handcuff 11-year-old girl over prank phone call", + "link": "https://www.independent.co.uk/news/world/americas/police-handcuff-schoolgirl-prank-call-b2464728.html", + "pubDate": "Fri, 15 Dec 2023 12:56:30 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2023-12-15T12:56:30+00:00", + "content": "

Parents of an 11-year-old girl outraged after she was handcuffed over a prank call

", + "contentSnippet": "Parents of an 11-year-old girl outraged after she was handcuffed over a prank call", + "guid": "b2464728", + "categories": ["Americas", "World"], + "isoDate": "2023-12-15T12:56:30.000Z" + }, + { + "creator": "", + "date": "2023-12-15T12:53:54+00:00", + "title": "Gift someone up to $1 million with the 2 Million Dollar Puzzle by MSCHF", + "link": "https://www.independent.co.uk/us/gift-someone-up-to-1-million-with-the-2-million-dollar-puzzle-b2464048.html", + "pubDate": "Fri, 15 Dec 2023 12:53:54 GMT", + "dc:creator": "", + "dc:date": "2023-12-15T12:53:54+00:00", + "content": "

If winning $1 million by completing a simple puzzle seems like a golden ticket fantasy, then MSCHF is Willy Wonka

", + "contentSnippet": "If winning $1 million by completing a simple puzzle seems like a golden ticket fantasy, then MSCHF is Willy Wonka", + "guid": "b2464048", + "categories": ["US"], + "isoDate": "2023-12-15T12:53:54.000Z" + }, + { + "creator": "Martha McHardy", + "date": "2023-12-15T12:45:44+00:00", + "title": "Jill Biden\u2019s \u2018tacky\u2019 Christmas video draws mockery - and comparison to Melania Trump ", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/jill-biden-christmas-video-melania-trump-b2464558.html", + "pubDate": "Fri, 15 Dec 2023 12:45:44 GMT", + "dc:creator": "Martha McHardy", + "dc:date": "2023-12-15T12:45:44+00:00", + "content": "

Dr Biden previously said she wanted everyone who visits the White House during the holidays to feel like a kid again

", + "contentSnippet": "Dr Biden previously said she wanted everyone who visits the White House during the holidays to feel like a kid again", + "guid": "b2464167", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-15T12:45:44.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-15T12:41:07+00:00", + "title": "Spanish police arrest 14 airport workers after items go missing from checked-in luggage", + "link": "https://www.independent.co.uk/news/spanish-ap-madrid-police-canary-islands-b2464745.html", + "pubDate": "Fri, 15 Dec 2023 12:41:07 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-15T12:41:07+00:00", + "content": "Spanish police say they have arrested 14 workers at one of the country\u2019s main tourist airports on suspicion of stealing items from checked-in luggage", + "contentSnippet": "Spanish police say they have arrested 14 workers at one of the country\u2019s main tourist airports on suspicion of stealing items from checked-in luggage", + "guid": "b2464745", + "isoDate": "2023-12-15T12:41:07.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-12-15T12:40:33+00:00", + "title": "Kenny DeForest death: Comedy world mourns loss of beloved stand-up, 37, killed in road accident ", + "link": "https://www.independent.co.uk/arts-entertainment/comedy/news/kenny-deforest-death-cause-comedy-b2464618.html", + "pubDate": "Fri, 15 Dec 2023 12:40:33 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-12-15T12:40:33+00:00", + "content": "

The stand-up has been hailed as \u2018one of the funniest and most beloved comics any of us knew\u2019

", + "contentSnippet": "The stand-up has been hailed as \u2018one of the funniest and most beloved comics any of us knew\u2019", + "guid": "b2464618", + "categories": ["News", "Comedy", "Culture"], + "isoDate": "2023-12-15T12:40:33.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-12-15T12:39:23+00:00", + "title": "Netflix has renewed its \u2018best show of 2023\u2019 a month after quietly releasing it ", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/blue-eye-samurai-season-2-netflix-uk-b2464742.html", + "pubDate": "Fri, 15 Dec 2023 12:39:23 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-12-15T12:39:23+00:00", + "content": "

The hidden gem has a 100 per cent rating on Rotten Tomatoes

", + "contentSnippet": "The hidden gem has a 100 per cent rating on Rotten Tomatoes", + "guid": "b2463057", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2023-12-15T12:39:23.000Z" + }, + { + "creator": "Joe Sommerlad", + "date": "2023-12-15T12:36:17+00:00", + "title": "Trump lashes out at New York AG after losing gag order appeal", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/trump-letitia-james-civil-trial-b2464723.html", + "pubDate": "Fri, 15 Dec 2023 12:36:17 GMT", + "dc:creator": "Joe Sommerlad", + "dc:date": "2023-12-15T12:36:17+00:00", + "content": "

Republican presidential frontrunner insists financial statements \u2018undervalued\u2019, not overstated as Letitia James has alleged in $250m lawsuit

", + "contentSnippet": "Republican presidential frontrunner insists financial statements \u2018undervalued\u2019, not overstated as Letitia James has alleged in $250m lawsuit", + "guid": "b2464723", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-12-15T12:36:17.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-15T12:33:16+00:00", + "title": "Germany's parliament approves a plan for a bigger hike in carbon price after a budget deal", + "link": "https://www.independent.co.uk/news/world/europe/germany-ap-berlin-olaf-scholz-covid-b2464741.html", + "pubDate": "Fri, 15 Dec 2023 12:33:16 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-15T12:33:16+00:00", + "content": "Germany's parliament has approved plans to raise the country\u2019s levy on carbon dioxide emissions from fuel by more than previously planned next month", + "contentSnippet": "Germany's parliament has approved plans to raise the country\u2019s levy on carbon dioxide emissions from fuel by more than previously planned next month", + "guid": "b2464741", + "categories": ["Europe", "World"], + "isoDate": "2023-12-15T12:33:16.000Z" + }, + { + "creator": "Simon Calder", + "date": "2023-12-15T12:32:04+00:00", + "title": "More travel red tape for Europe trips: Get ready for Etias and EES", + "link": "https://www.independent.co.uk/travel/news-and-advice/brexit-border-etias-dover-eurostar-b2130495.html", + "pubDate": "Fri, 15 Dec 2023 12:32:04 GMT", + "dc:creator": "Simon Calder", + "dc:date": "2023-12-15T12:32:04+00:00", + "content": "

Under the Entry/Exit System every British traveller to the Schengen Area must be fingerprinted and provide a facial biometric

", + "contentSnippet": "Under the Entry/Exit System every British traveller to the Schengen Area must be fingerprinted and provide a facial biometric", + "guid": "b2130495", + "categories": ["News & Advice", "Travel"], + "isoDate": "2023-12-15T12:32:04.000Z" + }, + { + "creator": "Culture Staff,Jessie Thompson,Matt Payton,Louis Chilton,Ellie Harrison,Olivia Petter,Katie Rosseinsky,Victoria Richards and Tom Murray", + "date": "2023-12-15T12:31:39+00:00", + "title": "Best books to gift (and gift again) at Christmas: The Independent newsroom make their picks", + "link": "https://www.independent.co.uk/arts-entertainment/books/features/best-books-gifts-christmas-2023-b2463991.html", + "pubDate": "Fri, 15 Dec 2023 12:31:39 GMT", + "dc:creator": "Culture Staff,Jessie Thompson,Matt Payton,Louis Chilton,Ellie Harrison,Olivia Petter,Katie Rosseinsky,Victoria Richards and Tom Murray", + "dc:date": "2023-12-15T12:31:39+00:00", + "content": "

When you give someone a book as a gift, what you\u2019re really giving them is a few hours of pleasure. Indy staff share their trusted literary gifts this Christmas

", + "contentSnippet": "When you give someone a book as a gift, what you\u2019re really giving them is a few hours of pleasure. Indy staff share their trusted literary gifts this Christmas", + "guid": "b2463991", + "categories": ["Features", "Books", "Culture"], + "isoDate": "2023-12-15T12:31:39.000Z" + }, + { + "creator": "Gemma Abbott", + "date": "2023-12-15T12:30:25+00:00", + "title": "Voices: At last, women referees are here to fix men\u2019s football", + "link": "https://www.independent.co.uk/voices/women-referees-premier-league-men-football-b2464720.html", + "pubDate": "Fri, 15 Dec 2023 12:30:25 GMT", + "dc:creator": "Gemma Abbott", + "dc:date": "2023-12-15T12:30:25+00:00", + "content": "

The beautiful game needs a woman\u2019s touch, writes Gemma Abbott \u2013 not just to stop male grandstanding, but to help stem the exodus of officials from the sport

", + "contentSnippet": "The beautiful game needs a woman\u2019s touch, writes Gemma Abbott \u2013 not just to stop male grandstanding, but to help stem the exodus of officials from the sport", + "guid": "b2464720", + "categories": ["Voices"], + "isoDate": "2023-12-15T12:30:25.000Z" + }, + { + "creator": "Anna Wise", + "date": "2023-12-15T12:22:43+00:00", + "title": "More than a quarter of people worried about affording Christmas \u2013 ONS", + "link": "https://www.independent.co.uk/money/more-than-a-quarter-of-people-worried-about-affording-christmas-ons-b2464738.html", + "pubDate": "Fri, 15 Dec 2023 12:22:43 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2023-12-15T12:22:43+00:00", + "content": "Some 28% reported feeling worried about being able to afford the things they planned to do this Christmas, the Office for National Statistics found.", + "contentSnippet": "Some 28% reported feeling worried about being able to afford the things they planned to do this Christmas, the Office for National Statistics found.", + "guid": "b2464738", + "categories": ["Money"], + "isoDate": "2023-12-15T12:22:43.000Z" + }, + { + "creator": "Alexander Butler", + "date": "2023-12-15T12:18:02+00:00", + "title": "Met Office issues 24-hour \u2018danger to life\u2019 weather warning", + "link": "https://www.independent.co.uk/news/uk/home-news/met-office-weather-warning-weekend-amber-danger-b2464711.html", + "pubDate": "Fri, 15 Dec 2023 12:18:02 GMT", + "dc:creator": "Alexander Butler", + "dc:date": "2023-12-15T12:18:02+00:00", + "content": "

The 24-hour amber warning is in place across Scotland ahead of heavy rain forecast in parts of the UK

", + "contentSnippet": "The 24-hour amber warning is in place across Scotland ahead of heavy rain forecast in parts of the UK", + "guid": "b2464711", + "categories": ["Home News", "UK"], + "isoDate": "2023-12-15T12:18:02.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-12-15T12:16:21+00:00", + "title": "Will Smith reveals stylist\u2019s \u2018terrible error\u2019 ahead of fashion shoot", + "link": "https://www.independent.co.uk/tv/culture/will-smith-fashion-shoot-mishap-b2464632.html", + "pubDate": "Fri, 15 Dec 2023 12:16:21 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-12-15T12:16:21+00:00", + "content": "

Hollywood star Will Smith revealed a fashion mishap ahead of a shoot on set saying he had \u201cnever experienced anything like it\u201d.

", + "contentSnippet": "Hollywood star Will Smith revealed a fashion mishap ahead of a shoot on set saying he had \u201cnever experienced anything like it\u201d.", + "guid": "b2464632", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-12-15T12:16:21.000Z" + }, + { + "creator": "Guy Walters", + "date": "2023-12-15T12:13:03+00:00", + "title": "Fergie goes to Burnley on a weight-loss mission", + "link": "https://www.independent.co.uk/tv/news/sarah-ferguson-burnley-obesity-b2464717.html", + "pubDate": "Fri, 15 Dec 2023 12:13:03 GMT", + "dc:creator": "Guy Walters", + "dc:date": "2023-12-15T12:13:03+00:00", + "content": "

Sarah Ferguson has visited Burnley in a bid to tackle the town\u2019s obesity problems.

", + "contentSnippet": "Sarah Ferguson has visited Burnley in a bid to tackle the town\u2019s obesity problems.", + "guid": "b2464717", + "categories": ["News", "Indy TV"], + "isoDate": "2023-12-15T12:13:03.000Z" + }, + { + "creator": "Karin Laub,Najib Jobain and Bassem Mroue", + "date": "2023-12-15T12:12:32+00:00", + "title": "US and Israel discuss when to scale back Gaza combat but agree fight will take months, envoy says", + "link": "https://www.independent.co.uk/news/world/americas/israel-ap-jake-sullivan-gaza-hamas-b2464736.html", + "pubDate": "Fri, 15 Dec 2023 12:12:32 GMT", + "dc:creator": "Karin Laub,Najib Jobain and Bassem Mroue", + "dc:date": "2023-12-15T12:12:32+00:00", + "content": "A top U.S. envoy says the United States agrees with Israel that the fight against Hamas will take months, but officials are discussing the timetable for scaling back from high-intensity combat to more precise ways of targeting the militant group\u2019s leaders", + "contentSnippet": "A top U.S. envoy says the United States agrees with Israel that the fight against Hamas will take months, but officials are discussing the timetable for scaling back from high-intensity combat to more precise ways of targeting the militant group\u2019s leaders", + "guid": "b2464736", + "categories": ["Americas", "World"], + "isoDate": "2023-12-15T12:12:32.000Z" + }, + { + "creator": "Kieran Jackson", + "date": "2023-12-15T12:06:57+00:00", + "title": "\u2018His life is different now\u2019: Michael Schumacher update given by close friend", + "link": "https://www.independent.co.uk/f1/f1-michael-schumacher-update-health-jean-todt-b2464713.html", + "pubDate": "Fri, 15 Dec 2023 12:06:57 GMT", + "dc:creator": "Kieran Jackson", + "dc:date": "2023-12-15T12:06:57+00:00", + "content": "

Schumacher has not been seen publicly since a near-fatal skiing accident in France almost 10 years ago

", + "contentSnippet": "Schumacher has not been seen publicly since a near-fatal skiing accident in France almost 10 years ago", + "guid": "b2464713", + "categories": ["F1"], + "isoDate": "2023-12-15T12:06:57.000Z" + }, + { + "creator": "Lauren Cunningham", + "date": "2023-12-15T12:04:35+00:00", + "title": "11 luxury fashion finds under \u00a3100 that will make great Christmas gifts", + "link": "https://www.independent.co.uk/extras/indybest/christmasgifts/affordable-luxury-fashion-christmas-gifts-b2464443.html", + "pubDate": "Fri, 15 Dec 2023 12:04:35 GMT", + "dc:creator": "Lauren Cunningham", + "dc:date": "2023-12-15T12:04:35+00:00", + "content": "

No matter who you\u2019re shopping for, these gifts are sure to put a smile on somebody\u2019s face

", + "contentSnippet": "No matter who you\u2019re shopping for, these gifts are sure to put a smile on somebody\u2019s face", + "guid": "b2464443", + "categories": ["Christmas", "IndyBest", "Extras"], + "isoDate": "2023-12-15T12:04:35.000Z" + }, + { + "creator": "George Sessions", + "date": "2023-12-15T12:00:04+00:00", + "title": "Ange Postecoglou hopeful of landing January targets to boost Tottenham ranks", + "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-son-heungmin-arsenal-australian-celtic-b2464724.html", + "pubDate": "Fri, 15 Dec 2023 12:00:04 GMT", + "dc:creator": "George Sessions", + "dc:date": "2023-12-15T12:00:04+00:00", + "content": "Top of Ange Postecoglou\u2019s Christmas list is the Tottenham hierarchy giving him new players at the start of January.", + "contentSnippet": "Top of Ange Postecoglou\u2019s Christmas list is the Tottenham hierarchy giving him new players at the start of January.", + "guid": "b2464724", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T12:00:04.000Z" + }, + { + "creator": "Harry Latham-Coyle", + "date": "2023-12-15T11:59:48+00:00", + "title": "Controversial ex-Billericay Town owner on the run from police", + "link": "https://www.independent.co.uk/sport/football/glenn-tamplin-police-billericay-town-b2464685.html", + "pubDate": "Fri, 15 Dec 2023 11:59:48 GMT", + "dc:creator": "Harry Latham-Coyle", + "dc:date": "2023-12-15T11:59:48+00:00", + "content": "

Two arrest warrants have been issued for Glenn Tamplin

", + "contentSnippet": "Two arrest warrants have been issued for Glenn Tamplin", + "guid": "b2464685", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T11:59:48.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-12-15T11:56:59+00:00", + "title": "Airbnb agrees to pay $621 million to settle a tax dispute in Italy", + "link": "https://www.independent.co.uk/news/airbnb-ap-italy-italian-giorgia-meloni-b2464729.html", + "pubDate": "Fri, 15 Dec 2023 11:56:59 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-12-15T11:56:59+00:00", + "content": "Short-term rental platform Airbnb has agreed to pay 576 million euros ($621 million) to settle a years-long dispute over unpaid taxes in Italy but won\u2019t try to recover the money from its hosts", + "contentSnippet": "Short-term rental platform Airbnb has agreed to pay 576 million euros ($621 million) to settle a years-long dispute over unpaid taxes in Italy but won\u2019t try to recover the money from its hosts", + "guid": "b2464729", + "isoDate": "2023-12-15T11:56:59.000Z" + }, + { + "creator": "Michael Jones", + "date": "2023-12-15T11:55:51+00:00", + "title": "What is the World Darts Championship prize money?", + "link": "https://www.independent.co.uk/sport/darts/world-darts-championship-prize-money-b2464722.html", + "pubDate": "Fri, 15 Dec 2023 11:55:51 GMT", + "dc:creator": "Michael Jones", + "dc:date": "2023-12-15T11:55:51+00:00", + "content": "

Here\u2019s a breakdown of how much players will earn for each round of the tournament

", + "contentSnippet": "Here\u2019s a breakdown of how much players will earn for each round of the tournament", + "guid": "b2454082", + "categories": ["Darts", "Sport"], + "isoDate": "2023-12-15T11:55:51.000Z" + }, + { + "creator": "Annabel Nugent", + "date": "2023-12-15T06:30:19+00:00", + "title": "Christina Hendricks on Wonder Woman, Mad Men spin-offs and Victorian corsets: \u2018People always think I\u2019m going to be much more of a lady than I am\u2019", + "link": "https://www.independent.co.uk/arts-entertainment/tv/features/christina-hendricks-buccaneers-mad-men-b2464137.html", + "pubDate": "Fri, 15 Dec 2023 06:30:19 GMT", + "dc:creator": "Annabel Nugent", + "dc:date": "2023-12-15T06:30:19+00:00", + "content": "

The beloved star of \u2018Mad Men\u2019 and \u2018Good Girls\u2019 is swapping Sixties girdles for Victorian hosiery in Apple TV+'s charming Edith Wharton adaptation. On break from filming her new Irish comedy with Chris O\u2019Dowd, the actor speaks to Annabel Nugent about feminism, staying true to her goth roots, and whether Joan could get her very own spin-off

", + "contentSnippet": "The beloved star of \u2018Mad Men\u2019 and \u2018Good Girls\u2019 is swapping Sixties girdles for Victorian hosiery in Apple TV+'s charming Edith Wharton adaptation. On break from filming her new Irish comedy with Chris O\u2019Dowd, the actor speaks to Annabel Nugent about feminism, staying true to her goth roots, and whether Joan could get her very own spin-off", + "guid": "b2464137", + "categories": ["Features", "TV & Radio", "Culture"], + "isoDate": "2023-12-15T06:30:19.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-04T10:57:01+00:00", + "title": "BBC presenter struggles to keep a straight face while asking: \u2018How big is your hole?\u2019", + "link": "https://www.independent.co.uk/tv/culture/bbc-peter-levy-laughing-news-report-b2473060.html", + "pubDate": "Thu, 04 Jan 2024 10:57:01 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-04T10:57:01+00:00", + "content": "

A BBC presenter struggles to keep a straight face while asking \u201cHow big is your hole?\u201d during a live news report on potholes.

", + "contentSnippet": "A BBC presenter struggles to keep a straight face while asking \u201cHow big is your hole?\u201d during a live news report on potholes.", + "guid": "b2473060", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-04T10:57:01.000Z" + }, + { + "creator": "Jonathan Veal", + "date": "2024-01-04T10:56:51+00:00", + "title": "Premier League selection and learning to drive \u2013 what next for Luke Littler?", + "link": "https://www.independent.co.uk/sport/darts/luke-littler-premier-league-darts-age-b2473134.html", + "pubDate": "Thu, 04 Jan 2024 10:56:51 GMT", + "dc:creator": "Jonathan Veal", + "dc:date": "2024-01-04T10:56:51+00:00", + "content": "

The teenager has taken the darting world by storm

", + "contentSnippet": "The teenager has taken the darting world by storm", + "guid": "b2473077", + "categories": ["Darts", "Sport"], + "isoDate": "2024-01-04T10:56:51.000Z" + }, + { + "creator": "Tara Cobham,Athena Stavrou and Lydia Patrick", + "date": "2024-01-04T10:54:07+00:00", + "title": "UK weather - live: Met Office warns 15 hours of torrential rain may cut off homes in wake of Storm Henk floods", + "link": "https://www.independent.co.uk/weather/uk-storm-henk-met-office-weather-forecast-b2473016.html", + "pubDate": "Thu, 04 Jan 2024 10:54:07 GMT", + "dc:creator": "Tara Cobham,Athena Stavrou and Lydia Patrick", + "dc:date": "2024-01-04T10:54:07+00:00", + "content": "

The pod\u2019s access hatch was blown open as a terrified family was stuck inside at the top of the attraction

", + "contentSnippet": "The pod\u2019s access hatch was blown open as a terrified family was stuck inside at the top of the attraction", + "guid": "b2472054", + "categories": ["Weather"], + "isoDate": "2024-01-04T10:54:07.000Z" + }, + { + "creator": "Jonathan Veal", + "date": "2024-01-04T10:52:48+00:00", + "title": "Luke Littler wants to inspire youngsters after stunning World Darts Championship debut", + "link": "https://www.independent.co.uk/sport/darts/luke-littler-luke-humphries-alexandra-palace-darts-b2473130.html", + "pubDate": "Thu, 04 Jan 2024 10:52:48 GMT", + "dc:creator": "Jonathan Veal", + "dc:date": "2024-01-04T10:52:48+00:00", + "content": "

The 16-year-old was beaten in the final by world number one Luke Humphries on Wednesday night

", + "contentSnippet": "The 16-year-old was beaten in the final by world number one Luke Humphries on Wednesday night", + "guid": "b2473090", + "categories": ["Darts", "Sport"], + "isoDate": "2024-01-04T10:52:48.000Z" + }, + { + "creator": "Qassim Abdul-Zahra and Ali Jabar", + "date": "2024-01-04T10:52:34+00:00", + "title": "Airstrike in central Baghdad kills Iran-backed militia leader as regional tensions escalate", + "link": "https://www.independent.co.uk/news/baghdad-ap-hamas-iran-israel-b2473137.html", + "pubDate": "Thu, 04 Jan 2024 10:52:34 GMT", + "dc:creator": "Qassim Abdul-Zahra and Ali Jabar", + "dc:date": "2024-01-04T10:52:34+00:00", + "content": "Officials say an airstrike on the logistical support headquarters of an Iran-backed militia in central Baghdad has killed a high-ranking militia commander", + "contentSnippet": "Officials say an airstrike on the logistical support headquarters of an Iran-backed militia in central Baghdad has killed a high-ranking militia commander", + "guid": "b2473137", + "isoDate": "2024-01-04T10:52:34.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2024-01-04T10:52:24+00:00", + "title": "Emma Raducanu injury comeback ended by Elina Svitolina defeat in Auckland", + "link": "https://www.independent.co.uk/sport/tennis/emma-raducanu-injury-elina-svitolina-auckland-b2473081.html", + "pubDate": "Thu, 04 Jan 2024 10:52:24 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2024-01-04T10:52:24+00:00", + "content": "

Raducanu won the opening set in her second match at the ASB Classic but Svitolina hit back to snatch victory

", + "contentSnippet": "Raducanu won the opening set in her second match at the ASB Classic but Svitolina hit back to snatch victory", + "guid": "b2473081", + "categories": ["Tennis", "Sport"], + "isoDate": "2024-01-04T10:52:24.000Z" + }, + { + "creator": "Ianthe Butt", + "date": "2024-01-04T10:51:13+00:00", + "title": "The hottest new hotel openings in the UK and Ireland for 2024", + "link": "https://www.independent.co.uk/travel/uk/new-hotels-opening-uk-ireland-2024-b2468486.html", + "pubDate": "Thu, 04 Jan 2024 10:51:13 GMT", + "dc:creator": "Ianthe Butt", + "dc:date": "2024-01-04T10:51:13+00:00", + "content": "

Scores of exciting properties are set to debut in the next 12 months; hotel expert Ianthe Butt outlines the best of the bunch to check into this year

", + "contentSnippet": "Scores of exciting properties are set to debut in the next 12 months; hotel expert Ianthe Butt outlines the best of the bunch to check into this year", + "guid": "b2468486", + "categories": ["UK", "Travel"], + "isoDate": "2024-01-04T10:51:13.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-04T10:49:44+00:00", + "title": "Britain\u2019s service sector ends year with stronger-than-expected growth", + "link": "https://www.independent.co.uk/business/britain-s-service-sector-ends-year-with-strongerthanexpected-growth-b2473131.html", + "pubDate": "Thu, 04 Jan 2024 10:49:44 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-04T10:49:44+00:00", + "content": "The S&P Global/CIPS UK services PMI survey showed a reading of 53.4 in December, up from 50.9 in November.", + "contentSnippet": "The S&P Global/CIPS UK services PMI survey showed a reading of 53.4 in December, up from 50.9 in November.", + "guid": "b2473131", + "categories": ["Business"], + "isoDate": "2024-01-04T10:49:44.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2024-01-04T10:49:43+00:00", + "title": "Sir Ben Ainslie steps down as driver of Great Britain\u2019s SailGP team", + "link": "https://www.independent.co.uk/sport/ben-ainslie-ceo-great-britain-giles-scott-ineos-b2473123.html", + "pubDate": "Thu, 04 Jan 2024 10:49:43 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2024-01-04T10:49:43+00:00", + "content": "Ainslie, 46, insisted he would take the step away from his role as driver to make way for the next generation.", + "contentSnippet": "Ainslie, 46, insisted he would take the step away from his role as driver to make way for the next generation.", + "guid": "b2473123", + "categories": ["Sport"], + "isoDate": "2024-01-04T10:49:43.000Z" + }, + { + "creator": "Lawrence Ostlere", + "date": "2024-01-04T10:48:05+00:00", + "title": "Is VAR being used in the FA Cup third round? Well, yes and no", + "link": "https://www.independent.co.uk/sport/football/var-fa-cup-rules-third-round-b2473129.html", + "pubDate": "Thu, 04 Jan 2024 10:48:05 GMT", + "dc:creator": "Lawrence Ostlere", + "dc:date": "2024-01-04T10:48:05+00:00", + "content": "

Video Assistant Referee technology will be partially in action during the FA Cup third round

", + "contentSnippet": "Video Assistant Referee technology will be partially in action during the FA Cup third round", + "guid": "b2473129", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T10:48:05.000Z" + }, + { + "creator": "Mike Bedigan and Martha McHardy", + "date": "2024-01-04T10:47:13+00:00", + "title": "A pregnant teen vanished a day before giving birth. She and her boyfriend are now dead", + "link": "https://www.independent.co.uk/news/world/americas/crime/savanah-soto-found-dead-san-antonio-b2469927.html", + "pubDate": "Thu, 04 Jan 2024 10:47:13 GMT", + "dc:creator": "Mike Bedigan and Martha McHardy", + "dc:date": "2024-01-04T10:47:13+00:00", + "content": "

The bodies of Savanah Nicole Soto, 18, and Matthew Guerra, 23, were found inside a Kia Optima on 26 December. An unborn baby was also found dead inside the car. Mike Bedigan explains the case

", + "contentSnippet": "The bodies of Savanah Nicole Soto, 18, and Matthew Guerra, 23, were found inside a Kia Optima on 26 December. An unborn baby was also found dead inside the car. Mike Bedigan explains the case", + "guid": "b2469927", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T10:47:13.000Z" + }, + { + "creator": "Rachael Phillips", + "date": "2024-01-04T10:46:33+00:00", + "title": "10 best casserole dishes for stews, chillies and other wintry delights", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/kitchen-accessories/best-casserole-dishes-cast-iron-lid-argos-le-creuset-a9107266.html", + "pubDate": "Thu, 04 Jan 2024 10:46:33 GMT", + "dc:creator": "Rachael Phillips", + "dc:date": "2024-01-04T10:46:33+00:00", + "content": "

Make the most of the one-pot lifestyle with these hardworking items

", + "contentSnippet": "Make the most of the one-pot lifestyle with these hardworking items", + "guid": "a9107266", + "categories": [ + "Kitchen Accessories", + "Home & Garden", + "IndyBest", + "Extras" + ], + "isoDate": "2024-01-04T10:46:33.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-04T10:42:35+00:00", + "title": "Luke Humphries heaps praise on runner-up Luke Littler after World Championship win", + "link": "https://www.independent.co.uk/tv/sport/luke-littler-luke-humphries-darts-final-b2473125.html", + "pubDate": "Thu, 04 Jan 2024 10:42:35 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-04T10:42:35+00:00", + "content": "

Luke Humphries has heaped praise on fellow finalist Luke Littler after Humphries\u2019 PDC World Darts Championship victory.

", + "contentSnippet": "Luke Humphries has heaped praise on fellow finalist Luke Littler after Humphries\u2019 PDC World Darts Championship victory.", + "guid": "b2473125", + "categories": ["Sport", "Indy TV"], + "isoDate": "2024-01-04T10:42:35.000Z" + }, + { + "creator": "Vicky Shaw", + "date": "2024-01-04T10:42:26+00:00", + "title": "Consumer credit borrowing increases at fastest annual rate in five years", + "link": "https://www.independent.co.uk/money/consumer-credit-borrowing-increases-at-fastest-annual-rate-in-five-years-b2473132.html", + "pubDate": "Thu, 04 Jan 2024 10:42:26 GMT", + "dc:creator": "Vicky Shaw", + "dc:date": "2024-01-04T10:42:26+00:00", + "content": "The annual growth rate for consumer credit was 8.6% in November, the highest rate since September 2018, according to the Bank of England.", + "contentSnippet": "The annual growth rate for consumer credit was 8.6% in November, the highest rate since September 2018, according to the Bank of England.", + "guid": "b2473132", + "categories": ["Money"], + "isoDate": "2024-01-04T10:42:26.000Z" + }, + { + "creator": "Lauren Cunningham", + "date": "2024-01-04T10:42:20+00:00", + "title": "17 best air fryers for cooking low-fat, fast and delicious dinners", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/kitchen-appliances/best-air-fryer-uk-reviews-b1979237.html", + "pubDate": "Thu, 04 Jan 2024 10:42:20 GMT", + "dc:creator": "Lauren Cunningham", + "dc:date": "2024-01-04T10:42:20+00:00", + "content": "

Having tried and tested the best air fryers, these models from the likes of Ninja, Tower and Lakeland mean serious business

", + "contentSnippet": "Having tried and tested the best air fryers, these models from the likes of Ninja, Tower and Lakeland mean serious business", + "guid": "b1979237", + "categories": [ + "Kitchen Appliances", + "Home & Garden", + "IndyBest", + "Extras" + ], + "isoDate": "2024-01-04T10:42:20.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-04T10:42:01+00:00", + "title": "London building partially collapses and damages vehicles during Storm Henk", + "link": "https://www.independent.co.uk/tv/news/weather-storm-henk-london-damage-b2473117.html", + "pubDate": "Thu, 04 Jan 2024 10:42:01 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-04T10:42:01+00:00", + "content": "

A London building partially collapsed onto a street, damaging vehicles, during Storm Henk on Tuesday, 2 January.

", + "contentSnippet": "A London building partially collapsed onto a street, damaging vehicles, during Storm Henk on Tuesday, 2 January.", + "guid": "b2473117", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-04T10:42:01.000Z" + }, + { + "creator": "Kieran Jackson", + "date": "2024-01-04T10:41:47+00:00", + "title": "Michael Schumacher\u2019s son Mick posts moving birthday message", + "link": "https://www.independent.co.uk/f1/f1-michael-schumacher-mick-health-b2473120.html", + "pubDate": "Thu, 04 Jan 2024 10:41:47 GMT", + "dc:creator": "Kieran Jackson", + "dc:date": "2024-01-04T10:41:47+00:00", + "content": "

F1 icon Michael turned 55 on Wednesday, over a decade since he was last seen in public after his skiing accident

", + "contentSnippet": "F1 icon Michael turned 55 on Wednesday, over a decade since he was last seen in public after his skiing accident", + "guid": "b2473120", + "categories": ["F1"], + "isoDate": "2024-01-04T10:41:47.000Z" + }, + { + "creator": "Oliver O'Connell,Alex Woodward,Gustaf Kilander and Joe Sommerlad", + "date": "2024-01-04T10:40:24+00:00", + "title": "Trump takes Colorado primary ballot fight to Supreme Court: Live", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/donald-trump-2024-supreme-court-latest-news-b2473063.html", + "pubDate": "Thu, 04 Jan 2024 10:40:24 GMT", + "dc:creator": "Oliver O'Connell,Alex Woodward,Gustaf Kilander and Joe Sommerlad", + "dc:date": "2024-01-04T10:40:24+00:00", + "content": "

Former president challenges nation\u2019s highest court to rule on state decision as he readies Iowa rally alongside potential running mate

", + "contentSnippet": "Former president challenges nation\u2019s highest court to rule on state decision as he readies Iowa rally alongside potential running mate", + "guid": "b2463845", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-04T10:40:24.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-04T10:38:08+00:00", + "title": "Jarrell Miller arrested over alleged carjacking \u2013 two weeks after loss to Daniel Dubois", + "link": "https://www.independent.co.uk/sport/boxing/jarrell-miller-arrest-carjacking-florida-b2473097.html", + "pubDate": "Thu, 04 Jan 2024 10:38:08 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-04T10:38:08+00:00", + "content": "

The American heavyweight reportedly attacked an employee at a car dealership, before driving off in a repossessed vehicle

", + "contentSnippet": "The American heavyweight reportedly attacked an employee at a car dealership, before driving off in a repossessed vehicle", + "guid": "b2473097", + "categories": ["Boxing", "Sport"], + "isoDate": "2024-01-04T10:38:08.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2024-01-04T10:33:02+00:00", + "title": "BBC expertly shuts down viewer complaints about trans character in Doctor Who", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/doctor-who-bbc-trans-rose-b2473105.html", + "pubDate": "Thu, 04 Jan 2024 10:33:02 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2024-01-04T10:33:02+00:00", + "content": "

\u2018We will always continue to proudly reflect the world we live in,\u2019 corporation said

", + "contentSnippet": "\u2018We will always continue to proudly reflect the world we live in,\u2019 corporation said", + "guid": "b2473105", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-04T10:33:02.000Z" + }, + { + "creator": "Geir Moulson", + "date": "2024-01-04T10:29:43+00:00", + "title": "Germany's CO2 emissions are at their lowest in 7 decades, study shows", + "link": "https://www.independent.co.uk/news/germany-ap-co2-emissions-berlin-europe-b2473119.html", + "pubDate": "Thu, 04 Jan 2024 10:29:43 GMT", + "dc:creator": "Geir Moulson", + "dc:date": "2024-01-04T10:29:43+00:00", + "content": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", + "contentSnippet": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", + "guid": "b2473119", + "isoDate": "2024-01-04T10:29:43.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-04T10:29:38+00:00", + "title": "Target shoppers scramble to get hands on limited-edition Stanley cups", + "link": "https://www.independent.co.uk/tv/lifestyle/target-stanley-cup-starbucks-pink-b2473115.html", + "pubDate": "Thu, 04 Jan 2024 10:29:38 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-04T10:29:38+00:00", + "content": "

Target shoppers have been scrambling in stores to get their hands on a limited-edition version of the popular Stanley cup.

", + "contentSnippet": "Target shoppers have been scrambling in stores to get their hands on a limited-edition version of the popular Stanley cup.", + "guid": "b2473115", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-04T10:29:38.000Z" + }, + { + "creator": "Katy Clifton", + "date": "2024-01-04T10:29:27+00:00", + "title": "Monstrous funnel-web spider \u2018Herculese\u2019 breaks record in Australia ", + "link": "https://www.independent.co.uk/news/world/australasia/spider-australia-funnel-web-herculese-b2473116.html", + "pubDate": "Thu, 04 Jan 2024 10:29:27 GMT", + "dc:creator": "Katy Clifton", + "dc:date": "2024-01-04T10:29:27+00:00", + "content": "

It has surpassed the previous record-holder, named \u2018Colossus\u2019

", + "contentSnippet": "It has surpassed the previous record-holder, named \u2018Colossus\u2019", + "guid": "b2473116", + "categories": ["Australasia", "World"], + "isoDate": "2024-01-04T10:29:27.000Z" + }, + { + "creator": "Anthony Cuthbertson", + "date": "2024-01-04T10:27:14+00:00", + "title": "SpaceX launches first Starlink phone service", + "link": "https://www.independent.co.uk/space/starlink-phone-spacex-launch-cell-b2473067.html", + "pubDate": "Thu, 04 Jan 2024 10:27:14 GMT", + "dc:creator": "Anthony Cuthbertson", + "dc:date": "2024-01-04T10:27:14+00:00", + "content": "

Direct to Cell service will support texts, calls and browsing to make dead zones \u2018a thing of the past\u2019

", + "contentSnippet": "Direct to Cell service will support texts, calls and browsing to make dead zones \u2018a thing of the past\u2019", + "guid": "b2473067", + "categories": ["Space"], + "isoDate": "2024-01-04T10:27:14.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-04T10:27:09+00:00", + "title": "TikTokers claim popular body butter \u2018attracts spiders\u2019", + "link": "https://www.independent.co.uk/tv/lifestyle/sephora-body-butter-spiders-b2473112.html", + "pubDate": "Thu, 04 Jan 2024 10:27:09 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-04T10:27:09+00:00", + "content": "

Customers and TikTokers have claimed that a popular body butter is attracting spiders after using the product.

", + "contentSnippet": "Customers and TikTokers have claimed that a popular body butter is attracting spiders after using the product.", + "guid": "b2473112", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-04T10:27:09.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-04T10:22:40+00:00", + "title": "Extreme cold leaves thousands without power in Nordic countries while floods again hit Germany", + "link": "https://www.independent.co.uk/news/denmark-ap-nordic-germany-copenhagen-b2473113.html", + "pubDate": "Thu, 04 Jan 2024 10:22:40 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-04T10:22:40+00:00", + "content": "Extremely cold temperatures compounded by strong winds and snow are wreaking havoc across the Nordic region, leaving thousands without power while others braved the cold for hours stuck in their cars along clogged highways", + "contentSnippet": "Extremely cold temperatures compounded by strong winds and snow are wreaking havoc across the Nordic region, leaving thousands without power while others braved the cold for hours stuck in their cars along clogged highways", + "guid": "b2473113", + "isoDate": "2024-01-04T10:22:40.000Z" + }, + { + "creator": "Holly Evans", + "date": "2024-01-04T10:15:24+00:00", + "title": "Paedophile Jeffrey Epstein offered reward to disprove claims Stephen Hawking took part in orgy", + "link": "https://www.independent.co.uk/news/world/americas/stephen-hawking-jeffrey-epstein-underage-orgy-b2472989.html", + "pubDate": "Thu, 04 Jan 2024 10:15:24 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2024-01-04T10:15:24+00:00", + "content": "

An email shows that the billionaire was willing to give money to Virginia Giuffre\u2019s friends to \u2018help prove\u2019 her claims were false

", + "contentSnippet": "An email shows that the billionaire was willing to give money to Virginia Giuffre\u2019s friends to \u2018help prove\u2019 her claims were false", + "guid": "b2472979", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T10:15:24.000Z" + }, + { + "creator": "Roisin O'Connor", + "date": "2024-01-04T10:12:59+00:00", + "title": "Scottish troubadour Dylan John Thomas performs \u2018Wake Up Ma\u2019 on Music Box", + "link": "https://www.independent.co.uk/tv/culture/dylan-john-thomas-acoustic-music-session-b2472086.html", + "pubDate": "Thu, 04 Jan 2024 10:12:59 GMT", + "dc:creator": "Roisin O'Connor", + "dc:date": "2024-01-04T10:12:59+00:00", + "content": "

Ahead of the release of his debut album, Scottish singer Dylan John Thomas performs his song \"Wake Up Ma\" on Music Box.

", + "contentSnippet": "Ahead of the release of his debut album, Scottish singer Dylan John Thomas performs his song \"Wake Up Ma\" on Music Box.", + "guid": "b2472086", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-04T10:12:59.000Z" + }, + { + "creator": "Martha McHardy", + "date": "2024-01-04T10:12:43+00:00", + "title": "Father and son arrested in murders of pregnant teen Savanah Soto and boyfriend", + "link": "https://www.independent.co.uk/news/world/americas/crime/savanah-soto-murder-father-son-arrest-b2473093.html", + "pubDate": "Thu, 04 Jan 2024 10:12:43 GMT", + "dc:creator": "Martha McHardy", + "dc:date": "2024-01-04T10:12:43+00:00", + "content": "

Savanah Soto was found dead on Boxing Day, a day before she was scheduled to go into labour

", + "contentSnippet": "Savanah Soto was found dead on Boxing Day, a day before she was scheduled to go into labour", + "guid": "b2473093", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T10:12:43.000Z" + }, + { + "creator": "Lawrence Ostlere", + "date": "2024-01-04T10:05:46+00:00", + "title": "The one thing missing to turn darts prodigy Luke Littler into a world champion", + "link": "https://www.independent.co.uk/sport/darts/luke-littler-darts-world-championship-b2473076.html", + "pubDate": "Thu, 04 Jan 2024 10:05:46 GMT", + "dc:creator": "Lawrence Ostlere", + "dc:date": "2024-01-04T10:05:46+00:00", + "content": "

Littler produced a near-flawless championship which suggested he will be a future king of the sport, and his crucial missed double-two to win the seventh set will serve as a valuable lesson in years to come

", + "contentSnippet": "Littler produced a near-flawless championship which suggested he will be a future king of the sport, and his crucial missed double-two to win the seventh set will serve as a valuable lesson in years to come", + "guid": "b2473076", + "categories": ["Darts", "Sport"], + "isoDate": "2024-01-04T10:05:46.000Z" + }, + { + "creator": "Rachel Sharp", + "date": "2024-01-04T10:05:25+00:00", + "title": "Epstein told victim Bill Clinton \u2018likes them young\u2019, new court filings reveal", + "link": "https://www.independent.co.uk/news/world/americas/bill-clinton-epstein-list-maxwell-b2473095.html", + "pubDate": "Thu, 04 Jan 2024 10:05:25 GMT", + "dc:creator": "Rachel Sharp", + "dc:date": "2024-01-04T10:05:25+00:00", + "content": "

Among the hundreds of pages of filings unsealed Wednesday, victim Johanna Sjoberg spoke about what she knew about Bill Clinton\u2019s ties to Epstein

", + "contentSnippet": "Among the hundreds of pages of filings unsealed Wednesday, victim Johanna Sjoberg spoke about what she knew about Bill Clinton\u2019s ties to Epstein", + "guid": "b2473095", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T10:05:25.000Z" + }, + { + "creator": "Josh Boak", + "date": "2024-01-04T10:03:09+00:00", + "title": "Biden administration announces $162 million to expand computer chip factories in Colorado and Oregon", + "link": "https://www.independent.co.uk/news/world/americas/joe-biden-ap-commerce-department-colorado-bae-systems-b2473107.html", + "pubDate": "Thu, 04 Jan 2024 10:03:09 GMT", + "dc:creator": "Josh Boak", + "dc:date": "2024-01-04T10:03:09+00:00", + "content": "The Biden administration is providing $162 million to Microchip Technology to support the domestic production of computer chips", + "contentSnippet": "The Biden administration is providing $162 million to Microchip Technology to support the domestic production of computer chips", + "guid": "b2473107", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T10:03:09.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-04T10:02:44+00:00", + "title": "Watch live: Keir Starmer set to launch 2024 general election bid as he vows Labour will help \u2018exhausted\u2019 Britain", + "link": "https://www.independent.co.uk/news/livestream-keir-starmer-labour-election-speech-b2473089.html", + "pubDate": "Thu, 04 Jan 2024 10:02:44 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-04T10:02:44+00:00", + "content": "

Watch live as Keir Starmer gives a speech in South West England, pledging to bring hope to Britain as Labour prepares for general elections.

", + "contentSnippet": "Watch live as Keir Starmer gives a speech in South West England, pledging to bring hope to Britain as Labour prepares for general elections.", + "guid": "b2473089", + "isoDate": "2024-01-04T10:02:44.000Z" + }, + { + "creator": "Vicky Shaw", + "date": "2024-01-04T10:01:30+00:00", + "title": "First Direct unveils sub-4% mortgage rates", + "link": "https://www.independent.co.uk/money/first-direct-unveils-sub4-mortgage-rates-b2473108.html", + "pubDate": "Thu, 04 Jan 2024 10:01:30 GMT", + "dc:creator": "Vicky Shaw", + "dc:date": "2024-01-04T10:01:30+00:00", + "content": "Several lenders have started the new year by making cuts to their rates.", + "contentSnippet": "Several lenders have started the new year by making cuts to their rates.", + "guid": "b2473108", + "categories": ["Money"], + "isoDate": "2024-01-04T10:01:30.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2024-01-04T09:55:23+00:00", + "title": "Death toll from Japan earthquake rises to 81 as search for survivors continues", + "link": "https://www.independent.co.uk/asia/japan/ishikawa-earthquake-death-rescue-latest-b2473036.html", + "pubDate": "Thu, 04 Jan 2024 09:55:23 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2024-01-04T09:55:23+00:00", + "content": "

At leats 51 people still missing as thousands of rescuers brave cold to find survivors

", + "contentSnippet": "At leats 51 people still missing as thousands of rescuers brave cold to find survivors", + "guid": "b2473036", + "categories": ["Japan", "Asia"], + "isoDate": "2024-01-04T09:55:23.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar and Holly Evans", + "date": "2024-01-04T09:51:42+00:00", + "title": "Liverpool triple shooting horror as cinema and shop put on lockdown", + "link": "https://www.independent.co.uk/news/uk/crime/liverpool-gunman-showcase-cinema-shooting-b2473102.html", + "pubDate": "Thu, 04 Jan 2024 09:51:42 GMT", + "dc:creator": "Alisha Rahaman Sarkar and Holly Evans", + "dc:date": "2024-01-04T09:51:42+00:00", + "content": "

Armed police officers tasered and arrested a man shortly before 5am

", + "contentSnippet": "Armed police officers tasered and arrested a man shortly before 5am", + "guid": "b2473008", + "categories": ["Crime", "UK"], + "isoDate": "2024-01-04T09:51:42.000Z" + }, + { + "creator": "Kelly Rissman and Katie Hawkinson", + "date": "2024-01-04T09:48:29+00:00", + "title": "Young Thug trial sparks online questions about YSL rapper\u2019s shirt: Live ", + "link": "https://www.independent.co.uk/news/world/americas/crime/young-thug-trial-ysl-gang-jail-latest-b2473099.html", + "pubDate": "Thu, 04 Jan 2024 09:48:29 GMT", + "dc:creator": "Kelly Rissman and Katie Hawkinson", + "dc:date": "2024-01-04T09:48:29+00:00", + "content": "

Young Thug is charged in a sprawling RICO trial which accuses YSL of being a criminal gang

", + "contentSnippet": "Young Thug is charged in a sprawling RICO trial which accuses YSL of being a criminal gang", + "guid": "b2472186", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T09:48:29.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-04T09:47:50+00:00", + "title": "JD Sports hit as wary customers flock to sale prices", + "link": "https://www.independent.co.uk/business/jd-sports-hit-as-wary-customers-flock-to-sale-prices-b2473049.html", + "pubDate": "Thu, 04 Jan 2024 09:47:50 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-04T09:47:50+00:00", + "content": "The company downgraded its profit forecast by more than \u00a3100 million after a disappointing Christmas.", + "contentSnippet": "The company downgraded its profit forecast by more than \u00a3100 million after a disappointing Christmas.", + "guid": "b2473049", + "categories": ["Business"], + "isoDate": "2024-01-04T09:47:50.000Z" + }, + { + "creator": "Paul Cargill", + "date": "2024-01-04T09:44:38+00:00", + "title": "Scientists turn whisky-making by-product into fuel for the future", + "link": "https://www.independent.co.uk/news/science/scientists-heriotwatt-university-scottish-b2472946.html", + "pubDate": "Thu, 04 Jan 2024 09:44:38 GMT", + "dc:creator": "Paul Cargill", + "dc:date": "2024-01-04T09:44:38+00:00", + "content": "A team from Heriot-Watt University have developed materials that can use wastewater from distilleries to produce green hydrogen.", + "contentSnippet": "A team from Heriot-Watt University have developed materials that can use wastewater from distilleries to produce green hydrogen.", + "guid": "b2472946", + "categories": ["Science"], + "isoDate": "2024-01-04T09:44:38.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2024-01-04T09:43:18+00:00", + "title": "Madonna defended after \u2018ageist\u2019 trolls incorrectly mock singer for using support beam", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/madonna-age-tour-2024-twitter-b2473065.html", + "pubDate": "Thu, 04 Jan 2024 09:43:18 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2024-01-04T09:43:18+00:00", + "content": "

Critics were hasty with their vitriolic messages aimed at singer

", + "contentSnippet": "Critics were hasty with their vitriolic messages aimed at singer", + "guid": "b2473065", + "categories": ["News", "Music", "Culture"], + "isoDate": "2024-01-04T09:43:18.000Z" + }, + { + "creator": "Sylvie Corbet", + "date": "2024-01-04T09:39:57+00:00", + "title": "The UK is not cooperating enough to curb migrant crossings of the Channel, a French report says", + "link": "https://www.independent.co.uk/news/france-ap-french-english-channel-paris-b2473100.html", + "pubDate": "Thu, 04 Jan 2024 09:39:57 GMT", + "dc:creator": "Sylvie Corbet", + "dc:date": "2024-01-04T09:39:57+00:00", + "content": "A French report says the United Kingdom is not sufficiently coordinating with France in efforts to reduce the number of migrants illegally crossing the English Channel in small boats", + "contentSnippet": "A French report says the United Kingdom is not sufficiently coordinating with France in efforts to reduce the number of migrants illegally crossing the English Channel in small boats", + "guid": "b2473100", + "isoDate": "2024-01-04T09:39:57.000Z" + }, + { + "creator": "Andrew Griffin", + "date": "2024-01-04T09:34:46+00:00", + "title": "Microsoft changes the PC keyboard for the first time in 30 years", + "link": "https://www.independent.co.uk/tech/microsoft-keyboard-windows-pc-copilot-key-b2473092.html", + "pubDate": "Thu, 04 Jan 2024 09:34:46 GMT", + "dc:creator": "Andrew Griffin", + "dc:date": "2024-01-04T09:34:46+00:00", + "content": "

New Copilot key begins the era of the \u2018AI PC\u2019, Microsoft says

", + "contentSnippet": "New Copilot key begins the era of the \u2018AI PC\u2019, Microsoft says", + "guid": "b2473092", + "categories": ["Tech"], + "isoDate": "2024-01-04T09:34:46.000Z" + }, + { + "creator": "Archie Mitchell", + "date": "2024-01-04T09:32:49+00:00", + "title": "Ministers warned of \u2018massive\u2019 security risks of Donald Trump presidency", + "link": "https://www.independent.co.uk/news/uk/politics/donald-trump-president-election-biden-2024-politics-b2473073.html", + "pubDate": "Thu, 04 Jan 2024 09:32:49 GMT", + "dc:creator": "Archie Mitchell", + "dc:date": "2024-01-04T09:32:49+00:00", + "content": "

Three of Britain\u2019s former top US diplomats have urged the government to develop contingency plans in case Mr Trump\u2019s bid to return to the White House is successful

", + "contentSnippet": "Three of Britain\u2019s former top US diplomats have urged the government to develop contingency plans in case Mr Trump\u2019s bid to return to the White House is successful", + "guid": "b2473073", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-04T09:32:49.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2024-01-04T09:29:15+00:00", + "title": "Why Taylor Swift is caught up in Taiwan\u2019s presidential election ", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/taylor-swift-taiwan-china-elections-b2473084.html", + "pubDate": "Thu, 04 Jan 2024 09:29:15 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2024-01-04T09:29:15+00:00", + "content": "

Election candidate blames tensions with China for Shake It Off singer refusing to perform in Taipei

", + "contentSnippet": "Election candidate blames tensions with China for Shake It Off singer refusing to perform in Taipei", + "guid": "b2472460", + "categories": ["News", "Music", "Culture"], + "isoDate": "2024-01-04T09:29:15.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-04T09:29:06+00:00", + "title": "Traitors contestant Jasmine takes swipe at host Claudia Winkleman", + "link": "https://www.independent.co.uk/tv/culture/traitors-contestants-claudia-winkleman-swipe-b2473048.html", + "pubDate": "Thu, 04 Jan 2024 09:29:06 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-04T09:29:06+00:00", + "content": "

Traitors has returned to our television screens for a much anticipated second series and it is already creating quite a stir.

", + "contentSnippet": "Traitors has returned to our television screens for a much anticipated second series and it is already creating quite a stir.", + "guid": "b2473048", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-04T09:29:06.000Z" + }, + { + "creator": "Travel Desk", + "date": "2024-01-04T09:21:34+00:00", + "title": "The destinations we\u2019re most excited about visiting in 2024", + "link": "https://www.independent.co.uk/travel/inspiration/best-destinations-2024-holidays-b2462151.html", + "pubDate": "Thu, 04 Jan 2024 09:21:34 GMT", + "dc:creator": "Travel Desk", + "dc:date": "2024-01-04T09:21:34+00:00", + "content": "

From cities flexing their cultural muscles to rugged regions begging to be explored on foot, these are the places The Independent\u2019s travel team can\u2019t wait to uncover this year

", + "contentSnippet": "From cities flexing their cultural muscles to rugged regions begging to be explored on foot, these are the places The Independent\u2019s travel team can\u2019t wait to uncover this year", + "guid": "b2462151", + "categories": ["Inspiration", "Travel"], + "isoDate": "2024-01-04T09:21:34.000Z" + }, + { + "creator": "Katie Hawkinson", + "date": "2024-01-04T09:19:41+00:00", + "title": "JN.1: What to know about the new Covid variant surging in the US", + "link": "https://www.independent.co.uk/news/health/covid-symptoms-2024-jn1-variant-b2473085.html", + "pubDate": "Thu, 04 Jan 2024 09:19:41 GMT", + "dc:creator": "Katie Hawkinson", + "dc:date": "2024-01-04T09:19:41+00:00", + "content": "

Infectious disease experts say the best way to protect yourself from the JN.1 subvariant is to get the updated Covid 19 vaccine

", + "contentSnippet": "Infectious disease experts say the best way to protect yourself from the JN.1 subvariant is to get the updated Covid 19 vaccine", + "guid": "b2467446", + "categories": ["Health"], + "isoDate": "2024-01-04T09:19:41.000Z" + }, + { + "creator": "Hyung-Jin Kim and Jiwon Song", + "date": "2024-01-04T09:14:08+00:00", + "title": "South Korea views the young daughter of North Korean leader Kim Jong Un as his likely successor", + "link": "https://www.independent.co.uk/news/kim-jong-un-ap-south-korea-seoul-kim-jong-il-b2473087.html", + "pubDate": "Thu, 04 Jan 2024 09:14:08 GMT", + "dc:creator": "Hyung-Jin Kim and Jiwon Song", + "dc:date": "2024-01-04T09:14:08+00:00", + "content": "South Korea's intelligence service says it views the young daughter of North Korean leader Kim Jong Un as her father\u2019s likely heir apparent", + "contentSnippet": "South Korea's intelligence service says it views the young daughter of North Korean leader Kim Jong Un as her father\u2019s likely heir apparent", + "guid": "b2473087", + "isoDate": "2024-01-04T09:14:08.000Z" + }, + { + "creator": "Jan M. Olsen", + "date": "2024-01-04T09:14:02+00:00", + "title": "Danish queen in her last public appearance before she steps down in rare abdication", + "link": "https://www.independent.co.uk/news/ap-copenhagen-europe-mary-australian-b2473086.html", + "pubDate": "Thu, 04 Jan 2024 09:14:02 GMT", + "dc:creator": "Jan M. Olsen", + "dc:date": "2024-01-04T09:14:02+00:00", + "content": "Queen Margrethe rode through Denmark\u2019s capital in a gilded, horse-drawn coach as she concluded her last New Year celebrations before her Jan. 14 abdication after 52 years on the throne", + "contentSnippet": "Queen Margrethe rode through Denmark\u2019s capital in a gilded, horse-drawn coach as she concluded her last New Year celebrations before her Jan. 14 abdication after 52 years on the throne", + "guid": "b2473086", + "isoDate": "2024-01-04T09:14:02.000Z" + }, + { + "creator": "Holly Williams", + "date": "2024-01-04T09:13:35+00:00", + "title": "Next boss cautions over stock delays from Red Sea attacks", + "link": "https://www.independent.co.uk/business/next-boss-cautions-over-stock-delays-from-red-sea-attacks-b2473088.html", + "pubDate": "Thu, 04 Jan 2024 09:13:35 GMT", + "dc:creator": "Holly Williams", + "dc:date": "2024-01-04T09:13:35+00:00", + "content": "Chief executive Lord Simon Wolfson said an extra two and a half weeks must be added to stock delivery times for goods and garments from the Far East.", + "contentSnippet": "Chief executive Lord Simon Wolfson said an extra two and a half weeks must be added to stock delivery times for goods and garments from the Far East.", + "guid": "b2473088", + "categories": ["Business"], + "isoDate": "2024-01-04T09:13:35.000Z" + }, + { + "creator": "Tara Cobham", + "date": "2024-01-04T09:12:16+00:00", + "title": "Prince Andrew named in Jeffrey Epstein court documents as secret files made public ", + "link": "https://www.independent.co.uk/news/uk/home-news/prince-andrew-jeffrey-epstein-documents-b2472986.html", + "pubDate": "Thu, 04 Jan 2024 09:12:16 GMT", + "dc:creator": "Tara Cobham", + "dc:date": "2024-01-04T09:12:16+00:00", + "content": "

Scores of names are contained in long-running, now-settled defamation lawsuit brought by Epstein victim Virginia Giuffre

", + "contentSnippet": "Scores of names are contained in long-running, now-settled defamation lawsuit brought by Epstein victim Virginia Giuffre", + "guid": "b2472905", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-04T09:12:16.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2024-01-04T09:07:54+00:00", + "title": "The alleged associates of Jeffrey Epstein: Names by numbers", + "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-associates-numbers-b2472983.html", + "pubDate": "Thu, 04 Jan 2024 09:07:54 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2024-01-04T09:07:54+00:00", + "content": "

Being identified through the court documents does not necessarily mean that the individual was involved in or aware of any wrongdoing by the disgraced financier

", + "contentSnippet": "Being identified through the court documents does not necessarily mean that the individual was involved in or aware of any wrongdoing by the disgraced financier", + "guid": "b2472983", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T09:07:54.000Z" + }, + { + "creator": "Tom Watling and Maryam Zakir-Hussain", + "date": "2024-01-04T09:06:21+00:00", + "title": "Ukraine-Russia war live: Kyiv steps up drone strikes as Nato to buy 1,000 Patriot missiles ", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-latest-putin-nato-pow-b2473013.html", + "pubDate": "Thu, 04 Jan 2024 09:06:21 GMT", + "dc:creator": "Tom Watling and Maryam Zakir-Hussain", + "dc:date": "2024-01-04T09:06:21+00:00", + "content": "

Russian missile attacks on Ukraine have killed at least 44 people in the last five days and injured roughly 300 more

", + "contentSnippet": "Russian missile attacks on Ukraine have killed at least 44 people in the last five days and injured roughly 300 more", + "guid": "b2466307", + "categories": ["Europe", "World"], + "isoDate": "2024-01-04T09:06:21.000Z" + }, + { + "creator": "Andrea Blanco and Bevan Hurley", + "date": "2024-01-04T09:05:58+00:00", + "title": "Jeffrey Epstein associate names unsealed in court documents", + "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-list-names-documents-b2472960.html", + "pubDate": "Thu, 04 Jan 2024 09:05:58 GMT", + "dc:creator": "Andrea Blanco and Bevan Hurley", + "dc:date": "2024-01-04T09:05:58+00:00", + "content": "

At least 40 documents were unsealed on Wednesday

", + "contentSnippet": "At least 40 documents were unsealed on Wednesday", + "guid": "b2472955", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T09:05:58.000Z" + }, + { + "creator": "Katie Hawkinson", + "date": "2024-01-04T09:03:04+00:00", + "title": "Mask mandates reinstated by local officials across the US as Covid-19, respiratory illnesses spread", + "link": "https://www.independent.co.uk/news/health/mask-mandates-hospitals-covid-new-york-los-angeles-b2472884.html", + "pubDate": "Thu, 04 Jan 2024 09:03:04 GMT", + "dc:creator": "Katie Hawkinson", + "dc:date": "2024-01-04T09:03:04+00:00", + "content": "

The mandates come amid a spike in Covid-19 cases and other respiratory illnesses like the flu and RSV

", + "contentSnippet": "The mandates come amid a spike in Covid-19 cases and other respiratory illnesses like the flu and RSV", + "guid": "b2472884", + "categories": ["Health"], + "isoDate": "2024-01-04T09:03:04.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-04T09:01:09+00:00", + "title": "Topps Tiles shares slide after cautious consumers hit revenue", + "link": "https://www.independent.co.uk/business/topps-tiles-shares-slide-after-cautious-consumers-hit-revenue-b2473083.html", + "pubDate": "Thu, 04 Jan 2024 09:01:09 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-04T09:01:09+00:00", + "content": "Revenue was down by 4% in the last three months of 2022, the business said on Thursday.", + "contentSnippet": "Revenue was down by 4% in the last three months of 2022, the business said on Thursday.", + "guid": "b2473083", + "categories": ["Business"], + "isoDate": "2024-01-04T09:01:09.000Z" + }, + { + "creator": "Io Dodds ", + "date": "2024-01-04T09:00:57+00:00", + "title": "Jeffrey Epstein\u2019s island: What really happened there?", + "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-island-ghislaine-maxwell-b2472131.html", + "pubDate": "Thu, 04 Jan 2024 09:00:57 GMT", + "dc:creator": "Io Dodds ", + "dc:date": "2024-01-04T09:00:57+00:00", + "content": "

Accusers say billionaire\u2019s private paradise of Little St James in US Virgin Islands was centre of international sex trafficking ring

", + "contentSnippet": "Accusers say billionaire\u2019s private paradise of Little St James in US Virgin Islands was centre of international sex trafficking ring", + "guid": "b2111535", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T09:00:57.000Z" + }, + { + "creator": "Martyn Landi", + "date": "2024-01-04T08:58:56+00:00", + "title": "Microsoft adds dedicated AI assistant button to Windows PC keyboards", + "link": "https://www.independent.co.uk/tech/microsoft-google-las-vegas-ces-amazon-b2473059.html", + "pubDate": "Thu, 04 Jan 2024 08:58:56 GMT", + "dc:creator": "Martyn Landi", + "dc:date": "2024-01-04T08:58:56+00:00", + "content": "The addition is the first major design change to Windows computer keyboards in nearly 30 years.", + "contentSnippet": "The addition is the first major design change to Windows computer keyboards in nearly 30 years.", + "guid": "b2473059", + "categories": ["Tech"], + "isoDate": "2024-01-04T08:58:56.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2024-01-04T08:58:34+00:00", + "title": "Ex-GOP lawmaker accused of stealing photos of food and claiming them as her own cooking", + "link": "https://www.independent.co.uk/news/world/americas/mayra-flores-stealing-mexican-food-pictures-b2473025.html", + "pubDate": "Thu, 04 Jan 2024 08:58:34 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2024-01-04T08:58:34+00:00", + "content": "

She later changed her social media handle and blocked accusers

", + "contentSnippet": "She later changed her social media handle and blocked accusers", + "guid": "b2473025", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T08:58:34.000Z" + }, + { + "creator": "Namita Singh,Rachel Sharp and Mike Bedigan", + "date": "2024-01-04T08:58:34+00:00", + "title": "Jeffrey Epstein list latest: Unsealed documents name associates including Trump, Clinton and Prince Andrew", + "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-names-unsealed-latest-news-b2472177.html", + "pubDate": "Thu, 04 Jan 2024 08:58:34 GMT", + "dc:creator": "Namita Singh,Rachel Sharp and Mike Bedigan", + "dc:date": "2024-01-04T08:58:34+00:00", + "content": "

Also named in the first batch of documents are Ghislaine Maxwell and US magician David Copperfield

", + "contentSnippet": "Also named in the first batch of documents are Ghislaine Maxwell and US magician David Copperfield", + "guid": "b2472177", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T08:58:34.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2024-01-04T08:58:05+00:00", + "title": "Alton Towers makes \u2018difficult decision\u2019 to close popular attraction after 20 years", + "link": "https://www.independent.co.uk/news/uk/home-news/alton-towers-shut-down-spa-resort-b2473075.html", + "pubDate": "Thu, 04 Jan 2024 08:58:05 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2024-01-04T08:58:05+00:00", + "content": "

Popular theme park resort says move is \u2018essential\u2019 for future growth

", + "contentSnippet": "Popular theme park resort says move is \u2018essential\u2019 for future growth", + "guid": "b2472658", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-04T08:58:05.000Z" + }, + { + "creator": "Joe Sommerlad", + "date": "2024-01-04T08:52:31+00:00", + "title": "DWP benefits recipients face payments cut next year \u2013 everything you need to know", + "link": "https://www.independent.co.uk/news/uk/home-news/dwp-pensions-benefits-payments-2024-b2473074.html", + "pubDate": "Thu, 04 Jan 2024 08:52:31 GMT", + "dc:creator": "Joe Sommerlad", + "dc:date": "2024-01-04T08:52:31+00:00", + "content": "

Child Poverty Action Group cautions that failure to raise cap will push more people beyond its threshold

", + "contentSnippet": "Child Poverty Action Group cautions that failure to raise cap will push more people beyond its threshold", + "guid": "b2463811", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-04T08:52:31.000Z" + }, + { + "creator": "Shweta Sharma", + "date": "2024-01-04T08:50:32+00:00", + "title": "Japan Coast Guard plane was not cleared for take-off before fatal Tokyo crash", + "link": "https://www.independent.co.uk/asia/japan/japan-airlines-coast-guard-plane-permission-b2473045.html", + "pubDate": "Thu, 04 Jan 2024 08:50:32 GMT", + "dc:creator": "Shweta Sharma", + "dc:date": "2024-01-04T08:50:32+00:00", + "content": "

Newly released transcript contradict coastguard plane pilot\u2019s account of getting take-off permission

", + "contentSnippet": "Newly released transcript contradict coastguard plane pilot\u2019s account of getting take-off permission", + "guid": "b2473045", + "categories": ["Japan", "Asia"], + "isoDate": "2024-01-04T08:50:32.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2024-01-04T08:48:57+00:00", + "title": "Game of Thrones actor reveals \u2018bonkers\u2019 contestant on The Traitors is their mother", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/game-of-thrones-the-traitors-season-2-diane-b2473056.html", + "pubDate": "Thu, 04 Jan 2024 08:48:57 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2024-01-04T08:48:57+00:00", + "content": "

\u2018I\u2019ve only just found out,\u2019 shocked star, who also appeared in \u2018Alias Grace\u2019, said

", + "contentSnippet": "\u2018I\u2019ve only just found out,\u2019 shocked star, who also appeared in \u2018Alias Grace\u2019, said", + "guid": "b2473056", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-04T08:48:57.000Z" + }, + { + "creator": "Albert Toth and Joe Sommerlad", + "date": "2024-01-04T08:44:40+00:00", + "title": "January 2024 dates for benefits, pensions and cost of living payments ", + "link": "https://www.independent.co.uk/news/uk/home-news/dwp-cost-of-living-payment-b2473072.html", + "pubDate": "Thu, 04 Jan 2024 08:44:40 GMT", + "dc:creator": "Albert Toth and Joe Sommerlad", + "dc:date": "2024-01-04T08:44:40+00:00", + "content": "

Despite inflation beginning to ease, many households continue to struggle

", + "contentSnippet": "Despite inflation beginning to ease, many households continue to struggle", + "guid": "b2470001", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-04T08:44:40.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-04T08:40:41+00:00", + "title": "Luke Littler reveals future ambitions after finishing runner-up in World Darts Championship", + "link": "https://www.independent.co.uk/tv/sport/luke-littler-darts-ranking-final-b2472923.html", + "pubDate": "Thu, 04 Jan 2024 08:40:41 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-04T08:40:41+00:00", + "content": "

Luke Littler has revealed his future ambitions after finishing runner-up in the World Darts Championship.

", + "contentSnippet": "Luke Littler has revealed his future ambitions after finishing runner-up in the World Darts Championship.", + "guid": "b2472923", + "categories": ["Sport", "Indy TV"], + "isoDate": "2024-01-04T08:40:41.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-04T08:39:41+00:00", + "title": "Luke Littler confident of future world title after historic debut tournament", + "link": "https://www.independent.co.uk/tv/sport/luke-littler-luke-humphries-darts-final-b2473069.html", + "pubDate": "Thu, 04 Jan 2024 08:39:41 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-04T08:39:41+00:00", + "content": "

Luke Littler sees no reason why he can\u2019t win a world title in the future after his impressive debut run in the PDC World Darts Championship.

", + "contentSnippet": "Luke Littler sees no reason why he can\u2019t win a world title in the future after his impressive debut run in the PDC World Darts Championship.", + "guid": "b2473069", + "categories": ["Sport", "Indy TV"], + "isoDate": "2024-01-04T08:39:41.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-04T08:34:52+00:00", + "title": "Lethal Sydney funnel-web spider 'Hercules' sets record for largest specimen collected in Australia", + "link": "https://www.independent.co.uk/news/sydney-ap-hercules-australia-blue-mountains-b2473068.html", + "pubDate": "Thu, 04 Jan 2024 08:34:52 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-04T08:34:52+00:00", + "content": "The largest male specimen of the world's most poisonous spider that boasts fangs powerful enough to pierce a human fingernail has found a new home after being discovered north of Sydney, Australia", + "contentSnippet": "The largest male specimen of the world's most poisonous spider that boasts fangs powerful enough to pierce a human fingernail has found a new home after being discovered north of Sydney, Australia", + "guid": "b2473068", + "isoDate": "2024-01-04T08:34:52.000Z" + }, + { + "creator": "Arpan Rai", + "date": "2024-01-04T08:29:39+00:00", + "title": "UN nuclear watchdog says Russia is denying access to Ukrainian power station", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-nuclear-power-plant-russia-inaccessible-b2473031.html", + "pubDate": "Thu, 04 Jan 2024 08:29:39 GMT", + "dc:creator": "Arpan Rai", + "dc:date": "2024-01-04T08:29:39+00:00", + "content": "

IAEA says it is first time it has been denied access to key parts of plant, including where reactor core and spent fuel are located

", + "contentSnippet": "IAEA says it is first time it has been denied access to key parts of plant, including where reactor core and spent fuel are located", + "guid": "b2473031", + "categories": ["Europe", "World"], + "isoDate": "2024-01-04T08:29:39.000Z" + }, + { + "creator": "Vishwam Sankaran", + "date": "2024-01-04T08:27:37+00:00", + "title": "Nasa\u2019s Webb telescope could use this new hack to find life on other planets, study says", + "link": "https://www.independent.co.uk/space/nasa-webb-telescope-life-planets-b2473055.html", + "pubDate": "Thu, 04 Jan 2024 08:27:37 GMT", + "dc:creator": "Vishwam Sankaran", + "dc:date": "2024-01-04T08:27:37+00:00", + "content": "

\u2018Now we have a way to find out if there\u2019s liquid water on another planet,\u2019 scientists say

", + "contentSnippet": "\u2018Now we have a way to find out if there\u2019s liquid water on another planet,\u2019 scientists say", + "guid": "b2473055", + "categories": ["Space"], + "isoDate": "2024-01-04T08:27:37.000Z" + }, + { + "creator": "David B. Caruso", + "date": "2024-01-04T08:21:20+00:00", + "title": "Court records related to Jeffrey Epstein are set to be released, but they aren't a client list", + "link": "https://www.independent.co.uk/news/jeffrey-epstein-ap-court-records-virginia-giuffre-social-media-b2472792.html", + "pubDate": "Thu, 04 Jan 2024 08:21:20 GMT", + "dc:creator": "David B. Caruso", + "dc:date": "2024-01-04T08:21:20+00:00", + "content": "Social media has been rife in recent weeks with posts speculating that a judge is about to release a list of clients or co-conspirators of Jeffrey Epstein, the jet-setting financier who killed himself in 2019 while awaiting trial on sex trafficking charges", + "contentSnippet": "Social media has been rife in recent weeks with posts speculating that a judge is about to release a list of clients or co-conspirators of Jeffrey Epstein, the jet-setting financier who killed himself in 2019 while awaiting trial on sex trafficking charges", + "guid": "b2472792", + "isoDate": "2024-01-04T08:21:20.000Z" + }, + { + "creator": "By Adam Beam and Trn Nguyn", + "date": "2024-01-04T08:20:59+00:00", + "title": "Jewish protesters calling for cease-fire in Gaza disrupt first day of California legislative session", + "link": "https://www.independent.co.uk/news/ap-california-jewish-gavin-newsom-israel-b2472977.html", + "pubDate": "Thu, 04 Jan 2024 08:20:59 GMT", + "dc:creator": "By Adam Beam and Trn Nguyn", + "dc:date": "2024-01-04T08:20:59+00:00", + "content": "Protesters calling for a cease-fire in the Israel-Hamas war have disrupted the first day of California's legislative session", + "contentSnippet": "Protesters calling for a cease-fire in the Israel-Hamas war have disrupted the first day of California's legislative session", + "guid": "b2472977", + "isoDate": "2024-01-04T08:20:59.000Z" + }, + { + "creator": "Edith M. Lederer", + "date": "2024-01-04T08:20:43+00:00", + "title": "US calls for urgent UN action on attacks by Yemen's Houthi rebels on ships in the Red Sea", + "link": "https://www.independent.co.uk/news/houthi-ap-red-sea-yemen-iran-b2472978.html", + "pubDate": "Thu, 04 Jan 2024 08:20:43 GMT", + "dc:creator": "Edith M. Lederer", + "dc:date": "2024-01-04T08:20:43+00:00", + "content": "The United States is calling on the U.N. Security Council to take urgent action against Yemen\u2019s Houthi rebels for attacking ships in the key Red Sea trade route, and is warning their longtime financier and weapons supplier Iran that it has a choice", + "contentSnippet": "The United States is calling on the U.N. Security Council to take urgent action against Yemen\u2019s Houthi rebels for attacking ships in the key Red Sea trade route, and is warning their longtime financier and weapons supplier Iran that it has a choice", + "guid": "b2472978", + "isoDate": "2024-01-04T08:20:43.000Z" + }, + { + "creator": "Richard Jolly", + "date": "2024-01-04T08:19:26+00:00", + "title": "Eddie Howe needs a turning point as he faces crunch moment in Newcastle reign ", + "link": "https://www.independent.co.uk/sport/football/newcastle-sunderland-preview-eddie-howe-january-b2472714.html", + "pubDate": "Thu, 04 Jan 2024 08:19:26 GMT", + "dc:creator": "Richard Jolly", + "dc:date": "2024-01-04T08:19:26+00:00", + "content": "

A derby against Sunderland has caused the downfall of Newcastle managers in the past and Howe can\u2019t afford to slip on that FA Cup banana skin

", + "contentSnippet": "A derby against Sunderland has caused the downfall of Newcastle managers in the past and Howe can\u2019t afford to slip on that FA Cup banana skin", + "guid": "b2472714", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T08:19:26.000Z" + }, + { + "creator": "Joe Sommerlad", + "date": "2024-01-04T08:16:26+00:00", + "title": "A 16-year-old was already nervous about his first lone flight to Ohio \u2013 then he landed in Puerto Rico", + "link": "https://www.independent.co.uk/travel/news-and-advice/florida-teen-wrong-flight-puerto-rico-ohio-b2473062.html", + "pubDate": "Thu, 04 Jan 2024 08:16:26 GMT", + "dc:creator": "Joe Sommerlad", + "dc:date": "2024-01-04T08:16:26+00:00", + "content": "

Logan Lose finds himself in San Juan after Florida boarding agent allegedly neglected to scan his ticket

", + "contentSnippet": "Logan Lose finds himself in San Juan after Florida boarding agent allegedly neglected to scan his ticket", + "guid": "b2472728", + "categories": ["News & Advice", "Travel"], + "isoDate": "2024-01-04T08:16:26.000Z" + }, + { + "creator": "Shweta Sharma", + "date": "2024-01-04T08:09:42+00:00", + "title": "Japan Airlines says Tokyo crash will cost it more than $100m", + "link": "https://www.independent.co.uk/asia/japan/tokyo-plane-crash-2024-japan-airlines-haneda-b2472997.html", + "pubDate": "Thu, 04 Jan 2024 08:09:42 GMT", + "dc:creator": "Shweta Sharma", + "dc:date": "2024-01-04T08:09:42+00:00", + "content": "

This is first time globally that hull of an A350 model airbus is lost in aviation disaster

", + "contentSnippet": "This is first time globally that hull of an A350 model airbus is lost in aviation disaster", + "guid": "b2472997", + "categories": ["Japan", "Asia"], + "isoDate": "2024-01-04T08:09:42.000Z" + }, + { + "creator": "Jessie Thompson", + "date": "2024-01-04T08:06:53+00:00", + "title": "The Traitors season two, review: You\u2019ll be staying faithful to your sofa for the rest of the month", + "link": "https://www.independent.co.uk/arts-entertainment/tv/reviews/the-traitors-season-two-review-bbc-winkleman-b2472567.html", + "pubDate": "Thu, 04 Jan 2024 08:06:53 GMT", + "dc:creator": "Jessie Thompson", + "dc:date": "2024-01-04T08:06:53+00:00", + "content": "

The cloaks, the chaos and Claudia Winkleman are all back for a second season of the BBC\u2019s runaway gameshow hit. Resistance is futile \u2013 just cancel all your January plans now

", + "contentSnippet": "The cloaks, the chaos and Claudia Winkleman are all back for a second season of the BBC\u2019s runaway gameshow hit. Resistance is futile \u2013 just cancel all your January plans now", + "guid": "b2472567", + "categories": ["Reviews", "TV & Radio", "Culture"], + "isoDate": "2024-01-04T08:06:53.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-04T08:00:02+00:00", + "title": "AI Elvis Presley to be beamed on London stage in immersive concert experience", + "link": "https://www.independent.co.uk/tv/culture/ai-elvis-presley-london-concert-b2473057.html", + "pubDate": "Thu, 04 Jan 2024 08:00:02 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-04T08:00:02+00:00", + "content": "

Elvis Presley fans will finally be able to see the King of Rock \u2018n\u2019 Roll perform in the UK for the first time later this year.

", + "contentSnippet": "Elvis Presley fans will finally be able to see the King of Rock \u2018n\u2019 Roll perform in the UK for the first time later this year.", + "guid": "b2473057", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-04T08:00:02.000Z" + }, + { + "creator": "Laura Harding", + "date": "2024-01-04T07:59:36+00:00", + "title": "Elvis gets the Abba treatment: Concert using AI and holograph technology to open in UK this year", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/elvis-presley-holograph-concert-london-b2473050.html", + "pubDate": "Thu, 04 Jan 2024 07:59:36 GMT", + "dc:creator": "Laura Harding", + "dc:date": "2024-01-04T07:59:36+00:00", + "content": "

The show will use AI to bring the star to life using thousands of his personal photos and home-video footage

", + "contentSnippet": "The show will use AI to bring the star to life using thousands of his personal photos and home-video footage", + "guid": "b2472945", + "categories": ["News", "Music", "Culture"], + "isoDate": "2024-01-04T07:59:36.000Z" + }, + { + "creator": "Lawrence Ostlere", + "date": "2024-01-04T07:59:25+00:00", + "title": "How Luke Humphries overcame anxiety attacks to become darts world champion", + "link": "https://www.independent.co.uk/sport/darts/luke-humphries-anxiety-attacks-darts-world-final-littler-b2473054.html", + "pubDate": "Thu, 04 Jan 2024 07:59:25 GMT", + "dc:creator": "Lawrence Ostlere", + "dc:date": "2024-01-04T07:59:25+00:00", + "content": "

The understated Humphries, nicknamed \u2018Cool Hand Luke\u2019, has had to overcome adversity to rise to the top of the sport

", + "contentSnippet": "The understated Humphries, nicknamed \u2018Cool Hand Luke\u2019, has had to overcome adversity to rise to the top of the sport", + "guid": "b2472530", + "categories": ["Darts", "Sport"], + "isoDate": "2024-01-04T07:59:25.000Z" + }, + { + "creator": "Holly Williams", + "date": "2024-01-04T07:53:29+00:00", + "title": "Next raises profit outlook after better-than-forecast festive trading", + "link": "https://www.independent.co.uk/business/next-raises-profit-outlook-after-betterthanforecast-festive-trading-b2473058.html", + "pubDate": "Thu, 04 Jan 2024 07:53:29 GMT", + "dc:creator": "Holly Williams", + "dc:date": "2024-01-04T07:53:29+00:00", + "content": "The retail giant saw full-price sales jump 5.7% higher over the nine weeks to December 30.", + "contentSnippet": "The retail giant saw full-price sales jump 5.7% higher over the nine weeks to December 30.", + "guid": "b2473058", + "categories": ["Business"], + "isoDate": "2024-01-04T07:53:29.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2024-01-04T07:53:26+00:00", + "title": "Attack on Las Vegas judge as she sentenced felon captured on court cameras", + "link": "https://www.independent.co.uk/news/world/americas/crime/vegas-judge-attacked-mary-kay-holthus-b2472981.html", + "pubDate": "Thu, 04 Jan 2024 07:53:26 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2024-01-04T07:53:26+00:00", + "content": "

Defendant subdued by court officials following violent brawl

", + "contentSnippet": "Defendant subdued by court officials following violent brawl", + "guid": "b2472981", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T07:53:26.000Z" + }, + { + "creator": "Roisin O'Connor", + "date": "2024-01-04T07:50:31+00:00", + "title": "Saltburn, TikTok and a naked Barry Keoghan: Sophie Ellis-Bextor rejoices over Murder on the Dancefloor\u2019s revival", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/murder-on-the-dancefloor-sophie-ellis-bextor-saltburn-b2472686.html", + "pubDate": "Thu, 04 Jan 2024 07:50:31 GMT", + "dc:creator": "Roisin O'Connor", + "dc:date": "2024-01-04T07:50:31+00:00", + "content": "

Exclusive: British pop star and \u2018Saltburn\u2019 writer and director Emerald Fennell react to a renewed appreciation for Ellis-Bextor\u2019s 2001 hit, as it goes viral on TikTok and re-enters the charts after featuring in the class satire

", + "contentSnippet": "Exclusive: British pop star and \u2018Saltburn\u2019 writer and director Emerald Fennell react to a renewed appreciation for Ellis-Bextor\u2019s 2001 hit, as it goes viral on TikTok and re-enters the charts after featuring in the class satire", + "guid": "b2472686", + "categories": ["News", "Music", "Culture"], + "isoDate": "2024-01-04T07:50:31.000Z" + }, + { + "creator": "Jonathan Veal", + "date": "2024-01-04T07:48:38+00:00", + "title": "Luke Littler vows to win world darts title in the future after near miss", + "link": "https://www.independent.co.uk/sport/darts/luke-littler-final-world-title-trophy-b2473006.html", + "pubDate": "Thu, 04 Jan 2024 07:48:38 GMT", + "dc:creator": "Jonathan Veal", + "dc:date": "2024-01-04T07:48:38+00:00", + "content": "

Luke Humphries edged the 16-year-old in an epic World Darts Championship final but Littler has promised to return to win the trophy in future years

", + "contentSnippet": "Luke Humphries edged the 16-year-old in an epic World Darts Championship final but Littler has promised to return to win the trophy in future years", + "guid": "b2473006", + "categories": ["Darts", "Sport"], + "isoDate": "2024-01-04T07:48:38.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-04T07:46:38+00:00", + "title": "A Texas father and son arrested in the killings of a pregnant woman and her boyfriend", + "link": "https://www.independent.co.uk/news/ap-san-antonio-texas-police-b2473051.html", + "pubDate": "Thu, 04 Jan 2024 07:46:38 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-04T07:46:38+00:00", + "content": "A father and son in Texas have been charged in the killings of an 18-year-old pregnant woman who disappeared before Christmas and her boyfriend", + "contentSnippet": "A father and son in Texas have been charged in the killings of an 18-year-old pregnant woman who disappeared before Christmas and her boyfriend", + "guid": "b2473051", + "isoDate": "2024-01-04T07:46:38.000Z" + }, + { + "creator": "Vishwam Sankaran", + "date": "2024-01-04T07:44:11+00:00", + "title": "Elon Musk suggests Tesla\u2019s bulletproof Cybertruck could make for good police vehicle", + "link": "https://www.independent.co.uk/tech/musk-tesla-cybertruck-police-vehicle-b2473029.html", + "pubDate": "Thu, 04 Jan 2024 07:44:11 GMT", + "dc:creator": "Vishwam Sankaran", + "dc:date": "2024-01-04T07:44:11+00:00", + "content": "

Tesla recently delivered first Cybertrucks to customers, years after vehicle was unveiled for advance orders

", + "contentSnippet": "Tesla recently delivered first Cybertrucks to customers, years after vehicle was unveiled for advance orders", + "guid": "b2473029", + "categories": ["Tech"], + "isoDate": "2024-01-04T07:44:11.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-04T07:39:50+00:00", + "title": "Defendant leaps over table and attacks judge during sentencing in Las Vegas courtroom", + "link": "https://www.independent.co.uk/tv/news/judge-attack-court-las-vegas-video-b2473041.html", + "pubDate": "Thu, 04 Jan 2024 07:39:50 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-04T07:39:50+00:00", + "content": "

This is the moment a defendant leaps over a table and attacks a Nevada judge during a courtroom sentencing in Las Vegas on Wednesday (3 January).

", + "contentSnippet": "This is the moment a defendant leaps over a table and attacks a Nevada judge during a courtroom sentencing in Las Vegas on Wednesday (3 January).", + "guid": "b2473041", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-04T07:39:50.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2024-01-04T07:39:21+00:00", + "title": "Netflix has just released its most harrowing movie to date", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/netflix-movies-tv-shows-society-snow-january-b2473046.html", + "pubDate": "Thu, 04 Jan 2024 07:39:21 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2024-01-04T07:39:21+00:00", + "content": "

Everything to add to your watchlist in the next 31 days

", + "contentSnippet": "Everything to add to your watchlist in the next 31 days", + "guid": "b2471536", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-04T07:39:21.000Z" + }, + { + "creator": "Vishwam Sankaran", + "date": "2024-01-04T07:38:07+00:00", + "title": "Giant \u2018terror beast\u2019 worms that colonised water 518 million years ago unearthed in Greenland", + "link": "https://www.independent.co.uk/news/science/giant-worms-terror-beast-greenland-b2473042.html", + "pubDate": "Thu, 04 Jan 2024 07:38:07 GMT", + "dc:creator": "Vishwam Sankaran", + "dc:date": "2024-01-04T07:38:07+00:00", + "content": "

Worms were close to top of food chain, scientists say

", + "contentSnippet": "Worms were close to top of food chain, scientists say", + "guid": "b2473042", + "categories": ["Science"], + "isoDate": "2024-01-04T07:38:07.000Z" + }, + { + "creator": "Shweta Sharma", + "date": "2024-01-04T07:26:00+00:00", + "title": "Extreme cold temperatures not seen for decades in Scandinavia cause widespread disruption", + "link": "https://www.independent.co.uk/climate-change/news/winter-temperature-scandinavia-europe-deaths-b2473020.html", + "pubDate": "Thu, 04 Jan 2024 07:26:00 GMT", + "dc:creator": "Shweta Sharma", + "dc:date": "2024-01-04T07:26:00+00:00", + "content": "

Temperatures plunge to below -40C in Nordic region with most parts blanketed in heavy snow

", + "contentSnippet": "Temperatures plunge to below -40C in Nordic region with most parts blanketed in heavy snow", + "guid": "b2473020", + "categories": ["News", "Climate"], + "isoDate": "2024-01-04T07:26:00.000Z" + }, + { + "creator": "Helen Coffey", + "date": "2024-01-04T07:22:54+00:00", + "title": "Tube strikes: Which London Underground services are running next week and how will I get around?", + "link": "https://www.independent.co.uk/travel/news-and-advice/tube-strikes-next-week-london-underground-b2473044.html", + "pubDate": "Thu, 04 Jan 2024 07:22:54 GMT", + "dc:creator": "Helen Coffey", + "dc:date": "2024-01-04T07:22:54+00:00", + "content": "

Transport for London has warned London Underground passengers to \u2018only travel if their journey is essential\u2019 from Sunday until Friday

", + "contentSnippet": "Transport for London has warned London Underground passengers to \u2018only travel if their journey is essential\u2019 from Sunday until Friday", + "guid": "b2472503", + "categories": ["News & Advice", "Travel"], + "isoDate": "2024-01-04T07:22:54.000Z" + }, + { + "creator": "Graeme Massie", + "date": "2024-01-04T07:14:34+00:00", + "title": "Release of documents listing Jeffrey Epstein associates crashes website ", + "link": "https://www.independent.co.uk/news/world/americas/courtlistener-jeffrey-epstein-list-documents-b2473039.html", + "pubDate": "Thu, 04 Jan 2024 07:14:34 GMT", + "dc:creator": "Graeme Massie", + "dc:date": "2024-01-04T07:14:34+00:00", + "content": "

The CourtListener site, run by the non-profit Free Law Project, went down within minutes

", + "contentSnippet": "The CourtListener site, run by the non-profit Free Law Project, went down within minutes", + "guid": "b2472962", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T07:14:34.000Z" + }, + { + "creator": "Rebecca Thomas", + "date": "2024-01-04T07:12:05+00:00", + "title": "Junior doctors\u2019 strike: Why are they taking action and what are their demands? ", + "link": "https://www.independent.co.uk/news/health/junior-doctors-strike-pay-salary-demands-b2473038.html", + "pubDate": "Thu, 04 Jan 2024 07:12:05 GMT", + "dc:creator": "Rebecca Thomas", + "dc:date": "2024-01-04T07:12:05+00:00", + "content": "

Ninety eight per cent of members who were balloted voted in favour of 72-hour walkouts last March

", + "contentSnippet": "Ninety eight per cent of members who were balloted voted in favour of 72-hour walkouts last March", + "guid": "b2285815", + "categories": ["Health"], + "isoDate": "2024-01-04T07:12:05.000Z" + }, + { + "creator": "Lawrence Ostlere", + "date": "2024-01-04T07:12:04+00:00", + "title": "Luke Littler\u2019s genius shines through even in World Darts Championship final defeat by Luke Humphries", + "link": "https://www.independent.co.uk/sport/darts/luke-littler-humphries-world-darts-final-b2473037.html", + "pubDate": "Thu, 04 Jan 2024 07:12:04 GMT", + "dc:creator": "Lawrence Ostlere", + "dc:date": "2024-01-04T07:12:04+00:00", + "content": "

Humphries won five sets in a row to defeat the remarkable 16-year-old Luke Littler and clinch his first world title

", + "contentSnippet": "Humphries won five sets in a row to defeat the remarkable 16-year-old Luke Littler and clinch his first world title", + "guid": "b2472800", + "categories": ["Darts", "Sport"], + "isoDate": "2024-01-04T07:12:04.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-04T07:09:54+00:00", + "title": "Myanmar's military government pardons 10,000 prisoners to mark Independence Day", + "link": "https://www.independent.co.uk/news/myanmar-ap-aung-san-suu-kyi-britain-yangon-b2473043.html", + "pubDate": "Thu, 04 Jan 2024 07:09:54 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-04T07:09:54+00:00", + "content": "Myanmar\u2019s military government has pardoned nearly 10,000 prisoners to mark the 76th anniversary of gaining independence from Britain, but it wasn\u2019t immediately clear if any of those released included the thousands of political detainees jailed for opposing army rule", + "contentSnippet": "Myanmar\u2019s military government has pardoned nearly 10,000 prisoners to mark the 76th anniversary of gaining independence from Britain, but it wasn\u2019t immediately clear if any of those released included the thousands of political detainees jailed for opposing army rule", + "guid": "b2473043", + "isoDate": "2024-01-04T07:09:54.000Z" + }, + { + "creator": "Hiro Komae,Ayaka McGill and Yuri Kageyama", + "date": "2024-01-04T07:08:06+00:00", + "title": "Scenes of loss play out across Japan's western coastline after quake kills 78, dozens still missing", + "link": "https://www.independent.co.uk/news/ap-japan-fumio-kishida-tokyo-snow-b2473040.html", + "pubDate": "Thu, 04 Jan 2024 07:08:06 GMT", + "dc:creator": "Hiro Komae,Ayaka McGill and Yuri Kageyama", + "dc:date": "2024-01-04T07:08:06+00:00", + "content": "Rescue workers are braving the cold to save people still trapped under collapsed buildings in western Japan", + "contentSnippet": "Rescue workers are braving the cold to save people still trapped under collapsed buildings in western Japan", + "guid": "b2473040", + "isoDate": "2024-01-04T07:08:06.000Z" + }, + { + "creator": "Maanya Sachdeva", + "date": "2024-01-04T07:00:23+00:00", + "title": "Jimmy Kimmel threatens to sue Aaron Rodgers over Epstein client list taunt ", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/jimmy-kimmel-aaron-rodgers-epstein-list-b2473034.html", + "pubDate": "Thu, 04 Jan 2024 07:00:23 GMT", + "dc:creator": "Maanya Sachdeva", + "dc:date": "2024-01-04T07:00:23+00:00", + "content": "

Kimmel, 56, condemned the 40-year-old NFL star\u2019s \u2018reckless words\u2019 during a talk show appearance

", + "contentSnippet": "Kimmel, 56, condemned the 40-year-old NFL star\u2019s \u2018reckless words\u2019 during a talk show appearance", + "guid": "b2472502", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-04T07:00:23.000Z" + }, + { + "creator": "Josh Marcus", + "date": "2024-01-04T06:58:08+00:00", + "title": "Jeffrey Epstein: How did disgraced financier die?", + "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-die-what-happened-ghislaine-maxwell-b2473033.html", + "pubDate": "Thu, 04 Jan 2024 06:58:08 GMT", + "dc:creator": "Josh Marcus", + "dc:date": "2024-01-04T06:58:08+00:00", + "content": "

Epstein died on 10 August inside the Metropolitan Correctional Center in New York

", + "contentSnippet": "Epstein died on 10 August inside the Metropolitan Correctional Center in New York", + "guid": "b2110915", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T06:58:08.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2024-01-04T06:56:04+00:00", + "title": "Absolutely amazing \u2013 Luke Littler\u2019s former coach stunned by run to world final", + "link": "https://www.independent.co.uk/sport/luke-littler-luke-humphries-alexandra-palace-warrington-raymond-van-barneveld-b2472961.html", + "pubDate": "Thu, 04 Jan 2024 06:56:04 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2024-01-04T06:56:04+00:00", + "content": "Tournament debutant Littler, the youngest-ever finalist, was beaten 7-4 at Alexandra Palace by Luke Humphries.", + "contentSnippet": "Tournament debutant Littler, the youngest-ever finalist, was beaten 7-4 at Alexandra Palace by Luke Humphries.", + "guid": "b2472961", + "categories": ["Sport"], + "isoDate": "2024-01-04T06:56:04.000Z" + }, + { + "creator": "Andy Lynes", + "date": "2022-10-07T15:15:00+00:00", + "title": "8 best electric hand mixers that whizz up a storm in the kitchen", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/kitchen-appliances/best-hand-mixers-baking-cooking-kitchen-a8474836.html", + "pubDate": "Fri, 07 Oct 2022 15:15:00 GMT", + "dc:creator": "Andy Lynes", + "dc:date": "2022-10-07T15:15:00+00:00", + "content": "

Whether you\u2019re mixing or whipping, these culinary aids are baking essentials

", + "contentSnippet": "Whether you\u2019re mixing or whipping, these culinary aids are baking essentials", + "guid": "a8474836", + "categories": [ + "Kitchen Appliances", + "Home & Garden", + "IndyBest", + "Extras" + ], + "isoDate": "2022-10-07T15:15:00.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-04T11:02:54+00:00", + "title": "Seven coffees baristas say you should never order", + "link": "https://www.independent.co.uk/tv/lifestyle/viral-coffee-latte-barista-order-b2473126.html", + "pubDate": "Thu, 04 Jan 2024 11:02:54 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-04T11:02:54+00:00", + "content": "

Baristas have shared the seven types of coffee that they will never order - and why you shouldn't either.

", + "contentSnippet": "Baristas have shared the seven types of coffee that they will never order - and why you shouldn't either.", + "guid": "b2473126", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-04T11:02:54.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2024-01-04T11:01:14+00:00", + "title": "Manchester City handed boost with Erling Haaland injury news", + "link": "https://www.independent.co.uk/sport/football/erling-haaland-manchester-city-injury-news-b2473136.html", + "pubDate": "Thu, 04 Jan 2024 11:01:14 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2024-01-04T11:01:14+00:00", + "content": "

Haaland has been sidelined with a foot injury since City\u2019s 1-0 defeat at Aston Villa on 6 December

", + "contentSnippet": "Haaland has been sidelined with a foot injury since City\u2019s 1-0 defeat at Aston Villa on 6 December", + "guid": "b2472893", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T11:01:14.000Z" + }, + { + "creator": "Jonathan Veal", + "date": "2024-01-04T10:52:10+00:00", + "title": "Luke Humphries: From suffering with anxiety to world champion in five years", + "link": "https://www.independent.co.uk/sport/luke-humphries-james-wade-peter-wright-paddy-power-grand-slam-of-darts-b2473138.html", + "pubDate": "Thu, 04 Jan 2024 10:52:10 GMT", + "dc:creator": "Jonathan Veal", + "dc:date": "2024-01-04T10:52:10+00:00", + "content": "Humphries contemplated retiring after suffering an anxiety attack during a match at the German Open in 2019.", + "contentSnippet": "Humphries contemplated retiring after suffering an anxiety attack during a match at the German Open in 2019.", + "guid": "b2473138", + "categories": ["Sport"], + "isoDate": "2024-01-04T10:52:10.000Z" + }, + { + "creator": "Joe Sommerlad and Celine Wadhera", + "date": "2024-01-04T11:14:37+00:00", + "title": "Ghislaine Maxwell: The life of the Jeffrey Epstein associate found guilty of sex trafficking", + "link": "https://www.independent.co.uk/news/world/americas/ghislaine-maxwell-sentence-who-jeffrey-epstein-b2472889.html", + "pubDate": "Thu, 04 Jan 2024 11:14:37 GMT", + "dc:creator": "Joe Sommerlad and Celine Wadhera", + "dc:date": "2024-01-04T11:14:37+00:00", + "content": "

Socialite daughter of late British press baron was jailed after being found guilty of federal sex trafficking charges for her role in procuring and grooming underage girls for billionaire paedophile ex-boyfriend

", + "contentSnippet": "Socialite daughter of late British press baron was jailed after being found guilty of federal sex trafficking charges for her role in procuring and grooming underage girls for billionaire paedophile ex-boyfriend", + "guid": "b2110909", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T11:14:37.000Z" + }, + { + "creator": "Josie Clarke", + "date": "2024-01-04T11:09:29+00:00", + "title": "Eurostar reprimanded by watchdog over \u00a339 fare promotion", + "link": "https://www.independent.co.uk/travel/news-and-advice/eurostar-cheaps-fares-promotion-complaint-b2473139.html", + "pubDate": "Thu, 04 Jan 2024 11:09:29 GMT", + "dc:creator": "Josie Clarke", + "dc:date": "2024-01-04T11:09:29+00:00", + "content": "

The advertising authority found that the promotion applied to only a \u2018very small percentage\u2019 of available seats

", + "contentSnippet": "The advertising authority found that the promotion applied to only a \u2018very small percentage\u2019 of available seats", + "guid": "b2472577", + "categories": ["News & Advice", "Travel"], + "isoDate": "2024-01-04T11:09:29.000Z" + }, + { + "creator": "Graeme Massie", + "date": "2024-01-04T11:08:05+00:00", + "title": "How Ghislaine Maxwell met Jeffrey Epstein", + "link": "https://www.independent.co.uk/news/world/americas/crime/ghislaine-maxwell-robert-jeffrey-epstein-b2472888.html", + "pubDate": "Thu, 04 Jan 2024 11:08:05 GMT", + "dc:creator": "Graeme Massie", + "dc:date": "2024-01-04T11:08:05+00:00", + "content": "

British socialite was sentenced to 20 years behind bars for sex trafficking charges

", + "contentSnippet": "British socialite was sentenced to 20 years behind bars for sex trafficking charges", + "guid": "b2110911", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T11:08:05.000Z" + }, + { + "creator": "Ariana Baio", + "date": "2024-01-04T17:10:13+00:00", + "title": "Iowa high school shooting leaves \u2018multiple\u2019 injured", + "link": "https://www.independent.co.uk/news/world/americas/perry-high-school-iowa-shooting-b2473258.html", + "pubDate": "Thu, 04 Jan 2024 17:10:13 GMT", + "dc:creator": "Ariana Baio", + "dc:date": "2024-01-04T17:10:13+00:00", + "content": "

Shooting occurred early on Thursday before classes began at Perry High School

", + "contentSnippet": "Shooting occurred early on Thursday before classes began at Perry High School", + "guid": "b2473258", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T17:10:13.000Z" + }, + { + "creator": "Cl\u00e9mence Michallon", + "date": "2024-01-04T17:09:32+00:00", + "title": "Voices: The most remarkable thing about \u2018The Iron Claw\u2019 is happening off-camera", + "link": "https://www.independent.co.uk/voices/the-iron-claw-von-erich-zac-efron-b2472863.html", + "pubDate": "Thu, 04 Jan 2024 17:09:32 GMT", + "dc:creator": "Cl\u00e9mence Michallon", + "dc:date": "2024-01-04T17:09:32+00:00", + "content": "

How the movie\u2019s real-life subjects have received the film is nothing short of fascinating, Cl\u00e9mence Michallon writes

", + "contentSnippet": "How the movie\u2019s real-life subjects have received the film is nothing short of fascinating, Cl\u00e9mence Michallon writes", + "guid": "b2472863", + "categories": ["Voices"], + "isoDate": "2024-01-04T17:09:32.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-04T17:04:25+00:00", + "title": "Critically endangered baby gorilla welcomed at Prague Zoo", + "link": "https://www.independent.co.uk/tv/lifestyle/prague-zoo-gorilla-birth-video-b2473367.html", + "pubDate": "Thu, 04 Jan 2024 17:04:25 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-04T17:04:25+00:00", + "content": "

Prague Zoo has welcomed the birth of a critically endangered baby western lowland gorilla.

", + "contentSnippet": "Prague Zoo has welcomed the birth of a critically endangered baby western lowland gorilla.", + "guid": "b2473367", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-04T17:04:25.000Z" + }, + { + "creator": "Matt O'Brien", + "date": "2024-01-04T17:02:20+00:00", + "title": "Microsoft's new AI key is first big change to keyboards in decades", + "link": "https://www.independent.co.uk/news/world/americas/microsoft-ap-dell-apple-openai-b2473368.html", + "pubDate": "Thu, 04 Jan 2024 17:02:20 GMT", + "dc:creator": "Matt O'Brien", + "dc:date": "2024-01-04T17:02:20+00:00", + "content": "Starting this month, some new personal computers that run Microsoft\u2019s Windows 11 operating system will have a special \u201cCopilot key\u201d that launches the software giant\u2019s AI chatbot", + "contentSnippet": "Starting this month, some new personal computers that run Microsoft\u2019s Windows 11 operating system will have a special \u201cCopilot key\u201d that launches the software giant\u2019s AI chatbot", + "guid": "b2473368", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T17:02:20.000Z" + }, + { + "creator": "Graig Graziosi", + "date": "2024-01-04T17:01:03+00:00", + "title": "Iowa shooting live updates: Suspect reported dead, multiple injured at Perry High School", + "link": "https://www.independent.co.uk/news/world/americas/crime/iowa-shooting-perry-high-school-updates-b2473288.html", + "pubDate": "Thu, 04 Jan 2024 17:01:03 GMT", + "dc:creator": "Graig Graziosi", + "dc:date": "2024-01-04T17:01:03+00:00", + "content": "

The Dallas County sherrif said there were \u2018multiple\u2019 gunshot victims found at the school

", + "contentSnippet": "The Dallas County sherrif said there were \u2018multiple\u2019 gunshot victims found at the school", + "guid": "b2473288", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T17:01:03.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-04T17:00:22+00:00", + "title": "Denmark\u2019s Queen Margrethe II completes final ride in gold carriage ahead of rare abdication", + "link": "https://www.independent.co.uk/tv/lifestyle/denmark-queen-margrethe-abdication-copenhagen-b2473359.html", + "pubDate": "Thu, 04 Jan 2024 17:00:22 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-04T17:00:22+00:00", + "content": "

Europe\u2019s longest reigning monarch, Queen Margrethe II, rode through Denmark\u2019s capital on Thursday 4 January in a gilded, horse-drawn coach as she concluded her last New Year celebrations before her abdication later this month.

", + "contentSnippet": "Europe\u2019s longest reigning monarch, Queen Margrethe II, rode through Denmark\u2019s capital on Thursday 4 January in a gilded, horse-drawn coach as she concluded her last New Year celebrations before her abdication later this month.", + "guid": "b2473359", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-04T17:00:22.000Z" + }, + { + "creator": "Tom White", + "date": "2024-01-04T17:00:20+00:00", + "title": "A star is born \u2013 Luke Littler\u2019s impressive achievements at World Championship", + "link": "https://www.independent.co.uk/sport/luke-littler-alexandra-palace-luke-humphries-christian-kist-rob-cross-b2473362.html", + "pubDate": "Thu, 04 Jan 2024 17:00:20 GMT", + "dc:creator": "Tom White", + "dc:date": "2024-01-04T17:00:20+00:00", + "content": "Littler\u2019s displays at Alexandra Palace were hugely impressive even without considering his age.", + "contentSnippet": "Littler\u2019s displays at Alexandra Palace were hugely impressive even without considering his age.", + "guid": "b2473362", + "categories": ["Sport"], + "isoDate": "2024-01-04T17:00:20.000Z" + }, + { + "creator": "Najib Jobain and Jack Jefffery", + "date": "2024-01-04T17:00:08+00:00", + "title": "Strike kills 12 people, mostly children, in Gaza area declared safe zone by Israel", + "link": "https://www.independent.co.uk/news/gaza-ap-hamas-israeli-khan-younis-b2473371.html", + "pubDate": "Thu, 04 Jan 2024 17:00:08 GMT", + "dc:creator": "Najib Jobain and Jack Jefffery", + "dc:date": "2024-01-04T17:00:08+00:00", + "content": "Palestinian hospital officials say an Israeli strike hit a home in an area of southern Gaza that the military had declared a safe zone, killing at least 12 people, almost all children", + "contentSnippet": "Palestinian hospital officials say an Israeli strike hit a home in an area of southern Gaza that the military had declared a safe zone, killing at least 12 people, almost all children", + "guid": "b2473371", + "isoDate": "2024-01-04T17:00:08.000Z" + }, + { + "creator": "Jamie Braidwood", + "date": "2024-01-04T16:57:35+00:00", + "title": "Premier League Darts line-up revealed as PDC makes Luke Littler decision", + "link": "https://www.independent.co.uk/sport/darts/luke-littler-premier-league-darts-players-2024-b2473311.html", + "pubDate": "Thu, 04 Jan 2024 16:57:35 GMT", + "dc:creator": "Jamie Braidwood", + "dc:date": "2024-01-04T16:57:35+00:00", + "content": "

The 16-year-old darts sensation will make his Premier League debut after his stunning World Championship run

", + "contentSnippet": "The 16-year-old darts sensation will make his Premier League debut after his stunning World Championship run", + "guid": "b2473311", + "categories": ["Darts", "Sport"], + "isoDate": "2024-01-04T16:57:35.000Z" + }, + { + "creator": "Tara Copp", + "date": "2024-01-04T16:57:23+00:00", + "title": "Houthis launch sea drone to attack ships hours after US, allies issue 'final warning'", + "link": "https://www.independent.co.uk/news/houthis-ap-white-house-red-sea-washington-b2473366.html", + "pubDate": "Thu, 04 Jan 2024 16:57:23 GMT", + "dc:creator": "Tara Copp", + "dc:date": "2024-01-04T16:57:23+00:00", + "content": "An armed unmanned surface vessel launched from Houthi-controlled Yemen got within a \u201ccouple of miles\u201d of U.S. Navy and commercial vessels before detonating", + "contentSnippet": "An armed unmanned surface vessel launched from Houthi-controlled Yemen got within a \u201ccouple of miles\u201d of U.S. Navy and commercial vessels before detonating", + "guid": "b2473366", + "isoDate": "2024-01-04T16:57:23.000Z" + }, + { + "creator": "Adam Forrest", + "date": "2024-01-04T16:57:18+00:00", + "title": "Rishi Sunak rules out spring 2024 general election and reveals timeframe for vote", + "link": "https://www.independent.co.uk/news/uk/politics/general-election-when-uk-sunak-b2473184.html", + "pubDate": "Thu, 04 Jan 2024 16:57:18 GMT", + "dc:creator": "Adam Forrest", + "dc:date": "2024-01-04T16:57:18+00:00", + "content": "

Labour accuses PM of \u2018squatting\u2019 at No 10 \u2013 after Tory leader says election later in 2024 is his \u2018working assumption\u2019

", + "contentSnippet": "Labour accuses PM of \u2018squatting\u2019 at No 10 \u2013 after Tory leader says election later in 2024 is his \u2018working assumption\u2019", + "guid": "b2473184", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-04T16:57:18.000Z" + }, + { + "creator": "Andrew Feinberg", + "date": "2024-01-04T16:55:55+00:00", + "title": "House Democrats find \u2018stunning web\u2019 of foreign payments to Trump during his presidency", + "link": "https://www.independent.co.uk/news/presidents/trump-foreign-payments-president-house-democrats-b2473321.html", + "pubDate": "Thu, 04 Jan 2024 16:55:55 GMT", + "dc:creator": "Andrew Feinberg", + "dc:date": "2024-01-04T16:55:55+00:00", + "content": "

The House investigation into Mr Trump\u2019s finances was cut short after Republicans took over the lower chamber and ended the probe

", + "contentSnippet": "The House investigation into Mr Trump\u2019s finances was cut short after Republicans took over the lower chamber and ended the probe", + "guid": "b2473321", + "categories": ["US Presidents' Lives"], + "isoDate": "2024-01-04T16:55:55.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-04T16:54:30+00:00", + "title": "Exploding toilet at a Dunkin' store in Florida left a customer filthy and injured, lawsuit claims", + "link": "https://www.independent.co.uk/news/ap-orlando-florida-massachusetts-b2473365.html", + "pubDate": "Thu, 04 Jan 2024 16:54:30 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-04T16:54:30+00:00", + "content": "A customer who claims he was injured by an exploding toilet at a Dunkin' store in central Florida has filed a negligence lawsuit against the coffee chain", + "contentSnippet": "A customer who claims he was injured by an exploding toilet at a Dunkin' store in central Florida has filed a negligence lawsuit against the coffee chain", + "guid": "b2473365", + "isoDate": "2024-01-04T16:54:30.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-04T16:52:08+00:00", + "title": "Tiny porcupine stops to visit seals during stroll around Oregon Zoo", + "link": "https://www.independent.co.uk/tv/lifestyle/oregon-zoo-animals-seals-porcupine-b2473356.html", + "pubDate": "Thu, 04 Jan 2024 16:52:08 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-04T16:52:08+00:00", + "content": "

Watch as a porcupine takes a stroll around its zoo, stopping to admire the seals.

", + "contentSnippet": "Watch as a porcupine takes a stroll around its zoo, stopping to admire the seals.", + "guid": "b2473356", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-04T16:52:08.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2024-01-04T16:51:28+00:00", + "title": "Positively shocking: Film season issues caution for \u2018outdated\u2019 language in James Bond films", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/james-bond-films-bfi-trigger-warning-b2473283.html", + "pubDate": "Thu, 04 Jan 2024 16:51:28 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2024-01-04T16:51:28+00:00", + "content": "

Film watchers are being warned about potentially offensive content ahead of new retrospective

", + "contentSnippet": "Film watchers are being warned about potentially offensive content ahead of new retrospective", + "guid": "b2473283", + "categories": ["News", "Film", "Culture"], + "isoDate": "2024-01-04T16:51:28.000Z" + }, + { + "creator": "Kelly Rissman", + "date": "2024-01-04T16:51:06+00:00", + "title": "Florida surgeon general calls to stop using mRNA Covid vaccines, citing debunked claim", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/florida-covid-vaccine-surgeon-general-b2473282.html", + "pubDate": "Thu, 04 Jan 2024 16:51:06 GMT", + "dc:creator": "Kelly Rissman", + "dc:date": "2024-01-04T16:51:06+00:00", + "content": "

\u2018These vaccines are not appropriate for use in human beings,\u2019 Dr Ladapo wrote

", + "contentSnippet": "\u2018These vaccines are not appropriate for use in human beings,\u2019 Dr Ladapo wrote", + "guid": "b2473282", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-04T16:51:06.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-04T16:48:53+00:00", + "title": "Thousands of drivers trapped on snowy Swedish motorway during extreme cold snap", + "link": "https://www.independent.co.uk/tv/news/sweden-snow-traffic-motorway-b2473291.html", + "pubDate": "Thu, 04 Jan 2024 16:48:53 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-04T16:48:53+00:00", + "content": "

Drivers in Sweden were stranded on a snowy motorway as an extreme cold snap brought icy conditions and led to big traffic jams.

", + "contentSnippet": "Drivers in Sweden were stranded on a snowy motorway as an extreme cold snap brought icy conditions and led to big traffic jams.", + "guid": "b2473291", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-04T16:48:53.000Z" + }, + { + "creator": "George Sessions", + "date": "2024-01-04T16:48:16+00:00", + "title": "Ange Postecoglou calls on Tottenham squad to step up in Son Heung-min\u2019s absence", + "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-son-heungmin-burnley-south-korea-richarlison-b2473292.html", + "pubDate": "Thu, 04 Jan 2024 16:48:16 GMT", + "dc:creator": "George Sessions", + "dc:date": "2024-01-04T16:48:16+00:00", + "content": "

South Korea captain Son is at the Asian Cup and will miss Friday\u2019s visit of Burnley, but Micky van de Ven is back in training and could feature

", + "contentSnippet": "South Korea captain Son is at the Asian Cup and will miss Friday\u2019s visit of Burnley, but Micky van de Ven is back in training and could feature", + "guid": "b2473292", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T16:48:16.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-04T16:47:13+00:00", + "title": "Luke Littler reveals which celebrities have reached out to him after World Championship final", + "link": "https://www.independent.co.uk/tv/sport/luke-littler-darts-final-celebrities-rio-ferdinand-b2473278.html", + "pubDate": "Thu, 04 Jan 2024 16:47:13 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-04T16:47:13+00:00", + "content": "

He has taken the darts world by storm after reaching the finals of the World Darts Championship.

", + "contentSnippet": "He has taken the darts world by storm after reaching the finals of the World Darts Championship.", + "guid": "b2473278", + "categories": ["Sport", "Indy TV"], + "isoDate": "2024-01-04T16:47:13.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2024-01-04T16:46:10+00:00", + "title": "Harmony Montgomery\u2019s father seeks to block power tool evidence from murder trial", + "link": "https://www.independent.co.uk/news/world/americas/crime/harmony-montgomery-lime-power-tools-b2473177.html", + "pubDate": "Thu, 04 Jan 2024 16:46:10 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2024-01-04T16:46:10+00:00", + "content": "

Prosecutors believe lime and powertools were allegedly used to conceal Harmony\u2019s body

", + "contentSnippet": "Prosecutors believe lime and powertools were allegedly used to conceal Harmony\u2019s body", + "guid": "b2473177", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T16:46:10.000Z" + }, + { + "creator": "Alexander Butler", + "date": "2024-01-04T16:45:58+00:00", + "title": "Woman, 87, dies after car crashes into fallen tree during Storm Henk", + "link": "https://www.independent.co.uk/news/uk/car-crash-death-storm-henk-fallen-tree-b2473336.html", + "pubDate": "Thu, 04 Jan 2024 16:45:58 GMT", + "dc:creator": "Alexander Butler", + "dc:date": "2024-01-04T16:45:58+00:00", + "content": "

The 87-year-old died after hitting the fallen tree which was reported to police around 90 minutes earlier

", + "contentSnippet": "The 87-year-old died after hitting the fallen tree which was reported to police around 90 minutes earlier", + "guid": "b2473336", + "categories": ["UK"], + "isoDate": "2024-01-04T16:45:58.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-04T16:45:21+00:00", + "title": "Iowa school shooting: Police \u2018still working\u2019 on confirming number of victims", + "link": "https://www.independent.co.uk/tv/news/school-shooting-iowa-perry-victims-b2473347.html", + "pubDate": "Thu, 04 Jan 2024 16:45:21 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-04T16:45:21+00:00", + "content": "

\u201cMultiple\u201d gunshot victims were found by law enforcement officers responding to a shooting at a high school in Iowa on Thursday 4 January.

", + "contentSnippet": "\u201cMultiple\u201d gunshot victims were found by law enforcement officers responding to a shooting at a high school in Iowa on Thursday 4 January.", + "guid": "b2473347", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-04T16:45:21.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-04T16:42:08+00:00", + "title": "Kia EV9, Toyota Prius and Ford Super Duty pickup win 2024 North American SUV, car and truck awards", + "link": "https://www.independent.co.uk/news/ap-kia-ford-toyota-genesis-b2473353.html", + "pubDate": "Thu, 04 Jan 2024 16:42:08 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-04T16:42:08+00:00", + "content": "The Kia EV9 large electric SUV won the 2024 North American Utility of the Year award, while the Toyota Prius hybrid took the top car honors, and Ford\u2019s Super Duty pickup won the truck award", + "contentSnippet": "The Kia EV9 large electric SUV won the 2024 North American Utility of the Year award, while the Toyota Prius hybrid took the top car honors, and Ford\u2019s Super Duty pickup won the truck award", + "guid": "b2473353", + "isoDate": "2024-01-04T16:42:08.000Z" + }, + { + "creator": "Holly Evans", + "date": "2024-01-04T16:39:16+00:00", + "title": "What next for Ghislaine Maxwell now secret Epstein files have been released?", + "link": "https://www.independent.co.uk/news/world/americas/ghislaine-maxwell-jeffrey-epstein-appeal-b2473241.html", + "pubDate": "Thu, 04 Jan 2024 16:39:16 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2024-01-04T16:39:16+00:00", + "content": "

Court documents relating to the British socialite\u2019s paedophile friend Jeffrey Epstein have been made public

", + "contentSnippet": "Court documents relating to the British socialite\u2019s paedophile friend Jeffrey Epstein have been made public", + "guid": "b2473241", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T16:39:16.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-04T16:38:31+00:00", + "title": "Iggy Azalea hints at exit from music industry in social media post", + "link": "https://www.independent.co.uk/tv/culture/iggy-azalea-new-album-twitter-b2473344.html", + "pubDate": "Thu, 04 Jan 2024 16:38:31 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-04T16:38:31+00:00", + "content": "

Iggy Azalea has hinted that she may leave the music industry behind in a new social media post.

", + "contentSnippet": "Iggy Azalea has hinted that she may leave the music industry behind in a new social media post.", + "guid": "b2473344", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-04T16:38:31.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2024-01-04T16:38:08+00:00", + "title": "A New Jersey imam was shot dead in a \u2018senseless\u2019 attack. The killer is a mystery", + "link": "https://www.independent.co.uk/news/world/americas/crime/imam-new-jersey-newark-shooting-b2473082.html", + "pubDate": "Thu, 04 Jan 2024 16:38:08 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2024-01-04T16:38:08+00:00", + "content": "

Imam Hassan Sharif was shot and killed on Wednesday morning. The suspect and the motive for the killing remain unclear, Amelia Neath reports

", + "contentSnippet": "Imam Hassan Sharif was shot and killed on Wednesday morning. The suspect and the motive for the killing remain unclear, Amelia Neath reports", + "guid": "b2473082", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T16:38:08.000Z" + }, + { + "creator": "Ronald Blum", + "date": "2024-01-04T16:37:58+00:00", + "title": "MetLife Stadium to remove 1,740 seats for 2026 World Cup, officials hoping to host final", + "link": "https://www.independent.co.uk/news/fifa-ap-phil-murphy-metlife-new-york-b2473351.html", + "pubDate": "Thu, 04 Jan 2024 16:37:58 GMT", + "dc:creator": "Ronald Blum", + "dc:date": "2024-01-04T16:37:58+00:00", + "content": "MetLife Stadium officials plan to remove 1,740 seats to widen the field for World Cup matches as they hope to host the 2026 final", + "contentSnippet": "MetLife Stadium officials plan to remove 1,740 seats to widen the field for World Cup matches as they hope to host the 2026 final", + "guid": "b2473351", + "isoDate": "2024-01-04T16:37:58.000Z" + }, + { + "creator": "Andrea Blanco and Rachel Sharp", + "date": "2024-01-04T16:37:25+00:00", + "title": "Alan Dershowitz posts 31-minute defence video after Epstein documents unsealed", + "link": "https://www.independent.co.uk/news/world/americas/epstein-list-associates-alan-dershowitz-b2473195.html", + "pubDate": "Thu, 04 Jan 2024 16:37:25 GMT", + "dc:creator": "Andrea Blanco and Rachel Sharp", + "dc:date": "2024-01-04T16:37:25+00:00", + "content": "

Dershowitz issued a 31-minute response titled \u2018The Epstein list and guilty by association\u2019 following the unsealing of 40 Epstein-linked legal filings on Wednesday

", + "contentSnippet": "Dershowitz issued a 31-minute response titled \u2018The Epstein list and guilty by association\u2019 following the unsealing of 40 Epstein-linked legal filings on Wednesday", + "guid": "b2472637", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T16:37:25.000Z" + }, + { + "creator": "The Associated Press", + "date": "2024-01-04T16:35:31+00:00", + "title": "Russia and Ukraine exchange long-range attacks as their front-line forces remain bogged down", + "link": "https://www.independent.co.uk/news/ukraine-ap-russia-kharkiv-crimea-b2473350.html", + "pubDate": "Thu, 04 Jan 2024 16:35:31 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2024-01-04T16:35:31+00:00", + "content": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", + "contentSnippet": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", + "guid": "b2473350", + "isoDate": "2024-01-04T16:35:31.000Z" + }, + { + "creator": "Alex Woodward", + "date": "2024-01-04T16:33:23+00:00", + "title": "Quarter of Americans falsely believe FBI orchestrated January 6, poll finds", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/trump-jan-6-anniversary-fbi-b2473328.html", + "pubDate": "Thu, 04 Jan 2024 16:33:23 GMT", + "dc:creator": "Alex Woodward", + "dc:date": "2024-01-04T16:33:23+00:00", + "content": "

A large share of Trump voters and Fox News viewers continue to believe misinformation and conspiracy theories surrounding the attack, survey finds

", + "contentSnippet": "A large share of Trump voters and Fox News viewers continue to believe misinformation and conspiracy theories surrounding the attack, survey finds", + "guid": "b2473328", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-04T16:33:23.000Z" + }, + { + "creator": "Jane Dalton", + "date": "2024-01-04T16:31:45+00:00", + "title": "Police release pictures of two wanted in connection with Harry Pitman murder", + "link": "https://www.independent.co.uk/news/uk/crime/murder-primrose-hill-harry-pitman-suspect-photo-b2473324.html", + "pubDate": "Thu, 04 Jan 2024 16:31:45 GMT", + "dc:creator": "Jane Dalton", + "dc:date": "2024-01-04T16:31:45+00:00", + "content": "

Detectives want to know identities of pair pictured around time 16-year-old was stabbed

", + "contentSnippet": "Detectives want to know identities of pair pictured around time 16-year-old was stabbed", + "guid": "b2473324", + "categories": ["Crime", "UK"], + "isoDate": "2024-01-04T16:31:45.000Z" + }, + { + "creator": "Samuel Mathewson ", + "date": "2024-01-04T16:31:43+00:00", + "title": "Best men\u2019s winter coats to wrap up warm, from overcoats to puffer jackets", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/mens-clothing/best-winter-coats-men-warmest-b1613600.html", + "pubDate": "Thu, 04 Jan 2024 16:31:43 GMT", + "dc:creator": "Samuel Mathewson ", + "dc:date": "2024-01-04T16:31:43+00:00", + "content": "

Fend off the chill this season with outwear that won\u2019t compromise on style

", + "contentSnippet": "Fend off the chill this season with outwear that won\u2019t compromise on style", + "guid": "b1613600", + "categories": [ + "Men's Clothing", + "Fashion & Beauty", + "IndyBest", + "Extras" + ], + "isoDate": "2024-01-04T16:31:43.000Z" + }, + { + "creator": "Mike Catalini", + "date": "2024-01-04T16:31:21+00:00", + "title": "New Jersey police seek killer of a Muslim cleric outside Newark mosque", + "link": "https://www.independent.co.uk/news/ap-muslim-new-jersey-council-on-americanislamic-relations-hamas-b2473346.html", + "pubDate": "Thu, 04 Jan 2024 16:31:21 GMT", + "dc:creator": "Mike Catalini", + "dc:date": "2024-01-04T16:31:21+00:00", + "content": "Police in New Jersey are hunting for the killer of a Muslim cleric who was shot outside his mosque", + "contentSnippet": "Police in New Jersey are hunting for the killer of a Muslim cleric who was shot outside his mosque", + "guid": "b2473346", + "isoDate": "2024-01-04T16:31:21.000Z" + }, + { + "creator": "Zoe Griffin", + "date": "2024-01-04T16:30:37+00:00", + "title": "Best cordless vacuum cleaners for hassle-free hoovering, from Shark to Dyson ", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/vacuum-cleaners/best-cordless-vacuum-cleaner-uk-b2101754.html", + "pubDate": "Thu, 04 Jan 2024 16:30:37 GMT", + "dc:creator": "Zoe Griffin", + "dc:date": "2024-01-04T16:30:37+00:00", + "content": "

Simplify chores with these lightweight cordless vacuums that perform just as well as their corded counterparts

", + "contentSnippet": "Simplify chores with these lightweight cordless vacuums that perform just as well as their corded counterparts", + "guid": "b2101754", + "categories": [ + "Vacuum Cleaners", + "Home & Garden", + "IndyBest", + "Extras" + ], + "isoDate": "2024-01-04T16:30:37.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-04T16:27:12+00:00", + "title": "Britney Spears shoots down album rumors, vowing to 'never return to the music industry'", + "link": "https://www.independent.co.uk/news/britney-spears-ap-instagram-los-angeles-salome-b2473343.html", + "pubDate": "Thu, 04 Jan 2024 16:27:12 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-04T16:27:12+00:00", + "content": "Britney Spears is shooting down rumors of a new album, vowing to \u201cnever return to the music industry.\u201d", + "contentSnippet": "Britney Spears is shooting down rumors of a new album, vowing to \u201cnever return to the music industry.\u201d", + "guid": "b2473343", + "isoDate": "2024-01-04T16:27:12.000Z" + }, + { + "creator": "Jane Dalton", + "date": "2024-01-04T16:25:07+00:00", + "title": "TV fitness guru Jody Bunting arrested for \u2018attempted murder\u2019 after colleague\u2019s allergic reaction to chocolate", + "link": "https://www.independent.co.uk/news/uk/crime/jody-bunting-arrest-attempted-murder-b2472769.html", + "pubDate": "Thu, 04 Jan 2024 16:25:07 GMT", + "dc:creator": "Jane Dalton", + "dc:date": "2024-01-04T16:25:07+00:00", + "content": "

Bunting, who presented the \u2018Lose it with Jody\u2019 feature on Channel 4\u2019s\u00a0The Big Breakfast , says co-worker was treated in intensive care

", + "contentSnippet": "Bunting, who presented the \u2018Lose it with Jody\u2019 feature on Channel 4\u2019s\u00a0The Big Breakfast , says co-worker was treated in intensive care", + "guid": "b2472769", + "categories": ["Crime", "UK"], + "isoDate": "2024-01-04T16:25:07.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2024-01-04T16:22:11+00:00", + "title": "Trainee prison officers \u2018encouraged to be more violent\u2019 in sexist graduate scheme that sees a third drop out", + "link": "https://www.independent.co.uk/news/uk/home-news/unlocked-prison-officer-trainee-complaints-b2464216.html", + "pubDate": "Thu, 04 Jan 2024 16:22:11 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2024-01-04T16:22:11+00:00", + "content": "

Exclusive: Women hired as prison officers through a university graduate programme claim a boys\u2019 club of male officers made their lives hell

", + "contentSnippet": "Exclusive: Women hired as prison officers through a university graduate programme claim a boys\u2019 club of male officers made their lives hell", + "guid": "b2464216", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-04T16:22:11.000Z" + }, + { + "creator": "Kim Sengupta", + "date": "2024-01-04T16:20:42+00:00", + "title": "Taiwan\u2019s Matsu Islands prepare for a possible China invasion: \u2018I don\u2019t want to die, but we have to fight\u2019", + "link": "https://www.independent.co.uk/asia/china-taiwan-invasion-army-matsu-b2473217.html", + "pubDate": "Thu, 04 Jan 2024 16:20:42 GMT", + "dc:creator": "Kim Sengupta", + "dc:date": "2024-01-04T16:20:42+00:00", + "content": "

Beijing has been ramping up military pressure on Taiwan ahead of crucial elections next week. On the Matsu Islands \u2013 which would be the first line of defence if an attack were launched \u2013 Kim Sengupta speaks to soldiers and civilians preparing for China to make good on its threats to take control of the nation

", + "contentSnippet": "Beijing has been ramping up military pressure on Taiwan ahead of crucial elections next week. On the Matsu Islands \u2013 which would be the first line of defence if an attack were launched \u2013 Kim Sengupta speaks to soldiers and civilians preparing for China to make good on its threats to take control of the nation", + "guid": "b2473217", + "categories": ["Asia"], + "isoDate": "2024-01-04T16:20:42.000Z" + }, + { + "creator": "Harajah Nalwadda", + "date": "2024-01-04T16:20:22+00:00", + "title": "Uganda gay activist blames knife attack on a worsening climate of intolerance", + "link": "https://www.independent.co.uk/news/ap-lgbtq-uganda-yoweri-museveni-kenya-b2473340.html", + "pubDate": "Thu, 04 Jan 2024 16:20:22 GMT", + "dc:creator": "Harajah Nalwadda", + "dc:date": "2024-01-04T16:20:22+00:00", + "content": "A well-known gay rights activist in Uganda who was stabbed by unknown assailants this week is attributing the attack to what he describes as a growing intolerance of the LGBTQ+ community fueled by politicians", + "contentSnippet": "A well-known gay rights activist in Uganda who was stabbed by unknown assailants this week is attributing the attack to what he describes as a growing intolerance of the LGBTQ+ community fueled by politicians", + "guid": "b2473340", + "isoDate": "2024-01-04T16:20:22.000Z" + }, + { + "creator": "Jabed Ahmed", + "date": "2024-01-04T16:18:04+00:00", + "title": "Next warns of stock shortages if Red Sea shipping problems continue", + "link": "https://www.independent.co.uk/news/uk/home-news/next-red-sea-stock-shortages-b2473320.html", + "pubDate": "Thu, 04 Jan 2024 16:18:04 GMT", + "dc:creator": "Jabed Ahmed", + "dc:date": "2024-01-04T16:18:04+00:00", + "content": "

Next boss warns extra two and a half weeks must be added to stock delivery times for products coming through Suez Canal

", + "contentSnippet": "Next boss warns extra two and a half weeks must be added to stock delivery times for products coming through Suez Canal", + "guid": "b2473320", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-04T16:18:04.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-04T16:17:50+00:00", + "title": "Travis Kelce opens up on New Year\u2019s Eve spent with Taylor Swift", + "link": "https://www.independent.co.uk/tv/lifestyle/taylor-swift-travis-kelce-nye-b2473329.html", + "pubDate": "Thu, 04 Jan 2024 16:17:50 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-04T16:17:50+00:00", + "content": "

Travis Kelce has shared details of his New Year's Eve celebrations with Taylor Swift.

", + "contentSnippet": "Travis Kelce has shared details of his New Year's Eve celebrations with Taylor Swift.", + "guid": "b2473329", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-04T16:17:50.000Z" + }, + { + "creator": "Joe Sommerlad", + "date": "2024-01-04T16:16:41+00:00", + "title": "Mark Meadows makes latest bid to move Trump trial from Georgia to federal court", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/mark-meadows-trump-georgia-trial-b2473191.html", + "pubDate": "Thu, 04 Jan 2024 16:16:41 GMT", + "dc:creator": "Joe Sommerlad", + "dc:date": "2024-01-04T16:16:41+00:00", + "content": "

Former congressman trying to shift case in hope of invoking immunity defence to protect actions carried out in line of duty as president\u2019s aide

", + "contentSnippet": "Former congressman trying to shift case in hope of invoking immunity defence to protect actions carried out in line of duty as president\u2019s aide", + "guid": "b2473191", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-04T16:16:41.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-04T16:14:26+00:00", + "title": "Charlotte Brown\u2019s father urges daughter\u2019s killer to tell truth about speedboat death", + "link": "https://www.independent.co.uk/tv/news/charlotte-brown-jack-shepherd-speedboat-death-b2473091.html", + "pubDate": "Thu, 04 Jan 2024 16:14:26 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-04T16:14:26+00:00", + "content": "

The father of Charlotte Brown, who died after she was flung from a speedboat on the River Thames, says he wants to know exactly what happened on the night of his daughter\u2019s death.

", + "contentSnippet": "The father of Charlotte Brown, who died after she was flung from a speedboat on the River Thames, says he wants to know exactly what happened on the night of his daughter\u2019s death.", + "guid": "b2473091", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-04T16:14:26.000Z" + }, + { + "creator": "Miguel Delaney", + "date": "2024-01-04T16:08:03+00:00", + "title": "Crystal Palace told price for Peterborough wonderkid Ronnie Edwards", + "link": "https://www.independent.co.uk/sport/football/crystal-palace-transfer-ronnie-edwards-peterborough-b2473313.html", + "pubDate": "Thu, 04 Jan 2024 16:08:03 GMT", + "dc:creator": "Miguel Delaney", + "dc:date": "2024-01-04T16:08:03+00:00", + "content": "

Edwards, 20, has become one of League One\u2019s most sought-after players and has starred for England\u2019s youth sides

", + "contentSnippet": "Edwards, 20, has become one of League One\u2019s most sought-after players and has starred for England\u2019s youth sides", + "guid": "b2473313", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T16:08:03.000Z" + }, + { + "creator": "Rachel Sharp", + "date": "2024-01-04T16:06:09+00:00", + "title": "Donald Trump Jr mocked for celebratory response to Epstein document drop", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/donald-trump-jr-epstein-list-b2473279.html", + "pubDate": "Thu, 04 Jan 2024 16:06:09 GMT", + "dc:creator": "Rachel Sharp", + "dc:date": "2024-01-04T16:06:09+00:00", + "content": "

Social media users were quick to school Don Jr about the contents of the records \u2013 which featured his father\u2019s name four times

", + "contentSnippet": "Social media users were quick to school Don Jr about the contents of the records \u2013 which featured his father\u2019s name four times", + "guid": "b2473279", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-04T16:06:09.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2024-01-04T16:01:39+00:00", + "title": "Mountain rescue team blames Instagram tourists taking beauty spot selfies for record callouts", + "link": "https://www.independent.co.uk/news/uk/home-news/instagram-tourists-mountain-rescue-call-outs-b2473274.html", + "pubDate": "Thu, 04 Jan 2024 16:01:39 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2024-01-04T16:01:39+00:00", + "content": "

Mountain rescue teams operating in the Lake District, Snowdon and Ben Nevis have all seen demand spike over the past 12 months

", + "contentSnippet": "Mountain rescue teams operating in the Lake District, Snowdon and Ben Nevis have all seen demand spike over the past 12 months", + "guid": "b2473274", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-04T16:01:39.000Z" + }, + { + "creator": "The Associated Press", + "date": "2024-01-04T16:00:46+00:00", + "title": "Live updates | Hamas loses a leader in Lebanon but holds on in Gaza", + "link": "https://www.independent.co.uk/news/ap-mike-pence-hamas-beirut-lebanon-b2473323.html", + "pubDate": "Thu, 04 Jan 2024 16:00:46 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2024-01-04T16:00:46+00:00", + "content": "Israel appears far from achieving its goals of crushing Hamas and freeing an estimated 129 hostages still held in Gaza nearly three months after the group\u2019s surprise cross-border attack and the Israeli government\u2019s declaration of war", + "contentSnippet": "Israel appears far from achieving its goals of crushing Hamas and freeing an estimated 129 hostages still held in Gaza nearly three months after the group\u2019s surprise cross-border attack and the Israeli government\u2019s declaration of war", + "guid": "b2473323", + "isoDate": "2024-01-04T16:00:46.000Z" + }, + { + "creator": "Nina Massey", + "date": "2024-01-04T16:00:00+00:00", + "title": "Study reveals genetic link between anorexia and being an early riser", + "link": "https://www.independent.co.uk/news/science/study-people-usa-experts-harvard-medical-school-b2473317.html", + "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", + "dc:creator": "Nina Massey", + "dc:date": "2024-01-04T16:00:00+00:00", + "content": "People with the eating disorder often wake early and experience insomnia, the researchers found.", + "contentSnippet": "People with the eating disorder often wake early and experience insomnia, the researchers found.", + "guid": "b2473317", + "categories": ["Science"], + "isoDate": "2024-01-04T16:00:00.000Z" + }, + { + "creator": "Clarisse Loughrey", + "date": "2024-01-04T16:00:00+00:00", + "title": "One Life review: Anthony Hopkins\u2019 performance as the That\u2019s Life! hero is better than the film that surrounds him", + "link": "https://www.independent.co.uk/arts-entertainment/films/reviews/one-life-review-nicholas-winton-b2472629.html", + "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", + "dc:creator": "Clarisse Loughrey", + "dc:date": "2024-01-04T16:00:00+00:00", + "content": "

The actor recreates Sir Nicholas Winton\u2019s famous chat show appearance \u2013 but this flashback-heavy tale of the British humanitarian who facilitated the rescue of 669 Jewish children otherwise struggles

", + "contentSnippet": "The actor recreates Sir Nicholas Winton\u2019s famous chat show appearance \u2013 but this flashback-heavy tale of the British humanitarian who facilitated the rescue of 669 Jewish children otherwise struggles", + "guid": "b2472629", + "categories": ["Reviews", "Film", "Culture"], + "isoDate": "2024-01-04T16:00:00.000Z" + }, + { + "creator": "Storm Newton", + "date": "2024-01-04T16:00:00+00:00", + "title": "Hearing aid use linked to lower dementia risk, study suggests", + "link": "https://www.independent.co.uk/news/health/research-hearing-loss-denmark-government-university-college-london-b2473316.html", + "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", + "dc:creator": "Storm Newton", + "dc:date": "2024-01-04T16:00:00+00:00", + "content": "Research was carried out in Denmark from 2003 to 2017 and included more than 500,000 people.", + "contentSnippet": "Research was carried out in Denmark from 2003 to 2017 and included more than 500,000 people.", + "guid": "b2473316", + "categories": ["Health"], + "isoDate": "2024-01-04T16:00:00.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2024-01-04T15:59:24+00:00", + "title": "Hundreds of Russian soldiers surrender to Ukraine using \u2018I want to live\u2019 hotline ", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-russia-surrender-hotline-b2473198.html", + "pubDate": "Thu, 04 Jan 2024 15:59:24 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2024-01-04T15:59:24+00:00", + "content": "

Roughly three Russian soldiers surrendering every week through hotline

", + "contentSnippet": "Roughly three Russian soldiers surrendering every week through hotline", + "guid": "b2473198", + "categories": ["Europe", "World"], + "isoDate": "2024-01-04T15:59:24.000Z" + }, + { + "creator": "George Sessions", + "date": "2024-01-04T15:58:40+00:00", + "title": "Ange Postecoglou pays tribute after death of Tottenham fan Harry Pitman", + "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-london-camden-primrose-hill-b2473315.html", + "pubDate": "Thu, 04 Jan 2024 15:58:40 GMT", + "dc:creator": "George Sessions", + "dc:date": "2024-01-04T15:58:40+00:00", + "content": "Spurs supporter Pitman was killed at a firework display in north London on New Year\u2019s Eve.", + "contentSnippet": "Spurs supporter Pitman was killed at a firework display in north London on New Year\u2019s Eve.", + "guid": "b2473315", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T15:58:40.000Z" + }, + { + "creator": "Amy-Clare Martin", + "date": "2024-01-04T15:57:43+00:00", + "title": "Sentencing delayed for depraved Glasgow child abuse ring who held rape nights", + "link": "https://www.independent.co.uk/news/uk/crime/glasgow-child-abuse-ring-court-trial-b2473231.html", + "pubDate": "Thu, 04 Jan 2024 15:57:43 GMT", + "dc:creator": "Amy-Clare Martin", + "dc:date": "2024-01-04T15:57:43+00:00", + "content": "

One child was forced to dance before being raped while group members clapped and cheered, the court heard

", + "contentSnippet": "One child was forced to dance before being raped while group members clapped and cheered, the court heard", + "guid": "b2473231", + "categories": ["Crime", "UK"], + "isoDate": "2024-01-04T15:57:43.000Z" + }, + { + "creator": "Kaleigh Werner", + "date": "2024-01-04T15:56:25+00:00", + "title": "Is ClassPass worth it? Why I\u2019ll never go back to regular gym memberships", + "link": "https://www.independent.co.uk/life-style/health-and-families/class-pass-fitness-review-b2471018.html", + "pubDate": "Thu, 04 Jan 2024 15:56:25 GMT", + "dc:creator": "Kaleigh Werner", + "dc:date": "2024-01-04T15:56:25+00:00", + "content": "

If you\u2019re having trouble deciding what health club membership is right for you, stop questioning and try Class Pass. After signing up for a two-week free trial, Kaleigh Werner says she will never join a gym again

", + "contentSnippet": "If you\u2019re having trouble deciding what health club membership is right for you, stop questioning and try Class Pass. After signing up for a two-week free trial, Kaleigh Werner says she will never join a gym again", + "guid": "b2471018", + "categories": ["Health & Families", "Lifestyle"], + "isoDate": "2024-01-04T15:56:25.000Z" + }, + { + "creator": "Adam Forrest", + "date": "2024-01-04T15:56:09+00:00", + "title": "Post-Brexit subsidy scheme leaves UK farmers \u2018hugely frustrated\u2019", + "link": "https://www.independent.co.uk/climate-change/news/brexit-farming-subsidies-uk-barclay-b2473257.html", + "pubDate": "Thu, 04 Jan 2024 15:56:09 GMT", + "dc:creator": "Adam Forrest", + "dc:date": "2024-01-04T15:56:09+00:00", + "content": "

Environment secretary Steve Barclay sets out long-awaited plan to replace EU agricultural payments

", + "contentSnippet": "Environment secretary Steve Barclay sets out long-awaited plan to replace EU agricultural payments", + "guid": "b2473257", + "categories": ["News", "Climate"], + "isoDate": "2024-01-04T15:56:09.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-04T15:56:02+00:00", + "title": "Huge funnel spider to be milked for \u2018life-saving anti-venom\u2019", + "link": "https://www.independent.co.uk/tv/lifestyle/australia-spider-venom-reptile-park-b2473298.html", + "pubDate": "Thu, 04 Jan 2024 15:56:02 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-04T15:56:02+00:00", + "content": "

A huge funnel-web spider has been handed into the Australian Reptile Park - where it will be milked for \u201clife-saving anti-venom\u201d.

", + "contentSnippet": "A huge funnel-web spider has been handed into the Australian Reptile Park - where it will be milked for \u201clife-saving anti-venom\u201d.", + "guid": "b2473298", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-04T15:56:02.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2024-01-04T15:54:51+00:00", + "title": "Key takeaways from the new Epstein documents", + "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-documents-takeaways-b2472990.html", + "pubDate": "Thu, 04 Jan 2024 15:54:51 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2024-01-04T15:54:51+00:00", + "content": "

More documents are expected to be unsealed in the coming weeks

", + "contentSnippet": "More documents are expected to be unsealed in the coming weeks", + "guid": "b2472990", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T15:54:51.000Z" + }, + { + "creator": "Inga Parkel", + "date": "2024-01-04T15:53:13+00:00", + "title": "Dionne Warwick blasts \u2018ridiculous\u2019 RFK Jr fundraiser report: \u2018At least lie about something cool\u2019", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/dionne-warwick-rfk-jr-campaign-b2473253.html", + "pubDate": "Thu, 04 Jan 2024 15:53:13 GMT", + "dc:creator": "Inga Parkel", + "dc:date": "2024-01-04T15:53:13+00:00", + "content": "

Singer and actor said she doesn\u2019t know anything about event and \u2018certainly won\u2019t be there\u2019

", + "contentSnippet": "Singer and actor said she doesn\u2019t know anything about event and \u2018certainly won\u2019t be there\u2019", + "guid": "b2473253", + "categories": ["News", "Music", "Culture"], + "isoDate": "2024-01-04T15:53:13.000Z" + }, + { + "creator": "Simon Calder", + "date": "2024-01-04T15:51:03+00:00", + "title": "Ask Simon Calder anything as Tube strikes set to bring London Underground to a halt", + "link": "https://www.independent.co.uk/travel/rail-travel/tube-strikes-tfl-underground-questions-b2473238.html", + "pubDate": "Thu, 04 Jan 2024 15:51:03 GMT", + "dc:creator": "Simon Calder", + "dc:date": "2024-01-04T15:51:03+00:00", + "content": "

The Independent\u2019s travel correspondent Simon Calder is on hand to help you navigate next week\u2019s TfL commuter chaos

", + "contentSnippet": "The Independent\u2019s travel correspondent Simon Calder is on hand to help you navigate next week\u2019s TfL commuter chaos", + "guid": "b2473238", + "categories": ["Rail Travel", "Travel"], + "isoDate": "2024-01-04T15:51:03.000Z" + }, + { + "creator": "Alex Ross", + "date": "2024-01-04T15:49:26+00:00", + "title": "The Epstein List: Full list of names revealed in unsealed court records so far", + "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-maxwell-prince-andrew-b2473096.html", + "pubDate": "Thu, 04 Jan 2024 15:49:26 GMT", + "dc:creator": "Alex Ross", + "dc:date": "2024-01-04T15:49:26+00:00", + "content": "

Prince Andrew, David Copperfield and Bill Clinton are among the names included in court documents published

", + "contentSnippet": "Prince Andrew, David Copperfield and Bill Clinton are among the names included in court documents published", + "guid": "b2473096", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T15:49:26.000Z" + }, + { + "creator": "Reuben Rosso-Powell", + "date": "2024-01-04T15:44:03+00:00", + "title": "Luke Littler reflects on fateful moment he missed double two in final showdown", + "link": "https://www.independent.co.uk/sport/luke-littler-luke-humphries-bray-warrington-jonny-evans-b2473307.html", + "pubDate": "Thu, 04 Jan 2024 15:44:03 GMT", + "dc:creator": "Reuben Rosso-Powell", + "dc:date": "2024-01-04T15:44:03+00:00", + "content": "Sixteen-year-old debutant Littler lost 7-4 to world number one Luke Humphries.", + "contentSnippet": "Sixteen-year-old debutant Littler lost 7-4 to world number one Luke Humphries.", + "guid": "b2473307", + "categories": ["Sport"], + "isoDate": "2024-01-04T15:44:03.000Z" + }, + { + "creator": "Lauren Cunningham", + "date": "2024-01-04T15:36:33+00:00", + "title": "This Bed of Nails mat helped relieve my back pain and makes me sleep more soundly", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/beauty/bed-of-nails-acupressure-mat-review-amazon-b2473147.html", + "pubDate": "Thu, 04 Jan 2024 15:36:33 GMT", + "dc:creator": "Lauren Cunningham", + "dc:date": "2024-01-04T15:36:33+00:00", + "content": "

The acupressure mat is touted as relieving headaches, stress, muscle tension and much more

", + "contentSnippet": "The acupressure mat is touted as relieving headaches, stress, muscle tension and much more", + "guid": "b2473147", + "categories": ["Beauty", "Fashion & Beauty", "IndyBest", "Extras"], + "isoDate": "2024-01-04T15:36:33.000Z" + }, + { + "creator": "Miguel Delaney", + "date": "2024-01-04T15:33:35+00:00", + "title": "Brentford set huge Ivan Toney transfer price as Arsenal and Chelsea consider player sales", + "link": "https://www.independent.co.uk/sport/football/ivan-toney-arsenal-transfer-latest-brentford-b2473272.html", + "pubDate": "Thu, 04 Jan 2024 15:33:35 GMT", + "dc:creator": "Miguel Delaney", + "dc:date": "2024-01-04T15:33:35+00:00", + "content": "

It is understood both Arsenal and Chelsea would need to sell players first in order to meet Brentford\u2019s \u00a3100m asking price

", + "contentSnippet": "It is understood both Arsenal and Chelsea would need to sell players first in order to meet Brentford\u2019s \u00a3100m asking price", + "guid": "b2473272", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T15:33:35.000Z" + }, + { + "creator": "Andrew Griffin", + "date": "2024-01-04T15:33:32+00:00", + "title": "Twitch bans streamers from tricking users into thinking they are naked", + "link": "https://www.independent.co.uk/tech/twitch-rules-nudity-sexual-content-policies-update-b2473164.html", + "pubDate": "Thu, 04 Jan 2024 15:33:32 GMT", + "dc:creator": "Andrew Griffin", + "dc:date": "2024-01-04T15:33:32+00:00", + "content": "

Rules on sexual content and nudity have been in flux for weeks

", + "contentSnippet": "Rules on sexual content and nudity have been in flux for weeks", + "guid": "b2473164", + "categories": ["Tech"], + "isoDate": "2024-01-04T15:33:32.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-04T15:29:46+00:00", + "title": "Watch: Law enforcement responds to Iowa school shooting", + "link": "https://www.independent.co.uk/news/world/americas/iowa-shooting-school-perry-b2473289.html", + "pubDate": "Thu, 04 Jan 2024 15:29:46 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-04T15:29:46+00:00", + "content": "

Watch from the scene of a school in Perry, Iowa, where law enforcement responded to reports of a shooting.

", + "contentSnippet": "Watch from the scene of a school in Perry, Iowa, where law enforcement responded to reports of a shooting.", + "guid": "b2473289", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T15:29:46.000Z" + }, + { + "creator": "Emily Goddard", + "date": "2024-01-04T15:29:06+00:00", + "title": "6 best vitamin D supplements to help boost your health and immunity", + "link": "https://www.independent.co.uk/extras/indybest/food-drink/best-vitamin-d-supplement-uk-b2004002.html", + "pubDate": "Thu, 04 Jan 2024 15:29:06 GMT", + "dc:creator": "Emily Goddard", + "dc:date": "2024-01-04T15:29:06+00:00", + "content": "

Top up on the \u2018sunshine vitamin\u2019 this winter and beyond with our top tablets, sweets and sprays

", + "contentSnippet": "Top up on the \u2018sunshine vitamin\u2019 this winter and beyond with our top tablets, sweets and sprays", + "guid": "b2004002", + "categories": ["Food & Drink", "IndyBest", "Extras"], + "isoDate": "2024-01-04T15:29:06.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2024-01-04T15:28:59+00:00", + "title": "Tube strikes: What is the dispute between RMT union and TfL?", + "link": "https://www.independent.co.uk/news/uk/home-news/tube-strikes-rmt-tfl-talks-pay-dispute-b2473111.html", + "pubDate": "Thu, 04 Jan 2024 15:28:59 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2024-01-04T15:28:59+00:00", + "content": "

Tube services face severe disruption next week as RMT workers stage huge walkout

", + "contentSnippet": "Tube services face severe disruption next week as RMT workers stage huge walkout", + "guid": "b2473111", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-04T15:28:59.000Z" + }, + { + "creator": "Mari Yamaguchi", + "date": "2024-01-04T15:28:34+00:00", + "title": "The key question about fiery crash at Tokyo airport: Did one or both planes have OK to use runway?", + "link": "https://www.independent.co.uk/news/ap-tokyo-passengers-sapporo-japan-airlines-b2473295.html", + "pubDate": "Thu, 04 Jan 2024 15:28:34 GMT", + "dc:creator": "Mari Yamaguchi", + "dc:date": "2024-01-04T15:28:34+00:00", + "content": "Passengers on Japan Airlines Flight 516 were buckled up as their pilot made a final approach to Tokyo\u2019s Haneda Airport", + "contentSnippet": "Passengers on Japan Airlines Flight 516 were buckled up as their pilot made a final approach to Tokyo\u2019s Haneda Airport", + "guid": "b2473295", + "isoDate": "2024-01-04T15:28:34.000Z" + }, + { + "creator": "Kaleigh Werner", + "date": "2024-01-04T15:22:38+00:00", + "title": "Prince Gyasi\u2019s 2024 Pirelli Calendar wraps timeless artistry with community notes", + "link": "https://www.independent.co.uk/life-style/fashion/pirelli-calendar-2024-prince-gyasi-b2472796.html", + "pubDate": "Thu, 04 Jan 2024 15:22:38 GMT", + "dc:creator": "Kaleigh Werner", + "dc:date": "2024-01-04T15:22:38+00:00", + "content": "

From international supermodel Naomi Campbell, His Majesty Otumfuo Osei Tutu II, to renowned actor Idris Elba, and revolutionary producer Jeymes Samuel, this year\u2019s Pirelli Calendar featured leaders, inventors, writers, and icons through the lens of photographer Prince Gyasi, Kaleigh Werner writes

", + "contentSnippet": "From international supermodel Naomi Campbell, His Majesty Otumfuo Osei Tutu II, to renowned actor Idris Elba, and revolutionary producer Jeymes Samuel, this year\u2019s Pirelli Calendar featured leaders, inventors, writers, and icons through the lens of photographer Prince Gyasi, Kaleigh Werner writes", + "guid": "b2472796", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2024-01-04T15:22:38.000Z" + }, + { + "creator": "Holly Bancroft", + "date": "2024-01-04T15:21:11+00:00", + "title": "Rishi Sunak\u2019s claim to have cleared the asylum backlog labelled \u2018misleading\u2019 by factchecker", + "link": "https://www.independent.co.uk/news/uk/home-news/rishi-sunak-asylum-backlog-fact-check-b2473124.html", + "pubDate": "Thu, 04 Jan 2024 15:21:11 GMT", + "dc:creator": "Holly Bancroft", + "dc:date": "2024-01-04T15:21:11+00:00", + "content": "

Statistics watchdog, the Office for Statistics Regulation, are also probing the PM\u2019s claims

", + "contentSnippet": "Statistics watchdog, the Office for Statistics Regulation, are also probing the PM\u2019s claims", + "guid": "b2473124", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-04T15:21:11.000Z" + }, + { + "creator": "Eleanor Crooks", + "date": "2024-01-04T15:15:56+00:00", + "title": "Rafael Nadal wins again on return from injury in Brisbane", + "link": "https://www.independent.co.uk/sport/tennis/rafael-nadal-brisbane-australian-grigor-dimitrov-dominic-thiem-b2473222.html", + "pubDate": "Thu, 04 Jan 2024 15:15:56 GMT", + "dc:creator": "Eleanor Crooks", + "dc:date": "2024-01-04T15:15:56+00:00", + "content": "The Spaniard defeated his Australian opponent 6-1 6-2 to reach the quarter-finals of his comeback event.", + "contentSnippet": "The Spaniard defeated his Australian opponent 6-1 6-2 to reach the quarter-finals of his comeback event.", + "guid": "b2473222", + "categories": ["Tennis", "Sport"], + "isoDate": "2024-01-04T15:15:56.000Z" + }, + { + "creator": "Anthony Cuthbertson", + "date": "2024-01-04T15:14:05+00:00", + "title": "Solar panel breakthrough harnesses wasted light to boost efficiency", + "link": "https://www.independent.co.uk/tech/solar-panel-efficiency-renewable-energy-b2473236.html", + "pubDate": "Thu, 04 Jan 2024 15:14:05 GMT", + "dc:creator": "Anthony Cuthbertson", + "dc:date": "2024-01-04T15:14:05+00:00", + "content": "

Transparent layer converts UV to visible light, while also providing protection for the solar cell

", + "contentSnippet": "Transparent layer converts UV to visible light, while also providing protection for the solar cell", + "guid": "b2473236", + "categories": ["Tech"], + "isoDate": "2024-01-04T15:14:05.000Z" + }, + { + "creator": "Duncan Bech", + "date": "2024-01-04T15:14:05+00:00", + "title": "Kevin Sinfield to step away from England set-up after summer tour", + "link": "https://www.independent.co.uk/sport/rugby/rugby-union/kevin-sinfield-england-coach-rugby-b2473275.html", + "pubDate": "Thu, 04 Jan 2024 15:14:05 GMT", + "dc:creator": "Duncan Bech", + "dc:date": "2024-01-04T15:14:05+00:00", + "content": "

Sinfield has overseen the defence since his appointment by Borthwick in December 2022, but the former Leeds rugby league great has decided to move on

", + "contentSnippet": "Sinfield has overseen the defence since his appointment by Borthwick in December 2022, but the former Leeds rugby league great has decided to move on", + "guid": "b2473250", + "categories": ["Rugby Union", "Rugby", "Sport"], + "isoDate": "2024-01-04T15:14:05.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-04T15:10:42+00:00", + "title": "Inspiration for ITV drama Alan Bates denounces Paula Vennells for keeping CBE", + "link": "https://www.independent.co.uk/tv/culture/alan-bates-post-office-paula-vennells-b2473273.html", + "pubDate": "Thu, 04 Jan 2024 15:10:42 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-04T15:10:42+00:00", + "content": "

The real-life Alan Bates, who inspired Mr Bates vs The Post Office, has slammed Paula Vennells for keeping her CBE (3 January).

", + "contentSnippet": "The real-life Alan Bates, who inspired Mr Bates vs The Post Office, has slammed Paula Vennells for keeping her CBE (3 January).", + "guid": "b2473273", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-04T15:10:42.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-04T15:08:36+00:00", + "title": "Police say there has been a shooting at a high school in Perry, Iowa; extent of injuries unclear", + "link": "https://www.independent.co.uk/news/ap-police-iowa-des-moines-b2473277.html", + "pubDate": "Thu, 04 Jan 2024 15:08:36 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-04T15:08:36+00:00", + "content": "Police say there has been a shooting at a high school in Perry, Iowa", + "contentSnippet": "Police say there has been a shooting at a high school in Perry, Iowa", + "guid": "b2473277", + "isoDate": "2024-01-04T15:08:36.000Z" + }, + { + "creator": "Oliver O'Connell", + "date": "2024-01-04T15:05:38+00:00", + "title": "Chris Christie admits endorsing Trump in 2016 was a mistake", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/trump-2024-chris-christie-endorsement-b2473261.html", + "pubDate": "Thu, 04 Jan 2024 15:05:38 GMT", + "dc:creator": "Oliver O'Connell", + "dc:date": "2024-01-04T15:05:38+00:00", + "content": "

Former New Jersey governor was once an ally of Trump, but no more...

", + "contentSnippet": "Former New Jersey governor was once an ally of Trump, but no more...", + "guid": "b2473261", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-04T15:05:38.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-04T15:02:55+00:00", + "title": "Boots website sees \u2018biggest ever month of sales in November\u2019", + "link": "https://www.independent.co.uk/business/boots-website-sees-biggest-ever-month-of-sales-in-november-b2473223.html", + "pubDate": "Thu, 04 Jan 2024 15:02:55 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-04T15:02:55+00:00", + "content": "The company said footfall to its shops had also increased in the most recent quarter.", + "contentSnippet": "The company said footfall to its shops had also increased in the most recent quarter.", + "guid": "b2473223", + "categories": ["Business"], + "isoDate": "2024-01-04T15:02:55.000Z" + }, + { + "creator": "Brittany Miller", + "date": "2024-01-04T15:02:47+00:00", + "title": "Former teacher calls out parents for being \u2018in denial\u2019 about their children\u2019s academic skills", + "link": "https://www.independent.co.uk/life-style/teacher-parents-children-academics-tiktok-b2472901.html", + "pubDate": "Thu, 04 Jan 2024 15:02:47 GMT", + "dc:creator": "Brittany Miller", + "dc:date": "2024-01-04T15:02:47+00:00", + "content": "

\u2018You can\u2019t tell me you can\u2019t read to the kid. It takes 10 minutes to read to the kid,\u2019 former teacher says

", + "contentSnippet": "\u2018You can\u2019t tell me you can\u2019t read to the kid. It takes 10 minutes to read to the kid,\u2019 former teacher says", + "guid": "b2472901", + "categories": ["Lifestyle"], + "isoDate": "2024-01-04T15:02:47.000Z" + }, + { + "creator": "Fadi Tawil and Bassem Mroue", + "date": "2024-01-04T15:00:33+00:00", + "title": "Thousands attend the funeral of a top Hamas official killed in an apparent Israeli strike in Beirut", + "link": "https://www.independent.co.uk/news/ap-hamas-israeli-gaza-ismail-haniyeh-b2473271.html", + "pubDate": "Thu, 04 Jan 2024 15:00:33 GMT", + "dc:creator": "Fadi Tawil and Bassem Mroue", + "dc:date": "2024-01-04T15:00:33+00:00", + "content": "Thousands of people took to the streets of Beirut for the funeral of a top Hamas commander, Saleh Arouri, who was killed earlier this week in an apparent Israeli airstrike in the Lebanese capital", + "contentSnippet": "Thousands of people took to the streets of Beirut for the funeral of a top Hamas commander, Saleh Arouri, who was killed earlier this week in an apparent Israeli airstrike in the Lebanese capital", + "guid": "b2473271", + "isoDate": "2024-01-04T15:00:33.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-04T14:58:35+00:00", + "title": "\u2018Not so athletic\u2019 burglar ninja rolls through glass door during theft", + "link": "https://www.independent.co.uk/tv/news/rolling-burglar-salinas-california-b2473267.html", + "pubDate": "Thu, 04 Jan 2024 14:58:35 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-04T14:58:35+00:00", + "content": "

A burglar who stole hundreds of dollars worth from a store was caught on camera breaking in with a unique style.

", + "contentSnippet": "A burglar who stole hundreds of dollars worth from a store was caught on camera breaking in with a unique style.", + "guid": "b2473267", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-04T14:58:35.000Z" + }, + { + "creator": "Terry Tang", + "date": "2024-01-04T14:58:03+00:00", + "title": "In 'The Brothers Sun,' Michelle Yeoh again leads an immigrant family with dark humor \u2014 but new faces", + "link": "https://www.independent.co.uk/news/world/americas/ap-michelle-yeoh-jenny-yang-asian-simu-liu-b2473270.html", + "pubDate": "Thu, 04 Jan 2024 14:58:03 GMT", + "dc:creator": "Terry Tang", + "dc:date": "2024-01-04T14:58:03+00:00", + "content": "Sam Song Li only got his SAG-AFTRA card two years ago", + "contentSnippet": "Sam Song Li only got his SAG-AFTRA card two years ago", + "guid": "b2473270", + "categories": ["Americas", "World"], + "isoDate": "2024-01-04T14:58:03.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-04T14:57:31+00:00", + "title": "Reform leader Richard Tice hits back at Lee Anderson after being branded \u2018pound shop Farage\u2019", + "link": "https://www.independent.co.uk/tv/news/richard-tice-reform-uk-lee-anderson-farage-b2473260.html", + "pubDate": "Thu, 04 Jan 2024 14:57:31 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-04T14:57:31+00:00", + "content": "

Richard Tice has hit back at Lee Anderson after the Conservative MP branded him a \u201cpound shop Nigel Farage,\u201d while speaking to GB News on 4 January.

", + "contentSnippet": "Richard Tice has hit back at Lee Anderson after the Conservative MP branded him a \u201cpound shop Nigel Farage,\u201d while speaking to GB News on 4 January.", + "guid": "b2473260", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-04T14:57:31.000Z" + }, + { + "creator": "Sport Staff", + "date": "2024-01-04T14:54:22+00:00", + "title": "The Independent\u2019s pound-for-pound boxing rankings", + "link": "https://www.independent.co.uk/sport/boxing/boxing-rankings-fighters-p4p-list-2023-b2469529.html", + "pubDate": "Thu, 04 Jan 2024 14:54:22 GMT", + "dc:creator": "Sport Staff", + "dc:date": "2024-01-04T14:54:22+00:00", + "content": "

Here are our top 10 men\u2019s boxers in the world

", + "contentSnippet": "Here are our top 10 men\u2019s boxers in the world", + "guid": "b2461927", + "categories": ["Boxing", "Sport"], + "isoDate": "2024-01-04T14:54:22.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-04T14:54:03+00:00", + "title": "UFC rankings: The Independent\u2019s pound-for-pound fighters list", + "link": "https://www.independent.co.uk/sport/ufc/ufc-rankings-fighters-p4p-list-2024-b2465563.html", + "pubDate": "Thu, 04 Jan 2024 14:54:03 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-04T14:54:03+00:00", + "content": "

Here are our top 10 men\u2019s fighters in the UFC, in a list to be updated throughout the year

", + "contentSnippet": "Here are our top 10 men\u2019s fighters in the UFC, in a list to be updated throughout the year", + "guid": "b2446348", + "categories": ["UFC", "Sport"], + "isoDate": "2024-01-04T14:54:03.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-04T14:53:51+00:00", + "title": "Next UFC Fight Night: Event start time, card and how to watch", + "link": "https://www.independent.co.uk/sport/ufc/next-ufc-fight-event-january-schedule-2024-b2465558.html", + "pubDate": "Thu, 04 Jan 2024 14:53:51 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-04T14:53:51+00:00", + "content": "

All you need to know about the MMA promotion\u2019s upcoming fights

", + "contentSnippet": "All you need to know about the MMA promotion\u2019s upcoming fights", + "guid": "b2461922", + "categories": ["UFC", "Sport"], + "isoDate": "2024-01-04T14:53:51.000Z" + }, + { + "creator": "Maanya Sachdeva", + "date": "2024-01-04T14:53:49+00:00", + "title": "Sienna Miller gives birth to baby girl with boyfriend Oli Green", + "link": "https://www.independent.co.uk/life-style/sienna-miller-oli-green-daughter-b2473165.html", + "pubDate": "Thu, 04 Jan 2024 14:53:49 GMT", + "dc:creator": "Maanya Sachdeva", + "dc:date": "2024-01-04T14:53:49+00:00", + "content": "

Pair were seen with newborn for the first time this week

", + "contentSnippet": "Pair were seen with newborn for the first time this week", + "guid": "b2473165", + "categories": ["Lifestyle"], + "isoDate": "2024-01-04T14:53:49.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-04T14:53:44+00:00", + "title": "UFC schedule 2024: Every fight happening this year", + "link": "https://www.independent.co.uk/sport/ufc/ufc-schedule-2024-events-fights-january-b2465554.html", + "pubDate": "Thu, 04 Jan 2024 14:53:44 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-04T14:53:44+00:00", + "content": "

Here\u2019s a look at every fight and event that the MMA promotion has scheduled for 2024 so far

", + "contentSnippet": "Here\u2019s a look at every fight and event that the MMA promotion has scheduled for 2024 so far", + "guid": "b2457960", + "categories": ["UFC", "Sport"], + "isoDate": "2024-01-04T14:53:44.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-04T14:52:29+00:00", + "title": "Students march in Prague to honor the victims of the worst mass killing in Czech history", + "link": "https://www.independent.co.uk/news/prague-ap-education-ministry-b2473266.html", + "pubDate": "Thu, 04 Jan 2024 14:52:29 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-04T14:52:29+00:00", + "content": "Hundreds of students and others have marched in silence in the Czech capital to honor the victims of the country\u2019s worst mass killing two weeks ago that left 14 dead", + "contentSnippet": "Hundreds of students and others have marched in silence in the Czech capital to honor the victims of the country\u2019s worst mass killing two weeks ago that left 14 dead", + "guid": "b2473266", + "isoDate": "2024-01-04T14:52:29.000Z" + }, + { + "creator": "Zoe Griffin", + "date": "2024-01-04T14:51:53+00:00", + "title": "Best skiwear and snowboard gear for hitting the slopes in style ", + "link": "https://www.independent.co.uk/extras/indybest/outdoor-activity/winter-sports/best-skiwear-womens-mens-kids-b2472059.html", + "pubDate": "Thu, 04 Jan 2024 14:51:53 GMT", + "dc:creator": "Zoe Griffin", + "dc:date": "2024-01-04T14:51:53+00:00", + "content": "

Don\u2019t know what to wear or pack for a ski or snowboard holiday? Our experts have rounded up the best gear for the slopes

", + "contentSnippet": "Don\u2019t know what to wear or pack for a ski or snowboard holiday? Our experts have rounded up the best gear for the slopes", + "guid": "b2472059", + "categories": [ + "Winter Sports", + "Sports & Fitness", + "IndyBest", + "Extras" + ], + "isoDate": "2024-01-04T14:51:53.000Z" + }, + { + "creator": "Olivia Hebert", + "date": "2024-01-03T20:01:26+00:00", + "title": "America Ferrera reacts to young girls performing her Barbie monologue", + "link": "https://www.independent.co.uk/life-style/america-ferrera-barbie-monologue-girls-b2472793.html", + "pubDate": "Wed, 03 Jan 2024 20:01:26 GMT", + "dc:creator": "Olivia Hebert", + "dc:date": "2024-01-03T20:01:26+00:00", + "content": "

The actor found it bittersweet that young girls resonate with her \u2018Barbie\u2019 monologue

", + "contentSnippet": "The actor found it bittersweet that young girls resonate with her \u2018Barbie\u2019 monologue", + "guid": "b2472793", + "categories": ["Lifestyle"], + "isoDate": "2024-01-03T20:01:26.000Z" + }, + { + "creator": "Kaleigh Werner", + "date": "2024-01-04T17:24:00+00:00", + "title": "People love family\u2019s sentimental adult sleepover with grandparents", + "link": "https://www.independent.co.uk/life-style/adult-sleepover-grandparents-trend-b2473310.html", + "pubDate": "Thu, 04 Jan 2024 17:24:00 GMT", + "dc:creator": "Kaleigh Werner", + "dc:date": "2024-01-04T17:24:00+00:00", + "content": "

\u2018I would give anything to have an adult sleepover at my nans\u2019

", + "contentSnippet": "\u2018I would give anything to have an adult sleepover at my nans\u2019", + "guid": "b2473310", + "categories": ["Lifestyle"], + "isoDate": "2024-01-04T17:24:00.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-04T17:20:22+00:00", + "title": "Jeremy Allen White stars in new Calvin Klein advert after bulking up for Iron Claw role", + "link": "https://www.independent.co.uk/tv/lifestyle/jeremy-allen-white-calvin-klein-advert-b2473380.html", + "pubDate": "Thu, 04 Jan 2024 17:20:22 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-04T17:20:22+00:00", + "content": "

Jeremy Allen White showcased his impressive physique in a new advertising campaign for Calvin Klein.

", + "contentSnippet": "Jeremy Allen White showcased his impressive physique in a new advertising campaign for Calvin Klein.", + "guid": "b2473380", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-04T17:20:22.000Z" + }, + { + "creator": "Freida Frisaro and Alanis Thames", + "date": "2024-01-04T17:18:25+00:00", + "title": "Fire at home of Dolphins receiver Tyreek Hill started by child playing with cigarette lighter", + "link": "https://www.independent.co.uk/news/tyreek-hill-ap-dolphins-fort-lauderdale-miami-b2473383.html", + "pubDate": "Thu, 04 Jan 2024 17:18:25 GMT", + "dc:creator": "Freida Frisaro and Alanis Thames", + "dc:date": "2024-01-04T17:18:25+00:00", + "content": "Fire officials say a child playing with a cigarette lighter started a fire at the $6.9 million home owned by Miami Dolphins receiver Tyreek Hill", + "contentSnippet": "Fire officials say a child playing with a cigarette lighter started a fire at the $6.9 million home owned by Miami Dolphins receiver Tyreek Hill", + "guid": "b2473383", + "isoDate": "2024-01-04T17:18:25.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-04T17:17:06+00:00", + "title": "Out-of-control truck rams cars at busy junction in Philippines", + "link": "https://www.independent.co.uk/tv/news/car-crash-philippines-junction-manila-b2473379.html", + "pubDate": "Thu, 04 Jan 2024 17:17:06 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-04T17:17:06+00:00", + "content": "

An out-of-control truck crashed into cars at a busy junction in the Philippines on Wednesday, 3 January.

", + "contentSnippet": "An out-of-control truck crashed into cars at a busy junction in the Philippines on Wednesday, 3 January.", + "guid": "b2473379", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-04T17:17:06.000Z" + }, + { + "creator": "Sabine Wiesel", + "date": "2024-01-04T17:15:42+00:00", + "title": "10 best body moisturisers that nourish, hydrate and soothe dry skin", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/skincare/best-body-moisturiser-dry-skin-b1847430.html", + "pubDate": "Thu, 04 Jan 2024 17:15:42 GMT", + "dc:creator": "Sabine Wiesel", + "dc:date": "2024-01-04T17:15:42+00:00", + "content": "

Prepare for the softest skin of your life, with these tried-and-tested body moisturisers

", + "contentSnippet": "Prepare for the softest skin of your life, with these tried-and-tested body moisturisers", + "guid": "b1847430", + "categories": ["Skincare", "Fashion & Beauty", "IndyBest", "Extras"], + "isoDate": "2024-01-04T17:15:42.000Z" + }, + { + "creator": "Alex Veiga", + "date": "2024-01-04T17:15:10+00:00", + "title": "Average long-term mortgage rates edge higher, snapping 9-week slide", + "link": "https://www.independent.co.uk/news/ap-los-angeles-federal-reserve-treasury-b2473382.html", + "pubDate": "Thu, 04 Jan 2024 17:15:10 GMT", + "dc:creator": "Alex Veiga", + "dc:date": "2024-01-04T17:15:10+00:00", + "content": "The average long-term U.S. mortgage rate edged higher this week, ending a nine-week slide that gave prospective homebuyers some breathing room after home loan borrowing soared to the highest level in more than two decades", + "contentSnippet": "The average long-term U.S. mortgage rate edged higher this week, ending a nine-week slide that gave prospective homebuyers some breathing room after home loan borrowing soared to the highest level in more than two decades", + "guid": "b2473382", + "isoDate": "2024-01-04T17:15:10.000Z" + }, + { + "creator": "Luke Baker", + "date": "2024-01-04T17:15:10+00:00", + "title": "Could Oscar Pistorius make Paralympic return after prison release?", + "link": "https://www.independent.co.uk/sport/olympics/paralympics/oscar-pistorius-prison-release-now-atheltics-return-b2473335.html", + "pubDate": "Thu, 04 Jan 2024 17:15:10 GMT", + "dc:creator": "Luke Baker", + "dc:date": "2024-01-04T17:15:10+00:00", + "content": "

Six-time Paralympic champion Pistorius is being released on parole this week and, at the age of 37, speculation has started over a potential return to athletics

", + "contentSnippet": "Six-time Paralympic champion Pistorius is being released on parole this week and, at the age of 37, speculation has started over a potential return to athletics", + "guid": "b2473335", + "categories": ["Paralympics", "Olympics", "Sport"], + "isoDate": "2024-01-04T17:15:10.000Z" + }, + { + "creator": "Kelly Rissman", + "date": "2024-01-04T17:13:00+00:00", + "title": "Fox News host mocks idea Trump \u2013 who brought Vanilla Ice to NYE party \u2013 can win young voters", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/fox-news-trump-vanilla-ice-youth-vote-b2473309.html", + "pubDate": "Thu, 04 Jan 2024 17:13:00 GMT", + "dc:creator": "Kelly Rissman", + "dc:date": "2024-01-04T17:13:00+00:00", + "content": "

\u2018Ice, ice, baby, you\u2019re losing the youth vote,\u2019 The Five co-host Jessica Tarlov said

", + "contentSnippet": "\u2018Ice, ice, baby, you\u2019re losing the youth vote,\u2019 The Five co-host Jessica Tarlov said", + "guid": "b2473309", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-04T17:13:00.000Z" + }, + { + "creator": "Martha McHardy", + "date": "2024-01-04T17:11:10+00:00", + "title": "Woman arrested for robbing home of professor killed in UNLV shooting", + "link": "https://www.independent.co.uk/news/world/americas/crime/naoko-takemaru-unlv-shooting-burglary-b2473330.html", + "pubDate": "Thu, 04 Jan 2024 17:11:10 GMT", + "dc:creator": "Martha McHardy", + "dc:date": "2024-01-04T17:11:10+00:00", + "content": "

Bianca Hernandez, 30, was arrested for an alleged burglary at the home of Naoko Takemaru

", + "contentSnippet": "Bianca Hernandez, 30, was arrested for an alleged burglary at the home of Naoko Takemaru", + "guid": "b2473330", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-04T17:11:10.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-04T17:08:42+00:00", + "title": "Red Sea attacks: What has happened and what does it mean for prices?", + "link": "https://www.independent.co.uk/business/red-sea-attacks-what-has-happened-and-what-does-it-mean-for-prices-b2473373.html", + "pubDate": "Thu, 04 Jan 2024 17:08:42 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-04T17:08:42+00:00", + "content": "Here the PA news agency looks at what has happened and what the knock-on effects could be for people in the UK.", + "contentSnippet": "Here the PA news agency looks at what has happened and what the knock-on effects could be for people in the UK.", + "guid": "b2473373", + "categories": ["Business"], + "isoDate": "2024-01-04T17:08:42.000Z" + }, + { + "creator": "Andrew Feinberg", + "date": "2024-01-05T13:53:54+00:00", + "title": "Officer who protected the US Capitol on January 6 announces run for Congress", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/harry-dunn-congress-bid-capitol-police-b2473748.html", + "pubDate": "Fri, 05 Jan 2024 13:53:54 GMT", + "dc:creator": "Andrew Feinberg", + "dc:date": "2024-01-05T13:53:54+00:00", + "content": "

Harry Dunn recently retired from the Capitol Police department

", + "contentSnippet": "Harry Dunn recently retired from the Capitol Police department", + "guid": "b2473748", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-05T13:53:54.000Z" + }, + { + "creator": "Ryan Coogan", + "date": "2024-01-05T13:53:48+00:00", + "title": "Voices: Natwest\u2019s boss thinks \u2018it\u2019s not that hard to buy a home\u2019 \u2013 tell that to Gen Z and millennials like me", + "link": "https://www.independent.co.uk/voices/natwest-howard-davies-buying-house-difficult-gen-z-b2473764.html", + "pubDate": "Fri, 05 Jan 2024 13:53:48 GMT", + "dc:creator": "Ryan Coogan", + "dc:date": "2024-01-05T13:53:48+00:00", + "content": "

Like most people my age, I\u2019ve accepted that I\u2019ll probably never own a property \u2013 and contrary to what Natwest boss Sir Howard Davies believes, it\u2019s got nothing to do with \u2018needing to save up more\u2019

", + "contentSnippet": "Like most people my age, I\u2019ve accepted that I\u2019ll probably never own a property \u2013 and contrary to what Natwest boss Sir Howard Davies believes, it\u2019s got nothing to do with \u2018needing to save up more\u2019", + "guid": "b2473764", + "categories": ["Voices"], + "isoDate": "2024-01-05T13:53:48.000Z" + }, + { + "creator": "Lydia Patrick,Maryam Zakir-Hussain and Maroosha Muzaffar", + "date": "2024-01-05T13:52:11+00:00", + "title": "UK flooding latest - Hundreds of warnings across England as heavy rain sparks chaos on trains", + "link": "https://www.independent.co.uk/weather/uk-storm-henk-flooding-weather-forecast-latest-b2473613.html", + "pubDate": "Fri, 05 Jan 2024 13:52:11 GMT", + "dc:creator": "Lydia Patrick,Maryam Zakir-Hussain and Maroosha Muzaffar", + "dc:date": "2024-01-05T13:52:11+00:00", + "content": "

Southeast England will experience cloudy weather with occasional rain and drizzle today

", + "contentSnippet": "Southeast England will experience cloudy weather with occasional rain and drizzle today", + "guid": "b2472054", + "categories": ["Weather"], + "isoDate": "2024-01-05T13:52:11.000Z" + }, + { + "creator": "Eric Garcia", + "date": "2024-01-05T13:52:06+00:00", + "title": "Jobs report surpasses expectations with 216,000 new jobs added in December", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/jobs-report-us-economy-biden-b2473807.html", + "pubDate": "Fri, 05 Jan 2024 13:52:06 GMT", + "dc:creator": "Eric Garcia", + "dc:date": "2024-01-05T13:52:06+00:00", + "content": "

The US economy continued to show surprising resiliency as the Bureau of Labor Statistics reported on Friday that the economy added 216,000 new jobs in December.

", + "contentSnippet": "The US economy continued to show surprising resiliency as the Bureau of Labor Statistics reported on Friday that the economy added 216,000 new jobs in December.", + "guid": "b2473807", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-05T13:52:06.000Z" + }, + { + "creator": "Tom Watling and Maryam Zakir-Hussain", + "date": "2024-01-05T13:47:39+00:00", + "title": "Ukraine-Russia war live: Kyiv inflicting significant losses on Putin\u2019s forces around Dnipro River", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-putin-kyiv-latest-news-b2473609.html", + "pubDate": "Fri, 05 Jan 2024 13:47:39 GMT", + "dc:creator": "Tom Watling and Maryam Zakir-Hussain", + "dc:date": "2024-01-05T13:47:39+00:00", + "content": "

Russia began its tank-heavy assault on the eastern Ukrianian city of Avdiivka in October last year and have lost five battalions worth of equipment since

", + "contentSnippet": "Russia began its tank-heavy assault on the eastern Ukrianian city of Avdiivka in October last year and have lost five battalions worth of equipment since", + "guid": "b2466307", + "categories": ["Europe", "World"], + "isoDate": "2024-01-05T13:47:39.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-05T13:45:56+00:00", + "title": "Moment Derek Draper\u2019s death announced live on This Morning", + "link": "https://www.independent.co.uk/tv/news/derek-draper-kate-garraway-covid-b2473798.html", + "pubDate": "Fri, 05 Jan 2024 13:45:56 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-05T13:45:56+00:00", + "content": "

Alison Hammond and Dermot O'Leary broke the news of Derek Draper's death live on This Morning on Friday, 5 January, sending a message of support to his wife Kate Garraway and their family.

", + "contentSnippet": "Alison Hammond and Dermot O'Leary broke the news of Derek Draper's death live on This Morning on Friday, 5 January, sending a message of support to his wife Kate Garraway and their family.", + "guid": "b2473798", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-05T13:45:56.000Z" + }, + { + "creator": "Tamara Hinson", + "date": "2024-01-05T13:42:27+00:00", + "title": "Best cabin bags, suitcases and overnight backpacks for travel in 2024", + "link": "https://www.independent.co.uk/extras/indybest/travel-outdoors/luggage/best-cabin-bag-a9702471.html", + "pubDate": "Fri, 05 Jan 2024 13:42:27 GMT", + "dc:creator": "Tamara Hinson", + "dc:date": "2024-01-05T13:42:27+00:00", + "content": "

Whether for buisness or pleasure, choose one of these and you\u2019ll pack like a pro

", + "contentSnippet": "Whether for buisness or pleasure, choose one of these and you\u2019ll pack like a pro", + "guid": "a9702471", + "categories": ["Luggage", "Travel & outdoors", "IndyBest", "Extras"], + "isoDate": "2024-01-05T13:42:27.000Z" + }, + { + "creator": "Zoe Phillimore", + "date": "2024-01-05T13:41:35+00:00", + "title": "7 best blenders, tried and tested for super-quick smoothies, sauces and more", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/best-blender-b1997190.html", + "pubDate": "Fri, 05 Jan 2024 13:41:35 GMT", + "dc:creator": "Zoe Phillimore", + "dc:date": "2024-01-05T13:41:35+00:00", + "content": "

Our experts review the best handheld, vacuum and jug-style blenders for all your kitchen duties

", + "contentSnippet": "Our experts review the best handheld, vacuum and jug-style blenders for all your kitchen duties", + "guid": "b1997190", + "categories": ["Home & Garden", "IndyBest", "Extras"], + "isoDate": "2024-01-05T13:41:35.000Z" + }, + { + "creator": "Vanessa Gera", + "date": "2024-01-05T13:40:30+00:00", + "title": "Companies pull ads from TV station after comments on tattooing and sending migrants to Auschwitz", + "link": "https://www.independent.co.uk/news/world/europe/ap-law-and-justice-donald-tusk-ikea-poland-b2473809.html", + "pubDate": "Fri, 05 Jan 2024 13:40:30 GMT", + "dc:creator": "Vanessa Gera", + "dc:date": "2024-01-05T13:40:30+00:00", + "content": "Commentators who joked on a Polish right-wing television station that migrants should be sent to Auschwitz or be tattooed or microchipped like dogs are facing widespread condemnation", + "contentSnippet": "Commentators who joked on a Polish right-wing television station that migrants should be sent to Auschwitz or be tattooed or microchipped like dogs are facing widespread condemnation", + "guid": "b2473809", + "categories": ["Europe", "World"], + "isoDate": "2024-01-05T13:40:30.000Z" + }, + { + "creator": "Lauren Cunningham", + "date": "2024-01-05T13:40:27+00:00", + "title": "10 best beauty subscription boxes: Monthly skincare and make-up treats worth signing up for ", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/beauty/best-beauty-subscription-boxes-uk-b1954393.html", + "pubDate": "Fri, 05 Jan 2024 13:40:27 GMT", + "dc:creator": "Lauren Cunningham", + "dc:date": "2024-01-05T13:40:27+00:00", + "content": "

From the latest launches to bespoke skincare, home delivery has never looked so good

", + "contentSnippet": "From the latest launches to bespoke skincare, home delivery has never looked so good", + "guid": "b1954393", + "categories": ["Beauty", "Fashion & Beauty", "IndyBest", "Extras"], + "isoDate": "2024-01-05T13:40:27.000Z" + }, + { + "creator": "Zoe Phillimore", + "date": "2024-01-05T13:38:48+00:00", + "title": "17 best coffee machines for 2024, tried and tested for barista-worthy drinks", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/coffee/best-coffee-machines-b2375287.html", + "pubDate": "Fri, 05 Jan 2024 13:38:48 GMT", + "dc:creator": "Zoe Phillimore", + "dc:date": "2024-01-05T13:38:48+00:00", + "content": "

There\u2019s a better way to get your caffeine fix, from bean-to-cup to espresso machines

", + "contentSnippet": "There\u2019s a better way to get your caffeine fix, from bean-to-cup to espresso machines", + "guid": "b2375287", + "categories": ["Coffee", "Home & Garden", "IndyBest", "Extras"], + "isoDate": "2024-01-05T13:38:48.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2024-01-05T13:37:48+00:00", + "title": "Lori Vallow\u2019s Arizona trial for murder conspiracy faces delay", + "link": "https://www.independent.co.uk/news/world/americas/crime/lori-vallow-arizona-trial-delay-b2473733.html", + "pubDate": "Fri, 05 Jan 2024 13:37:48 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2024-01-05T13:37:48+00:00", + "content": "

Vallow charges for conspiring to kill her fourth husband Charles and her niece\u2019s ex-husband Brandon Boudreaux

", + "contentSnippet": "Vallow charges for conspiring to kill her fourth husband Charles and her niece\u2019s ex-husband Brandon Boudreaux", + "guid": "b2473733", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-05T13:37:48.000Z" + }, + { + "creator": "Daisy Lester and Lois Borny", + "date": "2024-01-05T13:33:56+00:00", + "title": "Best vegan launches for 2024: Greggs, M&S and more Veganuary menus", + "link": "https://www.independent.co.uk/extras/indybest/food-drink/vegan-food-burger-delivery-uk-b2265967.html", + "pubDate": "Fri, 05 Jan 2024 13:33:56 GMT", + "dc:creator": "Daisy Lester and Lois Borny", + "dc:date": "2024-01-05T13:33:56+00:00", + "content": "

Are you pledging to go plant-based this year? These new vegan alternatives leave you spoiled for choice

", + "contentSnippet": "Are you pledging to go plant-based this year? These new vegan alternatives leave you spoiled for choice", + "guid": "b2265967", + "categories": ["Food & Drink", "IndyBest", "Extras"], + "isoDate": "2024-01-05T13:33:56.000Z" + }, + { + "creator": "Jane Kirby", + "date": "2024-01-05T13:33:37+00:00", + "title": "Combination of strikes and rise in flu and Covid \u2018a perfect storm for the NHS\u2019", + "link": "https://www.independent.co.uk/business/combination-of-strikes-and-rise-in-flu-and-covid-a-perfect-storm-for-the-nhs-b2473757.html", + "pubDate": "Fri, 05 Jan 2024 13:33:37 GMT", + "dc:creator": "Jane Kirby", + "dc:date": "2024-01-05T13:33:37+00:00", + "content": "Figures published by NHS England on Friday show the number of flu patients jumped by more than a third over Christmas.", + "contentSnippet": "Figures published by NHS England on Friday show the number of flu patients jumped by more than a third over Christmas.", + "guid": "b2473757", + "categories": ["Business"], + "isoDate": "2024-01-05T13:33:37.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-05T13:32:58+00:00", + "title": "Derek Draper cries as he reads birthday card from his children in resurfaced clip", + "link": "https://www.independent.co.uk/tv/culture/derek-draper-death-children-birthday-video-b2473803.html", + "pubDate": "Fri, 05 Jan 2024 13:32:58 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-05T13:32:58+00:00", + "content": "

This is the touching moment Derek Draper cries as he receives a birthday card from his daughter Darcy, declaring him the \u201cbest father in the world\u201d.

", + "contentSnippet": "This is the touching moment Derek Draper cries as he receives a birthday card from his daughter Darcy, declaring him the \u201cbest father in the world\u201d.", + "guid": "b2473803", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-05T13:32:58.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2024-01-05T13:32:13+00:00", + "title": "Film stars named in unsealed Epstein court documents deny any involvement", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/epstein-list-dicaprio-blanchett-willis-diaz-b2473686.html", + "pubDate": "Fri, 05 Jan 2024 13:32:13 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2024-01-05T13:32:13+00:00", + "content": "

Their names are mentioned in legal records despite having \u2018no association\u2019 with Epstein \u2018whatsoever\u2019

", + "contentSnippet": "Their names are mentioned in legal records despite having \u2018no association\u2019 with Epstein \u2018whatsoever\u2019", + "guid": "b2473686", + "categories": ["News", "Film", "Culture"], + "isoDate": "2024-01-05T13:32:13.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-05T13:28:51+00:00", + "title": "AP Week in Pictures: Global | Dec.29-January 5, 2024", + "link": "https://www.independent.co.uk/news/beijing-ap-taiwan-europe-instagram-b2473806.html", + "pubDate": "Fri, 05 Jan 2024 13:28:51 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-05T13:28:51+00:00", + "content": "

DECEMBER 31-JANUARY 5, 2024

", + "contentSnippet": "DECEMBER 31-JANUARY 5, 2024", + "guid": "b2473806", + "isoDate": "2024-01-05T13:28:51.000Z" + }, + { + "creator": "Lauren Cunningham", + "date": "2024-01-05T13:26:20+00:00", + "title": "8 best BB creams that can\u2019t be beaten for a bare-faced look", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/make-up/best-bb-cream-uk-oily-dry-spf-b1790164.html", + "pubDate": "Fri, 05 Jan 2024 13:26:20 GMT", + "dc:creator": "Lauren Cunningham", + "dc:date": "2024-01-05T13:26:20+00:00", + "content": "

The barely there base that\u2019s lighter than foundation, yet covers more than concealer

", + "contentSnippet": "The barely there base that\u2019s lighter than foundation, yet covers more than concealer", + "guid": "b1790164", + "categories": ["Make-up", "Fashion & Beauty", "IndyBest", "Extras"], + "isoDate": "2024-01-05T13:26:20.000Z" + }, + { + "creator": "Zoe Griffin", + "date": "2024-01-05T13:25:17+00:00", + "title": "10 best baby play mats for tummy-time fun", + "link": "https://www.independent.co.uk/extras/indybest/kids/baby-tech-essentials/best-baby-play-mat-gym-uk-activity-development-tummy-time-a9438656.html", + "pubDate": "Fri, 05 Jan 2024 13:25:17 GMT", + "dc:creator": "Zoe Griffin", + "dc:date": "2024-01-05T13:25:17+00:00", + "content": "

From simple a play mat to baby gym, these help little ones roll, push up and crawl in comfort

", + "contentSnippet": "From simple a play mat to baby gym, these help little ones roll, push up and crawl in comfort", + "guid": "a9438656", + "categories": ["Baby Tech & Essentials", "Kids", "IndyBest", "Extras"], + "isoDate": "2024-01-05T13:25:17.000Z" + }, + { + "creator": "Katie Hawkinson", + "date": "2024-01-05T13:24:24+00:00", + "title": "Germany\u2019s carbon emissions hit 70-year low, new study finds", + "link": "https://www.independent.co.uk/climate-change/news/germany-carbon-emissions-record-coal-b2473532.html", + "pubDate": "Fri, 05 Jan 2024 13:24:24 GMT", + "dc:creator": "Katie Hawkinson", + "dc:date": "2024-01-05T13:24:24+00:00", + "content": "

While there\u2019s still more work to be done, researchers say Germany\u2019s carbon emissions fell 56 per cent from 1996 and are at their lowest since the 1950s

", + "contentSnippet": "While there\u2019s still more work to be done, researchers say Germany\u2019s carbon emissions fell 56 per cent from 1996 and are at their lowest since the 1950s", + "guid": "b2473532", + "categories": ["News", "Climate"], + "isoDate": "2024-01-05T13:24:24.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2024-01-05T13:24:17+00:00", + "title": "Derek Draper: Tributes pour in as \u2018brave\u2019 Kate Garraway announces husband\u2019s death", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/derek-draper-death-kate-garraway-husband-b2473754.html", + "pubDate": "Fri, 05 Jan 2024 13:24:17 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2024-01-05T13:24:17+00:00", + "content": "

\u2018GMB\u2019 host has been caring for Draper ever since he contracted Covid in March 2020

", + "contentSnippet": "\u2018GMB\u2019 host has been caring for Draper ever since he contracted Covid in March 2020", + "guid": "b2473754", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-05T13:24:17.000Z" + }, + { + "creator": "Rachel Sharp", + "date": "2024-01-05T13:24:13+00:00", + "title": "Epstein documents reveal new details of Palm Beach police investigation", + "link": "https://www.independent.co.uk/news/world/americas/epstein-list-investigation-florida-police-b2473747.html", + "pubDate": "Fri, 05 Jan 2024 13:24:13 GMT", + "dc:creator": "Rachel Sharp", + "dc:date": "2024-01-05T13:24:13+00:00", + "content": "

Palm Beach detective testified in deposition that he had spoken with around 30 underage girls who claimed they were recruited by Ghislaine Maxwell to come to Epstein\u2019s Palm Beach home and give him sexual massages

", + "contentSnippet": "Palm Beach detective testified in deposition that he had spoken with around 30 underage girls who claimed they were recruited by Ghislaine Maxwell to come to Epstein\u2019s Palm Beach home and give him sexual massages", + "guid": "b2473747", + "categories": ["Americas", "World"], + "isoDate": "2024-01-05T13:24:13.000Z" + }, + { + "creator": "Zoe Griffin", + "date": "2024-01-05T13:23:53+00:00", + "title": "\u200b\u200b14 best baby carriers and slings, reviewed by parents", + "link": "https://www.independent.co.uk/extras/indybest/kids/baby-tech-essentials/best-baby-carriers-a9436251.html", + "pubDate": "Fri, 05 Jan 2024 13:23:53 GMT", + "dc:creator": "Zoe Griffin", + "dc:date": "2024-01-05T13:23:53+00:00", + "content": "

Bonding while on the move? These baby carriers make it happen

", + "contentSnippet": "Bonding while on the move? These baby carriers make it happen", + "guid": "a9436251", + "categories": ["Baby Tech & Essentials", "Kids", "IndyBest", "Extras"], + "isoDate": "2024-01-05T13:23:53.000Z" + }, + { + "creator": "Krutika Pathi", + "date": "2024-01-05T13:22:26+00:00", + "title": "Thousands of opposition activists languish in prison as Bangladesh gears up for national election", + "link": "https://www.independent.co.uk/news/ap-sheikh-hasina-bangladesh-bangladesh-nationalist-party-khaleda-zia-b2473805.html", + "pubDate": "Fri, 05 Jan 2024 13:22:26 GMT", + "dc:creator": "Krutika Pathi", + "dc:date": "2024-01-05T13:22:26+00:00", + "content": "In the months leading to Bangladesh\u2019s national election on Sunday, thousands of opposition supporters and politicians have been arrested", + "contentSnippet": "In the months leading to Bangladesh\u2019s national election on Sunday, thousands of opposition supporters and politicians have been arrested", + "guid": "b2473805", + "isoDate": "2024-01-05T13:22:26.000Z" + }, + { + "creator": "Barney Davis", + "date": "2024-01-05T13:21:35+00:00", + "title": "\u2018All is lost\u2019: Captain of party boat sunk in Thames speaks of devastation", + "link": "https://www.independent.co.uk/news/uk/home-news/thames-floods-london-party-boat-b2473710.html", + "pubDate": "Fri, 05 Jan 2024 13:21:35 GMT", + "dc:creator": "Barney Davis", + "dc:date": "2024-01-05T13:21:35+00:00", + "content": "

\u2018It was always my dream to own a boat like this in London\u2019 the devasted owner of Bar & Co said

", + "contentSnippet": "\u2018It was always my dream to own a boat like this in London\u2019 the devasted owner of Bar & Co said", + "guid": "b2473710", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-05T13:21:35.000Z" + }, + { + "creator": "Steve Douglas", + "date": "2024-01-05T13:13:59+00:00", + "title": "Ryan Reynolds' Wrexham riding a wave of euphoria in charge through English soccer leagues", + "link": "https://www.independent.co.uk/news/wrexham-ap-reynolds-ryan-reynolds-rob-mcelhenney-b2473802.html", + "pubDate": "Fri, 05 Jan 2024 13:13:59 GMT", + "dc:creator": "Steve Douglas", + "dc:date": "2024-01-05T13:13:59+00:00", + "content": "Hollywood stars Ryan Reynolds and Rob McElhenney are three years into their unlikely ownership of Welsh soccer club Wrexham and their enthusiasm is far from fading", + "contentSnippet": "Hollywood stars Ryan Reynolds and Rob McElhenney are three years into their unlikely ownership of Welsh soccer club Wrexham and their enthusiasm is far from fading", + "guid": "b2473802", + "isoDate": "2024-01-05T13:13:59.000Z" + }, + { + "creator": "Maanya Sachdeva", + "date": "2024-01-05T13:13:56+00:00", + "title": "Jeremy Allen White fans \u2018not OK\u2019 after star\u2019s Calvin Klein ad drops", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/jeremy-allen-white-calvin-klein-b2473691.html", + "pubDate": "Fri, 05 Jan 2024 13:13:56 GMT", + "dc:creator": "Maanya Sachdeva", + "dc:date": "2024-01-05T13:13:56+00:00", + "content": "

White, 32, plays Chicago-based chef Carmy in 2023\u2019s hottest show \u2018The Bear\u2019

", + "contentSnippet": "White, 32, plays Chicago-based chef Carmy in 2023\u2019s hottest show \u2018The Bear\u2019", + "guid": "b2473691", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-05T13:13:56.000Z" + }, + { + "creator": "Archie Mitchell", + "date": "2024-01-05T13:13:31+00:00", + "title": "It\u2019s not that difficult to buy a house in Britain, NatWest boss claims", + "link": "https://www.independent.co.uk/news/uk/politics/uk-housing-crisis-natwest-radio-4-b2473675.html", + "pubDate": "Fri, 05 Jan 2024 13:13:31 GMT", + "dc:creator": "Archie Mitchell", + "dc:date": "2024-01-05T13:13:31+00:00", + "content": "

Sir Howard Davies said people \u2018will have to save more\u2019 but that \u2018I don\u2019t think it is that difficult at the moment\u2019

", + "contentSnippet": "Sir Howard Davies said people \u2018will have to save more\u2019 but that \u2018I don\u2019t think it is that difficult at the moment\u2019", + "guid": "b2473675", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-05T13:13:31.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-05T13:09:51+00:00", + "title": "Tom Aspinall makes case against interim title defence amid talk of Alex Pereira fight", + "link": "https://www.independent.co.uk/sport/ufc/tom-aspinall-ufc-300-alex-pereira-b2473684.html", + "pubDate": "Fri, 05 Jan 2024 13:09:51 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-05T13:09:51+00:00", + "content": "

A source told The Independent that the UFC has made no contact over a potential fight between Aspinall and Pereira at UFC 300

", + "contentSnippet": "A source told The Independent that the UFC has made no contact over a potential fight between Aspinall and Pereira at UFC 300", + "guid": "b2473684", + "categories": ["UFC", "Sport"], + "isoDate": "2024-01-05T13:09:51.000Z" + }, + { + "creator": "Rachael Phillips", + "date": "2024-01-05T13:09:17+00:00", + "title": "12 best dehumidifiers to help tackle damp and mould at home", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/household-appliances/best-dehumidifier-uk-b1987947.html", + "pubDate": "Fri, 05 Jan 2024 13:09:17 GMT", + "dc:creator": "Rachael Phillips", + "dc:date": "2024-01-05T13:09:17+00:00", + "content": "

Speed up laundry-drying times while ousting odours with these tried and tested appliances

", + "contentSnippet": "Speed up laundry-drying times while ousting odours with these tried and tested appliances", + "guid": "b1987947", + "categories": [ + "Household Appliances", + "Home & Garden", + "IndyBest", + "Extras" + ], + "isoDate": "2024-01-05T13:09:17.000Z" + }, + { + "creator": "Andrea Blanco,Rachel Sharp,Mike Bedigan and Namita Singh", + "date": "2024-01-05T13:08:18+00:00", + "title": "Jeffrey Epstein list: New Clinton allegations revealed in second batch of unsealed documents", + "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-names-list-documents-b2473538.html", + "pubDate": "Fri, 05 Jan 2024 13:08:18 GMT", + "dc:creator": "Andrea Blanco,Rachel Sharp,Mike Bedigan and Namita Singh", + "dc:date": "2024-01-05T13:08:18+00:00", + "content": "

Ghislaine Maxwell, Prince Andrew, magician David Copperfield, Donald Trump, Stephen Hawking and Bill Clinton have all been named in the documents so far

", + "contentSnippet": "Ghislaine Maxwell, Prince Andrew, magician David Copperfield, Donald Trump, Stephen Hawking and Bill Clinton have all been named in the documents so far", + "guid": "b2472177", + "categories": ["Americas", "World"], + "isoDate": "2024-01-05T13:08:18.000Z" + }, + { + "creator": "Oliver O'Connell,Alex Woodward,Gustaf Kilander and Joe Sommerlad", + "date": "2024-01-05T13:07:20+00:00", + "title": "Trump accused of \u2018rampant illegality\u2019 over earnings as president: Live", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/donald-trump-foreign-money-ballot-2024-latest-b2473625.html", + "pubDate": "Fri, 05 Jan 2024 13:07:20 GMT", + "dc:creator": "Oliver O'Connell,Alex Woodward,Gustaf Kilander and Joe Sommerlad", + "dc:date": "2024-01-05T13:07:20+00:00", + "content": "

House Democrats investigate accounts from key Trump properties and say findings \u2018allow America to glimpse the corruption\u2019 of Republican\u2019s presidency

", + "contentSnippet": "House Democrats investigate accounts from key Trump properties and say findings \u2018allow America to glimpse the corruption\u2019 of Republican\u2019s presidency", + "guid": "b2463845", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-05T13:07:20.000Z" + }, + { + "creator": "Emmie Harrison-West", + "date": "2024-01-05T13:05:44+00:00", + "title": "6 best home beer dispensers for pouring the perfect draught pint ", + "link": "https://www.independent.co.uk/extras/indybest/food-drink/beer-cider-perry/best-home-beer-dispensers-b2335473.html", + "pubDate": "Fri, 05 Jan 2024 13:05:44 GMT", + "dc:creator": "Emmie Harrison-West", + "dc:date": "2024-01-05T13:05:44+00:00", + "content": "

Get beer on tap without leaving the comfort of your own home

", + "contentSnippet": "Get beer on tap without leaving the comfort of your own home", + "guid": "b2335473", + "categories": [ + "Beer, Cider & Perry", + "Food & Drink", + "IndyBest", + "Extras" + ], + "isoDate": "2024-01-05T13:05:44.000Z" + }, + { + "creator": "Michael Jones", + "date": "2024-01-05T13:04:10+00:00", + "title": "Transfer news LIVE: Arsenal told Toney price tag as Sancho heads for Man Utd exit and Firmino nears return", + "link": "https://www.independent.co.uk/sport/football/transfer-news-live-arsenal-liverpool-man-utd-b2473369.html", + "pubDate": "Fri, 05 Jan 2024 13:04:10 GMT", + "dc:creator": "Michael Jones", + "dc:date": "2024-01-05T13:04:10+00:00", + "content": "

Brentford have set a huge price for Arsenal and Chelsea target Toney, while Tottenham and Manchester United are also lining up January targets

", + "contentSnippet": "Brentford have set a huge price for Arsenal and Chelsea target Toney, while Tottenham and Manchester United are also lining up January targets", + "guid": "b2473369", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T13:04:10.000Z" + }, + { + "creator": "Richard Jolly", + "date": "2024-01-05T13:02:34+00:00", + "title": "How Wigan\u2019s Callum McManaman went from FA Cup final glory to retirement and back again", + "link": "https://www.independent.co.uk/sport/football/callum-mcmanaman-wigan-fa-cup-final-2013-b2473213.html", + "pubDate": "Fri, 05 Jan 2024 13:02:34 GMT", + "dc:creator": "Richard Jolly", + "dc:date": "2024-01-05T13:02:34+00:00", + "content": "

The player of the match in perhaps the greatest upset in FA Cup final history thought his football career was over a decade later, writes Richard Jolly, before a call from his former team offered him a fresh chance

", + "contentSnippet": "The player of the match in perhaps the greatest upset in FA Cup final history thought his football career was over a decade later, writes Richard Jolly, before a call from his former team offered him a fresh chance", + "guid": "b2473213", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T13:02:34.000Z" + }, + { + "creator": "Lawrence Ostlere", + "date": "2024-01-05T12:59:21+00:00", + "title": "England\u2019s Euro 2024 squad: Who\u2019s on the plane, who\u2019s in contention and who has work to do?", + "link": "https://www.independent.co.uk/sport/football/england-euro-2024-squad-b2473763.html", + "pubDate": "Fri, 05 Jan 2024 12:59:21 GMT", + "dc:creator": "Lawrence Ostlere", + "dc:date": "2024-01-05T12:59:21+00:00", + "content": "

A closer look at which England players are heading to Germany for Euro 2024 and who might miss out on the final 23

", + "contentSnippet": "A closer look at which England players are heading to Germany for Euro 2024 and who might miss out on the final 23", + "guid": "b2450917", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T12:59:21.000Z" + }, + { + "creator": "Jon Axworthy", + "date": "2024-01-05T12:53:28+00:00", + "title": "8 best rowing machines to kit out home gyms for building muscle and boosting fitness in 2024", + "link": "https://www.independent.co.uk/extras/indybest/outdoor-activity/best-home-rowing-machines-a8692191.html", + "pubDate": "Fri, 05 Jan 2024 12:53:28 GMT", + "dc:creator": "Jon Axworthy", + "dc:date": "2024-01-05T12:53:28+00:00", + "content": "

Resistance isn\u2019t futile \u2013 it\u2019s very, very good for you. These rowing machines will help

", + "contentSnippet": "Resistance isn\u2019t futile \u2013 it\u2019s very, very good for you. These rowing machines will help", + "guid": "a8692191", + "categories": ["Sports & Fitness", "IndyBest", "Extras"], + "isoDate": "2024-01-05T12:53:28.000Z" + }, + { + "creator": "Io Dodds ", + "date": "2024-01-05T12:51:39+00:00", + "title": "Jeffrey Epstein\u2019s island: What really happened there?", + "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-island-ghislaine-maxwell-b2473788.html", + "pubDate": "Fri, 05 Jan 2024 12:51:39 GMT", + "dc:creator": "Io Dodds ", + "dc:date": "2024-01-05T12:51:39+00:00", + "content": "

Accusers say billionaire\u2019s private paradise of Little St James in US Virgin Islands was centre of international sex trafficking ring

", + "contentSnippet": "Accusers say billionaire\u2019s private paradise of Little St James in US Virgin Islands was centre of international sex trafficking ring", + "guid": "b2111535", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-05T12:51:39.000Z" + }, + { + "creator": "Kate Devlin", + "date": "2024-01-05T12:50:55+00:00", + "title": "Starmer backs change in law on assisted dying ", + "link": "https://www.independent.co.uk/news/uk/politics/keir-starmer-assisted-dying-law-b2473787.html", + "pubDate": "Fri, 05 Jan 2024 12:50:55 GMT", + "dc:creator": "Kate Devlin", + "dc:date": "2024-01-05T12:50:55+00:00", + "content": "

Labour leader\u2019s comments come amid growing calls for reform

", + "contentSnippet": "Labour leader\u2019s comments come amid growing calls for reform", + "guid": "b2473787", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-05T12:50:55.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-05T12:49:29+00:00", + "title": "Telegraph bidder vows Abu Dhabi will be \u2018passive investor\u2019", + "link": "https://www.independent.co.uk/business/telegraph-bidder-vows-abu-dhabi-will-be-passive-investor-b2473786.html", + "pubDate": "Fri, 05 Jan 2024 12:49:29 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-05T12:49:29+00:00", + "content": "Last year the Government got involved in the deal, amid worries the authoritarian Gulf State could get a say over the journalism of the UK paper.", + "contentSnippet": "Last year the Government got involved in the deal, amid worries the authoritarian Gulf State could get a say over the journalism of the UK paper.", + "guid": "b2473786", + "categories": ["Business"], + "isoDate": "2024-01-05T12:49:29.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2024-01-05T12:49:28+00:00", + "title": "The alleged associates of Jeffrey Epstein: Names by numbers", + "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-associates-numbers-names-b2473785.html", + "pubDate": "Fri, 05 Jan 2024 12:49:28 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2024-01-05T12:49:28+00:00", + "content": "

Being identified through the court documents does not necessarily mean that the individual was involved in or aware of any wrongdoing by the disgraced financier

", + "contentSnippet": "Being identified through the court documents does not necessarily mean that the individual was involved in or aware of any wrongdoing by the disgraced financier", + "guid": "b2472983", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-05T12:49:28.000Z" + }, + { + "creator": "Andy Gregory", + "date": "2024-01-05T12:47:32+00:00", + "title": "What we know about Kim Jong Un\u2019s daughter \u2013 the \u2018successor\u2019 for North Korea at 10 years old", + "link": "https://www.independent.co.uk/news/world/asia/kim-jong-un-daughter-north-korea-b2473672.html", + "pubDate": "Fri, 05 Jan 2024 12:47:32 GMT", + "dc:creator": "Andy Gregory", + "dc:date": "2024-01-05T12:47:32+00:00", + "content": "

North Korea\u2019s state media bestowing rare praise on Kim Ju Ae, not enjoyed by her father until his position as future leader was set in stone

", + "contentSnippet": "North Korea\u2019s state media bestowing rare praise on Kim Ju Ae, not enjoyed by her father until his position as future leader was set in stone", + "guid": "b2473672", + "categories": ["Asia", "World"], + "isoDate": "2024-01-05T12:47:32.000Z" + }, + { + "creator": "Adam Forrest", + "date": "2024-01-05T12:47:16+00:00", + "title": "Interest rate cuts will soften mortgage blow by \u00a311bn \u2013 but Brits still face \u00a319bn rise", + "link": "https://www.independent.co.uk/news/business/interest-rates-mortgages-bank-england-b2473777.html", + "pubDate": "Fri, 05 Jan 2024 12:47:16 GMT", + "dc:creator": "Adam Forrest", + "dc:date": "2024-01-05T12:47:16+00:00", + "content": "

Goldman Sachs says faster-than-expected fall in borrowing costs will ease the pain for millions

", + "contentSnippet": "Goldman Sachs says faster-than-expected fall in borrowing costs will ease the pain for millions", + "guid": "b2473777", + "categories": ["Business"], + "isoDate": "2024-01-05T12:47:16.000Z" + }, + { + "creator": "Amira Arasteh", + "date": "2024-01-05T12:47:13+00:00", + "title": "10 best IPL machines and laser hair removal devices to buy now for at-home salon results", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/beauty/best-ipl-machines-laser-hair-removal-devices-home-b2313633.html", + "pubDate": "Fri, 05 Jan 2024 12:47:13 GMT", + "dc:creator": "Amira Arasteh", + "dc:date": "2024-01-05T12:47:13+00:00", + "content": "

Cancel your next waxing appointment and throw out your razor in favour of these money-saving IPL and laser hair-removal devices

", + "contentSnippet": "Cancel your next waxing appointment and throw out your razor in favour of these money-saving IPL and laser hair-removal devices", + "guid": "b2313633", + "categories": ["Beauty", "Fashion & Beauty", "IndyBest", "Extras"], + "isoDate": "2024-01-05T12:47:13.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-05T12:45:37+00:00", + "title": "PepsiCo products are being pulled from some Carrefour grocery stores in Europe over price hikes", + "link": "https://www.independent.co.uk/news/carrefour-ap-pepsico-quaker-oats-spain-b2473790.html", + "pubDate": "Fri, 05 Jan 2024 12:45:37 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-05T12:45:37+00:00", + "content": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", + "contentSnippet": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", + "guid": "b2473790", + "isoDate": "2024-01-05T12:45:37.000Z" + }, + { + "creator": "Vicky Shaw", + "date": "2024-01-05T12:42:33+00:00", + "title": "Average UK house price ended last year \u00a34,800 higher than at end of 2022 \u2013 index", + "link": "https://www.independent.co.uk/money/average-uk-house-price-ended-last-year-ps4-800-higher-than-at-end-of-2022-index-b2473655.html", + "pubDate": "Fri, 05 Jan 2024 12:42:33 GMT", + "dc:creator": "Vicky Shaw", + "dc:date": "2024-01-05T12:42:33+00:00", + "content": "The typical UK house price in December 2023 was \u00a3287,105, up from \u00a3282,305 in the same month a year earlier, Halifax said.", + "contentSnippet": "The typical UK house price in December 2023 was \u00a3287,105, up from \u00a3282,305 in the same month a year earlier, Halifax said.", + "guid": "b2473655", + "categories": ["Money"], + "isoDate": "2024-01-05T12:42:33.000Z" + }, + { + "creator": "Gerald Imray", + "date": "2024-01-05T12:42:25+00:00", + "title": "Track star, convicted killer, now parolee. A timeline of Oscar Pistorius's life", + "link": "https://www.independent.co.uk/news/oscar-pistorius-ap-reeva-steenkamp-south-africa-cape-town-b2473784.html", + "pubDate": "Fri, 05 Jan 2024 12:42:25 GMT", + "dc:creator": "Gerald Imray", + "dc:date": "2024-01-05T12:42:25+00:00", + "content": "A list of the major moments in the life of Oscar Pistorius, the South African double-amputee Olympic runner who was released from prison on parole Friday having served nearly nine years of a murder sentence for the 2013 killing of girlfriend Reeva Steenkamp", + "contentSnippet": "A list of the major moments in the life of Oscar Pistorius, the South African double-amputee Olympic runner who was released from prison on parole Friday having served nearly nine years of a murder sentence for the 2013 killing of girlfriend Reeva Steenkamp", + "guid": "b2473784", + "isoDate": "2024-01-05T12:42:25.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-05T12:42:09+00:00", + "title": "Chelsea ban season-ticket holder who barged into Newcastle goalkeeper Martin Dubravka", + "link": "https://www.independent.co.uk/sport/football/chelsea-newcastle-pitch-invader-dubravka-ban-b2473782.html", + "pubDate": "Fri, 05 Jan 2024 12:42:09 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-05T12:42:09+00:00", + "content": "

The fan took to the pitch at Stamford Bridge after his side\u2019s late equaliser in the Carabao Cup quarter-final

", + "contentSnippet": "The fan took to the pitch at Stamford Bridge after his side\u2019s late equaliser in the Carabao Cup quarter-final", + "guid": "b2473782", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T12:42:09.000Z" + }, + { + "creator": "Rob Freeman", + "date": "2024-01-05T12:41:26+00:00", + "title": "David Warner finally reunited with stolen Australian cricket cap after prime minister\u2019s help", + "link": "https://www.independent.co.uk/sport/cricket/david-warner-baggy-green-cap-australia-b2473683.html", + "pubDate": "Fri, 05 Jan 2024 12:41:26 GMT", + "dc:creator": "Rob Freeman", + "dc:date": "2024-01-05T12:41:26+00:00", + "content": "

The opener revealed the missing cap had been returned midway through his final Test match

", + "contentSnippet": "The opener revealed the missing cap had been returned midway through his final Test match", + "guid": "b2473581", + "categories": ["Cricket", "Sport"], + "isoDate": "2024-01-05T12:41:26.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-05T12:38:52+00:00", + "title": "Sophie Ellis-Bextor reveals her teenage son watched Saltburn with her", + "link": "https://www.independent.co.uk/tv/culture/saltburn-sophie-ellis-bextor-murder-dancefloor-b2473720.html", + "pubDate": "Fri, 05 Jan 2024 12:38:52 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-05T12:38:52+00:00", + "content": "

Sophie Ellis-Bextor said she watched Saltburn with her teenage son sat between her and his grandmother.

", + "contentSnippet": "Sophie Ellis-Bextor said she watched Saltburn with her teenage son sat between her and his grandmother.", + "guid": "b2473720", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-05T12:38:52.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-05T12:37:00+00:00", + "title": "Major supermarkets to reveal festive sales after bumper Christmas for rivals", + "link": "https://www.independent.co.uk/business/major-supermarkets-to-reveal-festive-sales-after-bumper-christmas-for-rivals-b2473779.html", + "pubDate": "Fri, 05 Jan 2024 12:37:00 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-05T12:37:00+00:00", + "content": "Sainsbury\u2019s, Tesco and Marks & Spencer will give investors an update on their recent sales.", + "contentSnippet": "Sainsbury\u2019s, Tesco and Marks & Spencer will give investors an update on their recent sales.", + "guid": "b2473779", + "categories": ["Business"], + "isoDate": "2024-01-05T12:37:00.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-05T12:35:50+00:00", + "title": "New Zealand MP performs haka in powerful maiden speech, resurfaced video shows", + "link": "https://www.independent.co.uk/tv/news/new-zealand-haka-parliament-maori-b2473725.html", + "pubDate": "Fri, 05 Jan 2024 12:35:50 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-05T12:35:50+00:00", + "content": "

A New Zealand MP performed a haka in a powerful speech for her first appearance in parliament, resurfaced video shows.

", + "contentSnippet": "A New Zealand MP performed a haka in a powerful speech for her first appearance in parliament, resurfaced video shows.", + "guid": "b2473725", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-05T12:35:50.000Z" + }, + { + "creator": "Tom Harle", + "date": "2024-01-05T12:32:13+00:00", + "title": "Dame Sarah Storey reveals how her son convinced her to target a ninth Paralympics", + "link": "https://www.independent.co.uk/sport/olympics/paralympics/dame-sarah-storey-paralympics-paris-2024-b2473760.html", + "pubDate": "Fri, 05 Jan 2024 12:32:13 GMT", + "dc:creator": "Tom Harle", + "dc:date": "2024-01-05T12:32:13+00:00", + "content": "

Great Britain\u2019s most-decorated Paralympian will try to add to her 17 gold medals at Paris 2024 \u2013 and the 46-year-old has her children to thank

", + "contentSnippet": "Great Britain\u2019s most-decorated Paralympian will try to add to her 17 gold medals at Paris 2024 \u2013 and the 46-year-old has her children to thank", + "guid": "b2473760", + "categories": ["Paralympics", "Olympics", "Sport"], + "isoDate": "2024-01-05T12:32:13.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-05T12:30:45+00:00", + "title": "Watch live: Oscar Pistorius to be seen for first time since prison release 11 years after Reeva Steenkamp murder", + "link": "https://www.independent.co.uk/news/oscar-pistorius-prison-release-livestream-b2473772.html", + "pubDate": "Fri, 05 Jan 2024 12:30:45 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-05T12:30:45+00:00", + "content": "

Watch live as Oscar Pistorius to be seen for first time since prison release 11 years after Reeva Steenkamp murder on Friday (5 January).

", + "contentSnippet": "Watch live as Oscar Pistorius to be seen for first time since prison release 11 years after Reeva Steenkamp murder on Friday (5 January).", + "guid": "b2473772", + "isoDate": "2024-01-05T12:30:45.000Z" + }, + { + "creator": "Martha McHardy", + "date": "2024-01-05T12:30:31+00:00", + "title": "Iowa school shooter\u2019s chilling final social media post revealed", + "link": "https://www.independent.co.uk/news/world/americas/crime/iowa-school-shooting-dylan-butler-final-post-b2473769.html", + "pubDate": "Fri, 05 Jan 2024 12:30:31 GMT", + "dc:creator": "Martha McHardy", + "dc:date": "2024-01-05T12:30:31+00:00", + "content": "

Dylan Butler, 17, was named as the gunman who opened fire in Perry High School in Iowa on Thursday

", + "contentSnippet": "Dylan Butler, 17, was named as the gunman who opened fire in Perry High School in Iowa on Thursday", + "guid": "b2473769", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-05T12:30:31.000Z" + }, + { + "creator": "Helen Wilson-Beevers", + "date": "2024-01-05T12:30:05+00:00", + "title": "14 best sunscreens for sensitive skin to protect you from UV rays", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/skincare/best-sunscreen-sensitive-skin-b1858138.html", + "pubDate": "Fri, 05 Jan 2024 12:30:05 GMT", + "dc:creator": "Helen Wilson-Beevers", + "dc:date": "2024-01-05T12:30:05+00:00", + "content": "

Look to these soothing SPF formulas that\u2019ll keep skin happy year-round

", + "contentSnippet": "Look to these soothing SPF formulas that\u2019ll keep skin happy year-round", + "guid": "b1858138", + "categories": ["Skincare", "Fashion & Beauty", "IndyBest", "Extras"], + "isoDate": "2024-01-05T12:30:05.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2024-01-05T12:29:16+00:00", + "title": "In pictures: Storm Henk wreaks flood chaos across the UK", + "link": "https://www.independent.co.uk/news/uk/home-news/storm-henk-flood-map-uk-b2473734.html", + "pubDate": "Fri, 05 Jan 2024 12:29:16 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2024-01-05T12:29:16+00:00", + "content": "

Environment Agency issues more than 300 flood warnings after torrential downpours overnight on Thursday

", + "contentSnippet": "Environment Agency issues more than 300 flood warnings after torrential downpours overnight on Thursday", + "guid": "b2473734", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-05T12:29:16.000Z" + }, + { + "creator": "The Associated Press", + "date": "2024-01-05T12:28:11+00:00", + "title": "Ukraine unleashes more drones and missiles at Russian areas as part of its new year strategy", + "link": "https://www.independent.co.uk/news/ukraine-ap-kyiv-crimea-moscow-b2473775.html", + "pubDate": "Fri, 05 Jan 2024 12:28:11 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2024-01-05T12:28:11+00:00", + "content": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", + "contentSnippet": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", + "guid": "b2473775", + "isoDate": "2024-01-05T12:28:11.000Z" + }, + { + "creator": "Tamara Hinson", + "date": "2024-01-05T12:26:29+00:00", + "title": "9 best packing cubes to help keep your suitcase organised while travelling", + "link": "https://www.independent.co.uk/extras/indybest/travel-outdoors/best-packing-cubes-suitcase-b1805563.html", + "pubDate": "Fri, 05 Jan 2024 12:26:29 GMT", + "dc:creator": "Tamara Hinson", + "dc:date": "2024-01-05T12:26:29+00:00", + "content": "

These luggage lifesavers are the perfect companion for your next trip

", + "contentSnippet": "These luggage lifesavers are the perfect companion for your next trip", + "guid": "b1805563", + "categories": ["Travel & outdoors", "IndyBest", "Extras"], + "isoDate": "2024-01-05T12:26:29.000Z" + }, + { + "creator": "Alex Ross", + "date": "2024-01-05T12:25:49+00:00", + "title": "Meet the man driving across the country to \u2018rescue\u2019 XL bully dogs ", + "link": "https://www.independent.co.uk/news/uk/home-news/xl-bully-dog-ban-rehome-b2473759.html", + "pubDate": "Fri, 05 Jan 2024 12:25:49 GMT", + "dc:creator": "Alex Ross", + "dc:date": "2024-01-05T12:25:49+00:00", + "content": "

Sammy Wilkinson has driven as far as Scotland from his West Midlands home to rehoming 35 XL Bully dogs since October

", + "contentSnippet": "Sammy Wilkinson has driven as far as Scotland from his West Midlands home to rehoming 35 XL Bully dogs since October", + "guid": "b2473759", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-05T12:25:49.000Z" + }, + { + "creator": "Rachael Phillips", + "date": "2024-01-05T12:24:19+00:00", + "title": "17 best kitchen knife sets for sharpening your culinary skills", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/kitchen-accessories/best-kitchen-knife-block-set-japanese-steel-budget-a9118261.html", + "pubDate": "Fri, 05 Jan 2024 12:24:19 GMT", + "dc:creator": "Rachael Phillips", + "dc:date": "2024-01-05T12:24:19+00:00", + "content": "

From Japanese steel to carbon and stainless, carve out a space for these high-quality blades

", + "contentSnippet": "From Japanese steel to carbon and stainless, carve out a space for these high-quality blades", + "guid": "a9118261", + "categories": [ + "Kitchen Accessories", + "Home & Garden", + "IndyBest", + "Extras" + ], + "isoDate": "2024-01-05T12:24:19.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-05T12:21:47+00:00", + "title": "Former detective details prison phone calls with Oscar Pistorius", + "link": "https://www.independent.co.uk/tv/news/oscar-pistorius-reeva-steencamp-prison-phone-calls-b2473756.html", + "pubDate": "Fri, 05 Jan 2024 12:21:47 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-05T12:21:47+00:00", + "content": "

A former detective and investigative journalist has detailed his prison phone calls with Oscar Pistorius.

", + "contentSnippet": "A former detective and investigative journalist has detailed his prison phone calls with Oscar Pistorius.", + "guid": "b2473756", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-05T12:21:47.000Z" + }, + { + "creator": "Zoe Phillimore", + "date": "2024-01-05T12:21:33+00:00", + "title": "13 best home security cameras to give you peace of mind", + "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/best-home-security-cameras-b1987806.html", + "pubDate": "Fri, 05 Jan 2024 12:21:33 GMT", + "dc:creator": "Zoe Phillimore", + "dc:date": "2024-01-05T12:21:33+00:00", + "content": "

Choose from indoor and outdoor devices to help keep an eye on the fort while you\u2019re away

", + "contentSnippet": "Choose from indoor and outdoor devices to help keep an eye on the fort while you\u2019re away", + "guid": "b1987806", + "categories": ["Tech", "IndyBest", "Extras"], + "isoDate": "2024-01-05T12:21:33.000Z" + }, + { + "creator": "Grant Peck", + "date": "2024-01-05T12:18:59+00:00", + "title": "Armed ethnic alliance in northern Myanmar is said to have seized a city that was a key goal", + "link": "https://www.independent.co.uk/news/ap-myanmar-china-bangkok-rakhine-state-b2473771.html", + "pubDate": "Fri, 05 Jan 2024 12:18:59 GMT", + "dc:creator": "Grant Peck", + "dc:date": "2024-01-05T12:18:59+00:00", + "content": "An alliance of ethnic armed groups in northeastern Myanmar has reportedly achieved one of the main goals it set when it launched an offensive last October by taking control of Laukkaing, a key city on the border with China", + "contentSnippet": "An alliance of ethnic armed groups in northeastern Myanmar has reportedly achieved one of the main goals it set when it launched an offensive last October by taking control of Laukkaing, a key city on the border with China", + "guid": "b2473771", + "isoDate": "2024-01-05T12:18:59.000Z" + }, + { + "creator": "Martha Alexander", + "date": "2024-01-05T12:16:12+00:00", + "title": " 19 best gifts and toys for six-year-olds to inspire fun and learning", + "link": "https://www.independent.co.uk/extras/indybest/kids/gifts/best-gifts-for-six-year-olds-girls-boys-b1925755.html", + "pubDate": "Fri, 05 Jan 2024 12:16:12 GMT", + "dc:creator": "Martha Alexander", + "dc:date": "2024-01-05T12:16:12+00:00", + "content": "

We\u2019ve compiled this handy guide to help you buy the right gift for a six-year-old

", + "contentSnippet": "We\u2019ve compiled this handy guide to help you buy the right gift for a six-year-old", + "guid": "b1925755", + "categories": ["Gifts", "Kids", "IndyBest", "Extras"], + "isoDate": "2024-01-05T12:16:12.000Z" + }, + { + "creator": "Carl Markham", + "date": "2024-01-05T12:08:10+00:00", + "title": "Jurgen Klopp happy for Mohamed Salah and Wataru Endo\u2019s absences to be minimum", + "link": "https://www.independent.co.uk/sport/football/mohamed-salah-jurgen-klopp-egypt-japan-dominik-szoboszlai-b2473724.html", + "pubDate": "Fri, 05 Jan 2024 12:08:10 GMT", + "dc:creator": "Carl Markham", + "dc:date": "2024-01-05T12:08:10+00:00", + "content": "Salah is away with Egypt in the African Nations Cup, while Japan captain Endo is at the Asian Cup.", + "contentSnippet": "Salah is away with Egypt in the African Nations Cup, while Japan captain Endo is at the Asian Cup.", + "guid": "b2473724", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T12:08:10.000Z" + }, + { + "creator": "Alex Lee", + "date": "2024-01-05T12:05:23+00:00", + "title": "Best iPad deals January 2024: Offers on Apple\u2019s Pro, Air and Mini tablets", + "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/laptops-tablets/best-ipad-deals-cheap-offers-b2023092.html", + "pubDate": "Fri, 05 Jan 2024 12:05:23 GMT", + "dc:creator": "Alex Lee", + "dc:date": "2024-01-05T12:05:23+00:00", + "content": "

We\u2019ve searched for the cheapest prices on Apple tablets, so you don\u2019t have to

", + "contentSnippet": "We\u2019ve searched for the cheapest prices on Apple tablets, so you don\u2019t have to", + "guid": "b2023092", + "categories": ["Laptops & Tablets", "Tech", "IndyBest", "Extras"], + "isoDate": "2024-01-05T12:05:23.000Z" + }, + { + "creator": "Tara Cobham", + "date": "2024-01-05T12:04:02+00:00", + "title": "Two teenagers arrested on suspicion of murder after Harry Pitman stabbed to death at NYE fireworks", + "link": "https://www.independent.co.uk/news/uk/crime/london-stabbing-harry-pitman-suspect-arrest-b2473681.html", + "pubDate": "Fri, 05 Jan 2024 12:04:02 GMT", + "dc:creator": "Tara Cobham", + "dc:date": "2024-01-05T12:04:02+00:00", + "content": "

The 16-year-old died in a \u2018spontaneous fight\u2019 as crowds gathered in Primrose Hill

", + "contentSnippet": "The 16-year-old died in a \u2018spontaneous fight\u2019 as crowds gathered in Primrose Hill", + "guid": "b2473681", + "categories": ["Crime", "UK"], + "isoDate": "2024-01-05T12:04:02.000Z" + }, + { + "creator": "Arpan Rai", + "date": "2024-01-05T11:57:00+00:00", + "title": "Haneda airport crew remove charred wreckage of Japan Airlines plane from runway", + "link": "https://www.independent.co.uk/asia/japan/japan-plane-crash-haneda-airport-runway-clear-b2473743.html", + "pubDate": "Fri, 05 Jan 2024 11:57:00 GMT", + "dc:creator": "Arpan Rai", + "dc:date": "2024-01-05T11:57:00+00:00", + "content": "

Investigators also trying to retrieve plane\u2019s cockpit voice recorder to find clues leading to deadly collision with Coast Guard aircraft

", + "contentSnippet": "Investigators also trying to retrieve plane\u2019s cockpit voice recorder to find clues leading to deadly collision with Coast Guard aircraft", + "guid": "b2473743", + "categories": ["Japan", "Asia"], + "isoDate": "2024-01-05T11:57:00.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-05T11:56:48+00:00", + "title": "Sky News presenter tells teenager who beat Tetris \u2018go outside and get fresh air\u2019", + "link": "https://www.independent.co.uk/tv/culture/sky-news-presenter-tetris-teenager-b2473729.html", + "pubDate": "Fri, 05 Jan 2024 11:56:48 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-05T11:56:48+00:00", + "content": "

A Sky News presenter tells a teenager who broke a Tetris record \"go outside\" and \"get some fresh air\".

", + "contentSnippet": "A Sky News presenter tells a teenager who broke a Tetris record \"go outside\" and \"get some fresh air\".", + "guid": "b2473729", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-05T11:56:48.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2024-01-05T11:53:54+00:00", + "title": "Indian Navy deploys warship after hijack bid on Liberia-flagged bulk carrier", + "link": "https://www.independent.co.uk/asia/india/indian-navy-patrol-somalia-coast-hijack-mv-lila-norfolk-b2473692.html", + "pubDate": "Fri, 05 Jan 2024 11:53:54 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2024-01-05T11:53:54+00:00", + "content": "

All 15 Indian crew members on board the vessel are safe

", + "contentSnippet": "All 15 Indian crew members on board the vessel are safe", + "guid": "b2473692", + "categories": ["India", "Asia"], + "isoDate": "2024-01-05T11:53:54.000Z" + }, + { + "creator": "Chris Wilson", + "date": "2024-01-05T11:53:07+00:00", + "title": "7 of the best countries to visit in South America", + "link": "https://www.independent.co.uk/travel/south-america/best-countries-visit-south-america-b2472253.html", + "pubDate": "Fri, 05 Jan 2024 11:53:07 GMT", + "dc:creator": "Chris Wilson", + "dc:date": "2024-01-05T11:53:07+00:00", + "content": "

This continent contains some of the world\u2019s most amazing natural landscapes, enchanting cities and a fascinating history

", + "contentSnippet": "This continent contains some of the world\u2019s most amazing natural landscapes, enchanting cities and a fascinating history", + "guid": "b2472253", + "categories": ["South America", "Travel"], + "isoDate": "2024-01-05T11:53:07.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-05T11:48:35+00:00", + "title": "Kate Garraway gives update on Derek Draper\u2019s health in last interview before his death", + "link": "https://www.independent.co.uk/tv/culture/derek-draper-dead-kate-garraway-interview-b2473744.html", + "pubDate": "Fri, 05 Jan 2024 11:48:35 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-05T11:48:35+00:00", + "content": "

Kate Garraway has revealed husband Derek Draper is back in hospital as she shared an update on his health.

", + "contentSnippet": "Kate Garraway has revealed husband Derek Draper is back in hospital as she shared an update on his health.", + "guid": "b2452766", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-05T11:48:35.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-05T11:48:00+00:00", + "title": "Sunderland apologizes to its fans for rebranding stadium bar in Newcastle colors for FA Cup game", + "link": "https://www.independent.co.uk/news/sunderland-ap-newcastle-england-stadium-of-light-b2473752.html", + "pubDate": "Fri, 05 Jan 2024 11:48:00 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-05T11:48:00+00:00", + "content": "Sunderland has scored a spectacular own-goal off the field well before its FA Cup showdown with archrival Newcastle", + "contentSnippet": "Sunderland has scored a spectacular own-goal off the field well before its FA Cup showdown with archrival Newcastle", + "guid": "b2473752", + "isoDate": "2024-01-05T11:48:00.000Z" + }, + { + "creator": "Damian Spellman", + "date": "2024-01-05T11:45:45+00:00", + "title": "Eddie Howe not worried about job security as Newcastle prepare for derby day", + "link": "https://www.independent.co.uk/sport/football/eddie-howe-sunderland-tyneside-champions-league-stadium-of-light-b2473749.html", + "pubDate": "Fri, 05 Jan 2024 11:45:45 GMT", + "dc:creator": "Damian Spellman", + "dc:date": "2024-01-05T11:45:45+00:00", + "content": "The Magpies have won only one of their last eight games and face Sunderland next.", + "contentSnippet": "The Magpies have won only one of their last eight games and face Sunderland next.", + "guid": "b2473749", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:45:45.000Z" + }, + { + "creator": "Adam Forrest", + "date": "2024-01-05T11:40:00+00:00", + "title": "Starmer suggests no tax cuts for two years under Labour without economic growth", + "link": "https://www.independent.co.uk/news/uk/politics/starmer-labour-tax-cuts-tories-election-b2473717.html", + "pubDate": "Fri, 05 Jan 2024 11:40:00 GMT", + "dc:creator": "Adam Forrest", + "dc:date": "2024-01-05T11:40:00+00:00", + "content": "

Labour leader says growth must come first, and concedes his \u00a328bn green energy investment could shrink

", + "contentSnippet": "Labour leader says growth must come first, and concedes his \u00a328bn green energy investment could shrink", + "guid": "b2473717", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-05T11:40:00.000Z" + }, + { + "creator": "Maanya Sachdeva", + "date": "2024-01-05T11:36:28+00:00", + "title": "Derek Draper death: Kate Garraway\u2019s husband dies after devastating Covid battle, aged 56", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/derek-draper-dead-kate-garraway-husband-covid-b2467103.html", + "pubDate": "Fri, 05 Jan 2024 11:36:28 GMT", + "dc:creator": "Maanya Sachdeva", + "dc:date": "2024-01-05T11:36:28+00:00", + "content": "

Former Labour party adviser was \u2018fighting for his life\u2019 in hospital after a cardiac arrest

", + "contentSnippet": "Former Labour party adviser was \u2018fighting for his life\u2019 in hospital after a cardiac arrest", + "guid": "b2467103", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-05T11:36:28.000Z" + }, + { + "creator": "Damian Spellman", + "date": "2024-01-05T11:34:07+00:00", + "title": "Eddie Howe reacts to \u2018inappropriate\u2019 bar blunder overshadowing Tyne-Wear derby", + "link": "https://www.independent.co.uk/sport/football/sunderland-newcastle-colours-bar-derby-eddie-howe-b2473735.html", + "pubDate": "Fri, 05 Jan 2024 11:34:07 GMT", + "dc:creator": "Damian Spellman", + "dc:date": "2024-01-05T11:34:07+00:00", + "content": "

Sunderland have apologised to fans after a bar at the Stadium of Light was decked out with \u2018inappropriate signage\u2019 in Newcastle colours ahead of the derby this weekend

", + "contentSnippet": "Sunderland have apologised to fans after a bar at the Stadium of Light was decked out with \u2018inappropriate signage\u2019 in Newcastle colours ahead of the derby this weekend", + "guid": "b2473731", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:34:07.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-05T11:30:33+00:00", + "title": "Davina McCall reveals she cried as friend unveiled as The Masked Singer character", + "link": "https://www.independent.co.uk/tv/culture/masked-singer-davina-mccall-cries-b2473696.html", + "pubDate": "Fri, 05 Jan 2024 11:30:33 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-05T11:30:33+00:00", + "content": "

Davina McCall has revealed she cried when discovering her friend was unveiled as a character on ITV\u2019s The Masked Singer.

", + "contentSnippet": "Davina McCall has revealed she cried when discovering her friend was unveiled as a character on ITV\u2019s The Masked Singer.", + "guid": "b2473696", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-05T11:30:33.000Z" + }, + { + "creator": "Tara Cobham", + "date": "2024-01-05T11:20:44+00:00", + "title": "Passenger \u2018found dead in bathroom\u2019 on flight from Tenerife to Manchester", + "link": "https://www.independent.co.uk/travel/news-and-advice/jet2-flight-dead-passenger-manchester-tenerife-b2473721.html", + "pubDate": "Fri, 05 Jan 2024 11:20:44 GMT", + "dc:creator": "Tara Cobham", + "dc:date": "2024-01-05T11:20:44+00:00", + "content": "

Fellow travellers reportedly noticed the toilet door had been locked for a while and alerted staff

", + "contentSnippet": "Fellow travellers reportedly noticed the toilet door had been locked for a while and alerted staff", + "guid": "b2473721", + "categories": ["News & Advice", "Travel"], + "isoDate": "2024-01-05T11:20:44.000Z" + }, + { + "creator": "Paul Wiseman", + "date": "2024-01-05T11:16:35+00:00", + "title": "Jobs report for December will likely conclude another solid year of hiring in 2023", + "link": "https://www.independent.co.uk/news/ap-jerome-powell-washington-americans-federal-reserve-b2473619.html", + "pubDate": "Fri, 05 Jan 2024 11:16:35 GMT", + "dc:creator": "Paul Wiseman", + "dc:date": "2024-01-05T11:16:35+00:00", + "content": "Bringing resurgent inflation down was never expected to be so relatively pain-free", + "contentSnippet": "Bringing resurgent inflation down was never expected to be so relatively pain-free", + "guid": "b2473619", + "isoDate": "2024-01-05T11:16:35.000Z" + }, + { + "creator": "Jake Offenhartz", + "date": "2024-01-05T11:16:14+00:00", + "title": "New York City is suing charter bus companies for transporting migrants from Texas", + "link": "https://www.independent.co.uk/news/greg-abbott-ap-texas-new-york-city-eric-adams-b2473589.html", + "pubDate": "Fri, 05 Jan 2024 11:16:14 GMT", + "dc:creator": "Jake Offenhartz", + "dc:date": "2024-01-05T11:16:14+00:00", + "content": "New York City is suing more than a dozen charter bus companies for their role in Texas Gov. Greg Abbott\u2019s operation to send tens of thousands of migrants to urban areas", + "contentSnippet": "New York City is suing more than a dozen charter bus companies for their role in Texas Gov. Greg Abbott\u2019s operation to send tens of thousands of migrants to urban areas", + "guid": "b2473589", + "isoDate": "2024-01-05T11:16:14.000Z" + }, + { + "creator": "Andy Gregory", + "date": "2024-01-05T11:14:31+00:00", + "title": "Mortgages \u2013 live: Price war to hit banks as rates fall below 4%", + "link": "https://www.independent.co.uk/news/uk/home-news/mortgage-deals-banks-natwest-latest-b2473690.html", + "pubDate": "Fri, 05 Jan 2024 11:14:31 GMT", + "dc:creator": "Andy Gregory", + "dc:date": "2024-01-05T11:14:31+00:00", + "content": "

House prices rose by 1.7 per cent in 2023, index finds, as NatWest boss claims it\u2019s not \u2018that difficult\u2019 to get onto housing ladder

", + "contentSnippet": "House prices rose by 1.7 per cent in 2023, index finds, as NatWest boss claims it\u2019s not \u2018that difficult\u2019 to get onto housing ladder", + "guid": "b2473690", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-05T11:14:31.000Z" + }, + { + "creator": "Namita Singh and Holly Evans", + "date": "2024-01-05T11:14:14+00:00", + "title": "Oscar Pistorius released on parole and at home 11 years after murdering Reeva Steenkamp - live", + "link": "https://www.independent.co.uk/news/world/crime/oscar-pistorius-release-reeva-steenkamp-latest-b2473623.html", + "pubDate": "Fri, 05 Jan 2024 11:14:14 GMT", + "dc:creator": "Namita Singh and Holly Evans", + "dc:date": "2024-01-05T11:14:14+00:00", + "content": "

Pistorius admitted to system of community corrections and is now at home

", + "contentSnippet": "Pistorius admitted to system of community corrections and is now at home", + "guid": "b2473325", + "categories": ["World - Crime", "World"], + "isoDate": "2024-01-05T11:14:14.000Z" + }, + { + "creator": "Joe Sommerlad", + "date": "2024-01-05T11:10:18+00:00", + "title": "Nikki Haley digs another hole over Civil War comments: \u2018I had Black friends growing up\u2019", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/nikki-haley-civil-war-slavery-cnn-town-hall-b2473704.html", + "pubDate": "Fri, 05 Jan 2024 11:10:18 GMT", + "dc:creator": "Joe Sommerlad", + "dc:date": "2024-01-05T11:10:18+00:00", + "content": "

The Republican candidate appeared on stage at a CNN town hall on Thursday night where her attempt to address her slavery omission was likened to \u2018cleaning up with a dirty rag\u2019

", + "contentSnippet": "The Republican candidate appeared on stage at a CNN town hall on Thursday night where her attempt to address her slavery omission was likened to \u2018cleaning up with a dirty rag\u2019", + "guid": "b2473704", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-05T11:10:18.000Z" + }, + { + "creator": "Richard Jolly", + "date": "2024-01-05T11:07:14+00:00", + "title": "Liverpool give update on Dominik Szoboszlai injury", + "link": "https://www.independent.co.uk/sport/football/dominik-szoboszlai-injury-liverpool-jurgen-klopp-b2473728.html", + "pubDate": "Fri, 05 Jan 2024 11:07:14 GMT", + "dc:creator": "Richard Jolly", + "dc:date": "2024-01-05T11:07:14+00:00", + "content": "

Midfielder Szoboszlai hurt his hamstring in the New Year\u2019s Day win over Newcastle

", + "contentSnippet": "Midfielder Szoboszlai hurt his hamstring in the New Year\u2019s Day win over Newcastle", + "guid": "b2473728", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:07:14.000Z" + }, + { + "creator": "Ellie Muir", + "date": "2024-01-05T11:06:36+00:00", + "title": "HMRC rolls out \u2018side hustle tax\u2019 for online sellers on eBay, Vinted and more", + "link": "https://www.independent.co.uk/life-style/vinted-depop-ebay-hmrc-tax-how-much-b2472249.html", + "pubDate": "Fri, 05 Jan 2024 11:06:36 GMT", + "dc:creator": "Ellie Muir", + "dc:date": "2024-01-05T11:06:36+00:00", + "content": "

Dgital platforms such as eBay, Airbnb, Etsy, Amazon and Vinted must now share seller information with HMRC

", + "contentSnippet": "Dgital platforms such as eBay, Airbnb, Etsy, Amazon and Vinted must now share seller information with HMRC", + "guid": "b2472249", + "categories": ["Lifestyle"], + "isoDate": "2024-01-05T11:06:36.000Z" + }, + { + "creator": "Adam Forrest and Laura Elston", + "date": "2024-01-05T11:04:49+00:00", + "title": "Keir Starmer says police should be willing to look into Prince Andrew allegations", + "link": "https://www.independent.co.uk/news/uk/politics/starmer-prince-andrew-epstein-police-b2473726.html", + "pubDate": "Fri, 05 Jan 2024 11:04:49 GMT", + "dc:creator": "Adam Forrest and Laura Elston", + "dc:date": "2024-01-05T11:04:49+00:00", + "content": "

Investigators should look at victims\u2019 claims \u2018whoever\u2019 is accused, says Labour leader

", + "contentSnippet": "Investigators should look at victims\u2019 claims \u2018whoever\u2019 is accused, says Labour leader", + "guid": "b2473726", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-05T11:04:49.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-05T10:59:52+00:00", + "title": "David Tennant hails \u2018honour\u2019 of being selected as 2024 Baftas host", + "link": "https://www.independent.co.uk/tv/culture/baftas-2024-david-tennant-host-b2473714.html", + "pubDate": "Fri, 05 Jan 2024 10:59:52 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-05T10:59:52+00:00", + "content": "

David Tennant has spoken of the \"honour\" of being selected as the host for the 2024 Baftas.

", + "contentSnippet": "David Tennant has spoken of the \"honour\" of being selected as the host for the 2024 Baftas.", + "guid": "b2473714", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-05T10:59:52.000Z" + }, + { + "creator": "Anthony Cuthbertson", + "date": "2024-01-05T10:55:04+00:00", + "title": "Hackers discover way to access Google accounts without a password", + "link": "https://www.independent.co.uk/tech/google-security-hack-cookies-password-b2473319.html", + "pubDate": "Fri, 05 Jan 2024 10:55:04 GMT", + "dc:creator": "Anthony Cuthbertson", + "dc:date": "2024-01-05T10:55:04+00:00", + "content": "

\u2018Exploit enables continuous access to Google services, even after a user\u2019s password is reset,\u2019 researcher warns

", + "contentSnippet": "\u2018Exploit enables continuous access to Google services, even after a user\u2019s password is reset,\u2019 researcher warns", + "guid": "b2473319", + "categories": ["Tech"], + "isoDate": "2024-01-05T10:55:04.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-05T10:53:51+00:00", + "title": "Spice Girls star on Royal Mail stamps for 30th anniversary celebrations", + "link": "https://www.independent.co.uk/tv/culture/spice-girls-royal-mail-stamps-30th-anniversary-b2473705.html", + "pubDate": "Fri, 05 Jan 2024 10:53:51 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-05T10:53:51+00:00", + "content": "

A new set of stamps will come with a special dose of zig-a-zig ah as they celebrate the 30th anniversary of the Spice Girls.

", + "contentSnippet": "A new set of stamps will come with a special dose of zig-a-zig ah as they celebrate the 30th anniversary of the Spice Girls.", + "guid": "b2473705", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-05T10:53:51.000Z" + }, + { + "creator": "Richard Franks", + "date": "2024-01-05T10:53:11+00:00", + "title": "How to spend a day in Haight-Ashbury, San Francisco\u2019s historic home of counterculture", + "link": "https://www.independent.co.uk/travel/north-america/usa/california/haight-ashbury-san-francisco-guide-b2473303.html", + "pubDate": "Fri, 05 Jan 2024 10:53:11 GMT", + "dc:creator": "Richard Franks", + "dc:date": "2024-01-05T10:53:11+00:00", + "content": "

The Summer of Love bestowed this district with its bone fide cool factor in the 1960s, but Richard Franks discovers that it still remains in hipster stores, diverse places to eat and on-trend bars

", + "contentSnippet": "The Summer of Love bestowed this district with its bone fide cool factor in the 1960s, but Richard Franks discovers that it still remains in hipster stores, diverse places to eat and on-trend bars", + "guid": "b2473303", + "categories": ["California", "USA", "North America", "Travel"], + "isoDate": "2024-01-05T10:53:11.000Z" + }, + { + "creator": "Sabine Wiesel", + "date": "2024-01-05T10:50:39+00:00", + "title": "12 best hair straighteners, tried and tested for every hair type and budget", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/hair/best-hair-straighteners-a9548571.html", + "pubDate": "Fri, 05 Jan 2024 10:50:39 GMT", + "dc:creator": "Sabine Wiesel", + "dc:date": "2024-01-05T10:50:39+00:00", + "content": "

Our beauty expert reviewed top-rated hair straighteners for salon-worthy results

", + "contentSnippet": "Our beauty expert reviewed top-rated hair straighteners for salon-worthy results", + "guid": "a9548571", + "categories": ["Hair", "Fashion & Beauty", "IndyBest", "Extras"], + "isoDate": "2024-01-05T10:50:39.000Z" + }, + { + "creator": "Andrea Blanco", + "date": "2024-01-05T00:06:15+00:00", + "title": "Clinton, Vanity Fair and Giuffre\u2019s memoir: Second batch of Epstein documents unsealed", + "link": "https://www.independent.co.uk/news/world/americas/jeffrey-epstein-documents-second-b2473572.html", + "pubDate": "Fri, 05 Jan 2024 00:06:15 GMT", + "dc:creator": "Andrea Blanco", + "dc:date": "2024-01-05T00:06:15+00:00", + "content": "

More than 300 pages stemming from a 2015 lawsuit between Virginia Giuffre and Ghislaine Maxwell were unsealed on Thursday

", + "contentSnippet": "More than 300 pages stemming from a 2015 lawsuit between Virginia Giuffre and Ghislaine Maxwell were unsealed on Thursday", + "guid": "b2473572", + "categories": ["Americas", "World"], + "isoDate": "2024-01-05T00:06:15.000Z" + }, + { + "creator": "Maryam Zakir-Hussain", + "date": "2024-01-04T22:17:44+00:00", + "title": "Torrential rain lashes UK as flash flooding forces residents to evacuate", + "link": "https://www.independent.co.uk/weather/flood-weather-storm-henk-rain-b2473519.html", + "pubDate": "Thu, 04 Jan 2024 22:17:44 GMT", + "dc:creator": "Maryam Zakir-Hussain", + "dc:date": "2024-01-04T22:17:44+00:00", + "content": "

Yellow weather warning remains in place until 3am on Friday

", + "contentSnippet": "Yellow weather warning remains in place until 3am on Friday", + "guid": "b2473519", + "categories": ["Weather"], + "isoDate": "2024-01-04T22:17:44.000Z" + }, + { + "creator": "Samuel Mathewson ", + "date": "2023-12-15T12:03:00+00:00", + "title": "Best men\u2019s knitwear 2024, from cardigans to cashmere", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/mens-clothing/best-mens-knitwear-b2461690.html", + "pubDate": "Fri, 15 Dec 2023 12:03:00 GMT", + "dc:creator": "Samuel Mathewson ", + "dc:date": "2023-12-15T12:03:00+00:00", + "content": "

From patterned and colourful to timeless classics, here\u2019s the best men\u2019s knitwear for winter dressing

", + "contentSnippet": "From patterned and colourful to timeless classics, here\u2019s the best men\u2019s knitwear for winter dressing", + "guid": "b2461690", + "categories": [ + "Men's Clothing", + "Fashion & Beauty", + "IndyBest", + "Extras" + ], + "isoDate": "2023-12-15T12:03:00.000Z" + }, + { + "creator": "Daisy Lester", + "date": "2022-11-03T16:47:54+00:00", + "title": "Best blanket hoodies for hunkering down this winter", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/best-blanket-hoodies-hooded-sleeves-uk-b2216712.html", + "pubDate": "Thu, 03 Nov 2022 16:47:54 GMT", + "dc:creator": "Daisy Lester", + "dc:date": "2022-11-03T16:47:54+00:00", + "content": "

An oversized wearable throw is a cost-effective way to keep warm

", + "contentSnippet": "An oversized wearable throw is a cost-effective way to keep warm", + "guid": "b2216712", + "categories": ["Home & Garden", "IndyBest", "Extras"], + "isoDate": "2022-11-03T16:47:54.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2024-01-05T13:59:15+00:00", + "title": "How a couple recovered $3,550 cash after Cecil the dog ate it: \u2018It smelled so bad\u2019", + "link": "https://www.independent.co.uk/news/world/americas/cecil-dog-ate-cash-pennsylvania-b2473816.html", + "pubDate": "Fri, 05 Jan 2024 13:59:15 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2024-01-05T13:59:15+00:00", + "content": "

Cecil the dog, who previously had \u2018never done anything bad in his life\u2019, was reportedly not hurt after his expensive meal on Friday

", + "contentSnippet": "Cecil the dog, who previously had \u2018never done anything bad in his life\u2019, was reportedly not hurt after his expensive meal on Friday", + "guid": "b2473476", + "categories": ["Americas", "World"], + "isoDate": "2024-01-05T13:59:15.000Z" + }, + { + "creator": "Daisy Lester", + "date": "2024-01-05T14:04:18+00:00", + "title": "Royal Mail\u2019s Spice Girls stamps are about to spice up your life", + "link": "https://www.independent.co.uk/indybest/royal-mail-spice-girls-stamps-how-buy-b2473753.html", + "pubDate": "Fri, 05 Jan 2024 14:04:18 GMT", + "dc:creator": "Daisy Lester", + "dc:date": "2024-01-05T14:04:18+00:00", + "content": "

Viva forever! The stamps we didn\u2019t know we needed are here

", + "contentSnippet": "Viva forever! The stamps we didn\u2019t know we needed are here", + "guid": "b2473753", + "categories": ["IndyBest"], + "isoDate": "2024-01-05T14:04:18.000Z" + }, + { + "creator": "Archie Mitchell", + "date": "2024-01-05T14:02:55+00:00", + "title": "Rishi Sunak\u2019s tax cuts will not ease the burden, economists warn, as National insurance cut ", + "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-tax-cut-rachel-reeves-national-insurance-b2473799.html", + "pubDate": "Fri, 05 Jan 2024 14:02:55 GMT", + "dc:creator": "Archie Mitchell", + "dc:date": "2024-01-05T14:02:55+00:00", + "content": "

The Institute for Fiscal Studies personal taxes are rising despite Rishi Sunak and Jeremy Hunt\u2019s much-hyped tax cuts

", + "contentSnippet": "The Institute for Fiscal Studies personal taxes are rising despite Rishi Sunak and Jeremy Hunt\u2019s much-hyped tax cuts", + "guid": "b2473799", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-05T14:02:55.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-11T21:12:46+00:00", + "title": "FCC chair asks automakers about plans to stop abusers from using car electronics to stalk partners", + "link": "https://www.independent.co.uk/news/ap-fcc-detroit-the-new-york-times-toyota-b2477325.html", + "pubDate": "Thu, 11 Jan 2024 21:12:46 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-11T21:12:46+00:00", + "content": "The top U.S. telecommunications regulator is asking automakers how they plan to protect people from being stalked or harassed by partners who have access to vehicle location and other data", + "contentSnippet": "The top U.S. telecommunications regulator is asking automakers how they plan to protect people from being stalked or harassed by partners who have access to vehicle location and other data", + "guid": "b2477325", + "isoDate": "2024-01-11T21:12:46.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2024-01-11T20:58:49+00:00", + "title": "Rishi Sunak holding full Cabinet over potential strike after Houthi Red Sea attacks", + "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-emergency-cabinet-meeting-yemen-b2477280.html", + "pubDate": "Thu, 11 Jan 2024 20:58:49 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2024-01-11T20:58:49+00:00", + "content": "

Emergency Cobra meeting said to have taken place on Thursday morning followed by a meeting of the National Security Council

", + "contentSnippet": "Emergency Cobra meeting said to have taken place on Thursday morning followed by a meeting of the National Security Council", + "guid": "b2477280", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-11T20:58:49.000Z" + }, + { + "creator": "Alex Lee", + "date": "2024-01-11T20:57:21+00:00", + "title": "4 Dragons\u2019 Den companies to know, from Secret Garden Glamping to Nini skincare", + "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/television/dragons-den-companies-glamping-skincare-b2477054.html", + "pubDate": "Thu, 11 Jan 2024 20:57:21 GMT", + "dc:creator": "Alex Lee", + "dc:date": "2024-01-11T20:57:21+00:00", + "content": "

We also saw an app for renters looking to get on the housing ladder, and a RuckRaft for outdoor adventures

", + "contentSnippet": "We also saw an app for renters looking to get on the housing ladder, and a RuckRaft for outdoor adventures", + "guid": "b2477054", + "categories": ["Television", "Tech", "IndyBest", "Extras"], + "isoDate": "2024-01-11T20:57:21.000Z" + }, + { + "creator": "Isabel Debre", + "date": "2024-01-11T20:56:58+00:00", + "title": "Palestinian viewers are captivated and moved by case at UN's top court accusing Israel of genocide", + "link": "https://www.independent.co.uk/news/world/europe/gaza-strip-ap-south-africa-israel-palestinian-b2477319.html", + "pubDate": "Thu, 11 Jan 2024 20:56:58 GMT", + "dc:creator": "Isabel Debre", + "dc:date": "2024-01-11T20:56:58+00:00", + "content": "Palestinians across the occupied West Bank and east Jerusalem have been captivated by the proceedings in a faraway courtroom where the first hearing in an unprecedented case against Israel was held", + "contentSnippet": "Palestinians across the occupied West Bank and east Jerusalem have been captivated by the proceedings in a faraway courtroom where the first hearing in an unprecedented case against Israel was held", + "guid": "b2477319", + "categories": ["Europe", "World"], + "isoDate": "2024-01-11T20:56:58.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-11T20:53:48+00:00", + "title": "Tesla is raising factory worker pay as auto union tries to organize its electric vehicle plants", + "link": "https://www.independent.co.uk/news/tesla-ap-united-auto-workers-detroit-bloomberg-news-b2477316.html", + "pubDate": "Thu, 11 Jan 2024 20:53:48 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-11T20:53:48+00:00", + "content": "Factory workers at Tesla have been told to expect pay raises this year", + "contentSnippet": "Factory workers at Tesla have been told to expect pay raises this year", + "guid": "b2477316", + "isoDate": "2024-01-11T20:53:48.000Z" + }, + { + "creator": "Andrea Blanco", + "date": "2024-01-11T20:53:45+00:00", + "title": "Ohio woman who miscarried in her toilet is cleared of charges", + "link": "https://www.independent.co.uk/news/world/americas/abortion-miscarriage-charges-ohio-grand-jury-b2477278.html", + "pubDate": "Thu, 11 Jan 2024 20:53:45 GMT", + "dc:creator": "Andrea Blanco", + "dc:date": "2024-01-11T20:53:45+00:00", + "content": "

Brittany Watts, 34, miscarried after visiting the emergency room twice without being able to get treatment

", + "contentSnippet": "Brittany Watts, 34, miscarried after visiting the emergency room twice without being able to get treatment", + "guid": "b2477278", + "categories": ["Americas", "World"], + "isoDate": "2024-01-11T20:53:45.000Z" + }, + { + "creator": "Kaleigh Werner", + "date": "2024-01-11T20:53:37+00:00", + "title": "Chris Pratt shares his morning routine with his three children", + "link": "https://www.independent.co.uk/life-style/chris-pratt-morning-routine-children-b2477181.html", + "pubDate": "Thu, 11 Jan 2024 20:53:37 GMT", + "dc:creator": "Kaleigh Werner", + "dc:date": "2024-01-11T20:53:37+00:00", + "content": "

\u2018When I said that I was up before the kids yesterday, I was, and now up before the kids today,\u2019 the actor says

", + "contentSnippet": "\u2018When I said that I was up before the kids yesterday, I was, and now up before the kids today,\u2019 the actor says", + "guid": "b2477181", + "categories": ["Lifestyle"], + "isoDate": "2024-01-11T20:53:37.000Z" + }, + { + "creator": "Helen Coffey", + "date": "2024-01-11T20:53:08+00:00", + "title": "Google Flights feature gives you money back on your flights - without changing them", + "link": "https://www.independent.co.uk/travel/news-and-advice/google-flights-price-guarantee-airfare-b2314469.html", + "pubDate": "Thu, 11 Jan 2024 20:53:08 GMT", + "dc:creator": "Helen Coffey", + "dc:date": "2024-01-11T20:53:08+00:00", + "content": "

Travellers could receive up to $500 by using Google Flights\u2019 price guarantee tool

", + "contentSnippet": "Travellers could receive up to $500 by using Google Flights\u2019 price guarantee tool", + "guid": "b2314469", + "categories": ["News & Advice", "Travel"], + "isoDate": "2024-01-11T20:53:08.000Z" + }, + { + "creator": "Kevin E G Perry", + "date": "2024-01-11T20:51:09+00:00", + "title": "Vincent Gallo accused of making threatening, sexual comments during auditions", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/vincent-gallo-sexual-misconduct-golden-state-killer-b2477300.html", + "pubDate": "Thu, 11 Jan 2024 20:51:09 GMT", + "dc:creator": "Kevin E G Perry", + "dc:date": "2024-01-11T20:51:09+00:00", + "content": "

Two women who tried out for roles in Golden State Killer drama \u2018The Policeman\u2019 lodged complaints with SAG-AFTRA

", + "contentSnippet": "Two women who tried out for roles in Golden State Killer drama \u2018The Policeman\u2019 lodged complaints with SAG-AFTRA", + "guid": "b2477300", + "categories": ["News", "Film", "Culture"], + "isoDate": "2024-01-11T20:51:09.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-11T20:49:57+00:00", + "title": "Fox town hall with Trump draws more TV viewers than debate between Haley and DeSantis", + "link": "https://www.independent.co.uk/news/ap-nikki-haley-trump-ron-desantis-republican-b2477317.html", + "pubDate": "Thu, 11 Jan 2024 20:49:57 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-11T20:49:57+00:00", + "content": "Former President Donald Trump reached an estimated 4.3 million viewers during his live town hall on Fox News Wednesday night", + "contentSnippet": "Former President Donald Trump reached an estimated 4.3 million viewers during his live town hall on Fox News Wednesday night", + "guid": "b2477317", + "isoDate": "2024-01-11T20:49:57.000Z" + }, + { + "creator": "Jeffrey Collins", + "date": "2024-01-11T20:49:06+00:00", + "title": "Microscopic fibers link couple to 5-year-old son's strangulation 34 years ago, sheriff says", + "link": "https://www.independent.co.uk/news/ap-south-carolina-b2477315.html", + "pubDate": "Thu, 11 Jan 2024 20:49:06 GMT", + "dc:creator": "Jeffrey Collins", + "dc:date": "2024-01-11T20:49:06+00:00", + "content": "Investigators long thought a 5-year-old South Carolina boy found strangled in 1989 had been killed by his father and stepmother", + "contentSnippet": "Investigators long thought a 5-year-old South Carolina boy found strangled in 1989 had been killed by his father and stepmother", + "guid": "b2477315", + "isoDate": "2024-01-11T20:49:06.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-11T20:48:16+00:00", + "title": "Tornado destroys building in 10 seconds as it rips through South Carolina", + "link": "https://www.independent.co.uk/tv/news/weather-south-carolina-tornado-bamberg-b2477313.html", + "pubDate": "Thu, 11 Jan 2024 20:48:16 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-11T20:48:16+00:00", + "content": "

A tornado destroyed a South Carolina building in ten seconds, dramatic footage shows.

", + "contentSnippet": "A tornado destroyed a South Carolina building in ten seconds, dramatic footage shows.", + "guid": "b2477313", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-11T20:48:16.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2024-01-11T20:47:37+00:00", + "title": "New Mexico police officer charged with murder after shooting woman as she drove away", + "link": "https://www.independent.co.uk/news/world/americas/crime/police-officer-murder-new-mexico-b2477243.html", + "pubDate": "Thu, 11 Jan 2024 20:47:37 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2024-01-11T20:47:37+00:00", + "content": "

Felipe Hernandez is accused of shooting Teresa Gomez, 45, in Las Cruces last October

", + "contentSnippet": "Felipe Hernandez is accused of shooting Teresa Gomez, 45, in Las Cruces last October", + "guid": "b2477243", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-11T20:47:37.000Z" + }, + { + "creator": "Barney Davis", + "date": "2024-01-11T20:41:26+00:00", + "title": "Mother and her two dogs killed in horror crash \u2018hit and run\u2019 as teenager arrested", + "link": "https://www.independent.co.uk/news/uk/crime/enfield-crash-laura-sone-demetrious-b2477148.html", + "pubDate": "Thu, 11 Jan 2024 20:41:26 GMT", + "dc:creator": "Barney Davis", + "dc:date": "2024-01-11T20:41:26+00:00", + "content": "

Laura Sone-Demetrious was mourned by her family as she was killed walking her two dogs across the A10

", + "contentSnippet": "Laura Sone-Demetrious was mourned by her family as she was killed walking her two dogs across the A10", + "guid": "b2477148", + "categories": ["Crime", "UK"], + "isoDate": "2024-01-11T20:41:26.000Z" + }, + { + "creator": "Andrea Blanco,Rachel Sharp and Andrea Cavallier", + "date": "2024-01-11T20:37:03+00:00", + "title": "Michelle Troconis defended by family outside her Jennifer Dulos murder conspiracy trial: Live", + "link": "https://www.independent.co.uk/news/world/americas/crime/michelle-troconis-trial-jennifer-dulos-fotis-murder-b2476918.html", + "pubDate": "Thu, 11 Jan 2024 20:37:03 GMT", + "dc:creator": "Andrea Blanco,Rachel Sharp and Andrea Cavallier", + "dc:date": "2024-01-11T20:37:03+00:00", + "content": "

Michelle Troconis is accused of helping then-boyfriend Fotis Dulos cover up the murder of his estranged wife Jennifer Dulos in Connecticut in 2019

", + "contentSnippet": "Michelle Troconis is accused of helping then-boyfriend Fotis Dulos cover up the murder of his estranged wife Jennifer Dulos in Connecticut in 2019", + "guid": "b2476918", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-11T20:37:03.000Z" + }, + { + "creator": "Andrea Cavallier", + "date": "2024-01-11T20:34:04+00:00", + "title": "Michelle Troconis trial kicks off with new bodycam video from Jennifer Dulos search", + "link": "https://www.independent.co.uk/news/world/americas/crime/jennifer-dulos-search-video-michelle-troconis-trial-b2477263.html", + "pubDate": "Thu, 11 Jan 2024 20:34:04 GMT", + "dc:creator": "Andrea Cavallier", + "dc:date": "2024-01-11T20:34:04+00:00", + "content": "

Troconis is accused of conspiring with her lover Fotis Dulos to murder his estranged wife Jennifer

", + "contentSnippet": "Troconis is accused of conspiring with her lover Fotis Dulos to murder his estranged wife Jennifer", + "guid": "b2477263", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-11T20:34:04.000Z" + }, + { + "creator": "Eric Garcia", + "date": "2024-01-11T20:33:43+00:00", + "title": "Voices: The GOP dumpster fire is getting worse \u2013 and even 2024 wins might not help", + "link": "https://www.independent.co.uk/voices/republican-dumpster-fire-civil-war-b2477131.html", + "pubDate": "Thu, 11 Jan 2024 20:33:43 GMT", + "dc:creator": "Eric Garcia", + "dc:date": "2024-01-11T20:33:43+00:00", + "content": "

Trump leads in all the polls, the government is barreling toward a shutdown and the world is on fire. Do Republicans care? No

", + "contentSnippet": "Trump leads in all the polls, the government is barreling toward a shutdown and the world is on fire. Do Republicans care? No", + "guid": "b2477131", + "categories": ["Voices"], + "isoDate": "2024-01-11T20:33:43.000Z" + }, + { + "creator": "Jabed Ahmed", + "date": "2024-01-11T20:30:21+00:00", + "title": "\u2018Incredibly bright\u2019 boy, 16, dies on railway tracks as heartbroken family pays tribute", + "link": "https://www.independent.co.uk/news/uk/home-news/leo-barber-death-shortland-station-bromley-b2477127.html", + "pubDate": "Thu, 11 Jan 2024 20:30:21 GMT", + "dc:creator": "Jabed Ahmed", + "dc:date": "2024-01-11T20:30:21+00:00", + "content": "

Leo Barber was found near Shortlands Station, Bromley

", + "contentSnippet": "Leo Barber was found near Shortlands Station, Bromley", + "guid": "b2477127", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-11T20:30:21.000Z" + }, + { + "creator": "Tom Murray", + "date": "2024-01-11T20:26:16+00:00", + "title": "Golden Globes host Jo Koy apologises for throwing his writers under the bus during monologue", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/golden-globes-jo-koy-monologue-writers-b2477295.html", + "pubDate": "Thu, 11 Jan 2024 20:26:16 GMT", + "dc:creator": "Tom Murray", + "dc:date": "2024-01-11T20:26:16+00:00", + "content": "

Koy claimed that the audience were only laughing at the jokes he wrote while presenting the recent Golden Globe Awards

", + "contentSnippet": "Koy claimed that the audience were only laughing at the jokes he wrote while presenting the recent Golden Globe Awards", + "guid": "b2477295", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-11T20:26:16.000Z" + }, + { + "creator": "Tom Canavan", + "date": "2024-01-11T20:25:22+00:00", + "title": "NFL Hall of Famer Michael Strahan's 19-year-old daughter is fighting cancer", + "link": "https://www.independent.co.uk/news/michael-strahan-ap-nfl-robin-roberts-new-york-b2477308.html", + "pubDate": "Thu, 11 Jan 2024 20:25:22 GMT", + "dc:creator": "Tom Canavan", + "dc:date": "2024-01-11T20:25:22+00:00", + "content": "The 19-year-old daughter of NFL Hall of Famer and \u201cGood Morning America\u201d co-anchor Michael Strahan is undergoing treatment for brain cancer", + "contentSnippet": "The 19-year-old daughter of NFL Hall of Famer and \u201cGood Morning America\u201d co-anchor Michael Strahan is undergoing treatment for brain cancer", + "guid": "b2477308", + "isoDate": "2024-01-11T20:25:22.000Z" + }, + { + "creator": "Richard Hall", + "date": "2024-01-11T20:24:01+00:00", + "title": "Fetterman says South Africa should focus on its own continent as it brings case of genocide against Israel", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/john-fetterman-south-africa-israel-b2477217.html", + "pubDate": "Thu, 11 Jan 2024 20:24:01 GMT", + "dc:creator": "Richard Hall", + "dc:date": "2024-01-11T20:24:01+00:00", + "content": "

Pennsylvania senator says it is \u2018appalling\u2019 that South Africa brought the case given its history

", + "contentSnippet": "Pennsylvania senator says it is \u2018appalling\u2019 that South Africa brought the case given its history", + "guid": "b2477217", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-11T20:24:01.000Z" + }, + { + "creator": "Zoe Grunewald", + "date": "2024-01-11T20:22:35+00:00", + "title": "Government got through 1,433 bottles of wine and spirits during the Covid pandemic, delayed report reveals", + "link": "https://www.independent.co.uk/news/uk/politics/government-wine-spirits-covid-foreign-office-b2477216.html", + "pubDate": "Thu, 11 Jan 2024 20:22:35 GMT", + "dc:creator": "Zoe Grunewald", + "dc:date": "2024-01-11T20:22:35+00:00", + "content": "

Labour has accused the government of living \u201cthe high life at taxpayers\u2019 expense\u201d after report reveals the extent of government alcohol consumption during the pandemic

", + "contentSnippet": "Labour has accused the government of living \u201cthe high life at taxpayers\u2019 expense\u201d after report reveals the extent of government alcohol consumption during the pandemic", + "guid": "b2477216", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-11T20:22:35.000Z" + }, + { + "creator": "Katie Hawkinson", + "date": "2024-01-11T20:21:00+00:00", + "title": "Florida school district pulls dictionaries, encyclopedias from shelves to review for sexual content", + "link": "https://www.independent.co.uk/news/world/americas/florida-escambia-school-district-dictionaries-b2477185.html", + "pubDate": "Thu, 11 Jan 2024 20:21:00 GMT", + "dc:creator": "Katie Hawkinson", + "dc:date": "2024-01-11T20:21:00+00:00", + "content": "

Escambia County School District has pulled more than 1,600 books to review them for pornography or depictions of sexual conduct

", + "contentSnippet": "Escambia County School District has pulled more than 1,600 books to review them for pornography or depictions of sexual conduct", + "guid": "b2477185", + "categories": ["Americas", "World"], + "isoDate": "2024-01-11T20:21:00.000Z" + }, + { + "creator": "Adam Forrest and Kate Devlin", + "date": "2024-01-11T20:17:50+00:00", + "title": "Sunak warned Post Office compensation not enough as hundreds of victims fall through cracks", + "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-post-office-billion-b2477234.html", + "pubDate": "Thu, 11 Jan 2024 20:17:50 GMT", + "dc:creator": "Adam Forrest and Kate Devlin", + "dc:date": "2024-01-11T20:17:50+00:00", + "content": "

Lawyers say hundreds of subpostmasters who have yet to make claims may be too \u2018traumatised\u2019 to come forward because of mistrust

", + "contentSnippet": "Lawyers say hundreds of subpostmasters who have yet to make claims may be too \u2018traumatised\u2019 to come forward because of mistrust", + "guid": "b2477234", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-11T20:17:50.000Z" + }, + { + "creator": "Alex Ross", + "date": "2024-01-11T20:16:33+00:00", + "title": "South West Water forced to apologise after sending hundreds of tanker loads of sewage to seaside resort", + "link": "https://www.independent.co.uk/climate-change/exmouth-sewage-south-west-water-b2476934.html", + "pubDate": "Thu, 11 Jan 2024 20:16:33 GMT", + "dc:creator": "Alex Ross", + "dc:date": "2024-01-11T20:16:33+00:00", + "content": "

South West Water transported up to 240 tanker loads of sewage through Exmouth every day due to a burst pipe

", + "contentSnippet": "South West Water transported up to 240 tanker loads of sewage through Exmouth every day due to a burst pipe", + "guid": "b2476934", + "categories": ["Climate"], + "isoDate": "2024-01-11T20:16:33.000Z" + }, + { + "creator": "Nilima Marshall", + "date": "2024-01-11T20:15:00+00:00", + "title": "Discovery of gargantuan ring structure \u2018challenges understanding of universe\u2019", + "link": "https://www.independent.co.uk/space/university-of-central-lancashire-scientists-moon-university-of-warwick-university-of-louisville-b2477306.html", + "pubDate": "Thu, 11 Jan 2024 20:15:00 GMT", + "dc:creator": "Nilima Marshall", + "dc:date": "2024-01-11T20:15:00+00:00", + "content": "The Big Ring is about 1.3 billion light-years in diameter.", + "contentSnippet": "The Big Ring is about 1.3 billion light-years in diameter.", + "guid": "b2477306", + "categories": ["Space"], + "isoDate": "2024-01-11T20:15:00.000Z" + }, + { + "creator": "Andrea Blanco,Rachel Sharp,Mike Bedigan and Maroosha Muzaffar", + "date": "2024-01-11T20:09:11+00:00", + "title": "Jeffrey Epstein list: New documents reveal paedophile\u2019s responses to sex trafficking claims", + "link": "https://www.independent.co.uk/news/world/americas/crime/jeffrey-epstein-list-documents-latest-b2477302.html", + "pubDate": "Thu, 11 Jan 2024 20:09:11 GMT", + "dc:creator": "Andrea Blanco,Rachel Sharp,Mike Bedigan and Maroosha Muzaffar", + "dc:date": "2024-01-11T20:09:11+00:00", + "content": "

Donald Trump, Bill Clinton, Prince Andrew, Bill Richardson and other high profile figures have been named in the filings from a lawsuit between Virginia Giuffre and Ghislaine Maxwell

", + "contentSnippet": "Donald Trump, Bill Clinton, Prince Andrew, Bill Richardson and other high profile figures have been named in the filings from a lawsuit between Virginia Giuffre and Ghislaine Maxwell", + "guid": "b2472177", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-11T20:09:11.000Z" + }, + { + "creator": "Albert Toth and Katie Hawkinson", + "date": "2024-01-11T20:08:03+00:00", + "title": "Covid JN.1: Everything we know about the new Juno variant", + "link": "https://www.independent.co.uk/news/health/covid-new-variant-jn-1-symptoms-b2476910.html", + "pubDate": "Thu, 11 Jan 2024 20:08:03 GMT", + "dc:creator": "Albert Toth and Katie Hawkinson", + "dc:date": "2024-01-11T20:08:03+00:00", + "content": "

JN.1, nicknamed \u2018Juno\u2019, may now account for 70 percent of UK Covid cases

", + "contentSnippet": "JN.1, nicknamed \u2018Juno\u2019, may now account for 70 percent of UK Covid cases", + "guid": "b2476910", + "categories": ["Health"], + "isoDate": "2024-01-11T20:08:03.000Z" + }, + { + "creator": "Katie Dickinson", + "date": "2024-01-11T20:01:35+00:00", + "title": "Rob Burrow and Kevin Sinfield presented with CBEs by Prince of Wales in Leeds", + "link": "https://www.independent.co.uk/sport/prince-of-wales-rob-burrow-kevin-sinfield-mnd-leeds-b2477126.html", + "pubDate": "Thu, 11 Jan 2024 20:01:35 GMT", + "dc:creator": "Katie Dickinson", + "dc:date": "2024-01-11T20:01:35+00:00", + "content": "The former Leeds Rhinos pair received their honours from the Prince of Wales at Headingley Stadium.", + "contentSnippet": "The former Leeds Rhinos pair received their honours from the Prince of Wales at Headingley Stadium.", + "guid": "b2477126", + "categories": ["Sport"], + "isoDate": "2024-01-11T20:01:35.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-11T19:59:43+00:00", + "title": "Argentina's annual inflation soars to 211.4%, the highest in 32 years", + "link": "https://www.independent.co.uk/news/argentina-ap-buenos-aires-latin-america-caribbean-b2477299.html", + "pubDate": "Thu, 11 Jan 2024 19:59:43 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-11T19:59:43+00:00", + "content": "Argentina's statistics agency says the country has registered a monthly inflation rate of 25.5% in December and closed 2023 with an annual inflation of 211.4%", + "contentSnippet": "Argentina's statistics agency says the country has registered a monthly inflation rate of 25.5% in December and closed 2023 with an annual inflation of 211.4%", + "guid": "b2477299", + "isoDate": "2024-01-11T19:59:43.000Z" + }, + { + "creator": "The Associated Press", + "date": "2024-01-11T19:59:17+00:00", + "title": "Bayreuth Festival to have three women conductors, three years after gender barrier broken", + "link": "https://www.independent.co.uk/news/richard-wagner-ap-australian-b2477298.html", + "pubDate": "Thu, 11 Jan 2024 19:59:17 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2024-01-11T19:59:17+00:00", + "content": "The Bayreuth Festival will have three female conductors this summer, three years after the podium gender barrier was broken at the annual showcase of Richard Wagner\u2019s operas", + "contentSnippet": "The Bayreuth Festival will have three female conductors this summer, three years after the podium gender barrier was broken at the annual showcase of Richard Wagner\u2019s operas", + "guid": "b2477298", + "isoDate": "2024-01-11T19:59:17.000Z" + }, + { + "creator": "Kelly Rissman", + "date": "2024-01-11T19:55:33+00:00", + "title": "Epstein\u2019s brother claims dead sex trafficker was \u2018just having a good time\u2019", + "link": "https://www.independent.co.uk/news/world/americas/epstein-brother-sex-trafficker-list-b2477142.html", + "pubDate": "Thu, 11 Jan 2024 19:55:33 GMT", + "dc:creator": "Kelly Rissman", + "dc:date": "2024-01-11T19:55:33+00:00", + "content": "

Mark Epstein said he refused to speculate on his brother\u2019s behaviour \u2018because I wasn\u2019t there\u2019

", + "contentSnippet": "Mark Epstein said he refused to speculate on his brother\u2019s behaviour \u2018because I wasn\u2019t there\u2019", + "guid": "b2477142", + "categories": ["Americas", "World"], + "isoDate": "2024-01-11T19:55:33.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-11T19:55:10+00:00", + "title": "Franz Welser-M\u00f6st to retire as Cleveland Orchestra music director in June 2027", + "link": "https://www.independent.co.uk/news/ap-cleveland-orchestra-carnegie-hall-severance-b2477297.html", + "pubDate": "Thu, 11 Jan 2024 19:55:10 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-11T19:55:10+00:00", + "content": "Franz Welser-M\u00f6st will retire as music director of the Cleveland Orchestra in June 2027, ending a 25-season tenure that will be the longest in the ensemble\u2019s history", + "contentSnippet": "Franz Welser-M\u00f6st will retire as music director of the Cleveland Orchestra in June 2027, ending a 25-season tenure that will be the longest in the ensemble\u2019s history", + "guid": "b2477297", + "isoDate": "2024-01-11T19:55:10.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2024-01-11T19:53:10+00:00", + "title": "DeSantis accuses Trump of \u2018massive, massive gaslighting\u2019 on Covid-19 response", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/ron-desantis-donald-trump-covid-b2477276.html", + "pubDate": "Thu, 11 Jan 2024 19:53:10 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2024-01-11T19:53:10+00:00", + "content": "

The presidential hopeful said his Republican nominee rival had \u2018dropped the ball\u2019 during the global pandemic

", + "contentSnippet": "The presidential hopeful said his Republican nominee rival had \u2018dropped the ball\u2019 during the global pandemic", + "guid": "b2477276", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-11T19:53:10.000Z" + }, + { + "creator": "Joe Middleton", + "date": "2024-01-11T19:43:33+00:00", + "title": "Price war erupts as six of seven major mortgage lenders slash rates", + "link": "https://www.independent.co.uk/news/uk/home-news/price-war-erupts-mortgage-lenders-b2476857.html", + "pubDate": "Thu, 11 Jan 2024 19:43:33 GMT", + "dc:creator": "Joe Middleton", + "dc:date": "2024-01-11T19:43:33+00:00", + "content": "

Top mortgage broker says major lenders are now engaged in a price war as rates dip below 4 per cent

", + "contentSnippet": "Top mortgage broker says major lenders are now engaged in a price war as rates dip below 4 per cent", + "guid": "b2476857", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-11T19:43:33.000Z" + }, + { + "creator": "Adam Forrest and Kate Devlin", + "date": "2024-01-11T19:43:23+00:00", + "title": "Post Office investigator denies behaving like \u2018Mafia gangster\u2019 over Horizon scandal", + "link": "https://www.independent.co.uk/news/uk/politics/post-office-horizon-scandal-inquiry-b2476978.html", + "pubDate": "Thu, 11 Jan 2024 19:43:23 GMT", + "dc:creator": "Adam Forrest and Kate Devlin", + "dc:date": "2024-01-11T19:43:23+00:00", + "content": "

Astonishing day of evidence sees fraud investigator forced to deny he \u2018collected bounty with threats and lies\u2019 \u2013 as Rishi Sunak is warned hundreds more victims could come forward

", + "contentSnippet": "Astonishing day of evidence sees fraud investigator forced to deny he \u2018collected bounty with threats and lies\u2019 \u2013 as Rishi Sunak is warned hundreds more victims could come forward", + "guid": "b2476978", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-11T19:43:23.000Z" + }, + { + "creator": "Kevin E G Perry", + "date": "2024-01-11T19:42:36+00:00", + "title": "George Carlin\u2019s daughter rebukes AI comedy special: \u2018No machine will ever replace his genius\u2019", + "link": "https://www.independent.co.uk/arts-entertainment/comedy/george-carlin-kelly-ai-comedy-special-b2477267.html", + "pubDate": "Thu, 11 Jan 2024 19:42:36 GMT", + "dc:creator": "Kevin E G Perry", + "dc:date": "2024-01-11T19:42:36+00:00", + "content": "

Kelly Carlin suggested: \u2018Here\u2019s an idea, how about we give some actual living human comedians a listen to?\u2019

", + "contentSnippet": "Kelly Carlin suggested: \u2018Here\u2019s an idea, how about we give some actual living human comedians a listen to?\u2019", + "guid": "b2477267", + "categories": ["Comedy", "Culture"], + "isoDate": "2024-01-11T19:42:36.000Z" + }, + { + "creator": "Amber Raiken", + "date": "2024-01-11T19:40:30+00:00", + "title": " Carmen Electra files to legally change her name", + "link": "https://www.independent.co.uk/life-style/carmen-electra-name-change-b2477153.html", + "pubDate": "Thu, 11 Jan 2024 19:40:30 GMT", + "dc:creator": "Amber Raiken", + "dc:date": "2024-01-11T19:40:30+00:00", + "content": "

The model first discovered her stage name when working with Prince

", + "contentSnippet": "The model first discovered her stage name when working with Prince", + "guid": "b2477153", + "categories": ["Lifestyle"], + "isoDate": "2024-01-11T19:40:30.000Z" + }, + { + "creator": "Graig Graziosi", + "date": "2024-01-11T19:38:44+00:00", + "title": "New York prosecutor puts out call for whistleblowers to help uncover corruption", + "link": "https://www.independent.co.uk/news/world/americas/crime/new-york-prosecutor-whistleblowers-corruption-b2477270.html", + "pubDate": "Thu, 11 Jan 2024 19:38:44 GMT", + "dc:creator": "Graig Graziosi", + "dc:date": "2024-01-11T19:38:44+00:00", + "content": "

\u2018Call us before we call you,\u2019 the prosecutor said

", + "contentSnippet": "\u2018Call us before we call you,\u2019 the prosecutor said", + "guid": "b2477270", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-11T19:38:44.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-11T19:33:19+00:00", + "title": "Rome opens new archaeological park and museum in shadow of Colosseum", + "link": "https://www.independent.co.uk/news/ancient-rome-ap-museum-visitors-b2477289.html", + "pubDate": "Thu, 11 Jan 2024 19:33:19 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-11T19:33:19+00:00", + "content": "Rome authorities have inaugurated a new archaeological park and museum in the shadow of the Colosseum that features an original marble map of Ancient Rome that visitors can literally walk over", + "contentSnippet": "Rome authorities have inaugurated a new archaeological park and museum in the shadow of the Colosseum that features an original marble map of Ancient Rome that visitors can literally walk over", + "guid": "b2477289", + "isoDate": "2024-01-11T19:33:19.000Z" + }, + { + "creator": "Julie Carr Smyth", + "date": "2024-01-11T19:32:11+00:00", + "title": "Ohio woman who miscarried at home won't be charged with corpse abuse, grand jury decides", + "link": "https://www.independent.co.uk/news/ohio-ap-columbus-catholic-cleveland-b2477288.html", + "pubDate": "Thu, 11 Jan 2024 19:32:11 GMT", + "dc:creator": "Julie Carr Smyth", + "dc:date": "2024-01-11T19:32:11+00:00", + "content": "An Ohio woman who miscarried on a home toilet and then left the house will not be criminally charged for her handling of a home miscarriage", + "contentSnippet": "An Ohio woman who miscarried on a home toilet and then left the house will not be criminally charged for her handling of a home miscarriage", + "guid": "b2477288", + "isoDate": "2024-01-11T19:32:11.000Z" + }, + { + "creator": "Wayne Parry", + "date": "2024-01-11T19:28:46+00:00", + "title": "Through sobs, cargo ship officer says crew is 'broken' over deaths of 2 firefighters in blaze", + "link": "https://www.independent.co.uk/news/ap-union-america-italian-national-transportation-safety-board-b2477283.html", + "pubDate": "Thu, 11 Jan 2024 19:28:46 GMT", + "dc:creator": "Wayne Parry", + "dc:date": "2024-01-11T19:28:46+00:00", + "content": "A top officer of an Italian cargo ship that caught fire last summer in one of America\u2019s busiest seaports broke down in sobs recalling his crew\u2019s initial efforts to put out the blaze", + "contentSnippet": "A top officer of an Italian cargo ship that caught fire last summer in one of America\u2019s busiest seaports broke down in sobs recalling his crew\u2019s initial efforts to put out the blaze", + "guid": "b2477283", + "isoDate": "2024-01-11T19:28:46.000Z" + }, + { + "creator": "Hannah Twiggs", + "date": "2024-01-11T19:25:53+00:00", + "title": "The rise and fall of BrewDog: how the anarchic brewery went from progressive to problematic", + "link": "https://www.independent.co.uk/life-style/food-and-drink/features/brewdog-scandal-london-living-wage-b2477041.html", + "pubDate": "Thu, 11 Jan 2024 19:25:53 GMT", + "dc:creator": "Hannah Twiggs", + "dc:date": "2024-01-11T19:25:53+00:00", + "content": "

The unorthodox Scottish brewers have made a name for themselves over the last 17 years by making headlines with bold and outlandish marketing strategies, often in response to rulings and criticisms. But they\u2019ll have a hard time coming back from their latest blunder, writes Hannah Twiggs

", + "contentSnippet": "The unorthodox Scottish brewers have made a name for themselves over the last 17 years by making headlines with bold and outlandish marketing strategies, often in response to rulings and criticisms. But they\u2019ll have a hard time coming back from their latest blunder, writes Hannah Twiggs", + "guid": "b2477041", + "categories": ["Features", "Food and Drink", "Lifestyle"], + "isoDate": "2024-01-11T19:25:53.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2024-01-11T19:24:40+00:00", + "title": "South Africa accuses Israel of \u2018chilling\u2019 intent to commit genocide in Gaza during landmark court case", + "link": "https://www.independent.co.uk/news/world/middle-east/israel-court-un-south-africa-hague-b2477129.html", + "pubDate": "Thu, 11 Jan 2024 19:24:40 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2024-01-11T19:24:40+00:00", + "content": "

Israeli prime minister Benjamin Netanyahu says Petoria\u2019s \u2018hypocrisy screams to the heavens\u2019 as he denies the allegations. Israel will present its defence to the UN\u2019s top court on Friday

", + "contentSnippet": "Israeli prime minister Benjamin Netanyahu says Petoria\u2019s \u2018hypocrisy screams to the heavens\u2019 as he denies the allegations. Israel will present its defence to the UN\u2019s top court on Friday", + "guid": "b2477129", + "categories": ["Middle East", "World"], + "isoDate": "2024-01-11T19:24:40.000Z" + }, + { + "creator": "Jake Coyle", + "date": "2024-01-11T19:23:38+00:00", + "title": "7 years after Weinstein, commission finds cultural shift in Hollywood but less accountability", + "link": "https://www.independent.co.uk/news/ap-anita-hill-hollywood-harvey-weinstein-new-york-b2477281.html", + "pubDate": "Thu, 11 Jan 2024 19:23:38 GMT", + "dc:creator": "Jake Coyle", + "dc:date": "2024-01-11T19:23:38+00:00", + "content": "A new survey of the entertainment industry finds that the culture of Hollywood has shifted in the years since the downfall of Harvey Weinstein and the launch of the #MeToo movement, but many still don\u2019t trust that sexual harassers will be held accountable", + "contentSnippet": "A new survey of the entertainment industry finds that the culture of Hollywood has shifted in the years since the downfall of Harvey Weinstein and the launch of the #MeToo movement, but many still don\u2019t trust that sexual harassers will be held accountable", + "guid": "b2477281", + "isoDate": "2024-01-11T19:23:38.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2024-01-11T19:19:03+00:00", + "title": "NFL coaching great Bill Belichick leaves New England Patriots after 24 years", + "link": "https://www.independent.co.uk/sport/bill-belichick-new-england-patriots-nfl-robert-kraft-tom-brady-b2477210.html", + "pubDate": "Thu, 11 Jan 2024 19:19:03 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2024-01-11T19:19:03+00:00", + "content": "Belichick, who had one year remaining on his contract, paid an emotional farewell to the Patriots at a press conference on Thursday.", + "contentSnippet": "Belichick, who had one year remaining on his contract, paid an emotional farewell to the Patriots at a press conference on Thursday.", + "guid": "b2477210", + "categories": ["Sport"], + "isoDate": "2024-01-11T19:19:03.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-11T19:16:38+00:00", + "title": "Michael Strahan\u2019s teenage daughter breaks down as she shares cancer diagnosis", + "link": "https://www.independent.co.uk/tv/lifestyle/michael-strahan-daughter-cancer-diagnosis-b2477258.html", + "pubDate": "Thu, 11 Jan 2024 19:16:38 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-11T19:16:38+00:00", + "content": "

Michael Strahan\u2019s teenage daughter broke down in tears as she shared that she has been diagnosed with a rare form of brain cancer.

", + "contentSnippet": "Michael Strahan\u2019s teenage daughter broke down in tears as she shared that she has been diagnosed with a rare form of brain cancer.", + "guid": "b2477258", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-11T19:16:38.000Z" + }, + { + "creator": "George Sessions", + "date": "2024-01-11T19:13:04+00:00", + "title": "Tottenham sign Radu Dragusin as Eric Dier nears Bayern Munich move ", + "link": "https://www.independent.co.uk/sport/football/eric-dier-radu-dragusin-tottenham-b2477273.html", + "pubDate": "Thu, 11 Jan 2024 19:13:04 GMT", + "dc:creator": "George Sessions", + "dc:date": "2024-01-11T19:13:04+00:00", + "content": "

The Romania international follows Timo Werner to Spurs, while Dier is set to join the Bundesliga champions

", + "contentSnippet": "The Romania international follows Timo Werner to Spurs, while Dier is set to join the Bundesliga champions", + "guid": "b2477269", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T19:13:04.000Z" + }, + { + "creator": "Inga Parkel", + "date": "2024-01-11T19:12:23+00:00", + "title": "Angus Cloud appears in horror movie trailer for one of his final roles", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/abigail-trailer-angus-cloud-melissa-barrera-b2477235.html", + "pubDate": "Thu, 11 Jan 2024 19:12:23 GMT", + "dc:creator": "Inga Parkel", + "dc:date": "2024-01-11T19:12:23+00:00", + "content": "

\u2018Euphoria\u2019 star posthumously appears alongside Melissa Barrera in \u2018Abigail\u2019

", + "contentSnippet": "\u2018Euphoria\u2019 star posthumously appears alongside Melissa Barrera in \u2018Abigail\u2019", + "guid": "b2477235", + "categories": ["News", "Film", "Culture"], + "isoDate": "2024-01-11T19:12:23.000Z" + }, + { + "creator": "Mike Bedigan", + "date": "2024-01-11T19:12:08+00:00", + "title": "Biden knocks Trump by comparing him to Herbert Hoover in new campaign video", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/joe-biden-donald-trump-herbert-hoover-b2477220.html", + "pubDate": "Thu, 11 Jan 2024 19:12:08 GMT", + "dc:creator": "Mike Bedigan", + "dc:date": "2024-01-11T19:12:08+00:00", + "content": "

President was responding to a viral clip of his predecessor from earlier this week

", + "contentSnippet": "President was responding to a viral clip of his predecessor from earlier this week", + "guid": "b2477220", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-11T19:12:08.000Z" + }, + { + "creator": "Jamie Gardner", + "date": "2024-01-11T19:11:45+00:00", + "title": "Colin Graves set for Yorkshire return \u2013 what\u2019s happening at Headingley?", + "link": "https://www.independent.co.uk/sport/cricket/yorkshire-colin-graves-graves-headingley-actions-b2477162.html", + "pubDate": "Thu, 11 Jan 2024 19:11:45 GMT", + "dc:creator": "Jamie Gardner", + "dc:date": "2024-01-11T19:11:45+00:00", + "content": "Graves served as executive chair at Yorkshire between 2012 and 2015.", + "contentSnippet": "Graves served as executive chair at Yorkshire between 2012 and 2015.", + "guid": "b2477162", + "categories": ["Cricket", "Sport"], + "isoDate": "2024-01-11T19:11:45.000Z" + }, + { + "creator": "Rory Dollard", + "date": "2024-01-11T19:10:37+00:00", + "title": "Colin Graves sorry for Yorkshire racism but Azeem Rafiq wants \u2018more than words\u2019", + "link": "https://www.independent.co.uk/sport/cricket/colin-graves-yorkshire-graves-azeem-rafiq-house-of-commons-b2477108.html", + "pubDate": "Thu, 11 Jan 2024 19:10:37 GMT", + "dc:creator": "Rory Dollard", + "dc:date": "2024-01-11T19:10:37+00:00", + "content": "Graves looks set to return as Yorkshire chair.", + "contentSnippet": "Graves looks set to return as Yorkshire chair.", + "guid": "b2477108", + "categories": ["Cricket", "Sport"], + "isoDate": "2024-01-11T19:10:37.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-11T19:08:59+00:00", + "title": "United Airlines plane makes an emergency landing after a warning about a possible door issue", + "link": "https://www.independent.co.uk/news/tampa-ap-united-airlines-alaska-airlines-oregon-b2477275.html", + "pubDate": "Thu, 11 Jan 2024 19:08:59 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-11T19:08:59+00:00", + "content": "An Airbus plane operated by United Airlines cut short a flight after crews got a door-indicator warning, according to a spokesperson for the airport in Tampa, Florida", + "contentSnippet": "An Airbus plane operated by United Airlines cut short a flight after crews got a door-indicator warning, according to a spokesperson for the airport in Tampa, Florida", + "guid": "b2477275", + "isoDate": "2024-01-11T19:08:59.000Z" + }, + { + "creator": "Trisha Ahmed and Steve Karnowski", + "date": "2024-01-11T19:07:51+00:00", + "title": "St. Paul makes history with all-female city council, a rarity among large U.S. cities", + "link": "https://www.independent.co.uk/news/ap-experts-st-paul-rutgers-university-north-dakota-b2477271.html", + "pubDate": "Thu, 11 Jan 2024 19:07:51 GMT", + "dc:creator": "Trisha Ahmed and Steve Karnowski", + "dc:date": "2024-01-11T19:07:51+00:00", + "content": "St. Paul, Minnesota, has an all-woman city council for the first time in its history \u2014 and experts say it may be the largest U.S. city to ever have an all-woman council", + "contentSnippet": "St. Paul, Minnesota, has an all-woman city council for the first time in its history \u2014 and experts say it may be the largest U.S. city to ever have an all-woman council", + "guid": "b2477271", + "isoDate": "2024-01-11T19:07:51.000Z" + }, + { + "creator": "Andy Gregory", + "date": "2024-01-11T19:06:26+00:00", + "title": "New Covid variant Juno surges as expert warns school return will fuel more cases", + "link": "https://www.independent.co.uk/news/health/covid-cases-variant-juno-schools-latest-b2477113.html", + "pubDate": "Thu, 11 Jan 2024 19:06:26 GMT", + "dc:creator": "Andy Gregory", + "dc:date": "2024-01-11T19:06:26+00:00", + "content": "

Rapid rise of global \u2018Juno\u2019 variant infections is yet another reminder \u2018pandemic is far from over\u2019, warns virologist

", + "contentSnippet": "Rapid rise of global \u2018Juno\u2019 variant infections is yet another reminder \u2018pandemic is far from over\u2019, warns virologist", + "guid": "b2477113", + "categories": ["Health"], + "isoDate": "2024-01-11T19:06:26.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-11T19:05:30+00:00", + "title": "Relive Andy Farrell\u2019s iconic \u2018hurt arena\u2019 speech from British and Irish Lions\u2019 2013 tour of Australia", + "link": "https://www.independent.co.uk/tv/sport/andy-farrell-british-and-irish-lions-head-coach-b2477262.html", + "pubDate": "Thu, 11 Jan 2024 19:05:30 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-11T19:05:30+00:00", + "content": "

Relive Andy Farrell\u2019s iconic \u201churt arena\u201d speech from the British and Irish Lions\u2019 2013 tour to Australia.

", + "contentSnippet": "Relive Andy Farrell\u2019s iconic \u201churt arena\u201d speech from the British and Irish Lions\u2019 2013 tour to Australia.", + "guid": "b2477262", + "categories": ["Sport", "Indy TV"], + "isoDate": "2024-01-11T19:05:30.000Z" + }, + { + "creator": "Bert Wilkinson", + "date": "2024-01-11T19:04:59+00:00", + "title": "Guyana rejects quest for US military base as territorial dispute with Venezuela deepens", + "link": "https://www.independent.co.uk/news/guyana-ap-venezuela-georgetown-nicolas-maduro-b2477274.html", + "pubDate": "Thu, 11 Jan 2024 19:04:59 GMT", + "dc:creator": "Bert Wilkinson", + "dc:date": "2024-01-11T19:04:59+00:00", + "content": "Attorney General Anil Nandlall tells The Associated Press that Guyana\u2019s government has reassured neighboring Venezuela there is no plan for the U.S. to establish a military base in the South American country and that it has not made a formal request for one", + "contentSnippet": "Attorney General Anil Nandlall tells The Associated Press that Guyana\u2019s government has reassured neighboring Venezuela there is no plan for the U.S. to establish a military base in the South American country and that it has not made a formal request for one", + "guid": "b2477274", + "isoDate": "2024-01-11T19:04:59.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-11T19:04:11+00:00", + "title": "Josh Hutcherson addresses possibility of future Hunger Games project", + "link": "https://www.independent.co.uk/tv/culture/hunger-games-josh-hutcherson-peeta-b2477259.html", + "pubDate": "Thu, 11 Jan 2024 19:04:11 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-11T19:04:11+00:00", + "content": "

Josh Hutcherson appeared to be enthusiastic about reprising his Hunger Games role as he appeared on Thursday\u2019s (11 January) Good Morning America.

", + "contentSnippet": "Josh Hutcherson appeared to be enthusiastic about reprising his Hunger Games role as he appeared on Thursday\u2019s (11 January) Good Morning America.", + "guid": "b2477259", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-11T19:04:11.000Z" + }, + { + "creator": "Christina Larson", + "date": "2024-01-11T19:04:09+00:00", + "title": "Archeologists map lost cities in Ecuadorian Amazon, settlements that lasted 1,000 years", + "link": "https://www.independent.co.uk/news/ap-amazon-washington-ecuador-scientists-b2477265.html", + "pubDate": "Thu, 11 Jan 2024 19:04:09 GMT", + "dc:creator": "Christina Larson", + "dc:date": "2024-01-11T19:04:09+00:00", + "content": "Archeologists have uncovered a cluster of lost cities in the Amazon rainforest that was home to at least 10,000 farmers about 2,000 years ago", + "contentSnippet": "Archeologists have uncovered a cluster of lost cities in the Amazon rainforest that was home to at least 10,000 farmers about 2,000 years ago", + "guid": "b2477265", + "isoDate": "2024-01-11T19:04:09.000Z" + }, + { + "creator": "Jimmy Golen", + "date": "2024-01-11T19:00:09+00:00", + "title": "The Patriots don't just need a new coach. They need a quarterback and talent to put around him", + "link": "https://www.independent.co.uk/news/bill-belichick-ap-robert-kraft-new-england-patriots-bill-b2477264.html", + "pubDate": "Thu, 11 Jan 2024 19:00:09 GMT", + "dc:creator": "Jimmy Golen", + "dc:date": "2024-01-11T19:00:09+00:00", + "content": "New England Patriots owner Robert Kraft needs to find himself a new coach for the first time in almost a quarter century", + "contentSnippet": "New England Patriots owner Robert Kraft needs to find himself a new coach for the first time in almost a quarter century", + "guid": "b2477264", + "isoDate": "2024-01-11T19:00:09.000Z" + }, + { + "creator": "Jonel Aleccia", + "date": "2024-01-11T18:56:55+00:00", + "title": "Drugs like Ozempic and Wegovy show no link with suicide, FDA says", + "link": "https://www.independent.co.uk/news/fda-ap-ozempic-patients-b2477261.html", + "pubDate": "Thu, 11 Jan 2024 18:56:55 GMT", + "dc:creator": "Jonel Aleccia", + "dc:date": "2024-01-11T18:56:55+00:00", + "content": "Federal officials say a preliminary review finds no connection between suicidal thoughts and a new class of diabetes and obesity drugs", + "contentSnippet": "Federal officials say a preliminary review finds no connection between suicidal thoughts and a new class of diabetes and obesity drugs", + "guid": "b2477261", + "isoDate": "2024-01-11T18:56:55.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2024-01-11T18:55:56+00:00", + "title": "Iran seizes oil tanker off Oman as Middle East tensions rise", + "link": "https://www.independent.co.uk/news/world/middle-east/iran-ship-oman-oil-us-b2477062.html", + "pubDate": "Thu, 11 Jan 2024 18:55:56 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2024-01-11T18:55:56+00:00", + "content": "

Seizure comes as the Iran-backed Houthis attack ships in the Red Sea

", + "contentSnippet": "Seizure comes as the Iran-backed Houthis attack ships in the Red Sea", + "guid": "b2477062", + "categories": ["Middle East", "World"], + "isoDate": "2024-01-11T18:55:56.000Z" + }, + { + "creator": "Julia Reinstein", + "date": "2024-01-11T18:54:48+00:00", + "title": "Police officer jailed for drunken car crash that left colleague dead", + "link": "https://www.independent.co.uk/news/world/americas/crime/police-officer-jailed-car-crash-b2477247.html", + "pubDate": "Thu, 11 Jan 2024 18:54:48 GMT", + "dc:creator": "Julia Reinstein", + "dc:date": "2024-01-11T18:54:48+00:00", + "content": "

Robert Ferraro, 36, faces at least two years in prison for the crash that killed his fellow officer and friend.

", + "contentSnippet": "Robert Ferraro, 36, faces at least two years in prison for the crash that killed his fellow officer and friend.", + "guid": "b2477247", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-11T18:54:48.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-11T18:53:36+00:00", + "title": "Prince William laughs off \u2018secret nickname\u2019 with Rob Burrow as Mike Tindall apologises", + "link": "https://www.independent.co.uk/tv/sport/prince-william-rob-burrow-mnd-b2477257.html", + "pubDate": "Thu, 11 Jan 2024 18:53:36 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-11T18:53:36+00:00", + "content": "

The Prince of Wales shared a joke with Rob Burrow about his \u201csecret\u201d nickname in the royal family as he surprised the rugby legend with his CBE.

", + "contentSnippet": "The Prince of Wales shared a joke with Rob Burrow about his \u201csecret\u201d nickname in the royal family as he surprised the rugby legend with his CBE.", + "guid": "b2477257", + "categories": ["Sport", "Indy TV"], + "isoDate": "2024-01-11T18:53:36.000Z" + }, + { + "creator": "Alex Woodward", + "date": "2024-01-11T18:52:38+00:00", + "title": "Trump speaks out in court against fraud trial judge during closing arguments", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/trump-speaks-judge-closing-arguments-b2477233.html", + "pubDate": "Thu, 11 Jan 2024 18:52:38 GMT", + "dc:creator": "Alex Woodward", + "dc:date": "2024-01-11T18:52:38+00:00", + "content": "

The former president called the case \u2018a fraud on me\u2019 during a brief tirade from the defence table

", + "contentSnippet": "The former president called the case \u2018a fraud on me\u2019 during a brief tirade from the defence table", + "guid": "b2477233", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-11T18:52:38.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-11T18:51:02+00:00", + "title": "Dozens of rats scurry out of homeless person\u2019s blanket in New York subway", + "link": "https://www.independent.co.uk/tv/lifestyle/new-york-rats-homeless-person-blanket-b2477255.html", + "pubDate": "Thu, 11 Jan 2024 18:51:02 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-11T18:51:02+00:00", + "content": "

Shocking footage shows the moment dozens of rats scurried out of a homeless person\u2019s blanket in the New York subway.

", + "contentSnippet": "Shocking footage shows the moment dozens of rats scurried out of a homeless person\u2019s blanket in the New York subway.", + "guid": "b2477255", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-11T18:51:02.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-11T18:50:26+00:00", + "title": "Kate Garraway shares daughter\u2019s heartfelt request after death of father Derek Draper", + "link": "https://www.independent.co.uk/tv/lifestyle/kate-garraway-derek-draper-daughter-b2477252.html", + "pubDate": "Thu, 11 Jan 2024 18:50:26 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-11T18:50:26+00:00", + "content": "

Kate Garraway has shared a heartfelt conversation she had with her daughter Darcey after the death of her father Derek Draper.

", + "contentSnippet": "Kate Garraway has shared a heartfelt conversation she had with her daughter Darcey after the death of her father Derek Draper.", + "guid": "b2477252", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-11T18:50:26.000Z" + }, + { + "creator": "Joe Sommerlad", + "date": "2024-01-11T18:48:45+00:00", + "title": "What is a government shutdown and why do they happen?", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/government-shutdowns-house-senate-budgets-b2476960.html", + "pubDate": "Thu, 11 Jan 2024 18:48:45 GMT", + "dc:creator": "Joe Sommerlad", + "dc:date": "2024-01-11T18:48:45+00:00", + "content": "

Senate minority leader Mitch McConnell has indicated a new stop-gap funding deal could be needed to avert federal outage, creating a headache for new House speaker Mike Johnson

", + "contentSnippet": "Senate minority leader Mitch McConnell has indicated a new stop-gap funding deal could be needed to avert federal outage, creating a headache for new House speaker Mike Johnson", + "guid": "b2476960", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-11T18:48:45.000Z" + }, + { + "creator": "Graig Graziosi", + "date": "2024-01-11T18:48:31+00:00", + "title": "Marjorie Taylor Greene calls for Georgia DA to face criminal probe", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/marjorie-taylor-greene-georgia-criminal-probe-b2477222.html", + "pubDate": "Thu, 11 Jan 2024 18:48:31 GMT", + "dc:creator": "Graig Graziosi", + "dc:date": "2024-01-11T18:48:31+00:00", + "content": "

Georgia firebrand accused Fani Willis of laundering kickbacks through her \u2018secret boyfriend\u2019

", + "contentSnippet": "Georgia firebrand accused Fani Willis of laundering kickbacks through her \u2018secret boyfriend\u2019", + "guid": "b2477222", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-11T18:48:31.000Z" + }, + { + "creator": "Michael Jones", + "date": "2024-01-11T18:47:27+00:00", + "title": "Transfer news live: Arsenal target Borja Mayoral; Manchester United and Chelsea latest ", + "link": "https://www.independent.co.uk/sport/football/transfer-news-tottenham-arsenal-liverpool-chelsea-b2476854.html", + "pubDate": "Thu, 11 Jan 2024 18:47:27 GMT", + "dc:creator": "Michael Jones", + "dc:date": "2024-01-11T18:47:27+00:00", + "content": "

Timo Werner has completed a Premier League return while Ajax are reportedly interested in former Liverpool captain Jordan Henderson

", + "contentSnippet": "Timo Werner has completed a Premier League return while Ajax are reportedly interested in former Liverpool captain Jordan Henderson", + "guid": "b2474851", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T18:47:27.000Z" + }, + { + "creator": "George Sessions", + "date": "2024-01-11T18:45:34+00:00", + "title": "Tottenham defender Eric Dier set for medical ahead of move to Bayern Munich ", + "link": "https://www.independent.co.uk/sport/football/eric-dier-tottenham-bayern-munich-medical-b2477251.html", + "pubDate": "Thu, 11 Jan 2024 18:45:34 GMT", + "dc:creator": "George Sessions", + "dc:date": "2024-01-11T18:45:34+00:00", + "content": "

Spurs have been willing to listen to offers for Dier

", + "contentSnippet": "Spurs have been willing to listen to offers for Dier", + "guid": "b2476899", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T18:45:34.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-11T18:44:11+00:00", + "title": "Drew Barrymore cries watching The Wedding Singer as she sends message to co-star Adam Sandler", + "link": "https://www.independent.co.uk/tv/culture/drew-barrymore-cries-wedding-singer-adam-sandler-b2477112.html", + "pubDate": "Thu, 11 Jan 2024 18:44:11 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-11T18:44:11+00:00", + "content": "

Actress Drew Barrymore cries as she watches her 1998 smash-hit film The Wedding Singer.

", + "contentSnippet": "Actress Drew Barrymore cries as she watches her 1998 smash-hit film The Wedding Singer.", + "guid": "b2477112", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-11T18:44:11.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-11T18:44:00+00:00", + "title": "\u2018Exceeded my wildest dreams\u2019: Bill Belichick leaves the Patriots after record six Super Bowl wins", + "link": "https://www.independent.co.uk/tv/sport/bill-belichick-leaves-new-england-patriots-b2477223.html", + "pubDate": "Thu, 11 Jan 2024 18:44:00 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-11T18:44:00+00:00", + "content": "

Watch the moment legendary NFL coach Bill Belichick parts ways with the New England Patriots after 24 seasons as head coach.

", + "contentSnippet": "Watch the moment legendary NFL coach Bill Belichick parts ways with the New England Patriots after 24 seasons as head coach.", + "guid": "b2477223", + "categories": ["Sport", "Indy TV"], + "isoDate": "2024-01-11T18:44:00.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-11T18:42:01+00:00", + "title": "Bungling brothers sent tumbling from stolen motorbike during police chase", + "link": "https://www.independent.co.uk/tv/news/nottingham-crime-motorbike-police-chase-b2477093.html", + "pubDate": "Thu, 11 Jan 2024 18:42:01 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-11T18:42:01+00:00", + "content": "

Watch the moment two brothers were thrown from their stolen motorbike during a police chase.

", + "contentSnippet": "Watch the moment two brothers were thrown from their stolen motorbike during a police chase.", + "guid": "b2477093", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-11T18:42:01.000Z" + }, + { + "creator": "Kelly Rissman", + "date": "2024-01-11T18:41:14+00:00", + "title": "Tahoe resort avalanche victim named as harrowing warning signs revealed", + "link": "https://www.independent.co.uk/news/world/americas/avalanche-tahoe-palisades-resort-victim-b2477184.html", + "pubDate": "Thu, 11 Jan 2024 18:41:14 GMT", + "dc:creator": "Kelly Rissman", + "dc:date": "2024-01-11T18:41:14+00:00", + "content": "

The avalanche struck just 30 minutes after the KT-22 chairlift opened for the season

", + "contentSnippet": "The avalanche struck just 30 minutes after the KT-22 chairlift opened for the season", + "guid": "b2477184", + "categories": ["Americas", "World"], + "isoDate": "2024-01-11T18:41:14.000Z" + }, + { + "creator": "Kaleigh Werner", + "date": "2024-01-11T18:39:54+00:00", + "title": "Full list of US 2024 federal holiday dates", + "link": "https://www.independent.co.uk/life-style/us-federal-holidays-2024-dates-b2477250.html", + "pubDate": "Thu, 11 Jan 2024 18:39:54 GMT", + "dc:creator": "Kaleigh Werner", + "dc:date": "2024-01-11T18:39:54+00:00", + "content": "

The list of US federal holidays is made up of 11 days of significance that Americans recognise and celebrate

", + "contentSnippet": "The list of US federal holidays is made up of 11 days of significance that Americans recognise and celebrate", + "guid": "b2451952", + "categories": ["Lifestyle"], + "isoDate": "2024-01-11T18:39:54.000Z" + }, + { + "creator": "Rachel Sharp", + "date": "2024-01-11T18:38:59+00:00", + "title": "Full timeline of Jennifer Dulos\u2019 disappearance as her love rival faces trial over murder", + "link": "https://www.independent.co.uk/news/world/americas/crime/jennifer-dulos-murder-timeline-michelle-troconis-b2477156.html", + "pubDate": "Thu, 11 Jan 2024 18:38:59 GMT", + "dc:creator": "Rachel Sharp", + "dc:date": "2024-01-11T18:38:59+00:00", + "content": "

After almost five years, the tragic case of Jennifer Dulos has finally made its way into a courtroom in Connecticut as the trial of her dead husband Fotis Dulos\u2019 lover Michelle Troconis gets under way. Rachel Sharp reports

", + "contentSnippet": "After almost five years, the tragic case of Jennifer Dulos has finally made its way into a courtroom in Connecticut as the trial of her dead husband Fotis Dulos\u2019 lover Michelle Troconis gets under way. Rachel Sharp reports", + "guid": "b2477156", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-11T18:38:59.000Z" + }, + { + "creator": "Julia Reinstein", + "date": "2024-01-11T18:38:25+00:00", + "title": "Florida man arrested for threatening \u2018racially motivated mass casualty event\u2019", + "link": "https://www.independent.co.uk/news/world/americas/crime/florida-arrest-white-supremacist-shooting-b2477177.html", + "pubDate": "Thu, 11 Jan 2024 18:38:25 GMT", + "dc:creator": "Julia Reinstein", + "dc:date": "2024-01-11T18:38:25+00:00", + "content": "

FBI agents found white supremacist propaganda and firearms in the man\u2019s home.

", + "contentSnippet": "FBI agents found white supremacist propaganda and firearms in the man\u2019s home.", + "guid": "b2477177", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2024-01-11T18:38:25.000Z" + }, + { + "creator": "Michelle Del Rey", + "date": "2024-01-11T18:36:10+00:00", + "title": "How the Alaska Airlines flight will impact the future of air travel", + "link": "https://www.independent.co.uk/news/world/americas/alaska-airlines-flight-emergency-door-b2476045.html", + "pubDate": "Thu, 11 Jan 2024 18:36:10 GMT", + "dc:creator": "Michelle Del Rey", + "dc:date": "2024-01-11T18:36:10+00:00", + "content": "

In the short term, experts say passengers should anticipate flight cancellations, writes Michelle Del Rey

", + "contentSnippet": "In the short term, experts say passengers should anticipate flight cancellations, writes Michelle Del Rey", + "guid": "b2476045", + "categories": ["Americas", "World"], + "isoDate": "2024-01-11T18:36:10.000Z" + }, + { + "creator": "Corey Williams", + "date": "2024-01-11T18:33:39+00:00", + "title": "Prosecutors seek 28-year sentence for Heather Mack in mom's Bali slaying, stuffing into suitcase", + "link": "https://www.independent.co.uk/news/ap-heather-mack-chicago-bali-american-b2477249.html", + "pubDate": "Thu, 11 Jan 2024 18:33:39 GMT", + "dc:creator": "Corey Williams", + "dc:date": "2024-01-11T18:33:39+00:00", + "content": "Federal prosecutors in Chicago are recommending a 28-year prison sentence for an American woman who pleaded guilty to helping kill her mother and stuffing the body in a suitcase during a vacation at a Bali resort nearly a decade ago", + "contentSnippet": "Federal prosecutors in Chicago are recommending a 28-year prison sentence for an American woman who pleaded guilty to helping kill her mother and stuffing the body in a suitcase during a vacation at a Bali resort nearly a decade ago", + "guid": "b2477249", + "isoDate": "2024-01-11T18:33:39.000Z" + }, + { + "creator": "Brooke Schultz", + "date": "2024-01-11T18:32:19+00:00", + "title": "Philly's elected prosecutor sues to stop law designed to limit authority on transit system crimes", + "link": "https://www.independent.co.uk/news/ap-senate-republican-supreme-court-america-b2477248.html", + "pubDate": "Thu, 11 Jan 2024 18:32:19 GMT", + "dc:creator": "Brooke Schultz", + "dc:date": "2024-01-11T18:32:19+00:00", + "content": "Philadelphia\u2019s two-term elected progressive district attorney is suing to halt the appointment of a new special prosecutor for crimes that occur on the city\u2019s trains", + "contentSnippet": "Philadelphia\u2019s two-term elected progressive district attorney is suing to halt the appointment of a new special prosecutor for crimes that occur on the city\u2019s trains", + "guid": "b2477248", + "isoDate": "2024-01-11T18:32:19.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-11T18:28:48+00:00", + "title": "Scottish football club asks Taylor Swift to \u2018gies some dosh\u2019 in appeal for A-list investment", + "link": "https://www.independent.co.uk/tv/sport/taylor-swift-scotland-football-motherwell-b2477245.html", + "pubDate": "Thu, 11 Jan 2024 18:28:48 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-11T18:28:48+00:00", + "content": "

A Scottish football club has asked Taylor Swift to \u201cgies some dosh\u201d in a viral video aimed at attracting investment from A-listers.

", + "contentSnippet": "A Scottish football club has asked Taylor Swift to \u201cgies some dosh\u201d in a viral video aimed at attracting investment from A-listers.", + "guid": "b2477245", + "categories": ["Sport", "Indy TV"], + "isoDate": "2024-01-11T18:28:48.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-11T18:27:00+00:00", + "title": "California ski resort reopens as workers clear debris from deadly avalanche", + "link": "https://www.independent.co.uk/news/california-ap-lake-tahoe-reno-nevada-b2477246.html", + "pubDate": "Thu, 11 Jan 2024 18:27:00 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-11T18:27:00+00:00", + "content": "The California ski resorts Palisades Tahoe and Alpine Meadows are reopening with a focus on safety a day after an avalanche killed a skier and injured three others", + "contentSnippet": "The California ski resorts Palisades Tahoe and Alpine Meadows are reopening with a focus on safety a day after an avalanche killed a skier and injured three others", + "guid": "b2477246", + "isoDate": "2024-01-11T18:27:00.000Z" + }, + { + "creator": "The Associated Press", + "date": "2024-01-11T18:23:21+00:00", + "title": "Shohei Ohtani visits US Embassy in Japan and his dog gets mock visa", + "link": "https://www.independent.co.uk/news/shohei-ohtani-ap-rahm-emanuel-tokyo-us-embassy-b2477244.html", + "pubDate": "Thu, 11 Jan 2024 18:23:21 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2024-01-11T18:23:21+00:00", + "content": "Shohei Ohtani has visited the U.S. Embassy in Tokyo", + "contentSnippet": "Shohei Ohtani has visited the U.S. Embassy in Tokyo", + "guid": "b2477244", + "isoDate": "2024-01-11T18:23:21.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2024-01-11T18:22:13+00:00", + "title": "Ronnie O\u2019Sullivan overcomes illness to grind past Barry Hawkins at Masters", + "link": "https://www.independent.co.uk/sport/snooker/ronnie-osullivan-barry-hawkins-masters-result-b2477154.html", + "pubDate": "Thu, 11 Jan 2024 18:22:13 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2024-01-11T18:22:13+00:00", + "content": "

An apparently under-the-weather O\u2019Sullivan was keen for a curry after fighting his way into the last four

", + "contentSnippet": "An apparently under-the-weather O\u2019Sullivan was keen for a curry after fighting his way into the last four", + "guid": "b2477154", + "categories": ["Snooker", "Sport"], + "isoDate": "2024-01-11T18:22:13.000Z" + }, + { + "creator": "Michael Hill", + "date": "2024-01-11T18:19:35+00:00", + "title": "Murder trial begins months after young woman driven into wrong driveway shot in upstate New York", + "link": "https://www.independent.co.uk/news/ap-kaylin-gillis-new-york-vermont-albany-b2477241.html", + "pubDate": "Thu, 11 Jan 2024 18:19:35 GMT", + "dc:creator": "Michael Hill", + "dc:date": "2024-01-11T18:19:35+00:00", + "content": "An attorney for an upstate New York man accused of fatally shooting a 20-year-old woman who was with a group of friends who accidentally turned into his backcountry driveway called it a \u201cterrible accident\u201d involving a defective gun as arguments in his murder trial began", + "contentSnippet": "An attorney for an upstate New York man accused of fatally shooting a 20-year-old woman who was with a group of friends who accidentally turned into his backcountry driveway called it a \u201cterrible accident\u201d involving a defective gun as arguments in his murder trial began", + "guid": "b2477241", + "isoDate": "2024-01-11T18:19:35.000Z" + }, + { + "creator": "Dusan Stojanovic", + "date": "2024-01-11T18:17:50+00:00", + "title": "Serbia says it is disappointed with Kosovo's request to buy anti-tank missiles from the US", + "link": "https://www.independent.co.uk/news/kosovo-ap-serbia-aleksandar-vucic-belgrade-b2477242.html", + "pubDate": "Thu, 11 Jan 2024 18:17:50 GMT", + "dc:creator": "Dusan Stojanovic", + "dc:date": "2024-01-11T18:17:50+00:00", + "content": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", + "contentSnippet": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", + "guid": "b2477242", + "isoDate": "2024-01-11T18:17:50.000Z" + }, + { + "creator": "Scott McFetridge", + "date": "2024-01-11T18:17:11+00:00", + "title": "Iowa community recalls 11-year-old boy with 'vibrant soul' killed in school shooting", + "link": "https://www.independent.co.uk/news/ap-iowa-school-catholic-church-des-moines-b2477239.html", + "pubDate": "Thu, 11 Jan 2024 18:17:11 GMT", + "dc:creator": "Scott McFetridge", + "dc:date": "2024-01-11T18:17:11+00:00", + "content": "Hundreds of people said goodbye to an 11-year-old boy known as \u201cSmiley,\u201d a week after he was shot to death at his Iowa school by an older student who also wounded seven other children and staff members before killing himself", + "contentSnippet": "Hundreds of people said goodbye to an 11-year-old boy known as \u201cSmiley,\u201d a week after he was shot to death at his Iowa school by an older student who also wounded seven other children and staff members before killing himself", + "guid": "b2477239", + "isoDate": "2024-01-11T18:17:11.000Z" + }, + { + "creator": "Rhys Jones", + "date": "2024-01-11T18:15:15+00:00", + "title": "The toilet-trained cat with impeccable bathroom etiquette", + "link": "https://www.independent.co.uk/tv/lifestyle/cat-taught-use-toilet-b2477238.html", + "pubDate": "Thu, 11 Jan 2024 18:15:15 GMT", + "dc:creator": "Rhys Jones", + "dc:date": "2024-01-11T18:15:15+00:00", + "content": "

Many owners treat their pets like furry children, but this French owner has taken pet humanisation to the next level.

", + "contentSnippet": "Many owners treat their pets like furry children, but this French owner has taken pet humanisation to the next level.", + "guid": "b2477238", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-11T18:15:15.000Z" + }, + { + "creator": "Kevin E G Perry", + "date": "2024-01-11T18:12:19+00:00", + "title": "Riley Keough helped finish mother Lisa Marie Presley\u2019s forthcoming posthumous memoir", + "link": "https://www.independent.co.uk/arts-entertainment/books/news/lisa-marie-presley-riley-keough-memoir-b2477224.html", + "pubDate": "Thu, 11 Jan 2024 18:12:19 GMT", + "dc:creator": "Kevin E G Perry", + "dc:date": "2024-01-11T18:12:19+00:00", + "content": "

Presley was working on the book at the time of her death last year

", + "contentSnippet": "Presley was working on the book at the time of her death last year", + "guid": "b2477224", + "categories": ["News", "Books", "Culture"], + "isoDate": "2024-01-11T18:12:19.000Z" + }, + { + "creator": "Tim Reynolds", + "date": "2024-01-11T18:09:33+00:00", + "title": "Lionel Messi wasn't seen at MLS media day. Doesn't matter, since everyone talked about him", + "link": "https://www.independent.co.uk/news/world/americas/lionel-messi-ap-mls-inter-miami-john-herdman-b2477231.html", + "pubDate": "Thu, 11 Jan 2024 18:09:33 GMT", + "dc:creator": "Tim Reynolds", + "dc:date": "2024-01-11T18:09:33+00:00", + "content": "Lionel Messi was not visible at Major League Soccer\u2019s annual media day on Thursday", + "contentSnippet": "Lionel Messi was not visible at Major League Soccer\u2019s annual media day on Thursday", + "guid": "b2477231", + "categories": ["Americas", "World"], + "isoDate": "2024-01-11T18:09:33.000Z" + }, + { + "creator": "Archie Mitchell", + "date": "2024-01-11T18:00:38+00:00", + "title": "Disgraced former Tory MP Peter Bone spotted campaigning for girlfriend in seat he was stripped of", + "link": "https://www.independent.co.uk/news/uk/politics/tory-election-peter-bone-sunak-b2477212.html", + "pubDate": "Thu, 11 Jan 2024 18:00:38 GMT", + "dc:creator": "Archie Mitchell", + "dc:date": "2024-01-11T18:00:38+00:00", + "content": "

In a move which pollsters have said will add to the party\u2019s woes, Tory HQ picked his partner Helen Harrison, a local councillor, to fight the contest to replace him

", + "contentSnippet": "In a move which pollsters have said will add to the party\u2019s woes, Tory HQ picked his partner Helen Harrison, a local councillor, to fight the contest to replace him", + "guid": "b2477212", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-11T18:00:38.000Z" + }, + { + "creator": "Andrew Feinberg", + "date": "2024-01-11T17:55:00+00:00", + "title": "Jill Biden says GOP\u2019s \u2018cruel\u2019 attacks on Hunter and family motivate her heading into 2024", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/jill-biden-hunter-biden-b2477125.html", + "pubDate": "Thu, 11 Jan 2024 17:55:00 GMT", + "dc:creator": "Andrew Feinberg", + "dc:date": "2024-01-11T17:55:00+00:00", + "content": "

Hunter Biden has long been a target of attacks from Republicans looking to deflect from former president Donald Trump\u2019s behaviour

", + "contentSnippet": "Hunter Biden has long been a target of attacks from Republicans looking to deflect from former president Donald Trump\u2019s behaviour", + "guid": "b2477125", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-11T17:55:00.000Z" + }, + { + "creator": "Inga Parkel", + "date": "2024-01-11T17:52:58+00:00", + "title": "Kristen Stewart confesses she \u2018hated making\u2019 Charlie\u2019s Angels reboot", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/kristen-stewart-charlies-angels-b2477147.html", + "pubDate": "Thu, 11 Jan 2024 17:52:58 GMT", + "dc:creator": "Inga Parkel", + "dc:date": "2024-01-11T17:52:58+00:00", + "content": "

\u2018Twilight\u2019 star led 2019 remake alongside Ella Balinska and Naomi Scott

", + "contentSnippet": "\u2018Twilight\u2019 star led 2019 remake alongside Ella Balinska and Naomi Scott", + "guid": "b2477147", + "categories": ["News", "Film", "Culture"], + "isoDate": "2024-01-11T17:52:58.000Z" + }, + { + "creator": "Sonia Twigg", + "date": "2024-01-11T17:52:49+00:00", + "title": "Azeem Rafiq says Colin Graves\u2019 return to Yorkshire \u2018empowers\u2019 racists", + "link": "https://www.independent.co.uk/sport/cricket/azeem-rafiq-colin-graves-yorkshire-b2477215.html", + "pubDate": "Thu, 11 Jan 2024 17:52:49 GMT", + "dc:creator": "Sonia Twigg", + "dc:date": "2024-01-11T17:52:49+00:00", + "content": "

Azeem Rafiq has spoken out against the return of Colin Graves, who is due to return as Yorkshire chairman.

", + "contentSnippet": "Azeem Rafiq has spoken out against the return of Colin Graves, who is due to return as Yorkshire chairman.", + "guid": "b2477215", + "categories": ["Cricket", "Sport"], + "isoDate": "2024-01-11T17:52:49.000Z" + }, + { + "creator": "Helen Wilson-Beevers", + "date": "2024-01-11T17:52:06+00:00", + "title": "14 best tinted moisturisers for lightweight coverage and skincare benefits", + "link": "https://www.independent.co.uk/extras/indybest/fashion-beauty/skincare/best-tinted-moisturiser-spf-face-oil-free-sensitive-pale-skin-uk-review-a9579666.html", + "pubDate": "Thu, 11 Jan 2024 17:52:06 GMT", + "dc:creator": "Helen Wilson-Beevers", + "dc:date": "2024-01-11T17:52:06+00:00", + "content": "

From buildable coverage to sheer and subtle finishes, these skin-blurring formulas are well worth a browse

", + "contentSnippet": "From buildable coverage to sheer and subtle finishes, these skin-blurring formulas are well worth a browse", + "guid": "a9579666", + "categories": ["Skincare", "Fashion & Beauty", "IndyBest", "Extras"], + "isoDate": "2024-01-11T17:52:06.000Z" + }, + { + "creator": "Jane Dalton", + "date": "2024-01-11T17:49:52+00:00", + "title": "XL bully dogs to be banned in Scotland after owners cross border to beat new rules", + "link": "https://www.independent.co.uk/news/uk/home-news/xl-bully-ban-scotland-update-confirmed-b2477023.html", + "pubDate": "Thu, 11 Jan 2024 17:49:52 GMT", + "dc:creator": "Jane Dalton", + "dc:date": "2024-01-11T17:49:52+00:00", + "content": "

England crackdown will be mirrored after influx of banned breed being dumped

", + "contentSnippet": "England crackdown will be mirrored after influx of banned breed being dumped", + "guid": "b2477023", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-11T17:49:52.000Z" + }, + { + "creator": "Fiona McIntosh", + "date": "2024-01-11T17:48:49+00:00", + "title": "The UK\u2019s best spa towns: Where to stay for restoration and relaxation in 2024", + "link": "https://www.independent.co.uk/travel/uk/best-spa-towns-uk-hotels-bath-b2475529.html", + "pubDate": "Thu, 11 Jan 2024 17:48:49 GMT", + "dc:creator": "Fiona McIntosh", + "dc:date": "2024-01-11T17:48:49+00:00", + "content": "

Britain\u2019s natural spring resorts have had a glow-up, with new multi-million-pound retreats and state-of-the art treatments, finds Fiona McIntosh

", + "contentSnippet": "Britain\u2019s natural spring resorts have had a glow-up, with new multi-million-pound retreats and state-of-the art treatments, finds Fiona McIntosh", + "guid": "b2475529", + "categories": ["UK", "Travel"], + "isoDate": "2024-01-11T17:48:49.000Z" + }, + { + "creator": "Alanna Durkin Richer", + "date": "2024-01-11T17:48:14+00:00", + "title": "Feds charge eBay over employees who sent live spiders and cockroaches to couple; company to pay $3M", + "link": "https://www.independent.co.uk/news/ap-massachusetts-boston-justice-department-california-b2477213.html", + "pubDate": "Thu, 11 Jan 2024 17:48:14 GMT", + "dc:creator": "Alanna Durkin Richer", + "dc:date": "2024-01-11T17:48:14+00:00", + "content": "Online retailer eBay has agreed to pay a $3 million fine to resolve criminal charges over employees who harassed a Massachusetts couple by sending live spiders, cockroaches and other disturbing items to their home", + "contentSnippet": "Online retailer eBay has agreed to pay a $3 million fine to resolve criminal charges over employees who harassed a Massachusetts couple by sending live spiders, cockroaches and other disturbing items to their home", + "guid": "b2477213", + "isoDate": "2024-01-11T17:48:14.000Z" + }, + { + "creator": "Louise Boyle", + "date": "2024-01-07T13:01:23+00:00", + "title": "Parenting through the climate crisis: Advice for raising children amid the battle for a livable planet", + "link": "https://www.independent.co.uk/climate-change/news/parenting-children-debate-environment-b2448782.html", + "pubDate": "Sun, 07 Jan 2024 13:01:23 GMT", + "dc:creator": "Louise Boyle", + "dc:date": "2024-01-07T13:01:23+00:00", + "content": "

A new book tackles big questions on reproduction and parenting, along with \u2018how to get politically involved to make the world safer for everyone\u2019s children\u2019

", + "contentSnippet": "A new book tackles big questions on reproduction and parenting, along with \u2018how to get politically involved to make the world safer for everyone\u2019s children\u2019", + "guid": "b2448782", + "categories": ["News", "Climate"], + "isoDate": "2024-01-07T13:01:23.000Z" + }, + { + "creator": "Maanya Sachdeva", + "date": "2024-01-18T12:26:07+00:00", + "title": "Comedian Dana Carvey opens up about son\u2019s death as he returns to work ", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/dana-carvey-son-dex-death-b2480767.html", + "pubDate": "Thu, 18 Jan 2024 12:26:07 GMT", + "dc:creator": "Maanya Sachdeva", + "dc:date": "2024-01-18T12:26:07+00:00", + "content": "

Carvey, 68, confirmed his \u2018extremely talented\u2019 son had died from an accidental drug overdose last November

", + "contentSnippet": "Carvey, 68, confirmed his \u2018extremely talented\u2019 son had died from an accidental drug overdose last November", + "guid": "b2480767", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-18T12:26:07.000Z" + }, + { + "creator": "Nicole Vassell", + "date": "2024-01-18T12:25:37+00:00", + "title": "Baftas 2024: The full list of Bafta nominations \u2013 updating live", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/bafta-nominations-2024-list-b2480759.html", + "pubDate": "Thu, 18 Jan 2024 12:25:37 GMT", + "dc:creator": "Nicole Vassell", + "dc:date": "2024-01-18T12:25:37+00:00", + "content": "

\u2018Oppenheimer\u2019, \u2018Barbie\u2019 and \u2018Killers of the Flower Moon\u2019 are expected to battle it out for top prize

", + "contentSnippet": "\u2018Oppenheimer\u2019, \u2018Barbie\u2019 and \u2018Killers of the Flower Moon\u2019 are expected to battle it out for top prize", + "guid": "b2285242", + "categories": ["News", "Film", "Culture"], + "isoDate": "2024-01-18T12:25:37.000Z" + }, + { + "creator": "Matt Mathers,Archie Mitchell,Zoe Grunewald and Joe Middleton", + "date": "2024-01-18T12:25:19+00:00", + "title": "Rwanda bill - latest: Rishi Sunak pleads with the House of Lords to back deportation plan \u2013 live", + "link": "https://www.independent.co.uk/news/uk/politics/rwanda-bill-vote-rishi-sunak-results-tories-b2480641.html", + "pubDate": "Thu, 18 Jan 2024 12:25:19 GMT", + "dc:creator": "Matt Mathers,Archie Mitchell,Zoe Grunewald and Joe Middleton", + "dc:date": "2024-01-18T12:25:19+00:00", + "content": "

\u2018It\u2019s now time for the Lords to pass this bill\u2019, PM says

", + "contentSnippet": "\u2018It\u2019s now time for the Lords to pass this bill\u2019, PM says", + "guid": "b2479124", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-18T12:25:19.000Z" + }, + { + "creator": "John Bowden,Oliver O'Connell,Ariana Baio and Joe Sommerlad", + "date": "2024-01-18T12:24:59+00:00", + "title": "Election 2024 live: Haley says DeSantis \u2018invisible\u2019 in New Hampshire", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/2024-elections-nh-gop-debate-biden-trump-b2480666.html", + "pubDate": "Thu, 18 Jan 2024 12:24:59 GMT", + "dc:creator": "John Bowden,Oliver O'Connell,Ariana Baio and Joe Sommerlad", + "dc:date": "2024-01-18T12:24:59+00:00", + "content": "

Ex-UN ambassador turns fire on Florida governor ahead of crucial Granite State primary

", + "contentSnippet": "Ex-UN ambassador turns fire on Florida governor ahead of crucial Granite State primary", + "guid": "b2475808", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-18T12:24:59.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-18T12:21:35+00:00", + "title": "Fujitsu engineer claims he \u2018can\u2019t remember\u2019 IT software in Post Office Horizon inquiry", + "link": "https://www.independent.co.uk/tv/news/horizon-fujitsu-scandal-post-office-inquiry-b2480792.html", + "pubDate": "Thu, 18 Jan 2024 12:21:35 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-18T12:21:35+00:00", + "content": "

A Fujitsu engineer claimed he \u201ccouldn\u2019t remember\u201d IT software he used during the Post Office Horizon IT scandal, an inquiry has heard.

", + "contentSnippet": "A Fujitsu engineer claimed he \u201ccouldn\u2019t remember\u201d IT software he used during the Post Office Horizon IT scandal, an inquiry has heard.", + "guid": "b2480792", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-18T12:21:35.000Z" + }, + { + "creator": "Amy-Clare Martin", + "date": "2024-01-18T12:21:22+00:00", + "title": "Convictions posthumously quashed for two rail workers framed by corrupt police officer", + "link": "https://www.independent.co.uk/news/uk/crime/convictions-quashed-appeal-court-derek-ridgewell-b2480776.html", + "pubDate": "Thu, 18 Jan 2024 12:21:22 GMT", + "dc:creator": "Amy-Clare Martin", + "dc:date": "2024-01-18T12:21:22+00:00", + "content": "

A judge said it was \u2018very unfortunate\u2019 that Basil Peterkin and Saliah Mehmet did not live to learn of their vindication

", + "contentSnippet": "A judge said it was \u2018very unfortunate\u2019 that Basil Peterkin and Saliah Mehmet did not live to learn of their vindication", + "guid": "b2480776", + "categories": ["Crime", "UK"], + "isoDate": "2024-01-18T12:21:22.000Z" + }, + { + "creator": "Ellie Muir", + "date": "2024-01-18T12:18:36+00:00", + "title": "The Traitors: Diane confronts murderer and reveals family twist ", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/traitors-diane-carson-ross-kerr-logan-b2480783.html", + "pubDate": "Thu, 18 Jan 2024 12:18:36 GMT", + "dc:creator": "Ellie Muir", + "dc:date": "2024-01-18T12:18:36+00:00", + "content": "

Diane Carson revealed her best-kept secret to a Traitor

", + "contentSnippet": "Diane Carson revealed her best-kept secret to a Traitor", + "guid": "b2480783", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-18T12:18:36.000Z" + }, + { + "creator": "Simon Calder", + "date": "2024-01-18T12:14:12+00:00", + "title": "Travel firm sells sunseeker holiday for \u00a31.40 an hour \u2013 but you have to be quick", + "link": "https://www.independent.co.uk/travel/news-and-advice/winter-sun-holiday-tunisia-tui-cold-weather-b2480805.html", + "pubDate": "Thu, 18 Jan 2024 12:14:12 GMT", + "dc:creator": "Simon Calder", + "dc:date": "2024-01-18T12:14:12+00:00", + "content": "

Exclusive: Flights to Egypt\u2019s Red Sea are selling for \u00a315 less than the Air Passenger Duty the airline must pay when the passenger steps aboard

", + "contentSnippet": "Exclusive: Flights to Egypt\u2019s Red Sea are selling for \u00a315 less than the Air Passenger Duty the airline must pay when the passenger steps aboard", + "guid": "b2480700", + "categories": ["News & Advice", "Travel"], + "isoDate": "2024-01-18T12:14:12.000Z" + }, + { + "creator": "Bassem Mroue", + "date": "2024-01-18T12:09:44+00:00", + "title": "An airstrike on southern Syria, likely carried out by Jordan's air force, kills 9", + "link": "https://www.independent.co.uk/news/jordan-ap-syria-beirut-syrian-observatory-for-human-rights-b2480811.html", + "pubDate": "Thu, 18 Jan 2024 12:09:44 GMT", + "dc:creator": "Bassem Mroue", + "dc:date": "2024-01-18T12:09:44+00:00", + "content": "Syrian opposition activists say an airstrike that was likely carried out by Jordan\u2019s air force on southern Syria has killed at least nine people in the latest of strikes in recent months", + "contentSnippet": "Syrian opposition activists say an airstrike that was likely carried out by Jordan\u2019s air force on southern Syria has killed at least nine people in the latest of strikes in recent months", + "guid": "b2480811", + "isoDate": "2024-01-18T12:09:44.000Z" + }, + { + "creator": "Lawrence Ostlere", + "date": "2024-01-18T12:09:19+00:00", + "title": "Transfer news live: Henderson to join Ajax, Newcastle chase Phillips, Arsenal and Tottenham eye winger", + "link": "https://www.independent.co.uk/sport/football/transfer-news-chelsea-arsenal-manchester-united-liverpool-b2480691.html", + "pubDate": "Thu, 18 Jan 2024 12:09:19 GMT", + "dc:creator": "Lawrence Ostlere", + "dc:date": "2024-01-18T12:09:19+00:00", + "content": "

Chelsea set a price for Armando Broja, Liverpool want defender and Amad Diallo makes clear his plans at Manchester United amid loan talk

", + "contentSnippet": "Chelsea set a price for Armando Broja, Liverpool want defender and Amad Diallo makes clear his plans at Manchester United amid loan talk", + "guid": "b2474851", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T12:09:19.000Z" + }, + { + "creator": "Jim van Wijk", + "date": "2024-01-18T12:07:01+00:00", + "title": "Restoring trust in Jordan Henderson \u2018will take some time\u2019 for LGBTQ+ community", + "link": "https://www.independent.co.uk/sport/football/jordan-henderson-lgbtq-saudi-arabia-wembley-liverpool-b2480753.html", + "pubDate": "Thu, 18 Jan 2024 12:07:01 GMT", + "dc:creator": "Jim van Wijk", + "dc:date": "2024-01-18T12:07:01+00:00", + "content": "Henderson, a high-profile supporter of LGBTQ+ rights in his time at Liverpool, was booed off the pitch at Wembley during a friendly in October.", + "contentSnippet": "Henderson, a high-profile supporter of LGBTQ+ rights in his time at Liverpool, was booed off the pitch at Wembley during a friendly in October.", + "guid": "b2480753", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T12:07:01.000Z" + }, + { + "creator": "Tom Watling ,Maroosha Muzaffar and Maira Butt", + "date": "2024-01-18T12:04:13+00:00", + "title": "Pakistan-Iran strikes latest: At least 9 dead as Islamabad hits back following missile attack from Tehran", + "link": "https://www.independent.co.uk/news/world/middle-east/pakistan-iran-attack-airstrikes-yemen-houthis-news-b2480663.html", + "pubDate": "Thu, 18 Jan 2024 12:04:13 GMT", + "dc:creator": "Tom Watling ,Maroosha Muzaffar and Maira Butt", + "dc:date": "2024-01-18T12:04:13+00:00", + "content": "

US conducted strikes on 14 Iran-backed Houthi missiles that were loaded to be fired in Houthi-controlled areas in Yemen

", + "contentSnippet": "US conducted strikes on 14 Iran-backed Houthi missiles that were loaded to be fired in Houthi-controlled areas in Yemen", + "guid": "b2477284", + "categories": ["Middle East", "World"], + "isoDate": "2024-01-18T12:04:13.000Z" + }, + { + "creator": "Kate Devlin", + "date": "2024-01-18T12:03:52+00:00", + "title": "Rishi Sunak rapped by watchdog over claim to have \u2018cleared\u2019 asylum backlog", + "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-asylum-backlog-watchdog-b2480789.html", + "pubDate": "Thu, 18 Jan 2024 12:03:52 GMT", + "dc:creator": "Kate Devlin", + "dc:date": "2024-01-18T12:03:52+00:00", + "content": "

Comes after the PM was accused of trying to \u2018cook the books\u2019 and a \u2018barefaced lie\u2019

", + "contentSnippet": "Comes after the PM was accused of trying to \u2018cook the books\u2019 and a \u2018barefaced lie\u2019", + "guid": "b2480789", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-18T12:03:52.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-18T12:03:04+00:00", + "title": "Travis Kelce offered free custom-made ring if he proposes to Taylor Swift", + "link": "https://www.independent.co.uk/tv/lifestyle/taylor-swift-travis-kelce-proposal-b2480803.html", + "pubDate": "Thu, 18 Jan 2024 12:03:04 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-18T12:03:04+00:00", + "content": "

Travis Kelce has been offered a free $1 million custom-made ring to use if he proposes to Taylor Swift.

", + "contentSnippet": "Travis Kelce has been offered a free $1 million custom-made ring to use if he proposes to Taylor Swift.", + "guid": "b2480803", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-18T12:03:04.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2024-01-18T12:02:44+00:00", + "title": "Bafta nominations 2024 \u2013 live: Awards announcement begins in London", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/bafta-nominations-2024-live-updates-films-b2480657.html", + "pubDate": "Thu, 18 Jan 2024 12:02:44 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2024-01-18T12:02:44+00:00", + "content": "

All the nominated films, actors and directors \u2013 as they\u2019re revealed

", + "contentSnippet": "All the nominated films, actors and directors \u2013 as they\u2019re revealed", + "guid": "b2480209", + "categories": ["News", "Film", "Culture"], + "isoDate": "2024-01-18T12:02:44.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2024-01-18T12:02:33+00:00", + "title": "Jordan Henderson set for medical ahead of move to Ajax from Al-Ettifaq \u2013 reports", + "link": "https://www.independent.co.uk/sport/football/jordan-henderson-alettifaq-liverpool-saudi-arabian-amsterdam-b2480730.html", + "pubDate": "Thu, 18 Jan 2024 12:02:33 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2024-01-18T12:02:33+00:00", + "content": "Former Liverpool captain Henderson, 33, signed for Al-Ettifaq in a lucrative but controversial move last summer.", + "contentSnippet": "Former Liverpool captain Henderson, 33, signed for Al-Ettifaq in a lucrative but controversial move last summer.", + "guid": "b2480730", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T12:02:33.000Z" + }, + { + "creator": "Oliver O'Connell,Joe Sommerlad and Gustaf Kilander", + "date": "2024-01-18T12:01:57+00:00", + "title": "Trump rages over E Jean Carroll prior to mother-in-law\u2019s funeral: Live", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/donald-trump-e-jean-carroll-trial-live-judge-court-b2480633.html", + "pubDate": "Thu, 18 Jan 2024 12:01:57 GMT", + "dc:creator": "Oliver O'Connell,Joe Sommerlad and Gustaf Kilander", + "dc:date": "2024-01-18T12:01:57+00:00", + "content": "

Former president juggling latest legal battle with campaigning ahead of New Hampshire primary

", + "contentSnippet": "Former president juggling latest legal battle with campaigning ahead of New Hampshire primary", + "guid": "b2463845", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-18T12:01:57.000Z" + }, + { + "creator": "Associated Press reporter", + "date": "2024-01-18T12:01:25+00:00", + "title": "Chaos at Panama Canal as global warming hits trade route", + "link": "https://www.independent.co.uk/news/world/americas/panama-canal-shipping-drought-figures-b2480802.html", + "pubDate": "Thu, 18 Jan 2024 12:01:25 GMT", + "dc:creator": "Associated Press reporter", + "dc:date": "2024-01-18T12:01:25+00:00", + "content": "

One of the most severe droughts to ever hit the Central American nation has stirred chaos in the 50-mile maritime route

", + "contentSnippet": "One of the most severe droughts to ever hit the Central American nation has stirred chaos in the 50-mile maritime route", + "guid": "b2480802", + "categories": ["Americas", "World"], + "isoDate": "2024-01-18T12:01:25.000Z" + }, + { + "creator": "Rory Dollard", + "date": "2024-01-18T11:55:56+00:00", + "title": "Last-gasp TV deal agreed for England\u2019s Test cricket series in India to avoid blackout", + "link": "https://www.independent.co.uk/sport/cricket/england-india-tv-where-to-watch-tnt-sports-b2480787.html", + "pubDate": "Thu, 18 Jan 2024 11:55:56 GMT", + "dc:creator": "Rory Dollard", + "dc:date": "2024-01-18T11:55:56+00:00", + "content": "

TNT Sports will show the five-match series that starts next week, narrowing avoiding a blackout in the UK

", + "contentSnippet": "TNT Sports will show the five-match series that starts next week, narrowing avoiding a blackout in the UK", + "guid": "b2480787", + "categories": ["Cricket", "Sport"], + "isoDate": "2024-01-18T11:55:56.000Z" + }, + { + "creator": "Stuti Mishra and Lydia Patrick", + "date": "2024-01-18T11:54:36+00:00", + "title": "UK weather- live: Flying debris to cause \u2018danger to life\u2019 as Met Office issue fresh warning amid snow chaos", + "link": "https://www.independent.co.uk/weather/met-office-weather-warnings-snow-b2480578.html", + "pubDate": "Thu, 18 Jan 2024 11:54:36 GMT", + "dc:creator": "Stuti Mishra and Lydia Patrick", + "dc:date": "2024-01-18T11:54:36+00:00", + "content": "

Rare amber warning in place in Scotland as UK sees another below-freezing night

", + "contentSnippet": "Rare amber warning in place in Scotland as UK sees another below-freezing night", + "guid": "b2472054", + "categories": ["Weather"], + "isoDate": "2024-01-18T11:54:36.000Z" + }, + { + "creator": "Eleanor Crooks", + "date": "2024-01-18T11:53:25+00:00", + "title": "Cameron Norrie plays down physical issues after five-set win at Australian Open", + "link": "https://www.independent.co.uk/sport/tennis/cameron-norrie-british-australian-auckland-eurosport-b2480800.html", + "pubDate": "Thu, 18 Jan 2024 11:53:25 GMT", + "dc:creator": "Eleanor Crooks", + "dc:date": "2024-01-18T11:53:25+00:00", + "content": "The British number one fought back from two sets to love down to win a match for the third time in his career.", + "contentSnippet": "The British number one fought back from two sets to love down to win a match for the third time in his career.", + "guid": "b2480800", + "categories": ["Tennis", "Sport"], + "isoDate": "2024-01-18T11:53:25.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-18T11:52:01+00:00", + "title": "Jennifer Lopez and Ben Affleck ride motorcycle together in This Is Me... Now trailer", + "link": "https://www.independent.co.uk/tv/culture/jlo-ben-affleck-this-is-me-now-b2480793.html", + "pubDate": "Thu, 18 Jan 2024 11:52:01 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-18T11:52:01+00:00", + "content": "

Jennifer Lopez stars in a trailer for her upcoming film This Is Me... Now: A Love Story, which will be released on Amazon's Prime Video to coincide with her first studio album in more than ten years.

", + "contentSnippet": "Jennifer Lopez stars in a trailer for her upcoming film This Is Me... Now: A Love Story, which will be released on Amazon's Prime Video to coincide with her first studio album in more than ten years.", + "guid": "b2480793", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-18T11:52:01.000Z" + }, + { + "creator": "Ben Hatton", + "date": "2024-01-18T11:52:01+00:00", + "title": "Fujitsu vows to compensate victims of Post Office Horizon IT scandal", + "link": "https://www.independent.co.uk/business/fujitsu-vows-to-compensate-victims-of-post-office-horizon-it-scandal-b2480801.html", + "pubDate": "Thu, 18 Jan 2024 11:52:01 GMT", + "dc:creator": "Ben Hatton", + "dc:date": "2024-01-18T11:52:01+00:00", + "content": "The Japanese technology firm offered its \u2018deepest apologies\u2019 to subpostmasters and their families in a fresh statement on Thursday.", + "contentSnippet": "The Japanese technology firm offered its \u2018deepest apologies\u2019 to subpostmasters and their families in a fresh statement on Thursday.", + "guid": "b2480801", + "categories": ["Business"], + "isoDate": "2024-01-18T11:52:01.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-18T11:51:44+00:00", + "title": "Rishi Sunak unable to confirm when Rwanda flights will take off after policy win", + "link": "https://www.independent.co.uk/tv/news/rishi-sunak-rwanda-vote-flights-b2480781.html", + "pubDate": "Thu, 18 Jan 2024 11:51:44 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-18T11:51:44+00:00", + "content": "

Rishi Sunak did not guarantee that a flight would take off to Rwanda before the general election if legislation passed the House of Lords quickly.

", + "contentSnippet": "Rishi Sunak did not guarantee that a flight would take off to Rwanda before the general election if legislation passed the House of Lords quickly.", + "guid": "b2480781", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-18T11:51:44.000Z" + }, + { + "creator": "Tom Watling and Maira Butt", + "date": "2024-01-18T11:46:42+00:00", + "title": "Russia-Ukraine war \u2013 live: Kyiv targets St Petersburg oil facility in rare drone attack on Putin\u2019s home city", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-live-putin-drone-strikes-b2480572.html", + "pubDate": "Thu, 18 Jan 2024 11:46:42 GMT", + "dc:creator": "Tom Watling and Maira Butt", + "dc:date": "2024-01-18T11:46:42+00:00", + "content": "

Russian outlets are claiming that the drone struck between two fuel tanks in a St Petersburg oil facility

", + "contentSnippet": "Russian outlets are claiming that the drone struck between two fuel tanks in a St Petersburg oil facility", + "guid": "b2466307", + "categories": ["Europe", "World"], + "isoDate": "2024-01-18T11:46:42.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2024-01-18T11:46:31+00:00", + "title": "Visual artists need better protection from AI, group warns", + "link": "https://www.independent.co.uk/tech/government-b2480794.html", + "pubDate": "Thu, 18 Jan 2024 11:46:31 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2024-01-18T11:46:31+00:00", + "content": "The Design And Artists Copyright Society called for Government action after a survey found that respondents wanted greater protection.", + "contentSnippet": "The Design And Artists Copyright Society called for Government action after a survey found that respondents wanted greater protection.", + "guid": "b2480794", + "categories": ["Tech"], + "isoDate": "2024-01-18T11:46:31.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-18T11:45:04+00:00", + "title": "Halle Bailey reveals why she kept pregnancy secret", + "link": "https://www.independent.co.uk/tv/lifestyle/halle-bailey-secret-pregnancy-baby-b2480791.html", + "pubDate": "Thu, 18 Jan 2024 11:45:04 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-18T11:45:04+00:00", + "content": "

Halle Bailey has explained why she decided to keep her pregnancy a secret, after announcing the birth of her baby boy.

", + "contentSnippet": "Halle Bailey has explained why she decided to keep her pregnancy a secret, after announcing the birth of her baby boy.", + "guid": "b2480791", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-18T11:45:04.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-18T11:43:39+00:00", + "title": "Watch live: Bafta 2024 nominations announced by Kingsley Ben-Adir and Naomi Ackie as Barbie and Oppenheimer expected to triumph", + "link": "https://www.independent.co.uk/arts-entertainment/bafta-nominations-2024-watch-live-b2480717.html", + "pubDate": "Thu, 18 Jan 2024 11:43:39 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-18T11:43:39+00:00", + "content": "

Watch live as Bafta nominations for the 2024 awards are announced on Thursday, 18 January.

", + "contentSnippet": "Watch live as Bafta nominations for the 2024 awards are announced on Thursday, 18 January.", + "guid": "b2480717", + "categories": ["Culture"], + "isoDate": "2024-01-18T11:43:39.000Z" + }, + { + "creator": "Joe Middleton", + "date": "2024-01-18T11:42:12+00:00", + "title": "The most scammed items on Facebook Marketplace revelaed", + "link": "https://www.independent.co.uk/news/uk/home-news/facebook-markeplace-scams-tsb-phone-b2480716.html", + "pubDate": "Thu, 18 Jan 2024 11:42:12 GMT", + "dc:creator": "Joe Middleton", + "dc:date": "2024-01-18T11:42:12+00:00", + "content": "

The banking retail group found that 34 per cent of the listings on the online shop were fraudulent

", + "contentSnippet": "The banking retail group found that 34 per cent of the listings on the online shop were fraudulent", + "guid": "b2480716", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-18T11:42:12.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2024-01-18T11:41:14+00:00", + "title": "Pakistan conducts retaliatory strikes inside Iran amid fears of widening conflict", + "link": "https://www.independent.co.uk/asia/south-asia/pakistan-response-iran-airstrikes-attack-latest-b2480574.html", + "pubDate": "Thu, 18 Jan 2024 11:41:14 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2024-01-18T11:41:14+00:00", + "content": "

Tehran says at least nine killed in Pakistan\u2019s air strike on border village

", + "contentSnippet": "Tehran says at least nine killed in Pakistan\u2019s air strike on border village", + "guid": "b2480574", + "categories": ["South Asia", "Asia"], + "isoDate": "2024-01-18T11:41:14.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2024-01-18T11:36:38+00:00", + "title": "US launches fourth day of strikes against Houthis in Yemen targeting missiles ready for launch", + "link": "https://www.independent.co.uk/news/world/middle-east/yemen-houthi-rebels-us-central-command-attacks-b2480687.html", + "pubDate": "Thu, 18 Jan 2024 11:36:38 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2024-01-18T11:36:38+00:00", + "content": "

US military initiates new series of missile strikes on locations in Yemen under Houthi control

", + "contentSnippet": "US military initiates new series of missile strikes on locations in Yemen under Houthi control", + "guid": "b2480687", + "categories": ["Middle East", "World"], + "isoDate": "2024-01-18T11:36:38.000Z" + }, + { + "creator": "Anthony Cuthbertson", + "date": "2024-01-18T11:36:22+00:00", + "title": "First ever space-to-Earth solar power mission succeeds", + "link": "https://www.independent.co.uk/space/space-solar-power-electricity-microwaves-b2480671.html", + "pubDate": "Thu, 18 Jan 2024 11:36:22 GMT", + "dc:creator": "Anthony Cuthbertson", + "dc:date": "2024-01-18T11:36:22+00:00", + "content": "

Scientists say success of test will \u2018help chart the future of space solar power\u2019

", + "contentSnippet": "Scientists say success of test will \u2018help chart the future of space solar power\u2019", + "guid": "b2480671", + "categories": ["Space"], + "isoDate": "2024-01-18T11:36:22.000Z" + }, + { + "creator": "Francois Murphy", + "date": "2024-01-18T11:34:31+00:00", + "title": "Beer Party to provide sober warning to rival politicians in Austrian elections", + "link": "https://www.independent.co.uk/news/world/europe/austria-beer-party-election-leader-b2480782.html", + "pubDate": "Thu, 18 Jan 2024 11:34:31 GMT", + "dc:creator": "Francois Murphy", + "dc:date": "2024-01-18T11:34:31+00:00", + "content": "

\u2018We are convinced the Beer Party can make a positive contribution in parliament\u2019

", + "contentSnippet": "\u2018We are convinced the Beer Party can make a positive contribution in parliament\u2019", + "guid": "b2480782", + "categories": ["Europe", "World"], + "isoDate": "2024-01-18T11:34:31.000Z" + }, + { + "creator": "Nilima Marshall", + "date": "2024-01-18T11:32:08+00:00", + "title": "Peregrine Moon lander on course to burn up in Earth\u2019s atmosphere", + "link": "https://www.independent.co.uk/space/earth-moon-south-pacific-open-university-cape-canaveral-b2480632.html", + "pubDate": "Thu, 18 Jan 2024 11:32:08 GMT", + "dc:creator": "Nilima Marshall", + "dc:date": "2024-01-18T11:32:08+00:00", + "content": "The spacecraft is due to re-enter at 9pm UK time.", + "contentSnippet": "The spacecraft is due to re-enter at 9pm UK time.", + "guid": "b2480632", + "categories": ["Space"], + "isoDate": "2024-01-18T11:32:08.000Z" + }, + { + "creator": "Andrew Baldock", + "date": "2024-01-18T11:31:31+00:00", + "title": "Exeter boss backing \u2018calm character\u2019 Immanuel Feyi-Waboso to thrive with England", + "link": "https://www.independent.co.uk/sport/rugby/rugby-union/rob-baxter-exeter-england-six-nations-wales-b2480788.html", + "pubDate": "Thu, 18 Jan 2024 11:31:31 GMT", + "dc:creator": "Andrew Baldock", + "dc:date": "2024-01-18T11:31:31+00:00", + "content": "Chiefs wing is pushing hard for England Six Nations selection.", + "contentSnippet": "Chiefs wing is pushing hard for England Six Nations selection.", + "guid": "b2480788", + "categories": ["Rugby Union", "Rugby", "Sport"], + "isoDate": "2024-01-18T11:31:31.000Z" + }, + { + "creator": "Chloe Hubbard", + "date": "2024-01-18T11:30:29+00:00", + "title": "7 best running buggies for tackling trail, track and city routes with baby in tow", + "link": "https://www.independent.co.uk/extras/indybest/kids/baby-tech-essentials/best-running-buggy-b2155675.html", + "pubDate": "Thu, 18 Jan 2024 11:30:29 GMT", + "dc:creator": "Chloe Hubbard", + "dc:date": "2024-01-18T11:30:29+00:00", + "content": "

Exercising with little passengers on board provides a convenient way to keep fit

", + "contentSnippet": "Exercising with little passengers on board provides a convenient way to keep fit", + "guid": "b2155675", + "categories": ["Baby Tech & Essentials", "Kids", "IndyBest", "Extras"], + "isoDate": "2024-01-18T11:30:29.000Z" + }, + { + "creator": "Jamie Braidwood", + "date": "2024-01-18T11:28:55+00:00", + "title": "Emma Raducanu struggles physically in marathon Australian Open defeat", + "link": "https://www.independent.co.uk/sport/tennis/emma-raducanu-australian-open-result-wang-b2480703.html", + "pubDate": "Thu, 18 Jan 2024 11:28:55 GMT", + "dc:creator": "Jamie Braidwood", + "dc:date": "2024-01-18T11:28:55+00:00", + "content": "

The 21-year-old was beaten 6-4 4-6 6-4 by Yafan Wang after almost three hours in the Australian Open second round

", + "contentSnippet": "The 21-year-old was beaten 6-4 4-6 6-4 by Yafan Wang after almost three hours in the Australian Open second round", + "guid": "b2480703", + "categories": ["Tennis", "Sport"], + "isoDate": "2024-01-18T11:28:55.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-18T11:28:46+00:00", + "title": "Ryan Gosling shares amusing reason his daughters have not seen Barbie", + "link": "https://www.independent.co.uk/tv/culture/barbie-ryan-gosling-film-daughters-b2480777.html", + "pubDate": "Thu, 18 Jan 2024 11:28:46 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-18T11:28:46+00:00", + "content": "

Ryan Gosling has revealed why his two daughters have not seen Barbie.

", + "contentSnippet": "Ryan Gosling has revealed why his two daughters have not seen Barbie.", + "guid": "b2480777", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-18T11:28:46.000Z" + }, + { + "creator": "Steve Hogarty", + "date": "2024-01-18T11:23:28+00:00", + "title": "Where to pre-order the Samsung Galaxy S24, S24 Plus and S24 Ultra", + "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/phones-accessories/samsung-galaxy-s24-preorder-review-b2477629.html", + "pubDate": "Thu, 18 Jan 2024 11:23:28 GMT", + "dc:creator": "Steve Hogarty", + "dc:date": "2024-01-18T11:23:28+00:00", + "content": "

Pre-order deals include free double storage and a Samsung Galaxy Watch 6

", + "contentSnippet": "Pre-order deals include free double storage and a Samsung Galaxy Watch 6", + "guid": "b2477629", + "categories": ["Phones & Accessories", "Tech", "IndyBest", "Extras"], + "isoDate": "2024-01-18T11:23:28.000Z" + }, + { + "creator": "Christopher McKeon", + "date": "2024-01-18T11:22:15+00:00", + "title": "Sunak insists his plan is working despite surprise hike in inflation", + "link": "https://www.independent.co.uk/business/sunak-insists-his-plan-is-working-despite-surprise-hike-in-inflation-b2480779.html", + "pubDate": "Thu, 18 Jan 2024 11:22:15 GMT", + "dc:creator": "Christopher McKeon", + "dc:date": "2024-01-18T11:22:15+00:00", + "content": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", + "contentSnippet": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", + "guid": "b2480779", + "categories": ["Business"], + "isoDate": "2024-01-18T11:22:15.000Z" + }, + { + "creator": "Holly Williams", + "date": "2024-01-18T11:20:28+00:00", + "title": "Naked Wines cutting jobs as sales continue to slide", + "link": "https://www.independent.co.uk/business/naked-wines-cutting-jobs-as-sales-continue-to-slide-b2480755.html", + "pubDate": "Thu, 18 Jan 2024 11:20:28 GMT", + "dc:creator": "Holly Williams", + "dc:date": "2024-01-18T11:20:28+00:00", + "content": "The online wine firm said jobs were being axed across \u2018all levels of the organisation\u2019 under plans to save another \u00a37 million a year.", + "contentSnippet": "The online wine firm said jobs were being axed across \u2018all levels of the organisation\u2019 under plans to save another \u00a37 million a year.", + "guid": "b2480755", + "categories": ["Business"], + "isoDate": "2024-01-18T11:20:28.000Z" + }, + { + "creator": "Tara Cobham", + "date": "2024-01-18T11:20:04+00:00", + "title": "Man charged with spiking woman\u2019s drink at Mayfair club", + "link": "https://www.independent.co.uk/news/uk/crime/spiking-drink-met-police-women-mayfair-b2480764.html", + "pubDate": "Thu, 18 Jan 2024 11:20:04 GMT", + "dc:creator": "Tara Cobham", + "dc:date": "2024-01-18T11:20:04+00:00", + "content": "

Vikas Nath, 61, will next appear in court in February

", + "contentSnippet": "Vikas Nath, 61, will next appear in court in February", + "guid": "b2480764", + "categories": ["Crime", "UK"], + "isoDate": "2024-01-18T11:20:04.000Z" + }, + { + "creator": "Jonathan McCambridge", + "date": "2024-01-18T11:18:49+00:00", + "title": "Unions warn of escalating action as thousands strike across Northern Ireland", + "link": "https://www.independent.co.uk/business/unions-warn-of-escalating-action-as-thousands-strike-across-northern-ireland-b2480772.html", + "pubDate": "Thu, 18 Jan 2024 11:18:49 GMT", + "dc:creator": "Jonathan McCambridge", + "dc:date": "2024-01-18T11:18:49+00:00", + "content": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", + "contentSnippet": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", + "guid": "b2480772", + "categories": ["Business"], + "isoDate": "2024-01-18T11:18:49.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-18T11:18:38+00:00", + "title": "Red Sea shipping problems have \u2018limited impact\u2019 on products \u2013 Poundland owner", + "link": "https://www.independent.co.uk/business/red-sea-shipping-problems-have-limited-impact-on-products-poundland-owner-b2480714.html", + "pubDate": "Thu, 18 Jan 2024 11:18:38 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-18T11:18:38+00:00", + "content": "Global shipping has been forced to revert to its ancient routes as the Houthi group started hitting cargo ships.", + "contentSnippet": "Global shipping has been forced to revert to its ancient routes as the Houthi group started hitting cargo ships.", + "guid": "b2480714", + "categories": ["Business"], + "isoDate": "2024-01-18T11:18:38.000Z" + }, + { + "creator": "Holly Evans", + "date": "2024-01-18T11:18:06+00:00", + "title": "Uniqlo sues Shein over claims they copied popular \u2018Mary Poppins\u2019 shoulder bag", + "link": "https://www.independent.co.uk/news/uniqlo-sues-shein-mary-poppins-bag-b2480729.html", + "pubDate": "Thu, 18 Jan 2024 11:18:06 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2024-01-18T11:18:06+00:00", + "content": "Uniqlo Co_ has sued rival retailer Shein over a small shoulder bag the Japanese retailer said was an inferior and unlawful copy of its own hit product touted as the \u201cMary Poppins bag.\u201d", + "contentSnippet": "Uniqlo Co_ has sued rival retailer Shein over a small shoulder bag the Japanese retailer said was an inferior and unlawful copy of its own hit product touted as the \u201cMary Poppins bag.\u201d", + "guid": "b2480551", + "isoDate": "2024-01-18T11:18:06.000Z" + }, + { + "creator": "Alexander Butler", + "date": "2024-01-18T11:17:11+00:00", + "title": "Biscuits and crackers recalled as moth larvae found in snack", + "link": "https://www.independent.co.uk/news/uk/home-news/crackers-moth-warning-b2480747.html", + "pubDate": "Thu, 18 Jan 2024 11:17:11 GMT", + "dc:creator": "Alexander Butler", + "dc:date": "2024-01-18T11:17:11+00:00", + "content": "

The crackers and biscuits were declared unfit for consumption after moth larvae was discovered in them

", + "contentSnippet": "The crackers and biscuits were declared unfit for consumption after moth larvae was discovered in them", + "guid": "b2480747", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-18T11:17:11.000Z" + }, + { + "creator": "Albert Toth", + "date": "2024-01-18T11:16:14+00:00", + "title": "Cold weather guide: Frozen pipes, energy bills, and keeping warm", + "link": "https://www.independent.co.uk/news/uk/home-news/cold-weather-uk-help-pipes-heating-bills-warm-b2480699.html", + "pubDate": "Thu, 18 Jan 2024 11:16:14 GMT", + "dc:creator": "Albert Toth", + "dc:date": "2024-01-18T11:16:14+00:00", + "content": "

Everything you need to know to protect yourself from cold and heating costs this winter

", + "contentSnippet": "Everything you need to know to protect yourself from cold and heating costs this winter", + "guid": "b2480699", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-18T11:16:14.000Z" + }, + { + "creator": "Holly Evans", + "date": "2024-01-18T11:14:40+00:00", + "title": "Mothers who don\u2019t brush their teeth pass bad hygiene onto children", + "link": "https://www.independent.co.uk/news/health/mothers-children-dental-hygiene-study-b2480706.html", + "pubDate": "Thu, 18 Jan 2024 11:14:40 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2024-01-18T11:14:40+00:00", + "content": "

An analysis found women with high levels of dental plaque were more likely to transfer the fungus to their children

", + "contentSnippet": "An analysis found women with high levels of dental plaque were more likely to transfer the fungus to their children", + "guid": "b2480706", + "categories": ["Health"], + "isoDate": "2024-01-18T11:14:40.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2024-01-18T11:11:45+00:00", + "title": "Apple Daily publisher testifies against former owner Jimmy Lai in Hong Kong trial", + "link": "https://www.independent.co.uk/asia/china/hong-kong-jimmy-lai-trial-b2480688.html", + "pubDate": "Thu, 18 Jan 2024 11:11:45 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2024-01-18T11:11:45+00:00", + "content": "

Prosecution witness says Lai \u2018pursued democracy, freedom and was anti-totalitarian\u2019

", + "contentSnippet": "Prosecution witness says Lai \u2018pursued democracy, freedom and was anti-totalitarian\u2019", + "guid": "b2480688", + "categories": ["China", "Asia"], + "isoDate": "2024-01-18T11:11:45.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-18T11:09:19+00:00", + "title": "Hundreds of bats freeze to death as temperatures plummet in Texas", + "link": "https://www.independent.co.uk/tv/news/texas-weather-cold-stunned-bats-b2480762.html", + "pubDate": "Thu, 18 Jan 2024 11:09:19 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-18T11:09:19+00:00", + "content": "

Hundreds of bats are freezing to death as temperatures plummet in Texas.

", + "contentSnippet": "Hundreds of bats are freezing to death as temperatures plummet in Texas.", + "guid": "b2480762", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-18T11:09:19.000Z" + }, + { + "creator": "Alex Woodward", + "date": "2024-01-18T11:08:22+00:00", + "title": "Judge warns Trump can be kicked out of E Jean Carroll trial for in-court outbursts", + "link": "https://www.independent.co.uk/news/world/americas/us-politics/judge-threatens-trump-e-jean-carroll-b2480760.html", + "pubDate": "Thu, 18 Jan 2024 11:08:22 GMT", + "dc:creator": "Alex Woodward", + "dc:date": "2024-01-18T11:08:22+00:00", + "content": "

The former president defies a judge\u2019s orders as he faces paying out millions of dollars for defamation

", + "contentSnippet": "The former president defies a judge\u2019s orders as he faces paying out millions of dollars for defamation", + "guid": "b2480376", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2024-01-18T11:08:22.000Z" + }, + { + "creator": "Vladimir Isachenkov", + "date": "2024-01-18T11:05:35+00:00", + "title": "Russia's foreign minister rejects a US proposal to resume talks on nuclear arms control", + "link": "https://www.independent.co.uk/news/russia-ap-washington-sergey-lavrov-moscow-b2480765.html", + "pubDate": "Thu, 18 Jan 2024 11:05:35 GMT", + "dc:creator": "Vladimir Isachenkov", + "dc:date": "2024-01-18T11:05:35+00:00", + "content": "Russia\u2019s top diplomat has dismissed a proposal by the United States to resume a dialogue on nuclear arms control", + "contentSnippet": "Russia\u2019s top diplomat has dismissed a proposal by the United States to resume a dialogue on nuclear arms control", + "guid": "b2480765", + "isoDate": "2024-01-18T11:05:35.000Z" + }, + { + "creator": "Kelvin Chan and Jamey Keaten", + "date": "2024-01-18T11:03:57+00:00", + "title": "AI is the buzz, the big opportunity and the risk to watch among the Davos glitterati", + "link": "https://www.independent.co.uk/news/ap-openai-satya-nadella-microsoft-emmanuel-macron-b2480761.html", + "pubDate": "Thu, 18 Jan 2024 11:03:57 GMT", + "dc:creator": "Kelvin Chan and Jamey Keaten", + "dc:date": "2024-01-18T11:03:57+00:00", + "content": "Artificial intelligence is easily the biggest buzzword for world leaders and corporate bosses diving into big ideas at the World Economic Forum\u2019s glitzy annual meeting in Davos", + "contentSnippet": "Artificial intelligence is easily the biggest buzzword for world leaders and corporate bosses diving into big ideas at the World Economic Forum\u2019s glitzy annual meeting in Davos", + "guid": "b2480761", + "isoDate": "2024-01-18T11:03:57.000Z" + }, + { + "creator": "Harry Latham-Coyle", + "date": "2024-01-18T11:03:03+00:00", + "title": "Glazers could force Sir Jim Ratcliffe to sell stake in Manchester United", + "link": "https://www.independent.co.uk/sport/football/manchester-united-jim-ratcliffe-glazers-b2480693.html", + "pubDate": "Thu, 18 Jan 2024 11:03:03 GMT", + "dc:creator": "Harry Latham-Coyle", + "dc:date": "2024-01-18T11:03:03+00:00", + "content": "

Ineos chairman Ratcliffe is set to complete a deal for a 25 per cent stake in the Old Trafford club

", + "contentSnippet": "Ineos chairman Ratcliffe is set to complete a deal for a 25 per cent stake in the Old Trafford club", + "guid": "b2480693", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T11:03:03.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-18T10:59:16+00:00", + "title": "Flutter loses out on US football results, but shares soar", + "link": "https://www.independent.co.uk/business/flutter-loses-out-on-us-football-results-but-shares-soar-b2480754.html", + "pubDate": "Thu, 18 Jan 2024 10:59:16 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-18T10:59:16+00:00", + "content": "The business said that \u2018customer friendly\u2019 sports results had cost it \u00a3270 million in the US in the fourth quarter.", + "contentSnippet": "The business said that \u2018customer friendly\u2019 sports results had cost it \u00a3270 million in the US in the fourth quarter.", + "guid": "b2480754", + "categories": ["Business"], + "isoDate": "2024-01-18T10:59:16.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2024-01-18T10:59:01+00:00", + "title": "Passengers discover live snake on a plane on AirAsia flight in Thailand ", + "link": "https://www.independent.co.uk/travel/news-and-advice/snake-in-airasia-flight-b2480749.html", + "pubDate": "Thu, 18 Jan 2024 10:59:01 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2024-01-18T10:59:01+00:00", + "content": "

Reptile spotted slithering over lights above plane\u2019s overhead compartments

", + "contentSnippet": "Reptile spotted slithering over lights above plane\u2019s overhead compartments", + "guid": "b2479927", + "categories": ["News & Advice", "Travel"], + "isoDate": "2024-01-18T10:59:01.000Z" + }, + { + "creator": "Ellie Muir", + "date": "2024-01-18T10:54:18+00:00", + "title": "Channel 5\u2019s Bargain Loving Brits in the Sun star Graham Boland dies ", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/graham-boland-death-bargain-benidorm-b2480741.html", + "pubDate": "Thu, 18 Jan 2024 10:54:18 GMT", + "dc:creator": "Ellie Muir", + "dc:date": "2024-01-18T10:54:18+00:00", + "content": "

TV star owned the popular Benidorm bar Happy Days, which featured on channel\u2019s \u2018Bargain Loving Brits In The Sun\u2019

", + "contentSnippet": "TV star owned the popular Benidorm bar Happy Days, which featured on channel\u2019s \u2018Bargain Loving Brits In The Sun\u2019", + "guid": "b2480741", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-18T10:54:18.000Z" + }, + { + "creator": "Shweta Sharma", + "date": "2024-01-18T10:53:51+00:00", + "title": "Passenger stuck inside plane toilet for entire flight: \u2018Please close the commode lid and sit on it\u2019", + "link": "https://www.independent.co.uk/travel/news-and-advice/india-spicejet-passenger-stuck-plane-toilet-b2480746.html", + "pubDate": "Thu, 18 Jan 2024 10:53:51 GMT", + "dc:creator": "Shweta Sharma", + "dc:date": "2024-01-18T10:53:51+00:00", + "content": "

Passenger flying from Mumbai to Bengaluru on SpiceJet flight went to use toilet after plane became airborne but soon found himself trapped inside

", + "contentSnippet": "Passenger flying from Mumbai to Bengaluru on SpiceJet flight went to use toilet after plane became airborne but soon found himself trapped inside", + "guid": "b2479926", + "categories": ["News & Advice", "Travel"], + "isoDate": "2024-01-18T10:53:51.000Z" + }, + { + "creator": "Nicole Vassell", + "date": "2024-01-18T10:53:31+00:00", + "title": "Sara Ram\u00edrez hints at And Just Like That exit in cryptic post about \u2018performative\u2019 Hollywood industry", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/and-just-like-that-gaza-che-diaz-b2480713.html", + "pubDate": "Thu, 18 Jan 2024 10:53:31 GMT", + "dc:creator": "Nicole Vassell", + "dc:date": "2024-01-18T10:53:31+00:00", + "content": "

Actor has left fans curious about their future involvement in \u2018Sex and the City\u2019 spin-off

", + "contentSnippet": "Actor has left fans curious about their future involvement in \u2018Sex and the City\u2019 spin-off", + "guid": "b2480713", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-18T10:53:31.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-18T10:51:23+00:00", + "title": "Britney Spears dances in gold sequin dress as she makes social media return", + "link": "https://www.independent.co.uk/tv/lifestyle/britney-spears-instagram-dancing-video-b2480645.html", + "pubDate": "Thu, 18 Jan 2024 10:51:23 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-18T10:51:23+00:00", + "content": "

Britney Spears danced in a gold sequin dress in an Instagram video marking her return to the platform after a 10-day silence.

", + "contentSnippet": "Britney Spears danced in a gold sequin dress in an Instagram video marking her return to the platform after a 10-day silence.", + "guid": "b2480645", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2024-01-18T10:51:23.000Z" + }, + { + "creator": "Justin Spike", + "date": "2024-01-18T10:49:02+00:00", + "title": "Hungary won't back down and change LGBTQ+ and asylum policies criticized by EU, minister says", + "link": "https://www.independent.co.uk/news/hungary-ap-lgbtq-budapest-european-commission-b2480748.html", + "pubDate": "Thu, 18 Jan 2024 10:49:02 GMT", + "dc:creator": "Justin Spike", + "dc:date": "2024-01-18T10:49:02+00:00", + "content": "Hungary\u2019s government will not change policies the European Union believes infringe on LGBTQ+ rights and those of asylum seekers, even if doing so would unfreeze billions in funding the bloc has withheld from Budapest", + "contentSnippet": "Hungary\u2019s government will not change policies the European Union believes infringe on LGBTQ+ rights and those of asylum seekers, even if doing so would unfreeze billions in funding the bloc has withheld from Budapest", + "guid": "b2480748", + "isoDate": "2024-01-18T10:49:02.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-18T10:48:33+00:00", + "title": "Watch Molly and Callum\u2019s tense exchange over past relationship on Love Island All Stars", + "link": "https://www.independent.co.uk/tv/culture/love-island-molly-callum-argument-b2480635.html", + "pubDate": "Thu, 18 Jan 2024 10:48:33 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-18T10:48:33+00:00", + "content": "

Molly and Callum had a tense exchange on Love Island All Stars on Wednesday night (17 January) as their past relationship came up in conversation.

", + "contentSnippet": "Molly and Callum had a tense exchange on Love Island All Stars on Wednesday night (17 January) as their past relationship came up in conversation.", + "guid": "b2480635", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-18T10:48:33.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2024-01-18T10:43:34+00:00", + "title": "France ramps up weapons production for Ukraine and says Russia is scrutinizing the West's mettle", + "link": "https://www.independent.co.uk/news/ukraine-ap-france-russia-paris-b2480740.html", + "pubDate": "Thu, 18 Jan 2024 10:43:34 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2024-01-18T10:43:34+00:00", + "content": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", + "contentSnippet": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", + "guid": "b2480740", + "isoDate": "2024-01-18T10:43:34.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-18T10:42:00+00:00", + "title": "Shares plummet by a third as Watches of Switzerland slashes outlook", + "link": "https://www.independent.co.uk/business/shares-plummet-by-a-third-as-watches-of-switzerland-slashes-outlook-b2480743.html", + "pubDate": "Thu, 18 Jan 2024 10:42:00 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-18T10:42:00+00:00", + "content": "Revenue is expected to grow at a quarter of the pace previously guided, the business said after a tough Christmas.", + "contentSnippet": "Revenue is expected to grow at a quarter of the pace previously guided, the business said after a tough Christmas.", + "guid": "b2480743", + "categories": ["Business"], + "isoDate": "2024-01-18T10:42:00.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2024-01-18T10:41:53+00:00", + "title": "Sunak says party \u2018came together\u2019 for Rwanda bill vote despite Tory rebellion", + "link": "https://www.independent.co.uk/tv/news/rwanda-bill-sunak-press-conference-b2480735.html", + "pubDate": "Thu, 18 Jan 2024 10:41:53 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2024-01-18T10:41:53+00:00", + "content": "

Rishi Sunak has praised the Conservative Party for \u201ccoming together\u201d to pass his Rwanda bill.

", + "contentSnippet": "Rishi Sunak has praised the Conservative Party for \u201ccoming together\u201d to pass his Rwanda bill.", + "guid": "b2480735", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-18T10:41:53.000Z" + }, + { + "creator": "Maanya Sachdeva", + "date": "2024-01-18T10:41:16+00:00", + "title": "TV fitness star Richard Simmons lambasts new biopic about his life in rare statement", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/richard-simmons-biopic-pauly-shore-b2480676.html", + "pubDate": "Thu, 18 Jan 2024 10:41:16 GMT", + "dc:creator": "Maanya Sachdeva", + "dc:date": "2024-01-18T10:41:16+00:00", + "content": "

The uncanny resemblance between Simmons and Shore became the subject of a viral meme last year

", + "contentSnippet": "The uncanny resemblance between Simmons and Shore became the subject of a viral meme last year", + "guid": "b2480676", + "categories": ["News", "Film", "Culture"], + "isoDate": "2024-01-18T10:41:16.000Z" + }, + { + "creator": "Alan Jones", + "date": "2024-01-18T10:39:39+00:00", + "title": "Steel unions meeting Tata for talks over future of company", + "link": "https://www.independent.co.uk/business/steel-unions-meeting-tata-for-talks-over-future-of-company-b2480526.html", + "pubDate": "Thu, 18 Jan 2024 10:39:39 GMT", + "dc:creator": "Alan Jones", + "dc:date": "2024-01-18T10:39:39+00:00", + "content": "There have been fears of heavy job losses, especially at the plant in Port Talbot.", + "contentSnippet": "There have been fears of heavy job losses, especially at the plant in Port Talbot.", + "guid": "b2480526", + "categories": ["Business"], + "isoDate": "2024-01-18T10:39:39.000Z" + }, + { + "creator": "Roisin O'Connor", + "date": "2024-01-18T10:35:53+00:00", + "title": "Sophie Ellis-Bextor\u2019s \u2018Murder on the Dancefloor\u2019 waltzes into the US charts", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/sophie-ellis-bextor-murder-dancefloor-charts-b2480727.html", + "pubDate": "Thu, 18 Jan 2024 10:35:53 GMT", + "dc:creator": "Roisin O'Connor", + "dc:date": "2024-01-18T10:35:53+00:00", + "content": "

Pop singer\u2019s 2001 hit entered the US charts for the first time in 22 years after experiencing a revival after featuring in \u2018Saltburn\u2019

", + "contentSnippet": "Pop singer\u2019s 2001 hit entered the US charts for the first time in 22 years after experiencing a revival after featuring in \u2018Saltburn\u2019", + "guid": "b2480727", + "categories": ["News", "Music", "Culture"], + "isoDate": "2024-01-18T10:35:53.000Z" + }, + { + "creator": "Harry Latham-Coyle", + "date": "2024-01-18T10:35:11+00:00", + "title": "Will Jordan Henderson ever be paid for his stint in Saudi Arabia?", + "link": "https://www.independent.co.uk/sport/football/jordan-henderson-saudi-arabia-ajax-liverpool-b2480722.html", + "pubDate": "Thu, 18 Jan 2024 10:35:11 GMT", + "dc:creator": "Harry Latham-Coyle", + "dc:date": "2024-01-18T10:35:11+00:00", + "content": "

The England international appears set to return to Europe and join Ajax

", + "contentSnippet": "The England international appears set to return to Europe and join Ajax", + "guid": "b2480722", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T10:35:11.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-18T10:35:03+00:00", + "title": "Brooklyn Beckham shares \u2018secret\u2019 recipe for grandmother\u2019s sausage and bacon sandwich", + "link": "https://www.independent.co.uk/tv/culture/brookyln-beckham-viral-sandwich-grandmother-uber-eats-b2480631.html", + "pubDate": "Thu, 18 Jan 2024 10:35:03 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-18T10:35:03+00:00", + "content": "

Brooklyn Beckham has shared his \u201csecret\u201d recipe for his grandmother's sausage and bacon sandwich, as well as revealing some of is family\u2019s favourite dishes.

", + "contentSnippet": "Brooklyn Beckham has shared his \u201csecret\u201d recipe for his grandmother's sausage and bacon sandwich, as well as revealing some of is family\u2019s favourite dishes.", + "guid": "b2480631", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-18T10:35:03.000Z" + }, + { + "creator": "Eleanor Crooks", + "date": "2024-01-18T10:31:55+00:00", + "title": "Carlos Alcaraz battles through on testing day for top names at Australian Open", + "link": "https://www.independent.co.uk/sport/tennis/alexander-zverev-carlos-alcaraz-casper-ruud-australian-american-b2480734.html", + "pubDate": "Thu, 18 Jan 2024 10:31:55 GMT", + "dc:creator": "Eleanor Crooks", + "dc:date": "2024-01-18T10:31:55+00:00", + "content": "Alcaraz prevailed 6-4 6-7 (3) 6-3 7-6 (3) while Alexander Zverev and Casper Ruud both needed fifth-set tie-breaks.", + "contentSnippet": "Alcaraz prevailed 6-4 6-7 (3) 6-3 7-6 (3) while Alexander Zverev and Casper Ruud both needed fifth-set tie-breaks.", + "guid": "b2480734", + "categories": ["Tennis", "Sport"], + "isoDate": "2024-01-18T10:31:55.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-18T10:29:42+00:00", + "title": "Watch the moment The Traitors\u2019 Diane reveals family secret to Miles", + "link": "https://www.independent.co.uk/tv/culture/traitors-season-2-bbc-diane-miles-b2480728.html", + "pubDate": "Thu, 18 Jan 2024 10:29:42 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-18T10:29:42+00:00", + "content": "

The Traitors contestant Miles was shocked as Diane revealed the secret she kept during her time on the show - that Ross is her son.

", + "contentSnippet": "The Traitors contestant Miles was shocked as Diane revealed the secret she kept during her time on the show - that Ross is her son.", + "guid": "b2480728", + "categories": ["Culture", "Indy TV"], + "isoDate": "2024-01-18T10:29:42.000Z" + }, + { + "creator": "Archie Mitchell", + "date": "2024-01-18T10:24:03+00:00", + "title": "Jacob Rees-Mogg says he would prefer President Donald Trump to Joe Biden", + "link": "https://www.independent.co.uk/news/uk/politics/trump-biden-election-jacob-rees-mogg-b2480720.html", + "pubDate": "Thu, 18 Jan 2024 10:24:03 GMT", + "dc:creator": "Archie Mitchell", + "dc:date": "2024-01-18T10:24:03+00:00", + "content": "

Jacob Rees-Mogg said Mr Trump is \u2018better disposed\u2019 towards the United Kingdom

", + "contentSnippet": "Jacob Rees-Mogg said Mr Trump is \u2018better disposed\u2019 towards the United Kingdom", + "guid": "b2480720", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-18T10:24:03.000Z" + }, + { + "creator": "Maanya Sachdeva", + "date": "2024-01-18T10:20:12+00:00", + "title": "\u2018Weird\u2019 South Park AI \u2018creepily\u2019 reimagines main characters as real people", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/south-park-deepfake-new-episodes-b2479992.html", + "pubDate": "Thu, 18 Jan 2024 10:20:12 GMT", + "dc:creator": "Maanya Sachdeva", + "dc:date": "2024-01-18T10:20:12+00:00", + "content": "

Ever wondered what Cartman, Kyle, Stan and Kenny would like as humans? Wonder no more

", + "contentSnippet": "Ever wondered what Cartman, Kyle, Stan and Kenny would like as humans? Wonder no more", + "guid": "b2479992", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-18T10:20:12.000Z" + }, + { + "creator": "Najib Jobain and Bassem Mroue", + "date": "2024-01-18T10:19:33+00:00", + "title": "Israeli strike kills 16 in southern Gaza; no word on whether medicines reached hostages", + "link": "https://www.independent.co.uk/news/gaza-ap-israeli-hamas-palestinians-b2480725.html", + "pubDate": "Thu, 18 Jan 2024 10:19:33 GMT", + "dc:creator": "Najib Jobain and Bassem Mroue", + "dc:date": "2024-01-18T10:19:33+00:00", + "content": "Palestinian medics say an Israeli airstrike on a home killed 16 people, half of them children, in the southern Gaza town of Rafah", + "contentSnippet": "Palestinian medics say an Israeli airstrike on a home killed 16 people, half of them children, in the southern Gaza town of Rafah", + "guid": "b2480725", + "isoDate": "2024-01-18T10:19:33.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-18T10:15:32+00:00", + "title": "Th\u00e9r\u00e8se Coffey mistakes Rwanda capital for another country while slamming minister", + "link": "https://www.independent.co.uk/tv/news/therese-coffey-rwanda-gaffe-yvette-cooper-b2480677.html", + "pubDate": "Thu, 18 Jan 2024 10:15:32 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-18T10:15:32+00:00", + "content": "

This is the moment Th\u00e9r\u00e8se Coffey mistakes Rwanda\u2019s capital for another country while hitting out at Labour\u2019s shadow home secretary, Yvette Cooper.

", + "contentSnippet": "This is the moment Th\u00e9r\u00e8se Coffey mistakes Rwanda\u2019s capital for another country while hitting out at Labour\u2019s shadow home secretary, Yvette Cooper.", + "guid": "b2480677", + "categories": ["News", "Indy TV"], + "isoDate": "2024-01-18T10:15:32.000Z" + }, + { + "creator": "Andy Gregory", + "date": "2024-01-18T10:14:54+00:00", + "title": "Call to increase exam grades for pupils at schools hit by concrete crisis ", + "link": "https://www.independent.co.uk/news/education/schools-raac-exam-grades-concrete-b2480696.html", + "pubDate": "Thu, 18 Jan 2024 10:14:54 GMT", + "dc:creator": "Andy Gregory", + "dc:date": "2024-01-18T10:14:54+00:00", + "content": "

Exam marks should be increased by up to 10 per cent, education experts say, after \u2018precedent set during Covid\u2019

", + "contentSnippet": "Exam marks should be increased by up to 10 per cent, education experts say, after \u2018precedent set during Covid\u2019", + "guid": "b2480696", + "categories": ["Education"], + "isoDate": "2024-01-18T10:14:54.000Z" + }, + { + "creator": "Holly Patrick", + "date": "2024-01-18T10:14:47+00:00", + "title": "Watch: Rishi Sunak makes statement on Rwanda asylum policy after winning Commons vote", + "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-rwanda-livefeed-watch-policy-b2480680.html", + "pubDate": "Thu, 18 Jan 2024 10:14:47 GMT", + "dc:creator": "Holly Patrick", + "dc:date": "2024-01-18T10:14:47+00:00", + "content": "

Watch as Rishi Sunak held a press conference on Thursday, 18 January, after seeing off the prospect of a defeat on his Rwanda asylum policy at the hands of right-wing Conservative MPs.

", + "contentSnippet": "Watch as Rishi Sunak held a press conference on Thursday, 18 January, after seeing off the prospect of a defeat on his Rwanda asylum policy at the hands of right-wing Conservative MPs.", + "guid": "b2480680", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-18T10:14:47.000Z" + }, + { + "creator": "Archie Mitchell", + "date": "2024-01-18T10:09:32+00:00", + "title": "Rishi Sunak\u2019s Rwanda bill is step towards totalitarianism, top lawyer in the Lords warns", + "link": "https://www.independent.co.uk/news/uk/politics/rishi-sunak-rwanda-election-carlile-b2480702.html", + "pubDate": "Thu, 18 Jan 2024 10:09:32 GMT", + "dc:creator": "Archie Mitchell", + "dc:date": "2024-01-18T10:09:32+00:00", + "content": "

Lord Carlile, the former Independent Reviewer of Terrorism Legislation, said ministers were seeking to elevate themselves \u2018to an unacceptable level above the law\u2019

", + "contentSnippet": "Lord Carlile, the former Independent Reviewer of Terrorism Legislation, said ministers were seeking to elevate themselves \u2018to an unacceptable level above the law\u2019", + "guid": "b2480702", + "categories": ["UK Politics", "UK"], + "isoDate": "2024-01-18T10:09:32.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2024-01-18T10:07:06+00:00", + "title": "Watch live: Fujitsu employees give evidence in Post Office Horizon IT inquiry as MPs demand victim compensation", + "link": "https://www.independent.co.uk/news/fujitsu-post-office-inquiry-livestream-b2480698.html", + "pubDate": "Thu, 18 Jan 2024 10:07:06 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2024-01-18T10:07:06+00:00", + "content": "

Watch live as Fujitsu employees give evidence in the Post Office scandal Horizon IT inquiry on Tursday (18 January).

", + "contentSnippet": "Watch live as Fujitsu employees give evidence in the Post Office scandal Horizon IT inquiry on Tursday (18 January).", + "guid": "b2480698", + "isoDate": "2024-01-18T10:07:06.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2024-01-18T10:06:24+00:00", + "title": "Jordan Henderson \u2018set for Ajax medical\u2019 ahead of move from Al-Ettifaq", + "link": "https://www.independent.co.uk/sport/football/jordan-henderson-ajax-transfer-saudi-arabia-b2480712.html", + "pubDate": "Thu, 18 Jan 2024 10:06:24 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2024-01-18T10:06:24+00:00", + "content": "

Henderson is expected to sign an initial 18-month deal at the Dutch giants

", + "contentSnippet": "Henderson is expected to sign an initial 18-month deal at the Dutch giants", + "guid": "b2480660", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T10:06:24.000Z" + }, + { + "creator": "Danny Halpin", + "date": "2024-01-18T10:02:30+00:00", + "title": "UK \u2018largely off track\u2019 on environmental targets, watchdog says", + "link": "https://www.independent.co.uk/climate-change/news/uk-environment-protection-plan-rishi-sunak-b2480710.html", + "pubDate": "Thu, 18 Jan 2024 10:02:30 GMT", + "dc:creator": "Danny Halpin", + "dc:date": "2024-01-18T10:02:30+00:00", + "content": "

Environmental protection head says \u2018deeply concerning adverse environmental trends continue\u2019

", + "contentSnippet": "Environmental protection head says \u2018deeply concerning adverse environmental trends continue\u2019", + "guid": "b2480522", + "categories": ["News", "Climate"], + "isoDate": "2024-01-18T10:02:30.000Z" + }, + { + "creator": "Sheikh Saaliq and Biswajeet Banerjee", + "date": "2024-01-18T09:54:53+00:00", + "title": "Modi\u2019s promised Ram temple is set to open and resonate with Hindus ahead of 2024 Indian election", + "link": "https://www.independent.co.uk/asia/india/ayodhya-ram-mandir-inauguration-india-election-2024-b2480692.html", + "pubDate": "Thu, 18 Jan 2024 09:54:53 GMT", + "dc:creator": "Sheikh Saaliq and Biswajeet Banerjee", + "dc:date": "2024-01-18T09:54:53+00:00", + "content": "Preparations are underway in India\u2019s northern Ayodhya city to mark the opening of a grand temple for Lord Ram, Hinduism\u2019s most revered deity", + "contentSnippet": "Preparations are underway in India\u2019s northern Ayodhya city to mark the opening of a grand temple for Lord Ram, Hinduism\u2019s most revered deity", + "guid": "b2479878", + "categories": ["India", "Asia"], + "isoDate": "2024-01-18T09:54:53.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-18T09:53:22+00:00", + "title": "Currys reveals slow festive sales as consumers remain \u2018hard-pressed\u2019", + "link": "https://www.independent.co.uk/business/currys-reveals-slow-festive-sales-as-consumers-remain-hardpressed-b2480705.html", + "pubDate": "Thu, 18 Jan 2024 09:53:22 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-18T09:53:22+00:00", + "content": "But the electricals retailer said its profit for the year is likely to be higher than previously expected despite challenging conditions.", + "contentSnippet": "But the electricals retailer said its profit for the year is likely to be higher than previously expected despite challenging conditions.", + "guid": "b2480705", + "categories": ["Business"], + "isoDate": "2024-01-18T09:53:22.000Z" + }, + { + "creator": "Holly Williams", + "date": "2024-01-18T09:52:59+00:00", + "title": "Travis Perkins reveals year-end job losses and signals further staff cuts", + "link": "https://www.independent.co.uk/business/travis-perkins-reveals-yearend-job-losses-and-signals-further-staff-cuts-b2480695.html", + "pubDate": "Thu, 18 Jan 2024 09:52:59 GMT", + "dc:creator": "Holly Williams", + "dc:date": "2024-01-18T09:52:59+00:00", + "content": "The firm is ramping up cost-cutting efforts to save about \u00a335 million a year amid a construction sector slowdown.", + "contentSnippet": "The firm is ramping up cost-cutting efforts to save about \u00a335 million a year amid a construction sector slowdown.", + "guid": "b2480695", + "categories": ["Business"], + "isoDate": "2024-01-18T09:52:59.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2024-01-18T09:50:54+00:00", + "title": "10 actors who regret famous movie roles, from Daniel Radcliffe to Eddie Redmayne", + "link": "https://www.independent.co.uk/arts-entertainment/films/features/actors-famous-movie-roles-regret-b2480708.html", + "pubDate": "Thu, 18 Jan 2024 09:50:54 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2024-01-18T09:50:54+00:00", + "content": "

Some stars wish they could forget certain performances

", + "contentSnippet": "Some stars wish they could forget certain performances", + "guid": "b2336240", + "categories": ["Features", "Film", "Culture"], + "isoDate": "2024-01-18T09:50:54.000Z" + }, + { + "creator": "Martyn Landi", + "date": "2024-01-18T09:47:31+00:00", + "title": "Samsung unveils AI-powered S24 range as it hails \u2018new era of mobile\u2019", + "link": "https://www.independent.co.uk/tech/samsung-korean-google-pixel-apple-b2480339.html", + "pubDate": "Thu, 18 Jan 2024 09:47:31 GMT", + "dc:creator": "Martyn Landi", + "dc:date": "2024-01-18T09:47:31+00:00", + "content": "The smartphone maker has built a range of AI tools into its new phones, including translation, transcription and photo-editing features.", + "contentSnippet": "The smartphone maker has built a range of AI tools into its new phones, including translation, transcription and photo-editing features.", + "guid": "b2480339", + "categories": ["Tech"], + "isoDate": "2024-01-18T09:47:31.000Z" + }, + { + "creator": "Jack Rathborn", + "date": "2024-01-18T09:46:36+00:00", + "title": "Novak Djokovic has a \u2018special relationship\u2019... and it\u2019s with a Melbourne tree", + "link": "https://www.independent.co.uk/sport/tennis/novak-djokovic-tree-australian-open-2024-b2480678.html", + "pubDate": "Thu, 18 Jan 2024 09:46:36 GMT", + "dc:creator": "Jack Rathborn", + "dc:date": "2024-01-18T09:46:36+00:00", + "content": "

The Serbian has grown to love a certain part of the city during his time competing at the Australian Open

", + "contentSnippet": "The Serbian has grown to love a certain part of the city during his time competing at the Australian Open", + "guid": "b2480678", + "categories": ["Tennis", "Sport"], + "isoDate": "2024-01-18T09:46:36.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2024-01-18T09:46:25+00:00", + "title": "Rwanda plan puts modern slavery victims at further risk of exploitation, campaigners warn", + "link": "https://www.independent.co.uk/news/uk/home-news/rwanda-plan-modern-slavery-campaigners-b2477046.html", + "pubDate": "Thu, 18 Jan 2024 09:46:25 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2024-01-18T09:46:25+00:00", + "content": "

Unseen UK, an anti-slavery charity, received a record number of calls to its helpline in March- and there are fears the figures will rise under the government\u2019s Rwanda plan

", + "contentSnippet": "Unseen UK, an anti-slavery charity, received a record number of calls to its helpline in March- and there are fears the figures will rise under the government\u2019s Rwanda plan", + "guid": "b2477046", + "categories": ["Home News", "UK"], + "isoDate": "2024-01-18T09:46:25.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-18T09:46:21+00:00", + "title": "\u2018We have to hustle harder than the men\u2019: Mikaela Mayer and Natasha Jonas on the risks that are changing a sport", + "link": "https://www.independent.co.uk/sport/boxing/jonas-mayer-fight-preview-prediction-b2479572.html", + "pubDate": "Thu, 18 Jan 2024 09:46:21 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-18T09:46:21+00:00", + "content": "

Ahead of their title bout in Liverpool, the fighters spoke to Alex Pattle about the past, present and future of women\u2019s boxing

", + "contentSnippet": "Ahead of their title bout in Liverpool, the fighters spoke to Alex Pattle about the past, present and future of women\u2019s boxing", + "guid": "b2479572", + "categories": ["Boxing", "Sport"], + "isoDate": "2024-01-18T09:46:21.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-18T09:46:07+00:00", + "title": "Natasha Jonas vs Mikaela Mayer time: When does fight start in UK and US this weekend?", + "link": "https://www.independent.co.uk/sport/boxing/jonas-mayer-start-time-ring-walks-b2478840.html", + "pubDate": "Thu, 18 Jan 2024 09:46:07 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-18T09:46:07+00:00", + "content": "

Jonas defends the IBF welterweight title in her hometown of Liverpool

", + "contentSnippet": "Jonas defends the IBF welterweight title in her hometown of Liverpool", + "guid": "b2478834", + "categories": ["Boxing", "Sport"], + "isoDate": "2024-01-18T09:46:07.000Z" + }, + { + "creator": "Roisin O'Connor", + "date": "2024-01-18T09:46:04+00:00", + "title": "Ice Spice sued for alleged copyright infringement over \u2018In Ha Mood\u2019", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/ice-spice-in-ha-mood-lawsuit-copyright-d-chamberz-b2480701.html", + "pubDate": "Thu, 18 Jan 2024 09:46:04 GMT", + "dc:creator": "Roisin O'Connor", + "dc:date": "2024-01-18T09:46:04+00:00", + "content": "

Rapper D Chamberz claims the Grammy-nominated artist\u2019s track is a copy of his song \u2018In That Mood\u2019

", + "contentSnippet": "Rapper D Chamberz claims the Grammy-nominated artist\u2019s track is a copy of his song \u2018In That Mood\u2019", + "guid": "b2480701", + "categories": ["News", "Music", "Culture"], + "isoDate": "2024-01-18T09:46:04.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-18T09:45:57+00:00", + "title": "It\u2019s difficult to ban even a sex offender from working in finance \u2013 FCA boss", + "link": "https://www.independent.co.uk/business/it-s-difficult-to-ban-even-a-sex-offender-from-working-in-finance-fca-boss-b2480310.html", + "pubDate": "Thu, 18 Jan 2024 09:45:57 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-18T09:45:57+00:00", + "content": "Nikhil Rathi said that child grooming alone was not enough for him to remove someone\u2019s permission to work in regulated finance.", + "contentSnippet": "Nikhil Rathi said that child grooming alone was not enough for him to remove someone\u2019s permission to work in regulated finance.", + "guid": "b2480310", + "categories": ["Business"], + "isoDate": "2024-01-18T09:45:57.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-18T09:45:52+00:00", + "title": "UFC 297 card: Strickland vs Du Plessis and all fights this weekend", + "link": "https://www.independent.co.uk/sport/ufc/ufc-297-card-strickland-du-plessis-fights-b2478808.html", + "pubDate": "Thu, 18 Jan 2024 09:45:52 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-18T09:45:52+00:00", + "content": "

The middleweight title is on the line in the main event, after a fight for the vacant women\u2019s bantamweight belt

", + "contentSnippet": "The middleweight title is on the line in the main event, after a fight for the vacant women\u2019s bantamweight belt", + "guid": "b2478797", + "categories": ["UFC", "Sport"], + "isoDate": "2024-01-18T09:45:52.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-18T09:45:48+00:00", + "title": "UFC 297 time: When does Strickland vs Du Plessis start in UK and US this weekend?", + "link": "https://www.independent.co.uk/sport/ufc/ufc-297-start-time-uk-b2478804.html", + "pubDate": "Thu, 18 Jan 2024 09:45:48 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-18T09:45:48+00:00", + "content": "

The middleweight title is on the line in the main event, after a fight for the vacant women\u2019s bantamweight belt

", + "contentSnippet": "The middleweight title is on the line in the main event, after a fight for the vacant women\u2019s bantamweight belt", + "guid": "b2478797", + "categories": ["UFC", "Sport"], + "isoDate": "2024-01-18T09:45:48.000Z" + }, + { + "creator": "Henry Saker-Clark", + "date": "2024-01-18T09:45:34+00:00", + "title": "London markets plunge after surprise jump in inflation", + "link": "https://www.independent.co.uk/business/london-markets-plunge-after-surprise-jump-in-inflation-b2480311.html", + "pubDate": "Thu, 18 Jan 2024 09:45:34 GMT", + "dc:creator": "Henry Saker-Clark", + "dc:date": "2024-01-18T09:45:34+00:00", + "content": "The city\u2019s top financial index, the FTSE 100, moved 1.48%, or 112.05 points lower, to finish at 7,446.29.", + "contentSnippet": "The city\u2019s top financial index, the FTSE 100, moved 1.48%, or 112.05 points lower, to finish at 7,446.29.", + "guid": "b2480311", + "categories": ["Business"], + "isoDate": "2024-01-18T09:45:34.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2024-01-18T09:45:13+00:00", + "title": "Next UFC Fight Night: Event start time, card and how to watch", + "link": "https://www.independent.co.uk/sport/ufc/next-ufc-fight-event-january-schedule-2024-b2478473.html", + "pubDate": "Thu, 18 Jan 2024 09:45:13 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2024-01-18T09:45:13+00:00", + "content": "

All you need to know about the MMA promotion\u2019s upcoming fights

", + "contentSnippet": "All you need to know about the MMA promotion\u2019s upcoming fights", + "guid": "b2461922", + "categories": ["UFC", "Sport"], + "isoDate": "2024-01-18T09:45:13.000Z" + }, + { + "creator": "Nicole Vassell", + "date": "2024-01-18T09:12:29+00:00", + "title": "American Nightmare: Netflix documentary leaves users disgusted \u2013 \u2018I\u2019m in a complete state of shock\u2019", + "link": "https://www.independent.co.uk/arts-entertainment/tv/news/american-nightmare-tv-netflix-denise-huskins-b2480681.html", + "pubDate": "Thu, 18 Jan 2024 09:12:29 GMT", + "dc:creator": "Nicole Vassell", + "dc:date": "2024-01-18T09:12:29+00:00", + "content": "

\u2018This is the craziest thing I have EVER watched,\u2019 one astounded viewer wrote

", + "contentSnippet": "\u2018This is the craziest thing I have EVER watched,\u2019 one astounded viewer wrote", + "guid": "b2479955", + "categories": ["News", "TV & Radio", "Culture"], + "isoDate": "2024-01-18T09:12:29.000Z" + }, + { + "creator": "Adam Forrest and Kate Devlin", + "date": "2023-10-27T12:50:03+00:00", + "title": "Starmer urged to back Gaza ceasefire as Sadiq Khan becomes most senior Labour figure to join rebellion", + "link": "https://www.independent.co.uk/news/uk/politics/starmer-sadiq-khan-labour-gaza-ceasefire-b2437046.html", + "pubDate": "Fri, 27 Oct 2023 12:50:03 GMT", + "dc:creator": "Adam Forrest and Kate Devlin", + "dc:date": "2023-10-27T12:50:03+00:00", + "content": "

London mayor says ceasefire would \u2018stop the killing\u2019 and let in aid \u2013 as nearly quarter of Labour MPs defy leadership

", + "contentSnippet": "London mayor says ceasefire would \u2018stop the killing\u2019 and let in aid \u2013 as nearly quarter of Labour MPs defy leadership", + "guid": "b2437046", + "categories": ["UK Politics", "UK"], + "isoDate": "2023-10-27T12:50:03.000Z" + }, + { + "creator": "Alexander Butler,Bel Trew and Namita Singh", + "date": "2023-10-27T12:48:28+00:00", + "title": "Israel-Gaza live: Hamas commander \u2018killed in IDF air strike\u2019 as 10 trucks of aid for Palestinians enter strip", + "link": "https://www.independent.co.uk/news/world/middle-east/israel-palestine-war-gaza-hamas-ground-invasion-b2436944.html", + "pubDate": "Fri, 27 Oct 2023 12:48:28 GMT", + "dc:creator": "Alexander Butler,Bel Trew and Namita Singh", + "dc:date": "2023-10-27T12:48:28+00:00", + "content": "

The Israel Defence Forces said it had conducted more air strikes on Hamas targets over the last 24 hours

", + "contentSnippet": "The Israel Defence Forces said it had conducted more air strikes on Hamas targets over the last 24 hours", + "guid": "b2436944", + "categories": ["Middle East", "World"], + "isoDate": "2023-10-27T12:48:28.000Z" + }, + { + "creator": "R.j. Rico", + "date": "2023-10-27T12:47:33+00:00", + "title": "As the 'Hollywood of the South,' Atlanta has boomed. Its actors and crew are now at a crossroads", + "link": "https://www.independent.co.uk/news/ap-georgia-writers-los-angeles-netflix-b2437156.html", + "pubDate": "Fri, 27 Oct 2023 12:47:33 GMT", + "dc:creator": "R.j. Rico", + "dc:date": "2023-10-27T12:47:33+00:00", + "content": "For more than a decade, work had been nonstop in Atlanta\u2019s booming film industry thanks to Georgia\u2019s extremely generous tax break", + "contentSnippet": "For more than a decade, work had been nonstop in Atlanta\u2019s booming film industry thanks to Georgia\u2019s extremely generous tax break", + "guid": "b2437156", + "isoDate": "2023-10-27T12:47:33.000Z" + }, + { + "creator": "Daisy Lester", + "date": "2023-10-27T12:46:33+00:00", + "title": "This SAD lamp will help banish the blues \u2013 and it\u2019s reduced at Amazon", + "link": "https://www.independent.co.uk/extras/indybest/gadgets-tech/sad-lamp-amazon-deal-uk-b2437078.html", + "pubDate": "Fri, 27 Oct 2023 12:46:33 GMT", + "dc:creator": "Daisy Lester", + "dc:date": "2023-10-27T12:46:33+00:00", + "content": "

The light can help tackle the symptoms of seasonal affective disorder

", + "contentSnippet": "The light can help tackle the symptoms of seasonal affective disorder", + "guid": "b2437078", + "categories": ["Tech", "IndyBest", "Extras"], + "isoDate": "2023-10-27T12:46:33.000Z" + }, + { + "creator": "Rachel Sharp", + "date": "2023-10-27T12:45:17+00:00", + "title": "What we know about the Maine mass shooting: A children\u2019s party, an Army Reservist and 18 dead ", + "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-victims-suspect-b2437073.html", + "pubDate": "Fri, 27 Oct 2023 12:45:17 GMT", + "dc:creator": "Rachel Sharp", + "dc:date": "2023-10-27T12:45:17+00:00", + "content": "

It was by all accounts a normal Wednesday night in Lewiston, Maine \u2013 until it was rocked by the latest horrific act of gun violence in America, Rachel Sharp reports. WARNING: Disturbing images

", + "contentSnippet": "It was by all accounts a normal Wednesday night in Lewiston, Maine \u2013 until it was rocked by the latest horrific act of gun violence in America, Rachel Sharp reports. WARNING: Disturbing images", + "guid": "b2437073", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T12:45:17.000Z" + }, + { + "creator": "Simon Calder", + "date": "2023-10-27T12:45:04+00:00", + "title": "British Airways made \u00a350 per second profit during first nine months of 2023", + "link": "https://www.independent.co.uk/travel/news-and-advice/british-airways-profit-2023-iag-b2436997.html", + "pubDate": "Fri, 27 Oct 2023 12:45:04 GMT", + "dc:creator": "Simon Calder", + "dc:date": "2023-10-27T12:45:04+00:00", + "content": "

BA parent company IAG warns of possible problems with air-traffic control and airports\u2019 resilience, despite \u00a31.15bn profit

", + "contentSnippet": "BA parent company IAG warns of possible problems with air-traffic control and airports\u2019 resilience, despite \u00a31.15bn profit", + "guid": "b2436997", + "categories": ["News & Advice", "Travel"], + "isoDate": "2023-10-27T12:45:04.000Z" + }, + { + "creator": "Andrea Rosa", + "date": "2023-10-27T12:43:11+00:00", + "title": "War-weary mothers, wives and children of Ukrainian soldiers demand a cap on military service time", + "link": "https://www.independent.co.uk/news/ap-kremlin-scores-kyiv-russia-b2437155.html", + "pubDate": "Fri, 27 Oct 2023 12:43:11 GMT", + "dc:creator": "Andrea Rosa", + "dc:date": "2023-10-27T12:43:11+00:00", + "content": "Scores of protesters have gathered in the streets of Ukrainian cities to demand a cap of 18 months on mandatory military service", + "contentSnippet": "Scores of protesters have gathered in the streets of Ukrainian cities to demand a cap of 18 months on mandatory military service", + "guid": "b2437155", + "isoDate": "2023-10-27T12:43:11.000Z" + }, + { + "creator": "Daisy Lester", + "date": "2023-10-27T12:42:48+00:00", + "title": "11 best jewellery advent calendars for a daily dose of bling this Christmas", + "link": "https://www.independent.co.uk/extras/indybest/christmasgifts/advent-calendars/best-jewellery-advent-calendar-2023-b2212590.html", + "pubDate": "Fri, 27 Oct 2023 12:42:48 GMT", + "dc:creator": "Daisy Lester", + "dc:date": "2023-10-27T12:42:48+00:00", + "content": "

Frankincense and myrrh won\u2019t get a look in with these gifts from Missoma, Astrid & Miyu and more

", + "contentSnippet": "Frankincense and myrrh won\u2019t get a look in with these gifts from Missoma, Astrid & Miyu and more", + "guid": "b2212590", + "categories": ["Advent calendars", "Christmas", "IndyBest", "Extras"], + "isoDate": "2023-10-27T12:42:48.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-10-27T12:42:07+00:00", + "title": "A blast kills at least 4 people and injures others in a Shiite neighborhood of the Afghan capital", + "link": "https://www.independent.co.uk/news/kabul-ap-shiite-afghan-muslim-b2437153.html", + "pubDate": "Fri, 27 Oct 2023 12:42:07 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-10-27T12:42:07+00:00", + "content": "A police spokesperson in Afghanistan's capital says the death toll from an explosion at a boxing club has increased to four, with another seven people critically injured", + "contentSnippet": "A police spokesperson in Afghanistan's capital says the death toll from an explosion at a boxing club has increased to four, with another seven people critically injured", + "guid": "b2437153", + "isoDate": "2023-10-27T12:42:07.000Z" + }, + { + "creator": "Stephanie Wareham", + "date": "2023-10-27T12:40:55+00:00", + "title": "\u2018Dangerous\u2019 gang kidnapped and tortured men in return for cash and jewellery", + "link": "https://www.independent.co.uk/news/uk/crime/south-wales-police-cardiff-hemel-hempstead-northwick-park-hospital-rolex-b2437148.html", + "pubDate": "Fri, 27 Oct 2023 12:40:55 GMT", + "dc:creator": "Stephanie Wareham", + "dc:date": "2023-10-27T12:40:55+00:00", + "content": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", + "contentSnippet": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", + "guid": "b2437148", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T12:40:55.000Z" + }, + { + "creator": "Chris Wilson", + "date": "2023-10-27T12:39:19+00:00", + "title": "Woman tries to get around airline luggage policy by hiding bag under her shirt", + "link": "https://www.independent.co.uk/travel/news-and-advice/woman-airline-hand-luggage-hiding-bag-shirt-b2437068.html", + "pubDate": "Fri, 27 Oct 2023 12:39:19 GMT", + "dc:creator": "Chris Wilson", + "dc:date": "2023-10-27T12:39:19+00:00", + "content": "

The passenger was allegedly attempting to evade Ryanair\u2019s strict baggage limits

", + "contentSnippet": "The passenger was allegedly attempting to evade Ryanair\u2019s strict baggage limits", + "guid": "b2437068", + "categories": ["News & Advice", "Travel"], + "isoDate": "2023-10-27T12:39:19.000Z" + }, + { + "creator": "Rory Dollard", + "date": "2023-10-27T12:37:34+00:00", + "title": "Where has it all gone wrong for England at the World Cup?", + "link": "https://www.independent.co.uk/sport/cricket/england-ben-stokes-odi-jos-buttler-reece-topley-b2437146.html", + "pubDate": "Fri, 27 Oct 2023 12:37:34 GMT", + "dc:creator": "Rory Dollard", + "dc:date": "2023-10-27T12:37:34+00:00", + "content": "An ageing squad, confused selection and individual errors have all contributed to a dismal title defence.", + "contentSnippet": "An ageing squad, confused selection and individual errors have all contributed to a dismal title defence.", + "guid": "b2437146", + "categories": ["Cricket", "Sport"], + "isoDate": "2023-10-27T12:37:34.000Z" + }, + { + "creator": "Holly Evans", + "date": "2023-10-27T12:36:39+00:00", + "title": "Man accused of being \u2018Somerset gimp\u2019 wrote disturbing journal about masks, court hears", + "link": "https://www.independent.co.uk/news/uk/crime/joshua-hunt-somerset-gimp-man-b2437085.html", + "pubDate": "Fri, 27 Oct 2023 12:36:39 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2023-10-27T12:36:39+00:00", + "content": "

Joshua Hunt told a police officer \u201cI\u2019m not a gimp\u201d when he was arrested on May 9

", + "contentSnippet": "Joshua Hunt told a police officer \u201cI\u2019m not a gimp\u201d when he was arrested on May 9", + "guid": "b2437085", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T12:36:39.000Z" + }, + { + "creator": "Nina Lloyd", + "date": "2023-10-27T12:34:11+00:00", + "title": "UK ministers continue to resist calls for ceasefire in Middle East", + "link": "https://www.independent.co.uk/news/uk/government-israel-middle-east-hamas-foreign-office-b2437036.html", + "pubDate": "Fri, 27 Oct 2023 12:34:11 GMT", + "dc:creator": "Nina Lloyd", + "dc:date": "2023-10-27T12:34:11+00:00", + "content": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", + "contentSnippet": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", + "guid": "b2437036", + "categories": ["UK"], + "isoDate": "2023-10-27T12:34:11.000Z" + }, + { + "creator": "Shi Jing and Li Wenfang", + "date": "2023-10-27T12:34:04+00:00", + "title": "Foreign firms set to invest more", + "link": "https://www.independent.co.uk/asia/china/china-daily/investment-foreign-trade-multinational-companies-b2435345.html", + "pubDate": "Fri, 27 Oct 2023 12:34:04 GMT", + "dc:creator": "Shi Jing and Li Wenfang", + "dc:date": "2023-10-27T12:34:04+00:00", + "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", + "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", + "guid": "b2435345", + "categories": ["China Daily", "China", "Asia"], + "isoDate": "2023-10-27T12:34:04.000Z" + }, + { + "creator": "Ashraf Khalil", + "date": "2023-10-27T12:33:59+00:00", + "title": "The Biden administration is encouraging the conversion of empty office space to affordable housing", + "link": "https://www.independent.co.uk/news/pete-buttigieg-ap-biden-washington-office-of-management-and-budget-b2437145.html", + "pubDate": "Fri, 27 Oct 2023 12:33:59 GMT", + "dc:creator": "Ashraf Khalil", + "dc:date": "2023-10-27T12:33:59+00:00", + "content": "The Biden administration is launching a multi-agency effort to encourage states and cities to convert more empty office buildings into housing units, with billions of federal dollars available to help spur such transitions", + "contentSnippet": "The Biden administration is launching a multi-agency effort to encourage states and cities to convert more empty office buildings into housing units, with billions of federal dollars available to help spur such transitions", + "guid": "b2437145", + "isoDate": "2023-10-27T12:33:59.000Z" + }, + { + "creator": "Joseph Draper", + "date": "2023-10-27T12:33:38+00:00", + "title": "Children leave teddies outside Foreign Office as part of call for Gaza ceasefire", + "link": "https://www.independent.co.uk/news/uk/gaza-foreign-office-hamas-children-uk-government-b2437129.html", + "pubDate": "Fri, 27 Oct 2023 12:33:38 GMT", + "dc:creator": "Joseph Draper", + "dc:date": "2023-10-27T12:33:38+00:00", + "content": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", + "contentSnippet": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", + "guid": "b2437129", + "categories": ["UK"], + "isoDate": "2023-10-27T12:33:38.000Z" + }, + { + "creator": "Liu Zhihua and Zhou Lanxu", + "date": "2023-10-27T12:33:09+00:00", + "title": "New e-CNY payment feature to benefit foreigners", + "link": "https://www.independent.co.uk/asia/china/china-daily/digital-currency-ecny-foreign-travel-b2435338.html", + "pubDate": "Fri, 27 Oct 2023 12:33:09 GMT", + "dc:creator": "Liu Zhihua and Zhou Lanxu", + "dc:date": "2023-10-27T12:33:09+00:00", + "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", + "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", + "guid": "b2435338", + "categories": ["China Daily", "China", "Asia"], + "isoDate": "2023-10-27T12:33:09.000Z" + }, + { + "creator": "Cheng Yuezhu", + "date": "2023-10-27T12:32:45+00:00", + "title": "Clean, green and serene", + "link": "https://www.independent.co.uk/asia/china/china-daily/greenery-urban-planning-oxygen-plant-culture-tourism-b2435331.html", + "pubDate": "Fri, 27 Oct 2023 12:32:45 GMT", + "dc:creator": "Cheng Yuezhu", + "dc:date": "2023-10-27T12:32:45+00:00", + "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", + "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", + "guid": "b2435331", + "categories": ["China Daily", "China", "Asia"], + "isoDate": "2023-10-27T12:32:45.000Z" + }, + { + "creator": "Yang Feiyue", + "date": "2023-10-27T12:32:35+00:00", + "title": "Museum puts the excitement into excavations", + "link": "https://www.independent.co.uk/asia/china/china-daily/museum-excavations-archeology-exhibition-culture-b2435318.html", + "pubDate": "Fri, 27 Oct 2023 12:32:35 GMT", + "dc:creator": "Yang Feiyue", + "dc:date": "2023-10-27T12:32:35+00:00", + "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", + "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", + "guid": "b2435318", + "categories": ["China Daily", "China", "Asia"], + "isoDate": "2023-10-27T12:32:35.000Z" + }, + { + "creator": "Laurie Kellman", + "date": "2023-10-27T12:32:28+00:00", + "title": "About 30 children were taken hostage by Hamas militants. Their families wait in agony", + "link": "https://www.independent.co.uk/news/ap-gaza-hamas-israel-children-b2437144.html", + "pubDate": "Fri, 27 Oct 2023 12:32:28 GMT", + "dc:creator": "Laurie Kellman", + "dc:date": "2023-10-27T12:32:28+00:00", + "content": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", + "contentSnippet": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", + "guid": "b2437144", + "isoDate": "2023-10-27T12:32:28.000Z" + }, + { + "creator": "Zhou Huiying and Tan Xuefei", + "date": "2023-10-27T12:32:18+00:00", + "title": "Skills improve lives for those with disabilities", + "link": "https://www.independent.co.uk/asia/china/china-daily/disabilities-special-educational-needs-life-skills-b2435303.html", + "pubDate": "Fri, 27 Oct 2023 12:32:18 GMT", + "dc:creator": "Zhou Huiying and Tan Xuefei", + "dc:date": "2023-10-27T12:32:18+00:00", + "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", + "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", + "guid": "b2435303", + "categories": ["China Daily", "China", "Asia"], + "isoDate": "2023-10-27T12:32:18.000Z" + }, + { + "creator": "Liu Jianqiao", + "date": "2023-10-27T12:31:20+00:00", + "title": "Love for hanfu brings people together", + "link": "https://www.independent.co.uk/asia/china/china-daily/hanfu-traditional-dress-xiaohongshu-b2435292.html", + "pubDate": "Fri, 27 Oct 2023 12:31:20 GMT", + "dc:creator": "Liu Jianqiao", + "dc:date": "2023-10-27T12:31:20+00:00", + "content": "

THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS

", + "contentSnippet": "THE ARTICLES ON THESE PAGES ARE PRODUCED BY CHINA DAILY, WHICH TAKES SOLE RESPONSIBILITY FOR THE CONTENTS", + "guid": "b2435292", + "categories": ["China Daily", "China", "Asia"], + "isoDate": "2023-10-27T12:31:20.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2023-10-27T12:31:02+00:00", + "title": "Wife of off-duty pilot who \u2018tried to turn off engines mid-flight\u2019 breaks silence", + "link": "https://www.the-independent.com/news/world/americas/crime/alaska-airlines-pilot-joseph-emerson-wife-b2437098.html", + "pubDate": "Fri, 27 Oct 2023 12:31:02 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2023-10-27T12:31:02+00:00", + "content": "

\u2018This is not my Joe,\u2019 says wife of Joseph Emerson who is now facing 83 counts of attempted murder

", + "contentSnippet": "\u2018This is not my Joe,\u2019 says wife of Joseph Emerson who is now facing 83 counts of attempted murder", + "guid": "b2437098", + "categories": ["US Crime News", "Americas", "World"], + "isoDate": "2023-10-27T12:31:02.000Z" + }, + { + "creator": "Namita Singh,Oliver O'Connell and Rachel Sharp", + "date": "2023-10-27T12:30:29+00:00", + "title": "Lewiston Maine shooting LIVE: Robert Card manhunt enters third day as 14-year-old boy among victims", + "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-robert-card-motive-b2436896.html", + "pubDate": "Fri, 27 Oct 2023 12:30:29 GMT", + "dc:creator": "Namita Singh,Oliver O'Connell and Rachel Sharp", + "dc:date": "2023-10-27T12:30:29+00:00", + "content": "

Several victims have now been identified including a 14-year-old boy who was killed at the bowling alley in Lewiston \u2013 while the manhunt for Robert Card continues

", + "contentSnippet": "Several victims have now been identified including a 14-year-old boy who was killed at the bowling alley in Lewiston \u2013 while the manhunt for Robert Card continues", + "guid": "b2436896", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T12:30:29.000Z" + }, + { + "creator": "Namita Singh", + "date": "2023-10-27T12:29:25+00:00", + "title": "How Malaysia\u2019s unique system of rolling monarchy works", + "link": "https://www.independent.co.uk/asia/southeast-asia/malaysia-rolling-monarchy-king-b2437089.html", + "pubDate": "Fri, 27 Oct 2023 12:29:25 GMT", + "dc:creator": "Namita Singh", + "dc:date": "2023-10-27T12:29:25+00:00", + "content": "

Sultan Ibrahim Sultan Iskandar is set to take over from King Al-Sultan Abdullah in January 2024

", + "contentSnippet": "Sultan Ibrahim Sultan Iskandar is set to take over from King Al-Sultan Abdullah in January 2024", + "guid": "b2437089", + "categories": ["Southeast Asia", "Asia"], + "isoDate": "2023-10-27T12:29:25.000Z" + }, + { + "creator": "Athena Stavrou", + "date": "2023-10-27T12:29:16+00:00", + "title": "Range Rover drivers struggling to insure cars in crime-hit London as premiums soar", + "link": "https://www.independent.co.uk/news/uk/home-news/range-rover-insure-london-premiums-soar-b2437075.html", + "pubDate": "Fri, 27 Oct 2023 12:29:16 GMT", + "dc:creator": "Athena Stavrou", + "dc:date": "2023-10-27T12:29:16+00:00", + "content": "

Range Rovers are now Britain\u2019s most stolen vehicle and drivers are struggling to get affordable insurance

", + "contentSnippet": "Range Rovers are now Britain\u2019s most stolen vehicle and drivers are struggling to get affordable insurance", + "guid": "b2437075", + "categories": ["Home News", "UK"], + "isoDate": "2023-10-27T12:29:16.000Z" + }, + { + "creator": "Emily Pennink", + "date": "2023-10-27T12:21:46+00:00", + "title": "\u2018Terrorist\u2019 ex-GCHQ worker launched knife attack on US spy, court told", + "link": "https://www.independent.co.uk/news/uk/crime/cheltenham-national-security-agency-old-bailey-cctv-b2437119.html", + "pubDate": "Fri, 27 Oct 2023 12:21:46 GMT", + "dc:creator": "Emily Pennink", + "dc:date": "2023-10-27T12:21:46+00:00", + "content": "Joshua Bowles, 29, described himself as a \u2018terrorist\u2019 to police after the attack in Cheltenham on March 9.", + "contentSnippet": "Joshua Bowles, 29, described himself as a \u2018terrorist\u2019 to police after the attack in Cheltenham on March 9.", + "guid": "b2437119", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T12:21:46.000Z" + }, + { + "creator": "Jacob Stolworthy", + "date": "2023-10-27T12:20:38+00:00", + "title": "Fantastic Beasts director says he was left blindsided by JK Rowling comment at first screening", + "link": "https://www.independent.co.uk/arts-entertainment/films/news/harry-potter-fantastic-beasts-jk-rowling-b2437097.html", + "pubDate": "Fri, 27 Oct 2023 12:20:38 GMT", + "dc:creator": "Jacob Stolworthy", + "dc:date": "2023-10-27T12:20:38+00:00", + "content": "

\u2018It was a surprise to most of us,\u2019 David Yates admitted

", + "contentSnippet": "\u2018It was a surprise to most of us,\u2019 David Yates admitted", + "guid": "b2437097", + "categories": ["News", "Film", "Culture"], + "isoDate": "2023-10-27T12:20:38.000Z" + }, + { + "creator": "Mari Yamaguchi", + "date": "2023-10-27T12:20:12+00:00", + "title": "Tokyo's Shibuya district raises alarm against unruly Halloween, even caging landmark statue", + "link": "https://www.independent.co.uk/news/ap-tokyo-seoul-japan-south-korea-b2437141.html", + "pubDate": "Fri, 27 Oct 2023 12:20:12 GMT", + "dc:creator": "Mari Yamaguchi", + "dc:date": "2023-10-27T12:20:12+00:00", + "content": "Ahead of this year\u2019s Halloween weekend, Tokyo\u2019s busy shopping, business and entertainment district of Shibuya is trying hard to shoo away visitors", + "contentSnippet": "Ahead of this year\u2019s Halloween weekend, Tokyo\u2019s busy shopping, business and entertainment district of Shibuya is trying hard to shoo away visitors", + "guid": "b2437141", + "isoDate": "2023-10-27T12:20:12.000Z" + }, + { + "creator": "Sam Russell", + "date": "2023-10-27T12:15:00+00:00", + "title": "Man denies phone linked to Mark Cavendish robbery is his", + "link": "https://www.independent.co.uk/news/uk/crime/mark-cavendish-chelmsford-crown-court-dna-ongar-b2437133.html", + "pubDate": "Fri, 27 Oct 2023 12:15:00 GMT", + "dc:creator": "Sam Russell", + "dc:date": "2023-10-27T12:15:00+00:00", + "content": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", + "contentSnippet": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", + "guid": "b2437133", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T12:15:00.000Z" + }, + { + "creator": "Andrea Cavallier and Rachel Sharp", + "date": "2023-10-27T12:11:03+00:00", + "title": "14-year-old boy bowling with his father is identified as victim of Lewiston mass shooting", + "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-bar-victims-b2436676.html", + "pubDate": "Fri, 27 Oct 2023 12:11:03 GMT", + "dc:creator": "Andrea Cavallier and Rachel Sharp", + "dc:date": "2023-10-27T12:11:03+00:00", + "content": "

Aaron Young, 14, was with his father Bill Young at the Just-In-Time Recreation bowling alley for an evening with their bowling league on Wednesday night

", + "contentSnippet": "Aaron Young, 14, was with his father Bill Young at the Just-In-Time Recreation bowling alley for an evening with their bowling league on Wednesday night", + "guid": "b2436676", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T12:11:03.000Z" + }, + { + "creator": "Craig Paton", + "date": "2023-10-27T12:03:50+00:00", + "title": "Musk responds \u2018blatant racist\u2019 to Yousaf speech made after George Floyd murder", + "link": "https://www.independent.co.uk/news/uk/elon-musk-george-floyd-twitter-first-minister-derek-chauvin-b2437137.html", + "pubDate": "Fri, 27 Oct 2023 12:03:50 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2023-10-27T12:03:50+00:00", + "content": "The video to which the X owner replied was posted by a right-wing account.", + "contentSnippet": "The video to which the X owner replied was posted by a right-wing account.", + "guid": "b2437137", + "categories": ["UK"], + "isoDate": "2023-10-27T12:03:50.000Z" + }, + { + "creator": "Associated Press", + "date": "2023-10-27T12:03:26+00:00", + "title": "Diamondbacks fueled by \u2018disrespect\u2019 in surprise World Series with Rangers", + "link": "https://www.independent.co.uk/sport/us-sport/major-league-baseball/world-series-2023-rangers-diamondbacks-preview-b2437111.html", + "pubDate": "Fri, 27 Oct 2023 12:03:26 GMT", + "dc:creator": "Associated Press", + "dc:date": "2023-10-27T12:03:26+00:00", + "content": "

In the third wild card matchup in MLB history, manager Torey Lovullo insists Arizona will play Texas with \u2018a chip on our shoulder\u2019

", + "contentSnippet": "In the third wild card matchup in MLB history, manager Torey Lovullo insists Arizona will play Texas with \u2018a chip on our shoulder\u2019", + "guid": "b2437111", + "categories": ["MLB", "US Sport", "Sport"], + "isoDate": "2023-10-27T12:03:26.000Z" + }, + { + "creator": "The Associated Press", + "date": "2023-10-27T12:03:11+00:00", + "title": "Live Updates | Search for suspected shooter prompts dread in Maine", + "link": "https://www.independent.co.uk/news/maine-ap-robert-card-shooter-portland-b2437135.html", + "pubDate": "Fri, 27 Oct 2023 12:03:11 GMT", + "dc:creator": "The Associated Press", + "dc:date": "2023-10-27T12:03:11+00:00", + "content": "The ongoing search for Robert Card, an Army reservist who authorities say fatally shot 18 people at a bowling alley and a bar in Maine, is prompting dread around the state", + "contentSnippet": "The ongoing search for Robert Card, an Army reservist who authorities say fatally shot 18 people at a bowling alley and a bar in Maine, is prompting dread around the state", + "guid": "b2437135", + "isoDate": "2023-10-27T12:03:11.000Z" + }, + { + "creator": "Holly Meyer", + "date": "2023-10-27T12:01:45+00:00", + "title": "How a South Dakota priest inspired 125 years of direct democracy \u2014 and the fight to preserve it", + "link": "https://www.independent.co.uk/news/ap-south-dakota-ohio-republican-socialist-party-b2437134.html", + "pubDate": "Fri, 27 Oct 2023 12:01:45 GMT", + "dc:creator": "Holly Meyer", + "dc:date": "2023-10-27T12:01:45+00:00", + "content": "Thanks to a rabble-rousing, socialist priest, it\u2019s a milestone year for direct democracy in the U.S. The practice of citizen-originated ballot measures began 125 years ago when South Dakota became the first state to have them", + "contentSnippet": "Thanks to a rabble-rousing, socialist priest, it\u2019s a milestone year for direct democracy in the U.S. The practice of citizen-originated ballot measures began 125 years ago when South Dakota became the first state to have them", + "guid": "b2437134", + "isoDate": "2023-10-27T12:01:45.000Z" + }, + { + "creator": "Richard Jolly", + "date": "2023-10-27T12:00:30+00:00", + "title": "Mohamed Salah combines reinvention and record-breaking as Premier League\u2019s greatest all-round threat", + "link": "https://www.independent.co.uk/sport/football/mohamed-salah-liverpool-goals-darwin-nunez-b2436964.html", + "pubDate": "Fri, 27 Oct 2023 12:00:30 GMT", + "dc:creator": "Richard Jolly", + "dc:date": "2023-10-27T12:00:30+00:00", + "content": "

Jurgen Klopp hailed the Egyptian as \u2018world-class\u2019 after another midweek strike in the Europa League

", + "contentSnippet": "Jurgen Klopp hailed the Egyptian as \u2018world-class\u2019 after another midweek strike in the Europa League", + "guid": "b2436964", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T12:00:30.000Z" + }, + { + "creator": "Ian Parker", + "date": "2023-10-27T12:00:09+00:00", + "title": "Jurgen Klopp believes Mohamed Salah is \u2018biologically\u2019 still a young player", + "link": "https://www.independent.co.uk/sport/football/mohamed-salah-jurgen-klopp-premier-league-europa-league-arsenal-b2437131.html", + "pubDate": "Fri, 27 Oct 2023 12:00:09 GMT", + "dc:creator": "Ian Parker", + "dc:date": "2023-10-27T12:00:09+00:00", + "content": "Salah has now scored or assisted in each of his last 13 Premier League games at Anfield.", + "contentSnippet": "Salah has now scored or assisted in each of his last 13 Premier League games at Anfield.", + "guid": "b2437131", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T12:00:09.000Z" + }, + { + "creator": "Victoria Richards", + "date": "2023-10-27T11:59:17+00:00", + "title": "Voices: Have men just found a way to be even creepier online?", + "link": "https://www.independent.co.uk/voices/men-woman-sexual-harassment-social-media-ebay-b2436984.html", + "pubDate": "Fri, 27 Oct 2023 11:59:17 GMT", + "dc:creator": "Victoria Richards", + "dc:date": "2023-10-27T11:59:17+00:00", + "content": "

It\u2019s no secret that toxic men will go to extraordinary lengths to berate, bore and belittle women on the internet. But that doesn\u2019t mean I wasn\u2019t shocked to find one man taking things to another level

", + "contentSnippet": "It\u2019s no secret that toxic men will go to extraordinary lengths to berate, bore and belittle women on the internet. But that doesn\u2019t mean I wasn\u2019t shocked to find one man taking things to another level", + "guid": "b2436984", + "categories": ["Voices"], + "isoDate": "2023-10-27T11:59:17.000Z" + }, + { + "creator": "Mark Staniforth", + "date": "2023-10-27T11:58:58+00:00", + "title": "Mike McMeeken\u2019s move \u2018out of comfort zone\u2019 to Catalans earned England recall", + "link": "https://www.independent.co.uk/sport/england-rugby-league-france-huddersfield-castleford-b2437132.html", + "pubDate": "Fri, 27 Oct 2023 11:58:58 GMT", + "dc:creator": "Mark Staniforth", + "dc:date": "2023-10-27T11:58:58+00:00", + "content": "The 29-year-old made the brave switch to the south of France in 2021 after six seasons with Castleford.", + "contentSnippet": "The 29-year-old made the brave switch to the south of France in 2021 after six seasons with Castleford.", + "guid": "b2437132", + "categories": ["Sport"], + "isoDate": "2023-10-27T11:58:58.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2023-10-27T11:57:41+00:00", + "title": "Rishi Sunak\u2019s billionaire father-in-law sparks backlash by suggesting young people should work 70-hour weeks", + "link": "https://www.independent.co.uk/asia/india/narayana-murthy-rishi-sunak-workweek-backlash-india-infosys-b2437048.html", + "pubDate": "Fri, 27 Oct 2023 11:57:41 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2023-10-27T11:57:41+00:00", + "content": "

Murthy says India\u2019s work productivity is one of the lowest in the world

", + "contentSnippet": "Murthy says India\u2019s work productivity is one of the lowest in the world", + "guid": "b2437048", + "categories": ["India", "Asia"], + "isoDate": "2023-10-27T11:57:41.000Z" + }, + { + "creator": "Andrew Griffin", + "date": "2023-10-27T11:56:48+00:00", + "title": "Your brain doesn\u2019t work the same on Zoom, scientists say", + "link": "https://www.independent.co.uk/tech/zoom-effects-brain-person-conversation-b2437084.html", + "pubDate": "Fri, 27 Oct 2023 11:56:48 GMT", + "dc:creator": "Andrew Griffin", + "dc:date": "2023-10-27T11:56:48+00:00", + "content": "

\u2018Zoom appears to be an impoverished social communication system,\u2019 scientists say after studying the brains of people using it

", + "contentSnippet": "\u2018Zoom appears to be an impoverished social communication system,\u2019 scientists say after studying the brains of people using it", + "guid": "b2437084", + "categories": ["Tech"], + "isoDate": "2023-10-27T11:56:48.000Z" + }, + { + "creator": "Rebecca Thomas", + "date": "2023-10-27T11:55:41+00:00", + "title": "Warning as patients hospitalised after taking fake Ozempic weight-loss drug", + "link": "https://www.independent.co.uk/news/health/ozempic-weight-loss-jab-patients-hospital-b2437045.html", + "pubDate": "Fri, 27 Oct 2023 11:55:41 GMT", + "dc:creator": "Rebecca Thomas", + "dc:date": "2023-10-27T11:55:41+00:00", + "content": "

Hundreds of fake Ozempic jabs from the black market have been seied by the regulator

", + "contentSnippet": "Hundreds of fake Ozempic jabs from the black market have been seied by the regulator", + "guid": "b2437045", + "categories": ["Health"], + "isoDate": "2023-10-27T11:55:41.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-10-27T11:53:39+00:00", + "title": "Fury vs Ngannou prize money: How much are fighters earning this weekend?", + "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-prize-money-purse-b2434994.html", + "pubDate": "Fri, 27 Oct 2023 11:53:39 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-10-27T11:53:39+00:00", + "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", + "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", + "guid": "b2434994", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-10-27T11:53:39.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-10-27T11:53:26+00:00", + "title": "Fury vs Ngannou undercard: Who else is fighting this weekend?", + "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-undercard-fights-fighters-b2434991.html", + "pubDate": "Fri, 27 Oct 2023 11:53:26 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-10-27T11:53:26+00:00", + "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", + "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", + "guid": "b2434991", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-10-27T11:53:26.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-10-27T11:53:25+00:00", + "title": "Fury vs Ngannou rules: How many rounds and do knockouts count?", + "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-rules-rounds-knockouts-b2434992.html", + "pubDate": "Fri, 27 Oct 2023 11:53:25 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-10-27T11:53:25+00:00", + "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", + "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", + "guid": "b2434992", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-10-27T11:53:25.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-10-27T11:52:54+00:00", + "title": "Fury vs Ngannou time: When does fight start in UK and US this weekend?", + "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-start-time-ring-walks-b2434990.html", + "pubDate": "Fri, 27 Oct 2023 11:52:54 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-10-27T11:52:54+00:00", + "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", + "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", + "guid": "b2434990", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-10-27T11:52:54.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-10-27T11:52:44+00:00", + "title": "Fury vs Ngannou live stream: When is the fight and how to watch it online and on TV ", + "link": "https://www.independent.co.uk/sport/boxing/fury-ngannou-date-time-live-stream-online-b2434975.html", + "pubDate": "Fri, 27 Oct 2023 11:52:44 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-10-27T11:52:44+00:00", + "content": "

Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know

", + "contentSnippet": "Tyson Fury boxes ex-UFC champion Francis Ngannou in Saudi Arabia \u2013 here\u2019s all you need to know", + "guid": "b2434975", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-10-27T11:52:44.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-10-27T11:51:27+00:00", + "title": "Big Brother\u2019s Jordan shares \u2018dark\u2019 family tragedy with shocked housemates", + "link": "https://www.independent.co.uk/tv/culture/big-brother-jordan-family-tragedy-drugs-b2437123.html", + "pubDate": "Fri, 27 Oct 2023 11:51:27 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-10-27T11:51:27+00:00", + "content": "

Big Brother star Jordan has opened up about his tragic relationship with his father.

", + "contentSnippet": "Big Brother star Jordan has opened up about his tragic relationship with his father.", + "guid": "b2437123", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-10-27T11:51:27.000Z" + }, + { + "creator": "Maya Oppenheim", + "date": "2023-10-27T11:50:12+00:00", + "title": "\u2018When you admit the truth, you have to take action\u2019: The phoneline helping abusers change their behaviour ", + "link": "https://www.independent.co.uk/news/uk/home-news/helpline-domestic-abuse-perpetrators-respect-b2423834.html", + "pubDate": "Fri, 27 Oct 2023 11:50:12 GMT", + "dc:creator": "Maya Oppenheim", + "dc:date": "2023-10-27T11:50:12+00:00", + "content": "

The number of abusers calling a helpline over their actions has surged. But are they really willing to change? Maya Oppenheim listens in to find out

", + "contentSnippet": "The number of abusers calling a helpline over their actions has surged. But are they really willing to change? Maya Oppenheim listens in to find out", + "guid": "b2423834", + "categories": ["Home News", "UK"], + "isoDate": "2023-10-27T11:50:12.000Z" + }, + { + "creator": "Aine Fox", + "date": "2023-10-27T11:49:22+00:00", + "title": "Unions accuse Keegan of \u2018inflaming controversy\u2019 over sex education teaching", + "link": "https://www.independent.co.uk/news/uk/unions-education-secretary-secretary-of-state-government-geoff-barton-b2437128.html", + "pubDate": "Fri, 27 Oct 2023 11:49:22 GMT", + "dc:creator": "Aine Fox", + "dc:date": "2023-10-27T11:49:22+00:00", + "content": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", + "contentSnippet": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", + "guid": "b2437128", + "categories": ["UK"], + "isoDate": "2023-10-27T11:49:22.000Z" + }, + { + "creator": "Alisha Rahaman Sarkar", + "date": "2023-10-27T11:44:59+00:00", + "title": "US says Chinese fighter jet risked major accident by flying 10ft from B-52 bomber in South China Sea", + "link": "https://www.independent.co.uk/asia/china/chinese-jet-us-bomber-south-china-sea-b2437060.html", + "pubDate": "Fri, 27 Oct 2023 11:44:59 GMT", + "dc:creator": "Alisha Rahaman Sarkar", + "dc:date": "2023-10-27T11:44:59+00:00", + "content": "

US says Chinese jet flew with \u2018uncontrolled excessive speed\u2019 that put both aircraft in danger

", + "contentSnippet": "US says Chinese jet flew with \u2018uncontrolled excessive speed\u2019 that put both aircraft in danger", + "guid": "b2437060", + "categories": ["China", "Asia"], + "isoDate": "2023-10-27T11:44:59.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2023-10-27T11:40:45+00:00", + "title": "Man found dead in chimney a month after tenants hear screams for help", + "link": "https://www.independent.co.uk/news/world/americas/chimney-man-dead-norfolk-nebraska-b2437051.html", + "pubDate": "Fri, 27 Oct 2023 11:40:45 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2023-10-27T11:40:45+00:00", + "content": "

Zachariah Andrews was discovered by maintenance worker investigating foul smell

", + "contentSnippet": "Zachariah Andrews was discovered by maintenance worker investigating foul smell", + "guid": "b2437051", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T11:40:45.000Z" + }, + { + "creator": "PA Reporters", + "date": "2023-10-27T11:40:19+00:00", + "title": "First charter flight for Afghan refugees living in Pakistan arrives in London", + "link": "https://www.independent.co.uk/news/uk/afghan-pakistan-london-afghanistan-government-b2437125.html", + "pubDate": "Fri, 27 Oct 2023 11:40:19 GMT", + "dc:creator": "PA Reporters", + "dc:date": "2023-10-27T11:40:19+00:00", + "content": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", + "contentSnippet": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", + "guid": "b2437125", + "categories": ["UK"], + "isoDate": "2023-10-27T11:40:19.000Z" + }, + { + "creator": "Nicole Winfield", + "date": "2023-10-27T11:39:05+00:00", + "title": "Pope orders Vatican to reopen case of priest ousted from Jesuits after claims of adult abuse", + "link": "https://www.independent.co.uk/news/ap-vatican-jesuits-pope-francis-rome-b2437126.html", + "pubDate": "Fri, 27 Oct 2023 11:39:05 GMT", + "dc:creator": "Nicole Winfield", + "dc:date": "2023-10-27T11:39:05+00:00", + "content": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", + "contentSnippet": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", + "guid": "b2437126", + "isoDate": "2023-10-27T11:39:05.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-10-27T11:36:07+00:00", + "title": "Beyonc\u00e9 clip blamed for reason singer rarely does interviews resurfaces", + "link": "https://www.independent.co.uk/tv/culture/beyonce-foot-mouth-disease-rare-interview-video-b2437093.html", + "pubDate": "Fri, 27 Oct 2023 11:36:07 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-10-27T11:36:07+00:00", + "content": "

A clip dubbed the reason singer Beyonce rarely does interviews anymore has resurfaced.

", + "contentSnippet": "A clip dubbed the reason singer Beyonce rarely does interviews anymore has resurfaced.", + "guid": "b2437093", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-10-27T11:36:07.000Z" + }, + { + "creator": "Isobel Lewis", + "date": "2023-10-27T11:33:15+00:00", + "title": "Hans Zimmer and Raye release \u2018Mother Nature\u2019 from David Attenborough\u2019s Planet Earth III", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/hans-zimmer-raye-planet-earth-3-soundtrack-b2437113.html", + "pubDate": "Fri, 27 Oct 2023 11:33:15 GMT", + "dc:creator": "Isobel Lewis", + "dc:date": "2023-10-27T11:33:15+00:00", + "content": "

\u2018Forgive us, Mother Nature, for we know not what we do,\u2019 Raye sings on soaring track

", + "contentSnippet": "\u2018Forgive us, Mother Nature, for we know not what we do,\u2019 Raye sings on soaring track", + "guid": "b2437113", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-10-27T11:33:15.000Z" + }, + { + "creator": "Ted Hennessey", + "date": "2023-10-27T11:30:49+00:00", + "title": "Search for four sailors missing after British cargo ship sank is called off", + "link": "https://www.independent.co.uk/news/uk/british-north-sea-bahamas-bremen-england-b2437118.html", + "pubDate": "Fri, 27 Oct 2023 11:30:49 GMT", + "dc:creator": "Ted Hennessey", + "dc:date": "2023-10-27T11:30:49+00:00", + "content": "One man died and two others were hospitalised after British-flagged Verity collided with a larger cargo ship, Polesie.", + "contentSnippet": "One man died and two others were hospitalised after British-flagged Verity collided with a larger cargo ship, Polesie.", + "guid": "b2437118", + "categories": ["UK"], + "isoDate": "2023-10-27T11:30:49.000Z" + }, + { + "creator": "Craig Paton", + "date": "2023-10-27T11:30:05+00:00", + "title": "Scottish Government deleted most pandemic WhatsApp messages, inquiry believes", + "link": "https://www.independent.co.uk/news/uk/scottish-government-humza-yousaf-scottish-government-solicitor-general-b2437071.html", + "pubDate": "Fri, 27 Oct 2023 11:30:05 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2023-10-27T11:30:05+00:00", + "content": "First Minister Humza Yousaf has said the matter is being investigated.", + "contentSnippet": "First Minister Humza Yousaf has said the matter is being investigated.", + "guid": "b2437071", + "categories": ["UK"], + "isoDate": "2023-10-27T11:30:05.000Z" + }, + { + "creator": "Nicole Vassell", + "date": "2023-10-27T11:29:30+00:00", + "title": "Breaking down the easter eggs in Taylor Swift\u2019s 1989", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/taylor-swift-1989-easter-eggs-b2436996.html", + "pubDate": "Fri, 27 Oct 2023 11:29:30 GMT", + "dc:creator": "Nicole Vassell", + "dc:date": "2023-10-27T11:29:30+00:00", + "content": "

Fans of the pop star have pored over every clue sprinkled throughout re-released hit record

", + "contentSnippet": "Fans of the pop star have pored over every clue sprinkled throughout re-released hit record", + "guid": "b2436996", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-10-27T11:29:30.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-10-27T11:27:18+00:00", + "title": "China's chief epidemiologist Wu Zunyou who helped drive the anti-COVID fight dies at age 60", + "link": "https://www.independent.co.uk/news/ap-china-beijing-li-keqiang-b2437121.html", + "pubDate": "Fri, 27 Oct 2023 11:27:18 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-10-27T11:27:18+00:00", + "content": "China's chief epidemiologist who helped drive anti-COVID-19 measures in the country that suspended access to cities and confined millions to their homes has died", + "contentSnippet": "China's chief epidemiologist who helped drive anti-COVID-19 measures in the country that suspended access to cities and confined millions to their homes has died", + "guid": "b2437121", + "isoDate": "2023-10-27T11:27:18.000Z" + }, + { + "creator": "Lauren Gilmour", + "date": "2023-10-27T11:27:05+00:00", + "title": "Radiographers to stage first strike at Scottish hospital", + "link": "https://www.independent.co.uk/news/uk/hairmyres-hospital-scottish-south-lanarkshire-b2437120.html", + "pubDate": "Fri, 27 Oct 2023 11:27:05 GMT", + "dc:creator": "Lauren Gilmour", + "dc:date": "2023-10-27T11:27:05+00:00", + "content": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", + "contentSnippet": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", + "guid": "b2437120", + "categories": ["UK"], + "isoDate": "2023-10-27T11:27:05.000Z" + }, + { + "creator": "Ariana Baio", + "date": "2023-10-27T11:26:09+00:00", + "title": "Map of Maine shootings as shelter in place ordered amid manhunt ", + "link": "https://www.independent.co.uk/news/world/americas/maine-shooting-map-suspect-manhunt-b2437100.html", + "pubDate": "Fri, 27 Oct 2023 11:26:09 GMT", + "dc:creator": "Ariana Baio", + "dc:date": "2023-10-27T11:26:09+00:00", + "content": "

Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman

", + "contentSnippet": "Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman", + "guid": "b2437100", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T11:26:09.000Z" + }, + { + "creator": "Tom Harle", + "date": "2023-10-27T11:26:03+00:00", + "title": "Lark Atkin-Davies scores four tries as England thrash Canada in WXV1", + "link": "https://www.independent.co.uk/sport/rugby/rugby-union/england-canada-result-wxv1-lark-atkin-davies-b2437112.html", + "pubDate": "Fri, 27 Oct 2023 11:26:03 GMT", + "dc:creator": "Tom Harle", + "dc:date": "2023-10-27T11:26:03+00:00", + "content": "

England 45-12 Canada: Jess Breach notches her 35th try in dominant Red Roses victory

", + "contentSnippet": "England 45-12 Canada: Jess Breach notches her 35th try in dominant Red Roses victory", + "guid": "b2437112", + "categories": ["Rugby Union", "Rugby", "Sport"], + "isoDate": "2023-10-27T11:26:03.000Z" + }, + { + "creator": "Lorne Cook", + "date": "2023-10-27T11:24:21+00:00", + "title": "Seeing no military answer to Israel-Palestinian tensions, the EU plans for a more peaceful future", + "link": "https://www.independent.co.uk/news/world/europe/hamas-ap-israel-gaza-palestinian-b2437117.html", + "pubDate": "Fri, 27 Oct 2023 11:24:21 GMT", + "dc:creator": "Lorne Cook", + "dc:date": "2023-10-27T11:24:21+00:00", + "content": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", + "contentSnippet": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", + "guid": "b2437117", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T11:24:21.000Z" + }, + { + "creator": "Tom Watling ", + "date": "2023-10-27T11:18:10+00:00", + "title": "Tunnels, traps and Tehran: Why Israel hasn\u2019t attacked Gaza yet and what will happen when it does", + "link": "https://www.independent.co.uk/news/world/middle-east/israel-gaza-ground-offensive-hamas-b2432775.html", + "pubDate": "Fri, 27 Oct 2023 11:18:10 GMT", + "dc:creator": "Tom Watling ", + "dc:date": "2023-10-27T11:18:10+00:00", + "content": "

The Independent explains what this incursion could look like and the myriad hurdles that Israel must overcome

", + "contentSnippet": "The Independent explains what this incursion could look like and the myriad hurdles that Israel must overcome", + "guid": "b2432775", + "categories": ["Middle East", "World"], + "isoDate": "2023-10-27T11:18:10.000Z" + }, + { + "creator": "Sakshi Gupta", + "date": "2023-10-27T11:16:44+00:00", + "title": "Dhoni drops major hint about his Indian Premier League future", + "link": "https://www.independent.co.uk/sport/cricket/dhoni-ipl-2024-chennai-super-kings-b2437088.html", + "pubDate": "Fri, 27 Oct 2023 11:16:44 GMT", + "dc:creator": "Sakshi Gupta", + "dc:date": "2023-10-27T11:16:44+00:00", + "content": "

Former India captain MS Dhoni has 5 IPL trophies with CSK

", + "contentSnippet": "Former India captain MS Dhoni has 5 IPL trophies with CSK", + "guid": "b2437088", + "categories": ["Cricket", "Sport"], + "isoDate": "2023-10-27T11:16:44.000Z" + }, + { + "creator": "Aine Fox", + "date": "2023-10-27T11:16:06+00:00", + "title": "Equalities watchdog expresses concerns for disabled over benefits reforms", + "link": "https://www.independent.co.uk/news/uk/mel-stride-government-work-and-pensions-secretary-parliament-b2437115.html", + "pubDate": "Fri, 27 Oct 2023 11:16:06 GMT", + "dc:creator": "Aine Fox", + "dc:date": "2023-10-27T11:16:06+00:00", + "content": "The Government\u2019s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", + "contentSnippet": "The Government\u2019s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", + "guid": "b2437115", + "categories": ["UK"], + "isoDate": "2023-10-27T11:16:06.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-10-27T11:15:51+00:00", + "title": "Drone footage captures moment sharks surround \u2018frightened\u2019 snorkelers", + "link": "https://www.independent.co.uk/tv/lifestyle/sharks-snorkelers-sea-drone-footage-video-b2437107.html", + "pubDate": "Fri, 27 Oct 2023 11:15:51 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-10-27T11:15:51+00:00", + "content": "

Drone footage has captured the moment sharks surround \u201cfrightened\u201d snorkelers swimming in the sea near Israel.

", + "contentSnippet": "Drone footage has captured the moment sharks surround \u201cfrightened\u201d snorkelers swimming in the sea near Israel.", + "guid": "b2437107", + "categories": ["Lifestyle", "Indy TV"], + "isoDate": "2023-10-27T11:15:51.000Z" + }, + { + "creator": "Lydia Patrick", + "date": "2023-10-27T11:14:47+00:00", + "title": "Wilko to return to five high streets before Christmas - is one opening in your area?", + "link": "https://www.independent.co.uk/news/uk/home-news/wilko-new-stores-opening-uk-christmas-b2437081.html", + "pubDate": "Fri, 27 Oct 2023 11:14:47 GMT", + "dc:creator": "Lydia Patrick", + "dc:date": "2023-10-27T11:14:47+00:00", + "content": "

Five \u2018concept stores\u2019 to return to high streets before Christmas

", + "contentSnippet": "Five \u2018concept stores\u2019 to return to high streets before Christmas", + "guid": "b2437081", + "categories": ["Home News", "UK"], + "isoDate": "2023-10-27T11:14:47.000Z" + }, + { + "creator": "Alan Jones", + "date": "2023-10-27T11:13:10+00:00", + "title": "Investment urged in \u2018dangerously overstretched\u2019 fire service to aid floods work", + "link": "https://www.independent.co.uk/news/uk/investment-fbu-storm-babet-stapleford-nottinghamshire-b2436833.html", + "pubDate": "Fri, 27 Oct 2023 11:13:10 GMT", + "dc:creator": "Alan Jones", + "dc:date": "2023-10-27T11:13:10+00:00", + "content": "The call from the FBU follows the devastating floods caused by Storm Babet.", + "contentSnippet": "The call from the FBU follows the devastating floods caused by Storm Babet.", + "guid": "b2436833", + "categories": ["UK"], + "isoDate": "2023-10-27T11:13:10.000Z" + }, + { + "creator": "Adam White", + "date": "2023-10-27T11:10:56+00:00", + "title": "Taylor Swift review, 1989 (Taylor\u2019s Version): A pop classic is re-recorded to diminishing returns", + "link": "https://www.independent.co.uk/arts-entertainment/music/reviews/taylor-swift-1989-review-rerecording-b2436457.html", + "pubDate": "Fri, 27 Oct 2023 11:10:56 GMT", + "dc:creator": "Adam White", + "dc:date": "2023-10-27T11:10:56+00:00", + "content": "

This revamp does at least serve as a reminder of the album\u2019s untouchable greatness

", + "contentSnippet": "This revamp does at least serve as a reminder of the album\u2019s untouchable greatness", + "guid": "b2436457", + "categories": ["Reviews", "Music", "Culture"], + "isoDate": "2023-10-27T11:10:56.000Z" + }, + { + "creator": "By Cillian Sherlock", + "date": "2023-10-27T11:09:27+00:00", + "title": "\u2018Essential not to lose focus\u2019 on war in Ukraine, Varadkar warns", + "link": "https://www.independent.co.uk/news/uk/ukraine-leo-varadkar-irish-taoiseach-israel-b2437104.html", + "pubDate": "Fri, 27 Oct 2023 11:09:27 GMT", + "dc:creator": "By Cillian Sherlock", + "dc:date": "2023-10-27T11:09:27+00:00", + "content": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", + "contentSnippet": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", + "guid": "b2437104", + "categories": ["UK"], + "isoDate": "2023-10-27T11:09:27.000Z" + }, + { + "creator": "Sam Russell", + "date": "2023-10-27T11:08:08+00:00", + "title": "Husband jailed for life for murder of university lecturer wife in knife attack", + "link": "https://www.independent.co.uk/news/uk/crime/colchester-english-b2437105.html", + "pubDate": "Fri, 27 Oct 2023 11:08:08 GMT", + "dc:creator": "Sam Russell", + "dc:date": "2023-10-27T11:08:08+00:00", + "content": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", + "contentSnippet": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", + "guid": "b2437105", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T11:08:08.000Z" + }, + { + "creator": "Danica Kirka", + "date": "2023-10-27T11:06:23+00:00", + "title": "US expands its effort to cut off funding for Hamas", + "link": "https://www.independent.co.uk/news/ap-hamas-israel-iran-london-b2437108.html", + "pubDate": "Fri, 27 Oct 2023 11:06:23 GMT", + "dc:creator": "Danica Kirka", + "dc:date": "2023-10-27T11:06:23+00:00", + "content": "The United States on Friday expanded its effort to cut off funding for Hamas, announcing a second round of sanctions against people and organizations linked to the group since it launched an attack on Israel that killed more than 1,400 people", + "contentSnippet": "The United States on Friday expanded its effort to cut off funding for Hamas, announcing a second round of sanctions against people and organizations linked to the group since it launched an attack on Israel that killed more than 1,400 people", + "guid": "b2437108", + "isoDate": "2023-10-27T11:06:23.000Z" + }, + { + "creator": "Anya Cooklin-Lofting", + "date": "2023-10-27T11:00:50+00:00", + "title": "Expert lighting tips to get you through the darker months", + "link": "https://www.independent.co.uk/property/house-and-home/winter-lighting-interiors-clocks-go-back-daylight-b2436418.html", + "pubDate": "Fri, 27 Oct 2023 11:00:50 GMT", + "dc:creator": "Anya Cooklin-Lofting", + "dc:date": "2023-10-27T11:00:50+00:00", + "content": "

As the clocks go back and the cold sets in, it\u2019s time to up the ante on your lighting at home. From holistic philosophies on what it means to light your home well, to the kind of bulbs you should choose, Anya Cooklin-Loftin rounds up top lighting tips from experts

", + "contentSnippet": "As the clocks go back and the cold sets in, it\u2019s time to up the ante on your lighting at home. From holistic philosophies on what it means to light your home well, to the kind of bulbs you should choose, Anya Cooklin-Loftin rounds up top lighting tips from experts", + "guid": "b2436418", + "categories": ["House & Home", "Property"], + "isoDate": "2023-10-27T11:00:50.000Z" + }, + { + "creator": "George Sessions", + "date": "2023-10-27T11:00:17+00:00", + "title": "Ange Postecoglou: Tottenham not a better team without Harry Kane, just different", + "link": "https://www.independent.co.uk/sport/football/ange-postecoglou-spurs-harry-kane-premier-league-london-b2437103.html", + "pubDate": "Fri, 27 Oct 2023 11:00:17 GMT", + "dc:creator": "George Sessions", + "dc:date": "2023-10-27T11:00:17+00:00", + "content": "Spurs have scored 20 goals in nine matches to storm to the Premier League summit since Kane\u2019s exit.", + "contentSnippet": "Spurs have scored 20 goals in nine matches to storm to the Premier League summit since Kane\u2019s exit.", + "guid": "b2437103", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T11:00:17.000Z" + }, + { + "creator": "Ariana Baio", + "date": "2023-10-27T10:59:22+00:00", + "title": "Map of Maine shootings as shelter in place ordered amid manhunt", + "link": "https://www.independent.co.uk/news/world/americas/map-maine-shootings-lewiston-b2436630.html", + "pubDate": "Fri, 27 Oct 2023 10:59:22 GMT", + "dc:creator": "Ariana Baio", + "dc:date": "2023-10-27T10:59:22+00:00", + "content": "

Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman

", + "contentSnippet": "Residents of Lewiston, Maine and neraby areas were asked to shelter in place as police search for the suspected gunman", + "guid": "b2436630", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T10:59:22.000Z" + }, + { + "creator": "Kieran Jackson", + "date": "2023-10-27T10:59:00+00:00", + "title": "What time is F1 qualifying tomorrow at the Mexican Grand Prix? ", + "link": "https://www.independent.co.uk/f1/f1-time-qualifying-start-mexico-city-mexican-b2436620.html", + "pubDate": "Fri, 27 Oct 2023 10:59:00 GMT", + "dc:creator": "Kieran Jackson", + "dc:date": "2023-10-27T10:59:00+00:00", + "content": "

Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez\u2019s home race this weekend

", + "contentSnippet": "Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez\u2019s home race this weekend", + "guid": "b2436620", + "categories": ["F1"], + "isoDate": "2023-10-27T10:59:00.000Z" + }, + { + "creator": "Matt Cooper", + "date": "2023-10-27T10:55:52+00:00", + "title": "Cadbury World master chocolatiers make 50kg chocolate Halloween toad", + "link": "https://www.independent.co.uk/news/uk/birmingham-b2437101.html", + "pubDate": "Fri, 27 Oct 2023 10:55:52 GMT", + "dc:creator": "Matt Cooper", + "dc:date": "2023-10-27T10:55:52+00:00", + "content": "The toad is designed to be \u2018as whimsical as possible without being too scary\u2019.", + "contentSnippet": "The toad is designed to be \u2018as whimsical as possible without being too scary\u2019.", + "guid": "b2437101", + "categories": ["UK"], + "isoDate": "2023-10-27T10:55:52.000Z" + }, + { + "creator": "Pan Pylas", + "date": "2023-10-27T10:48:13+00:00", + "title": "Probe finds 'serious failings' in way British politician Nigel Farage had his bank account closed", + "link": "https://www.independent.co.uk/news/nigel-farage-ap-alison-rose-british-financial-conduct-authority-b2437096.html", + "pubDate": "Fri, 27 Oct 2023 10:48:13 GMT", + "dc:creator": "Pan Pylas", + "dc:date": "2023-10-27T10:48:13+00:00", + "content": "An independent probe has found \u201cserious failings\u201d in how NatWest Group\u2019s private and exclusive Coutts Bank shut down the account of the right-wing British politician Nigel Farage", + "contentSnippet": "An independent probe has found \u201cserious failings\u201d in how NatWest Group\u2019s private and exclusive Coutts Bank shut down the account of the right-wing British politician Nigel Farage", + "guid": "b2437096", + "isoDate": "2023-10-27T10:48:13.000Z" + }, + { + "creator": "Helen William", + "date": "2023-10-27T10:47:47+00:00", + "title": "Over \u00a350,000 raised for Met officers sacked over Bianca Williams and Ricardo Dos Santos stop and search", + "link": "https://www.independent.co.uk/news/uk/home-news/bianca-williams-fundraiser-met-officers-b2437043.html", + "pubDate": "Fri, 27 Oct 2023 10:47:47 GMT", + "dc:creator": "Helen William", + "dc:date": "2023-10-27T10:47:47+00:00", + "content": "

Jonathan Clapham and Sam Franks were sacked after it was found they lied about smelling cannabis

", + "contentSnippet": "Jonathan Clapham and Sam Franks were sacked after it was found they lied about smelling cannabis", + "guid": "b2437043", + "categories": ["Home News", "UK"], + "isoDate": "2023-10-27T10:47:47.000Z" + }, + { + "creator": "Amy-Clare Martin", + "date": "2023-10-27T10:47:44+00:00", + "title": "Judge warned sex attacker wanted in murder probe may never be safe to release from jail", + "link": "https://www.independent.co.uk/news/uk/crime/richard-scatchard-sex-offender-manhunt-minehead-b2437065.html", + "pubDate": "Fri, 27 Oct 2023 10:47:44 GMT", + "dc:creator": "Amy-Clare Martin", + "dc:date": "2023-10-27T10:47:44+00:00", + "content": "

Exclusive: A judge jailed Scatchard for life for depraved sex offences in 2000, adding \u2018I cannot predict at what stage you would be safe to release.\u2019

", + "contentSnippet": "Exclusive: A judge jailed Scatchard for life for depraved sex offences in 2000, adding \u2018I cannot predict at what stage you would be safe to release.\u2019", + "guid": "b2437065", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T10:47:44.000Z" + }, + { + "creator": "By Grinne N. Aodha", + "date": "2023-10-27T10:44:47+00:00", + "title": "Varadkar cautions against supermajority in any future Irish unity vote", + "link": "https://www.independent.co.uk/news/uk/northern-ireland-leo-varadkar-irish-steve-baker-taoiseach-b2437095.html", + "pubDate": "Fri, 27 Oct 2023 10:44:47 GMT", + "dc:creator": "By Grinne N. Aodha", + "dc:date": "2023-10-27T10:44:47+00:00", + "content": "The Taoiseach said there is not enough talk to convince people in Northern Ireland \u201cthat a united Ireland would be a warm home for them\u201d.", + "contentSnippet": "The Taoiseach said there is not enough talk to convince people in Northern Ireland \u201cthat a united Ireland would be a warm home for them\u201d.", + "guid": "b2437095", + "categories": ["UK"], + "isoDate": "2023-10-27T10:44:47.000Z" + }, + { + "creator": "Oliver O'Connell and Alex Woodward", + "date": "2023-10-27T10:43:42+00:00", + "title": "Trump attacks judge over $10k fine for violating gag order: Live", + "link": "https://www.independent.co.uk/news/world/americas/trump-fraud-trial-latest-update-today-b2436988.html", + "pubDate": "Fri, 27 Oct 2023 10:43:42 GMT", + "dc:creator": "Oliver O'Connell and Alex Woodward", + "dc:date": "2023-10-27T10:43:42+00:00", + "content": "

The former president railed against Judge Engoron in a series of Truth Social posts after he was fined $10,000 in New York civil fraud trial

", + "contentSnippet": "The former president railed against Judge Engoron in a series of Truth Social posts after he was fined $10,000 in New York civil fraud trial", + "guid": "b2436988", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T10:43:42.000Z" + }, + { + "creator": "Jintamas Saksornchai", + "date": "2023-10-27T10:42:59+00:00", + "title": "Daughter of divisive former Thai Prime Minister Thaksin named head of political party linked to him", + "link": "https://www.independent.co.uk/news/thaksin-shinawatra-ap-pheu-thai-party-daughter-thai-b2437092.html", + "pubDate": "Fri, 27 Oct 2023 10:42:59 GMT", + "dc:creator": "Jintamas Saksornchai", + "dc:date": "2023-10-27T10:42:59+00:00", + "content": "Thailand\u2019s ruling party has selected as its leader the daughter of Thaksin Shinawatra, the country\u2019s divisive former prime minister, highlighting the family\u2019s continuing influence more than two decades after Thaksin entered politics", + "contentSnippet": "Thailand\u2019s ruling party has selected as its leader the daughter of Thaksin Shinawatra, the country\u2019s divisive former prime minister, highlighting the family\u2019s continuing influence more than two decades after Thaksin entered politics", + "guid": "b2437092", + "isoDate": "2023-10-27T10:42:59.000Z" + }, + { + "creator": "August Graham", + "date": "2023-10-27T10:40:59+00:00", + "title": "NatWest sees customers switch to savings accounts as interest rates rise", + "link": "https://www.independent.co.uk/business/natwest-sees-customers-switch-to-savings-accounts-as-interest-rates-rise-b2436987.html", + "pubDate": "Fri, 27 Oct 2023 10:40:59 GMT", + "dc:creator": "August Graham", + "dc:date": "2023-10-27T10:40:59+00:00", + "content": "The business\u2019s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", + "contentSnippet": "The business\u2019s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", + "guid": "b2436987", + "categories": ["Business"], + "isoDate": "2023-10-27T10:40:59.000Z" + }, + { + "creator": "Kelly Rissman", + "date": "2023-10-27T10:40:38+00:00", + "title": "Robert Card\u2019s ties to Maine shooting sites revealed by stunned relative", + "link": "https://www.independent.co.uk/news/world/americas/maine-shooting-robert-card-sister-in-law-b2436658.html", + "pubDate": "Fri, 27 Oct 2023 10:40:38 GMT", + "dc:creator": "Kelly Rissman", + "dc:date": "2023-10-27T10:40:38+00:00", + "content": "

Although the 40-year-old is the \u2018most loving\u2019 person, Karen Card said, \u2018he had an acute episode of mental health, and it\u2019s been a struggle\u2019 over the last year

", + "contentSnippet": "Although the 40-year-old is the \u2018most loving\u2019 person, Karen Card said, \u2018he had an acute episode of mental health, and it\u2019s been a struggle\u2019 over the last year", + "guid": "b2436658", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T10:40:38.000Z" + }, + { + "creator": "Kelly Rissman", + "date": "2023-10-27T10:40:22+00:00", + "title": "Robert Card\u2019s ties to Maine shooting sites revealed by stunned relative", + "link": "https://www.independent.co.uk/news/world/americas/robert-card-sister-in-law-maine-shooting-b2437090.html", + "pubDate": "Fri, 27 Oct 2023 10:40:22 GMT", + "dc:creator": "Kelly Rissman", + "dc:date": "2023-10-27T10:40:22+00:00", + "content": "

Although the 40-year-old is the \u2018most loving\u2019 person, Karen Card said, \u2018he had an acute episode of mental health, and it\u2019s been a struggle\u2019 over the last year

", + "contentSnippet": "Although the 40-year-old is the \u2018most loving\u2019 person, Karen Card said, \u2018he had an acute episode of mental health, and it\u2019s been a struggle\u2019 over the last year", + "guid": "b2437090", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T10:40:22.000Z" + }, + { + "creator": "Damian Spellman", + "date": "2023-10-27T10:39:15+00:00", + "title": "Sandro Tonali could play for Newcastle this weekend despite 10-month ban", + "link": "https://www.independent.co.uk/sport/football/sandro-tonali-eddie-howe-fifa-newcastle-premier-league-b2437080.html", + "pubDate": "Fri, 27 Oct 2023 10:39:15 GMT", + "dc:creator": "Damian Spellman", + "dc:date": "2023-10-27T10:39:15+00:00", + "content": "The punishment is yet to be ratified by world governing body FIFA.", + "contentSnippet": "The punishment is yet to be ratified by world governing body FIFA.", + "guid": "b2437080", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T10:39:15.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-10-27T10:37:57+00:00", + "title": "Britney Spears teaches Loose Women stars how to dance in newly emerged clip", + "link": "https://www.independent.co.uk/tv/culture/britney-spears-dance-loose-women-video-b2437083.html", + "pubDate": "Fri, 27 Oct 2023 10:37:57 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-10-27T10:37:57+00:00", + "content": "

Footage has emerged of singer Britney Spears teaching the Loose Women panelists how to dance.

", + "contentSnippet": "Footage has emerged of singer Britney Spears teaching the Loose Women panelists how to dance.", + "guid": "b2437083", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-10-27T10:37:57.000Z" + }, + { + "creator": "Tara Cobham", + "date": "2023-10-27T10:36:10+00:00", + "title": "\u2018Aggressive\u2019 man charged after shouting insults at Orthodox Jewish man as antisemitism rises 1,400 per cent", + "link": "https://www.independent.co.uk/news/uk/crime/antisemitism-orthodox-jewish-israel-hamas-gaza-b2437004.html", + "pubDate": "Fri, 27 Oct 2023 10:36:10 GMT", + "dc:creator": "Tara Cobham", + "dc:date": "2023-10-27T10:36:10+00:00", + "content": "

The 21-year-old was also wanted over allegations of threatening to kill a man for being in a mixed relationship earlier in the year

", + "contentSnippet": "The 21-year-old was also wanted over allegations of threatening to kill a man for being in a mixed relationship earlier in the year", + "guid": "b2437004", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T10:36:10.000Z" + }, + { + "creator": "Zoe Griffin", + "date": "2023-10-27T10:36:09+00:00", + "title": "12 best heated clothes airers and drying racks, tried and tested", + "link": "https://www.independent.co.uk/extras/indybest/house-garden/household-appliances/best-heated-clothes-airer-indoors-b1892835.html", + "pubDate": "Fri, 27 Oct 2023 10:36:09 GMT", + "dc:creator": "Zoe Griffin", + "dc:date": "2023-10-27T10:36:09+00:00", + "content": "

Save money on energy bills with these top-rated heated clothes airers and drying racks

", + "contentSnippet": "Save money on energy bills with these top-rated heated clothes airers and drying racks", + "guid": "b1892835", + "categories": [ + "Household Appliances", + "Home & Garden", + "IndyBest", + "Extras" + ], + "isoDate": "2023-10-27T10:36:09.000Z" + }, + { + "creator": "By Grinne N. Aodha", + "date": "2023-10-27T10:31:50+00:00", + "title": "Irish premier says EU position on Israel-Palestine conflict is evolving", + "link": "https://www.independent.co.uk/news/uk/leo-varadkar-israel-irish-palestine-president-b2437091.html", + "pubDate": "Fri, 27 Oct 2023 10:31:50 GMT", + "dc:creator": "By Grinne N. Aodha", + "dc:date": "2023-10-27T10:31:50+00:00", + "content": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", + "contentSnippet": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", + "guid": "b2437091", + "categories": ["UK"], + "isoDate": "2023-10-27T10:31:50.000Z" + }, + { + "creator": "Louise Boyle", + "date": "2023-10-27T10:30:44+00:00", + "title": "Hurricane Otis leaves 27 dead in Acapulco after devastating Category 5 storm", + "link": "https://www.independent.co.uk/climate-change/news/hurricane-otis-death-toll-acapulco-b2436520.html", + "pubDate": "Fri, 27 Oct 2023 10:30:44 GMT", + "dc:creator": "Louise Boyle", + "dc:date": "2023-10-27T10:30:44+00:00", + "content": "

Otis is the strongest ever storm to make landfall on Mexico\u2019s west coast

", + "contentSnippet": "Otis is the strongest ever storm to make landfall on Mexico\u2019s west coast", + "guid": "b2436520", + "categories": ["News", "Climate"], + "isoDate": "2023-10-27T10:30:44.000Z" + }, + { + "creator": "Louise Boyle", + "date": "2023-10-27T10:30:19+00:00", + "title": "Hurricane Otis leaves 27 dead in Acapulco after devastating Category 5 storm ", + "link": "https://www.independent.co.uk/climate-change/news/hurricane-otis-mexico-death-toll-b2437086.html", + "pubDate": "Fri, 27 Oct 2023 10:30:19 GMT", + "dc:creator": "Louise Boyle", + "dc:date": "2023-10-27T10:30:19+00:00", + "content": "

Otis is the strongest ever storm to make landfall on Mexico\u2019s west coast

", + "contentSnippet": "Otis is the strongest ever storm to make landfall on Mexico\u2019s west coast", + "guid": "b2437086", + "categories": ["News", "Climate"], + "isoDate": "2023-10-27T10:30:19.000Z" + }, + { + "creator": "Maroosha Muzaffar", + "date": "2023-10-27T10:30:02+00:00", + "title": "Australia approves aerial culling of wild horses after banning it more than two decades ago", + "link": "https://www.independent.co.uk/news/world/australasia/australia-wild-horses-culling-wildlife-b2436978.html", + "pubDate": "Fri, 27 Oct 2023 10:30:02 GMT", + "dc:creator": "Maroosha Muzaffar", + "dc:date": "2023-10-27T10:30:02+00:00", + "content": "

\u2018The change is essential to protecting the park\u2019s threatened native wildlife and ecosystems\u2019

", + "contentSnippet": "\u2018The change is essential to protecting the park\u2019s threatened native wildlife and ecosystems\u2019", + "guid": "b2436978", + "categories": ["Australasia", "World"], + "isoDate": "2023-10-27T10:30:02.000Z" + }, + { + "creator": "Isobel Lewis", + "date": "2023-10-27T10:27:38+00:00", + "title": "Michelle Williams fans predict EGOT for Britney Spears audiobook \u2013 but she\u2019s still got a way to go", + "link": "https://www.independent.co.uk/arts-entertainment/books/news/michelle-williams-britney-spears-audiobook-egot-b2437066.html", + "pubDate": "Fri, 27 Oct 2023 10:27:38 GMT", + "dc:creator": "Isobel Lewis", + "dc:date": "2023-10-27T10:27:38+00:00", + "content": "

Clip of Williams impersonating Justin Timberlake has gone viral

", + "contentSnippet": "Clip of Williams impersonating Justin Timberlake has gone viral", + "guid": "b2437066", + "categories": ["News", "Books", "Culture"], + "isoDate": "2023-10-27T10:27:38.000Z" + }, + { + "creator": "Rachel Sharp", + "date": "2023-10-27T10:26:59+00:00", + "title": "Ten-year-old girl injured in Maine bowling alley shooting asks heartbreaking question", + "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-girl-bowling-alley-b2436651.html", + "pubDate": "Fri, 27 Oct 2023 10:26:59 GMT", + "dc:creator": "Rachel Sharp", + "dc:date": "2023-10-27T10:26:59+00:00", + "content": "

\u2018Why do people do this?\u2019 asked Zoey Levesque after she found herself among a growing list of victims and survivors of mass shootings

", + "contentSnippet": "\u2018Why do people do this?\u2019 asked Zoey Levesque after she found herself among a growing list of victims and survivors of mass shootings", + "guid": "b2436651", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T10:26:59.000Z" + }, + { + "creator": "Mike Bedigan,Maroosha Muzaffar,Richard Hall and Rachel Sharp", + "date": "2023-10-27T04:14:50+00:00", + "title": "Robert Card: What we know about the suspect in Maine mass shooting ", + "link": "https://www.independent.co.uk/news/world/americas/robert-card-maine-shooting-suspect-shooter-b2436886.html", + "pubDate": "Fri, 27 Oct 2023 04:14:50 GMT", + "dc:creator": "Mike Bedigan,Maroosha Muzaffar,Richard Hall and Rachel Sharp", + "dc:date": "2023-10-27T04:14:50+00:00", + "content": "

An arrest warrant has been issued for 40-year-old Army Reservist Robert Card. Mike Bedigan, Maroosha Muzaffar and Richard Hall report on what we know about the suspect in the Lewiston mass shooting. WARNING: Disturbing images

", + "contentSnippet": "An arrest warrant has been issued for 40-year-old Army Reservist Robert Card. Mike Bedigan, Maroosha Muzaffar and Richard Hall report on what we know about the suspect in the Lewiston mass shooting. WARNING: Disturbing images", + "guid": "b2436886", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T04:14:50.000Z" + }, + { + "creator": "Eric Garcia", + "date": "2023-10-27T15:52:48+00:00", + "title": "Embattled Rep George Santos pleads not guilty to new charges", + "link": "https://www.the-independent.com/news/world/americas/us-politics/george-santos-plea-superseding-indictment-b2437248.html", + "pubDate": "Fri, 27 Oct 2023 15:52:48 GMT", + "dc:creator": "Eric Garcia", + "dc:date": "2023-10-27T15:52:48+00:00", + "content": "

Embattled Rep George Santos (R-NY) pleaded not guilty to ten new felony charges in a superseding indictment on Friday, The New York Times reported.

", + "contentSnippet": "Embattled Rep George Santos (R-NY) pleaded not guilty to ten new felony charges in a superseding indictment on Friday, The New York Times reported.", + "guid": "b2437248", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-10-27T15:52:48.000Z" + }, + { + "creator": "Nicole Vassell", + "date": "2023-10-27T15:51:40+00:00", + "title": "The easter eggs in Taylor Swift\u2019s 1989", + "link": "https://www.independent.co.uk/arts-entertainment/music/news/taylor-swift-1989-meaning-easter-eggs-b2437257.html", + "pubDate": "Fri, 27 Oct 2023 15:51:40 GMT", + "dc:creator": "Nicole Vassell", + "dc:date": "2023-10-27T15:51:40+00:00", + "content": "

Fans of the pop star have pored over every clue sprinkled throughout re-released hit record

", + "contentSnippet": "Fans of the pop star have pored over every clue sprinkled throughout re-released hit record", + "guid": "b2437257", + "categories": ["News", "Music", "Culture"], + "isoDate": "2023-10-27T15:51:40.000Z" + }, + { + "creator": "Martha McHardy", + "date": "2023-10-27T15:50:25+00:00", + "title": "Mexico\u2019s president cut disaster fund two years before Hurricane Otis", + "link": "https://www.independent.co.uk/climate-change/news/mexico-disaster-relief-hurricane-otis-b2437147.html", + "pubDate": "Fri, 27 Oct 2023 15:50:25 GMT", + "dc:creator": "Martha McHardy", + "dc:date": "2023-10-27T15:50:25+00:00", + "content": "

Mexican President Andr\u00e9s Manuel L\u00f3pez Obrador claimed the disaster relief fund was \u2018riddled with corruption\u2019

", + "contentSnippet": "Mexican President Andr\u00e9s Manuel L\u00f3pez Obrador claimed the disaster relief fund was \u2018riddled with corruption\u2019", + "guid": "b2437147", + "categories": ["News", "Climate"], + "isoDate": "2023-10-27T15:50:25.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2023-10-27T15:49:52+00:00", + "title": "Ex-Russian spy can sue UK crime agency for \u2018revealing new identity\u2019, court rules", + "link": "https://www.independent.co.uk/news/uk/home-news/ex-russian-spy-lawsuit-nca-b2437175.html", + "pubDate": "Fri, 27 Oct 2023 15:49:52 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2023-10-27T15:49:52+00:00", + "content": "

Boris Karpichkov, former name of double agent, is suing the National Crime Agency for revealing new identity

", + "contentSnippet": "Boris Karpichkov, former name of double agent, is suing the National Crime Agency for revealing new identity", + "guid": "b2437175", + "categories": ["Home News", "UK"], + "isoDate": "2023-10-27T15:49:52.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-10-27T15:48:58+00:00", + "title": "Robert E. Lee statue that prompted deadly protest in Virginia melted down", + "link": "https://www.independent.co.uk/news/ap-charlottesville-virginia-confederate-city-b2437262.html", + "pubDate": "Fri, 27 Oct 2023 15:48:58 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-10-27T15:48:58+00:00", + "content": "A statue of Confederate Gen. Robert E", + "contentSnippet": "A statue of Confederate Gen. Robert E", + "guid": "b2437262", + "isoDate": "2023-10-27T15:48:58.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-10-27T15:48:57+00:00", + "title": "Watch: Boris Johnson announces he\u2019s joining GB News and claims \u2018best days yet to come\u2019", + "link": "https://www.independent.co.uk/tv/news/boris-johnson-gb-news-announcement-video-b2437243.html", + "pubDate": "Fri, 27 Oct 2023 15:48:57 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-10-27T15:48:57+00:00", + "content": "

Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming \u201cthe best days are yet to come\u201d.

", + "contentSnippet": "Former prime minister Boris Johnson has announced he is joining GB News as a presenter, claiming \u201cthe best days are yet to come\u201d.", + "guid": "b2437243", + "categories": ["News", "Indy TV"], + "isoDate": "2023-10-27T15:48:57.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-10-27T15:47:45+00:00", + "title": "Pete Doherty suggests meeting Mark Blanco\u2019s mother to \u2018move on\u2019 from death", + "link": "https://www.independent.co.uk/news/uk/pete-doherty-crown-prosecution-service-london-whitechapel-b2437246.html", + "pubDate": "Fri, 27 Oct 2023 15:47:45 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-10-27T15:47:45+00:00", + "content": "The rock star was interviewed by police but never arrested over the death.", + "contentSnippet": "The rock star was interviewed by police but never arrested over the death.", + "guid": "b2437246", + "categories": ["UK"], + "isoDate": "2023-10-27T15:47:45.000Z" + }, + { + "creator": "Laura Ungar", + "date": "2023-10-27T15:47:14+00:00", + "title": "A new cure for sickle cell disease may be coming. Health advisers will review it next week", + "link": "https://www.independent.co.uk/news/food-and-drug-administration-ap-crispr-patients-issues-b2437261.html", + "pubDate": "Fri, 27 Oct 2023 15:47:14 GMT", + "dc:creator": "Laura Ungar", + "dc:date": "2023-10-27T15:47:14+00:00", + "content": "There soon may be a new cure for sickle cell disease that attacks the disorder at its genetic source", + "contentSnippet": "There soon may be a new cure for sickle cell disease that attacks the disorder at its genetic source", + "guid": "b2437261", + "isoDate": "2023-10-27T15:47:14.000Z" + }, + { + "creator": "Gustaf Kilander", + "date": "2023-10-27T15:44:15+00:00", + "title": "How Speaker Mike Johnson kept pushing to overturn the 2020 election", + "link": "https://www.the-independent.com/news/world/americas/us-politics/speaker-mike-johnson-2020-election-b2436685.html", + "pubDate": "Fri, 27 Oct 2023 15:44:15 GMT", + "dc:creator": "Gustaf Kilander", + "dc:date": "2023-10-27T15:44:15+00:00", + "content": "

Speaker Mike Johnson pushed same debunked conspiracy theories that led to guilty plea from Trump lawyer Sidney Powell

", + "contentSnippet": "Speaker Mike Johnson pushed same debunked conspiracy theories that led to guilty plea from Trump lawyer Sidney Powell", + "guid": "b2436685", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-10-27T15:44:15.000Z" + }, + { + "creator": "Rod Minchin", + "date": "2023-10-27T15:43:59+00:00", + "title": "\u2018Somerset Gimp\u2019 unmasked as gardener convicted of scaring female motorists", + "link": "https://www.independent.co.uk/news/uk/crime/avon-and-somerset-police-police-b2437260.html", + "pubDate": "Fri, 27 Oct 2023 15:43:59 GMT", + "dc:creator": "Rod Minchin", + "dc:date": "2023-10-27T15:43:59+00:00", + "content": "When Joshua Hunt, 32, was arrested in May this year, he told police: \u2018I am not a gimp.\u2019", + "contentSnippet": "When Joshua Hunt, 32, was arrested in May this year, he told police: \u2018I am not a gimp.\u2019", + "guid": "b2437260", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T15:43:59.000Z" + }, + { + "creator": "Rod Minchin", + "date": "2023-10-27T15:43:12+00:00", + "title": "Man found guilty of gimp suit offences towards female motorists", + "link": "https://www.independent.co.uk/news/uk/crime/somerset-avon-and-somerset-police-b2437229.html", + "pubDate": "Fri, 27 Oct 2023 15:43:12 GMT", + "dc:creator": "Rod Minchin", + "dc:date": "2023-10-27T15:43:12+00:00", + "content": "He was fined \u00a3100 and ordered to pay \u00a3200 compensation to each of his three victims and \u00a3620 prosecution costs.", + "contentSnippet": "He was fined \u00a3100 and ordered to pay \u00a3200 compensation to each of his three victims and \u00a3620 prosecution costs.", + "guid": "b2437229", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T15:43:12.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2023-10-27T15:40:59+00:00", + "title": "Scientists reveal why California\u2019s angriest otter has mellowed out", + "link": "https://www.independent.co.uk/news/world/americas/california-angry-otter-surfboard-baby-mother-b2437008.html", + "pubDate": "Fri, 27 Oct 2023 15:40:59 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2023-10-27T15:40:59+00:00", + "content": "

The five-year-old animal had gained a reputation as \u2018California\u2019s angriest otter\u2019 after she was captured on social media attacking surfers in Santa Cruz and biting their boards

", + "contentSnippet": "The five-year-old animal had gained a reputation as \u2018California\u2019s angriest otter\u2019 after she was captured on social media attacking surfers in Santa Cruz and biting their boards", + "guid": "b2437008", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T15:40:59.000Z" + }, + { + "creator": "Tara Cobham", + "date": "2023-10-27T15:40:46+00:00", + "title": "Prison nurse and inmate lover among 16 jailed for \u2018flooding\u2019 jail with drugs", + "link": "https://www.independent.co.uk/news/uk/crime/hmp-lindholme-prison-court-sentencing-amy-hatfield-b2437049.html", + "pubDate": "Fri, 27 Oct 2023 15:40:46 GMT", + "dc:creator": "Tara Cobham", + "dc:date": "2023-10-27T15:40:46+00:00", + "content": "

Affair was at heart of what\u2019s believed to be UK\u2019s biggest-ever prison drugs conspiracy

", + "contentSnippet": "Affair was at heart of what\u2019s believed to be UK\u2019s biggest-ever prison drugs conspiracy", + "guid": "b2437049", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T15:40:46.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-10-27T15:38:03+00:00", + "title": "Live Updates | Police hunt for the shooter as residents take shelter after deadly Maine shooting", + "link": "https://www.independent.co.uk/news/ap-maine-police-parent-united-states-b2436555.html", + "pubDate": "Fri, 27 Oct 2023 15:38:03 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-10-27T15:38:03+00:00", + "content": "Diana Florence of New York says her son, a sophomore at Bates College in Lewiston, Maine, where at least 16 people were killed when a man opened fire at a bar and a bowling alley, stayed in his dorm with his roommate with the blinds closed", + "contentSnippet": "Diana Florence of New York says her son, a sophomore at Bates College in Lewiston, Maine, where at least 16 people were killed when a man opened fire at a bar and a bowling alley, stayed in his dorm with his roommate with the blinds closed", + "guid": "b2436555", + "isoDate": "2023-10-27T15:38:03.000Z" + }, + { + "creator": "Holly Evans", + "date": "2023-10-27T15:35:16+00:00", + "title": "Man known as \u2018Somerset gimp\u2019 guilty of terrifying female drivers in black latex suit ", + "link": "https://www.independent.co.uk/news/uk/crime/joshua-hunt-somerset-gimp-suit-b2437158.html", + "pubDate": "Fri, 27 Oct 2023 15:35:16 GMT", + "dc:creator": "Holly Evans", + "dc:date": "2023-10-27T15:35:16+00:00", + "content": "

Joshua Hunt seen writhing around on the ground during bizarre incident in Somerset, court told

", + "contentSnippet": "Joshua Hunt seen writhing around on the ground during bizarre incident in Somerset, court told", + "guid": "b2437158", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T15:35:16.000Z" + }, + { + "creator": "Lydia Patrick", + "date": "2023-10-27T15:32:45+00:00", + "title": "Tanks containing \u2018large quantity of cattle semen\u2019 stolen in burglary", + "link": "https://www.independent.co.uk/news/uk/crime/bull-semen-tanks-stolen-clogher-b2437138.html", + "pubDate": "Fri, 27 Oct 2023 15:32:45 GMT", + "dc:creator": "Lydia Patrick", + "dc:date": "2023-10-27T15:32:45+00:00", + "content": "

The theft has baffled the agricultural community

", + "contentSnippet": "The theft has baffled the agricultural community", + "guid": "b2437138", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T15:32:45.000Z" + }, + { + "creator": "Alex Woodward", + "date": "2023-10-27T15:30:16+00:00", + "title": "Ivanka Trump must testify in father\u2019s civil fraud trial, judge rules", + "link": "https://www.the-independent.com/news/world/americas/us-politics/ivanka-trump-testify-fraud-trial-b2437220.html", + "pubDate": "Fri, 27 Oct 2023 15:30:16 GMT", + "dc:creator": "Alex Woodward", + "dc:date": "2023-10-27T15:30:16+00:00", + "content": "

The former president\u2019s oldest daughter lost her attempt to block her testimony

", + "contentSnippet": "The former president\u2019s oldest daughter lost her attempt to block her testimony", + "guid": "b2437220", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-10-27T15:30:16.000Z" + }, + { + "creator": "Jamie Braidwood", + "date": "2023-10-27T15:29:28+00:00", + "title": "Is Crystal Palace vs Tottenham on TV? Channel, kick-off time and how to watch Premier League fixture", + "link": "https://www.independent.co.uk/sport/football/crystal-palace-tottenham-tv-channel-time-b2435116.html", + "pubDate": "Fri, 27 Oct 2023 15:29:28 GMT", + "dc:creator": "Jamie Braidwood", + "dc:date": "2023-10-27T15:29:28+00:00", + "content": "

Everything you need to know ahead of Friday night\u2019s London derby

", + "contentSnippet": "Everything you need to know ahead of Friday night\u2019s London derby", + "guid": "b2435116", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T15:29:28.000Z" + }, + { + "creator": "Jamie Braidwood", + "date": "2023-10-27T15:28:50+00:00", + "title": "Is England vs Belgium on TV? Channel, time and how to watch Lionesses tonight", + "link": "https://www.independent.co.uk/sport/football/england-belgium-tv-channel-time-lionesses-b2435131.html", + "pubDate": "Fri, 27 Oct 2023 15:28:50 GMT", + "dc:creator": "Jamie Braidwood", + "dc:date": "2023-10-27T15:28:50+00:00", + "content": "

England have slipped to third in Women\u2019s Nations League Group A1 ahead of this week\u2019s double-header with Belgium

", + "contentSnippet": "England have slipped to third in Women\u2019s Nations League Group A1 ahead of this week\u2019s double-header with Belgium", + "guid": "b2435131", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T15:28:50.000Z" + }, + { + "creator": "Michael Jones", + "date": "2023-10-27T15:28:40+00:00", + "title": "Is England v Argentina on TV? Channel, time and how to watch Rugby World Cup bronze final", + "link": "https://www.independent.co.uk/sport/rugby/rugby-union/england-argentina-rugby-world-cup-tv-channel-time-b2436340.html", + "pubDate": "Fri, 27 Oct 2023 15:28:40 GMT", + "dc:creator": "Michael Jones", + "dc:date": "2023-10-27T15:28:40+00:00", + "content": "

Everything you need to know ahead of the third place play-off

", + "contentSnippet": "Everything you need to know ahead of the third place play-off", + "guid": "b2436340", + "categories": ["Rugby Union", "Rugby", "Sport"], + "isoDate": "2023-10-27T15:28:40.000Z" + }, + { + "creator": "Meredith Clark", + "date": "2023-10-27T15:28:31+00:00", + "title": "Voices: In The Woman in Me, Justin Timberlake benefits from abortion access", + "link": "https://www.independent.co.uk/voices/britney-spears-abortion-justin-timberlake-b2437244.html", + "pubDate": "Fri, 27 Oct 2023 15:28:31 GMT", + "dc:creator": "Meredith Clark", + "dc:date": "2023-10-27T15:28:31+00:00", + "content": "

Britney Spears heavily details her \u2018excruciating\u2019 abortion in her memoir, \u2018The Woman in Me\u2019. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it

", + "contentSnippet": "Britney Spears heavily details her \u2018excruciating\u2019 abortion in her memoir, \u2018The Woman in Me\u2019. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it", + "guid": "b2437244", + "categories": ["Voices"], + "isoDate": "2023-10-27T15:28:31.000Z" + }, + { + "creator": "Rachel Sharp", + "date": "2023-10-27T15:28:11+00:00", + "title": "Mystery note left behind by Maine mass shooting suspect revealed", + "link": "https://www.independent.co.uk/news/world/americas/lewiston-maine-shooting-note-robert-card-b2437233.html", + "pubDate": "Fri, 27 Oct 2023 15:28:11 GMT", + "dc:creator": "Rachel Sharp", + "dc:date": "2023-10-27T15:28:11+00:00", + "content": "

Maine police refused to reveal the contents of the note left by Robert Card, hinting that it may point to a possible motive for the Lewiston mass shootings

", + "contentSnippet": "Maine police refused to reveal the contents of the note left by Robert Card, hinting that it may point to a possible motive for the Lewiston mass shootings", + "guid": "b2437233", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T15:28:11.000Z" + }, + { + "creator": "Adam Forrest", + "date": "2023-10-27T15:28:04+00:00", + "title": "Boris Johnson reveals he is joining GB News", + "link": "https://www.independent.co.uk/news/uk/politics/boris-johnson-gb-news-presenter-b2437198.html", + "pubDate": "Fri, 27 Oct 2023 15:28:04 GMT", + "dc:creator": "Adam Forrest", + "dc:date": "2023-10-27T15:28:04+00:00", + "content": "

Former PM promises to share his \u2018unvarnished\u2019 views on politics \u2013 in new warning to Rishi Sunak

", + "contentSnippet": "Former PM promises to share his \u2018unvarnished\u2019 views on politics \u2013 in new warning to Rishi Sunak", + "guid": "b2437198", + "categories": ["UK Politics", "UK"], + "isoDate": "2023-10-27T15:28:04.000Z" + }, + { + "creator": "Lauren Gilmour", + "date": "2023-10-27T15:27:36+00:00", + "title": "Rail services suspended as weather warning for rain extended", + "link": "https://www.independent.co.uk/news/uk/aberdeen-inverness-scotrail-perth-dundee-b2437024.html", + "pubDate": "Fri, 27 Oct 2023 15:27:36 GMT", + "dc:creator": "Lauren Gilmour", + "dc:date": "2023-10-27T15:27:36+00:00", + "content": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", + "contentSnippet": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", + "guid": "b2437024", + "categories": ["UK"], + "isoDate": "2023-10-27T15:27:36.000Z" + }, + { + "creator": "Meredith Clark", + "date": "2023-10-27T15:26:58+00:00", + "title": "Voices: In The Woman in Me, Justin Timberlake benefits from abortion access", + "link": "https://www.independent.co.uk/voices/abortion-britney-spears-and-justin-timberlake-b2435639.html", + "pubDate": "Fri, 27 Oct 2023 15:26:58 GMT", + "dc:creator": "Meredith Clark", + "dc:date": "2023-10-27T15:26:58+00:00", + "content": "

Britney Spears heavily details her \u2018excruciating\u2019 abortion in her memoir, \u2018The Woman in Me\u2019. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it

", + "contentSnippet": "Britney Spears heavily details her \u2018excruciating\u2019 abortion in her memoir, \u2018The Woman in Me\u2019. When it comes to Justin Timberlake, Spears proves that men will always benefit from abortion access, even if they fail to speak up about it", + "guid": "b2435639", + "categories": ["Voices"], + "isoDate": "2023-10-27T15:26:58.000Z" + }, + { + "creator": "Kieran Jackson", + "date": "2023-10-27T15:22:15+00:00", + "title": "F1 Mexican Grand Prix: When is practice on Friday in Mexico City? ", + "link": "https://www.independent.co.uk/f1/f1-practice-start-time-mexican-mexico-city-b2436619.html", + "pubDate": "Fri, 27 Oct 2023 15:22:15 GMT", + "dc:creator": "Kieran Jackson", + "dc:date": "2023-10-27T15:22:15+00:00", + "content": "

Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez\u2019s home race this weekend

", + "contentSnippet": "Formula 1 returns to the Autodromo Hermanos Rodriguez in Mexico City for Sergio Perez\u2019s home race this weekend", + "guid": "b2436619", + "categories": ["F1"], + "isoDate": "2023-10-27T15:22:15.000Z" + }, + { + "creator": "Ariana Baio", + "date": "2023-10-27T15:21:38+00:00", + "title": "Divers join search for Maine shooting suspect in river", + "link": "https://www.independent.co.uk/news/world/americas/divers-maine-shooting-search-river-b2437197.html", + "pubDate": "Fri, 27 Oct 2023 15:21:38 GMT", + "dc:creator": "Ariana Baio", + "dc:date": "2023-10-27T15:21:38+00:00", + "content": "

Vehicle connected to Maine shooting suspect was found at a boat ramp near the Androscoggin river in Lisbon

", + "contentSnippet": "Vehicle connected to Maine shooting suspect was found at a boat ramp near the Androscoggin river in Lisbon", + "guid": "b2437197", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T15:21:38.000Z" + }, + { + "creator": "Callum Parke", + "date": "2023-10-27T15:21:07+00:00", + "title": "Thai football team captain who was trapped in cave killed himself, coroner rules", + "link": "https://www.independent.co.uk/news/uk/thai-leicester-city-tham-luang-bbc-b2437228.html", + "pubDate": "Fri, 27 Oct 2023 15:21:07 GMT", + "dc:creator": "Callum Parke", + "dc:date": "2023-10-27T15:21:07+00:00", + "content": "The coroner said Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019.", + "contentSnippet": "The coroner said Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019.", + "guid": "b2437228", + "categories": ["UK"], + "isoDate": "2023-10-27T15:21:07.000Z" + }, + { + "creator": "Raf Casert", + "date": "2023-10-27T15:20:38+00:00", + "title": "EU summit turns its eyes away from Ukraine despite a commitment to stay the course with Zelenskyy", + "link": "https://www.independent.co.uk/news/world/europe/ukraine-ap-viktor-orban-robert-fico-russia-b2437245.html", + "pubDate": "Fri, 27 Oct 2023 15:20:38 GMT", + "dc:creator": "Raf Casert", + "dc:date": "2023-10-27T15:20:38+00:00", + "content": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", + "contentSnippet": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", + "guid": "b2437245", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T15:20:38.000Z" + }, + { + "creator": "Callum Parke", + "date": "2023-10-27T15:20:30+00:00", + "title": "Thai cave rescue football team captain killed himself at UK school, coroner rules", + "link": "https://www.independent.co.uk/news/uk/home-news/thai-cave-rescue-duangphet-phromthep-suicide-b2437230.html", + "pubDate": "Fri, 27 Oct 2023 15:20:30 GMT", + "dc:creator": "Callum Parke", + "dc:date": "2023-10-27T15:20:30+00:00", + "content": "

Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019, coroner rules

", + "contentSnippet": "Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019, coroner rules", + "guid": "b2437230", + "categories": ["Home News", "UK"], + "isoDate": "2023-10-27T15:20:30.000Z" + }, + { + "creator": "Robert O'Connor", + "date": "2023-10-27T15:20:13+00:00", + "title": "Christopher Nkunku return teased by Mauricio Pochettino ahead of long-awaited Chelsea debut", + "link": "https://www.independent.co.uk/sport/football/christopher-nkunku-chelsea-injury-news-pochettino-b2437237.html", + "pubDate": "Fri, 27 Oct 2023 15:20:13 GMT", + "dc:creator": "Robert O'Connor", + "dc:date": "2023-10-27T15:20:13+00:00", + "content": "

The \u00a352m signing has been sidelined since the summer

", + "contentSnippet": "The \u00a352m signing has been sidelined since the summer", + "guid": "b2437237", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T15:20:13.000Z" + }, + { + "creator": "Oliver Browning", + "date": "2023-10-27T15:20:00+00:00", + "title": "Watch: Maine State Police hold press conference as manhunt underway after mass shootings", + "link": "https://www.independent.co.uk/news/world/americas/maine-shooting-manhunt-police-live-b2436512.html", + "pubDate": "Fri, 27 Oct 2023 15:20:00 GMT", + "dc:creator": "Oliver Browning", + "dc:date": "2023-10-27T15:20:00+00:00", + "content": "

Watch as Maine State Police hold a news conference as the hunt for man linked to major mass shootings continues on Thursday 26 October.

", + "contentSnippet": "Watch as Maine State Police hold a news conference as the hunt for man linked to major mass shootings continues on Thursday 26 October.", + "guid": "b2436512", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T15:20:00.000Z" + }, + { + "creator": "Amelia Neath", + "date": "2023-10-27T15:19:38+00:00", + "title": "Fears for missing 16-year-old last seen in Idaho with his doomsday family", + "link": "https://www.independent.co.uk/news/world/americas/blaze-thibaudeau-doomsday-family-idaho-b2437151.html", + "pubDate": "Fri, 27 Oct 2023 15:19:38 GMT", + "dc:creator": "Amelia Neath", + "dc:date": "2023-10-27T15:19:38+00:00", + "content": "

The four potentially could be now have enterted Canada to prepare for the \u2018last days\u2019 in the doomsday judgement.

", + "contentSnippet": "The four potentially could be now have enterted Canada to prepare for the \u2018last days\u2019 in the doomsday judgement.", + "guid": "b2437151", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T15:19:38.000Z" + }, + { + "creator": "Kaleigh Werner", + "date": "2023-10-27T15:17:12+00:00", + "title": "Kristen Stewart shares wedding plans with fianc\u00e9e Dylan Meyer and Guy Fieri", + "link": "https://www.independent.co.uk/life-style/kristen-stewart-wedding-dylan-meyer-b2437199.html", + "pubDate": "Fri, 27 Oct 2023 15:17:12 GMT", + "dc:creator": "Kaleigh Werner", + "dc:date": "2023-10-27T15:17:12+00:00", + "content": "

\u2018Twilight\u2019 lead met her fianc\u00e9e on set of a 2013 movie but didn\u2019t start dating her until six years later

", + "contentSnippet": "\u2018Twilight\u2019 lead met her fianc\u00e9e on set of a 2013 movie but didn\u2019t start dating her until six years later", + "guid": "b2437199", + "categories": ["Lifestyle"], + "isoDate": "2023-10-27T15:17:12.000Z" + }, + { + "creator": "Martha McHardy,Louise Boyle and Stuti Mishra", + "date": "2023-10-27T15:16:06+00:00", + "title": "Hurricane Otis \u2013 latest: Fears grow for people still missing in Acapulco after storm killed 27", + "link": "https://www.independent.co.uk/climate-change/news/hurricane-otis-acapulco-path-latest-news-b2437003.html", + "pubDate": "Fri, 27 Oct 2023 15:16:06 GMT", + "dc:creator": "Martha McHardy,Louise Boyle and Stuti Mishra", + "dc:date": "2023-10-27T15:16:06+00:00", + "content": "

Four people are missing after the strongest ever storm to make landfall on Mexico\u2019s west coast

", + "contentSnippet": "Four people are missing after the strongest ever storm to make landfall on Mexico\u2019s west coast", + "guid": "b2437003", + "categories": ["News", "Climate"], + "isoDate": "2023-10-27T15:16:06.000Z" + }, + { + "creator": "Didi Tang and Matthew Lee", + "date": "2023-10-27T15:14:49+00:00", + "title": "China's top diplomat visits Washington to help stabilize ties and perhaps set up a Biden-Xi summit", + "link": "https://www.independent.co.uk/news/world/americas/wang-yi-ap-joe-biden-china-xi-jinping-b2437231.html", + "pubDate": "Fri, 27 Oct 2023 15:14:49 GMT", + "dc:creator": "Didi Tang and Matthew Lee", + "dc:date": "2023-10-27T15:14:49+00:00", + "content": "China\u2019s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", + "contentSnippet": "China\u2019s top diplomat is meeting high-level U.S. officials, possibly including President Joe Biden, on a highly watched visit to Washington", + "guid": "b2437231", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T15:14:49.000Z" + }, + { + "creator": "Paul Cargill", + "date": "2023-10-27T15:13:25+00:00", + "title": "Hundreds of offshore workers to be balloted in row over rotas and pay", + "link": "https://www.independent.co.uk/news/uk/sharon-graham-b2437239.html", + "pubDate": "Fri, 27 Oct 2023 15:13:25 GMT", + "dc:creator": "Paul Cargill", + "dc:date": "2023-10-27T15:13:25+00:00", + "content": "The dispute centres on a company\u2019s alleged refusal to reform working rotas and provide paid leave.", + "contentSnippet": "The dispute centres on a company\u2019s alleged refusal to reform working rotas and provide paid leave.", + "guid": "b2437239", + "categories": ["UK"], + "isoDate": "2023-10-27T15:13:25.000Z" + }, + { + "creator": "Brittany Miller", + "date": "2023-10-27T15:13:02+00:00", + "title": "Restaurant charges parents $50 fee for \u2018loud\u2019 children", + "link": "https://www.independent.co.uk/life-style/restaurant-parenting-extra-charge-reddit-b2436694.html", + "pubDate": "Fri, 27 Oct 2023 15:13:02 GMT", + "dc:creator": "Brittany Miller", + "dc:date": "2023-10-27T15:13:02+00:00", + "content": "

\u2018Adult surcharge: For adults unable to parent $$$\u2019 menu reads

", + "contentSnippet": "\u2018Adult surcharge: For adults unable to parent $$$\u2019 menu reads", + "guid": "b2436694", + "categories": ["Lifestyle"], + "isoDate": "2023-10-27T15:13:02.000Z" + }, + { + "creator": "Nina Lloyd", + "date": "2023-10-27T15:12:09+00:00", + "title": "UK ministers continue to resist calls for ceasefire in Middle East", + "link": "https://www.independent.co.uk/news/uk/israel-middle-east-gaza-hamas-foreign-office-b2437036.html", + "pubDate": "Fri, 27 Oct 2023 15:12:09 GMT", + "dc:creator": "Nina Lloyd", + "dc:date": "2023-10-27T15:12:09+00:00", + "content": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", + "contentSnippet": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", + "guid": "b2437036", + "categories": ["UK"], + "isoDate": "2023-10-27T15:12:09.000Z" + }, + { + "creator": "David Charlesworth", + "date": "2023-10-27T15:11:59+00:00", + "title": "Pep Guardiola condemns Man City fans who sang offensive Sir Bobby Charlton chant", + "link": "https://www.independent.co.uk/sport/football/manchester-city-fans-bobby-charlton-song-video-b2437221.html", + "pubDate": "Fri, 27 Oct 2023 15:11:59 GMT", + "dc:creator": "David Charlesworth", + "dc:date": "2023-10-27T15:11:59+00:00", + "content": "

Two people, both minors, have been banned by the club after chanting during City\u2019s match against Brighton last weekend

", + "contentSnippet": "Two people, both minors, have been banned by the club after chanting during City\u2019s match against Brighton last weekend", + "guid": "b2437221", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T15:11:59.000Z" + }, + { + "creator": "Craig Paton", + "date": "2023-10-27T15:10:07+00:00", + "title": "Yousaf calls on every UK political leader to back Gaza ceasefire", + "link": "https://www.independent.co.uk/news/uk/humza-yousaf-gaza-hamas-rishi-sunak-first-minister-b2437226.html", + "pubDate": "Fri, 27 Oct 2023 15:10:07 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2023-10-27T15:10:07+00:00", + "content": "The First Minister has written to the leaders of all parties to warn without action, the situation will become \u2018cataclysmic\u2019.", + "contentSnippet": "The First Minister has written to the leaders of all parties to warn without action, the situation will become \u2018cataclysmic\u2019.", + "guid": "b2437226", + "categories": ["UK"], + "isoDate": "2023-10-27T15:10:07.000Z" + }, + { + "creator": "Sam Hall", + "date": "2023-10-27T15:09:00+00:00", + "title": "Olympic gymnast hopes MBE will inspire others \u2018to be the best that they can\u2019", + "link": "https://www.independent.co.uk/news/uk/great-britain-mbe-los-angeles-royal-buckingham-palace-b2437227.html", + "pubDate": "Fri, 27 Oct 2023 15:09:00 GMT", + "dc:creator": "Sam Hall", + "dc:date": "2023-10-27T15:09:00+00:00", + "content": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", + "contentSnippet": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", + "guid": "b2437227", + "categories": ["UK"], + "isoDate": "2023-10-27T15:09:00.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-10-27T15:08:26+00:00", + "title": "Reckless man steals bus before smashing it into car on 10-mile trip across busy city centre", + "link": "https://www.independent.co.uk/tv/news/man-steals-bus-crash-car-nottingham-video-b2437215.html", + "pubDate": "Fri, 27 Oct 2023 15:08:26 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-10-27T15:08:26+00:00", + "content": "

This is the moment a man hops onto a bus before stealing the vehicle and smashing it into a car as he drives recklessly through the streets of Nottingham.

", + "contentSnippet": "This is the moment a man hops onto a bus before stealing the vehicle and smashing it into a car as he drives recklessly through the streets of Nottingham.", + "guid": "b2437215", + "categories": ["News", "Indy TV"], + "isoDate": "2023-10-27T15:08:26.000Z" + }, + { + "creator": "Alex Pattle", + "date": "2023-10-27T15:03:48+00:00", + "title": "Jon Jones apologises to Stipe Miocic after injury derails UFC 295 clash", + "link": "https://www.independent.co.uk/sport/ufc/jon-jones-injury-miocic-ufc-295-b2437006.html", + "pubDate": "Fri, 27 Oct 2023 15:03:48 GMT", + "dc:creator": "Alex Pattle", + "dc:date": "2023-10-27T15:03:48+00:00", + "content": "

The heavyweight champion was due to defend his belt against divisional great Miocic on 11 November, but he will instead face months of rehab on a shoulder injury

", + "contentSnippet": "The heavyweight champion was due to defend his belt against divisional great Miocic on 11 November, but he will instead face months of rehab on a shoulder injury", + "guid": "b2437006", + "categories": ["UFC", "Sport"], + "isoDate": "2023-10-27T15:03:48.000Z" + }, + { + "creator": "Billal Rahman", + "date": "2023-10-27T15:01:54+00:00", + "title": "Climate activist scales Louvre to throw orange paint over pyramid ", + "link": "https://www.independent.co.uk/tv/news/lourve-orange-paint-climate-activist-b2437211.html", + "pubDate": "Fri, 27 Oct 2023 15:01:54 GMT", + "dc:creator": "Billal Rahman", + "dc:date": "2023-10-27T15:01:54+00:00", + "content": "

Climate activists scaled the Louvre Museum Pyramid and threw orange paint over the iconic museum in Paris on Friday, 27 October.

", + "contentSnippet": "Climate activists scaled the Louvre Museum Pyramid and threw orange paint over the iconic museum in Paris on Friday, 27 October.", + "guid": "b2437211", + "categories": ["News", "Indy TV"], + "isoDate": "2023-10-27T15:01:54.000Z" + }, + { + "creator": "Philip Duncan", + "date": "2023-10-27T15:01:28+00:00", + "title": "Max Verstappen urges fans to show him respect ahead of feisty Mexican Grand Prix", + "link": "https://www.independent.co.uk/f1/max-verstappen-sergio-perez-mexico-city-austin-mexican-b2437225.html", + "pubDate": "Fri, 27 Oct 2023 15:01:28 GMT", + "dc:creator": "Philip Duncan", + "dc:date": "2023-10-27T15:01:28+00:00", + "content": "Verstappen has beefed up his security for Sergio Perez\u2019s home race at the high-altitude Autodromo Hermanos Rodriguez venue in Mexico City.", + "contentSnippet": "Verstappen has beefed up his security for Sergio Perez\u2019s home race at the high-altitude Autodromo Hermanos Rodriguez venue in Mexico City.", + "guid": "b2437225", + "categories": ["F1"], + "isoDate": "2023-10-27T15:01:28.000Z" + }, + { + "creator": "Via AP news wire", + "date": "2023-10-27T15:00:51+00:00", + "title": "Cruise, GM's robotaxi service, suspends all driverless operations nationwide", + "link": "https://www.independent.co.uk/news/ap-general-motors-california-new-york-san-francisco-b2437224.html", + "pubDate": "Fri, 27 Oct 2023 15:00:51 GMT", + "dc:creator": "Via AP news wire", + "dc:date": "2023-10-27T15:00:51+00:00", + "content": "General Motors\u2019 Cruise says it's suspending its driverless operations nationwide as the robotaxi service works to rebuild public trust", + "contentSnippet": "General Motors\u2019 Cruise says it's suspending its driverless operations nationwide as the robotaxi service works to rebuild public trust", + "guid": "b2437224", + "isoDate": "2023-10-27T15:00:51.000Z" + }, + { + "creator": "Sarah Young", + "date": "2023-10-27T14:59:43+00:00", + "title": "Black Friday microwave deals 2023: Early deals and what to expect", + "link": "https://www.independent.co.uk/extras/indybest/black-friday/microwave-deals-black-friday-2023-b2416599.html", + "pubDate": "Fri, 27 Oct 2023 14:59:43 GMT", + "dc:creator": "Sarah Young", + "dc:date": "2023-10-27T14:59:43+00:00", + "content": "

Save on big-name brands such as Samsung, Sage and more

", + "contentSnippet": "Save on big-name brands such as Samsung, Sage and more", + "guid": "b2416599", + "categories": ["Black Friday", "IndyBest", "Extras"], + "isoDate": "2023-10-27T14:59:43.000Z" + }, + { + "creator": "Sam Blewett", + "date": "2023-10-27T14:55:39+00:00", + "title": "Khan, Sarwar and Burnham pile pressure on Starmer by demanding Israel ceasefire", + "link": "https://www.independent.co.uk/news/uk/israel-sadiq-khan-burnham-andy-burnham-kate-green-b2437217.html", + "pubDate": "Fri, 27 Oct 2023 14:55:39 GMT", + "dc:creator": "Sam Blewett", + "dc:date": "2023-10-27T14:55:39+00:00", + "content": "The Labour leader is standing by his stance of supporting Israel\u2019s right to self defence despite the Palestinian civilians being killed.", + "contentSnippet": "The Labour leader is standing by his stance of supporting Israel\u2019s right to self defence despite the Palestinian civilians being killed.", + "guid": "b2437217", + "categories": ["UK"], + "isoDate": "2023-10-27T14:55:39.000Z" + }, + { + "creator": "Sonia Twigg", + "date": "2023-10-27T14:54:39+00:00", + "title": "Mohammed Rizwan evokes memories of Jonny Bairstow controversy in World Cup incident", + "link": "https://www.independent.co.uk/sport/cricket/mohammad-rizwan-alex-carey-jonny-bairstow-b2437212.html", + "pubDate": "Fri, 27 Oct 2023 14:54:39 GMT", + "dc:creator": "Sonia Twigg", + "dc:date": "2023-10-27T14:54:39+00:00", + "content": "

Mohammad Rizwan evoked memories of Alex Carey to Jonny Bairstow at Lord\u2019s in World Cup match

", + "contentSnippet": "Mohammad Rizwan evoked memories of Alex Carey to Jonny Bairstow at Lord\u2019s in World Cup match", + "guid": "b2437212", + "categories": ["Cricket", "Sport"], + "isoDate": "2023-10-27T14:54:39.000Z" + }, + { + "creator": "Lauren Gilmour", + "date": "2023-10-27T14:54:38+00:00", + "title": "Scottish Water staff plan weekly strikes over three months amid pay row", + "link": "https://www.independent.co.uk/business/scottish-water-staff-plan-weekly-strikes-over-three-months-amid-pay-row-b2437216.html", + "pubDate": "Fri, 27 Oct 2023 14:54:38 GMT", + "dc:creator": "Lauren Gilmour", + "dc:date": "2023-10-27T14:54:38+00:00", + "content": "Unions accused the firm of \u2018insatiable greed\u2019.", + "contentSnippet": "Unions accused the firm of \u2018insatiable greed\u2019.", + "guid": "b2437216", + "categories": ["Business"], + "isoDate": "2023-10-27T14:54:38.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2023-10-27T14:53:19+00:00", + "title": "Boris Johnson joining GB News to offer \u2018unvarnished\u2019 views", + "link": "https://www.independent.co.uk/news/uk/boris-johnson-britain-jacob-reesmogg-gb-news-conservative-b2437209.html", + "pubDate": "Fri, 27 Oct 2023 14:53:19 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2023-10-27T14:53:19+00:00", + "content": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", + "contentSnippet": "The former prime minister is the latest Conservative politician to find a place at the broadcaster.", + "guid": "b2437209", + "categories": ["UK"], + "isoDate": "2023-10-27T14:53:19.000Z" + }, + { + "creator": "", + "date": "2023-10-27T14:52:18+00:00", + "title": "Streamline your life with these cool gadgets", + "link": "https://www.independent.co.uk/tech/streamline-your-life-with-these-cool-gadgets-b2435825.html", + "pubDate": "Fri, 27 Oct 2023 14:52:18 GMT", + "dc:creator": "", + "dc:date": "2023-10-27T14:52:18+00:00", + "content": "

From robot cleaners to solar generators, check out these super-stylish tech upgrades

", + "contentSnippet": "From robot cleaners to solar generators, check out these super-stylish tech upgrades", + "guid": "b2435825", + "categories": ["Tech"], + "isoDate": "2023-10-27T14:52:18.000Z" + }, + { + "creator": "Eric Garcia", + "date": "2023-10-27T14:51:10+00:00", + "title": "New Speaker Mike Johnson blames \u2018human heart\u2019 for gun violence", + "link": "https://www.the-independent.com/news/world/americas/us-politics/speaker-mike-johnson-gun-control-b2437161.html", + "pubDate": "Fri, 27 Oct 2023 14:51:10 GMT", + "dc:creator": "Eric Garcia", + "dc:date": "2023-10-27T14:51:10+00:00", + "content": "

The newly elected speaker also tells Sean Hannity that the House might impeach Joe Biden but he likely will not pursue expelling Rep George Santos (R-NY)

", + "contentSnippet": "The newly elected speaker also tells Sean Hannity that the House might impeach Joe Biden but he likely will not pursue expelling Rep George Santos (R-NY)", + "guid": "b2437161", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-10-27T14:51:10.000Z" + }, + { + "creator": "Matt Mathers", + "date": "2023-10-27T14:45:33+00:00", + "title": "Separatist lined up to be Putin\u2019s puppet leader in Ukraine \u2018is shot in Crimea home\u2019", + "link": "https://www.independent.co.uk/news/world/europe/oleg-tsaryov-shot-ukraine-crimea-b2437109.html", + "pubDate": "Fri, 27 Oct 2023 14:45:33 GMT", + "dc:creator": "Matt Mathers", + "dc:date": "2023-10-27T14:45:33+00:00", + "content": "

Pro-Russian former politician fighting for life in intensive care, official says

", + "contentSnippet": "Pro-Russian former politician fighting for life in intensive care, official says", + "guid": "b2437109", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T14:45:33.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-10-27T14:43:52+00:00", + "title": "Ken Bruce urges people to listen to autistic community as he is made an MBE", + "link": "https://www.independent.co.uk/news/uk/ken-bruce-scottish-buckingham-palace-rajar-one-b2437213.html", + "pubDate": "Fri, 27 Oct 2023 14:43:52 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-10-27T14:43:52+00:00", + "content": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", + "contentSnippet": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", + "guid": "b2437213", + "categories": ["UK"], + "isoDate": "2023-10-27T14:43:52.000Z" + }, + { + "creator": "Mike MacEacheran", + "date": "2023-10-27T14:43:04+00:00", + "title": "Abu Dhabi guide: where to sightsee, stay and eat in the UAE capital", + "link": "https://www.independent.co.uk/travel/north-africa-middle-east/uae/abu-dhabi/abu-dhabi-guide-where-to-stay-play-eat-and-drink-in-the-uae-capital-b2436909.html", + "pubDate": "Fri, 27 Oct 2023 14:43:04 GMT", + "dc:creator": "Mike MacEacheran", + "dc:date": "2023-10-27T14:43:04+00:00", + "content": "

With its mix of heritage, pomp and oil-rich circumstance, the UAE capital inspires a particular kind of devotion, says Mike MacEacheran

", + "contentSnippet": "With its mix of heritage, pomp and oil-rich circumstance, the UAE capital inspires a particular kind of devotion, says Mike MacEacheran", + "guid": "b2436909", + "categories": [ + "Abu Dhabi", + "UAE", + "North Africa & Middle East", + "Travel" + ], + "isoDate": "2023-10-27T14:43:04.000Z" + }, + { + "creator": "Luke Baker", + "date": "2023-10-27T14:41:35+00:00", + "title": "Pakistan vs South Africa LIVE: Cricket score and World Cup updates", + "link": "https://www.independent.co.uk/sport/cricket/pakistan-south-africa-live-stream-score-updates-b2436979.html", + "pubDate": "Fri, 27 Oct 2023 14:41:35 GMT", + "dc:creator": "Luke Baker", + "dc:date": "2023-10-27T14:41:35+00:00", + "content": "Follow all the action from M.A. Chidambaram Stadium", + "contentSnippet": "Follow all the action from M.A. Chidambaram Stadium", + "guid": "b2436979", + "categories": ["Cricket", "Sport"], + "isoDate": "2023-10-27T14:41:35.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-10-27T14:41:00+00:00", + "title": "Will Smith tells Jada she\u2019s \u2018taken a lot of bullets\u2019 for their relationship", + "link": "https://www.independent.co.uk/tv/culture/will-smith-jada-pinkett-marriage-relationship-video-b2437186.html", + "pubDate": "Fri, 27 Oct 2023 14:41:00 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-10-27T14:41:00+00:00", + "content": "

Will Smith has told his wife Jada that she has \u201ctaken a lot of bullets\u201d for them during their relationship.

", + "contentSnippet": "Will Smith has told his wife Jada that she has \u201ctaken a lot of bullets\u201d for them during their relationship.", + "guid": "b2437186", + "categories": ["Culture", "Indy TV"], + "isoDate": "2023-10-27T14:41:00.000Z" + }, + { + "creator": "David Charlesworth", + "date": "2023-10-27T14:36:50+00:00", + "title": "Pep Guardiola condemns Manchester City fans who chanted about Sir Bobby Charlton", + "link": "https://www.independent.co.uk/sport/football/pep-guardiola-bobby-charlton-manchester-united-manchester-city-charlton-b2437208.html", + "pubDate": "Fri, 27 Oct 2023 14:36:50 GMT", + "dc:creator": "David Charlesworth", + "dc:date": "2023-10-27T14:36:50+00:00", + "content": "Two people, both minors, chanted during City\u2019s match against Brighton last weekend, soon after the Manchester United great\u2019s death was announced.", + "contentSnippet": "Two people, both minors, chanted during City\u2019s match against Brighton last weekend, soon after the Manchester United great\u2019s death was announced.", + "guid": "b2437208", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T14:36:50.000Z" + }, + { + "creator": "Jack Rathborn", + "date": "2023-10-27T14:34:21+00:00", + "title": "Arsenal vs Sheffield United predicted lineups: Team news for Premier League fixture", + "link": "https://www.independent.co.uk/sport/football/arsenal-sheffield-united-predicted-lineups-team-news-b2437191.html", + "pubDate": "Fri, 27 Oct 2023 14:34:21 GMT", + "dc:creator": "Jack Rathborn", + "dc:date": "2023-10-27T14:34:21+00:00", + "content": "

Everything you need to know ahead of the Gunners\u2019 match against the Blades

", + "contentSnippet": "Everything you need to know ahead of the Gunners\u2019 match against the Blades", + "guid": "b2437191", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T14:34:21.000Z" + }, + { + "creator": "Adam Forrest", + "date": "2023-10-27T14:33:37+00:00", + "title": "Boris Johnson and Dominic Cummings sent \u2018disgusting and misogynistic\u2019 WhatsApps, George Osborne claims", + "link": "https://www.independent.co.uk/news/uk/politics/boris-johnson-cummings-whatsapp-covid-b2437013.html", + "pubDate": "Fri, 27 Oct 2023 14:33:37 GMT", + "dc:creator": "Adam Forrest", + "dc:date": "2023-10-27T14:33:37+00:00", + "content": "

George Osborne says \u2018shocking\u2019 and \u2018staggering\u2019 messages will soon be shared at public inquiry

", + "contentSnippet": "George Osborne says \u2018shocking\u2019 and \u2018staggering\u2019 messages will soon be shared at public inquiry", + "guid": "b2437013", + "categories": ["UK Politics", "UK"], + "isoDate": "2023-10-27T14:33:37.000Z" + }, + { + "creator": "Sonia Twigg", + "date": "2023-10-27T14:27:31+00:00", + "title": "Mary Earps reveals difficulties with fan relationship following rise of women\u2019s football", + "link": "https://www.independent.co.uk/sport/football/mary-earps-england-lionesses-manchester-united-b2437193.html", + "pubDate": "Fri, 27 Oct 2023 14:27:31 GMT", + "dc:creator": "Sonia Twigg", + "dc:date": "2023-10-27T14:27:31+00:00", + "content": "

Earps has also discussed her shirt selling out after Nike belatedly decided to release a limited number following the Lionesses\u2019 success at the World Cup

", + "contentSnippet": "Earps has also discussed her shirt selling out after Nike belatedly decided to release a limited number following the Lionesses\u2019 success at the World Cup", + "guid": "b2437193", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T14:27:31.000Z" + }, + { + "creator": "Mark Mann-Bryans", + "date": "2023-10-27T14:26:20+00:00", + "title": "Mikel Arteta calls for increased squad sizes as Arsenal suffer fresh injury blow", + "link": "https://www.independent.co.uk/sport/football/mikel-arteta-arsenal-thomas-partey-premier-league-martin-odegaard-b2437195.html", + "pubDate": "Fri, 27 Oct 2023 14:26:20 GMT", + "dc:creator": "Mark Mann-Bryans", + "dc:date": "2023-10-27T14:26:20+00:00", + "content": "

Gabriel Jesus and Thomas Partey are both facing a spell on the sidelines

", + "contentSnippet": "Gabriel Jesus and Thomas Partey are both facing a spell on the sidelines", + "guid": "b2437195", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T14:26:20.000Z" + }, + { + "creator": "Jamel Smith", + "date": "2023-10-27T14:25:53+00:00", + "title": "Son of Hamas hostage says Palestinian protests \u2018celebrated his pain\u2019", + "link": "https://www.independent.co.uk/news/uk/north-london-hamas-palestinian-british-life-b2437204.html", + "pubDate": "Fri, 27 Oct 2023 14:25:53 GMT", + "dc:creator": "Jamel Smith", + "dc:date": "2023-10-27T14:25:53+00:00", + "content": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", + "contentSnippet": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", + "guid": "b2437204", + "categories": ["UK"], + "isoDate": "2023-10-27T14:25:53.000Z" + }, + { + "creator": "Ken Sweet and Larry Neumeister", + "date": "2023-10-27T14:21:44+00:00", + "title": "FTX founder Sam Bankman-Fried testifies at his fraud trial", + "link": "https://www.independent.co.uk/news/sam-bankmanfried-ap-ftx-new-york-california-b2437206.html", + "pubDate": "Fri, 27 Oct 2023 14:21:44 GMT", + "dc:creator": "Ken Sweet and Larry Neumeister", + "dc:date": "2023-10-27T14:21:44+00:00", + "content": "FTX founder Sam Bankman-Fried has begun testifying at his fraud trial, saying the innovative business he hoped would move the cryptocurrency ecosystem forward ended up doing the opposite and customers were hurt", + "contentSnippet": "FTX founder Sam Bankman-Fried has begun testifying at his fraud trial, saying the innovative business he hoped would move the cryptocurrency ecosystem forward ended up doing the opposite and customers were hurt", + "guid": "b2437206", + "isoDate": "2023-10-27T14:21:44.000Z" + }, + { + "creator": "Ariana Baio", + "date": "2023-10-27T14:21:04+00:00", + "title": "Maine rep reverses stance on assault weapons ban after mass shooting", + "link": "https://www.the-independent.com/news/world/americas/us-politics/jared-golden-assault-weapon-maine-shooting-b2437177.html", + "pubDate": "Fri, 27 Oct 2023 14:21:04 GMT", + "dc:creator": "Ariana Baio", + "dc:date": "2023-10-27T14:21:04+00:00", + "content": "

Rep Jared Golden voted against legislation to ban assault weapons last July

", + "contentSnippet": "Rep Jared Golden voted against legislation to ban assault weapons last July", + "guid": "b2437177", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-10-27T14:21:04.000Z" + }, + { + "creator": "Jake Coyle", + "date": "2023-10-27T14:20:24+00:00", + "title": "The strike has dimmed the spotlight on the fall's best performances. Here's 13 you shouldn't miss", + "link": "https://www.independent.co.uk/news/ap-paul-giamatti-annette-bening-jamie-foxx-eve-hewson-b2437205.html", + "pubDate": "Fri, 27 Oct 2023 14:20:24 GMT", + "dc:creator": "Jake Coyle", + "dc:date": "2023-10-27T14:20:24+00:00", + "content": "One of the many impacts of Hollywood's lengthy actors strike has been that most performers haven't been able to promote their work", + "contentSnippet": "One of the many impacts of Hollywood's lengthy actors strike has been that most performers haven't been able to promote their work", + "guid": "b2437205", + "isoDate": "2023-10-27T14:20:24.000Z" + }, + { + "creator": "Bruce Schreiner", + "date": "2023-10-27T14:20:03+00:00", + "title": "In the Kentucky governor's race, the gun policy debate is both personal and political", + "link": "https://www.independent.co.uk/news/andy-beshear-ap-kentucky-daniel-cameron-louisville-b2437203.html", + "pubDate": "Fri, 27 Oct 2023 14:20:03 GMT", + "dc:creator": "Bruce Schreiner", + "dc:date": "2023-10-27T14:20:03+00:00", + "content": "Kentucky Gov. Andy Beshear was struck by tragedy when one of his closest friends died in a mass shooting", + "contentSnippet": "Kentucky Gov. Andy Beshear was struck by tragedy when one of his closest friends died in a mass shooting", + "guid": "b2437203", + "isoDate": "2023-10-27T14:20:03.000Z" + }, + { + "creator": "Rachel Sharp,Andrea Blanco and Andrea Cavallier", + "date": "2023-10-27T14:18:59+00:00", + "title": "Bryan Kohberger update: Idaho murders judge makes key camera ruling as dismissal bid tossed ", + "link": "https://www.independent.co.uk/news/world/americas/bryan-kohberger-court-idaho-murders-update-b2437001.html", + "pubDate": "Fri, 27 Oct 2023 14:18:59 GMT", + "dc:creator": "Rachel Sharp,Andrea Blanco and Andrea Cavallier", + "dc:date": "2023-10-27T14:18:59+00:00", + "content": "

Bryan Kohberger appeared at Latah County Court for two hearings on Thursday

", + "contentSnippet": "Bryan Kohberger appeared at Latah County Court for two hearings on Thursday", + "guid": "b2437001", + "categories": ["Americas", "World"], + "isoDate": "2023-10-27T14:18:59.000Z" + }, + { + "creator": "Olivia Petter", + "date": "2023-10-27T14:15:49+00:00", + "title": "Tyson Fury reveals why he missed the birth of his seventh child", + "link": "https://www.independent.co.uk/life-style/tyson-fury-children-names-prince-birth-b2437174.html", + "pubDate": "Fri, 27 Oct 2023 14:15:49 GMT", + "dc:creator": "Olivia Petter", + "dc:date": "2023-10-27T14:15:49+00:00", + "content": "

\u2018Daddy has to do what Daddy has to do,\u2019 says the 35-year-old boxer

", + "contentSnippet": "\u2018Daddy has to do what Daddy has to do,\u2019 says the 35-year-old boxer", + "guid": "b2437174", + "categories": ["Lifestyle"], + "isoDate": "2023-10-27T14:15:49.000Z" + }, + { + "creator": "Gustaf Kilander", + "date": "2023-10-27T14:15:19+00:00", + "title": "Six more of Trump\u2019s Georgia co-defendants may be looking at plea deals", + "link": "https://www.the-independent.com/news/world/americas/us-politics/donald-trump-georgia-plea-deals-b2437140.html", + "pubDate": "Fri, 27 Oct 2023 14:15:19 GMT", + "dc:creator": "Gustaf Kilander", + "dc:date": "2023-10-27T14:15:19+00:00", + "content": "

Prosecutors are attempting to have defendants \u2018as witnesses as opposed to adversaries,\u2019 former DA says

", + "contentSnippet": "Prosecutors are attempting to have defendants \u2018as witnesses as opposed to adversaries,\u2019 former DA says", + "guid": "b2437140", + "categories": ["US politics", "Americas", "World"], + "isoDate": "2023-10-27T14:15:19.000Z" + }, + { + "creator": "Alexander Butler and Maira Butt", + "date": "2023-10-27T14:14:15+00:00", + "title": "Ukraine-Russia war - live: Putin\u2019s troops \u2018executed for retreating\u2019 as Moscow \u2018loses entire brigade\u2019 in Avdiivka", + "link": "https://www.independent.co.uk/news/world/europe/russia-ukraine-war-losses-weapons-latest-b2436926.html", + "pubDate": "Fri, 27 Oct 2023 14:14:15 GMT", + "dc:creator": "Alexander Butler and Maira Butt", + "dc:date": "2023-10-27T14:14:15+00:00", + "content": "

The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said

", + "contentSnippet": "The Russian Army has suffered over 400 casualties a day in a drive to take the city of Avdiivka, Kyiv said", + "guid": "b2436926", + "categories": ["Europe", "World"], + "isoDate": "2023-10-27T14:14:15.000Z" + }, + { + "creator": "Vix Leyton", + "date": "2023-10-27T14:08:35+00:00", + "title": "Voices: Like Hasan Minhaj, I exaggerate funny stories for effect \u2013 who doesn\u2019t?", + "link": "https://www.independent.co.uk/voices/hasan-minhaj-comedy-new-yorker-daily-show-b2437142.html", + "pubDate": "Fri, 27 Oct 2023 14:08:35 GMT", + "dc:creator": "Vix Leyton", + "dc:date": "2023-10-27T14:08:35+00:00", + "content": "

Should a stand-up be held to account for fabricating elements of the stories they tell on stage? Comedian Vix Leyton explains why embellishing anecdotes is just a part of human nature

", + "contentSnippet": "Should a stand-up be held to account for fabricating elements of the stories they tell on stage? Comedian Vix Leyton explains why embellishing anecdotes is just a part of human nature", + "guid": "b2437142", + "categories": ["Voices"], + "isoDate": "2023-10-27T14:08:35.000Z" + }, + { + "creator": "Duncan Bech", + "date": "2023-10-27T14:05:57+00:00", + "title": "South Africa out to inspire new generation in World Cup final against All Blacks", + "link": "https://www.independent.co.uk/sport/rugby/rugby-union/south-africa-all-blacks-springboks-england-stade-de-france-b2437163.html", + "pubDate": "Fri, 27 Oct 2023 14:05:57 GMT", + "dc:creator": "Duncan Bech", + "dc:date": "2023-10-27T14:05:57+00:00", + "content": "The winner will be crowned the most successful nation in the tournament\u2019s history.", + "contentSnippet": "The winner will be crowned the most successful nation in the tournament\u2019s history.", + "guid": "b2437163", + "categories": ["Rugby Union", "Rugby", "Sport"], + "isoDate": "2023-10-27T14:05:57.000Z" + }, + { + "creator": "Pa Sport Staff", + "date": "2023-10-27T14:03:46+00:00", + "title": "England\u2019s woes at World Cup down to lack of preparation \u2013 Sir Geoffrey Boycott", + "link": "https://www.independent.co.uk/sport/cricket/geoffrey-boycott-jos-buttler-england-india-matthew-mott-b2437050.html", + "pubDate": "Fri, 27 Oct 2023 14:03:46 GMT", + "dc:creator": "Pa Sport Staff", + "dc:date": "2023-10-27T14:03:46+00:00", + "content": "Head coach Matthew Mott has written off England\u2019s chances after four defeats in five games in India.", + "contentSnippet": "Head coach Matthew Mott has written off England\u2019s chances after four defeats in five games in India.", + "guid": "b2437050", + "categories": ["Cricket", "Sport"], + "isoDate": "2023-10-27T14:03:46.000Z" + }, + { + "creator": "Tony Jones", + "date": "2023-10-27T14:00:05+00:00", + "title": "Leopards feature in latest edition of acclaimed wildlife photobook series", + "link": "https://www.independent.co.uk/climate-change/news/ricky-gervais-african-russell-crowe-botswana-photographers-b2437192.html", + "pubDate": "Fri, 27 Oct 2023 14:00:05 GMT", + "dc:creator": "Tony Jones", + "dc:date": "2023-10-27T14:00:05+00:00", + "content": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", + "contentSnippet": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", + "guid": "b2437192", + "categories": ["News", "Climate"], + "isoDate": "2023-10-27T14:00:05.000Z" + }, + { + "creator": "Ted Hennessey", + "date": "2023-10-27T13:59:49+00:00", + "title": "Counter-terror police searching for women with images of Hamas paragliders", + "link": "https://www.independent.co.uk/news/uk/hamas-israel-metropolitan-police-whitehall-bond-street-b2437170.html", + "pubDate": "Fri, 27 Oct 2023 13:59:49 GMT", + "dc:creator": "Ted Hennessey", + "dc:date": "2023-10-27T13:59:49+00:00", + "content": "Hamas, which is classed as a terrorist organisation in the UK, used paragliders as part of its attack on Israel on October 7.", + "contentSnippet": "Hamas, which is classed as a terrorist organisation in the UK, used paragliders as part of its attack on Israel on October 7.", + "guid": "b2437170", + "categories": ["UK"], + "isoDate": "2023-10-27T13:59:49.000Z" + }, + { + "creator": "Barney Davis", + "date": "2023-10-27T13:57:25+00:00", + "title": "Anti-terror police appeal to find London protesters with pictures of Hamas hangliders", + "link": "https://www.independent.co.uk/news/uk/crime/palestine-march-london-police-hamas-b2437167.html", + "pubDate": "Fri, 27 Oct 2023 13:57:25 GMT", + "dc:creator": "Barney Davis", + "dc:date": "2023-10-27T13:57:25+00:00", + "content": "

Police are searching for four people suspected of displaying support for Hamas among the thousands that joined the marches

", + "contentSnippet": "Police are searching for four people suspected of displaying support for Hamas among the thousands that joined the marches", + "guid": "b2437167", + "categories": ["Crime", "UK"], + "isoDate": "2023-10-27T13:57:25.000Z" + }, + { + "creator": "Michael Jones", + "date": "2023-10-27T13:56:34+00:00", + "title": "Ballon d\u2019Or shortlist: Who are the nominees for 2023 award?", + "link": "https://www.independent.co.uk/sport/football/ballon-d-or-shortlist-lionel-messi-erling-haaland-b2435911.html", + "pubDate": "Fri, 27 Oct 2023 13:56:34 GMT", + "dc:creator": "Michael Jones", + "dc:date": "2023-10-27T13:56:34+00:00", + "content": "

Everything you need to know ahead of the awards ceremony

", + "contentSnippet": "Everything you need to know ahead of the awards ceremony", + "guid": "b2435911", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T13:56:34.000Z" + }, + { + "creator": "Michael Jones", + "date": "2023-10-27T13:56:32+00:00", + "title": "When is the Ballon d\u2019Or? Date, time and how to watch ", + "link": "https://www.independent.co.uk/sport/football/ballon-d-or-time-tv-channel-live-stream-b2435861.html", + "pubDate": "Fri, 27 Oct 2023 13:56:32 GMT", + "dc:creator": "Michael Jones", + "dc:date": "2023-10-27T13:56:32+00:00", + "content": "

Everything you need to know ahead of the presentation ceremony

", + "contentSnippet": "Everything you need to know ahead of the presentation ceremony", + "guid": "b2435861", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T13:56:32.000Z" + }, + { + "creator": "Lucy Leeson", + "date": "2023-10-27T13:55:21+00:00", + "title": "Watch live: Maine shooting latest as police give update in hunt for suspect Robert Card", + "link": "https://www.independent.co.uk/news/maine-shooting-police-press-conference-robert-card-b2437188.html", + "pubDate": "Fri, 27 Oct 2023 13:55:21 GMT", + "dc:creator": "Lucy Leeson", + "dc:date": "2023-10-27T13:55:21+00:00", + "content": "

Watch live as Maine State Police hold a news conference at Lewiston City Hall to discuss the mass shooting and manhunt in Lewiston on Friday (27 October).

", + "contentSnippet": "Watch live as Maine State Police hold a news conference at Lewiston City Hall to discuss the mass shooting and manhunt in Lewiston on Friday (27 October).", + "guid": "b2437188", + "isoDate": "2023-10-27T13:55:21.000Z" + }, + { + "creator": "Sam Blewett", + "date": "2023-10-27T13:48:01+00:00", + "title": "Khan and Sarwar demand Israel-Hamas ceasefire, adding to pressure on Starmer", + "link": "https://www.independent.co.uk/news/uk/sadiq-khan-israel-gaza-muslim-mayor-b2437165.html", + "pubDate": "Fri, 27 Oct 2023 13:48:01 GMT", + "dc:creator": "Sam Blewett", + "dc:date": "2023-10-27T13:48:01+00:00", + "content": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", + "contentSnippet": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", + "guid": "b2437165", + "categories": ["UK"], + "isoDate": "2023-10-27T13:48:01.000Z" + } +] diff --git a/intro to react/newData/oldNews/d47110dcb0871630efe0e4685f53c54c0681dc8085ab193f50982deb6ac096f0.json b/intro to react/newData/oldNews/d47110dcb0871630efe0e4685f53c54c0681dc8085ab193f50982deb6ac096f0.json index e5e5d54..0243ab9 100644 --- a/intro to react/newData/oldNews/d47110dcb0871630efe0e4685f53c54c0681dc8085ab193f50982deb6ac096f0.json +++ b/intro to react/newData/oldNews/d47110dcb0871630efe0e4685f53c54c0681dc8085ab193f50982deb6ac096f0.json @@ -1,2968 +1,2968 @@ [ - { - "title": "Wales should keep free school meals in Christmas holidays, says mum", - "link": "https://www.bbc.co.uk/news/uk-wales-67578085?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 22:59:03 GMT", - "content": "Mum-of-two Lisa says free school meals \"should have carried on\" throughout the holidays.", - "contentSnippet": "Mum-of-two Lisa says free school meals \"should have carried on\" throughout the holidays.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67578085", - "isoDate": "2023-11-30T22:59:03.000Z" - }, - { - "title": "Shane MacGowan: Pogues singer dies aged 65", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67546785?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 22:07:17 GMT", - "content": "The Irish singer-songwriter, whose hits include Fairytale of New York, was unwell for some time.", - "contentSnippet": "The Irish singer-songwriter, whose hits include Fairytale of New York, was unwell for some time.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67546785", - "isoDate": "2023-11-30T22:07:17.000Z" - }, - { - "title": "Brighton & Hove Albion fans\u2019 European joy cut short by tear gas", - "link": "https://www.bbc.co.uk/news/uk-england-sussex-67582415?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 21:56:20 GMT", - "content": "Brighton book their spot in the knockout phase of the Europa League by beating AEK Athens.", - "contentSnippet": "Brighton book their spot in the knockout phase of the Europa League by beating AEK Athens.", - "guid": "https://www.bbc.co.uk/news/uk-england-sussex-67582415", - "isoDate": "2023-11-30T21:56:20.000Z" - }, - { - "title": "Pontins closes Prestatyn and Camber Sands holiday parks", - "link": "https://www.bbc.co.uk/news/uk-wales-67578045?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 21:52:07 GMT", - "content": "The company says the Prestatyn site will close straight away, and apologises to customers.", - "contentSnippet": "The company says the Prestatyn site will close straight away, and apologises to customers.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67578045", - "isoDate": "2023-11-30T21:52:07.000Z" - }, - { - "title": "Police injured as objects thrown at officers outside Villa Park", - "link": "https://www.bbc.co.uk/news/uk-england-birmingham-67585147?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 21:40:23 GMT", - "content": "Aston Villa confirms that no Legia Warsaw fans were let into the stadium following the disorder.", - "contentSnippet": "Aston Villa confirms that no Legia Warsaw fans were let into the stadium following the disorder.", - "guid": "https://www.bbc.co.uk/news/uk-england-birmingham-67585147", - "isoDate": "2023-11-30T21:40:23.000Z" - }, - { - "title": "Government intervenes in Abu Dhabi's bid to buy Telegraph", - "link": "https://www.bbc.co.uk/news/business-67583166?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 20:55:35 GMT", - "content": "The UK will take a closer look at the sale of the Telegraph to Gulf investors.", - "contentSnippet": "The UK will take a closer look at the sale of the Telegraph to Gulf investors.", - "guid": "https://www.bbc.co.uk/news/business-67583166", - "isoDate": "2023-11-30T20:55:35.000Z" - }, - { - "title": "Covid inquiry: Lockdown should have been three weeks earlier - Hancock", - "link": "https://www.bbc.co.uk/news/uk-politics-67576784?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 20:24:46 GMT", - "content": "The ex-health secretary also said a \"toxic culture\", driven by Dominic Cummings, hindered the Covid response.", - "contentSnippet": "The ex-health secretary also said a \"toxic culture\", driven by Dominic Cummings, hindered the Covid response.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67576784", - "isoDate": "2023-11-30T20:24:46.000Z" - }, - { - "title": "Sacked S4C boss Sian Doyle slams chairman in government letter", - "link": "https://www.bbc.co.uk/news/uk-wales-67579782?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 19:14:47 GMT", - "content": "Sian Doyle writes to the culture secretary criticising S4C chairman Rhodri Williams's behaviour.", - "contentSnippet": "Sian Doyle writes to the culture secretary criticising S4C chairman Rhodri Williams's behaviour.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67579782", - "isoDate": "2023-11-30T19:14:47.000Z" - }, - { - "title": "Met Police officer cleared after Tasering girl, 10", - "link": "https://www.bbc.co.uk/news/uk-england-london-67576994?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 19:00:08 GMT", - "content": "A girl who threatened her mother with garden shears was Tasered twice by PC Jonathan Broadhead.", - "contentSnippet": "A girl who threatened her mother with garden shears was Tasered twice by PC Jonathan Broadhead.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67576994", - "isoDate": "2023-11-30T19:00:08.000Z" - }, - { - "title": "Kidnappers found guilty of killing DJ in empty bar", - "link": "https://www.bbc.co.uk/news/uk-england-london-67579208?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 18:37:31 GMT", - "content": "Mehmet Koray Alpergin was killed in an empty bar near Tottenham Hotspur Stadium on 13 October 2022.", - "contentSnippet": "Mehmet Koray Alpergin was killed in an empty bar near Tottenham Hotspur Stadium on 13 October 2022.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67579208", - "isoDate": "2023-11-30T18:37:31.000Z" - }, - { - "title": "UK cold weather persists with sub-zero nights to come", - "link": "https://www.bbc.co.uk/news/uk-67575474?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 18:16:14 GMT", - "content": "More bitterly cold conditions are on the way, while snow and ice warnings remain in place for many.", - "contentSnippet": "More bitterly cold conditions are on the way, while snow and ice warnings remain in place for many.", - "guid": "https://www.bbc.co.uk/news/uk-67575474", - "isoDate": "2023-11-30T18:16:14.000Z" - }, - { - "title": "RuPaul's Drag Race UK: North East queens fighting for crown", - "link": "https://www.bbc.co.uk/news/uk-england-tyne-67571912?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 17:15:10 GMT", - "content": "The winner of RuPaul's Drag Race UK will be crowned tonight, with all three finalists from the region.", - "contentSnippet": "The winner of RuPaul's Drag Race UK will be crowned tonight, with all three finalists from the region.", - "guid": "https://www.bbc.co.uk/news/uk-england-tyne-67571912", - "isoDate": "2023-11-30T17:15:10.000Z" - }, - { - "title": "Freezing days and nights ahead in UK cold snap", - "link": "https://www.bbc.co.uk/weather/features/67580442?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 17:06:44 GMT", - "content": "It is very cold at the moment in the UK, but is it going to get colder? And when can we expect the switch to something milder?", - "contentSnippet": "It is very cold at the moment in the UK, but is it going to get colder? And when can we expect the switch to something milder?", - "guid": "https://www.bbc.co.uk/weather/features/67580442", - "isoDate": "2023-11-30T17:06:44.000Z" - }, - { - "title": "Joey Barton's comments 'trivialise race murder'", - "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67582077?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 16:57:43 GMT", - "content": "The ex-footballer is criticised for saying his brother lost 17 years of his life for murdering Anthony Walker.", - "contentSnippet": "The ex-footballer is criticised for saying his brother lost 17 years of his life for murdering Anthony Walker.", - "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67582077", - "isoDate": "2023-11-30T16:57:43.000Z" - }, - { - "title": "Man charged over death at slapping therapy workshop", - "link": "https://www.bbc.co.uk/news/uk-england-wiltshire-67580439?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 16:52:29 GMT", - "content": "A 71-year-old from the United States is charged with manslaughter by gross negligence.", - "contentSnippet": "A 71-year-old from the United States is charged with manslaughter by gross negligence.", - "guid": "https://www.bbc.co.uk/news/uk-england-wiltshire-67580439", - "isoDate": "2023-11-30T16:52:29.000Z" - }, - { - "title": "Alistair Darling: 'Serious, discreet and driven by fairness'", - "link": "https://www.bbc.co.uk/news/uk-scotland-67581555?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 16:30:07 GMT", - "content": "Alistair Darling's sober demeanour and cautious approach brought him great political success.", - "contentSnippet": "Alistair Darling's sober demeanour and cautious approach brought him great political success.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67581555", - "isoDate": "2023-11-30T16:30:07.000Z" - }, - { - "title": "Brianna Ghey: Dog walker's 999 call about teenager played to jury", - "link": "https://www.bbc.co.uk/news/uk-england-manchester-67576400?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 16:22:07 GMT", - "content": "A dog walker who found Brianna Ghey told a 999 operator help needed to come \"quickly\", a court hears.", - "contentSnippet": "A dog walker who found Brianna Ghey told a 999 operator help needed to come \"quickly\", a court hears.", - "guid": "https://www.bbc.co.uk/news/uk-england-manchester-67576400", - "isoDate": "2023-11-30T16:22:07.000Z" - }, - { - "title": "Pressure grows for ban on new leasehold flats", - "link": "https://www.bbc.co.uk/news/uk-politics-67579695?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 16:11:24 GMT", - "content": "The government is planning to reform the system - but there are calls to scrap it entirely.", - "contentSnippet": "The government is planning to reform the system - but there are calls to scrap it entirely.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67579695", - "isoDate": "2023-11-30T16:11:24.000Z" - }, - { - "title": "Former Chancellor Alistair Darling dies aged 70", - "link": "https://www.bbc.co.uk/news/uk-67578993?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 15:39:30 GMT", - "content": "Tributes from all sides to former Labour chancellor who steered the UK through 2008's economic crisis.", - "contentSnippet": "Tributes from all sides to former Labour chancellor who steered the UK through 2008's economic crisis.", - "guid": "https://www.bbc.co.uk/news/uk-67578993", - "isoDate": "2023-11-30T15:39:30.000Z" - }, - { - "title": "Essex lorry deaths: Caolan Gormley jailed for trafficking offence", - "link": "https://www.bbc.co.uk/news/uk-england-essex-67580615?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 15:33:11 GMT", - "content": "Caolan Gormley will spend up to seven years behind bars after being sentenced at the Old Bailey.", - "contentSnippet": "Caolan Gormley will spend up to seven years behind bars after being sentenced at the Old Bailey.", - "guid": "https://www.bbc.co.uk/news/uk-england-essex-67580615", - "isoDate": "2023-11-30T15:33:11.000Z" - }, - { - "title": "Alfie Phillips murder: Mother and partner guilty of killing toddler", - "link": "https://www.bbc.co.uk/news/uk-england-kent-67512544?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 15:25:16 GMT", - "content": "Sian Hedges and her ex-partner Jack Benham used \"violent discipline\" on her son, Alfie Phillips.", - "contentSnippet": "Sian Hedges and her ex-partner Jack Benham used \"violent discipline\" on her son, Alfie Phillips.", - "guid": "https://www.bbc.co.uk/news/uk-england-kent-67512544", - "isoDate": "2023-11-30T15:25:16.000Z" - }, - { - "title": "Gordon Brown: Alistair Darling 'showed great wisdom in everything he did'", - "link": "https://www.bbc.co.uk/news/uk-politics-67578940?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 14:54:08 GMT", - "content": "Alistair Darling was the \"obvious choice\" to be the chancellor says former PM Gordon Brown on appointing him.", - "contentSnippet": "Alistair Darling was the \"obvious choice\" to be the chancellor says former PM Gordon Brown on appointing him.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67578940", - "isoDate": "2023-11-30T14:54:08.000Z" - }, - { - "title": "Byron Burgers death: Father awaits food allergy decision after son's death", - "link": "https://www.bbc.co.uk/news/uk-england-sussex-67555060?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 14:40:35 GMT", - "content": "Owen Carey's father believes his son would still be alive if the word 'milk' was written on a menu.", - "contentSnippet": "Owen Carey's father believes his son would still be alive if the word 'milk' was written on a menu.", - "guid": "https://www.bbc.co.uk/news/uk-england-sussex-67555060", - "isoDate": "2023-11-30T14:40:35.000Z" - }, - { - "title": "Just Stop Oil: 16 protesters arrested outside Rishi Sunak's London home", - "link": "https://www.bbc.co.uk/news/uk-67573852?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 14:09:07 GMT", - "content": "The group stage a noisy demonstration outside Rishi Sunak's west London property on Wednesday night.", - "contentSnippet": "The group stage a noisy demonstration outside Rishi Sunak's west London property on Wednesday night.", - "guid": "https://www.bbc.co.uk/news/uk-67573852", - "isoDate": "2023-11-30T14:09:07.000Z" - }, - { - "title": "Train strikes: RMT vote ends industrial action until at least spring", - "link": "https://www.bbc.co.uk/news/business-67577683?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 14:02:20 GMT", - "content": "Rail workers have voted to accept a pay deal, ending their involvement in a long-running series of strikes.", - "contentSnippet": "Rail workers have voted to accept a pay deal, ending their involvement in a long-running series of strikes.", - "guid": "https://www.bbc.co.uk/news/business-67577683", - "isoDate": "2023-11-30T14:02:20.000Z" - }, - { - "title": "MacGowan: Fairytale of New York is our Bohemian Rhapsody", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67579434?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 13:40:23 GMT", - "content": "The Pogues frontman said the hit song made him depressed after Kirsty MacColl died.", - "contentSnippet": "The Pogues frontman said the hit song made him depressed after Kirsty MacColl died.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67579434", - "isoDate": "2023-11-30T13:40:23.000Z" - }, - { - "title": "When are the rail strikes in December?", - "link": "https://www.bbc.co.uk/news/business-61634959?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 13:25:29 GMT", - "content": "Train drivers have announced further walkouts in a long-running dispute about pay and conditions.", - "contentSnippet": "Train drivers have announced further walkouts in a long-running dispute about pay and conditions.", - "guid": "https://www.bbc.co.uk/news/business-61634959", - "isoDate": "2023-11-30T13:25:29.000Z" - }, - { - "title": "Alex Salmond launches new Scottish independence plan", - "link": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67577783?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 13:02:18 GMT", - "content": "The former first minister wants to hold a referendum on the 10th anniversary of the 2014 ballot.", - "contentSnippet": "The former first minister wants to hold a referendum on the 10th anniversary of the 2014 ballot.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67577783", - "isoDate": "2023-11-30T13:02:18.000Z" - }, - { - "title": "'Cummings caused toxic culture' - Matt Hancock", - "link": "https://www.bbc.co.uk/news/uk-67579719?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 12:56:58 GMT", - "content": "Dominic Cummings, who advised Boris Johnson, caused a toxic culture in government, Matt Hancock says.", - "contentSnippet": "Dominic Cummings, who advised Boris Johnson, caused a toxic culture in government, Matt Hancock says.", - "guid": "https://www.bbc.co.uk/news/uk-67579719", - "isoDate": "2023-11-30T12:56:58.000Z" - }, - { - "title": "Premier League teams are playing footballers facing abuse claims", - "link": "https://www.bbc.co.uk/news/uk-67508310?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 12:33:25 GMT", - "content": "Alleged victims tell the BBC top clubs prioritise commercial interests over the safety of women.", - "contentSnippet": "Alleged victims tell the BBC top clubs prioritise commercial interests over the safety of women.", - "guid": "https://www.bbc.co.uk/news/uk-67508310", - "isoDate": "2023-11-30T12:33:25.000Z" - }, - { - "title": "Omid Scobie book: How could the royal naming mistake happen?", - "link": "https://www.bbc.co.uk/news/uk-67565898?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 12:17:41 GMT", - "content": "How did a Dutch translation appear to identify a member of the Royal Family in a race row?", - "contentSnippet": "How did a Dutch translation appear to identify a member of the Royal Family in a race row?", - "guid": "https://www.bbc.co.uk/news/uk-67565898", - "isoDate": "2023-11-30T12:17:41.000Z" - }, - { - "title": "Norovirus: Winter vomiting virus cases rising", - "link": "https://www.bbc.co.uk/news/health-67576301?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 11:43:33 GMT", - "content": "Hundreds of people are now in hospital with norovirus, the latest NHS England figures show.", - "contentSnippet": "Hundreds of people are now in hospital with norovirus, the latest NHS England figures show.", - "guid": "https://www.bbc.co.uk/news/health-67576301", - "isoDate": "2023-11-30T11:43:33.000Z" - }, - { - "title": "Metro Bank to review seven-day opening and cut jobs", - "link": "https://www.bbc.co.uk/news/business-67575555?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 11:26:13 GMT", - "content": "The struggling lender is to cut a fifth of staff, and rival Lloyds announces more branch closures.", - "contentSnippet": "The struggling lender is to cut a fifth of staff, and rival Lloyds announces more branch closures.", - "guid": "https://www.bbc.co.uk/news/business-67575555", - "isoDate": "2023-11-30T11:26:13.000Z" - }, - { - "title": "Elfbar: Top vape firm drops sweet flavours over appeal to kids", - "link": "https://www.bbc.co.uk/news/business-67570973?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 10:32:15 GMT", - "content": "Elfbar and Lost Mary call for tighter restrictions on vape sales ahead of government clampdown.", - "contentSnippet": "Elfbar and Lost Mary call for tighter restrictions on vape sales ahead of government clampdown.", - "guid": "https://www.bbc.co.uk/news/business-67570973", - "isoDate": "2023-11-30T10:32:15.000Z" - }, - { - "title": "East 17: Terry Coldwell says reunion unlikely to happen", - "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67567158?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 06:48:11 GMT", - "content": "Next year is the 30th anniversary of the band's famous Christmas number one Stay Another Day", - "contentSnippet": "Next year is the 30th anniversary of the band's famous Christmas number one Stay Another Day", - "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67567158", - "isoDate": "2023-11-30T06:48:11.000Z" - }, - { - "title": "Scotch on the Rocks: The TV drama locked away for 50 years", - "link": "https://www.bbc.co.uk/news/uk-scotland-66889553?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 06:21:27 GMT", - "content": "The BBC Scotland drama Scotch on the Rocks was so contentious it has been locked away for 50 years.", - "contentSnippet": "The BBC Scotland drama Scotch on the Rocks was so contentious it has been locked away for 50 years.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-66889553", - "isoDate": "2023-11-30T06:21:27.000Z" - }, - { - "title": "'Rock star' pandas - not exactly a love story", - "link": "https://www.bbc.co.uk/news/uk-scotland-23856890?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 06:20:44 GMT", - "content": "They arrived like rock stars 12 years ago and their love life was the source of endless speculation.", - "contentSnippet": "They arrived like rock stars 12 years ago and their love life was the source of endless speculation.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-23856890", - "isoDate": "2023-11-30T06:20:44.000Z" - }, - { - "title": "Coal: UK's last opencast mine shuts after legal row", - "link": "https://www.bbc.co.uk/news/uk-wales-67564413?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 06:08:17 GMT", - "content": "Ffos-y-Fran mine is dubbed a \"neighbour from hell\" as authorities fear for the future of the site.", - "contentSnippet": "Ffos-y-Fran mine is dubbed a \"neighbour from hell\" as authorities fear for the future of the site.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67564413", - "isoDate": "2023-11-30T06:08:17.000Z" - }, - { - "title": "Watch: The Shard gets a Christmas makeover", - "link": "https://www.bbc.co.uk/news/uk-england-london-67560734?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 06:06:37 GMT", - "content": "See the preparation work that goes into getting The Shard sparkling for Christmas.", - "contentSnippet": "See the preparation work that goes into getting The Shard sparkling for Christmas.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67560734", - "isoDate": "2023-11-30T06:06:37.000Z" - }, - { - "title": "Newspaper headlines: 'Nightmare' at A&E and 'India murder plot'", - "link": "https://www.bbc.co.uk/news/blogs-the-papers-67573837?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 05:38:02 GMT", - "content": "Air pollution, Rwanda's agreement with the UK over migrants and events in Gaza also feature on the front pages of Thursday's newspapers.", - "contentSnippet": "Air pollution, Rwanda's agreement with the UK over migrants and events in Gaza also feature on the front pages of Thursday's newspapers.", - "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67573837", - "isoDate": "2023-11-30T05:38:02.000Z" - }, - { - "title": "Bristol Beacon: Former Colston Hall reopens after name change and \u00a3132m rebuild", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67518656?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 00:44:59 GMT", - "content": "Bristol's historic Colston Hall has been renamed and its renovation is way over schedule and budget.", - "contentSnippet": "Bristol's historic Colston Hall has been renamed and its renovation is way over schedule and budget.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67518656", - "isoDate": "2023-11-30T00:44:59.000Z" - }, - { - "title": "Why food discount stickers may be a thing of the past", - "link": "https://www.bbc.co.uk/news/business-67507932?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 00:01:29 GMT", - "content": "Supermarkets and other retailers are increasing switching to AI-powered digital price displays.", - "contentSnippet": "Supermarkets and other retailers are increasing switching to AI-powered digital price displays.", - "guid": "https://www.bbc.co.uk/news/business-67507932", - "isoDate": "2023-11-30T00:01:29.000Z" - }, - { - "title": "Bournemouth: Digger driver uses bucket to rescue colleague from sea", - "link": "https://www.bbc.co.uk/news/uk-67573319?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 29 Nov 2023 19:50:15 GMT", - "content": "The worker became stranded after his vehicle got stuck in the sand at Bournemouth beach.", - "contentSnippet": "The worker became stranded after his vehicle got stuck in the sand at Bournemouth beach.", - "guid": "https://www.bbc.co.uk/news/uk-67573319", - "isoDate": "2023-11-29T19:50:15.000Z" - }, - { - "title": "Fiance's shock at bride-to-be's walk down aisle at East Yorkshire wedding", - "link": "https://www.bbc.co.uk/news/uk-england-humber-67568551?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 29 Nov 2023 15:59:58 GMT", - "content": "Carrie Redhead, 27, was born with a rare digestive disorder which affects her mobility.", - "contentSnippet": "Carrie Redhead, 27, was born with a rare digestive disorder which affects her mobility.", - "guid": "https://www.bbc.co.uk/news/uk-england-humber-67568551", - "isoDate": "2023-11-29T15:59:58.000Z" - }, - { - "title": "Head teacher says autistic student died despite family's plea for support", - "link": "https://www.bbc.co.uk/news/uk-67526409?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 01:24:21 GMT", - "content": "Isaac Uzoegbu was hit by a car when he ran from home. His head teacher says it could have been prevented.", - "contentSnippet": "Isaac Uzoegbu was hit by a car when he ran from home. His head teacher says it could have been prevented.", - "guid": "https://www.bbc.co.uk/news/uk-67526409", - "isoDate": "2023-12-01T01:24:21.000Z" - }, - { - "title": "Beyonc\u00e9 tells fans (and Taylor Swift) to \"laugh and dance\" at Renaissance film premiere", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67581043?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 01:22:27 GMT", - "content": "The London premiere of Beyonc\u00e9's tour film included an special guest and a demand for dancing.", - "contentSnippet": "The London premiere of Beyonc\u00e9's tour film included an special guest and a demand for dancing.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67581043", - "isoDate": "2023-12-01T01:22:27.000Z" - }, - { - "title": "Endgame: Royal race row naming not publicity stunt, says author Omid Scobie", - "link": "https://www.bbc.co.uk/news/uk-67584565?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 01:12:39 GMT", - "content": "Omid Scobie denies in a BBC interview claims a version of his book deliberately identified two royals.", - "contentSnippet": "Omid Scobie denies in a BBC interview claims a version of his book deliberately identified two royals.", - "guid": "https://www.bbc.co.uk/news/uk-67584565", - "isoDate": "2023-12-01T01:12:39.000Z" - }, - { - "title": "Newspaper headlines: Royal book fallout and MacGowan tributes", - "link": "https://www.bbc.co.uk/news/blogs-the-papers-67585538?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 00:50:27 GMT", - "content": "Omid Scobie's book is still making headlines on Friday, along with news of three high profile deaths.", - "contentSnippet": "Omid Scobie's book is still making headlines on Friday, along with news of three high profile deaths.", - "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67585538", - "isoDate": "2023-12-01T00:50:27.000Z" - }, - { - "title": "Mark Lovell: Killers followed victim after he visited sick mother", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67582128?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 01 Dec 2023 00:00:08 GMT", - "content": "Police are appealing for information one year on from the shooting of Mark Lovell in Newry.", - "contentSnippet": "Police are appealing for information one year on from the shooting of Mark Lovell in Newry.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67582128", - "isoDate": "2023-12-01T00:00:08.000Z" - }, - { - "title": "The race against time to repair Edinburgh Airport's runway", - "link": "https://www.bbc.co.uk/news/uk-scotland-67579869?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 30 Nov 2023 23:14:45 GMT", - "content": "Engineers have been working throughout the past month to repair cracks in the surface of Edinburgh Airport's runway.", - "contentSnippet": "Engineers have been working throughout the past month to repair cracks in the surface of Edinburgh Airport's runway.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67579869", - "isoDate": "2023-11-30T23:14:45.000Z" - }, - { - "title": "Passengers stuck for hours on Elizabeth line after cables damaged", - "link": "https://www.bbc.co.uk/news/uk-67655656?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 09:04:26 GMT", - "content": "Some commuters described the experience as \"feeling like a wartime thing\".", - "contentSnippet": "Some commuters described the experience as \"feeling like a wartime thing\".", - "guid": "https://www.bbc.co.uk/news/uk-67655656", - "isoDate": "2023-12-08T09:04:26.000Z" - }, - { - "title": "Stormont crisis: Devolution deal no closer despite finance talks, says DUP", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67657137?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 09:01:40 GMT", - "content": "Northern Ireland's political parties are expected to hold talks with the NI secretary on Monday.", - "contentSnippet": "Northern Ireland's political parties are expected to hold talks with the NI secretary on Monday.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67657137", - "isoDate": "2023-12-08T09:01:40.000Z" - }, - { - "title": "UK paid Rwanda an extra \u00a3100m for asylum deal", - "link": "https://www.bbc.co.uk/news/uk-politics-67656220?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 07:40:27 GMT", - "content": "It means the UK has spent \u00a3240m on the scheme, despite no asylum seekers being sent to the African nation.", - "contentSnippet": "It means the UK has spent \u00a3240m on the scheme, despite no asylum seekers being sent to the African nation.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67656220", - "isoDate": "2023-12-08T07:40:27.000Z" - }, - { - "title": "Coil fitting wait leaves woman in excruciating pain", - "link": "https://www.bbc.co.uk/news/uk-wales-67650673?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 06:45:35 GMT", - "content": "Patients in one health board area are waiting up to nine months for a coil fitting.", - "contentSnippet": "Patients in one health board area are waiting up to nine months for a coil fitting.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67650673", - "isoDate": "2023-12-08T06:45:35.000Z" - }, - { - "title": "Couple traumatised after fleeing West Bank", - "link": "https://www.bbc.co.uk/news/uk-england-london-67648377?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 06:15:28 GMT", - "content": "Imad Alqasim and Zeina Ramadan said it took days to leave and they are afraid for remaining family.", - "contentSnippet": "Imad Alqasim and Zeina Ramadan said it took days to leave and they are afraid for remaining family.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67648377", - "isoDate": "2023-12-08T06:15:28.000Z" - }, - { - "title": "Grooming gangs: Police 'do not accurately understand issue'", - "link": "https://www.bbc.co.uk/news/uk-67655654?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 02:35:27 GMT", - "content": "The police watchdog also warns of concerns about victim-blaming and officers lacking training.", - "contentSnippet": "The police watchdog also warns of concerns about victim-blaming and officers lacking training.", - "guid": "https://www.bbc.co.uk/news/uk-67655654", - "isoDate": "2023-12-08T02:35:27.000Z" - }, - { - "title": "Chris Mason: Rwanda bill a reminder of Brexit Tory divisions", - "link": "https://www.bbc.co.uk/news/uk-politics-67656496?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 02:20:05 GMT", - "content": "This weekend different groupings of MPs in the party are scrutinising the government's planned new law on Rwanda.", - "contentSnippet": "This weekend different groupings of MPs in the party are scrutinising the government's planned new law on Rwanda.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67656496", - "isoDate": "2023-12-08T02:20:05.000Z" - }, - { - "title": "The Papers: Tories 'imploding' and 'Rwanda plan risks failing'", - "link": "https://www.bbc.co.uk/news/blogs-the-papers-67656002?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 08 Dec 2023 02:02:23 GMT", - "content": "The papers again focus on the fallout over Prime Minister Rishi Sunak's Rwanda deal.", - "contentSnippet": "The papers again focus on the fallout over Prime Minister Rishi Sunak's Rwanda deal.", - "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67656002", - "isoDate": "2023-12-08T02:02:23.000Z" - }, - { - "title": "Chanel Metiers d'Art: Models turn Manchester street into a catwalk", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67651946?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 23:13:18 GMT", - "content": "Kristen Stewart and Hugh Grant are among the stars to cram into a Manchester street to watch the show.", - "contentSnippet": "Kristen Stewart and Hugh Grant are among the stars to cram into a Manchester street to watch the show.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67651946", - "isoDate": "2023-12-07T23:13:18.000Z" - }, - { - "title": "The teenager who lives like it's the 1940s", - "link": "https://www.bbc.co.uk/news/articles/crgpjpr35nko?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 22:58:05 GMT", - "content": "Callum John Grubb is only 19 but he is obsessed with everything from the 1940s, including his car.", - "contentSnippet": "Callum John Grubb is only 19 but he is obsessed with everything from the 1940s, including his car.", - "guid": "https://www.bbc.co.uk/news/articles/crgpjpr35nko", - "isoDate": "2023-12-07T22:58:05.000Z" - }, - { - "title": "Elizabeth line passengers freed after hours of waiting", - "link": "https://www.bbc.co.uk/news/uk-67655017?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 22:44:59 GMT", - "content": "Passengers were stuck between Paddington and Acton for more than three hours, due to overhead cables blocking routes.", - "contentSnippet": "Passengers were stuck between Paddington and Acton for more than three hours, due to overhead cables blocking routes.", - "guid": "https://www.bbc.co.uk/news/uk-67655017", - "isoDate": "2023-12-07T22:44:59.000Z" - }, - { - "title": "Covid inquiry: I did not back a 'let it rip' policy, says Boris Johnson", - "link": "https://www.bbc.co.uk/news/uk-politics-67646548?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 21:10:49 GMT", - "content": "The former prime minister says he offered counter arguments but ultimately acted to curb Covid.", - "contentSnippet": "The former prime minister says he offered counter arguments but ultimately acted to curb Covid.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67646548", - "isoDate": "2023-12-07T21:10:49.000Z" - }, - { - "title": "Two arrests at anti-war protest as Keir Starmer attends Labour gala", - "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67650946?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 20:56:27 GMT", - "content": "Police said the arrests were in connection with assaults on officers outside the Crowne Plaza in Glasgow.", - "contentSnippet": "Police said the arrests were in connection with assaults on officers outside the Crowne Plaza in Glasgow.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67650946", - "isoDate": "2023-12-07T20:56:27.000Z" - }, - { - "title": "William Brown: Arrest after boy, 7, killed in Sandgate hit-and-run", - "link": "https://www.bbc.co.uk/news/uk-england-kent-67645864?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 19:49:44 GMT", - "content": "A man has been arrested after seven-year-old William Brown died when he was hit by a vehicle.", - "contentSnippet": "A man has been arrested after seven-year-old William Brown died when he was hit by a vehicle.", - "guid": "https://www.bbc.co.uk/news/uk-england-kent-67645864", - "isoDate": "2023-12-07T19:49:44.000Z" - }, - { - "title": "Watch: Prince William shocks mum on charity walk", - "link": "https://www.bbc.co.uk/news/uk-wales-67652371?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 18:54:24 GMT", - "content": "The Prince of Wales shocks Emma Webb by turning up on day 13 of her charity walk to London.", - "contentSnippet": "The Prince of Wales shocks Emma Webb by turning up on day 13 of her charity walk to London.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67652371", - "isoDate": "2023-12-07T18:54:24.000Z" - }, - { - "title": "Met Police: Ex-officers sentenced over racist WhatsApp posts", - "link": "https://www.bbc.co.uk/news/uk-england-london-67650961?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 18:15:34 GMT", - "content": "The six retired officers were told their behaviour had harmed public confidence in the police.", - "contentSnippet": "The six retired officers were told their behaviour had harmed public confidence in the police.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67650961", - "isoDate": "2023-12-07T18:15:34.000Z" - }, - { - "title": "Prince Harry tells court he wants his children to feel at home in UK", - "link": "https://www.bbc.co.uk/news/uk-67653280?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 18:00:17 GMT", - "content": "The Duke of Sussex is challenging the Home Office over a decision to downgrade his protection.", - "contentSnippet": "The Duke of Sussex is challenging the Home Office over a decision to downgrade his protection.", - "guid": "https://www.bbc.co.uk/news/uk-67653280", - "isoDate": "2023-12-07T18:00:17.000Z" - }, - { - "title": "Benjamin Zephaniah: The life of an artist and activist in his own words", - "link": "https://www.bbc.co.uk/news/uk-67655014?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 18:00:00 GMT", - "content": "As tributes are paid to a \"titan of literature\", watch him perform some of his poetic works.", - "contentSnippet": "As tributes are paid to a \"titan of literature\", watch him perform some of his poetic works.", - "guid": "https://www.bbc.co.uk/news/uk-67655014", - "isoDate": "2023-12-07T18:00:00.000Z" - }, - { - "title": "Serial killer Steve Wright arrested over 1999 murder of Victoria Hall", - "link": "https://www.bbc.co.uk/news/uk-england-suffolk-67649142?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 17:59:52 GMT", - "content": "Police arrest serial killer Steve Wright on suspicion of murdering the teenager in Suffolk in 1999.", - "contentSnippet": "Police arrest serial killer Steve Wright on suspicion of murdering the teenager in Suffolk in 1999.", - "guid": "https://www.bbc.co.uk/news/uk-england-suffolk-67649142", - "isoDate": "2023-12-07T17:59:52.000Z" - }, - { - "title": "Ruling due in Scottish gender reform legal battle", - "link": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67648206?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 17:21:53 GMT", - "content": "A ruling on whether the UK government is able to block Holyrood's gender reform bill is expected on Friday.", - "contentSnippet": "A ruling on whether the UK government is able to block Holyrood's gender reform bill is expected on Friday.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67648206", - "isoDate": "2023-12-07T17:21:53.000Z" - }, - { - "title": "Ofsted visit 'contributed' to Ruth Perry death", - "link": "https://www.bbc.co.uk/news/education-67639942?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 17:01:18 GMT", - "content": "The head teacher died two months after Ofsted inspected her school in Reading in November 2022.", - "contentSnippet": "The head teacher died two months after Ofsted inspected her school in Reading in November 2022.", - "guid": "https://www.bbc.co.uk/news/education-67639942", - "isoDate": "2023-12-07T17:01:18.000Z" - }, - { - "title": "Bob Dylan sells Scottish Highlands estate for \u00a34m", - "link": "https://www.bbc.co.uk/news/articles/cgrp9967v0po?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 13:30:27 GMT", - "content": "The singer bought Aultmore House in 2006 but has not visited in at least four years", - "contentSnippet": "The singer bought Aultmore House in 2006 but has not visited in at least four years", - "guid": "https://www.bbc.co.uk/news/articles/cgrp9967v0po", - "isoDate": "2023-12-07T13:30:27.000Z" - }, - { - "title": "Conor McGregor faces criticism after online rap battle", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67648347?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 13:30:05 GMT", - "content": "Former UFC champion faces criticism for attacking the disabilities and religion of a battle rapper.", - "contentSnippet": "Former UFC champion faces criticism for attacking the disabilities and religion of a battle rapper.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67648347", - "isoDate": "2023-12-07T13:30:05.000Z" - }, - { - "title": "I.N.A.D.E.Q.U.A.T.E - Ruth Perry\u2019s despair in handwritten notes", - "link": "https://www.bbc.co.uk/news/education-67612233?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 12:24:25 GMT", - "content": "In the days following an inspection at her school, the head teacher wrote down her innermost thoughts.", - "contentSnippet": "In the days following an inspection at her school, the head teacher wrote down her innermost thoughts.", - "guid": "https://www.bbc.co.uk/news/education-67612233", - "isoDate": "2023-12-07T12:24:25.000Z" - }, - { - "title": "Sunak on Rwanda policy: My patience with this has worn thin", - "link": "https://www.bbc.co.uk/news/uk-politics-67647706?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 11:26:13 GMT", - "content": "The PM is asked if he is telling his MPs to \"back me or sack me\" over getting his flagship migration policy into law.", - "contentSnippet": "The PM is asked if he is telling his MPs to \"back me or sack me\" over getting his flagship migration policy into law.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67647706", - "isoDate": "2023-12-07T11:26:13.000Z" - }, - { - "title": "Why was a man who took a wee in a layby fined for littering?", - "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67615231?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 09:24:07 GMT", - "content": "A high-profile lawyer disputes a council's claim that public urination is littering.", - "contentSnippet": "A high-profile lawyer disputes a council's claim that public urination is littering.", - "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67615231", - "isoDate": "2023-12-07T09:24:07.000Z" - }, - { - "title": "Ben Whishaw: Paddington actor to star in Waiting for Godot", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67568046?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 02:21:29 GMT", - "content": "The actor will appear in a new West End production of Samuel Beckett's Waiting For Godot next year.", - "contentSnippet": "The actor will appear in a new West End production of Samuel Beckett's Waiting For Godot next year.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67568046", - "isoDate": "2023-12-07T02:21:29.000Z" - }, - { - "title": "Johnny Marr on music, memories and how Manchester made him", - "link": "https://www.bbc.co.uk/news/uk-england-manchester-67623076?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 00:40:34 GMT", - "content": "Ahead of two homecoming shows, iconic guitarist Johnny Marr considers his lifelong links to the city.", - "contentSnippet": "Ahead of two homecoming shows, iconic guitarist Johnny Marr considers his lifelong links to the city.", - "guid": "https://www.bbc.co.uk/news/uk-england-manchester-67623076", - "isoDate": "2023-12-07T00:40:34.000Z" - }, - { - "title": "Accessibility in gaming: 'When we all play, we all win'", - "link": "https://www.bbc.co.uk/news/newsbeat-67591204?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 07 Dec 2023 00:37:51 GMT", - "content": "Accessibility in gaming is a hot topic - but there's still a lot of work to do to open up the hobby.", - "contentSnippet": "Accessibility in gaming is a hot topic - but there's still a lot of work to do to open up the hobby.", - "guid": "https://www.bbc.co.uk/news/newsbeat-67591204", - "isoDate": "2023-12-07T00:37:51.000Z" - }, - { - "title": "Can the new Rwanda bill work and what could stop it?", - "link": "https://www.bbc.co.uk/news/uk-67643900?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 23:02:43 GMT", - "content": "The legislation could set up a politically explosive fight with the courts.", - "contentSnippet": "The legislation could set up a politically explosive fight with the courts.", - "guid": "https://www.bbc.co.uk/news/uk-67643900", - "isoDate": "2023-12-06T23:02:43.000Z" - }, - { - "title": "Boris Johnson receives boos as he exits Covid inquiry", - "link": "https://www.bbc.co.uk/news/uk-politics-67642894?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 18:05:21 GMT", - "content": "The former prime minister was greeted with shouting and boos from protesters as he left Dorland House.", - "contentSnippet": "The former prime minister was greeted with shouting and boos from protesters as he left Dorland House.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67642894", - "isoDate": "2023-12-06T18:05:21.000Z" - }, - { - "title": "Heckling and choking up: Boris Johnson grilled at Covid inquiry", - "link": "https://www.bbc.co.uk/news/uk-politics-67642892?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 17:32:06 GMT", - "content": "The former prime minister has given evidence for two days at the Covid inquiry.", - "contentSnippet": "The former prime minister has given evidence for two days at the Covid inquiry.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67642892", - "isoDate": "2023-12-06T17:32:06.000Z" - }, - { - "title": "Watch: Baroness Hallett asks a person to 'sit down or leave the hearing'", - "link": "https://www.bbc.co.uk/news/uk-67636311?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 10:27:27 GMT", - "content": "Baroness Hallett asks a person to \"sit down or leave the hearing\" during Boris Johnson's evidence.", - "contentSnippet": "Baroness Hallett asks a person to \"sit down or leave the hearing\" during Boris Johnson's evidence.", - "guid": "https://www.bbc.co.uk/news/uk-67636311", - "isoDate": "2023-12-06T10:27:27.000Z" - }, - { - "title": "Inside the secret complex making high-tech gadgets for UK spies", - "link": "https://www.bbc.co.uk/news/uk-67626880?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 03:35:18 GMT", - "content": "The site near Milton Keynes has never opened its doors to the media in its 85-year history - until now.", - "contentSnippet": "The site near Milton Keynes has never opened its doors to the media in its 85-year history - until now.", - "guid": "https://www.bbc.co.uk/news/uk-67626880", - "isoDate": "2023-12-06T03:35:18.000Z" - }, - { - "title": "Chanel Metiers d'Art: Fashion A-list to descend on Manchester street", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67619272?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 06 Dec 2023 00:08:33 GMT", - "content": "An ordinary road is being transformed into a catwalk for one of fashion's most prestigious events.", - "contentSnippet": "An ordinary road is being transformed into a catwalk for one of fashion's most prestigious events.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67619272", - "isoDate": "2023-12-06T00:08:33.000Z" - }, - { - "title": "Is the Rwanda policy a vote winner? One High Street has its say", - "link": "https://www.bbc.co.uk/news/uk-67630766?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 22:48:13 GMT", - "content": "People along one High Street in Swindon give their views on the government's Rwanda policy.", - "contentSnippet": "People along one High Street in Swindon give their views on the government's Rwanda policy.", - "guid": "https://www.bbc.co.uk/news/uk-67630766", - "isoDate": "2023-12-05T22:48:13.000Z" - }, - { - "title": "Watch: Policeman commandeers bike to chase drug dealer", - "link": "https://www.bbc.co.uk/news/uk-67629952?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 20:02:42 GMT", - "content": "PC Lewis Marks used a member of the public's bike to chase down a man in Northampton.", - "contentSnippet": "PC Lewis Marks used a member of the public's bike to chase down a man in Northampton.", - "guid": "https://www.bbc.co.uk/news/uk-67629952", - "isoDate": "2023-12-05T20:02:42.000Z" - }, - { - "title": "Chris Mason: Big ifs continue to surround Rwanda migrant plan", - "link": "https://www.bbc.co.uk/news/uk-politics-67630252?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 18:12:14 GMT", - "content": "Ministers want to make their plan to send asylum seekers to Africa work - but nothing is certain.", - "contentSnippet": "Ministers want to make their plan to send asylum seekers to Africa work - but nothing is certain.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67630252", - "isoDate": "2023-12-05T18:12:14.000Z" - }, - { - "title": "Tottenham home named 'House of the Year' by RIBA", - "link": "https://www.bbc.co.uk/news/uk-england-london-67619168?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 12:09:52 GMT", - "content": "The property was described by judges as a \"domestic greenhouse\" and a \"truly sustainable home\".", - "contentSnippet": "The property was described by judges as a \"domestic greenhouse\" and a \"truly sustainable home\".", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67619168", - "isoDate": "2023-12-05T12:09:52.000Z" - }, - { - "title": "Exposing violent watch thieves and their young female 'spotters'", - "link": "https://www.bbc.co.uk/news/uk-67608184?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 02:31:51 GMT", - "content": "London gangs are recruiting young people to steal expensive watches off victims in the street.", - "contentSnippet": "London gangs are recruiting young people to steal expensive watches off victims in the street.", - "guid": "https://www.bbc.co.uk/news/uk-67608184", - "isoDate": "2023-12-05T02:31:51.000Z" - }, - { - "title": "Air pollution: map shows 'concrete jungles' more polluted", - "link": "https://www.bbc.co.uk/news/science-environment-67438443?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 05 Dec 2023 00:03:36 GMT", - "content": "A Sheffield school is fighting dirty air with trees as new data links their absence to pollution.", - "contentSnippet": "A Sheffield school is fighting dirty air with trees as new data links their absence to pollution.", - "guid": "https://www.bbc.co.uk/news/science-environment-67438443", - "isoDate": "2023-12-05T00:03:36.000Z" - }, - { - "title": "Historic bookshop to close after 144 years", - "link": "https://www.bbc.co.uk/news/articles/cyx2dnn10gdo?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Mon, 04 Dec 2023 19:05:39 GMT", - "guid": "https://www.bbc.co.uk/news/articles/cyx2dnn10gdo", - "isoDate": "2023-12-04T19:05:39.000Z" - }, - { - "title": "Gaynor Lord: Body found in search for missing Norwich mum", - "link": "https://www.bbc.co.uk/news/uk-england-norfolk-67728331?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 15:13:38 GMT", - "content": "Police say they do not suspect any \"third-party involvement\" after divers recover a body.", - "contentSnippet": "Police say they do not suspect any \"third-party involvement\" after divers recover a body.", - "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-67728331", - "isoDate": "2023-12-15T15:13:38.000Z" - }, - { - "title": "Banbury: Sparse Christmas tree sells for 'astonishing' fee", - "link": "https://www.bbc.co.uk/news/uk-england-oxfordshire-67725202?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 15:12:21 GMT", - "content": "The vintage tree with 25 branches is a \"humble reminder of 1920s life\", according to the seller.", - "contentSnippet": "The vintage tree with 25 branches is a \"humble reminder of 1920s life\", according to the seller.", - "guid": "https://www.bbc.co.uk/news/uk-england-oxfordshire-67725202", - "isoDate": "2023-12-15T15:12:21.000Z" - }, - { - "title": "Harry wins 15 claims in phone-hacking case against Mirror publisher", - "link": "https://www.bbc.co.uk/news/uk-67332563?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 14:48:09 GMT", - "content": "Prince Harry wins on 15 out of 33 cases where he says articles were based on unlawful information gathering.", - "contentSnippet": "Prince Harry wins on 15 out of 33 cases where he says articles were based on unlawful information gathering.", - "guid": "https://www.bbc.co.uk/news/uk-67332563", - "isoDate": "2023-12-15T14:48:09.000Z" - }, - { - "title": "Channel migrants: One dead and another injured in Channel crossing", - "link": "https://www.bbc.co.uk/news/uk-67724914?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 13:52:38 GMT", - "content": "A boat with more than 60 people on board partially deflated off the French coast, coastguard says.", - "contentSnippet": "A boat with more than 60 people on board partially deflated off the French coast, coastguard says.", - "guid": "https://www.bbc.co.uk/news/uk-67724914", - "isoDate": "2023-12-15T13:52:38.000Z" - }, - { - "title": "Treforest fire: Barber overwhelmed by support after blast", - "link": "https://www.bbc.co.uk/news/uk-wales-67726208?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 13:39:11 GMT", - "content": "Andrew Cox said his business was unsalvageable and sent his thoughts to the dead person's family.", - "contentSnippet": "Andrew Cox said his business was unsalvageable and sent his thoughts to the dead person's family.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67726208", - "isoDate": "2023-12-15T13:39:11.000Z" - }, - { - "title": "Translink: Widespread disruption caused by transport strike", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67719520?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 13:17:46 GMT", - "content": "Major disruption is caused to bus and rail services in the latest action by Translink staff.", - "contentSnippet": "Major disruption is caused to bus and rail services in the latest action by Translink staff.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67719520", - "isoDate": "2023-12-15T13:17:46.000Z" - }, - { - "title": "British teen Alex Batty expected back in UK in next few days", - "link": "https://www.bbc.co.uk/news/uk-67724918?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 12:12:58 GMT", - "content": "The 17-year-old, who vanished in 2017, is currently being looked after by French authorities.", - "contentSnippet": "The 17-year-old, who vanished in 2017, is currently being looked after by French authorities.", - "guid": "https://www.bbc.co.uk/news/uk-67724918", - "isoDate": "2023-12-15T12:12:58.000Z" - }, - { - "title": "Delivery driver found Alex Batty on unlit mountain road", - "link": "https://www.bbc.co.uk/news/world-europe-67725568?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 11:28:53 GMT", - "content": "It was the middle of the night when Fabien Accidini stumbled across a young man on an unlit road.", - "contentSnippet": "It was the middle of the night when Fabien Accidini stumbled across a young man on an unlit road.", - "guid": "https://www.bbc.co.uk/news/world-europe-67725568", - "isoDate": "2023-12-15T11:28:53.000Z" - }, - { - "title": "Stranger Things: The First Shadow - critics call prequel play 'breathtaking'", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67722674?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 11:16:10 GMT", - "content": "The stage show, a prequel to the hit Netflix series, has its world premiere in London's West End.", - "contentSnippet": "The stage show, a prequel to the hit Netflix series, has its world premiere in London's West End.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67722674", - "isoDate": "2023-12-15T11:16:10.000Z" - }, - { - "title": "'Betrayed' Afghan special forces references ignored", - "link": "https://www.bbc.co.uk/news/uk-politics-67714584?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 11:12:37 GMT", - "content": "Members of the Afghan special forces were denied help under a UK scheme to settle those in danger.", - "contentSnippet": "Members of the Afghan special forces were denied help under a UK scheme to settle those in danger.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67714584", - "isoDate": "2023-12-15T11:12:37.000Z" - }, - { - "title": "Sam Ryder eyes up number one with You're Christmas to Me", - "link": "https://www.bbc.co.uk/news/newsbeat-67714433?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 10:38:01 GMT", - "content": "The Eurovision star's festive single has been climbing the charts - but you might not have heard it.", - "contentSnippet": "The Eurovision star's festive single has been climbing the charts - but you might not have heard it.", - "guid": "https://www.bbc.co.uk/news/newsbeat-67714433", - "isoDate": "2023-12-15T10:38:01.000Z" - }, - { - "title": "Geminid meteor shower lights up night sky", - "link": "https://www.bbc.co.uk/news/science-environment-67658650?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 10:29:59 GMT", - "content": "You don't need a telescope to catch what has been dubbed one of the year's most reliable meteor showers.", - "contentSnippet": "You don't need a telescope to catch what has been dubbed one of the year's most reliable meteor showers.", - "guid": "https://www.bbc.co.uk/news/science-environment-67658650", - "isoDate": "2023-12-15T10:29:59.000Z" - }, - { - "title": "Horizon scandal: Call for all Post Office convictions to be overturned", - "link": "https://www.bbc.co.uk/news/business-67719051?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 10:25:50 GMT", - "content": "A board advising ministers on compensation for the Horizon software scandal says all should be cleared.", - "contentSnippet": "A board advising ministers on compensation for the Horizon software scandal says all should be cleared.", - "guid": "https://www.bbc.co.uk/news/business-67719051", - "isoDate": "2023-12-15T10:25:50.000Z" - }, - { - "title": "Police 'relieved and overjoyed' as Alex Batty found", - "link": "https://www.bbc.co.uk/news/uk-67726675?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 09:57:50 GMT", - "content": "The British boy, who disappeared six years ago in Spain, was spotted by a motorist near Toulouse, France.", - "contentSnippet": "The British boy, who disappeared six years ago in Spain, was spotted by a motorist near Toulouse, France.", - "guid": "https://www.bbc.co.uk/news/uk-67726675", - "isoDate": "2023-12-15T09:57:50.000Z" - }, - { - "title": "'He's not done enough' - Brixton crush families criticise Asake", - "link": "https://www.bbc.co.uk/news/uk-england-london-67704945?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 08:11:37 GMT", - "content": "On the anniversary of the fatal crush, the victims' families say they still have few answers.", - "contentSnippet": "On the anniversary of the fatal crush, the victims' families say they still have few answers.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67704945", - "isoDate": "2023-12-15T08:11:37.000Z" - }, - { - "title": "Millions borrowing to pay essential bills at Christmas, charities warn", - "link": "https://www.bbc.co.uk/news/business-67703257?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 07:44:20 GMT", - "content": "Energy costs are a key concern to charities, just as gas and electricity prices are about to rise again.", - "contentSnippet": "Energy costs are a key concern to charities, just as gas and electricity prices are about to rise again.", - "guid": "https://www.bbc.co.uk/news/business-67703257", - "isoDate": "2023-12-15T07:44:20.000Z" - }, - { - "title": "Nitazenes: Warning over super-strength street drugs linked to deaths", - "link": "https://www.bbc.co.uk/news/uk-scotland-67710207?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 06:19:42 GMT", - "content": "Charity says Scotland has been \"slow to heed warnings\u201d over the rise in nitazene painkillers.", - "contentSnippet": "Charity says Scotland has been \"slow to heed warnings\u201d over the rise in nitazene painkillers.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67710207", - "isoDate": "2023-12-15T06:19:42.000Z" - }, - { - "title": "New Scottish income tax band might only raise \u00a360m", - "link": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67706492?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 06:19:26 GMT", - "content": "The Scottish government is reportedly considering introducing a new tax band to shore up its budget.", - "contentSnippet": "The Scottish government is reportedly considering introducing a new tax band to shore up its budget.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67706492", - "isoDate": "2023-12-15T06:19:26.000Z" - }, - { - "title": "Toddler escaped Aberdeen nursery and was almost hit by a bus", - "link": "https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-67677891?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 06:18:41 GMT", - "content": "The near-miss was one of 119 incidents where children left Scotland\u2019s nurseries unaccompanied last year.", - "contentSnippet": "The near-miss was one of 119 incidents where children left Scotland\u2019s nurseries unaccompanied last year.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-67677891", - "isoDate": "2023-12-15T06:18:41.000Z" - }, - { - "title": "Barry Humphries: Entertainer's life celebrated at Sydney Opera House state memorial", - "link": "https://www.bbc.co.uk/news/world-australia-67723756?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 02:53:17 GMT", - "content": "Australian entertainer Humphries - best known for his Dame Edna Everage persona - died in April.", - "contentSnippet": "Australian entertainer Humphries - best known for his Dame Edna Everage persona - died in April.", - "guid": "https://www.bbc.co.uk/news/world-australia-67723756", - "isoDate": "2023-12-15T02:53:17.000Z" - }, - { - "title": "Bereaved parents furious at online safety 'backtrack'", - "link": "https://www.bbc.co.uk/news/uk-politics-67714572?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 00:10:41 GMT", - "content": "The government denies watering down online protections promised to bereaved families.", - "contentSnippet": "The government denies watering down online protections promised to bereaved families.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67714572", - "isoDate": "2023-12-15T00:10:41.000Z" - }, - { - "title": "Head teachers in 'despair', union warns after Ruth Perry's death", - "link": "https://www.bbc.co.uk/news/education-67718327?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 00:07:30 GMT", - "content": "Almost half needed support for their mental health or wellbeing in the last year, a survey suggests.", - "contentSnippet": "Almost half needed support for their mental health or wellbeing in the last year, a survey suggests.", - "guid": "https://www.bbc.co.uk/news/education-67718327", - "isoDate": "2023-12-15T00:07:30.000Z" - }, - { - "title": "Russian gas giant Gazprom makes \u00a339m profit in North Sea", - "link": "https://www.bbc.co.uk/news/business-67720198?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 15 Dec 2023 00:02:39 GMT", - "content": "The state-owned Russian energy firm earned \u00a339m from its Dutch-UK gas field in 2022, accounts show.", - "contentSnippet": "The state-owned Russian energy firm earned \u00a339m from its Dutch-UK gas field in 2022, accounts show.", - "guid": "https://www.bbc.co.uk/news/business-67720198", - "isoDate": "2023-12-15T00:02:39.000Z" - }, - { - "title": "Job of minister for disabled people downgraded", - "link": "https://www.bbc.co.uk/news/uk-politics-67717311?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 18:16:57 GMT", - "content": "Work and pensions minister Mims Davies takes on the role but stays at the most junior level of government.", - "contentSnippet": "Work and pensions minister Mims Davies takes on the role but stays at the most junior level of government.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67717311", - "isoDate": "2023-12-14T18:16:57.000Z" - }, - { - "title": "Gaynor Lord: Friend 'feels terrible' over call from missing woman", - "link": "https://www.bbc.co.uk/news/uk-england-norfolk-67718635?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 17:54:38 GMT", - "content": "A friend of Gaynor Lord says she \"keeps going over\" a call she had with her on the day she went missing.", - "contentSnippet": "A friend of Gaynor Lord says she \"keeps going over\" a call she had with her on the day she went missing.", - "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-67718635", - "isoDate": "2023-12-14T17:54:38.000Z" - }, - { - "title": "How a four-year-old boy helped solve schoolgirl's 1996 murder", - "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67666606?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 14:51:08 GMT", - "content": "Archie Wilson witnessed the fatal attack on Caroline Glachan on the banks of the River Leven in Renton.", - "contentSnippet": "Archie Wilson witnessed the fatal attack on Caroline Glachan on the banks of the River Leven in Renton.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67666606", - "isoDate": "2023-12-14T14:51:08.000Z" - }, - { - "title": "EHCP: 'My autistic daughter has not been in school for 10 months'", - "link": "https://www.bbc.co.uk/news/education-67705749?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 10:44:59 GMT", - "content": "There has been a record rise in the number of parents lodging appeals at SEND tribunals.", - "contentSnippet": "There has been a record rise in the number of parents lodging appeals at SEND tribunals.", - "guid": "https://www.bbc.co.uk/news/education-67705749", - "isoDate": "2023-12-14T10:44:59.000Z" - }, - { - "title": "Great Yarmouth Hippodrome Circus acrobat falls from 'wheel of death'", - "link": "https://www.bbc.co.uk/news/uk-england-norfolk-67713927?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 09:39:27 GMT", - "content": "The man, in his 20s, fell from about 10m (33ft) above the circus ring during the act.", - "contentSnippet": "The man, in his 20s, fell from about 10m (33ft) above the circus ring during the act.", - "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-67713927", - "isoDate": "2023-12-14T09:39:27.000Z" - }, - { - "title": "Lesley Joseph on how relaxed performances should be more common", - "link": "https://www.bbc.co.uk/news/uk-wales-67639243?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 06:13:41 GMT", - "content": "It is where the lights stay on, it is not as noisy, and the cast explain they are not scary.", - "contentSnippet": "It is where the lights stay on, it is not as noisy, and the cast explain they are not scary.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67639243", - "isoDate": "2023-12-14T06:13:41.000Z" - }, - { - "title": "Cystic fibrosis: The miracle drugs priced out of reach", - "link": "https://www.bbc.co.uk/news/health-67712269?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 02:24:29 GMT", - "content": "Regulators around the world have questioned the high price set by Vertex Pharmaceuticals.", - "contentSnippet": "Regulators around the world have questioned the high price set by Vertex Pharmaceuticals.", - "guid": "https://www.bbc.co.uk/news/health-67712269", - "isoDate": "2023-12-14T02:24:29.000Z" - }, - { - "title": "Cystic fibrosis: The miracle drugs priced out of reach", - "link": "https://www.bbc.co.uk/digihub/health-67702576?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 02:15:26 GMT", - "content": "Regulators around the world have questioned the high price set by Vertex Pharmaceuticals.", - "contentSnippet": "Regulators around the world have questioned the high price set by Vertex Pharmaceuticals.", - "guid": "https://www.bbc.co.uk/digihub/health-67702576", - "isoDate": "2023-12-14T02:15:26.000Z" - }, - { - "title": "GCHQ Christmas challenge: Agency reveals 2023 codebreaker", - "link": "https://www.bbc.co.uk/news/uk-67707647?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 01:49:43 GMT", - "content": "The annual brainteaser this year features a puzzle described as the toughest to date.", - "contentSnippet": "The annual brainteaser this year features a puzzle described as the toughest to date.", - "guid": "https://www.bbc.co.uk/news/uk-67707647", - "isoDate": "2023-12-14T01:49:43.000Z" - }, - { - "title": "Chester: The city which still celebrates Saturnalia", - "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67680824?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 14 Dec 2023 01:08:03 GMT", - "content": "Christmas in Chester means a celebration of more than one set of 2,000-year-old traditions.", - "contentSnippet": "Christmas in Chester means a celebration of more than one set of 2,000-year-old traditions.", - "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67680824", - "isoDate": "2023-12-14T01:08:03.000Z" - }, - { - "title": "Watch: Cool pool player pots black as car ploughs into pub", - "link": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67708784?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 16:33:43 GMT", - "content": "Footage showed a pool player potting a ball as the car smashed through the wall.", - "contentSnippet": "Footage showed a pool player potting a ball as the car smashed through the wall.", - "guid": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67708784", - "isoDate": "2023-12-13T16:33:43.000Z" - }, - { - "title": "Moment car owner injured as vehicle taken in Doncaster", - "link": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67705156?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 14:34:06 GMT", - "content": "A man was seriously injured during the incident in Doncaster, police say.", - "contentSnippet": "A man was seriously injured during the incident in Doncaster, police say.", - "guid": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67705156", - "isoDate": "2023-12-13T14:34:06.000Z" - }, - { - "title": "Mark Drakeford: Watch high and lows of five years in power", - "link": "https://www.bbc.co.uk/news/uk-wales-67704183?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 13 Dec 2023 13:22:30 GMT", - "content": "Covid, angry outbursts and love of cheese: some of what Mark Drakeford will be remembered for.", - "contentSnippet": "Covid, angry outbursts and love of cheese: some of what Mark Drakeford will be remembered for.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67704183", - "isoDate": "2023-12-13T13:22:30.000Z" - }, - { - "title": "Moment giant wind turbine blade carried through Hawick", - "link": "https://www.bbc.co.uk/news/uk-scotland-67696665?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 12 Dec 2023 16:49:15 GMT", - "content": "Small roads in the Scottish Borders mean turbine blades have to be transported to a wind farm pointing upwards.", - "contentSnippet": "Small roads in the Scottish Borders mean turbine blades have to be transported to a wind farm pointing upwards.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67696665", - "isoDate": "2023-12-12T16:49:15.000Z" - }, - { - "title": "Stormont: Same decade, same approach - different outcome?", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67690752?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 12 Dec 2023 12:43:14 GMT", - "content": "BBC News NI's Enda McClafferty reflects on the ghosts of Christmas talks past - will history repeat?", - "contentSnippet": "BBC News NI's Enda McClafferty reflects on the ghosts of Christmas talks past - will history repeat?", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67690752", - "isoDate": "2023-12-12T12:43:14.000Z" - }, - { - "title": "Next warns of supply delays due to Red Sea shipping attacks", - "link": "https://www.bbc.co.uk/news/business-67879640?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:39:34 GMT", - "content": "The retailer says delays to its stock are \"likely\" as a result of disruption to shipping journeys.", - "contentSnippet": "The retailer says delays to its stock are \"likely\" as a result of disruption to shipping journeys.", - "guid": "https://www.bbc.co.uk/news/business-67879640", - "isoDate": "2024-01-04T10:39:34.000Z" - }, - { - "title": "Jeffrey Epstein: Prince Andrew and Bill Clinton named in court files", - "link": "https://www.bbc.co.uk/news/world-us-canada-67865190?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:14:24 GMT", - "content": "Files detail sex offender Jeffrey Epstein's connections but no bombshell revelations immediately emerge.", - "contentSnippet": "Files detail sex offender Jeffrey Epstein's connections but no bombshell revelations immediately emerge.", - "guid": "https://www.bbc.co.uk/news/world-us-canada-67865190", - "isoDate": "2024-01-04T10:14:24.000Z" - }, - { - "title": "Liverpool gunman: Arrest after shots fired at Showcase cinema", - "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67878562?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 09:58:23 GMT", - "content": "A suspect is detained by armed police after cinema staff in Liverpool were threatened, police say.", - "contentSnippet": "A suspect is detained by armed police after cinema staff in Liverpool were threatened, police say.", - "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67878562", - "isoDate": "2024-01-04T09:58:23.000Z" - }, - { - "title": "Labour says questions remain as company owned by Rishi Sunak's wife closes", - "link": "https://www.bbc.co.uk/news/uk-politics-67880321?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 09:53:22 GMT", - "content": "A spokesperson for Akshata Murty says the company's holdings will be transferred to charity.", - "contentSnippet": "A spokesperson for Akshata Murty says the company's holdings will be transferred to charity.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67880321", - "isoDate": "2024-01-04T09:53:22.000Z" - }, - { - "title": "Southern England weather: Heavy rain set to fall amid flood warnings", - "link": "https://www.bbc.co.uk/news/uk-67878565?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 09:32:14 GMT", - "content": "Heavy rain will fall throughout Thursday in the south of England on already saturated ground.", - "contentSnippet": "Heavy rain will fall throughout Thursday in the south of England on already saturated ground.", - "guid": "https://www.bbc.co.uk/news/uk-67878565", - "isoDate": "2024-01-04T09:32:14.000Z" - }, - { - "title": "Luke Littler: What has 16-year-old's remarkable World Championship run done for darts?", - "link": "https://www.bbc.co.uk/sport/darts/67875958?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 08:17:25 GMT", - "content": "BBC Sport looks at what Luke Littler's remarkable World Championship run has done for darts - and why the 16-year-old believes he can become world champion in the not too distant future.", - "contentSnippet": "BBC Sport looks at what Luke Littler's remarkable World Championship run has done for darts - and why the 16-year-old believes he can become world champion in the not too distant future.", - "guid": "https://www.bbc.co.uk/sport/darts/67875958", - "isoDate": "2024-01-04T08:17:25.000Z" - }, - { - "title": "Troubles pension: More than 40 applicants die before decisions made", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67872639?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 07:25:17 GMT", - "content": "Figures show that more than 40 people have died while waiting on a decision in the 2021 scheme.", - "contentSnippet": "Figures show that more than 40 people have died while waiting on a decision in the 2021 scheme.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67872639", - "isoDate": "2024-01-04T07:25:17.000Z" - }, - { - "title": "FTSE 100 bosses earn UK average salary in three days, says High Pay Centre", - "link": "https://www.bbc.co.uk/news/business-67877235?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 06:53:20 GMT", - "content": "Bosses of the biggest firms will earn more than the typical worker by Thursday lunchtime, research claims.", - "contentSnippet": "Bosses of the biggest firms will earn more than the typical worker by Thursday lunchtime, research claims.", - "guid": "https://www.bbc.co.uk/news/business-67877235", - "isoDate": "2024-01-04T06:53:20.000Z" - }, - { - "title": "Bernadette Walker: Murdered missing teen's body case still open say police", - "link": "https://www.bbc.co.uk/news/uk-england-cambridgeshire-67878071?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 06:34:19 GMT", - "content": "Case of Bernadette Walker, whose killer died in jail, remains open, say police who still seek her body.", - "contentSnippet": "Case of Bernadette Walker, whose killer died in jail, remains open, say police who still seek her body.", - "guid": "https://www.bbc.co.uk/news/uk-england-cambridgeshire-67878071", - "isoDate": "2024-01-04T06:34:19.000Z" - }, - { - "title": "Dismantling of Luton Airport's fire-hit car park starts", - "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67877365?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 06:18:05 GMT", - "content": "The work is expected to take up to 16 weeks and more than 1,000 vehicles will be removed.", - "contentSnippet": "The work is expected to take up to 16 weeks and more than 1,000 vehicles will be removed.", - "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67877365", - "isoDate": "2024-01-04T06:18:05.000Z" - }, - { - "title": "Homeless people could die without more funding - charity", - "link": "https://www.bbc.co.uk/news/uk-wales-67873288?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 06:11:37 GMT", - "content": "One teen says he would be \"in jail or dead\" without Welsh government-funded homeless support.", - "contentSnippet": "One teen says he would be \"in jail or dead\" without Welsh government-funded homeless support.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67873288", - "isoDate": "2024-01-04T06:11:37.000Z" - }, - { - "title": "Newspaper headlines: 'Dartbreaker' and 'halt Red Sea attacks or else'", - "link": "https://www.bbc.co.uk/news/blogs-the-papers-67878546?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 05:49:53 GMT", - "content": "Teenage dart sensation Luke Littler's nail-biting final loss makes the front of most of the papers.", - "contentSnippet": "Teenage dart sensation Luke Littler's nail-biting final loss makes the front of most of the papers.", - "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67878546", - "isoDate": "2024-01-04T05:49:53.000Z" - }, - { - "title": "'We had to investigate our autistic son's death'", - "link": "https://www.bbc.co.uk/news/uk-england-manchester-67777938?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 04:57:10 GMT", - "content": "Will Melbourne died after taking drugs bought on the dark web - his parents found out by investigating themselves.", - "contentSnippet": "Will Melbourne died after taking drugs bought on the dark web - his parents found out by investigating themselves.", - "guid": "https://www.bbc.co.uk/news/uk-england-manchester-67777938", - "isoDate": "2024-01-04T04:57:10.000Z" - }, - { - "title": "BBC Sound Of 2024: How embracing chaos made Olivia Dean a breakout star", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67714013?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 03:07:41 GMT", - "content": "Olivia Dean could have played safe on her debut album. Instead, she got messy - with stellar results.", - "contentSnippet": "Olivia Dean could have played safe on her debut album. Instead, she got messy - with stellar results.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67714013", - "isoDate": "2024-01-04T03:07:41.000Z" - }, - { - "title": "Elvis Evolution: Presley to be brought to life using AI for new immersive show", - "link": "https://www.bbc.co.uk/news/uk-england-london-67871115?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 02:58:12 GMT", - "content": "A new show features holographic projections of the rock star as well as thousands of photos and home-videos.", - "contentSnippet": "A new show features holographic projections of the rock star as well as thousands of photos and home-videos.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67871115", - "isoDate": "2024-01-04T02:58:12.000Z" - }, - { - "title": "How much could darts sensation Luke Littler earn?", - "link": "https://www.bbc.co.uk/news/business-67872681?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 02:16:20 GMT", - "content": "Experts say brands will be queuing up to agree sponsorship deals after the 16-year-old burst onto the scene.", - "contentSnippet": "Experts say brands will be queuing up to agree sponsorship deals after the 16-year-old burst onto the scene.", - "guid": "https://www.bbc.co.uk/news/business-67872681", - "isoDate": "2024-01-04T02:16:20.000Z" - }, - { - "title": "Junior doctors' strike: Some hospitals request staff return to work", - "link": "https://www.bbc.co.uk/news/health-67878403?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 01:14:42 GMT", - "content": "NHS bosses say the service is under huge pressure - but junior doctors say they are misusing the system.", - "contentSnippet": "NHS bosses say the service is under huge pressure - but junior doctors say they are misusing the system.", - "guid": "https://www.bbc.co.uk/news/health-67878403", - "isoDate": "2024-01-04T01:14:42.000Z" - }, - { - "title": "Luke Littler: The 16-year-old darts sensation who took the PDC World Championship by storm", - "link": "https://www.bbc.co.uk/sport/darts/67861277?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 00:04:53 GMT", - "content": "Teenager Luke Littler has taken the PDC World Darts Championship by storm on his debut, aged just 16.", - "contentSnippet": "Teenager Luke Littler has taken the PDC World Darts Championship by storm on his debut, aged just 16.", - "guid": "https://www.bbc.co.uk/sport/darts/67861277", - "isoDate": "2024-01-04T00:04:53.000Z" - }, - { - "title": "Luke Littler: Cheers and sighs as darts final spoils Littler's party", - "link": "https://www.bbc.co.uk/news/uk-67876474?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 23:32:20 GMT", - "content": "Luke Littler loses chance to become youngest world darts champion after being beaten by Luke Humphries.", - "contentSnippet": "Luke Littler loses chance to become youngest world darts champion after being beaten by Luke Humphries.", - "guid": "https://www.bbc.co.uk/news/uk-67876474", - "isoDate": "2024-01-03T23:32:20.000Z" - }, - { - "title": "Washed-up handbag back with owner 30 years later", - "link": "https://www.bbc.co.uk/news/articles/c3gy724ey9vo?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 23:11:02 GMT", - "content": "The bag was stolen in 1993 in Aberdeen but the owner was found after a schoolgirl's beach discovery.", - "contentSnippet": "The bag was stolen in 1993 in Aberdeen but the owner was found after a schoolgirl's beach discovery.", - "guid": "https://www.bbc.co.uk/news/articles/c3gy724ey9vo", - "isoDate": "2024-01-03T23:11:02.000Z" - }, - { - "title": "Luke Humphries beats Luke Littler to win PDC World Darts Championship", - "link": "https://www.bbc.co.uk/sport/darts/67875251?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 22:39:35 GMT", - "content": "England's Luke Humphries beats 16-year-old Luke Littler in a gripping final at Alexandra Palace to win his first PDC World Championship title.", - "contentSnippet": "England's Luke Humphries beats 16-year-old Luke Littler in a gripping final at Alexandra Palace to win his first PDC World Championship title.", - "guid": "https://www.bbc.co.uk/sport/darts/67875251", - "isoDate": "2024-01-03T22:39:35.000Z" - }, - { - "title": "Post Office: Wrongly jailed postmaster praises TV drama", - "link": "https://www.bbc.co.uk/news/uk-wales-67876198?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 21:37:22 GMT", - "content": "Noel Thomas, 77, from Anglesey, says the Post Office scandal has been \"hell for a lot of people\".", - "contentSnippet": "Noel Thomas, 77, from Anglesey, says the Post Office scandal has been \"hell for a lot of people\".", - "guid": "https://www.bbc.co.uk/news/uk-wales-67876198", - "isoDate": "2024-01-03T21:37:22.000Z" - }, - { - "title": "Luke Littler: 'He's got skill in abundance' - Former darts trainer", - "link": "https://www.bbc.co.uk/news/uk-67876473?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 18:55:17 GMT", - "content": "Trainer Karl Holden coached darts sensation Luke Littler at the St Helen's Darts Academy before his rise to fame.", - "contentSnippet": "Trainer Karl Holden coached darts sensation Luke Littler at the St Helen's Darts Academy before his rise to fame.", - "guid": "https://www.bbc.co.uk/news/uk-67876473", - "isoDate": "2024-01-03T18:55:17.000Z" - }, - { - "title": "Statistics watchdog to examine government asylum backlog claims", - "link": "https://www.bbc.co.uk/news/uk-politics-67876860?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 18:25:19 GMT", - "content": "The Office for Statistics Regulation will investigate whether official announcements were misleading.", - "contentSnippet": "The Office for Statistics Regulation will investigate whether official announcements were misleading.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67876860", - "isoDate": "2024-01-03T18:25:19.000Z" - }, - { - "title": "Police dog Ronnie retires after crime-fighting career in Bristol", - "link": "https://www.bbc.co.uk/news/uk-england-bristol-67876206?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 18:17:59 GMT", - "content": "Ronnie also helped locate missing people and protected world leaders at the G7 summit.", - "contentSnippet": "Ronnie also helped locate missing people and protected world leaders at the G7 summit.", - "guid": "https://www.bbc.co.uk/news/uk-england-bristol-67876206", - "isoDate": "2024-01-03T18:17:59.000Z" - }, - { - "title": "Storm Henk: Billing Aquadrome evacuated after severe flooding", - "link": "https://www.bbc.co.uk/news/uk-67875840?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 16:41:34 GMT", - "content": "Parts of the East Midlands have been severely affected by flooding and strong winds, brought by Storm Henk.", - "contentSnippet": "Parts of the East Midlands have been severely affected by flooding and strong winds, brought by Storm Henk.", - "guid": "https://www.bbc.co.uk/news/uk-67875840", - "isoDate": "2024-01-03T16:41:34.000Z" - }, - { - "title": "Tory MP Nadhim Zahawi plays himself in Post Office scandal TV drama", - "link": "https://www.bbc.co.uk/news/uk-politics-67873197?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 15:36:34 GMT", - "content": "The former chancellor plays himself putting tough questions to then-chief executive Paula Vennells.", - "contentSnippet": "The former chancellor plays himself putting tough questions to then-chief executive Paula Vennells.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67873197", - "isoDate": "2024-01-03T15:36:34.000Z" - }, - { - "title": "Wayne Rooney: Is this the end of sacked Birmingham City boss as a manager?", - "link": "https://www.bbc.co.uk/sport/football/67870899?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 15:22:32 GMT", - "content": "With Premier League and EFL club options looking thin, what does Wayne Rooney's managerial future look like following his sacking by Birmingham City after just 83 days?", - "contentSnippet": "With Premier League and EFL club options looking thin, what does Wayne Rooney's managerial future look like following his sacking by Birmingham City after just 83 days?", - "guid": "https://www.bbc.co.uk/sport/football/67870899", - "isoDate": "2024-01-03T15:22:32.000Z" - }, - { - "title": "Granton shooting: Murdered man Marc Webley told enemies 'come and get it'", - "link": "https://www.bbc.co.uk/news/uk-scotland-edinburgh-east-fife-67871340?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 15:17:22 GMT", - "content": "Marc Webley used social media videos to goad his rivals before his murder on Hogmanay.", - "contentSnippet": "Marc Webley used social media videos to goad his rivals before his murder on Hogmanay.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-edinburgh-east-fife-67871340", - "isoDate": "2024-01-03T15:17:22.000Z" - }, - { - "title": "Luke Littler: Friends and supporters tell of pride ahead of final", - "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67872291?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 14:44:56 GMT", - "content": "Luke Littler fever has gripped the nation as the teenage darts sensation prepares for his big clash.", - "contentSnippet": "Luke Littler fever has gripped the nation as the teenage darts sensation prepares for his big clash.", - "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67872291", - "isoDate": "2024-01-03T14:44:56.000Z" - }, - { - "title": "Dramatic rescue of woman and child submerged in car in Birmingham during Storm Henk", - "link": "https://www.bbc.co.uk/news/uk-67870463?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 13:51:54 GMT", - "content": "Liam Stych told the BBC he was acting on \"instinct\" after spotting the trapped vehicle in Storm Henk.", - "contentSnippet": "Liam Stych told the BBC he was acting on \"instinct\" after spotting the trapped vehicle in Storm Henk.", - "guid": "https://www.bbc.co.uk/news/uk-67870463", - "isoDate": "2024-01-03T13:51:54.000Z" - }, - { - "title": "Luke Littler's local pub goers on darts teen's run to final", - "link": "https://www.bbc.co.uk/news/uk-67870462?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 10:56:26 GMT", - "content": "Ahead of Wednesday's PDC Championship final, the BBC spoke to the darts sensation's friends at his local pub.", - "contentSnippet": "Ahead of Wednesday's PDC Championship final, the BBC spoke to the darts sensation's friends at his local pub.", - "guid": "https://www.bbc.co.uk/news/uk-67870462", - "isoDate": "2024-01-03T10:56:26.000Z" - }, - { - "title": "Chart queens - seven of year's biggest singles were by women", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67862412?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 09:42:24 GMT", - "content": "But only one of the top 10 biggest-selling albums of 2023 was a new release, official figures show.", - "contentSnippet": "But only one of the top 10 biggest-selling albums of 2023 was a new release, official figures show.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67862412", - "isoDate": "2024-01-03T09:42:24.000Z" - }, - { - "title": "Plane wobbles during Storm Henk while landing at Heathrow airport", - "link": "https://www.bbc.co.uk/news/uk-67870459?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 06:39:45 GMT", - "content": "The Air Astana flight was one of a number that had an unsteady landing in high winds at Heathrow.", - "contentSnippet": "The Air Astana flight was one of a number that had an unsteady landing in high winds at Heathrow.", - "guid": "https://www.bbc.co.uk/news/uk-67870459", - "isoDate": "2024-01-03T06:39:45.000Z" - }, - { - "title": "Red Sea attacks: 'Our shipping costs have jumped 250%'", - "link": "https://www.bbc.co.uk/news/business-67865064?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 03 Jan 2024 00:01:44 GMT", - "content": "Business leaders say attacks on shipping vessels could cause delays and price rises for UK shoppers.", - "contentSnippet": "Business leaders say attacks on shipping vessels could cause delays and price rises for UK shoppers.", - "guid": "https://www.bbc.co.uk/news/business-67865064", - "isoDate": "2024-01-03T00:01:44.000Z" - }, - { - "title": "BBC Verify: Government's asylum figures show uncleared backlog ", - "link": "https://www.bbc.co.uk/news/uk-politics-67863380?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 02 Jan 2024 17:54:04 GMT", - "content": "Thousands of asylum applications made before June 2022 have still not received initial decisions.", - "contentSnippet": "Thousands of asylum applications made before June 2022 have still not received initial decisions.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67863380", - "isoDate": "2024-01-02T17:54:04.000Z" - }, - { - "title": "NHS Tracker: Find out about hospital waiting times in your area this winter", - "link": "https://www.bbc.co.uk/news/health-59549800?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 21 Dec 2023 11:10:43 GMT", - "content": "As the NHS enters 2024 and a difficult winter period, find out what's happening in your area.", - "contentSnippet": "As the NHS enters 2024 and a difficult winter period, find out what's happening in your area.", - "guid": "https://www.bbc.co.uk/news/health-59549800", - "isoDate": "2023-12-21T11:10:43.000Z" - }, - { - "title": "Liverpool: CCTV footage shows gunman firing in newsagents", - "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67879709?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:54:26 GMT", - "content": "The man has been arrested on suspicion of three shootings in 13 hours across the city.", - "contentSnippet": "The man has been arrested on suspicion of three shootings in 13 hours across the city.", - "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67879709", - "isoDate": "2024-01-04T10:54:26.000Z" - }, - { - "title": "Big difference between Labour and Tories, says Sir Keir Starmer", - "link": "https://www.bbc.co.uk/news/uk-politics-67880324?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 16:59:39 GMT", - "content": "The Labour leader sets out dividing lines with Rishi Sunak ahead of a general election later this year.", - "contentSnippet": "The Labour leader sets out dividing lines with Rishi Sunak ahead of a general election later this year.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67880324", - "isoDate": "2024-01-04T16:59:39.000Z" - }, - { - "title": "Storm Henk: Woman, 87, dies after car crashes into fallen tree", - "link": "https://www.bbc.co.uk/news/uk-england-oxfordshire-67885644?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 16:59:16 GMT", - "content": "Police say the crash happened on Tuesday evening in Oxfordshire amid Storm Henk.", - "contentSnippet": "Police say the crash happened on Tuesday evening in Oxfordshire amid Storm Henk.", - "guid": "https://www.bbc.co.uk/news/uk-england-oxfordshire-67885644", - "isoDate": "2024-01-04T16:59:16.000Z" - }, - { - "title": "BBC Verify: Would Labour spend \u00a328bn a year on green projects?", - "link": "https://www.bbc.co.uk/news/67801144?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 16:55:09 GMT", - "content": "What is Labour's green investment plan and what would it do to the UK economy?", - "contentSnippet": "What is Labour's green investment plan and what would it do to the UK economy?", - "guid": "https://www.bbc.co.uk/news/67801144", - "isoDate": "2024-01-04T16:55:09.000Z" - }, - { - "title": "Dog owners warned not to rehome banned XL bullies in Scotland", - "link": "https://www.bbc.co.uk/news/uk-scotland-67885918?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 16:51:47 GMT", - "content": "Dog owners warned against driving their animals over the border after new laws introduced in England and Wales.", - "contentSnippet": "Dog owners warned against driving their animals over the border after new laws introduced in England and Wales.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67885918", - "isoDate": "2024-01-04T16:51:47.000Z" - }, - { - "title": "Body found in search for missing Ayr woman", - "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67886494?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 16:45:14 GMT", - "content": "Laura Wilkie, 43, was last seen sitting on a bench in the town more than two weeks ago.", - "contentSnippet": "Laura Wilkie, 43, was last seen sitting on a bench in the town more than two weeks ago.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67886494", - "isoDate": "2024-01-04T16:45:14.000Z" - }, - { - "title": "Luke Littler selected for Premier League Darts after run to PDC World Championship final", - "link": "https://www.bbc.co.uk/sport/darts/67885526?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 16:40:34 GMT", - "content": "Luke Littler has been selected for Premier League Darts following his fairytale run to the final of the PDC World Championship.", - "contentSnippet": "Luke Littler has been selected for Premier League Darts following his fairytale run to the final of the PDC World Championship.", - "guid": "https://www.bbc.co.uk/sport/darts/67885526", - "isoDate": "2024-01-04T16:40:34.000Z" - }, - { - "title": "Baby formula recalled over bacteria contamination fears", - "link": "https://www.bbc.co.uk/news/uk-67880812?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 16:37:24 GMT", - "content": "Reckitt are recalling batches of Nutramigen powders after finding bacteria in an \"isolated overseas sample\".", - "contentSnippet": "Reckitt are recalling batches of Nutramigen powders after finding bacteria in an \"isolated overseas sample\".", - "guid": "https://www.bbc.co.uk/news/uk-67880812", - "isoDate": "2024-01-04T16:37:24.000Z" - }, - { - "title": "We need information not just cash to stop boats, France tells UK", - "link": "https://www.bbc.co.uk/news/uk-67883084?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 16:20:30 GMT", - "content": "A court in France says intelligence provided to police is often \"first level\" and \"very general\".", - "contentSnippet": "A court in France says intelligence provided to police is often \"first level\" and \"very general\".", - "guid": "https://www.bbc.co.uk/news/uk-67883084", - "isoDate": "2024-01-04T16:20:30.000Z" - }, - { - "title": "Sunderland's Jack Diamond says rape accuser initiated sex", - "link": "https://www.bbc.co.uk/news/uk-england-wear-67881690?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 16:03:18 GMT", - "content": "Jack Diamond denies raping and sexually assaulting a woman he met on a dating app.", - "contentSnippet": "Jack Diamond denies raping and sexually assaulting a woman he met on a dating app.", - "guid": "https://www.bbc.co.uk/news/uk-england-wear-67881690", - "isoDate": "2024-01-04T16:03:18.000Z" - }, - { - "title": "Sainsbury\u2019s increases pay as supermarkets battle for staff", - "link": "https://www.bbc.co.uk/news/business-67883985?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 15:52:16 GMT", - "content": "About 120,000 workers at the supermarket will see their wages increase by more than 9% from March.", - "contentSnippet": "About 120,000 workers at the supermarket will see their wages increase by more than 9% from March.", - "guid": "https://www.bbc.co.uk/news/business-67883985", - "isoDate": "2024-01-04T15:52:16.000Z" - }, - { - "title": "Nottinghamshire County Council declares major incident due to flooding", - "link": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67881913?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 15:33:23 GMT", - "content": "Nottinghamshire County Council says river levels could reach the highest on record from 2000.", - "contentSnippet": "Nottinghamshire County Council says river levels could reach the highest on record from 2000.", - "guid": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67881913", - "isoDate": "2024-01-04T15:33:23.000Z" - }, - { - "title": "Liverpool triple shooting suspect captured on CCTV opening fire", - "link": "https://www.bbc.co.uk/news/uk-67884241?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 14:47:45 GMT", - "content": "A man in Liverpool is thought to have fired shots in a corner shop, at a cinema and at a house.", - "contentSnippet": "A man in Liverpool is thought to have fired shots in a corner shop, at a cinema and at a house.", - "guid": "https://www.bbc.co.uk/news/uk-67884241", - "isoDate": "2024-01-04T14:47:45.000Z" - }, - { - "title": "Chris Mason: Has Sunak really ruled out a spring election?", - "link": "https://www.bbc.co.uk/news/uk-politics-67883767?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 14:47:23 GMT", - "content": "The PM's curious choice of words suggests he may still be keeping his options open.", - "contentSnippet": "The PM's curious choice of words suggests he may still be keeping his options open.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67883767", - "isoDate": "2024-01-04T14:47:23.000Z" - }, - { - "title": "Four extradited from France over Liverpool 'disturbance' stabbings", - "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67883469?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 14:41:14 GMT", - "content": "A \"large scale disturbance\" in Liverpool left four men with stab wounds or lacerations, police say.", - "contentSnippet": "A \"large scale disturbance\" in Liverpool left four men with stab wounds or lacerations, police say.", - "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67883469", - "isoDate": "2024-01-04T14:41:14.000Z" - }, - { - "title": "Child abuse ring warned of potential life sentence", - "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67883859?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 14:30:20 GMT", - "content": "Seven people were convicted in what is believed to be the largest prosecution of its kind in Scotland.", - "contentSnippet": "Seven people were convicted in what is believed to be the largest prosecution of its kind in Scotland.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67883859", - "isoDate": "2024-01-04T14:30:20.000Z" - }, - { - "title": "Sunak suggests election in second half of year", - "link": "https://www.bbc.co.uk/news/uk-politics-67883242?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 14:04:18 GMT", - "content": "The PM seeks to dampen speculation about a May general election saying he has lots to \"get on with\".", - "contentSnippet": "The PM seeks to dampen speculation about a May general election saying he has lots to \"get on with\".", - "guid": "https://www.bbc.co.uk/news/uk-politics-67883242", - "isoDate": "2024-01-04T14:04:18.000Z" - }, - { - "title": "Storm Henk-hit farmers call for stronger river defences", - "link": "https://www.bbc.co.uk/news/science-environment-67877086?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 13:52:17 GMT", - "content": "Thousands of acres of crops and productive farmland are under water thanks to Storm Henk's flooding.", - "contentSnippet": "Thousands of acres of crops and productive farmland are under water thanks to Storm Henk's flooding.", - "guid": "https://www.bbc.co.uk/news/science-environment-67877086", - "isoDate": "2024-01-04T13:52:17.000Z" - }, - { - "title": "Hemel Hempstead multi-vehicle collision after police pursuit", - "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67881903?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 13:50:25 GMT", - "content": "Police helicopter aids in arrests after driver flees from scene of multi-vehicle crash on foot.", - "contentSnippet": "Police helicopter aids in arrests after driver flees from scene of multi-vehicle crash on foot.", - "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67881903", - "isoDate": "2024-01-04T13:50:25.000Z" - }, - { - "title": "Sir Frank Kitson: Ex-army chief that served in Northern Ireland dies", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67879891?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 12:59:00 GMT", - "content": "General Sir Frank Kitson was a controversial figure for tactics used in the Troubles' early years.", - "contentSnippet": "General Sir Frank Kitson was a controversial figure for tactics used in the Troubles' early years.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67879891", - "isoDate": "2024-01-04T12:59:00.000Z" - }, - { - "title": "Tower of London: 'Adventurous' ravens have their wings clipped", - "link": "https://www.bbc.co.uk/news/uk-england-london-67881521?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 11:53:26 GMT", - "content": "Two ravens have been defying the ravenmaster by flying too far when released from the enclosure.", - "contentSnippet": "Two ravens have been defying the ravenmaster by flying too far when released from the enclosure.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67881521", - "isoDate": "2024-01-04T11:53:26.000Z" - }, - { - "title": "Grays house crash on Christmas Day: Man bailed", - "link": "https://www.bbc.co.uk/news/uk-england-essex-67881341?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:58:45 GMT", - "content": "Essex Police says the man remains on bail until 16 January while officers continue their inquiries.", - "contentSnippet": "Essex Police says the man remains on bail until 16 January while officers continue their inquiries.", - "guid": "https://www.bbc.co.uk/news/uk-england-essex-67881341", - "isoDate": "2024-01-04T10:58:45.000Z" - }, - { - "title": "Aberfan: Man in court over stabbing of pregnant woman", - "link": "https://www.bbc.co.uk/news/uk-wales-67880689?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:54:29 GMT", - "content": "Andrea Pintili was airlifted to hospital after being stabbed near her home in December.", - "contentSnippet": "Andrea Pintili was airlifted to hospital after being stabbed near her home in December.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67880689", - "isoDate": "2024-01-04T10:54:29.000Z" - }, - { - "title": "Glenn Quinn murder: Reward of \u00a340,000 to help catch man's killers", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67880105?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 10:33:44 GMT", - "content": "Glenn Quinn was found beaten to death in his Carrickfergus home in January 2020.", - "contentSnippet": "Glenn Quinn was found beaten to death in his Carrickfergus home in January 2020.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67880105", - "isoDate": "2024-01-04T10:33:44.000Z" - }, - { - "title": "Customers 'lose thousands' in Derby car dealership flood", - "link": "https://www.bbc.co.uk/news/uk-england-derbyshire-67866072?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 06:17:28 GMT", - "content": "Drivers whose cars were written off when a garage flooded say they have been left out of pocket.", - "contentSnippet": "Drivers whose cars were written off when a garage flooded say they have been left out of pocket.", - "guid": "https://www.bbc.co.uk/news/uk-england-derbyshire-67866072", - "isoDate": "2024-01-04T06:17:28.000Z" - }, - { - "title": "Scout leaders accept responsibility for teen's Great Orme death", - "link": "https://www.bbc.co.uk/news/uk-wales-67874462?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 17:13:50 GMT", - "content": "Lawyers for the Scout Association apologise to Ben Leonard's mother at his inquest.", - "contentSnippet": "Lawyers for the Scout Association apologise to Ben Leonard's mother at his inquest.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67874462", - "isoDate": "2024-01-04T17:13:50.000Z" - }, - { - "title": "Derek Draper: Kate Garraway says husband has died, aged 56", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67742004?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 13:36:39 GMT", - "content": "The former political adviser, had multiple health issues after first being hospitalised with Covid in 2020.", - "contentSnippet": "The former political adviser, had multiple health issues after first being hospitalised with Covid in 2020.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67742004", - "isoDate": "2024-01-05T13:36:39.000Z" - }, - { - "title": "Baftas 2024: Doctor Who star David Tennant to host ceremony", - "link": "https://www.bbc.co.uk/news/uk-scotland-67891357?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 13:04:34 GMT", - "content": "The Scottish actor takes over from Richard E Grant and Alison Hammond who hosted the 2023 ceremony.", - "contentSnippet": "The Scottish actor takes over from Richard E Grant and Alison Hammond who hosted the 2023 ceremony.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67891357", - "isoDate": "2024-01-05T13:04:34.000Z" - }, - { - "title": "Ruth Perry's sister 'reassured' by new Ofsted boss", - "link": "https://www.bbc.co.uk/news/education-67893382?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 13:01:39 GMT", - "content": "Sir Martyn Oliver recognises that \"profound change\" is needed at Ofsted, Julia Waters says.", - "contentSnippet": "Sir Martyn Oliver recognises that \"profound change\" is needed at Ofsted, Julia Waters says.", - "guid": "https://www.bbc.co.uk/news/education-67893382", - "isoDate": "2024-01-05T13:01:39.000Z" - }, - { - "title": "Man sentenced for homophobic attack on The Vivienne", - "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67866432?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 12:38:23 GMT", - "content": "The attacker received a 12-week suspended sentence for the attack in a Liverpool McDonald's.", - "contentSnippet": "The attacker received a 12-week suspended sentence for the attack in a Liverpool McDonald's.", - "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67866432", - "isoDate": "2024-01-05T12:38:23.000Z" - }, - { - "title": "Marc Webley murder: Man and woman arrested over shooting at Edinburgh pub", - "link": "https://www.bbc.co.uk/news/uk-scotland-edinburgh-east-fife-67890747?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 12:37:18 GMT", - "content": "Marc Webley was killed minutes before midnight on Hogmanay near the Anchor Inn in the Granton area.", - "contentSnippet": "Marc Webley was killed minutes before midnight on Hogmanay near the Anchor Inn in the Granton area.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-edinburgh-east-fife-67890747", - "isoDate": "2024-01-05T12:37:18.000Z" - }, - { - "title": "Benefits Street 10 years on - what has changed?", - "link": "https://www.bbc.co.uk/news/uk-england-birmingham-67882913?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 12:23:44 GMT", - "content": "The controversial Channel 4 programme aired its first episode on 6 January 2014.", - "contentSnippet": "The controversial Channel 4 programme aired its first episode on 6 January 2014.", - "guid": "https://www.bbc.co.uk/news/uk-england-birmingham-67882913", - "isoDate": "2024-01-05T12:23:44.000Z" - }, - { - "title": "Hundreds evacuated from homes after flooding", - "link": "https://www.bbc.co.uk/news/uk-67888959?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 11:58:04 GMT", - "content": "There are around 280 flood warnings in place as several rivers in England burst their banks.", - "contentSnippet": "There are around 280 flood warnings in place as several rivers in England burst their banks.", - "guid": "https://www.bbc.co.uk/news/uk-67888959", - "isoDate": "2024-01-05T11:58:04.000Z" - }, - { - "title": "London flooding: Floating bar sinks during Storm Henk", - "link": "https://www.bbc.co.uk/news/uk-england-london-67889961?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 11:58:04 GMT", - "content": "Onlookers watched as the party boat began to sink in the River Thames late on Thursday afternoon.", - "contentSnippet": "Onlookers watched as the party boat began to sink in the River Thames late on Thursday afternoon.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67889961", - "isoDate": "2024-01-05T11:58:04.000Z" - }, - { - "title": "Bridgend: Two charged over babies' bodies found in Wildmill", - "link": "https://www.bbc.co.uk/news/uk-wales-67891981?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 10:41:24 GMT", - "content": "The bodies of two babies were found in a home in Bridgend in November 2022.", - "contentSnippet": "The bodies of two babies were found in a home in Bridgend in November 2022.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67891981", - "isoDate": "2024-01-05T10:41:24.000Z" - }, - { - "title": "Telegraph takeover: Gulf bidders promise press freedom", - "link": "https://www.bbc.co.uk/news/business-67874362?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 10:19:27 GMT", - "content": "The fund, run by CNN ex-boss Jeff Zucker, has told the BBC it would be a responsible owner of the titles.", - "contentSnippet": "The fund, run by CNN ex-boss Jeff Zucker, has told the BBC it would be a responsible owner of the titles.", - "guid": "https://www.bbc.co.uk/news/business-67874362", - "isoDate": "2024-01-05T10:19:27.000Z" - }, - { - "title": "Loch Ness hydro power 'gold rush' branded a disaster", - "link": "https://www.bbc.co.uk/news/uk-scotland-67875061?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 10:00:18 GMT", - "content": "Campaigners say a third pumped storage scheme could threaten salmon by lowering water levels by more than two feet.", - "contentSnippet": "Campaigners say a third pumped storage scheme could threaten salmon by lowering water levels by more than two feet.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67875061", - "isoDate": "2024-01-05T10:00:18.000Z" - }, - { - "title": "Harry Pitman: Two arrested over fatal stabbing", - "link": "https://www.bbc.co.uk/news/uk-england-london-67891007?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 09:57:22 GMT", - "content": "A 16-year-old and 17-year-old are arrested on suspicion of murder and remain in custody.", - "contentSnippet": "A 16-year-old and 17-year-old are arrested on suspicion of murder and remain in custody.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67891007", - "isoDate": "2024-01-05T09:57:22.000Z" - }, - { - "title": "Prescription drugs sold online without 'robust' checks", - "link": "https://www.bbc.co.uk/news/health-67714023?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 09:55:05 GMT", - "content": "More than 1,600 pills were bought by the BBC by entering false information online without challenge.", - "contentSnippet": "More than 1,600 pills were bought by the BBC by entering false information online without challenge.", - "guid": "https://www.bbc.co.uk/news/health-67714023", - "isoDate": "2024-01-05T09:55:05.000Z" - }, - { - "title": "Average mortgage rate lowest for nearly seven months", - "link": "https://www.bbc.co.uk/news/business-67881353?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 08:18:47 GMT", - "content": "Major lenders have started the year with rate cuts and brokers expect more to follow suit.", - "contentSnippet": "Major lenders have started the year with rate cuts and brokers expect more to follow suit.", - "guid": "https://www.bbc.co.uk/news/business-67881353", - "isoDate": "2024-01-05T08:18:47.000Z" - }, - { - "title": "Alan Whiteside: Search continues for missing Antrim man", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67877701?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 06:46:27 GMT", - "content": "An MLA says the community is very worried for Alan Whiteside, who went missing on 17 December.", - "contentSnippet": "An MLA says the community is very worried for Alan Whiteside, who went missing on 17 December.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67877701", - "isoDate": "2024-01-05T06:46:27.000Z" - }, - { - "title": "Soldier who shot child killed himself waiting for therapy", - "link": "https://www.bbc.co.uk/news/uk-wales-67880137?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 06:10:01 GMT", - "content": "George Du Preez was put at the \"back of the queue\" for help after he moved to Wales, his wife says.", - "contentSnippet": "George Du Preez was put at the \"back of the queue\" for help after he moved to Wales, his wife says.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67880137", - "isoDate": "2024-01-05T06:10:01.000Z" - }, - { - "title": "Saltburn: Murder on the Dancefloor success 'magical', says Sophie Ellis-Bextor", - "link": "https://www.bbc.co.uk/news/newsbeat-67881277?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 01:09:07 GMT", - "content": "Sophie Ellis-Bextor on Murder on the Dancefloor's viral success, over 20 years after it first charted.", - "contentSnippet": "Sophie Ellis-Bextor on Murder on the Dancefloor's viral success, over 20 years after it first charted.", - "guid": "https://www.bbc.co.uk/news/newsbeat-67881277", - "isoDate": "2024-01-05T01:09:07.000Z" - }, - { - "title": "Spice Girls to feature on commemorative set of stamps for 30th anniversary", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67882101?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 00:09:27 GMT", - "content": "It is the first time Royal Mail has dedicated an entire stamp issue to a female pop group.", - "contentSnippet": "It is the first time Royal Mail has dedicated an entire stamp issue to a female pop group.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67882101", - "isoDate": "2024-01-05T00:09:27.000Z" - }, - { - "title": "The Last Dinner Party win BBC Radio 1's Sound Of 2024", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67880301?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 05 Jan 2024 00:00:25 GMT", - "content": "The indie-rock band top the annual BBC poll, which has a track record of predicting breakout success.", - "contentSnippet": "The indie-rock band top the annual BBC poll, which has a track record of predicting breakout success.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67880301", - "isoDate": "2024-01-05T00:00:25.000Z" - }, - { - "title": "Mary Poppins actress Glynis Johns dies aged 100", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67888244?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 23:26:27 GMT", - "content": "The British actress is widely known for playing Winifred Banks in the 1964 Disney musical.", - "contentSnippet": "The British actress is widely known for playing Winifred Banks in the 1964 Disney musical.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67888244", - "isoDate": "2024-01-04T23:26:27.000Z" - }, - { - "title": "Flooding: Man builds his own defence wall to protect home", - "link": "https://www.bbc.co.uk/news/uk-67888641?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 20:59:16 GMT", - "content": "Nick Lupton's home, by the River Severn in Worcestershire, has been flooded eleven times since 2016.", - "contentSnippet": "Nick Lupton's home, by the River Severn in Worcestershire, has been flooded eleven times since 2016.", - "guid": "https://www.bbc.co.uk/news/uk-67888641", - "isoDate": "2024-01-04T20:59:16.000Z" - }, - { - "title": "Former gang member warns Kent children about drug gangs", - "link": "https://www.bbc.co.uk/news/uk-england-kent-67884805?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 04 Jan 2024 18:15:35 GMT", - "content": "A former gang member is warning children about being groomed into a life of crime.", - "contentSnippet": "A former gang member is warning children about being groomed into a life of crime.", - "guid": "https://www.bbc.co.uk/news/uk-england-kent-67884805", - "isoDate": "2024-01-04T18:15:35.000Z" - }, - { - "title": "Jury error leads to Old Bailey murder trial verdict confusion", - "link": "https://www.bbc.co.uk/news/uk-england-london-67949523?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 20:45:44 GMT", - "content": "Three men accused of murder are left not knowing whether they have been found innocent or guilty.", - "contentSnippet": "Three men accused of murder are left not knowing whether they have been found innocent or guilty.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67949523", - "isoDate": "2024-01-11T20:45:44.000Z" - }, - { - "title": "Ex-postmistress says she 'blames people, not computers'", - "link": "https://www.bbc.co.uk/news/uk-england-somerset-67946228?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 20:05:22 GMT", - "content": "Gail Ward was falsely accused and convicted of stealing more than \u00a312,000 from the Post Office.", - "contentSnippet": "Gail Ward was falsely accused and convicted of stealing more than \u00a312,000 from the Post Office.", - "guid": "https://www.bbc.co.uk/news/uk-england-somerset-67946228", - "isoDate": "2024-01-11T20:05:22.000Z" - }, - { - "title": "West Belfast murders: PSNI 'unable or unwilling' to deal with criminal gangs", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67946780?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 19:53:26 GMT", - "content": "A west Belfast priest says more needs to be done by the PSNI after a series of murders in the city.", - "contentSnippet": "A west Belfast priest says more needs to be done by the PSNI after a series of murders in the city.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67946780", - "isoDate": "2024-01-11T19:53:26.000Z" - }, - { - "title": "Post Office scandal: Investigator denies claims of 'mafia' behaviour", - "link": "https://www.bbc.co.uk/news/uk-67946140?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 19:48:38 GMT", - "content": "Stephen Bradshaw comes face to face with sub-postmasters he investigated at the Horizon scandal inquiry.", - "contentSnippet": "Stephen Bradshaw comes face to face with sub-postmasters he investigated at the Horizon scandal inquiry.", - "guid": "https://www.bbc.co.uk/news/uk-67946140", - "isoDate": "2024-01-11T19:48:38.000Z" - }, - { - "title": "Minister Alex Burghart seeks to avoid outsourcing AI projects to tech firms", - "link": "https://www.bbc.co.uk/news/uk-politics-67944529?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 18:55:11 GMT", - "content": "Cabinet Office minister Alex Burghart says he wants build up the government's in-house expertise instead.", - "contentSnippet": "Cabinet Office minister Alex Burghart says he wants build up the government's in-house expertise instead.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67944529", - "isoDate": "2024-01-11T18:55:11.000Z" - }, - { - "title": "I didn't know about Horizon prosecutions, says Keir Starmer", - "link": "https://www.bbc.co.uk/news/uk-politics-67950501?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 18:23:25 GMT", - "content": "The Labour leader says the Crown Prosecution Service he led handled a total of four million cases.", - "contentSnippet": "The Labour leader says the Crown Prosecution Service he led handled a total of four million cases.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67950501", - "isoDate": "2024-01-11T18:23:25.000Z" - }, - { - "title": "Ex-Post Office investigator: I was not technically minded", - "link": "https://www.bbc.co.uk/news/uk-67952199?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 17:50:57 GMT", - "content": "Stephen Bradshaw is questioned at the public inquiry about the problems with the Horizon IT system.", - "contentSnippet": "Stephen Bradshaw is questioned at the public inquiry about the problems with the Horizon IT system.", - "guid": "https://www.bbc.co.uk/news/uk-67952199", - "isoDate": "2024-01-11T17:50:57.000Z" - }, - { - "title": "Prince William surprises Rob Burrow and Kevin Sinfield with CBEs", - "link": "https://www.bbc.co.uk/news/uk-england-leeds-67949217?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 17:26:19 GMT", - "content": "The prince praised their \"outstanding efforts\" during their motor neurone disease charity fundraising.", - "contentSnippet": "The prince praised their \"outstanding efforts\" during their motor neurone disease charity fundraising.", - "guid": "https://www.bbc.co.uk/news/uk-england-leeds-67949217", - "isoDate": "2024-01-11T17:26:19.000Z" - }, - { - "title": "Haverfordwest: Woman in murder arrest after boy, seven, dies", - "link": "https://www.bbc.co.uk/news/uk-wales-67944588?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 17:07:16 GMT", - "content": "Police are investigating the circumstances surrounding the boy's death and the woman is in custody.", - "contentSnippet": "Police are investigating the circumstances surrounding the boy's death and the woman is in custody.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67944588", - "isoDate": "2024-01-11T17:07:16.000Z" - }, - { - "title": "Crown faces questions over Post Office prosecutions in Scotland", - "link": "https://www.bbc.co.uk/news/uk-scotland-67945208?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 16:52:49 GMT", - "content": "It comes as a further two former postmasters in Scotland have their convictions overturned.", - "contentSnippet": "It comes as a further two former postmasters in Scotland have their convictions overturned.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67945208", - "isoDate": "2024-01-11T16:52:49.000Z" - }, - { - "title": "Aberystwyth: 'Go back to Brummyland' note a hate crime - police", - "link": "https://www.bbc.co.uk/news/uk-wales-67935426?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 16:47:32 GMT", - "content": "Police treat the note as a hate crime which has distressed people in the house where it was left.", - "contentSnippet": "Police treat the note as a hate crime which has distressed people in the house where it was left.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67935426", - "isoDate": "2024-01-11T16:47:32.000Z" - }, - { - "title": "Pass rate falls for GCSE maths resits in England", - "link": "https://www.bbc.co.uk/news/education-67937273?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 15:03:43 GMT", - "content": "However, the pass rate for GCSE English resits went up from the rates in recent years.", - "contentSnippet": "However, the pass rate for GCSE English resits went up from the rates in recent years.", - "guid": "https://www.bbc.co.uk/news/education-67937273", - "isoDate": "2024-01-11T15:03:43.000Z" - }, - { - "title": "The key NHS targets that have never been met", - "link": "https://www.bbc.co.uk/news/health-67884322?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 14:58:18 GMT", - "content": "BBC News finds key NHS targets have been missed for at least seven years - and two have never been met.", - "contentSnippet": "BBC News finds key NHS targets have been missed for at least seven years - and two have never been met.", - "guid": "https://www.bbc.co.uk/news/health-67884322", - "isoDate": "2024-01-11T14:58:18.000Z" - }, - { - "title": "Scotland to replicate ban on XL bully dogs - Yousaf", - "link": "https://www.bbc.co.uk/news/uk-scotland-67948509?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 14:33:54 GMT", - "content": "The first minister said the UK government's ban was announced without consulting the Scottish government.", - "contentSnippet": "The first minister said the UK government's ban was announced without consulting the Scottish government.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67948509", - "isoDate": "2024-01-11T14:33:54.000Z" - }, - { - "title": "Government announces by-elections in two Tory-held constituencies", - "link": "https://www.bbc.co.uk/news/uk-politics-67943546?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 14:30:33 GMT", - "content": "Voters will go the polls on Thursday 15 February in Wellingborough, with Kingswood vote expected the same day.", - "contentSnippet": "Voters will go the polls on Thursday 15 February in Wellingborough, with Kingswood vote expected the same day.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67943546", - "isoDate": "2024-01-11T14:30:33.000Z" - }, - { - "title": "St Helens driver who left girlfriend to die after crash jailed", - "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67945864?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 14:00:32 GMT", - "content": "Kevin Marsh crashed his car into a bin lorry, killing mother-of-four Michelle Atherton in St Helens.", - "contentSnippet": "Kevin Marsh crashed his car into a bin lorry, killing mother-of-four Michelle Atherton in St Helens.", - "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67945864", - "isoDate": "2024-01-11T14:00:32.000Z" - }, - { - "title": "FKA twigs: Calvin Klein ad ban shows 'double standards'", - "link": "https://www.bbc.co.uk/news/newsbeat-67938624?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 13:34:17 GMT", - "content": "The singer, who appeared in a withdrawn campaign for the brand, says it shows \"double standards\".", - "contentSnippet": "The singer, who appeared in a withdrawn campaign for the brand, says it shows \"double standards\".", - "guid": "https://www.bbc.co.uk/news/newsbeat-67938624", - "isoDate": "2024-01-11T13:34:17.000Z" - }, - { - "title": "Wimbledon: Electric double-decker bus catches fire during rush hour", - "link": "https://www.bbc.co.uk/news/uk-england-london-67944657?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 13:02:07 GMT", - "content": "Police declared a critical incident after the electric bus caught fire in Wimbledon.", - "contentSnippet": "Police declared a critical incident after the electric bus caught fire in Wimbledon.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67944657", - "isoDate": "2024-01-11T13:02:07.000Z" - }, - { - "title": "Wimbledon: Electric double-decker bus catches fire during London rush hour", - "link": "https://www.bbc.co.uk/news/uk-67943798?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 11:24:29 GMT", - "content": "No injuries have been reported but a critical incident was declared, police said.", - "contentSnippet": "No injuries have been reported but a critical incident was declared, police said.", - "guid": "https://www.bbc.co.uk/news/uk-67943798", - "isoDate": "2024-01-11T11:24:29.000Z" - }, - { - "title": "BBC Weather shares forecasts from the past as it turns 70", - "link": "https://www.bbc.co.uk/news/uk-67945557?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 11:08:51 GMT", - "content": "See how presenting styles, technology and fashion have changed on BBC Weather over the decades.", - "contentSnippet": "See how presenting styles, technology and fashion have changed on BBC Weather over the decades.", - "guid": "https://www.bbc.co.uk/news/uk-67945557", - "isoDate": "2024-01-11T11:08:51.000Z" - }, - { - "title": "Tesco and M&S report strong Christmas sales", - "link": "https://www.bbc.co.uk/news/business-67943105?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 10:31:58 GMT", - "content": "Both retailers beat expectations for the key festive period as overall food prices remain high.", - "contentSnippet": "Both retailers beat expectations for the key festive period as overall food prices remain high.", - "guid": "https://www.bbc.co.uk/news/business-67943105", - "isoDate": "2024-01-11T10:31:58.000Z" - }, - { - "title": "A look back at 70 years of BBC TV weather broadcasts", - "link": "https://www.bbc.co.uk/weather/features/67934533?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 08:59:26 GMT", - "content": "To mark the 70th anniversary of BBC TV weather broadcasts, meteorologist Matt Taylor takes a look at the huge changes over the decades.", - "contentSnippet": "To mark the 70th anniversary of BBC TV weather broadcasts, meteorologist Matt Taylor takes a look at the huge changes over the decades.", - "guid": "https://www.bbc.co.uk/weather/features/67934533", - "isoDate": "2024-01-11T08:59:26.000Z" - }, - { - "title": "Rennie Mackintosh tea rooms saved for the nation", - "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67938329?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 06:18:28 GMT", - "content": "The architect's last surviving original tearoom was restored five years ago but has struggled financially.", - "contentSnippet": "The architect's last surviving original tearoom was restored five years ago but has struggled financially.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67938329", - "isoDate": "2024-01-11T06:18:28.000Z" - }, - { - "title": "'We lost everything in Post Office scandal'", - "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67938976?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 06:05:52 GMT", - "content": "Amanda and Norman Barber, convicted in the Post Office scandal, lost their home, business and family.", - "contentSnippet": "Amanda and Norman Barber, convicted in the Post Office scandal, lost their home, business and family.", - "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67938976", - "isoDate": "2024-01-11T06:05:52.000Z" - }, - { - "title": "Friends scripts rescued from a studio bin to go under the hammer", - "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67936304?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 06:02:35 GMT", - "content": "The discarded scripts, used for two episodes filmed in England, were rescued from a bin in 1998.", - "contentSnippet": "The discarded scripts, used for two episodes filmed in England, were rescued from a bin in 1998.", - "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67936304", - "isoDate": "2024-01-11T06:02:35.000Z" - }, - { - "title": "NHS whole-gene screening helps tailor cancer care", - "link": "https://www.bbc.co.uk/news/health-67923268?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 02:37:17 GMT", - "content": "How cutting-edge cancer genomics is now being used in mainstream cancer care.", - "contentSnippet": "How cutting-edge cancer genomics is now being used in mainstream cancer care.", - "guid": "https://www.bbc.co.uk/news/health-67923268", - "isoDate": "2024-01-11T02:37:17.000Z" - }, - { - "title": "Kew Gardens names mysterious plants and fungi new to science", - "link": "https://www.bbc.co.uk/news/science-environment-67930823?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 02:22:28 GMT", - "content": "Kew scientists discovered nearly 100 new plants and fungi last year - but some may already be extinct.", - "contentSnippet": "Kew scientists discovered nearly 100 new plants and fungi last year - but some may already be extinct.", - "guid": "https://www.bbc.co.uk/news/science-environment-67930823", - "isoDate": "2024-01-11T02:22:28.000Z" - }, - { - "title": "Rape complainants warned pre-recording evidence could backfire", - "link": "https://www.bbc.co.uk/news/uk-67940103?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 02:00:31 GMT", - "content": "Convictions are lower when rape interviews and cross-examinations are pre-recorded, a study suggests.", - "contentSnippet": "Convictions are lower when rape interviews and cross-examinations are pre-recorded, a study suggests.", - "guid": "https://www.bbc.co.uk/news/uk-67940103", - "isoDate": "2024-01-11T02:00:31.000Z" - }, - { - "title": "Gladiators: The serious business behind ITV's prime-time 'panto'", - "link": "https://www.bbc.co.uk/news/uk-england-66878915?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 00:11:23 GMT", - "content": "The BBC's Gladiators reboot hits screens on Saturday, but can it match the show's 1990s success?", - "contentSnippet": "The BBC's Gladiators reboot hits screens on Saturday, but can it match the show's 1990s success?", - "guid": "https://www.bbc.co.uk/news/uk-england-66878915", - "isoDate": "2024-01-11T00:11:23.000Z" - }, - { - "title": "Boohoo put 'Made in UK' labels on clothes made overseas", - "link": "https://www.bbc.co.uk/news/uk-67929755?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 11 Jan 2024 00:03:44 GMT", - "content": "T-shirts from Pakistan had their labels swapped by workers in fashion firm\u2019s Leicester factory last year.", - "contentSnippet": "T-shirts from Pakistan had their labels swapped by workers in fashion firm\u2019s Leicester factory last year.", - "guid": "https://www.bbc.co.uk/news/uk-67929755", - "isoDate": "2024-01-11T00:03:44.000Z" - }, - { - "title": "Former sub-postmasters and post-mistresses talk to BBC about Post Office scandal", - "link": "https://www.bbc.co.uk/news/uk-67936075?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 10 Jan 2024 12:23:40 GMT", - "content": "Tom Hedges from Skegness says his and his family's lives were \"wrecked\" by the wrongful accusations", - "contentSnippet": "Tom Hedges from Skegness says his and his family's lives were \"wrecked\" by the wrongful accusations", - "guid": "https://www.bbc.co.uk/news/uk-67936075", - "isoDate": "2024-01-10T12:23:40.000Z" - }, - { - "title": "Norfolk: Laser shone at air ambulance helicopter over Attleborough", - "link": "https://www.bbc.co.uk/news/uk-england-norfolk-67926839?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 09 Jan 2024 14:39:19 GMT", - "content": "Video shows a bright green flashing at the aircraft, an offence officials say could endanger lives.", - "contentSnippet": "Video shows a bright green flashing at the aircraft, an offence officials say could endanger lives.", - "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-67926839", - "isoDate": "2024-01-09T14:39:19.000Z" - }, - { - "title": "What are cold weather payments and how much are they worth?", - "link": "https://www.bbc.co.uk/news/business-55992592?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 09 Jan 2024 14:01:21 GMT", - "content": "Cold weather payments are available to some people after seven days of below-zero temperatures.", - "contentSnippet": "Cold weather payments are available to some people after seven days of below-zero temperatures.", - "guid": "https://www.bbc.co.uk/news/business-55992592", - "isoDate": "2024-01-09T14:01:21.000Z" - }, - { - "title": "Rishi Sunak rebuked by stats watchdog over asylum backlog claim", - "link": "https://www.bbc.co.uk/news/uk-politics-68017887?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 12:18:02 GMT", - "content": "People may have felt misled by the PM's claims to have cleared a claims backlog, the watchdog says.", - "contentSnippet": "People may have felt misled by the PM's claims to have cleared a claims backlog, the watchdog says.", - "guid": "https://www.bbc.co.uk/news/uk-politics-68017887", - "isoDate": "2024-01-18T12:18:02.000Z" - }, - { - "title": "UK weather: Warnings in place after coldest night of winter so far", - "link": "https://www.bbc.co.uk/news/uk-68001525?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 12:17:51 GMT", - "content": "England, Wales and Northern Ireland record their coldest night of this winter so far.", - "contentSnippet": "England, Wales and Northern Ireland record their coldest night of this winter so far.", - "guid": "https://www.bbc.co.uk/news/uk-68001525", - "isoDate": "2024-01-18T12:17:51.000Z" - }, - { - "title": "Endangered western lowland gorilla born at London Zoo", - "link": "https://www.bbc.co.uk/news/uk-england-london-68017713?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 12:04:00 GMT", - "content": "The infant's mother gave birth on Wednesday after an eight-and-a-half month pregnancy.", - "contentSnippet": "The infant's mother gave birth on Wednesday after an eight-and-a-half month pregnancy.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-68017713", - "isoDate": "2024-01-18T12:04:00.000Z" - }, - { - "title": "Wales weather: Schools closed as snow causes disruption", - "link": "https://www.bbc.co.uk/news/uk-wales-68016374?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 11:51:23 GMT", - "content": "More than 50 schools in west and north Wales are closed on Thursday after snowfall.", - "contentSnippet": "More than 50 schools in west and north Wales are closed on Thursday after snowfall.", - "guid": "https://www.bbc.co.uk/news/uk-wales-68016374", - "isoDate": "2024-01-18T11:51:23.000Z" - }, - { - "title": "Thousands of public sector workers in Northern Ireland stage mass strike", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67981000?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 11:50:41 GMT", - "content": "The strike is causing disruption for health services, schools and public transport.", - "contentSnippet": "The strike is causing disruption for health services, schools and public transport.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67981000", - "isoDate": "2024-01-18T11:50:41.000Z" - }, - { - "title": "Fujitsu rules itself out of UK public contract bids during Post Office inquiry", - "link": "https://www.bbc.co.uk/news/business-68017571?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 11:47:19 GMT", - "content": "The firm is part of an inquiry into how hundreds of Post Office managers were wrongly prosecuted.", - "contentSnippet": "The firm is part of an inquiry into how hundreds of Post Office managers were wrongly prosecuted.", - "guid": "https://www.bbc.co.uk/news/business-68017571", - "isoDate": "2024-01-18T11:47:19.000Z" - }, - { - "title": "Bibby Stockholm: Government considers more migrant barges", - "link": "https://www.bbc.co.uk/news/uk-england-dorset-68013203?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 11:25:05 GMT", - "content": "There is controversy over living conditions on board the Bibby Stockholm.", - "contentSnippet": "There is controversy over living conditions on board the Bibby Stockholm.", - "guid": "https://www.bbc.co.uk/news/uk-england-dorset-68013203", - "isoDate": "2024-01-18T11:25:05.000Z" - }, - { - "title": "Welsh independence: Leaving UK is viable, says new report", - "link": "https://www.bbc.co.uk/news/uk-wales-politics-67949443?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 11:19:15 GMT", - "content": "But experts warns Wales would face a \"significant\" challenge raising enough tax revenue.", - "contentSnippet": "But experts warns Wales would face a \"significant\" challenge raising enough tax revenue.", - "guid": "https://www.bbc.co.uk/news/uk-wales-politics-67949443", - "isoDate": "2024-01-18T11:19:15.000Z" - }, - { - "title": "Wakefield: Woman dies after falling from moving van", - "link": "https://www.bbc.co.uk/news/uk-england-leeds-68016648?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 11:00:47 GMT", - "content": "Police say a man has been arrested on suspicion of causing her death by dangerous driving.", - "contentSnippet": "Police say a man has been arrested on suspicion of causing her death by dangerous driving.", - "guid": "https://www.bbc.co.uk/news/uk-england-leeds-68016648", - "isoDate": "2024-01-18T11:00:47.000Z" - }, - { - "title": "Train ticket machines charging double online price", - "link": "https://www.bbc.co.uk/news/business-68009768?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 10:50:21 GMT", - "content": "Which? has said the best value fares are either unavailable or hidden among myriad of options.", - "contentSnippet": "Which? has said the best value fares are either unavailable or hidden among myriad of options.", - "guid": "https://www.bbc.co.uk/news/business-68009768", - "isoDate": "2024-01-18T10:50:21.000Z" - }, - { - "title": "The James Blunt museum that fits in a phone box", - "link": "https://www.bbc.co.uk/news/uk-england-hereford-worcester-68017130?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 09:57:27 GMT", - "content": "Mystery surrounds a pop-up tribute to the singer who has said entry is free to both his fans.", - "contentSnippet": "Mystery surrounds a pop-up tribute to the singer who has said entry is free to both his fans.", - "guid": "https://www.bbc.co.uk/news/uk-england-hereford-worcester-68017130", - "isoDate": "2024-01-18T09:57:27.000Z" - }, - { - "title": "Manchester death crash driver sped at three times 30mph limit", - "link": "https://www.bbc.co.uk/news/uk-england-manchester-68012988?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 09:42:42 GMT", - "content": "Jonathan Langston's family feel \"let down\" at Adeel Safdar's jail term after his \"horrific actions\".", - "contentSnippet": "Jonathan Langston's family feel \"let down\" at Adeel Safdar's jail term after his \"horrific actions\".", - "guid": "https://www.bbc.co.uk/news/uk-england-manchester-68012988", - "isoDate": "2024-01-18T09:42:42.000Z" - }, - { - "title": "Rishi Sunak sees off Conservative rebels as MPs back Rwanda bill", - "link": "https://www.bbc.co.uk/news/uk-politics-68009249?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 09:39:59 GMT", - "content": "The legislation will now head to the House of Lords where it is expected to face stiff opposition.", - "contentSnippet": "The legislation will now head to the House of Lords where it is expected to face stiff opposition.", - "guid": "https://www.bbc.co.uk/news/uk-politics-68009249", - "isoDate": "2024-01-18T09:39:59.000Z" - }, - { - "title": "Mobo Awards: Reality TV stars 'privileged to host big ceremony'", - "link": "https://www.bbc.co.uk/news/newsbeat-67979386?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 09:34:30 GMT", - "content": "Indiyah Polack and Babatunde Al\u00e9sh\u00e9 will be the hosts of this year's event, being held in Sheffield.", - "contentSnippet": "Indiyah Polack and Babatunde Al\u00e9sh\u00e9 will be the hosts of this year's event, being held in Sheffield.", - "guid": "https://www.bbc.co.uk/news/newsbeat-67979386", - "isoDate": "2024-01-18T09:34:30.000Z" - }, - { - "title": "Government school attendance campaign criticised by parents", - "link": "https://www.bbc.co.uk/news/uk-england-68006813?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 07:11:16 GMT", - "content": "The government's school attendance initiative is labelled as \"insulting\" and \"ableist\".", - "contentSnippet": "The government's school attendance initiative is labelled as \"insulting\" and \"ableist\".", - "guid": "https://www.bbc.co.uk/news/uk-england-68006813", - "isoDate": "2024-01-18T07:11:16.000Z" - }, - { - "title": "Brenda Page murder: The killer who thought he was too clever to be caught", - "link": "https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-67983653?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 06:36:50 GMT", - "content": "Christopher Harrisson was found guilty of murder 45 years after he killed his ex-wife, Dr Brenda Page.", - "contentSnippet": "Christopher Harrisson was found guilty of murder 45 years after he killed his ex-wife, Dr Brenda Page.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-67983653", - "isoDate": "2024-01-18T06:36:50.000Z" - }, - { - "title": "Prison officer wins payout over exposure to inmates' drugs", - "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67994987?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 06:16:38 GMT", - "content": "A Shotts Prison warden was left hallucinating and violent after inhaling drugs which were being taken by inmates.", - "contentSnippet": "A Shotts Prison warden was left hallucinating and violent after inhaling drugs which were being taken by inmates.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67994987", - "isoDate": "2024-01-18T06:16:38.000Z" - }, - { - "title": "Trains: \u00a32bn to re-open Carmarthen to Bangor lines", - "link": "https://www.bbc.co.uk/news/uk-wales-68003542?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 06:07:17 GMT", - "content": "A rail boss says improving train links between north and south Wales are \"very costly to develop\".", - "contentSnippet": "A rail boss says improving train links between north and south Wales are \"very costly to develop\".", - "guid": "https://www.bbc.co.uk/news/uk-wales-68003542", - "isoDate": "2024-01-18T06:07:17.000Z" - }, - { - "title": "Newspaper headlines: Rwanda 'revolt melts away' and Royals' 'health shock'", - "link": "https://www.bbc.co.uk/news/blogs-the-papers-68014185?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 05:53:39 GMT", - "content": "The survival of the Rwanda bill and health news from the King and Princess of Wales lead the papers.", - "contentSnippet": "The survival of the Rwanda bill and health news from the King and Princess of Wales lead the papers.", - "guid": "https://www.bbc.co.uk/news/blogs-the-papers-68014185", - "isoDate": "2024-01-18T05:53:39.000Z" - }, - { - "title": "'I've lost over \u00a34,000 because of the ADHD tax'", - "link": "https://www.bbc.co.uk/news/disability-67945367?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 01:54:45 GMT", - "content": "The cost of replacing lost items or misreading information can be costly for those with ADHD.", - "contentSnippet": "The cost of replacing lost items or misreading information can be costly for those with ADHD.", - "guid": "https://www.bbc.co.uk/news/disability-67945367", - "isoDate": "2024-01-18T01:54:45.000Z" - }, - { - "title": "Measles outbreak: Your questions answered", - "link": "https://www.bbc.co.uk/news/uk-england-birmingham-68007804?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 01:16:21 GMT", - "content": "Cases are rising across England, with health officials encouraging people to get vaccinated.", - "contentSnippet": "Cases are rising across England, with health officials encouraging people to get vaccinated.", - "guid": "https://www.bbc.co.uk/news/uk-england-birmingham-68007804", - "isoDate": "2024-01-18T01:16:21.000Z" - }, - { - "title": "How AI is helping to prevent three buses turning up at once", - "link": "https://www.bbc.co.uk/news/business-67993056?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 00:03:29 GMT", - "content": "Bus firms are now using artificial intelligence to design their timetables.", - "contentSnippet": "Bus firms are now using artificial intelligence to design their timetables.", - "guid": "https://www.bbc.co.uk/news/business-67993056", - "isoDate": "2024-01-18T00:03:29.000Z" - }, - { - "title": "Unseen images of code breaking computer that helped win WW2", - "link": "https://www.bbc.co.uk/news/technology-67997406?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 18 Jan 2024 00:02:41 GMT", - "content": "Intelligence agency GCHQ say pictures of Colossus a reminder of the UK ingenuity that helped defeat Hitler.", - "contentSnippet": "Intelligence agency GCHQ say pictures of Colossus a reminder of the UK ingenuity that helped defeat Hitler.", - "guid": "https://www.bbc.co.uk/news/technology-67997406", - "isoDate": "2024-01-18T00:02:41.000Z" - }, - { - "title": "Rwanda plan: What\u2019s next after Sunak wins vote?", - "link": "https://www.bbc.co.uk/news/uk-politics-68012008?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 21:40:20 GMT", - "content": "As Rishi Sunak\u2019s Rwanda plan passes a key vote, the BBC\u2019s Peter Saull explains what happens next.", - "contentSnippet": "As Rishi Sunak\u2019s Rwanda plan passes a key vote, the BBC\u2019s Peter Saull explains what happens next.", - "guid": "https://www.bbc.co.uk/news/uk-politics-68012008", - "isoDate": "2024-01-17T21:40:20.000Z" - }, - { - "title": "Sir Tony Lloyd: Rochdale Labour MP dies 'peacefully at home'", - "link": "https://www.bbc.co.uk/news/uk-england-manchester-68010501?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 21:15:21 GMT", - "content": "The Rochdale MP revealed just days ago he had an untreatable form of leukaemia.", - "contentSnippet": "The Rochdale MP revealed just days ago he had an untreatable form of leukaemia.", - "guid": "https://www.bbc.co.uk/news/uk-england-manchester-68010501", - "isoDate": "2024-01-17T21:15:21.000Z" - }, - { - "title": "Octopus Energy: Bills will fall in April, says boss", - "link": "https://www.bbc.co.uk/news/business-68013741?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 21:01:01 GMT", - "content": "The energy company says prices will fall due to lower international wholesale prices.", - "contentSnippet": "The energy company says prices will fall due to lower international wholesale prices.", - "guid": "https://www.bbc.co.uk/news/business-68013741", - "isoDate": "2024-01-17T21:01:01.000Z" - }, - { - "title": "Kate in hospital after surgery as King to get prostate treatment", - "link": "https://www.bbc.co.uk/news/uk-68012498?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 19:51:02 GMT", - "content": "The Princess of Wales will step back from royal duties for months and the King will attend hospital next week.", - "contentSnippet": "The Princess of Wales will step back from royal duties for months and the King will attend hospital next week.", - "guid": "https://www.bbc.co.uk/news/uk-68012498", - "isoDate": "2024-01-17T19:51:02.000Z" - }, - { - "title": "Ed Sheeran and Little Mix fans 'targeted in \u00a36.5m ticket fraud'", - "link": "https://www.bbc.co.uk/news/uk-england-norfolk-68011978?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 19:27:56 GMT", - "content": "Two people deny fraudulent trading of 47,000 event tickets over more than two years.", - "contentSnippet": "Two people deny fraudulent trading of 47,000 event tickets over more than two years.", - "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-68011978", - "isoDate": "2024-01-17T19:27:56.000Z" - }, - { - "title": "Inquiry after boy, 2, and dad found dead at home", - "link": "https://www.bbc.co.uk/news/uk-england-lincolnshire-68007571?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 18:25:38 GMT", - "content": "The deaths of Bronson Battersby and his dad Kenneth prompt a \"rapid review\" by Lincolnshire Council.", - "contentSnippet": "The deaths of Bronson Battersby and his dad Kenneth prompt a \"rapid review\" by Lincolnshire Council.", - "guid": "https://www.bbc.co.uk/news/uk-england-lincolnshire-68007571", - "isoDate": "2024-01-17T18:25:38.000Z" - }, - { - "title": "UK seeks urgent talks with Fujitsu on Horizon scandal", - "link": "https://www.bbc.co.uk/news/business-68010713?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 17:38:54 GMT", - "content": "The government begins process of setting up talks for possible compensation for sub-postmasters.", - "contentSnippet": "The government begins process of setting up talks for possible compensation for sub-postmasters.", - "guid": "https://www.bbc.co.uk/news/business-68010713", - "isoDate": "2024-01-17T17:38:54.000Z" - }, - { - "title": "Fly-tipping forces landowners to turn farms into 'forts'", - "link": "https://www.bbc.co.uk/news/science-environment-68007087?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 16:24:49 GMT", - "content": "Despite a drop in fly-tipping on public land, farmers say they are being targeted by criminal gangs.", - "contentSnippet": "Despite a drop in fly-tipping on public land, farmers say they are being targeted by criminal gangs.", - "guid": "https://www.bbc.co.uk/news/science-environment-68007087", - "isoDate": "2024-01-17T16:24:49.000Z" - }, - { - "title": "Listen: Children's services boss on Bronson Battersby", - "link": "https://www.bbc.co.uk/news/uk-68009503?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 14:32:47 GMT", - "content": "Heather Sandy, from Lincolnshire council, tells the World at One what she knows about the death of the two-year-old.", - "contentSnippet": "Heather Sandy, from Lincolnshire council, tells the World at One what she knows about the death of the two-year-old.", - "guid": "https://www.bbc.co.uk/news/uk-68009503", - "isoDate": "2024-01-17T14:32:47.000Z" - }, - { - "title": "How undercover Met Police officers caught designer watch thieves", - "link": "https://www.bbc.co.uk/news/uk-68003783?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 14:09:32 GMT", - "content": "Police officers posed as luxury watch owners, to lure suspected criminals into robbing them.", - "contentSnippet": "Police officers posed as luxury watch owners, to lure suspected criminals into robbing them.", - "guid": "https://www.bbc.co.uk/news/uk-68003783", - "isoDate": "2024-01-17T14:09:32.000Z" - }, - { - "title": "Stormont Assembly recall could be its last sitting says O'Neill", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67996628?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 13:35:03 GMT", - "content": "As Stormont is recalled for a seventh time, Democratic Unionists brand the move a \"stunt\".", - "contentSnippet": "As Stormont is recalled for a seventh time, Democratic Unionists brand the move a \"stunt\".", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67996628", - "isoDate": "2024-01-17T13:35:03.000Z" - }, - { - "title": "Rwanda: We'll give cash back if refugees don't arrive", - "link": "https://www.bbc.co.uk/news/uk-68003842?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 12:58:58 GMT", - "content": "In an exclusive BBC video, President Kagame says issues with the Rwanda plan are the \"UK's problem\".", - "contentSnippet": "In an exclusive BBC video, President Kagame says issues with the Rwanda plan are the \"UK's problem\".", - "guid": "https://www.bbc.co.uk/news/uk-68003842", - "isoDate": "2024-01-17T12:58:58.000Z" - }, - { - "title": "Police videos reveal grooming fantasist Eleanor Williams' deceit", - "link": "https://www.bbc.co.uk/news/uk-67957726?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 06:02:19 GMT", - "content": "Footage shared exclusively with the BBC shows how false stories about a grooming gang grew more elaborate.", - "contentSnippet": "Footage shared exclusively with the BBC shows how false stories about a grooming gang grew more elaborate.", - "guid": "https://www.bbc.co.uk/news/uk-67957726", - "isoDate": "2024-01-17T06:02:19.000Z" - }, - { - "title": "Watch: The video evidence that helped convict Eleanor Williams", - "link": "https://www.bbc.co.uk/news/uk-67992342?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 17 Jan 2024 06:01:57 GMT", - "content": "While false rape allegations are very rare, this video shows the extent of Williams' deceit over years.", - "contentSnippet": "While false rape allegations are very rare, this video shows the extent of Williams' deceit over years.", - "guid": "https://www.bbc.co.uk/news/uk-67992342", - "isoDate": "2024-01-17T06:01:57.000Z" - }, - { - "title": "UK Covid inquiry ups sticks to Scotland\u2026 in 90 seconds", - "link": "https://www.bbc.co.uk/news/uk-scotland-67994837?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 16 Jan 2024 11:51:26 GMT", - "content": "The BBC's Kirsten Campbell outlines what can be expected during three weeks of evidence held in Edinburgh.", - "contentSnippet": "The BBC's Kirsten Campbell outlines what can be expected during three weeks of evidence held in Edinburgh.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67994837", - "isoDate": "2024-01-16T11:51:26.000Z" - }, - { - "title": "Ex-GCHQ worker stabbed US security worker in Cheltenham, court told", - "link": "https://www.bbc.co.uk/news/uk-england-gloucestershire-67236878?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 12:32:59 GMT", - "content": "Joshua Bowles launched a \"vicious\" attack on a female American National Security Agency worker.", - "contentSnippet": "Joshua Bowles launched a \"vicious\" attack on a female American National Security Agency worker.", - "guid": "https://www.bbc.co.uk/news/uk-england-gloucestershire-67236878", - "isoDate": "2023-10-27T12:32:59.000Z" - }, - { - "title": "Wilko shops set to return to the High Street before Christmas", - "link": "https://www.bbc.co.uk/news/business-67229923?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 12:32:11 GMT", - "content": "The owner of The Range is planning to launch hundreds of Wilko shops after it bought the brand.", - "contentSnippet": "The owner of The Range is planning to launch hundreds of Wilko shops after it bought the brand.", - "guid": "https://www.bbc.co.uk/news/business-67229923", - "isoDate": "2023-10-27T12:32:11.000Z" - }, - { - "title": "Jason Leitch deleted Covid WhatsApp messages - newspaper report", - "link": "https://www.bbc.co.uk/news/uk-scotland-67230071?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 12:30:04 GMT", - "content": "Scotland's national clinical director is reported to have deleted his electronic messages on a daily basis.", - "contentSnippet": "Scotland's national clinical director is reported to have deleted his electronic messages on a daily basis.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67230071", - "isoDate": "2023-10-27T12:30:04.000Z" - }, - { - "title": "NatWest hit by profit fears as it admits Nigel Farage failings", - "link": "https://www.bbc.co.uk/news/business-67236693?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 12:17:35 GMT", - "content": "The bank's shares plunge after it lowers profit expectations and admits failings in how it treated Nigel Farage.", - "contentSnippet": "The bank's shares plunge after it lowers profit expectations and admits failings in how it treated Nigel Farage.", - "guid": "https://www.bbc.co.uk/news/business-67236693", - "isoDate": "2023-10-27T12:17:35.000Z" - }, - { - "title": "Mum finds bed 'infested' with bedbugs at Butlin's Skegness", - "link": "https://www.bbc.co.uk/news/uk-england-lincolnshire-67227367?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 11:06:20 GMT", - "content": "Butlin's says it has strict cleaning policies in place and treatment for preventing bedbugs.", - "contentSnippet": "Butlin's says it has strict cleaning policies in place and treatment for preventing bedbugs.", - "guid": "https://www.bbc.co.uk/news/uk-england-lincolnshire-67227367", - "isoDate": "2023-10-27T11:06:20.000Z" - }, - { - "title": "All baa myself: Is this Britain's loneliest sheep?", - "link": "https://www.bbc.co.uk/news/uk-scotland-highlands-islands-67237956?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 10:48:53 GMT", - "content": "A woman says she came across the ewe at the foot of a cliff two years ago before seeing it again this year.", - "contentSnippet": "A woman says she came across the ewe at the foot of a cliff two years ago before seeing it again this year.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-highlands-islands-67237956", - "isoDate": "2023-10-27T10:48:53.000Z" - }, - { - "title": "The Secret Defendant: I've been through seven years of hell", - "link": "https://www.bbc.co.uk/news/uk-67231981?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 10:48:04 GMT", - "content": "A woman accused of fraud and kept on bail says the experience led her to try to kill herself.", - "contentSnippet": "A woman accused of fraud and kept on bail says the experience led her to try to kill herself.", - "guid": "https://www.bbc.co.uk/news/uk-67231981", - "isoDate": "2023-10-27T10:48:04.000Z" - }, - { - "title": "Three friends help woman give birth on busy Leeds main road", - "link": "https://www.bbc.co.uk/news/uk-england-leeds-67232621?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 10:14:47 GMT", - "content": "Debby Minzele was being driven to hospital in Leeds to have her baby when her waters broke.", - "contentSnippet": "Debby Minzele was being driven to hospital in Leeds to have her baby when her waters broke.", - "guid": "https://www.bbc.co.uk/news/uk-england-leeds-67232621", - "isoDate": "2023-10-27T10:14:47.000Z" - }, - { - "title": "Swansea charity shop asks customers not to donate sex toys", - "link": "https://www.bbc.co.uk/news/uk-wales-67237610?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 10:01:35 GMT", - "content": "Staff have asked customers to \"refrain from donating used and unused\" adult toys.", - "contentSnippet": "Staff have asked customers to \"refrain from donating used and unused\" adult toys.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67237610", - "isoDate": "2023-10-27T10:01:35.000Z" - }, - { - "title": "HRT: Sharp rise in prescriptions after menopause campaign", - "link": "https://www.bbc.co.uk/news/health-67233617?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 09:52:22 GMT", - "content": "Celebrities like Davina McCall have raised awareness of women's symptoms when their periods stop.", - "contentSnippet": "Celebrities like Davina McCall have raised awareness of women's symptoms when their periods stop.", - "guid": "https://www.bbc.co.uk/news/health-67233617", - "isoDate": "2023-10-27T09:52:22.000Z" - }, - { - "title": "Conjoined twins meet at London hospital that treated them", - "link": "https://www.bbc.co.uk/news/uk-67237968?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 09:09:05 GMT", - "content": "The six sets of siblings were all treated at Great Ormond Street Hospital in London.", - "contentSnippet": "The six sets of siblings were all treated at Great Ormond Street Hospital in London.", - "guid": "https://www.bbc.co.uk/news/uk-67237968", - "isoDate": "2023-10-27T09:09:05.000Z" - }, - { - "title": "Bianca Williams: Fundraiser for sacked Met officers raises \u00a350K", - "link": "https://www.bbc.co.uk/news/uk-england-london-67236220?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 09:08:33 GMT", - "content": "The PCs were sacked for gross misconduct after a stop and search of Bianca Williams and her partner.", - "contentSnippet": "The PCs were sacked for gross misconduct after a stop and search of Bianca Williams and her partner.", - "guid": "https://www.bbc.co.uk/news/uk-england-london-67236220", - "isoDate": "2023-10-27T09:08:33.000Z" - }, - { - "title": "Thousands of banned dogs living at home with owners", - "link": "https://www.bbc.co.uk/news/uk-67217993?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 08:58:47 GMT", - "content": "Almost 3,500 dogs in Great Britain must be kept under strict rules, data released to the BBC reveals.", - "contentSnippet": "Almost 3,500 dogs in Great Britain must be kept under strict rules, data released to the BBC reveals.", - "guid": "https://www.bbc.co.uk/news/uk-67217993", - "isoDate": "2023-10-27T08:58:47.000Z" - }, - { - "title": "Gig tickets: Online scams 'made me feel stupid'", - "link": "https://www.bbc.co.uk/news/newsbeat-67229429?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 08:35:30 GMT", - "content": "With concert ticket prices going up and incredible demand for some shows, fake sales are increasing.", - "contentSnippet": "With concert ticket prices going up and incredible demand for some shows, fake sales are increasing.", - "guid": "https://www.bbc.co.uk/news/newsbeat-67229429", - "isoDate": "2023-10-27T08:35:30.000Z" - }, - { - "title": "Six Nations rugby must stay free to air, MPs say", - "link": "https://www.bbc.co.uk/news/uk-wales-politics-67233455?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 06:14:52 GMT", - "content": "Europe's leading rugby tournament is not currently in the list of most protected fixtures for TV.", - "contentSnippet": "Europe's leading rugby tournament is not currently in the list of most protected fixtures for TV.", - "guid": "https://www.bbc.co.uk/news/uk-wales-politics-67233455", - "isoDate": "2023-10-27T06:14:52.000Z" - }, - { - "title": "Same-sex adoption: \u2018I never thought I\u2019d be a parent in Northern Ireland'", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67193943?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 05:20:23 GMT", - "content": "Paul and his husband Martin live in Belfast and adopted their son just before the Covid pandemic.", - "contentSnippet": "Paul and his husband Martin live in Belfast and adopted their son just before the Covid pandemic.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67193943", - "isoDate": "2023-10-27T05:20:23.000Z" - }, - { - "title": "Caitlin McLaughlin mural: 'Ecstasy tablet took Londonderry teen's life'", - "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67231758?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 05:19:24 GMT", - "content": "A mural in memory of Caitlin McLaughlin, who died after taking ecstasy, will be unveiled on Friday.", - "contentSnippet": "A mural in memory of Caitlin McLaughlin, who died after taking ecstasy, will be unveiled on Friday.", - "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67231758", - "isoDate": "2023-10-27T05:19:24.000Z" - }, - { - "title": "The small town fighting back against shoplifting", - "link": "https://www.bbc.co.uk/news/uk-scotland-south-scotland-67228815?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 05:03:27 GMT", - "content": "Business owners in Kelso are joining together to help cope with a rise in thefts.", - "contentSnippet": "Business owners in Kelso are joining together to help cope with a rise in thefts.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-south-scotland-67228815", - "isoDate": "2023-10-27T05:03:27.000Z" - }, - { - "title": "Flooring billboard featuring 'sexualised' woman is removed", - "link": "https://www.bbc.co.uk/news/uk-england-suffolk-67231269?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 04:57:30 GMT", - "content": "Suffolk Rape Crisis says the advert is \"perpetuating the culture of rape\".", - "contentSnippet": "Suffolk Rape Crisis says the advert is \"perpetuating the culture of rape\".", - "guid": "https://www.bbc.co.uk/news/uk-england-suffolk-67231269", - "isoDate": "2023-10-27T04:57:30.000Z" - }, - { - "title": "The Papers: Tory MP rape claim arrest and 'new phase' in Gaza", - "link": "https://www.bbc.co.uk/news/blogs-the-papers-67235128?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 04:53:31 GMT", - "content": "Allegations against former minister Crispin Blunt and Israel's operations in Gaza lead the papers.", - "contentSnippet": "Allegations against former minister Crispin Blunt and Israel's operations in Gaza lead the papers.", - "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67235128", - "isoDate": "2023-10-27T04:53:31.000Z" - }, - { - "title": "Conjoined twins: Defying the odds to survive", - "link": "https://www.bbc.co.uk/news/health-67228040?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 04:40:06 GMT", - "content": "They were not expected to survive but Ruby and Rosie, now 11, are celebrating with five other sets.", - "contentSnippet": "They were not expected to survive but Ruby and Rosie, now 11, are celebrating with five other sets.", - "guid": "https://www.bbc.co.uk/news/health-67228040", - "isoDate": "2023-10-27T04:40:06.000Z" - }, - { - "title": "Reintroducing wildlife species 'not a priority'", - "link": "https://www.bbc.co.uk/news/science-environment-67230751?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 02:59:02 GMT", - "content": "Bringing previously extinct native species like beavers back to England is not on the Environment Secretary's priority list.", - "contentSnippet": "Bringing previously extinct native species like beavers back to England is not on the Environment Secretary's priority list.", - "guid": "https://www.bbc.co.uk/news/science-environment-67230751", - "isoDate": "2023-10-27T02:59:02.000Z" - }, - { - "title": "NHS waits could exceed eight million by summer, charity says", - "link": "https://www.bbc.co.uk/news/health-67228043?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 02:37:05 GMT", - "content": "Based on latest trends, yet more patients will be forced to wait, even if doctor strikes cease, projections suggest.", - "contentSnippet": "Based on latest trends, yet more patients will be forced to wait, even if doctor strikes cease, projections suggest.", - "guid": "https://www.bbc.co.uk/news/health-67228043", - "isoDate": "2023-10-27T02:37:05.000Z" - }, - { - "title": "Tourist town faces surge in homelessness ", - "link": "https://www.bbc.co.uk/news/uk-england-humber-67222460?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 01:42:50 GMT", - "content": "BBC News finds out the challenges faced by those trying to keep a roof over their heads.", - "contentSnippet": "BBC News finds out the challenges faced by those trying to keep a roof over their heads.", - "guid": "https://www.bbc.co.uk/news/uk-england-humber-67222460", - "isoDate": "2023-10-27T01:42:50.000Z" - }, - { - "title": "What happens after a nuclear power station is closed?", - "link": "https://www.bbc.co.uk/news/business-67087673?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 23:08:00 GMT", - "content": "Taking decades, an intricate clean-up process has to be followed after a nuclear power station closes.", - "contentSnippet": "Taking decades, an intricate clean-up process has to be followed after a nuclear power station closes.", - "guid": "https://www.bbc.co.uk/news/business-67087673", - "isoDate": "2023-10-26T23:08:00.000Z" - }, - { - "title": "When should I turn the heating on?", - "link": "https://www.bbc.co.uk/news/business-67197871?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 23:00:35 GMT", - "content": "As it gets colder here are some tips to help you stay warm while trying to keep your energy bills down.", - "contentSnippet": "As it gets colder here are some tips to help you stay warm while trying to keep your energy bills down.", - "guid": "https://www.bbc.co.uk/news/business-67197871", - "isoDate": "2023-10-26T23:00:35.000Z" - }, - { - "title": "Cricket World Cup 2023: England's tournament over and it has been a mess from the very start", - "link": "https://www.bbc.co.uk/sport/cricket/67233081?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 19:23:31 GMT", - "content": "England's World Cup is over, and their tournament has been a mess from the very start, with numerous issues affecting their title defence.", - "contentSnippet": "England's World Cup is over, and their tournament has been a mess from the very start, with numerous issues affecting their title defence.", - "guid": "https://www.bbc.co.uk/sport/cricket/67233081", - "isoDate": "2023-10-26T19:23:31.000Z" - }, - { - "title": "Online Safety Bill: divisive internet rules become law", - "link": "https://www.bbc.co.uk/news/technology-67221691?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 15:46:19 GMT", - "content": "The legislation requires firms to remove illegal content but has attracted privacy concerns.", - "contentSnippet": "The legislation requires firms to remove illegal content but has attracted privacy concerns.", - "guid": "https://www.bbc.co.uk/news/technology-67221691", - "isoDate": "2023-10-26T15:46:19.000Z" - }, - { - "title": "More disadvantaged students go for top uni courses", - "link": "https://www.bbc.co.uk/news/articles/c2x8j1zx1xjo?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Thu, 26 Oct 2023 11:46:52 GMT", - "guid": "https://www.bbc.co.uk/news/articles/c2x8j1zx1xjo", - "isoDate": "2023-10-26T11:46:52.000Z" - }, - { - "title": "Peter Bone: Ex-aide speaks about \u2018abuse\u2019 by MP", - "link": "https://www.bbc.co.uk/news/uk-politics-67211032?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Wed, 25 Oct 2023 04:30:09 GMT", - "content": "The MP's ex-assistant spoke anonymously to the BBC\u2019s Hannah Miller. His testimony has been voiced by an actor.", - "contentSnippet": "The MP's ex-assistant spoke anonymously to the BBC\u2019s Hannah Miller. His testimony has been voiced by an actor.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67211032", - "isoDate": "2023-10-25T04:30:09.000Z" - }, - { - "title": "Motorway man jailed for aiming 'weapon' at police", - "link": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67207284?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 24 Oct 2023 16:21:58 GMT", - "content": "Steven Nelson aimed an object at officers who went to his aid at the side of a busy motorway.", - "contentSnippet": "Steven Nelson aimed an object at officers who went to his aid at the side of a busy motorway.", - "guid": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67207284", - "isoDate": "2023-10-24T16:21:58.000Z" - }, - { - "title": "Luton Airport fire: Aerial pictures show car park damage", - "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67207591?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Tue, 24 Oct 2023 12:40:19 GMT", - "content": "Drone video shows the extent of the car park fire, which destroyed more than 1,400 vehicles.", - "contentSnippet": "Drone video shows the extent of the car park fire, which destroyed more than 1,400 vehicles.", - "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67207591", - "isoDate": "2023-10-24T12:40:19.000Z" - }, - { - "title": "'Get out the way!' - Stream turns to torrent during Storm Babet", - "link": "https://www.bbc.co.uk/news/uk-scotland-67181502?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Sat, 21 Oct 2023 17:21:30 GMT", - "content": "Video shows a tree toppling and being washed away as the Balruddery Burn is hit by Babet.", - "contentSnippet": "Video shows a tree toppling and being washed away as the Balruddery Burn is hit by Babet.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67181502", - "isoDate": "2023-10-21T17:21:30.000Z" - }, - { - "title": "Sunak: By-election results 'obviously disappointing'", - "link": "https://www.bbc.co.uk/news/uk-politics-67171744?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 20 Oct 2023 17:16:42 GMT", - "content": "The prime minister spoke to reporters from Cairo, where he was holding meetings on the crisis in Gaza.", - "contentSnippet": "The prime minister spoke to reporters from Cairo, where he was holding meetings on the crisis in Gaza.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67171744", - "isoDate": "2023-10-20T17:16:42.000Z" - }, - { - "title": "Addenbrooke's Hospital: Baby who died was not given routine vitamin", - "link": "https://www.bbc.co.uk/news/uk-england-cambridgeshire-67241516?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 15:43:03 GMT", - "content": "A coroner says the infant died after a \"gross failure in medical care amounting to neglect\".", - "contentSnippet": "A coroner says the infant died after a \"gross failure in medical care amounting to neglect\".", - "guid": "https://www.bbc.co.uk/news/uk-england-cambridgeshire-67241516", - "isoDate": "2023-10-27T15:43:03.000Z" - }, - { - "title": "Boris Johnson: Former prime minister to host GB News show", - "link": "https://www.bbc.co.uk/news/entertainment-arts-67242822?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 15:36:50 GMT", - "content": "Johnson, who stepped down as an MP earlier this year, will present and produce his own programmes.", - "contentSnippet": "Johnson, who stepped down as an MP earlier this year, will present and produce his own programmes.", - "guid": "https://www.bbc.co.uk/news/entertainment-arts-67242822", - "isoDate": "2023-10-27T15:36:50.000Z" - }, - { - "title": "Hate crime soars in London amid Israel-Gaza conflict", - "link": "https://www.bbc.co.uk/news/uk-67241374?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 15:14:19 GMT", - "content": "The number of antisemitic and Islamophobic hate crimes recorded by Met Police is on the rise since 7 October.", - "contentSnippet": "The number of antisemitic and Islamophobic hate crimes recorded by Met Police is on the rise since 7 October.", - "guid": "https://www.bbc.co.uk/news/uk-67241374", - "isoDate": "2023-10-27T15:14:19.000Z" - }, - { - "title": "Somerset man in gimp suit guilty of harassing women", - "link": "https://www.bbc.co.uk/news/uk-england-somerset-67238445?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 15:03:27 GMT", - "content": "Victims of Joshua Hunt said he \"was writhing and crawling as if in a military fashion\".", - "contentSnippet": "Victims of Joshua Hunt said he \"was writhing and crawling as if in a military fashion\".", - "guid": "https://www.bbc.co.uk/news/uk-england-somerset-67238445", - "isoDate": "2023-10-27T15:03:27.000Z" - }, - { - "title": "Humza Yousaf hits back after Elon Musk brands him 'racist'", - "link": "https://www.bbc.co.uk/news/uk-scotland-67241312?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 14:58:42 GMT", - "content": "Scotland's first minister reacted after Elon Musk commented on an edited clip of a speech he gave in 2020.", - "contentSnippet": "Scotland's first minister reacted after Elon Musk commented on an edited clip of a speech he gave in 2020.", - "guid": "https://www.bbc.co.uk/news/uk-scotland-67241312", - "isoDate": "2023-10-27T14:58:42.000Z" - }, - { - "title": "Sailor jailed for rape on Royal Navy ship", - "link": "https://www.bbc.co.uk/news/articles/cm5kg2xn1v5o?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 14:46:48 GMT", - "content": "James Carnegie attacked the woman in his cabin on a Royal Fleet Auxiliary vessel in 2021.", - "contentSnippet": "James Carnegie attacked the woman in his cabin on a Royal Fleet Auxiliary vessel in 2021.", - "guid": "https://www.bbc.co.uk/news/articles/cm5kg2xn1v5o", - "isoDate": "2023-10-27T14:46:48.000Z" - }, - { - "title": "Watch: Man takes bus for 10-mile drive", - "link": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67242742?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 14:29:01 GMT", - "content": "Footage isn released after a man took a bus, and drove through a busy city centre.", - "contentSnippet": "Footage isn released after a man took a bus, and drove through a busy city centre.", - "guid": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67242742", - "isoDate": "2023-10-27T14:29:01.000Z" - }, - { - "title": "Cardiff gang kidnapped and tortured men for cash and jewellery", - "link": "https://www.bbc.co.uk/news/uk-wales-67240990?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 14:24:32 GMT", - "content": "They were willing to inflict maximum suffering on victims with knives and boiling water, court told.", - "contentSnippet": "They were willing to inflict maximum suffering on victims with knives and boiling water, court told.", - "guid": "https://www.bbc.co.uk/news/uk-wales-67240990", - "isoDate": "2023-10-27T14:24:32.000Z" - }, - { - "title": "Gaza war: Sadiq Khan breaks with Starmer by urging ceasefire", - "link": "https://www.bbc.co.uk/news/uk-politics-67238594?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 14:04:56 GMT", - "content": "The Labour leader is coming under increasing pressure to back a ceasefire in the Israel-Hamas war.", - "contentSnippet": "The Labour leader is coming under increasing pressure to back a ceasefire in the Israel-Hamas war.", - "guid": "https://www.bbc.co.uk/news/uk-politics-67238594", - "isoDate": "2023-10-27T14:04:56.000Z" - }, - { - "title": "HMP Lindholme nurse and inmate lover jailed over largest drug-smuggling ring", - "link": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67233201?at_medium=RSS&at_campaign=KARANGA", - "pubDate": "Fri, 27 Oct 2023 12:38:54 GMT", - "content": "Sixteen people are being sentenced over roles in the UK's largest prison drug-smuggling ring.", - "contentSnippet": "Sixteen people are being sentenced over roles in the UK's largest prison drug-smuggling ring.", - "guid": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67233201", - "isoDate": "2023-10-27T12:38:54.000Z" - } -] \ No newline at end of file + { + "title": "Wales should keep free school meals in Christmas holidays, says mum", + "link": "https://www.bbc.co.uk/news/uk-wales-67578085?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 22:59:03 GMT", + "content": "Mum-of-two Lisa says free school meals \"should have carried on\" throughout the holidays.", + "contentSnippet": "Mum-of-two Lisa says free school meals \"should have carried on\" throughout the holidays.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67578085", + "isoDate": "2023-11-30T22:59:03.000Z" + }, + { + "title": "Shane MacGowan: Pogues singer dies aged 65", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67546785?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 22:07:17 GMT", + "content": "The Irish singer-songwriter, whose hits include Fairytale of New York, was unwell for some time.", + "contentSnippet": "The Irish singer-songwriter, whose hits include Fairytale of New York, was unwell for some time.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67546785", + "isoDate": "2023-11-30T22:07:17.000Z" + }, + { + "title": "Brighton & Hove Albion fans\u2019 European joy cut short by tear gas", + "link": "https://www.bbc.co.uk/news/uk-england-sussex-67582415?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 21:56:20 GMT", + "content": "Brighton book their spot in the knockout phase of the Europa League by beating AEK Athens.", + "contentSnippet": "Brighton book their spot in the knockout phase of the Europa League by beating AEK Athens.", + "guid": "https://www.bbc.co.uk/news/uk-england-sussex-67582415", + "isoDate": "2023-11-30T21:56:20.000Z" + }, + { + "title": "Pontins closes Prestatyn and Camber Sands holiday parks", + "link": "https://www.bbc.co.uk/news/uk-wales-67578045?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 21:52:07 GMT", + "content": "The company says the Prestatyn site will close straight away, and apologises to customers.", + "contentSnippet": "The company says the Prestatyn site will close straight away, and apologises to customers.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67578045", + "isoDate": "2023-11-30T21:52:07.000Z" + }, + { + "title": "Police injured as objects thrown at officers outside Villa Park", + "link": "https://www.bbc.co.uk/news/uk-england-birmingham-67585147?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 21:40:23 GMT", + "content": "Aston Villa confirms that no Legia Warsaw fans were let into the stadium following the disorder.", + "contentSnippet": "Aston Villa confirms that no Legia Warsaw fans were let into the stadium following the disorder.", + "guid": "https://www.bbc.co.uk/news/uk-england-birmingham-67585147", + "isoDate": "2023-11-30T21:40:23.000Z" + }, + { + "title": "Government intervenes in Abu Dhabi's bid to buy Telegraph", + "link": "https://www.bbc.co.uk/news/business-67583166?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 20:55:35 GMT", + "content": "The UK will take a closer look at the sale of the Telegraph to Gulf investors.", + "contentSnippet": "The UK will take a closer look at the sale of the Telegraph to Gulf investors.", + "guid": "https://www.bbc.co.uk/news/business-67583166", + "isoDate": "2023-11-30T20:55:35.000Z" + }, + { + "title": "Covid inquiry: Lockdown should have been three weeks earlier - Hancock", + "link": "https://www.bbc.co.uk/news/uk-politics-67576784?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 20:24:46 GMT", + "content": "The ex-health secretary also said a \"toxic culture\", driven by Dominic Cummings, hindered the Covid response.", + "contentSnippet": "The ex-health secretary also said a \"toxic culture\", driven by Dominic Cummings, hindered the Covid response.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67576784", + "isoDate": "2023-11-30T20:24:46.000Z" + }, + { + "title": "Sacked S4C boss Sian Doyle slams chairman in government letter", + "link": "https://www.bbc.co.uk/news/uk-wales-67579782?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 19:14:47 GMT", + "content": "Sian Doyle writes to the culture secretary criticising S4C chairman Rhodri Williams's behaviour.", + "contentSnippet": "Sian Doyle writes to the culture secretary criticising S4C chairman Rhodri Williams's behaviour.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67579782", + "isoDate": "2023-11-30T19:14:47.000Z" + }, + { + "title": "Met Police officer cleared after Tasering girl, 10", + "link": "https://www.bbc.co.uk/news/uk-england-london-67576994?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 19:00:08 GMT", + "content": "A girl who threatened her mother with garden shears was Tasered twice by PC Jonathan Broadhead.", + "contentSnippet": "A girl who threatened her mother with garden shears was Tasered twice by PC Jonathan Broadhead.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67576994", + "isoDate": "2023-11-30T19:00:08.000Z" + }, + { + "title": "Kidnappers found guilty of killing DJ in empty bar", + "link": "https://www.bbc.co.uk/news/uk-england-london-67579208?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 18:37:31 GMT", + "content": "Mehmet Koray Alpergin was killed in an empty bar near Tottenham Hotspur Stadium on 13 October 2022.", + "contentSnippet": "Mehmet Koray Alpergin was killed in an empty bar near Tottenham Hotspur Stadium on 13 October 2022.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67579208", + "isoDate": "2023-11-30T18:37:31.000Z" + }, + { + "title": "UK cold weather persists with sub-zero nights to come", + "link": "https://www.bbc.co.uk/news/uk-67575474?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 18:16:14 GMT", + "content": "More bitterly cold conditions are on the way, while snow and ice warnings remain in place for many.", + "contentSnippet": "More bitterly cold conditions are on the way, while snow and ice warnings remain in place for many.", + "guid": "https://www.bbc.co.uk/news/uk-67575474", + "isoDate": "2023-11-30T18:16:14.000Z" + }, + { + "title": "RuPaul's Drag Race UK: North East queens fighting for crown", + "link": "https://www.bbc.co.uk/news/uk-england-tyne-67571912?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 17:15:10 GMT", + "content": "The winner of RuPaul's Drag Race UK will be crowned tonight, with all three finalists from the region.", + "contentSnippet": "The winner of RuPaul's Drag Race UK will be crowned tonight, with all three finalists from the region.", + "guid": "https://www.bbc.co.uk/news/uk-england-tyne-67571912", + "isoDate": "2023-11-30T17:15:10.000Z" + }, + { + "title": "Freezing days and nights ahead in UK cold snap", + "link": "https://www.bbc.co.uk/weather/features/67580442?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 17:06:44 GMT", + "content": "It is very cold at the moment in the UK, but is it going to get colder? And when can we expect the switch to something milder?", + "contentSnippet": "It is very cold at the moment in the UK, but is it going to get colder? And when can we expect the switch to something milder?", + "guid": "https://www.bbc.co.uk/weather/features/67580442", + "isoDate": "2023-11-30T17:06:44.000Z" + }, + { + "title": "Joey Barton's comments 'trivialise race murder'", + "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67582077?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 16:57:43 GMT", + "content": "The ex-footballer is criticised for saying his brother lost 17 years of his life for murdering Anthony Walker.", + "contentSnippet": "The ex-footballer is criticised for saying his brother lost 17 years of his life for murdering Anthony Walker.", + "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67582077", + "isoDate": "2023-11-30T16:57:43.000Z" + }, + { + "title": "Man charged over death at slapping therapy workshop", + "link": "https://www.bbc.co.uk/news/uk-england-wiltshire-67580439?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 16:52:29 GMT", + "content": "A 71-year-old from the United States is charged with manslaughter by gross negligence.", + "contentSnippet": "A 71-year-old from the United States is charged with manslaughter by gross negligence.", + "guid": "https://www.bbc.co.uk/news/uk-england-wiltshire-67580439", + "isoDate": "2023-11-30T16:52:29.000Z" + }, + { + "title": "Alistair Darling: 'Serious, discreet and driven by fairness'", + "link": "https://www.bbc.co.uk/news/uk-scotland-67581555?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 16:30:07 GMT", + "content": "Alistair Darling's sober demeanour and cautious approach brought him great political success.", + "contentSnippet": "Alistair Darling's sober demeanour and cautious approach brought him great political success.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67581555", + "isoDate": "2023-11-30T16:30:07.000Z" + }, + { + "title": "Brianna Ghey: Dog walker's 999 call about teenager played to jury", + "link": "https://www.bbc.co.uk/news/uk-england-manchester-67576400?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 16:22:07 GMT", + "content": "A dog walker who found Brianna Ghey told a 999 operator help needed to come \"quickly\", a court hears.", + "contentSnippet": "A dog walker who found Brianna Ghey told a 999 operator help needed to come \"quickly\", a court hears.", + "guid": "https://www.bbc.co.uk/news/uk-england-manchester-67576400", + "isoDate": "2023-11-30T16:22:07.000Z" + }, + { + "title": "Pressure grows for ban on new leasehold flats", + "link": "https://www.bbc.co.uk/news/uk-politics-67579695?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 16:11:24 GMT", + "content": "The government is planning to reform the system - but there are calls to scrap it entirely.", + "contentSnippet": "The government is planning to reform the system - but there are calls to scrap it entirely.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67579695", + "isoDate": "2023-11-30T16:11:24.000Z" + }, + { + "title": "Former Chancellor Alistair Darling dies aged 70", + "link": "https://www.bbc.co.uk/news/uk-67578993?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 15:39:30 GMT", + "content": "Tributes from all sides to former Labour chancellor who steered the UK through 2008's economic crisis.", + "contentSnippet": "Tributes from all sides to former Labour chancellor who steered the UK through 2008's economic crisis.", + "guid": "https://www.bbc.co.uk/news/uk-67578993", + "isoDate": "2023-11-30T15:39:30.000Z" + }, + { + "title": "Essex lorry deaths: Caolan Gormley jailed for trafficking offence", + "link": "https://www.bbc.co.uk/news/uk-england-essex-67580615?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 15:33:11 GMT", + "content": "Caolan Gormley will spend up to seven years behind bars after being sentenced at the Old Bailey.", + "contentSnippet": "Caolan Gormley will spend up to seven years behind bars after being sentenced at the Old Bailey.", + "guid": "https://www.bbc.co.uk/news/uk-england-essex-67580615", + "isoDate": "2023-11-30T15:33:11.000Z" + }, + { + "title": "Alfie Phillips murder: Mother and partner guilty of killing toddler", + "link": "https://www.bbc.co.uk/news/uk-england-kent-67512544?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 15:25:16 GMT", + "content": "Sian Hedges and her ex-partner Jack Benham used \"violent discipline\" on her son, Alfie Phillips.", + "contentSnippet": "Sian Hedges and her ex-partner Jack Benham used \"violent discipline\" on her son, Alfie Phillips.", + "guid": "https://www.bbc.co.uk/news/uk-england-kent-67512544", + "isoDate": "2023-11-30T15:25:16.000Z" + }, + { + "title": "Gordon Brown: Alistair Darling 'showed great wisdom in everything he did'", + "link": "https://www.bbc.co.uk/news/uk-politics-67578940?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 14:54:08 GMT", + "content": "Alistair Darling was the \"obvious choice\" to be the chancellor says former PM Gordon Brown on appointing him.", + "contentSnippet": "Alistair Darling was the \"obvious choice\" to be the chancellor says former PM Gordon Brown on appointing him.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67578940", + "isoDate": "2023-11-30T14:54:08.000Z" + }, + { + "title": "Byron Burgers death: Father awaits food allergy decision after son's death", + "link": "https://www.bbc.co.uk/news/uk-england-sussex-67555060?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 14:40:35 GMT", + "content": "Owen Carey's father believes his son would still be alive if the word 'milk' was written on a menu.", + "contentSnippet": "Owen Carey's father believes his son would still be alive if the word 'milk' was written on a menu.", + "guid": "https://www.bbc.co.uk/news/uk-england-sussex-67555060", + "isoDate": "2023-11-30T14:40:35.000Z" + }, + { + "title": "Just Stop Oil: 16 protesters arrested outside Rishi Sunak's London home", + "link": "https://www.bbc.co.uk/news/uk-67573852?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 14:09:07 GMT", + "content": "The group stage a noisy demonstration outside Rishi Sunak's west London property on Wednesday night.", + "contentSnippet": "The group stage a noisy demonstration outside Rishi Sunak's west London property on Wednesday night.", + "guid": "https://www.bbc.co.uk/news/uk-67573852", + "isoDate": "2023-11-30T14:09:07.000Z" + }, + { + "title": "Train strikes: RMT vote ends industrial action until at least spring", + "link": "https://www.bbc.co.uk/news/business-67577683?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 14:02:20 GMT", + "content": "Rail workers have voted to accept a pay deal, ending their involvement in a long-running series of strikes.", + "contentSnippet": "Rail workers have voted to accept a pay deal, ending their involvement in a long-running series of strikes.", + "guid": "https://www.bbc.co.uk/news/business-67577683", + "isoDate": "2023-11-30T14:02:20.000Z" + }, + { + "title": "MacGowan: Fairytale of New York is our Bohemian Rhapsody", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67579434?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 13:40:23 GMT", + "content": "The Pogues frontman said the hit song made him depressed after Kirsty MacColl died.", + "contentSnippet": "The Pogues frontman said the hit song made him depressed after Kirsty MacColl died.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67579434", + "isoDate": "2023-11-30T13:40:23.000Z" + }, + { + "title": "When are the rail strikes in December?", + "link": "https://www.bbc.co.uk/news/business-61634959?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 13:25:29 GMT", + "content": "Train drivers have announced further walkouts in a long-running dispute about pay and conditions.", + "contentSnippet": "Train drivers have announced further walkouts in a long-running dispute about pay and conditions.", + "guid": "https://www.bbc.co.uk/news/business-61634959", + "isoDate": "2023-11-30T13:25:29.000Z" + }, + { + "title": "Alex Salmond launches new Scottish independence plan", + "link": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67577783?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 13:02:18 GMT", + "content": "The former first minister wants to hold a referendum on the 10th anniversary of the 2014 ballot.", + "contentSnippet": "The former first minister wants to hold a referendum on the 10th anniversary of the 2014 ballot.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67577783", + "isoDate": "2023-11-30T13:02:18.000Z" + }, + { + "title": "'Cummings caused toxic culture' - Matt Hancock", + "link": "https://www.bbc.co.uk/news/uk-67579719?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 12:56:58 GMT", + "content": "Dominic Cummings, who advised Boris Johnson, caused a toxic culture in government, Matt Hancock says.", + "contentSnippet": "Dominic Cummings, who advised Boris Johnson, caused a toxic culture in government, Matt Hancock says.", + "guid": "https://www.bbc.co.uk/news/uk-67579719", + "isoDate": "2023-11-30T12:56:58.000Z" + }, + { + "title": "Premier League teams are playing footballers facing abuse claims", + "link": "https://www.bbc.co.uk/news/uk-67508310?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 12:33:25 GMT", + "content": "Alleged victims tell the BBC top clubs prioritise commercial interests over the safety of women.", + "contentSnippet": "Alleged victims tell the BBC top clubs prioritise commercial interests over the safety of women.", + "guid": "https://www.bbc.co.uk/news/uk-67508310", + "isoDate": "2023-11-30T12:33:25.000Z" + }, + { + "title": "Omid Scobie book: How could the royal naming mistake happen?", + "link": "https://www.bbc.co.uk/news/uk-67565898?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 12:17:41 GMT", + "content": "How did a Dutch translation appear to identify a member of the Royal Family in a race row?", + "contentSnippet": "How did a Dutch translation appear to identify a member of the Royal Family in a race row?", + "guid": "https://www.bbc.co.uk/news/uk-67565898", + "isoDate": "2023-11-30T12:17:41.000Z" + }, + { + "title": "Norovirus: Winter vomiting virus cases rising", + "link": "https://www.bbc.co.uk/news/health-67576301?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 11:43:33 GMT", + "content": "Hundreds of people are now in hospital with norovirus, the latest NHS England figures show.", + "contentSnippet": "Hundreds of people are now in hospital with norovirus, the latest NHS England figures show.", + "guid": "https://www.bbc.co.uk/news/health-67576301", + "isoDate": "2023-11-30T11:43:33.000Z" + }, + { + "title": "Metro Bank to review seven-day opening and cut jobs", + "link": "https://www.bbc.co.uk/news/business-67575555?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 11:26:13 GMT", + "content": "The struggling lender is to cut a fifth of staff, and rival Lloyds announces more branch closures.", + "contentSnippet": "The struggling lender is to cut a fifth of staff, and rival Lloyds announces more branch closures.", + "guid": "https://www.bbc.co.uk/news/business-67575555", + "isoDate": "2023-11-30T11:26:13.000Z" + }, + { + "title": "Elfbar: Top vape firm drops sweet flavours over appeal to kids", + "link": "https://www.bbc.co.uk/news/business-67570973?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 10:32:15 GMT", + "content": "Elfbar and Lost Mary call for tighter restrictions on vape sales ahead of government clampdown.", + "contentSnippet": "Elfbar and Lost Mary call for tighter restrictions on vape sales ahead of government clampdown.", + "guid": "https://www.bbc.co.uk/news/business-67570973", + "isoDate": "2023-11-30T10:32:15.000Z" + }, + { + "title": "East 17: Terry Coldwell says reunion unlikely to happen", + "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67567158?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 06:48:11 GMT", + "content": "Next year is the 30th anniversary of the band's famous Christmas number one Stay Another Day", + "contentSnippet": "Next year is the 30th anniversary of the band's famous Christmas number one Stay Another Day", + "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67567158", + "isoDate": "2023-11-30T06:48:11.000Z" + }, + { + "title": "Scotch on the Rocks: The TV drama locked away for 50 years", + "link": "https://www.bbc.co.uk/news/uk-scotland-66889553?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 06:21:27 GMT", + "content": "The BBC Scotland drama Scotch on the Rocks was so contentious it has been locked away for 50 years.", + "contentSnippet": "The BBC Scotland drama Scotch on the Rocks was so contentious it has been locked away for 50 years.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-66889553", + "isoDate": "2023-11-30T06:21:27.000Z" + }, + { + "title": "'Rock star' pandas - not exactly a love story", + "link": "https://www.bbc.co.uk/news/uk-scotland-23856890?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 06:20:44 GMT", + "content": "They arrived like rock stars 12 years ago and their love life was the source of endless speculation.", + "contentSnippet": "They arrived like rock stars 12 years ago and their love life was the source of endless speculation.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-23856890", + "isoDate": "2023-11-30T06:20:44.000Z" + }, + { + "title": "Coal: UK's last opencast mine shuts after legal row", + "link": "https://www.bbc.co.uk/news/uk-wales-67564413?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 06:08:17 GMT", + "content": "Ffos-y-Fran mine is dubbed a \"neighbour from hell\" as authorities fear for the future of the site.", + "contentSnippet": "Ffos-y-Fran mine is dubbed a \"neighbour from hell\" as authorities fear for the future of the site.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67564413", + "isoDate": "2023-11-30T06:08:17.000Z" + }, + { + "title": "Watch: The Shard gets a Christmas makeover", + "link": "https://www.bbc.co.uk/news/uk-england-london-67560734?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 06:06:37 GMT", + "content": "See the preparation work that goes into getting The Shard sparkling for Christmas.", + "contentSnippet": "See the preparation work that goes into getting The Shard sparkling for Christmas.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67560734", + "isoDate": "2023-11-30T06:06:37.000Z" + }, + { + "title": "Newspaper headlines: 'Nightmare' at A&E and 'India murder plot'", + "link": "https://www.bbc.co.uk/news/blogs-the-papers-67573837?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 05:38:02 GMT", + "content": "Air pollution, Rwanda's agreement with the UK over migrants and events in Gaza also feature on the front pages of Thursday's newspapers.", + "contentSnippet": "Air pollution, Rwanda's agreement with the UK over migrants and events in Gaza also feature on the front pages of Thursday's newspapers.", + "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67573837", + "isoDate": "2023-11-30T05:38:02.000Z" + }, + { + "title": "Bristol Beacon: Former Colston Hall reopens after name change and \u00a3132m rebuild", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67518656?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 00:44:59 GMT", + "content": "Bristol's historic Colston Hall has been renamed and its renovation is way over schedule and budget.", + "contentSnippet": "Bristol's historic Colston Hall has been renamed and its renovation is way over schedule and budget.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67518656", + "isoDate": "2023-11-30T00:44:59.000Z" + }, + { + "title": "Why food discount stickers may be a thing of the past", + "link": "https://www.bbc.co.uk/news/business-67507932?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 00:01:29 GMT", + "content": "Supermarkets and other retailers are increasing switching to AI-powered digital price displays.", + "contentSnippet": "Supermarkets and other retailers are increasing switching to AI-powered digital price displays.", + "guid": "https://www.bbc.co.uk/news/business-67507932", + "isoDate": "2023-11-30T00:01:29.000Z" + }, + { + "title": "Bournemouth: Digger driver uses bucket to rescue colleague from sea", + "link": "https://www.bbc.co.uk/news/uk-67573319?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 29 Nov 2023 19:50:15 GMT", + "content": "The worker became stranded after his vehicle got stuck in the sand at Bournemouth beach.", + "contentSnippet": "The worker became stranded after his vehicle got stuck in the sand at Bournemouth beach.", + "guid": "https://www.bbc.co.uk/news/uk-67573319", + "isoDate": "2023-11-29T19:50:15.000Z" + }, + { + "title": "Fiance's shock at bride-to-be's walk down aisle at East Yorkshire wedding", + "link": "https://www.bbc.co.uk/news/uk-england-humber-67568551?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 29 Nov 2023 15:59:58 GMT", + "content": "Carrie Redhead, 27, was born with a rare digestive disorder which affects her mobility.", + "contentSnippet": "Carrie Redhead, 27, was born with a rare digestive disorder which affects her mobility.", + "guid": "https://www.bbc.co.uk/news/uk-england-humber-67568551", + "isoDate": "2023-11-29T15:59:58.000Z" + }, + { + "title": "Head teacher says autistic student died despite family's plea for support", + "link": "https://www.bbc.co.uk/news/uk-67526409?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 01:24:21 GMT", + "content": "Isaac Uzoegbu was hit by a car when he ran from home. His head teacher says it could have been prevented.", + "contentSnippet": "Isaac Uzoegbu was hit by a car when he ran from home. His head teacher says it could have been prevented.", + "guid": "https://www.bbc.co.uk/news/uk-67526409", + "isoDate": "2023-12-01T01:24:21.000Z" + }, + { + "title": "Beyonc\u00e9 tells fans (and Taylor Swift) to \"laugh and dance\" at Renaissance film premiere", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67581043?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 01:22:27 GMT", + "content": "The London premiere of Beyonc\u00e9's tour film included an special guest and a demand for dancing.", + "contentSnippet": "The London premiere of Beyonc\u00e9's tour film included an special guest and a demand for dancing.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67581043", + "isoDate": "2023-12-01T01:22:27.000Z" + }, + { + "title": "Endgame: Royal race row naming not publicity stunt, says author Omid Scobie", + "link": "https://www.bbc.co.uk/news/uk-67584565?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 01:12:39 GMT", + "content": "Omid Scobie denies in a BBC interview claims a version of his book deliberately identified two royals.", + "contentSnippet": "Omid Scobie denies in a BBC interview claims a version of his book deliberately identified two royals.", + "guid": "https://www.bbc.co.uk/news/uk-67584565", + "isoDate": "2023-12-01T01:12:39.000Z" + }, + { + "title": "Newspaper headlines: Royal book fallout and MacGowan tributes", + "link": "https://www.bbc.co.uk/news/blogs-the-papers-67585538?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 00:50:27 GMT", + "content": "Omid Scobie's book is still making headlines on Friday, along with news of three high profile deaths.", + "contentSnippet": "Omid Scobie's book is still making headlines on Friday, along with news of three high profile deaths.", + "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67585538", + "isoDate": "2023-12-01T00:50:27.000Z" + }, + { + "title": "Mark Lovell: Killers followed victim after he visited sick mother", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67582128?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 01 Dec 2023 00:00:08 GMT", + "content": "Police are appealing for information one year on from the shooting of Mark Lovell in Newry.", + "contentSnippet": "Police are appealing for information one year on from the shooting of Mark Lovell in Newry.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67582128", + "isoDate": "2023-12-01T00:00:08.000Z" + }, + { + "title": "The race against time to repair Edinburgh Airport's runway", + "link": "https://www.bbc.co.uk/news/uk-scotland-67579869?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 30 Nov 2023 23:14:45 GMT", + "content": "Engineers have been working throughout the past month to repair cracks in the surface of Edinburgh Airport's runway.", + "contentSnippet": "Engineers have been working throughout the past month to repair cracks in the surface of Edinburgh Airport's runway.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67579869", + "isoDate": "2023-11-30T23:14:45.000Z" + }, + { + "title": "Passengers stuck for hours on Elizabeth line after cables damaged", + "link": "https://www.bbc.co.uk/news/uk-67655656?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 09:04:26 GMT", + "content": "Some commuters described the experience as \"feeling like a wartime thing\".", + "contentSnippet": "Some commuters described the experience as \"feeling like a wartime thing\".", + "guid": "https://www.bbc.co.uk/news/uk-67655656", + "isoDate": "2023-12-08T09:04:26.000Z" + }, + { + "title": "Stormont crisis: Devolution deal no closer despite finance talks, says DUP", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67657137?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 09:01:40 GMT", + "content": "Northern Ireland's political parties are expected to hold talks with the NI secretary on Monday.", + "contentSnippet": "Northern Ireland's political parties are expected to hold talks with the NI secretary on Monday.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67657137", + "isoDate": "2023-12-08T09:01:40.000Z" + }, + { + "title": "UK paid Rwanda an extra \u00a3100m for asylum deal", + "link": "https://www.bbc.co.uk/news/uk-politics-67656220?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 07:40:27 GMT", + "content": "It means the UK has spent \u00a3240m on the scheme, despite no asylum seekers being sent to the African nation.", + "contentSnippet": "It means the UK has spent \u00a3240m on the scheme, despite no asylum seekers being sent to the African nation.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67656220", + "isoDate": "2023-12-08T07:40:27.000Z" + }, + { + "title": "Coil fitting wait leaves woman in excruciating pain", + "link": "https://www.bbc.co.uk/news/uk-wales-67650673?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 06:45:35 GMT", + "content": "Patients in one health board area are waiting up to nine months for a coil fitting.", + "contentSnippet": "Patients in one health board area are waiting up to nine months for a coil fitting.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67650673", + "isoDate": "2023-12-08T06:45:35.000Z" + }, + { + "title": "Couple traumatised after fleeing West Bank", + "link": "https://www.bbc.co.uk/news/uk-england-london-67648377?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 06:15:28 GMT", + "content": "Imad Alqasim and Zeina Ramadan said it took days to leave and they are afraid for remaining family.", + "contentSnippet": "Imad Alqasim and Zeina Ramadan said it took days to leave and they are afraid for remaining family.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67648377", + "isoDate": "2023-12-08T06:15:28.000Z" + }, + { + "title": "Grooming gangs: Police 'do not accurately understand issue'", + "link": "https://www.bbc.co.uk/news/uk-67655654?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 02:35:27 GMT", + "content": "The police watchdog also warns of concerns about victim-blaming and officers lacking training.", + "contentSnippet": "The police watchdog also warns of concerns about victim-blaming and officers lacking training.", + "guid": "https://www.bbc.co.uk/news/uk-67655654", + "isoDate": "2023-12-08T02:35:27.000Z" + }, + { + "title": "Chris Mason: Rwanda bill a reminder of Brexit Tory divisions", + "link": "https://www.bbc.co.uk/news/uk-politics-67656496?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 02:20:05 GMT", + "content": "This weekend different groupings of MPs in the party are scrutinising the government's planned new law on Rwanda.", + "contentSnippet": "This weekend different groupings of MPs in the party are scrutinising the government's planned new law on Rwanda.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67656496", + "isoDate": "2023-12-08T02:20:05.000Z" + }, + { + "title": "The Papers: Tories 'imploding' and 'Rwanda plan risks failing'", + "link": "https://www.bbc.co.uk/news/blogs-the-papers-67656002?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 08 Dec 2023 02:02:23 GMT", + "content": "The papers again focus on the fallout over Prime Minister Rishi Sunak's Rwanda deal.", + "contentSnippet": "The papers again focus on the fallout over Prime Minister Rishi Sunak's Rwanda deal.", + "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67656002", + "isoDate": "2023-12-08T02:02:23.000Z" + }, + { + "title": "Chanel Metiers d'Art: Models turn Manchester street into a catwalk", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67651946?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 23:13:18 GMT", + "content": "Kristen Stewart and Hugh Grant are among the stars to cram into a Manchester street to watch the show.", + "contentSnippet": "Kristen Stewart and Hugh Grant are among the stars to cram into a Manchester street to watch the show.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67651946", + "isoDate": "2023-12-07T23:13:18.000Z" + }, + { + "title": "The teenager who lives like it's the 1940s", + "link": "https://www.bbc.co.uk/news/articles/crgpjpr35nko?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 22:58:05 GMT", + "content": "Callum John Grubb is only 19 but he is obsessed with everything from the 1940s, including his car.", + "contentSnippet": "Callum John Grubb is only 19 but he is obsessed with everything from the 1940s, including his car.", + "guid": "https://www.bbc.co.uk/news/articles/crgpjpr35nko", + "isoDate": "2023-12-07T22:58:05.000Z" + }, + { + "title": "Elizabeth line passengers freed after hours of waiting", + "link": "https://www.bbc.co.uk/news/uk-67655017?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 22:44:59 GMT", + "content": "Passengers were stuck between Paddington and Acton for more than three hours, due to overhead cables blocking routes.", + "contentSnippet": "Passengers were stuck between Paddington and Acton for more than three hours, due to overhead cables blocking routes.", + "guid": "https://www.bbc.co.uk/news/uk-67655017", + "isoDate": "2023-12-07T22:44:59.000Z" + }, + { + "title": "Covid inquiry: I did not back a 'let it rip' policy, says Boris Johnson", + "link": "https://www.bbc.co.uk/news/uk-politics-67646548?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 21:10:49 GMT", + "content": "The former prime minister says he offered counter arguments but ultimately acted to curb Covid.", + "contentSnippet": "The former prime minister says he offered counter arguments but ultimately acted to curb Covid.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67646548", + "isoDate": "2023-12-07T21:10:49.000Z" + }, + { + "title": "Two arrests at anti-war protest as Keir Starmer attends Labour gala", + "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67650946?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 20:56:27 GMT", + "content": "Police said the arrests were in connection with assaults on officers outside the Crowne Plaza in Glasgow.", + "contentSnippet": "Police said the arrests were in connection with assaults on officers outside the Crowne Plaza in Glasgow.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67650946", + "isoDate": "2023-12-07T20:56:27.000Z" + }, + { + "title": "William Brown: Arrest after boy, 7, killed in Sandgate hit-and-run", + "link": "https://www.bbc.co.uk/news/uk-england-kent-67645864?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 19:49:44 GMT", + "content": "A man has been arrested after seven-year-old William Brown died when he was hit by a vehicle.", + "contentSnippet": "A man has been arrested after seven-year-old William Brown died when he was hit by a vehicle.", + "guid": "https://www.bbc.co.uk/news/uk-england-kent-67645864", + "isoDate": "2023-12-07T19:49:44.000Z" + }, + { + "title": "Watch: Prince William shocks mum on charity walk", + "link": "https://www.bbc.co.uk/news/uk-wales-67652371?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 18:54:24 GMT", + "content": "The Prince of Wales shocks Emma Webb by turning up on day 13 of her charity walk to London.", + "contentSnippet": "The Prince of Wales shocks Emma Webb by turning up on day 13 of her charity walk to London.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67652371", + "isoDate": "2023-12-07T18:54:24.000Z" + }, + { + "title": "Met Police: Ex-officers sentenced over racist WhatsApp posts", + "link": "https://www.bbc.co.uk/news/uk-england-london-67650961?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 18:15:34 GMT", + "content": "The six retired officers were told their behaviour had harmed public confidence in the police.", + "contentSnippet": "The six retired officers were told their behaviour had harmed public confidence in the police.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67650961", + "isoDate": "2023-12-07T18:15:34.000Z" + }, + { + "title": "Prince Harry tells court he wants his children to feel at home in UK", + "link": "https://www.bbc.co.uk/news/uk-67653280?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 18:00:17 GMT", + "content": "The Duke of Sussex is challenging the Home Office over a decision to downgrade his protection.", + "contentSnippet": "The Duke of Sussex is challenging the Home Office over a decision to downgrade his protection.", + "guid": "https://www.bbc.co.uk/news/uk-67653280", + "isoDate": "2023-12-07T18:00:17.000Z" + }, + { + "title": "Benjamin Zephaniah: The life of an artist and activist in his own words", + "link": "https://www.bbc.co.uk/news/uk-67655014?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 18:00:00 GMT", + "content": "As tributes are paid to a \"titan of literature\", watch him perform some of his poetic works.", + "contentSnippet": "As tributes are paid to a \"titan of literature\", watch him perform some of his poetic works.", + "guid": "https://www.bbc.co.uk/news/uk-67655014", + "isoDate": "2023-12-07T18:00:00.000Z" + }, + { + "title": "Serial killer Steve Wright arrested over 1999 murder of Victoria Hall", + "link": "https://www.bbc.co.uk/news/uk-england-suffolk-67649142?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 17:59:52 GMT", + "content": "Police arrest serial killer Steve Wright on suspicion of murdering the teenager in Suffolk in 1999.", + "contentSnippet": "Police arrest serial killer Steve Wright on suspicion of murdering the teenager in Suffolk in 1999.", + "guid": "https://www.bbc.co.uk/news/uk-england-suffolk-67649142", + "isoDate": "2023-12-07T17:59:52.000Z" + }, + { + "title": "Ruling due in Scottish gender reform legal battle", + "link": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67648206?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 17:21:53 GMT", + "content": "A ruling on whether the UK government is able to block Holyrood's gender reform bill is expected on Friday.", + "contentSnippet": "A ruling on whether the UK government is able to block Holyrood's gender reform bill is expected on Friday.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67648206", + "isoDate": "2023-12-07T17:21:53.000Z" + }, + { + "title": "Ofsted visit 'contributed' to Ruth Perry death", + "link": "https://www.bbc.co.uk/news/education-67639942?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 17:01:18 GMT", + "content": "The head teacher died two months after Ofsted inspected her school in Reading in November 2022.", + "contentSnippet": "The head teacher died two months after Ofsted inspected her school in Reading in November 2022.", + "guid": "https://www.bbc.co.uk/news/education-67639942", + "isoDate": "2023-12-07T17:01:18.000Z" + }, + { + "title": "Bob Dylan sells Scottish Highlands estate for \u00a34m", + "link": "https://www.bbc.co.uk/news/articles/cgrp9967v0po?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 13:30:27 GMT", + "content": "The singer bought Aultmore House in 2006 but has not visited in at least four years", + "contentSnippet": "The singer bought Aultmore House in 2006 but has not visited in at least four years", + "guid": "https://www.bbc.co.uk/news/articles/cgrp9967v0po", + "isoDate": "2023-12-07T13:30:27.000Z" + }, + { + "title": "Conor McGregor faces criticism after online rap battle", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67648347?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 13:30:05 GMT", + "content": "Former UFC champion faces criticism for attacking the disabilities and religion of a battle rapper.", + "contentSnippet": "Former UFC champion faces criticism for attacking the disabilities and religion of a battle rapper.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67648347", + "isoDate": "2023-12-07T13:30:05.000Z" + }, + { + "title": "I.N.A.D.E.Q.U.A.T.E - Ruth Perry\u2019s despair in handwritten notes", + "link": "https://www.bbc.co.uk/news/education-67612233?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 12:24:25 GMT", + "content": "In the days following an inspection at her school, the head teacher wrote down her innermost thoughts.", + "contentSnippet": "In the days following an inspection at her school, the head teacher wrote down her innermost thoughts.", + "guid": "https://www.bbc.co.uk/news/education-67612233", + "isoDate": "2023-12-07T12:24:25.000Z" + }, + { + "title": "Sunak on Rwanda policy: My patience with this has worn thin", + "link": "https://www.bbc.co.uk/news/uk-politics-67647706?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 11:26:13 GMT", + "content": "The PM is asked if he is telling his MPs to \"back me or sack me\" over getting his flagship migration policy into law.", + "contentSnippet": "The PM is asked if he is telling his MPs to \"back me or sack me\" over getting his flagship migration policy into law.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67647706", + "isoDate": "2023-12-07T11:26:13.000Z" + }, + { + "title": "Why was a man who took a wee in a layby fined for littering?", + "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67615231?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 09:24:07 GMT", + "content": "A high-profile lawyer disputes a council's claim that public urination is littering.", + "contentSnippet": "A high-profile lawyer disputes a council's claim that public urination is littering.", + "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67615231", + "isoDate": "2023-12-07T09:24:07.000Z" + }, + { + "title": "Ben Whishaw: Paddington actor to star in Waiting for Godot", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67568046?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 02:21:29 GMT", + "content": "The actor will appear in a new West End production of Samuel Beckett's Waiting For Godot next year.", + "contentSnippet": "The actor will appear in a new West End production of Samuel Beckett's Waiting For Godot next year.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67568046", + "isoDate": "2023-12-07T02:21:29.000Z" + }, + { + "title": "Johnny Marr on music, memories and how Manchester made him", + "link": "https://www.bbc.co.uk/news/uk-england-manchester-67623076?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 00:40:34 GMT", + "content": "Ahead of two homecoming shows, iconic guitarist Johnny Marr considers his lifelong links to the city.", + "contentSnippet": "Ahead of two homecoming shows, iconic guitarist Johnny Marr considers his lifelong links to the city.", + "guid": "https://www.bbc.co.uk/news/uk-england-manchester-67623076", + "isoDate": "2023-12-07T00:40:34.000Z" + }, + { + "title": "Accessibility in gaming: 'When we all play, we all win'", + "link": "https://www.bbc.co.uk/news/newsbeat-67591204?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 07 Dec 2023 00:37:51 GMT", + "content": "Accessibility in gaming is a hot topic - but there's still a lot of work to do to open up the hobby.", + "contentSnippet": "Accessibility in gaming is a hot topic - but there's still a lot of work to do to open up the hobby.", + "guid": "https://www.bbc.co.uk/news/newsbeat-67591204", + "isoDate": "2023-12-07T00:37:51.000Z" + }, + { + "title": "Can the new Rwanda bill work and what could stop it?", + "link": "https://www.bbc.co.uk/news/uk-67643900?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 23:02:43 GMT", + "content": "The legislation could set up a politically explosive fight with the courts.", + "contentSnippet": "The legislation could set up a politically explosive fight with the courts.", + "guid": "https://www.bbc.co.uk/news/uk-67643900", + "isoDate": "2023-12-06T23:02:43.000Z" + }, + { + "title": "Boris Johnson receives boos as he exits Covid inquiry", + "link": "https://www.bbc.co.uk/news/uk-politics-67642894?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 18:05:21 GMT", + "content": "The former prime minister was greeted with shouting and boos from protesters as he left Dorland House.", + "contentSnippet": "The former prime minister was greeted with shouting and boos from protesters as he left Dorland House.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67642894", + "isoDate": "2023-12-06T18:05:21.000Z" + }, + { + "title": "Heckling and choking up: Boris Johnson grilled at Covid inquiry", + "link": "https://www.bbc.co.uk/news/uk-politics-67642892?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 17:32:06 GMT", + "content": "The former prime minister has given evidence for two days at the Covid inquiry.", + "contentSnippet": "The former prime minister has given evidence for two days at the Covid inquiry.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67642892", + "isoDate": "2023-12-06T17:32:06.000Z" + }, + { + "title": "Watch: Baroness Hallett asks a person to 'sit down or leave the hearing'", + "link": "https://www.bbc.co.uk/news/uk-67636311?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 10:27:27 GMT", + "content": "Baroness Hallett asks a person to \"sit down or leave the hearing\" during Boris Johnson's evidence.", + "contentSnippet": "Baroness Hallett asks a person to \"sit down or leave the hearing\" during Boris Johnson's evidence.", + "guid": "https://www.bbc.co.uk/news/uk-67636311", + "isoDate": "2023-12-06T10:27:27.000Z" + }, + { + "title": "Inside the secret complex making high-tech gadgets for UK spies", + "link": "https://www.bbc.co.uk/news/uk-67626880?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 03:35:18 GMT", + "content": "The site near Milton Keynes has never opened its doors to the media in its 85-year history - until now.", + "contentSnippet": "The site near Milton Keynes has never opened its doors to the media in its 85-year history - until now.", + "guid": "https://www.bbc.co.uk/news/uk-67626880", + "isoDate": "2023-12-06T03:35:18.000Z" + }, + { + "title": "Chanel Metiers d'Art: Fashion A-list to descend on Manchester street", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67619272?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 06 Dec 2023 00:08:33 GMT", + "content": "An ordinary road is being transformed into a catwalk for one of fashion's most prestigious events.", + "contentSnippet": "An ordinary road is being transformed into a catwalk for one of fashion's most prestigious events.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67619272", + "isoDate": "2023-12-06T00:08:33.000Z" + }, + { + "title": "Is the Rwanda policy a vote winner? One High Street has its say", + "link": "https://www.bbc.co.uk/news/uk-67630766?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 22:48:13 GMT", + "content": "People along one High Street in Swindon give their views on the government's Rwanda policy.", + "contentSnippet": "People along one High Street in Swindon give their views on the government's Rwanda policy.", + "guid": "https://www.bbc.co.uk/news/uk-67630766", + "isoDate": "2023-12-05T22:48:13.000Z" + }, + { + "title": "Watch: Policeman commandeers bike to chase drug dealer", + "link": "https://www.bbc.co.uk/news/uk-67629952?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 20:02:42 GMT", + "content": "PC Lewis Marks used a member of the public's bike to chase down a man in Northampton.", + "contentSnippet": "PC Lewis Marks used a member of the public's bike to chase down a man in Northampton.", + "guid": "https://www.bbc.co.uk/news/uk-67629952", + "isoDate": "2023-12-05T20:02:42.000Z" + }, + { + "title": "Chris Mason: Big ifs continue to surround Rwanda migrant plan", + "link": "https://www.bbc.co.uk/news/uk-politics-67630252?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 18:12:14 GMT", + "content": "Ministers want to make their plan to send asylum seekers to Africa work - but nothing is certain.", + "contentSnippet": "Ministers want to make their plan to send asylum seekers to Africa work - but nothing is certain.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67630252", + "isoDate": "2023-12-05T18:12:14.000Z" + }, + { + "title": "Tottenham home named 'House of the Year' by RIBA", + "link": "https://www.bbc.co.uk/news/uk-england-london-67619168?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 12:09:52 GMT", + "content": "The property was described by judges as a \"domestic greenhouse\" and a \"truly sustainable home\".", + "contentSnippet": "The property was described by judges as a \"domestic greenhouse\" and a \"truly sustainable home\".", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67619168", + "isoDate": "2023-12-05T12:09:52.000Z" + }, + { + "title": "Exposing violent watch thieves and their young female 'spotters'", + "link": "https://www.bbc.co.uk/news/uk-67608184?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 02:31:51 GMT", + "content": "London gangs are recruiting young people to steal expensive watches off victims in the street.", + "contentSnippet": "London gangs are recruiting young people to steal expensive watches off victims in the street.", + "guid": "https://www.bbc.co.uk/news/uk-67608184", + "isoDate": "2023-12-05T02:31:51.000Z" + }, + { + "title": "Air pollution: map shows 'concrete jungles' more polluted", + "link": "https://www.bbc.co.uk/news/science-environment-67438443?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 05 Dec 2023 00:03:36 GMT", + "content": "A Sheffield school is fighting dirty air with trees as new data links their absence to pollution.", + "contentSnippet": "A Sheffield school is fighting dirty air with trees as new data links their absence to pollution.", + "guid": "https://www.bbc.co.uk/news/science-environment-67438443", + "isoDate": "2023-12-05T00:03:36.000Z" + }, + { + "title": "Historic bookshop to close after 144 years", + "link": "https://www.bbc.co.uk/news/articles/cyx2dnn10gdo?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Mon, 04 Dec 2023 19:05:39 GMT", + "guid": "https://www.bbc.co.uk/news/articles/cyx2dnn10gdo", + "isoDate": "2023-12-04T19:05:39.000Z" + }, + { + "title": "Gaynor Lord: Body found in search for missing Norwich mum", + "link": "https://www.bbc.co.uk/news/uk-england-norfolk-67728331?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 15:13:38 GMT", + "content": "Police say they do not suspect any \"third-party involvement\" after divers recover a body.", + "contentSnippet": "Police say they do not suspect any \"third-party involvement\" after divers recover a body.", + "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-67728331", + "isoDate": "2023-12-15T15:13:38.000Z" + }, + { + "title": "Banbury: Sparse Christmas tree sells for 'astonishing' fee", + "link": "https://www.bbc.co.uk/news/uk-england-oxfordshire-67725202?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 15:12:21 GMT", + "content": "The vintage tree with 25 branches is a \"humble reminder of 1920s life\", according to the seller.", + "contentSnippet": "The vintage tree with 25 branches is a \"humble reminder of 1920s life\", according to the seller.", + "guid": "https://www.bbc.co.uk/news/uk-england-oxfordshire-67725202", + "isoDate": "2023-12-15T15:12:21.000Z" + }, + { + "title": "Harry wins 15 claims in phone-hacking case against Mirror publisher", + "link": "https://www.bbc.co.uk/news/uk-67332563?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 14:48:09 GMT", + "content": "Prince Harry wins on 15 out of 33 cases where he says articles were based on unlawful information gathering.", + "contentSnippet": "Prince Harry wins on 15 out of 33 cases where he says articles were based on unlawful information gathering.", + "guid": "https://www.bbc.co.uk/news/uk-67332563", + "isoDate": "2023-12-15T14:48:09.000Z" + }, + { + "title": "Channel migrants: One dead and another injured in Channel crossing", + "link": "https://www.bbc.co.uk/news/uk-67724914?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 13:52:38 GMT", + "content": "A boat with more than 60 people on board partially deflated off the French coast, coastguard says.", + "contentSnippet": "A boat with more than 60 people on board partially deflated off the French coast, coastguard says.", + "guid": "https://www.bbc.co.uk/news/uk-67724914", + "isoDate": "2023-12-15T13:52:38.000Z" + }, + { + "title": "Treforest fire: Barber overwhelmed by support after blast", + "link": "https://www.bbc.co.uk/news/uk-wales-67726208?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 13:39:11 GMT", + "content": "Andrew Cox said his business was unsalvageable and sent his thoughts to the dead person's family.", + "contentSnippet": "Andrew Cox said his business was unsalvageable and sent his thoughts to the dead person's family.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67726208", + "isoDate": "2023-12-15T13:39:11.000Z" + }, + { + "title": "Translink: Widespread disruption caused by transport strike", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67719520?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 13:17:46 GMT", + "content": "Major disruption is caused to bus and rail services in the latest action by Translink staff.", + "contentSnippet": "Major disruption is caused to bus and rail services in the latest action by Translink staff.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67719520", + "isoDate": "2023-12-15T13:17:46.000Z" + }, + { + "title": "British teen Alex Batty expected back in UK in next few days", + "link": "https://www.bbc.co.uk/news/uk-67724918?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 12:12:58 GMT", + "content": "The 17-year-old, who vanished in 2017, is currently being looked after by French authorities.", + "contentSnippet": "The 17-year-old, who vanished in 2017, is currently being looked after by French authorities.", + "guid": "https://www.bbc.co.uk/news/uk-67724918", + "isoDate": "2023-12-15T12:12:58.000Z" + }, + { + "title": "Delivery driver found Alex Batty on unlit mountain road", + "link": "https://www.bbc.co.uk/news/world-europe-67725568?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 11:28:53 GMT", + "content": "It was the middle of the night when Fabien Accidini stumbled across a young man on an unlit road.", + "contentSnippet": "It was the middle of the night when Fabien Accidini stumbled across a young man on an unlit road.", + "guid": "https://www.bbc.co.uk/news/world-europe-67725568", + "isoDate": "2023-12-15T11:28:53.000Z" + }, + { + "title": "Stranger Things: The First Shadow - critics call prequel play 'breathtaking'", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67722674?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 11:16:10 GMT", + "content": "The stage show, a prequel to the hit Netflix series, has its world premiere in London's West End.", + "contentSnippet": "The stage show, a prequel to the hit Netflix series, has its world premiere in London's West End.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67722674", + "isoDate": "2023-12-15T11:16:10.000Z" + }, + { + "title": "'Betrayed' Afghan special forces references ignored", + "link": "https://www.bbc.co.uk/news/uk-politics-67714584?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 11:12:37 GMT", + "content": "Members of the Afghan special forces were denied help under a UK scheme to settle those in danger.", + "contentSnippet": "Members of the Afghan special forces were denied help under a UK scheme to settle those in danger.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67714584", + "isoDate": "2023-12-15T11:12:37.000Z" + }, + { + "title": "Sam Ryder eyes up number one with You're Christmas to Me", + "link": "https://www.bbc.co.uk/news/newsbeat-67714433?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 10:38:01 GMT", + "content": "The Eurovision star's festive single has been climbing the charts - but you might not have heard it.", + "contentSnippet": "The Eurovision star's festive single has been climbing the charts - but you might not have heard it.", + "guid": "https://www.bbc.co.uk/news/newsbeat-67714433", + "isoDate": "2023-12-15T10:38:01.000Z" + }, + { + "title": "Geminid meteor shower lights up night sky", + "link": "https://www.bbc.co.uk/news/science-environment-67658650?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 10:29:59 GMT", + "content": "You don't need a telescope to catch what has been dubbed one of the year's most reliable meteor showers.", + "contentSnippet": "You don't need a telescope to catch what has been dubbed one of the year's most reliable meteor showers.", + "guid": "https://www.bbc.co.uk/news/science-environment-67658650", + "isoDate": "2023-12-15T10:29:59.000Z" + }, + { + "title": "Horizon scandal: Call for all Post Office convictions to be overturned", + "link": "https://www.bbc.co.uk/news/business-67719051?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 10:25:50 GMT", + "content": "A board advising ministers on compensation for the Horizon software scandal says all should be cleared.", + "contentSnippet": "A board advising ministers on compensation for the Horizon software scandal says all should be cleared.", + "guid": "https://www.bbc.co.uk/news/business-67719051", + "isoDate": "2023-12-15T10:25:50.000Z" + }, + { + "title": "Police 'relieved and overjoyed' as Alex Batty found", + "link": "https://www.bbc.co.uk/news/uk-67726675?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 09:57:50 GMT", + "content": "The British boy, who disappeared six years ago in Spain, was spotted by a motorist near Toulouse, France.", + "contentSnippet": "The British boy, who disappeared six years ago in Spain, was spotted by a motorist near Toulouse, France.", + "guid": "https://www.bbc.co.uk/news/uk-67726675", + "isoDate": "2023-12-15T09:57:50.000Z" + }, + { + "title": "'He's not done enough' - Brixton crush families criticise Asake", + "link": "https://www.bbc.co.uk/news/uk-england-london-67704945?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 08:11:37 GMT", + "content": "On the anniversary of the fatal crush, the victims' families say they still have few answers.", + "contentSnippet": "On the anniversary of the fatal crush, the victims' families say they still have few answers.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67704945", + "isoDate": "2023-12-15T08:11:37.000Z" + }, + { + "title": "Millions borrowing to pay essential bills at Christmas, charities warn", + "link": "https://www.bbc.co.uk/news/business-67703257?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 07:44:20 GMT", + "content": "Energy costs are a key concern to charities, just as gas and electricity prices are about to rise again.", + "contentSnippet": "Energy costs are a key concern to charities, just as gas and electricity prices are about to rise again.", + "guid": "https://www.bbc.co.uk/news/business-67703257", + "isoDate": "2023-12-15T07:44:20.000Z" + }, + { + "title": "Nitazenes: Warning over super-strength street drugs linked to deaths", + "link": "https://www.bbc.co.uk/news/uk-scotland-67710207?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 06:19:42 GMT", + "content": "Charity says Scotland has been \"slow to heed warnings\u201d over the rise in nitazene painkillers.", + "contentSnippet": "Charity says Scotland has been \"slow to heed warnings\u201d over the rise in nitazene painkillers.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67710207", + "isoDate": "2023-12-15T06:19:42.000Z" + }, + { + "title": "New Scottish income tax band might only raise \u00a360m", + "link": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67706492?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 06:19:26 GMT", + "content": "The Scottish government is reportedly considering introducing a new tax band to shore up its budget.", + "contentSnippet": "The Scottish government is reportedly considering introducing a new tax band to shore up its budget.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-scotland-politics-67706492", + "isoDate": "2023-12-15T06:19:26.000Z" + }, + { + "title": "Toddler escaped Aberdeen nursery and was almost hit by a bus", + "link": "https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-67677891?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 06:18:41 GMT", + "content": "The near-miss was one of 119 incidents where children left Scotland\u2019s nurseries unaccompanied last year.", + "contentSnippet": "The near-miss was one of 119 incidents where children left Scotland\u2019s nurseries unaccompanied last year.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-67677891", + "isoDate": "2023-12-15T06:18:41.000Z" + }, + { + "title": "Barry Humphries: Entertainer's life celebrated at Sydney Opera House state memorial", + "link": "https://www.bbc.co.uk/news/world-australia-67723756?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 02:53:17 GMT", + "content": "Australian entertainer Humphries - best known for his Dame Edna Everage persona - died in April.", + "contentSnippet": "Australian entertainer Humphries - best known for his Dame Edna Everage persona - died in April.", + "guid": "https://www.bbc.co.uk/news/world-australia-67723756", + "isoDate": "2023-12-15T02:53:17.000Z" + }, + { + "title": "Bereaved parents furious at online safety 'backtrack'", + "link": "https://www.bbc.co.uk/news/uk-politics-67714572?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 00:10:41 GMT", + "content": "The government denies watering down online protections promised to bereaved families.", + "contentSnippet": "The government denies watering down online protections promised to bereaved families.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67714572", + "isoDate": "2023-12-15T00:10:41.000Z" + }, + { + "title": "Head teachers in 'despair', union warns after Ruth Perry's death", + "link": "https://www.bbc.co.uk/news/education-67718327?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 00:07:30 GMT", + "content": "Almost half needed support for their mental health or wellbeing in the last year, a survey suggests.", + "contentSnippet": "Almost half needed support for their mental health or wellbeing in the last year, a survey suggests.", + "guid": "https://www.bbc.co.uk/news/education-67718327", + "isoDate": "2023-12-15T00:07:30.000Z" + }, + { + "title": "Russian gas giant Gazprom makes \u00a339m profit in North Sea", + "link": "https://www.bbc.co.uk/news/business-67720198?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 15 Dec 2023 00:02:39 GMT", + "content": "The state-owned Russian energy firm earned \u00a339m from its Dutch-UK gas field in 2022, accounts show.", + "contentSnippet": "The state-owned Russian energy firm earned \u00a339m from its Dutch-UK gas field in 2022, accounts show.", + "guid": "https://www.bbc.co.uk/news/business-67720198", + "isoDate": "2023-12-15T00:02:39.000Z" + }, + { + "title": "Job of minister for disabled people downgraded", + "link": "https://www.bbc.co.uk/news/uk-politics-67717311?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 18:16:57 GMT", + "content": "Work and pensions minister Mims Davies takes on the role but stays at the most junior level of government.", + "contentSnippet": "Work and pensions minister Mims Davies takes on the role but stays at the most junior level of government.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67717311", + "isoDate": "2023-12-14T18:16:57.000Z" + }, + { + "title": "Gaynor Lord: Friend 'feels terrible' over call from missing woman", + "link": "https://www.bbc.co.uk/news/uk-england-norfolk-67718635?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 17:54:38 GMT", + "content": "A friend of Gaynor Lord says she \"keeps going over\" a call she had with her on the day she went missing.", + "contentSnippet": "A friend of Gaynor Lord says she \"keeps going over\" a call she had with her on the day she went missing.", + "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-67718635", + "isoDate": "2023-12-14T17:54:38.000Z" + }, + { + "title": "How a four-year-old boy helped solve schoolgirl's 1996 murder", + "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67666606?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 14:51:08 GMT", + "content": "Archie Wilson witnessed the fatal attack on Caroline Glachan on the banks of the River Leven in Renton.", + "contentSnippet": "Archie Wilson witnessed the fatal attack on Caroline Glachan on the banks of the River Leven in Renton.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67666606", + "isoDate": "2023-12-14T14:51:08.000Z" + }, + { + "title": "EHCP: 'My autistic daughter has not been in school for 10 months'", + "link": "https://www.bbc.co.uk/news/education-67705749?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 10:44:59 GMT", + "content": "There has been a record rise in the number of parents lodging appeals at SEND tribunals.", + "contentSnippet": "There has been a record rise in the number of parents lodging appeals at SEND tribunals.", + "guid": "https://www.bbc.co.uk/news/education-67705749", + "isoDate": "2023-12-14T10:44:59.000Z" + }, + { + "title": "Great Yarmouth Hippodrome Circus acrobat falls from 'wheel of death'", + "link": "https://www.bbc.co.uk/news/uk-england-norfolk-67713927?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 09:39:27 GMT", + "content": "The man, in his 20s, fell from about 10m (33ft) above the circus ring during the act.", + "contentSnippet": "The man, in his 20s, fell from about 10m (33ft) above the circus ring during the act.", + "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-67713927", + "isoDate": "2023-12-14T09:39:27.000Z" + }, + { + "title": "Lesley Joseph on how relaxed performances should be more common", + "link": "https://www.bbc.co.uk/news/uk-wales-67639243?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 06:13:41 GMT", + "content": "It is where the lights stay on, it is not as noisy, and the cast explain they are not scary.", + "contentSnippet": "It is where the lights stay on, it is not as noisy, and the cast explain they are not scary.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67639243", + "isoDate": "2023-12-14T06:13:41.000Z" + }, + { + "title": "Cystic fibrosis: The miracle drugs priced out of reach", + "link": "https://www.bbc.co.uk/news/health-67712269?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 02:24:29 GMT", + "content": "Regulators around the world have questioned the high price set by Vertex Pharmaceuticals.", + "contentSnippet": "Regulators around the world have questioned the high price set by Vertex Pharmaceuticals.", + "guid": "https://www.bbc.co.uk/news/health-67712269", + "isoDate": "2023-12-14T02:24:29.000Z" + }, + { + "title": "Cystic fibrosis: The miracle drugs priced out of reach", + "link": "https://www.bbc.co.uk/digihub/health-67702576?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 02:15:26 GMT", + "content": "Regulators around the world have questioned the high price set by Vertex Pharmaceuticals.", + "contentSnippet": "Regulators around the world have questioned the high price set by Vertex Pharmaceuticals.", + "guid": "https://www.bbc.co.uk/digihub/health-67702576", + "isoDate": "2023-12-14T02:15:26.000Z" + }, + { + "title": "GCHQ Christmas challenge: Agency reveals 2023 codebreaker", + "link": "https://www.bbc.co.uk/news/uk-67707647?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 01:49:43 GMT", + "content": "The annual brainteaser this year features a puzzle described as the toughest to date.", + "contentSnippet": "The annual brainteaser this year features a puzzle described as the toughest to date.", + "guid": "https://www.bbc.co.uk/news/uk-67707647", + "isoDate": "2023-12-14T01:49:43.000Z" + }, + { + "title": "Chester: The city which still celebrates Saturnalia", + "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67680824?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 14 Dec 2023 01:08:03 GMT", + "content": "Christmas in Chester means a celebration of more than one set of 2,000-year-old traditions.", + "contentSnippet": "Christmas in Chester means a celebration of more than one set of 2,000-year-old traditions.", + "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67680824", + "isoDate": "2023-12-14T01:08:03.000Z" + }, + { + "title": "Watch: Cool pool player pots black as car ploughs into pub", + "link": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67708784?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 16:33:43 GMT", + "content": "Footage showed a pool player potting a ball as the car smashed through the wall.", + "contentSnippet": "Footage showed a pool player potting a ball as the car smashed through the wall.", + "guid": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67708784", + "isoDate": "2023-12-13T16:33:43.000Z" + }, + { + "title": "Moment car owner injured as vehicle taken in Doncaster", + "link": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67705156?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 14:34:06 GMT", + "content": "A man was seriously injured during the incident in Doncaster, police say.", + "contentSnippet": "A man was seriously injured during the incident in Doncaster, police say.", + "guid": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67705156", + "isoDate": "2023-12-13T14:34:06.000Z" + }, + { + "title": "Mark Drakeford: Watch high and lows of five years in power", + "link": "https://www.bbc.co.uk/news/uk-wales-67704183?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 13 Dec 2023 13:22:30 GMT", + "content": "Covid, angry outbursts and love of cheese: some of what Mark Drakeford will be remembered for.", + "contentSnippet": "Covid, angry outbursts and love of cheese: some of what Mark Drakeford will be remembered for.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67704183", + "isoDate": "2023-12-13T13:22:30.000Z" + }, + { + "title": "Moment giant wind turbine blade carried through Hawick", + "link": "https://www.bbc.co.uk/news/uk-scotland-67696665?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 12 Dec 2023 16:49:15 GMT", + "content": "Small roads in the Scottish Borders mean turbine blades have to be transported to a wind farm pointing upwards.", + "contentSnippet": "Small roads in the Scottish Borders mean turbine blades have to be transported to a wind farm pointing upwards.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67696665", + "isoDate": "2023-12-12T16:49:15.000Z" + }, + { + "title": "Stormont: Same decade, same approach - different outcome?", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67690752?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 12 Dec 2023 12:43:14 GMT", + "content": "BBC News NI's Enda McClafferty reflects on the ghosts of Christmas talks past - will history repeat?", + "contentSnippet": "BBC News NI's Enda McClafferty reflects on the ghosts of Christmas talks past - will history repeat?", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67690752", + "isoDate": "2023-12-12T12:43:14.000Z" + }, + { + "title": "Next warns of supply delays due to Red Sea shipping attacks", + "link": "https://www.bbc.co.uk/news/business-67879640?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:39:34 GMT", + "content": "The retailer says delays to its stock are \"likely\" as a result of disruption to shipping journeys.", + "contentSnippet": "The retailer says delays to its stock are \"likely\" as a result of disruption to shipping journeys.", + "guid": "https://www.bbc.co.uk/news/business-67879640", + "isoDate": "2024-01-04T10:39:34.000Z" + }, + { + "title": "Jeffrey Epstein: Prince Andrew and Bill Clinton named in court files", + "link": "https://www.bbc.co.uk/news/world-us-canada-67865190?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:14:24 GMT", + "content": "Files detail sex offender Jeffrey Epstein's connections but no bombshell revelations immediately emerge.", + "contentSnippet": "Files detail sex offender Jeffrey Epstein's connections but no bombshell revelations immediately emerge.", + "guid": "https://www.bbc.co.uk/news/world-us-canada-67865190", + "isoDate": "2024-01-04T10:14:24.000Z" + }, + { + "title": "Liverpool gunman: Arrest after shots fired at Showcase cinema", + "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67878562?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 09:58:23 GMT", + "content": "A suspect is detained by armed police after cinema staff in Liverpool were threatened, police say.", + "contentSnippet": "A suspect is detained by armed police after cinema staff in Liverpool were threatened, police say.", + "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67878562", + "isoDate": "2024-01-04T09:58:23.000Z" + }, + { + "title": "Labour says questions remain as company owned by Rishi Sunak's wife closes", + "link": "https://www.bbc.co.uk/news/uk-politics-67880321?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 09:53:22 GMT", + "content": "A spokesperson for Akshata Murty says the company's holdings will be transferred to charity.", + "contentSnippet": "A spokesperson for Akshata Murty says the company's holdings will be transferred to charity.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67880321", + "isoDate": "2024-01-04T09:53:22.000Z" + }, + { + "title": "Southern England weather: Heavy rain set to fall amid flood warnings", + "link": "https://www.bbc.co.uk/news/uk-67878565?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 09:32:14 GMT", + "content": "Heavy rain will fall throughout Thursday in the south of England on already saturated ground.", + "contentSnippet": "Heavy rain will fall throughout Thursday in the south of England on already saturated ground.", + "guid": "https://www.bbc.co.uk/news/uk-67878565", + "isoDate": "2024-01-04T09:32:14.000Z" + }, + { + "title": "Luke Littler: What has 16-year-old's remarkable World Championship run done for darts?", + "link": "https://www.bbc.co.uk/sport/darts/67875958?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 08:17:25 GMT", + "content": "BBC Sport looks at what Luke Littler's remarkable World Championship run has done for darts - and why the 16-year-old believes he can become world champion in the not too distant future.", + "contentSnippet": "BBC Sport looks at what Luke Littler's remarkable World Championship run has done for darts - and why the 16-year-old believes he can become world champion in the not too distant future.", + "guid": "https://www.bbc.co.uk/sport/darts/67875958", + "isoDate": "2024-01-04T08:17:25.000Z" + }, + { + "title": "Troubles pension: More than 40 applicants die before decisions made", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67872639?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 07:25:17 GMT", + "content": "Figures show that more than 40 people have died while waiting on a decision in the 2021 scheme.", + "contentSnippet": "Figures show that more than 40 people have died while waiting on a decision in the 2021 scheme.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67872639", + "isoDate": "2024-01-04T07:25:17.000Z" + }, + { + "title": "FTSE 100 bosses earn UK average salary in three days, says High Pay Centre", + "link": "https://www.bbc.co.uk/news/business-67877235?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 06:53:20 GMT", + "content": "Bosses of the biggest firms will earn more than the typical worker by Thursday lunchtime, research claims.", + "contentSnippet": "Bosses of the biggest firms will earn more than the typical worker by Thursday lunchtime, research claims.", + "guid": "https://www.bbc.co.uk/news/business-67877235", + "isoDate": "2024-01-04T06:53:20.000Z" + }, + { + "title": "Bernadette Walker: Murdered missing teen's body case still open say police", + "link": "https://www.bbc.co.uk/news/uk-england-cambridgeshire-67878071?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 06:34:19 GMT", + "content": "Case of Bernadette Walker, whose killer died in jail, remains open, say police who still seek her body.", + "contentSnippet": "Case of Bernadette Walker, whose killer died in jail, remains open, say police who still seek her body.", + "guid": "https://www.bbc.co.uk/news/uk-england-cambridgeshire-67878071", + "isoDate": "2024-01-04T06:34:19.000Z" + }, + { + "title": "Dismantling of Luton Airport's fire-hit car park starts", + "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67877365?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 06:18:05 GMT", + "content": "The work is expected to take up to 16 weeks and more than 1,000 vehicles will be removed.", + "contentSnippet": "The work is expected to take up to 16 weeks and more than 1,000 vehicles will be removed.", + "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67877365", + "isoDate": "2024-01-04T06:18:05.000Z" + }, + { + "title": "Homeless people could die without more funding - charity", + "link": "https://www.bbc.co.uk/news/uk-wales-67873288?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 06:11:37 GMT", + "content": "One teen says he would be \"in jail or dead\" without Welsh government-funded homeless support.", + "contentSnippet": "One teen says he would be \"in jail or dead\" without Welsh government-funded homeless support.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67873288", + "isoDate": "2024-01-04T06:11:37.000Z" + }, + { + "title": "Newspaper headlines: 'Dartbreaker' and 'halt Red Sea attacks or else'", + "link": "https://www.bbc.co.uk/news/blogs-the-papers-67878546?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 05:49:53 GMT", + "content": "Teenage dart sensation Luke Littler's nail-biting final loss makes the front of most of the papers.", + "contentSnippet": "Teenage dart sensation Luke Littler's nail-biting final loss makes the front of most of the papers.", + "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67878546", + "isoDate": "2024-01-04T05:49:53.000Z" + }, + { + "title": "'We had to investigate our autistic son's death'", + "link": "https://www.bbc.co.uk/news/uk-england-manchester-67777938?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 04:57:10 GMT", + "content": "Will Melbourne died after taking drugs bought on the dark web - his parents found out by investigating themselves.", + "contentSnippet": "Will Melbourne died after taking drugs bought on the dark web - his parents found out by investigating themselves.", + "guid": "https://www.bbc.co.uk/news/uk-england-manchester-67777938", + "isoDate": "2024-01-04T04:57:10.000Z" + }, + { + "title": "BBC Sound Of 2024: How embracing chaos made Olivia Dean a breakout star", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67714013?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 03:07:41 GMT", + "content": "Olivia Dean could have played safe on her debut album. Instead, she got messy - with stellar results.", + "contentSnippet": "Olivia Dean could have played safe on her debut album. Instead, she got messy - with stellar results.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67714013", + "isoDate": "2024-01-04T03:07:41.000Z" + }, + { + "title": "Elvis Evolution: Presley to be brought to life using AI for new immersive show", + "link": "https://www.bbc.co.uk/news/uk-england-london-67871115?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 02:58:12 GMT", + "content": "A new show features holographic projections of the rock star as well as thousands of photos and home-videos.", + "contentSnippet": "A new show features holographic projections of the rock star as well as thousands of photos and home-videos.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67871115", + "isoDate": "2024-01-04T02:58:12.000Z" + }, + { + "title": "How much could darts sensation Luke Littler earn?", + "link": "https://www.bbc.co.uk/news/business-67872681?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 02:16:20 GMT", + "content": "Experts say brands will be queuing up to agree sponsorship deals after the 16-year-old burst onto the scene.", + "contentSnippet": "Experts say brands will be queuing up to agree sponsorship deals after the 16-year-old burst onto the scene.", + "guid": "https://www.bbc.co.uk/news/business-67872681", + "isoDate": "2024-01-04T02:16:20.000Z" + }, + { + "title": "Junior doctors' strike: Some hospitals request staff return to work", + "link": "https://www.bbc.co.uk/news/health-67878403?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 01:14:42 GMT", + "content": "NHS bosses say the service is under huge pressure - but junior doctors say they are misusing the system.", + "contentSnippet": "NHS bosses say the service is under huge pressure - but junior doctors say they are misusing the system.", + "guid": "https://www.bbc.co.uk/news/health-67878403", + "isoDate": "2024-01-04T01:14:42.000Z" + }, + { + "title": "Luke Littler: The 16-year-old darts sensation who took the PDC World Championship by storm", + "link": "https://www.bbc.co.uk/sport/darts/67861277?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 00:04:53 GMT", + "content": "Teenager Luke Littler has taken the PDC World Darts Championship by storm on his debut, aged just 16.", + "contentSnippet": "Teenager Luke Littler has taken the PDC World Darts Championship by storm on his debut, aged just 16.", + "guid": "https://www.bbc.co.uk/sport/darts/67861277", + "isoDate": "2024-01-04T00:04:53.000Z" + }, + { + "title": "Luke Littler: Cheers and sighs as darts final spoils Littler's party", + "link": "https://www.bbc.co.uk/news/uk-67876474?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 23:32:20 GMT", + "content": "Luke Littler loses chance to become youngest world darts champion after being beaten by Luke Humphries.", + "contentSnippet": "Luke Littler loses chance to become youngest world darts champion after being beaten by Luke Humphries.", + "guid": "https://www.bbc.co.uk/news/uk-67876474", + "isoDate": "2024-01-03T23:32:20.000Z" + }, + { + "title": "Washed-up handbag back with owner 30 years later", + "link": "https://www.bbc.co.uk/news/articles/c3gy724ey9vo?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 23:11:02 GMT", + "content": "The bag was stolen in 1993 in Aberdeen but the owner was found after a schoolgirl's beach discovery.", + "contentSnippet": "The bag was stolen in 1993 in Aberdeen but the owner was found after a schoolgirl's beach discovery.", + "guid": "https://www.bbc.co.uk/news/articles/c3gy724ey9vo", + "isoDate": "2024-01-03T23:11:02.000Z" + }, + { + "title": "Luke Humphries beats Luke Littler to win PDC World Darts Championship", + "link": "https://www.bbc.co.uk/sport/darts/67875251?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 22:39:35 GMT", + "content": "England's Luke Humphries beats 16-year-old Luke Littler in a gripping final at Alexandra Palace to win his first PDC World Championship title.", + "contentSnippet": "England's Luke Humphries beats 16-year-old Luke Littler in a gripping final at Alexandra Palace to win his first PDC World Championship title.", + "guid": "https://www.bbc.co.uk/sport/darts/67875251", + "isoDate": "2024-01-03T22:39:35.000Z" + }, + { + "title": "Post Office: Wrongly jailed postmaster praises TV drama", + "link": "https://www.bbc.co.uk/news/uk-wales-67876198?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 21:37:22 GMT", + "content": "Noel Thomas, 77, from Anglesey, says the Post Office scandal has been \"hell for a lot of people\".", + "contentSnippet": "Noel Thomas, 77, from Anglesey, says the Post Office scandal has been \"hell for a lot of people\".", + "guid": "https://www.bbc.co.uk/news/uk-wales-67876198", + "isoDate": "2024-01-03T21:37:22.000Z" + }, + { + "title": "Luke Littler: 'He's got skill in abundance' - Former darts trainer", + "link": "https://www.bbc.co.uk/news/uk-67876473?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 18:55:17 GMT", + "content": "Trainer Karl Holden coached darts sensation Luke Littler at the St Helen's Darts Academy before his rise to fame.", + "contentSnippet": "Trainer Karl Holden coached darts sensation Luke Littler at the St Helen's Darts Academy before his rise to fame.", + "guid": "https://www.bbc.co.uk/news/uk-67876473", + "isoDate": "2024-01-03T18:55:17.000Z" + }, + { + "title": "Statistics watchdog to examine government asylum backlog claims", + "link": "https://www.bbc.co.uk/news/uk-politics-67876860?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 18:25:19 GMT", + "content": "The Office for Statistics Regulation will investigate whether official announcements were misleading.", + "contentSnippet": "The Office for Statistics Regulation will investigate whether official announcements were misleading.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67876860", + "isoDate": "2024-01-03T18:25:19.000Z" + }, + { + "title": "Police dog Ronnie retires after crime-fighting career in Bristol", + "link": "https://www.bbc.co.uk/news/uk-england-bristol-67876206?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 18:17:59 GMT", + "content": "Ronnie also helped locate missing people and protected world leaders at the G7 summit.", + "contentSnippet": "Ronnie also helped locate missing people and protected world leaders at the G7 summit.", + "guid": "https://www.bbc.co.uk/news/uk-england-bristol-67876206", + "isoDate": "2024-01-03T18:17:59.000Z" + }, + { + "title": "Storm Henk: Billing Aquadrome evacuated after severe flooding", + "link": "https://www.bbc.co.uk/news/uk-67875840?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 16:41:34 GMT", + "content": "Parts of the East Midlands have been severely affected by flooding and strong winds, brought by Storm Henk.", + "contentSnippet": "Parts of the East Midlands have been severely affected by flooding and strong winds, brought by Storm Henk.", + "guid": "https://www.bbc.co.uk/news/uk-67875840", + "isoDate": "2024-01-03T16:41:34.000Z" + }, + { + "title": "Tory MP Nadhim Zahawi plays himself in Post Office scandal TV drama", + "link": "https://www.bbc.co.uk/news/uk-politics-67873197?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 15:36:34 GMT", + "content": "The former chancellor plays himself putting tough questions to then-chief executive Paula Vennells.", + "contentSnippet": "The former chancellor plays himself putting tough questions to then-chief executive Paula Vennells.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67873197", + "isoDate": "2024-01-03T15:36:34.000Z" + }, + { + "title": "Wayne Rooney: Is this the end of sacked Birmingham City boss as a manager?", + "link": "https://www.bbc.co.uk/sport/football/67870899?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 15:22:32 GMT", + "content": "With Premier League and EFL club options looking thin, what does Wayne Rooney's managerial future look like following his sacking by Birmingham City after just 83 days?", + "contentSnippet": "With Premier League and EFL club options looking thin, what does Wayne Rooney's managerial future look like following his sacking by Birmingham City after just 83 days?", + "guid": "https://www.bbc.co.uk/sport/football/67870899", + "isoDate": "2024-01-03T15:22:32.000Z" + }, + { + "title": "Granton shooting: Murdered man Marc Webley told enemies 'come and get it'", + "link": "https://www.bbc.co.uk/news/uk-scotland-edinburgh-east-fife-67871340?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 15:17:22 GMT", + "content": "Marc Webley used social media videos to goad his rivals before his murder on Hogmanay.", + "contentSnippet": "Marc Webley used social media videos to goad his rivals before his murder on Hogmanay.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-edinburgh-east-fife-67871340", + "isoDate": "2024-01-03T15:17:22.000Z" + }, + { + "title": "Luke Littler: Friends and supporters tell of pride ahead of final", + "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67872291?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 14:44:56 GMT", + "content": "Luke Littler fever has gripped the nation as the teenage darts sensation prepares for his big clash.", + "contentSnippet": "Luke Littler fever has gripped the nation as the teenage darts sensation prepares for his big clash.", + "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67872291", + "isoDate": "2024-01-03T14:44:56.000Z" + }, + { + "title": "Dramatic rescue of woman and child submerged in car in Birmingham during Storm Henk", + "link": "https://www.bbc.co.uk/news/uk-67870463?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 13:51:54 GMT", + "content": "Liam Stych told the BBC he was acting on \"instinct\" after spotting the trapped vehicle in Storm Henk.", + "contentSnippet": "Liam Stych told the BBC he was acting on \"instinct\" after spotting the trapped vehicle in Storm Henk.", + "guid": "https://www.bbc.co.uk/news/uk-67870463", + "isoDate": "2024-01-03T13:51:54.000Z" + }, + { + "title": "Luke Littler's local pub goers on darts teen's run to final", + "link": "https://www.bbc.co.uk/news/uk-67870462?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 10:56:26 GMT", + "content": "Ahead of Wednesday's PDC Championship final, the BBC spoke to the darts sensation's friends at his local pub.", + "contentSnippet": "Ahead of Wednesday's PDC Championship final, the BBC spoke to the darts sensation's friends at his local pub.", + "guid": "https://www.bbc.co.uk/news/uk-67870462", + "isoDate": "2024-01-03T10:56:26.000Z" + }, + { + "title": "Chart queens - seven of year's biggest singles were by women", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67862412?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 09:42:24 GMT", + "content": "But only one of the top 10 biggest-selling albums of 2023 was a new release, official figures show.", + "contentSnippet": "But only one of the top 10 biggest-selling albums of 2023 was a new release, official figures show.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67862412", + "isoDate": "2024-01-03T09:42:24.000Z" + }, + { + "title": "Plane wobbles during Storm Henk while landing at Heathrow airport", + "link": "https://www.bbc.co.uk/news/uk-67870459?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 06:39:45 GMT", + "content": "The Air Astana flight was one of a number that had an unsteady landing in high winds at Heathrow.", + "contentSnippet": "The Air Astana flight was one of a number that had an unsteady landing in high winds at Heathrow.", + "guid": "https://www.bbc.co.uk/news/uk-67870459", + "isoDate": "2024-01-03T06:39:45.000Z" + }, + { + "title": "Red Sea attacks: 'Our shipping costs have jumped 250%'", + "link": "https://www.bbc.co.uk/news/business-67865064?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 03 Jan 2024 00:01:44 GMT", + "content": "Business leaders say attacks on shipping vessels could cause delays and price rises for UK shoppers.", + "contentSnippet": "Business leaders say attacks on shipping vessels could cause delays and price rises for UK shoppers.", + "guid": "https://www.bbc.co.uk/news/business-67865064", + "isoDate": "2024-01-03T00:01:44.000Z" + }, + { + "title": "BBC Verify: Government's asylum figures show uncleared backlog ", + "link": "https://www.bbc.co.uk/news/uk-politics-67863380?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 02 Jan 2024 17:54:04 GMT", + "content": "Thousands of asylum applications made before June 2022 have still not received initial decisions.", + "contentSnippet": "Thousands of asylum applications made before June 2022 have still not received initial decisions.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67863380", + "isoDate": "2024-01-02T17:54:04.000Z" + }, + { + "title": "NHS Tracker: Find out about hospital waiting times in your area this winter", + "link": "https://www.bbc.co.uk/news/health-59549800?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 21 Dec 2023 11:10:43 GMT", + "content": "As the NHS enters 2024 and a difficult winter period, find out what's happening in your area.", + "contentSnippet": "As the NHS enters 2024 and a difficult winter period, find out what's happening in your area.", + "guid": "https://www.bbc.co.uk/news/health-59549800", + "isoDate": "2023-12-21T11:10:43.000Z" + }, + { + "title": "Liverpool: CCTV footage shows gunman firing in newsagents", + "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67879709?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:54:26 GMT", + "content": "The man has been arrested on suspicion of three shootings in 13 hours across the city.", + "contentSnippet": "The man has been arrested on suspicion of three shootings in 13 hours across the city.", + "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67879709", + "isoDate": "2024-01-04T10:54:26.000Z" + }, + { + "title": "Big difference between Labour and Tories, says Sir Keir Starmer", + "link": "https://www.bbc.co.uk/news/uk-politics-67880324?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 16:59:39 GMT", + "content": "The Labour leader sets out dividing lines with Rishi Sunak ahead of a general election later this year.", + "contentSnippet": "The Labour leader sets out dividing lines with Rishi Sunak ahead of a general election later this year.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67880324", + "isoDate": "2024-01-04T16:59:39.000Z" + }, + { + "title": "Storm Henk: Woman, 87, dies after car crashes into fallen tree", + "link": "https://www.bbc.co.uk/news/uk-england-oxfordshire-67885644?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 16:59:16 GMT", + "content": "Police say the crash happened on Tuesday evening in Oxfordshire amid Storm Henk.", + "contentSnippet": "Police say the crash happened on Tuesday evening in Oxfordshire amid Storm Henk.", + "guid": "https://www.bbc.co.uk/news/uk-england-oxfordshire-67885644", + "isoDate": "2024-01-04T16:59:16.000Z" + }, + { + "title": "BBC Verify: Would Labour spend \u00a328bn a year on green projects?", + "link": "https://www.bbc.co.uk/news/67801144?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 16:55:09 GMT", + "content": "What is Labour's green investment plan and what would it do to the UK economy?", + "contentSnippet": "What is Labour's green investment plan and what would it do to the UK economy?", + "guid": "https://www.bbc.co.uk/news/67801144", + "isoDate": "2024-01-04T16:55:09.000Z" + }, + { + "title": "Dog owners warned not to rehome banned XL bullies in Scotland", + "link": "https://www.bbc.co.uk/news/uk-scotland-67885918?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 16:51:47 GMT", + "content": "Dog owners warned against driving their animals over the border after new laws introduced in England and Wales.", + "contentSnippet": "Dog owners warned against driving their animals over the border after new laws introduced in England and Wales.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67885918", + "isoDate": "2024-01-04T16:51:47.000Z" + }, + { + "title": "Body found in search for missing Ayr woman", + "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67886494?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 16:45:14 GMT", + "content": "Laura Wilkie, 43, was last seen sitting on a bench in the town more than two weeks ago.", + "contentSnippet": "Laura Wilkie, 43, was last seen sitting on a bench in the town more than two weeks ago.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67886494", + "isoDate": "2024-01-04T16:45:14.000Z" + }, + { + "title": "Luke Littler selected for Premier League Darts after run to PDC World Championship final", + "link": "https://www.bbc.co.uk/sport/darts/67885526?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 16:40:34 GMT", + "content": "Luke Littler has been selected for Premier League Darts following his fairytale run to the final of the PDC World Championship.", + "contentSnippet": "Luke Littler has been selected for Premier League Darts following his fairytale run to the final of the PDC World Championship.", + "guid": "https://www.bbc.co.uk/sport/darts/67885526", + "isoDate": "2024-01-04T16:40:34.000Z" + }, + { + "title": "Baby formula recalled over bacteria contamination fears", + "link": "https://www.bbc.co.uk/news/uk-67880812?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 16:37:24 GMT", + "content": "Reckitt are recalling batches of Nutramigen powders after finding bacteria in an \"isolated overseas sample\".", + "contentSnippet": "Reckitt are recalling batches of Nutramigen powders after finding bacteria in an \"isolated overseas sample\".", + "guid": "https://www.bbc.co.uk/news/uk-67880812", + "isoDate": "2024-01-04T16:37:24.000Z" + }, + { + "title": "We need information not just cash to stop boats, France tells UK", + "link": "https://www.bbc.co.uk/news/uk-67883084?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 16:20:30 GMT", + "content": "A court in France says intelligence provided to police is often \"first level\" and \"very general\".", + "contentSnippet": "A court in France says intelligence provided to police is often \"first level\" and \"very general\".", + "guid": "https://www.bbc.co.uk/news/uk-67883084", + "isoDate": "2024-01-04T16:20:30.000Z" + }, + { + "title": "Sunderland's Jack Diamond says rape accuser initiated sex", + "link": "https://www.bbc.co.uk/news/uk-england-wear-67881690?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 16:03:18 GMT", + "content": "Jack Diamond denies raping and sexually assaulting a woman he met on a dating app.", + "contentSnippet": "Jack Diamond denies raping and sexually assaulting a woman he met on a dating app.", + "guid": "https://www.bbc.co.uk/news/uk-england-wear-67881690", + "isoDate": "2024-01-04T16:03:18.000Z" + }, + { + "title": "Sainsbury\u2019s increases pay as supermarkets battle for staff", + "link": "https://www.bbc.co.uk/news/business-67883985?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 15:52:16 GMT", + "content": "About 120,000 workers at the supermarket will see their wages increase by more than 9% from March.", + "contentSnippet": "About 120,000 workers at the supermarket will see their wages increase by more than 9% from March.", + "guid": "https://www.bbc.co.uk/news/business-67883985", + "isoDate": "2024-01-04T15:52:16.000Z" + }, + { + "title": "Nottinghamshire County Council declares major incident due to flooding", + "link": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67881913?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 15:33:23 GMT", + "content": "Nottinghamshire County Council says river levels could reach the highest on record from 2000.", + "contentSnippet": "Nottinghamshire County Council says river levels could reach the highest on record from 2000.", + "guid": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67881913", + "isoDate": "2024-01-04T15:33:23.000Z" + }, + { + "title": "Liverpool triple shooting suspect captured on CCTV opening fire", + "link": "https://www.bbc.co.uk/news/uk-67884241?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 14:47:45 GMT", + "content": "A man in Liverpool is thought to have fired shots in a corner shop, at a cinema and at a house.", + "contentSnippet": "A man in Liverpool is thought to have fired shots in a corner shop, at a cinema and at a house.", + "guid": "https://www.bbc.co.uk/news/uk-67884241", + "isoDate": "2024-01-04T14:47:45.000Z" + }, + { + "title": "Chris Mason: Has Sunak really ruled out a spring election?", + "link": "https://www.bbc.co.uk/news/uk-politics-67883767?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 14:47:23 GMT", + "content": "The PM's curious choice of words suggests he may still be keeping his options open.", + "contentSnippet": "The PM's curious choice of words suggests he may still be keeping his options open.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67883767", + "isoDate": "2024-01-04T14:47:23.000Z" + }, + { + "title": "Four extradited from France over Liverpool 'disturbance' stabbings", + "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67883469?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 14:41:14 GMT", + "content": "A \"large scale disturbance\" in Liverpool left four men with stab wounds or lacerations, police say.", + "contentSnippet": "A \"large scale disturbance\" in Liverpool left four men with stab wounds or lacerations, police say.", + "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67883469", + "isoDate": "2024-01-04T14:41:14.000Z" + }, + { + "title": "Child abuse ring warned of potential life sentence", + "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67883859?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 14:30:20 GMT", + "content": "Seven people were convicted in what is believed to be the largest prosecution of its kind in Scotland.", + "contentSnippet": "Seven people were convicted in what is believed to be the largest prosecution of its kind in Scotland.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67883859", + "isoDate": "2024-01-04T14:30:20.000Z" + }, + { + "title": "Sunak suggests election in second half of year", + "link": "https://www.bbc.co.uk/news/uk-politics-67883242?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 14:04:18 GMT", + "content": "The PM seeks to dampen speculation about a May general election saying he has lots to \"get on with\".", + "contentSnippet": "The PM seeks to dampen speculation about a May general election saying he has lots to \"get on with\".", + "guid": "https://www.bbc.co.uk/news/uk-politics-67883242", + "isoDate": "2024-01-04T14:04:18.000Z" + }, + { + "title": "Storm Henk-hit farmers call for stronger river defences", + "link": "https://www.bbc.co.uk/news/science-environment-67877086?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 13:52:17 GMT", + "content": "Thousands of acres of crops and productive farmland are under water thanks to Storm Henk's flooding.", + "contentSnippet": "Thousands of acres of crops and productive farmland are under water thanks to Storm Henk's flooding.", + "guid": "https://www.bbc.co.uk/news/science-environment-67877086", + "isoDate": "2024-01-04T13:52:17.000Z" + }, + { + "title": "Hemel Hempstead multi-vehicle collision after police pursuit", + "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67881903?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 13:50:25 GMT", + "content": "Police helicopter aids in arrests after driver flees from scene of multi-vehicle crash on foot.", + "contentSnippet": "Police helicopter aids in arrests after driver flees from scene of multi-vehicle crash on foot.", + "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67881903", + "isoDate": "2024-01-04T13:50:25.000Z" + }, + { + "title": "Sir Frank Kitson: Ex-army chief that served in Northern Ireland dies", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67879891?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 12:59:00 GMT", + "content": "General Sir Frank Kitson was a controversial figure for tactics used in the Troubles' early years.", + "contentSnippet": "General Sir Frank Kitson was a controversial figure for tactics used in the Troubles' early years.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67879891", + "isoDate": "2024-01-04T12:59:00.000Z" + }, + { + "title": "Tower of London: 'Adventurous' ravens have their wings clipped", + "link": "https://www.bbc.co.uk/news/uk-england-london-67881521?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 11:53:26 GMT", + "content": "Two ravens have been defying the ravenmaster by flying too far when released from the enclosure.", + "contentSnippet": "Two ravens have been defying the ravenmaster by flying too far when released from the enclosure.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67881521", + "isoDate": "2024-01-04T11:53:26.000Z" + }, + { + "title": "Grays house crash on Christmas Day: Man bailed", + "link": "https://www.bbc.co.uk/news/uk-england-essex-67881341?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:58:45 GMT", + "content": "Essex Police says the man remains on bail until 16 January while officers continue their inquiries.", + "contentSnippet": "Essex Police says the man remains on bail until 16 January while officers continue their inquiries.", + "guid": "https://www.bbc.co.uk/news/uk-england-essex-67881341", + "isoDate": "2024-01-04T10:58:45.000Z" + }, + { + "title": "Aberfan: Man in court over stabbing of pregnant woman", + "link": "https://www.bbc.co.uk/news/uk-wales-67880689?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:54:29 GMT", + "content": "Andrea Pintili was airlifted to hospital after being stabbed near her home in December.", + "contentSnippet": "Andrea Pintili was airlifted to hospital after being stabbed near her home in December.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67880689", + "isoDate": "2024-01-04T10:54:29.000Z" + }, + { + "title": "Glenn Quinn murder: Reward of \u00a340,000 to help catch man's killers", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67880105?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 10:33:44 GMT", + "content": "Glenn Quinn was found beaten to death in his Carrickfergus home in January 2020.", + "contentSnippet": "Glenn Quinn was found beaten to death in his Carrickfergus home in January 2020.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67880105", + "isoDate": "2024-01-04T10:33:44.000Z" + }, + { + "title": "Customers 'lose thousands' in Derby car dealership flood", + "link": "https://www.bbc.co.uk/news/uk-england-derbyshire-67866072?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 06:17:28 GMT", + "content": "Drivers whose cars were written off when a garage flooded say they have been left out of pocket.", + "contentSnippet": "Drivers whose cars were written off when a garage flooded say they have been left out of pocket.", + "guid": "https://www.bbc.co.uk/news/uk-england-derbyshire-67866072", + "isoDate": "2024-01-04T06:17:28.000Z" + }, + { + "title": "Scout leaders accept responsibility for teen's Great Orme death", + "link": "https://www.bbc.co.uk/news/uk-wales-67874462?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 17:13:50 GMT", + "content": "Lawyers for the Scout Association apologise to Ben Leonard's mother at his inquest.", + "contentSnippet": "Lawyers for the Scout Association apologise to Ben Leonard's mother at his inquest.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67874462", + "isoDate": "2024-01-04T17:13:50.000Z" + }, + { + "title": "Derek Draper: Kate Garraway says husband has died, aged 56", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67742004?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 13:36:39 GMT", + "content": "The former political adviser, had multiple health issues after first being hospitalised with Covid in 2020.", + "contentSnippet": "The former political adviser, had multiple health issues after first being hospitalised with Covid in 2020.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67742004", + "isoDate": "2024-01-05T13:36:39.000Z" + }, + { + "title": "Baftas 2024: Doctor Who star David Tennant to host ceremony", + "link": "https://www.bbc.co.uk/news/uk-scotland-67891357?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 13:04:34 GMT", + "content": "The Scottish actor takes over from Richard E Grant and Alison Hammond who hosted the 2023 ceremony.", + "contentSnippet": "The Scottish actor takes over from Richard E Grant and Alison Hammond who hosted the 2023 ceremony.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67891357", + "isoDate": "2024-01-05T13:04:34.000Z" + }, + { + "title": "Ruth Perry's sister 'reassured' by new Ofsted boss", + "link": "https://www.bbc.co.uk/news/education-67893382?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 13:01:39 GMT", + "content": "Sir Martyn Oliver recognises that \"profound change\" is needed at Ofsted, Julia Waters says.", + "contentSnippet": "Sir Martyn Oliver recognises that \"profound change\" is needed at Ofsted, Julia Waters says.", + "guid": "https://www.bbc.co.uk/news/education-67893382", + "isoDate": "2024-01-05T13:01:39.000Z" + }, + { + "title": "Man sentenced for homophobic attack on The Vivienne", + "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67866432?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 12:38:23 GMT", + "content": "The attacker received a 12-week suspended sentence for the attack in a Liverpool McDonald's.", + "contentSnippet": "The attacker received a 12-week suspended sentence for the attack in a Liverpool McDonald's.", + "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67866432", + "isoDate": "2024-01-05T12:38:23.000Z" + }, + { + "title": "Marc Webley murder: Man and woman arrested over shooting at Edinburgh pub", + "link": "https://www.bbc.co.uk/news/uk-scotland-edinburgh-east-fife-67890747?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 12:37:18 GMT", + "content": "Marc Webley was killed minutes before midnight on Hogmanay near the Anchor Inn in the Granton area.", + "contentSnippet": "Marc Webley was killed minutes before midnight on Hogmanay near the Anchor Inn in the Granton area.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-edinburgh-east-fife-67890747", + "isoDate": "2024-01-05T12:37:18.000Z" + }, + { + "title": "Benefits Street 10 years on - what has changed?", + "link": "https://www.bbc.co.uk/news/uk-england-birmingham-67882913?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 12:23:44 GMT", + "content": "The controversial Channel 4 programme aired its first episode on 6 January 2014.", + "contentSnippet": "The controversial Channel 4 programme aired its first episode on 6 January 2014.", + "guid": "https://www.bbc.co.uk/news/uk-england-birmingham-67882913", + "isoDate": "2024-01-05T12:23:44.000Z" + }, + { + "title": "Hundreds evacuated from homes after flooding", + "link": "https://www.bbc.co.uk/news/uk-67888959?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 11:58:04 GMT", + "content": "There are around 280 flood warnings in place as several rivers in England burst their banks.", + "contentSnippet": "There are around 280 flood warnings in place as several rivers in England burst their banks.", + "guid": "https://www.bbc.co.uk/news/uk-67888959", + "isoDate": "2024-01-05T11:58:04.000Z" + }, + { + "title": "London flooding: Floating bar sinks during Storm Henk", + "link": "https://www.bbc.co.uk/news/uk-england-london-67889961?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 11:58:04 GMT", + "content": "Onlookers watched as the party boat began to sink in the River Thames late on Thursday afternoon.", + "contentSnippet": "Onlookers watched as the party boat began to sink in the River Thames late on Thursday afternoon.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67889961", + "isoDate": "2024-01-05T11:58:04.000Z" + }, + { + "title": "Bridgend: Two charged over babies' bodies found in Wildmill", + "link": "https://www.bbc.co.uk/news/uk-wales-67891981?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 10:41:24 GMT", + "content": "The bodies of two babies were found in a home in Bridgend in November 2022.", + "contentSnippet": "The bodies of two babies were found in a home in Bridgend in November 2022.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67891981", + "isoDate": "2024-01-05T10:41:24.000Z" + }, + { + "title": "Telegraph takeover: Gulf bidders promise press freedom", + "link": "https://www.bbc.co.uk/news/business-67874362?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 10:19:27 GMT", + "content": "The fund, run by CNN ex-boss Jeff Zucker, has told the BBC it would be a responsible owner of the titles.", + "contentSnippet": "The fund, run by CNN ex-boss Jeff Zucker, has told the BBC it would be a responsible owner of the titles.", + "guid": "https://www.bbc.co.uk/news/business-67874362", + "isoDate": "2024-01-05T10:19:27.000Z" + }, + { + "title": "Loch Ness hydro power 'gold rush' branded a disaster", + "link": "https://www.bbc.co.uk/news/uk-scotland-67875061?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 10:00:18 GMT", + "content": "Campaigners say a third pumped storage scheme could threaten salmon by lowering water levels by more than two feet.", + "contentSnippet": "Campaigners say a third pumped storage scheme could threaten salmon by lowering water levels by more than two feet.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67875061", + "isoDate": "2024-01-05T10:00:18.000Z" + }, + { + "title": "Harry Pitman: Two arrested over fatal stabbing", + "link": "https://www.bbc.co.uk/news/uk-england-london-67891007?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 09:57:22 GMT", + "content": "A 16-year-old and 17-year-old are arrested on suspicion of murder and remain in custody.", + "contentSnippet": "A 16-year-old and 17-year-old are arrested on suspicion of murder and remain in custody.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67891007", + "isoDate": "2024-01-05T09:57:22.000Z" + }, + { + "title": "Prescription drugs sold online without 'robust' checks", + "link": "https://www.bbc.co.uk/news/health-67714023?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 09:55:05 GMT", + "content": "More than 1,600 pills were bought by the BBC by entering false information online without challenge.", + "contentSnippet": "More than 1,600 pills were bought by the BBC by entering false information online without challenge.", + "guid": "https://www.bbc.co.uk/news/health-67714023", + "isoDate": "2024-01-05T09:55:05.000Z" + }, + { + "title": "Average mortgage rate lowest for nearly seven months", + "link": "https://www.bbc.co.uk/news/business-67881353?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 08:18:47 GMT", + "content": "Major lenders have started the year with rate cuts and brokers expect more to follow suit.", + "contentSnippet": "Major lenders have started the year with rate cuts and brokers expect more to follow suit.", + "guid": "https://www.bbc.co.uk/news/business-67881353", + "isoDate": "2024-01-05T08:18:47.000Z" + }, + { + "title": "Alan Whiteside: Search continues for missing Antrim man", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67877701?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 06:46:27 GMT", + "content": "An MLA says the community is very worried for Alan Whiteside, who went missing on 17 December.", + "contentSnippet": "An MLA says the community is very worried for Alan Whiteside, who went missing on 17 December.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67877701", + "isoDate": "2024-01-05T06:46:27.000Z" + }, + { + "title": "Soldier who shot child killed himself waiting for therapy", + "link": "https://www.bbc.co.uk/news/uk-wales-67880137?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 06:10:01 GMT", + "content": "George Du Preez was put at the \"back of the queue\" for help after he moved to Wales, his wife says.", + "contentSnippet": "George Du Preez was put at the \"back of the queue\" for help after he moved to Wales, his wife says.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67880137", + "isoDate": "2024-01-05T06:10:01.000Z" + }, + { + "title": "Saltburn: Murder on the Dancefloor success 'magical', says Sophie Ellis-Bextor", + "link": "https://www.bbc.co.uk/news/newsbeat-67881277?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 01:09:07 GMT", + "content": "Sophie Ellis-Bextor on Murder on the Dancefloor's viral success, over 20 years after it first charted.", + "contentSnippet": "Sophie Ellis-Bextor on Murder on the Dancefloor's viral success, over 20 years after it first charted.", + "guid": "https://www.bbc.co.uk/news/newsbeat-67881277", + "isoDate": "2024-01-05T01:09:07.000Z" + }, + { + "title": "Spice Girls to feature on commemorative set of stamps for 30th anniversary", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67882101?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 00:09:27 GMT", + "content": "It is the first time Royal Mail has dedicated an entire stamp issue to a female pop group.", + "contentSnippet": "It is the first time Royal Mail has dedicated an entire stamp issue to a female pop group.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67882101", + "isoDate": "2024-01-05T00:09:27.000Z" + }, + { + "title": "The Last Dinner Party win BBC Radio 1's Sound Of 2024", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67880301?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 05 Jan 2024 00:00:25 GMT", + "content": "The indie-rock band top the annual BBC poll, which has a track record of predicting breakout success.", + "contentSnippet": "The indie-rock band top the annual BBC poll, which has a track record of predicting breakout success.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67880301", + "isoDate": "2024-01-05T00:00:25.000Z" + }, + { + "title": "Mary Poppins actress Glynis Johns dies aged 100", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67888244?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 23:26:27 GMT", + "content": "The British actress is widely known for playing Winifred Banks in the 1964 Disney musical.", + "contentSnippet": "The British actress is widely known for playing Winifred Banks in the 1964 Disney musical.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67888244", + "isoDate": "2024-01-04T23:26:27.000Z" + }, + { + "title": "Flooding: Man builds his own defence wall to protect home", + "link": "https://www.bbc.co.uk/news/uk-67888641?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 20:59:16 GMT", + "content": "Nick Lupton's home, by the River Severn in Worcestershire, has been flooded eleven times since 2016.", + "contentSnippet": "Nick Lupton's home, by the River Severn in Worcestershire, has been flooded eleven times since 2016.", + "guid": "https://www.bbc.co.uk/news/uk-67888641", + "isoDate": "2024-01-04T20:59:16.000Z" + }, + { + "title": "Former gang member warns Kent children about drug gangs", + "link": "https://www.bbc.co.uk/news/uk-england-kent-67884805?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 04 Jan 2024 18:15:35 GMT", + "content": "A former gang member is warning children about being groomed into a life of crime.", + "contentSnippet": "A former gang member is warning children about being groomed into a life of crime.", + "guid": "https://www.bbc.co.uk/news/uk-england-kent-67884805", + "isoDate": "2024-01-04T18:15:35.000Z" + }, + { + "title": "Jury error leads to Old Bailey murder trial verdict confusion", + "link": "https://www.bbc.co.uk/news/uk-england-london-67949523?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 20:45:44 GMT", + "content": "Three men accused of murder are left not knowing whether they have been found innocent or guilty.", + "contentSnippet": "Three men accused of murder are left not knowing whether they have been found innocent or guilty.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67949523", + "isoDate": "2024-01-11T20:45:44.000Z" + }, + { + "title": "Ex-postmistress says she 'blames people, not computers'", + "link": "https://www.bbc.co.uk/news/uk-england-somerset-67946228?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 20:05:22 GMT", + "content": "Gail Ward was falsely accused and convicted of stealing more than \u00a312,000 from the Post Office.", + "contentSnippet": "Gail Ward was falsely accused and convicted of stealing more than \u00a312,000 from the Post Office.", + "guid": "https://www.bbc.co.uk/news/uk-england-somerset-67946228", + "isoDate": "2024-01-11T20:05:22.000Z" + }, + { + "title": "West Belfast murders: PSNI 'unable or unwilling' to deal with criminal gangs", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67946780?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 19:53:26 GMT", + "content": "A west Belfast priest says more needs to be done by the PSNI after a series of murders in the city.", + "contentSnippet": "A west Belfast priest says more needs to be done by the PSNI after a series of murders in the city.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67946780", + "isoDate": "2024-01-11T19:53:26.000Z" + }, + { + "title": "Post Office scandal: Investigator denies claims of 'mafia' behaviour", + "link": "https://www.bbc.co.uk/news/uk-67946140?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 19:48:38 GMT", + "content": "Stephen Bradshaw comes face to face with sub-postmasters he investigated at the Horizon scandal inquiry.", + "contentSnippet": "Stephen Bradshaw comes face to face with sub-postmasters he investigated at the Horizon scandal inquiry.", + "guid": "https://www.bbc.co.uk/news/uk-67946140", + "isoDate": "2024-01-11T19:48:38.000Z" + }, + { + "title": "Minister Alex Burghart seeks to avoid outsourcing AI projects to tech firms", + "link": "https://www.bbc.co.uk/news/uk-politics-67944529?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 18:55:11 GMT", + "content": "Cabinet Office minister Alex Burghart says he wants build up the government's in-house expertise instead.", + "contentSnippet": "Cabinet Office minister Alex Burghart says he wants build up the government's in-house expertise instead.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67944529", + "isoDate": "2024-01-11T18:55:11.000Z" + }, + { + "title": "I didn't know about Horizon prosecutions, says Keir Starmer", + "link": "https://www.bbc.co.uk/news/uk-politics-67950501?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 18:23:25 GMT", + "content": "The Labour leader says the Crown Prosecution Service he led handled a total of four million cases.", + "contentSnippet": "The Labour leader says the Crown Prosecution Service he led handled a total of four million cases.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67950501", + "isoDate": "2024-01-11T18:23:25.000Z" + }, + { + "title": "Ex-Post Office investigator: I was not technically minded", + "link": "https://www.bbc.co.uk/news/uk-67952199?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 17:50:57 GMT", + "content": "Stephen Bradshaw is questioned at the public inquiry about the problems with the Horizon IT system.", + "contentSnippet": "Stephen Bradshaw is questioned at the public inquiry about the problems with the Horizon IT system.", + "guid": "https://www.bbc.co.uk/news/uk-67952199", + "isoDate": "2024-01-11T17:50:57.000Z" + }, + { + "title": "Prince William surprises Rob Burrow and Kevin Sinfield with CBEs", + "link": "https://www.bbc.co.uk/news/uk-england-leeds-67949217?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 17:26:19 GMT", + "content": "The prince praised their \"outstanding efforts\" during their motor neurone disease charity fundraising.", + "contentSnippet": "The prince praised their \"outstanding efforts\" during their motor neurone disease charity fundraising.", + "guid": "https://www.bbc.co.uk/news/uk-england-leeds-67949217", + "isoDate": "2024-01-11T17:26:19.000Z" + }, + { + "title": "Haverfordwest: Woman in murder arrest after boy, seven, dies", + "link": "https://www.bbc.co.uk/news/uk-wales-67944588?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 17:07:16 GMT", + "content": "Police are investigating the circumstances surrounding the boy's death and the woman is in custody.", + "contentSnippet": "Police are investigating the circumstances surrounding the boy's death and the woman is in custody.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67944588", + "isoDate": "2024-01-11T17:07:16.000Z" + }, + { + "title": "Crown faces questions over Post Office prosecutions in Scotland", + "link": "https://www.bbc.co.uk/news/uk-scotland-67945208?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 16:52:49 GMT", + "content": "It comes as a further two former postmasters in Scotland have their convictions overturned.", + "contentSnippet": "It comes as a further two former postmasters in Scotland have their convictions overturned.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67945208", + "isoDate": "2024-01-11T16:52:49.000Z" + }, + { + "title": "Aberystwyth: 'Go back to Brummyland' note a hate crime - police", + "link": "https://www.bbc.co.uk/news/uk-wales-67935426?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 16:47:32 GMT", + "content": "Police treat the note as a hate crime which has distressed people in the house where it was left.", + "contentSnippet": "Police treat the note as a hate crime which has distressed people in the house where it was left.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67935426", + "isoDate": "2024-01-11T16:47:32.000Z" + }, + { + "title": "Pass rate falls for GCSE maths resits in England", + "link": "https://www.bbc.co.uk/news/education-67937273?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 15:03:43 GMT", + "content": "However, the pass rate for GCSE English resits went up from the rates in recent years.", + "contentSnippet": "However, the pass rate for GCSE English resits went up from the rates in recent years.", + "guid": "https://www.bbc.co.uk/news/education-67937273", + "isoDate": "2024-01-11T15:03:43.000Z" + }, + { + "title": "The key NHS targets that have never been met", + "link": "https://www.bbc.co.uk/news/health-67884322?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 14:58:18 GMT", + "content": "BBC News finds key NHS targets have been missed for at least seven years - and two have never been met.", + "contentSnippet": "BBC News finds key NHS targets have been missed for at least seven years - and two have never been met.", + "guid": "https://www.bbc.co.uk/news/health-67884322", + "isoDate": "2024-01-11T14:58:18.000Z" + }, + { + "title": "Scotland to replicate ban on XL bully dogs - Yousaf", + "link": "https://www.bbc.co.uk/news/uk-scotland-67948509?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 14:33:54 GMT", + "content": "The first minister said the UK government's ban was announced without consulting the Scottish government.", + "contentSnippet": "The first minister said the UK government's ban was announced without consulting the Scottish government.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67948509", + "isoDate": "2024-01-11T14:33:54.000Z" + }, + { + "title": "Government announces by-elections in two Tory-held constituencies", + "link": "https://www.bbc.co.uk/news/uk-politics-67943546?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 14:30:33 GMT", + "content": "Voters will go the polls on Thursday 15 February in Wellingborough, with Kingswood vote expected the same day.", + "contentSnippet": "Voters will go the polls on Thursday 15 February in Wellingborough, with Kingswood vote expected the same day.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67943546", + "isoDate": "2024-01-11T14:30:33.000Z" + }, + { + "title": "St Helens driver who left girlfriend to die after crash jailed", + "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67945864?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 14:00:32 GMT", + "content": "Kevin Marsh crashed his car into a bin lorry, killing mother-of-four Michelle Atherton in St Helens.", + "contentSnippet": "Kevin Marsh crashed his car into a bin lorry, killing mother-of-four Michelle Atherton in St Helens.", + "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67945864", + "isoDate": "2024-01-11T14:00:32.000Z" + }, + { + "title": "FKA twigs: Calvin Klein ad ban shows 'double standards'", + "link": "https://www.bbc.co.uk/news/newsbeat-67938624?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 13:34:17 GMT", + "content": "The singer, who appeared in a withdrawn campaign for the brand, says it shows \"double standards\".", + "contentSnippet": "The singer, who appeared in a withdrawn campaign for the brand, says it shows \"double standards\".", + "guid": "https://www.bbc.co.uk/news/newsbeat-67938624", + "isoDate": "2024-01-11T13:34:17.000Z" + }, + { + "title": "Wimbledon: Electric double-decker bus catches fire during rush hour", + "link": "https://www.bbc.co.uk/news/uk-england-london-67944657?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 13:02:07 GMT", + "content": "Police declared a critical incident after the electric bus caught fire in Wimbledon.", + "contentSnippet": "Police declared a critical incident after the electric bus caught fire in Wimbledon.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67944657", + "isoDate": "2024-01-11T13:02:07.000Z" + }, + { + "title": "Wimbledon: Electric double-decker bus catches fire during London rush hour", + "link": "https://www.bbc.co.uk/news/uk-67943798?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 11:24:29 GMT", + "content": "No injuries have been reported but a critical incident was declared, police said.", + "contentSnippet": "No injuries have been reported but a critical incident was declared, police said.", + "guid": "https://www.bbc.co.uk/news/uk-67943798", + "isoDate": "2024-01-11T11:24:29.000Z" + }, + { + "title": "BBC Weather shares forecasts from the past as it turns 70", + "link": "https://www.bbc.co.uk/news/uk-67945557?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 11:08:51 GMT", + "content": "See how presenting styles, technology and fashion have changed on BBC Weather over the decades.", + "contentSnippet": "See how presenting styles, technology and fashion have changed on BBC Weather over the decades.", + "guid": "https://www.bbc.co.uk/news/uk-67945557", + "isoDate": "2024-01-11T11:08:51.000Z" + }, + { + "title": "Tesco and M&S report strong Christmas sales", + "link": "https://www.bbc.co.uk/news/business-67943105?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 10:31:58 GMT", + "content": "Both retailers beat expectations for the key festive period as overall food prices remain high.", + "contentSnippet": "Both retailers beat expectations for the key festive period as overall food prices remain high.", + "guid": "https://www.bbc.co.uk/news/business-67943105", + "isoDate": "2024-01-11T10:31:58.000Z" + }, + { + "title": "A look back at 70 years of BBC TV weather broadcasts", + "link": "https://www.bbc.co.uk/weather/features/67934533?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 08:59:26 GMT", + "content": "To mark the 70th anniversary of BBC TV weather broadcasts, meteorologist Matt Taylor takes a look at the huge changes over the decades.", + "contentSnippet": "To mark the 70th anniversary of BBC TV weather broadcasts, meteorologist Matt Taylor takes a look at the huge changes over the decades.", + "guid": "https://www.bbc.co.uk/weather/features/67934533", + "isoDate": "2024-01-11T08:59:26.000Z" + }, + { + "title": "Rennie Mackintosh tea rooms saved for the nation", + "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67938329?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 06:18:28 GMT", + "content": "The architect's last surviving original tearoom was restored five years ago but has struggled financially.", + "contentSnippet": "The architect's last surviving original tearoom was restored five years ago but has struggled financially.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67938329", + "isoDate": "2024-01-11T06:18:28.000Z" + }, + { + "title": "'We lost everything in Post Office scandal'", + "link": "https://www.bbc.co.uk/news/uk-england-merseyside-67938976?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 06:05:52 GMT", + "content": "Amanda and Norman Barber, convicted in the Post Office scandal, lost their home, business and family.", + "contentSnippet": "Amanda and Norman Barber, convicted in the Post Office scandal, lost their home, business and family.", + "guid": "https://www.bbc.co.uk/news/uk-england-merseyside-67938976", + "isoDate": "2024-01-11T06:05:52.000Z" + }, + { + "title": "Friends scripts rescued from a studio bin to go under the hammer", + "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67936304?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 06:02:35 GMT", + "content": "The discarded scripts, used for two episodes filmed in England, were rescued from a bin in 1998.", + "contentSnippet": "The discarded scripts, used for two episodes filmed in England, were rescued from a bin in 1998.", + "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67936304", + "isoDate": "2024-01-11T06:02:35.000Z" + }, + { + "title": "NHS whole-gene screening helps tailor cancer care", + "link": "https://www.bbc.co.uk/news/health-67923268?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 02:37:17 GMT", + "content": "How cutting-edge cancer genomics is now being used in mainstream cancer care.", + "contentSnippet": "How cutting-edge cancer genomics is now being used in mainstream cancer care.", + "guid": "https://www.bbc.co.uk/news/health-67923268", + "isoDate": "2024-01-11T02:37:17.000Z" + }, + { + "title": "Kew Gardens names mysterious plants and fungi new to science", + "link": "https://www.bbc.co.uk/news/science-environment-67930823?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 02:22:28 GMT", + "content": "Kew scientists discovered nearly 100 new plants and fungi last year - but some may already be extinct.", + "contentSnippet": "Kew scientists discovered nearly 100 new plants and fungi last year - but some may already be extinct.", + "guid": "https://www.bbc.co.uk/news/science-environment-67930823", + "isoDate": "2024-01-11T02:22:28.000Z" + }, + { + "title": "Rape complainants warned pre-recording evidence could backfire", + "link": "https://www.bbc.co.uk/news/uk-67940103?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 02:00:31 GMT", + "content": "Convictions are lower when rape interviews and cross-examinations are pre-recorded, a study suggests.", + "contentSnippet": "Convictions are lower when rape interviews and cross-examinations are pre-recorded, a study suggests.", + "guid": "https://www.bbc.co.uk/news/uk-67940103", + "isoDate": "2024-01-11T02:00:31.000Z" + }, + { + "title": "Gladiators: The serious business behind ITV's prime-time 'panto'", + "link": "https://www.bbc.co.uk/news/uk-england-66878915?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 00:11:23 GMT", + "content": "The BBC's Gladiators reboot hits screens on Saturday, but can it match the show's 1990s success?", + "contentSnippet": "The BBC's Gladiators reboot hits screens on Saturday, but can it match the show's 1990s success?", + "guid": "https://www.bbc.co.uk/news/uk-england-66878915", + "isoDate": "2024-01-11T00:11:23.000Z" + }, + { + "title": "Boohoo put 'Made in UK' labels on clothes made overseas", + "link": "https://www.bbc.co.uk/news/uk-67929755?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 11 Jan 2024 00:03:44 GMT", + "content": "T-shirts from Pakistan had their labels swapped by workers in fashion firm\u2019s Leicester factory last year.", + "contentSnippet": "T-shirts from Pakistan had their labels swapped by workers in fashion firm\u2019s Leicester factory last year.", + "guid": "https://www.bbc.co.uk/news/uk-67929755", + "isoDate": "2024-01-11T00:03:44.000Z" + }, + { + "title": "Former sub-postmasters and post-mistresses talk to BBC about Post Office scandal", + "link": "https://www.bbc.co.uk/news/uk-67936075?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 10 Jan 2024 12:23:40 GMT", + "content": "Tom Hedges from Skegness says his and his family's lives were \"wrecked\" by the wrongful accusations", + "contentSnippet": "Tom Hedges from Skegness says his and his family's lives were \"wrecked\" by the wrongful accusations", + "guid": "https://www.bbc.co.uk/news/uk-67936075", + "isoDate": "2024-01-10T12:23:40.000Z" + }, + { + "title": "Norfolk: Laser shone at air ambulance helicopter over Attleborough", + "link": "https://www.bbc.co.uk/news/uk-england-norfolk-67926839?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 09 Jan 2024 14:39:19 GMT", + "content": "Video shows a bright green flashing at the aircraft, an offence officials say could endanger lives.", + "contentSnippet": "Video shows a bright green flashing at the aircraft, an offence officials say could endanger lives.", + "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-67926839", + "isoDate": "2024-01-09T14:39:19.000Z" + }, + { + "title": "What are cold weather payments and how much are they worth?", + "link": "https://www.bbc.co.uk/news/business-55992592?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 09 Jan 2024 14:01:21 GMT", + "content": "Cold weather payments are available to some people after seven days of below-zero temperatures.", + "contentSnippet": "Cold weather payments are available to some people after seven days of below-zero temperatures.", + "guid": "https://www.bbc.co.uk/news/business-55992592", + "isoDate": "2024-01-09T14:01:21.000Z" + }, + { + "title": "Rishi Sunak rebuked by stats watchdog over asylum backlog claim", + "link": "https://www.bbc.co.uk/news/uk-politics-68017887?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 12:18:02 GMT", + "content": "People may have felt misled by the PM's claims to have cleared a claims backlog, the watchdog says.", + "contentSnippet": "People may have felt misled by the PM's claims to have cleared a claims backlog, the watchdog says.", + "guid": "https://www.bbc.co.uk/news/uk-politics-68017887", + "isoDate": "2024-01-18T12:18:02.000Z" + }, + { + "title": "UK weather: Warnings in place after coldest night of winter so far", + "link": "https://www.bbc.co.uk/news/uk-68001525?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 12:17:51 GMT", + "content": "England, Wales and Northern Ireland record their coldest night of this winter so far.", + "contentSnippet": "England, Wales and Northern Ireland record their coldest night of this winter so far.", + "guid": "https://www.bbc.co.uk/news/uk-68001525", + "isoDate": "2024-01-18T12:17:51.000Z" + }, + { + "title": "Endangered western lowland gorilla born at London Zoo", + "link": "https://www.bbc.co.uk/news/uk-england-london-68017713?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 12:04:00 GMT", + "content": "The infant's mother gave birth on Wednesday after an eight-and-a-half month pregnancy.", + "contentSnippet": "The infant's mother gave birth on Wednesday after an eight-and-a-half month pregnancy.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-68017713", + "isoDate": "2024-01-18T12:04:00.000Z" + }, + { + "title": "Wales weather: Schools closed as snow causes disruption", + "link": "https://www.bbc.co.uk/news/uk-wales-68016374?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 11:51:23 GMT", + "content": "More than 50 schools in west and north Wales are closed on Thursday after snowfall.", + "contentSnippet": "More than 50 schools in west and north Wales are closed on Thursday after snowfall.", + "guid": "https://www.bbc.co.uk/news/uk-wales-68016374", + "isoDate": "2024-01-18T11:51:23.000Z" + }, + { + "title": "Thousands of public sector workers in Northern Ireland stage mass strike", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67981000?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 11:50:41 GMT", + "content": "The strike is causing disruption for health services, schools and public transport.", + "contentSnippet": "The strike is causing disruption for health services, schools and public transport.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67981000", + "isoDate": "2024-01-18T11:50:41.000Z" + }, + { + "title": "Fujitsu rules itself out of UK public contract bids during Post Office inquiry", + "link": "https://www.bbc.co.uk/news/business-68017571?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 11:47:19 GMT", + "content": "The firm is part of an inquiry into how hundreds of Post Office managers were wrongly prosecuted.", + "contentSnippet": "The firm is part of an inquiry into how hundreds of Post Office managers were wrongly prosecuted.", + "guid": "https://www.bbc.co.uk/news/business-68017571", + "isoDate": "2024-01-18T11:47:19.000Z" + }, + { + "title": "Bibby Stockholm: Government considers more migrant barges", + "link": "https://www.bbc.co.uk/news/uk-england-dorset-68013203?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 11:25:05 GMT", + "content": "There is controversy over living conditions on board the Bibby Stockholm.", + "contentSnippet": "There is controversy over living conditions on board the Bibby Stockholm.", + "guid": "https://www.bbc.co.uk/news/uk-england-dorset-68013203", + "isoDate": "2024-01-18T11:25:05.000Z" + }, + { + "title": "Welsh independence: Leaving UK is viable, says new report", + "link": "https://www.bbc.co.uk/news/uk-wales-politics-67949443?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 11:19:15 GMT", + "content": "But experts warns Wales would face a \"significant\" challenge raising enough tax revenue.", + "contentSnippet": "But experts warns Wales would face a \"significant\" challenge raising enough tax revenue.", + "guid": "https://www.bbc.co.uk/news/uk-wales-politics-67949443", + "isoDate": "2024-01-18T11:19:15.000Z" + }, + { + "title": "Wakefield: Woman dies after falling from moving van", + "link": "https://www.bbc.co.uk/news/uk-england-leeds-68016648?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 11:00:47 GMT", + "content": "Police say a man has been arrested on suspicion of causing her death by dangerous driving.", + "contentSnippet": "Police say a man has been arrested on suspicion of causing her death by dangerous driving.", + "guid": "https://www.bbc.co.uk/news/uk-england-leeds-68016648", + "isoDate": "2024-01-18T11:00:47.000Z" + }, + { + "title": "Train ticket machines charging double online price", + "link": "https://www.bbc.co.uk/news/business-68009768?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 10:50:21 GMT", + "content": "Which? has said the best value fares are either unavailable or hidden among myriad of options.", + "contentSnippet": "Which? has said the best value fares are either unavailable or hidden among myriad of options.", + "guid": "https://www.bbc.co.uk/news/business-68009768", + "isoDate": "2024-01-18T10:50:21.000Z" + }, + { + "title": "The James Blunt museum that fits in a phone box", + "link": "https://www.bbc.co.uk/news/uk-england-hereford-worcester-68017130?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 09:57:27 GMT", + "content": "Mystery surrounds a pop-up tribute to the singer who has said entry is free to both his fans.", + "contentSnippet": "Mystery surrounds a pop-up tribute to the singer who has said entry is free to both his fans.", + "guid": "https://www.bbc.co.uk/news/uk-england-hereford-worcester-68017130", + "isoDate": "2024-01-18T09:57:27.000Z" + }, + { + "title": "Manchester death crash driver sped at three times 30mph limit", + "link": "https://www.bbc.co.uk/news/uk-england-manchester-68012988?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 09:42:42 GMT", + "content": "Jonathan Langston's family feel \"let down\" at Adeel Safdar's jail term after his \"horrific actions\".", + "contentSnippet": "Jonathan Langston's family feel \"let down\" at Adeel Safdar's jail term after his \"horrific actions\".", + "guid": "https://www.bbc.co.uk/news/uk-england-manchester-68012988", + "isoDate": "2024-01-18T09:42:42.000Z" + }, + { + "title": "Rishi Sunak sees off Conservative rebels as MPs back Rwanda bill", + "link": "https://www.bbc.co.uk/news/uk-politics-68009249?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 09:39:59 GMT", + "content": "The legislation will now head to the House of Lords where it is expected to face stiff opposition.", + "contentSnippet": "The legislation will now head to the House of Lords where it is expected to face stiff opposition.", + "guid": "https://www.bbc.co.uk/news/uk-politics-68009249", + "isoDate": "2024-01-18T09:39:59.000Z" + }, + { + "title": "Mobo Awards: Reality TV stars 'privileged to host big ceremony'", + "link": "https://www.bbc.co.uk/news/newsbeat-67979386?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 09:34:30 GMT", + "content": "Indiyah Polack and Babatunde Al\u00e9sh\u00e9 will be the hosts of this year's event, being held in Sheffield.", + "contentSnippet": "Indiyah Polack and Babatunde Al\u00e9sh\u00e9 will be the hosts of this year's event, being held in Sheffield.", + "guid": "https://www.bbc.co.uk/news/newsbeat-67979386", + "isoDate": "2024-01-18T09:34:30.000Z" + }, + { + "title": "Government school attendance campaign criticised by parents", + "link": "https://www.bbc.co.uk/news/uk-england-68006813?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 07:11:16 GMT", + "content": "The government's school attendance initiative is labelled as \"insulting\" and \"ableist\".", + "contentSnippet": "The government's school attendance initiative is labelled as \"insulting\" and \"ableist\".", + "guid": "https://www.bbc.co.uk/news/uk-england-68006813", + "isoDate": "2024-01-18T07:11:16.000Z" + }, + { + "title": "Brenda Page murder: The killer who thought he was too clever to be caught", + "link": "https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-67983653?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 06:36:50 GMT", + "content": "Christopher Harrisson was found guilty of murder 45 years after he killed his ex-wife, Dr Brenda Page.", + "contentSnippet": "Christopher Harrisson was found guilty of murder 45 years after he killed his ex-wife, Dr Brenda Page.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-67983653", + "isoDate": "2024-01-18T06:36:50.000Z" + }, + { + "title": "Prison officer wins payout over exposure to inmates' drugs", + "link": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67994987?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 06:16:38 GMT", + "content": "A Shotts Prison warden was left hallucinating and violent after inhaling drugs which were being taken by inmates.", + "contentSnippet": "A Shotts Prison warden was left hallucinating and violent after inhaling drugs which were being taken by inmates.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-glasgow-west-67994987", + "isoDate": "2024-01-18T06:16:38.000Z" + }, + { + "title": "Trains: \u00a32bn to re-open Carmarthen to Bangor lines", + "link": "https://www.bbc.co.uk/news/uk-wales-68003542?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 06:07:17 GMT", + "content": "A rail boss says improving train links between north and south Wales are \"very costly to develop\".", + "contentSnippet": "A rail boss says improving train links between north and south Wales are \"very costly to develop\".", + "guid": "https://www.bbc.co.uk/news/uk-wales-68003542", + "isoDate": "2024-01-18T06:07:17.000Z" + }, + { + "title": "Newspaper headlines: Rwanda 'revolt melts away' and Royals' 'health shock'", + "link": "https://www.bbc.co.uk/news/blogs-the-papers-68014185?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 05:53:39 GMT", + "content": "The survival of the Rwanda bill and health news from the King and Princess of Wales lead the papers.", + "contentSnippet": "The survival of the Rwanda bill and health news from the King and Princess of Wales lead the papers.", + "guid": "https://www.bbc.co.uk/news/blogs-the-papers-68014185", + "isoDate": "2024-01-18T05:53:39.000Z" + }, + { + "title": "'I've lost over \u00a34,000 because of the ADHD tax'", + "link": "https://www.bbc.co.uk/news/disability-67945367?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 01:54:45 GMT", + "content": "The cost of replacing lost items or misreading information can be costly for those with ADHD.", + "contentSnippet": "The cost of replacing lost items or misreading information can be costly for those with ADHD.", + "guid": "https://www.bbc.co.uk/news/disability-67945367", + "isoDate": "2024-01-18T01:54:45.000Z" + }, + { + "title": "Measles outbreak: Your questions answered", + "link": "https://www.bbc.co.uk/news/uk-england-birmingham-68007804?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 01:16:21 GMT", + "content": "Cases are rising across England, with health officials encouraging people to get vaccinated.", + "contentSnippet": "Cases are rising across England, with health officials encouraging people to get vaccinated.", + "guid": "https://www.bbc.co.uk/news/uk-england-birmingham-68007804", + "isoDate": "2024-01-18T01:16:21.000Z" + }, + { + "title": "How AI is helping to prevent three buses turning up at once", + "link": "https://www.bbc.co.uk/news/business-67993056?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 00:03:29 GMT", + "content": "Bus firms are now using artificial intelligence to design their timetables.", + "contentSnippet": "Bus firms are now using artificial intelligence to design their timetables.", + "guid": "https://www.bbc.co.uk/news/business-67993056", + "isoDate": "2024-01-18T00:03:29.000Z" + }, + { + "title": "Unseen images of code breaking computer that helped win WW2", + "link": "https://www.bbc.co.uk/news/technology-67997406?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 18 Jan 2024 00:02:41 GMT", + "content": "Intelligence agency GCHQ say pictures of Colossus a reminder of the UK ingenuity that helped defeat Hitler.", + "contentSnippet": "Intelligence agency GCHQ say pictures of Colossus a reminder of the UK ingenuity that helped defeat Hitler.", + "guid": "https://www.bbc.co.uk/news/technology-67997406", + "isoDate": "2024-01-18T00:02:41.000Z" + }, + { + "title": "Rwanda plan: What\u2019s next after Sunak wins vote?", + "link": "https://www.bbc.co.uk/news/uk-politics-68012008?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 21:40:20 GMT", + "content": "As Rishi Sunak\u2019s Rwanda plan passes a key vote, the BBC\u2019s Peter Saull explains what happens next.", + "contentSnippet": "As Rishi Sunak\u2019s Rwanda plan passes a key vote, the BBC\u2019s Peter Saull explains what happens next.", + "guid": "https://www.bbc.co.uk/news/uk-politics-68012008", + "isoDate": "2024-01-17T21:40:20.000Z" + }, + { + "title": "Sir Tony Lloyd: Rochdale Labour MP dies 'peacefully at home'", + "link": "https://www.bbc.co.uk/news/uk-england-manchester-68010501?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 21:15:21 GMT", + "content": "The Rochdale MP revealed just days ago he had an untreatable form of leukaemia.", + "contentSnippet": "The Rochdale MP revealed just days ago he had an untreatable form of leukaemia.", + "guid": "https://www.bbc.co.uk/news/uk-england-manchester-68010501", + "isoDate": "2024-01-17T21:15:21.000Z" + }, + { + "title": "Octopus Energy: Bills will fall in April, says boss", + "link": "https://www.bbc.co.uk/news/business-68013741?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 21:01:01 GMT", + "content": "The energy company says prices will fall due to lower international wholesale prices.", + "contentSnippet": "The energy company says prices will fall due to lower international wholesale prices.", + "guid": "https://www.bbc.co.uk/news/business-68013741", + "isoDate": "2024-01-17T21:01:01.000Z" + }, + { + "title": "Kate in hospital after surgery as King to get prostate treatment", + "link": "https://www.bbc.co.uk/news/uk-68012498?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 19:51:02 GMT", + "content": "The Princess of Wales will step back from royal duties for months and the King will attend hospital next week.", + "contentSnippet": "The Princess of Wales will step back from royal duties for months and the King will attend hospital next week.", + "guid": "https://www.bbc.co.uk/news/uk-68012498", + "isoDate": "2024-01-17T19:51:02.000Z" + }, + { + "title": "Ed Sheeran and Little Mix fans 'targeted in \u00a36.5m ticket fraud'", + "link": "https://www.bbc.co.uk/news/uk-england-norfolk-68011978?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 19:27:56 GMT", + "content": "Two people deny fraudulent trading of 47,000 event tickets over more than two years.", + "contentSnippet": "Two people deny fraudulent trading of 47,000 event tickets over more than two years.", + "guid": "https://www.bbc.co.uk/news/uk-england-norfolk-68011978", + "isoDate": "2024-01-17T19:27:56.000Z" + }, + { + "title": "Inquiry after boy, 2, and dad found dead at home", + "link": "https://www.bbc.co.uk/news/uk-england-lincolnshire-68007571?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 18:25:38 GMT", + "content": "The deaths of Bronson Battersby and his dad Kenneth prompt a \"rapid review\" by Lincolnshire Council.", + "contentSnippet": "The deaths of Bronson Battersby and his dad Kenneth prompt a \"rapid review\" by Lincolnshire Council.", + "guid": "https://www.bbc.co.uk/news/uk-england-lincolnshire-68007571", + "isoDate": "2024-01-17T18:25:38.000Z" + }, + { + "title": "UK seeks urgent talks with Fujitsu on Horizon scandal", + "link": "https://www.bbc.co.uk/news/business-68010713?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 17:38:54 GMT", + "content": "The government begins process of setting up talks for possible compensation for sub-postmasters.", + "contentSnippet": "The government begins process of setting up talks for possible compensation for sub-postmasters.", + "guid": "https://www.bbc.co.uk/news/business-68010713", + "isoDate": "2024-01-17T17:38:54.000Z" + }, + { + "title": "Fly-tipping forces landowners to turn farms into 'forts'", + "link": "https://www.bbc.co.uk/news/science-environment-68007087?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 16:24:49 GMT", + "content": "Despite a drop in fly-tipping on public land, farmers say they are being targeted by criminal gangs.", + "contentSnippet": "Despite a drop in fly-tipping on public land, farmers say they are being targeted by criminal gangs.", + "guid": "https://www.bbc.co.uk/news/science-environment-68007087", + "isoDate": "2024-01-17T16:24:49.000Z" + }, + { + "title": "Listen: Children's services boss on Bronson Battersby", + "link": "https://www.bbc.co.uk/news/uk-68009503?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 14:32:47 GMT", + "content": "Heather Sandy, from Lincolnshire council, tells the World at One what she knows about the death of the two-year-old.", + "contentSnippet": "Heather Sandy, from Lincolnshire council, tells the World at One what she knows about the death of the two-year-old.", + "guid": "https://www.bbc.co.uk/news/uk-68009503", + "isoDate": "2024-01-17T14:32:47.000Z" + }, + { + "title": "How undercover Met Police officers caught designer watch thieves", + "link": "https://www.bbc.co.uk/news/uk-68003783?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 14:09:32 GMT", + "content": "Police officers posed as luxury watch owners, to lure suspected criminals into robbing them.", + "contentSnippet": "Police officers posed as luxury watch owners, to lure suspected criminals into robbing them.", + "guid": "https://www.bbc.co.uk/news/uk-68003783", + "isoDate": "2024-01-17T14:09:32.000Z" + }, + { + "title": "Stormont Assembly recall could be its last sitting says O'Neill", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67996628?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 13:35:03 GMT", + "content": "As Stormont is recalled for a seventh time, Democratic Unionists brand the move a \"stunt\".", + "contentSnippet": "As Stormont is recalled for a seventh time, Democratic Unionists brand the move a \"stunt\".", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67996628", + "isoDate": "2024-01-17T13:35:03.000Z" + }, + { + "title": "Rwanda: We'll give cash back if refugees don't arrive", + "link": "https://www.bbc.co.uk/news/uk-68003842?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 12:58:58 GMT", + "content": "In an exclusive BBC video, President Kagame says issues with the Rwanda plan are the \"UK's problem\".", + "contentSnippet": "In an exclusive BBC video, President Kagame says issues with the Rwanda plan are the \"UK's problem\".", + "guid": "https://www.bbc.co.uk/news/uk-68003842", + "isoDate": "2024-01-17T12:58:58.000Z" + }, + { + "title": "Police videos reveal grooming fantasist Eleanor Williams' deceit", + "link": "https://www.bbc.co.uk/news/uk-67957726?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 06:02:19 GMT", + "content": "Footage shared exclusively with the BBC shows how false stories about a grooming gang grew more elaborate.", + "contentSnippet": "Footage shared exclusively with the BBC shows how false stories about a grooming gang grew more elaborate.", + "guid": "https://www.bbc.co.uk/news/uk-67957726", + "isoDate": "2024-01-17T06:02:19.000Z" + }, + { + "title": "Watch: The video evidence that helped convict Eleanor Williams", + "link": "https://www.bbc.co.uk/news/uk-67992342?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 17 Jan 2024 06:01:57 GMT", + "content": "While false rape allegations are very rare, this video shows the extent of Williams' deceit over years.", + "contentSnippet": "While false rape allegations are very rare, this video shows the extent of Williams' deceit over years.", + "guid": "https://www.bbc.co.uk/news/uk-67992342", + "isoDate": "2024-01-17T06:01:57.000Z" + }, + { + "title": "UK Covid inquiry ups sticks to Scotland\u2026 in 90 seconds", + "link": "https://www.bbc.co.uk/news/uk-scotland-67994837?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 16 Jan 2024 11:51:26 GMT", + "content": "The BBC's Kirsten Campbell outlines what can be expected during three weeks of evidence held in Edinburgh.", + "contentSnippet": "The BBC's Kirsten Campbell outlines what can be expected during three weeks of evidence held in Edinburgh.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67994837", + "isoDate": "2024-01-16T11:51:26.000Z" + }, + { + "title": "Ex-GCHQ worker stabbed US security worker in Cheltenham, court told", + "link": "https://www.bbc.co.uk/news/uk-england-gloucestershire-67236878?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 12:32:59 GMT", + "content": "Joshua Bowles launched a \"vicious\" attack on a female American National Security Agency worker.", + "contentSnippet": "Joshua Bowles launched a \"vicious\" attack on a female American National Security Agency worker.", + "guid": "https://www.bbc.co.uk/news/uk-england-gloucestershire-67236878", + "isoDate": "2023-10-27T12:32:59.000Z" + }, + { + "title": "Wilko shops set to return to the High Street before Christmas", + "link": "https://www.bbc.co.uk/news/business-67229923?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 12:32:11 GMT", + "content": "The owner of The Range is planning to launch hundreds of Wilko shops after it bought the brand.", + "contentSnippet": "The owner of The Range is planning to launch hundreds of Wilko shops after it bought the brand.", + "guid": "https://www.bbc.co.uk/news/business-67229923", + "isoDate": "2023-10-27T12:32:11.000Z" + }, + { + "title": "Jason Leitch deleted Covid WhatsApp messages - newspaper report", + "link": "https://www.bbc.co.uk/news/uk-scotland-67230071?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 12:30:04 GMT", + "content": "Scotland's national clinical director is reported to have deleted his electronic messages on a daily basis.", + "contentSnippet": "Scotland's national clinical director is reported to have deleted his electronic messages on a daily basis.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67230071", + "isoDate": "2023-10-27T12:30:04.000Z" + }, + { + "title": "NatWest hit by profit fears as it admits Nigel Farage failings", + "link": "https://www.bbc.co.uk/news/business-67236693?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 12:17:35 GMT", + "content": "The bank's shares plunge after it lowers profit expectations and admits failings in how it treated Nigel Farage.", + "contentSnippet": "The bank's shares plunge after it lowers profit expectations and admits failings in how it treated Nigel Farage.", + "guid": "https://www.bbc.co.uk/news/business-67236693", + "isoDate": "2023-10-27T12:17:35.000Z" + }, + { + "title": "Mum finds bed 'infested' with bedbugs at Butlin's Skegness", + "link": "https://www.bbc.co.uk/news/uk-england-lincolnshire-67227367?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 11:06:20 GMT", + "content": "Butlin's says it has strict cleaning policies in place and treatment for preventing bedbugs.", + "contentSnippet": "Butlin's says it has strict cleaning policies in place and treatment for preventing bedbugs.", + "guid": "https://www.bbc.co.uk/news/uk-england-lincolnshire-67227367", + "isoDate": "2023-10-27T11:06:20.000Z" + }, + { + "title": "All baa myself: Is this Britain's loneliest sheep?", + "link": "https://www.bbc.co.uk/news/uk-scotland-highlands-islands-67237956?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 10:48:53 GMT", + "content": "A woman says she came across the ewe at the foot of a cliff two years ago before seeing it again this year.", + "contentSnippet": "A woman says she came across the ewe at the foot of a cliff two years ago before seeing it again this year.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-highlands-islands-67237956", + "isoDate": "2023-10-27T10:48:53.000Z" + }, + { + "title": "The Secret Defendant: I've been through seven years of hell", + "link": "https://www.bbc.co.uk/news/uk-67231981?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 10:48:04 GMT", + "content": "A woman accused of fraud and kept on bail says the experience led her to try to kill herself.", + "contentSnippet": "A woman accused of fraud and kept on bail says the experience led her to try to kill herself.", + "guid": "https://www.bbc.co.uk/news/uk-67231981", + "isoDate": "2023-10-27T10:48:04.000Z" + }, + { + "title": "Three friends help woman give birth on busy Leeds main road", + "link": "https://www.bbc.co.uk/news/uk-england-leeds-67232621?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 10:14:47 GMT", + "content": "Debby Minzele was being driven to hospital in Leeds to have her baby when her waters broke.", + "contentSnippet": "Debby Minzele was being driven to hospital in Leeds to have her baby when her waters broke.", + "guid": "https://www.bbc.co.uk/news/uk-england-leeds-67232621", + "isoDate": "2023-10-27T10:14:47.000Z" + }, + { + "title": "Swansea charity shop asks customers not to donate sex toys", + "link": "https://www.bbc.co.uk/news/uk-wales-67237610?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 10:01:35 GMT", + "content": "Staff have asked customers to \"refrain from donating used and unused\" adult toys.", + "contentSnippet": "Staff have asked customers to \"refrain from donating used and unused\" adult toys.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67237610", + "isoDate": "2023-10-27T10:01:35.000Z" + }, + { + "title": "HRT: Sharp rise in prescriptions after menopause campaign", + "link": "https://www.bbc.co.uk/news/health-67233617?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 09:52:22 GMT", + "content": "Celebrities like Davina McCall have raised awareness of women's symptoms when their periods stop.", + "contentSnippet": "Celebrities like Davina McCall have raised awareness of women's symptoms when their periods stop.", + "guid": "https://www.bbc.co.uk/news/health-67233617", + "isoDate": "2023-10-27T09:52:22.000Z" + }, + { + "title": "Conjoined twins meet at London hospital that treated them", + "link": "https://www.bbc.co.uk/news/uk-67237968?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 09:09:05 GMT", + "content": "The six sets of siblings were all treated at Great Ormond Street Hospital in London.", + "contentSnippet": "The six sets of siblings were all treated at Great Ormond Street Hospital in London.", + "guid": "https://www.bbc.co.uk/news/uk-67237968", + "isoDate": "2023-10-27T09:09:05.000Z" + }, + { + "title": "Bianca Williams: Fundraiser for sacked Met officers raises \u00a350K", + "link": "https://www.bbc.co.uk/news/uk-england-london-67236220?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 09:08:33 GMT", + "content": "The PCs were sacked for gross misconduct after a stop and search of Bianca Williams and her partner.", + "contentSnippet": "The PCs were sacked for gross misconduct after a stop and search of Bianca Williams and her partner.", + "guid": "https://www.bbc.co.uk/news/uk-england-london-67236220", + "isoDate": "2023-10-27T09:08:33.000Z" + }, + { + "title": "Thousands of banned dogs living at home with owners", + "link": "https://www.bbc.co.uk/news/uk-67217993?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 08:58:47 GMT", + "content": "Almost 3,500 dogs in Great Britain must be kept under strict rules, data released to the BBC reveals.", + "contentSnippet": "Almost 3,500 dogs in Great Britain must be kept under strict rules, data released to the BBC reveals.", + "guid": "https://www.bbc.co.uk/news/uk-67217993", + "isoDate": "2023-10-27T08:58:47.000Z" + }, + { + "title": "Gig tickets: Online scams 'made me feel stupid'", + "link": "https://www.bbc.co.uk/news/newsbeat-67229429?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 08:35:30 GMT", + "content": "With concert ticket prices going up and incredible demand for some shows, fake sales are increasing.", + "contentSnippet": "With concert ticket prices going up and incredible demand for some shows, fake sales are increasing.", + "guid": "https://www.bbc.co.uk/news/newsbeat-67229429", + "isoDate": "2023-10-27T08:35:30.000Z" + }, + { + "title": "Six Nations rugby must stay free to air, MPs say", + "link": "https://www.bbc.co.uk/news/uk-wales-politics-67233455?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 06:14:52 GMT", + "content": "Europe's leading rugby tournament is not currently in the list of most protected fixtures for TV.", + "contentSnippet": "Europe's leading rugby tournament is not currently in the list of most protected fixtures for TV.", + "guid": "https://www.bbc.co.uk/news/uk-wales-politics-67233455", + "isoDate": "2023-10-27T06:14:52.000Z" + }, + { + "title": "Same-sex adoption: \u2018I never thought I\u2019d be a parent in Northern Ireland'", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67193943?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 05:20:23 GMT", + "content": "Paul and his husband Martin live in Belfast and adopted their son just before the Covid pandemic.", + "contentSnippet": "Paul and his husband Martin live in Belfast and adopted their son just before the Covid pandemic.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67193943", + "isoDate": "2023-10-27T05:20:23.000Z" + }, + { + "title": "Caitlin McLaughlin mural: 'Ecstasy tablet took Londonderry teen's life'", + "link": "https://www.bbc.co.uk/news/uk-northern-ireland-67231758?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 05:19:24 GMT", + "content": "A mural in memory of Caitlin McLaughlin, who died after taking ecstasy, will be unveiled on Friday.", + "contentSnippet": "A mural in memory of Caitlin McLaughlin, who died after taking ecstasy, will be unveiled on Friday.", + "guid": "https://www.bbc.co.uk/news/uk-northern-ireland-67231758", + "isoDate": "2023-10-27T05:19:24.000Z" + }, + { + "title": "The small town fighting back against shoplifting", + "link": "https://www.bbc.co.uk/news/uk-scotland-south-scotland-67228815?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 05:03:27 GMT", + "content": "Business owners in Kelso are joining together to help cope with a rise in thefts.", + "contentSnippet": "Business owners in Kelso are joining together to help cope with a rise in thefts.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-south-scotland-67228815", + "isoDate": "2023-10-27T05:03:27.000Z" + }, + { + "title": "Flooring billboard featuring 'sexualised' woman is removed", + "link": "https://www.bbc.co.uk/news/uk-england-suffolk-67231269?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 04:57:30 GMT", + "content": "Suffolk Rape Crisis says the advert is \"perpetuating the culture of rape\".", + "contentSnippet": "Suffolk Rape Crisis says the advert is \"perpetuating the culture of rape\".", + "guid": "https://www.bbc.co.uk/news/uk-england-suffolk-67231269", + "isoDate": "2023-10-27T04:57:30.000Z" + }, + { + "title": "The Papers: Tory MP rape claim arrest and 'new phase' in Gaza", + "link": "https://www.bbc.co.uk/news/blogs-the-papers-67235128?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 04:53:31 GMT", + "content": "Allegations against former minister Crispin Blunt and Israel's operations in Gaza lead the papers.", + "contentSnippet": "Allegations against former minister Crispin Blunt and Israel's operations in Gaza lead the papers.", + "guid": "https://www.bbc.co.uk/news/blogs-the-papers-67235128", + "isoDate": "2023-10-27T04:53:31.000Z" + }, + { + "title": "Conjoined twins: Defying the odds to survive", + "link": "https://www.bbc.co.uk/news/health-67228040?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 04:40:06 GMT", + "content": "They were not expected to survive but Ruby and Rosie, now 11, are celebrating with five other sets.", + "contentSnippet": "They were not expected to survive but Ruby and Rosie, now 11, are celebrating with five other sets.", + "guid": "https://www.bbc.co.uk/news/health-67228040", + "isoDate": "2023-10-27T04:40:06.000Z" + }, + { + "title": "Reintroducing wildlife species 'not a priority'", + "link": "https://www.bbc.co.uk/news/science-environment-67230751?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 02:59:02 GMT", + "content": "Bringing previously extinct native species like beavers back to England is not on the Environment Secretary's priority list.", + "contentSnippet": "Bringing previously extinct native species like beavers back to England is not on the Environment Secretary's priority list.", + "guid": "https://www.bbc.co.uk/news/science-environment-67230751", + "isoDate": "2023-10-27T02:59:02.000Z" + }, + { + "title": "NHS waits could exceed eight million by summer, charity says", + "link": "https://www.bbc.co.uk/news/health-67228043?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 02:37:05 GMT", + "content": "Based on latest trends, yet more patients will be forced to wait, even if doctor strikes cease, projections suggest.", + "contentSnippet": "Based on latest trends, yet more patients will be forced to wait, even if doctor strikes cease, projections suggest.", + "guid": "https://www.bbc.co.uk/news/health-67228043", + "isoDate": "2023-10-27T02:37:05.000Z" + }, + { + "title": "Tourist town faces surge in homelessness ", + "link": "https://www.bbc.co.uk/news/uk-england-humber-67222460?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 01:42:50 GMT", + "content": "BBC News finds out the challenges faced by those trying to keep a roof over their heads.", + "contentSnippet": "BBC News finds out the challenges faced by those trying to keep a roof over their heads.", + "guid": "https://www.bbc.co.uk/news/uk-england-humber-67222460", + "isoDate": "2023-10-27T01:42:50.000Z" + }, + { + "title": "What happens after a nuclear power station is closed?", + "link": "https://www.bbc.co.uk/news/business-67087673?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 23:08:00 GMT", + "content": "Taking decades, an intricate clean-up process has to be followed after a nuclear power station closes.", + "contentSnippet": "Taking decades, an intricate clean-up process has to be followed after a nuclear power station closes.", + "guid": "https://www.bbc.co.uk/news/business-67087673", + "isoDate": "2023-10-26T23:08:00.000Z" + }, + { + "title": "When should I turn the heating on?", + "link": "https://www.bbc.co.uk/news/business-67197871?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 23:00:35 GMT", + "content": "As it gets colder here are some tips to help you stay warm while trying to keep your energy bills down.", + "contentSnippet": "As it gets colder here are some tips to help you stay warm while trying to keep your energy bills down.", + "guid": "https://www.bbc.co.uk/news/business-67197871", + "isoDate": "2023-10-26T23:00:35.000Z" + }, + { + "title": "Cricket World Cup 2023: England's tournament over and it has been a mess from the very start", + "link": "https://www.bbc.co.uk/sport/cricket/67233081?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 19:23:31 GMT", + "content": "England's World Cup is over, and their tournament has been a mess from the very start, with numerous issues affecting their title defence.", + "contentSnippet": "England's World Cup is over, and their tournament has been a mess from the very start, with numerous issues affecting their title defence.", + "guid": "https://www.bbc.co.uk/sport/cricket/67233081", + "isoDate": "2023-10-26T19:23:31.000Z" + }, + { + "title": "Online Safety Bill: divisive internet rules become law", + "link": "https://www.bbc.co.uk/news/technology-67221691?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 15:46:19 GMT", + "content": "The legislation requires firms to remove illegal content but has attracted privacy concerns.", + "contentSnippet": "The legislation requires firms to remove illegal content but has attracted privacy concerns.", + "guid": "https://www.bbc.co.uk/news/technology-67221691", + "isoDate": "2023-10-26T15:46:19.000Z" + }, + { + "title": "More disadvantaged students go for top uni courses", + "link": "https://www.bbc.co.uk/news/articles/c2x8j1zx1xjo?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Thu, 26 Oct 2023 11:46:52 GMT", + "guid": "https://www.bbc.co.uk/news/articles/c2x8j1zx1xjo", + "isoDate": "2023-10-26T11:46:52.000Z" + }, + { + "title": "Peter Bone: Ex-aide speaks about \u2018abuse\u2019 by MP", + "link": "https://www.bbc.co.uk/news/uk-politics-67211032?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Wed, 25 Oct 2023 04:30:09 GMT", + "content": "The MP's ex-assistant spoke anonymously to the BBC\u2019s Hannah Miller. His testimony has been voiced by an actor.", + "contentSnippet": "The MP's ex-assistant spoke anonymously to the BBC\u2019s Hannah Miller. His testimony has been voiced by an actor.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67211032", + "isoDate": "2023-10-25T04:30:09.000Z" + }, + { + "title": "Motorway man jailed for aiming 'weapon' at police", + "link": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67207284?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 24 Oct 2023 16:21:58 GMT", + "content": "Steven Nelson aimed an object at officers who went to his aid at the side of a busy motorway.", + "contentSnippet": "Steven Nelson aimed an object at officers who went to his aid at the side of a busy motorway.", + "guid": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67207284", + "isoDate": "2023-10-24T16:21:58.000Z" + }, + { + "title": "Luton Airport fire: Aerial pictures show car park damage", + "link": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67207591?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Tue, 24 Oct 2023 12:40:19 GMT", + "content": "Drone video shows the extent of the car park fire, which destroyed more than 1,400 vehicles.", + "contentSnippet": "Drone video shows the extent of the car park fire, which destroyed more than 1,400 vehicles.", + "guid": "https://www.bbc.co.uk/news/uk-england-beds-bucks-herts-67207591", + "isoDate": "2023-10-24T12:40:19.000Z" + }, + { + "title": "'Get out the way!' - Stream turns to torrent during Storm Babet", + "link": "https://www.bbc.co.uk/news/uk-scotland-67181502?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Sat, 21 Oct 2023 17:21:30 GMT", + "content": "Video shows a tree toppling and being washed away as the Balruddery Burn is hit by Babet.", + "contentSnippet": "Video shows a tree toppling and being washed away as the Balruddery Burn is hit by Babet.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67181502", + "isoDate": "2023-10-21T17:21:30.000Z" + }, + { + "title": "Sunak: By-election results 'obviously disappointing'", + "link": "https://www.bbc.co.uk/news/uk-politics-67171744?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 20 Oct 2023 17:16:42 GMT", + "content": "The prime minister spoke to reporters from Cairo, where he was holding meetings on the crisis in Gaza.", + "contentSnippet": "The prime minister spoke to reporters from Cairo, where he was holding meetings on the crisis in Gaza.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67171744", + "isoDate": "2023-10-20T17:16:42.000Z" + }, + { + "title": "Addenbrooke's Hospital: Baby who died was not given routine vitamin", + "link": "https://www.bbc.co.uk/news/uk-england-cambridgeshire-67241516?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 15:43:03 GMT", + "content": "A coroner says the infant died after a \"gross failure in medical care amounting to neglect\".", + "contentSnippet": "A coroner says the infant died after a \"gross failure in medical care amounting to neglect\".", + "guid": "https://www.bbc.co.uk/news/uk-england-cambridgeshire-67241516", + "isoDate": "2023-10-27T15:43:03.000Z" + }, + { + "title": "Boris Johnson: Former prime minister to host GB News show", + "link": "https://www.bbc.co.uk/news/entertainment-arts-67242822?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 15:36:50 GMT", + "content": "Johnson, who stepped down as an MP earlier this year, will present and produce his own programmes.", + "contentSnippet": "Johnson, who stepped down as an MP earlier this year, will present and produce his own programmes.", + "guid": "https://www.bbc.co.uk/news/entertainment-arts-67242822", + "isoDate": "2023-10-27T15:36:50.000Z" + }, + { + "title": "Hate crime soars in London amid Israel-Gaza conflict", + "link": "https://www.bbc.co.uk/news/uk-67241374?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 15:14:19 GMT", + "content": "The number of antisemitic and Islamophobic hate crimes recorded by Met Police is on the rise since 7 October.", + "contentSnippet": "The number of antisemitic and Islamophobic hate crimes recorded by Met Police is on the rise since 7 October.", + "guid": "https://www.bbc.co.uk/news/uk-67241374", + "isoDate": "2023-10-27T15:14:19.000Z" + }, + { + "title": "Somerset man in gimp suit guilty of harassing women", + "link": "https://www.bbc.co.uk/news/uk-england-somerset-67238445?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 15:03:27 GMT", + "content": "Victims of Joshua Hunt said he \"was writhing and crawling as if in a military fashion\".", + "contentSnippet": "Victims of Joshua Hunt said he \"was writhing and crawling as if in a military fashion\".", + "guid": "https://www.bbc.co.uk/news/uk-england-somerset-67238445", + "isoDate": "2023-10-27T15:03:27.000Z" + }, + { + "title": "Humza Yousaf hits back after Elon Musk brands him 'racist'", + "link": "https://www.bbc.co.uk/news/uk-scotland-67241312?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 14:58:42 GMT", + "content": "Scotland's first minister reacted after Elon Musk commented on an edited clip of a speech he gave in 2020.", + "contentSnippet": "Scotland's first minister reacted after Elon Musk commented on an edited clip of a speech he gave in 2020.", + "guid": "https://www.bbc.co.uk/news/uk-scotland-67241312", + "isoDate": "2023-10-27T14:58:42.000Z" + }, + { + "title": "Sailor jailed for rape on Royal Navy ship", + "link": "https://www.bbc.co.uk/news/articles/cm5kg2xn1v5o?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 14:46:48 GMT", + "content": "James Carnegie attacked the woman in his cabin on a Royal Fleet Auxiliary vessel in 2021.", + "contentSnippet": "James Carnegie attacked the woman in his cabin on a Royal Fleet Auxiliary vessel in 2021.", + "guid": "https://www.bbc.co.uk/news/articles/cm5kg2xn1v5o", + "isoDate": "2023-10-27T14:46:48.000Z" + }, + { + "title": "Watch: Man takes bus for 10-mile drive", + "link": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67242742?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 14:29:01 GMT", + "content": "Footage isn released after a man took a bus, and drove through a busy city centre.", + "contentSnippet": "Footage isn released after a man took a bus, and drove through a busy city centre.", + "guid": "https://www.bbc.co.uk/news/uk-england-nottinghamshire-67242742", + "isoDate": "2023-10-27T14:29:01.000Z" + }, + { + "title": "Cardiff gang kidnapped and tortured men for cash and jewellery", + "link": "https://www.bbc.co.uk/news/uk-wales-67240990?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 14:24:32 GMT", + "content": "They were willing to inflict maximum suffering on victims with knives and boiling water, court told.", + "contentSnippet": "They were willing to inflict maximum suffering on victims with knives and boiling water, court told.", + "guid": "https://www.bbc.co.uk/news/uk-wales-67240990", + "isoDate": "2023-10-27T14:24:32.000Z" + }, + { + "title": "Gaza war: Sadiq Khan breaks with Starmer by urging ceasefire", + "link": "https://www.bbc.co.uk/news/uk-politics-67238594?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 14:04:56 GMT", + "content": "The Labour leader is coming under increasing pressure to back a ceasefire in the Israel-Hamas war.", + "contentSnippet": "The Labour leader is coming under increasing pressure to back a ceasefire in the Israel-Hamas war.", + "guid": "https://www.bbc.co.uk/news/uk-politics-67238594", + "isoDate": "2023-10-27T14:04:56.000Z" + }, + { + "title": "HMP Lindholme nurse and inmate lover jailed over largest drug-smuggling ring", + "link": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67233201?at_medium=RSS&at_campaign=KARANGA", + "pubDate": "Fri, 27 Oct 2023 12:38:54 GMT", + "content": "Sixteen people are being sentenced over roles in the UK's largest prison drug-smuggling ring.", + "contentSnippet": "Sixteen people are being sentenced over roles in the UK's largest prison drug-smuggling ring.", + "guid": "https://www.bbc.co.uk/news/uk-england-south-yorkshire-67233201", + "isoDate": "2023-10-27T12:38:54.000Z" + } +] diff --git a/intro to react/newData/oldNews/d74a742caff4608b92fce83f0fe7e906dd944b3d39ada37ceb0ff88ede228240.json b/intro to react/newData/oldNews/d74a742caff4608b92fce83f0fe7e906dd944b3d39ada37ceb0ff88ede228240.json index 2223bce..b151d3f 100644 --- a/intro to react/newData/oldNews/d74a742caff4608b92fce83f0fe7e906dd944b3d39ada37ceb0ff88ede228240.json +++ b/intro to react/newData/oldNews/d74a742caff4608b92fce83f0fe7e906dd944b3d39ada37ceb0ff88ede228240.json @@ -1,18691 +1,18691 @@ [ - { - "title": "Kate Middleton and Prince William ignore fallout from Omid Scobie race row as they arrive hand-in-hand at the Royal Variety Performance", - "link": "https://www.dailymail.co.uk/femail/article-12810801/Kate-Middleton-ignores-fallout-Omid-Scobie-race-row-puts-sleek-display-teal-gown-Royal-Variety-Performance-Prince-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:27:07 GMT", - "enclosure": { - "length": "9716", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437345-0-image-a-50_1701370890784.jpg" - }, - "content": "The Princess of Wales glowed as she arrived at the Royal Albert Hall in Kensington, following the release of Omid Scobie's Endgame earlier this week.", - "contentSnippet": "The Princess of Wales glowed as she arrived at the Royal Albert Hall in Kensington, following the release of Omid Scobie's Endgame earlier this week.", - "guid": "https://www.dailymail.co.uk/femail/article-12810801/Kate-Middleton-ignores-fallout-Omid-Scobie-race-row-puts-sleek-display-teal-gown-Royal-Variety-Performance-Prince-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:27:07.000Z" - }, - { - "title": "Taylor Swift DAZZLES in Balmain gown as she joins an underwear-flashing Beyonce at VERY star-studded Renaissance premiere in London - after jetting in from boyfriend Travis Kelce's mansion in Kansas City", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811409/Taylor-Swift-DAZZLES-Beyonces-Renaissance-premiere-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:27:01 GMT", - "enclosure": { - "length": "11998", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443659-0-image-m-132_1701380798216.jpg" - }, - "content": "Taylor Swift dazzled as she hit the red carpet for Beyonce's Renaissance premiere in London on Thursday.", - "contentSnippet": "Taylor Swift dazzled as she hit the red carpet for Beyonce's Renaissance premiere in London on Thursday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811409/Taylor-Swift-DAZZLES-Beyonces-Renaissance-premiere-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:27:01.000Z" - }, - { - "title": "A record 38,7000 asylum seekers are given refuge in the UK - even more than during the crisis in the early 2000s", - "link": "https://www.dailymail.co.uk/news/article-12811771/A-record-38-7000-asylum-seekers-given-refuge-UK-crisis-early-2000s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:26:12 GMT", - "enclosure": { - "length": "11191", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443409-0-image-a-27_1701380589973.jpg" - }, - "content": "Home Office caseworkers made just under 42,000 initial decisions on asylum claims in the year - the highest level in two decades", - "contentSnippet": "Home Office caseworkers made just under 42,000 initial decisions on asylum claims in the year - the highest level in two decades", - "guid": "https://www.dailymail.co.uk/news/article-12811771/A-record-38-7000-asylum-seekers-given-refuge-UK-crisis-early-2000s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:26:12.000Z" - }, - { - "title": "I'm Nigel Farage's secret girlfriend... I love his loyalty, his empathy - and he's got a great bottom!", - "link": "https://www.dailymail.co.uk/news/article-12811695/nigel-farage-secret-girlfriend-im-celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:18:59 GMT", - "enclosure": { - "length": "10551", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442525-0-image-a-36_1701379656697.jpg" - }, - "content": "EXCLUSIVE: She has stayed out of the spotlight and her life has been a closely guarded secret. But her lover Nigel Farage is deep in the celebrity jungle - and Laure Ferrari is silent no longer.", - "contentSnippet": "EXCLUSIVE: She has stayed out of the spotlight and her life has been a closely guarded secret. But her lover Nigel Farage is deep in the celebrity jungle - and Laure Ferrari is silent no longer.", - "guid": "https://www.dailymail.co.uk/news/article-12811695/nigel-farage-secret-girlfriend-im-celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:18:59.000Z" - }, - { - "title": "Mummified 'aliens' found in Peru have 30% DNA of an 'unknown species,' new analysis claims", - "link": "https://www.dailymail.co.uk/sciencetech/article-12811071/Mexicos-alien-corpses-30-unknown-species-new-DNA-analysis-shows.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:17:48 GMT", - "enclosure": { - "length": "5421", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78435915-0-image-a-10_1701371102152.jpg" - }, - "content": "Mexico's famed 'aliens' underwent an analysis that showed the pair have 30 percent DNA of an 'unknown species.' Researchers involved said the corpses are authentic and not of this world.", - "contentSnippet": "Mexico's famed 'aliens' underwent an analysis that showed the pair have 30 percent DNA of an 'unknown species.' Researchers involved said the corpses are authentic and not of this world.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12811071/Mexicos-alien-corpses-30-unknown-species-new-DNA-analysis-shows.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:17:48.000Z" - }, - { - "title": "Legia Warsaw fans injure three police officers on rampage outside Villa Park before being barred from entering stadium and kept in a car park... but some manage to BREAK IN during first-half as Polish club blame Aston Villa for violence", - "link": "https://www.dailymail.co.uk/sport/football/article-12811311/Legia-Warsaw-fans-CLASH-police-ahead-Europa-Conference-League-tie-Aston-Villa-1-000-supporters-vowed-travel-Villa-Park-despite-not-having-tickets-game.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:16:40 GMT", - "enclosure": { - "length": "12215", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/23/78446817-0-image-a-48_1701386166214.jpg" - }, - "content": "Mail Sport understands that Legia were unhappy with their reduced allocation after Villa reduced their ticket allocation based on advice from the police and Safety Advisory Group.", - "contentSnippet": "Mail Sport understands that Legia were unhappy with their reduced allocation after Villa reduced their ticket allocation based on advice from the police and Safety Advisory Group.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12811311/Legia-Warsaw-fans-CLASH-police-ahead-Europa-Conference-League-tie-Aston-Villa-1-000-supporters-vowed-travel-Villa-Park-despite-not-having-tickets-game.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:16:40.000Z" - }, - { - "title": "The thrillingly scandalous lives of the 300 American heiresses who paid to web impecunious Dukes, Earls and Viscounts and saved the aristocracy", - "link": "https://www.dailymail.co.uk/femail/article-12811673/The-thrillingly-scandalous-lives-300-American-heiresses-paid-web-impecunious-Dukes-Earls-Viscounts-saved-aristocracy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:10:16 GMT", - "enclosure": { - "length": "10437", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442473-0-image-a-2_1701380296902.jpg" - }, - "content": "The new TV series The Buccaneers shows in detail a time when English aristocrats were in high demand as marriage material for wealthy American girls and their socially ambitious families.", - "contentSnippet": "The new TV series The Buccaneers shows in detail a time when English aristocrats were in high demand as marriage material for wealthy American girls and their socially ambitious families.", - "guid": "https://www.dailymail.co.uk/femail/article-12811673/The-thrillingly-scandalous-lives-300-American-heiresses-paid-web-impecunious-Dukes-Earls-Viscounts-saved-aristocracy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:10:16.000Z" - }, - { - "title": "JAN MOIR: It beggars belief to suggest Harry's family implied that a non-white baby wouldn't be welcome", - "link": "https://www.dailymail.co.uk/debate/article-12811923/JAN-MOIR-beggars-belief-suggest-Harrys-family-implied-non-white-baby-wouldnt-welcome.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:09:14 GMT", - "enclosure": { - "length": "10071", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78445013-0-image-a-62_1701383099998.jpg" - }, - "content": "Two years after the Duke and Duchess of Sussex opened up to Oprah about 'concerns' members of the Royal Family had over what colour Archie's skin might be, the royal racist row has flared up again.", - "contentSnippet": "Two years after the Duke and Duchess of Sussex opened up to Oprah about 'concerns' members of the Royal Family had over what colour Archie's skin might be, the royal racist row has flared up again.", - "guid": "https://www.dailymail.co.uk/debate/article-12811923/JAN-MOIR-beggars-belief-suggest-Harrys-family-implied-non-white-baby-wouldnt-welcome.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:09:14.000Z" - }, - { - "title": "Eileen review: This film hits the target with more than a hint of Hitchcock and Highsmith, writes BRIAN VINER", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811559/Eileen-review-film-hits-target-hint-Hitchcock-Highsmith-writes-BRIAN-VINER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:08:11 GMT", - "enclosure": { - "length": "9553", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442309-0-image-m-3_1701380128207.jpg" - }, - "content": "BRIAN VINER: ileen - the eponymous character in William Oldroyd's carefully constructed psychological thriller - is a put-upon, dowdy, rather repressed young woman.", - "contentSnippet": "BRIAN VINER: ileen - the eponymous character in William Oldroyd's carefully constructed psychological thriller - is a put-upon, dowdy, rather repressed young woman.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811559/Eileen-review-film-hits-target-hint-Hitchcock-Highsmith-writes-BRIAN-VINER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:08:11.000Z" - }, - { - "title": "The real-life filming locations from Shane MacGowan's Christmas anthem Fairytale of New York music video - as The Pogues frontman dies aged 65", - "link": "https://www.dailymail.co.uk/femail/article-12810085/shane-macgowan-fairytale-new-york-filming-locations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:05:19 GMT", - "enclosure": { - "length": "9734", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435855-0-image-a-35_1701368264782.jpg" - }, - "content": "Self-proclaimed 'pop culture detective'\u00a0Bob Egan rounded up a list of all the filming locations that were used in the visual for Fairtytale of New York for this blog, PopSpotsNYC.", - "contentSnippet": "Self-proclaimed 'pop culture detective'\u00a0Bob Egan rounded up a list of all the filming locations that were used in the visual for Fairtytale of New York for this blog, PopSpotsNYC.", - "guid": "https://www.dailymail.co.uk/femail/article-12810085/shane-macgowan-fairytale-new-york-filming-locations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:05:19.000Z" - }, - { - "title": "I have a tattoo on my face - trolls say it makes me look like a thug and that I'm a bad mother", - "link": "https://www.dailymail.co.uk/femail/article-12809415/I-tattoo-face-trolls-say-makes-look-like-thug-Im-bad-mother.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:04:12 GMT", - "enclosure": { - "length": "9608", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78420495-0-image-a-42_1701347915951.jpg" - }, - "content": "Katie Taylor ,\u00a027, from Rayleigh, Essex, has been getting tattoos since she was 18 and wanted a special one to always reminded her of her two-year-old daughter.", - "contentSnippet": "Katie Taylor ,\u00a027, from Rayleigh, Essex, has been getting tattoos since she was 18 and wanted a special one to always reminded her of her two-year-old daughter.", - "guid": "https://www.dailymail.co.uk/femail/article-12809415/I-tattoo-face-trolls-say-makes-look-like-thug-Im-bad-mother.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:04:12.000Z" - }, - { - "title": "Tearful mother of Brendan Depa, the hulking 6ft 6in autistic boy who brutally beat teacher's aide unconscious over Nintendo Switch, says 'prison is a death sentence' as she breaks her silence and pleads with victim to show mercy", - "link": "https://www.dailymail.co.uk/news/article-12810815/mother-autistic-brendan-depa-beat-teacher-nintendo-switch-florida.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:02:25 GMT", - "enclosure": { - "length": "9754", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78436959-0-image-a-23_1701370008418.jpg" - }, - "content": "The mother of a\u00a06-foot 6-inch autistic teenager who\u00a0viscously beat a teacher's aide unconscious in Florida has claimed prison is a 'death sentence' for her son.", - "contentSnippet": "The mother of a\u00a06-foot 6-inch autistic teenager who\u00a0viscously beat a teacher's aide unconscious in Florida has claimed prison is a 'death sentence' for her son.", - "guid": "https://www.dailymail.co.uk/news/article-12810815/mother-autistic-brendan-depa-beat-teacher-nintendo-switch-florida.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:02:25.000Z" - }, - { - "title": "Henry Kissinger was a colossus who bestrode a century: He shaped politics like no other statesman and the world wouldn't be in such a perilous state if more followed his wise and ruthlessly pragmatic approach, says his acclaimed biographer NIALL FERGUSON", - "link": "https://www.dailymail.co.uk/news/article-12811757/Henry-Kissinger-death-biographer-niall-ferguson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:02:23 GMT", - "enclosure": { - "length": "4521", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443379-0-image-m-62_1701381260119.jpg" - }, - "content": "NIALL FERGUSON: Henry Kissinger was the most enduringly influential secretary of state in the history of the United States. He was also the most controversial.", - "contentSnippet": "NIALL FERGUSON: Henry Kissinger was the most enduringly influential secretary of state in the history of the United States. He was also the most controversial.", - "guid": "https://www.dailymail.co.uk/news/article-12811757/Henry-Kissinger-death-biographer-niall-ferguson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:02:23.000Z" - }, - { - "title": "A Sussex silence even more damning than the 'royal racist' stink bomb: MAUREEN CALLAHAN's devastating takedown of Harry and Meghan's cowardly refusal to denounce lying Scobie's noxious slurs", - "link": "https://www.dailymail.co.uk/news/article-12806599/MAUREEN-CALLAHAN-royal-racists-Harry-Meghan-Scobie-cowardly-silence.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:00:57 GMT", - "enclosure": { - "length": "11619", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/29/21/78391581-0-image-a-17_1701293062297.jpg" - }, - "content": "Harry and Meghan are playing their most dangerous game yet. These two cowards, who set off this stink bomb of racist accusations two-and-a-half-years ago, must now say something.", - "contentSnippet": "Harry and Meghan are playing their most dangerous game yet. These two cowards, who set off this stink bomb of racist accusations two-and-a-half-years ago, must now say something.", - "guid": "https://www.dailymail.co.uk/news/article-12806599/MAUREEN-CALLAHAN-royal-racists-Harry-Meghan-Scobie-cowardly-silence.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:00:57.000Z" - }, - { - "title": "Omid Scobie's defence unravels as Dutch translator says the names of royals accused of discussing Archie's skin colour WERE in the book - So how DID details from Meghan's private letter to Charles end up there?", - "link": "https://www.dailymail.co.uk/news/article-12811881/Omid-Scobie-Dutch-translator-Endgame-Meghans-letter-Charles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:47:10 GMT", - "enclosure": { - "length": "11705", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444873-0-image-m-130_1701383087353.jpg" - }, - "content": "What appears to have been intended as an innocuous chat about the excitement of a new baby culminated this week with two alleged 'royal racists' being outed on national television in the UK.", - "contentSnippet": "What appears to have been intended as an innocuous chat about the excitement of a new baby culminated this week with two alleged 'royal racists' being outed on national television in the UK.", - "guid": "https://www.dailymail.co.uk/news/article-12811881/Omid-Scobie-Dutch-translator-Endgame-Meghans-letter-Charles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:47:10.000Z" - }, - { - "title": "My friends thought I'd dyed my hair after seeing a TikTok video - it turned out to be my secret twin", - "link": "https://www.dailymail.co.uk/femail/article-12809969/twins-Ano-Sartania-Tako-Khvitia-separated-birth-Georgia-reunite-thanks-tiktok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:36:38 GMT", - "enclosure": { - "length": "9344", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78433111-0-image-a-2_1701363965875.jpg" - }, - "content": "Twins Ano Sartania and Tako Khvitia, now 21, were born in Kirtski, Georgia, on June 20, 2002 - but neither had any idea that the other existed until they were nearly 20. And it was all because of TikTok.", - "contentSnippet": "Twins Ano Sartania and Tako Khvitia, now 21, were born in Kirtski, Georgia, on June 20, 2002 - but neither had any idea that the other existed until they were nearly 20. And it was all because of TikTok.", - "guid": "https://www.dailymail.co.uk/femail/article-12809969/twins-Ano-Sartania-Tako-Khvitia-separated-birth-Georgia-reunite-thanks-tiktok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:36:38.000Z" - }, - { - "title": "SNP rocked by discovery of intimate texts revealing two politicians' torrid lockdown affair - at the same time the party insisted Scots stayed home", - "link": "https://www.dailymail.co.uk/news/article-12811227/SNP-rocked-intimate-texts-two-politicians-lockdown-affair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:26:00 GMT", - "enclosure": { - "length": "11216", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78439149-0-image-a-7_1701375255413.jpg" - }, - "content": "The secret relationship is said to have carried on during the Covid pandemic in 2020, when the SNP forced the rest of the country to stay at home under tough lockdown restrictions.", - "contentSnippet": "The secret relationship is said to have carried on during the Covid pandemic in 2020, when the SNP forced the rest of the country to stay at home under tough lockdown restrictions.", - "guid": "https://www.dailymail.co.uk/news/article-12811227/SNP-rocked-intimate-texts-two-politicians-lockdown-affair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:26:00.000Z" - }, - { - "title": "Scientists create microscopic ROBOTS made from human cells that repair neurons - opening the door to future Alzheimer's treatment", - "link": "https://www.dailymail.co.uk/sciencetech/article-12811183/tiny-biological-robots-human-cells.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:23:33 GMT", - "enclosure": { - "length": "10407", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438959-0-image-a-5_1701374095081.jpg" - }, - "content": "Microscopic 'anthrobots' built from human lung cells could roam around in a person's body and repair damaged tissues. Scientists hope they will one day help treat diseases.", - "contentSnippet": "Microscopic 'anthrobots' built from human lung cells could roam around in a person's body and repair damaged tissues. Scientists hope they will one day help treat diseases.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12811183/tiny-biological-robots-human-cells.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:23:33.000Z" - }, - { - "title": "QUENTIN LETTS: In six hours of Matt Hancock's evidence at the Covid Inquiry all we really found out was that he loathes the The Man He Would Not Name... Dominic Cummings", - "link": "https://www.dailymail.co.uk/debate/article-12811755/QUENTIN-LETTS-six-hours-Matt-Hancocks-evidence-Covid-Inquiry-really-loathes-Man-Not-Dominic-Cummings.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:05:31 GMT", - "enclosure": { - "length": "3945", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443133-0-image-m-52_1701380301265.jpg" - }, - "content": "During Mr Hancock's six hours at the Covid Inquiry witness table, not a single rude word was said, though a few were implied.", - "contentSnippet": "During Mr Hancock's six hours at the Covid Inquiry witness table, not a single rude word was said, though a few were implied.", - "guid": "https://www.dailymail.co.uk/debate/article-12811755/QUENTIN-LETTS-six-hours-Matt-Hancocks-evidence-Covid-Inquiry-really-loathes-Man-Not-Dominic-Cummings.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:05:31.000Z" - }, - { - "title": "My dear friend Henry Kissinger and Princess Diana flirted outrageously and he was catnip to beautiful women. No wonder he said 'power is the ultimate aphrodisiac', writes JONATHAN AITKEN", - "link": "https://www.dailymail.co.uk/debate/article-12811783/henry-kissinger-princess-diana-flirted-power-ultimate-aphrodisiac.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:00:50 GMT", - "enclosure": { - "length": "7213", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443961-0-image-a-125_1701381374502.jpg" - }, - "content": "JONATHAN AITKEN: Although tubby and bespectacled, Henry was irresistibly attractive to women, dating a string of film stars before his marriage to Nancy Maginnes", - "contentSnippet": "JONATHAN AITKEN: Although tubby and bespectacled, Henry was irresistibly attractive to women, dating a string of film stars before his marriage to Nancy Maginnes", - "guid": "https://www.dailymail.co.uk/debate/article-12811783/henry-kissinger-princess-diana-flirted-power-ultimate-aphrodisiac.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:00:50.000Z" - }, - { - "title": "RICHARD LITTLEJOHN: My old man's a dustman - and he's NOT working from home", - "link": "https://www.dailymail.co.uk/debate/article-12811653/RICHARD-LITTLEJOHN-old-mans-dustman-hes-NOT-working-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:55:31 GMT", - "enclosure": { - "length": "12795", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442499-0-image-a-18_1701379737458.jpg" - }, - "content": "According to a survey of 12,000 members conducted by the PCS, 4/10 said they were prepared to defy a ministerial instruction to spend at least 60% of their time in the office.", - "contentSnippet": "According to a survey of 12,000 members conducted by the PCS, 4/10 said they were prepared to defy a ministerial instruction to spend at least 60% of their time in the office.", - "guid": "https://www.dailymail.co.uk/debate/article-12811653/RICHARD-LITTLEJOHN-old-mans-dustman-hes-NOT-working-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:55:31.000Z" - }, - { - "title": "ALISON BOSHOFF: Will Timothee Chalamet's SNL Hamas 'joke' take a bite out of Wonka at the box office?", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811345/Timothee-Chalamet-SNL-Hamas-joke-Wonka.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:54:13 GMT", - "enclosure": { - "length": "9598", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78441363-0-image-a-69_1701377480127.jpg" - }, - "content": "ALISON BOSHOFF: Hundreds of negative comments have been posted on Chalamet's Instagram account - where he is followed by 18.4 million fans - since the SNL sketch was broadcast", - "contentSnippet": "ALISON BOSHOFF: Hundreds of negative comments have been posted on Chalamet's Instagram account - where he is followed by 18.4 million fans - since the SNL sketch was broadcast", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811345/Timothee-Chalamet-SNL-Hamas-joke-Wonka.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:54:13.000Z" - }, - { - "title": "Covid WAS clearly the result of genetic engineering in China. If the inquiry refuses to consider this, the hearings are pointless, says leading scientist PROF ANGUS DALGLEISH", - "link": "https://www.dailymail.co.uk/debate/article-12811711/Covid-genetic-engineering-China-inquiry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:53:54 GMT", - "enclosure": { - "length": "9491", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442325-0-image-a-83_1701379128438.jpg" - }, - "content": "PROFESSOR ANGUS DALGLEISH: If the Covid Inquiry was genuinely interested in discovering the truth behind the pandemic, the origin of this novel virus would be its main focus", - "contentSnippet": "PROFESSOR ANGUS DALGLEISH: If the Covid Inquiry was genuinely interested in discovering the truth behind the pandemic, the origin of this novel virus would be its main focus", - "guid": "https://www.dailymail.co.uk/debate/article-12811711/Covid-genetic-engineering-China-inquiry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:53:54.000Z" - }, - { - "title": "It's beginning to sound a lot like Christmas thanks to Cher and folk queen Kate Rusby: ADRIAN THRILLS review's this year's festive albums", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811535/Its-beginning-sound-lot-like-Christmas-thanks-Cher-folk-queen-Kate-Rusby-ADRIAN-THRILLS-reviews-years-festive-albums.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:51:25 GMT", - "enclosure": { - "length": "4201", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78441769-0-image-m-34_1701378700483.jpg" - }, - "content": "ADRIAN THRILLS: THE weather outside may be frightful, but pop's finest are ready to warm our hearts with Christmas standards, folk carols and kitsch classics.", - "contentSnippet": "ADRIAN THRILLS: THE weather outside may be frightful, but pop's finest are ready to warm our hearts with Christmas standards, folk carols and kitsch classics.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811535/Its-beginning-sound-lot-like-Christmas-thanks-Cher-folk-queen-Kate-Rusby-ADRIAN-THRILLS-reviews-years-festive-albums.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:51:25.000Z" - }, - { - "title": "Family of Anthony Walker tear apart Joey Barton's description of his brother's racially-motivated murder of the teenager as 'a f***ing scrap' - after former Bristol Rovers boss appeared to play down how serious the 2005 ice-axe killing was", - "link": "https://www.dailymail.co.uk/sport/football/article-12810729/Family-Anthony-Walker-tear-apart-Joey-Barton-Michael-2005-murder-ice-axe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:41:14 GMT", - "enclosure": { - "length": "10319", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78419781-0-image-a-35_1701347295018.jpg" - }, - "content": "Kaushik Mistry, the foundation's CEO, rubbished the idea that Michael had 'lost' years of his life as he issued a damning statement which underscored that Walker's life had been lost 'forever'.", - "contentSnippet": "Kaushik Mistry, the foundation's CEO, rubbished the idea that Michael had 'lost' years of his life as he issued a damning statement which underscored that Walker's life had been lost 'forever'.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12810729/Family-Anthony-Walker-tear-apart-Joey-Barton-Michael-2005-murder-ice-axe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:41:14.000Z" - }, - { - "title": "Dylan Sprouse was 'body-shamed by Disney exec when he was teen and was told to look more like brother Cole' on\u00a0The Suite Life Of Zack And Cody: 'No more junk food'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811037/Dylan-Sprouse-body-shamed-Disney-exec-Cole.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:35:58 GMT", - "enclosure": { - "length": "10398", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438249-0-image-m-73_1701372853016.jpg" - }, - "content": "The 54-year-old actress starred as Dylan's, now 31, mom on Disney Channel show The Suite Life Of Zack And Cody through all three seasons from 2005 to 2008.", - "contentSnippet": "The 54-year-old actress starred as Dylan's, now 31, mom on Disney Channel show The Suite Life Of Zack And Cody through all three seasons from 2005 to 2008.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811037/Dylan-Sprouse-body-shamed-Disney-exec-Cole.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:35:58.000Z" - }, - { - "title": "Inside Christian Horner's lavish birthday celebrations: Formula One star turns 50 with Spice Girl wife Geri and a three-tier birthday cake - while Gary Barlow is guest performer!", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811551/christian-horner-50th-birthday-geri-gary-barlow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:23:02 GMT", - "enclosure": { - "length": "10227", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78441713-0-image-a-135_1701378033531.jpg" - }, - "content": "The Formula One boss and his Spice Girl wife Geri, 51, hosted a lavish evening at Mount St. restaurant in Mayfair on Wednesday evening.", - "contentSnippet": "The Formula One boss and his Spice Girl wife Geri, 51, hosted a lavish evening at Mount St. restaurant in Mayfair on Wednesday evening.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811551/christian-horner-50th-birthday-geri-gary-barlow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:23:02.000Z" - }, - { - "title": "Pontins closes two resorts with 'immediate effect': Holidays are thrown into chaos as firm announces Camber Sands and Prestatyn sites will shut as customers with bookings are offered refunds", - "link": "https://www.dailymail.co.uk/news/article-12810973/Pontins-announces-immediate-closure-TWO-popular-seaside-resorts-throwing-hundreds-holidays-disarray.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:10:51 GMT", - "enclosure": { - "length": "7484", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78435465-0-image-a-2_1701367069011.jpg" - }, - "content": "The Official Pontins Holiday's Facebook page released a statement on Thursday to let customers know it would be closing its Prestatyn and Camber Sands locations with 'immediate effect.'", - "contentSnippet": "The Official Pontins Holiday's Facebook page released a statement on Thursday to let customers know it would be closing its Prestatyn and Camber Sands locations with 'immediate effect.'", - "guid": "https://www.dailymail.co.uk/news/article-12810973/Pontins-announces-immediate-closure-TWO-popular-seaside-resorts-throwing-hundreds-holidays-disarray.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:10:51.000Z" - }, - { - "title": "Hamas ghouls parade distressed captive father of dead ten-month-old hostage Kfir Bibas in new video - as they say Israel is refusing to take the bodies of the tragic baby, his four year old brother and their mother", - "link": "https://www.dailymail.co.uk/news/article-12811257/Hamas-claims-Israel-refusing-accept-offer-repatriating-dead-bodies-Bibas-family-including-10-month-old-Kfir-sharing-sick-video-distressed-father-Yarden-Bibas-captivity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:08:10 GMT", - "enclosure": { - "length": "9173", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438003-0-image-m-32_1701372352079.jpg" - }, - "content": "Yarden, 34, was seen distraught and weeping as he said: 'Bibi (Netanyahu) your airstrike took away my beloved family, now do what you can to bring them home so they can be buried at home", - "contentSnippet": "Yarden, 34, was seen distraught and weeping as he said: 'Bibi (Netanyahu) your airstrike took away my beloved family, now do what you can to bring them home so they can be buried at home", - "guid": "https://www.dailymail.co.uk/news/article-12811257/Hamas-claims-Israel-refusing-accept-offer-repatriating-dead-bodies-Bibas-family-including-10-month-old-Kfir-sharing-sick-video-distressed-father-Yarden-Bibas-captivity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:08:10.000Z" - }, - { - "title": "Red Cross says footage filmed in Gaza City hospital 'showing decomposing bodies of premature babies left to die in their beds' represents an 'unspeakable tragedy' and begs Hamas and the IDF to let them operate with security in war torn city", - "link": "https://www.dailymail.co.uk/news/article-12811115/Red-Cross-says-footage-filmed-Gaza-City-hospital-showing-decomposing-bodies-premature-babies-left-die-beds-represents-unspeakable-tragedy-begs-Hamas-IDF-let-operate-security-war-torn-city.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:07:11 GMT", - "enclosure": { - "length": "10817", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/02/78400581-0-image-a-24_1701310066060.jpg" - }, - "content": "The Red Cross says that footage that allegedly shows the bodies of five Palestinian children left to die in the Al-Nasr Hospital in Gaza represents an 'unspeakable tragedy.'", - "contentSnippet": "The Red Cross says that footage that allegedly shows the bodies of five Palestinian children left to die in the Al-Nasr Hospital in Gaza represents an 'unspeakable tragedy.'", - "guid": "https://www.dailymail.co.uk/news/article-12811115/Red-Cross-says-footage-filmed-Gaza-City-hospital-showing-decomposing-bodies-premature-babies-left-die-beds-represents-unspeakable-tragedy-begs-Hamas-IDF-let-operate-security-war-torn-city.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:07:11.000Z" - }, - { - "title": "Rebecca Adlington reflects on her heartbreaking miscarriage as she shares video montage from gender reveal to discovering she'd lost her unborn daughter", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810975/Rebecca-Adlington-reflects-heartbreaking-miscarriage-shares-video-montage-gender-reveal-discovering-shed-lost-unborn-daughter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:02:16 GMT", - "enclosure": { - "length": "11485", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435979-0-image-a-29_1701368704169.jpg" - }, - "content": "The former Olympic swimmer's Thursday video featured her husband Andy Parsons, her daughter Summer, eight, and her son Albie, two.", - "contentSnippet": "The former Olympic swimmer's Thursday video featured her husband Andy Parsons, her daughter Summer, eight, and her son Albie, two.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810975/Rebecca-Adlington-reflects-heartbreaking-miscarriage-shares-video-montage-gender-reveal-discovering-shed-lost-unborn-daughter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:02:16.000Z" - }, - { - "title": "Mel C flashes her bra under a statement white suit as she joins Hannah Waddingham and Paloma Faith in leading the stars arriving at the Royal Variety Performance 2023", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810809/royal-variety-performance-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:00:25 GMT", - "enclosure": { - "length": "10913", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78441711-0-image-a-2_1701378014945.jpg" - }, - "content": "Mel C led the star-studded arrivals at the Royal Variety Performance at the Royal Albert Hall on Thursday evening.\u00a0", - "contentSnippet": "Mel C led the star-studded arrivals at the Royal Variety Performance at the Royal Albert Hall on Thursday evening.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810809/royal-variety-performance-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:00:25.000Z" - }, - { - "title": "Aberdeen's game is stopped as fans launch SNOWBALLS at\u00a0HJK Helsinki goalkeeper... with Dons captain\u00a0Jonny Hayes urged to speak sense to the Red Army just moment before snow plough is brought onto the pitch!", - "link": "https://www.dailymail.co.uk/sport/football/article-12811315/Aberdeens-game-stopped-fans-launch-SNOWBALLS-HJK-Helsinki-goalkeeper-Dons-captain-Jonny-Hayes-urged-speak-sense-Red-Army-just-moment-snow-plough-brought-pitch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:49:53 GMT", - "enclosure": { - "length": "12200", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438575-0-image-a-5_1701373503759.jpg" - }, - "content": "Aberdeen's Europa Conference League game with HJK Helsinki was at risk of being abandoned after the Scottish fans decided to pelt the opposing goalkeeper with snowballs.", - "contentSnippet": "Aberdeen's Europa Conference League game with HJK Helsinki was at risk of being abandoned after the Scottish fans decided to pelt the opposing goalkeeper with snowballs.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12811315/Aberdeens-game-stopped-fans-launch-SNOWBALLS-HJK-Helsinki-goalkeeper-Dons-captain-Jonny-Hayes-urged-speak-sense-Red-Army-just-moment-snow-plough-brought-pitch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:49:53.000Z" - }, - { - "title": "Omid Scobie says he's 'as frustrated as everyone else' after 'royal racists' were named in Dutch translation of Endgame - as he insists he's been treated 'unfairly' and fails to apologise for scandal", - "link": "https://www.dailymail.co.uk/news/article-12809093/Palace-race-row-omid-scobie-endgame-Morning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:33:31 GMT", - "enclosure": { - "length": "10236", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78414721-0-image-a-17_1701340758285.jpg" - }, - "content": "The Sussexes' favoured royal reporter has squarely blamed the publisher in the Netherlands - and denied it was part of a money-spinning 'stunt' to shift more copies.", - "contentSnippet": "The Sussexes' favoured royal reporter has squarely blamed the publisher in the Netherlands - and denied it was part of a money-spinning 'stunt' to shift more copies.", - "guid": "https://www.dailymail.co.uk/news/article-12809093/Palace-race-row-omid-scobie-endgame-Morning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:33:31.000Z" - }, - { - "title": "King brushes off Omid Scobie race row: Charles jokes 'he's alright... just about' as Palace considers legal action - after Piers Morgan named two royals accused of racism", - "link": "https://www.dailymail.co.uk/news/article-12808575/King-Charles-Omid-Scobie-book-Endgame-Harry-Meghan-royal-racists.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:30:14 GMT", - "enclosure": { - "length": "9821", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78415255-0-image-a-8_1701341619687.jpg" - }, - "content": "Royal experts and insiders have said there is anger a at the heart of the British Royal Family over the scandal, heightened after Piers Morgan revealed the names on live TV last night.", - "contentSnippet": "Royal experts and insiders have said there is anger a at the heart of the British Royal Family over the scandal, heightened after Piers Morgan revealed the names on live TV last night.", - "guid": "https://www.dailymail.co.uk/news/article-12808575/King-Charles-Omid-Scobie-book-Endgame-Harry-Meghan-royal-racists.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:30:14.000Z" - }, - { - "title": "Alistair Darling dies aged 70: How the man with the most striking pair of eyebrows in Westminster proved he also had the safest pair of hands, writes ANDREW PIERCE", - "link": "https://www.dailymail.co.uk/news/article-12811367/alistair-darling-dies-labour-chancellor-westminster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:20:31 GMT", - "enclosure": { - "length": "8803", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78425187-0-image-a-51_1701374925123.jpg" - }, - "content": "Alistair Darling steered the country through the crisis prompting his admirers to remark that the man with the most striking pair of eyebrows in Westminster also had the safest pair of hands", - "contentSnippet": "Alistair Darling steered the country through the crisis prompting his admirers to remark that the man with the most striking pair of eyebrows in Westminster also had the safest pair of hands", - "guid": "https://www.dailymail.co.uk/news/article-12811367/alistair-darling-dies-labour-chancellor-westminster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:20:31.000Z" - }, - { - "title": "The surprising reason why Kissinger reached 100 - despite his diet of bratwurst and Wiener schnitzel and his lifelong aversion to exercise", - "link": "https://www.dailymail.co.uk/health/article-12810291/kissinger-diet-death-100.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:16:42 GMT", - "enclosure": { - "length": "9656", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437859-0-image-a-25_1701372457082.jpg" - }, - "content": "Former\u00a0US Secretary of State Henry Kissinger wasn't sure of the secret to his own longevity, given the former diplomat enjoyed a diet heavy in fat and led a sedentary lifestyle.", - "contentSnippet": "Former\u00a0US Secretary of State Henry Kissinger wasn't sure of the secret to his own longevity, given the former diplomat enjoyed a diet heavy in fat and led a sedentary lifestyle.", - "guid": "https://www.dailymail.co.uk/health/article-12810291/kissinger-diet-death-100.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:16:42.000Z" - }, - { - "title": "Liam Conlon, son of Keir Starmer's chief aide and Partygate investigator Sue Gray, is selected as the candidate for Labour target seat", - "link": "https://www.dailymail.co.uk/news/article-12810743/Liam-Conlon-Labour-son-Keir-Starmer-Partygate-Sue-Gray-MP-candidate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:11:57 GMT", - "enclosure": { - "length": "4438", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431735-0-image-m-40_1701363106658.jpg" - }, - "content": "Liam Conlon will stand in Beckenham & Penge at the general election after being picked by local activists last night.", - "contentSnippet": "Liam Conlon will stand in Beckenham & Penge at the general election after being picked by local activists last night.", - "guid": "https://www.dailymail.co.uk/news/article-12810743/Liam-Conlon-Labour-son-Keir-Starmer-Partygate-Sue-Gray-MP-candidate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:11:57.000Z" - }, - { - "title": "EXCLUSIVE: Man City and the Premier League agree date for trial over 115 financial rule-break charges - with expected timing for the verdict FINALLY set, when they could face a huge points deduction", - "link": "https://www.dailymail.co.uk/sport/football/article-12809173/Man-City-Premier-League-agree-date-tribunal-financial-rule-break-charges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:06:52 GMT", - "enclosure": { - "length": "13399", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78414711-0-image-a-97_1701340723607.jpg" - }, - "content": "EXCLUSIVE BY MIKE KEEGAN: The top-flight charged its champions with 115 alleged breaches of financial regulations in February after opening an investigation in 2018.", - "contentSnippet": "EXCLUSIVE BY MIKE KEEGAN: The top-flight charged its champions with 115 alleged breaches of financial regulations in February after opening an investigation in 2018.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12809173/Man-City-Premier-League-agree-date-tribunal-financial-rule-break-charges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:06:52.000Z" - }, - { - "title": "Incredible underwater footage shows huge US Navy plane stuck on Hawaii Bay's reef - as its tires remain lodged in the coral more than a WEEK after pilot overshot runway at Marine Corp base", - "link": "https://www.dailymail.co.uk/news/article-12811111/Navy-plane-Hawaii-Bays-reef-coral-Marine-Corp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:03:58 GMT", - "enclosure": { - "length": "9052", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438785-0-image-a-8_1701374187980.jpg" - }, - "content": "The U.S. Navy released an underwater footage on Wednesday, revealing the plane's tires lodged in the coral as fish navigate through rock fissures.", - "contentSnippet": "The U.S. Navy released an underwater footage on Wednesday, revealing the plane's tires lodged in the coral as fish navigate through rock fissures.", - "guid": "https://www.dailymail.co.uk/news/article-12811111/Navy-plane-Hawaii-Bays-reef-coral-Marine-Corp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:03:58.000Z" - }, - { - "title": "'I never met anyone who didn't like him': Tributes pour in for 'thoroughly kind and decent' ex-Labour chancellor Alistair Darling after his death aged 70 - as video shows the moment George Osborne and Ed Balls learn he has passed away", - "link": "https://www.dailymail.co.uk/news/article-12810659/I-never-met-didnt-like-Tributes-pour-thoroughly-kind-decent-ex-Labour-chancellor-Alistair-Darling-death-aged-70-video-shows-moment-George-Osborne-Ed-Balls-learn-passed-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:03:30 GMT", - "enclosure": { - "length": "7520", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78421137-0-image-m-41_1701348810328.jpg" - }, - "content": "Tributes today poured in from across the political divide for a 'towering figure' who took 'calm' action in steering Britain through the chaos of the global credit crunch.", - "contentSnippet": "Tributes today poured in from across the political divide for a 'towering figure' who took 'calm' action in steering Britain through the chaos of the global credit crunch.", - "guid": "https://www.dailymail.co.uk/news/article-12810659/I-never-met-didnt-like-Tributes-pour-thoroughly-kind-decent-ex-Labour-chancellor-Alistair-Darling-death-aged-70-video-shows-moment-George-Osborne-Ed-Balls-learn-passed-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:03:30.000Z" - }, - { - "title": "Asteroid or supervolcano? New study says dinosaurs were wiped out by BOTH", - "link": "https://www.dailymail.co.uk/sciencetech/article-12810307/asteroid-supervolcano-dinosaurs-wiped-meteor.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 20:00:16 GMT", - "enclosure": { - "length": "9594", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78428099-0-image-a-8_1701360513992.jpg" - }, - "content": "'Volcanic winters' weakened the dinosaurs for 200,000 years prior to extinction. 'The final blow,' researchers said, was likely given by Chicxulub meteor impact", - "contentSnippet": "'Volcanic winters' weakened the dinosaurs for 200,000 years prior to extinction. 'The final blow,' researchers said, was likely given by Chicxulub meteor impact", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12810307/asteroid-supervolcano-dinosaurs-wiped-meteor.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T20:00:16.000Z" - }, - { - "title": "'Quite the line-up for heaven's waiting room': Social media users pay tribute as Shane MacGowan, Alistair Darling, Henry Kissinger and Brookside actor Dean Sullivan all pass away on the same day", - "link": "https://www.dailymail.co.uk/news/article-12811039/Social-media-tribute-Shane-MacGowan-Alistair-Darling-Henry-Kissinger-Dean-Sullivan-deaths.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:56:01 GMT", - "enclosure": { - "length": "4691", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437897-0-image-a-4_1701371873190.jpg" - }, - "content": "After the announcements that Shane MacGowan, Alistair Darling, Henry Kissinger and Dean Sullivan have all passed away over the last day, many have been left stunned and heartbroken.", - "contentSnippet": "After the announcements that Shane MacGowan, Alistair Darling, Henry Kissinger and Dean Sullivan have all passed away over the last day, many have been left stunned and heartbroken.", - "guid": "https://www.dailymail.co.uk/news/article-12811039/Social-media-tribute-Shane-MacGowan-Alistair-Darling-Henry-Kissinger-Dean-Sullivan-deaths.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:56:01.000Z" - }, - { - "title": "Jamie Lynn Spears is FINALLY reunited with her luxury item after leaving the I'm A Celeb camp on 'medical grounds'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810433/Jamie-Lynn-Spears-FINALLY-reunited-luxury-item-quit-Im-Celeb.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:49:13 GMT", - "enclosure": { - "length": "10003", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430631-0-image-a-235_1701360687705.jpg" - }, - "content": "Jamie Lynn Spears was finally reunited with her luxury item on Thursday after quitting I'm A Celebrity on medical grounds.\u00a0", - "contentSnippet": "Jamie Lynn Spears was finally reunited with her luxury item on Thursday after quitting I'm A Celebrity on medical grounds.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810433/Jamie-Lynn-Spears-FINALLY-reunited-luxury-item-quit-Im-Celeb.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:49:13.000Z" - }, - { - "title": "Woman who was sexually assaulted by a multi-millionaire tech tycoon - once known as 'Britain's nicest boss' - says his conviction shows that 'no amount of money or power puts you above the law'", - "link": "https://www.dailymail.co.uk/news/article-12811219/Woman-sexually-assaulted-multi-millionaire-tech-tycoon-known-Britains-nicest-boss-says-conviction-shows-no-money-power-puts-law.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:43:46 GMT", - "enclosure": { - "length": "7754", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437821-0-image-m-45_1701372376876.jpg" - }, - "content": "Lawrence Jones - once dubbed 'Britain's nicest boss' - tomorrow faces a lengthy jail sentence for preying on three women.", - "contentSnippet": "Lawrence Jones - once dubbed 'Britain's nicest boss' - tomorrow faces a lengthy jail sentence for preying on three women.", - "guid": "https://www.dailymail.co.uk/news/article-12811219/Woman-sexually-assaulted-multi-millionaire-tech-tycoon-known-Britains-nicest-boss-says-conviction-shows-no-money-power-puts-law.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:43:46.000Z" - }, - { - "title": "Forbes publishes new 'hall of shame' naming 10 people it regrets featuring on prized 30 under 30 list - with jailed FTX founder Sam Bankman-Fried taking inevitable top spot", - "link": "https://www.dailymail.co.uk/news/article-12810113/Forbes-hall-shame-naming-regrets-featuring-Sam-Bankman-Fried.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:41:03 GMT", - "enclosure": { - "length": "10234", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78425825-0-image-a-14_1701361060959.jpg" - }, - "content": "Forbes has published a new 'Hall of Shame' with 10 people it regrets featuring on its famous 30 Under 30 list in recent years.", - "contentSnippet": "Forbes has published a new 'Hall of Shame' with 10 people it regrets featuring on its famous 30 Under 30 list in recent years.", - "guid": "https://www.dailymail.co.uk/news/article-12810113/Forbes-hall-shame-naming-regrets-featuring-Sam-Bankman-Fried.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:41:03.000Z" - }, - { - "title": "Supermassive black hole at the heart of the Milky Way is warping space-time - and it could reveal how our galaxy formed", - "link": "https://www.dailymail.co.uk/sciencetech/article-12809795/galaxy-supermassive-black-hole-warping-space-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:35:39 GMT", - "enclosure": { - "length": "6013", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78431057-0-image-a-5_1701369779490.jpg" - }, - "content": "The supermassive black hole, Sagittarius A*, is warping space-time in the Milky Way galaxy because of its fast rotation. Its smaller size means Sagittarius A* can make more rotations quickly.", - "contentSnippet": "The supermassive black hole, Sagittarius A*, is warping space-time in the Milky Way galaxy because of its fast rotation. Its smaller size means Sagittarius A* can make more rotations quickly.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12809795/galaxy-supermassive-black-hole-warping-space-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:35:39.000Z" - }, - { - "title": "Moment Amazon delivery driver throws Christmas present over garden gate - before customer gets notification that \u00a340 gift has been 'handed to the resident'", - "link": "https://www.dailymail.co.uk/news/article-12810931/Amazon-delivery-Christmas-present-garden-gate-oldham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:20:31 GMT", - "enclosure": { - "length": "5708", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435509-0-image-a-23_1701367369394.jpg" - }, - "content": "Sean Newton was at his home in Oldham, Greater Manchester, when he heard a bang outside and security footage showed the parcel had been thrown over the garden gate", - "contentSnippet": "Sean Newton was at his home in Oldham, Greater Manchester, when he heard a bang outside and security footage showed the parcel had been thrown over the garden gate", - "guid": "https://www.dailymail.co.uk/news/article-12810931/Amazon-delivery-Christmas-present-garden-gate-oldham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:20:31.000Z" - }, - { - "title": "Female American Airlines worker is left with permanent scarring after male passenger, 29, 'punched her repeatedly' before being escorted off plane", - "link": "https://www.dailymail.co.uk/news/article-12810569/American-Airlines-Miami-Bruce-Machiavelo-employee-punch-plane.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:20:17 GMT", - "enclosure": { - "length": "7786", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434917-0-image-a-22_1701366527440.jpg" - }, - "content": "A female American Airlines employee was left permanently scarred after Bruce Luke Machiavelo, 29, repeatedly punched her on Monday night, police asid.", - "contentSnippet": "A female American Airlines employee was left permanently scarred after Bruce Luke Machiavelo, 29, repeatedly punched her on Monday night, police asid.", - "guid": "https://www.dailymail.co.uk/news/article-12810569/American-Airlines-Miami-Bruce-Machiavelo-employee-punch-plane.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:20:17.000Z" - }, - { - "title": "EXCLUSIVE: Missing Taylor already? Travis Kelce looks glum as he fills up his Rolls Royce and grabs some candy on the way to practice... just hours after popstar girlfriend Swift jetted off to London to see pal Beyonce", - "link": "https://www.dailymail.co.uk/sport/nfl/article-12811081/Missing-Taylor-Travis-Kelce-looks-glum-fills-Rolls-Royce-grabs-candy-way-practice-just-hours-popstar-girlfriend-Swift-jetted-London-pal-Beyonce.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:19:52 GMT", - "enclosure": { - "length": "11029", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437833-0-image-a-34_1701371819029.jpg" - }, - "content": "It is a sad day for the superstar NFL tight end after he waved goodbye to his girlfriend Taylor Swift last night, with the pop superstar jetting off to London to support her pal Beyonce at her premiere.", - "contentSnippet": "It is a sad day for the superstar NFL tight end after he waved goodbye to his girlfriend Taylor Swift last night, with the pop superstar jetting off to London to support her pal Beyonce at her premiere.", - "guid": "https://www.dailymail.co.uk/sport/nfl/article-12811081/Missing-Taylor-Travis-Kelce-looks-glum-fills-Rolls-Royce-grabs-candy-way-practice-just-hours-popstar-girlfriend-Swift-jetted-London-pal-Beyonce.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:19:52.000Z" - }, - { - "title": "Could this been the saviour of Britain's rubbish roads? British firm is developing the world's first artificial intelligence-led robots that can seek out and fix POTHOLES on UK roads", - "link": "https://www.dailymail.co.uk/news/article-12811065/Could-saviour-Britains-rubbish-roads-British-firm-developing-worlds-artificial-intelligence-led-robots-seek-fix-POTHOLES-UK-roads.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:11:31 GMT", - "enclosure": { - "length": "10545", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437559-0-image-a-4_1701371304358.jpg" - }, - "content": "The self-driving robot, which looks like a cross between a tank and a road roller, was created by tech firm Robotiz3d to help local authorities fix the holes in the roads.", - "contentSnippet": "The self-driving robot, which looks like a cross between a tank and a road roller, was created by tech firm Robotiz3d to help local authorities fix the holes in the roads.", - "guid": "https://www.dailymail.co.uk/news/article-12811065/Could-saviour-Britains-rubbish-roads-British-firm-developing-worlds-artificial-intelligence-led-robots-seek-fix-POTHOLES-UK-roads.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:11:31.000Z" - }, - { - "title": "Police officer who conned vulnerable widow, 81, out of \u00a318,000 after being called to check on her at home is jailed for 20 months", - "link": "https://www.dailymail.co.uk/news/article-12810921/Police-officer-conned-vulnerable-widow-81-18-000-called-check-home-jailed-20-months.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:05:57 GMT", - "enclosure": { - "length": "6405", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435397-0-image-a-6_1701368647262.jpg" - }, - "content": "Police Constable Sam Smith first met the pensioner, who was suffering from cancer and alcohol-related dementia, while on-duty when he was called to her South Devon home.", - "contentSnippet": "Police Constable Sam Smith first met the pensioner, who was suffering from cancer and alcohol-related dementia, while on-duty when he was called to her South Devon home.", - "guid": "https://www.dailymail.co.uk/news/article-12810921/Police-officer-conned-vulnerable-widow-81-18-000-called-check-home-jailed-20-months.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:05:57.000Z" - }, - { - "title": "Mother says school is picking on her dance-mad daughter, 12 - after she was put in detention for turning up for lessons still wearing fake tan from a competition", - "link": "https://www.dailymail.co.uk/news/article-12811117/Mother-says-school-picking-dance-mad-daughter-12-detention-turning-lessons-wearing-fake-tan-competition.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:04:22 GMT", - "enclosure": { - "length": "4480", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78437261-0-image-a-4_1701370786872.jpg" - }, - "content": "Natalie White said it should be expected for dancers to wear fake tan during weekend competitions and, while it can be tricky to wash off, this has never previously been a problem.", - "contentSnippet": "Natalie White said it should be expected for dancers to wear fake tan during weekend competitions and, while it can be tricky to wash off, this has never previously been a problem.", - "guid": "https://www.dailymail.co.uk/news/article-12811117/Mother-says-school-picking-dance-mad-daughter-12-detention-turning-lessons-wearing-fake-tan-competition.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:04:22.000Z" - }, - { - "title": "EXCLUSIVE: Taylor Swift will move in with 'soulmate' Travis Kelce for good if all goes well with 'practice run' at his $6 million Kansas City mansion - with friends claiming the couple have even discussed starting a family", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12806333/taylor-swift-moves-travis-kelce-kansas-city-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:03:56 GMT", - "enclosure": { - "length": "12805", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/29/22/78390307-0-image-a-13_1701296237565.jpg" - }, - "content": "Taylor, 33, has moved in with her boyfriend Travis, 34, at his mansion in Kansas City while on a break from her Era's tour. The singer's friends and family believe the two are 'soulmates.'", - "contentSnippet": "Taylor, 33, has moved in with her boyfriend Travis, 34, at his mansion in Kansas City while on a break from her Era's tour. The singer's friends and family believe the two are 'soulmates.'", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12806333/taylor-swift-moves-travis-kelce-kansas-city-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:03:56.000Z" - }, - { - "title": "Lawrence Jones is stripped of his honorary doctorate after the \u00a3700m tech tycoon once dubbed 'Britain's nicest boss' was found guilty of drugging and raping two women 30 years ago", - "link": "https://www.dailymail.co.uk/news/article-12809885/lawrence-jones-doctorate-stripped-guilty-drug-raping-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:02:46 GMT", - "enclosure": { - "length": "10881", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430339-0-image-m-38_1701361020702.jpg" - }, - "content": "The \u00a3700m tech tycoon, who was once known as 'Britain's nicest boss', was awarded an honorary doctorate of business administration from Manchester Metropolitan University in 2016.", - "contentSnippet": "The \u00a3700m tech tycoon, who was once known as 'Britain's nicest boss', was awarded an honorary doctorate of business administration from Manchester Metropolitan University in 2016.", - "guid": "https://www.dailymail.co.uk/news/article-12809885/lawrence-jones-doctorate-stripped-guilty-drug-raping-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:02:46.000Z" - }, - { - "title": "EXCLUSIVE: He was a teen heartthrob who worked with Pamela Anderson and also voiced a Lion King character - and there is a Tom Cruise link... but he became a recluse after attending Harvard. Who is he?", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810631/He-teen-heartthrob-worked-Pamela-Anderson-voiced-Lion-King-character-Tom-Cruise-link-recluse-attending-Harvard-he.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:02:41 GMT", - "enclosure": { - "length": "5641", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78433531-0-image-m-80_1701364267685.jpg" - }, - "content": "He was a teen heartthrob who young girls went crazy for thanks to his 90s TV show. He also made movies with Chevy Chase and Devon Sawa. He last acted in 2015. Who is he?", - "contentSnippet": "He was a teen heartthrob who young girls went crazy for thanks to his 90s TV show. He also made movies with Chevy Chase and Devon Sawa. He last acted in 2015. Who is he?", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810631/He-teen-heartthrob-worked-Pamela-Anderson-voiced-Lion-King-character-Tom-Cruise-link-recluse-attending-Harvard-he.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:02:41.000Z" - }, - { - "title": "EXCLUSIVE: Alice Evans 'cannot pay her rent or afford to buy food' as her marathon divorce fight with actor Ioan Gruffudd continues - as it's revealed she could take a job at Starbucks", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810005/Alice-Evans-afford-rent-food-divorce-Ioan-Gruffudd.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 19:00:41 GMT", - "enclosure": { - "length": "12270", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425257-0-image-a-61_1701355181756.jpg" - }, - "content": "Evans, 55, told pals that she is in a financial crisis, as the money she made from the sale of their marital home - believed to be $100,000 - has all gone, with most of it used to cover legal costs.", - "contentSnippet": "Evans, 55, told pals that she is in a financial crisis, as the money she made from the sale of their marital home - believed to be $100,000 - has all gone, with most of it used to cover legal costs.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810005/Alice-Evans-afford-rent-food-divorce-Ioan-Gruffudd.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T19:00:41.000Z" - }, - { - "title": "Man sparks debate after revealing he was YELLED at by a mother on a flight for watching an R-rated movie on his phone that made her son cry\u00a0- so whose side are YOU on?", - "link": "https://www.dailymail.co.uk/travel/article-12810705/mother-yelled-flight-watching-r-rated-movie-phone-plane.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:58:04 GMT", - "enclosure": { - "length": "10455", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435729-0-image-a-15_1701370516833.jpg" - }, - "content": "The 19-year-old, who kept his identity anonymous, opened up about his awkward in-flight interaction with the angry passenger in a post shared on Reddit's 'Am I The A**hole?' forum.", - "contentSnippet": "The 19-year-old, who kept his identity anonymous, opened up about his awkward in-flight interaction with the angry passenger in a post shared on Reddit's 'Am I The A**hole?' forum.", - "guid": "https://www.dailymail.co.uk/travel/article-12810705/mother-yelled-flight-watching-r-rated-movie-phone-plane.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:58:04.000Z" - }, - { - "title": "Shane MacGowan's life through quotes: 12 unforgettable one-liners from The Pogues rocker about drinking, women, and breaking into America", - "link": "https://www.dailymail.co.uk/news/article-12809941/Shane-MacGowans-life-quotes-Pogues.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:56:20 GMT", - "enclosure": { - "length": "9978", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426351-0-image-a-26_1701357356663.jpg" - }, - "content": "Praised for being the 'greatest songwriter of his generation' MacGowan was upfront and insightful off the stage and on. He had a quote on everything from religion to hamburgers.", - "contentSnippet": "Praised for being the 'greatest songwriter of his generation' MacGowan was upfront and insightful off the stage and on. He had a quote on everything from religion to hamburgers.", - "guid": "https://www.dailymail.co.uk/news/article-12809941/Shane-MacGowans-life-quotes-Pogues.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:56:20.000Z" - }, - { - "title": "Spectacular moment Rockefeller Christmas tree glistens in New York City as lighting is attended by thousands - after pro-Palestinian mob brandishing a swastika tried to wreck the ceremony", - "link": "https://www.dailymail.co.uk/news/article-12808263/rockefeller-christmas-tree-palestine-rally-swastika.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:54:40 GMT", - "enclosure": { - "length": "12912", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/06/78407535-0-image-a-23_1701325355304.jpg" - }, - "content": "The Rockefeller Christmas tree was lit on Wednesday evening in a spectacular ceremony. One block away, pro-Palestine protesters clashed with police who blocked their path.", - "contentSnippet": "The Rockefeller Christmas tree was lit on Wednesday evening in a spectacular ceremony. One block away, pro-Palestine protesters clashed with police who blocked their path.", - "guid": "https://www.dailymail.co.uk/news/article-12808263/rockefeller-christmas-tree-palestine-rally-swastika.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:54:40.000Z" - }, - { - "title": "Is 'greedflation' fuelling the cost-of-living crisis? How prices of own-brand goods have surged in the past two years - with baby formula up 45%, beans 57% and cat food 65% - amid claims they're being hiked", - "link": "https://www.dailymail.co.uk/news/article-12811013/Is-greedflation-fuelling-cost-living-crisis-prices-brand-goods-surged-past-two-years-baby-formula-45-beans-57-cat-food-65-amid-claims-theyre-hiked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:46:46 GMT", - "enclosure": { - "length": "14079", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78434223-0-image-m-18_1701367837500.jpg" - }, - "content": "In conjunction with big-manufacturers raising costs, the details published by CMA suggest companies producing own-brand labels have likely contributed to the hike in inflation.", - "contentSnippet": "In conjunction with big-manufacturers raising costs, the details published by CMA suggest companies producing own-brand labels have likely contributed to the hike in inflation.", - "guid": "https://www.dailymail.co.uk/news/article-12811013/Is-greedflation-fuelling-cost-living-crisis-prices-brand-goods-surged-past-two-years-baby-formula-45-beans-57-cat-food-65-amid-claims-theyre-hiked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:46:46.000Z" - }, - { - "title": "Shane MacGowan's wife pays emotional tribute to Pogues rocker after his death aged 65 and says he's 'gone to be with Jesus and Mary and his beautiful mother' - 'You will live in my heart forever. You meant the world to me'", - "link": "https://www.dailymail.co.uk/news/article-12810003/pogues-shane-macgowan-wife-tribute-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:43:56 GMT", - "enclosure": { - "length": "11995", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426347-0-image-a-1_1701356825817.jpg" - }, - "content": "The legendary musician, who was behind the Christmas anthem Fairytale of New York, died 'peacefully' at 3am today, aged 65, with his wife Victoria Mary Clarke and family by his side.", - "contentSnippet": "The legendary musician, who was behind the Christmas anthem Fairytale of New York, died 'peacefully' at 3am today, aged 65, with his wife Victoria Mary Clarke and family by his side.", - "guid": "https://www.dailymail.co.uk/news/article-12810003/pogues-shane-macgowan-wife-tribute-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:43:56.000Z" - }, - { - "title": "Sphere we go again? Controversial London plan to build 300ft replica of enormous Las Vegas venue could be BACK as government mulls calling it in after Sadiq Khan blocked huge build", - "link": "https://www.dailymail.co.uk/news/article-12808773/london-sphere-plan-government-sadiq-khan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:40:51 GMT", - "enclosure": { - "length": "6774", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/76102027-0-image-m-16_1701340210569.jpg" - }, - "content": "The reported \u00a3800 million development was given the green light back in March before Mayor of London Sadiq Khan blocked it on grounds of light pollution.", - "contentSnippet": "The reported \u00a3800 million development was given the green light back in March before Mayor of London Sadiq Khan blocked it on grounds of light pollution.", - "guid": "https://www.dailymail.co.uk/news/article-12808773/london-sphere-plan-government-sadiq-khan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:40:51.000Z" - }, - { - "title": "I'm NOT a liar, Matt Hancock tells Covid Inquiry: Ex-health secretary furiously rejects claims he misled colleagues about pandemic plans as he attacks 'malign' Dominic Cummings - but admits he didn't read minutes from meetings of SAGE experts in early 2020", - "link": "https://www.dailymail.co.uk/news/article-12808695/Matt-Hancock-Covid-Inquiry-pandemic-Boris-Johnson-Cummings.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:35:42 GMT", - "enclosure": { - "length": "5777", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78426957-0-image-m-14_1701362867134.jpg" - }, - "content": "Matt Hancock furiously denied lying to colleagues and attacked 'malign' Dominic Cummings today in stormy evidence to the Covid Inquiry.", - "contentSnippet": "Matt Hancock furiously denied lying to colleagues and attacked 'malign' Dominic Cummings today in stormy evidence to the Covid Inquiry.", - "guid": "https://www.dailymail.co.uk/news/article-12808695/Matt-Hancock-Covid-Inquiry-pandemic-Boris-Johnson-Cummings.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:35:42.000Z" - }, - { - "title": "Do they know something we don't? UK health chiefs issue guidance on what to do in a radiation emergency amid escalating WW3 fears", - "link": "https://www.dailymail.co.uk/health/article-12810635/Do-know-dont-UK-health-chiefs-issue-guidance-radiation-emergency-amid-escalating-WW3-fears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:34:53 GMT", - "enclosure": { - "length": "8017", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78433037-0-image-a-13_1701363550063.jpg" - }, - "content": "Keep calm, but don't carry on! UK health chiefs have issued new guidance on what to do in a radiation emergency. It involves getting inside as quickly as possible to reduce exposure.", - "contentSnippet": "Keep calm, but don't carry on! UK health chiefs have issued new guidance on what to do in a radiation emergency. It involves getting inside as quickly as possible to reduce exposure.", - "guid": "https://www.dailymail.co.uk/health/article-12810635/Do-know-dont-UK-health-chiefs-issue-guidance-radiation-emergency-amid-escalating-WW3-fears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:34:53.000Z" - }, - { - "title": "Jon Venables could be freed by Christmas: James Bulger's murderer will learn if he has won parole in week beginning December 11", - "link": "https://www.dailymail.co.uk/news/article-12810805/Jon-Venables-freed-Christmas-James-Bulgers-murderer-learn-won-parole-week-beginning-December-11.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:33:44 GMT", - "enclosure": { - "length": "6652", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78436009-0-image-a-12_1701369217899.jpg" - }, - "content": "EXCLUSIVE: The child murderer has been informed that the Parole Board will make a decision public during that week after it was delayed earlier this week.", - "contentSnippet": "EXCLUSIVE: The child murderer has been informed that the Parole Board will make a decision public during that week after it was delayed earlier this week.", - "guid": "https://www.dailymail.co.uk/news/article-12810805/Jon-Venables-freed-Christmas-James-Bulgers-murderer-learn-won-parole-week-beginning-December-11.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:33:44.000Z" - }, - { - "title": "Taylor Swift and Travis Kelce's love story is '100 percent FAKE', claims UFC star-turned-Only Fans model Paige VanZant", - "link": "https://www.dailymail.co.uk/sport/mma/article-12809615/Ex-UFC-star-Paige-VanZant-claims-Taylor-Swift-Travis-Kelces-love-story-100-cent-FAKE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:31:05 GMT", - "enclosure": { - "length": "11465", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421575-0-image-a-61_1701349410774.jpg" - }, - "content": "The 29-year-old blonde bombshell proposed that the supposed 'love story' between Kansas City Chiefs star Kelce and pop sensation Swift is entirely a 'publicity stunt', and their feelings aren't genuine.", - "contentSnippet": "The 29-year-old blonde bombshell proposed that the supposed 'love story' between Kansas City Chiefs star Kelce and pop sensation Swift is entirely a 'publicity stunt', and their feelings aren't genuine.", - "guid": "https://www.dailymail.co.uk/sport/mma/article-12809615/Ex-UFC-star-Paige-VanZant-claims-Taylor-Swift-Travis-Kelces-love-story-100-cent-FAKE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:31:05.000Z" - }, - { - "title": "John Oates 'deeply hurt' by Hall & Oates bandmate Daryl Hall's accusations that he secretly tried to sell his half of their music and timed it to 'ambush' him on tour", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810945/John-Oates-deeply-hurt-Daryl-Halls-accusations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:23:57 GMT", - "enclosure": { - "length": "10901", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435595-0-image-m-37_1701367426367.jpg" - }, - "content": "Oates, 75, filed a declaration in a Tennessee court to reveal his disappointment that a private dispute that he had with his 77-year-old bandmate has gone public.", - "contentSnippet": "Oates, 75, filed a declaration in a Tennessee court to reveal his disappointment that a private dispute that he had with his 77-year-old bandmate has gone public.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810945/John-Oates-deeply-hurt-Daryl-Halls-accusations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:23:57.000Z" - }, - { - "title": "Blonde Beyonce is seen for the first time since she was accused of 'lightening her skin' as she dines with Jay-Z, Tom Cruise and Henry Cavill\u00a0at London members' club Oswald's", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12809737/Blonde-Beyonce-seen-time-accused-lightening-skin-dines-London-members-club-Oswalds-Jay-Z-Tom-Cruise-Henry-Cavill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:16:37 GMT", - "enclosure": { - "length": "10493", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421715-0-image-m-70_1701349824679.jpg" - }, - "content": "Beyonce was pictured for the first time since she was hit with 'skin bleaching' accusations, as she headed out for dinner with husband Jay-Z,\u00a0Tom Cruise and Henry Cavill.", - "contentSnippet": "Beyonce was pictured for the first time since she was hit with 'skin bleaching' accusations, as she headed out for dinner with husband Jay-Z,\u00a0Tom Cruise and Henry Cavill.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12809737/Blonde-Beyonce-seen-time-accused-lightening-skin-dines-London-members-club-Oswalds-Jay-Z-Tom-Cruise-Henry-Cavill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:16:37.000Z" - }, - { - "title": "Headteachers struggling to sleep due to stress of Ofsted visits is 'usual', Ruth Perry inquest hears - as colleagues tell coroner how inspector 'sneered' at teachers and 'didn't listen to them'", - "link": "https://www.dailymail.co.uk/news/article-12810741/ruth-perry-inquest-ofsted-inspectore-sneered-headteachers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:10:22 GMT", - "enclosure": { - "length": "8304", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78014891-0-Ruth_Perry_53_was_headteacher_at_Caversham_Primary_School_in_Rea-a-7_1701346966586.jpg" - }, - "content": "Ms Perry, 53, was found dead in January this year after being told her school - Caversham Primary School in Reading - was being downgraded from 'outstanding' to 'inadequate',", - "contentSnippet": "Ms Perry, 53, was found dead in January this year after being told her school - Caversham Primary School in Reading - was being downgraded from 'outstanding' to 'inadequate',", - "guid": "https://www.dailymail.co.uk/news/article-12810741/ruth-perry-inquest-ofsted-inspectore-sneered-headteachers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:10:22.000Z" - }, - { - "title": "I'm A Celebrity's Grace Dent reveals she had a cockroach removed from her EAR after feeling it 'crawl towards her brain' and bemoans 'waking up with meal worms in her bra' before sensationally quitting the show", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810167/Im-Celebrity-Grace-Dent-cockroach-quitting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:06:40 GMT", - "enclosure": { - "length": "10322", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425977-0-image-a-99_1701356391105.jpg" - }, - "content": "The food critic, 50, broke her silence in a lengthy Instagram post on Thursday after flying back to the UK following her jungle exit.", - "contentSnippet": "The food critic, 50, broke her silence in a lengthy Instagram post on Thursday after flying back to the UK following her jungle exit.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810167/Im-Celebrity-Grace-Dent-cockroach-quitting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:06:40.000Z" - }, - { - "title": "Where are The Pogues bandmates now? From Jem Finer and Spider Stacy to newer members Caitl\u00edn O'Riordan and James Fearnley as former frontman Shane MacGowan dies aged 65", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810067/pogues-bandmates-shane-macgowan-death-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:03:05 GMT", - "enclosure": { - "length": "8688", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426949-0-image-m-69_1701358244402.jpg" - }, - "content": "The Pogues frontman Shane MacGowan, who was behind the iconic Christmas song Fairytale of New York, has died aged 65.", - "contentSnippet": "The Pogues frontman Shane MacGowan, who was behind the iconic Christmas song Fairytale of New York, has died aged 65.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810067/pogues-bandmates-shane-macgowan-death-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:03:05.000Z" - }, - { - "title": "Shane MacGowan death recap: Tributes pour in for Pogues frontman as Fairytale of New York singer passes away aged 65", - "link": "https://www.dailymail.co.uk/news/live/article-12809709/Shane-MacGowan-death-latest-news-Pogues.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 18:02:50 GMT", - "enclosure": { - "length": "9449", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78422741-0-image-a-107_1701351013570.jpg" - }, - "content": "Follow MailOnline's liveblog for the latest updates and tributes following the death of The Pogues frontman Shane MacGowan who was aged 65.", - "contentSnippet": "Follow MailOnline's liveblog for the latest updates and tributes following the death of The Pogues frontman Shane MacGowan who was aged 65.", - "guid": "https://www.dailymail.co.uk/news/live/article-12809709/Shane-MacGowan-death-latest-news-Pogues.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T18:02:50.000Z" - }, - { - "title": "World-leading transgender surgery specialist dubbed the Snapchat Surgeon after performing ops on social media puts his Mayfair clinic into liquidation", - "link": "https://www.dailymail.co.uk/news/article-12810657/World-leading-transgender-surgery-specialist-dubbed-Snapchat-Surgeon-performing-ops-social-media-puts-Mayfair-clinic-liquidation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:56:09 GMT", - "enclosure": { - "length": "6675", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434943-0-image-m-9_1701366043673.jpg" - }, - "content": "Controversial Christopher Inglefield - who became known as the Snapchat Surgeon after livestreaming operations on the platform - has left patients awaiting surgery in despair.", - "contentSnippet": "Controversial Christopher Inglefield - who became known as the Snapchat Surgeon after livestreaming operations on the platform - has left patients awaiting surgery in despair.", - "guid": "https://www.dailymail.co.uk/news/article-12810657/World-leading-transgender-surgery-specialist-dubbed-Snapchat-Surgeon-performing-ops-social-media-puts-Mayfair-clinic-liquidation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:56:09.000Z" - }, - { - "title": "Henry Kissinger profiled by DOMINIC SANDBROOK: The shy, stammering refugee who became one of the world's most powerful men (and dated some of Hollywood's most beautiful women)", - "link": "https://www.dailymail.co.uk/news/article-12809101/DOMINIC-SANDBROOK-profiles-Henry-Kissinger-shy-stammering-refugee-one-worlds-powerful-men-dated-Hollywoods-beautiful-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:54:46 GMT", - "enclosure": { - "length": "9846", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78414995-0-image-a-9_1701341205464.jpg" - }, - "content": "At all costs, Richard Nixon said, Gerald Ford must keep Henry Kissinger as his Secretary of State. 'Henry is a genius,' he explained. 'He'll be very loyal, but you can't let him have a totally free hand.'", - "contentSnippet": "At all costs, Richard Nixon said, Gerald Ford must keep Henry Kissinger as his Secretary of State. 'Henry is a genius,' he explained. 'He'll be very loyal, but you can't let him have a totally free hand.'", - "guid": "https://www.dailymail.co.uk/news/article-12809101/DOMINIC-SANDBROOK-profiles-Henry-Kissinger-shy-stammering-refugee-one-worlds-powerful-men-dated-Hollywoods-beautiful-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:54:46.000Z" - }, - { - "title": "Rolling Stone dances on Henry Kissinger's grave with brutal 'good riddance' headline: 'Finally, the war criminal is dead'", - "link": "https://www.dailymail.co.uk/news/article-12809687/Rolling-Stone-Henry-Kissingers-good-riddance-headline-Finally-war-criminal-dead.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:53:21 GMT", - "enclosure": { - "length": "10145", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78424277-0-image-a-28_1701353684325.jpg" - }, - "content": "The left-leaning outlet published a skewering obituary by Spencer Ackerman last night in which they said Kissinger's legacy should only be his 'confirmed kills'.", - "contentSnippet": "The left-leaning outlet published a skewering obituary by Spencer Ackerman last night in which they said Kissinger's legacy should only be his 'confirmed kills'.", - "guid": "https://www.dailymail.co.uk/news/article-12809687/Rolling-Stone-Henry-Kissingers-good-riddance-headline-Finally-war-criminal-dead.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:53:21.000Z" - }, - { - "title": "Henry Westons Cider makers are fined \u00a31.4m after grandfather was crushed to death on his 65th birthday by a security barrier which pierced through his van's windshield", - "link": "https://www.dailymail.co.uk/news/article-12810787/Henry-Westons-Cider-fined-grandfather-crushed-death-security-barrier.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:52:01 GMT", - "enclosure": { - "length": "9045", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434691-0-image-a-9_1701365630783.jpg" - }, - "content": "Tommy Manns was driving a van out of H Weston and Sons Limited site at Bounds Farm in Ledbury in September 2020 when the newly installed security barrier pierced the vehicle's windshield", - "contentSnippet": "Tommy Manns was driving a van out of H Weston and Sons Limited site at Bounds Farm in Ledbury in September 2020 when the newly installed security barrier pierced the vehicle's windshield", - "guid": "https://www.dailymail.co.uk/news/article-12810787/Henry-Westons-Cider-fined-grandfather-crushed-death-security-barrier.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:52:01.000Z" - }, - { - "title": "I tried on stunning wedding dresses from Shein all costing under \u00a3100 - and now people are clamouring to buy them", - "link": "https://www.dailymail.co.uk/femail/article-12809459/I-tried-stunning-wedding-dresses-Shein-costing-100-people-clamouring-buy-them.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:50:43 GMT", - "enclosure": { - "length": "8652", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431505-0-image-a-64_1701361869771.jpg" - }, - "content": "Narssie, from\u00a0Belgium, showcased wedding dress from Shein on TikTok, with the cheapest costing just \u00a339 and the most expensive costing \u00a362 - and fans were impressed.", - "contentSnippet": "Narssie, from\u00a0Belgium, showcased wedding dress from Shein on TikTok, with the cheapest costing just \u00a339 and the most expensive costing \u00a362 - and fans were impressed.", - "guid": "https://www.dailymail.co.uk/femail/article-12809459/I-tried-stunning-wedding-dresses-Shein-costing-100-people-clamouring-buy-them.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:50:43.000Z" - }, - { - "title": "Mother of carpenter, 50, hacked to death at a KFC drive-thru reveals how she held him in his final moments after he was covered with a blanket and a pillow was put under his head", - "link": "https://www.dailymail.co.uk/news/article-12810345/mother-carpenter-hacked-death-KFC-final-moments.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:49:09 GMT", - "enclosure": { - "length": "8351", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430921-0-image-m-105_1701362196591.jpg" - }, - "content": "EXCLUSIVE: Christine Ward held son Kelvin after he was murdered trying to stop the thugs from killing their intended target - his teenage son. Chilling footage showed Mr Ward being ambushed.", - "contentSnippet": "EXCLUSIVE: Christine Ward held son Kelvin after he was murdered trying to stop the thugs from killing their intended target - his teenage son. Chilling footage showed Mr Ward being ambushed.", - "guid": "https://www.dailymail.co.uk/news/article-12810345/mother-carpenter-hacked-death-KFC-final-moments.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:49:09.000Z" - }, - { - "title": "Alfie Phillips joins a heartbreaking rollcall of children killed in lockdown after the tragic deaths of Star Hobson, Arthur Labinjo-Hughes and Kaylea Titford", - "link": "https://www.dailymail.co.uk/news/article-12810309/Alfie-Phillips-joins-heartbreaking-rollcall-children-killed-lockdown-tragic-deaths-Star-Hobson-Arthur-Labinjo-Hughes-Kaylea-Titford.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:48:05 GMT", - "enclosure": { - "length": "10590", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78423817-0-image-m-38_1701354345921.jpg" - }, - "content": "The toddler died\u00a0on 28 Nov 2020, just days into the second Covid lockdown, with a 'myriad of bruises', broken ribs, arms and leg, after the\u00a0attack in Benham's caravan in Hernhill, near Faversham.", - "contentSnippet": "The toddler died\u00a0on 28 Nov 2020, just days into the second Covid lockdown, with a 'myriad of bruises', broken ribs, arms and leg, after the\u00a0attack in Benham's caravan in Hernhill, near Faversham.", - "guid": "https://www.dailymail.co.uk/news/article-12810309/Alfie-Phillips-joins-heartbreaking-rollcall-children-killed-lockdown-tragic-deaths-Star-Hobson-Arthur-Labinjo-Hughes-Kaylea-Titford.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:48:05.000Z" - }, - { - "title": "Gang who kidnapped DJ and locked his girlfriend in toilet where she was forced to hear his screams as he was tortured to death face years behind bars", - "link": "https://www.dailymail.co.uk/news/article-12810755/Gang-kidnapped-DJ-locked-girlfriend-toilet-forced-hear-screams-tortured-death-face-years-bars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:44:47 GMT", - "enclosure": { - "length": "10300", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/76373793-0-image-m-9_1701364455379.jpg" - }, - "content": "WARNING: GRAPHIC CONTENT - Koray Alpergin (pictured), 43, was ambushed outside his north London home and bundled into a van along with his girlfriend on October 13, 2022.", - "contentSnippet": "WARNING: GRAPHIC CONTENT - Koray Alpergin (pictured), 43, was ambushed outside his north London home and bundled into a van along with his girlfriend on October 13, 2022.", - "guid": "https://www.dailymail.co.uk/news/article-12810755/Gang-kidnapped-DJ-locked-girlfriend-toilet-forced-hear-screams-tortured-death-face-years-bars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:44:47.000Z" - }, - { - "title": "Where are the cast of Brookside now? From Jennifer Ellison to Claire Sweeney and Ricky Tomlinson - a look at what has happened to the stars of the famous Channel 4 soap", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12809503/Brookside-cast-legendary-soap-opera-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:36:35 GMT", - "enclosure": { - "length": "10515", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434729-0-image-a-3_1701365546508.jpg" - }, - "content": "Former Brookside actor Dean Sullivan has passed away at the age of 68, following a battle with prostate cancer. We take a look at where his Brookside cast mates and where they are now.", - "contentSnippet": "Former Brookside actor Dean Sullivan has passed away at the age of 68, following a battle with prostate cancer. We take a look at where his Brookside cast mates and where they are now.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12809503/Brookside-cast-legendary-soap-opera-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:36:35.000Z" - }, - { - "title": "Yes, Omid Scobie is the author of that poisonous book but it's shameful Harry and Meghan who are REALLY to blame for the nasty 'royal racists' speculation, says RICHARD EDEN", - "link": "https://www.dailymail.co.uk/news/article-12809171/Scobie-author-shameful-Harry-Meghan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:35:46 GMT", - "enclosure": { - "length": "9736", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78416345-0-image-a-4_1701345018267.jpg" - }, - "content": "Omid Scobie 's new book on the royals might be inaccurate and poisonous, but the true blame for the lurid speculation about 'racism' lies with Harry and Meghan and their Oprah interview, says Eden.", - "contentSnippet": "Omid Scobie 's new book on the royals might be inaccurate and poisonous, but the true blame for the lurid speculation about 'racism' lies with Harry and Meghan and their Oprah interview, says Eden.", - "guid": "https://www.dailymail.co.uk/news/article-12809171/Scobie-author-shameful-Harry-Meghan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:35:46.000Z" - }, - { - "title": "Sex addict rapist who spiked women's drinks and violated them with objects including a baseball bat is jailed for 24 years", - "link": "https://www.dailymail.co.uk/news/article-12810723/Sex-addict-rapist-spiked-womens-drinks-violated-objects-including-baseball-bat-jailed-24-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:32:01 GMT", - "enclosure": { - "length": "3722", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434539-0-image-m-89_1701365121114.jpg" - }, - "content": "Former soldier Steven Evans, 33, of Openshaw, Greater Manchester, was said to be a sex addict who demanded intercourse up to 11 times a day.", - "contentSnippet": "Former soldier Steven Evans, 33, of Openshaw, Greater Manchester, was said to be a sex addict who demanded intercourse up to 11 times a day.", - "guid": "https://www.dailymail.co.uk/news/article-12810723/Sex-addict-rapist-spiked-womens-drinks-violated-objects-including-baseball-bat-jailed-24-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:32:01.000Z" - }, - { - "title": "Skincare expert reveals the beauty ingredients you should NEVER mix - as she divulges the alarming consequences if used together", - "link": "https://www.dailymail.co.uk/femail/article-12806621/Skincare-expert-beauty-ingredients-never-mix.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:29:39 GMT", - "enclosure": { - "length": "9368", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425407-0-image-a-274_1701355406552.jpg" - }, - "content": "Manuela\u00a0Marcheggiani, from Canada and the co-founder and CEO of Isomers Skincare, revealed why you should never use salicylic acid and retinoids together.", - "contentSnippet": "Manuela\u00a0Marcheggiani, from Canada and the co-founder and CEO of Isomers Skincare, revealed why you should never use salicylic acid and retinoids together.", - "guid": "https://www.dailymail.co.uk/femail/article-12806621/Skincare-expert-beauty-ingredients-never-mix.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:29:39.000Z" - }, - { - "title": "Kiefer Sutherland's touching Shane MacGowan anecdote that changed his mind about 'trusting first encounters' goes viral", - "link": "https://www.dailymail.co.uk/femail/article-12810567/shane-macgowan-kiefer-sutherland-late-late-2019-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:25:23 GMT", - "enclosure": { - "length": "9457", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78432339-0-image-a-78_1701362966195.jpg" - }, - "content": "The 56-year-old actor recalled meeting The Pogues frontman in the 1990s - telling the heartwarming tale of their journey from enemies to friends during a night out in Dublin.", - "contentSnippet": "The 56-year-old actor recalled meeting The Pogues frontman in the 1990s - telling the heartwarming tale of their journey from enemies to friends during a night out in Dublin.", - "guid": "https://www.dailymail.co.uk/femail/article-12810567/shane-macgowan-kiefer-sutherland-late-late-2019-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:25:23.000Z" - }, - { - "title": "World of Chess rocked by a second scandal: Grandmasters go to war as\u00a0 American champion Hikaru Nakamura is accused of cheating by rival after 46-game winning streak", - "link": "https://www.dailymail.co.uk/news/article-12809825/Chess-grandmasters-streak-vladimir-kramnik-hikaru-nakamura-cheating.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:24:32 GMT", - "enclosure": { - "length": "10136", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78427997-0-image-a-13_1701359525960.jpg" - }, - "content": "In a sequel to the Hans Niemann anal beads saga, former world champion Vladimir Kramnik has accused America's top player Hikaru Nakamura of cheating in online games.", - "contentSnippet": "In a sequel to the Hans Niemann anal beads saga, former world champion Vladimir Kramnik has accused America's top player Hikaru Nakamura of cheating in online games.", - "guid": "https://www.dailymail.co.uk/news/article-12809825/Chess-grandmasters-streak-vladimir-kramnik-hikaru-nakamura-cheating.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:24:32.000Z" - }, - { - "title": "A New Labour stalwart who rose to the occasion as Britain faced economic meltdown in 2008: How Alistair Darling led the UK through the credit crunch as Chancellor... before going on to save the Union at the 2014 Scottish referendum", - "link": "https://www.dailymail.co.uk/news/article-12810853/A-New-Labour-stalwart-rose-occasion-Britain-faced-economic-armageddon-2008-Alistair-Darling-led-UK-credit-crunch-Chancellor-going-save-Union-2014-Scottish-referendum.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:21:48 GMT", - "enclosure": { - "length": "5184", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434249-0-image-a-77_1701364572121.jpg" - }, - "content": "With Britain facing economic meltdown amid the global credit crunch, Lord Darling emerged from the chaos with an enhanced reputation.", - "contentSnippet": "With Britain facing economic meltdown amid the global credit crunch, Lord Darling emerged from the chaos with an enhanced reputation.", - "guid": "https://www.dailymail.co.uk/news/article-12810853/A-New-Labour-stalwart-rose-occasion-Britain-faced-economic-armageddon-2008-Alistair-Darling-led-UK-credit-crunch-Chancellor-going-save-Union-2014-Scottish-referendum.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:21:48.000Z" - }, - { - "title": "Muslim family appeals to Hamas to free 17-year-old girl snatched from a kibbutz - with her uncle saying if she is not returned he'll 'fight them in Gaza myself'", - "link": "https://www.dailymail.co.uk/news/exclusive/article-12810453/Muslim-family-appeals-Hamas-free-17-year-old-girl-snatched-kibbutz-uncle-saying-not-returned-hell-fight-Gaza-myself.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:19:29 GMT", - "enclosure": { - "length": "5050", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430867-0-image-m-28_1701361922704.jpg" - }, - "content": "Aisha Ziadna was snatched along with her father and two brothers on October 7. Her uncle said that the Israeli army contacted them to say they were being held in Gaza.", - "contentSnippet": "Aisha Ziadna was snatched along with her father and two brothers on October 7. Her uncle said that the Israeli army contacted them to say they were being held in Gaza.", - "guid": "https://www.dailymail.co.uk/news/exclusive/article-12810453/Muslim-family-appeals-Hamas-free-17-year-old-girl-snatched-kibbutz-uncle-saying-not-returned-hell-fight-Gaza-myself.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:19:29.000Z" - }, - { - "title": "Ex-Man City star Joey Barton calls his brother Michael's racially-motivated murder of Anthony Walker 'a f***ing scrap' as he appears to play down how serious the 2005 ice-axe killing was", - "link": "https://www.dailymail.co.uk/sport/football/article-12809467/Joey-Barton-Michael-murder-Anthony-Walker-2005-ice-axe-scrap.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:19:05 GMT", - "enclosure": { - "length": "10319", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78419781-0-image-a-35_1701347295018.jpg" - }, - "content": "Michael Barton was released from prison in September 2022 having served 17 years of a life sentence for his part in killing the black 18-year-old in McGoldrick Park in Liverpool.", - "contentSnippet": "Michael Barton was released from prison in September 2022 having served 17 years of a life sentence for his part in killing the black 18-year-old in McGoldrick Park in Liverpool.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12809467/Joey-Barton-Michael-murder-Anthony-Walker-2005-ice-axe-scrap.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:19:05.000Z" - }, - { - "title": "I'm A Celeb star Jamie Lynn Spears breaks her silence after quitting the jungle show - as producers scramble to fix disastrous series", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810013/Jamie-Lynn-Spears-breaks-silence-quitting-Im-Celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:15:47 GMT", - "enclosure": { - "length": "10941", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425231-0-image-a-59_1701355083059.jpg" - }, - "content": "Jamie Lynn Spears has broken her silence after quitting I'm A Celebrity Get Me Out Of Here!", - "contentSnippet": "Jamie Lynn Spears has broken her silence after quitting I'm A Celebrity Get Me Out Of Here!", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810013/Jamie-Lynn-Spears-breaks-silence-quitting-Im-Celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:15:47.000Z" - }, - { - "title": "I lost all four of my limbs to a flesh-eating bug - and I'm loving life: Quadruple amputee father who scaled Ethiopia's highest mountain after losing his arms and legs in Strep A horror tells his incredible life story", - "link": "https://www.dailymail.co.uk/news/article-12809047/I-lost-four-limbs-flesh-eating-bug-Im-loving-life-Quadruple-amputee-father-scaled-Ethiopias-highest-mountain-losing-arms-legs-Strep-horror-tells-incredible-life-story.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:15:32 GMT", - "enclosure": { - "length": "6771", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78415897-0-image-m-33_1701348045307.jpg" - }, - "content": "EXCLUSIVE: Quadruple amputee Alex Lewis, 43, of Stockbridge, Hampshire, was a perfectly healthy man when he fell ill in 2013 - putting his symptoms down to 'man flu'.", - "contentSnippet": "EXCLUSIVE: Quadruple amputee Alex Lewis, 43, of Stockbridge, Hampshire, was a perfectly healthy man when he fell ill in 2013 - putting his symptoms down to 'man flu'.", - "guid": "https://www.dailymail.co.uk/news/article-12809047/I-lost-four-limbs-flesh-eating-bug-Im-loving-life-Quadruple-amputee-father-scaled-Ethiopias-highest-mountain-losing-arms-legs-Strep-horror-tells-incredible-life-story.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:15:32.000Z" - }, - { - "title": "Swedish girl, 15, and four teenage brothers are jailed after gang lured taxi driver, 26, into the woods and hanged him in revenge for raping her", - "link": "https://www.dailymail.co.uk/news/article-12810393/swedish-girl-15-jailed-brothers-killed-taxi-driver-hanged-sweden.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:13:33 GMT", - "enclosure": { - "length": "7237", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/76470789-0-The_taxi_driver_was_lured_to_a_carpark_near_the_Hj_lstavikens_na-a-49_1701360688329.jpg" - }, - "content": "The court in Uppsala, near Stockholm, found that the unnamed driver, 26, was led into a nature reserve in central Sweden in March with the promise of sexual favours.", - "contentSnippet": "The court in Uppsala, near Stockholm, found that the unnamed driver, 26, was led into a nature reserve in central Sweden in March with the promise of sexual favours.", - "guid": "https://www.dailymail.co.uk/news/article-12810393/swedish-girl-15-jailed-brothers-killed-taxi-driver-hanged-sweden.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:13:33.000Z" - }, - { - "title": "X CEO Linda Yaccarino doubles down on Elon Musk's 'go f**k yourselves' message to advertisers who have pulled their money over hate speech fears", - "link": "https://www.dailymail.co.uk/news/article-12809859/Twitter-CEO-Linda-Yaccarino-doubles-Elon-Musks-f-k-message-advertisers-pulled-money-hate-speech-fears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:10:49 GMT", - "enclosure": { - "length": "9269", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78424003-0-Elon_Musk_told_advertisers_to_go_f_k_themselves_at_the_DealBook_-a-4_1701352996122.jpg" - }, - "content": "Musk has been criticized for loosening Twitter's grip on what some perceive to be hate speech, and has even been accused of stoking antisemitism on the site by not cracking down on certain accounts.", - "contentSnippet": "Musk has been criticized for loosening Twitter's grip on what some perceive to be hate speech, and has even been accused of stoking antisemitism on the site by not cracking down on certain accounts.", - "guid": "https://www.dailymail.co.uk/news/article-12809859/Twitter-CEO-Linda-Yaccarino-doubles-Elon-Musks-f-k-message-advertisers-pulled-money-hate-speech-fears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:10:49.000Z" - }, - { - "title": "Northern Lights to shine across parts of the UK TONIGHT as a huge solar storm strikes Earth: Is your area going to be illuminated as Aurora Borealis lights up the night sky?", - "link": "https://www.dailymail.co.uk/sciencetech/article-12809409/Northern-Lights-shine-parts-UK-TONIGHT-huge-solar-storm-strikes-Earth-area-going-illuminated-Aurora-Borealis-lights-night-sky.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:06:07 GMT", - "enclosure": { - "length": "7714", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78419831-0-image-a-41_1701347641074.jpg" - }, - "content": "Even if you're not living in a northerly region of the country you may be in with a chance of capturing the aurora, experts say.", - "contentSnippet": "Even if you're not living in a northerly region of the country you may be in with a chance of capturing the aurora, experts say.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12809409/Northern-Lights-shine-parts-UK-TONIGHT-huge-solar-storm-strikes-Earth-area-going-illuminated-Aurora-Borealis-lights-night-sky.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:06:07.000Z" - }, - { - "title": "How Henry Kissinger escaped Nazi Germany in 1938 only to return as a US Army Sergeant seven years later and liberate the Ahlem concentration camp in what he described as one of the 'most horrifying experiences of my life'", - "link": "https://www.dailymail.co.uk/news/article-12808887/How-Henry-Kissinger-dead-100-escaped-Nazi-Germany-return-liberate-Ahlem-concentration-camp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:04:47 GMT", - "enclosure": { - "length": "6631", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78413225-0-image-m-13_1701338745154.jpg" - }, - "content": "In his early life, Kissinger would be persecuted by Nazis for being Jewish, flee Germany with his family, join the US army and return to help liberate a concentration camp.", - "contentSnippet": "In his early life, Kissinger would be persecuted by Nazis for being Jewish, flee Germany with his family, join the US army and return to help liberate a concentration camp.", - "guid": "https://www.dailymail.co.uk/news/article-12808887/How-Henry-Kissinger-dead-100-escaped-Nazi-Germany-return-liberate-Ahlem-concentration-camp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:04:47.000Z" - }, - { - "title": "How to get kids to eat more veg? Serve it with smiley faces! Children eat 52% more vegetables if they're in the same bowl as fun potato shapes, study finds", - "link": "https://www.dailymail.co.uk/sciencetech/article-12809387/How-kids-eat-veg-Serve-smiley-faces-Children-eat-52-vegetables-theyre-bowl-fun-potato-shapes-study-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:03:47 GMT", - "enclosure": { - "length": "7394", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78418469-0-image-a-30_1701346035568.jpg" - }, - "content": "Researchers from Brigham Young University found that children ate up to 52 per cent more peas and carrots when they was served with potato smiles.", - "contentSnippet": "Researchers from Brigham Young University found that children ate up to 52 per cent more peas and carrots when they was served with potato smiles.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12809387/How-kids-eat-veg-Serve-smiley-faces-Children-eat-52-vegetables-theyre-bowl-fun-potato-shapes-study-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:03:47.000Z" - }, - { - "title": "Britain's last opencast coal mine closes as row begins with operator over site clean-up bill that could hit \u00a3175million", - "link": "https://www.dailymail.co.uk/news/article-12810533/Britains-opencast-coal-closes-row-begins-operator-site-clean-bill-hit-175million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 17:00:25 GMT", - "enclosure": { - "length": "7937", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78432717-0-image-a-17_1701363549906.jpg" - }, - "content": "The giant Ffos-y-Fran mine, near Merthyr Tydfil, South Wales, is the size of 400 football pitches and about 656ft (200m) deep.", - "contentSnippet": "The giant Ffos-y-Fran mine, near Merthyr Tydfil, South Wales, is the size of 400 football pitches and about 656ft (200m) deep.", - "guid": "https://www.dailymail.co.uk/news/article-12810533/Britains-opencast-coal-closes-row-begins-operator-site-clean-bill-hit-175million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T17:00:25.000Z" - }, - { - "title": "The REAL reason why Ant McPartlin and Dec Donnelly keep their watches covered on I'm A Celebrity", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810399/Ant-McPartlin-Dec-Donnelly-watches-covered-Im-Celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:58:40 GMT", - "enclosure": { - "length": "10484", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430661-0-image-a-21_1701360699461.jpg" - }, - "content": "There's one subject that's been boggling the mind's of the show's viewers.", - "contentSnippet": "There's one subject that's been boggling the mind's of the show's viewers.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810399/Ant-McPartlin-Dec-Donnelly-watches-covered-Im-Celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:58:40.000Z" - }, - { - "title": "Woman, 70, 'gives birth to twins after IVF treatment': Ugandan becomes the oldest person to give birth in Africa, hospital says", - "link": "https://www.dailymail.co.uk/news/article-12809271/Woman-70-gives-birth-twins-IVF-treatment-Ugandan-oldest-person-birth-Africa-hospital-says.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:57:54 GMT", - "enclosure": { - "length": "7335", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78416301-0-image-a-5_1701344030743.jpg" - }, - "content": "Safina Namukwaya became\u00a0the oldest woman to give birth in Africa after she delivered a baby girl and boy on Wednesday afternoon, the Women's Hospital International and Fertility Centre said.", - "contentSnippet": "Safina Namukwaya became\u00a0the oldest woman to give birth in Africa after she delivered a baby girl and boy on Wednesday afternoon, the Women's Hospital International and Fertility Centre said.", - "guid": "https://www.dailymail.co.uk/news/article-12809271/Woman-70-gives-birth-twins-IVF-treatment-Ugandan-oldest-person-birth-Africa-hospital-says.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:57:54.000Z" - }, - { - "title": "The Pogues' Spider Stacy and Imelda May lead the celebrity tributes to Shane MacGowan as the Fairytale of New York singer passes away aged 65 after long health battle", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12809555/Stars-pay-tribute-Shane-MacGowan-Pogues-star-passes-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:55:26 GMT", - "enclosure": { - "length": "8861", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421531-0-image-a-180_1701349386324.jpg" - }, - "content": "Tributes have been pouring in for Shane MacGowan after his death aged 65 on Thursday.\u00a0", - "contentSnippet": "Tributes have been pouring in for Shane MacGowan after his death aged 65 on Thursday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12809555/Stars-pay-tribute-Shane-MacGowan-Pogues-star-passes-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:55:26.000Z" - }, - { - "title": "Scotland's First Minister Humza Yousaf thanks King Charles for his 'prayers and words of comfort' at Cop28 climate summit - after SNP leader's parents-in-law were trapped in Gaza amid Israeli bombardment", - "link": "https://www.dailymail.co.uk/news/article-12809511/Charles-climate-king-Monarch-given-biodiversity-gifts-Amazonian-tribe-Dubai-hotel-hes-joined-Foreign-Secretary-Lord-Cameron-Cop28-summit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:54:56 GMT", - "enclosure": { - "length": "8706", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431991-0-Scottish_First_Minister_Humza_Yousaf_meetings_Kings_Charles_toda-a-11_1701362943009.jpg" - }, - "content": "Leaning towards the King and quietening his voice, Mr Yousaf said he 'very grateful' for messages the monarch had sent him during the family crisis.", - "contentSnippet": "Leaning towards the King and quietening his voice, Mr Yousaf said he 'very grateful' for messages the monarch had sent him during the family crisis.", - "guid": "https://www.dailymail.co.uk/news/article-12809511/Charles-climate-king-Monarch-given-biodiversity-gifts-Amazonian-tribe-Dubai-hotel-hes-joined-Foreign-Secretary-Lord-Cameron-Cop28-summit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:54:56.000Z" - }, - { - "title": "EXCLUSIVE: I'm A Celeb star Grace Dent has snubbed all TV appearances and interviews to jet off on holiday in a bid to put her jungle 'hell' behind her", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12808829/Im-Celeb-Grace-Dent-snubbed-TV-appearances-jet-holiday-jungle-hell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:51:58 GMT", - "enclosure": { - "length": "10178", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/09/78412615-0-image-a-18_1701336821186.jpg" - }, - "content": "I'm A Celeb star Grade Dent has snubbed all TV appearances and interviews to jet off on holiday in a bid to put her jungle 'hell' behind her.", - "contentSnippet": "I'm A Celeb star Grade Dent has snubbed all TV appearances and interviews to jet off on holiday in a bid to put her jungle 'hell' behind her.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12808829/Im-Celeb-Grace-Dent-snubbed-TV-appearances-jet-holiday-jungle-hell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:51:58.000Z" - }, - { - "title": "Panda-monium! Visitors flock to Edinburgh Zoo for their final chance to say farewell to the UK's only giant pandas before they return to China", - "link": "https://www.dailymail.co.uk/news/article-12809977/giant-pandas-Edinburgh-Zoo-farewell-UK-return-China.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:48:22 GMT", - "enclosure": { - "length": "5711", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78424515-0-image-m-66_1701357392190.jpg" - }, - "content": "Yang Guang and Tian Tian,\u00a0also known as Sunshine and Sweetie, will no longer be on public view at Edinburgh Zoo from around 3.30pm today as they prepare for their journey next week.", - "contentSnippet": "Yang Guang and Tian Tian,\u00a0also known as Sunshine and Sweetie, will no longer be on public view at Edinburgh Zoo from around 3.30pm today as they prepare for their journey next week.", - "guid": "https://www.dailymail.co.uk/news/article-12809977/giant-pandas-Edinburgh-Zoo-farewell-UK-return-China.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:48:22.000Z" - }, - { - "title": "Omid Scobie says names of two 'royal racists' in Endgame's Dutch translation have been 'known for a long time' and insists he 'never submitted book with them in it'", - "link": "https://www.dailymail.co.uk/news/article-12810133/omid-scobie-royal-racists-known.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:46:12 GMT", - "enclosure": { - "length": "10236", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78414721-0-image-a-17_1701340758285.jpg" - }, - "content": "The Sussexes' favoured royal reporter has been accused of 'virtually confirming' the names in his first British TV appearance on ITV's This Morning today.", - "contentSnippet": "The Sussexes' favoured royal reporter has been accused of 'virtually confirming' the names in his first British TV appearance on ITV's This Morning today.", - "guid": "https://www.dailymail.co.uk/news/article-12810133/omid-scobie-royal-racists-known.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:46:12.000Z" - }, - { - "title": "Chris Pine's acne kept him from landing the lead role, Mischa Barton was overwhelmed and female orgasms were banned. The secrets of The O.C. are laid bare in new book on iconic show's 20th anniversary", - "link": "https://www.dailymail.co.uk/news/article-12806641/OC-producers-rejected-Chris-Pine-role-acne-killing-Mischa-Barton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:43:52 GMT", - "enclosure": { - "length": "10584", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425311-0-image-a-21_1701355270504.jpg" - }, - "content": "New book Welcome To The O.C.: The Oral History gives insight into the rise, fall and behind the scenes drama of the iconic show on its 20th anniversary.", - "contentSnippet": "New book Welcome To The O.C.: The Oral History gives insight into the rise, fall and behind the scenes drama of the iconic show on its 20th anniversary.", - "guid": "https://www.dailymail.co.uk/news/article-12806641/OC-producers-rejected-Chris-Pine-role-acne-killing-Mischa-Barton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:43:52.000Z" - }, - { - "title": "'Did he buy the street?' Tom Cruise finds it is a mission impossible to calm irate cab drivers as he holds up traffic to pose for selfies with fans after dining with Beyonce and Jay Z in Mayfair", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810087/tom-cruise-mission-impossible-beyonce-jay-z-mayfair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:39:47 GMT", - "enclosure": { - "length": "9591", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431039-0-image-a-78_1701361215700.jpg" - }, - "content": "Tom Cruise was spotted leaving the exclusive Oswald's Private Members Club in Mayfair yesterday evening, where he had just been dining with Beyonce , Jay Z and Henry Cavill.", - "contentSnippet": "Tom Cruise was spotted leaving the exclusive Oswald's Private Members Club in Mayfair yesterday evening, where he had just been dining with Beyonce , Jay Z and Henry Cavill.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810087/tom-cruise-mission-impossible-beyonce-jay-z-mayfair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:39:47.000Z" - }, - { - "title": "JANET STREET-PORTER: Is it REALLY racist to wonder what colour a child might be? After Scobie's ludicrous claims, now Beyonce has fallen victim to the hate mob - but why can't we judge people by their talent, not their skin?", - "link": "https://www.dailymail.co.uk/debate/article-12810107/JANET-STREET-PORTER-REALLY-racist-wonder-colour-child-Scobies-ludicrous-claims-Beyonce-fallen-victim-hate-mob-judge-people-talent-not-skin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:32:39 GMT", - "enclosure": { - "length": "10868", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78428103-0-image-a-8_1701358767721.jpg" - }, - "content": "JANET STREET-PORTER: For Beyonce, nothing is left to chance, she is a marketing genius, an icon and inspiration to girls of all colours and backgrounds.", - "contentSnippet": "JANET STREET-PORTER: For Beyonce, nothing is left to chance, she is a marketing genius, an icon and inspiration to girls of all colours and backgrounds.", - "guid": "https://www.dailymail.co.uk/debate/article-12810107/JANET-STREET-PORTER-REALLY-racist-wonder-colour-child-Scobies-ludicrous-claims-Beyonce-fallen-victim-hate-mob-judge-people-talent-not-skin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:32:39.000Z" - }, - { - "title": "More than 500 children are evacuated from \u00a317,000-a-year private prep school after bomb scare", - "link": "https://www.dailymail.co.uk/news/article-12810415/children-evacuated-private-school-bomb-scare.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:31:37 GMT", - "enclosure": { - "length": "7096", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78429945-0-image-a-152_1701360271093.jpg" - }, - "content": "Talbot Heath Preparatory School, in Bournemouth, Dorset, which costs up to \u00a317,301 a term, called the police at 9.36am after receiving a 'security threat'.", - "contentSnippet": "Talbot Heath Preparatory School, in Bournemouth, Dorset, which costs up to \u00a317,301 a term, called the police at 9.36am after receiving a 'security threat'.", - "guid": "https://www.dailymail.co.uk/news/article-12810415/children-evacuated-private-school-bomb-scare.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:31:37.000Z" - }, - { - "title": "EXCLUSIVE Son of retired Met Police officers who avoided jail despite killing two men in drug drive smash clocks up at least 27 offences - as he admits driving while disqualified", - "link": "https://www.dailymail.co.uk/news/article-12810527/son-retired-met-police-officers-gets-offence.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:30:42 GMT", - "enclosure": { - "length": "7066", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431385-0-image-m-92_1701361694287.jpg" - }, - "content": "Max Coopey, now aged 22, appeared before magistrates in Slough today where he admitted driving a blue Fiat 500 - said to belong to his ex Met officer mother.", - "contentSnippet": "Max Coopey, now aged 22, appeared before magistrates in Slough today where he admitted driving a blue Fiat 500 - said to belong to his ex Met officer mother.", - "guid": "https://www.dailymail.co.uk/news/article-12810527/son-retired-met-police-officers-gets-offence.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:30:42.000Z" - }, - { - "title": "The man who epitomised punk rock: The Pogues' frontman Shane MacGowan was a belligerent former drug addict with a love of cursing and raising hell...but that didn't stop him becoming the unlikely patron saint of Christmas", - "link": "https://www.dailymail.co.uk/news/article-12809569/The-man-epitomised-punk-rock-Pogues-frontman-Shane-MacGowan-belligerent-former-drug-addict-love-cursing-raising-hell-didnt-stop-unlikely-patron-saint-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:29:39 GMT", - "enclosure": { - "length": "10502", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78419925-0-image-a-25_1701348105746.jpg" - }, - "content": "With his double act with the tragic Kirsty MacColl on 1987 festive hit Fairytale of New York, MacGowan cemented himself into the hearts of millions", - "contentSnippet": "With his double act with the tragic Kirsty MacColl on 1987 festive hit Fairytale of New York, MacGowan cemented himself into the hearts of millions", - "guid": "https://www.dailymail.co.uk/news/article-12809569/The-man-epitomised-punk-rock-Pogues-frontman-Shane-MacGowan-belligerent-former-drug-addict-love-cursing-raising-hell-didnt-stop-unlikely-patron-saint-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:29:39.000Z" - }, - { - "title": "Nurse trolled after claiming wooden chopping boards contain 200 times MORE fecal matter than a toilet seat - as she suggests cleaning the utensil with lemon, vinegar and salt", - "link": "https://www.dailymail.co.uk/femail/article-12809867/Nurse-wooden-chopping-board-bacteria-clean.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:24:49 GMT", - "enclosure": { - "length": "9400", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78423649-0-image-a-39_1701353763542.jpg" - }, - "content": "Aesthetic nurse practitioner Miranda, who claimed the average cutting board has 200 times more fecal bacteria than a toilet seat, posted a TikTok with an easy way to clean the wooden board.", - "contentSnippet": "Aesthetic nurse practitioner Miranda, who claimed the average cutting board has 200 times more fecal bacteria than a toilet seat, posted a TikTok with an easy way to clean the wooden board.", - "guid": "https://www.dailymail.co.uk/femail/article-12809867/Nurse-wooden-chopping-board-bacteria-clean.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:24:49.000Z" - }, - { - "title": "Duchess of Edinburgh escapes Omid Scobie race row back home as she visits women's organisations on official visit to Colombia", - "link": "https://www.dailymail.co.uk/femail/article-12809693/The-Duchess-Edinburgh-looks-laid-floral-blouse-jeans-visits-womens-organisations-Colombia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:21:09 GMT", - "enclosure": { - "length": "12702", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78424527-0-image-a-46_1701353915031.jpg" - }, - "content": "The Duchess of Edinburgh looked laid back as she visited organisations in Cali. Duchess Sophie, 58, has been visiting Colombia this week to support the Women, Peace and Security Agenda", - "contentSnippet": "The Duchess of Edinburgh looked laid back as she visited organisations in Cali. Duchess Sophie, 58, has been visiting Colombia this week to support the Women, Peace and Security Agenda", - "guid": "https://www.dailymail.co.uk/femail/article-12809693/The-Duchess-Edinburgh-looks-laid-floral-blouse-jeans-visits-womens-organisations-Colombia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:21:09.000Z" - }, - { - "title": "Brianna Ghey's final journey: Jury shown footage of the moment tragic schoolgirl catches a bus to the park moments before she was stabbed to death", - "link": "https://www.dailymail.co.uk/news/article-12810247/brianna-ghey-footage-captures-moment-catches-bus-stabbed-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:20:38 GMT", - "enclosure": { - "length": "6275", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426625-0-image-m-12_1701357436913.jpg" - }, - "content": "Brianna left her house on the afternoon of February 11 and boarded a bus to a park in\u00a0Culcheth, near Warrington, Cheshire, where she was stabbed 28 times.", - "contentSnippet": "Brianna left her house on the afternoon of February 11 and boarded a bus to a park in\u00a0Culcheth, near Warrington, Cheshire, where she was stabbed 28 times.", - "guid": "https://www.dailymail.co.uk/news/article-12810247/brianna-ghey-footage-captures-moment-catches-bus-stabbed-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:20:38.000Z" - }, - { - "title": "Stunning flat up for grabs WITHIN medieval city wall - as tenants can rent rooms with exposed ancient brickwork and timber for just over \u00a3750 a month", - "link": "https://www.dailymail.co.uk/property/article-12810083/Stunning-flat-medieval-city-wall-tenants-rent-rooms-750-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:17:44 GMT", - "enclosure": { - "length": "8034", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78425587-0-image-m-35_1701356446763.jpg" - }, - "content": "The quirky pad, located in Coventry, is fitted with modern furnishings and a small window that looks out onto the city centre.", - "contentSnippet": "The quirky pad, located in Coventry, is fitted with modern furnishings and a small window that looks out onto the city centre.", - "guid": "https://www.dailymail.co.uk/property/article-12810083/Stunning-flat-medieval-city-wall-tenants-rent-rooms-750-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:17:44.000Z" - }, - { - "title": "'I was treated like a celebrity!' Passenger pictured taking his first ever flight - on a Jet2 plane at the age of NINETY", - "link": "https://www.dailymail.co.uk/travel/article-12805159/I-treated-like-celebrity-Passenger-pictured-taking-flight-Jet2-plane-age-NINETY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 16:00:41 GMT", - "enclosure": { - "length": "6409", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/29/16/78373985-0-image-m-40_1701274304431.jpg" - }, - "content": "Malcolm Shedlow made a memory to treasure forever when he took his first flight at age 90. The great-grandfather from Leeds said he was 'treated like a celebrity and fast-tracked through the airport'.", - "contentSnippet": "Malcolm Shedlow made a memory to treasure forever when he took his first flight at age 90. The great-grandfather from Leeds said he was 'treated like a celebrity and fast-tracked through the airport'.", - "guid": "https://www.dailymail.co.uk/travel/article-12805159/I-treated-like-celebrity-Passenger-pictured-taking-flight-Jet2-plane-age-NINETY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T16:00:41.000Z" - }, - { - "title": "Moment Met Police officer storms into house and Tasers girl, 10, as she tries to run upstairs with garden shears - as disciplinary panel clears him of misconduct", - "link": "https://www.dailymail.co.uk/news/article-12809427/Met-Police-officer-tasered-girl-threatening-mother-garden-shears-hammer-cleared-misconduct.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:59:44 GMT", - "enclosure": { - "length": "5368", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78427309-0-image-a-20_1701357950100.jpg" - }, - "content": "PC Jonathan Broadhead (pictured) did not breach police standards of professional behaviour relating to the use of force against the girl, a hearing ruled.", - "contentSnippet": "PC Jonathan Broadhead (pictured) did not breach police standards of professional behaviour relating to the use of force against the girl, a hearing ruled.", - "guid": "https://www.dailymail.co.uk/news/article-12809427/Met-Police-officer-tasered-girl-threatening-mother-garden-shears-hammer-cleared-misconduct.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:59:44.000Z" - }, - { - "title": "A 'Poundland' Christmas tree that the council put up by mistake and 'shocking' festive lights that are 'an absolute joke' - are these Britain's worst Yuletide decorations this year?", - "link": "https://www.dailymail.co.uk/news/article-12809039/Shocking-Christmas-lights-tree-Britains-worst-Yuletide-decorations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:58:07 GMT", - "enclosure": { - "length": "9741", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78415211-0-image-m-8_1701344017383.jpg" - }, - "content": "Britons are marking the beginning of the festive season by showing off the worst Yuletide decorations their local councils can muster...", - "contentSnippet": "Britons are marking the beginning of the festive season by showing off the worst Yuletide decorations their local councils can muster...", - "guid": "https://www.dailymail.co.uk/news/article-12809039/Shocking-Christmas-lights-tree-Britains-worst-Yuletide-decorations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:58:07.000Z" - }, - { - "title": "Mother, 38, has to have floors removed after work to unblock drain backfired and left her caravan and her children's school uniform covered in human waste", - "link": "https://www.dailymail.co.uk/news/article-12809703/mother-floors-removed-caravan-covered-human-waste.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:55:05 GMT", - "enclosure": { - "length": "9096", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426217-0-image-m-68_1701358699277.jpg" - }, - "content": "Tammy Samuel, 38, says she had 'everyone's poo and urine' flow into her home after she reported blockages near her home on a traveller site in Sittingbourne, Kent.", - "contentSnippet": "Tammy Samuel, 38, says she had 'everyone's poo and urine' flow into her home after she reported blockages near her home on a traveller site in Sittingbourne, Kent.", - "guid": "https://www.dailymail.co.uk/news/article-12809703/mother-floors-removed-caravan-covered-human-waste.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:55:05.000Z" - }, - { - "title": "Pictured: Women being hunted by police after pickpocket gang stole \u00a31,000 cash from bus passenger, 86, who had just withdrawn it from the bank to buy Christmas presents", - "link": "https://www.dailymail.co.uk/news/article-12809841/woman-hunted-police-gang-stole-cash-pictured.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:53:16 GMT", - "enclosure": { - "length": "10477", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78423971-0-image-a-115_1701352957716.jpg" - }, - "content": "An 85-year-old woman 'screamed out loud' when she realised a large amount of cash had been stolen while she travelled on the bus in Warrington.", - "contentSnippet": "An 85-year-old woman 'screamed out loud' when she realised a large amount of cash had been stolen while she travelled on the bus in Warrington.", - "guid": "https://www.dailymail.co.uk/news/article-12809841/woman-hunted-police-gang-stole-cash-pictured.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:53:16.000Z" - }, - { - "title": "The Apprentice star, 40, who painted her baby and toddler shop gold is locked in planning permission row after council in historic market town told her 'yellow is not an acceptable colour in the conservation area'", - "link": "https://www.dailymail.co.uk/news/article-12809269/marianne-rawlins-planning-permission-row-historic-council.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:50:26 GMT", - "enclosure": { - "length": "11372", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78418669-0-image-m-29_1701346441597.jpg" - }, - "content": "Marianne Rawlins, who made it to the final weeks of Lord Sugar's infamously antagonistic reality series, opened her store Stork of Stamford, in Stamford, Lincolnshire in September.", - "contentSnippet": "Marianne Rawlins, who made it to the final weeks of Lord Sugar's infamously antagonistic reality series, opened her store Stork of Stamford, in Stamford, Lincolnshire in September.", - "guid": "https://www.dailymail.co.uk/news/article-12809269/marianne-rawlins-planning-permission-row-historic-council.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:50:26.000Z" - }, - { - "title": "The 10 most bizarre Elf on the Shelf ideas to see you through Christmas - but be warned these suggestions could wreak havoc in your household this festive season", - "link": "https://www.dailymail.co.uk/femail/article-12779233/The-10-bizarre-Elf-Shelf-ideas-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:48:36 GMT", - "enclosure": { - "length": "12013", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/22/16/78117501-0-image-a-44_1700669001734.jpg" - }, - "content": "Elf on the Shelf, is based on a 2005 children's picture book of the same name, written by American authors Carol V. Aebersold and Bell Chanda - but the trend has spread across the globe.", - "contentSnippet": "Elf on the Shelf, is based on a 2005 children's picture book of the same name, written by American authors Carol V. Aebersold and Bell Chanda - but the trend has spread across the globe.", - "guid": "https://www.dailymail.co.uk/femail/article-12779233/The-10-bizarre-Elf-Shelf-ideas-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:48:36.000Z" - }, - { - "title": "Peruvian wolf spider laid EGGS in my toe on my wedding anniversary cruise: Brit reveals pus oozed from his purple foot in French hospital... before one spider tried to EAT its way out", - "link": "https://www.dailymail.co.uk/news/article-12809207/Peruvian-wolf-spider-lay-EGGS-toe-wedding-anniversary-cruise-Brit-reveals-pus-oozed-purple-foot-French-hospital-one-spider-tried-EAT-way-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:44:23 GMT", - "enclosure": { - "length": "4523", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78415823-0-image-m-44_1701343176682.jpg" - }, - "content": "WARNING - GRAPHIC CONTENT: Colin Blake was bitten while he and his wife were having a meal on a cruise in Marseille in France. Terrified by his toe turning purple, he rushed to the ship's doctor.", - "contentSnippet": "WARNING - GRAPHIC CONTENT: Colin Blake was bitten while he and his wife were having a meal on a cruise in Marseille in France. Terrified by his toe turning purple, he rushed to the ship's doctor.", - "guid": "https://www.dailymail.co.uk/news/article-12809207/Peruvian-wolf-spider-lay-EGGS-toe-wedding-anniversary-cruise-Brit-reveals-pus-oozed-purple-foot-French-hospital-one-spider-tried-EAT-way-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:44:23.000Z" - }, - { - "title": "Matt Hancock tells Covid Inquiry his 'single greatest regret' was to not overrule scientists who said virus couldn't be spread by those without symptoms... and says he should have followed his 'hunch'", - "link": "https://www.dailymail.co.uk/health/article-12809673/Matt-Hancock-claims-not-overruling-science-stated-Covid-spread-asymptomatically-single-greatest-regret-says-followed-hunch-despite-emails-showing-told-March-2020-possible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:39:19 GMT", - "enclosure": { - "length": "3454", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78420607-0-image-m-17_1701349801509.jpg" - }, - "content": "The former health secretary claimed the UK's scientific advisers told him there was no 'concrete evidence' the virus could spread between people with no symptoms.", - "contentSnippet": "The former health secretary claimed the UK's scientific advisers told him there was no 'concrete evidence' the virus could spread between people with no symptoms.", - "guid": "https://www.dailymail.co.uk/health/article-12809673/Matt-Hancock-claims-not-overruling-science-stated-Covid-spread-asymptomatically-single-greatest-regret-says-followed-hunch-despite-emails-showing-told-March-2020-possible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:39:19.000Z" - }, - { - "title": "Sex offender is jailed for five years for attacking three women in half an hour before he was caught by gang of bike riding boys who followed and detained him", - "link": "https://www.dailymail.co.uk/news/article-12810171/sex-offender-jailed-attacking-women-caught-detained.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:31:41 GMT", - "enclosure": { - "length": "3999", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78425497-0-image-a-10_1701357964348.jpg" - }, - "content": "Dylan Makepeace had pleaded guilty at Snaresbrook Crown Court to two counts of assault by beating, sexual assault on a female, intentional strangulation, and Section 20 grievous bodily harm.", - "contentSnippet": "Dylan Makepeace had pleaded guilty at Snaresbrook Crown Court to two counts of assault by beating, sexual assault on a female, intentional strangulation, and Section 20 grievous bodily harm.", - "guid": "https://www.dailymail.co.uk/news/article-12810171/sex-offender-jailed-attacking-women-caught-detained.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:31:41.000Z" - }, - { - "title": "Fresh blow for family of Kfir Bibas as Hamas offer to exchange three hostages' bodies a day after claiming the baby, his brother and mother were killed in Israeli bombardment", - "link": "https://www.dailymail.co.uk/news/article-12809913/Fresh-blow-family-Kfir-Bibas-Hamas-offer-exchange-three-hostages-bodies-day-claiming-baby-brother-mother-killed-Israeli-bombardment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:22:23 GMT", - "enclosure": { - "length": "8820", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78303181-0-Hamas_has_claimed_Kfir_Bibas_a_baby_who_was_snatched_and_taken_i-a-39_1701351811257.jpg" - }, - "content": "The family of the Kfir Bibas, a baby who was snatched and taken into Gaza by Hamas, were met with yet more anguish today after Hamas offered to hand over the bodies of three hostages to Israel.", - "contentSnippet": "The family of the Kfir Bibas, a baby who was snatched and taken into Gaza by Hamas, were met with yet more anguish today after Hamas offered to hand over the bodies of three hostages to Israel.", - "guid": "https://www.dailymail.co.uk/news/article-12809913/Fresh-blow-family-Kfir-Bibas-Hamas-offer-exchange-three-hostages-bodies-day-claiming-baby-brother-mother-killed-Israeli-bombardment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:22:23.000Z" - }, - { - "title": "Dean Sullivan's Brookside co-star Sue Jenkins reveals she was with him on the day he died as she shares a moving tribute: 'It's hard to find words to express my sadness'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12809853/Dean-Sullivans-Brookside-Sue-Jenkins-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:22:07 GMT", - "enclosure": { - "length": "10635", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78423623-0-image-a-92_1701352499085.jpg" - }, - "content": "The actress starred as\u00a0drug dealer Jimmy's long-suffering wife Jackie Corkhill on the soap, and sharing a moving tribute to the actor.", - "contentSnippet": "The actress starred as\u00a0drug dealer Jimmy's long-suffering wife Jackie Corkhill on the soap, and sharing a moving tribute to the actor.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12809853/Dean-Sullivans-Brookside-Sue-Jenkins-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:22:07.000Z" - }, - { - "title": "Mother and elderly ex-serviceman who backed move to place asylum seekers in a Sussex hotel say their car windows were smashed because of their support for refugees", - "link": "https://www.dailymail.co.uk/news/article-12809121/mother-servicemen-asylum-seeker-car-window-smashed-refugee-support.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:15:55 GMT", - "enclosure": { - "length": "9893", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78416633-0-image-m-20_1701348952719.jpg" - }, - "content": "The car attacks appear to have been carried out on Saturday night and Sunday night, with three windows of one car smashed (pictured), while the rear window of another was also destroyed.", - "contentSnippet": "The car attacks appear to have been carried out on Saturday night and Sunday night, with three windows of one car smashed (pictured), while the rear window of another was also destroyed.", - "guid": "https://www.dailymail.co.uk/news/article-12809121/mother-servicemen-asylum-seeker-car-window-smashed-refugee-support.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:15:55.000Z" - }, - { - "title": "Jennifer Lopez, 54, goes naked under a semi-sheer lace red dress to lead A-listers on ELLE's Women In Hollywood cover shoot as she says: 'Women just get sexier as they get older'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810039/Jennifer-Lopez-54-goes-naked-semi-sheer-lace-red-dress-lead-listers-ELLEs-Women-Hollywood-cover-shoot-says-Women-just-sexier-older.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:11:16 GMT", - "enclosure": { - "length": "9984", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425009-0-image-m-26_1701354698653.jpg" - }, - "content": "Jennifer Lopez has graced the cover of ELLE's\u00a0Women In Hollywood issue and looks stunning in a series of images in which she models some incredibly powerful looks.\u00a0", - "contentSnippet": "Jennifer Lopez has graced the cover of ELLE's\u00a0Women In Hollywood issue and looks stunning in a series of images in which she models some incredibly powerful looks.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810039/Jennifer-Lopez-54-goes-naked-semi-sheer-lace-red-dress-lead-listers-ELLEs-Women-Hollywood-cover-shoot-says-Women-just-sexier-older.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:11:16.000Z" - }, - { - "title": "Traditional annual Jewish holiday candles lit every year by London council to mark Hanukkah have been cancelled amid fears divisions over the Israel and Palestine conflict would mean they would 'inflame tensions'", - "link": "https://www.dailymail.co.uk/news/article-12809975/Traditional-annual-Jewish-holiday-candles-lit-year-London-council-mark-Hanukkah-cancelled-amid-fears-divisions-Israel-Palestine-conflict-mean-inflame-tensions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:01:56 GMT", - "enclosure": { - "length": "6215", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78424713-0-image-m-13_1701354597478.jpg" - }, - "content": "Havering Council said they took the 'difficult decision' to cancel the traditional menorah instillation outside Havering Town Hall in Romford.", - "contentSnippet": "Havering Council said they took the 'difficult decision' to cancel the traditional menorah instillation outside Havering Town Hall in Romford.", - "guid": "https://www.dailymail.co.uk/news/article-12809975/Traditional-annual-Jewish-holiday-candles-lit-year-London-council-mark-Hanukkah-cancelled-amid-fears-divisions-Israel-Palestine-conflict-mean-inflame-tensions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:01:56.000Z" - }, - { - "title": "Royal family unveil lavish Christmas decorations at Windsor Castle amid Omid Scobie race row", - "link": "https://www.dailymail.co.uk/femail/article-12809775/Royal-Christmas-decorations-Windsor-Castle-Omid-Scobie.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:00:59 GMT", - "enclosure": { - "length": "8474", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421465-0-image-a-81_1701349275893.jpg" - }, - "content": "The Berkshire royal residence, where the Prince and Princess of Wales live with their children George, Charlotte and Louis in Adelaide Cottage, has been transformed.", - "contentSnippet": "The Berkshire royal residence, where the Prince and Princess of Wales live with their children George, Charlotte and Louis in Adelaide Cottage, has been transformed.", - "guid": "https://www.dailymail.co.uk/femail/article-12809775/Royal-Christmas-decorations-Windsor-Castle-Omid-Scobie.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:00:59.000Z" - }, - { - "title": "Ursula von der Leyen 'needs to shut up' about Brexit says Tory deputy chairman Lee Anderson after she urged the younger generation to make Britain rejoin the EU", - "link": "https://www.dailymail.co.uk/news/article-12809191/Ursula-von-der-Leyen-needs-shut-Brexit-says-Tory-deputy-chairman-Lee-Anderson-urged-younger-generation-make-Britain-rejoin-EU.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 15:00:05 GMT", - "enclosure": { - "length": "6483", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78414251-0-image-a-10_1701342671436.jpg" - }, - "content": "The president of the European Commission suggested Britain should look to rejoin the bloc, admitting 'we goofed it up' during\u00a0an interview in Brussels on Tuesday.", - "contentSnippet": "The president of the European Commission suggested Britain should look to rejoin the bloc, admitting 'we goofed it up' during\u00a0an interview in Brussels on Tuesday.", - "guid": "https://www.dailymail.co.uk/news/article-12809191/Ursula-von-der-Leyen-needs-shut-Brexit-says-Tory-deputy-chairman-Lee-Anderson-urged-younger-generation-make-Britain-rejoin-EU.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T15:00:05.000Z" - }, - { - "title": "Harrowing 999 call of dogwalker who found Brianna Ghey's body in park is played to murder trial jury as she tells operator, 'I can describe attackers clearly because I was really suspicious of them'", - "link": "https://www.dailymail.co.uk/news/article-12809525/dogwalker-Brianna-Gheys-body-jury-attackers-suspicious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:58:51 GMT", - "enclosure": { - "length": "10457", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78287683-0-image-m-67_1701347077909.jpg" - }, - "content": "Dogwalker Kathryn Vize was walking in a park in Culcheth, near Warrington, Cheshire when she saw two teenagers stooping over what she soon discovered was Brianna Ghey's body.", - "contentSnippet": "Dogwalker Kathryn Vize was walking in a park in Culcheth, near Warrington, Cheshire when she saw two teenagers stooping over what she soon discovered was Brianna Ghey's body.", - "guid": "https://www.dailymail.co.uk/news/article-12809525/dogwalker-Brianna-Gheys-body-jury-attackers-suspicious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:58:51.000Z" - }, - { - "title": "Kate Middleton and Prince William are all smiles as they welcome the future Queen and King of Sweden to\u00a0Windsor Castle ahead of their\u00a0 night out at the Royal Variety performance amid Omid Scobie race row", - "link": "https://www.dailymail.co.uk/femail/article-12809437/Kate-Middleton-Prince-William-Princess-Victoria-Windsor-Omid-Scobie-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:57:51 GMT", - "enclosure": { - "length": "7433", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78416627-0-image-m-60_1701347156752.jpg" - }, - "content": "The Prince and Princess of Wales welcomed the future Queen and King of Sweden to Windsor Castle this morning, with Kate looking chic in a green midi dress.", - "contentSnippet": "The Prince and Princess of Wales welcomed the future Queen and King of Sweden to Windsor Castle this morning, with Kate looking chic in a green midi dress.", - "guid": "https://www.dailymail.co.uk/femail/article-12809437/Kate-Middleton-Prince-William-Princess-Victoria-Windsor-Omid-Scobie-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:57:51.000Z" - }, - { - "title": "Tributes from world leaders praise Henry Kissinger as a 'giant of history' including China, which hails him as a 'good friend':\u00a0'The world has lost a great diplomat'", - "link": "https://www.dailymail.co.uk/news/article-12809379/Tributes-world-leaders-praise-Henry-Kissinger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:57:07 GMT", - "enclosure": { - "length": "6393", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421773-0-image-m-39_1701351339489.jpg" - }, - "content": "The news of Kissinger's death on Wednesday prompted messages from officials worldwide, from the UK, France and Germany to Russia and China, praising the former US Secretary of State.", - "contentSnippet": "The news of Kissinger's death on Wednesday prompted messages from officials worldwide, from the UK, France and Germany to Russia and China, praising the former US Secretary of State.", - "guid": "https://www.dailymail.co.uk/news/article-12809379/Tributes-world-leaders-praise-Henry-Kissinger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:57:07.000Z" - }, - { - "title": "Mother who works full-time for a \u00a323,500 salary breaks down in tears as she claims she can barely afford to feed her two children", - "link": "https://www.dailymail.co.uk/femail/article-12806031/mother-time-tears-afford-feed-children.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:46:34 GMT", - "enclosure": { - "length": "10616", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/29/17/78384673-0-image-a-20_1701280262801.jpg" - }, - "content": "Abbie Palmer, a British mother-of-two who works full-time as a customer services manager, broke down as she revealed she can't give her children the Christmas they deserve because money is so tight.", - "contentSnippet": "Abbie Palmer, a British mother-of-two who works full-time as a customer services manager, broke down as she revealed she can't give her children the Christmas they deserve because money is so tight.", - "guid": "https://www.dailymail.co.uk/femail/article-12806031/mother-time-tears-afford-feed-children.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:46:34.000Z" - }, - { - "title": "The death of the middle-class kitchen? Sales of Le Creuset, Aga cookers and Farrow & Ball wallpaper fall sharply as families replace old staples amid cost of living crisis", - "link": "https://www.dailymail.co.uk/news/article-12808861/le-creuset-aga-cookers-farrow-ball-plummet-cost-living.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:43:53 GMT", - "enclosure": { - "length": "8097", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425401-0-image-m-43_1701355412622.jpg" - }, - "content": "Accounts for firms specialising in premium home products show declines in sales to the end of 2022, with no designer brand seemingly immune to the tightening of British wallets.", - "contentSnippet": "Accounts for firms specialising in premium home products show declines in sales to the end of 2022, with no designer brand seemingly immune to the tightening of British wallets.", - "guid": "https://www.dailymail.co.uk/news/article-12808861/le-creuset-aga-cookers-farrow-ball-plummet-cost-living.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:43:53.000Z" - }, - { - "title": "The UK's 'tallest and fastest roller coaster' is unveiled in spellbinding POV video: 'Hyperia' in Thorpe Park will reach a height of 236ft and travel at 80mph", - "link": "https://www.dailymail.co.uk/travel/article-12804511/The-UKs-tallest-fastest-roller-coaster-unveiled-spellbinding-POV-video-Hyperia-Thorpe-Park-reach-height-236ft-travel-80mph.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:33:49 GMT", - "enclosure": { - "length": "6965", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/29/16/78368855-0-image-a-22_1701276932131.jpg" - }, - "content": "The nerve-shredding CGI video reveals the hair-raising\u00a0twists and turns - and a huge stomach-churning drop with a summit high above the park.", - "contentSnippet": "The nerve-shredding CGI video reveals the hair-raising\u00a0twists and turns - and a huge stomach-churning drop with a summit high above the park.", - "guid": "https://www.dailymail.co.uk/travel/article-12804511/The-UKs-tallest-fastest-roller-coaster-unveiled-spellbinding-POV-video-Hyperia-Thorpe-Park-reach-height-236ft-travel-80mph.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:33:49.000Z" - }, - { - "title": "Cheek sample taken from Gilgo Beach murder suspect's estranged wife on the day he was arrested matches the hairs found on the victims' bodies, DNA tests confirm", - "link": "https://www.dailymail.co.uk/news/article-12809645/Gilgo-Beach-murders-cheek-swab-Rex-Heuermann-wife.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:24:00 GMT", - "enclosure": { - "length": "11123", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78421129-0-image-a-176_1701348848646.jpg" - }, - "content": "Asa Ellerup, 59, provided a cheek swab sample to investigators on the night they arrested Heuermann, 60, for the murders of three sex workers.", - "contentSnippet": "Asa Ellerup, 59, provided a cheek swab sample to investigators on the night they arrested Heuermann, 60, for the murders of three sex workers.", - "guid": "https://www.dailymail.co.uk/news/article-12809645/Gilgo-Beach-murders-cheek-swab-Rex-Heuermann-wife.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:24:00.000Z" - }, - { - "title": "EXCLUSIVE: Britney Spears is 'disappointed' in sister Jamie Lynn for QUITTING I'm A Celebrity - as insiders claim she 'never intended' to stay longer than needed to secure her pay check", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12805945/britney-spears-jamie-lynn-im-celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:13:48 GMT", - "enclosure": { - "length": "10136", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/29/18/78386397-0-image-a-15_1701283569364.jpg" - }, - "content": "Jamie's shock departure was announced in a statement on Wednesday, with show bosses revealing the actress, 32, quit on 'medical grounds,' just days after feeling 'emotionally weak.'", - "contentSnippet": "Jamie's shock departure was announced in a statement on Wednesday, with show bosses revealing the actress, 32, quit on 'medical grounds,' just days after feeling 'emotionally weak.'", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12805945/britney-spears-jamie-lynn-im-celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:13:48.000Z" - }, - { - "title": "Palace 'considers all options' in royal race row stoked by Omid Scobie's book Endgame, sources say with King determined to 'get on with business' as he lands in Dubai for Cop28", - "link": "https://www.dailymail.co.uk/news/article-12808999/palace-race-row-omid-scobie-endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:11:10 GMT", - "enclosure": { - "length": "5941", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/09/78413069-0-image-m-38_1701337803830.jpg" - }, - "content": "Well-placed sources have told the Daily Mail while King Charles is determined to focus on important state business in Dubai, where he is holding bilateral meetings.", - "contentSnippet": "Well-placed sources have told the Daily Mail while King Charles is determined to focus on important state business in Dubai, where he is holding bilateral meetings.", - "guid": "https://www.dailymail.co.uk/news/article-12808999/palace-race-row-omid-scobie-endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:11:10.000Z" - }, - { - "title": "Watch the heroic moment tennis legend sprints over to help ball girl who collapsed while she was being interviewed on TV", - "link": "https://www.dailymail.co.uk/sport/tennis/article-12808775/Watch-heroic-moment-tennis-legend-helps-ball-girl-collapsed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:05:33 GMT", - "enclosure": { - "length": "5069", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/08/78410761-0-image-m-7_1701333187081.jpg" - }, - "content": "Molik, a former world No 8 and two-time grand slam doubles champion, was being unveiled as the new tournament director the Adelaide International when a ball girl collapsed on centre court.", - "contentSnippet": "Molik, a former world No 8 and two-time grand slam doubles champion, was being unveiled as the new tournament director the Adelaide International when a ball girl collapsed on centre court.", - "guid": "https://www.dailymail.co.uk/sport/tennis/article-12808775/Watch-heroic-moment-tennis-legend-helps-ball-girl-collapsed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:05:33.000Z" - }, - { - "title": "The tragic true stories of Shane MacGowan and Kirsty MacColl: The Pogues frontman battled alcoholism and a brain condition after his mother was killed in car crash - while fellow singer died in a speedboat accident days before Christmas", - "link": "https://www.dailymail.co.uk/news/article-12809585/tragic-story-fairytale-new-york-shane-macgowan-kirsty-maccoll.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:04:29 GMT", - "enclosure": { - "length": "6347", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78422549-0-image-m-69_1701350669835.jpg" - }, - "content": "Singer Kirsty MacColl, who duetted with Shane MacGowan in the festive hit, died aged 41 in 2000 after a horrific boating accident while scuba diving in Mexico.", - "contentSnippet": "Singer Kirsty MacColl, who duetted with Shane MacGowan in the festive hit, died aged 41 in 2000 after a horrific boating accident while scuba diving in Mexico.", - "guid": "https://www.dailymail.co.uk/news/article-12809585/tragic-story-fairytale-new-york-shane-macgowan-kirsty-maccoll.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:04:29.000Z" - }, - { - "title": "Shocking moment people smugglers push migrants off powerboat into fast-moving currents near a Spanish beach before speeding off... minutes after four youngsters are 'left to drown'", - "link": "https://www.dailymail.co.uk/news/article-12808917/Shocking-moment-people-smugglers-push-migrants-powerboat-fast-moving-currents-near-Spanish-beach-speeding-leaving-four-youngsters-drown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:04:23 GMT", - "enclosure": { - "length": "8125", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/09/78411719-0-image-a-9_1701337931748.jpg" - }, - "content": "Footage showed the group being forced into a channel of choppy water off the city of Cadiz by the gang on board a high-powered semi-rigid Zodiac -\u00a0 a vessel that is normally used by drug smugglers.", - "contentSnippet": "Footage showed the group being forced into a channel of choppy water off the city of Cadiz by the gang on board a high-powered semi-rigid Zodiac -\u00a0 a vessel that is normally used by drug smugglers.", - "guid": "https://www.dailymail.co.uk/news/article-12808917/Shocking-moment-people-smugglers-push-migrants-powerboat-fast-moving-currents-near-Spanish-beach-speeding-leaving-four-youngsters-drown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:04:23.000Z" - }, - { - "title": "WhatsApp trick lets you set Secret Codes to protect your most private chats - here's how to try it yourself", - "link": "https://www.dailymail.co.uk/sciencetech/article-12809793/WhatsApp-trick-lets-set-Secret-Codes-protect-private-chats-heres-try-yourself.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 14:00:55 GMT", - "enclosure": { - "length": "4866", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78420829-0-image-m-73_1701349357331.jpg" - }, - "content": "WhatsApp already has a Chat Lock feature, but is taking things up a notch, with the launch of new 'Secret Codes'.", - "contentSnippet": "WhatsApp already has a Chat Lock feature, but is taking things up a notch, with the launch of new 'Secret Codes'.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12809793/WhatsApp-trick-lets-set-Secret-Codes-protect-private-chats-heres-try-yourself.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T14:00:55.000Z" - }, - { - "title": "HMP Wandsworth locksmith, 44, who made moulds of three prison keys to sell for \u00a3100,000 so he could start life abroad with colleague is jailed for four years", - "link": "https://www.dailymail.co.uk/news/article-12809521/HMP-Wandsworth-locksmith-44-moulds-three-prison-keys-sell-100-000-start-life-abroad-colleague-jailed-four-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 13:56:05 GMT", - "enclosure": { - "length": "6233", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/76646979-0-Martynov_pleaded_guilty_to_one_count_of_misconduct_in_public_off-a-11_1701345712043.jpg" - }, - "content": "Andrej Martynov of Beckton previously pleaded guilty to one count of misconduct in public office after police found two quick-drying cement moulds, with three key impressions, in his home.", - "contentSnippet": "Andrej Martynov of Beckton previously pleaded guilty to one count of misconduct in public office after police found two quick-drying cement moulds, with three key impressions, in his home.", - "guid": "https://www.dailymail.co.uk/news/article-12809521/HMP-Wandsworth-locksmith-44-moulds-three-prison-keys-sell-100-000-start-life-abroad-colleague-jailed-four-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T13:56:05.000Z" - }, - { - "title": "Princess Beatrice re-wears favourite Self Portrait dress to support her sister Princess Eugenie at her anti-slavery charity's first Winter Gala", - "link": "https://www.dailymail.co.uk/femail/article-12808753/Princess-Beatrice-wears-favourite-Self-Potrait-dress-support-sister-Princess-Eugenie-anti-slavery-charitys-Winter-Gala.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 13:55:04 GMT", - "enclosure": { - "length": "9970", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/08/78411361-0-image-a-20_1701334365658.jpg" - }, - "content": "The royal, 35, perfected winter glamour, and donned a black velvet belted suit jacket paired with a flowy tulle skirt to London 's\u00a0Battersea Arts Centre.", - "contentSnippet": "The royal, 35, perfected winter glamour, and donned a black velvet belted suit jacket paired with a flowy tulle skirt to London 's\u00a0Battersea Arts Centre.", - "guid": "https://www.dailymail.co.uk/femail/article-12808753/Princess-Beatrice-wears-favourite-Self-Potrait-dress-support-sister-Princess-Eugenie-anti-slavery-charitys-Winter-Gala.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T13:55:04.000Z" - }, - { - "title": "The loving family behind Shane MacGowan: The Pogues' frontman - who lost his mother to a horrific New Year's Day car crash in 2017 - owed his career to his relatives, including his 'muse' wife, loving sister and the 'hero' uncle who inspired him", - "link": "https://www.dailymail.co.uk/news/article-12809683/The-loving-family-Shane-MacGowan-Pogues-frontman-lost-mother-horrific-New-Years-Day-car-crash-2017-owed-career-relatives-including-muse-wife-loving-sister-hero-uncle-inspired-him.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 13:52:08 GMT", - "enclosure": { - "length": "9852", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78422035-0-image-a-11_1701350154676.jpg" - }, - "content": "The Pogues frontman died 'peacefully' this morning with his music journalist wife Victoria Mary Clarke and family by his side.", - "contentSnippet": "The Pogues frontman died 'peacefully' this morning with his music journalist wife Victoria Mary Clarke and family by his side.", - "guid": "https://www.dailymail.co.uk/news/article-12809683/The-loving-family-Shane-MacGowan-Pogues-frontman-lost-mother-horrific-New-Years-Day-car-crash-2017-owed-career-relatives-including-muse-wife-loving-sister-hero-uncle-inspired-him.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T13:52:08.000Z" - }, - { - "title": "Bookies slash odds on The Pogues being the Christmas Number One single - as fans call for Fairytale Of New York to top the festive charts in tribute to Shane MacGowan", - "link": "https://www.dailymail.co.uk/news/article-12809711/bookies-odds-pogues-christmas-number-one-shane-macgowan-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 13:40:50 GMT", - "enclosure": { - "length": "7070", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78109389-0-image-a-6_1701348112786.jpg" - }, - "content": "Fairytale of New York was already the favourite to hit number one as fans rallied around the Pogues frontman during his fight with viral encephalitis, a life-threatening condition affecting the brain.", - "contentSnippet": "Fairytale of New York was already the favourite to hit number one as fans rallied around the Pogues frontman during his fight with viral encephalitis, a life-threatening condition affecting the brain.", - "guid": "https://www.dailymail.co.uk/news/article-12809711/bookies-odds-pogues-christmas-number-one-shane-macgowan-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T13:40:50.000Z" - }, - { - "title": "I've got an interest-only mortgage - and no way to pay it off: LUNCH MONEY", - "link": "https://www.dailymail.co.uk/money/lunchmoney/article-12809751/Ive-got-mortgage-no-way-pay-LUNCH-MONEY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 13:23:27 GMT", - "enclosure": { - "length": "5206", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78421307-0-image-m-9_1701349011246.jpg" - }, - "content": "We look how bad the interest-only crunch can be for borrowers, how big a problem this is and what people can do. Plus, greedflation and can the gold price keep rising?", - "contentSnippet": "We look how bad the interest-only crunch can be for borrowers, how big a problem this is and what people can do. Plus, greedflation and can the gold price keep rising?", - "guid": "https://www.dailymail.co.uk/money/lunchmoney/article-12809751/Ive-got-mortgage-no-way-pay-LUNCH-MONEY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T13:23:27.000Z" - }, - { - "title": "King Charles will warn world leaders 'the Earth does not belong to us' and call for nations to work together to battle climate change in his speech at the Cop28 summit in Dubai today", - "link": "https://www.dailymail.co.uk/news/article-12812051/King-Charles-warn-world-leaders-Earth-does-not-belong-call-nations-work-battle-climate-change-speech-Cop28-summit-Dubai-today.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:28:37 GMT", - "enclosure": { - "length": "12284", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/23/78446567-0-image-a-79_1701385742557.jpg" - }, - "content": "King Charles is the only foreign head of state who has been invited to speak at the climate action meeting of global leaders, in honour of his decades of work in the environmental field.", - "contentSnippet": "King Charles is the only foreign head of state who has been invited to speak at the climate action meeting of global leaders, in honour of his decades of work in the environmental field.", - "guid": "https://www.dailymail.co.uk/news/article-12812051/King-Charles-warn-world-leaders-Earth-does-not-belong-call-nations-work-battle-climate-change-speech-Cop28-summit-Dubai-today.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:28:37.000Z" - }, - { - "title": "Brazen Omid Scobie REFUSES to apologise to the two senior 'racist royals' named in his discredited book: 'Frustrated' author slams 'irresponsible people' for repeating the identities - which BOTH Endgame's Dutch translators insist WERE in the manuscript", - "link": "https://www.dailymail.co.uk/news/article-12812097/Omid-Scobie-REFUSES-apologise-two-senior-royals-book-accused-racist-tense-BBC-interview-Dutch-translator-Endgame-confirms-two-names-manuscript.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:17:24 GMT", - "enclosure": { - "length": "9248", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78449015-0-image-a-21_1701390925733.jpg" - }, - "content": "The royal author said that the book that he 'was extremely proud of' has been 'completely overshadowed by an event that's caused me a lot of frustration'.", - "contentSnippet": "The royal author said that the book that he 'was extremely proud of' has been 'completely overshadowed by an event that's caused me a lot of frustration'.", - "guid": "https://www.dailymail.co.uk/news/article-12812097/Omid-Scobie-REFUSES-apologise-two-senior-royals-book-accused-racist-tense-BBC-interview-Dutch-translator-Endgame-confirms-two-names-manuscript.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:17:24.000Z" - }, - { - "title": "EXCLUSIVE: Chris Kamara on the speech condition that stole his voice and how he's 'got his smile back' after fearing he wouldn't recognise his own family... now he's bouncing back and overjoyed to drive Jeff Stelling mad again!", - "link": "https://www.dailymail.co.uk/sport/football/article-12811465/Chris-Kamara-speech-condition-stole-voice-hes-got-smile-fearing-wouldnt-recognise-family-hes-bouncing-overjoyed-drive-Jeff-Stelling-mad-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:17:52 GMT", - "enclosure": { - "length": "10276", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444429-0-image-a-28_1701382074045.jpg" - }, - "content": "EXCLUSIVE INTERVIEW: Kamara chuckling away like a happy man - like the Kamara we remember. The one we all know as Kammy. But it was never a persona. It was him.", - "contentSnippet": "EXCLUSIVE INTERVIEW: Kamara chuckling away like a happy man - like the Kamara we remember. The one we all know as Kammy. But it was never a persona. It was him.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12811465/Chris-Kamara-speech-condition-stole-voice-hes-got-smile-fearing-wouldnt-recognise-family-hes-bouncing-overjoyed-drive-Jeff-Stelling-mad-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:17:52.000Z" - }, - { - "title": "Spanish amateur footballer faces calls for a lifetime ban after shocking unprovoked violent assault on opponent during Catalan fourth division match", - "link": "https://www.dailymail.co.uk/sport/football/article-12811613/Spanish-amateur-footballer-faces-calls-lifetime-ban-shocking-unprovoked-violent-assault-opponent-Catalan-fourth-division-match.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:09:28 GMT", - "enclosure": { - "length": "6736", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443675-0-image-a-4_1701380847955.jpg" - }, - "content": "NATALIA PENZA: The striker, identified locally as Marc Marquez, is said to have escaped punishment during the game because the ref didn't see him lash out at his opponent.", - "contentSnippet": "NATALIA PENZA: The striker, identified locally as Marc Marquez, is said to have escaped punishment during the game because the ref didn't see him lash out at his opponent.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12811613/Spanish-amateur-footballer-faces-calls-lifetime-ban-shocking-unprovoked-violent-assault-opponent-Catalan-fourth-division-match.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:09:28.000Z" - }, - { - "title": "Horoscope today: Daily guide to what the stars have in store for YOU - December 1, 2023", - "link": "https://www.dailymail.co.uk/femail/article-12810739/Horoscope-today-Daily-December-1.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:28:44 GMT", - "enclosure": { - "length": "7766", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444437-0-image-a-42_1701382143604.jpg" - }, - "content": "Today Oscar Cainer tells Geminis that in order to get to know someone they have to 'winter and summer them' - spend enough time with them to see them at their worst/most stressed.", - "contentSnippet": "Today Oscar Cainer tells Geminis that in order to get to know someone they have to 'winter and summer them' - spend enough time with them to see them at their worst/most stressed.", - "guid": "https://www.dailymail.co.uk/femail/article-12810739/Horoscope-today-Daily-December-1.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:28:44.000Z" - }, - { - "title": "RICHARD KAY: There's a sense of shock inside Palace circles after two royals are publicly identified as the supposed 'racists' in Omid Scobie's book. The Royal Family look like they're always one step behind events", - "link": "https://www.dailymail.co.uk/debate/article-12811893/shock-palace-Omid-Scobie-Royal-Family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:27:59 GMT", - "enclosure": { - "length": "6352", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444655-0-image-m-147_1701382840770.jpg" - }, - "content": "RICHARD KAY: Within Palace circles there was a sense of shock at events, along with some scepticism at the competing accounts of who was responsible.", - "contentSnippet": "RICHARD KAY: Within Palace circles there was a sense of shock at events, along with some scepticism at the competing accounts of who was responsible.", - "guid": "https://www.dailymail.co.uk/debate/article-12811893/shock-palace-Omid-Scobie-Royal-Family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:27:59.000Z" - }, - { - "title": "I'm A Celeb's Josie Gibson breaks down in tears for the first time as she quits trial after being left 'petrified' by huge spiders crawling near her face", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811703/im-celeb-josie-gibson-breaks-bushtucker-trial-spiders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:52:06 GMT", - "enclosure": { - "length": "8970", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448705-0-image-m-40_1701390299864.jpg" - }, - "content": "The This Morning star was surrounded by huge spiders by her face - after she was voted to receive the eight-legged critter by the public.", - "contentSnippet": "The This Morning star was surrounded by huge spiders by her face - after she was voted to receive the eight-legged critter by the public.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811703/im-celeb-josie-gibson-breaks-bushtucker-trial-spiders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:52:06.000Z" - }, - { - "title": "Culture Secretary Lucy Frazer steps in amid 'concerns' over the proposed sale of The Telegraph and Spectator to Abu Dhabi", - "link": "https://www.dailymail.co.uk/news/article-12812281/Culture-Secretary-Lucy-Frazer-intervenes-Telegraph-takeover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:31:05 GMT", - "enclosure": { - "length": "9970", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448353-0-image-a-152_1701389645914.jpg" - }, - "content": "Lucy Frazer ordered the media watchdog to investigate whether the controversial deal risked 'the need for accurate presentation of news and free expression of opinion in newspapers'.", - "contentSnippet": "Lucy Frazer ordered the media watchdog to investigate whether the controversial deal risked 'the need for accurate presentation of news and free expression of opinion in newspapers'.", - "guid": "https://www.dailymail.co.uk/news/article-12812281/Culture-Secretary-Lucy-Frazer-intervenes-Telegraph-takeover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:31:05.000Z" - }, - { - "title": "I'm A Celeb viewers are left yawning as Tony Bellew gives a very long-winded explanation of meeting his wife Rachael in four-minute-long monologue", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811871/im-celeb-tony-bellew-boring-four-minute-story-wife-rachel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:46:27 GMT", - "enclosure": { - "length": "10007", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/23/78446651-0-image-a-26_1701385803428.jpg" - }, - "content": "The former professional boxer, who celebrated his 41st birthday, told JLS's Marvin Humes and Made In Chelsea star Sam Thompson about how he and Rachael Roberts got together.", - "contentSnippet": "The former professional boxer, who celebrated his 41st birthday, told JLS's Marvin Humes and Made In Chelsea star Sam Thompson about how he and Rachael Roberts got together.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811871/im-celeb-tony-bellew-boring-four-minute-story-wife-rachel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:46:27.000Z" - }, - { - "title": "Biden\u00a0FINALLY releases a statement on Henry Kissinger - 20 hours after his death: President says they 'often disagreed strongly' but praises his 'fierce intellect' and 'strategic focus' - after they first met in the 1970s", - "link": "https://www.dailymail.co.uk/news/article-12811989/Biden-FINALLY-releases-statement-Henry-Kissingers-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:33:49 GMT", - "enclosure": { - "length": "9955", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448901-0-image-a-12_1701390746594.jpg" - }, - "content": "President Joe Biden finally put out a statement offering condolences for Henry Kissinger, 20 hours after the death of the 100-year-old American diplomat.", - "contentSnippet": "President Joe Biden finally put out a statement offering condolences for Henry Kissinger, 20 hours after the death of the 100-year-old American diplomat.", - "guid": "https://www.dailymail.co.uk/news/article-12811989/Biden-FINALLY-releases-statement-Henry-Kissingers-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:33:49.000Z" - }, - { - "title": "I'm A Celeb fans are disgusted as Sam Thompson, Tony Bellew and Nick Pickard strip off for a swim in the 'dirty' creek: 'Isn't that where they wash the pans!'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811829/Im-Celeb-fans-disgusted-Sam-Thompson-Tony-Bellew-Nick-Pickard-strip-swim-dirty-creek-Isnt-wash-pans.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:12:05 GMT", - "enclosure": { - "length": "10184", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/23/78446573-0-image-m-64_1701385525203.jpg" - }, - "content": "ITV viewers are left concerned as Sam Thompson , Tony Bellew and Nick Pickard go swimming in the creek\u00a0on Thursday night's I'm A Celebrity ...Get Me Out Of Here!", - "contentSnippet": "ITV viewers are left concerned as Sam Thompson , Tony Bellew and Nick Pickard go swimming in the creek\u00a0on Thursday night's I'm A Celebrity ...Get Me Out Of Here!", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811829/Im-Celeb-fans-disgusted-Sam-Thompson-Tony-Bellew-Nick-Pickard-strip-swim-dirty-creek-Isnt-wash-pans.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:12:05.000Z" - }, - { - "title": "Why I refuse to cook meals for my son's rude girlfriend even though they've been together for six years", - "link": "https://www.dailymail.co.uk/femail/real-life/article-12808235/Reddit-mum-refuses-cook-son-girlfriend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:44:55 GMT", - "enclosure": { - "length": "6752", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78442091-0-image-m-11_1701383459442.jpg" - }, - "content": "A fed-up mum has asked if she is 'in the wrong' for refusing to cook for her son and his 'picky' girlfriend when they visit.", - "contentSnippet": "A fed-up mum has asked if she is 'in the wrong' for refusing to cook for her son and his 'picky' girlfriend when they visit.", - "guid": "https://www.dailymail.co.uk/femail/real-life/article-12808235/Reddit-mum-refuses-cook-son-girlfriend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:44:55.000Z" - }, - { - "title": "HS2 boss called a village pub affected by the rail line a 's****y little pub that nobody wants to drink in anyway', MPs hear", - "link": "https://www.dailymail.co.uk/news/article-12812007/HS2-boss-called-village-pub-affected-rail-line-s-y-little-pub-wants-drink-MPs-hear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:38:23 GMT", - "enclosure": { - "length": "6413", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78445779-0-image-a-59_1701384355639.jpg" - }, - "content": "Mark Thurston, who stood down as chief executive in September, made the private comments about the Prince of Wales pub in [the village] Steeple Claydon", - "contentSnippet": "Mark Thurston, who stood down as chief executive in September, made the private comments about the Prince of Wales pub in [the village] Steeple Claydon", - "guid": "https://www.dailymail.co.uk/news/article-12812007/HS2-boss-called-village-pub-affected-rail-line-s-y-little-pub-wants-drink-MPs-hear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:38:23.000Z" - }, - { - "title": "Inside the life of Shane MacGowan: The Pogues rocker who was born in Tunbridge Wells and went to prep school in Westminster, but had his first Guiness at four, and got drunk on whiskey at eight, leaving all who loved him asking - how did he make it to 65!", - "link": "https://www.dailymail.co.uk/news/article-12811899/Shane-MacGowan-born-Tunbridge-Wells-went-prep-school-Westminster-Guinness-four-got-drunk-whiskey-eight-Thats-loved-asking-did-make-65-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:17:56 GMT", - "enclosure": { - "length": "10802", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444121-0-image-a-10_1701382886858.jpg" - }, - "content": "CHRISTOPHER STEVENS: Shane MacGowan, the ravaged, foul-mouthed, broken-toothed rock star who co-wrote the best-loved festive karaoke song of all time, has died aged 65.", - "contentSnippet": "CHRISTOPHER STEVENS: Shane MacGowan, the ravaged, foul-mouthed, broken-toothed rock star who co-wrote the best-loved festive karaoke song of all time, has died aged 65.", - "guid": "https://www.dailymail.co.uk/news/article-12811899/Shane-MacGowan-born-Tunbridge-Wells-went-prep-school-Westminster-Guinness-four-got-drunk-whiskey-eight-Thats-loved-asking-did-make-65-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:17:56.000Z" - }, - { - "title": "TOM UTLEY: Who wants to live to 150 in this mad world in which killjoys seek to ban all pleasure and police our thoughts?", - "link": "https://www.dailymail.co.uk/debate/article-12811937/TOM-UTLEY-wants-live-150-mad-world-killjoys-seek-ban-pleasure-police-thoughts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:13:48 GMT", - "enclosure": { - "length": "7189", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444709-0-image-a-51_1701383487697.jpg" - }, - "content": "TOM UTLEY: After a lifetime spent ignoring warnings about the lethal dangers of my chain-smoking, heavy drinking and love of unhealthy foods, I never expected to reach even 70.", - "contentSnippet": "TOM UTLEY: After a lifetime spent ignoring warnings about the lethal dangers of my chain-smoking, heavy drinking and love of unhealthy foods, I never expected to reach even 70.", - "guid": "https://www.dailymail.co.uk/debate/article-12811937/TOM-UTLEY-wants-live-150-mad-world-killjoys-seek-ban-pleasure-police-thoughts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:13:48.000Z" - }, - { - "title": "King Charles will never strip Harry and Meghan of their royal titles despite calls to do so as he would not want to 'humiliate' the Sussexes, sources say", - "link": "https://www.dailymail.co.uk/news/article-12811969/King-Charles-never-strip-Harry-Meghan-royal-titles-despite-calls-not-want-humiliate-Sussexes-sources-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 23:11:12 GMT", - "enclosure": { - "length": "10903", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78445607-0-image-a-27_1701384051956.jpg" - }, - "content": "King Charles will never strip the Sussexes of royal titles despite the continuing heartache they are causing to the Royal Family. Sources have said it is something he refuses to even contemplate.", - "contentSnippet": "King Charles will never strip the Sussexes of royal titles despite the continuing heartache they are causing to the Royal Family. Sources have said it is something he refuses to even contemplate.", - "guid": "https://www.dailymail.co.uk/news/article-12811969/King-Charles-never-strip-Harry-Meghan-royal-titles-despite-calls-not-want-humiliate-Sussexes-sources-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T23:11:12.000Z" - }, - { - "title": "Kate Middleton and Prince William's red carpet display is 'emotionally revealing' with the Princess of Wales appearing 'vulnerable', body language expert claims - amid fallout from Omid Scobie race row", - "link": "https://www.dailymail.co.uk/femail/article-12811707/Kate-Middleton-Prince-Williams-red-carpet-display-emotionally-revealing-Princess-Wales-appearing-vulnerable-body-language-expert-claims-amid-fallout-Omid-Scobie-race-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:53:28 GMT", - "enclosure": { - "length": "10440", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443957-0-image-a-11_1701381243831.jpg" - }, - "content": "Judi James told FEMAIL the couple's body language suggests William acted as a support for Kate as they arrived at the Royal Albert Hall in Kensington this evening.", - "contentSnippet": "Judi James told FEMAIL the couple's body language suggests William acted as a support for Kate as they arrived at the Royal Albert Hall in Kensington this evening.", - "guid": "https://www.dailymail.co.uk/femail/article-12811707/Kate-Middleton-Prince-Williams-red-carpet-display-emotionally-revealing-Princess-Wales-appearing-vulnerable-body-language-expert-claims-amid-fallout-Omid-Scobie-race-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:53:28.000Z" - }, - { - "title": "Conor McGregor welcomes his fourth child with wife Dee Devlin... as MMA star shares his delight over newborn son: '8.1lbs of prime Irish double champion beef'", - "link": "https://www.dailymail.co.uk/sport/mma/article-12811727/Conor-McGregor-welcomes-fourth-child-boy-Dee-Devlin-MMA-UFC.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:51:41 GMT", - "enclosure": { - "length": "11421", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444829-0-image-a-4_1701382843083.jpg" - }, - "content": "The 34-year-old, former featherweight and lightweight champion tweeted, that both, mother and child are 'doing amazing'. He also shared a couple of snaps of his child's birth on Instagram.", - "contentSnippet": "The 34-year-old, former featherweight and lightweight champion tweeted, that both, mother and child are 'doing amazing'. He also shared a couple of snaps of his child's birth on Instagram.", - "guid": "https://www.dailymail.co.uk/sport/mma/article-12811727/Conor-McGregor-welcomes-fourth-child-boy-Dee-Devlin-MMA-UFC.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:51:41.000Z" - }, - { - "title": "Mary Berry goes back to basics, while Jamie Oliver gets tasty in record time - and Nadiya spices up your life in our selection of 2023's best cookbooks", - "link": "https://www.dailymail.co.uk/home/books/article-12811425/Mary-Berry-goes-basics-Jamie-Oliver-gets-tasty-record-time-Nadiya-spices-life-selection-2023s-best-cookbooks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:17:45 GMT", - "enclosure": { - "length": "11604", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442511-0-image-a-15_1701381454857.jpg" - }, - "content": "Dame Mary's latest book is full of useful time-saving tips, tricks and shortcuts to make your life easier. Her food is elegant yet uncomplicated.", - "contentSnippet": "Dame Mary's latest book is full of useful time-saving tips, tricks and shortcuts to make your life easier. Her food is elegant yet uncomplicated.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811425/Mary-Berry-goes-basics-Jamie-Oliver-gets-tasty-record-time-Nadiya-spices-life-selection-2023s-best-cookbooks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:17:45.000Z" - }, - { - "title": "SCI-FI AND FANTASY", - "link": "https://www.dailymail.co.uk/home/books/article-12811645/SCI-FI-FANTASY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:06:41 GMT", - "enclosure": { - "length": "10500", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442031-0-image-m-22_1701378805226.jpg" - }, - "content": "After the massive reset at the end of Fourth Wing, Violet (aka Violence) Sorrengail is still flying high on her mighty - and mightily sarcastic - dragon.", - "contentSnippet": "After the massive reset at the end of Fourth Wing, Violet (aka Violence) Sorrengail is still flying high on her mighty - and mightily sarcastic - dragon.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811645/SCI-FI-FANTASY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:06:41.000Z" - }, - { - "title": "HISTORICAL", - "link": "https://www.dailymail.co.uk/home/books/article-12811689/HISTORICAL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:06:24 GMT", - "enclosure": { - "length": "5730", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442315-0-image-m-23_1701379255497.jpg" - }, - "content": "A smash-your-heart-to-smithereens debut from Alice Winn as she tells the story of two schoolboy soldiers, who attempt to survive the slaughter of the trenches and keep their secret love alive.", - "contentSnippet": "A smash-your-heart-to-smithereens debut from Alice Winn as she tells the story of two schoolboy soldiers, who attempt to survive the slaughter of the trenches and keep their secret love alive.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811689/HISTORICAL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:06:24.000Z" - }, - { - "title": "CONTEMPORARY", - "link": "https://www.dailymail.co.uk/home/books/article-12811693/CONTEMPORARY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:06:10 GMT", - "enclosure": { - "length": "6788", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442573-0-image-m-20_1701379663518.jpg" - }, - "content": "A new book from Cooper is huge news, especially when it stars iconic protagonist Rupert Campbell-Black. Now 60, Rupert buys the rubbish local football club.", - "contentSnippet": "A new book from Cooper is huge news, especially when it stars iconic protagonist Rupert Campbell-Black. Now 60, Rupert buys the rubbish local football club.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811693/CONTEMPORARY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:06:10.000Z" - }, - { - "title": "CLASSIC CRIME", - "link": "https://www.dailymail.co.uk/home/books/article-12811769/CLASSIC-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:05:59 GMT", - "enclosure": { - "length": "5674", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443285-0-image-m-39_1701380507191.jpg" - }, - "content": "In le Carr\u00e9's first novel we are introduced to George Smiley, whose shambolic life belies a formidable intelligence. Having cleared a civil servant for security, the man is found dead.", - "contentSnippet": "In le Carr\u00e9's first novel we are introduced to George Smiley, whose shambolic life belies a formidable intelligence. Having cleared a civil servant for security, the man is found dead.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811769/CLASSIC-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:05:59.000Z" - }, - { - "title": "SHORT STORIES", - "link": "https://www.dailymail.co.uk/home/books/article-12811785/SHORT-STORIES.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:05:51 GMT", - "enclosure": { - "length": "4068", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443615-0-image-a-10_1701380910439.jpg" - }, - "content": "Lichens, tiny insects, solitary reading, train journeys, overheard conversations, dissolving friendships and matrimonial irritations make up Davis's delicious short stories.", - "contentSnippet": "Lichens, tiny insects, solitary reading, train journeys, overheard conversations, dissolving friendships and matrimonial irritations make up Davis's delicious short stories.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811785/SHORT-STORIES.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:05:51.000Z" - }, - { - "title": "DEBUTS", - "link": "https://www.dailymail.co.uk/home/books/article-12811803/DEBUTS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:05:45 GMT", - "enclosure": { - "length": "5131", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443923-0-image-m-61_1701381263811.jpg" - }, - "content": "Hilarious and heart-breaking, this stars Sophie who works in a pub and Chris who likes to drink in them. He turns up in Sophie's bar and she can't believe her eyes - they have serious history.", - "contentSnippet": "Hilarious and heart-breaking, this stars Sophie who works in a pub and Chris who likes to drink in them. He turns up in Sophie's bar and she can't believe her eyes - they have serious history.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811803/DEBUTS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:05:45.000Z" - }, - { - "title": "POPULAR", - "link": "https://www.dailymail.co.uk/home/books/article-12811745/POPULAR.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:05:37 GMT", - "enclosure": { - "length": "7713", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442937-0-image-m-78_1701381402640.jpg" - }, - "content": "I devoured this Hollywood thriller, whose heroine Mae is in 'black bag' PR. She cleans up bad celebrity stories, and boy are they terrible. Teen actor deaths, bent politicians, sex, drugs, murder.", - "contentSnippet": "I devoured this Hollywood thriller, whose heroine Mae is in 'black bag' PR. She cleans up bad celebrity stories, and boy are they terrible. Teen actor deaths, bent politicians, sex, drugs, murder.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811745/POPULAR.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:05:37.000Z" - }, - { - "title": "THRILLERS AND CRIME", - "link": "https://www.dailymail.co.uk/home/books/article-12811595/THRILLERS-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:05:18 GMT", - "enclosure": { - "length": "8117", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78441885-0-image-m-12_1701378299837.jpg" - }, - "content": "Retired LAPD cop turned private investigator Harry Bosch teams up with his half-brother, the Lincoln Lawyer Mickey Haller, to defend a woman imprisoned for killing her ex-husband.", - "contentSnippet": "Retired LAPD cop turned private investigator Harry Bosch teams up with his half-brother, the Lincoln Lawyer Mickey Haller, to defend a woman imprisoned for killing her ex-husband.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811595/THRILLERS-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:05:18.000Z" - }, - { - "title": "LITERARY FICTION", - "link": "https://www.dailymail.co.uk/home/books/article-12811569/LITERARY-FICTION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:05:11 GMT", - "enclosure": { - "length": "7451", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78441183-0-image-m-29_1701377381407.jpg" - }, - "content": "One of our most consistently surprising novelists rips up the rulebook again, taking us into space in the company of six astronauts circling Earth on the \u00adInternational Space Station.", - "contentSnippet": "One of our most consistently surprising novelists rips up the rulebook again, taking us into space in the company of six astronauts circling Earth on the \u00adInternational Space Station.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811569/LITERARY-FICTION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:05:11.000Z" - }, - { - "title": "POETRY", - "link": "https://www.dailymail.co.uk/home/books/article-12811455/POETRY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:05:03 GMT", - "enclosure": { - "length": "5380", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78440525-0-image-m-21_1701376405276.jpg" - }, - "content": "The last in William Sieghart's brilliant Poetry Pharmacy trilogy is full of wisdom and will bring comfort to anyone who yearns to soothe a troubled heart and learn more about poetry.", - "contentSnippet": "The last in William Sieghart's brilliant Poetry Pharmacy trilogy is full of wisdom and will bring comfort to anyone who yearns to soothe a troubled heart and learn more about poetry.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811455/POETRY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:05:03.000Z" - }, - { - "title": "GARDENING:\u00a0If you're a gardener you'll really dig these", - "link": "https://www.dailymail.co.uk/home/books/article-12811453/GARDENING-youre-gardener-youll-really-dig-these.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 22:04:55 GMT", - "enclosure": { - "length": "5345", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78439747-0-image-m-45_1701375615531.jpg" - }, - "content": "With weather patterns getting more extreme, many gardeners are having to rethink their outdoor spaces. Designer Tom Massey offers lots of encouraging, practical advice.", - "contentSnippet": "With weather patterns getting more extreme, many gardeners are having to rethink their outdoor spaces. Designer Tom Massey offers lots of encouraging, practical advice.", - "guid": "https://www.dailymail.co.uk/home/books/article-12811453/GARDENING-youre-gardener-youll-really-dig-these.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T22:04:55.000Z" - }, - { - "title": "Crown Princess Victoria of Sweden stuns in black Toteme gown as she and Prince Daniel join Kate and William at the Royal Variety Performance", - "link": "https://www.dailymail.co.uk/femail/article-12811577/Crown-Princess-Victoria-Sweden-stuns-black-Toteme-gown-Prince-Daniel-join-Kate-William-Royal-Variety-Performance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 30 Nov 2023 21:54:29 GMT", - "enclosure": { - "length": "9118", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443413-0-image-a-84_1701380570772.jpg" - }, - "content": "The Duke and Duchess of V\u00e4sterg\u00f6tland appeared in high spirits as they arrived at the\u00a0Royal Albert Hall in London this evening. The eldest child of King Carl XVI Gustaf , 46, opted for a sophisticated ensemble.", - "contentSnippet": "The Duke and Duchess of V\u00e4sterg\u00f6tland appeared in high spirits as they arrived at the\u00a0Royal Albert Hall in London this evening. The eldest child of King Carl XVI Gustaf , 46, opted for a sophisticated ensemble.", - "guid": "https://www.dailymail.co.uk/femail/article-12811577/Crown-Princess-Victoria-Sweden-stuns-black-Toteme-gown-Prince-Daniel-join-Kate-William-Royal-Variety-Performance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-30T21:54:29.000Z" - }, - { - "title": "There's a moral void at the heart of Omid Scobie's laughably partisan book - and the entire Sussex industrial grievance complex: JAN MOIR reviews Endgame", - "link": "https://www.dailymail.co.uk/home/books/article-12807069/Omid-Scobie-book-JAN-MOIR-reviews-Endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 29 Nov 2023 23:30:14 GMT", - "enclosure": { - "length": "9575", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/29/22/78394585-0-image-a-62_1701296628464.jpg" - }, - "content": "JAN MOIR: Within days of its publication, Endgame has already been described as a poisonous exercise in vengeance and, believe me, that is almost one of the positives.", - "contentSnippet": "JAN MOIR: Within days of its publication, Endgame has already been described as a poisonous exercise in vengeance and, believe me, that is almost one of the positives.", - "guid": "https://www.dailymail.co.uk/home/books/article-12807069/Omid-Scobie-book-JAN-MOIR-reviews-Endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-29T23:30:14.000Z" - }, - { - "title": "Buy a bungalow for 50p: Rundown homes made of corrugated tin are for sale in mining village priced at \u00a31 for the pair - and seller says they'd make a perfect AirBnB", - "link": "https://www.dailymail.co.uk/news/article-12804369/Rundown-homes-corrugated-tin-sale-mining-village-AirBnB.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 29 Nov 2023 11:58:45 GMT", - "enclosure": { - "length": "11738", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/29/11/78368387-0-image-a-35_1701256949189.jpg" - }, - "content": "The two rundown homes made of brick-coloured corrugated sheets, featuring large bay windows, in Crumlin near Blackwood in Gwent, are in a 'poor state of repair' according to the listing.", - "contentSnippet": "The two rundown homes made of brick-coloured corrugated sheets, featuring large bay windows, in Crumlin near Blackwood in Gwent, are in a 'poor state of repair' according to the listing.", - "guid": "https://www.dailymail.co.uk/news/article-12804369/Rundown-homes-corrugated-tin-sale-mining-village-AirBnB.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-29T11:58:45.000Z" - }, - { - "title": "A view with a room! Tiny beach shack no bigger than a garage which overlooks picturesque Welsh beach dubbed 'Cheshire by the Sea' goes on the market for \u00a3185,000", - "link": "https://www.dailymail.co.uk/property/article-12795511/A-view-room-Tiny-beach-shack-no-bigger-garage-overlooks-picturesque-Welsh-beach-dubbed-Cheshire-Sea-goes-market-185-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 27 Nov 2023 13:07:25 GMT", - "enclosure": { - "length": "7163", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/27/12/78277519-0-image-m-28_1701089092912.jpg" - }, - "content": "The tiny beach shack is a simple corrugated hut but overlooks the sandy beach in the village of Abersoch, North Wales - which has been dubbed 'Cheshire by the Sea' due to the rise of second homeowning.", - "contentSnippet": "The tiny beach shack is a simple corrugated hut but overlooks the sandy beach in the village of Abersoch, North Wales - which has been dubbed 'Cheshire by the Sea' due to the rise of second homeowning.", - "guid": "https://www.dailymail.co.uk/property/article-12795511/A-view-room-Tiny-beach-shack-no-bigger-garage-overlooks-picturesque-Welsh-beach-dubbed-Cheshire-Sea-goes-market-185-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-27T13:07:25.000Z" - }, - { - "title": "Calling all Mail Commenters - we want to know what YOU think!", - "link": "https://www.dailymail.co.uk/home/article-12795537/Mail-Commenters-survey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 27 Nov 2023 12:12:13 GMT", - "enclosure": { - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/i/pix/m_logo_154x115px.png" - }, - "content": "Thank you for being a valued member of the Mail Community. Your opinion really matters to us and we would like to invite you to participate in a short survey, to help us improve.", - "contentSnippet": "Thank you for being a valued member of the Mail Community. Your opinion really matters to us and we would like to invite you to participate in a short survey, to help us improve.", - "guid": "https://www.dailymail.co.uk/home/article-12795537/Mail-Commenters-survey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-27T12:12:13.000Z" - }, - { - "title": "Shopping Finder Charlotte Tilbury Mystery Box: Terms and conditions", - "link": "https://www.dailymail.co.uk/home/article-12792755/Shopping-Finder-Charlotte-Tilbury-Mystery-Box-Terms-conditions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 27 Nov 2023 00:11:47 GMT", - "enclosure": { - "length": "6617", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/26/15/78250117-0-image-a-4_1701013575469.jpg" - }, - "content": "This prize draw (the \"Promotion\") is only open to UK residents (excluding Northern Ireland ), excluding employees and agents of (a) the Promoter or (b) any company connected with...", - "contentSnippet": "This prize draw (the \"Promotion\") is only open to UK residents (excluding Northern Ireland ), excluding employees and agents of (a) the Promoter or (b) any company connected with...", - "guid": "https://www.dailymail.co.uk/home/article-12792755/Shopping-Finder-Charlotte-Tilbury-Mystery-Box-Terms-conditions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-27T00:11:47.000Z" - }, - { - "title": "Flaming marvellous!\u00a0Brighten those borders with stems that lift winter's gloom", - "link": "https://www.dailymail.co.uk/home/gardening/article-12792983/Flaming-marvellous-Brighten-borders-stems-lift-winters-gloom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 22:08:21 GMT", - "enclosure": { - "length": "7985", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/26/17/78252525-0-image-a-5_1701021496971.jpg" - }, - "content": "When plants lose their leaves it might seem like the end of the story, but for some species, the moment they cast off their foliage is when they come into their own.", - "contentSnippet": "When plants lose their leaves it might seem like the end of the story, but for some species, the moment they cast off their foliage is when they come into their own.", - "guid": "https://www.dailymail.co.uk/home/gardening/article-12792983/Flaming-marvellous-Brighten-borders-stems-lift-winters-gloom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T22:08:21.000Z" - }, - { - "title": "Action plan: CIAR BYRNE's essential jobs for your garden this week", - "link": "https://www.dailymail.co.uk/home/gardening/article-12793011/Action-plan-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 22:08:10 GMT", - "enclosure": { - "length": "11527", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/26/17/78252521-0-image-a-9_1701021300771.jpg" - }, - "content": "As we move into the darkest time of the year, raise your spirits by planting a winter container. Wallflowers (Erysimum) are biennial. Plant them now for their foliage and they will reward you.", - "contentSnippet": "As we move into the darkest time of the year, raise your spirits by planting a winter container. Wallflowers (Erysimum) are biennial. Plant them now for their foliage and they will reward you.", - "guid": "https://www.dailymail.co.uk/home/gardening/article-12793011/Action-plan-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T22:08:10.000Z" - }, - { - "title": "Inside the pokey apartment from the Detectorists: 'Light and airy' one-bed from BBC show on sale at \u00a3200K - and fans want to club together and buy it", - "link": "https://www.dailymail.co.uk/property/article-12783851/Inside-pokey-apartment-Detectorists-Light-airy-one-bed-BBC-sale-200K-fans-want-club-buy-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 11:55:11 GMT", - "enclosure": { - "length": "6550", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/23/12/78154871-0-image-m-42_1700742829314.jpg" - }, - "content": "EXCLUSIVE: The one-bed flat from the hit BBC series the Detectorists is up for sale for \u00a3200,000 - driving super fans to suggest clubbing together to buy the iconic Suffolk property.", - "contentSnippet": "EXCLUSIVE: The one-bed flat from the hit BBC series the Detectorists is up for sale for \u00a3200,000 - driving super fans to suggest clubbing together to buy the iconic Suffolk property.", - "guid": "https://www.dailymail.co.uk/property/article-12783851/Inside-pokey-apartment-Detectorists-Light-airy-one-bed-BBC-sale-200K-fans-want-club-buy-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T11:55:11.000Z" - }, - { - "title": "ISLA FISHER reveals the touching gift Sacha Baron Cohen bought her after her father died... as she shares the personal mission that took her back to Scotland, land of her forefathers", - "link": "https://www.dailymail.co.uk/home/you/article-12770807/ISLA-FISHER-Sacha-Baron-Cohen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 08:27:36 GMT", - "enclosure": { - "length": "9985", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/25/13/78225953-0-image-a-1_1700920261257.jpg" - }, - "content": "Actress ISLA FISHER on family roots, her charity work as a Save the Children ambassador - and a meaningful gift from husband Sacha Baron Cohen", - "contentSnippet": "Actress ISLA FISHER on family roots, her charity work as a Save the Children ambassador - and a meaningful gift from husband Sacha Baron Cohen", - "guid": "https://www.dailymail.co.uk/home/you/article-12770807/ISLA-FISHER-Sacha-Baron-Cohen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T08:27:36.000Z" - }, - { - "title": "Twist & shake: Mulled apple & whiskey", - "link": "https://www.dailymail.co.uk/home/you/article-12771543/Twist-shake-Mulled-apple-whiskey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 00:02:01 GMT", - "enclosure": { - "length": "8382", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026785-0-image-m-198_1700497006344.jpg" - }, - "content": "Warming and wintery, perfect after a chilly walk", - "contentSnippet": "Warming and wintery, perfect after a chilly walk", - "guid": "https://www.dailymail.co.uk/home/you/article-12771543/Twist-shake-Mulled-apple-whiskey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T00:02:01.000Z" - }, - { - "title": "Twist & shake: Elderflower martini", - "link": "https://www.dailymail.co.uk/home/you/article-12771567/Twist-shake-Elderflower-martini.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 00:01:58 GMT", - "enclosure": { - "length": "7444", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026771-0-image-m-222_1700497335697.jpg" - }, - "content": "A sweet twist on the classic martini", - "contentSnippet": "A sweet twist on the classic martini", - "guid": "https://www.dailymail.co.uk/home/you/article-12771567/Twist-shake-Elderflower-martini.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T00:01:58.000Z" - }, - { - "title": "Twist & shake: All-Irish punch bowl", - "link": "https://www.dailymail.co.uk/home/you/article-12771559/Twist-shake-Irish-punch-bowl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 00:01:55 GMT", - "enclosure": { - "length": "9644", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026773-0-image-m-209_1700497176603.jpg" - }, - "content": "Nobody needs to spike this punch...", - "contentSnippet": "Nobody needs to spike this punch...", - "guid": "https://www.dailymail.co.uk/home/you/article-12771559/Twist-shake-Irish-punch-bowl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T00:01:55.000Z" - }, - { - "title": "Twist & shake: Plum vodka", - "link": "https://www.dailymail.co.uk/home/you/article-12771527/Twist-shake-Plum-vodka.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 00:01:52 GMT", - "enclosure": { - "length": "6162", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026787-0-image-m-186_1700496823094.jpg" - }, - "content": "A showstopper to serve your friends and family", - "contentSnippet": "A showstopper to serve your friends and family", - "guid": "https://www.dailymail.co.uk/home/you/article-12771527/Twist-shake-Plum-vodka.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T00:01:52.000Z" - }, - { - "title": "Twist & shake: Gin rickey", - "link": "https://www.dailymail.co.uk/home/you/article-12771511/Twist-shake-Gin-rickey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 00:01:49 GMT", - "enclosure": { - "length": "5161", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026777-0-image-m-165_1700496395139.jpg" - }, - "content": "Deliciously fresh", - "contentSnippet": "Deliciously fresh", - "guid": "https://www.dailymail.co.uk/home/you/article-12771511/Twist-shake-Gin-rickey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T00:01:49.000Z" - }, - { - "title": "Twist & shake: Hot buttered rum", - "link": "https://www.dailymail.co.uk/home/you/article-12771519/Twist-shake-Hot-buttered-rum.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 26 Nov 2023 00:01:46 GMT", - "enclosure": { - "length": "7089", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026779-0-image-m-174_1700496597900.jpg" - }, - "content": "A true winter warmer", - "contentSnippet": "A true winter warmer", - "guid": "https://www.dailymail.co.uk/home/you/article-12771519/Twist-shake-Hot-buttered-rum.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-26T00:01:46.000Z" - }, - { - "title": "San Francisco's only private island is set to hit the market for $25 million - but you'll have to be prepared to live with no running water, power or wi-fi", - "link": "https://www.dailymail.co.uk/property/article-12780467/San-Francisco-Red-Rock-Island-Sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 25 Nov 2023 19:56:06 GMT", - "enclosure": { - "length": "9664", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/22/21/78120743-0-image-a-68_1700688966446.jpg" - }, - "content": "Red Rock Island - also known as Moleta and Golden Rock - is set to come in hot on the San Francisco Bay housing market at $25 million, a bargain for owning a private island", - "contentSnippet": "Red Rock Island - also known as Moleta and Golden Rock - is set to come in hot on the San Francisco Bay housing market at $25 million, a bargain for owning a private island", - "guid": "https://www.dailymail.co.uk/property/article-12780467/San-Francisco-Red-Rock-Island-Sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-25T19:56:06.000Z" - }, - { - "title": "Sole sister to the stars: Claudia Joseph meets LISA KAY, the woman behind the shoe brand the A-list can't get enough of", - "link": "https://www.dailymail.co.uk/home/you/article-12771433/Sole-sister-stars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 25 Nov 2023 19:13:02 GMT", - "enclosure": { - "length": "6980", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/15/78026167-0-image-m-136_1700495186645.jpg" - }, - "content": "The A-list can't get enough of LISA KAY's shoe brand Sole Bliss. Claudia Joseph meets the woman with a knack for blending red-carpet style with serious comfort", - "contentSnippet": "The A-list can't get enough of LISA KAY's shoe brand Sole Bliss. Claudia Joseph meets the woman with a knack for blending red-carpet style with serious comfort", - "guid": "https://www.dailymail.co.uk/home/you/article-12771433/Sole-sister-stars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-25T19:13:02.000Z" - }, - { - "title": "The Chic List:\u00a0How to style out party season", - "link": "https://www.dailymail.co.uk/home/you/article-12770329/The-Chic-List-style-party-season.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 25 Nov 2023 19:08:49 GMT", - "enclosure": { - "length": "5202", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/11/78018427-0-image-m-17_1700481273617.jpg" - }, - "content": "Fashion columnist and influencer Joanne Hegarty", - "contentSnippet": "Fashion columnist and influencer Joanne Hegarty", - "guid": "https://www.dailymail.co.uk/home/you/article-12770329/The-Chic-List-style-party-season.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-25T19:08:49.000Z" - }, - { - "title": "'Step away from the glitter': Beauty editor ROSIE GREEN'S 5-step party make up plan from sexy eyeshadow to megawatt skin", - "link": "https://www.dailymail.co.uk/home/you/article-12770473/Step-away-glitter-Beauty-editor-ROSIE-GREENS-5-step-party-make-plan-sexy-eyeshadow-megawatt-skin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 25 Nov 2023 19:03:44 GMT", - "enclosure": { - "length": "6480", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/12/78019703-0-image-m-61_1700483705666.jpg" - }, - "content": "No need to go OTT with the party make-up, says Rosie Green - just amp up your usual look", - "contentSnippet": "No need to go OTT with the party make-up, says Rosie Green - just amp up your usual look", - "guid": "https://www.dailymail.co.uk/home/you/article-12770473/Step-away-glitter-Beauty-editor-ROSIE-GREENS-5-step-party-make-plan-sexy-eyeshadow-megawatt-skin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-25T19:03:44.000Z" - }, - { - "title": "'I love being gay, though I don't do it very much now':\u00a0Out, proud and extremely loud, actress MIRIAM MARGOLYES, 82, is renowned for telling it as she sees it. She talks love and death... as well as laying off JK Rowling", - "link": "https://www.dailymail.co.uk/home/you/article-12771687/I-love-gay-dont-proud-extremely-loud-actress-MIRIAM-MARGOLYES-82-renowned-telling-sees-talks-love-death-laying-JK-Rowling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 25 Nov 2023 16:44:55 GMT", - "enclosure": { - "length": "6073", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78028153-0-image-m-7_1700498922654.jpg" - }, - "content": "Out, proud and extremely loud, actress MIRIAM MARGOLYES, 82, talks to Nick Curtis about love, death and laying off J K Rowling", - "contentSnippet": "Out, proud and extremely loud, actress MIRIAM MARGOLYES, 82, talks to Nick Curtis about love, death and laying off J K Rowling", - "guid": "https://www.dailymail.co.uk/home/you/article-12771687/I-love-gay-dont-proud-extremely-loud-actress-MIRIAM-MARGOLYES-82-renowned-telling-sees-talks-love-death-laying-JK-Rowling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-25T16:44:55.000Z" - }, - { - "title": "Come into the cold", - "link": "https://www.dailymail.co.uk/home/you/article-12775019/Come-cold.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 25 Nov 2023 13:28:43 GMT", - "enclosure": { - "length": "7636", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/21/12/78057665-0-image-m-14_1700568845327.jpg" - }, - "content": "Stripped of high-summer foliage, Britain's finest gardens assume a stark beauty in winter", - "contentSnippet": "Stripped of high-summer foliage, Britain's finest gardens assume a stark beauty in winter", - "guid": "https://www.dailymail.co.uk/home/you/article-12775019/Come-cold.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-25T13:28:43.000Z" - }, - { - "title": "Life at the sharp end", - "link": "https://www.dailymail.co.uk/home/you/article-12775191/Life-sharp-end.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 25 Nov 2023 13:28:31 GMT", - "enclosure": { - "length": "7765", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/11/21/13/78059777-0-image-m-35_1700571781483.jpg" - }, - "content": "Master arrowsmith HECTOR COLE's museum-quality pieces are prized across the globe. He tells Maddy Fletcher how his boyhood passion was forged", - "contentSnippet": "Master arrowsmith HECTOR COLE's museum-quality pieces are prized across the globe. He tells Maddy Fletcher how his boyhood passion was forged", - "guid": "https://www.dailymail.co.uk/home/you/article-12775191/Life-sharp-end.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-11-25T13:28:31.000Z" - }, - { - "title": "Bomb blitz attack obliterates Russia's longest railway tunnel severing key freight link with China in the Severomuysky mountains, Ukraine claims", - "link": "https://www.dailymail.co.uk/news/article-12812387/Ukrainian-blitz-attack-obliterates-Russias-longest-railway-tunnel-severing-key-freight-link-China-Severomuysky-mountains.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:58:09 GMT", - "enclosure": { - "length": "6228", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78450425-0-image-a-8_1701393646967.jpg" - }, - "content": "Four explosive devices were detonated overnight as a cargo train was moving through the Severomuysky Tunnel in Buryatia region, which borders Mongolia, a source told Reuters", - "contentSnippet": "Four explosive devices were detonated overnight as a cargo train was moving through the Severomuysky Tunnel in Buryatia region, which borders Mongolia, a source told Reuters", - "guid": "https://www.dailymail.co.uk/news/article-12812387/Ukrainian-blitz-attack-obliterates-Russias-longest-railway-tunnel-severing-key-freight-link-China-Severomuysky-mountains.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:58:09.000Z" - }, - { - "title": "Business minister raises the alarm on the tourist tax, saying the government is 'very concerned' about its impact on companies", - "link": "https://www.dailymail.co.uk/news/article-12812465/Business-minister-raises-alarm-tourist-tax-saying-government-concerned-impact-companies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:55:22 GMT", - "enclosure": { - "length": "3522", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78450569-0-image-m-38_1701395182988.jpg" - }, - "content": "Kevin Hollinrake said Cabinet colleagues would 'make our views known very strongly' to the Treasury as it reviews whether to reinstate tax-free shopping for overseas visitors.", - "contentSnippet": "Kevin Hollinrake said Cabinet colleagues would 'make our views known very strongly' to the Treasury as it reviews whether to reinstate tax-free shopping for overseas visitors.", - "guid": "https://www.dailymail.co.uk/news/article-12812465/Business-minister-raises-alarm-tourist-tax-saying-government-concerned-impact-companies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:55:22.000Z" - }, - { - "title": "I'm A Celebrity bosses could 'rethink evictions' as show is at risk of a 'full-blown crisis' following departures of Jamie Lynn Spears and Grace Dent", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812435/im-celebrity-evictions-rethink-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:46:43 GMT", - "enclosure": { - "length": "9855", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78450601-0-image-a-66_1701393834968.jpg" - }, - "content": "I'm A Celebrity bosses are said to be 'rethinking' the evictions process as the show teeters on the brink of a 'full-blown crisis'.\u00a0", - "contentSnippet": "I'm A Celebrity bosses are said to be 'rethinking' the evictions process as the show teeters on the brink of a 'full-blown crisis'.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812435/im-celebrity-evictions-rethink-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:46:43.000Z" - }, - { - "title": "Rishi Sunak warns China it must step up efforts to tackle climate change as he flies to the Cop28 summit", - "link": "https://www.dailymail.co.uk/news/article-12812477/Rishi-Sunak-China-climate-change-Cop28.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:45:00 GMT", - "enclosure": { - "length": "11142", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78450637-0-image-a-217_1701394041244.jpg" - }, - "content": "The Prime Minister's official spokesman said China is 'vitally important' in addressing global warming, as Mr Sunak prepared to fly to Dubai for Cop28", - "contentSnippet": "The Prime Minister's official spokesman said China is 'vitally important' in addressing global warming, as Mr Sunak prepared to fly to Dubai for Cop28", - "guid": "https://www.dailymail.co.uk/news/article-12812477/Rishi-Sunak-China-climate-change-Cop28.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:45:00.000Z" - }, - { - "title": "The House Of Bernarda Alba review: Five sisters stuck in a sad (and sweary) house with a very forbidding mother, writes PATRICK MARMION", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812411/The-House-Bernarda-Alba-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:43:19 GMT", - "enclosure": { - "length": "10116", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78449323-0-image-a-192_1701391950102.jpg" - }, - "content": "PATRICK MARMION: This is not a play that ends well for anyone. Great as it is, the conclusion is as shocking as the barbarous execution of its author. Do not expect winter cheer", - "contentSnippet": "PATRICK MARMION: This is not a play that ends well for anyone. Great as it is, the conclusion is as shocking as the barbarous execution of its author. Do not expect winter cheer", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812411/The-House-Bernarda-Alba-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:43:19.000Z" - }, - { - "title": "My Teacher The Abuser: Fighting For Justice review - I was left seething this predator will never face proper justice, writes CHRISTOPHER STEVENS", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812419/My-Teacher-Abuser-Fighting-Justice-review-left-seething-predator-never-face-proper-justice-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:40:21 GMT", - "enclosure": { - "length": "3024", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78449829-0-image-m-90_1701392627397.jpg" - }, - "content": "The pity is that justice can never really be done. The sexual predators whose abuses went unchecked in British schools during the 1970s and earlier are all now dead or ancient.", - "contentSnippet": "The pity is that justice can never really be done. The sexual predators whose abuses went unchecked in British schools during the 1970s and earlier are all now dead or ancient.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812419/My-Teacher-Abuser-Fighting-Justice-review-left-seething-predator-never-face-proper-justice-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:40:21.000Z" - }, - { - "title": "EPHRAIM HARDCASTLE: The naming of two royals allegedly accused of racism could make King Charles's task of holding on to overseas thrones more difficult", - "link": "https://www.dailymail.co.uk/debate/article-12812373/EPHRAIM-HARDCASTLE-naming-two-royals-allegedly-accused-racism-make-King-Charless-task-holding-overseas-thrones-difficult.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:38:29 GMT", - "enclosure": { - "length": "6913", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78445631-0-image-a-65_1701391812678.jpg" - }, - "content": "EPHRAIM HARDCASTLE: With Barbados no longer a kingdom, other Commonwealth countries Jamaica, Grenada, and Antigua and Barbuda face growing republican sentiment.", - "contentSnippet": "EPHRAIM HARDCASTLE: With Barbados no longer a kingdom, other Commonwealth countries Jamaica, Grenada, and Antigua and Barbuda face growing republican sentiment.", - "guid": "https://www.dailymail.co.uk/debate/article-12812373/EPHRAIM-HARDCASTLE-naming-two-royals-allegedly-accused-racism-make-King-Charless-task-holding-overseas-thrones-difficult.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:38:29.000Z" - }, - { - "title": "EDEN CONFIDENTIAL: Country Life reveals its new dinner party rules... Smoking jackets and sex are IN!", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812267/EDEN-CONFIDENTIAL-Country-Life-reveals-new-dinner-party-rules-Smoking-jackets-sex-IN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:35:08 GMT", - "enclosure": { - "length": "10905", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448247-0-image-a-38_1701389341723.jpg" - }, - "content": "EDEN CONFIDENTIAL: Once, in the old days, its engagement photographs of 'girls in pearls' were about as racy as it got.", - "contentSnippet": "EDEN CONFIDENTIAL: Once, in the old days, its engagement photographs of 'girls in pearls' were about as racy as it got.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812267/EDEN-CONFIDENTIAL-Country-Life-reveals-new-dinner-party-rules-Smoking-jackets-sex-IN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:35:08.000Z" - }, - { - "title": "Biden name drops Prince Harry and his role in the Invictus Games as the Royal Family is embroiled in the fallout from Omid Scobie's race revelations - and after Jill turned down an invite to the event to avoid upsetting Buckingham Palace", - "link": "https://www.dailymail.co.uk/news/article-12811869/Biden-drops-Prince-Harry-royal-racist-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:26:57 GMT", - "enclosure": { - "length": "11419", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78447943-0-image-a-8_1701391111489.jpg" - }, - "content": "President Joe Biden name dropped Prince Harry and his work with the Invictus Games at Thursday night's National Christmas Tree Lighting on the Ellipse.", - "contentSnippet": "President Joe Biden name dropped Prince Harry and his work with the Invictus Games at Thursday night's National Christmas Tree Lighting on the Ellipse.", - "guid": "https://www.dailymail.co.uk/news/article-12811869/Biden-drops-Prince-Harry-royal-racist-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:26:57.000Z" - }, - { - "title": "Beyonce makes FIRST red carpet appearance since being hit with skin 'lightening' accusations as she flashes the flesh in glitzy dress and busty bodysuit at Renaissance film premiere in London", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812265/Beyonce-red-carpet-Renaissance-film-premiere-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 01:19:27 GMT", - "enclosure": { - "length": "8816", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448811-0-image-m-41_1701390660441.jpg" - }, - "content": "It marks her first red carpet since\u00a0her mother Tina Knowles-Lawson fired back at 'racist and self-hating' critics who accused the star of 'lightening' her skin.", - "contentSnippet": "It marks her first red carpet since\u00a0her mother Tina Knowles-Lawson fired back at 'racist and self-hating' critics who accused the star of 'lightening' her skin.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812265/Beyonce-red-carpet-Renaissance-film-premiere-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T01:19:27.000Z" - }, - { - "title": "Nicola Sturgeon's time as SNP first minister saw her clock up 112,474 air miles including regular flights from London to Scotland", - "link": "https://www.dailymail.co.uk/news/article-12812309/Eco-zealot-Nicola-Sturgeons-time-SNP-minister-saw-clock-112-474-air-miles-including-regular-flights-London-Scotland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:55:20 GMT", - "enclosure": { - "length": "9088", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78449479-0-image-a-82_1701391756928.jpg" - }, - "content": "The former SNP leader, who in June was arrested and later released without charge during a Police Scotland probe into possible fundraising fraud in her party, took 153 flights during her tenure", - "contentSnippet": "The former SNP leader, who in June was arrested and later released without charge during a Police Scotland probe into possible fundraising fraud in her party, took 153 flights during her tenure", - "guid": "https://www.dailymail.co.uk/news/article-12812309/Eco-zealot-Nicola-Sturgeons-time-SNP-minister-saw-clock-112-474-air-miles-including-regular-flights-London-Scotland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:55:20.000Z" - }, - { - "title": "Boris Johnson allies hit back at Rishi Sunak after he suggested the former PM was responsible for soaring immigration", - "link": "https://www.dailymail.co.uk/news/article-12812367/Boris-Johnson-allies-hit-Rishi-Sunak-immigration.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:53:31 GMT", - "enclosure": { - "length": "7958", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78449359-0-image-a-185_1701391789847.jpg" - }, - "content": "Mr Sunak yesterday implied he was not responsible for immigration levels he 'inherited' from Mr Johnson and Liz Truss, sparking an angry response from the ex-Prime Minister's allies.", - "contentSnippet": "Mr Sunak yesterday implied he was not responsible for immigration levels he 'inherited' from Mr Johnson and Liz Truss, sparking an angry response from the ex-Prime Minister's allies.", - "guid": "https://www.dailymail.co.uk/news/article-12812367/Boris-Johnson-allies-hit-Rishi-Sunak-immigration.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:53:31.000Z" - }, - { - "title": "Strictly Come Dancing stars Ellie Leach and Vito Coppola are accused of 'faking' their romance to gain popularity on the BBC show: 'The hope is they will endear themselves to the nation'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812259/Strictly-stars-Ellie-Leach-Vito-Coppola-faking-romance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:46:38 GMT", - "enclosure": { - "length": "11105", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448423-0-image-a-123_1701389844425.jpg" - }, - "content": "Talks of romance rumours have surrounded the couple for weeks.\u00a0", - "contentSnippet": "Talks of romance rumours have surrounded the couple for weeks.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812259/Strictly-stars-Ellie-Leach-Vito-Coppola-faking-romance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:46:38.000Z" - }, - { - "title": "Villagers whose homes are at risk of falling into the sea are left stranded after access road collapses following a land slip", - "link": "https://www.dailymail.co.uk/news/article-12812347/home-risk-falling-sea-stranded-land-slip-hemsby-norfolk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:38:10 GMT", - "enclosure": { - "length": "7388", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448915-0-image-a-184_1701391073312.jpg" - }, - "content": "Four properties in Hemsby, Norfolk, were left at risk of falling into the sea following a land slip last Friday, with the local authority failing to come out to assess the situation until Monday", - "contentSnippet": "Four properties in Hemsby, Norfolk, were left at risk of falling into the sea following a land slip last Friday, with the local authority failing to come out to assess the situation until Monday", - "guid": "https://www.dailymail.co.uk/news/article-12812347/home-risk-falling-sea-stranded-land-slip-hemsby-norfolk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:38:10.000Z" - }, - { - "title": "DAILY MAIL COMMENT: Scobie's shaky defence is lost in translation", - "link": "https://www.dailymail.co.uk/news/article-12812303/omid-scobie-defence-endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:34:37 GMT", - "enclosure": { - "length": "6161", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448441-0-image-a-169_1701390001237.jpg" - }, - "content": "DAILY MAIL COMMENT: Scobie blames translation errors for the names appearing 'accidentally' in the Dutch edition of Endgame. But can he be believed?", - "contentSnippet": "DAILY MAIL COMMENT: Scobie blames translation errors for the names appearing 'accidentally' in the Dutch edition of Endgame. But can he be believed?", - "guid": "https://www.dailymail.co.uk/news/article-12812303/omid-scobie-defence-endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:34:37.000Z" - }, - { - "title": "'Politically correct' BBC is turning off working class viewers who think the broadcaster is out of touch, Ofcom report suggests", - "link": "https://www.dailymail.co.uk/news/article-12812317/Politically-correct-BBC-working-class-Ofcom-report.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 01 Dec 2023 00:33:49 GMT", - "enclosure": { - "length": "9935", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448743-0-image-m-174_1701390527816.jpg" - }, - "content": "Lower-income audiences increasingly prefer to use rival streaming services such as Netflix and Spotify, which offer more 'engaging' and 'light-hearted' shows, the media regulator found.", - "contentSnippet": "Lower-income audiences increasingly prefer to use rival streaming services such as Netflix and Spotify, which offer more 'engaging' and 'light-hearted' shows, the media regulator found.", - "guid": "https://www.dailymail.co.uk/news/article-12812317/Politically-correct-BBC-working-class-Ofcom-report.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-01T00:33:49.000Z" - }, - { - "title": "Dozens of Palestinians are captured by IDF, stripped and paraded around Gaza", - "link": "https://www.dailymail.co.uk/news/article-12839063/Palestinians-captured-IDF-stripped-paraded-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:34:22 GMT", - "enclosure": { - "length": "8051", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78708823-0-image-a-29_1701982311269.jpg" - }, - "content": "Palestinian men allegedly surrendered in the Jabalia refugee camp, with Israeli outlet Walla saying they were stripped 'to rule out the possibility that they were carrying weapons'.", - "contentSnippet": "Palestinian men allegedly surrendered in the Jabalia refugee camp, with Israeli outlet Walla saying they were stripped 'to rule out the possibility that they were carrying weapons'.", - "guid": "https://www.dailymail.co.uk/news/article-12839063/Palestinians-captured-IDF-stripped-paraded-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:34:22.000Z" - }, - { - "title": "Inside secret heartbreak of 'Britain's kindest plumber': How ex-homeless father was inspired to become a 'charity hero' to help the disabled and frail pensioners after his son died at 16-weeks from hole in the heart - as fan Hugh Grant donates \u00a320k", - "link": "https://www.dailymail.co.uk/news/article-12840877/Inside-remarkable-life-Britains-kindest-plumber-father-bullied-brink-suicide-having-no-teeth-baby-boy-tragically-died-dedicates-life-helping-disabled-children-frail-pensioners-winning-Hugh-Grant-fan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:33:08 GMT", - "enclosure": { - "length": "6409", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/71392529-0-image-m-12_1702025764155.jpg" - }, - "content": "Selfless James Anderson has touched the hearts of the nation with his generosity, which has seen him offering free plumbing for frail pensioners with cancer and disabled children", - "contentSnippet": "Selfless James Anderson has touched the hearts of the nation with his generosity, which has seen him offering free plumbing for frail pensioners with cancer and disabled children", - "guid": "https://www.dailymail.co.uk/news/article-12840877/Inside-remarkable-life-Britains-kindest-plumber-father-bullied-brink-suicide-having-no-teeth-baby-boy-tragically-died-dedicates-life-helping-disabled-children-frail-pensioners-winning-Hugh-Grant-fan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:33:08.000Z" - }, - { - "title": "Why are Tory MPs prioritising illegal migrants over the British people? asks RICHARD LITTLEJOHN", - "link": "https://www.dailymail.co.uk/debate/article-12839261/tory-mps-illegal-migrants-british-people-richard-littlejohn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:32:35 GMT", - "enclosure": { - "length": "9484", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709955-0-image-a-36_1701982540582.jpg" - }, - "content": "RICHARD LITTLEJOHN: An old friend of mine was enthusing about her next holiday in the New Year. She's just booked herself a Dian Fossey-style Gorillas In The Mist safari... in Rwanda.", - "contentSnippet": "RICHARD LITTLEJOHN: An old friend of mine was enthusing about her next holiday in the New Year. She's just booked herself a Dian Fossey-style Gorillas In The Mist safari... in Rwanda.", - "guid": "https://www.dailymail.co.uk/debate/article-12839261/tory-mps-illegal-migrants-british-people-richard-littlejohn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:32:35.000Z" - }, - { - "title": "Jon Rahm jumps ship from the PGA Tour to LIV Golf in eye-watering deal worth upwards of $500MILLION... with the Saudi rebel tour confirming his move in social media gaffe on Thursday night", - "link": "https://www.dailymail.co.uk/sport/golf/article-12833069/Jon-Rahm-jumps-ship-PGA-Tour-LIV-Golf-eye-watering-deal-worth-upwards-570MILLION-Spanish-two-time-major-winner-set-announced-Saudi-backed-breakaway-TODAY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:32:16 GMT", - "enclosure": { - "length": "10747", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78708239-0-image-a-31_1701979474843.jpg" - }, - "content": "There had been increasing speculation over the past few weeks that the two-time major winner would defect to Greg Norman's rebel circuit and the move reportedly is now a done deal.", - "contentSnippet": "There had been increasing speculation over the past few weeks that the two-time major winner would defect to Greg Norman's rebel circuit and the move reportedly is now a done deal.", - "guid": "https://www.dailymail.co.uk/sport/golf/article-12833069/Jon-Rahm-jumps-ship-PGA-Tour-LIV-Golf-eye-watering-deal-worth-upwards-570MILLION-Spanish-two-time-major-winner-set-announced-Saudi-backed-breakaway-TODAY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:32:16.000Z" - }, - { - "title": "Boeing 737 passenger jet is forced to make emergency landing after 'micro-explosions' cause both engines to catch fire during take-off", - "link": "https://www.dailymail.co.uk/news/article-12840849/Boeing-737-passenger-jet-forced-make-emergency-landing-micro-explosions-cause-engines-catch-fire-off.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:30:45 GMT", - "enclosure": { - "length": "3074", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/78727689-0-image-m-12_1702024288118.jpg" - }, - "content": "The S7 airline plane with 175 passengers was flying from Novosibirsk - Russia 's third largest city - to capital city Moscow. The fires started as the plane was on the runway taking off, passengers said.", - "contentSnippet": "The S7 airline plane with 175 passengers was flying from Novosibirsk - Russia 's third largest city - to capital city Moscow. The fires started as the plane was on the runway taking off, passengers said.", - "guid": "https://www.dailymail.co.uk/news/article-12840849/Boeing-737-passenger-jet-forced-make-emergency-landing-micro-explosions-cause-engines-catch-fire-off.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:30:45.000Z" - }, - { - "title": "Daisy Lowe's designer mother Pearl is putting her beachside bolthole up for sale for \u00a31.8million after she transformed it during lockdown", - "link": "https://www.dailymail.co.uk/property/article-12840825/Daisy-Lowes-designer-mother-Pearl-beachside-bolthole-transformed-lockdown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:27:08 GMT", - "enclosure": { - "length": "7536", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/09/78728563-0-image-a-9_1702026257570.jpg" - }, - "content": "The 1940s Shell House was built by a soldier who was married to shell artist Theresa Arnott, who crafted the home with seaside-themed installations using shells from Winchelsea beach.", - "contentSnippet": "The 1940s Shell House was built by a soldier who was married to shell artist Theresa Arnott, who crafted the home with seaside-themed installations using shells from Winchelsea beach.", - "guid": "https://www.dailymail.co.uk/property/article-12840825/Daisy-Lowes-designer-mother-Pearl-beachside-bolthole-transformed-lockdown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:27:08.000Z" - }, - { - "title": "'Come on mate, hand yourself in': Parents' tearful plea for hit-and-run driver to hand themselves in after their seven-year-old son was hit and killed - as man, 49, is arrested", - "link": "https://www.dailymail.co.uk/news/article-12839023/Man-arrested-boy-seven-dies-hit-run.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:24:15 GMT", - "enclosure": { - "length": "9832", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78702947-0-image-m-11_1701978190106.jpg" - }, - "content": "William Brown was wearing his beloved Christiano Ronaldo kit when was knocked down by a car on Sandgate Esplanade in Folkestone, Kent on Wednesday evening.", - "contentSnippet": "William Brown was wearing his beloved Christiano Ronaldo kit when was knocked down by a car on Sandgate Esplanade in Folkestone, Kent on Wednesday evening.", - "guid": "https://www.dailymail.co.uk/news/article-12839023/Man-arrested-boy-seven-dies-hit-run.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:24:15.000Z" - }, - { - "title": "Rishi Sunak 'told Rwanda flight law will make it EASIER for migrants to stay in Britain' as Tory 'five families' go to war for soul of party amid 'insane' threats to replace PM as leader- as cost of project doubles to almost \u00a3300million", - "link": "https://www.dailymail.co.uk/news/article-12840977/Rishi-Sunak-Rwanda-law-EASIER-migrants-stay-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:23:32 GMT", - "enclosure": { - "length": "8283", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/78728275-0-image-a-9_1702025596326.jpg" - }, - "content": "Two senior lawyers told the PM that the hastily drawn-up plan still gave arrivals the ability to individually challenge their removal to Africa in the courts.", - "contentSnippet": "Two senior lawyers told the PM that the hastily drawn-up plan still gave arrivals the ability to individually challenge their removal to Africa in the courts.", - "guid": "https://www.dailymail.co.uk/news/article-12840977/Rishi-Sunak-Rwanda-law-EASIER-migrants-stay-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:23:32.000Z" - }, - { - "title": "Bird charity breaks ties with Chris Packham because outspoken broadcaster was 'becoming too political' and saying people should consider breaking the law", - "link": "https://www.dailymail.co.uk/news/article-12840799/Bird-charity-sacks-Chris-Packham-broadcaster-political.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:22:07 GMT", - "enclosure": { - "length": "12047", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/78727523-0-image-m-6_1702023359637.jpg" - }, - "content": "TV Presenter Chris Packham has been sacked by a Bird of Prey rehabilitation charity for becoming too 'political', which was dividing the views of its members.", - "contentSnippet": "TV Presenter Chris Packham has been sacked by a Bird of Prey rehabilitation charity for becoming too 'political', which was dividing the views of its members.", - "guid": "https://www.dailymail.co.uk/news/article-12840799/Bird-charity-sacks-Chris-Packham-broadcaster-political.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:22:07.000Z" - }, - { - "title": "Elizabeth line is hit by severe delays AGAIN morning after sex predator took advantage of rush hour chaos to assault passenger when thousands including Rachel Riley and James Blunt were trapped for hours on trains", - "link": "https://www.dailymail.co.uk/news/article-12840695/Elizabeth-Line-severe-delays-Rachel-Riley-James-Blunt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:17:15 GMT", - "enclosure": { - "length": "4130", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709573-0-image-m-44_1701982389019.jpg" - }, - "content": "Two people were injured when thousands of passengers were stuck on packed Elizabeth line trains in London for hours without power - with James Blunt and\u00a0Rachel Riley among those trapped.", - "contentSnippet": "Two people were injured when thousands of passengers were stuck on packed Elizabeth line trains in London for hours without power - with James Blunt and\u00a0Rachel Riley among those trapped.", - "guid": "https://www.dailymail.co.uk/news/article-12840695/Elizabeth-Line-severe-delays-Rachel-Riley-James-Blunt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:17:15.000Z" - }, - { - "title": "Zoopla's most viewed homes of 2023: From a \u00a325k terrace in Liverpool to a \u00a336.5m London mansion", - "link": "https://www.dailymail.co.uk/property/article-12837781/Zooplas-viewed-homes-2023-25k-terrace-Liverpool-36-5m-London-mansion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 09:15:36 GMT", - "enclosure": { - "length": "8751", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78699377-0-image-a-43_1701965670966.jpg" - }, - "content": "The most popular homes for sale online this year have been revealed - and they prove that people are not only interested in snooping at high-value homes, but also more modest offerings.", - "contentSnippet": "The most popular homes for sale online this year have been revealed - and they prove that people are not only interested in snooping at high-value homes, but also more modest offerings.", - "guid": "https://www.dailymail.co.uk/property/article-12837781/Zooplas-viewed-homes-2023-25k-terrace-Liverpool-36-5m-London-mansion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T09:15:36.000Z" - }, - { - "title": "I almost wept with relief when Kemi Badenoch spoke out against the 'epidemic' of gay children being encouraged to change gender, writes author HELEN JOYCE", - "link": "https://www.dailymail.co.uk/debate/article-12839437/Kemi-Badenoch-against-epidemic-gay-children-change-gender-HELEN-JOYCE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:58:55 GMT", - "enclosure": { - "length": "10130", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711789-0-image-a-26_1701985423734.jpg" - }, - "content": "HELEN JOYCE: Kemi Badenoch (pictured) drew attention ideology that led to an 'epidemic' of gay or bisexual youngsters being told they are transgender and given drugs that can lead to sterilisation.", - "contentSnippet": "HELEN JOYCE: Kemi Badenoch (pictured) drew attention ideology that led to an 'epidemic' of gay or bisexual youngsters being told they are transgender and given drugs that can lead to sterilisation.", - "guid": "https://www.dailymail.co.uk/debate/article-12839437/Kemi-Badenoch-against-epidemic-gay-children-change-gender-HELEN-JOYCE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:58:55.000Z" - }, - { - "title": "New digital parking permit scheme that replaces physical documents in car windows is slammed as 'an absolute failure' by drivers just one month after its launch", - "link": "https://www.dailymail.co.uk/news/article-12840893/New-digital-parking-permit-scheme-replaces-physical-documents-car-windows-slammed-absolute-failure-drivers-just-one-month-launch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:52:37 GMT", - "enclosure": { - "length": "7185", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/78727711-0-image-m-12_1702024515202.jpg" - }, - "content": "Reading Borough Council introduced the new scheme last month and it has already come under heavy criticism.", - "contentSnippet": "Reading Borough Council introduced the new scheme last month and it has already come under heavy criticism.", - "guid": "https://www.dailymail.co.uk/news/article-12840893/New-digital-parking-permit-scheme-replaces-physical-documents-car-windows-slammed-absolute-failure-drivers-just-one-month-launch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:52:37.000Z" - }, - { - "title": "I'm fed up with people calling me a bad girl because of my tattoos - so I'm getting them removed", - "link": "https://www.dailymail.co.uk/femail/article-12837247/Woman-tattoos-removed-bad-girl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:51:02 GMT", - "enclosure": { - "length": "9675", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/13/78691365-0-image-a-20_1701954941075.jpg" - }, - "content": "Lauren, 30, from Australia got her first piece - a set of roses on her stomach done when she was just 18 years old, after becoming inspired by Lady Gaga 's floral back tattoo.", - "contentSnippet": "Lauren, 30, from Australia got her first piece - a set of roses on her stomach done when she was just 18 years old, after becoming inspired by Lady Gaga 's floral back tattoo.", - "guid": "https://www.dailymail.co.uk/femail/article-12837247/Woman-tattoos-removed-bad-girl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:51:02.000Z" - }, - { - "title": "Every single woman Lucy Cavendish coached with her 'Calling In The One' dating therapy has met someone. Then LIZ JONES tried it", - "link": "https://www.dailymail.co.uk/debate/article-12839411/Lucy-Cavendish-coach-Calling-One-dating-therapy-LIZ-JONES-tried.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:43:20 GMT", - "enclosure": { - "length": "9546", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78711359-0-image-a-33_1701986491646.jpg" - }, - "content": "LIZ JONES: At the age of 65 (and in really good nick), can I finally fulfil the quest of a lifetime and find myself a good man to spend the rest of it with?", - "contentSnippet": "LIZ JONES: At the age of 65 (and in really good nick), can I finally fulfil the quest of a lifetime and find myself a good man to spend the rest of it with?", - "guid": "https://www.dailymail.co.uk/debate/article-12839411/Lucy-Cavendish-coach-Calling-One-dating-therapy-LIZ-JONES-tried.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:43:20.000Z" - }, - { - "title": "It's getting otter in here, so take off all your clothes! Smuggler is strip searched and busted after 'suspicious trouser bulge' turns out to be furry mammals", - "link": "https://www.dailymail.co.uk/news/article-12840749/Its-getting-otter-clothes-Smuggler-strip-searched-busted-suspicious-trouser-bulge-turns-furry-mammals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:34:57 GMT", - "enclosure": { - "length": "8166", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/07/78726875-0-image-a-14_1702022089381.jpg" - }, - "content": "When the Taiwanese smuggler queued up for airport security, he'd hoped that staff wouldn't notice the huge bulge in his trousers - and the fact that it kept moving.", - "contentSnippet": "When the Taiwanese smuggler queued up for airport security, he'd hoped that staff wouldn't notice the huge bulge in his trousers - and the fact that it kept moving.", - "guid": "https://www.dailymail.co.uk/news/article-12840749/Its-getting-otter-clothes-Smuggler-strip-searched-busted-suspicious-trouser-bulge-turns-furry-mammals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:34:57.000Z" - }, - { - "title": "'Hitler's only friend' who died in the city he tried to bomb into defeat: How Nazi war criminal Albert Speer passed away in London while making BBC programme - after saving himself from hanging by claiming ignorance of the Holocaust", - "link": "https://www.dailymail.co.uk/news/article-12836741/Hitlers-friend-died-city-tried-bomb-defeat-Nazi-war-criminal-Albert-Speer-passed-away-London-making-BBC-programme-saving-hanging-claiming-ignorance-Holocaust.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:31:53 GMT", - "enclosure": { - "length": "9326", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/14/78685427-0-image-m-41_1701959009282.jpg" - }, - "content": "Albert Speer, the chief architect of Nazi Germany who became armaments minister, spent 20 years in prison after being found guilty of war crimes at Nuremburg. Above: In London in 1973.", - "contentSnippet": "Albert Speer, the chief architect of Nazi Germany who became armaments minister, spent 20 years in prison after being found guilty of war crimes at Nuremburg. Above: In London in 1973.", - "guid": "https://www.dailymail.co.uk/news/article-12836741/Hitlers-friend-died-city-tried-bomb-defeat-Nazi-war-criminal-Albert-Speer-passed-away-London-making-BBC-programme-saving-hanging-claiming-ignorance-Holocaust.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:31:53.000Z" - }, - { - "title": "Now HMRC axes self assessment tax helpline for most callers", - "link": "https://www.dailymail.co.uk/news/article-12839997/HMRC-axes-self-assessment-tax-helpline.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:23:22 GMT", - "enclosure": { - "length": "11169", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718919-0-image-a-60_1701997130461.jpg" - }, - "content": "The announcement has provoked anger among MPs and tax experts, who warned it could lead to taxpayers inadvertently making mistakes on their tax returns and facing fines further down the line.", - "contentSnippet": "The announcement has provoked anger among MPs and tax experts, who warned it could lead to taxpayers inadvertently making mistakes on their tax returns and facing fines further down the line.", - "guid": "https://www.dailymail.co.uk/news/article-12839997/HMRC-axes-self-assessment-tax-helpline.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:23:22.000Z" - }, - { - "title": "Russell Simmons denies allegations of sex assault and says he's 'never been violent' ... and has taken NINE lie detector tests on topic", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12840017/Russell-Simmons-denies-allegations-sex-assault-says-hes-never-violent-taken-NINE-lie-detector-tests-topics.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:17:50 GMT", - "enclosure": { - "length": "9504", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/02/78720963-0-image-a-68_1702002415445.jpg" - }, - "content": "The Queens, New York native, 66, acknowledged that he'd behaved in a 'crude' manner and had past been involved in 'compromising situations' sexually.", - "contentSnippet": "The Queens, New York native, 66, acknowledged that he'd behaved in a 'crude' manner and had past been involved in 'compromising situations' sexually.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12840017/Russell-Simmons-denies-allegations-sex-assault-says-hes-never-violent-taken-NINE-lie-detector-tests-topics.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:17:50.000Z" - }, - { - "title": "Latest Omaze house winner is mature student who dreams of becoming a children's nurse and was 'technically sofa surfing' when she was handed the keys to amazing \u00a35m Chelsea home", - "link": "https://www.dailymail.co.uk/property/article-12840737/Omaze-winner-student-nurse-sofa-surfing-Chelsea-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:12:03 GMT", - "enclosure": { - "length": "9752", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/07/78726841-0-image-m-26_1702021367265.jpg" - }, - "content": "Oceanne Belle, 49, has won an elegant four storey Georgian home in the sought-after Royal Borough of Kensington and Chelsea in the latest Omaze Million Pound House Draw.", - "contentSnippet": "Oceanne Belle, 49, has won an elegant four storey Georgian home in the sought-after Royal Borough of Kensington and Chelsea in the latest Omaze Million Pound House Draw.", - "guid": "https://www.dailymail.co.uk/property/article-12840737/Omaze-winner-student-nurse-sofa-surfing-Chelsea-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:12:03.000Z" - }, - { - "title": "We are VERY amused! How humour is the secret weapon of the Windsors, as these uproarious pictures show", - "link": "https://www.dailymail.co.uk/news/article-12823757/Royals-laugh-humour-secret-weapon-pictures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 08:06:22 GMT", - "enclosure": { - "length": "11069", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/04/16/78561187-0-image-a-69_1701708097656.jpg" - }, - "content": "She has many talents, including her natural grace and dignity, playing the piano and photography. But another quality was on view when Kate met the stars at the Royal Variety Performance.", - "contentSnippet": "She has many talents, including her natural grace and dignity, playing the piano and photography. But another quality was on view when Kate met the stars at the Royal Variety Performance.", - "guid": "https://www.dailymail.co.uk/news/article-12823757/Royals-laugh-humour-secret-weapon-pictures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T08:06:22.000Z" - }, - { - "title": "Optical illusion claims only high IQs can spot the woman's face within 9 seconds - but can YOU find her?", - "link": "https://www.dailymail.co.uk/femail/article-12838293/Optical-illusion-claims-high-IQs-spot-womans-face-9-seconds-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:51:52 GMT", - "enclosure": { - "length": "9267", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78699761-0-image-a-10_1701967666105.jpg" - }, - "content": "The latest optical illusion is putting your IQ levels to the test as it's asking you to spot the hidden face within nine seconds. The black and white drawing was shared by\u00a0American Puzzle Cards.", - "contentSnippet": "The latest optical illusion is putting your IQ levels to the test as it's asking you to spot the hidden face within nine seconds. The black and white drawing was shared by\u00a0American Puzzle Cards.", - "guid": "https://www.dailymail.co.uk/femail/article-12838293/Optical-illusion-claims-high-IQs-spot-womans-face-9-seconds-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:51:52.000Z" - }, - { - "title": "How first son spent $200,000 on prostitutes, $118,000 on adult entertainment - and only $500 on mortgage payments as his spending is revealed amid new tax evasion charges", - "link": "https://www.dailymail.co.uk/news/article-12840203/How-son-spent-200-000-prostitutes-118-000-adult-entertainment-500-mortgage-payments-spending-revealed-amid-new-tax-evasion-charges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:46:06 GMT", - "enclosure": { - "length": "11875", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/05/78724499-0-image-a-10_1702012796152.jpg" - }, - "content": "Hunter Biden's 'wild' spending has been revealed after a fresh indictment of nine criminal charges was filed against the president's son on Thursday.", - "contentSnippet": "Hunter Biden's 'wild' spending has been revealed after a fresh indictment of nine criminal charges was filed against the president's son on Thursday.", - "guid": "https://www.dailymail.co.uk/news/article-12840203/How-son-spent-200-000-prostitutes-118-000-adult-entertainment-500-mortgage-payments-spending-revealed-amid-new-tax-evasion-charges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:46:06.000Z" - }, - { - "title": "45 ultimate Christmas gift ideas for him and her if money is no object - from a \u00a33,000 barware set to a \u00a313,400 evening gown", - "link": "https://www.dailymail.co.uk/femail/article-12831757/luxury-best-christmas-gifts-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:44:03 GMT", - "enclosure": { - "length": "11954", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78699175-0-image-a-5_1701965518095.jpg" - }, - "content": "Looking for a bit of luxury this Christmas? FEMAIL has selected the most exclusive designer gifts to splash on for her, him and the home if money is no object this Christmas.", - "contentSnippet": "Looking for a bit of luxury this Christmas? FEMAIL has selected the most exclusive designer gifts to splash on for her, him and the home if money is no object this Christmas.", - "guid": "https://www.dailymail.co.uk/femail/article-12831757/luxury-best-christmas-gifts-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:44:03.000Z" - }, - { - "title": "Did anyone engage their brain? These baffling design fails should never have seen the light of day", - "link": "https://www.dailymail.co.uk/femail/article-12837817/Did-engage-brain-baffling-design-fails-never-seen-light-day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:43:41 GMT", - "enclosure": { - "length": "11858", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78696737-0-image-a-96_1701964522400.jpg" - }, - "content": "Baffling snaps from around the world collected by Architecturendesign.net , include a wheelchair ramp in France, which was obstructed by a steel parking meter.", - "contentSnippet": "Baffling snaps from around the world collected by Architecturendesign.net , include a wheelchair ramp in France, which was obstructed by a steel parking meter.", - "guid": "https://www.dailymail.co.uk/femail/article-12837817/Did-engage-brain-baffling-design-fails-never-seen-light-day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:43:41.000Z" - }, - { - "title": "Inside McDonald's new Illinois CosMc's: DailyMail.com visits new store to sample its unusual range of products - including a $5.89 Sour Cherry Energy Burst and $4.99 Creamy Avocado Tomatillo Sandwich!", - "link": "https://www.dailymail.co.uk/yourmoney/consumer/article-12839541/Inside-McDonalds-new-CosMcs-DailyMail-com-visits-new-store-sample-unusual-range-products-including-5-89-Sour-Cherry-Energy-Burst-4-99-Creamy-Avocado-Tomatillo-Sandwich.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:42:22 GMT", - "enclosure": { - "length": "11321", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78716803-0-image-a-4_1701993963329.jpg" - }, - "content": "McDonald's superfans lined up for the opening of its new CosMc restaurant this morning after details of its menu were unveiled yesterday.", - "contentSnippet": "McDonald's superfans lined up for the opening of its new CosMc restaurant this morning after details of its menu were unveiled yesterday.", - "guid": "https://www.dailymail.co.uk/yourmoney/consumer/article-12839541/Inside-McDonalds-new-CosMcs-DailyMail-com-visits-new-store-sample-unusual-range-products-including-5-89-Sour-Cherry-Energy-Burst-4-99-Creamy-Avocado-Tomatillo-Sandwich.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:42:22.000Z" - }, - { - "title": "Civil servants demand the right to work a four-day week with no loss of pay as Defra looks to become the first department to try the controversial scheme", - "link": "https://www.dailymail.co.uk/news/article-12839913/Civil-servants-demand-work-four-day-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:19:14 GMT", - "enclosure": { - "length": "6149", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718165-0-image-m-120_1701995045718.jpg" - }, - "content": "Defra staff want a pilot scheme covering 21,000 employees to see if reducing their working hours by 20 per cent improves their wellbeing and productivity.", - "contentSnippet": "Defra staff want a pilot scheme covering 21,000 employees to see if reducing their working hours by 20 per cent improves their wellbeing and productivity.", - "guid": "https://www.dailymail.co.uk/news/article-12839913/Civil-servants-demand-work-four-day-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:19:14.000Z" - }, - { - "title": "Troubling rise of the 'silver snorters': Treatment for over 60s cocaine users has shot up in the last year", - "link": "https://www.dailymail.co.uk/news/article-12840047/rise-silver-snorters-60s-cocaine-users.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:19:05 GMT", - "enclosure": { - "length": "4968", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78720205-0-image-a-58_1701999863525.jpg" - }, - "content": "Patients as old as 90 have been turning up to hospitals after using the class-A drug, many of whom would have suffered seizures and overdoses.", - "contentSnippet": "Patients as old as 90 have been turning up to hospitals after using the class-A drug, many of whom would have suffered seizures and overdoses.", - "guid": "https://www.dailymail.co.uk/news/article-12840047/rise-silver-snorters-60s-cocaine-users.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:19:05.000Z" - }, - { - "title": "Moment man dressed as a PIRATE destroys 5,000 gallons of white wine worth $600,000 in Washington cellar before disappearing into the darkness", - "link": "https://www.dailymail.co.uk/news/article-12839885/PIRATE-destroys-gallons-white-wine-washington.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:06:31 GMT", - "enclosure": { - "length": "7503", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78720311-0-image-m-26_1702000318850.jpg" - }, - "content": "CCTV footage caught the eerie moment a mysterious man in a pirate outfit nonchalantly strolled into Sparkman Cellars in Woodinville, Washington, late at night on Thanksgiving Eve", - "contentSnippet": "CCTV footage caught the eerie moment a mysterious man in a pirate outfit nonchalantly strolled into Sparkman Cellars in Woodinville, Washington, late at night on Thanksgiving Eve", - "guid": "https://www.dailymail.co.uk/news/article-12839885/PIRATE-destroys-gallons-white-wine-washington.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:06:31.000Z" - }, - { - "title": "At Christmas, I like to delegate writing cards to Mrs Utley... along with cooking, cleaning, wrapping gifts and putting up decorations says TOM UTLEY", - "link": "https://www.dailymail.co.uk/news/article-12839443/TOM-UTLEY-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:06:28 GMT", - "enclosure": { - "length": "10637", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711285-0-image-a-24_1701985319402.jpg" - }, - "content": "Years ago an old friend and fellow journalist invented a distinctly uncharitable game, which he and his family used to play when they gathered together for the Christmas festivities.", - "contentSnippet": "Years ago an old friend and fellow journalist invented a distinctly uncharitable game, which he and his family used to play when they gathered together for the Christmas festivities.", - "guid": "https://www.dailymail.co.uk/news/article-12839443/TOM-UTLEY-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:06:28.000Z" - }, - { - "title": "Forest Whitaker's ex-wife Keisha Nash-Whitaker dead at 51 after years-long anorexia battle: Daughter confirms tragic news in heartbreaking post - as source reveals she was suffering from 'intestinal problems' before passing", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838937/Forest-Whitaker-ex-wife-Keisha-Whitaker-dead-51.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 07:00:51 GMT", - "enclosure": { - "length": "10427", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78710053-0-image-m-67_1701982682660.jpg" - }, - "content": "The former couple's daughter\u00a0True Whitaker, 25, confirmed the tragic news on her Instagram account, posting photos of her mother to her Stories on Wednesday.", - "contentSnippet": "The former couple's daughter\u00a0True Whitaker, 25, confirmed the tragic news on her Instagram account, posting photos of her mother to her Stories on Wednesday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838937/Forest-Whitaker-ex-wife-Keisha-Whitaker-dead-51.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T07:00:51.000Z" - }, - { - "title": "Airport worker gets the sack after scrawling sweary message on a baby's suitcase after family checked in 'late'", - "link": "https://www.dailymail.co.uk/news/article-12839955/Airport-worker-sack-sweary-message-baby-suitcase.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 06:45:21 GMT", - "enclosure": { - "length": "6367", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719395-0-image-a-93_1701997971327.jpg" - }, - "content": "Father Mario Lucas (pictured with wife Serena), 40, found the words 'c*** stop checking in late' written with a pen on his seven-month-old son's bag that went in the baggage hold at Stansted.", - "contentSnippet": "Father Mario Lucas (pictured with wife Serena), 40, found the words 'c*** stop checking in late' written with a pen on his seven-month-old son's bag that went in the baggage hold at Stansted.", - "guid": "https://www.dailymail.co.uk/news/article-12839955/Airport-worker-sack-sweary-message-baby-suitcase.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T06:45:21.000Z" - }, - { - "title": "How to make an expensive-looking Christmas wreath for free", - "link": "https://www.dailymail.co.uk/money/bills/article-12838383/How-make-expensive-looking-Christmas-wreath-free.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 06:00:55 GMT", - "enclosure": { - "length": "7699", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78701867-0-image-a-3_1701968956734.jpg" - }, - "content": "Having a Christmas wreath hanging on the front door is the perfect way to kick off celebrations for the yuletide season - but an expense we could all do without.", - "contentSnippet": "Having a Christmas wreath hanging on the front door is the perfect way to kick off celebrations for the yuletide season - but an expense we could all do without.", - "guid": "https://www.dailymail.co.uk/money/bills/article-12838383/How-make-expensive-looking-Christmas-wreath-free.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T06:00:55.000Z" - }, - { - "title": "I'm a retired businessman and fell for an online bitcoin scam\u2026 now I have to sell my house to pay back \u00a330k", - "link": "https://www.dailymail.co.uk/money/beatthescammers/article-12827995/Im-retired-businessman-fell-online-bitcoin-scam-sell-house-pay-30k.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 06:00:52 GMT", - "enclosure": { - "length": "5886", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/05/15/78600839-0-image-a-8_1701788798212.jpg" - }, - "content": "Gary Edmunds, 72, joined a car enthusiasts group on Facebook - but he ended up falling for a bitcoin investment scam and he is now \u00a330k in debt.", - "contentSnippet": "Gary Edmunds, 72, joined a car enthusiasts group on Facebook - but he ended up falling for a bitcoin investment scam and he is now \u00a330k in debt.", - "guid": "https://www.dailymail.co.uk/money/beatthescammers/article-12827995/Im-retired-businessman-fell-online-bitcoin-scam-sell-house-pay-30k.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T06:00:52.000Z" - }, - { - "title": "I want to sell my leasehold home: Will it be worth more after the reform bill?", - "link": "https://www.dailymail.co.uk/money/mortgageshome/article-12832255/I-want-sell-leasehold-home-worth-reform-bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 06:00:49 GMT", - "enclosure": { - "length": "4903", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78698681-0-image-a-61_1701965263894.jpg" - }, - "content": "The new rules could make it cheaper and easier to extend the lease or buy a share of freehold. Would a future buyer then pay more than it is worth today?", - "contentSnippet": "The new rules could make it cheaper and easier to extend the lease or buy a share of freehold. Would a future buyer then pay more than it is worth today?", - "guid": "https://www.dailymail.co.uk/money/mortgageshome/article-12832255/I-want-sell-leasehold-home-worth-reform-bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T06:00:49.000Z" - }, - { - "title": "Seven simple ways to make an extra \u00a31,000 this Christmas, by entrepeneur Tim Armoo", - "link": "https://www.dailymail.co.uk/money/entrepreneuracademy/article-12810041/Seven-simple-ways-make-extra-1-000-Christmas-entrepeneur-Tim-Armoo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 06:00:46 GMT", - "enclosure": { - "length": "6431", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/01/08/78426003-0-image-m-7_1701421183536.jpg" - }, - "content": "Tim Armoo founded Fanbytes aged 21, working with brands like Nike, Samsung and Deliveroo on influencer marketing.", - "contentSnippet": "Tim Armoo founded Fanbytes aged 21, working with brands like Nike, Samsung and Deliveroo on influencer marketing.", - "guid": "https://www.dailymail.co.uk/money/entrepreneuracademy/article-12810041/Seven-simple-ways-make-extra-1-000-Christmas-entrepeneur-Tim-Armoo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T06:00:46.000Z" - }, - { - "title": "Mother-of-two trying to inject 'skinny jab' Ozempic into her body almost died when it turned out to be pure insulin and left her in a coma", - "link": "https://www.dailymail.co.uk/news/article-12839367/mother-inject-skinny-jab-ozempic-insulin-coma.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 04:09:38 GMT", - "enclosure": { - "length": "8981", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710543-0-image-a-4_1701983712857.jpg" - }, - "content": "When Michelle Sword emerged from her near-death experience she recalls doctors asking a series of probing questions as she lay in her hospital bed.", - "contentSnippet": "When Michelle Sword emerged from her near-death experience she recalls doctors asking a series of probing questions as she lay in her hospital bed.", - "guid": "https://www.dailymail.co.uk/news/article-12839367/mother-inject-skinny-jab-ozempic-insulin-coma.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T04:09:38.000Z" - }, - { - "title": "Dame Esther Rantzen, 83, quits Childline after 37 years having been diagnosed with stage four lung cancer", - "link": "https://www.dailymail.co.uk/news/article-12837677/Dame-Esther-Rantzen-quits-Childline-lung-cancer-diagnosis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 03:16:19 GMT", - "enclosure": { - "length": "12091", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78694033-0-image-m-52_1701963822071.jpg" - }, - "content": "The 83-year-old has stepped back as president of the counselling service, having stepped into the role in 2018.", - "contentSnippet": "The 83-year-old has stepped back as president of the counselling service, having stepped into the role in 2018.", - "guid": "https://www.dailymail.co.uk/news/article-12837677/Dame-Esther-Rantzen-quits-Childline-lung-cancer-diagnosis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T03:16:19.000Z" - }, - { - "title": "The grate escape! Lorry containing \u00a350,000 of CHEESE is stolen from motorway service station", - "link": "https://www.dailymail.co.uk/news/article-12840079/Lorry-CHEESE-stolen-service-station.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 03:15:27 GMT", - "enclosure": { - "length": "10846", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78718795-0-image-m-108_1701998601156.jpg" - }, - "content": "The trailer filled with precious dairy cargo was taken from\u00a0Strensham services, near Cheltenham on the M5 on Friday.", - "contentSnippet": "The trailer filled with precious dairy cargo was taken from\u00a0Strensham services, near Cheltenham on the M5 on Friday.", - "guid": "https://www.dailymail.co.uk/news/article-12840079/Lorry-CHEESE-stolen-service-station.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T03:15:27.000Z" - }, - { - "title": "Football chiefs are urged to ban transgender women from playing in women's teams by leading politicians", - "link": "https://www.dailymail.co.uk/news/article-12840069/Football-chiefs-urged-ban-transgender-women-playing-womens-teams-leading-politicians.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 03:15:07 GMT", - "enclosure": { - "length": "5033", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719443-0-image-m-21_1701998145541.jpg" - }, - "content": "Under Football Association rules, players are currently able to register under their 'affirmed gender' rather than their biological sense,", - "contentSnippet": "Under Football Association rules, players are currently able to register under their 'affirmed gender' rather than their biological sense,", - "guid": "https://www.dailymail.co.uk/news/article-12840069/Football-chiefs-urged-ban-transgender-women-playing-womens-teams-leading-politicians.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T03:15:07.000Z" - }, - { - "title": "I'm A Celebrity elimination results: Danielle Harold is the fifth campmate to be voted out and joins eliminated stars in backing Sam Thompson to win", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839571/im-celebrity-elimination-results-Danielle-Harold-left-jungle-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 02:24:15 GMT", - "enclosure": { - "length": "11310", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/23/78715701-0-image-a-240_1701990300502.jpg" - }, - "content": "The\u00a0EastEnders actress, 31, left the camp after 30 days after losing out to Tony Bellew in the public vote after they came in the bottom two in the latest elimination.", - "contentSnippet": "The\u00a0EastEnders actress, 31, left the camp after 30 days after losing out to Tony Bellew in the public vote after they came in the bottom two in the latest elimination.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839571/im-celebrity-elimination-results-Danielle-Harold-left-jungle-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T02:24:15.000Z" - }, - { - "title": "Avatar: Frontiers of Pandora review - There's little surprising in this game, but it's one of the most beautiful settings I've ever visited, writes PETER HOSKIN", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12840087/Avatar-Frontiers-Pandora-review-Theres-little-surprising-game-one-beautiful-settings-Ive-visited-writes-PETER-HOSKIN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 02:10:06 GMT", - "enclosure": { - "length": "12095", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719979-0-image-a-149_1701999162199.jpg" - }, - "content": "PETER HOSKIN: Avatar : The Game - or, to allow it its official title, Avatar: Frontiers Of Pandora - sure is like Avatar: The Movies. In both good and bad ways.", - "contentSnippet": "PETER HOSKIN: Avatar : The Game - or, to allow it its official title, Avatar: Frontiers Of Pandora - sure is like Avatar: The Movies. In both good and bad ways.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12840087/Avatar-Frontiers-Pandora-review-Theres-little-surprising-game-one-beautiful-settings-Ive-visited-writes-PETER-HOSKIN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T02:10:06.000Z" - }, - { - "title": "Israel warns Hamas 'sleeper cells' could be activated amid fears of attacks across Europe over Christmas", - "link": "https://www.dailymail.co.uk/news/article-12838539/Israel-Hamas-cells-activate-Europe-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 02:09:49 GMT", - "enclosure": { - "length": "5593", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78706385-0-image-m-15_1701977951098.jpg" - }, - "content": "The EU this week warned that there is a 'huge risk of terrorist attacks' over the Christmas period, with community tensions inflamed by anger over the Israel-Hamas war.", - "contentSnippet": "The EU this week warned that there is a 'huge risk of terrorist attacks' over the Christmas period, with community tensions inflamed by anger over the Israel-Hamas war.", - "guid": "https://www.dailymail.co.uk/news/article-12838539/Israel-Hamas-cells-activate-Europe-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T02:09:49.000Z" - }, - { - "title": "Oliver! review: This revival is an absolute whopper of a show chock full of pre-loaded ear-worms, writes PATRICK MARMION", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12840077/Oliver-review-revival-absolute-whopper-chock-pre-loaded-ear-worms-writes-PATRICK-MARMION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 02:09:04 GMT", - "enclosure": { - "length": "9283", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719965-0-image-a-73_1701999131542.jpg" - }, - "content": "PATRICK MARMION: What is the greatest British musical of all time? The cascading Les Mis? The haunting Phantom? Or maybe the saucy, evergreen Rocky Horror Show?", - "contentSnippet": "PATRICK MARMION: What is the greatest British musical of all time? The cascading Les Mis? The haunting Phantom? Or maybe the saucy, evergreen Rocky Horror Show?", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12840077/Oliver-review-revival-absolute-whopper-chock-pre-loaded-ear-worms-writes-PATRICK-MARMION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T02:09:04.000Z" - }, - { - "title": "Rabbi sensationally QUITS Harvard's antisemitism taskforce because 'the ideology that grips far too many students and faculty ... is evil': 'Ignoring Jewish suffering is evil'", - "link": "https://www.dailymail.co.uk/news/article-12839895/david-wolpe-rabbi-harvard-quits-antisemitism-taskforce.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 02:00:15 GMT", - "enclosure": { - "length": "13268", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719591-0-image-a-4_1701999868999.jpg" - }, - "content": "David Wolpe, appointed to the eight-member antisemitism taskforce created by Harvard's president in October, said on Thursday he realized he could not 'make the sort of difference I had hoped'.", - "contentSnippet": "David Wolpe, appointed to the eight-member antisemitism taskforce created by Harvard's president in October, said on Thursday he realized he could not 'make the sort of difference I had hoped'.", - "guid": "https://www.dailymail.co.uk/news/article-12839895/david-wolpe-rabbi-harvard-quits-antisemitism-taskforce.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T02:00:15.000Z" - }, - { - "title": "'Angel of Death' Beverley Allitt who murdered four children and injured three others has jail move blocked - crushing her bid for freedom", - "link": "https://www.dailymail.co.uk/news/article-12840067/Angel-Death-Beverley-Allitt-murder-jail-blocked-bid-freedom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:59:03 GMT", - "enclosure": { - "length": "4548", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78720469-0-image-m-111_1702000399991.jpg" - }, - "content": "Baby killer Beverley Allitt (pictured), the 'Angel of Death', who murdered four children and injured three others has had a move to a lower category of prison blocked in a crushing blow to her bid for freedom.", - "contentSnippet": "Baby killer Beverley Allitt (pictured), the 'Angel of Death', who murdered four children and injured three others has had a move to a lower category of prison blocked in a crushing blow to her bid for freedom.", - "guid": "https://www.dailymail.co.uk/news/article-12840067/Angel-Death-Beverley-Allitt-murder-jail-blocked-bid-freedom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:59:03.000Z" - }, - { - "title": "Fed-up Mancunians DEFY orders to not disrupt Chanel's Metiers d'Art fashion show: Locals belt out karaoke and hold protest rally yards from the outdoor catwalk that forced roads to close during A-list event they were banned from watching from balconies", - "link": "https://www.dailymail.co.uk/news/article-12838973/Manchester-locals-DEFY-orders-not-disrupt-Chanel-fashion-holding-pro-Palestine-rally-outside-catwalk-singing-karaoke-corner-mock-organisers-picking-rainiest-city-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:58:49 GMT", - "enclosure": { - "length": "11783", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78707169-0-image-a-9_1701978955043.jpg" - }, - "content": "Famous faces from all around the world descended onto the unassuming street in the Northern Quarter of the city despite a furious uproar from residents and local businesses.", - "contentSnippet": "Famous faces from all around the world descended onto the unassuming street in the Northern Quarter of the city despite a furious uproar from residents and local businesses.", - "guid": "https://www.dailymail.co.uk/news/article-12838973/Manchester-locals-DEFY-orders-not-disrupt-Chanel-fashion-holding-pro-Palestine-rally-outside-catwalk-singing-karaoke-corner-mock-organisers-picking-rainiest-city-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:58:49.000Z" - }, - { - "title": "Boris Johnson recalls his own hospital ordeal and says it is 'simply not right' to claim he didn't care about other people's suffering in an emotional second day of evidence at the Covid Inquiry", - "link": "https://www.dailymail.co.uk/news/article-12840115/Boris-Johnson-recalls-hospital-ordeal-says-simply-not-right-claim-didnt-care-peoples-suffering-emotional-second-day-evidence-Covid-Inquiry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:56:55 GMT", - "enclosure": { - "length": "10270", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719849-0-image-a-20_1701998868290.jpg" - }, - "content": "Hugo Keith KC, quizzed Mr Johnson about rule breaking in No 10 during the pandemic and put it to the former PM that 'you knew how it would look but you didn't care that much'.", - "contentSnippet": "Hugo Keith KC, quizzed Mr Johnson about rule breaking in No 10 during the pandemic and put it to the former PM that 'you knew how it would look but you didn't care that much'.", - "guid": "https://www.dailymail.co.uk/news/article-12840115/Boris-Johnson-recalls-hospital-ordeal-says-simply-not-right-claim-didnt-care-peoples-suffering-emotional-second-day-evidence-Covid-Inquiry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:56:55.000Z" - }, - { - "title": "Bristol University axes the National Anthem from graduation ceremonies amid students' claims it is 'old-fashioned' and 'offensive to some'", - "link": "https://www.dailymail.co.uk/news/article-12839925/Bristol-University-axes-National-Anthem-graduation-ceremonies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:56:30 GMT", - "enclosure": { - "length": "9658", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718637-0-image-a-44_1701996017004.jpg" - }, - "content": "The anthem has not been played since last year's ceremony with the university saying it regularly updates its graduation ceremonies.", - "contentSnippet": "The anthem has not been played since last year's ceremony with the university saying it regularly updates its graduation ceremonies.", - "guid": "https://www.dailymail.co.uk/news/article-12839925/Bristol-University-axes-National-Anthem-graduation-ceremonies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:56:30.000Z" - }, - { - "title": "Camilla gives TV's Queen of Mean Anne Robinson her royal seal of approval for dating her ex-husband and has even 'joked about a double date' with the King", - "link": "https://www.dailymail.co.uk/news/article-12840029/anne-robinson-dating-camilla-ex-husband-approval.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:50:29 GMT", - "enclosure": { - "length": "10135", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719599-0-image-m-60_1701998681582.jpg" - }, - "content": "The former Weakest Link presenter, 79, has been in a secret relationship with Andrew Parker Bowles for more than a year.", - "contentSnippet": "The former Weakest Link presenter, 79, has been in a secret relationship with Andrew Parker Bowles for more than a year.", - "guid": "https://www.dailymail.co.uk/news/article-12840029/anne-robinson-dating-camilla-ex-husband-approval.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:50:29.000Z" - }, - { - "title": "Jewish leaders say Chanukah celebration will go on as planned despite rise in antisemitism since start of Israel-Hamas war as cities light menorahs to mark the eight-day celebration", - "link": "https://www.dailymail.co.uk/news/article-12834347/Jewish-leaders-say-Chanukah-celebration-planned-despite-rise-antisemitism-start-Israel-Hamas-war-cities-light-menorahs-mark-eight-day-celebration.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:41:22 GMT", - "enclosure": { - "length": "8191", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78707243-0-image-a-12_1701980974434.jpg" - }, - "content": "Menorah lightings are taking place all over the country as the world continues to grapple with the atrocities of the October 7 Hamas attack on Israel and rising anti-Semitism.", - "contentSnippet": "Menorah lightings are taking place all over the country as the world continues to grapple with the atrocities of the October 7 Hamas attack on Israel and rising anti-Semitism.", - "guid": "https://www.dailymail.co.uk/news/article-12834347/Jewish-leaders-say-Chanukah-celebration-planned-despite-rise-antisemitism-start-Israel-Hamas-war-cities-light-menorahs-mark-eight-day-celebration.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:41:22.000Z" - }, - { - "title": "Ofsted halts school inspections next week to rollout new training after Ruth Perry inquest finds it had 'likely contributed' to headteacher's suicide", - "link": "https://www.dailymail.co.uk/news/article-12839989/Ofsted-halts-school-inspections-week-rollout-new-training-Ruth-Perry-inquest-finds-likely-contributed-headteachers-suicide.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:40:22 GMT", - "enclosure": { - "length": "5513", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/12/78689797-0-image-m-69_1701953584829.jpg" - }, - "content": "The inquest heard the headteacher had been left 'completely devastated' in the weeks following the watchdog's 'intimidating' inspection into Caversham Primary School in Reading last year.", - "contentSnippet": "The inquest heard the headteacher had been left 'completely devastated' in the weeks following the watchdog's 'intimidating' inspection into Caversham Primary School in Reading last year.", - "guid": "https://www.dailymail.co.uk/news/article-12839989/Ofsted-halts-school-inspections-week-rollout-new-training-Ruth-Perry-inquest-finds-likely-contributed-headteachers-suicide.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:40:22.000Z" - }, - { - "title": "Tina's simply the best and Bryan Ferry and Bob Marley are Christmas crackers, too: ADRIAN THRILLS rounds up the reissues, box sets and greatest hits albums that make for the best presents", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839323/Tina-Turner-simply-best-Bryan-Ferry-Bob-Marley-Christmas-crackers-ADRIAN-THRILLS-reissues-box-sets-greatest-hits-albums-best-presents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:29:17 GMT", - "enclosure": { - "length": "10498", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710551-0-image-a-18_1701983788842.jpg" - }, - "content": "ADRIAN THRILLS: As Christmas approaches, a fresh batch of deluxe reissues, box sets and greatest hits albums make great presents. The Mail's music critic rounds up the best.", - "contentSnippet": "ADRIAN THRILLS: As Christmas approaches, a fresh batch of deluxe reissues, box sets and greatest hits albums make great presents. The Mail's music critic rounds up the best.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839323/Tina-Turner-simply-best-Bryan-Ferry-Bob-Marley-Christmas-crackers-ADRIAN-THRILLS-reissues-box-sets-greatest-hits-albums-best-presents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:29:17.000Z" - }, - { - "title": "Hugh Jackman takes a swipe at\u00a0Deadpool 3 co-star Ryan Reynolds after worrying photo emerges of Aussie heartthrob looking sad", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839713/Hugh-Jackman-takes-swipe-Deadpool-3-star-Ryan-Reynolds-worrying-photo-emerges-Aussie-heartthrob-looking-sad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:25:03 GMT", - "enclosure": { - "length": "8073", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78717961-0-image-m-20_1701996240590.jpg" - }, - "content": "Hugh Jackman has taken a swipe at his Deadpool co-star Ryan Reynolds after\u00a0a recent grumpy-looking selfie of the actor raised concerns among fans.\u00a0", - "contentSnippet": "Hugh Jackman has taken a swipe at his Deadpool co-star Ryan Reynolds after\u00a0a recent grumpy-looking selfie of the actor raised concerns among fans.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839713/Hugh-Jackman-takes-swipe-Deadpool-3-star-Ryan-Reynolds-worrying-photo-emerges-Aussie-heartthrob-looking-sad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:25:03.000Z" - }, - { - "title": "Fur Babies review: Brits dote on their pets - and I've got a show everyone will lap up, writes CHRISTOPHER STEVENS", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839985/Fur-Babies-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:22:06 GMT", - "enclosure": { - "length": "10070", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718881-0-image-m-77_1701997177502.jpg" - }, - "content": "Hang on, I'm having a brainwave. Nothing to worry about, it will pass in a moment, but I have to tell you this idea.", - "contentSnippet": "Hang on, I'm having a brainwave. Nothing to worry about, it will pass in a moment, but I have to tell you this idea.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839985/Fur-Babies-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:22:06.000Z" - }, - { - "title": "Joey Barton doubles down on his criticism of female broadcasters working in men's football in Piers Morgan interview as he blames 'woke agenda' and insists 'it's not to do with sexism at all'", - "link": "https://www.dailymail.co.uk/sport/football/article-12839413/Joey-Barton-criticism-female-broadcasters-mens-football-Piers-Morgan-interview-woke-agenda-sexism.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:13:03 GMT", - "enclosure": { - "length": "9434", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719347-0-image-a-6_1701997649957.jpg" - }, - "content": "Barton shared a series of misogynistic posts on social media on Wednesday that floated the idea that 'women shouldn't be talking with any kind of authority in the men's game'.", - "contentSnippet": "Barton shared a series of misogynistic posts on social media on Wednesday that floated the idea that 'women shouldn't be talking with any kind of authority in the men's game'.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12839413/Joey-Barton-criticism-female-broadcasters-mens-football-Piers-Morgan-interview-woke-agenda-sexism.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:13:03.000Z" - }, - { - "title": "ALISON BOSHOFF: It's the end of the line for The Crown, but speculation is raging over what the show's creator Peter Morgan could do next... As rumours swarm a new series about all the royal scandals he left out could be next", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838769/ALISON-BOSHOFF-end-line-Crown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 01:07:40 GMT", - "enclosure": { - "length": "9263", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709469-0-image-a-48_1701981760568.jpg" - }, - "content": "ALISON BOSHOFF: Speculation rages over what The Crown's writer might do next, with rumours circulating that a new show about royal scandals left out of the latest series could be next.", - "contentSnippet": "ALISON BOSHOFF: Speculation rages over what The Crown's writer might do next, with rumours circulating that a new show about royal scandals left out of the latest series could be next.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838769/ALISON-BOSHOFF-end-line-Crown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T01:07:40.000Z" - }, - { - "title": "Adele reveals the real reason why she doesn't want to move back to the UK", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839887/Adele-reveals-real-reason-doesnt-want-UK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:56:26 GMT", - "enclosure": { - "length": "11000", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718841-0-image-a-149_1701996743610.jpg" - }, - "content": "The London-born singer, 35, has revealed the real reason why she doesn't want to move back to the UK.", - "contentSnippet": "The London-born singer, 35, has revealed the real reason why she doesn't want to move back to the UK.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839887/Adele-reveals-real-reason-doesnt-want-UK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:56:26.000Z" - }, - { - "title": "Residents in Highland town are shocked by a warning that a great white shark is lurking off the coast... only to discover they were mixed up with a town in New Zealand", - "link": "https://www.dailymail.co.uk/news/article-12839975/Residents-Highland-town-shocked-warning-great-white-shark-lurking-coast-discover-mixed-town-New-Zealand.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:54:26 GMT", - "enclosure": { - "length": "6284", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718603-0-image-a-11_1701996244822.jpg" - }, - "content": "The alarm was raised about the presence of the giant predator to locals who had set up Google alerts for any breaking news about Fortrose, Ross-shire.", - "contentSnippet": "The alarm was raised about the presence of the giant predator to locals who had set up Google alerts for any breaking news about Fortrose, Ross-shire.", - "guid": "https://www.dailymail.co.uk/news/article-12839975/Residents-Highland-town-shocked-warning-great-white-shark-lurking-coast-discover-mixed-town-New-Zealand.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:54:26.000Z" - }, - { - "title": "How did Axminster become so associated with carpets? What became of the industry?", - "link": "https://www.dailymail.co.uk/news/article-12839939/How-did-Axminster-associated-carpets-industry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:53:38 GMT", - "enclosure": { - "length": "12616", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718519-0-image-m-133_1701995666600.jpg" - }, - "content": "ANSWERS TO CORRESPONDENTS: The market town of Axminster, on the River Axe in Devon, is synonymous with the manufacture of luxuriously woven carpets.", - "contentSnippet": "ANSWERS TO CORRESPONDENTS: The market town of Axminster, on the River Axe in Devon, is synonymous with the manufacture of luxuriously woven carpets.", - "guid": "https://www.dailymail.co.uk/news/article-12839939/How-did-Axminster-associated-carpets-industry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:53:38.000Z" - }, - { - "title": "I'm A Celebrity's Danielle Harold bursts into tears as her mother greets her on the bridge with a warm hug after she becomes fifth star voted out", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839815/Im-Celebritys-Danielle-Harold-tears-mother-greets-bridge-hug-voted-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:51:50 GMT", - "enclosure": { - "length": "11205", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718055-0-image-m-94_1701994663144.jpg" - }, - "content": "The\u00a0EastEnders\u00a0actress, 31, was sent home\u00a0from camp after losing\u00a0out to Tony Bellew in the public vote after they ended up in the bottom two.", - "contentSnippet": "The\u00a0EastEnders\u00a0actress, 31, was sent home\u00a0from camp after losing\u00a0out to Tony Bellew in the public vote after they ended up in the bottom two.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839815/Im-Celebritys-Danielle-Harold-tears-mother-greets-bridge-hug-voted-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:51:50.000Z" - }, - { - "title": "Cher reflects on the loss of her 'amazing, kick-ass' mother but admits they sometimes had a 'rocky' relationship: 'We were two really strong women!'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839529/Cher-reflects-loss-mother-admits-rocky-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:48:55 GMT", - "enclosure": { - "length": "10823", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78715127-0-image-a-63_1701989563873.jpg" - }, - "content": "Cher has reflected on the loss of her 'amazing, kick-ass' mother in a candid new interview.", - "contentSnippet": "Cher has reflected on the loss of her 'amazing, kick-ass' mother in a candid new interview.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839529/Cher-reflects-loss-mother-admits-rocky-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:48:55.000Z" - }, - { - "title": "Celebs went for black and white... with very little underneath:\u00a0SHANE WATSON gives her fashion verdict on the Chanel Metiers d'Art show in Manchester", - "link": "https://www.dailymail.co.uk/femail/article-12839727/Celebs-went-black-white-little-underneath-SHANE-WATSON-gives-fashion-verdict-Chanel-Metiers-dArt-Manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:37:34 GMT", - "enclosure": { - "length": "11543", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/23/78716705-0-image-a-35_1701991942971.jpg" - }, - "content": "SHANE WATSON: This year the French fashion house transformed Thomas Street in Manchester's Northern Quarter for one night only into a glass canopy-covered catwalk.", - "contentSnippet": "SHANE WATSON: This year the French fashion house transformed Thomas Street in Manchester's Northern Quarter for one night only into a glass canopy-covered catwalk.", - "guid": "https://www.dailymail.co.uk/femail/article-12839727/Celebs-went-black-white-little-underneath-SHANE-WATSON-gives-fashion-verdict-Chanel-Metiers-dArt-Manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:37:34.000Z" - }, - { - "title": "Elf and safety? 21 million Brits injure themselves preparing for Christmas, research suggests", - "link": "https://www.dailymail.co.uk/news/article-12839509/Elf-safety-21-million-Brits-injure-preparing-Christmas-research-suggests.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:32:56 GMT", - "enclosure": { - "length": "10237", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714473-0-image-a-4_1701988521969.jpg" - }, - "content": "The kitchen can be a dangerous place, with 6 per cent of people burning themselves on hot oil, for example while basting the turkey.", - "contentSnippet": "The kitchen can be a dangerous place, with 6 per cent of people burning themselves on hot oil, for example while basting the turkey.", - "guid": "https://www.dailymail.co.uk/news/article-12839509/Elf-safety-21-million-Brits-injure-preparing-Christmas-research-suggests.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:32:56.000Z" - }, - { - "title": "Elon Musk demands Disney's Bob Iger resign after pulling ads from X - after telling him and other advertisers to 'go f**k yourselves': 'Walt Disney is turning in his grave over what Bob has done to his company'", - "link": "https://www.dailymail.co.uk/news/article-12839061/Elon-Musk-demands-Disneys-Bob-Iger-reisgn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:32:02 GMT", - "enclosure": { - "length": "11433", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710319-0-image-a-40_1701986051514.jpg" - }, - "content": "Elon Musk took to X to hit out at Bob Iger and call for his immediate resignation after the Disney CEO pulled adverts from his platform.", - "contentSnippet": "Elon Musk took to X to hit out at Bob Iger and call for his immediate resignation after the Disney CEO pulled adverts from his platform.", - "guid": "https://www.dailymail.co.uk/news/article-12839061/Elon-Musk-demands-Disneys-Bob-Iger-reisgn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:32:02.000Z" - }, - { - "title": "Moment mother comes face to face with lifelike statue of her hero son who declared 'glory to Ukraine' as he was executed by Russian captors", - "link": "https://www.dailymail.co.uk/news/article-12839803/mother-comes-face-statue-son-glory-Ukraine-executed-Russian.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:29:50 GMT", - "enclosure": { - "length": "7438", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78717455-0-image-m-68_1701995176672.jpg" - }, - "content": "Oleksandr Matsievskiy, 42, was murdered by Putin's soldiers near Bakhmut in the Donetsk region of eastern Ukraine in March this year, with footage of the horrific act going viral on social media.", - "contentSnippet": "Oleksandr Matsievskiy, 42, was murdered by Putin's soldiers near Bakhmut in the Donetsk region of eastern Ukraine in March this year, with footage of the horrific act going viral on social media.", - "guid": "https://www.dailymail.co.uk/news/article-12839803/mother-comes-face-statue-son-glory-Ukraine-executed-Russian.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:29:50.000Z" - }, - { - "title": "Strikes have cost the NHS \u00a32 billion in lost appointments and overtime... and they're not over yet", - "link": "https://www.dailymail.co.uk/news/article-12839897/Strikes-cost-NHS-2-billion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:29:28 GMT", - "enclosure": { - "length": "11395", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78717849-0-image-m-97_1701994323355.jpg" - }, - "content": "The figure was disclosed yesterday at an NHS England board meeting, where bosses admitted junior doctors could not have chosen a worse time to walkout than over Christmas and New Year.", - "contentSnippet": "The figure was disclosed yesterday at an NHS England board meeting, where bosses admitted junior doctors could not have chosen a worse time to walkout than over Christmas and New Year.", - "guid": "https://www.dailymail.co.uk/news/article-12839897/Strikes-cost-NHS-2-billion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:29:28.000Z" - }, - { - "title": "Russian despot Vladimir Putin says his country's alliance with Iran has helped gain 'good momentum' in the Ukraine war as he meets with Raisi in Tehran", - "link": "https://www.dailymail.co.uk/news/article-12839543/Russia-Vladimir-Putin-alliance-Iran-gain-good-momentum-Ukraine-war-Raisi-Tehran.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:15:31 GMT", - "enclosure": { - "length": "6192", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78717489-0-image-a-44_1701994036084.jpg" - }, - "content": "The despot conveyed his thanks to Ayatollah Ali Khamenei, for helping turn the tide in Ukraine - despite reports of heavy Russian losses in recent weeks and months.", - "contentSnippet": "The despot conveyed his thanks to Ayatollah Ali Khamenei, for helping turn the tide in Ukraine - despite reports of heavy Russian losses in recent weeks and months.", - "guid": "https://www.dailymail.co.uk/news/article-12839543/Russia-Vladimir-Putin-alliance-Iran-gain-good-momentum-Ukraine-war-Raisi-Tehran.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:15:31.000Z" - }, - { - "title": "Kristen Stewart shows off her signature style in a tweed ensemble as she joins fashionable Lucy Boynton at\u00a0the Chanel Metiers d'Art show", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838705/Hollywood-stars-attend-Chanel-Metiers-dArt-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:15:30 GMT", - "enclosure": { - "length": "11261", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78705005-0-image-a-69_1701974147360.jpg" - }, - "content": "The actresses both showed off their signature senses of style as they made quite the entrance to the glitzy fashion show.", - "contentSnippet": "The actresses both showed off their signature senses of style as they made quite the entrance to the glitzy fashion show.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838705/Hollywood-stars-attend-Chanel-Metiers-dArt-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:15:30.000Z" - }, - { - "title": "Hospital sent widow video of husband's death. Grieving wife tells Covid Inquiry how she was banned from visiting ward - and sent memory stick of his final moments", - "link": "https://www.dailymail.co.uk/news/article-12838915/Hospital-covid-inquiry-death-wife-sent-video-banned-ward.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 08 Dec 2023 00:06:35 GMT", - "enclosure": { - "length": "12098", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78705479-0-image-m-16_1701987452021.jpg" - }, - "content": "A hospital filmed the death of a Covid victim before sending the video to his wife. She was refused permission to sit with her husband Mark as he lay dying on a ventilator.", - "contentSnippet": "A hospital filmed the death of a Covid victim before sending the video to his wife. She was refused permission to sit with her husband Mark as he lay dying on a ventilator.", - "guid": "https://www.dailymail.co.uk/news/article-12838915/Hospital-covid-inquiry-death-wife-sent-video-banned-ward.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-08T00:06:35.000Z" - }, - { - "title": "Culture Secretary Lucy Frazer says it is 'morally indefensible' to threaten to jail TV licence defaulters", - "link": "https://www.dailymail.co.uk/news/article-12839575/Lucy-Frazer-jail-TV-licence-defaulters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:55:26 GMT", - "enclosure": { - "length": "10401", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78713087-0-image-a-21_1701987053046.jpg" - }, - "content": "Lucy Frazer's hard-hitting comments came as she announced a \u00a310.50 rise in the annual fee - far lower than the increase sought by the BBC.", - "contentSnippet": "Lucy Frazer's hard-hitting comments came as she announced a \u00a310.50 rise in the annual fee - far lower than the increase sought by the BBC.", - "guid": "https://www.dailymail.co.uk/news/article-12839575/Lucy-Frazer-jail-TV-licence-defaulters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:55:26.000Z" - }, - { - "title": "Switching Prime Minister AGAIN would be 'insanity', warring Tories are warned as Rishi Sunak's Rwanda bill is blasted by both the Left and Right of the party", - "link": "https://www.dailymail.co.uk/news/article-12839555/Switching-Prime-Minister-insanity-Tories-Rishi-Sunaks-Rwanda.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:53:37 GMT", - "enclosure": { - "length": "6055", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78713093-0-image-m-47_1701987090835.jpg" - }, - "content": "MPs will vote on Tuesday on the principle of whether to tighten the law in response to the Supreme Court 's rejection of the scheme last month.", - "contentSnippet": "MPs will vote on Tuesday on the principle of whether to tighten the law in response to the Supreme Court 's rejection of the scheme last month.", - "guid": "https://www.dailymail.co.uk/news/article-12839555/Switching-Prime-Minister-insanity-Tories-Rishi-Sunaks-Rwanda.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:53:37.000Z" - }, - { - "title": "Jonathan Majors' ex-girlfriend Grace Jabbari breaks down in NYC court room before pleading not to watch police bodycam footage of her being quizzed by cops after alleged assault", - "link": "https://www.dailymail.co.uk/usshowbiz/article-12839657/Jonathan-Majors-Grace-Jabbari-assault-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:48:44 GMT", - "enclosure": { - "length": "10641", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/23/78716403-0-image-a-9_1701991696893.jpg" - }, - "content": "Grace Jabbari (left) sobbed on the stand during cross examination in her third day testifying in the Jonathan Majors (right) assault trial.", - "contentSnippet": "Grace Jabbari (left) sobbed on the stand during cross examination in her third day testifying in the Jonathan Majors (right) assault trial.", - "guid": "https://www.dailymail.co.uk/usshowbiz/article-12839657/Jonathan-Majors-Grace-Jabbari-assault-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:48:44.000Z" - }, - { - "title": "EPHRAIM HARDCASTLE: Robert Jenrick once encouraged hundreds of foreign artists, dancers and writers to come to Britain... But now clarions his passion for immigration curbs", - "link": "https://www.dailymail.co.uk/debate/article-12839731/EPHRAIM-HARDCASTLE-Robert-Jenrick-encouraged-hundreds-foreign-artists-dancers-writers-come-Britain-clarions-passion-immigration-curbs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:43:18 GMT", - "enclosure": { - "length": "7772", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/23/78712995-0-image-m-68_1701991094561.jpg" - }, - "content": "EPHRAIM HARDCASTLE: Could this be the same man who encouraged foreign artists, dancers and writers to come to the UK using the little-known Home Office scheme?", - "contentSnippet": "EPHRAIM HARDCASTLE: Could this be the same man who encouraged foreign artists, dancers and writers to come to the UK using the little-known Home Office scheme?", - "guid": "https://www.dailymail.co.uk/debate/article-12839731/EPHRAIM-HARDCASTLE-Robert-Jenrick-encouraged-hundreds-foreign-artists-dancers-writers-come-Britain-clarions-passion-immigration-curbs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:43:18.000Z" - }, - { - "title": "Chicken Run: Dawn Of The Nugget review - You'll wish these chickens the best of cluck in this eggscelent sequel... I give it FIVE STARS! writes BRIAN VINER", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839349/chicken-run-dawn-nugget-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:39:04 GMT", - "enclosure": { - "length": "12553", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710759-0-image-a-41_1701984113767.jpg" - }, - "content": "BRIAN VINER: Every so often a film comes along that makes you smile even before you've seen it, purely on account of the title.", - "contentSnippet": "BRIAN VINER: Every so often a film comes along that makes you smile even before you've seen it, purely on account of the title.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839349/chicken-run-dawn-nugget-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:39:04.000Z" - }, - { - "title": "ANDREW PIERCE: The Tory party's mood right now is as fractious as it was when Liz Truss was toppled.. It's not inconceivable Rishi Sunak could face a leadership challenge next year", - "link": "https://www.dailymail.co.uk/debate/article-12839593/Rishi-Sunak-leadership-challenge-ANDREW-PIERCE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:34:15 GMT", - "enclosure": { - "length": "10566", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714471-0-image-a-57_1701988504303.jpg" - }, - "content": "ANDREW PIERCE: After the PM's bravura performance in front of the 1922 Committee of backbenchers, dozens of Tory MPs banged their desks to show support for the embattled Rishi Sunak.", - "contentSnippet": "ANDREW PIERCE: After the PM's bravura performance in front of the 1922 Committee of backbenchers, dozens of Tory MPs banged their desks to show support for the embattled Rishi Sunak.", - "guid": "https://www.dailymail.co.uk/debate/article-12839593/Rishi-Sunak-leadership-challenge-ANDREW-PIERCE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:34:15.000Z" - }, - { - "title": "QUENTIN LETTS: Biffy Rishi was angrier than Oliver Cromwell's wart as he addressed the latest Tory infighting at an emergency news conference", - "link": "https://www.dailymail.co.uk/debate/article-12839523/QUENTIN-LETTS-Rishi-angrier-Tory-infighting-news-conference.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:32:35 GMT", - "enclosure": { - "length": "10312", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78712929-0-image-a-53_1701986827953.jpg" - }, - "content": "QUENTIN LETTS: There is something rather liberating when a polite technocrat loses his rag. Boy, Rishi Sunak was cross. The PM called a news conference to address the Tory infighting.", - "contentSnippet": "QUENTIN LETTS: There is something rather liberating when a polite technocrat loses his rag. Boy, Rishi Sunak was cross. The PM called a news conference to address the Tory infighting.", - "guid": "https://www.dailymail.co.uk/debate/article-12839523/QUENTIN-LETTS-Rishi-angrier-Tory-infighting-news-conference.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:32:35.000Z" - }, - { - "title": "'F*** YOU, Daily Mail!' Covid Inquiry hears the cry then-PM (and now must-read columnist) Boris Johnson made at the height of the pandemic\u2026 proof everyone falls in love with us in the end!", - "link": "https://www.dailymail.co.uk/news/article-12839391/Boris-Johnson-F-Daily-Mail-Covid-Inquiry-hears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:24:07 GMT", - "enclosure": { - "length": "3752", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78712861-0-image-m-30_1701987166535.jpg" - }, - "content": "Yesterday the Covid inquiry was shocked to hear that Boris Johnson exclaimed: 'F*** YOU Daily Mail!' at the height of the pandemic.", - "contentSnippet": "Yesterday the Covid inquiry was shocked to hear that Boris Johnson exclaimed: 'F*** YOU Daily Mail!' at the height of the pandemic.", - "guid": "https://www.dailymail.co.uk/news/article-12839391/Boris-Johnson-F-Daily-Mail-Covid-Inquiry-hears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:24:07.000Z" - }, - { - "title": "The cost of the Rwanda scheme has doubled to \u00a3300 million despite never having been used, the Home Office reveals", - "link": "https://www.dailymail.co.uk/news/article-12839625/The-cost-Rwanda-scheme-doubled-300-million-despite-never-having-used-Home-Office-reveals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:19:15 GMT", - "enclosure": { - "length": "8396", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714121-0-image-a-58_1701988238268.jpg" - }, - "content": "Whitehall sources told the Mail ministers had signed off payments totalling a further \u00a3100million to the east African state on top of the original \u00a3140million cost.", - "contentSnippet": "Whitehall sources told the Mail ministers had signed off payments totalling a further \u00a3100million to the east African state on top of the original \u00a3140million cost.", - "guid": "https://www.dailymail.co.uk/news/article-12839625/The-cost-Rwanda-scheme-doubled-300-million-despite-never-having-used-Home-Office-reveals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:19:15.000Z" - }, - { - "title": "LUCY FRAZER: Why I've capped the TV licence fee rise... There is no legitimate case for increasing it in the current climate", - "link": "https://www.dailymail.co.uk/news/article-12839577/LUCY-FRAZER-TV-licence-fee.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:11:00 GMT", - "enclosure": { - "length": "4884", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714971-0-image-m-64_1701989356827.jpg" - }, - "content": "We are not complacent - we know inflation in some areas is proving more persistent.", - "contentSnippet": "We are not complacent - we know inflation in some areas is proving more persistent.", - "guid": "https://www.dailymail.co.uk/news/article-12839577/LUCY-FRAZER-TV-licence-fee.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:11:00.000Z" - }, - { - "title": "Queen Mathilde of Belgium enjoys a beverage as she joins King Philippe at a Christmas market in Germany", - "link": "https://www.dailymail.co.uk/femail/article-12839169/Queen-Mathilde-Belgium-enjoys-beverage-joins-King-Philippe-Christmas-market-Germany.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 23:07:54 GMT", - "enclosure": { - "length": "10662", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78713175-0-image-a-149_1701987227312.jpg" - }, - "content": "The happy couple visited the festive stalls at the Frauenkirche in Dresden, where they soaked up the vibrant Christmas atmosphere.", - "contentSnippet": "The happy couple visited the festive stalls at the Frauenkirche in Dresden, where they soaked up the vibrant Christmas atmosphere.", - "guid": "https://www.dailymail.co.uk/femail/article-12839169/Queen-Mathilde-Belgium-enjoys-beverage-joins-King-Philippe-Christmas-market-Germany.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T23:07:54.000Z" - }, - { - "title": "Pornstar Adam22 claims it 'takes a REAL man to share his wife' as he and spouse Lena the Plug prepare to debut video of THREESOME with man who won a competition to join them in their marital bed", - "link": "https://www.dailymail.co.uk/femail/article-12839373/Pornstar-Adam22-wife-Lena-Plug-THREESOME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:55:57 GMT", - "enclosure": { - "length": "11093", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78713555-0-image-a-37_1701987698582.jpg" - }, - "content": "Adam22 has claimed it takes a 'real man' to let his wife sleep with another man as he and his pornstar wife prepare to debut a video of a threesome with X-rated actor.", - "contentSnippet": "Adam22 has claimed it takes a 'real man' to let his wife sleep with another man as he and his pornstar wife prepare to debut a video of a threesome with X-rated actor.", - "guid": "https://www.dailymail.co.uk/femail/article-12839373/Pornstar-Adam22-wife-Lena-Plug-THREESOME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:55:57.000Z" - }, - { - "title": "Kate Beckinsale is seen taking stepfather to hospital in a stretcher as it's revealed he's been diagnosed with two types of cancer AND suffered a stroke - while her mom is also battling a long-term illness that has put actress 'under relentless strain'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12833183/kate-beckinsale-caregiver-parents-health-battles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:55:53 GMT", - "enclosure": { - "length": "12359", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710037-0-image-a-16_1701985293526.jpg" - }, - "content": "Exclusive images show the actress, 50, comforting her stepdad Roy Battersby, 87, as he was transported on a stretcher outside a Los Angeles hospital on Wednesday.", - "contentSnippet": "Exclusive images show the actress, 50, comforting her stepdad Roy Battersby, 87, as he was transported on a stretcher outside a Los Angeles hospital on Wednesday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12833183/kate-beckinsale-caregiver-parents-health-battles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:55:53.000Z" - }, - { - "title": "Make time for your health and get outside for a walk", - "link": "https://www.dailymail.co.uk/home/books/article-12839001/Make-time-health-outside-walk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:55:48 GMT", - "enclosure": { - "length": "11021", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711387-0-image-a-22_1701984981440.jpg" - }, - "content": "We've picked out a selection of books that will help you feel better for longer, including Dr Peter Attia's Outlive: The Science of Longevity and Davinia Taylor's Hack Your Hormones.", - "contentSnippet": "We've picked out a selection of books that will help you feel better for longer, including Dr Peter Attia's Outlive: The Science of Longevity and Davinia Taylor's Hack Your Hormones.", - "guid": "https://www.dailymail.co.uk/home/books/article-12839001/Make-time-health-outside-walk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:55:48.000Z" - }, - { - "title": "A 5.8 magnitude earthquake has struck Mexico City, with reports of minimal damage", - "link": "https://www.dailymail.co.uk/news/article-12839365/earthquake-mexico-city-5-8-magnitude.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:54:33 GMT", - "enclosure": { - "length": "11268", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78712111-0-image-a-35_1701985883682.jpg" - }, - "content": "A 5.8 magnitude earthquake has struck Mexico City and sent anxious residents out into the streets as buildings shook.", - "contentSnippet": "A 5.8 magnitude earthquake has struck Mexico City and sent anxious residents out into the streets as buildings shook.", - "guid": "https://www.dailymail.co.uk/news/article-12839365/earthquake-mexico-city-5-8-magnitude.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:54:33.000Z" - }, - { - "title": "Queen Camilla joins famous faces such as\u00a0Dame Joanna Lumley, Dame Prue Leith and Gyles Brandreth at St Paul's Cathedral for charity Christmas carol concert", - "link": "https://www.dailymail.co.uk/femail/article-12839597/Queen-Camilla-joins-famous-faces-Dame-Joanna-Lumley-Dame-Prue-Leith-Gyles-Brandreth-St-Pauls-Cathedral-charity-Christmas-carol-concert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:53:05 GMT", - "enclosure": { - "length": "11257", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714371-0-image-a-15_1701988529162.jpg" - }, - "content": "Camilla, 76, mingled with the likes of Dame Joanna Lumley, 77, Dame Prue Leith, 83, and Gyles Brandreth, 75, at the London event in her role as president for cancer charity Maggie's.", - "contentSnippet": "Camilla, 76, mingled with the likes of Dame Joanna Lumley, 77, Dame Prue Leith, 83, and Gyles Brandreth, 75, at the London event in her role as president for cancer charity Maggie's.", - "guid": "https://www.dailymail.co.uk/femail/article-12839597/Queen-Camilla-joins-famous-faces-Dame-Joanna-Lumley-Dame-Prue-Leith-Gyles-Brandreth-St-Pauls-Cathedral-charity-Christmas-carol-concert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:53:05.000Z" - }, - { - "title": "Feast your eyes on these picture-perfect presents", - "link": "https://www.dailymail.co.uk/home/books/article-12839011/Feast-eyes-picture-perfect-presents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:51:46 GMT", - "enclosure": { - "length": "10533", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78712805-0-image-a-4_1701986444595.jpg" - }, - "content": "When you're thinking what to buy for your loved ones this Christmas, be sure to consider one of these beautiful picture books on subjects ranging from Princess Diana to designer Yves Saint Laurent.", - "contentSnippet": "When you're thinking what to buy for your loved ones this Christmas, be sure to consider one of these beautiful picture books on subjects ranging from Princess Diana to designer Yves Saint Laurent.", - "guid": "https://www.dailymail.co.uk/home/books/article-12839011/Feast-eyes-picture-perfect-presents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:51:46.000Z" - }, - { - "title": "'Lady in red' seen around the world in iconic image from Nova festival terror attack reveals astonishing story of her survival, seeing her friends killed and how her daughter 'foresaw danger'... as she dons famous shawl again for the first time", - "link": "https://www.dailymail.co.uk/news/article-12837233/Lady-red-seen-world-iconic-image-Nova-festival-terror-attack-reveals-astonishing-story-survival-seeing-friends-killed-daughter-foresaw-danger-dons-famous-shawl-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:49:16 GMT", - "enclosure": { - "length": "5918", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/13/78690921-0-image-m-29_1701956298701.jpg" - }, - "content": "MailOnline has tracked down the 'lady in red' and, for the first time, Vlada Patapov - a 25-year-old Ukrainian-born mother of one - tells her story.", - "contentSnippet": "MailOnline has tracked down the 'lady in red' and, for the first time, Vlada Patapov - a 25-year-old Ukrainian-born mother of one - tells her story.", - "guid": "https://www.dailymail.co.uk/news/article-12837233/Lady-red-seen-world-iconic-image-Nova-festival-terror-attack-reveals-astonishing-story-survival-seeing-friends-killed-daughter-foresaw-danger-dons-famous-shawl-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:49:16.000Z" - }, - { - "title": "DAILY MAIL COMMENT: Stop squabbling and back the Rwanda Bill", - "link": "https://www.dailymail.co.uk/news/article-12839485/DAILY-MAIL-COMMENT-Rwanda-Bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:47:59 GMT", - "enclosure": { - "length": "8435", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78712437-0-image-m-16_1701986490560.jpg" - }, - "content": "In a letter in 1780, John Adams, the second president of the US, warned of the hazards of political polarisation in a democracy.", - "contentSnippet": "In a letter in 1780, John Adams, the second president of the US, warned of the hazards of political polarisation in a democracy.", - "guid": "https://www.dailymail.co.uk/news/article-12839485/DAILY-MAIL-COMMENT-Rwanda-Bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:47:59.000Z" - }, - { - "title": "Premier League RECAP: Tottenham surrender lead at home to West Ham with Ward-Prowse firing Hammers 2-1 up... after Everton beat Newcastle 3-0", - "link": "https://www.dailymail.co.uk/sport/live/article-12838305/Everton-vs-Newcastle-Tottenham-vs-West-Ham-Premier-League-2023-24-Live-Results.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:36:23 GMT", - "enclosure": { - "length": "6144", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709253-0-image-a-84_1701981429174.jpg" - }, - "content": "Re-live Mail Sport's live blog providing all the team news and updates as Everton took on Newcastle United and Tottenham hosted West Ham in Premier League action.\u00a0", - "contentSnippet": "Re-live Mail Sport's live blog providing all the team news and updates as Everton took on Newcastle United and Tottenham hosted West Ham in Premier League action.", - "guid": "https://www.dailymail.co.uk/sport/live/article-12838305/Everton-vs-Newcastle-Tottenham-vs-West-Ham-Premier-League-2023-24-Live-Results.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:36:23.000Z" - }, - { - "title": "I'm A Celebrity bosses 'fear for the final' as\u00a0Cyclone Jasper heads for Australia with 120mph winds and heavy rain", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839087/im-celebrity-cyclone-jasper-australia-weather-winds-rain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:26:22 GMT", - "enclosure": { - "length": "9581", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709613-0-image-a-58_1701981954386.jpg" - }, - "content": "I'm A Celebrity bosses are said to be watching the weather forecast with 'baited breath' as Cyclone Jasper makes its way towards Australia.", - "contentSnippet": "I'm A Celebrity bosses are said to be watching the weather forecast with 'baited breath' as Cyclone Jasper makes its way towards Australia.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839087/im-celebrity-cyclone-jasper-australia-weather-winds-rain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:26:22.000Z" - }, - { - "title": "EDEN CONFIDENTIAL: The world's first supermodel Jean 'The Shrimp' Shrimpton to sell her idyllic seaside hotel in Cornwall for \u00a31.9 million", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839303/Jean-Shrimp-Shrimpton-sell-seaside-hotel-Cornwall-EDEN-CONFIDENTIAL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:23:09 GMT", - "enclosure": { - "length": "9571", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710321-0-image-a-6_1701983263901.jpg" - }, - "content": "EDEN CONFIDENTIAL: Within a decade, Jean Shrimpton turned her back on her time as 'The Shrimp' - a nickname she loathed - in favour of a reclusive life in Cornwall.", - "contentSnippet": "EDEN CONFIDENTIAL: Within a decade, Jean Shrimpton turned her back on her time as 'The Shrimp' - a nickname she loathed - in favour of a reclusive life in Cornwall.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839303/Jean-Shrimp-Shrimpton-sell-seaside-hotel-Cornwall-EDEN-CONFIDENTIAL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:23:09.000Z" - }, - { - "title": "Pantone reveals its 2024 Color of the Year is 'peach fuzz' - saying hue is meant to 'echo our innate yearning for closeness and connection'", - "link": "https://www.dailymail.co.uk/femail/article-12838687/Pantone-2024-Color-Year-Peach-Fuzz.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:18:22 GMT", - "enclosure": { - "length": "6594", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78706455-0-image-a-60_1701976818573.jpg" - }, - "content": "The company announced that Peach Fuzz,\u00a0also known as Pantone 13-1023, had clinched the accolade for the year ahead. Experts say the shade 'echoes our innate yearning for closeness'", - "contentSnippet": "The company announced that Peach Fuzz,\u00a0also known as Pantone 13-1023, had clinched the accolade for the year ahead. Experts say the shade 'echoes our innate yearning for closeness'", - "guid": "https://www.dailymail.co.uk/femail/article-12838687/Pantone-2024-Color-Year-Peach-Fuzz.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:18:22.000Z" - }, - { - "title": "Kevin Sinfield caps a gruelling SEVENTH ultra marathon in just seven days with an emotional speech - after running 190.4 miles in support of best friend Rob Burrow and motor neurone disease charities", - "link": "https://www.dailymail.co.uk/sport/rugbyunion/article-12838877/Kevin-Sinfield-gruelling-SEVENTH-ultra-marathon-emotional-speech-Rob-Burrow-motor-neurone-disease-charity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:18:03 GMT", - "enclosure": { - "length": "13035", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78706047-0-image-a-31_1701975936832.jpg" - }, - "content": "DAVID COVERDALE: Burrow was diagnosed with MND in 2019, and the following year, Sinfield embarked on his first fundraising challenge for his former Leeds Rhinos team-mate.", - "contentSnippet": "DAVID COVERDALE: Burrow was diagnosed with MND in 2019, and the following year, Sinfield embarked on his first fundraising challenge for his former Leeds Rhinos team-mate.", - "guid": "https://www.dailymail.co.uk/sport/rugbyunion/article-12838877/Kevin-Sinfield-gruelling-SEVENTH-ultra-marathon-emotional-speech-Rob-Burrow-motor-neurone-disease-charity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:18:03.000Z" - }, - { - "title": "Lauren S\u00e1nchez flashes serious side boob in a playful halter top as she arrives hand-in-hand with Amazon billionaire Jeff Bezos at Art Basel event in Miami - before giving his behind a cheeky squeeze", - "link": "https://www.dailymail.co.uk/femail/article-12839085/Lauren-Sanchez-flashes-boob-holding-hands-jeff-bezos-miami.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:10:10 GMT", - "enclosure": { - "length": "11677", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711103-0-image-a-57_1701984658469.jpg" - }, - "content": "S\u00e1nchez has flashed some serious side boob in a playful star-emblazoned halter top as she arrived hand-in-hand with her Amazon billionaire\u00a0fianc\u00e9, Jeff Bezos, ahead of Miami's Art Basel exhibit.", - "contentSnippet": "S\u00e1nchez has flashed some serious side boob in a playful star-emblazoned halter top as she arrived hand-in-hand with her Amazon billionaire\u00a0fianc\u00e9, Jeff Bezos, ahead of Miami's Art Basel exhibit.", - "guid": "https://www.dailymail.co.uk/femail/article-12839085/Lauren-Sanchez-flashes-boob-holding-hands-jeff-bezos-miami.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:10:10.000Z" - }, - { - "title": "Evri named most hated parcel firm in Britain with the highest proportion of dissatisfied customers", - "link": "https://www.dailymail.co.uk/money/markets/article-12838913/Evri-named-hated-parcel-firm-Britain-highest-proportion-dissatisfied-customers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:01:02 GMT", - "enclosure": { - "length": "6348", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78705855-0-image-m-23_1701975821628.jpg" - }, - "content": "Nearly half of those who contacted Evri with an issue said they were unhappy with the complaints process, a major survey found.", - "contentSnippet": "Nearly half of those who contacted Evri with an issue said they were unhappy with the complaints process, a major survey found.", - "guid": "https://www.dailymail.co.uk/money/markets/article-12838913/Evri-named-hated-parcel-firm-Britain-highest-proportion-dissatisfied-customers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:01:02.000Z" - }, - { - "title": "Cash-strapped South East Water sinks deeper in the red\u00a0as interest payments on its debts soar", - "link": "https://www.dailymail.co.uk/money/markets/article-12838771/Cash-strapped-South-East-Water-sinks-deeper-red-payments-debts-soar.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 22:00:46 GMT", - "enclosure": { - "length": "8893", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78712017-0-image-m-4_1701985735498.jpg" - }, - "content": "In the latest setback for the industry, South East Water saw its loss before tax widen to \u00a318.1m from \u00a312.7m in the six months to the end of September.", - "contentSnippet": "In the latest setback for the industry, South East Water saw its loss before tax widen to \u00a318.1m from \u00a312.7m in the six months to the end of September.", - "guid": "https://www.dailymail.co.uk/money/markets/article-12838771/Cash-strapped-South-East-Water-sinks-deeper-red-payments-debts-soar.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T22:00:46.000Z" - }, - { - "title": "Rapper Kodak Black is arrested on drug charges after traffic stop where cops found 'white pills and $75,000 in cash' - three years after he was pardoned by Trump", - "link": "https://www.dailymail.co.uk/news/article-12839251/Rapper-Kodak-Black-arrested-drug-charges-Trump.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:56:57 GMT", - "enclosure": { - "length": "10202", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710389-0-image-a-21_1701983489900.jpg" - }, - "content": "Kodak was one of over 140 people granted pardons on Trump's last full day as president. In return Kodak has repeatedly endorsed the former president.", - "contentSnippet": "Kodak was one of over 140 people granted pardons on Trump's last full day as president. In return Kodak has repeatedly endorsed the former president.", - "guid": "https://www.dailymail.co.uk/news/article-12839251/Rapper-Kodak-Black-arrested-drug-charges-Trump.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:56:57.000Z" - }, - { - "title": "Las Vegas teacher sobs as she shares her students' heartbreaking Christmas wishes - including one who asked for a 'bag of chips so I won't feel hungry' and another who wants 'slippers to protect me from the cold'", - "link": "https://www.dailymail.co.uk/femail/article-12837705/Teacher-tears-students-Christmas-wishes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:55:39 GMT", - "enclosure": { - "length": "10884", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78704779-0-image-a-1_1701973537002.jpg" - }, - "content": "Cheri Guy, an English teacher at Desert Pines High School, Las Vegas, took to TikTok with the candid clip. Other social media users were quick to flood the comments with their support.", - "contentSnippet": "Cheri Guy, an English teacher at Desert Pines High School, Las Vegas, took to TikTok with the candid clip. Other social media users were quick to flood the comments with their support.", - "guid": "https://www.dailymail.co.uk/femail/article-12837705/Teacher-tears-students-Christmas-wishes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:55:39.000Z" - }, - { - "title": "Man, 41, is slammed after complaining that he has no savings, no job, and has had to rely on his parents to pay his rent for SEVEN YEARS - all because he REFUSES to take work that he believes is 'beneath him'", - "link": "https://www.dailymail.co.uk/femail/article-12838081/Man-no-job-savings-parents-pay-rent-work.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:55:36 GMT", - "enclosure": { - "length": "9914", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78702451-0-image-a-51_1701970829291.jpg" - }, - "content": "Brint Davy, from Austin, Texas, appeared on a recent episode of Caleb Hammer's Financial Audit on YouTube. He explained how he is thousands of dollars in debt, but is not willing to cut back.", - "contentSnippet": "Brint Davy, from Austin, Texas, appeared on a recent episode of Caleb Hammer's Financial Audit on YouTube. He explained how he is thousands of dollars in debt, but is not willing to cut back.", - "guid": "https://www.dailymail.co.uk/femail/article-12838081/Man-no-job-savings-parents-pay-rent-work.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:55:36.000Z" - }, - { - "title": "I'm A Celeb's Danielle Harold reveals how Jamie Oliver's Dream School changed her life as she reflects on landing her EastEnders role", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839229/Im-Celebs-Danielle-Harold-Jamie-Olivers-Dream-School-EastEnders-role-acting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:53:35 GMT", - "enclosure": { - "length": "9673", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710409-0-image-a-11_1701983533386.jpg" - }, - "content": "I'm A Celeb's Danielle Harold revealed how Jamie Oliver's Dream School changed her life as she reflected on landing her EastEnders role on Thursday night's episode.", - "contentSnippet": "I'm A Celeb's Danielle Harold revealed how Jamie Oliver's Dream School changed her life as she reflected on landing her EastEnders role on Thursday night's episode.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839229/Im-Celebs-Danielle-Harold-Jamie-Olivers-Dream-School-EastEnders-role-acting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:53:35.000Z" - }, - { - "title": "Fury as Bristol University professor, 78, calls for 'somebody to blow up the venue' while Jewish Labour Movement hosts its annual conference", - "link": "https://www.dailymail.co.uk/news/article-12838801/Fury-Bristol-University-professor-78-calls-somebody-blow-venue-Jewish-Labour-Movement-hosts-annual-conference.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:52:30 GMT", - "enclosure": { - "length": "4062", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78706849-0-image-a-28_1701979829382.jpg" - }, - "content": "In a now-deleted Tweet, Harriet Bradley, 78, who works at Bristol University, re-shared a poster advertising the event due to be held in North London on January 14.", - "contentSnippet": "In a now-deleted Tweet, Harriet Bradley, 78, who works at Bristol University, re-shared a poster advertising the event due to be held in North London on January 14.", - "guid": "https://www.dailymail.co.uk/news/article-12838801/Fury-Bristol-University-professor-78-calls-somebody-blow-venue-Jewish-Labour-Movement-hosts-annual-conference.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:52:30.000Z" - }, - { - "title": "I'm A Celeb's Sam Thompson accuses Nigel Farage of 'throwing him under the bus' as they come to blows after burning the rice as camp chefs", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839095/Im-Celebs-Sam-Thompson-Nigel-Farage-blows-camp-chefs-burnt-rice.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:51:06 GMT", - "enclosure": { - "length": "11180", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709055-0-image-a-57_1701981116718.jpg" - }, - "content": "The cooking drama continued on Thursday night's I'm A Celebrity as Sam Thompson and Nigel Farage came to blows over some burnt rice.\u00a0", - "contentSnippet": "The cooking drama continued on Thursday night's I'm A Celebrity as Sam Thompson and Nigel Farage came to blows over some burnt rice.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839095/Im-Celebs-Sam-Thompson-Nigel-Farage-blows-camp-chefs-burnt-rice.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:51:06.000Z" - }, - { - "title": "Mom and two children, 2 and 3, are pinned underneath car as dozens of high school students lift up vehicle to save them from being crushed", - "link": "https://www.dailymail.co.uk/news/article-12838989/utah-mom-children-pinned-car-Layton-Christan-students.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:38:47 GMT", - "enclosure": { - "length": "9373", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78708095-0-image-a-70_1701983353025.jpg" - }, - "content": "Bridgette Ponson and her two children were trapped under a car after they were run over in the Layton Christian Academy parking lot on Tuesday. The students managed to save them from the vehicle.", - "contentSnippet": "Bridgette Ponson and her two children were trapped under a car after they were run over in the Layton Christian Academy parking lot on Tuesday. The students managed to save them from the vehicle.", - "guid": "https://www.dailymail.co.uk/news/article-12838989/utah-mom-children-pinned-car-Layton-Christan-students.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:38:47.000Z" - }, - { - "title": "Kidnapper, 38, broke into the home of grandfather as he babysat his two-year-old granddaughter and snatched the little girl before telling him: 'This child belongs to Jihad now'", - "link": "https://www.dailymail.co.uk/news/article-12839189/Kidnapper-38-broke-home-grandfather-babysat-two-year-old-granddaughter-snatched-little-girl-telling-child-belongs-Jihad-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:34:44 GMT", - "enclosure": { - "length": "3832", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711087-0-image-a-35_1701984668175.jpg" - }, - "content": "Andrzej Jasinski, 38, let himself into the house in Thomson Street, Carlisle, while the 63-year-old man was babysitting his granddaughter and watching children's TV.", - "contentSnippet": "Andrzej Jasinski, 38, let himself into the house in Thomson Street, Carlisle, while the 63-year-old man was babysitting his granddaughter and watching children's TV.", - "guid": "https://www.dailymail.co.uk/news/article-12839189/Kidnapper-38-broke-home-grandfather-babysat-two-year-old-granddaughter-snatched-little-girl-telling-child-belongs-Jihad-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:34:44.000Z" - }, - { - "title": "Awkward moment Rishi Sunak and Dutch prime minister Mark Rutte cannot get into 10 Downing Street", - "link": "https://www.dailymail.co.uk/news/article-12839067/Awkward-moment-Rishi-Sunak-Dutch-prime-minister-Mark-Rutte-10-Downing-Street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:30:30 GMT", - "enclosure": { - "length": "10317", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709125-0-image-m-9_1701981601859.jpg" - }, - "content": "This is the awkward moment that Rishi Sunak (right) and outgoing Dutch prime minister Mark Rutte (left) found themselves unable to get into 10 Downing Street this evening.", - "contentSnippet": "This is the awkward moment that Rishi Sunak (right) and outgoing Dutch prime minister Mark Rutte (left) found themselves unable to get into 10 Downing Street this evening.", - "guid": "https://www.dailymail.co.uk/news/article-12839067/Awkward-moment-Rishi-Sunak-Dutch-prime-minister-Mark-Rutte-10-Downing-Street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:30:30.000Z" - }, - { - "title": "Why Liz Taylor needed 21 suites in a Paris hotel", - "link": "https://www.dailymail.co.uk/home/books/article-12838999/Why-Liz-Taylor-needed-21-suites-Paris-hotel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 21:14:58 GMT", - "enclosure": { - "length": "10695", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78707815-0-image-a-4_1701978996238.jpg" - }, - "content": "Can there be anything new to say about the king and queen of excess? The answer is a stonking yes, as Lewis brings his perception and wit to bear on Taylor and Burton's relationship.", - "contentSnippet": "Can there be anything new to say about the king and queen of excess? The answer is a stonking yes, as Lewis brings his perception and wit to bear on Taylor and Burton's relationship.", - "guid": "https://www.dailymail.co.uk/home/books/article-12838999/Why-Liz-Taylor-needed-21-suites-Paris-hotel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T21:14:58.000Z" - }, - { - "title": "Inside Oprah's INCREDIBLE weight loss transformation as she stuns fans with her VERY svelte physique - after years of struggling with 'yo-yo diets' and 'food addiction'", - "link": "https://www.dailymail.co.uk/femail/article-12838141/oprah-winfrey-weight-loss-transformation-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 20:50:42 GMT", - "enclosure": { - "length": "11388", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78703033-0-image-a-37_1701970281837.jpg" - }, - "content": "Oprah, 69, has flaunted her incredibly slimmed down physique recemt;y - after struggling for years with 'yo-yo dieting' and battling 'food addiction.' Take a look back at her weight loss journey.", - "contentSnippet": "Oprah, 69, has flaunted her incredibly slimmed down physique recemt;y - after struggling for years with 'yo-yo dieting' and battling 'food addiction.' Take a look back at her weight loss journey.", - "guid": "https://www.dailymail.co.uk/femail/article-12838141/oprah-winfrey-weight-loss-transformation-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T20:50:42.000Z" - }, - { - "title": "Grieving widower of a nurse, 35, who died after doctors missed her cancer tells inquest his wife 'wanted those responsible to be held to account' - as he pays tribute to the 'shining star'", - "link": "https://www.dailymail.co.uk/news/article-12838959/missed-cancer-nurse-catherine-jones-dead-inquest.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 20:47:33 GMT", - "enclosure": { - "length": "8565", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78610143-0-image-m-27_1701981588991.jpg" - }, - "content": "David Jones, 45, a chartered engineer, said all who knew his late wife Catherine, who died in November 2016 aged just 35, had their lives 'enriched by her'.", - "contentSnippet": "David Jones, 45, a chartered engineer, said all who knew his late wife Catherine, who died in November 2016 aged just 35, had their lives 'enriched by her'.", - "guid": "https://www.dailymail.co.uk/news/article-12838959/missed-cancer-nurse-catherine-jones-dead-inquest.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T20:47:33.000Z" - }, - { - "title": "Horoscope today: Daily guide to what the stars have in store for YOU - December 8, 2023", - "link": "https://www.dailymail.co.uk/femail/article-12839049/Horoscope-today-Daily-guide-stars-store-December-8-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 20:43:07 GMT", - "enclosure": { - "length": "10123", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78708445-0-image-a-6_1701980092751.jpg" - }, - "content": "JEMIMA CAINER: As Jupiter (which rules both Sagittarius and the world's fortunes), links with the cosmic messenger, Mercury, those born under Sagittarius will discover reasons to be hopeful.", - "contentSnippet": "JEMIMA CAINER: As Jupiter (which rules both Sagittarius and the world's fortunes), links with the cosmic messenger, Mercury, those born under Sagittarius will discover reasons to be hopeful.", - "guid": "https://www.dailymail.co.uk/femail/article-12839049/Horoscope-today-Daily-guide-stars-store-December-8-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T20:43:07.000Z" - }, - { - "title": "Man, 70, dies and five others are injured after horror four car pile-up on A66 slip road", - "link": "https://www.dailymail.co.uk/news/article-12839089/Man-70-dies-five-injured-horror-four-car-pile-A66.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 20:30:15 GMT", - "enclosure": { - "length": "7503", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78708297-0-image-m-19_1701980008668.jpg" - }, - "content": "The horror smash took place on the A66 slip road near the Hartington Interchange in Middlesbrough, North Yorkshire, just before 8.40am on Wednesday.", - "contentSnippet": "The horror smash took place on the A66 slip road near the Hartington Interchange in Middlesbrough, North Yorkshire, just before 8.40am on Wednesday.", - "guid": "https://www.dailymail.co.uk/news/article-12839089/Man-70-dies-five-injured-horror-four-car-pile-A66.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T20:30:15.000Z" - }, - { - "title": "82-year-old grandma who 'looks 45' leaves reveals the beauty secrets behind her ageless looks - as she leaves social media in AWE with her VERY youthful appearance", - "link": "https://www.dailymail.co.uk/femail/article-12834023/Grandma-82-SHOCKS-people-young-looks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 20:22:27 GMT", - "enclosure": { - "length": "11585", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/06/21/78663471-0-image-a-38_1701898966144.jpg" - }, - "content": "An 82-year-old TikTok-famous grandmother who looks like she is her 40s has shocked the internet after revealing her real age, and has shared how she keeps herself looking so young.", - "contentSnippet": "An 82-year-old TikTok-famous grandmother who looks like she is her 40s has shocked the internet after revealing her real age, and has shared how she keeps herself looking so young.", - "guid": "https://www.dailymail.co.uk/femail/article-12834023/Grandma-82-SHOCKS-people-young-looks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T20:22:27.000Z" - }, - { - "title": "I'm A Celebrity fans baffled as they spot Nick Pickard secretly indulging in a 'panini' around the camp - after becoming the fourth star voted out", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838237/Im-Celebrity-fans-spot-Nick-Pickard-secretly-indulging-PANINI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 20:05:47 GMT", - "enclosure": { - "length": "12131", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78702955-0-image-m-11_1701969899239.jpg" - }, - "content": "I'm A Celebrity fans thought they spotted Nick Pickard secretly indulging into a panini during Wednesday night's episode.", - "contentSnippet": "I'm A Celebrity fans thought they spotted Nick Pickard secretly indulging into a panini during Wednesday night's episode.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838237/Im-Celebrity-fans-spot-Nick-Pickard-secretly-indulging-PANINI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T20:05:47.000Z" - }, - { - "title": "Heartwarming moment Prince William cheekily shouts 'boo' as he surprises woman during charity walk in memory of her daughter, 16, who took her own life - as delighted mother reveals how she went in for a 'nice hug'", - "link": "https://www.dailymail.co.uk/femail/article-12837333/Heartwarming-moment-Prince-William-surprises-woman-street-charity-walk-memory-daughter-16-took-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 20:02:21 GMT", - "enclosure": { - "length": "11256", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/14/78692557-0-image-a-4_1701957627975.jpg" - }, - "content": "In a video on Facebook, Emma Webb received the shock of her life when the Prince of Wales appeared out of nowhere to join her on day 13 of a fundraising trek from Wales to London", - "contentSnippet": "In a video on Facebook, Emma Webb received the shock of her life when the Prince of Wales appeared out of nowhere to join her on day 13 of a fundraising trek from Wales to London", - "guid": "https://www.dailymail.co.uk/femail/article-12837333/Heartwarming-moment-Prince-William-surprises-woman-street-charity-walk-memory-daughter-16-took-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T20:02:21.000Z" - }, - { - "title": "Chip off the old block! Liam Gallagher's lookalike sons Lennon and Gene hit his home turf for Chanel's Metiers d'Art Manchester show", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838965/Chip-old-block-Liam-Gallaghers-lookalike-sons-Lennon-Gene-hit-home-turf-Chanels-Metiers-dArt-Manchester-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 19:59:50 GMT", - "enclosure": { - "length": "10471", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78706897-0-image-a-84_1701977445941.jpg" - }, - "content": "The second generation of Gallagher brothers Lennon, 24, and Gene, 22, were back on their family's home turf at Chanel 's Metiers d'Art show in Manchester on Thursday.", - "contentSnippet": "The second generation of Gallagher brothers Lennon, 24, and Gene, 22, were back on their family's home turf at Chanel 's Metiers d'Art show in Manchester on Thursday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838965/Chip-old-block-Liam-Gallaghers-lookalike-sons-Lennon-Gene-hit-home-turf-Chanels-Metiers-dArt-Manchester-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T19:59:50.000Z" - }, - { - "title": "'Where is your humanity?': Moment pro-Palestine activist accosts Keir Starmer on a train in a bid to grill the Labour leader over his refusal to back a ceasefire in Gaza", - "link": "https://www.dailymail.co.uk/news/article-12838803/Where-humanity-Moment-pro-Palestine-activist-accosts-Keir-Starmer-train-bid-grill-Labour-leader-refusal-ceasefire-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 19:48:10 GMT", - "enclosure": { - "length": "7054", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78705299-0-image-m-16_1701974830071.jpg" - }, - "content": "In footage being widely shared on social media, Sir Keir is asked: 'Where is your humanity?'", - "contentSnippet": "In footage being widely shared on social media, Sir Keir is asked: 'Where is your humanity?'", - "guid": "https://www.dailymail.co.uk/news/article-12838803/Where-humanity-Moment-pro-Palestine-activist-accosts-Keir-Starmer-train-bid-grill-Labour-leader-refusal-ceasefire-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T19:48:10.000Z" - }, - { - "title": "Chevy Chase, 80, FALLS OFF STAGE at National Lampoon's Christmas Vacation event after arriving onstage in a wheelchair - one day after insisting he's in 'amazing' shape", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838791/Chevy-Chase-80-FALLS-STAGE-National-Lampoon-event.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 19:46:15 GMT", - "enclosure": { - "length": "8806", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78705793-0-image-m-38_1701975630502.jpg" - }, - "content": "Chevy Chase shocked fans when he fell off the stage during a National Lampoon's Christmas Vacation Q&A in Buffalo, NY on Wednesday..", - "contentSnippet": "Chevy Chase shocked fans when he fell off the stage during a National Lampoon's Christmas Vacation Q&A in Buffalo, NY on Wednesday..", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838791/Chevy-Chase-80-FALLS-STAGE-National-Lampoon-event.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T19:46:15.000Z" - }, - { - "title": "ITV report into Phillip Schofield's affair with younger colleague is a 'whitewash' and 'a waste of time', say furious staff who are 'bewildered' by claim only one worker was aware of the relationship", - "link": "https://www.dailymail.co.uk/news/article-12838543/ITV-report-Phillip-Schofields-affair-younger-colleague-whitewash-waste-time-say-furious-staff-bewildered-claim-one-worker-aware-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 19:39:45 GMT", - "enclosure": { - "length": "8533", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/71619801-0-Schofield_and_Willoughby_are_pictured_either_side_of_the_man_wit-a-8_1701969898714.jpg" - }, - "content": "One employee told the Mail of their 'sheer bewilderment' that only one junior worker was aware of the relationship.", - "contentSnippet": "One employee told the Mail of their 'sheer bewilderment' that only one junior worker was aware of the relationship.", - "guid": "https://www.dailymail.co.uk/news/article-12838543/ITV-report-Phillip-Schofields-affair-younger-colleague-whitewash-waste-time-say-furious-staff-bewildered-claim-one-worker-aware-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T19:39:45.000Z" - }, - { - "title": "Sharon Osborne's bizarre lifestyle habits - two hour baths, three day fasts, and barely any sleep - could be wrecking her health, warn experts", - "link": "https://www.dailymail.co.uk/wellness/body/article-12838079/sharon-osbourne-no-sleep-fasts-ozempic-weight-loss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 19:33:36 GMT", - "enclosure": { - "length": "8922", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78700455-0-image-a-2_1701967330496.jpg" - }, - "content": "Sharon Osbourne, 71, has admitted to some concerning habits, including excessively long baths, not sleeping and going days without food. Experts say that, together, these behaviors are risky", - "contentSnippet": "Sharon Osbourne, 71, has admitted to some concerning habits, including excessively long baths, not sleeping and going days without food. Experts say that, together, these behaviors are risky", - "guid": "https://www.dailymail.co.uk/wellness/body/article-12838079/sharon-osbourne-no-sleep-fasts-ozempic-weight-loss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T19:33:36.000Z" - }, - { - "title": "'Murder plan' drawn up by girl accused of killing trans teen Brianna Ghey that says 'I say code word to Boy Y. He stabs her in the back as I stab her in the stomach'", - "link": "https://www.dailymail.co.uk/news/article-12838239/Blood-trans-teen-Brianna-Ghey-stabbed-28-times-frenzied-knife-attack-trainers-jacket-boy-15-accused-killing-murder-trial-hears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 19:01:55 GMT", - "enclosure": { - "length": "9902", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78699981-0-image-m-64_1701966978923.jpg" - }, - "content": "A handwritten plan to stab Brianna Ghey (pictured) to death which was drawn up by a teenage girl before she and a male friend allegedly carried out the murder was shown to a jury today.", - "contentSnippet": "A handwritten plan to stab Brianna Ghey (pictured) to death which was drawn up by a teenage girl before she and a male friend allegedly carried out the murder was shown to a jury today.", - "guid": "https://www.dailymail.co.uk/news/article-12838239/Blood-trans-teen-Brianna-Ghey-stabbed-28-times-frenzied-knife-attack-trainers-jacket-boy-15-accused-killing-murder-trial-hears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T19:01:55.000Z" - }, - { - "title": "JANET STREET-PORTER: Sorry Anne Robinson, but I can't see the snarky 'Queen of Mean' holding her sharp tongue just because she's met her elderly Prince Charming (and, no, I'm not jealous)", - "link": "https://www.dailymail.co.uk/debate/article-12838749/JANET-STREET-PORTER-Anne-Robinson-Queen-Mean-holding-tongue-Prince-Charming-Andrew-Parker-Bowles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 18:58:12 GMT", - "enclosure": { - "length": "9351", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78704893-0-image-a-6_1701973834658.jpg" - }, - "content": "JANET STREET-PORTER: It is the season of good will to all, but I find it difficult to congratulate Anne Robinson on her new boyfriend Andrew Parker Bowles", - "contentSnippet": "JANET STREET-PORTER: It is the season of good will to all, but I find it difficult to congratulate Anne Robinson on her new boyfriend Andrew Parker Bowles", - "guid": "https://www.dailymail.co.uk/debate/article-12838749/JANET-STREET-PORTER-Anne-Robinson-Queen-Mean-holding-tongue-Prince-Charming-Andrew-Parker-Bowles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T18:58:12.000Z" - }, - { - "title": "Book in for a bright Christmas: Illuminated tunnels, fluorescent lakes, and talking trees - light shows are now a feature of the festive season, from Kew Gardens to the Eden Project", - "link": "https://www.dailymail.co.uk/travel/article-12831605/best-christmas-light-trails.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 18:49:07 GMT", - "enclosure": { - "length": "5956", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/06/10/78636385-0-image-m-31_1701857425218.jpg" - }, - "content": "Winter light trails offer dazzling displays and all sorts of treats to get you in the festive mood. Here are some of the best across the UK...", - "contentSnippet": "Winter light trails offer dazzling displays and all sorts of treats to get you in the festive mood. Here are some of the best across the UK...", - "guid": "https://www.dailymail.co.uk/travel/article-12831605/best-christmas-light-trails.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T18:49:07.000Z" - }, - { - "title": "Presents that won't need a return trip: A gift guide for globetrotters who like to travel in style", - "link": "https://www.dailymail.co.uk/travel/article-12817229/Presents-wont-need-return-trip-gift-guide-globetrotters-like-travel-style.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 18:41:16 GMT", - "enclosure": { - "length": "4729", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78500237-0-image-m-145_1701973612560.jpg" - }, - "content": "Know someone who is always jetting off to fabulous destinations? Help them take their travels to the next level with these chic yet affordable gifts...", - "contentSnippet": "Know someone who is always jetting off to fabulous destinations? Help them take their travels to the next level with these chic yet affordable gifts...", - "guid": "https://www.dailymail.co.uk/travel/article-12817229/Presents-wont-need-return-trip-gift-guide-globetrotters-like-travel-style.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T18:41:16.000Z" - }, - { - "title": "1066 and all that! Metal detectorists strike it lucky when they unearth \u00a3500,000 hoard of Anglo-Saxon coins minted in the year Harold was beaten by William at the Battle of Hastings", - "link": "https://www.dailymail.co.uk/news/article-12838319/Metal-detectorists-Anglo-Saxon-coins-Harold-William-Battle-Hastings-1066.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 18:16:44 GMT", - "enclosure": { - "length": "8265", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78702523-0-image-m-18_1701970063936.jpg" - }, - "content": "Three metal detectorists (Paul Ibbotson pictured) struck lucky when they unearthed a hoard of silver coins from one of the most famous years in English history, 1066, in a field near York.", - "contentSnippet": "Three metal detectorists (Paul Ibbotson pictured) struck lucky when they unearthed a hoard of silver coins from one of the most famous years in English history, 1066, in a field near York.", - "guid": "https://www.dailymail.co.uk/news/article-12838319/Metal-detectorists-Anglo-Saxon-coins-Harold-William-Battle-Hastings-1066.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T18:16:44.000Z" - }, - { - "title": "Kate Middleton and Prince William are spotted searching for the perfect Christmas tree with Prince George and Princess Charlotte in Windsor Great Park", - "link": "https://www.dailymail.co.uk/femail/article-12837879/Kate-Middleton-Prince-William-spotted-searching-perfect-Christmas-tree-Prince-George-Princess-Charlotte-Windsor-Great-Park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 18:16:14 GMT", - "enclosure": { - "length": "11326", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78695961-0-image-a-19_1701963372246.jpg" - }, - "content": "Kate and William were visiting the\u00a0Christmas Tree Shop based in the Berkshire\u00a0landscape when they were noticed by a royal fan who shared a photo to Facebook of the Royal Family members.", - "contentSnippet": "Kate and William were visiting the\u00a0Christmas Tree Shop based in the Berkshire\u00a0landscape when they were noticed by a royal fan who shared a photo to Facebook of the Royal Family members.", - "guid": "https://www.dailymail.co.uk/femail/article-12837879/Kate-Middleton-Prince-William-spotted-searching-perfect-Christmas-tree-Prince-George-Princess-Charlotte-Windsor-Great-Park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T18:16:14.000Z" - }, - { - "title": "King Charles gets Santa's seal of approval as he meets Father Christmas at festive market: One's at the 'very top of the good list'", - "link": "https://www.dailymail.co.uk/femail/article-12838341/King-Charles-gets-Santas-seal-approval-meets-Father-Christmas-festive-market-Ones-good-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 18:11:59 GMT", - "enclosure": { - "length": "12075", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78700807-0-image-a-9_1701968055128.jpg" - }, - "content": "The monarch, 75, couldn't help but smile as he noticed a man dressed as Father Christmas at the festive event in London, with the pair sharing an enthusiastic greeting upon meeting one another.", - "contentSnippet": "The monarch, 75, couldn't help but smile as he noticed a man dressed as Father Christmas at the festive event in London, with the pair sharing an enthusiastic greeting upon meeting one another.", - "guid": "https://www.dailymail.co.uk/femail/article-12838341/King-Charles-gets-Santas-seal-approval-meets-Father-Christmas-festive-market-Ones-good-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T18:11:59.000Z" - }, - { - "title": "'I've been spelling my own name wrong my entire life!' Moment man discovers family secret at his grandfather's funeral", - "link": "https://www.dailymail.co.uk/news/article-12837931/Reddit-man-spells-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 18:08:06 GMT", - "enclosure": { - "length": "6053", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78700027-0-image-m-43_1701966607361.jpg" - }, - "content": "A man who attended his grandfather's funeral received the surprise of a lifetime after he unintentionally learned a 50-year-old family secret.", - "contentSnippet": "A man who attended his grandfather's funeral received the surprise of a lifetime after he unintentionally learned a 50-year-old family secret.", - "guid": "https://www.dailymail.co.uk/news/article-12837931/Reddit-man-spells-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T18:08:06.000Z" - }, - { - "title": "Red-faced Miriam Margolyes apologises to Steph McGovern for her rudeness because she said the\u00a0TV host was 'not beautiful' during their last interview", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12837895/miriam-margolyes-apology-steph-mcgovern-not-beautiful.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 18:05:32 GMT", - "enclosure": { - "length": "10060", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78698675-0-image-m-19_1701965202541.jpg" - }, - "content": "On Thursday Miriam was caught in a rare moment of mortification in an appearance on Channel 4 's Steph's Packed Lunch as she tuned in from Italy .", - "contentSnippet": "On Thursday Miriam was caught in a rare moment of mortification in an appearance on Channel 4 's Steph's Packed Lunch as she tuned in from Italy .", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12837895/miriam-margolyes-apology-steph-mcgovern-not-beautiful.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T18:05:32.000Z" - }, - { - "title": "Fears Rishi Sunak could be forced into snap election as Tory infighting rages on Rwanda plan: Defiant PM calls press conference to insist he CAN get deportation flights going ahead of crunch vote - as allies warn MPs against 'insane' leadership challenge", - "link": "https://www.dailymail.co.uk/news/article-12838097/Fears-Rishi-Sunak-forced-snap-election-Tory-infighting-rages-Rwanda-plan-Defiant-PM-calls-press-conference-insist-deportation-flights-going-ahead-crunch-vote-allies-warn-MPs-against-insane-leadership-challenge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 17:52:11 GMT", - "enclosure": { - "length": "5227", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/11/78687127-0-image-m-30_1701947790753.jpg" - }, - "content": "At a hastily-arranged Downing Street press conference, the PM dismissed a revolt among MPs on the right and left wings over new emergency legislation.", - "contentSnippet": "At a hastily-arranged Downing Street press conference, the PM dismissed a revolt among MPs on the right and left wings over new emergency legislation.", - "guid": "https://www.dailymail.co.uk/news/article-12838097/Fears-Rishi-Sunak-forced-snap-election-Tory-infighting-rages-Rwanda-plan-Defiant-PM-calls-press-conference-insist-deportation-flights-going-ahead-crunch-vote-allies-warn-MPs-against-insane-leadership-challenge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T17:52:11.000Z" - }, - { - "title": "RICHARD EDEN: Harry and Meghan are doing huge damage to the Monarchy. STRIP them of their titles now - or risk yet more havoc", - "link": "https://www.dailymail.co.uk/news/article-12836305/EDEN-Harry-Meghan-damage-Strip-titles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 17:51:34 GMT", - "enclosure": { - "length": "9890", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/11/78687937-0-image-a-48_1701948808225.jpg" - }, - "content": "Harry and Meghan should be stripped of their titles as Duke and Duchess of Sussex to prevent further damage to the monarchy, according to Richard Eden.", - "contentSnippet": "Harry and Meghan should be stripped of their titles as Duke and Duchess of Sussex to prevent further damage to the monarchy, according to Richard Eden.", - "guid": "https://www.dailymail.co.uk/news/article-12836305/EDEN-Harry-Meghan-damage-Strip-titles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T17:51:34.000Z" - }, - { - "title": "Gross sea creature that looks like feces may help fight CANCER", - "link": "https://www.dailymail.co.uk/sciencetech/article-12838099/sea-cucumber-looks-like-FECES-help-fight-CANCER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 17:31:51 GMT", - "enclosure": { - "length": "5698", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78701583-0-image-a-27_1701968602046.jpg" - }, - "content": "A species of sea cucumber from the Philippines contains molecules that have been shown in lab testing to kill human liver cancer cells. More experiments are needed to confirm these properties.", - "contentSnippet": "A species of sea cucumber from the Philippines contains molecules that have been shown in lab testing to kill human liver cancer cells. More experiments are needed to confirm these properties.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12838099/sea-cucumber-looks-like-FECES-help-fight-CANCER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T17:31:51.000Z" - }, - { - "title": "Meghan Markle could be dropped by her Hollywood talent agency over Omid Scobie's bombshell book Endgame because she is now 'too hot to handle' and is 'guilty by association', PR experts say", - "link": "https://www.dailymail.co.uk/news/article-12837793/meghan-markle-omid-scobie-endgame-book.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 17:16:49 GMT", - "enclosure": { - "length": "9193", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78698069-0-image-a-36_1701964650880.jpg" - }, - "content": "The Duchess of Sussex signed with WME mega-agent Ari Emanuel whose roster includes Dwayne 'The Rock' Johnson , tennis star Serena Williams and other A-Listers.", - "contentSnippet": "The Duchess of Sussex signed with WME mega-agent Ari Emanuel whose roster includes Dwayne 'The Rock' Johnson , tennis star Serena Williams and other A-Listers.", - "guid": "https://www.dailymail.co.uk/news/article-12837793/meghan-markle-omid-scobie-endgame-book.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T17:16:49.000Z" - }, - { - "title": "I was born into a Maoist cult and held as a slave for 30 years by my brutish father Comrade Bala - and I've finally learned to forgive him: Woman shares her incredible true story", - "link": "https://www.dailymail.co.uk/news/article-12838025/Maoist-cult-leader-daughter-slave-Katy-Morgan-Davies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 17:07:58 GMT", - "enclosure": { - "length": "7228", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78698093-0-image-m-139_1701965896393.jpg" - }, - "content": "Katy Morgan-Davies, 40, was effectively kept prisoner in the bizarre cult's house in Herne Hill, South London , and could not get to know her extended family or make friends.", - "contentSnippet": "Katy Morgan-Davies, 40, was effectively kept prisoner in the bizarre cult's house in Herne Hill, South London , and could not get to know her extended family or make friends.", - "guid": "https://www.dailymail.co.uk/news/article-12838025/Maoist-cult-leader-daughter-slave-Katy-Morgan-Davies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T17:07:58.000Z" - }, - { - "title": "Founder of company which 'supplied jet engine parts with falsified safety paperwork' is arrested by fraud cops in Britain over scandal which forced airlines in US and around the globe to ground at least 126 passenger planes", - "link": "https://www.dailymail.co.uk/news/article-12837757/AOG-Technics-founder-arrested-fraud-fake-aircraft-parts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 17:03:10 GMT", - "enclosure": { - "length": "11127", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78698467-0-image-a-7_1701965196968.jpg" - }, - "content": "Fraud detectives in Britain have arrested the founder of a firm which allegedly sold thousands of bogus jet engine parts which were fitted in aircraft around the world.", - "contentSnippet": "Fraud detectives in Britain have arrested the founder of a firm which allegedly sold thousands of bogus jet engine parts which were fitted in aircraft around the world.", - "guid": "https://www.dailymail.co.uk/news/article-12837757/AOG-Technics-founder-arrested-fraud-fake-aircraft-parts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T17:03:10.000Z" - }, - { - "title": "The 15 best places to visit in the UK in 2024 named by Time Out - and it's Bristol that's No.1, followed by Hull and the Isles of Scilly", - "link": "https://www.dailymail.co.uk/travel/article-12836787/the-15-best-places-visit-UK-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 17:00:05 GMT", - "enclosure": { - "length": "7017", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/11/78686267-0-image-a-17_1701948428039.jpg" - }, - "content": "The list features 'picturesque seaside towns, buzzing cities and other-worldly islands'. 'Brits don't need to travel far to experience some of the best attractions in the world,' says Time Out.", - "contentSnippet": "The list features 'picturesque seaside towns, buzzing cities and other-worldly islands'. 'Brits don't need to travel far to experience some of the best attractions in the world,' says Time Out.", - "guid": "https://www.dailymail.co.uk/travel/article-12836787/the-15-best-places-visit-UK-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T17:00:05.000Z" - }, - { - "title": "I'm a dietician with PCOS - here are the three simple tricks I used to lose 30lbs AND eradicate my hormonal acne", - "link": "https://www.dailymail.co.uk/femail/article-12835003/dietitian-pcos-weight-loss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 16:46:10 GMT", - "enclosure": { - "length": "9013", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/01/78671073-0-image-a-123_1701913324169.jpg" - }, - "content": "Tallene Hacatoryan, 31, from California, has nearly 900,000 followers on TikTok, where she opens up about how she reversed her PCOS symptoms, which included weight gain and acne.", - "contentSnippet": "Tallene Hacatoryan, 31, from California, has nearly 900,000 followers on TikTok, where she opens up about how she reversed her PCOS symptoms, which included weight gain and acne.", - "guid": "https://www.dailymail.co.uk/femail/article-12835003/dietitian-pcos-weight-loss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T16:46:10.000Z" - }, - { - "title": "Is South America heading for WAR? Venezuelan President Maduro has sparked fears across the continent with vow to take oil-rich Guyana territory, with Brazil sending troops to its border", - "link": "https://www.dailymail.co.uk/news/article-12836973/Is-South-America-heading-WAR-Venezuelan-President-Maduro-sparked-fears-continent-vow-oil-rich-Guyana-territory-Brazil-sending-troops-border.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 16:01:35 GMT", - "enclosure": { - "length": "8745", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78696677-0-image-a-60_1701963846292.jpg" - }, - "content": "With Venezuelan President Nicolas Maduro vowing to annex the oil-rich territory of Guyana and his troops massing on the nation's border, there are growing fears that an invasion of the country is imminent.", - "contentSnippet": "With Venezuelan President Nicolas Maduro vowing to annex the oil-rich territory of Guyana and his troops massing on the nation's border, there are growing fears that an invasion of the country is imminent.", - "guid": "https://www.dailymail.co.uk/news/article-12836973/Is-South-America-heading-WAR-Venezuelan-President-Maduro-sparked-fears-continent-vow-oil-rich-Guyana-territory-Brazil-sending-troops-border.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T16:01:35.000Z" - }, - { - "title": "Rotten Tomatoes ranks the BEST TV shows of 2023... so, how many have YOU seen?", - "link": "https://www.dailymail.co.uk/femail/article-12823569/Best-TV-shows-2023-Rotten-Tomatoes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 15:55:10 GMT", - "enclosure": { - "length": "11049", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/05/20/78608603-0-image-a-33_1701806446686.jpg" - }, - "content": "It may have been a tough year for TV with the WGA and SAG-AFTRA strikes, but there were still some compelling series that kept viewers tuning in. Rotten Tomatoes has ranked these shows.", - "contentSnippet": "It may have been a tough year for TV with the WGA and SAG-AFTRA strikes, but there were still some compelling series that kept viewers tuning in. Rotten Tomatoes has ranked these shows.", - "guid": "https://www.dailymail.co.uk/femail/article-12823569/Best-TV-shows-2023-Rotten-Tomatoes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T15:55:10.000Z" - }, - { - "title": "Flaxseeds may reduce risk of BREAST CANCER, study suggests", - "link": "https://www.dailymail.co.uk/health/article-12837459/flaxseeds-reduce-breast-cancer-risk-study.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 15:45:22 GMT", - "enclosure": { - "length": "6920", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78696683-0-image-a-6_1701963053391.jpg" - }, - "content": "Researchers in Nebraska and Canada found that lignans in flaxseed led to a lower chance of developing breast cancer due to the relationship they have on the gut microbiome.", - "contentSnippet": "Researchers in Nebraska and Canada found that lignans in flaxseed led to a lower chance of developing breast cancer due to the relationship they have on the gut microbiome.", - "guid": "https://www.dailymail.co.uk/health/article-12837459/flaxseeds-reduce-breast-cancer-risk-study.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T15:45:22.000Z" - }, - { - "title": "Meet the seven-stone dog who is now a TikTok star for protecting a flock of Christmas turkeys round the clock", - "link": "https://www.dailymail.co.uk/news/article-12837843/dog-tiktok-star-christmas-turkey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 15:43:37 GMT", - "enclosure": { - "length": "12204", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78694927-0-image-m-27_1701962370847.jpg" - }, - "content": "Bear, a 50kg Maremma Sheepdog, lives outside all year round and works day and night to protect farmer George Ford's 640-strong flock of slow-grown Bronze turkeys.", - "contentSnippet": "Bear, a 50kg Maremma Sheepdog, lives outside all year round and works day and night to protect farmer George Ford's 640-strong flock of slow-grown Bronze turkeys.", - "guid": "https://www.dailymail.co.uk/news/article-12837843/dog-tiktok-star-christmas-turkey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T15:43:37.000Z" - }, - { - "title": "Asda's \u00a328 Vintage Brut tops Good Housekeeping's Champagne taste test for Christmas, with judges praising its 'complex fizz and aromatic apricot' - as shoppers claim its better than Moet", - "link": "https://www.dailymail.co.uk/femail/article-12837147/asda-best-champagne-good-housekeeping-taste-test.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 14:52:29 GMT", - "enclosure": { - "length": "8735", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/14/78694545-0-image-a-21_1701960320279.jpg" - }, - "content": "The Vintage Brut, available across the UK, has been praised for its 'complex fizz' and 'aromatic apricot' with judges suggesting it can pair with smoked salmon.", - "contentSnippet": "The Vintage Brut, available across the UK, has been praised for its 'complex fizz' and 'aromatic apricot' with judges suggesting it can pair with smoked salmon.", - "guid": "https://www.dailymail.co.uk/femail/article-12837147/asda-best-champagne-good-housekeeping-taste-test.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T14:52:29.000Z" - }, - { - "title": "How muggers are robbing Tube riders of \u00a31,500 Canada Goose and North Face winter coats, AirPods and phones - amid 56 per cent surge in crime on the London Underground", - "link": "https://www.dailymail.co.uk/news/article-12837349/muggers-tube-north-face-airpods-iphone-underground-crime-surge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 14:40:08 GMT", - "enclosure": { - "length": "10474", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/14/78693035-0-image-m-95_1701957902811.jpg" - }, - "content": "Muggers are targeting young London Underground passengers for their expensive Canada Goose and North Face winter coats worth up to \u00a31,500, bosses said today.", - "contentSnippet": "Muggers are targeting young London Underground passengers for their expensive Canada Goose and North Face winter coats worth up to \u00a31,500, bosses said today.", - "guid": "https://www.dailymail.co.uk/news/article-12837349/muggers-tube-north-face-airpods-iphone-underground-crime-surge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T14:40:08.000Z" - }, - { - "title": "Going, going... gondola! Tourists get dumped into Venice canal after they refused to sit down and stop taking selfies... and the boat capsizes", - "link": "https://www.dailymail.co.uk/news/article-12837065/venice-tourists-gondola-canal-selfies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 14:22:53 GMT", - "enclosure": { - "length": "6174", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/12/78689837-0-image-a-10_1701951968079.jpg" - }, - "content": "The group had been shifting around the vessel, posing for photos in front of famous landmarks before the gondolier had to tell them to sit down and stay still.", - "contentSnippet": "The group had been shifting around the vessel, posing for photos in front of famous landmarks before the gondolier had to tell them to sit down and stay still.", - "guid": "https://www.dailymail.co.uk/news/article-12837065/venice-tourists-gondola-canal-selfies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T14:22:53.000Z" - }, - { - "title": "Plague of rats terrify flat dwellers by climbing walls, breaking into cars and chewing through Christmas gifts in two-year reign of terror", - "link": "https://www.dailymail.co.uk/news/article-12837363/Plague-rats-terrify-flat-dwellers-climbing-walls-breaking-cars-chewing-Christmas-gifts-two-year-reign-terror.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 14:01:03 GMT", - "enclosure": { - "length": "9392", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/13/78691667-0-image-m-120_1701956059007.jpg" - }, - "content": "Families living in the Overland Mews apartment block, in Peterborough, Cambridgeshire, say they have been terrorized by hundreds of disease-carrying rats climbing up to their windows.", - "contentSnippet": "Families living in the Overland Mews apartment block, in Peterborough, Cambridgeshire, say they have been terrorized by hundreds of disease-carrying rats climbing up to their windows.", - "guid": "https://www.dailymail.co.uk/news/article-12837363/Plague-rats-terrify-flat-dwellers-climbing-walls-breaking-cars-chewing-Christmas-gifts-two-year-reign-terror.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T14:01:03.000Z" - }, - { - "title": "How to make your cheap wine taste vintage - and avoid the headache the next morning! New device promises to remove hangover causing additives in seconds", - "link": "https://www.dailymail.co.uk/femail/article-12836479/How-make-cheap-wine-taste-vintage-avoid-headache-morning-New-device-promises-hangover-causing-additives-seconds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 11:28:33 GMT", - "enclosure": { - "length": "12060", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/10/78685365-0-image-a-6_1701944533157.jpg" - }, - "content": "Winewizard is an aeration device, invented by Colchester-based Michael Pritchard MBE, that removes the impurities that cause you to feel rough after drinking.", - "contentSnippet": "Winewizard is an aeration device, invented by Colchester-based Michael Pritchard MBE, that removes the impurities that cause you to feel rough after drinking.", - "guid": "https://www.dailymail.co.uk/femail/article-12836479/How-make-cheap-wine-taste-vintage-avoid-headache-morning-New-device-promises-hangover-causing-additives-seconds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T11:28:33.000Z" - }, - { - "title": "Can the council stop me using a field for my dog walking business?", - "link": "https://www.dailymail.co.uk/property/article-12831893/Can-council-stop-using-fields-earn-cash-dog-walking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 07 Dec 2023 06:00:58 GMT", - "enclosure": { - "length": "10364", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/06/13/78643803-0-image-m-10_1701869693767.jpg" - }, - "content": "I've been using one of our fields for dog walking to earn some extra cash, but the council found out and refused planning permission - is there anything I can do?", - "contentSnippet": "I've been using one of our fields for dog walking to earn some extra cash, but the council found out and refused planning permission - is there anything I can do?", - "guid": "https://www.dailymail.co.uk/property/article-12831893/Can-council-stop-using-fields-earn-cash-dog-walking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-07T06:00:58.000Z" - }, - { - "title": "Millionaire, 45, who spent \u00a313.5m on 'world's most expensive bungalow' in Sandbanks now wants to demolish it as he reveals plans to build an eco-friendly home in its place that will 'set a benchmark' for posh neighbourhood", - "link": "https://www.dailymail.co.uk/news/article-12832113/sandbanks-millionaire-demolish-bungalow-eco-friendly.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 06 Dec 2023 14:33:40 GMT", - "enclosure": { - "length": "10802", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/06/14/78645383-0-image-a-4_1701871994606.jpg" - }, - "content": "Tom Glanfield set a record for the price paid for a property on the exclusive Dorset peninsula when he bought the 117-year-old bungalow in March.", - "contentSnippet": "Tom Glanfield set a record for the price paid for a property on the exclusive Dorset peninsula when he bought the 117-year-old bungalow in March.", - "guid": "https://www.dailymail.co.uk/news/article-12832113/sandbanks-millionaire-demolish-bungalow-eco-friendly.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-06T14:33:40.000Z" - }, - { - "title": "Idyllic house at Britain's tallest waterfall complete with its own tearoom and campsite goes up for sale for \u00a3950,000", - "link": "https://www.dailymail.co.uk/property/article-12827179/idyllic-little-home-240ft-welsh-waterfall-tearoom-campsite-sale-950-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 05 Dec 2023 12:31:45 GMT", - "enclosure": { - "length": "7970", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/05/11/78593195-0-image-a-36_1701777179219.jpg" - }, - "content": "Tan-y-Pistyll sits at the 240 feet-high\u00a0Pistyll Rhaeadr falls\u00a0in the Berwyn Mountains in Wales, west of Oswestry. The property, which is also a business venture, is listed for \u00a3950,000.", - "contentSnippet": "Tan-y-Pistyll sits at the 240 feet-high\u00a0Pistyll Rhaeadr falls\u00a0in the Berwyn Mountains in Wales, west of Oswestry. The property, which is also a business venture, is listed for \u00a3950,000.", - "guid": "https://www.dailymail.co.uk/property/article-12827179/idyllic-little-home-240ft-welsh-waterfall-tearoom-campsite-sale-950-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-05T12:31:45.000Z" - }, - { - "title": "Tiny beach hut on sale for \u00a389,000 is likened to Dr Who style TARDIS as it looks bigger inside than from outdoors", - "link": "https://www.dailymail.co.uk/property/article-12823881/tiny-beach-hut-home-dr-tardis-comparison-sale-89-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 04 Dec 2023 16:41:34 GMT", - "enclosure": { - "length": "7387", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/04/16/78559423-0-image-a-49_1701705961764.jpg" - }, - "content": "Inside the \u00a389,000 hut there is a large hob, a portable heater, a table to dine at and plenty of shelves for storage space which bely its minute size.", - "contentSnippet": "Inside the \u00a389,000 hut there is a large hob, a portable heater, a table to dine at and plenty of shelves for storage space which bely its minute size.", - "guid": "https://www.dailymail.co.uk/property/article-12823881/tiny-beach-hut-home-dr-tardis-comparison-sale-89-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-04T16:41:34.000Z" - }, - { - "title": "CIAR BYRNE's festive finds for the gardener in your life", - "link": "https://www.dailymail.co.uk/home/gardening/article-12820393/CIAR-BYRNEs-festive-finds-gardener-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 03 Dec 2023 22:44:37 GMT", - "enclosure": { - "length": "12440", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/03/17/78526477-0-image-m-32_1701624624946.jpg" - }, - "content": "CIAR BYRNE has picked out the best gardening gifts for Christmas, including a pair of gardening gloves made for the National Trust by Burgon & Ball and a Gin Cocktail Herb Garden Kit.", - "contentSnippet": "CIAR BYRNE has picked out the best gardening gifts for Christmas, including a pair of gardening gloves made for the National Trust by Burgon & Ball and a Gin Cocktail Herb Garden Kit.", - "guid": "https://www.dailymail.co.uk/home/gardening/article-12820393/CIAR-BYRNEs-festive-finds-gardener-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-03T22:44:37.000Z" - }, - { - "title": "Gaynor Lord police say she did not meet anyone before she vanished: Officers rule out 'third party involvement' but say they are 'keeping an open mind' as body is found in Norwich river in hunt for missing mother-of-three", - "link": "https://www.dailymail.co.uk/news/article-12868657/Gaynor-Lord-police-say-no-evidence-party-involvement-body-Norwich-river-hunt-missing-mother-three.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:34:56 GMT", - "enclosure": { - "length": "11488", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78976477-0-image-a-1_1702627268361.jpg" - }, - "content": "Chief superintendent Dave Buckley said that the case remains a missing person's inquiry and they do not believe she met anyone on the way to Wensum Park in Norwich.", - "contentSnippet": "Chief superintendent Dave Buckley said that the case remains a missing person's inquiry and they do not believe she met anyone on the way to Wensum Park in Norwich.", - "guid": "https://www.dailymail.co.uk/news/article-12868657/Gaynor-Lord-police-say-no-evidence-party-involvement-body-Norwich-river-hunt-missing-mother-three.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:34:56.000Z" - }, - { - "title": "'You are Americans': Melania tells new U.S. citizens from 25 countries how hard it was to become an American when she moved from Slovenia in 1996 and urges them to 'stand their ground' in moving naturalization ceremony", - "link": "https://www.dailymail.co.uk/news/article-12868391/melania-trump-national-archives-ceremony-speech.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:34:38 GMT", - "enclosure": { - "length": "2574", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007161-0-image-a-9_1702653725899.jpg" - }, - "content": "Melania Trump welcomed 25 new citizens on Friday during a rare public appearance, advising them on what it means to be an American.", - "contentSnippet": "Melania Trump welcomed 25 new citizens on Friday during a rare public appearance, advising them on what it means to be an American.", - "guid": "https://www.dailymail.co.uk/news/article-12868391/melania-trump-national-archives-ceremony-speech.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:34:38.000Z" - }, - { - "title": "Alex Batty's grandfather died six months before the teenager decided to leave French commune and return to his grandmother in Britain because his mother insisted they should move to Finland, police reveal", - "link": "https://www.dailymail.co.uk/news/article-12868829/Alex-Battys-grandfather-died-six-months-teenager-decided-leave-French-commune-return-grandmother-Britain-mother-insisted-Finland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:34:35 GMT", - "enclosure": { - "length": "7080", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007403-0-image-a-7_1702653844444.jpg" - }, - "content": "Alex Batty, from Oldham, Greater Manchester, was just 11 when he did not return from a holiday to Spain with his mother Melanie, then 37, and grandfather David, then 58, in 2017.", - "contentSnippet": "Alex Batty, from Oldham, Greater Manchester, was just 11 when he did not return from a holiday to Spain with his mother Melanie, then 37, and grandfather David, then 58, in 2017.", - "guid": "https://www.dailymail.co.uk/news/article-12868829/Alex-Battys-grandfather-died-six-months-teenager-decided-leave-French-commune-return-grandmother-Britain-mother-insisted-Finland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:34:35.000Z" - }, - { - "title": "Jade Goody's mum Jackiey Budden polishes late star's headstone, sobs and lays images of Strictly star son Bobby during grave visit... after failing to get a ticket to final amid feud", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868549/Jade-Goodys-mother-Jackiey-Budden-polishes-late-stars-headstone-sobs-lays-images-Strictly-star-son-Bobby-grave-visit-feud-Jeff-Brazier-rages-on.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:33:31 GMT", - "enclosure": { - "length": "11611", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007621-0-image-a-35_1702653964109.jpg" - }, - "content": "Jade Goody's mother Jackiey Budden appeared heartbroken as she visited the late star's grave in Epping Forest on Wednesday, 14 years after her death.\u00a0", - "contentSnippet": "Jade Goody's mother Jackiey Budden appeared heartbroken as she visited the late star's grave in Epping Forest on Wednesday, 14 years after her death.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868549/Jade-Goodys-mother-Jackiey-Budden-polishes-late-stars-headstone-sobs-lays-images-Strictly-star-son-Bobby-grave-visit-feud-Jeff-Brazier-rages-on.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:33:31.000Z" - }, - { - "title": "Thomas Straker, whose wife 'kicked him' out after learning of his affair with Princess Olympia of Greece - and who was criticised for white male team in his swanky Notting Hill eatery - is named the 'most in demand' restaurant of the year", - "link": "https://www.dailymail.co.uk/femail/article-12868251/Thomas-Straker-affair-princess-olympia-greece-demand-restaurant-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:27:46 GMT", - "enclosure": { - "length": "10539", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003911-0-image-a-80_1702647638111.jpg" - }, - "content": "Thomas Straker's London venue topped the list, curated by booking app Resy, Curlytails reports. His restaurant - called Straker's - promises to offer 'a hub of cultures and culinary delights'.", - "contentSnippet": "Thomas Straker's London venue topped the list, curated by booking app Resy, Curlytails reports. His restaurant - called Straker's - promises to offer 'a hub of cultures and culinary delights'.", - "guid": "https://www.dailymail.co.uk/femail/article-12868251/Thomas-Straker-affair-princess-olympia-greece-demand-restaurant-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:27:46.000Z" - }, - { - "title": "Already spending his Dingo Dollars? I'm A Celeb champ Sam Thompson treats Zara McDermott to dinner at The Ritz for her 27th birthday after splashing out on \u00a33500 designer bag", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868493/Sam-Thompson-Zara-McDermott-celebrate-27th-birthday-romantic-evening-Ritz.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:26:26 GMT", - "enclosure": { - "length": "10244", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79005005-0-image-a-13_1702649891360.jpg" - }, - "content": "The couple were all smiles as they departed the swanky venue following a romantic dinner date after Sam recently returned from winning I'm A Celebrity in Australia.", - "contentSnippet": "The couple were all smiles as they departed the swanky venue following a romantic dinner date after Sam recently returned from winning I'm A Celebrity in Australia.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868493/Sam-Thompson-Zara-McDermott-celebrate-27th-birthday-romantic-evening-Ritz.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:26:26.000Z" - }, - { - "title": "British Airways identifies 600 areas to improve as it announces \u00a37billion overhaul in bid to reclaim 'world's favourite airline' title from Middle Eastern rivals after years of decline", - "link": "https://www.dailymail.co.uk/news/article-12868531/British-Airways-identifies-600-areas-improve-announces-7billion-overhaul-bid-reclaim-worlds-favourite-airline-title-Middle-Eastern-rivals-years-decline.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:25:00 GMT", - "enclosure": { - "length": "7501", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007231-0-image-m-16_1702653407945.jpg" - }, - "content": "Bosses at Britain's flagship airline have identified more than 600 areas where it needs to improve after years of decline and a series of mass cancellations.", - "contentSnippet": "Bosses at Britain's flagship airline have identified more than 600 areas where it needs to improve after years of decline and a series of mass cancellations.", - "guid": "https://www.dailymail.co.uk/news/article-12868531/British-Airways-identifies-600-areas-improve-announces-7billion-overhaul-bid-reclaim-worlds-favourite-airline-title-Middle-Eastern-rivals-years-decline.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:25:00.000Z" - }, - { - "title": "Emmerdale's Steve Halliwell dies aged 77: Actor who played loveable Zak Dingle for 29 years passes away surrounded by family", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868419/Emmerdales-Steve-Halliwell-dies-Zak-Dingle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:24:32 GMT", - "enclosure": { - "length": "9444", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79004137-0-image-a-14_1702648019527.jpg" - }, - "content": "The soap star , best known for playing Zak Dingle, peacefully passed away in a hospice surrounded by his family, ITV revealed on Friday.", - "contentSnippet": "The soap star , best known for playing Zak Dingle, peacefully passed away in a hospice surrounded by his family, ITV revealed on Friday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868419/Emmerdales-Steve-Halliwell-dies-Zak-Dingle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:24:32.000Z" - }, - { - "title": "Thrifty Adele (who's worth \u00a3165M) reveals she steals hotel toiletries to give to guests at her\u00a0\u00a348M mansion", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868079/Adele-gets-Christmas-spirit-treating-guests-58m-LA-mansion-personalised-gifts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:24:28 GMT", - "enclosure": { - "length": "10220", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79002519-0-image-m-146_1702653847098.jpg" - }, - "content": "The singer, 35, has spent the last three months creating personalised goodies and toiletries in the rooms of her sprawling home in Hidden Hills, Los Angeles.", - "contentSnippet": "The singer, 35, has spent the last three months creating personalised goodies and toiletries in the rooms of her sprawling home in Hidden Hills, Los Angeles.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868079/Adele-gets-Christmas-spirit-treating-guests-58m-LA-mansion-personalised-gifts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:24:28.000Z" - }, - { - "title": "Dynamo fans watch with bated breath as magician is buried alive under five tonnes of soil live on air as they call his terrifying 'final act truly spectacular'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867427/Dynamo-dead-fans-watch-magician-buried-alive-five-tonnes-soil-live-air.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:24:18 GMT", - "enclosure": { - "length": "7663", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995717-0-image-a-39_1702630686458.jpg" - }, - "content": "Dynamo's final act under his stage name has been called 'truly spectacular' by fans after he was buried alive on live TV last night.", - "contentSnippet": "Dynamo's final act under his stage name has been called 'truly spectacular' by fans after he was buried alive on live TV last night.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867427/Dynamo-dead-fans-watch-magician-buried-alive-five-tonnes-soil-live-air.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:24:18.000Z" - }, - { - "title": "Gaynor Lord missing LIVE: Police issue statement after finding female's body in river Wensum as they say thoughts are with Norwich mother's family", - "link": "https://www.dailymail.co.uk/news/article-12867757/Gaynor-Lord-missing-LIVE-Divers-river-search-day-seven-police-detective.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:22:36 GMT", - "enclosure": { - "length": "9982", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998085-0-image-a-1_1702636128531.jpg" - }, - "content": "Follow MailOnline's blog for key updates as police and divers continue to search the River Wensum for mother Gaynor Lord who went missing from the centre of Norwich last week.", - "contentSnippet": "Follow MailOnline's blog for key updates as police and divers continue to search the River Wensum for mother Gaynor Lord who went missing from the centre of Norwich last week.", - "guid": "https://www.dailymail.co.uk/news/article-12867757/Gaynor-Lord-missing-LIVE-Divers-river-search-day-seven-police-detective.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:22:36.000Z" - }, - { - "title": "Katie Price and former fianc\u00e9 Carl Woods put the brakes on second hand car lot at \u00a33million 'mucky mansion' after council threatens enforcement action", - "link": "https://www.dailymail.co.uk/news/article-12867563/Katie-Price-former-fianc-Carl-Woods-brakes-second-hand-car-lot-3million-mucky-mansion-council-threatens-enforcement-action.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:22:22 GMT", - "enclosure": { - "length": "10812", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007549-0-image-a-1_1702653734642.jpg" - }, - "content": "Katie Price is no longer using her \u00a33million 'mucky mansion' as a second-hand car lot after local council chiefs threatened enforcement action.", - "contentSnippet": "Katie Price is no longer using her \u00a33million 'mucky mansion' as a second-hand car lot after local council chiefs threatened enforcement action.", - "guid": "https://www.dailymail.co.uk/news/article-12867563/Katie-Price-former-fianc-Carl-Woods-brakes-second-hand-car-lot-3million-mucky-mansion-council-threatens-enforcement-action.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:22:22.000Z" - }, - { - "title": "Female pubgoer in her 50s is found dead in bar after being locked in toilet overnight", - "link": "https://www.dailymail.co.uk/news/article-12868281/Female-pubgoer-dead-bar-locked-toilet-overnight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:21:06 GMT", - "enclosure": { - "length": "7147", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79006697-0-image-a-26_1702653487379.jpg" - }, - "content": "The woman, who is said to have been a regular at the Railway Inn in Droitwich, Worcestershire, went to the toilet during the evening but did not return to her table.", - "contentSnippet": "The woman, who is said to have been a regular at the Railway Inn in Droitwich, Worcestershire, went to the toilet during the evening but did not return to her table.", - "guid": "https://www.dailymail.co.uk/news/article-12868281/Female-pubgoer-dead-bar-locked-toilet-overnight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:21:06.000Z" - }, - { - "title": "School in Huddersfield sparks public health warning after two pupils are diagnosed with Hepatitis A", - "link": "https://www.dailymail.co.uk/news/article-12867863/School-Huddersfield-sparks-public-health-warning-two-pupils-diagnosed-Hepatitis-A.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:20:56 GMT", - "enclosure": { - "length": "7081", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78998991-0-image-a-6_1702638727187.jpg" - }, - "content": "A public health warning has been issued after two children from a Huddersfield school contracted\u00a0Hepatitis A.", - "contentSnippet": "A public health warning has been issued after two children from a Huddersfield school contracted\u00a0Hepatitis A.", - "guid": "https://www.dailymail.co.uk/news/article-12867863/School-Huddersfield-sparks-public-health-warning-two-pupils-diagnosed-Hepatitis-A.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:20:56.000Z" - }, - { - "title": "Judge blasts prison system 'shambles' after having to postpone sentencing of female cafe boss who tricked woman she met on Plenty of Fish into having sex with her by pretending to be a man", - "link": "https://www.dailymail.co.uk/news/article-12868713/Blade-Silvano-Plenty-Fish-sex-attacker.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:19:31 GMT", - "enclosure": { - "length": "9584", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79006585-0-image-m-112_1702652369955.jpg" - }, - "content": "Blade Silvano, 41, was convicted seven months ago at Cambridge Crown Court of pretending to be a man so she could sleep with another woman after tricking her victim via the website Plenty of Fish.", - "contentSnippet": "Blade Silvano, 41, was convicted seven months ago at Cambridge Crown Court of pretending to be a man so she could sleep with another woman after tricking her victim via the website Plenty of Fish.", - "guid": "https://www.dailymail.co.uk/news/article-12868713/Blade-Silvano-Plenty-Fish-sex-attacker.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:19:31.000Z" - }, - { - "title": "Terrifying moment Ukrainian politician lets off three GRENADES during council meeting, seriously wounding 26 people", - "link": "https://www.dailymail.co.uk/news/article-12868355/Terrifying-moment-Ukrainian-politician-lets-three-GRENADES-council-meeting-seriously-wounding-26-people.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:17:32 GMT", - "enclosure": { - "length": "8281", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003383-0-image-m-41_1702647028148.jpg" - }, - "content": "The man, named as council representative Serhiy Batrin, 54,\u00a0is seen entering the meeting late and standing by the door during a heated discussion at the session in Keretsk, in the Zakarpattia region", - "contentSnippet": "The man, named as council representative Serhiy Batrin, 54,\u00a0is seen entering the meeting late and standing by the door during a heated discussion at the session in Keretsk, in the Zakarpattia region", - "guid": "https://www.dailymail.co.uk/news/article-12868355/Terrifying-moment-Ukrainian-politician-lets-three-GRENADES-council-meeting-seriously-wounding-26-people.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:17:32.000Z" - }, - { - "title": "Queen Letizia 'branded a \"daughter of a b****\" by a Spanish government politician' on 'plane home with Luis Rubiales' after Women's World Cup that she watched in Australia", - "link": "https://www.dailymail.co.uk/femail/article-12863719/Queen-Letizia-branded-daughter-b-Spanish-government-politician-plane-home-Luis-Rubiales-Womens-World-Cup-watched-Australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:14:13 GMT", - "enclosure": { - "length": "9877", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/12/78957301-0-image-a-16_1702558535487.jpg" - }, - "content": "The Spanish Secretary of State for Sports, Victor Francos, allegedly used the expletive as the\u00a0'kissgate' scandal following the Women's World Cup final erupted.", - "contentSnippet": "The Spanish Secretary of State for Sports, Victor Francos, allegedly used the expletive as the\u00a0'kissgate' scandal following the Women's World Cup final erupted.", - "guid": "https://www.dailymail.co.uk/femail/article-12863719/Queen-Letizia-branded-daughter-b-Spanish-government-politician-plane-home-Luis-Rubiales-Womens-World-Cup-watched-Australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:14:13.000Z" - }, - { - "title": "Own a rock mecca! Welsh country house where Oasis, Queen, the Stone Roses and Black Sabbath all made hit records goes on the market for \u00a31.95million", - "link": "https://www.dailymail.co.uk/property/article-12868489/Own-rock-mecca-Welsh-country-house-Oasis-Queen-Stone-Roses-Black-Sabbath-hit-records-goes-market-1-95million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:12:17 GMT", - "enclosure": { - "length": "12911", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79006437-0-image-m-200_1702651988497.jpg" - }, - "content": "The Old Mill House near Monmouth, South Wales was part of the legendary Rockfield studios where Oasis, Queen, Black Sabbath The Stone Roses and Coldplay all recorded hit records.", - "contentSnippet": "The Old Mill House near Monmouth, South Wales was part of the legendary Rockfield studios where Oasis, Queen, Black Sabbath The Stone Roses and Coldplay all recorded hit records.", - "guid": "https://www.dailymail.co.uk/property/article-12868489/Own-rock-mecca-Welsh-country-house-Oasis-Queen-Stone-Roses-Black-Sabbath-hit-records-goes-market-1-95million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:12:17.000Z" - }, - { - "title": "Nigel Farage splashes out \u00a3500,000 on beachside lovenest he will share with his French girlfriend - and it boasts easy access to beach where migrants arrive from France in small boats", - "link": "https://www.dailymail.co.uk/news/article-12868351/nigel-farage-spends-500-000-beachside-lovenest-french-girlfriend-easy-access-migrants-arrive-france-small-boats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:11:42 GMT", - "enclosure": { - "length": "7353", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79005079-0-image-m-40_1702649923296.jpg" - }, - "content": "EXCLUSIVE: The cosy house, which has four bedrooms, two bathrooms and a games room sits on the Kent coast.", - "contentSnippet": "EXCLUSIVE: The cosy house, which has four bedrooms, two bathrooms and a games room sits on the Kent coast.", - "guid": "https://www.dailymail.co.uk/news/article-12868351/nigel-farage-spends-500-000-beachside-lovenest-french-girlfriend-easy-access-migrants-arrive-france-small-boats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:11:42.000Z" - }, - { - "title": "Why did Gaynor Lord leave work early? Why did she call her friend... and what happened in the missing 34 minutes? All the unanswered questions as body is found in hunt for missing mother-of-three", - "link": "https://www.dailymail.co.uk/news/article-12868371/Why-did-Gaynor-Lord-leave-work-early-did-call-friend-happened-missing-34-minutes-unanswered-questions-body-hunt-missing-mother-three.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:11:19 GMT", - "enclosure": { - "length": "8562", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/78950013-0-image-m-67_1702650873166.jpg" - }, - "content": "Gaynor Lord left work on Friday afternoon, hurried through the city centre and spent\u00a0over 30 minutes at Norwich Cathedral in a series of events which police described as 'out of character'.", - "contentSnippet": "Gaynor Lord left work on Friday afternoon, hurried through the city centre and spent\u00a0over 30 minutes at Norwich Cathedral in a series of events which police described as 'out of character'.", - "guid": "https://www.dailymail.co.uk/news/article-12868371/Why-did-Gaynor-Lord-leave-work-early-did-call-friend-happened-missing-34-minutes-unanswered-questions-body-hunt-missing-mother-three.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:11:19.000Z" - }, - { - "title": "Italian restaurant in London refuses to serve carbonara after too many customers demand to add 'cream, mushrooms and chicken' to the 'traditional Roman-style recipe'", - "link": "https://www.dailymail.co.uk/femail/article-12867825/Italian-restaurant-London-refuses-serve-carbonara-customers-demand-add-cream-mushrooms-chicken-traditional-Roman-style-recipe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:10:30 GMT", - "enclosure": { - "length": "11323", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999455-0-image-a-36_1702638853413.jpg" - }, - "content": "Bottega Prelibato, in Shoreditch, say they are not going to 'compromise on their quality and authenticity' by making adjustments to their 'traditional Roman-style recipe'.", - "contentSnippet": "Bottega Prelibato, in Shoreditch, say they are not going to 'compromise on their quality and authenticity' by making adjustments to their 'traditional Roman-style recipe'.", - "guid": "https://www.dailymail.co.uk/femail/article-12867825/Italian-restaurant-London-refuses-serve-carbonara-customers-demand-add-cream-mushrooms-chicken-traditional-Roman-style-recipe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:10:30.000Z" - }, - { - "title": "England and Wales' death hotspots MAPPED as official statistics show mortality rates are twice as high in parts of country", - "link": "https://www.dailymail.co.uk/health/article-12868155/England-Wales-death-hotspots-MAPPED-official-statistics-mortality-rates-twice-high-parts-country.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:09:38 GMT", - "enclosure": { - "length": "6269", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79004683-0-image-m-10_1702650259745.jpg" - }, - "content": "Overall, 577,160 deaths were registered in England and Wales in 2022, marking a\u00a01.6 per cent decline on the year before. But it was massively down on the 607,922 toll of 2020.", - "contentSnippet": "Overall, 577,160 deaths were registered in England and Wales in 2022, marking a\u00a01.6 per cent decline on the year before. But it was massively down on the 607,922 toll of 2020.", - "guid": "https://www.dailymail.co.uk/health/article-12868155/England-Wales-death-hotspots-MAPPED-official-statistics-mortality-rates-twice-high-parts-country.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:09:38.000Z" - }, - { - "title": "Female code breaker who helped Alan Turing reveal the Nazi war machine's innermost secrets dies aged 98", - "link": "https://www.dailymail.co.uk/news/article-12867531/code-breaker-Alan-Turing-Nazi-secrets-dies-aged-98.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:01:14 GMT", - "enclosure": { - "length": "9148", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78995971-0-image-m-16_1702631745290.jpg" - }, - "content": "Mary Ratcliffe (pictured), who has died aged 98, worked at a secret code breaking base in Middlesex, helping to decode Nazis messages, using machines invented by Alan Turing.", - "contentSnippet": "Mary Ratcliffe (pictured), who has died aged 98, worked at a secret code breaking base in Middlesex, helping to decode Nazis messages, using machines invented by Alan Turing.", - "guid": "https://www.dailymail.co.uk/news/article-12867531/code-breaker-Alan-Turing-Nazi-secrets-dies-aged-98.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:01:14.000Z" - }, - { - "title": "My boyfriend has spent more than $1 MILLION on our trips around the world - we have visited 55 countries and ALWAYS stay in five-star hotels", - "link": "https://www.dailymail.co.uk/femail/article-12861211/Boyfriend-million-travel-countries-hotels.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:00:59 GMT", - "enclosure": { - "length": "10041", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/13/22/78935125-0-image-a-89_1702506959373.jpg" - }, - "content": "Yelena Lala, 25, met her boyfriend, 34, who does not wish to be named, when he reached out on Instagram. He has since whisked her away to a whole host of different countries.", - "contentSnippet": "Yelena Lala, 25, met her boyfriend, 34, who does not wish to be named, when he reached out on Instagram. He has since whisked her away to a whole host of different countries.", - "guid": "https://www.dailymail.co.uk/femail/article-12861211/Boyfriend-million-travel-countries-hotels.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:00:59.000Z" - }, - { - "title": "'I wish I hadn't answered that call': Gaynor Lord's friend tells of her regret after she hung up on missing mother-of-three on day she disappeared so she could take a work call - as police divers recover body from river", - "link": "https://www.dailymail.co.uk/news/article-12868295/Gaynor-Lords-friend-regret-missing-mother-police-divers-recover-body-river.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 15:00:08 GMT", - "enclosure": { - "length": "8138", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79000269-0-image-m-27_1702646636344.jpg" - }, - "content": "Friend Julie Butcher (pictured) had shared 'gins and hugs' with the Gaynor Lord just days before and the pair agreed to play tennis together after Christmas.", - "contentSnippet": "Friend Julie Butcher (pictured) had shared 'gins and hugs' with the Gaynor Lord just days before and the pair agreed to play tennis together after Christmas.", - "guid": "https://www.dailymail.co.uk/news/article-12868295/Gaynor-Lords-friend-regret-missing-mother-police-divers-recover-body-river.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T15:00:08.000Z" - }, - { - "title": "Sophie Turner enjoys a smoke and a smooch with her friend after an al fresco coffee date amid blossoming romance with Peregrine Pearson", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867465/Sophie-Turner-enjoys-smoke-smooch-friend-al-fresco-coffee-date-amid-blossoming-romance-Peregrine-Pearson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:58:02 GMT", - "enclosure": { - "length": "9944", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995155-0-image-m-22_1702630415681.jpg" - }, - "content": "The Game Of Thrones star, 27, looked in high spirits on the outing as she grabbed a drink in Notting Hill, sitting outside so she could enjoy a smoke.", - "contentSnippet": "The Game Of Thrones star, 27, looked in high spirits on the outing as she grabbed a drink in Notting Hill, sitting outside so she could enjoy a smoke.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867465/Sophie-Turner-enjoys-smoke-smooch-friend-al-fresco-coffee-date-amid-blossoming-romance-Peregrine-Pearson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:58:02.000Z" - }, - { - "title": "Families' disgust as fathers on the school run are being targeted by sex workers in Britain's failed first legal red light district - as they are now being forced to offer Christmas cut-price specials due to the cost of living crisis", - "link": "https://www.dailymail.co.uk/news/article-12867507/Families-disgust-fathers-school-run-targeted-sex-workers-Britains-failed-legal-red-light-district-forced-offer-Christmas-cut-price-specials-cost-living-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:57:31 GMT", - "enclosure": { - "length": "9019", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78996249-0-image-m-20_1702635953461.jpg" - }, - "content": "Sex can be bought for as little as \u00a330 before 9am and \u00a310 after midnight on the streets of Leeds due to the cost-of-living crisis.", - "contentSnippet": "Sex can be bought for as little as \u00a330 before 9am and \u00a310 after midnight on the streets of Leeds due to the cost-of-living crisis.", - "guid": "https://www.dailymail.co.uk/news/article-12867507/Families-disgust-fathers-school-run-targeted-sex-workers-Britains-failed-legal-red-light-district-forced-offer-Christmas-cut-price-specials-cost-living-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:57:31.000Z" - }, - { - "title": "Has the air fryer had its chips? Kitchen company launches oven tray that mimics energy-efficient cooking of counter-top appliance, saying it 'does the same job' without cluttering worktops", - "link": "https://www.dailymail.co.uk/femail/article-12867847/air-fryer-oven-alternatives-energy-efficent-cooking-trays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:55:30 GMT", - "enclosure": { - "length": "9876", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003311-0-image-a-17_1702646338925.jpg" - }, - "content": "Kitchen company Howdens has just launched its AirFryer Tray, which it claims mimics the heat circulation process of an air fryer but in a standard oven", - "contentSnippet": "Kitchen company Howdens has just launched its AirFryer Tray, which it claims mimics the heat circulation process of an air fryer but in a standard oven", - "guid": "https://www.dailymail.co.uk/femail/article-12867847/air-fryer-oven-alternatives-energy-efficent-cooking-trays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:55:30.000Z" - }, - { - "title": "Elisabeth Moss, 41, cuts a low-key figure as she goes make-up free while sporting a casual ensemble in LA", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867687/Elisabeth-Moss-41-cuts-low-key-figure-goes-make-free-sporting-casual-ensemble-LA.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:53:11 GMT", - "enclosure": { - "length": "10078", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/02/78987773-0-image-a-75_1702608327447.jpg" - }, - "content": "The star looked fresh-faced as she went make-up free while making her way to her trailer with a Thermos cup and her phone in hand", - "contentSnippet": "The star looked fresh-faced as she went make-up free while making her way to her trailer with a Thermos cup and her phone in hand", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867687/Elisabeth-Moss-41-cuts-low-key-figure-goes-make-free-sporting-casual-ensemble-LA.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:53:11.000Z" - }, - { - "title": "Captain Tom's charity boss quits just months after 'trying to remove war hero's son-in-law from the board'", - "link": "https://www.dailymail.co.uk/news/article-12868425/captain-tom-charity-boss-quits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:52:43 GMT", - "enclosure": { - "length": "5214", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79004953-0-image-m-31_1702649720521.jpg" - }, - "content": "Simon DeMaid was one of three trustees of the Captain Tom Foundation, along with Colin Ingram-Moore, who is married to the Covid fundraiser's daughter, Hannah, and chair, Stephen Jones.", - "contentSnippet": "Simon DeMaid was one of three trustees of the Captain Tom Foundation, along with Colin Ingram-Moore, who is married to the Covid fundraiser's daughter, Hannah, and chair, Stephen Jones.", - "guid": "https://www.dailymail.co.uk/news/article-12868425/captain-tom-charity-boss-quits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:52:43.000Z" - }, - { - "title": "Prince Harry wins \u00a3140,000 from the Mirror's publisher after High Court rules he was the victim of phone hacking between 2003 and 2009", - "link": "https://www.dailymail.co.uk/news/article-12868243/Prince-Harry-Mirror-High-Court-phone-hacking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:49:30 GMT", - "enclosure": { - "length": "10531", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79001991-0-image-m-4_1702645427731.jpg" - }, - "content": "The Duke of Sussex 's case was 'proved in part', said Mr Justice Fancourt. Journalists at the Sunday Mirror, the People and the Daily Mirror had unlawfully obtained Harry's private information for stories.", - "contentSnippet": "The Duke of Sussex 's case was 'proved in part', said Mr Justice Fancourt. Journalists at the Sunday Mirror, the People and the Daily Mirror had unlawfully obtained Harry's private information for stories.", - "guid": "https://www.dailymail.co.uk/news/article-12868243/Prince-Harry-Mirror-High-Court-phone-hacking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:49:30.000Z" - }, - { - "title": "Meet the siblings, aged 7 and 10, who have dementia - as their mum reveals the giveaway signs something wasn't right", - "link": "https://www.dailymail.co.uk/news/article-12867827/childhood-dementia-giveaway-signs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:47:19 GMT", - "enclosure": { - "length": "5436", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003203-0-image-a-71_1702647527717.jpg" - }, - "content": "Brisbane siblings Rory and Anna O'Grady, aged ten and seven, began showing signs of dementia at an early age but went undiagnosed due to the belief the condition is only found in the elderly.", - "contentSnippet": "Brisbane siblings Rory and Anna O'Grady, aged ten and seven, began showing signs of dementia at an early age but went undiagnosed due to the belief the condition is only found in the elderly.", - "guid": "https://www.dailymail.co.uk/news/article-12867827/childhood-dementia-giveaway-signs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:47:19.000Z" - }, - { - "title": "'Miracle' on the D16: Remote spot where Alex Batty was discovered walking in the pouring rain at 2am in pitch darkness four days after leaving commune - as locals say he was lucky not to be run over and killed", - "link": "https://www.dailymail.co.uk/news/article-12868555/Alex-Batty-remote-road-D16-France-missing-boy-found.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:45:12 GMT", - "enclosure": { - "length": "5096", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79005311-0-image-a-39_1702651188615.jpg" - }, - "content": "Alex Batty, 17, was picked up on the D16 - an unlit single carriageway country road between the French towns of Chalabre and Mirepoix - by Fabien Accidini, a chiropractic student from Toulouse.", - "contentSnippet": "Alex Batty, 17, was picked up on the D16 - an unlit single carriageway country road between the French towns of Chalabre and Mirepoix - by Fabien Accidini, a chiropractic student from Toulouse.", - "guid": "https://www.dailymail.co.uk/news/article-12868555/Alex-Batty-remote-road-D16-France-missing-boy-found.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:45:12.000Z" - }, - { - "title": "Two-time world darts champion Peter Wright reveals he lives on a budget of just \u00a3212 per week, transferred to him by his hairdresser-manager wife... despite earning a million in winnings this year!", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12868321/Peter-Wright-strict-week-budget-wife-Joanne-darts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:44:02 GMT", - "enclosure": { - "length": "10666", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79005755-0-image-a-43_1702650807838.jpg" - }, - "content": "Peter Wright has revealed that despite banking millions during his successful darts career he has been given a strict weekly budget by his wife and manager\u00a0Joanne.", - "contentSnippet": "Peter Wright has revealed that despite banking millions during his successful darts career he has been given a strict weekly budget by his wife and manager\u00a0Joanne.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12868321/Peter-Wright-strict-week-budget-wife-Joanne-darts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:44:02.000Z" - }, - { - "title": "Shameless moment thief steals couple's luggage from the roadside as they load their other bags into a taxi", - "link": "https://www.dailymail.co.uk/news/article-12868203/Shameless-moment-thief-steals-couples-luggage-roadside-load-bags-taxi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:39:49 GMT", - "enclosure": { - "length": "6994", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79002045-0-image-a-20_1702648118103.jpg" - }, - "content": "This is the shocking moment a brazen thief stole a couple's bag as they loaded their luggage into a taxi outside a London railway station.", - "contentSnippet": "This is the shocking moment a brazen thief stole a couple's bag as they loaded their luggage into a taxi outside a London railway station.", - "guid": "https://www.dailymail.co.uk/news/article-12868203/Shameless-moment-thief-steals-couples-luggage-roadside-load-bags-taxi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:39:49.000Z" - }, - { - "title": "Alex Batty's grandmother says she is 'over the moon' after speaking to her grandson for the first time in six years and 'desperate to see him' as she waits for him to return to the UK 'in next few days'", - "link": "https://www.dailymail.co.uk/news/article-12867495/British-police-begin-hunt-Alex-Battys-mother-grandfather-detectives-fly-search-French-region-known-hippy-camps-boy-brainwashed-following-abduction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:39:26 GMT", - "enclosure": { - "length": "5075", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79004557-0-image-m-13_1702651152427.jpg" - }, - "content": "Alex Batty, from Oldham, Greater Manchester, was just 11 when he did not return from a holiday to Spain with his mother Melanie, then 37, and grandfather David, then 58, in 2017.", - "contentSnippet": "Alex Batty, from Oldham, Greater Manchester, was just 11 when he did not return from a holiday to Spain with his mother Melanie, then 37, and grandfather David, then 58, in 2017.", - "guid": "https://www.dailymail.co.uk/news/article-12867495/British-police-begin-hunt-Alex-Battys-mother-grandfather-detectives-fly-search-French-region-known-hippy-camps-boy-brainwashed-following-abduction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:39:26.000Z" - }, - { - "title": "Secret garden hidden for years by a 12ft wall goes up for sale for \u00a3975,000 - but buyers do get a cottage thrown in too", - "link": "https://www.dailymail.co.uk/news/article-12867975/Secret-garden-hidden-years-12foot-wall-goes-sale-cottage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:39:16 GMT", - "enclosure": { - "length": "8824", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79002467-0-image-m-19_1702645971032.jpg" - }, - "content": "The rare and historic property\u00a0in Glynllifon near Caernarfon, North Wales boasts the 2.3 acre plot as the perfect place for a budding landscaper to transform.", - "contentSnippet": "The rare and historic property\u00a0in Glynllifon near Caernarfon, North Wales boasts the 2.3 acre plot as the perfect place for a budding landscaper to transform.", - "guid": "https://www.dailymail.co.uk/news/article-12867975/Secret-garden-hidden-years-12foot-wall-goes-sale-cottage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:39:16.000Z" - }, - { - "title": "Gardeners' World star Monty Don admits he has no regrets about taking his friend's wife because they had an 'intense' attraction: 'All is fair in love and war'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867663/Monty-Don-admits-no-regrets-taking-friends-wife-intense-attraction-far-love-war.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:29:33 GMT", - "enclosure": { - "length": "10120", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997663-0-image-a-68_1702635445800.jpg" - }, - "content": "The Gardeners' World star, 68, fell for his now wife Sarah while she was already married to a wealthy botanist - at the time socialising with both her and her husband and even going riding with him.", - "contentSnippet": "The Gardeners' World star, 68, fell for his now wife Sarah while she was already married to a wealthy botanist - at the time socialising with both her and her husband and even going riding with him.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867663/Monty-Don-admits-no-regrets-taking-friends-wife-intense-attraction-far-love-war.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:29:33.000Z" - }, - { - "title": "Shocking new footage 'shows Michael B Jordan losing control of his $400k Ferrari and crashing into a parked Kia SUV while driving alongside another supercar' in Hollywood", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867909/shocking-footage-michael-b-jordan-driving-ferrari-horror-crash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:28:40 GMT", - "enclosure": { - "length": "3832", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999757-0-image-m-12_1702639410413.jpg" - }, - "content": "The new video purportedly shows Michael B Jordan's Ferrari fishtailing and slamming into a parked car while speeding along Sunset Boulevard.", - "contentSnippet": "The new video purportedly shows Michael B Jordan's Ferrari fishtailing and slamming into a parked car while speeding along Sunset Boulevard.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867909/shocking-footage-michael-b-jordan-driving-ferrari-horror-crash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:28:40.000Z" - }, - { - "title": "Rishi Sunak to hold migrant talks with Italy's Giorgia Meloni and Albania's Edi Rama in Rome this weekend as he seeks fresh action to tackle crisis", - "link": "https://www.dailymail.co.uk/news/article-12868527/Rishi-Sunak-hold-migrant-talks-Italy-Giorgia-Meloni-Albania-Edi-Rama.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:28:01 GMT", - "enclosure": { - "length": "8422", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/78913945-0-Ms_Meloni_46_has_struck_up_a_warm_friendship_with_the_PM_since_t-a-88_1702650420516.jpg" - }, - "content": "It comes after a bruising week for the PM as his party imploded over his plan to finally get Rwanda deportation flights off the ground next year.", - "contentSnippet": "It comes after a bruising week for the PM as his party imploded over his plan to finally get Rwanda deportation flights off the ground next year.", - "guid": "https://www.dailymail.co.uk/news/article-12868527/Rishi-Sunak-hold-migrant-talks-Italy-Giorgia-Meloni-Albania-Edi-Rama.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:28:01.000Z" - }, - { - "title": "How Rebecca Welch went from refereeing in the Sunday league while still working in the NHS to being named Premier League's first female referee - and has a simple message for those who say a woman can't do the job", - "link": "https://www.dailymail.co.uk/sport/sportsnews/article-12867969/who-rebecca-welch-premier-league-female-referee.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:17:21 GMT", - "enclosure": { - "length": "7112", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79002119-0-image-m-7_1702649834757.jpg" - }, - "content": "Rebecca Welch, 40, will become the first female referee in top-flight history when she takes charge of the Fulham v Burnley match on December 23.", - "contentSnippet": "Rebecca Welch, 40, will become the first female referee in top-flight history when she takes charge of the Fulham v Burnley match on December 23.", - "guid": "https://www.dailymail.co.uk/sport/sportsnews/article-12867969/who-rebecca-welch-premier-league-female-referee.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:17:21.000Z" - }, - { - "title": "Martin Lewis says teachers should not get Christmas presents from their class while hard-up families are battling cost of living crisis", - "link": "https://www.dailymail.co.uk/news/article-12867773/Martin-Lewis-says-teachers-not-Christmas-presents-class-hard-families-battling-cost-living-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:16:44 GMT", - "enclosure": { - "length": "8796", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79000805-0-image-a-39_1702641632730.jpg" - }, - "content": "The financial journalist has emphasised that Christmas is just one day, and should be spent with family rather than creating a 'financial hangover' for yourself in the new year by overspending on gifts.", - "contentSnippet": "The financial journalist has emphasised that Christmas is just one day, and should be spent with family rather than creating a 'financial hangover' for yourself in the new year by overspending on gifts.", - "guid": "https://www.dailymail.co.uk/news/article-12867773/Martin-Lewis-says-teachers-not-Christmas-presents-class-hard-families-battling-cost-living-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:16:44.000Z" - }, - { - "title": "Two cargo ships are hit by missiles fired from Houthi-rebel territory in Yemen and set ablaze", - "link": "https://www.dailymail.co.uk/news/article-12868213/Two-cargo-ships-hit-missiles-fired-Houthi-rebel-territory-Yemen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:16:28 GMT", - "enclosure": { - "length": "5636", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003931-0-image-m-22_1702647856441.jpg" - }, - "content": "An official - who spoke on the condition of anonymity - identified the vessel as the MSC Palatium III and said it remained unclear if anyone was hurt in the attack near the near the Bab el-Mandeb Strait.", - "contentSnippet": "An official - who spoke on the condition of anonymity - identified the vessel as the MSC Palatium III and said it remained unclear if anyone was hurt in the attack near the near the Bab el-Mandeb Strait.", - "guid": "https://www.dailymail.co.uk/news/article-12868213/Two-cargo-ships-hit-missiles-fired-Houthi-rebel-territory-Yemen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:16:28.000Z" - }, - { - "title": "World's fastest man Noah Lyles on targeting world records and FOUR Olympic gold medals at Paris 2024, why he's 'bored' of comparisons to Usain Bolt... and that criticism of NBA's 'world champions'", - "link": "https://www.dailymail.co.uk/sport/olympics/article-12867697/Noah-Lyles-world-records-Olympic-gold-Paris-2024-Usain-Bolt-criticism-NBAs-world-champions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:14:37 GMT", - "enclosure": { - "length": "11723", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999521-0-image-a-11_1702639048814.jpg" - }, - "content": "EXCLUSIVE: Noah Lyles suits these surroundings. Sitting on the balcony of a luxury beach hotel overlooking Monte Carlo, wearing Fendi sunglasses and an adidas x Gucci tracksuit.", - "contentSnippet": "EXCLUSIVE: Noah Lyles suits these surroundings. Sitting on the balcony of a luxury beach hotel overlooking Monte Carlo, wearing Fendi sunglasses and an adidas x Gucci tracksuit.", - "guid": "https://www.dailymail.co.uk/sport/olympics/article-12867697/Noah-Lyles-world-records-Olympic-gold-Paris-2024-Usain-Bolt-criticism-NBAs-world-champions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:14:37.000Z" - }, - { - "title": "Labour denies claim it is planning another windfall tax to pay for its \u00a328billion green spending spree if it wins the next election", - "link": "https://www.dailymail.co.uk/news/article-12868475/Labour-denies-planning-windfall-tax-pay-28billion-green-spending.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:06:06 GMT", - "enclosure": { - "length": "10911", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79004221-0-image-m-201_1702649074368.jpg" - }, - "content": "Reports suggested that the party was looking at another punitive strike on business as it seeks ways to fund its \u00a328billion-per year plan to make Britain more green.", - "contentSnippet": "Reports suggested that the party was looking at another punitive strike on business as it seeks ways to fund its \u00a328billion-per year plan to make Britain more green.", - "guid": "https://www.dailymail.co.uk/news/article-12868475/Labour-denies-planning-windfall-tax-pay-28billion-green-spending.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:06:06.000Z" - }, - { - "title": "Experts reveal top tips for protecting your HAIR against bitter winter weather - and detail the mistakes that could cause your tresses to break and SNAP in the cold", - "link": "https://www.dailymail.co.uk/femail/article-12829919/Experts-tips-protect-HAIR-winter-weather-mistakes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:05:31 GMT", - "enclosure": { - "length": "9837", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/13/20/78926227-0-image-a-15_1702497978391.jpg" - }, - "content": "Celebrity hairstylists and beauty experts told FEMAIL their top tips for protecting your hair in the bitter winter weather to prevent winter hair damage and guarantee your locks don't break.", - "contentSnippet": "Celebrity hairstylists and beauty experts told FEMAIL their top tips for protecting your hair in the bitter winter weather to prevent winter hair damage and guarantee your locks don't break.", - "guid": "https://www.dailymail.co.uk/femail/article-12829919/Experts-tips-protect-HAIR-winter-weather-mistakes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:05:31.000Z" - }, - { - "title": "Lance Armstrong explains how he escaped detection as a drug cheat despite being tested 500 TIMES before his spectacular fall from grace", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12868211/Lance-Armstrong-drug-cheat-500-TIMES.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:04:18 GMT", - "enclosure": { - "length": "11652", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79001147-0-image-a-20_1702642410964.jpg" - }, - "content": "Armstrong was previously regarded as perhaps the greatest ever road cyclist in the history of the sport, dominating the Tour de France from 199-2005 winning an unprecedented seven titles in succession.", - "contentSnippet": "Armstrong was previously regarded as perhaps the greatest ever road cyclist in the history of the sport, dominating the Tour de France from 199-2005 winning an unprecedented seven titles in succession.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12868211/Lance-Armstrong-drug-cheat-500-TIMES.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:04:18.000Z" - }, - { - "title": "Undertaker reveals why Johnny Depp carried Shane MacGowan's coffin - as furious Irish priest says star's funeral was a 'scandal' and 'completely inappropriate' - warning Fairytale Of New York is too foul-mouthed to be sung in a church", - "link": "https://www.dailymail.co.uk/news/article-12867469/undertaker-reveals-johnny-depp-carried-shane-macgowan-coffin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 14:00:43 GMT", - "enclosure": { - "length": "11963", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/78995831-0-image-m-10_1702648010352.jpg" - }, - "content": "Tipperary undertaker Philly Ryan says he invited Johnny Depp to perform the honour\u00a0at St Mary of the Rosary Church, but admitted it was never part of the plan.", - "contentSnippet": "Tipperary undertaker Philly Ryan says he invited Johnny Depp to perform the honour\u00a0at St Mary of the Rosary Church, but admitted it was never part of the plan.", - "guid": "https://www.dailymail.co.uk/news/article-12867469/undertaker-reveals-johnny-depp-carried-shane-macgowan-coffin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T14:00:43.000Z" - }, - { - "title": "Revealed: The best items in a British Christmas Dinner, according to AI - so, do you agree with the ranking?", - "link": "https://www.dailymail.co.uk/sciencetech/article-12868067/The-best-items-British-Christmas-Dinner-according-AI-agree-ranking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:58:55 GMT", - "enclosure": { - "length": "11205", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79004413-0-image-m-22_1702648617394.jpg" - }, - "content": "With just 10 days to go before we get to devour our Christmas Dinner, MailOnline asked ChatGPT to rank the elements on the meal.", - "contentSnippet": "With just 10 days to go before we get to devour our Christmas Dinner, MailOnline asked ChatGPT to rank the elements on the meal.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12868067/The-best-items-British-Christmas-Dinner-according-AI-agree-ranking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:58:55.000Z" - }, - { - "title": "Lady Isabella Hervey's estranged husband launches legal battle to evict her from their marital home after she called him a 'wife beater' who subjected her to years of physical and mental abuse", - "link": "https://www.dailymail.co.uk/news/article-12865259/Lady-Isabella-Herveys-estranged-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:49:32 GMT", - "enclosure": { - "length": "11039", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79004175-0-image-a-25_1702648165867.jpg" - }, - "content": "EXCLUSIVE: The husband of Lady Isabella Hervey is launching a legal battle to evict her from their former marital home after she accused him of being a 'wife beater', MailOnline can reveal.", - "contentSnippet": "EXCLUSIVE: The husband of Lady Isabella Hervey is launching a legal battle to evict her from their former marital home after she accused him of being a 'wife beater', MailOnline can reveal.", - "guid": "https://www.dailymail.co.uk/news/article-12865259/Lady-Isabella-Herveys-estranged-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:49:32.000Z" - }, - { - "title": "SNP goes into meltdown over Humza Yousaf's plan for new tax band to fill \u00a31.5bn chasm in Scottish government's finances - with warnings it could spark an exodus of workers", - "link": "https://www.dailymail.co.uk/news/article-12867607/SNP-Scotland-Humza-Yousaf-tax-band-Budget.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:47:03 GMT", - "enclosure": { - "length": "9460", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996121-0-image-m-5_1702631638006.jpg" - }, - "content": "The SNP is poised to use next week's Budget to introduce a 44 per cent band north of the border from April.", - "contentSnippet": "The SNP is poised to use next week's Budget to introduce a 44 per cent band north of the border from April.", - "guid": "https://www.dailymail.co.uk/news/article-12867607/SNP-Scotland-Humza-Yousaf-tax-band-Budget.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:47:03.000Z" - }, - { - "title": "James Haskell takes a swipe at estranged wife Chloe Madeley and claims he has no money to give her in their divorce because he's been 'cancelled too many times'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867559/James-Haskell-takes-swipe-estranged-wife-Chloe-Madeley-claims-no-money-divorce-hes-cancelled-times.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:39:22 GMT", - "enclosure": { - "length": "12293", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996781-0-image-m-55_1702633632445.jpg" - }, - "content": "The former rugby union player, 38, spoke out about his marriage as he appeared in Bath on Friday for the last of a 17-show run of his live podcast tour.", - "contentSnippet": "The former rugby union player, 38, spoke out about his marriage as he appeared in Bath on Friday for the last of a 17-show run of his live podcast tour.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867559/James-Haskell-takes-swipe-estranged-wife-Chloe-Madeley-claims-no-money-divorce-hes-cancelled-times.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:39:22.000Z" - }, - { - "title": "'New This Morning host' Cat Deeley is set for a bumper payday and could even DOUBLE her earnings with deals... but it's still not as much as her predecessor Holly Willoughby", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867849/new-morning-host-cat-deeley-ben-shepherd-six-figure-deal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:25:50 GMT", - "enclosure": { - "length": "10870", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000291-0-image-m-2_1702640765658.jpg" - }, - "content": "The English presenter, 47, has reportedly been picked to front the ITV show with Ben Shepherd and The Sun claims the pair will receive an annual salary of \u00a3555,000.", - "contentSnippet": "The English presenter, 47, has reportedly been picked to front the ITV show with Ben Shepherd and The Sun claims the pair will receive an annual salary of \u00a3555,000.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867849/new-morning-host-cat-deeley-ben-shepherd-six-figure-deal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:25:50.000Z" - }, - { - "title": "Moment millionaire property tycoon uses a chainsaw to cut through a door 'to evict tenants' (but social media is NOT impressed by the stunt)", - "link": "https://www.dailymail.co.uk/news/article-12867973/Millionaire-landlord-posts-video-using-chainsaw-cut-door-evict-tenants-online-sleuths-question-footage-seems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:24:46 GMT", - "enclosure": { - "length": "5453", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999591-0-image-m-14_1702639596053.jpg" - }, - "content": "Footage Samuel Leeds, 29, cutting through the door has been shared widely online but some have questioned if all is as Samuel says it is.", - "contentSnippet": "Footage Samuel Leeds, 29, cutting through the door has been shared widely online but some have questioned if all is as Samuel says it is.", - "guid": "https://www.dailymail.co.uk/news/article-12867973/Millionaire-landlord-posts-video-using-chainsaw-cut-door-evict-tenants-online-sleuths-question-footage-seems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:24:46.000Z" - }, - { - "title": "Your ultimate guide to what to watch on TV this Christmas: From the best dramas to family shows, films, comedies and specials, all you need to know about this year's festive telly extravaganza", - "link": "https://www.dailymail.co.uk/femail/article-12854841/ultimate-guide-watch-TV-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:21:32 GMT", - "enclosure": { - "length": "12840", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/12/17/78877375-0-image-a-8_1702401722630.jpg" - }, - "content": "TV dramas to enjoy over the festive period include The Heist Before Christmas, which conjures up a Yuletide miracle by blending bleak elements into a warm holiday film with a bit of edge.", - "contentSnippet": "TV dramas to enjoy over the festive period include The Heist Before Christmas, which conjures up a Yuletide miracle by blending bleak elements into a warm holiday film with a bit of edge.", - "guid": "https://www.dailymail.co.uk/femail/article-12854841/ultimate-guide-watch-TV-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:21:32.000Z" - }, - { - "title": "Gaynor Lord's last movements caught on camera: Video retraces her steps on day she vanished - as police divers recover body from river in hunt for missing mother", - "link": "https://www.dailymail.co.uk/news/article-12867815/gaynor-lord-moments-caught-camera.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:21:20 GMT", - "enclosure": { - "length": "9896", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998649-0-image-m-27_1702637931740.jpg" - }, - "content": "EXCLUSIVE: The missing mother was supposed to finish a shift at the Bullards Gin counter in the basement at Jarrolds department store at 4pm but she left over an hour early.", - "contentSnippet": "EXCLUSIVE: The missing mother was supposed to finish a shift at the Bullards Gin counter in the basement at Jarrolds department store at 4pm but she left over an hour early.", - "guid": "https://www.dailymail.co.uk/news/article-12867815/gaynor-lord-moments-caught-camera.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:21:20.000Z" - }, - { - "title": "The best and worst value places to go skiing in Europe this winter - with Bulgaria losing its crown as the cheapest destination to ITALY", - "link": "https://www.dailymail.co.uk/travel/article-12859417/The-best-worst-value-places-Britons-skiing-Europe-winter-Bulgaria-Italy-Switzerland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:19:17 GMT", - "enclosure": { - "length": "7566", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/08/78918953-0-image-m-7_1702542640890.jpg" - }, - "content": "For the first time in a decade, Bulgarian ski resorts Borovets and Bansko have lost their position as being the best value in Europe.", - "contentSnippet": "For the first time in a decade, Bulgarian ski resorts Borovets and Bansko have lost their position as being the best value in Europe.", - "guid": "https://www.dailymail.co.uk/travel/article-12859417/The-best-worst-value-places-Britons-skiing-Europe-winter-Bulgaria-Italy-Switzerland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:19:17.000Z" - }, - { - "title": "Armed Met officer who crashed while racing at 80mph to scene of Streatham terror attack will not be disciplined after fury that he was taken to court", - "link": "https://www.dailymail.co.uk/news/article-12868139/Armed-Met-officer-crashed-racing-80mph-scene-Streatham-terror-attack-not-disciplined-fury-taken-court.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:17:34 GMT", - "enclosure": { - "length": "7238", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/78042181-0-image-a-15_1702646201809.jpg" - }, - "content": "PC Paul Fisher, 46, made a 'split-second error' when he lost control of his unmarked BMW X5 and ran in to the back of a taxi driver's Toyota before hitting a Ford Fiesta and a wall.", - "contentSnippet": "PC Paul Fisher, 46, made a 'split-second error' when he lost control of his unmarked BMW X5 and ran in to the back of a taxi driver's Toyota before hitting a Ford Fiesta and a wall.", - "guid": "https://www.dailymail.co.uk/news/article-12868139/Armed-Met-officer-crashed-racing-80mph-scene-Streatham-terror-attack-not-disciplined-fury-taken-court.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:17:34.000Z" - }, - { - "title": "Google will turn off cookies for MILLIONS of people on January 4 - here's what it means for you", - "link": "https://www.dailymail.co.uk/sciencetech/article-12867609/Google-turn-cookies-MILLIONS-people-January-4-heres-means-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:16:03 GMT", - "enclosure": { - "length": "5692", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997079-0-image-a-16_1702636691714.jpg" - }, - "content": "Google is set to roll out a feature called Tracking Protection on January 4 to just 1 per cent of Chrome users globally that will block third-party cookies.", - "contentSnippet": "Google is set to roll out a feature called Tracking Protection on January 4 to just 1 per cent of Chrome users globally that will block third-party cookies.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12867609/Google-turn-cookies-MILLIONS-people-January-4-heres-means-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:16:03.000Z" - }, - { - "title": "Meet the World Darts Championship's power couple who are rivals in going for glory... and while one's 'The Queen of Ally Pally', her boyfriend's working a plumbing shift on the morning of a guaranteed \u00a37,500 payday!", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12867853/World-Darts-Championships-power-couple-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:15:48 GMT", - "enclosure": { - "length": "11158", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000313-0-image-a-15_1702640827454.jpg" - }, - "content": "Christmas is the time of year where families and loved ones come together to celebrate the festive season - but in one darts household, their competitive spirit is about to be put to the test.", - "contentSnippet": "Christmas is the time of year where families and loved ones come together to celebrate the festive season - but in one darts household, their competitive spirit is about to be put to the test.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12867853/World-Darts-Championships-power-couple-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:15:48.000Z" - }, - { - "title": "Is this Britain's worst parking company? Holidaymakers slam 'awful' Heathrow Airport firm saying they suffered 'nightmare' customer service, were left abandoned at terminals and had their cars returned looking 'filthy'", - "link": "https://www.dailymail.co.uk/news/article-12867895/Drivers-slam-parking-firm-Deals4Parking-London-Heathrow-Airport.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:13:29 GMT", - "enclosure": { - "length": "8193", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999205-0-Deals4Parking_co_uk_is_based_700_yards_away_from_London_Heathrow-a-15_1702638938532.jpg" - }, - "content": "Deals4Parking.co.uk, which is based in Sipson just 700 yards away from London Heathrow Airport's north runway, has a Trustpilot rating of just 1.3 stars from 179 reviews.", - "contentSnippet": "Deals4Parking.co.uk, which is based in Sipson just 700 yards away from London Heathrow Airport's north runway, has a Trustpilot rating of just 1.3 stars from 179 reviews.", - "guid": "https://www.dailymail.co.uk/news/article-12867895/Drivers-slam-parking-firm-Deals4Parking-London-Heathrow-Airport.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:13:29.000Z" - }, - { - "title": "Commercial ship 'is hijacked by pirates' and heading towards Somalia: Crew 'no longer in control' as Spanish warship heads to intercept", - "link": "https://www.dailymail.co.uk/news/article-12868181/Commercial-ship-hijacked-pirates-heading-Somalia-Crew-no-longer-control-Spanish-warship-heads-intercept.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:12:34 GMT", - "enclosure": { - "length": "2883", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79002205-0-image-a-14_1702644566477.jpg" - }, - "content": "A commercial ship has been hijacked and is currently heading towards by Somalia, the UK's\u00a0Marine Trade Operations said.", - "contentSnippet": "A commercial ship has been hijacked and is currently heading towards by Somalia, the UK's\u00a0Marine Trade Operations said.", - "guid": "https://www.dailymail.co.uk/news/article-12868181/Commercial-ship-hijacked-pirates-heading-Somalia-Crew-no-longer-control-Spanish-warship-heads-intercept.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:12:34.000Z" - }, - { - "title": "British tourist who claimed he had been drugged and scammed of \u00a33,500 in Brazil nightclub 'was lying to hide the fact he cheated on his wife' police say", - "link": "https://www.dailymail.co.uk/news/article-12867949/British-tourist-claimed-drugged-scammed-3-500-Brazil-nightclub-lying-hide-fact-cheated-wife-police-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:12:08 GMT", - "enclosure": { - "length": "7167", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79000117-0-image-m-23_1702645845775.jpg" - }, - "content": "The 48-year-old holidaymaker said the club in Copacabana had doped him and run up a huge charge on his credit card. But CCTV footage showed him apparently having the time of his life", - "contentSnippet": "The 48-year-old holidaymaker said the club in Copacabana had doped him and run up a huge charge on his credit card. But CCTV footage showed him apparently having the time of his life", - "guid": "https://www.dailymail.co.uk/news/article-12867949/British-tourist-claimed-drugged-scammed-3-500-Brazil-nightclub-lying-hide-fact-cheated-wife-police-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:12:08.000Z" - }, - { - "title": "Lorraine Kelly breaks down in tears as she remembers ITV producer\u00a0Hannah Hawkins who died from breast cancer\u00a0aged 33 during emotional tribute", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868047/Lorraine-Kelly-tears-ITV-producer-Hannah-Hawkins-died.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:12:01 GMT", - "enclosure": { - "length": "11535", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000407-0-image-a-70_1702641039816.jpg" - }, - "content": "The ITV team member was diagnosed with breast cancer in 2020 and went into remission the following year. Tragically, two days before she welcomed her son Rory.", - "contentSnippet": "The ITV team member was diagnosed with breast cancer in 2020 and went into remission the following year. Tragically, two days before she welcomed her son Rory.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868047/Lorraine-Kelly-tears-ITV-producer-Hannah-Hawkins-died.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:12:01.000Z" - }, - { - "title": "'Can they only afford two hats?': Rishi Sunak's black-and-white Christmas card featuring wife Akshata Murthy and their two daughters raises eyebrows online", - "link": "https://www.dailymail.co.uk/news/article-12867867/rishi-sunak-family-christmas-card-raises-eyebrows-online.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:09:01 GMT", - "enclosure": { - "length": "10222", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78982059-0-image-a-12_1702639738578.jpg" - }, - "content": "The card features a Santa hat drawn on Mr Sunak's head while a Christmas tree can be seen on his wife's. A yellow star has also been doodled on the photograph.", - "contentSnippet": "The card features a Santa hat drawn on Mr Sunak's head while a Christmas tree can be seen on his wife's. A yellow star has also been doodled on the photograph.", - "guid": "https://www.dailymail.co.uk/news/article-12867867/rishi-sunak-family-christmas-card-raises-eyebrows-online.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:09:01.000Z" - }, - { - "title": "Woman divides opinion after revealing she started her wedding WITHOUT her tardy parents because she's 'sick of them always running late'", - "link": "https://www.dailymail.co.uk/femail/article-12867481/Woman-divides-opinion-revealing-started-wedding-WITHOUT-tardy-parents-shes-sick-running-late.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:06:22 GMT", - "enclosure": { - "length": "3339", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995169-0-image-a-10_1702629464474.jpg" - }, - "content": "One disgruntled newlywed, believed to be from the US recently told Reddit that her parents had missed most of her marriage ceremony, and expected her to accommodate them.", - "contentSnippet": "One disgruntled newlywed, believed to be from the US recently told Reddit that her parents had missed most of her marriage ceremony, and expected her to accommodate them.", - "guid": "https://www.dailymail.co.uk/femail/article-12867481/Woman-divides-opinion-revealing-started-wedding-WITHOUT-tardy-parents-shes-sick-running-late.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:06:22.000Z" - }, - { - "title": "Boris Johnson says 'with guts and determination' Britain can stop the boats 'just like Australia' in his latest Daily Mail column", - "link": "https://www.dailymail.co.uk/news/article-12868009/Boris-Johnson-column-Channel-boats-Britain-Australia-Rwanda.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:06:09 GMT", - "enclosure": { - "length": "3922", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/72209967-0-image-m-3_1702642705037.jpg" - }, - "content": "Boris Johnson sends a tough message to his successor after he visited the Commonwealth country this week.", - "contentSnippet": "Boris Johnson sends a tough message to his successor after he visited the Commonwealth country this week.", - "guid": "https://www.dailymail.co.uk/news/article-12868009/Boris-Johnson-column-Channel-boats-Britain-Australia-Rwanda.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:06:09.000Z" - }, - { - "title": "Where the super-rich REALLY go on holiday: Secret online forum for ultra-luxe travellers reveals where they like to check in, from jaw-dropping jungle villas to a hotel with a 'director of beach'", - "link": "https://www.dailymail.co.uk/travel/article-12864521/Where-super-rich-REALLY-holiday-Secret-online-forum-ultra-luxe-travellers-reveals-like-check-jaw-dropping-jungle-villas-hotel-director-beach.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 13:03:33 GMT", - "enclosure": { - "length": "8192", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/16/78962487-0-image-m-38_1702572627823.jpg" - }, - "content": "Forget the Hilton - this is where the super-rich really travel, according to a thread on Reddit seeking to uncover the hideaways where the elite check in for their holidays.", - "contentSnippet": "Forget the Hilton - this is where the super-rich really travel, according to a thread on Reddit seeking to uncover the hideaways where the elite check in for their holidays.", - "guid": "https://www.dailymail.co.uk/travel/article-12864521/Where-super-rich-REALLY-holiday-Secret-online-forum-ultra-luxe-travellers-reveals-like-check-jaw-dropping-jungle-villas-hotel-director-beach.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T13:03:33.000Z" - }, - { - "title": "What are the rarest circulating coins featuring Queen Elizabeth II?", - "link": "https://www.dailymail.co.uk/money/saving/article-12864123/What-rarest-circulating-coins-featuring-Queen-Elizabeth-II.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:58:18 GMT", - "enclosure": { - "length": "5676", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/15/78965049-0-image-m-40_1702568637382.jpg" - }, - "content": "The 2009 Kew Gardens 50p and a collection of alphabet 10p coins from 2018 and 2019 are some of the rarest coins to look out for in your change, the Royal Mint has revealed.", - "contentSnippet": "The 2009 Kew Gardens 50p and a collection of alphabet 10p coins from 2018 and 2019 are some of the rarest coins to look out for in your change, the Royal Mint has revealed.", - "guid": "https://www.dailymail.co.uk/money/saving/article-12864123/What-rarest-circulating-coins-featuring-Queen-Elizabeth-II.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:58:18.000Z" - }, - { - "title": "Five home across Britain you can get for the average rent of \u00a31,350 a month", - "link": "https://www.dailymail.co.uk/property/article-12854967/Five-home-Britain-average-rent-1-350-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:57:54 GMT", - "enclosure": { - "length": "5299", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/12/16/78873383-0-image-a-30_1702398651015.jpg" - }, - "content": "We pick five homes on Zoopla with rental asking prices of around \u00a31,350 a month.", - "contentSnippet": "We pick five homes on Zoopla with rental asking prices of around \u00a31,350 a month.", - "guid": "https://www.dailymail.co.uk/property/article-12854967/Five-home-Britain-average-rent-1-350-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:57:54.000Z" - }, - { - "title": "Kate Middleton 'is trying to raise our future King so it shouldn't be seen as not working hard', Richard Eden tells PALACE CONFIDENTIAL - after she was called a 'part-time royal' by Omid Scobie and\u00a0carried out just 128 engagements", - "link": "https://www.dailymail.co.uk/femail/article-12868019/Kate-Middleton-trying-raise-future-King-shouldnt-seen-not-working-hard-Richard-Eden-tells-PALACE-CONFIDENTIAL-called-time-royal-Omid-Scobie-carried-just-128-engagements.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:56:20 GMT", - "enclosure": { - "length": "11405", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79000735-0-image-a-1_1702642215218.jpg" - }, - "content": "It comes after an analysis of public events and official meetings by the Sunday Telegraph showed Princess Anne was the hardest working member of the British Royal Family this year.", - "contentSnippet": "It comes after an analysis of public events and official meetings by the Sunday Telegraph showed Princess Anne was the hardest working member of the British Royal Family this year.", - "guid": "https://www.dailymail.co.uk/femail/article-12868019/Kate-Middleton-trying-raise-future-King-shouldnt-seen-not-working-hard-Richard-Eden-tells-PALACE-CONFIDENTIAL-called-time-royal-Omid-Scobie-carried-just-128-engagements.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:56:20.000Z" - }, - { - "title": "Elon Musk SLAMS Microsoft Word's inclusiveness checker as it prompts him to reconsider using the word 'insane' - as his fans vent 'wokeism has literally infiltrated everything on this planet'", - "link": "https://www.dailymail.co.uk/sciencetech/article-12867925/Elon-Musk-SLAMS-Microsoft-Words-inclusiveness-checker-prompts-reconsider-using-word-insane-fans-vent-wokeism-literally-infiltrated-planet.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:46:44 GMT", - "enclosure": { - "length": "6946", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999303-0-image-a-30_1702639465925.jpg" - }, - "content": "Twitter CEO Elon Musk took to social media to slam Microsoft Word's inclusiveness checker after it 'scolded' him for using the word 'insane' to describe a car's stability in a document.", - "contentSnippet": "Twitter CEO Elon Musk took to social media to slam Microsoft Word's inclusiveness checker after it 'scolded' him for using the word 'insane' to describe a car's stability in a document.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12867925/Elon-Musk-SLAMS-Microsoft-Words-inclusiveness-checker-prompts-reconsider-using-word-insane-fans-vent-wokeism-literally-infiltrated-planet.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:46:44.000Z" - }, - { - "title": "Historic homes restoration expert, 72, broke planning laws by carrying out work to his Grade-II listed \u00a31.5m Cotswolds farmhouse without permission after he became 'frustrated' with council delays", - "link": "https://www.dailymail.co.uk/news/article-12867527/Historic-homes-restoration-expert-72-broke-planning-laws-carrying-work-Grade-II-listed-1-5m-Cotswolds-farmhouse-without-permission-frustrated-council-delays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:43:32 GMT", - "enclosure": { - "length": "6142", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995229-0-image-m-15_1702630747125.jpg" - }, - "content": "John Evetts, 72 - a former council planning chairman and consultant at the Landmark Trust - 'jumped the gun' after becoming frustrated with planning delays at his local council.", - "contentSnippet": "John Evetts, 72 - a former council planning chairman and consultant at the Landmark Trust - 'jumped the gun' after becoming frustrated with planning delays at his local council.", - "guid": "https://www.dailymail.co.uk/news/article-12867527/Historic-homes-restoration-expert-72-broke-planning-laws-carrying-work-Grade-II-listed-1-5m-Cotswolds-farmhouse-without-permission-frustrated-council-delays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:43:32.000Z" - }, - { - "title": "'Hamas terrorists who planned to carry out terror attack on Jewish institutions across Europe' appear before German court as it is claimed the four men 'had close ties to senior leaders'", - "link": "https://www.dailymail.co.uk/news/article-12868101/Hamas-terrorists-planned-carry-terror-attack-Jewish-institutions-Europe-appear-German-court-claimed-four-men-close-ties-senior-leaders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:33:02 GMT", - "enclosure": { - "length": "8003", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79001711-0-image-a-15_1702643500857.jpg" - }, - "content": "Egyptian national Mohamed B., the Lebanon born Ibrahim El-R. and Abdelhamid Al A., also from Lebanon, were flown to the German city of Karlsruhe in a helicopter to appear before a judge.", - "contentSnippet": "Egyptian national Mohamed B., the Lebanon born Ibrahim El-R. and Abdelhamid Al A., also from Lebanon, were flown to the German city of Karlsruhe in a helicopter to appear before a judge.", - "guid": "https://www.dailymail.co.uk/news/article-12868101/Hamas-terrorists-planned-carry-terror-attack-Jewish-institutions-Europe-appear-German-court-claimed-four-men-close-ties-senior-leaders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:33:02.000Z" - }, - { - "title": "Wealthy surgeon who beat his 'Champagne Charlie girl' lover in their Travelodge room in bid to have rough sex with her and bought Class A drugs on dark web is banned from treating patients for a year", - "link": "https://www.dailymail.co.uk/news/article-12867401/wealthy-surgeon-beat-champagne-charlie-girl-lover-banned-treating-patients-one-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:31:47 GMT", - "enclosure": { - "length": "4706", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995075-0-image-m-10_1702630693134.jpg" - }, - "content": "Dr Perbinderpal Grewal, 50, slapped and choked the woman, pulled out clumps of her hair and threw her on the bed after he booked a room at the budget hotel in Portsmouth.", - "contentSnippet": "Dr Perbinderpal Grewal, 50, slapped and choked the woman, pulled out clumps of her hair and threw her on the bed after he booked a room at the budget hotel in Portsmouth.", - "guid": "https://www.dailymail.co.uk/news/article-12867401/wealthy-surgeon-beat-champagne-charlie-girl-lover-banned-treating-patients-one-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:31:47.000Z" - }, - { - "title": "S Club's Rachel Stevens fails to dodge driving ban after clocking up 21 points for speeding as she tells court she is still traumatised by mugging and shooting 15 years ago - and needs her car for the school run after breaking up with childhood sweetheart", - "link": "https://www.dailymail.co.uk/news/article-12867295/S-Clubs-Rachel-Stevens-fails-dodge-driving-ban-clocking-21-points-speeding-tells-court-traumatised-mugging-shooting-15-years-ago-needs-car-school-run-breaking-childhood-sweetheart.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:19:18 GMT", - "enclosure": { - "length": "6629", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/07/78794493-0-image-m-17_1702626810475.jpg" - }, - "content": "The 45-year-old told magistrates that she was 'absolutely terrified' when\u00a0she was robbed of her engagement ring by three muggers on her north London doorstep in June 2009.", - "contentSnippet": "The 45-year-old told magistrates that she was 'absolutely terrified' when\u00a0she was robbed of her engagement ring by three muggers on her north London doorstep in June 2009.", - "guid": "https://www.dailymail.co.uk/news/article-12867295/S-Clubs-Rachel-Stevens-fails-dodge-driving-ban-clocking-21-points-speeding-tells-court-traumatised-mugging-shooting-15-years-ago-needs-car-school-run-breaking-childhood-sweetheart.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:19:18.000Z" - }, - { - "title": "REVEALED: The highest paid player from EVERY Premier League season shows wages skyrocketing from John Barnes' \u00a310,000-a-week in 1992... with Man United and Man City stars dominating the list", - "link": "https://www.dailymail.co.uk/sport/football/article-12867429/highest-paid-player-Premier-League-season-wages-skyrocketing-John-Barnes-10-000-1992-Man-United-Man-City.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:13:52 GMT", - "enclosure": { - "length": "11707", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996649-0-image-a-4_1702632871184.jpg" - }, - "content": "2023-24's highest earner - Manchester City 's Kevin De Bruyne's \u00a3400,000-a-week wages makes John Barnes' 1992-93 take-home pay look paltry in comparison.", - "contentSnippet": "2023-24's highest earner - Manchester City 's Kevin De Bruyne's \u00a3400,000-a-week wages makes John Barnes' 1992-93 take-home pay look paltry in comparison.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12867429/highest-paid-player-Premier-League-season-wages-skyrocketing-John-Barnes-10-000-1992-Man-United-Man-City.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:13:52.000Z" - }, - { - "title": "Energy bills to rise by an extra \u00a316 next year to cover unpaid customer debt", - "link": "https://www.dailymail.co.uk/money/bills/article-12867741/Energy-bills-rise-extra-16-year-cover-unpaid-customer-debt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:11:59 GMT", - "enclosure": { - "length": "5192", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997815-0-image-m-13_1702635617061.jpg" - }, - "content": "Households face paying higher energy bills next year to help protect energy firms against soaring consumer debt.", - "contentSnippet": "Households face paying higher energy bills next year to help protect energy firms against soaring consumer debt.", - "guid": "https://www.dailymail.co.uk/money/bills/article-12867741/Energy-bills-rise-extra-16-year-cover-unpaid-customer-debt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:11:59.000Z" - }, - { - "title": "Moment Lime bike cyclist smashes into a double-decker bus when it suddenly stops - so who do YOU think was in the wrong?", - "link": "https://www.dailymail.co.uk/news/article-12867571/Moment-Lime-bike-cyclist-smashes-double-decker-bus-suddenly-stops-think-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:06:34 GMT", - "enclosure": { - "length": "9814", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78998733-0-image-m-36_1702638435994.jpg" - }, - "content": "This is the moment a cyclist on a hired electrically-assisted Lime bike crashed into a double decker bus which had stopped dramatically in the middle of the road in Ealing, west London.", - "contentSnippet": "This is the moment a cyclist on a hired electrically-assisted Lime bike crashed into a double decker bus which had stopped dramatically in the middle of the road in Ealing, west London.", - "guid": "https://www.dailymail.co.uk/news/article-12867571/Moment-Lime-bike-cyclist-smashes-double-decker-bus-suddenly-stops-think-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:06:34.000Z" - }, - { - "title": "Driver who ran over and killed Ryanair flight attendant when he was distracted by text message he sent his partner about their child's nappy is jailed for three years", - "link": "https://www.dailymail.co.uk/news/article-12867795/Driver-ran-killed-Ryanair-flight-attendant-distracted-text-message-sent-partner-childs-nappy-jailed-three-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:05:53 GMT", - "enclosure": { - "length": "7442", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78998839-0-image-a-184_1702640905590.jpg" - }, - "content": "Cinzia Ceravolo, 36, was a Ryanair crew member who was returning home after two days away with work. She was hit by Kieran Cooney, 31 in Liverpool.", - "contentSnippet": "Cinzia Ceravolo, 36, was a Ryanair crew member who was returning home after two days away with work. She was hit by Kieran Cooney, 31 in Liverpool.", - "guid": "https://www.dailymail.co.uk/news/article-12867795/Driver-ran-killed-Ryanair-flight-attendant-distracted-text-message-sent-partner-childs-nappy-jailed-three-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:05:53.000Z" - }, - { - "title": "Vigil star Rose Leslie and her Game of Thrones husband Kit Harington are locked in row with conservationists over plans to turn 15th century barn at their \u00a31.75m country house into guest bedrooms - amid fears work would disturb BATS", - "link": "https://www.dailymail.co.uk/news/article-12863773/Vigil-star-Rose-Leslie-Game-Thrones-husband-Kit-Harington-locked-row-conservationists-plans-turn-15th-century-barn-1-75m-country-house-guest-bedrooms-amid-fears-work-disturb-BATS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:05:41 GMT", - "enclosure": { - "length": "11802", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/07/78994075-0-image-a-1_1702626111655.jpg" - }, - "content": "Vigil star Rose Leslie is locked in a planning row with conservationists over turning a 15th century barn at her \u00a31.75m country mansion into bedrooms for guests - because of bats.", - "contentSnippet": "Vigil star Rose Leslie is locked in a planning row with conservationists over turning a 15th century barn at her \u00a31.75m country mansion into bedrooms for guests - because of bats.", - "guid": "https://www.dailymail.co.uk/news/article-12863773/Vigil-star-Rose-Leslie-Game-Thrones-husband-Kit-Harington-locked-row-conservationists-plans-turn-15th-century-barn-1-75m-country-house-guest-bedrooms-amid-fears-work-disturb-BATS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:05:41.000Z" - }, - { - "title": "Shane MacGowan's widow Victoria Mary Clarke says she went 'through hell at times' with The Pogues singer, saying: 'I was always wondering \"Will he die?\"'", - "link": "https://www.dailymail.co.uk/femail/article-12867929/Shane-MacGowans-widow-Victoria-Mary-Clarke-says-went-hell-times-Pogues-singer-saying-wondering-die.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 12:02:11 GMT", - "enclosure": { - "length": "9696", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000027-0-image-a-7_1702640208955.jpg" - }, - "content": "Irish journalist Victoria May Clarke, 57, told Anita Rani on Woman's Hour that she was still 'shaky' and 'dazed' after MacGowan's funeral in Nenagh, Co. Tipperary last week.", - "contentSnippet": "Irish journalist Victoria May Clarke, 57, told Anita Rani on Woman's Hour that she was still 'shaky' and 'dazed' after MacGowan's funeral in Nenagh, Co. Tipperary last week.", - "guid": "https://www.dailymail.co.uk/femail/article-12867929/Shane-MacGowans-widow-Victoria-Mary-Clarke-says-went-hell-times-Pogues-singer-saying-wondering-die.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T12:02:11.000Z" - }, - { - "title": "Michael Schumacher's close friend and former boss Jean Todt gives new insight on his condition ten years on from his horror skiing accident: 'He's simply not the Michael he used to be'", - "link": "https://www.dailymail.co.uk/sport/formulaone/article-12867623/Michael-Schumacher-Jean-Todt-insight-condition-skiing-accident.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:59:37 GMT", - "enclosure": { - "length": "11566", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78997175-0-image-a-1_1702634361695.jpg" - }, - "content": "Schumacher - who won seven F1 world championships - was involved in a tragic skiing accident in December 2013 that left him in a medically induced coma.", - "contentSnippet": "Schumacher - who won seven F1 world championships - was involved in a tragic skiing accident in December 2013 that left him in a medically induced coma.", - "guid": "https://www.dailymail.co.uk/sport/formulaone/article-12867623/Michael-Schumacher-Jean-Todt-insight-condition-skiing-accident.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:59:37.000Z" - }, - { - "title": "Is this Britain's worst place for potholes? Drivers say they have suffered \u00a31m of damage from cratered roads in last eight months - and council has only paid up \u00a348,000 so far", - "link": "https://www.dailymail.co.uk/news/article-12867695/Britains-worst-potholes-Drivers-1m-damage-council-paid-48000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:57:31 GMT", - "enclosure": { - "length": "7717", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78997019-0-image-m-14_1702634117943.jpg" - }, - "content": "Drivers in Devon have submitted claims amounting to more than \u00a31million for vehicle damage caused by potholes in just eight months, but the council has paid out less than 5%.", - "contentSnippet": "Drivers in Devon have submitted claims amounting to more than \u00a31million for vehicle damage caused by potholes in just eight months, but the council has paid out less than 5%.", - "guid": "https://www.dailymail.co.uk/news/article-12867695/Britains-worst-potholes-Drivers-1m-damage-council-paid-48000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:57:31.000Z" - }, - { - "title": "New app can tell you exactly how many calories are in your food - just by looking at it", - "link": "https://www.dailymail.co.uk/health/article-12867487/New-app-tell-exactly-calories-food-just-looking-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:55:52 GMT", - "enclosure": { - "length": "5197", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000563-0-image-m-11_1702641313233.jpg" - }, - "content": "Tushar Vashisht, who founded the app and is based in India, said: 'It can recognise more than 1million foods and outperforms ChatGPT on food recognition.'", - "contentSnippet": "Tushar Vashisht, who founded the app and is based in India, said: 'It can recognise more than 1million foods and outperforms ChatGPT on food recognition.'", - "guid": "https://www.dailymail.co.uk/health/article-12867487/New-app-tell-exactly-calories-food-just-looking-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:55:52.000Z" - }, - { - "title": "White Christmas is off! Met Office say there is 'little sign' of wintry weather on Christmas Day with warm 13C weekend ahead - but Britain is still on flood watch as amber warning is issued for heavy rain in Scotland", - "link": "https://www.dailymail.co.uk/news/article-12867501/met-office-reveals-little-sign-snow-christmas-day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:54:53 GMT", - "enclosure": { - "length": "9790", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996097-0-image-a-29_1702631229684.jpg" - }, - "content": "This weekend parts of the UK are set to enjoy unseasonably warm weather with highs of 13C (55F) today and tomorrow - 6C above the December daytime average.", - "contentSnippet": "This weekend parts of the UK are set to enjoy unseasonably warm weather with highs of 13C (55F) today and tomorrow - 6C above the December daytime average.", - "guid": "https://www.dailymail.co.uk/news/article-12867501/met-office-reveals-little-sign-snow-christmas-day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:54:53.000Z" - }, - { - "title": "The Crown's Imelda Staunton reveals she was 'inconsolable' when she found out The Queen died during filming", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867885/The-Crowns-Imelda-Staunton-reveals-inconsolable-Queen-died-filming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:53:23 GMT", - "enclosure": { - "length": "11639", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999495-0-image-a-87_1702638974855.jpg" - }, - "content": "The actress, 67, plays Elizabeth II in the Netflix series and told how some on set 'found it hard' looking at her after the news broke on September 8.", - "contentSnippet": "The actress, 67, plays Elizabeth II in the Netflix series and told how some on set 'found it hard' looking at her after the news broke on September 8.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867885/The-Crowns-Imelda-Staunton-reveals-inconsolable-Queen-died-filming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:53:23.000Z" - }, - { - "title": "Joey Barton claims England's men would beat the Lionesses 30-0 in a single half of football after calling for women to 'stop trying to ruin our game' in latest sexist social media rant", - "link": "https://www.dailymail.co.uk/sport/football/article-12867729/Joey-Barton-England-men-Lionesses-30-0.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:48:29 GMT", - "enclosure": { - "length": "11292", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996557-0-image-a-19_1702632578583.jpg" - }, - "content": "Barton has made headlines of late for his rants against women in men's football, clashing with a number of analysts, commentators and pundits featuring in coverage for the men's game.", - "contentSnippet": "Barton has made headlines of late for his rants against women in men's football, clashing with a number of analysts, commentators and pundits featuring in coverage for the men's game.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12867729/Joey-Barton-England-men-Lionesses-30-0.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:48:29.000Z" - }, - { - "title": "Ominous warning from author behind 'real life Yellowface': Cait Corrain, who was dropped by her publisher after giving fake reviews to rival non-white authors, said she is 'terrified of being cancelled' when her book comes out", - "link": "https://www.dailymail.co.uk/femail/article-12867629/Ominous-warning-author-real-life-Yellowface-Cait-Corrain-dropped-publisher-giving-fake-reviews-rival-non-white-authors-said-terrified-cancelled-book-comes-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:46:32 GMT", - "enclosure": { - "length": "8398", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999723-0-image-a-19_1702639410478.jpg" - }, - "content": "LA-based Cait Corrain was set to release Crown of Starlight - a 'steamy, sci-fi reimagining' of the Greek myth of Ariadne and Dionysus - in May 2024.", - "contentSnippet": "LA-based Cait Corrain was set to release Crown of Starlight - a 'steamy, sci-fi reimagining' of the Greek myth of Ariadne and Dionysus - in May 2024.", - "guid": "https://www.dailymail.co.uk/femail/article-12867629/Ominous-warning-author-real-life-Yellowface-Cait-Corrain-dropped-publisher-giving-fake-reviews-rival-non-white-authors-said-terrified-cancelled-book-comes-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:46:32.000Z" - }, - { - "title": "The French region home to hippy communes ranging from conspiracy theorists to doomsday cults: Ariege, where Alex Batty has spent the last two years, is infamous for its 'alternative' lifestyle groups including one led by convicted paedophile", - "link": "https://www.dailymail.co.uk/news/article-12867461/The-French-region-home-hippy-communes-ranging-conspiracy-theorists-doomsday-cults-Ariege-Alex-Batty-spent-two-years-infamous-alternative-lifestyle-groups-including-one-led-convicted-paedophile.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:42:25 GMT", - "enclosure": { - "length": "5119", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78962001-0-Alex_Batty_from_Oldham_Lancashire_was_just_11_when_he_did_not_re-m-15_1702635973761.jpg" - }, - "content": "Alex Batty, from Oldham, Lancashire, went missing in 2017 when he was just 11. Detectives believe his mother and grandfather took him as they went to live an 'alternative lifestyle' in southern France.", - "contentSnippet": "Alex Batty, from Oldham, Lancashire, went missing in 2017 when he was just 11. Detectives believe his mother and grandfather took him as they went to live an 'alternative lifestyle' in southern France.", - "guid": "https://www.dailymail.co.uk/news/article-12867461/The-French-region-home-hippy-communes-ranging-conspiracy-theorists-doomsday-cults-Ariege-Alex-Batty-spent-two-years-infamous-alternative-lifestyle-groups-including-one-led-convicted-paedophile.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:42:25.000Z" - }, - { - "title": "Ten-year-olds watching Chicken Run 2 insist it WON'T make them give up chicken nuggets - despite vegan activists claiming the film would turn audiences off meat", - "link": "https://www.dailymail.co.uk/news/article-12867823/chicken-run-2-kids-not-stop-eating-meat-despite-vegan-claims.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:40:03 GMT", - "enclosure": { - "length": "8873", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998301-0-image-a-5_1702637415886.jpg" - }, - "content": "EXCLUSIVE: Dawn of the Nugget, the sequel to the 2000 animated cult classic, sees thousands of hens\u00a0being kept in a stupefied state in a Bond villain-styled huge chicken-processing factory.", - "contentSnippet": "EXCLUSIVE: Dawn of the Nugget, the sequel to the 2000 animated cult classic, sees thousands of hens\u00a0being kept in a stupefied state in a Bond villain-styled huge chicken-processing factory.", - "guid": "https://www.dailymail.co.uk/news/article-12867823/chicken-run-2-kids-not-stop-eating-meat-despite-vegan-claims.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:40:03.000Z" - }, - { - "title": "Horrifying moment teenager falls in front of a moving train and is dragged along the platform at a Russian station - but miraculously survives after friends pull him to safety", - "link": "https://www.dailymail.co.uk/news/article-12867451/Horrifying-moment-teenager-falls-moving-train-dragged-platform-Russian-station-miraculously-survives-friends-pull-safety.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:37:40 GMT", - "enclosure": { - "length": "8915", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78994979-0-image-m-21_1702629021705.jpg" - }, - "content": "The horrific incident, caught on a security camera at a station in Moscow, begins when the male victim is shadow boxing, showing off skills to two friends, before slipping off the platform", - "contentSnippet": "The horrific incident, caught on a security camera at a station in Moscow, begins when the male victim is shadow boxing, showing off skills to two friends, before slipping off the platform", - "guid": "https://www.dailymail.co.uk/news/article-12867451/Horrifying-moment-teenager-falls-moving-train-dragged-platform-Russian-station-miraculously-survives-friends-pull-safety.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:37:40.000Z" - }, - { - "title": "Still living in the Mad Men age! From ignoring women's safety to obsessing over leading male stars, advertising campaigners reveal the modern-day commercials guilty of 'sneaky sexism'", - "link": "https://www.dailymail.co.uk/femail/article-12863695/Still-living-Mad-Men-age-ignoring-womens-safety-obsessing-leading-male-stars-advertising-campaigners-reveal-modern-day-commercials-guilty-sneaky-sexism.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:35:35 GMT", - "enclosure": { - "length": "9916", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998937-0-image-a-2_1702637873774.jpg" - }, - "content": "WACL\u00a0is a UK-based club of female leaders in advertising and communications on a mission to improve gender equality in the industry.", - "contentSnippet": "WACL\u00a0is a UK-based club of female leaders in advertising and communications on a mission to improve gender equality in the industry.", - "guid": "https://www.dailymail.co.uk/femail/article-12863695/Still-living-Mad-Men-age-ignoring-womens-safety-obsessing-leading-male-stars-advertising-campaigners-reveal-modern-day-commercials-guilty-sneaky-sexism.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:35:35.000Z" - }, - { - "title": "How Alex Batty's mother 'went from law student to 'chaotic' cult member who left her young son in Morocco to live in Bali with a new boyfriend and sent her mother a \u00a3500,000 'bill' for 'her use of' Alex'", - "link": "https://www.dailymail.co.uk/news/article-12867671/How-Alex-Battys-mother-went-law-student-chaotic-cult-member-left-young-son-Morocco-live-Bali-new-boyfriend-sent-mother-500-000-bill-use-Alex.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:31:36 GMT", - "enclosure": { - "length": "3728", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997211-0-image-m-40_1702634483929.jpg" - }, - "content": "Susan Caruana revealed that Melanie was a rebellious teenager, partying hard, drinking, and Susan and her husband, Dave, struggled to cope with her.", - "contentSnippet": "Susan Caruana revealed that Melanie was a rebellious teenager, partying hard, drinking, and Susan and her husband, Dave, struggled to cope with her.", - "guid": "https://www.dailymail.co.uk/news/article-12867671/How-Alex-Battys-mother-went-law-student-chaotic-cult-member-left-young-son-Morocco-live-Bali-new-boyfriend-sent-mother-500-000-bill-use-Alex.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:31:36.000Z" - }, - { - "title": "People are only just discovering why Rowan Atkinson's Love Actually character took so long to wrap Alan Rickman's present", - "link": "https://www.dailymail.co.uk/femail/article-12864291/Rowan-Atkinsons-Love-Actually-character-took-long-wrap-Alan-Rickmans-present.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:31:12 GMT", - "enclosure": { - "length": "6893", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/14/78961287-0-image-a-8_1702563512446.jpg" - }, - "content": "The perfect cosy movie to kick off the festive season, it turns out that one scene in British rom-com Love Actually (2003), which follows the relationships of eight London couples\u00a0has a very interesting origin.", - "contentSnippet": "The perfect cosy movie to kick off the festive season, it turns out that one scene in British rom-com Love Actually (2003), which follows the relationships of eight London couples\u00a0has a very interesting origin.", - "guid": "https://www.dailymail.co.uk/femail/article-12864291/Rowan-Atkinsons-Love-Actually-character-took-long-wrap-Alan-Rickmans-present.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:31:12.000Z" - }, - { - "title": "Susannah Constantine, who use to date King Charles's cousin David Armstrong-Jones,\u00a0 watches son Joe Bertelsen pass out from Naval Cadets (and Prince William watches on too!)", - "link": "https://www.dailymail.co.uk/femail/article-12864695/Still-rubbing-shoulders-high-society-Proud-Susannah-Constantine-use-date-King-Charless-cousin-David-Armstrong-Jones-watches-son-Joe-Bertelsen-pass-Naval-Cadets-Prince-William-watches-too.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:18:07 GMT", - "enclosure": { - "length": "11618", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/16/78968451-0-image-a-43_1702572539852.jpg" - }, - "content": "Susannah Constantine revealed she 'couldn't be more proud' of her son Joe Bertelsen. The presenter, 61, took to Instagram to share that her son graduated as a Naval Officer today", - "contentSnippet": "Susannah Constantine revealed she 'couldn't be more proud' of her son Joe Bertelsen. The presenter, 61, took to Instagram to share that her son graduated as a Naval Officer today", - "guid": "https://www.dailymail.co.uk/femail/article-12864695/Still-rubbing-shoulders-high-society-Proud-Susannah-Constantine-use-date-King-Charless-cousin-David-Armstrong-Jones-watches-son-Joe-Bertelsen-pass-Naval-Cadets-Prince-William-watches-too.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:18:07.000Z" - }, - { - "title": "Yet ANOTHER reason not to buy a pug: Vets warn flat-faced dogs are more likely to suffer from sleep problems", - "link": "https://www.dailymail.co.uk/sciencetech/article-12867889/Yet-reason-not-buy-pug-Vets-warn-flat-faced-dogs-likely-suffer-sleep-problems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:10:01 GMT", - "enclosure": { - "length": "4678", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998395-0-image-m-131_1702637626976.jpg" - }, - "content": "Researchers from Eotvos Lorand University in Budapest found that flat-faced - or brachycephalic - dogs retain the sleep pattern of puppyhood.", - "contentSnippet": "Researchers from Eotvos Lorand University in Budapest found that flat-faced - or brachycephalic - dogs retain the sleep pattern of puppyhood.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12867889/Yet-reason-not-buy-pug-Vets-warn-flat-faced-dogs-likely-suffer-sleep-problems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:10:01.000Z" - }, - { - "title": "Inside horrifying world of the Nullo castration cult whose followers use amateur 'cutters' or even vets to remove their private parts inspired by Japanese artist who sold his penis and testicles to eat for \u00a3800", - "link": "https://www.dailymail.co.uk/news/article-12867579/Nullo-castration-cult-Japanese-artist-sold-penis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:09:01 GMT", - "enclosure": { - "length": "7330", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/53869671-0-The_group_are_likely_to_have_been_inspired_by_asexual_Japanese_i-a-43_1702634493302.jpg" - }, - "content": "The bizarre - and growing - Nullo movement subscribers cut off their own genitals and sometimes their nipples. The most famous modern 'Nullo' is Japanese artist Mao Sugiyama (above).", - "contentSnippet": "The bizarre - and growing - Nullo movement subscribers cut off their own genitals and sometimes their nipples. The most famous modern 'Nullo' is Japanese artist Mao Sugiyama (above).", - "guid": "https://www.dailymail.co.uk/news/article-12867579/Nullo-castration-cult-Japanese-artist-sold-penis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:09:01.000Z" - }, - { - "title": "Queen Camilla is launching her own podcast to encourage reading and featuring guests including Joanna Lumley and Ian Rankin", - "link": "https://www.dailymail.co.uk/femail/article-12867539/Queen-Camilla-launching-podcast-encourage-reading-featuring-guests-including-Joanna-Lumley-Ian-Rankin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:04:19 GMT", - "enclosure": { - "length": "10456", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997655-0-image-a-9_1702635403249.jpg" - }, - "content": "The Queen's Reading Room podcast is dedicated to developing the appreciation of literature among adults and children in the UK and around the world", - "contentSnippet": "The Queen's Reading Room podcast is dedicated to developing the appreciation of literature among adults and children in the UK and around the world", - "guid": "https://www.dailymail.co.uk/femail/article-12867539/Queen-Camilla-launching-podcast-encourage-reading-featuring-guests-including-Joanna-Lumley-Ian-Rankin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:04:19.000Z" - }, - { - "title": "Cancer-stricken man, 31, says he could have avoided terminal diagnosis - if he hadn't tried to 'man up' and ignore tell-tale symptom", - "link": "https://www.dailymail.co.uk/health/article-12867523/Cancer-man-terminal-diagnosis-symptoms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 11:04:16 GMT", - "enclosure": { - "length": "10567", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996191-0-image-a-4_1702631648324.jpg" - }, - "content": "Liam Griffiths, 31, a former oil rig worker from Middlesbrough said he was the 'healthiest man in the world', but regrets ignoring his symptoms of peritoneal cancer which is terminal.", - "contentSnippet": "Liam Griffiths, 31, a former oil rig worker from Middlesbrough said he was the 'healthiest man in the world', but regrets ignoring his symptoms of peritoneal cancer which is terminal.", - "guid": "https://www.dailymail.co.uk/health/article-12867523/Cancer-man-terminal-diagnosis-symptoms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T11:04:16.000Z" - }, - { - "title": "Teacher heading for the naughty list after falsely telling a class of ten-year-old children that Father Christmas did not exist", - "link": "https://www.dailymail.co.uk/news/article-12867725/Teacher-heading-naughty-list-falsely-telling-class-ten-year-old-children-Father-Christmas-did-not-exist.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 10:56:00 GMT", - "enclosure": { - "length": "7568", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997631-0-image-m-13_1702635408725.jpg" - }, - "content": "The stand-in teacher at Hill View Primary School in Bournemouth, Dorest made the blunder while her class of 10 and 11-year-olds were making Christmas cards on Wednesday.", - "contentSnippet": "The stand-in teacher at Hill View Primary School in Bournemouth, Dorest made the blunder while her class of 10 and 11-year-olds were making Christmas cards on Wednesday.", - "guid": "https://www.dailymail.co.uk/news/article-12867725/Teacher-heading-naughty-list-falsely-telling-class-ten-year-old-children-Father-Christmas-did-not-exist.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T10:56:00.000Z" - }, - { - "title": "Shocking moment man threatens to 'kill' Orthodox Jews in north London as Hanukkah candelabras are smashed up amid rising wave of anti-Semitic attacks", - "link": "https://www.dailymail.co.uk/news/article-12867587/shocking-moment-man-threatens-kill-jews-north-london.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 10:49:01 GMT", - "enclosure": { - "length": "5103", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997425-0-Police_are_appealing_for_help_to_track_down_the_suspect_who_was_-a-27_1702635266217.jpg" - }, - "content": "Police are appealing for help to track down the suspect, who was filmed shouting at pedestrians in Stamford Hill at 7pm on Wednesday.", - "contentSnippet": "Police are appealing for help to track down the suspect, who was filmed shouting at pedestrians in Stamford Hill at 7pm on Wednesday.", - "guid": "https://www.dailymail.co.uk/news/article-12867587/shocking-moment-man-threatens-kill-jews-north-london.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T10:49:01.000Z" - }, - { - "title": "Dr Ranj Singh says his career lost work since he accused This Morning of bullying and questions if he should have spoken out at all", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867645/Dr-Ranj-says-career-impacted-accused-Morning-bullying-questions-spoken-all.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 10:41:56 GMT", - "enclosure": { - "length": "9715", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78997013-0-image-a-3_1702633921420.jpg" - }, - "content": "The TV doctor, 44, believes accusing The Morning of having a 'toxic' culture of bullying and discrimination has negatively impacted his career.", - "contentSnippet": "The TV doctor, 44, believes accusing The Morning of having a 'toxic' culture of bullying and discrimination has negatively impacted his career.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867645/Dr-Ranj-says-career-impacted-accused-Morning-bullying-questions-spoken-all.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T10:41:56.000Z" - }, - { - "title": "How comfortable is a Qantas A380 London to Sydney flight... in each cabin? Travel expert finds out by reviewing ALL FOUR classes, from a \u00a31,180 economy seat to a \u00a310k first-class berth", - "link": "https://www.dailymail.co.uk/travel/article-12860597/How-comfortable-Qantas-A380-London-Sydney-flight-cabin-Travel-expert-finds-reviewing-FOUR-classes-1-180-economy-seat-10k-class-berth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 10:22:26 GMT", - "enclosure": { - "length": "6278", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/08/78927689-0-image-a-5_1702543745898.jpg" - }, - "content": "The Points Guy's Nicky Kelvin films his experiences in economy, premium economy, business class and first class on Qantas's superjumbo. Read on for more...", - "contentSnippet": "The Points Guy's Nicky Kelvin films his experiences in economy, premium economy, business class and first class on Qantas's superjumbo. Read on for more...", - "guid": "https://www.dailymail.co.uk/travel/article-12860597/How-comfortable-Qantas-A380-London-Sydney-flight-cabin-Travel-expert-finds-reviewing-FOUR-classes-1-180-economy-seat-10k-class-berth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T10:22:26.000Z" - }, - { - "title": "Ailing George VI could barely stand. The Archbishop seemed about to drop the baby. Yet\u00a0 through it all, Prince Charles 'lay quiet as a mouse' - the Christening of a King on this day 75 years ago", - "link": "https://www.dailymail.co.uk/news/article-12822789/Ailing-George-VI-barely-stand-Archbishop-drop-baby-Prince-Charles-lay-quiet-mouse-Christening-King-day-75-years-ago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 10:14:01 GMT", - "enclosure": { - "length": "11094", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/04/11/78552243-0-image-a-38_1701690203632.jpg" - }, - "content": "Buckingham Palace released the baby's names the previous evening and there was much comment in the newspapers about the unusual choice of Charles as first name.", - "contentSnippet": "Buckingham Palace released the baby's names the previous evening and there was much comment in the newspapers about the unusual choice of Charles as first name.", - "guid": "https://www.dailymail.co.uk/news/article-12822789/Ailing-George-VI-barely-stand-Archbishop-drop-baby-Prince-Charles-lay-quiet-mouse-Christening-King-day-75-years-ago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T10:14:01.000Z" - }, - { - "title": "Tom Cruise better keep his wallet wide open - my ex-wife spent \u00a312MILLION on clothes and handbags during our 11-year marriage: Oligarch's 'warning' to Hollywood star, 61, as he 'strikes up romance' with glamorous 36-year-old Russian socialite", - "link": "https://www.dailymail.co.uk/news/article-12865269/Tom-Cruise-better-wallet-wide-open-ex-wife-spent-12MILLION-clothes-handbags-11-year-marriage-Oligarchs-warning-Hollywood-star-61-strikes-romance-glamorous-36-year-old-Russian-socialite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 10:11:36 GMT", - "enclosure": { - "length": "11784", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/19/78973407-0-image-a-29_1702581348694.jpg" - }, - "content": "EXCLUSIVE: Tom Cruise, 61, was seen getting cosy with socialite Elsina Khayrova, 36, at a party in London's Mayfair on Saturday - with friends saying the Hollywood A lister is 'besotted' with her.", - "contentSnippet": "EXCLUSIVE: Tom Cruise, 61, was seen getting cosy with socialite Elsina Khayrova, 36, at a party in London's Mayfair on Saturday - with friends saying the Hollywood A lister is 'besotted' with her.", - "guid": "https://www.dailymail.co.uk/news/article-12865269/Tom-Cruise-better-wallet-wide-open-ex-wife-spent-12MILLION-clothes-handbags-11-year-marriage-Oligarchs-warning-Hollywood-star-61-strikes-romance-glamorous-36-year-old-Russian-socialite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T10:11:36.000Z" - }, - { - "title": "Much-needed boost for Brits as key index shows UK economy growing at fastest rate in six months while inflation eases - but interest rate cuts could still be months away", - "link": "https://www.dailymail.co.uk/news/article-12867769/UK-economy-growing-PMI-inflation-rates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 10:09:09 GMT", - "enclosure": { - "length": "5505", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997271-0-image-m-6_1702634796814.jpg" - }, - "content": "The early reading of the closely-watched PMI came in at 51.7, with anything above 50 suggesting activity is in positive territory.", - "contentSnippet": "The early reading of the closely-watched PMI came in at 51.7, with anything above 50 suggesting activity is in positive territory.", - "guid": "https://www.dailymail.co.uk/news/article-12867769/UK-economy-growing-PMI-inflation-rates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T10:09:09.000Z" - }, - { - "title": "Thieves are left free to plunder our shops - we have to lock our stock in a CAGE: Camera shop in leafy west London suburb slams police after losing \u00a370,000 in ram raids - as shoplifting epidemic grips Britain", - "link": "https://www.dailymail.co.uk/news/article-12865651/Thieves-left-free-plunder-shops-lock-stock-CAGE-Camera-shop-leafy-west-London-suburb-slams-police-losing-70-000-ram-raids-shoplifting-epidemic-grips-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 09:47:40 GMT", - "enclosure": { - "length": "8167", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/01/78985393-0-image-a-66_1702604830347.jpg" - }, - "content": "Chiswick Camera Centre has removed all of its stock from its windows over safety concerns, replacing it with pictures of the products instead.", - "contentSnippet": "Chiswick Camera Centre has removed all of its stock from its windows over safety concerns, replacing it with pictures of the products instead.", - "guid": "https://www.dailymail.co.uk/news/article-12865651/Thieves-left-free-plunder-shops-lock-stock-CAGE-Camera-shop-leafy-west-London-suburb-slams-police-losing-70-000-ram-raids-shoplifting-epidemic-grips-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T09:47:40.000Z" - }, - { - "title": "Doctors debunk TikTok's 'DIY Botox': Two ingredient 'miracle cream' made from flaxseed and water becomes latest beauty hack to sweep social media - but scientists say it's nonsense", - "link": "https://www.dailymail.co.uk/femail/article-12864513/diy-botox-tiktok-miracle-cream-flaxseed-doctors-debunk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 09:39:36 GMT", - "enclosure": { - "length": "11472", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/17/78969521-0-image-a-19_1702574014032.jpg" - }, - "content": "Made from flaxseed and water, TikTokers across the globe are claiming this serum has a freezing affect on their skin - just like Botox.", - "contentSnippet": "Made from flaxseed and water, TikTokers across the globe are claiming this serum has a freezing affect on their skin - just like Botox.", - "guid": "https://www.dailymail.co.uk/femail/article-12864513/diy-botox-tiktok-miracle-cream-flaxseed-doctors-debunk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T09:39:36.000Z" - }, - { - "title": "Dangerous rapist is hunted across the UK after going on the run as police warn he may have changed his appearance to evade capture", - "link": "https://www.dailymail.co.uk/news/article-12867545/Dangerous-rapist-hunted-UK-going-run-police-warn-changed-appearance-evade-capture.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 09:39:22 GMT", - "enclosure": { - "length": "4168", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996647-0-image-m-105_1702632834669.jpg" - }, - "content": "Muarug Abraham Gebremcal, 34, is a black African male from Eritrea who is hunted by officers in London , the Midlands and the West Country.", - "contentSnippet": "Muarug Abraham Gebremcal, 34, is a black African male from Eritrea who is hunted by officers in London , the Midlands and the West Country.", - "guid": "https://www.dailymail.co.uk/news/article-12867545/Dangerous-rapist-hunted-UK-going-run-police-warn-changed-appearance-evade-capture.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T09:39:22.000Z" - }, - { - "title": "Henry Moore watercolour sells at auction for \u00a325,000 after being mistaken for a print when it was bought in a charity shop for a few pounds 20 years ago", - "link": "https://www.dailymail.co.uk/news/article-12867505/Henry-Moore-watercolour-sells-auction-25-000-mistaken-print-bought-charity-shop-pounds-20-years-ago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 09:36:55 GMT", - "enclosure": { - "length": "12454", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995309-0-image-m-103_1702630311322.jpg" - }, - "content": "The drawing features four studies of a mother and child, a common theme in Moore's work, who was one of the most important British sculptors of the 20th century.", - "contentSnippet": "The drawing features four studies of a mother and child, a common theme in Moore's work, who was one of the most important British sculptors of the 20th century.", - "guid": "https://www.dailymail.co.uk/news/article-12867505/Henry-Moore-watercolour-sells-auction-25-000-mistaken-print-bought-charity-shop-pounds-20-years-ago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T09:36:55.000Z" - }, - { - "title": "Eye kid you not! Doctors find tiny wooden splinter buried in man's cornea which had gone unnoticed for 15 years", - "link": "https://www.dailymail.co.uk/health/article-12867529/Doctors-tiny-wooden-splinter-buried-mans-cornea.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 09:32:33 GMT", - "enclosure": { - "length": "9978", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996115-0-image-m-14_1702631428938.jpg" - }, - "content": "The man, from Boston in Massachusetts, suffered an agonising 'penetrating injury' while gardening in the late 2000s but thought nothing of it because his pain faded over time.", - "contentSnippet": "The man, from Boston in Massachusetts, suffered an agonising 'penetrating injury' while gardening in the late 2000s but thought nothing of it because his pain faded over time.", - "guid": "https://www.dailymail.co.uk/health/article-12867529/Doctors-tiny-wooden-splinter-buried-mans-cornea.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T09:32:33.000Z" - }, - { - "title": "Silent Night no more! Historic Canterbury Christmas that faced the axe after 70 years over health and safety fears will go ahead after volunteers step in to rescue it", - "link": "https://www.dailymail.co.uk/news/article-12864791/Silent-Night-no-Historic-Canterbury-Christmas-faced-axe-70-years-health-safety-fears-ahead-volunteers-step-rescue-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 08:52:14 GMT", - "enclosure": { - "length": "13417", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/16/78867279-0-Organisers_of_the_Christmas_Eve_carol_singing_service_in_Rose_Sq-a-58_1702572419955.jpg" - }, - "content": "The Lord Mayor of Canterbury's Christmas Gift Fund. the organisers of the service, had raised concerns about the number of people attending, but the City Council are now helping.", - "contentSnippet": "The Lord Mayor of Canterbury's Christmas Gift Fund. the organisers of the service, had raised concerns about the number of people attending, but the City Council are now helping.", - "guid": "https://www.dailymail.co.uk/news/article-12864791/Silent-Night-no-Historic-Canterbury-Christmas-faced-axe-70-years-health-safety-fears-ahead-volunteers-step-rescue-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T08:52:14.000Z" - }, - { - "title": "Schoolboy screaming 'Allahu Akbar' attacks two classmates with a box cutter in latest incident of Islamist-inspired violence to shock France", - "link": "https://www.dailymail.co.uk/news/article-12867441/Schoolboy-screaming-Allahu-Akbar-attacks-two-classmates-box-cutter-latest-incident-Islamist-inspired-violence-shock-France.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 08:47:05 GMT", - "enclosure": { - "length": "5073", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995125-0-image-a-16_1702629324475.jpg" - }, - "content": "The 14-year-old, who has not yet been named, chased two students in his class through the corridors of\u00a0Coll\u00e8ge De La Morinie in Saint-Omer, in the Pas-de-Calais region, on Wednesday morning", - "contentSnippet": "The 14-year-old, who has not yet been named, chased two students in his class through the corridors of\u00a0Coll\u00e8ge De La Morinie in Saint-Omer, in the Pas-de-Calais region, on Wednesday morning", - "guid": "https://www.dailymail.co.uk/news/article-12867441/Schoolboy-screaming-Allahu-Akbar-attacks-two-classmates-box-cutter-latest-incident-Islamist-inspired-violence-shock-France.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T08:47:05.000Z" - }, - { - "title": "Fury over damp and mouldy homes for Britain's armed forces veterans: Military families are being 'failed' as complaints about unsuitable living conditions surge by 40 PER CENT in a year", - "link": "https://www.dailymail.co.uk/news/article-12864267/Fury-damp-mouldy-homes-Britains-armed-forces-veterans-Military-families-failed-complaints-unsuitable-living-conditions-surge-40-CENT-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 08:38:48 GMT", - "enclosure": { - "length": "4538", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/16/78966019-0-image-m-27_1702571730680.jpg" - }, - "content": "EXCLUSIVE: Furious personnel and their loved ones have broken ranks to share pictures online of the shameful state of their homes, with a veteran general branding the UK's housing stock 'appalling'.", - "contentSnippet": "EXCLUSIVE: Furious personnel and their loved ones have broken ranks to share pictures online of the shameful state of their homes, with a veteran general branding the UK's housing stock 'appalling'.", - "guid": "https://www.dailymail.co.uk/news/article-12864267/Fury-damp-mouldy-homes-Britains-armed-forces-veterans-Military-families-failed-complaints-unsuitable-living-conditions-surge-40-CENT-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T08:38:48.000Z" - }, - { - "title": "They're getting ready for a VERY Merry Christmas! Students hit the town to celebrate the end of term as they get into the festive spirit early", - "link": "https://www.dailymail.co.uk/news/article-12867343/students-celebrate-end-term-festive-boozing-christmas-spirit-early.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 08:12:48 GMT", - "enclosure": { - "length": "10958", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78993883-0-image-m-40_1702627597409.jpg" - }, - "content": "Pictures captured on Thursday night in Leeds and Nottingham show students pouring out into the streets ready for a night out - with many even donning festive attire for the occasion.", - "contentSnippet": "Pictures captured on Thursday night in Leeds and Nottingham show students pouring out into the streets ready for a night out - with many even donning festive attire for the occasion.", - "guid": "https://www.dailymail.co.uk/news/article-12867343/students-celebrate-end-term-festive-boozing-christmas-spirit-early.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T08:12:48.000Z" - }, - { - "title": "A royal reunion: Prince Frederik flies into New Zealand on a separate plane to meet Princess Mary and the twins - a month after 'affair' scandal", - "link": "https://www.dailymail.co.uk/femail/article-12866977/A-royal-reunion-Prince-Frederik-flies-New-Zealand-separate-plane-meet-Princess-Mary-twins-month-affair-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 08:11:15 GMT", - "enclosure": { - "length": "10278", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/05/78991359-0-image-a-21_1702617002419.jpg" - }, - "content": "Crown Princess Mary and Crown Prince Frederik appear to have reunited in Queenstown for a family holiday after their family was rocked by 'affair' rumours last month.", - "contentSnippet": "Crown Princess Mary and Crown Prince Frederik appear to have reunited in Queenstown for a family holiday after their family was rocked by 'affair' rumours last month.", - "guid": "https://www.dailymail.co.uk/femail/article-12866977/A-royal-reunion-Prince-Frederik-flies-New-Zealand-separate-plane-meet-Princess-Mary-twins-month-affair-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T08:11:15.000Z" - }, - { - "title": "Most popular dog names 2023 revealed - did YOUR pooch make the list?", - "link": "https://www.dailymail.co.uk/femail/article-12863525/Most-popular-dog-names-2023-revealed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 08:09:33 GMT", - "enclosure": { - "length": "10783", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/11/78956111-0-image-a-5_1702552598458.jpg" - }, - "content": "Ken,\u00a0Albus Dumblepaws, and Alan are also surging in popularity while Meghan and 'H' are both on their way out, according to reserach by Rover.com.", - "contentSnippet": "Ken,\u00a0Albus Dumblepaws, and Alan are also surging in popularity while Meghan and 'H' are both on their way out, according to reserach by Rover.com.", - "guid": "https://www.dailymail.co.uk/femail/article-12863525/Most-popular-dog-names-2023-revealed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T08:09:33.000Z" - }, - { - "title": "People share cheeky messages sent by entitled people who demand free designer handbags and rent", - "link": "https://www.dailymail.co.uk/femail/article-12860713/messages-entitled-people-free-designer-handbag.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 07:10:13 GMT", - "enclosure": { - "length": "9502", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/13/21/78932505-0-image-a-16_1702502022970.jpg" - }, - "content": "People from around the world have shared pictures of cheeky chancers trying it on in a gallery compiled by Herarld Weekly.", - "contentSnippet": "People from around the world have shared pictures of cheeky chancers trying it on in a gallery compiled by Herarld Weekly.", - "guid": "https://www.dailymail.co.uk/femail/article-12860713/messages-entitled-people-free-designer-handbag.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T07:10:13.000Z" - }, - { - "title": "Mom Ella Glendining with rare leg disability shares joy in new documentary after finally finding others who look like her", - "link": "https://www.dailymail.co.uk/news/article-12867013/Ella-Glendining-rare-leg-disease-documentary-condition.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 07:01:07 GMT", - "enclosure": { - "length": "10586", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/06/78991021-0-image-a-1_1702622010436.jpg" - }, - "content": "Ella Glendining, says she feels 'less alone in the world' after finally meeting others with similar leg malformations after a lifetime of never meeting anyone who looks like her.", - "contentSnippet": "Ella Glendining, says she feels 'less alone in the world' after finally meeting others with similar leg malformations after a lifetime of never meeting anyone who looks like her.", - "guid": "https://www.dailymail.co.uk/news/article-12867013/Ella-Glendining-rare-leg-disease-documentary-condition.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T07:01:07.000Z" - }, - { - "title": "Meet 'the new Arnold Schwarzenegger': 5-foot-11, 245lbs teen is the youngest bodybuilder in the world - and has already SMASHED movie legend's 57-year record", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12866775/Meet-new-Arnold-Schwarzenegger-5-foot-11-245lbs-teen-youngest-bodybuilder-world-SMASHED-movie-legends-57-year-record.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 03:32:04 GMT", - "enclosure": { - "length": "10996", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/03/78989227-0-image-a-31_1702610654849.jpg" - }, - "content": "An American teenage bodybuilder has surpassed a record set by Arnold Schwarzenegger nearly 57 years after the Austrian made a name for himself.", - "contentSnippet": "An American teenage bodybuilder has surpassed a record set by Arnold Schwarzenegger nearly 57 years after the Austrian made a name for himself.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12866775/Meet-new-Arnold-Schwarzenegger-5-foot-11-245lbs-teen-youngest-bodybuilder-world-SMASHED-movie-legends-57-year-record.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T03:32:04.000Z" - }, - { - "title": "Elly Warren death: Grief-stricken family of Aussie volunteer who died outside a toilet block in Africa remain in the dark about her death after coroner's ruling", - "link": "https://www.dailymail.co.uk/news/article-12866523/Elly-Warren-death-Grief-stricken-family-Aussie-volunteer-died-outside-toilet-block-Africa-remain-dark-death-coroners-ruling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 02:32:26 GMT", - "enclosure": { - "length": "7456", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/00/78985635-0-image-m-6_1702601201953.jpg" - }, - "content": "Victorian coroner Judge John Cain released his findings into Elly Warren's death on Friday, more than seven years after the 20-year-old was found dead outside a toilet block in Mozambique.", - "contentSnippet": "Victorian coroner Judge John Cain released his findings into Elly Warren's death on Friday, more than seven years after the 20-year-old was found dead outside a toilet block in Mozambique.", - "guid": "https://www.dailymail.co.uk/news/article-12866523/Elly-Warren-death-Grief-stricken-family-Aussie-volunteer-died-outside-toilet-block-Africa-remain-dark-death-coroners-ruling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T02:32:26.000Z" - }, - { - "title": "Dramatic moment gang smuggling \u00a31million of cocaine into the UK by coating it invisibly on broom handles are bust by police - as six crooks are jailed for a total of 135 years", - "link": "https://www.dailymail.co.uk/news/article-12865853/Dramatic-moment-gang-smuggling-1million-cocaine-UK-coating-invisibly-broom-handles-bust-police-six-crooks-jailed-total-135-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 01:29:24 GMT", - "enclosure": { - "length": "4890", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/22/78980949-0-image-m-48_1702592350957.jpg" - }, - "content": "It is thought to be the first time the 'chemical method', which made the Class A 'invisible to the human eye', has been used to hid the drug and get it into the UK, the Metropolitan Police said.", - "contentSnippet": "It is thought to be the first time the 'chemical method', which made the Class A 'invisible to the human eye', has been used to hid the drug and get it into the UK, the Metropolitan Police said.", - "guid": "https://www.dailymail.co.uk/news/article-12865853/Dramatic-moment-gang-smuggling-1million-cocaine-UK-coating-invisibly-broom-handles-bust-police-six-crooks-jailed-total-135-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T01:29:24.000Z" - }, - { - "title": "EPHRAIM HARDCASTLE: Omid Scobie faces further embarassment after the original foreign version of his book Endgame referred to unspecified 'rumours' about William", - "link": "https://www.dailymail.co.uk/debate/article-12866309/EPHRAIM-HARDCASTLE-Omid-Scobie-faces-embarassment-original-foreign-version-book-Endgame-referred-unspecified-rumours-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 01:15:07 GMT", - "enclosure": { - "length": "10344", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/01/78986489-0-image-a-49_1702602263773.jpg" - }, - "content": "EPHRAIM HARDCASTLE: Like the cack-handed mention of the King and the Princess of Wales, this has not been repeated in any other edition of the book.", - "contentSnippet": "EPHRAIM HARDCASTLE: Like the cack-handed mention of the King and the Princess of Wales, this has not been repeated in any other edition of the book.", - "guid": "https://www.dailymail.co.uk/debate/article-12866309/EPHRAIM-HARDCASTLE-Omid-Scobie-faces-embarassment-original-foreign-version-book-Endgame-referred-unspecified-rumours-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T01:15:07.000Z" - }, - { - "title": "The school bully kept stealing my daughter's food - so I spiked it with laxatives. Here's what happened", - "link": "https://www.dailymail.co.uk/femail/article-12866167/Reddit-mum-laxatives-daughters-lunchbox-teach-bully-lesson-stealing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 15 Dec 2023 00:29:56 GMT", - "enclosure": { - "length": "6244", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/00/78984247-0-image-a-25_1702598495802.jpg" - }, - "content": "A mother's admission has divided the internet: some think her actions were justified, others say it was criminal - and some are convinced the whole thing is fake.", - "contentSnippet": "A mother's admission has divided the internet: some think her actions were justified, others say it was criminal - and some are convinced the whole thing is fake.", - "guid": "https://www.dailymail.co.uk/femail/article-12866167/Reddit-mum-laxatives-daughters-lunchbox-teach-bully-lesson-stealing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-15T00:29:56.000Z" - }, - { - "title": "Forget long Covid, now you should be wary of 'long flu!' Scientists discover seasonal illness can cause lingering effects too", - "link": "https://www.dailymail.co.uk/health/article-12863993/Forget-long-Covid-wary-long-flu-Scientists-discover-seasonal-illness-cause-lingering-effects-too.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 14 Dec 2023 23:46:12 GMT", - "enclosure": { - "length": "8783", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/12/78958993-0-image-a-8_1702558317003.jpg" - }, - "content": "Covid was initially thought to only cause brief illness but was discovered to also lead to chronic disease. Researchers from Washington University looked at whether the same was true for flu.", - "contentSnippet": "Covid was initially thought to only cause brief illness but was discovered to also lead to chronic disease. Researchers from Washington University looked at whether the same was true for flu.", - "guid": "https://www.dailymail.co.uk/health/article-12863993/Forget-long-Covid-wary-long-flu-Scientists-discover-seasonal-illness-cause-lingering-effects-too.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-14T23:46:12.000Z" - }, - { - "title": "I'm a private investigator - these the four signs your partner is cheating on you", - "link": "https://www.dailymail.co.uk/femail/relationships/article-12862351/private-investigator-cheating-signs-husband-wife-girlfriend-boyfriend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 14 Dec 2023 23:09:43 GMT", - "enclosure": { - "length": "8201", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/05/78947129-0-image-a-36_1702532000101.jpg" - }, - "content": "An experienced private investigator claims cheating partners always have four things in common - and many often ignore the red flags early on.", - "contentSnippet": "An experienced private investigator claims cheating partners always have four things in common - and many often ignore the red flags early on.", - "guid": "https://www.dailymail.co.uk/femail/relationships/article-12862351/private-investigator-cheating-signs-husband-wife-girlfriend-boyfriend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-14T23:09:43.000Z" - }, - { - "title": "TOM UTLEY: My sainted wife and I hadn't the foggiest it was suddenly forbidden to drive down the road we've used for 35 years - until the fines began piling up", - "link": "https://www.dailymail.co.uk/debate/article-12866137/TOM-UTLEY-sainted-wife-hadnt-foggiest-suddenly-forbidden-drive-road-weve-used-35-years-fines-began-piling-up.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 14 Dec 2023 22:26:40 GMT", - "enclosure": { - "length": "10796", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/22/78980941-0-image-a-48_1702592330771.jpg" - }, - "content": "TOM UTLEY: We dread the postie's arrival because among this year's cards, he has taken to delivering penalty-charge notices from our local council, demanding \u00a365 if we pay immediately,", - "contentSnippet": "TOM UTLEY: We dread the postie's arrival because among this year's cards, he has taken to delivering penalty-charge notices from our local council, demanding \u00a365 if we pay immediately,", - "guid": "https://www.dailymail.co.uk/debate/article-12866137/TOM-UTLEY-sainted-wife-hadnt-foggiest-suddenly-forbidden-drive-road-weve-used-35-years-fines-began-piling-up.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-14T22:26:40.000Z" - }, - { - "title": "From a pool party with Diana to a road trip with Billy Connolly - a bumper crop of riveting memoirs", - "link": "https://www.dailymail.co.uk/home/books/article-12865387/From-pool-party-Diana-road-trip-Billy-Connolly-bumper-crop-riveting-memoirs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 14 Dec 2023 22:14:26 GMT", - "enclosure": { - "length": "11409", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/21/78979243-0-image-a-29_1702589673319.jpg" - }, - "content": "ROGER ALTON has picked out the best memoirs of the year, including The Unlikely Duke: Memoirs of an Eclectic Life by Harry Beaufort and Billy Connolly's Rambling Man.", - "contentSnippet": "ROGER ALTON has picked out the best memoirs of the year, including The Unlikely Duke: Memoirs of an Eclectic Life by Harry Beaufort and Billy Connolly's Rambling Man.", - "guid": "https://www.dailymail.co.uk/home/books/article-12865387/From-pool-party-Diana-road-trip-Billy-Connolly-bumper-crop-riveting-memoirs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-14T22:14:26.000Z" - }, - { - "title": "JAN MOIR: It's no wonder Rebekah Vardy wants to sweep the Wagatha trial under her tatty carpet of shame", - "link": "https://www.dailymail.co.uk/debate/article-12865975/JAN-MOIR-no-wonder-Rebekah-Vardy-wants-sweep-Wagatha-trial-tatty-carpet-shame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 14 Dec 2023 22:01:06 GMT", - "enclosure": { - "length": "9019", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/21/78979599-0-image-a-71_1702590972904.jpg" - }, - "content": "JAN MOIR: When Rebekah Vardy left court after losing the libel case she brought against Coleen Rooney last year, she said that the judge 'got it wrong'.", - "contentSnippet": "JAN MOIR: When Rebekah Vardy left court after losing the libel case she brought against Coleen Rooney last year, she said that the judge 'got it wrong'.", - "guid": "https://www.dailymail.co.uk/debate/article-12865975/JAN-MOIR-no-wonder-Rebekah-Vardy-wants-sweep-Wagatha-trial-tatty-carpet-shame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-14T22:01:06.000Z" - }, - { - "title": "Divorced, beheaded, survived an IRA attack:\u00a0Tony Rennell reviews the most compelling history books of 2023", - "link": "https://www.dailymail.co.uk/home/books/article-12865763/Divorced-beheaded-survived-IRA-attack-Tony-Rennell-reviews-compelling-history-books-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 14 Dec 2023 21:55:38 GMT", - "enclosure": { - "length": "10080", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/20/78977655-0-image-a-63_1702587560073.jpg" - }, - "content": "TONY RENNELL reviews the year's most compelling history books, including Hunting the Falcon: Henry VIII, Anne Boleyn And The Marriage that Shook Europe and Rory Carroll's Killing Thatcher.", - "contentSnippet": "TONY RENNELL reviews the year's most compelling history books, including Hunting the Falcon: Henry VIII, Anne Boleyn And The Marriage that Shook Europe and Rory Carroll's Killing Thatcher.", - "guid": "https://www.dailymail.co.uk/home/books/article-12865763/Divorced-beheaded-survived-IRA-attack-Tony-Rennell-reviews-compelling-history-books-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-14T21:55:38.000Z" - }, - { - "title": "RICHARD LITTLEJOHN: What if the small boats were going the other way?", - "link": "https://www.dailymail.co.uk/debate/article-12865933/RICHARD-LITTLEJOHN-small-boats-going-way.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 14 Dec 2023 21:45:38 GMT", - "enclosure": { - "length": "10162", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/21/78978795-0-image-a-89_1702589409758.jpg" - }, - "content": "RICHARD LITTLEJOHN: During a debate about illegal migration on Nick Ferrari's excellent LBC breakfast show this week, a caller wondered: What if the small boats were going the other way?", - "contentSnippet": "RICHARD LITTLEJOHN: During a debate about illegal migration on Nick Ferrari's excellent LBC breakfast show this week, a caller wondered: What if the small boats were going the other way?", - "guid": "https://www.dailymail.co.uk/debate/article-12865933/RICHARD-LITTLEJOHN-small-boats-going-way.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-14T21:45:38.000Z" - }, - { - "title": "How does Santa get down the chimney? Discover the answer in one of this year's best books for children. SALLY MORRIS selects the titles that will entertain and enthral all the family", - "link": "https://www.dailymail.co.uk/home/books/article-12865419/How-does-Santa-chimney-Discover-answer-one-years-best-books-children-SALLY-MORRIS-selects-titles-entertain-enthral-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 14 Dec 2023 21:40:57 GMT", - "enclosure": { - "length": "12309", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/14/20/78974923-0-image-a-20_1702584173926.jpg" - }, - "content": "SALLY MORRIS has chosen her top children's books of the year, but it's not just the kids who are going to be entertained with these charming reads.", - "contentSnippet": "SALLY MORRIS has chosen her top children's books of the year, but it's not just the kids who are going to be entertained with these charming reads.", - "guid": "https://www.dailymail.co.uk/home/books/article-12865419/How-does-Santa-chimney-Discover-answer-one-years-best-books-children-SALLY-MORRIS-selects-titles-entertain-enthral-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-14T21:40:57.000Z" - }, - { - "title": "Rightmove predicts surge of newly listed homes coming from Boxing Day", - "link": "https://www.dailymail.co.uk/property/article-12858907/Rightmove-predicts-surge-newly-listed-homes-coming-Boxing-Day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 14 Dec 2023 00:01:46 GMT", - "enclosure": { - "length": "9764", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/13/13/78911821-0-image-a-15_1702473653072.jpg" - }, - "content": "Last year saw a record number of new properties listed for sale on Boxing Day, according to Rightmove.", - "contentSnippet": "Last year saw a record number of new properties listed for sale on Boxing Day, according to Rightmove.", - "guid": "https://www.dailymail.co.uk/property/article-12858907/Rightmove-predicts-surge-newly-listed-homes-coming-Boxing-Day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-14T00:01:46.000Z" - }, - { - "title": "Entire shopping centre sells for just \u00a3300,000 in market town that has lost Debenhams, Topshop, River Island and H&M - less than the average price of a British house", - "link": "https://www.dailymail.co.uk/property/article-12859359/shopping-centre-sells-uk-average-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 13 Dec 2023 14:34:24 GMT", - "enclosure": { - "length": "11276", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/13/14/78915361-0-image-a-72_1702476920468.jpg" - }, - "content": "The once-prosperous Cambrian Way in the centre of Carmarthen in West Wales was built just 34 years ago.", - "contentSnippet": "The once-prosperous Cambrian Way in the centre of Carmarthen in West Wales was built just 34 years ago.", - "guid": "https://www.dailymail.co.uk/property/article-12859359/shopping-centre-sells-uk-average-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-13T14:34:24.000Z" - }, - { - "title": "Indian 'vaccine prince' becomes owner of 'London's most expensive home' this year after paying \u00a3138million for Mayfair mansion", - "link": "https://www.dailymail.co.uk/property/article-12855147/Indian-vaccine-prince-owner-Londons-expensive-home-year-paying-138million-Mayfair-mansion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 12 Dec 2023 21:37:53 GMT", - "enclosure": { - "length": "8891", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/12/14/78870409-0-image-a-22_1702392696045.jpg" - }, - "content": "Adar Poonawalla reached a deal to buy Aberconway House - a 25,000 square foot home from the 1920s near Hyde Park.", - "contentSnippet": "Adar Poonawalla reached a deal to buy Aberconway House - a 25,000 square foot home from the 1920s near Hyde Park.", - "guid": "https://www.dailymail.co.uk/property/article-12855147/Indian-vaccine-prince-owner-Londons-expensive-home-year-paying-138million-Mayfair-mansion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-12T21:37:53.000Z" - }, - { - "title": "Jada Pinkett Smith reveals why she'll never leave Will Smith - even though they have separate homes - and how 'the Oscars slap saved my marriage'", - "link": "https://www.dailymail.co.uk/home/you/article-12827701/Jada-Pinkett-Smith-reveals-shell-never-leave-Smith-separate-homes-Oscars-slap-saved-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 12 Dec 2023 17:56:01 GMT", - "enclosure": { - "length": "10160", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/09/16/78770191-0-image-a-6_1702140283423.jpg" - }, - "content": "When a marriage hits a rocky patch, couples find different ways of bringing back the magic - date night or perhaps counselling.", - "contentSnippet": "When a marriage hits a rocky patch, couples find different ways of bringing back the magic - date night or perhaps counselling.", - "guid": "https://www.dailymail.co.uk/home/you/article-12827701/Jada-Pinkett-Smith-reveals-shell-never-leave-Smith-separate-homes-Oscars-slap-saved-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-12T17:56:01.000Z" - }, - { - "title": "Could you buy just five things in a year? Tiffanie Darke took up the challenge - her choices may surprise you", - "link": "https://www.dailymail.co.uk/home/you/article-12828787/Could-buy-just-five-things-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 12 Dec 2023 16:56:41 GMT", - "enclosure": { - "length": "6134", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/05/17/78608131-0-image-m-109_1701798266198.jpg" - }, - "content": "Tiffanie Darke took up the challenge - her choices may surprise you (yes, there were gold trousers!)", - "contentSnippet": "Tiffanie Darke took up the challenge - her choices may surprise you (yes, there were gold trousers!)", - "guid": "https://www.dailymail.co.uk/home/you/article-12828787/Could-buy-just-five-things-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-12T16:56:41.000Z" - }, - { - "title": "Charming three-storey townhouse where Mary Shelley wrote her classic gothic novel Frankenstein goes on sale for \u00a3750,000", - "link": "https://www.dailymail.co.uk/property/article-12854649/mary-shelley-townhouse-wrote-frankenstein-sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 12 Dec 2023 14:38:50 GMT", - "enclosure": { - "length": "8289", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/12/13/78866475-0-image-m-58_1702386470704.jpg" - }, - "content": "Shelley Cottage, named after its famous former resident, was part of a larger historic Grade II listed building when Mary and Percy Shelley bought it in the early 19th century.", - "contentSnippet": "Shelley Cottage, named after its famous former resident, was part of a larger historic Grade II listed building when Mary and Percy Shelley bought it in the early 19th century.", - "guid": "https://www.dailymail.co.uk/property/article-12854649/mary-shelley-townhouse-wrote-frankenstein-sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-12T14:38:50.000Z" - }, - { - "title": "Lord Byron's Piccadilly mansion where the romantic poet wrote some of his most famous works including Parsinia and The Seige of Corinth goes on the market for \u00a329.5million", - "link": "https://www.dailymail.co.uk/news/article-12853917/Lord-Byrons-Piccadilly-mansion-romantic-poet-wrote-famous-works-including-Parsinia-Seige-Corinth-goes-market-29-5million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 12 Dec 2023 10:04:21 GMT", - "enclosure": { - "length": "8847", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/12/09/78859545-0-image-a-26_1702373132111.jpg" - }, - "content": "The grade II-listed townhouse, set over six floors and comprising of 14,000 sq/ft of space, is located in one of London's most affluent areas, overlooking Green Park in Mayfair.", - "contentSnippet": "The grade II-listed townhouse, set over six floors and comprising of 14,000 sq/ft of space, is located in one of London's most affluent areas, overlooking Green Park in Mayfair.", - "guid": "https://www.dailymail.co.uk/news/article-12853917/Lord-Byrons-Piccadilly-mansion-romantic-poet-wrote-famous-works-including-Parsinia-Seige-Corinth-goes-market-29-5million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-12T10:04:21.000Z" - }, - { - "title": "The Chic List: Festive favourites", - "link": "https://www.dailymail.co.uk/home/you/article-12824091/The-Chic-List-Festive-favourites.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 12 Dec 2023 07:44:48 GMT", - "enclosure": { - "length": "6729", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/04/16/78560585-0-image-m-25_1701707101193.jpg" - }, - "content": "Gift to self? A change of gear", - "contentSnippet": "Gift to self? A change of gear", - "guid": "https://www.dailymail.co.uk/home/you/article-12824091/The-Chic-List-Festive-favourites.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-12T07:44:48.000Z" - }, - { - "title": "Red-hot rental market set to cool next year as tenants simply won't be able to afford asking prices, says Zoopla", - "link": "https://www.dailymail.co.uk/property/article-12850547/Red-hot-rental-market-set-cool-year-tenants-simply-wont-able-afford-asking-prices-says-Zoopla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 12 Dec 2023 00:01:46 GMT", - "enclosure": { - "length": "7923", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/11/15/78825703-0-image-a-16_1702307990236.jpg" - }, - "content": "In its latest rental report, Zoopla claimed that tenants face no longer being able to afford high rents in some areas, leading to a slowdown in rental growth.", - "contentSnippet": "In its latest rental report, Zoopla claimed that tenants face no longer being able to afford high rents in some areas, leading to a slowdown in rental growth.", - "guid": "https://www.dailymail.co.uk/property/article-12850547/Red-hot-rental-market-set-cool-year-tenants-simply-wont-able-afford-asking-prices-says-Zoopla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-12T00:01:46.000Z" - }, - { - "title": "Now that's a GRAND Design: Former silver mine engine house converted into a five storey home on hit Channel 4 show is on the market for \u00a3550k after it dropped in price by \u00a3200k when it failed to sell last year", - "link": "https://www.dailymail.co.uk/property/article-12851577/Grand-Designs-engine-house-converted-five-storey-home-sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 11 Dec 2023 19:20:06 GMT", - "enclosure": { - "length": "11858", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/11/18/78834595-0-image-m-27_1702320859301.jpg" - }, - "content": "The Grade II listed property, named Wheal Langford House, failed to sell last year after being put up for sale for\u00a0\u00a3750,000, and has now been reduced in price in a bid to find a new owner.", - "contentSnippet": "The Grade II listed property, named Wheal Langford House, failed to sell last year after being put up for sale for\u00a0\u00a3750,000, and has now been reduced in price in a bid to find a new owner.", - "guid": "https://www.dailymail.co.uk/property/article-12851577/Grand-Designs-engine-house-converted-five-storey-home-sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-11T19:20:06.000Z" - }, - { - "title": "Millennials who haven't got onto the property ladder told they will be 'likely renting into retirement'", - "link": "https://www.dailymail.co.uk/property/article-12841743/Millennials-havent-got-property-ladder-told-likely-renting-retirement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 11 Dec 2023 13:28:15 GMT", - "enclosure": { - "length": "8733", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/08/14/78739897-0-image-a-16_1702047020424.jpg" - }, - "content": "Hamptons issued the stark warning as it released its latest data about the health of Britain's lettings market, which included a look at the different ages of people renting in Britain.", - "contentSnippet": "Hamptons issued the stark warning as it released its latest data about the health of Britain's lettings market, which included a look at the different ages of people renting in Britain.", - "guid": "https://www.dailymail.co.uk/property/article-12841743/Millennials-havent-got-property-ladder-told-likely-renting-retirement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-11T13:28:15.000Z" - }, - { - "title": "ACTION PLAN:\u00a0CIAR BYRNE's essential jobs for your garden this week", - "link": "https://www.dailymail.co.uk/home/gardening/article-12847607/ACTION-PLAN-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 11 Dec 2023 00:13:17 GMT", - "enclosure": { - "length": "12196", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/10/17/78793269-0-image-m-14_1702230652423.jpg" - }, - "content": "UK gardening expert CIAR BYRNE says it is the ideal time of year to take stock if you have a veg plot, and prepare for the spring while everything is fallow.", - "contentSnippet": "UK gardening expert CIAR BYRNE says it is the ideal time of year to take stock if you have a veg plot, and prepare for the spring while everything is fallow.", - "guid": "https://www.dailymail.co.uk/home/gardening/article-12847607/ACTION-PLAN-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-11T00:13:17.000Z" - }, - { - "title": "CHRISTMAS GIFTS: Santa's page-turners", - "link": "https://www.dailymail.co.uk/home/gardening/article-12847563/CHRISTMAS-GIFTS-Santas-page-turners.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 11 Dec 2023 00:13:06 GMT", - "enclosure": { - "length": "12044", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/10/18/78793957-0-image-a-23_1702232770229.jpg" - }, - "content": "UK expert CIAR BYRNE picks out her top page-turners for gardeners, including Monty Don's The Gardening Book and Alan Titchmarsh's Chatsworth: The Gardens And The People Who Made Them.", - "contentSnippet": "UK expert CIAR BYRNE picks out her top page-turners for gardeners, including Monty Don's The Gardening Book and Alan Titchmarsh's Chatsworth: The Gardens And The People Who Made Them.", - "guid": "https://www.dailymail.co.uk/home/gardening/article-12847563/CHRISTMAS-GIFTS-Santas-page-turners.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-11T00:13:06.000Z" - }, - { - "title": "Star in your very own Love Actually! Pastel green mews house that was backdrop for Keira Knightley scene in festive film favourite goes up for sale in exclusive Notting Hill for \u00a32.7m", - "link": "https://www.dailymail.co.uk/property/article-12847067/Star-Love-Actually-Pastel-green-mews-house-backdrop-Keira-Knightley-scene-festive-film-favourite-goes-sale-exclusive-Notting-Hill-2-7m.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 10 Dec 2023 13:47:31 GMT", - "enclosure": { - "length": "6883", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/10/12/78788165-0-image-a-13_1702209945022.jpg" - }, - "content": "The three-bedroom pastel green mews house is used in the scene when Juliet, played by Knightley, gets a knock on the door from the best man at her wedding, Mark (Andrew Lincoln) on Christmas Eve.", - "contentSnippet": "The three-bedroom pastel green mews house is used in the scene when Juliet, played by Knightley, gets a knock on the door from the best man at her wedding, Mark (Andrew Lincoln) on Christmas Eve.", - "guid": "https://www.dailymail.co.uk/property/article-12847067/Star-Love-Actually-Pastel-green-mews-house-backdrop-Keira-Knightley-scene-festive-film-favourite-goes-sale-exclusive-Notting-Hill-2-7m.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-10T13:47:31.000Z" - }, - { - "title": "Last family on derelict estate won't move out for less than \u00a3220K! Father-of-seven vows to stay in home the council has wanted to bulldoze for 10 years... unless they offer more cash", - "link": "https://www.dailymail.co.uk/property/article-12832039/Last-family-derelict-estate-wont-220K-Father-seven-vows-stay-home-council-wanted-bulldoze-10-years-unless-offer-cash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 09 Dec 2023 23:22:49 GMT", - "enclosure": { - "length": "10339", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78638633-0-image-m-11_1701965818522.jpg" - }, - "content": "A family of seven has been forced to live alone on a derelict estate for more than a decade because of a housing row.", - "contentSnippet": "A family of seven has been forced to live alone on a derelict estate for more than a decade because of a housing row.", - "guid": "https://www.dailymail.co.uk/property/article-12832039/Last-family-derelict-estate-wont-220K-Father-seven-vows-stay-home-council-wanted-bulldoze-10-years-unless-offer-cash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-09T23:22:49.000Z" - }, - { - "title": "'My controlling ex wanted my child at all costs'", - "link": "https://www.dailymail.co.uk/home/you/article-12828753/My-controlling-ex-wanted-child-costs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 09 Dec 2023 12:07:29 GMT", - "enclosure": { - "length": "5802", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/05/17/78607545-0-image-m-88_1701797498710.jpg" - }, - "content": "In acrimonious divorces fathers are encouraged to use their children as a weapon - and now family courts are being accused of wrongly taking kids away from their mothers.", - "contentSnippet": "In acrimonious divorces fathers are encouraged to use their children as a weapon - and now family courts are being accused of wrongly taking kids away from their mothers.", - "guid": "https://www.dailymail.co.uk/home/you/article-12828753/My-controlling-ex-wanted-child-costs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-09T12:07:29.000Z" - }, - { - "title": "Why I love my corner shop", - "link": "https://www.dailymail.co.uk/home/you/article-12828811/Why-love-corner-shop.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 09 Dec 2023 12:06:14 GMT", - "enclosure": { - "length": "9956", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/05/17/78608043-0-image-m-119_1701798589447.jpg" - }, - "content": "A decade ago, superstores and changing shopping habits threatened their existence; then the pandemic made them more essential than ever, says David Aaronovitch", - "contentSnippet": "A decade ago, superstores and changing shopping habits threatened their existence; then the pandemic made them more essential than ever, says David Aaronovitch", - "guid": "https://www.dailymail.co.uk/home/you/article-12828811/Why-love-corner-shop.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-09T12:06:14.000Z" - }, - { - "title": "Stephen Bear 'will be released from prison in days' - 11 months after being jailed for sharing sex tape of his Towie ex Georgia Harrison", - "link": "https://www.dailymail.co.uk/news/article-12925383/Stephen-bear-prison-release-georgie-harrison-towie-sex-tape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:59:13 GMT", - "enclosure": { - "length": "4785", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605135-0-image-a-4_1704359546088.jpg" - }, - "content": "Stephen Bear was sentenced to 21 months and is expected to be released halfway through the sentence on licence, according to reports.", - "contentSnippet": "Stephen Bear was sentenced to 21 months and is expected to be released halfway through the sentence on licence, according to reports.", - "guid": "https://www.dailymail.co.uk/news/article-12925383/Stephen-bear-prison-release-georgie-harrison-towie-sex-tape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:59:13.000Z" - }, - { - "title": "Jeffrey Epstein list LIVE: Bill Clinton, Prince Andrew, Professor Stephen Hawking and David Copperfield are among names released in court documents", - "link": "https://www.dailymail.co.uk/news/live/article-12925355/Jeffrey-epstein-list-live-updates-court-documents-names.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:58:53 GMT", - "enclosure": { - "length": "8945", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608033-0-image-a-35_1704362764720.jpg" - }, - "content": "Follow MailOnline's live coverage after bombshell US court documents detailing the connections of the late paedophile financier Jeffrey Epstein were released.", - "contentSnippet": "Follow MailOnline's live coverage after bombshell US court documents detailing the connections of the late paedophile financier Jeffrey Epstein were released.", - "guid": "https://www.dailymail.co.uk/news/live/article-12925355/Jeffrey-epstein-list-live-updates-court-documents-names.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:58:53.000Z" - }, - { - "title": "Neighbour decapitates woman, 65, after arguing about her flowers - then shows his friends her severed head down the pub", - "link": "https://www.dailymail.co.uk/news/article-12925803/neighbour-decapitates-woman-philippines-argument-flowers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:58:42 GMT", - "enclosure": { - "length": "8424", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607917-0-image-m-56_1704363871866.jpg" - }, - "content": "Furious and embarrassed by a petty dispute, Mario went drinking with his friends later that afternoon, later deciding to march over to Rosalina's local store wielding a sickle.", - "contentSnippet": "Furious and embarrassed by a petty dispute, Mario went drinking with his friends later that afternoon, later deciding to march over to Rosalina's local store wielding a sickle.", - "guid": "https://www.dailymail.co.uk/news/article-12925803/neighbour-decapitates-woman-philippines-argument-flowers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:58:42.000Z" - }, - { - "title": "Pensioners launch boycott of forced digital landline switchover: Brits told DON'T cooperate with rollout and send protest letters to telecoms providers instead amid fears millions could be left in the dark in the event of outages", - "link": "https://www.dailymail.co.uk/news/article-12922083/Pensioners-launch-boycott-forced-BT-digital-landline-switchover-Brits-told-DONT-cooperate-rollout-send-protest-letters-telecoms-providers-instead-amid-fears-millions-left-dark-event-outages.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:58:12 GMT", - "enclosure": { - "length": "11572", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/09/75856453-0-image-m-60_1704274393831.jpg" - }, - "content": "Silver Voices, the only UK-wide senior citizens campaign group, is calling for older people to write to their telecom provider and inform them they do not give permission to be switched over.", - "contentSnippet": "Silver Voices, the only UK-wide senior citizens campaign group, is calling for older people to write to their telecom provider and inform them they do not give permission to be switched over.", - "guid": "https://www.dailymail.co.uk/news/article-12922083/Pensioners-launch-boycott-forced-BT-digital-landline-switchover-Brits-told-DONT-cooperate-rollout-send-protest-letters-telecoms-providers-instead-amid-fears-millions-left-dark-event-outages.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:58:12.000Z" - }, - { - "title": "Tories go to war with Reform UK: Leader Richard Tice is branded a 'pound shop Farage' and compared to bungling Labour leftie Diane Abbott after Nigel snubs party's pre-election launch that warns Sunak and Starmer are 'socialist twins'", - "link": "https://www.dailymail.co.uk/news/article-12925799/Tories-war-Reform-UK-Leader-Richard-Tice-branded-pound-shop-Nigel-Farage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:57:22 GMT", - "enclosure": { - "length": "6393", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607969-0-image-m-16_1704363409717.jpg" - }, - "content": "Conservative deputy chairman Lee Anderson lashed out at Richard Tice after he launched the party's election drive with a dig at Rishi Sunak and suggested he was little different from Keir Starmer.", - "contentSnippet": "Conservative deputy chairman Lee Anderson lashed out at Richard Tice after he launched the party's election drive with a dig at Rishi Sunak and suggested he was little different from Keir Starmer.", - "guid": "https://www.dailymail.co.uk/news/article-12925799/Tories-war-Reform-UK-Leader-Richard-Tice-branded-pound-shop-Nigel-Farage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:57:22.000Z" - }, - { - "title": "A fairytale of New York: Come inside as the Novogratzs decorate their Manhattan townhouse", - "link": "https://www.dailymail.co.uk/home/you/article-12877127/A-fairytale-New-York-Come-inside-Novogratzs-decorate-Manhattan-townhouse.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:57:04 GMT", - "enclosure": { - "length": "8561", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/20/12/79123315-0-image-m-29_1703076270958.jpg" - }, - "content": "Seasoned renovators Cortney and Robert Novogratz have been serving fresh takes on classic American style for nearly three decades", - "contentSnippet": "Seasoned renovators Cortney and Robert Novogratz have been serving fresh takes on classic American style for nearly three decades", - "guid": "https://www.dailymail.co.uk/home/you/article-12877127/A-fairytale-New-York-Come-inside-Novogratzs-decorate-Manhattan-townhouse.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:57:04.000Z" - }, - { - "title": "Putin 'body double' is named for the first time as a fourth-rate carpenter from Belarus as it is claimed he survived assassination attempt to poison him", - "link": "https://www.dailymail.co.uk/news/article-12925439/putin-body-double-carpenter-belarus-assassination-attempt-poison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:56:43 GMT", - "enclosure": { - "length": "4022", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604343-0-image-a-11_1704358107105.jpg" - }, - "content": "Dr Valery Solovey, formerly a professor at a Moscow training academy for spies and diplomats, said\u00a0the poisoned double even stood in to deliver Putin's New Year's Eve rant", - "contentSnippet": "Dr Valery Solovey, formerly a professor at a Moscow training academy for spies and diplomats, said\u00a0the poisoned double even stood in to deliver Putin's New Year's Eve rant", - "guid": "https://www.dailymail.co.uk/news/article-12925439/putin-body-double-carpenter-belarus-assassination-attempt-poison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:56:43.000Z" - }, - { - "title": "Man, 49, is arrested after shooter opened fire outside Liverpool Showcase cinema packed with families watching new Wonka film", - "link": "https://www.dailymail.co.uk/news/article-12925319/Man-arrested-shooter-Liverpool-Showcase-cinema-families-Wonka-film.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:55:55 GMT", - "enclosure": { - "length": "11545", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/06/79595321-0-Armed_police_swooped_in_and_started_escorting_families_back_to_t-a-6_1704351539323.jpg" - }, - "content": "A 49-year-old man has been arrested after a gunman opened fire outside a packed Liverpool cinema filled with terrified families watching the new Wonka film.", - "contentSnippet": "A 49-year-old man has been arrested after a gunman opened fire outside a packed Liverpool cinema filled with terrified families watching the new Wonka film.", - "guid": "https://www.dailymail.co.uk/news/article-12925319/Man-arrested-shooter-Liverpool-Showcase-cinema-families-Wonka-film.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:55:55.000Z" - }, - { - "title": "Rod Stewart continues his generous streak after leaving staff at a five-star hotel a \u00a310,000 Hogmanay tip - and telling them to bet it on Scotland winning Euro 2024", - "link": "https://www.dailymail.co.uk/news/article-12925773/rod-stewart-five-star-hotel-staff-hogmanay-tip-generous-streak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:52:46 GMT", - "enclosure": { - "length": "7854", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607615-0-image-a-7_1704362454409.jpg" - }, - "content": "The 78-year-old rock idol, who was once labelled as 'tight as two coasts of paint' by Rolling Stones guitarist Ronnie Wood , left the ultra generous tip to staff at\u00a0Gleneagles Hotel in Perthshire.", - "contentSnippet": "The 78-year-old rock idol, who was once labelled as 'tight as two coasts of paint' by Rolling Stones guitarist Ronnie Wood , left the ultra generous tip to staff at\u00a0Gleneagles Hotel in Perthshire.", - "guid": "https://www.dailymail.co.uk/news/article-12925773/rod-stewart-five-star-hotel-staff-hogmanay-tip-generous-streak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:52:46.000Z" - }, - { - "title": "Welcome to XL Bully Island: Woman crowdfunds \u00a320,000 for dangerous dog sanctuary in Scotland - but won't tell anyone where it is", - "link": "https://www.dailymail.co.uk/news/article-12925635/xl-bully-island-scotland-dangerous-dog-sanctuary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:52:37 GMT", - "enclosure": { - "length": "6328", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607607-0-image-m-15_1704363297287.jpg" - }, - "content": "The owner of a dog charity in Scotland has set up a fundraiser for a sanctuary for XL Bully breeds, but refuses to reveal the location due to death threats.", - "contentSnippet": "The owner of a dog charity in Scotland has set up a fundraiser for a sanctuary for XL Bully breeds, but refuses to reveal the location due to death threats.", - "guid": "https://www.dailymail.co.uk/news/article-12925635/xl-bully-island-scotland-dangerous-dog-sanctuary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:52:37.000Z" - }, - { - "title": "Luke Littler fuelled up for darts final with scrambled eggs, beans on toast and a margherita pizza - but 16-year-old only practised for less than an hour a day because 'it gets boring'", - "link": "https://www.dailymail.co.uk/news/article-12925793/luke-littler-darts-final-scrambled-eggs-beans-toast-margherita-pizza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:49:46 GMT", - "enclosure": { - "length": "8621", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79606377-0-image-m-75_1704363835226.jpg" - }, - "content": "Speaking the morning after the final, which saw his tournament journey come to an end as he lost to world number one Luke Humphries 7-4, Littler said he had a lie-in on the day of the match.", - "contentSnippet": "Speaking the morning after the final, which saw his tournament journey come to an end as he lost to world number one Luke Humphries 7-4, Littler said he had a lie-in on the day of the match.", - "guid": "https://www.dailymail.co.uk/news/article-12925793/luke-littler-darts-final-scrambled-eggs-beans-toast-margherita-pizza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:49:46.000Z" - }, - { - "title": "Furious neighbour blames council's WFH culture for 'baffling' decision to allow 'monstrous' home to be built next to his bungalow", - "link": "https://www.dailymail.co.uk/news/article-12925755/Furious-neighbour-blames-councils-WFH-culture-baffling-decision-allow-monstrous-home-built-bungalow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:48:10 GMT", - "enclosure": { - "length": "8750", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/77992705-0-image-m-15_1704364419370.jpg" - }, - "content": "Terry Selby and wife Margaret have lodged an official complaint with the Local Government Ombudsman over Dorset Council's handling of the planning application.", - "contentSnippet": "Terry Selby and wife Margaret have lodged an official complaint with the Local Government Ombudsman over Dorset Council's handling of the planning application.", - "guid": "https://www.dailymail.co.uk/news/article-12925755/Furious-neighbour-blames-councils-WFH-culture-baffling-decision-allow-monstrous-home-built-bungalow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:48:10.000Z" - }, - { - "title": "James Bond films are given a trigger warning: Cinemagoers are told 007's adventures may UPSET them in absurd alert from British Film Institute snowflakes", - "link": "https://www.dailymail.co.uk/news/article-12925599/james-bond-films-trigger-warning-bfi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:47:33 GMT", - "enclosure": { - "length": "5800", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606981-0-image-a-22_1704361713768.jpg" - }, - "content": "Film buffs attending a season of classic movies at the BFI cinema in London have been warned Bond's adventures, like Goldfinger and You Only Live Twice, 'will cause offence today'.", - "contentSnippet": "Film buffs attending a season of classic movies at the BFI cinema in London have been warned Bond's adventures, like Goldfinger and You Only Live Twice, 'will cause offence today'.", - "guid": "https://www.dailymail.co.uk/news/article-12925599/james-bond-films-trigger-warning-bfi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:47:33.000Z" - }, - { - "title": "Keir Starmer kicks off New Year election campaign with speech vowing to 'tilt' Britain to the Left - despite senior Labour figures warning huge poll lead hides 'brittle' position", - "link": "https://www.dailymail.co.uk/news/article-12925831/Keir-Starmer-election-Labour-Tories-Rishi-Sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:43:38 GMT", - "enclosure": { - "length": "6965", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608303-0-image-a-3_1704363535931.jpg" - }, - "content": "As Westminster starts ramping up towards a showdown at the ballot boxes this year, the Labour leader insisted he can bring about change.", - "contentSnippet": "As Westminster starts ramping up towards a showdown at the ballot boxes this year, the Labour leader insisted he can bring about change.", - "guid": "https://www.dailymail.co.uk/news/article-12925831/Keir-Starmer-election-Labour-Tories-Rishi-Sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:43:38.000Z" - }, - { - "title": "Luxury penthouse in iconic Boiler House at Battersea Power Station is for sale for \u00a331m", - "link": "https://www.dailymail.co.uk/property/article-12922919/Luxury-penthouse-iconic-Boiler-House-Battersea-Power-Station-sale-31million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:43:35 GMT", - "enclosure": { - "length": "7482", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79574269-0-image-a-12_1704294817161.jpg" - }, - "content": "The four-bedroom penthouse boasts an outdoor seating area underneath one of the four iconic chimneys.", - "contentSnippet": "The four-bedroom penthouse boasts an outdoor seating area underneath one of the four iconic chimneys.", - "guid": "https://www.dailymail.co.uk/property/article-12922919/Luxury-penthouse-iconic-Boiler-House-Battersea-Power-Station-sale-31million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:43:35.000Z" - }, - { - "title": "Sky Sports reporter Abigail Davies, 32, opens up on suicidal thoughts and battles with anorexia after revealing she visited the Priory before working on the Darts World Championship", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12925433/Sky-Sports-reporter-Abigail-Davies-opens-suicidal-thoughts-battles-anorexia-revealing-visited-mental-health-facility-working-Darts-World-Championships-December.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:41:54 GMT", - "enclosure": { - "length": "10137", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605767-0-image-a-25_1704358909019.jpg" - }, - "content": "The presenter decided to speak out on her mental health following the end of the latest tournament at Ally Pally, revealing she had visited a mental health hospital in December.", - "contentSnippet": "The presenter decided to speak out on her mental health following the end of the latest tournament at Ally Pally, revealing she had visited a mental health hospital in December.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925433/Sky-Sports-reporter-Abigail-Davies-opens-suicidal-thoughts-battles-anorexia-revealing-visited-mental-health-facility-working-Darts-World-Championships-December.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:41:54.000Z" - }, - { - "title": "New driver is slammed for parking in middle of road after they mistook junction for a space in car park", - "link": "https://www.dailymail.co.uk/news/article-12925655/New-driver-slammed-parking-middle-road-junction-space-car-park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:39:14 GMT", - "enclosure": { - "length": "5477", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79607321-0-image-m-20_1704361323086.jpg" - }, - "content": "Fellow motorists have criticised a new driver who embarrassingly mistook a junction for a car parking space.", - "contentSnippet": "Fellow motorists have criticised a new driver who embarrassingly mistook a junction for a car parking space.", - "guid": "https://www.dailymail.co.uk/news/article-12925655/New-driver-slammed-parking-middle-road-junction-space-car-park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:39:14.000Z" - }, - { - "title": "My hair started falling out in my teens and I was completely bald by 20- now I help\u00a0others to be empowered by designing wigs", - "link": "https://www.dailymail.co.uk/femail/article-12925513/My-hair-started-falling-teens-completely-bald-20-help-empowered-designing-wigs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:33:54 GMT", - "enclosure": { - "length": "9254", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79605569-0-image-a-16_1704358545192.jpg" - }, - "content": "Stephanie Barber, 31, from Totnes, Devon, is inspiring women to talk about hair loss - after her own alopecia began at just 16. Stephanie now designs wigs for fellow alopecia sufferers", - "contentSnippet": "Stephanie Barber, 31, from Totnes, Devon, is inspiring women to talk about hair loss - after her own alopecia began at just 16. Stephanie now designs wigs for fellow alopecia sufferers", - "guid": "https://www.dailymail.co.uk/femail/article-12925513/My-hair-started-falling-teens-completely-bald-20-help-empowered-designing-wigs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:33:54.000Z" - }, - { - "title": "Instagram tourists are blamed for record number of call-outs by mountain rescue teams as unprepared climbers flock to dangerous beauty spots for selfies", - "link": "https://www.dailymail.co.uk/news/article-12925499/Instagram-tourists-blamed-record-number-call-outs-mountain-rescue-teams-unprepared-climbers-flock-dangerous-beauty-spots-selfies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:32:32 GMT", - "enclosure": { - "length": "7953", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606333-0-image-m-9_1704362091897.jpg" - }, - "content": "Rescue teams covering Wales's\u00a03,560ft high peak Snowdon, Ben Nevis, the Scottish peak that is Britain's highest, and the Lake District all have seen record numbers of calls from climbers in distress.", - "contentSnippet": "Rescue teams covering Wales's\u00a03,560ft high peak Snowdon, Ben Nevis, the Scottish peak that is Britain's highest, and the Lake District all have seen record numbers of calls from climbers in distress.", - "guid": "https://www.dailymail.co.uk/news/article-12925499/Instagram-tourists-blamed-record-number-call-outs-mountain-rescue-teams-unprepared-climbers-flock-dangerous-beauty-spots-selfies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:32:32.000Z" - }, - { - "title": "I'll never forget this! Mother elephant cuddles her calf with her trunk as they are reunited days after the young animal was separated from the herd and got lost", - "link": "https://www.dailymail.co.uk/news/article-12925651/mother-elephant-cuddles-calf-tamil-nadu-india.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:31:46 GMT", - "enclosure": { - "length": "6920", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605655-0-image-m-38_1704359934099.jpg" - }, - "content": "Park officials reunited the calf with its herd after it disappeared on December 29, spending a day lost and alone in the Anamalaj Tiger Reserve in Tamil Nadu, India.", - "contentSnippet": "Park officials reunited the calf with its herd after it disappeared on December 29, spending a day lost and alone in the Anamalaj Tiger Reserve in Tamil Nadu, India.", - "guid": "https://www.dailymail.co.uk/news/article-12925651/mother-elephant-cuddles-calf-tamil-nadu-india.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:31:46.000Z" - }, - { - "title": "Boris Johnson condemns the Met Police for investigating Israel over alleged war crimes in Gaza as he says the force's appeal for witnesses to the conflict indicates a 'worrying politicisation' of the force", - "link": "https://www.dailymail.co.uk/news/article-12924551/Boris-Johnson-condemns-Met-Police-investigating-Israel-alleged-war-crimes-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:28:51 GMT", - "enclosure": { - "length": "5586", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595825-0-image-m-96_1704327872013.jpg" - }, - "content": "It has emerged that counter-terrorism police have put up posters in British airports telling travellers they can report crimes relating to events since the Hamas attacks of October 7.", - "contentSnippet": "It has emerged that counter-terrorism police have put up posters in British airports telling travellers they can report crimes relating to events since the Hamas attacks of October 7.", - "guid": "https://www.dailymail.co.uk/news/article-12924551/Boris-Johnson-condemns-Met-Police-investigating-Israel-alleged-war-crimes-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:28:51.000Z" - }, - { - "title": "Emily Atack called her cousins 'the best invention since the Game Boy' and '50% sibling, 50% mate'... years before revealing she is expecting a baby with step-cousin Alistair Garner", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12925481/Emily-Atack-branded-cousins-best-invention-Game-Boy-50-sibling-50-mate-years-revealing-expecting-baby-step-cousin-Alistair-Garner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:23:36 GMT", - "enclosure": { - "length": "9683", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79604661-0-image-m-2_1704359739486.jpg" - }, - "content": "MailOnline revealed on Wednesday, The Inbetweeners star's new boyfriend Dr Alistair Garner is her step-cousin who she has known for over 30 years", - "contentSnippet": "MailOnline revealed on Wednesday, The Inbetweeners star's new boyfriend Dr Alistair Garner is her step-cousin who she has known for over 30 years", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12925481/Emily-Atack-branded-cousins-best-invention-Game-Boy-50-sibling-50-mate-years-revealing-expecting-baby-step-cousin-Alistair-Garner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:23:36.000Z" - }, - { - "title": "Prince Andrew 'had underage orgy on Jeffrey Epstein's private island' as girl was told 'give him whatever he wants', claim bombshell court papers that also name Bill Clinton, Michael Jackson, Stephen Hawking and a 'well-known prime minister'", - "link": "https://www.dailymail.co.uk/news/article-12925317/Prince-Andrew-underage-orgy-Jeffrey-Epsteins-private-island-girl-told-wants-claim-bombshell-Jeffrey-Epstein-court-papers-Bill-Clinton-Michael-Jackson-Donald-Trump-known-prime-minister.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:22:48 GMT", - "enclosure": { - "length": "7240", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604485-0-image-m-13_1704357018087.jpg" - }, - "content": "The Duke of York has been again dragged into the sex scandal surrounding his paedophile friend, just over a year after he settled the multi-million dollar case brought by Virginia Giuffre in 2022.", - "contentSnippet": "The Duke of York has been again dragged into the sex scandal surrounding his paedophile friend, just over a year after he settled the multi-million dollar case brought by Virginia Giuffre in 2022.", - "guid": "https://www.dailymail.co.uk/news/article-12925317/Prince-Andrew-underage-orgy-Jeffrey-Epsteins-private-island-girl-told-wants-claim-bombshell-Jeffrey-Epstein-court-papers-Bill-Clinton-Michael-Jackson-Donald-Trump-known-prime-minister.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:22:48.000Z" - }, - { - "title": "Children will be automatically flung out of their beds in time for school, women will be beautiful strong dancers and horses will cease to exist - what the experts of 1924 thought the world of 2024 would look like", - "link": "https://www.dailymail.co.uk/news/article-12922715/Children-beds-1924-experts-predictions-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:21:37 GMT", - "enclosure": { - "length": "7587", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79576143-0-Picture_the_scene_it_is_nearing_8am_and_your_son_or_daughter_is_-a-27_1704295880510.jpg" - }, - "content": "An article in the Leicester Mercury from a century ago suggested that a bed-tipping device might exist in children's bedrooms, along with asbestos uniforms and transport in the form of an 'aerobus'.", - "contentSnippet": "An article in the Leicester Mercury from a century ago suggested that a bed-tipping device might exist in children's bedrooms, along with asbestos uniforms and transport in the form of an 'aerobus'.", - "guid": "https://www.dailymail.co.uk/news/article-12922715/Children-beds-1924-experts-predictions-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:21:37.000Z" - }, - { - "title": "Luke Littler's 'unbelievably proud' sister sends a heartwarming message to the 16-year-old darts sensation", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12925301/Luke-Littlers-unbelievably-proud-sister-sends-heartwarming-message-16-year-old-darts-sensation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:16:10 GMT", - "enclosure": { - "length": "11109", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/07/79603575-0-image-a-17_1704353966602.jpg" - }, - "content": "The darting sensation had been leading 4-2 against Luke Humphries on Wednesday night, but an inspired comeback from the world No 1\u00a0turned the tables.", - "contentSnippet": "The darting sensation had been leading 4-2 against Luke Humphries on Wednesday night, but an inspired comeback from the world No 1\u00a0turned the tables.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925301/Luke-Littlers-unbelievably-proud-sister-sends-heartwarming-message-16-year-old-darts-sensation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:16:10.000Z" - }, - { - "title": "Urgent recall of Reckitt baby formula: Safety chiefs issue warning to parents over fears powders could contain dangerous bacteria", - "link": "https://www.dailymail.co.uk/news/article-12925537/Urgent-recall-Reckitt-baby-formula-Safety-chiefs-issue-warning-parents-fears-powders-contain-deadly-bacteria.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:12:45 GMT", - "enclosure": { - "length": "5922", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79604895-0-image-a-11_1704360396517.jpg" - }, - "content": "Manufacturer Reckitt Benckiser has urgently recalled two baby formula powders - Nutramigen LGG Hypoallergenic formulas - as they could contain a deadly bacteria: Cronobacter sakazakii", - "contentSnippet": "Manufacturer Reckitt Benckiser has urgently recalled two baby formula powders - Nutramigen LGG Hypoallergenic formulas - as they could contain a deadly bacteria: Cronobacter sakazakii", - "guid": "https://www.dailymail.co.uk/news/article-12925537/Urgent-recall-Reckitt-baby-formula-Safety-chiefs-issue-warning-parents-fears-powders-contain-deadly-bacteria.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:12:45.000Z" - }, - { - "title": "Jeffrey Epstein 'victim' Johanna Sjoberg claims predator told her 'Clinton likes them young' in bombshell newly-released court documents", - "link": "https://www.dailymail.co.uk/news/article-12923589/jeffrey-epstein-list-names-released.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:09:19 GMT", - "enclosure": { - "length": "9411", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596507-0-image-m-50_1704329836536.jpg" - }, - "content": "Johanna Sjoberg, who was recruited by Ghislaine Maxwell when she was 20, told the lawyers in 2016 that Jeffrey Epstein told her 'Clinton likes them young, referring to girls.'", - "contentSnippet": "Johanna Sjoberg, who was recruited by Ghislaine Maxwell when she was 20, told the lawyers in 2016 that Jeffrey Epstein told her 'Clinton likes them young, referring to girls.'", - "guid": "https://www.dailymail.co.uk/news/article-12923589/jeffrey-epstein-list-names-released.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:09:19.000Z" - }, - { - "title": "Virginia Giuffre 'was groped with Prince Andrew puppet while the royal put his hand on Johanna Sjoberg's breast', Epstein court papers say", - "link": "https://www.dailymail.co.uk/news/article-12925283/Epstein-list-virginia-giuffre-prince-andrew-puppet-johanna-sjoberg-breast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:03:48 GMT", - "enclosure": { - "length": "10072", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604787-0-image-m-13_1704358101961.jpg" - }, - "content": "Testimony from Jeffrey Epstein 'victim' Johanna Sjoberg,\u00a0who was recruited at the age of 20 to work as a massage therapist, has once again embroiled the Duke of York in the sex scandal.", - "contentSnippet": "Testimony from Jeffrey Epstein 'victim' Johanna Sjoberg,\u00a0who was recruited at the age of 20 to work as a massage therapist, has once again embroiled the Duke of York in the sex scandal.", - "guid": "https://www.dailymail.co.uk/news/article-12925283/Epstein-list-virginia-giuffre-prince-andrew-puppet-johanna-sjoberg-breast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:03:48.000Z" - }, - { - "title": "Boxing bad boy Jarrell 'Big Baby' Miller is 'ARRESTED for carjacking and burglary with assault' after he 'chokeslammed a car dealership employee' following his biggest fight payday on Anthony Joshua undercard", - "link": "https://www.dailymail.co.uk/sport/boxing/article-12925507/Brash-talking-Jarrell-Miller-ARRESTED-carjacking-burglary-assault-just-12-days-picking-biggest-payday-career-Day-Reckoning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:59:12 GMT", - "enclosure": { - "length": "9908", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606835-0-image-a-4_1704360406301.jpg" - }, - "content": "Jarrell Miller was arrested on Tuesday afternoon and charged with carjacking without a firearm or weapon and burglary with assault or battery, according to Broward Sheriff's Office records.", - "contentSnippet": "Jarrell Miller was arrested on Tuesday afternoon and charged with carjacking without a firearm or weapon and burglary with assault or battery, according to Broward Sheriff's Office records.", - "guid": "https://www.dailymail.co.uk/sport/boxing/article-12925507/Brash-talking-Jarrell-Miller-ARRESTED-carjacking-burglary-assault-just-12-days-picking-biggest-payday-career-Day-Reckoning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:59:12.000Z" - }, - { - "title": "The glamorous first getaways of the royal newlyweds", - "link": "https://www.dailymail.co.uk/femail/article-11972607/The-glamorous-getaways-royal-newlyweds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:57:51 GMT", - "enclosure": { - "length": "10543", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/04/19/10/69993233-0-image-a-19_1681894883028.jpg" - }, - "content": "With the eyes of many thousands, if not millions, upon them when they marry, it's no wonder that royal couples often head straight off for a restful break. Here, then, are their colourful destinations.", - "contentSnippet": "With the eyes of many thousands, if not millions, upon them when they marry, it's no wonder that royal couples often head straight off for a restful break. Here, then, are their colourful destinations.", - "guid": "https://www.dailymail.co.uk/femail/article-11972607/The-glamorous-getaways-royal-newlyweds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:57:51.000Z" - }, - { - "title": "Magician David Copperfield had dinner with Jeffrey Epstein and asked 'victim' if she realised predator's girls were getting paid to find other girls for him to abuse, bombshell court papers claim", - "link": "https://www.dailymail.co.uk/news/article-12924635/David-Copperfield-Jeffrey-Epstein-victim-paid-recruit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:57:36 GMT", - "enclosure": { - "length": "8085", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79597283-0-image-m-29_1704331049860.jpg" - }, - "content": "Johanna Sjoberg said during her deposition the famous magician was having dinner at Epstein's house when he asked if she knew other girls were getting paid to bring in new girls.", - "contentSnippet": "Johanna Sjoberg said during her deposition the famous magician was having dinner at Epstein's house when he asked if she knew other girls were getting paid to bring in new girls.", - "guid": "https://www.dailymail.co.uk/news/article-12924635/David-Copperfield-Jeffrey-Epstein-victim-paid-recruit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:57:36.000Z" - }, - { - "title": "How Luke Littler turned the country into a nation of darts fans: Teen ace returns home after enthralling Britain with record-breaking run to World Championship final", - "link": "https://www.dailymail.co.uk/news/article-12925407/luke-littler-fans-darts-prodigy-world-champsionship-final-loss-record-numbers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:57:04 GMT", - "enclosure": { - "length": "9553", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79603923-0-image-m-29_1704355664641.jpg" - }, - "content": "Despite losing the final Luke The Nuke's fairytale journey saw him beat some of the best in the world and become the youngest player to ever compete in the annual event's final.", - "contentSnippet": "Despite losing the final Luke The Nuke's fairytale journey saw him beat some of the best in the world and become the youngest player to ever compete in the annual event's final.", - "guid": "https://www.dailymail.co.uk/news/article-12925407/luke-littler-fans-darts-prodigy-world-champsionship-final-loss-record-numbers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:57:04.000Z" - }, - { - "title": "Can YOU tell how these dogs are feeling? Study reveals flat-faced breeds are harder to read - so, do you think these pups are happy or sad?", - "link": "https://www.dailymail.co.uk/sciencetech/article-12922387/Can-tell-dogs-feeling-Study-reveals-flat-faced-breeds-harder-read-think-pups-happy-sad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:56:58 GMT", - "enclosure": { - "length": "11299", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/13/79571473-0-image-a-18_1704288073480.jpg" - }, - "content": "Researchers from the Czech University of Life Sciences Prague say that flat-faced dogs including Pugs, Boston Terriers, and French Bulldogs are harder to read than dogs with 'normal' heads.", - "contentSnippet": "Researchers from the Czech University of Life Sciences Prague say that flat-faced dogs including Pugs, Boston Terriers, and French Bulldogs are harder to read than dogs with 'normal' heads.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12922387/Can-tell-dogs-feeling-Study-reveals-flat-faced-breeds-harder-read-think-pups-happy-sad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:56:58.000Z" - }, - { - "title": "Carol Vorderman praises\u00a0ITV Mr Bates vs The Post Office real-life hero Alan Bates after he rejected an OBE title", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923705/Carol-Vorderman-praises-Alan-Bates-ITV-drama-Post-Office.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:54:49 GMT", - "enclosure": { - "length": "10039", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587355-0-image-a-70_1704312793332.jpg" - }, - "content": "Carol Vorderman sang the praises of ITV Mr Bates vs The Post Office's real-life hero Alan Bates after he snubbed an OBE title.", - "contentSnippet": "Carol Vorderman sang the praises of ITV Mr Bates vs The Post Office's real-life hero Alan Bates after he snubbed an OBE title.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923705/Carol-Vorderman-praises-Alan-Bates-ITV-drama-Post-Office.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:54:49.000Z" - }, - { - "title": "Mr Bates vs The Post Office: Where are Alan Bates and Paula Vennells now years after the Horizon Post Office scandal?", - "link": "https://www.dailymail.co.uk/news/article-12923263/Mr-Bates-vs-Post-Office-Alan-Bates-Paula-Vennells-years-Horizon-Post-Office-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:54:16 GMT", - "enclosure": { - "length": "4423", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587645-0-image-m-21_1704314992856.jpg" - }, - "content": "Alan Bates (pictured), was\u00a0one of hundreds of innocent subpostmasters working in the UK who was accused and later charged of theft, fraud and false accounting due to a faulty IT system.", - "contentSnippet": "Alan Bates (pictured), was\u00a0one of hundreds of innocent subpostmasters working in the UK who was accused and later charged of theft, fraud and false accounting due to a faulty IT system.", - "guid": "https://www.dailymail.co.uk/news/article-12923263/Mr-Bates-vs-Post-Office-Alan-Bates-Paula-Vennells-years-Horizon-Post-Office-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:54:16.000Z" - }, - { - "title": "Darts fans trade hilarious memes after World Darts Championship final... with both Arsenal and Tottenham fans blaming each other for Luke Littler's defeat and Luke Humphries compared to an unsporting Michael Owen!", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12925473/Darts-hilarious-memes-Luke-Littler-Arsenal-Tottenham-rivals-Luke-Humphries-Michael-Owen-clip.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:50:39 GMT", - "enclosure": { - "length": "11179", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79607127-0-image-a-9_1704360741201.jpg" - }, - "content": "Despite coming second place, the Warrington teenager will still pocket an eye-watering \u00a3200,000 in prize money, and his miraculous run has garned him legions of new fans.", - "contentSnippet": "Despite coming second place, the Warrington teenager will still pocket an eye-watering \u00a3200,000 in prize money, and his miraculous run has garned him legions of new fans.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925473/Darts-hilarious-memes-Luke-Littler-Arsenal-Tottenham-rivals-Luke-Humphries-Michael-Owen-clip.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:50:39.000Z" - }, - { - "title": "The beginning of the end for the iPhone? As Apple shares slump 4% after 'lacklustre' iPhone 15 sales, experts claim its smartphones have become 'formulaic' and warn customers are jumping ship to rivals Samsung and Huawei", - "link": "https://www.dailymail.co.uk/sciencetech/article-12922173/The-beginning-end-iPhone-Apple-shares-slump-4-lackluster-iPhone-15-sales-experts-claim-smartphones-formulaic-warn-customers-jumping-ship-rivals-Samsung-Huawei.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:47:03 GMT", - "enclosure": { - "length": "10388", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79603941-0-image-m-69_1704356724771.jpg" - }, - "content": "Apple investors have been advised to sell shares following months of 'weak' sales. MailOnline spoke to experts to find out if this is the\u00a0beginning of the end for the iPhone.", - "contentSnippet": "Apple investors have been advised to sell shares following months of 'weak' sales. MailOnline spoke to experts to find out if this is the\u00a0beginning of the end for the iPhone.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12922173/The-beginning-end-iPhone-Apple-shares-slump-4-lackluster-iPhone-15-sales-experts-claim-smartphones-formulaic-warn-customers-jumping-ship-rivals-Samsung-Huawei.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:47:03.000Z" - }, - { - "title": "REVEALED: Luke Littler's new world ranking after his painful World Darts Championship final loss to Luke Humphries... after the 16-year-old missed out on triumph that would have moved him up to NINTH", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12925417/Luke-Littlers-new-world-ranking-painful-World-Darts-Championship-final-loss-Luke-Humphries-16-year-old-missed-triumph-moved-NINTH.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:46:47 GMT", - "enclosure": { - "length": "10826", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/07/79603657-0-image-a-11_1704355073426.jpg" - }, - "content": "The 16-year-old was the story of the tournament as he stunned fans with his dominant displays to charge into the final - but suffered heartache in his bid to become the youngest ever champion.", - "contentSnippet": "The 16-year-old was the story of the tournament as he stunned fans with his dominant displays to charge into the final - but suffered heartache in his bid to become the youngest ever champion.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925417/Luke-Littlers-new-world-ranking-painful-World-Darts-Championship-final-loss-Luke-Humphries-16-year-old-missed-triumph-moved-NINTH.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:46:47.000Z" - }, - { - "title": "Las Vegas judge is attacked by freshly-convicted criminal who jumped over her bench to rain punches on her after she sentenced him to jail", - "link": "https://www.dailymail.co.uk/news/article-12924343/las-Vegas-judge-attacked-courtroom-Mary-Kay-holthus.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:45:01 GMT", - "enclosure": { - "length": "5871", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79594013-0-image-a-7_1704323970024.jpg" - }, - "content": "A Las Vegas judge was pounced on and attacked by a man during a hearing after she denied him bail.", - "contentSnippet": "A Las Vegas judge was pounced on and attacked by a man during a hearing after she denied him bail.", - "guid": "https://www.dailymail.co.uk/news/article-12924343/las-Vegas-judge-attacked-courtroom-Mary-Kay-holthus.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:45:01.000Z" - }, - { - "title": "Will HMRC really come after me for selling old clothes? Why it's unlikely you'll be taxed", - "link": "https://www.dailymail.co.uk/money/savemoneymakemoney/article-12922689/Will-HMRC-really-come-selling-old-clothes-unlikely-youll-taxed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:44:30 GMT", - "enclosure": { - "length": "7053", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79576369-0-image-a-23_1704295871704.jpg" - }, - "content": "The taxman is cracking down on online resellers who use digital platforms to make extra cash and failing to declare it as income. We explain who needs to pay tax.", - "contentSnippet": "The taxman is cracking down on online resellers who use digital platforms to make extra cash and failing to declare it as income. We explain who needs to pay tax.", - "guid": "https://www.dailymail.co.uk/money/savemoneymakemoney/article-12922689/Will-HMRC-really-come-selling-old-clothes-unlikely-youll-taxed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:44:30.000Z" - }, - { - "title": "Inside Obertauern, the ski resort made famous by The Beatles that gets so much snow it's 'climate-change-proof' - and a stay at a VERY seductive hotel there with a heavenly pool and rooms with bedside condoms", - "link": "https://www.dailymail.co.uk/travel/article-12922213/Inside-Obertauern-ski-resort-famous-Beatles-gets-snow-climate-change-proof-stay-seductive-hotel-heavenly-pool-rooms-bedside-condoms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:41:05 GMT", - "enclosure": { - "length": "9332", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/12/79566719-0-image-m-33_1704286639882.jpg" - }, - "content": "It was put on the map by The Beatles, who recorded movie Help! there. But these days Obertauern is just as well known for its snow record. Ted Thornhill visited and checked in to Places Hotel...", - "contentSnippet": "It was put on the map by The Beatles, who recorded movie Help! there. But these days Obertauern is just as well known for its snow record. Ted Thornhill visited and checked in to Places Hotel...", - "guid": "https://www.dailymail.co.uk/travel/article-12922213/Inside-Obertauern-ski-resort-famous-Beatles-gets-snow-climate-change-proof-stay-seductive-hotel-heavenly-pool-rooms-bedside-condoms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:41:05.000Z" - }, - { - "title": "Beaten but not broken: Luke Littler smiles as he poses with friends backstage at Ally Pally", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12925549/Beaten-not-broken-Luke-Littler-smiles-poses-friends-backstage-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:37:55 GMT", - "enclosure": { - "length": "11250", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604257-0-image-a-12_1704357082101.jpg" - }, - "content": "The 16-year-old darts sensation was on the brink of creating history by becoming the youngest ever winner of the tournament.", - "contentSnippet": "The 16-year-old darts sensation was on the brink of creating history by becoming the youngest ever winner of the tournament.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925549/Beaten-not-broken-Luke-Littler-smiles-poses-friends-backstage-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:37:55.000Z" - }, - { - "title": "Rishi Sunak is mocked for tweeting 'Congratulations Luke, a great win tonight' after Luke Humphries beat Luke Littler in darts final", - "link": "https://www.dailymail.co.uk/news/article-12925315/rishi-sunak-congratulations-luke-littler-Humphries-darts-final-mocked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:33:56 GMT", - "enclosure": { - "length": "7695", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604917-0-image-m-22_1704358289337.jpg" - }, - "content": "Moments after Luke Humphries beat Luke Littler to secure the title at Ally Pally, the Prime Minister was mocked for tweeting: 'Congratulations Luke, a great win tonight.'", - "contentSnippet": "Moments after Luke Humphries beat Luke Littler to secure the title at Ally Pally, the Prime Minister was mocked for tweeting: 'Congratulations Luke, a great win tonight.'", - "guid": "https://www.dailymail.co.uk/news/article-12925315/rishi-sunak-congratulations-luke-littler-Humphries-darts-final-mocked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:33:56.000Z" - }, - { - "title": "Police search for boy, 11, who went missing after failing to come home from a bike ride in Welsh village", - "link": "https://www.dailymail.co.uk/news/article-12925693/police-search-boy-missing-welsh-village-bike-ride.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:32:12 GMT", - "enclosure": { - "length": "4135", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606721-0-image-a-4_1704360339734.jpg" - }, - "content": "Police say the schoolboy, named only as Marley, was last seen wearing a hoody and black tracksuit bottoms near his countryside village home.", - "contentSnippet": "Police say the schoolboy, named only as Marley, was last seen wearing a hoody and black tracksuit bottoms near his countryside village home.", - "guid": "https://www.dailymail.co.uk/news/article-12925693/police-search-boy-missing-welsh-village-bike-ride.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:32:12.000Z" - }, - { - "title": "Luke Littler is spotted showing incredible sportsmanship, attempting to stop fans booing Luke Humphries on dart to win World Championship as 16-year-old is praised for being 'credit to the sport'", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12925505/Fans-spot-moment-Luke-Littler-tells-Alexandra-Palace-crowd-STOP-booing-Luke-Humphries-match-point-16-year-old-sensation-labelled-credit-sport-supporters-social-media.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:32:02 GMT", - "enclosure": { - "length": "9943", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606161-0-image-a-1_1704359640216.jpg" - }, - "content": "Fans online have labelled Luke Littler a 'credit to the sport' after spotting the moment he tried to get the crowd to stop booing Luke Humphries.", - "contentSnippet": "Fans online have labelled Luke Littler a 'credit to the sport' after spotting the moment he tried to get the crowd to stop booing Luke Humphries.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925505/Fans-spot-moment-Luke-Littler-tells-Alexandra-Palace-crowd-STOP-booing-Luke-Humphries-match-point-16-year-old-sensation-labelled-credit-sport-supporters-social-media.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:32:02.000Z" - }, - { - "title": "ALEX BRUMMER:\u00a0My efforts at email hygiene went horribly wrong", - "link": "https://www.dailymail.co.uk/money/comment/article-12925449/ALEX-BRUMMER-efforts-email-hygiene-gone-horribly-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:30:22 GMT", - "enclosure": { - "length": "4394", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604109-0-image-m-16_1704355895150.jpg" - }, - "content": "Given that company equipment are used to access the private account, it was my assumption that double verification and firewalls would largely protect me from scammers.", - "contentSnippet": "Given that company equipment are used to access the private account, it was my assumption that double verification and firewalls would largely protect me from scammers.", - "guid": "https://www.dailymail.co.uk/money/comment/article-12925449/ALEX-BRUMMER-efforts-email-hygiene-gone-horribly-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:30:22.000Z" - }, - { - "title": "EV revolution held back by charging points crisis", - "link": "https://www.dailymail.co.uk/money/markets/article-12925475/EVs-held-charging-points-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:29:35 GMT", - "enclosure": { - "length": "6017", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604291-0-image-m-30_1704356156104.jpg" - }, - "content": "Just 16,178 public chargers were installed last year - 44 a day, and well short of the 110 needed to hit the Government's target of 300,000 in the UK by the end of the decade.", - "contentSnippet": "Just 16,178 public chargers were installed last year - 44 a day, and well short of the 110 needed to hit the Government's target of 300,000 in the UK by the end of the decade.", - "guid": "https://www.dailymail.co.uk/money/markets/article-12925475/EVs-held-charging-points-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:29:35.000Z" - }, - { - "title": "From a chocolate-box haven in Switzerland to a surfer's paradise in Portugal: UNWTO unveils the 54 most beautiful tourism villages you've (probably) never heard of...", - "link": "https://www.dailymail.co.uk/travel/article-12837501/The-worlds-beautiful-villages-youve-probably-never-heard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:29:32 GMT", - "enclosure": { - "length": "9328", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79573191-0-image-m-93_1704295274711.jpg" - }, - "content": "The Best Tourism Villages of 2023 list recognises 54 off-the-beaten-path villages that are not only beautiful, but perfect for authentic adventures. Which ones will you put on your bucket list?", - "contentSnippet": "The Best Tourism Villages of 2023 list recognises 54 off-the-beaten-path villages that are not only beautiful, but perfect for authentic adventures. Which ones will you put on your bucket list?", - "guid": "https://www.dailymail.co.uk/travel/article-12837501/The-worlds-beautiful-villages-youve-probably-never-heard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:29:32.000Z" - }, - { - "title": "That's one way to get your five a day!\u00a0 Fruit and veg that's morphed into something very different", - "link": "https://www.dailymail.co.uk/femail/article-12925365/Fruit-veg-thats-morphed-different.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:29:07 GMT", - "enclosure": { - "length": "9763", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604629-0-image-a-25_1704357022121.jpg" - }, - "content": "People from around the world have shared hilarious examples of their weird and wonderful fresh produce and Bored Panda collated the best into an online gallery.", - "contentSnippet": "People from around the world have shared hilarious examples of their weird and wonderful fresh produce and Bored Panda collated the best into an online gallery.", - "guid": "https://www.dailymail.co.uk/femail/article-12925365/Fruit-veg-thats-morphed-different.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:29:07.000Z" - }, - { - "title": "I make \u00a31,000 a week by dumpster diving -\u00a0 the amount of new stuff retailers throw away is criminal", - "link": "https://www.dailymail.co.uk/femail/article-12914231/I-make-1-000-week-dumpster-diving.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:24:48 GMT", - "enclosure": { - "length": "12001", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/31/11/79478247-0-image-a-47_1704023409269.jpg" - }, - "content": "Martyn, 47, from Kent, went\u00a0dumpster diving in B&M's bins and found \u00a3200 worth of items, including a golden drinks trolly, a\u00a0LED mirror and a Classic Glass Kettle by the brand Russell Hobbs", - "contentSnippet": "Martyn, 47, from Kent, went\u00a0dumpster diving in B&M's bins and found \u00a3200 worth of items, including a golden drinks trolly, a\u00a0LED mirror and a Classic Glass Kettle by the brand Russell Hobbs", - "guid": "https://www.dailymail.co.uk/femail/article-12914231/I-make-1-000-week-dumpster-diving.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:24:48.000Z" - }, - { - "title": "Israeli news anchor carries a gun while live on air in the studio in latest sign of how civilians still do not feel safe since Hamas attack", - "link": "https://www.dailymail.co.uk/news/article-12925479/Israeli-news-anchor-gun-live-studio-hamas-attack-fear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:20:12 GMT", - "enclosure": { - "length": "7437", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79604543-0-image-m-25_1704359619716.jpg" - }, - "content": "Lital Shemesh, a presenter for right-wing Israeli broadcaster Channel 14, was pictured on Tuesday sitting behind her anchor desk with a gun tucked into the waistband of her trousers.", - "contentSnippet": "Lital Shemesh, a presenter for right-wing Israeli broadcaster Channel 14, was pictured on Tuesday sitting behind her anchor desk with a gun tucked into the waistband of her trousers.", - "guid": "https://www.dailymail.co.uk/news/article-12925479/Israeli-news-anchor-gun-live-studio-hamas-attack-fear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:20:12.000Z" - }, - { - "title": "The modest stockbroker who rejected being labeled 'the British Schindler': As a new biopic hits cinemas, his son's\u00a0 former partner reveals the real Nicholas Winton - forthright, funny and a lifelong socialist", - "link": "https://www.dailymail.co.uk/news/article-12923161/The-REAL-British-Schindler-Nicholas-Wintons-former-daughter-law-reveals-modest-stockbroker-rescued-669-Jewish-children-Nazis-rejected-comparisons-factory-owner-Oskar-new-biopic-One-Life-hits-cinemas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:16:54 GMT", - "enclosure": { - "length": "6844", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79582545-0-image-a-63_1704307000925.jpg" - }, - "content": "Nicholas Winton, to his credit, always rejected the 'British Schindler' label. He recognised that, unlike Schindler who risked his life, he had carried out his mission from the safety of his Hampstead flat.", - "contentSnippet": "Nicholas Winton, to his credit, always rejected the 'British Schindler' label. He recognised that, unlike Schindler who risked his life, he had carried out his mission from the safety of his Hampstead flat.", - "guid": "https://www.dailymail.co.uk/news/article-12923161/The-REAL-British-Schindler-Nicholas-Wintons-former-daughter-law-reveals-modest-stockbroker-rescued-669-Jewish-children-Nazis-rejected-comparisons-factory-owner-Oskar-new-biopic-One-Life-hits-cinemas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:16:54.000Z" - }, - { - "title": "Nervous Keir Starmer pleads for voters to give him a chance and distances himself from Corbyn in speech TODAY kicking off New Year push to election\u2026 as senior Labour figures warn of 'brittle' position despite huge poll lead", - "link": "https://www.dailymail.co.uk/news/article-12925411/Keir-Starmer-Labour-Corbyn-speech-election-Tories-Rishi-Sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:13:50 GMT", - "enclosure": { - "length": "10027", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604255-0-image-m-7_1704356009089.jpg" - }, - "content": "As Westminster starts ramping up towards a showdown at the ballot boxes this year, Keir Starmer will insist he can bring about change.", - "contentSnippet": "As Westminster starts ramping up towards a showdown at the ballot boxes this year, Keir Starmer will insist he can bring about change.", - "guid": "https://www.dailymail.co.uk/news/article-12925411/Keir-Starmer-Labour-Corbyn-speech-election-Tories-Rishi-Sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:13:50.000Z" - }, - { - "title": "Poh Ling Yeow shares incredible food hack to make tomatoes taste better - and you'll never guess what it is", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12925309/Poh-Ling-Yeow-shares-incredible-food-hack.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:12:30 GMT", - "enclosure": { - "length": "11049", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/07/79603331-0-image-a-245_1704352893389.jpg" - }, - "content": "MasterChef Australia's new host Poh Ling Yeow shared an incredible food hack with her fans on Thursday, to ensure tomatoes maintain their taste during humid weather.", - "contentSnippet": "MasterChef Australia's new host Poh Ling Yeow shared an incredible food hack with her fans on Thursday, to ensure tomatoes maintain their taste during humid weather.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12925309/Poh-Ling-Yeow-shares-incredible-food-hack.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:12:30.000Z" - }, - { - "title": "Baker sparks debate over mysterious cookie cutter shape - but can YOU guess what it is?", - "link": "https://www.dailymail.co.uk/femail/article-12922107/Baker-sparks-debate-mysterious-cookie-cutter-shape-guess-is.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:11:02 GMT", - "enclosure": { - "length": "5578", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/11/79568179-0-image-a-23_1704282484779.jpg" - }, - "content": "The odd shape was posted on the Cookie Cutter Identification Facebook group last week - where people from around the world gather to attempt to pin down strangely shaped cutters.", - "contentSnippet": "The odd shape was posted on the Cookie Cutter Identification Facebook group last week - where people from around the world gather to attempt to pin down strangely shaped cutters.", - "guid": "https://www.dailymail.co.uk/femail/article-12922107/Baker-sparks-debate-mysterious-cookie-cutter-shape-guess-is.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:11:02.000Z" - }, - { - "title": "Travis Kelce loves darts! As Luke Littler takes the sport by storm, clip of Taylor Swift's boyfriend and brother Jason vowing to go to a tournament in Germany resurfaces: 'I have always wanted to go!'", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12924147/Travis-Kelce-loves-darts-Luke-Littler-Jason-Germany-tournament.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:07:39 GMT", - "enclosure": { - "length": "11661", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593407-0-image-a-8_1704322401041.jpg" - }, - "content": "A clip from Travis Kelce's New Heights episode has resurfaced where the Chiefs star - Taylor Swift 's boyfriend - talks about how much he loves the game after a visit to Germany.", - "contentSnippet": "A clip from Travis Kelce's New Heights episode has resurfaced where the Chiefs star - Taylor Swift 's boyfriend - talks about how much he loves the game after a visit to Germany.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924147/Travis-Kelce-loves-darts-Luke-Littler-Jason-Germany-tournament.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:07:39.000Z" - }, - { - "title": "Wearing hearing aids can slash risk of an early grave by a QUARTER, study suggests", - "link": "https://www.dailymail.co.uk/health/article-12925639/Wearing-hearing-aids-slash-risk-early-grave-QUARTER-study-suggests.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:06:31 GMT", - "enclosure": { - "length": "8036", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605623-0-image-a-5_1704359056635.jpg" - }, - "content": "US researchers found that people with hearing loss were 24 per cent less likely to die early if they regularly wore the device, compared to those who never wore it.", - "contentSnippet": "US researchers found that people with hearing loss were 24 per cent less likely to die early if they regularly wore the device, compared to those who never wore it.", - "guid": "https://www.dailymail.co.uk/health/article-12925639/Wearing-hearing-aids-slash-risk-early-grave-QUARTER-study-suggests.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:06:31.000Z" - }, - { - "title": "Push for heat pumps and solar panels on historic buildings: Ministers set to loosen planning rules despite fears listed properties could be blighted", - "link": "https://www.dailymail.co.uk/news/article-12925571/Heat-pumps-solar-panels-historic-buildings-planning-net-zero.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:03:16 GMT", - "enclosure": { - "length": "7859", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605005-0-image-m-5_1704358795022.jpg" - }, - "content": "People in listed properties or who live in conservation areas could be exempted from having to apply for permission to fit the green technology.", - "contentSnippet": "People in listed properties or who live in conservation areas could be exempted from having to apply for permission to fit the green technology.", - "guid": "https://www.dailymail.co.uk/news/article-12925571/Heat-pumps-solar-panels-historic-buildings-planning-net-zero.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:03:16.000Z" - }, - { - "title": "Perfect after a ruff day! The Cornish pet whisperer who's started a reading group for DOGS and published a book specifically for our canine friends (and insists they really do listen)", - "link": "https://www.dailymail.co.uk/news/article-12923061/Perfect-ruff-day-Cornish-pet-whisperer-whos-started-reading-group-DOGS-published-book-specifically-canine-friends-insists-really-listen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:01:01 GMT", - "enclosure": { - "length": "8328", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/17/79580735-0-image-m-18_1704301823434.jpg" - }, - "content": "The sky is darkening, the waves crash on the beach and seagulls swirl in the winter chill. But inside Erica Longdon's Cornish home, everything is cosy. She picks up her book and everyone snuggles close.", - "contentSnippet": "The sky is darkening, the waves crash on the beach and seagulls swirl in the winter chill. But inside Erica Longdon's Cornish home, everything is cosy. She picks up her book and everyone snuggles close.", - "guid": "https://www.dailymail.co.uk/news/article-12923061/Perfect-ruff-day-Cornish-pet-whisperer-whos-started-reading-group-DOGS-published-book-specifically-canine-friends-insists-really-listen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:01:01.000Z" - }, - { - "title": "Cinema addict travels across the world mapping his favourite films - but can YOU match the iconic movies to their obscure locations?", - "link": "https://www.dailymail.co.uk/news/article-12873631/Cinema-addict-travels-world-mapping-favourite-films-match-iconic-movies-obscure-locations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 09:00:17 GMT", - "enclosure": { - "length": "11731", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/18/15/79089913-0-image-a-34_1702912033394.jpg" - }, - "content": "EXCLUSIVE: Thomas Duke, who is originally from Essex, studied BA Film for three years at Brunel University London from 2017 to 2020.", - "contentSnippet": "EXCLUSIVE: Thomas Duke, who is originally from Essex, studied BA Film for three years at Brunel University London from 2017 to 2020.", - "guid": "https://www.dailymail.co.uk/news/article-12873631/Cinema-addict-travels-world-mapping-favourite-films-match-iconic-movies-obscure-locations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T09:00:17.000Z" - }, - { - "title": "Cars that died in 2023: Ten major models that reached end of the road", - "link": "https://www.dailymail.co.uk/money/cars/article-12919027/Cars-died-2023-Ten-major-models-reached-end-road.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:58:20 GMT", - "enclosure": { - "length": "12992", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/14/79574675-0-image-a-37_1704293131445.jpg" - }, - "content": "There are number of very well known car models that you won't be seeing in showrooms from 2024 onwards. That's because 2023 saw the demise of some modern-era greats...", - "contentSnippet": "There are number of very well known car models that you won't be seeing in showrooms from 2024 onwards. That's because 2023 saw the demise of some modern-era greats...", - "guid": "https://www.dailymail.co.uk/money/cars/article-12919027/Cars-died-2023-Ten-major-models-reached-end-road.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:58:20.000Z" - }, - { - "title": "Duncan Bannatyne, 74, uses a walking stick while sporting a knee brace as he departs St Barts with wife Nigora, 43, following lavish getaway", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924075/Duncan-Bannatyne-74-uses-walking-stick-sporting-knee-brace-departs-St-Barts-wife-Nigora-43-following-lavish-getaway.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:58:08 GMT", - "enclosure": { - "length": "11995", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590959-0-image-m-36_1704318439687.jpg" - }, - "content": "Duncan Bannatyne and wife\u00a0Nigora were spotted boarding a plane to depart St Barts on Wednesday after spending the festive season on the island.\u00a0", - "contentSnippet": "Duncan Bannatyne and wife\u00a0Nigora were spotted boarding a plane to depart St Barts on Wednesday after spending the festive season on the island.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924075/Duncan-Bannatyne-74-uses-walking-stick-sporting-knee-brace-departs-St-Barts-wife-Nigora-43-following-lavish-getaway.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:58:08.000Z" - }, - { - "title": "Harry Styles' fans share their relief as the singer ditches short-lived buzz cut and grows back much-loved locks: 'Hide the scissors!'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923785/Harry-Styles-ditches-buzz-cut-grows-locks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:57:14 GMT", - "enclosure": { - "length": "11770", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79588617-0-image-a-50_1704315097804.jpg" - }, - "content": "Harry Styles, 29, has now seemingly ditched his short-lived trim and started growing back his precious long locks.", - "contentSnippet": "Harry Styles, 29, has now seemingly ditched his short-lived trim and started growing back his precious long locks.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923785/Harry-Styles-ditches-buzz-cut-grows-locks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:57:14.000Z" - }, - { - "title": "The 5 body parts you might not be washing enough according to a doctor - and they might surprise you", - "link": "https://www.dailymail.co.uk/femail/article-12909655/The-5-body-parts-not-washing-according-doctor-surprise-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:55:33 GMT", - "enclosure": { - "length": "4418", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/29/16/79439865-0-image-a-18_1703867067731.jpg" - }, - "content": "In a pinned TikTok - which has more than 2.5 million views - Dr Caudle, who is from the US, says people are likely to forget to clean are the backs of their ears and their belly button.", - "contentSnippet": "In a pinned TikTok - which has more than 2.5 million views - Dr Caudle, who is from the US, says people are likely to forget to clean are the backs of their ears and their belly button.", - "guid": "https://www.dailymail.co.uk/femail/article-12909655/The-5-body-parts-not-washing-according-doctor-surprise-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:55:33.000Z" - }, - { - "title": "Paul Mitchell's son dead at 53: Angus Mitchell - the only child of legendary late hairstylist - is 'found in swimming pool' at his home in Hawaii", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924345/Paul-Mitchells-son-dead-53-Angus-Mitchell-child-legendary-hairstylist-swimming-pool-home-Hawaii.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:51:36 GMT", - "enclosure": { - "length": "10855", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595739-0-image-a-68_1704327489233.jpg" - }, - "content": "Police sources on Wednesday told TMZ that they were contacted around 6 a.m. Wednesday about a possible drowning.", - "contentSnippet": "Police sources on Wednesday told TMZ that they were contacted around 6 a.m. Wednesday about a possible drowning.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924345/Paul-Mitchells-son-dead-53-Angus-Mitchell-child-legendary-hairstylist-swimming-pool-home-Hawaii.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:51:36.000Z" - }, - { - "title": "Jeffrey Epstein documents show pedophile emailed Ghislaine Maxwell to deny claims Professor Stephen Hawking participated in UNDERAGE ORGY at predator's island", - "link": "https://www.dailymail.co.uk/news/article-12924539/Jeffery-Epstein-documents-Ghislaine-Maxwell-deny-Stephen-Hawking-participated-underage-orgy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:50:10 GMT", - "enclosure": { - "length": "11334", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596139-0-image-a-14_1704329169875.jpg" - }, - "content": "Newly released documents show Jeffery Epstein emailed Ghislaine Maxwell to deny claims Professor Stephen Hawking participated in an underage orgy.", - "contentSnippet": "Newly released documents show Jeffery Epstein emailed Ghislaine Maxwell to deny claims Professor Stephen Hawking participated in an underage orgy.", - "guid": "https://www.dailymail.co.uk/news/article-12924539/Jeffery-Epstein-documents-Ghislaine-Maxwell-deny-Stephen-Hawking-participated-underage-orgy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:50:10.000Z" - }, - { - "title": "Jeffrey Epstein liked to brag about phone calls with A-list movie stars and name-dropped Cate Blanchett while receiving a massage, bombshell court documents claim", - "link": "https://www.dailymail.co.uk/news/article-12925495/Jeffrey-Epstein-Cate-Blanchett.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:43:06 GMT", - "enclosure": { - "length": "9805", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604827-0-image-a-6_1704357403514.jpg" - }, - "content": "Newly released court documents about pedophile monster Jeffrey Epstein reveal he liked to brag about phone calls with some of Hollywood's biggest stars.", - "contentSnippet": "Newly released court documents about pedophile monster Jeffrey Epstein reveal he liked to brag about phone calls with some of Hollywood's biggest stars.", - "guid": "https://www.dailymail.co.uk/news/article-12925495/Jeffrey-Epstein-Cate-Blanchett.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:43:06.000Z" - }, - { - "title": "The dream isn't over for Luke the Nuke: Darts ace, 16, on course to amass '\u00a340million fortune' with flurry of six-figure sponsorship deals despite 7-4 bruising against Luke Humphries - as 'unbelievably proud' family rally around to cheer on PDC runner-up", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12924461/The-dream-isnt-Luke-Nuke-Darts-ace-16-course-amass-40million-fortune-flurry-six-figure-sponsorship-deals-despite-7-4-bruising-against-Luke-Humphries-unbelievably-proud-family-rally-cheer-PDC-runner-up.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:19:54 GMT", - "enclosure": { - "length": "9266", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79595043-0-image-m-26_1704332025114.jpg" - }, - "content": "Marketing experts say the teenage sensation's record-breaking fairytale is only just beginning despite the momentary blip on Wednesday night - and the only direction for his career is up.", - "contentSnippet": "Marketing experts say the teenage sensation's record-breaking fairytale is only just beginning despite the momentary blip on Wednesday night - and the only direction for his career is up.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924461/The-dream-isnt-Luke-Nuke-Darts-ace-16-course-amass-40million-fortune-flurry-six-figure-sponsorship-deals-despite-7-4-bruising-against-Luke-Humphries-unbelievably-proud-family-rally-cheer-PDC-runner-up.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:19:54.000Z" - }, - { - "title": "'Miracle' escape for 'drunk' Irish woman, 19, after leaving French Alps nightclub in T-shirt and shorts and getting lost in a forest in sub-zero temperatures", - "link": "https://www.dailymail.co.uk/news/article-12925453/Miracle-escape-drunk-Irish-woman-19-leaving-French-Alps-nightclub-T-shirt-shorts-getting-lost-forest-sub-zero-temperatures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:18:32 GMT", - "enclosure": { - "length": "8661", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604177-0-image-m-13_1704356199115.jpg" - }, - "content": "The 19-year-old, who has not been named, had been drinking heavily during a ski holiday in the popular Les Deux Alps resort, police said.", - "contentSnippet": "The 19-year-old, who has not been named, had been drinking heavily during a ski holiday in the popular Les Deux Alps resort, police said.", - "guid": "https://www.dailymail.co.uk/news/article-12925453/Miracle-escape-drunk-Irish-woman-19-leaving-French-Alps-nightclub-T-shirt-shorts-getting-lost-forest-sub-zero-temperatures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:18:32.000Z" - }, - { - "title": "David Beckham says he is 'gutted' as he shows off the devastating mess caused by Storm Henk at his family home in the\u00a0Cotswolds", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923749/David-Beckham-says-gutted-shows-devastating-mess-caused-Storm-Henk-family-home-Cotswolds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:17:56 GMT", - "enclosure": { - "length": "10477", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587665-0-image-m-86_1704313342218.jpg" - }, - "content": "David Beckham confessed he is 'gutted' as he showed the devastation caused by Storm Henk at his family's Cotswolds home on Wednesday.\u00a0", - "contentSnippet": "David Beckham confessed he is 'gutted' as he showed the devastation caused by Storm Henk at his family's Cotswolds home on Wednesday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923749/David-Beckham-says-gutted-shows-devastating-mess-caused-Storm-Henk-family-home-Cotswolds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:17:56.000Z" - }, - { - "title": "Ministers vow Houthi rebels will 'bear the consequences' of attacks on ships in the Red Sea in joint statement with leaders from 11 other countries", - "link": "https://www.dailymail.co.uk/news/article-12924705/Ministers-vow-Houthi-rebels-bear-consequences-attacks-ships-Red-Sea-joint-statement-leaders-11-countries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:13:20 GMT", - "enclosure": { - "length": "7144", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/78067453-0-Pictured_The_Houthi_rebels_approached_the_bridge_of_a_different_-m-192_1704332572266.jpg" - }, - "content": "Since November, the Iranian-backed Houthi rebels has launched numerous attacks on shipping travelling towards the Suez Canal.", - "contentSnippet": "Since November, the Iranian-backed Houthi rebels has launched numerous attacks on shipping travelling towards the Suez Canal.", - "guid": "https://www.dailymail.co.uk/news/article-12924705/Ministers-vow-Houthi-rebels-bear-consequences-attacks-ships-Red-Sea-joint-statement-leaders-11-countries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:13:20.000Z" - }, - { - "title": "Minister calls on boss embroiled in Post Office scandal that saw hundreds of people wrongly prosecuted to give up her CBE", - "link": "https://www.dailymail.co.uk/news/article-12924103/Minister-Post-Office-scandal-CBE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:03:20 GMT", - "enclosure": { - "length": "5397", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590213-0-image-m-42_1704318001350.jpg" - }, - "content": "The former boss of the Post Office Paula Vennells (pictured) should consider returning her CBE over the scandal that saw hundreds of subpostmasters wrongly prosecuted, a Tory minister said today.", - "contentSnippet": "The former boss of the Post Office Paula Vennells (pictured) should consider returning her CBE over the scandal that saw hundreds of subpostmasters wrongly prosecuted, a Tory minister said today.", - "guid": "https://www.dailymail.co.uk/news/article-12924103/Minister-Post-Office-scandal-CBE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:03:20.000Z" - }, - { - "title": "PETER HITCHENS: Our hostility to Iran has only helped keep the ghastly Mullahs in power", - "link": "https://www.dailymail.co.uk/columnists/article-12923515/Peter-Hitchens-Iran-Mullahs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:03:00 GMT", - "enclosure": { - "length": "10230", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79584187-0-image-m-11_1704308061822.jpg" - }, - "content": "Why do we make such a bogeyman out of Iran? What is the British interest in keeping up hostility between us and that country? What good has it done us and is it justified?", - "contentSnippet": "Why do we make such a bogeyman out of Iran? What is the British interest in keeping up hostility between us and that country? What good has it done us and is it justified?", - "guid": "https://www.dailymail.co.uk/columnists/article-12923515/Peter-Hitchens-Iran-Mullahs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:03:00.000Z" - }, - { - "title": "One of Nostradamus' terrifying predictions for 2024 came true just hours into the new year", - "link": "https://www.dailymail.co.uk/femail/article-12923483/Nostradamus-predictions-2024-hours-new-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 08:02:35 GMT", - "enclosure": { - "length": "9174", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79584951-0-image-m-36_1704309538226.jpg" - }, - "content": "It appears 16th-century French philosopher Nostradamus may have predicted the 7.6-magnitude earthquake which rocked Japan on New Year's Day, so far killing 62 people", - "contentSnippet": "It appears 16th-century French philosopher Nostradamus may have predicted the 7.6-magnitude earthquake which rocked Japan on New Year's Day, so far killing 62 people", - "guid": "https://www.dailymail.co.uk/femail/article-12923483/Nostradamus-predictions-2024-hours-new-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T08:02:35.000Z" - }, - { - "title": "Women-only skiing event will host NAKED after-hours lap on chilly Colorado slopes: Event is open to non-binary skiiers and those who are 'female identifying'", - "link": "https://www.dailymail.co.uk/news/article-12924699/women-skiing-colorado-naked-nonbinary-snow-winter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:52:42 GMT", - "enclosure": { - "length": "12352", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/03/79599035-0-image-a-4_1704337576562.jpg" - }, - "content": "This year, the weekend, which will likely include at least 500 women is taking place at Colorado's Sunlight Mountain Resort", - "contentSnippet": "This year, the weekend, which will likely include at least 500 women is taking place at Colorado's Sunlight Mountain Resort", - "guid": "https://www.dailymail.co.uk/news/article-12924699/women-skiing-colorado-naked-nonbinary-snow-winter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:52:42.000Z" - }, - { - "title": "MH370 'breakthrough': Aussie fisherman's claim he pulled Malaysia Airlines plane wing from the Southern Ocean is 'plausible', ex-naval officer claims", - "link": "https://www.dailymail.co.uk/news/article-12924267/MH370-wing-Aussie-fisherman-Kit-Olver-Southern-Ocean.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:50:37 GMT", - "enclosure": { - "length": "6740", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79594949-0-image-m-38_1704326447597.jpg" - }, - "content": "A retired fisherman's claim that his deep-sea trawler pulled up an aeroplane wing from missing Malaysia Airlines flight MH370 is 'plausible', a former naval officer said.", - "contentSnippet": "A retired fisherman's claim that his deep-sea trawler pulled up an aeroplane wing from missing Malaysia Airlines flight MH370 is 'plausible', a former naval officer said.", - "guid": "https://www.dailymail.co.uk/news/article-12924267/MH370-wing-Aussie-fisherman-Kit-Olver-Southern-Ocean.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:50:37.000Z" - }, - { - "title": "I was convinced regaining my figure from ten years ago would make me happier. I was wrong", - "link": "https://www.dailymail.co.uk/femail/article-12923451/About-start-joyless-January-diet-Read-think-twice-convinced-regaining-figure-ten-years-ago-make-happier-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:39:19 GMT", - "enclosure": { - "length": "10256", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79594055-0-image-a-4_1704323981546.jpg" - }, - "content": "UK writer Farrah Storr, former editor of Women's Health Magazine, reveals how she regrets committing to a stringent diet and intense exercise regime at the age of 43 in a bid to shed two stone.", - "contentSnippet": "UK writer Farrah Storr, former editor of Women's Health Magazine, reveals how she regrets committing to a stringent diet and intense exercise regime at the age of 43 in a bid to shed two stone.", - "guid": "https://www.dailymail.co.uk/femail/article-12923451/About-start-joyless-January-diet-Read-think-twice-convinced-regaining-figure-ten-years-ago-make-happier-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:39:19.000Z" - }, - { - "title": "Billionaire hedge fund manager Glenn Dubin was first person Ghislaine Maxwell told Virginia Roberts Giuffre to have sex with, unsealed Jeffrey Epstein files allege", - "link": "https://www.dailymail.co.uk/news/article-12925235/Billionaire-hedge-fund-manager-Glenn-Dubin-Ghislaine-Maxwell-Virginia-Giuffre-sex-Jeffrey-Epstein.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:31:02 GMT", - "enclosure": { - "length": "10990", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/06/79602613-0-image-a-21_1704350102335.jpg" - }, - "content": "Billionaire hedge fund co-founder Glenn Dubin is allegedly the first person Virginia Giuffre was instructed by Ghislaine Maxwell to haave sex with.", - "contentSnippet": "Billionaire hedge fund co-founder Glenn Dubin is allegedly the first person Virginia Giuffre was instructed by Ghislaine Maxwell to haave sex with.", - "guid": "https://www.dailymail.co.uk/news/article-12925235/Billionaire-hedge-fund-manager-Glenn-Dubin-Ghislaine-Maxwell-Virginia-Giuffre-sex-Jeffrey-Epstein.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:31:02.000Z" - }, - { - "title": "California city prepares to open $15M 'turbo roundabout' to fix deadly intersection - despite national aversion to European road feature", - "link": "https://www.dailymail.co.uk/news/article-12922929/California-city-turbo-roundabout-deadly-intersection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:25:20 GMT", - "enclosure": { - "length": "9493", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/17/79579965-0-image-a-1_1704302266105.jpg" - }, - "content": "The 'turbo roundabout' will replace a dangerous intersection between highways 25 and 156 in San Benito County which sees twice as many collisions as similar crossings in the state.", - "contentSnippet": "The 'turbo roundabout' will replace a dangerous intersection between highways 25 and 156 in San Benito County which sees twice as many collisions as similar crossings in the state.", - "guid": "https://www.dailymail.co.uk/news/article-12922929/California-city-turbo-roundabout-deadly-intersection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:25:20.000Z" - }, - { - "title": "Veteran comedy star Jasper Carrott lined up for TV comeback on Taskmaster by host Alex Horne as he reveals he would be his 'dream guest'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924611/Comedy-legend-lines-Taskmaster-comeback.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:17:44 GMT", - "enclosure": { - "length": "10205", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79596885-0-image-a-198_1704330107006.jpg" - }, - "content": "Jasper Carrott will reportedly make a TV comeback joining BAFTA award-winning series Taskmaster, according to The Sun.", - "contentSnippet": "Jasper Carrott will reportedly make a TV comeback joining BAFTA award-winning series Taskmaster, according to The Sun.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924611/Comedy-legend-lines-Taskmaster-comeback.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:17:44.000Z" - }, - { - "title": "Elton John 'made \u00a3118,600 A DAY during his five-year\u00a0Yellow Brick Road Tour' - after it was revealed he failed to pay Gary Lineker his debt", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924619/Elton-John-earned-118-600-DAILY-Yellow-Brick-Road-Tour.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:17:05 GMT", - "enclosure": { - "length": "11051", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79597609-0-image-a-75_1704331960036.jpg" - }, - "content": "Sir Elton John is said to have made a whopping \u00a3118,600 a day while performing on his Yellow Brick Road Tour which continued for five years.", - "contentSnippet": "Sir Elton John is said to have made a whopping \u00a3118,600 a day while performing on his Yellow Brick Road Tour which continued for five years.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924619/Elton-John-earned-118-600-DAILY-Yellow-Brick-Road-Tour.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:17:05.000Z" - }, - { - "title": "Extraordinary before and after photos show just how much Bianca Censori has changed since she married Kanye West as fans say she now looks more like Kim Kardashian than the reality star herself: 'He's clearly not over Kim'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924177/Extraordinary-photos-just-Bianca-Censori-changed-married-Kanye-West-fans-say-looks-like-Kim-Kardashian-reality-star-Hes-clearly-not-Kim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:16:37 GMT", - "enclosure": { - "length": "8672", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79593847-0-image-a-100_1704323383775.jpg" - }, - "content": "Bianca Censori has undergone quite the transformation since her wedding to rapper Kanye West one year ago.", - "contentSnippet": "Bianca Censori has undergone quite the transformation since her wedding to rapper Kanye West one year ago.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924177/Extraordinary-photos-just-Bianca-Censori-changed-married-Kanye-West-fans-say-looks-like-Kim-Kardashian-reality-star-Hes-clearly-not-Kim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:16:37.000Z" - }, - { - "title": "Prince Andrew grope accuser Johanna Sjoberg claims she knew Virginia Roberts was underage during 2001 trip to Epstein's NY mansion 'where royal had sex with her', court papers claim", - "link": "https://www.dailymail.co.uk/news/article-12924745/prince-andrew-johanna-sjoberg-accuser-jeffrey-epstein-lists-ghislaine-maxwell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:15:40 GMT", - "enclosure": { - "length": "10757", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/03/79599707-0-image-a-57_1704339505851.jpg" - }, - "content": "Johanna Sjoberg said she was recruited by Ghislaine Maxwell in 2001, when she was 20. She said they went to Jeffrey Epstein's Manhattan mansion with Virginia Roberts and Prince Andrew.", - "contentSnippet": "Johanna Sjoberg said she was recruited by Ghislaine Maxwell in 2001, when she was 20. She said they went to Jeffrey Epstein's Manhattan mansion with Virginia Roberts and Prince Andrew.", - "guid": "https://www.dailymail.co.uk/news/article-12924745/prince-andrew-johanna-sjoberg-accuser-jeffrey-epstein-lists-ghislaine-maxwell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:15:40.000Z" - }, - { - "title": "Jeffrey Epstein 'victim' Johanna Sjoberg denies MASSAGING Donald Trump and reveals how predator financier boasted of being able to call former president before trip to his casino, court papers claim", - "link": "https://www.dailymail.co.uk/news/article-12924669/Jeffrey-Epstein-Johanna-Sjoberg-Trump-massage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 07:05:07 GMT", - "enclosure": { - "length": "10813", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/02/79598119-0-image-a-17_1704333671284.jpg" - }, - "content": "One of Jeffrey Epstein's alleged victims who claimed Prince Andrew groped her breast with a puppet said in newly unsealed depositions she never massaged Donald Trump.", - "contentSnippet": "One of Jeffrey Epstein's alleged victims who claimed Prince Andrew groped her breast with a puppet said in newly unsealed depositions she never massaged Donald Trump.", - "guid": "https://www.dailymail.co.uk/news/article-12924669/Jeffrey-Epstein-Johanna-Sjoberg-Trump-massage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T07:05:07.000Z" - }, - { - "title": "Getting divorced? Here's how to make a clean and fair financial break", - "link": "https://www.dailymail.co.uk/money/bills/article-12922827/Getting-divorced-clean-fair-financial-break.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 06:01:02 GMT", - "enclosure": { - "length": "6156", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/14/79567701-0-image-a-10_1704293524078.jpg" - }, - "content": "The first Monday falling on a working day in\u00a0the new calendar year is dubbed Divorce Day because so many people choose then to start the formalities. This year, it falls next Monday, on 8 January.", - "contentSnippet": "The first Monday falling on a working day in\u00a0the new calendar year is dubbed Divorce Day because so many people choose then to start the formalities. This year, it falls next Monday, on 8 January.", - "guid": "https://www.dailymail.co.uk/money/bills/article-12922827/Getting-divorced-clean-fair-financial-break.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T06:01:02.000Z" - }, - { - "title": "Log burners could cut heating bills by up to \u00a3128 a year, report finds", - "link": "https://www.dailymail.co.uk/money/bills/article-12922879/Log-burners-cut-heating-bills-128-year-report-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 06:00:59 GMT", - "enclosure": { - "length": "7502", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79576413-0-image-m-35_1704296007959.jpg" - }, - "content": "Using a stove to burn wood or smokeless fuel can knock off \u00a392 or \u00a3128 a year respectively off the cost of heating, a new report finds.", - "contentSnippet": "Using a stove to burn wood or smokeless fuel can knock off \u00a392 or \u00a3128 a year respectively off the cost of heating, a new report finds.", - "guid": "https://www.dailymail.co.uk/money/bills/article-12922879/Log-burners-cut-heating-bills-128-year-report-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T06:00:59.000Z" - }, - { - "title": "Brexit customs charges, UPS and Packlink made selling Star Wars toy an epic drama: CRANE ON THE CASE", - "link": "https://www.dailymail.co.uk/money/bills/article-12922167/Brexit-customs-charges-UPS-Packlink-selling-Star-Wars-toy-epic-drama-CRANE-CASE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 06:00:49 GMT", - "enclosure": { - "length": "10647", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/14/79574429-0-image-a-9_1704293063680.jpg" - }, - "content": "I sold the rare collectable to a buyer in Spain for \u00a32,000 - but a mix-up meant it was returned to me and now UPS says I am on the hook for the \u00a3500 customs charges.", - "contentSnippet": "I sold the rare collectable to a buyer in Spain for \u00a32,000 - but a mix-up meant it was returned to me and now UPS says I am on the hook for the \u00a3500 customs charges.", - "guid": "https://www.dailymail.co.uk/money/bills/article-12922167/Brexit-customs-charges-UPS-Packlink-selling-Star-Wars-toy-epic-drama-CRANE-CASE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T06:00:49.000Z" - }, - { - "title": "Should I fix my mortgage for two or five years? More Britons now take shorter option", - "link": "https://www.dailymail.co.uk/money/mortgageshome/article-12919865/Should-fix-mortgage-two-five-years-Britons-shorter-option.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 06:00:46 GMT", - "enclosure": { - "length": "5736", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/02/18/79543601-0-image-m-13_1704219086284.jpg" - }, - "content": "Those buying or remortgaging this year face the question of how long to fix their mortgage deal for. We look at why the preference has shifted from five years to two.", - "contentSnippet": "Those buying or remortgaging this year face the question of how long to fix their mortgage deal for. We look at why the preference has shifted from five years to two.", - "guid": "https://www.dailymail.co.uk/money/mortgageshome/article-12919865/Should-fix-mortgage-two-five-years-Britons-shorter-option.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T06:00:46.000Z" - }, - { - "title": "Jeffrey Epstein was visited by MICHAEL JACKSON at his Palm Beach home, bombshell court documents claim - but 'victim' Johanna Sjoberg says she didn't massage late King of Pop", - "link": "https://www.dailymail.co.uk/news/article-12925009/Jeffrey-Epstein-Michael-Jackson-Palm-Beach.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 05:26:45 GMT", - "enclosure": { - "length": "12993", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/04/79600409-0-image-a-51_1704342594198.jpg" - }, - "content": "Johanna Sjoberg, who claimed Prince Andrew groped her breast with a puppet, said in newly unsealed depositions that she met Michael Jackson when she was with Jeffrey Epstein.", - "contentSnippet": "Johanna Sjoberg, who claimed Prince Andrew groped her breast with a puppet, said in newly unsealed depositions that she met Michael Jackson when she was with Jeffrey Epstein.", - "guid": "https://www.dailymail.co.uk/news/article-12925009/Jeffrey-Epstein-Michael-Jackson-Palm-Beach.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T05:26:45.000Z" - }, - { - "title": "I don't like my 'fat' bridesmaid - so I chose a revealing dress to make her drop out of the wedding", - "link": "https://www.dailymail.co.uk/femail/real-life/article-12924977/Reddit-bride-chose-revealing-dress-fat-bridesmaid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 05:26:14 GMT", - "enclosure": { - "length": "6497", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/05/79600225-0-image-m-29_1704345808058.jpg" - }, - "content": "The bride explained shopping for dresses has been a 'nightmare' because of her bridesmaid's self-doubt and body image issues.", - "contentSnippet": "The bride explained shopping for dresses has been a 'nightmare' because of her bridesmaid's self-doubt and body image issues.", - "guid": "https://www.dailymail.co.uk/femail/real-life/article-12924977/Reddit-bride-chose-revealing-dress-fat-bridesmaid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T05:26:14.000Z" - }, - { - "title": "How I found inner calm... by smashing up an entire room with a baseball bat! Forget mindfulness. Overwrought women are venting their anger in Britain's new Rage Rooms", - "link": "https://www.dailymail.co.uk/femail/article-12923497/How-inner-calm-smashing-entire-room-baseball-bat-Forget-mindfulness-Overwrought-women-venting-anger-Britains-new-Rage-Rooms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 04:56:37 GMT", - "enclosure": { - "length": "11746", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79592019-0-image-a-4_1704320393218.jpg" - }, - "content": "Finding herself seething about all the domestic chores and parental admin that fall to her, UK writer Antonia Hoyle wondered if a rage room - where you can smash objects of your choosing - might help.", - "contentSnippet": "Finding herself seething about all the domestic chores and parental admin that fall to her, UK writer Antonia Hoyle wondered if a rage room - where you can smash objects of your choosing - might help.", - "guid": "https://www.dailymail.co.uk/femail/article-12923497/How-inner-calm-smashing-entire-room-baseball-bat-Forget-mindfulness-Overwrought-women-venting-anger-Britains-new-Rage-Rooms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T04:56:37.000Z" - }, - { - "title": "Luke Littler: The kebab-loving 'Ronaldo of darts' still in nappies when he started playing... After he comes agonisingly close to winning the World Darts Championship aged just 16", - "link": "https://www.dailymail.co.uk/news/article-12924307/Luke-Littler-Ronaldo-darts-winning-World-Darts-Championship-16.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 04:54:37 GMT", - "enclosure": { - "length": "7567", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593239-0-image-a-69_1704321923789.jpg" - }, - "content": "At six, he threw his first 180. By the time he was nine, he was smashing the under-14s. And aged 13, he did his first nine-dart finish (from a score of 501) and was good enough to win men's tournaments.", - "contentSnippet": "At six, he threw his first 180. By the time he was nine, he was smashing the under-14s. And aged 13, he did his first nine-dart finish (from a score of 501) and was good enough to win men's tournaments.", - "guid": "https://www.dailymail.co.uk/news/article-12924307/Luke-Littler-Ronaldo-darts-winning-World-Darts-Championship-16.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T04:54:37.000Z" - }, - { - "title": "Historic 1900s Texas home nicknamed the White House is destroyed in huge blaze", - "link": "https://www.dailymail.co.uk/news/article-12924529/Historic-1900s-Dallas-home-nicknamed-White-House-destroyed-huge-blaze.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 04:06:28 GMT", - "enclosure": { - "length": "10173", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/02/79598033-0-image-a-10_1704333804941.jpg" - }, - "content": "A historic home in Texas nicknamed the White House was tragically destroyed in an intense fire.", - "contentSnippet": "A historic home in Texas nicknamed the White House was tragically destroyed in an intense fire.", - "guid": "https://www.dailymail.co.uk/news/article-12924529/Historic-1900s-Dallas-home-nicknamed-White-House-destroyed-huge-blaze.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T04:06:28.000Z" - }, - { - "title": "How Princess Mary's teen son Christian's role is about to drastically change - despite him controversially 'delaying duties' when he turned 18", - "link": "https://www.dailymail.co.uk/femail/princess-mary-of-denmark/article-12924751/Princess-Marys-oldest-son-Prince-Christian-new-role-title-Queen-Margrethe-abdication-Denmark-royal-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 03:58:13 GMT", - "enclosure": { - "length": "11628", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/03/79599065-0-image-a-62_1704339125122.jpg" - }, - "content": "Prince Frederik and Princess Mary's eldest son Christian will be given a new title and duties after his father becomes king despite announcing he would delay his royal responsibilities in 2023.", - "contentSnippet": "Prince Frederik and Princess Mary's eldest son Christian will be given a new title and duties after his father becomes king despite announcing he would delay his royal responsibilities in 2023.", - "guid": "https://www.dailymail.co.uk/femail/princess-mary-of-denmark/article-12924751/Princess-Marys-oldest-son-Prince-Christian-new-role-title-Queen-Margrethe-abdication-Denmark-royal-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T03:58:13.000Z" - }, - { - "title": "EDEN CONFIDENTIAL: Panto shock for Chipping Norton set after one of the ugly stepsisters in Cinderella is touched inappropriately", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923905/Panto-Chipping-Norton-ugly-stepsisters-Cinderella.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 03:52:52 GMT", - "enclosure": { - "length": "13349", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79588443-0-image-a-49_1704315234171.jpg" - }, - "content": "EDEN CONFIDENTIAL: Cast members of Cinderella have been left upset after one of the ugly sisters, played by an actress, is said to have been touched 'inappropriately'.", - "contentSnippet": "EDEN CONFIDENTIAL: Cast members of Cinderella have been left upset after one of the ugly sisters, played by an actress, is said to have been touched 'inappropriately'.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923905/Panto-Chipping-Norton-ugly-stepsisters-Cinderella.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T03:52:52.000Z" - }, - { - "title": "Sun's strongest explosion of energy in six years 'is stuck in traffic': Physicist reveals weak solar winds are causing the delay - but says some marine radios and Starlink satellites have been disrupted", - "link": "https://www.dailymail.co.uk/sciencetech/article-12924123/Suns-strongest-explosion-energy-six-years-delayed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 03:29:51 GMT", - "enclosure": { - "length": "4884", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79594807-0-image-a-10_1704326653683.jpg" - }, - "content": "A space weather physicist has kept a watchful eye on the energy that erupted from the sun on New Years. The storm was set to hit Earth on Tuesday, but the expert revealed it is 'stuck in traffic.'", - "contentSnippet": "A space weather physicist has kept a watchful eye on the energy that erupted from the sun on New Years. The storm was set to hit Earth on Tuesday, but the expert revealed it is 'stuck in traffic.'", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12924123/Suns-strongest-explosion-energy-six-years-delayed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T03:29:51.000Z" - }, - { - "title": "Luke Littler's girlfriend Eloise Milburn, 21, looks tearful as 16-year-old agonisingly loses the World Darts Championship final against Luke Humphries at Ally Pally after capturing the nation's hearts", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12924317/Luke-Littlers-Eloise-Milburn-World-Darts-Championship-Luke-Humphries-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 03:10:59 GMT", - "enclosure": { - "length": "9795", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79593893-0-image-a-50_1704323523093.jpg" - }, - "content": "Eloise Milburn, 21, is an avid darts player herself and was crestfallen that her boyfriend's dreams of glory had been crushed for now.", - "contentSnippet": "Eloise Milburn, 21, is an avid darts player herself and was crestfallen that her boyfriend's dreams of glory had been crushed for now.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924317/Luke-Littlers-Eloise-Milburn-World-Darts-Championship-Luke-Humphries-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T03:10:59.000Z" - }, - { - "title": "'This movie will be Disney's biggest flop yet': Star Wars fans say female-led next installment is destined to fail after 2015 comments from feminist director saying her goal 'is to make men uncomfortable'", - "link": "https://www.dailymail.co.uk/news/article-12924179/This-movie-Disneys-biggest-flop-Star-Wars-fans-say-female-led-installment-destined-fail-2015-comments-feminist-director-saying-goal-make-men-uncomfortable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 02:55:42 GMT", - "enclosure": { - "length": "9664", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79593319-0-image-a-8_1704326511670.jpg" - }, - "content": "Star Wars fans and conservatives have jumped on comments by the direct of a new female-led film in the franchise, leading them to believe it will be another ' woke ' flop from Disney.", - "contentSnippet": "Star Wars fans and conservatives have jumped on comments by the direct of a new female-led film in the franchise, leading them to believe it will be another ' woke ' flop from Disney.", - "guid": "https://www.dailymail.co.uk/news/article-12924179/This-movie-Disneys-biggest-flop-Star-Wars-fans-say-female-led-installment-destined-fail-2015-comments-feminist-director-saying-goal-make-men-uncomfortable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T02:55:42.000Z" - }, - { - "title": "This is the best thing I bought for my home in 2023: 'You won't regret it'", - "link": "https://www.dailymail.co.uk/femail/real-life/article-12924621/best-purchase-homewares-gadgets-2023-Australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 02:53:47 GMT", - "enclosure": { - "length": "10674", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/02/79597949-0-image-a-38_1704334859944.jpg" - }, - "content": "Australians have revealed the one thing they don't regret buying for their home in 2023.", - "contentSnippet": "Australians have revealed the one thing they don't regret buying for their home in 2023.", - "guid": "https://www.dailymail.co.uk/femail/real-life/article-12924621/best-purchase-homewares-gadgets-2023-Australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T02:53:47.000Z" - }, - { - "title": "Ghislaine Maxwell refuses to say whether Jeffrey Epstein liked her to pinch his nipples and says its a 'tricky question' when asked if she was ever pedophile's girlfriend", - "link": "https://www.dailymail.co.uk/news/article-12924581/ghislaine-maxwell-jeffrey-epstein-nipples-girlfriend-documents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 02:44:24 GMT", - "enclosure": { - "length": "6599", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595795-0-The_list_includes_a_host_of_Epstein_associates_previously_identi-a-5_1704328332154.jpg" - }, - "content": "Jeffrey Epstein's infamous right-hand woman Ghislaine Maxwell hedged on details about Epstein's sexual proclivities and whether or not he was his girlfriend in newly unsealed documents.", - "contentSnippet": "Jeffrey Epstein's infamous right-hand woman Ghislaine Maxwell hedged on details about Epstein's sexual proclivities and whether or not he was his girlfriend in newly unsealed documents.", - "guid": "https://www.dailymail.co.uk/news/article-12924581/ghislaine-maxwell-jeffrey-epstein-nipples-girlfriend-documents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T02:44:24.000Z" - }, - { - "title": "The Traitors viewers fume as host Claudia Winkleman ends first episode with HUGE cliffhanger as they show kicks off with several shock twists", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924231/The-Traitors-Claudia-Winkleman-ends-episode-HUGE-cliffhanger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 02:27:38 GMT", - "enclosure": { - "length": "9857", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593289-0-image-m-113_1704322112057.jpg" - }, - "content": "BBC 's hotly-anticipated series The Traitors returned to screens on Wednesday night with Claudia Winkleman as host again.", - "contentSnippet": "BBC 's hotly-anticipated series The Traitors returned to screens on Wednesday night with Claudia Winkleman as host again.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924231/The-Traitors-Claudia-Winkleman-ends-episode-HUGE-cliffhanger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T02:27:38.000Z" - }, - { - "title": "Former Labour MP Dame Joan Ruddock makes the tragic admission she wanted to smother her terminally ill husband with a pillow to put him out of his pain as she gives a passionate plea for the legislation of assisted dying", - "link": "https://www.dailymail.co.uk/news/article-12924663/Former-Labour-MP-Dame-Joan-Ruddock-makes-tragic-admission-wanted-smother-terminally-ill-husband-pillow-pain-gives-passionate-plea-legislation-assisted-dying.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 02:21:31 GMT", - "enclosure": { - "length": "8586", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79597883-0-image-m-88_1704332867231.jpg" - }, - "content": "In a submission to MPs, she said her husband had been suffering from end-stage bowel cancer in 2017 but she struggled to get him pain-relieving medication in the hours before he died.", - "contentSnippet": "In a submission to MPs, she said her husband had been suffering from end-stage bowel cancer in 2017 but she struggled to get him pain-relieving medication in the hours before he died.", - "guid": "https://www.dailymail.co.uk/news/article-12924663/Former-Labour-MP-Dame-Joan-Ruddock-makes-tragic-admission-wanted-smother-terminally-ill-husband-pillow-pain-gives-passionate-plea-legislation-assisted-dying.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T02:21:31.000Z" - }, - { - "title": "Woman, 37, found dead at a home inside house Waterlooville - as grieving family pay tribute to a 'special daughter, auntie and sister'", - "link": "https://www.dailymail.co.uk/news/article-12924643/Woman-37-dead-home-inside-house-Waterlooville-grieving-family-pay-tribute-special-daughter-auntie-sister.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:59:18 GMT", - "enclosure": { - "length": "6151", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79588745-0-image-a-26_1704330222722.jpg" - }, - "content": "Hampshire Police arrested a man on suspicion of murder after Joanna Derkacz was found inside a house on Nevinson Way at 11.30am on Thursday, December 28.", - "contentSnippet": "Hampshire Police arrested a man on suspicion of murder after Joanna Derkacz was found inside a house on Nevinson Way at 11.30am on Thursday, December 28.", - "guid": "https://www.dailymail.co.uk/news/article-12924643/Woman-37-dead-home-inside-house-Waterlooville-grieving-family-pay-tribute-special-daughter-auntie-sister.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:59:18.000Z" - }, - { - "title": "AMANDA PLATELL: Labour's plan for menopausal women in the workplace will make people LESS likely to employ those of a certain age", - "link": "https://www.dailymail.co.uk/debate/article-12924587/Labour-plan-menopausal-women-workplace-employ-certain-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:56:40 GMT", - "enclosure": { - "length": "8392", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596605-0-image-a-67_1704329720632.jpg" - }, - "content": "The idea of 'meno-leave' becoming law, of menopause action plans and officers being employed to police the treatment of us poor dears over the age 40 is horrifying.", - "contentSnippet": "The idea of 'meno-leave' becoming law, of menopause action plans and officers being employed to police the treatment of us poor dears over the age 40 is horrifying.", - "guid": "https://www.dailymail.co.uk/debate/article-12924587/Labour-plan-menopausal-women-workplace-employ-certain-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:56:40.000Z" - }, - { - "title": "'Catholic Eton' Ampleforth College vows not to pass on Labour's proposed fees tax hike to parents", - "link": "https://www.dailymail.co.uk/news/article-12924133/Catholic-Eton-Ampleforth-College-vows-not-pass-Labours-proposed-fees-tax-hike-parents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:55:34 GMT", - "enclosure": { - "length": "7139", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/41967746-0-image-m-12_1704319798139.jpg" - }, - "content": "The headmaster, Peter Roberts, said 222-year-old Ampleforth College would do everything it could to absorb the costs of the party's plan to charge 20 per cent VAT on fees.", - "contentSnippet": "The headmaster, Peter Roberts, said 222-year-old Ampleforth College would do everything it could to absorb the costs of the party's plan to charge 20 per cent VAT on fees.", - "guid": "https://www.dailymail.co.uk/news/article-12924133/Catholic-Eton-Ampleforth-College-vows-not-pass-Labours-proposed-fees-tax-hike-parents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:55:34.000Z" - }, - { - "title": "Alec Baldwin emerges with wife Hilaria and three of their SEVEN children as promo trail begins for Rust with first-look images taken by Halyna Hutchins", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924439/Alec-Baldwin-emerges-wife-Hilaria-children.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:39:01 GMT", - "enclosure": { - "length": "10655", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595933-0-image-a-13_1704327907387.jpg" - }, - "content": "They have welcomed seven children into the world together - Carmen, 10, Rafael, eight, Leonardo, seven, Romeo, five, Edu, three, Lucia Victoria, two, and Ilaria, one.", - "contentSnippet": "They have welcomed seven children into the world together - Carmen, 10, Rafael, eight, Leonardo, seven, Romeo, five, Edu, three, Lucia Victoria, two, and Ilaria, one.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924439/Alec-Baldwin-emerges-wife-Hilaria-children.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:39:01.000Z" - }, - { - "title": "Superfan of 70s sitcom On The Buses, 26, shuns woke jokes for classic comedy as he assembles the UK's biggest collection of the show's memorabilia", - "link": "https://www.dailymail.co.uk/news/article-12924561/Superfan-70s-sitcom-Buses-26-shuns-woke-jokes-classic-comedy-assembles-UKs-biggest-collection-shows-memorabilia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:29:11 GMT", - "enclosure": { - "length": "12741", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596121-0-image-a-2_1704328392865.jpg" - }, - "content": "George Darlow, who was born more than two decades after On The Buses ended in 1973, became fascinated by the show as a child.", - "contentSnippet": "George Darlow, who was born more than two decades after On The Buses ended in 1973, became fascinated by the show as a child.", - "guid": "https://www.dailymail.co.uk/news/article-12924561/Superfan-70s-sitcom-Buses-26-shuns-woke-jokes-classic-comedy-assembles-UKs-biggest-collection-shows-memorabilia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:29:11.000Z" - }, - { - "title": "Lib Dems refuse to rule out an election deal with Labour in the event of a hung parliament - as Tories warn a coalition between the two could see the Brexit vote unpicked", - "link": "https://www.dailymail.co.uk/news/article-12924547/Lib-Dems-refuse-rule-election-deal-Labour-event-hung-parliament-Tories-warn-coalition-two-Brexit-vote-unpicked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:22:48 GMT", - "enclosure": { - "length": "7922", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79597165-0-image-m-69_1704330706055.jpg" - }, - "content": "Liberal Democrat leader Sir Ed Davey refused to rule out the two parties forming a coalition, which the Tories warned could see the Brexit vote unpicked.", - "contentSnippet": "Liberal Democrat leader Sir Ed Davey refused to rule out the two parties forming a coalition, which the Tories warned could see the Brexit vote unpicked.", - "guid": "https://www.dailymail.co.uk/news/article-12924547/Lib-Dems-refuse-rule-election-deal-Labour-event-hung-parliament-Tories-warn-coalition-two-Brexit-vote-unpicked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:22:48.000Z" - }, - { - "title": "Truelove review: Timely assisted dying drama that leaves one question unanswered, writes CHRISTOPHER STEVENS", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923799/Truelove-review-Timely-assisted-dying-drama-leaves-one-question-unanswered-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:21:56 GMT", - "enclosure": { - "length": "10264", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79587413-0-image-a-24_1704330885399.jpg" - }, - "content": "CHRISTOPHER STEVENS: Lying in a hospital bed after a failed attempt to hang himself, and riddled with cancer , old Tom (Karl Johnson) summed up the bitter irony of his predicament.", - "contentSnippet": "CHRISTOPHER STEVENS: Lying in a hospital bed after a failed attempt to hang himself, and riddled with cancer , old Tom (Karl Johnson) summed up the bitter irony of his predicament.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923799/Truelove-review-Timely-assisted-dying-drama-leaves-one-question-unanswered-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:21:56.000Z" - }, - { - "title": "New Year mortgage price war could boost Tory poll hopes by taking pressure off household finances as HSBC becomes the first major bank to offer fixed-rate deals under 4%", - "link": "https://www.dailymail.co.uk/news/article-12924565/New-Year-mortgage-price-war-boosts-Tory-poll-hopes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:17:32 GMT", - "enclosure": { - "length": "10546", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596027-0-image-a-56_1704328184329.jpg" - }, - "content": "Rishi Sunak hits the road today to drive home his pledge to put more money in people's pockets with a National Insurance cut starting on Saturday.", - "contentSnippet": "Rishi Sunak hits the road today to drive home his pledge to put more money in people's pockets with a National Insurance cut starting on Saturday.", - "guid": "https://www.dailymail.co.uk/news/article-12924565/New-Year-mortgage-price-war-boosts-Tory-poll-hopes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:17:32.000Z" - }, - { - "title": "Reform vows to fight for EVERY seat as defiant leader Richard Tice rules out an election pact with the Conservatives despite fears the right-wing vote could be split", - "link": "https://www.dailymail.co.uk/news/article-12924255/Reform-vows-fight-seat-defiant-leader-Richard-Tice-rules-election-pact-Conservatives-despite-fears-right-wing-vote-split.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:15:54 GMT", - "enclosure": { - "length": "9868", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593235-0-image-a-39_1704321920011.jpg" - }, - "content": "Reform's leader Richard Tice used a press conference yesterday to warn of an economic crisis under Labour, which he branded 'Starmergeddon', and vowed to stand candidates in every seat.", - "contentSnippet": "Reform's leader Richard Tice used a press conference yesterday to warn of an economic crisis under Labour, which he branded 'Starmergeddon', and vowed to stand candidates in every seat.", - "guid": "https://www.dailymail.co.uk/news/article-12924255/Reform-vows-fight-seat-defiant-leader-Richard-Tice-rules-election-pact-Conservatives-despite-fears-right-wing-vote-split.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:15:54.000Z" - }, - { - "title": "ROBERT HARDMAN: It was one hell of a fight from Luke Littler, but there was to be no fairy tale ending for the 16-year-old boy wonder at the World Darts final", - "link": "https://www.dailymail.co.uk/debate/article-12924389/ROBERT-HARDMAN-one-hell-fight-Luke-Littler-no-fairy-tale-ending-16-year-old-boy-wonder-World-Darts-final.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:14:16 GMT", - "enclosure": { - "length": "4355", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79594329-0-image-a-7_1704325173797.jpg" - }, - "content": "ROBERT HARDMAN: In the battle of the two Lukes, it was Luke the Nuke, the irrepressibly cheerful debutant, who was edged out by the clinical throwing of aptly named 'Cool Hand' Luke Humphries.", - "contentSnippet": "ROBERT HARDMAN: In the battle of the two Lukes, it was Luke the Nuke, the irrepressibly cheerful debutant, who was edged out by the clinical throwing of aptly named 'Cool Hand' Luke Humphries.", - "guid": "https://www.dailymail.co.uk/debate/article-12924389/ROBERT-HARDMAN-one-hell-fight-Luke-Littler-no-fairy-tale-ending-16-year-old-boy-wonder-World-Darts-final.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:14:16.000Z" - }, - { - "title": "Jack Grealish burglary gang 'tried to raid his mansion a month before \u00a31m attack but were scared off by police' after he broke silence following the 'traumatic' incident", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924481/Jack-Grealish-burglary-gang-tried-raid-mansion-month-prior-attack.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 01:05:24 GMT", - "enclosure": { - "length": "10191", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596331-0-image-a-122_1704329142496.jpg" - }, - "content": "Jack Grealish's mansion was raided\u00a0for \u00a31million worth of jewellery by thieves on Boxing Day in Cheshire.", - "contentSnippet": "Jack Grealish's mansion was raided\u00a0for \u00a31million worth of jewellery by thieves on Boxing Day in Cheshire.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924481/Jack-Grealish-burglary-gang-tried-raid-mansion-month-prior-attack.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T01:05:24.000Z" - }, - { - "title": "Luke Littler vows to 'come back and win it' after his extraordinary run at World Darts Championship ends in defeat against Luke Humphries... but teenage darts sensation admits he may not be in another final for 'five or 10 years'", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12923173/Luke-Littler-PDC-World-championship-darts-Luke-Humphries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:54:19 GMT", - "enclosure": { - "length": "10317", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595565-0-image-a-17_1704326832445.jpg" - }, - "content": "Luke Littler\u00a0has vowed to go one better at the PDC World Championship after losing to Luke Humphries in the final at Alexandra Palace.", - "contentSnippet": "Luke Littler\u00a0has vowed to go one better at the PDC World Championship after losing to Luke Humphries in the final at Alexandra Palace.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12923173/Luke-Littler-PDC-World-championship-darts-Luke-Humphries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:54:19.000Z" - }, - { - "title": "Jeffrey Epstein's brother said if the pedophile had revealed what he knew about Trump and Clinton in 2016 the 'election would have to be canceled'", - "link": "https://www.dailymail.co.uk/news/article-12924305/jeffrey-epstein-bill-clinton-donald-trump-2016-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:36:44 GMT", - "enclosure": { - "length": "9140", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79594215-0-image-a-21_1704324835320.jpg" - }, - "content": "Mark Epstein, Jeffrey Epstein's brother, claimed that Jeffrey told him in 2016 he had explosive information which would derail the election. He did not provide details.", - "contentSnippet": "Mark Epstein, Jeffrey Epstein's brother, claimed that Jeffrey told him in 2016 he had explosive information which would derail the election. He did not provide details.", - "guid": "https://www.dailymail.co.uk/news/article-12924305/jeffrey-epstein-bill-clinton-donald-trump-2016-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:36:44.000Z" - }, - { - "title": "The celebrity mums who are cleaning up with baby bath ranges", - "link": "https://www.dailymail.co.uk/femail/article-12923491/The-celebrity-mums-cleaning-baby-bath-ranges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:34:45 GMT", - "enclosure": { - "length": "11276", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590689-0-image-a-19_1704318127285.jpg" - }, - "content": "With the help of her three young children, Lucy Tobin put the baby bath ranges from Kylie Jenner, Emma Bunton and Rochelle Humes, plus those by US actresses Kristen Bell and Jessica Alba, to the test.", - "contentSnippet": "With the help of her three young children, Lucy Tobin put the baby bath ranges from Kylie Jenner, Emma Bunton and Rochelle Humes, plus those by US actresses Kristen Bell and Jessica Alba, to the test.", - "guid": "https://www.dailymail.co.uk/femail/article-12923491/The-celebrity-mums-cleaning-baby-bath-ranges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:34:45.000Z" - }, - { - "title": "Elvis Presley is back in the building as an AI holograph of The King is set for the stage in Britain - following the success of ABBA's digital avatars", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924209/Elvis-Presley-building-AI-holograph-King-set-stage-Britain-following-success-ABBAs-digital-avatars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:31:53 GMT", - "enclosure": { - "length": "9532", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79591361-0-image-a-71_1704319515062.jpg" - }, - "content": "Using artificial intelligence and holographic projection, Elvis Evolution plans to take audiences through every step of The King's life and career complete with a life-sized digital performing Elvis.", - "contentSnippet": "Using artificial intelligence and holographic projection, Elvis Evolution plans to take audiences through every step of The King's life and career complete with a life-sized digital performing Elvis.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924209/Elvis-Presley-building-AI-holograph-King-set-stage-Britain-following-success-ABBAs-digital-avatars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:31:53.000Z" - }, - { - "title": "Olympic rugby player Ilona Maher, 27, is praised for candidly revealing her CELLULITE to prove that 'everyone has it' no matter how 'fit or athletic' they are", - "link": "https://www.dailymail.co.uk/femail/article-12923233/Olympian-Ilona-Maher-praise-cellulite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:22:05 GMT", - "enclosure": { - "length": "10739", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79583353-0-image-a-22_1704306362716.jpg" - }, - "content": "The 27-year-old athlete, who was first thrust into the spotlight when she made her Team USA debut in\u00a02018, took to TikTok to address the fraught issue of body image, specifically that of her visible cellulite.", - "contentSnippet": "The 27-year-old athlete, who was first thrust into the spotlight when she made her Team USA debut in\u00a02018, took to TikTok to address the fraught issue of body image, specifically that of her visible cellulite.", - "guid": "https://www.dailymail.co.uk/femail/article-12923233/Olympian-Ilona-Maher-praise-cellulite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:22:05.000Z" - }, - { - "title": "KIERAN GILL: Ale flows as smoothly as the big scores in beer-drenched fever dream... Luke Humphries and Luke Littler put on a show as fancy dress-wearing punters were once again treated at this unique sporting event", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12924049/Luke-Littler-Luke-Humphries-fever-dream.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:08:20 GMT", - "enclosure": { - "length": "13260", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595283-0-image-a-80_1704326422909.jpg" - }, - "content": "KIERAN GILL AT ALEXANDRA PALACE: Littler's position as the fan-favourite ahead of Humphries was laid bare during the walk-ons - cheers for 'the Nuke', jeers for 'Cool Hand'.", - "contentSnippet": "KIERAN GILL AT ALEXANDRA PALACE: Littler's position as the fan-favourite ahead of Humphries was laid bare during the walk-ons - cheers for 'the Nuke', jeers for 'Cool Hand'.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924049/Luke-Littler-Luke-Humphries-fever-dream.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:08:20.000Z" - }, - { - "title": "SNP plan 'tax on shopping'. Backlash as ministers consider new levy on supermarkets - amid fears costs will be passed on to customers", - "link": "https://www.dailymail.co.uk/news/article-12923965/SNP-plan-tax-shopping-Backlash-ministers-consider-new-levy-supermarkets-amid-fears-costs-passed-customers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:06:24 GMT", - "enclosure": { - "length": "7991", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79589277-0-image-m-73_1704316555924.jpg" - }, - "content": "Hard-pressed Scots face the threat of soaring food bills as SNP ministers line up a punishing new tax on shops and supermarkets. The Scottish Government is preparing to bring back a controversial tax.", - "contentSnippet": "Hard-pressed Scots face the threat of soaring food bills as SNP ministers line up a punishing new tax on shops and supermarkets. The Scottish Government is preparing to bring back a controversial tax.", - "guid": "https://www.dailymail.co.uk/news/article-12923965/SNP-plan-tax-shopping-Backlash-ministers-consider-new-levy-supermarkets-amid-fears-costs-passed-customers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:06:24.000Z" - }, - { - "title": "RICHARD KAY: After charity founder Camila Batmanghelidjh dies at 61... Why WERE so many stars and politicians dazzled by the queen of Kids Company?", - "link": "https://www.dailymail.co.uk/debate/article-12924217/charity-founder-Camila-Batmanghelidjh-Kids-Company.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:04:32 GMT", - "enclosure": { - "length": "13688", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79591765-0-image-a-1_1704320650623.jpg" - }, - "content": "Eight years ago, her reign as Britain's undisputed charity queen came to a shuddering halt as Kids Company, which she set up to help vulnerable children, collapsed", - "contentSnippet": "Eight years ago, her reign as Britain's undisputed charity queen came to a shuddering halt as Kids Company, which she set up to help vulnerable children, collapsed", - "guid": "https://www.dailymail.co.uk/debate/article-12924217/charity-founder-Camila-Batmanghelidjh-Kids-Company.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:04:32.000Z" - }, - { - "title": "STEPHEN GLOVER: Is Keir Starmer wise to cosy up to Tony Blair, a man who has benefited financially from a panoply of autocrats?", - "link": "https://www.dailymail.co.uk/debate/article-12924087/Keir-Starmer-wise-cosy-Tony-Blair-autocrats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:04:18 GMT", - "enclosure": { - "length": "9959", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590477-0-image-a-46_1704317826219.jpg" - }, - "content": "After Sir Tony Blair was condemned by the 2016 Chilcot Inquiry into the Iraq War, many assumed that the former Prime Minister would disappear from public life.", - "contentSnippet": "After Sir Tony Blair was condemned by the 2016 Chilcot Inquiry into the Iraq War, many assumed that the former Prime Minister would disappear from public life.", - "guid": "https://www.dailymail.co.uk/debate/article-12924087/Keir-Starmer-wise-cosy-Tony-Blair-autocrats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:04:18.000Z" - }, - { - "title": "Rightmove saw RECORD number of new property listings on Boxing Day", - "link": "https://www.dailymail.co.uk/money/mortgageshome/article-12923195/Rightmove-saw-RECORD-number-new-property-listings-Boxing-Day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:01:49 GMT", - "enclosure": { - "length": "7586", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/16/79579425-0-image-a-20_1704299904984.jpg" - }, - "content": "Britain's biggest online property portal said it saw a 26% jump in new seller listings on 26 December, compared to the previous record last year.", - "contentSnippet": "Britain's biggest online property portal said it saw a 26% jump in new seller listings on 26 December, compared to the previous record last year.", - "guid": "https://www.dailymail.co.uk/money/mortgageshome/article-12923195/Rightmove-saw-RECORD-number-new-property-listings-Boxing-Day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:01:49.000Z" - }, - { - "title": "I shed seven stone ahead of best friend's wedding by ditching fizzy drinks and crisps - but still ate chocolate and carbs", - "link": "https://www.dailymail.co.uk/femail/article-12922911/I-shed-seven-stone-ahead-best-friends-wedding-ditching-fizzy-drinks-crisps-ate-chocolate-carbs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 00:01:46 GMT", - "enclosure": { - "length": "10913", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590509-0-image-a-63_1704317990065.jpg" - }, - "content": "Dawn James, 33, from Ross-on-Wye in Herefordshire, had been struggling for years to lose weight at 19st 7Ibs. when her best friend asked her to be maid of honour she decided to make a change.", - "contentSnippet": "Dawn James, 33, from Ross-on-Wye in Herefordshire, had been struggling for years to lose weight at 19st 7Ibs. when her best friend asked her to be maid of honour she decided to make a change.", - "guid": "https://www.dailymail.co.uk/femail/article-12922911/I-shed-seven-stone-ahead-best-friends-wedding-ditching-fizzy-drinks-crisps-ate-chocolate-carbs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T00:01:46.000Z" - }, - { - "title": "Shannen Doherty hopes she can 'squeeze out another 3-5 years' to allow research to progress amid 'incurable' breast cancer battle", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924299/Shannen-Doherty-wants-squeeze-3-5-years-amid-cancer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 23:53:56 GMT", - "enclosure": { - "length": "8421", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593431-0-image-m-61_1704322433220.jpg" - }, - "content": "The 52-year-old former child star has undergone a mastectomy, chemotherapy, radiation, and brain surgery since she was diagnosed in 2015", - "contentSnippet": "The 52-year-old former child star has undergone a mastectomy, chemotherapy, radiation, and brain surgery since she was diagnosed in 2015", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924299/Shannen-Doherty-wants-squeeze-3-5-years-amid-cancer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T23:53:56.000Z" - }, - { - "title": "What nightmares are made of: Hercules, the monstrous funnel-web spider breaks record", - "link": "https://www.dailymail.co.uk/news/article-12924137/What-nightmares-Hercules-monstrous-funnel-web-spider-breaks-record.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 23:41:59 GMT", - "enclosure": { - "length": "5094", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79591089-0-image-a-14_1704323861152.jpg" - }, - "content": "Nightmares come to life as Hercules, the colossal funnel-web spider, shatters records.", - "contentSnippet": "Nightmares come to life as Hercules, the colossal funnel-web spider, shatters records.", - "guid": "https://www.dailymail.co.uk/news/article-12924137/What-nightmares-Hercules-monstrous-funnel-web-spider-breaks-record.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T23:41:59.000Z" - }, - { - "title": "The Traitors review: A word out of place, a careless gasp and you're exposed. Yes, The Traitors is back and I love it. I must be a horrible person, writes CHRISTOPHER STEVENS", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924009/The-Traitors-review-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 23:30:16 GMT", - "enclosure": { - "length": "4308", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79589975-0-Claudia_will_once_again_host_the_nail_biting_psychological_reali-a-25_1704319071474.jpg" - }, - "content": "CHRISTOPHER STEVENS: Last year, the game began with three Traitors. This year, there are four, though the identity of the fourth won't be aired until tonight.", - "contentSnippet": "CHRISTOPHER STEVENS: Last year, the game began with three Traitors. This year, there are four, though the identity of the fourth won't be aired until tonight.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924009/The-Traitors-review-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T23:30:16.000Z" - }, - { - "title": "Can you match the celebrity to their withering school report? Answer which star was called 'Imbecilic, lunatic, impertinent & smug', who was accused of 'Spending too much time giggling over silly love letters', and who was labelled 'On the road to failure'", - "link": "https://www.dailymail.co.uk/news/article-12924055/Can-match-celebrity-withering-school-report-Answer-star-called-Imbecilic-lunatic-impertinent-smug-accused-Spending-time-giggling-silly-love-letters-labelled-road-failure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 23:25:38 GMT", - "enclosure": { - "length": "10610", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590671-0-image-a-18_1704318312587.jpg" - }, - "content": "He was the first actor to direct himself in an Oscar-winning performance and the first to be sent to the House of Lords. But Laurence Olivier's theatre debut didn't attract a rave review.", - "contentSnippet": "He was the first actor to direct himself in an Oscar-winning performance and the first to be sent to the House of Lords. But Laurence Olivier's theatre debut didn't attract a rave review.", - "guid": "https://www.dailymail.co.uk/news/article-12924055/Can-match-celebrity-withering-school-report-Answer-star-called-Imbecilic-lunatic-impertinent-smug-accused-Spending-time-giggling-silly-love-letters-labelled-road-failure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T23:25:38.000Z" - }, - { - "title": "Swimmer who drowned at Hutt Gully Beach is identified as Irish tourist who flew to Australia to visit his daughter", - "link": "https://www.dailymail.co.uk/news/article-12924061/Swimmer-drowned-Hutt-Gully-Beach-identified-Irish-tourist-flew-Australia-visit-daughter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 23:18:03 GMT", - "enclosure": { - "length": "8984", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79592473-0-image-a-18_1704323556369.jpg" - }, - "content": "John Holland, 63, drowned after being caught in a rip immediately after entering the water at Hutt Gully Beach, south of Anglesea on the Great Ocean Road, Victoria about 2.20pm on Monday.", - "contentSnippet": "John Holland, 63, drowned after being caught in a rip immediately after entering the water at Hutt Gully Beach, south of Anglesea on the Great Ocean Road, Victoria about 2.20pm on Monday.", - "guid": "https://www.dailymail.co.uk/news/article-12924061/Swimmer-drowned-Hutt-Gully-Beach-identified-Irish-tourist-flew-Australia-visit-daughter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T23:18:03.000Z" - }, - { - "title": "LIBBY PURVES: To mark 100 years of the Shipping Forecast, one sailor makes a lyrical tribute... 'A blessed incantation that wraps gently around our coast to keep us safe'", - "link": "https://www.dailymail.co.uk/debate/article-12924059/LIBBY-PURVES-mark-100-years-Shipping-Forecast-one-sailor-makes-lyrical-tribute-blessed-incantation-wraps-gently-coast-safe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 23:09:11 GMT", - "enclosure": { - "length": "10735", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590393-0-image-a-124_1704317941365.jpg" - }, - "content": "LIBBY PURVES:The Shipping Forecast on BBC Radio 4 is both reality and romance: a warning to seafarers, but a familiar reassurance to drowsers ashore.", - "contentSnippet": "LIBBY PURVES:The Shipping Forecast on BBC Radio 4 is both reality and romance: a warning to seafarers, but a familiar reassurance to drowsers ashore.", - "guid": "https://www.dailymail.co.uk/debate/article-12924059/LIBBY-PURVES-mark-100-years-Shipping-Forecast-one-sailor-makes-lyrical-tribute-blessed-incantation-wraps-gently-coast-safe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T23:09:11.000Z" - }, - { - "title": "Mini bike gang that battered 90210 star Ian Ziering is notorious for terrorizing Hollywood with high-speed, booze-fueled riding on illegal machines while their groupies TWERK in the street", - "link": "https://www.dailymail.co.uk/news/article-12923787/Mini-bike-gang-90210-Ian-Ziering-brawl-terrorizing-Hollywood.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 23:03:17 GMT", - "enclosure": { - "length": "9256", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79587939-0-image-a-77_1704317795352.jpg" - }, - "content": "The 605 mini bike gang linked to the brawl involving Ian Ziering are renowned within Hollywood for performing dangerous stunts and posting videos of their twerking groupies.", - "contentSnippet": "The 605 mini bike gang linked to the brawl involving Ian Ziering are renowned within Hollywood for performing dangerous stunts and posting videos of their twerking groupies.", - "guid": "https://www.dailymail.co.uk/news/article-12923787/Mini-bike-gang-90210-Ian-Ziering-brawl-terrorizing-Hollywood.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T23:03:17.000Z" - }, - { - "title": "Apple Watch saved life of Delaware woman who suffered from carbon monoxide poisoning in her home - and she was released from the hospital New Year's Day", - "link": "https://www.dailymail.co.uk/sciencetech/article-12923919/Apple-watch-carbon-monoxide-poisoning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 23:02:52 GMT", - "enclosure": { - "length": "9776", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590179-0-image-a-14_1704318540614.jpg" - }, - "content": "Natalie Nasatka was weak from what turned out to be carbon monoxide poisoning but was saved thanks to the SOS feature on her Apple Watch. She was rushed to the hospital and has recovered.", - "contentSnippet": "Natalie Nasatka was weak from what turned out to be carbon monoxide poisoning but was saved thanks to the SOS feature on her Apple Watch. She was rushed to the hospital and has recovered.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12923919/Apple-watch-carbon-monoxide-poisoning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T23:02:52.000Z" - }, - { - "title": "I lost 50 kilos and transformed my health at 35 - these are the diet and exercise secrets I now swear by daily", - "link": "https://www.dailymail.co.uk/femail/fitness/article-12917951/I-lost-50-kilos-transformed-health-raising-four-kids-diet-exercise-secrets-swear-daily.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 22:50:12 GMT", - "enclosure": { - "length": "11188", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/05/79559905-0-image-a-6_1704259390646.jpg" - }, - "content": "A mum-of-four has shared everything she did to lose a staggering 50 kilograms and sculpt a lean, healthy physique.", - "contentSnippet": "A mum-of-four has shared everything she did to lose a staggering 50 kilograms and sculpt a lean, healthy physique.", - "guid": "https://www.dailymail.co.uk/femail/fitness/article-12917951/I-lost-50-kilos-transformed-health-raising-four-kids-diet-exercise-secrets-swear-daily.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T22:50:12.000Z" - }, - { - "title": "Dental hygienist reveals small detail that will prove if your nail salon is really using CLEAN tools - as she issues warning about the dangers of unsanitary instruments", - "link": "https://www.dailymail.co.uk/femail/article-12920519/dental-hygienist-small-nail-salon-using-clean-tools.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 22:25:10 GMT", - "enclosure": { - "length": "9344", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/16/79576395-0-image-a-31_1704298674082.jpg" - }, - "content": "TikTok content creator Jessica Marie, who works as a dental hygienist, revealed her hack when it comes to figuring out if nail techs are using clean instruments during manicures.", - "contentSnippet": "TikTok content creator Jessica Marie, who works as a dental hygienist, revealed her hack when it comes to figuring out if nail techs are using clean instruments during manicures.", - "guid": "https://www.dailymail.co.uk/femail/article-12920519/dental-hygienist-small-nail-salon-using-clean-tools.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T22:25:10.000Z" - }, - { - "title": "RUTH SUNDERLAND: For the sheer scale of corporate bullying, the Post Office scandal is in a league of its own. So will the bosses EVER be held accountable?", - "link": "https://www.dailymail.co.uk/debate/article-12924161/RUTH-SUNDERLAND-bullying-Post-Office-scandal-bosses-accountable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 22:14:47 GMT", - "enclosure": { - "length": "12553", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79591399-0-image-a-45_1704319375737.jpg" - }, - "content": "RUTH SUNDERLAND: Any miscarriage of justice takes a terrible toll. Innocent individuals have their lives ripped apart, marriages are broken, finances ruined and reputations in the gutter.", - "contentSnippet": "RUTH SUNDERLAND: Any miscarriage of justice takes a terrible toll. Innocent individuals have their lives ripped apart, marriages are broken, finances ruined and reputations in the gutter.", - "guid": "https://www.dailymail.co.uk/debate/article-12924161/RUTH-SUNDERLAND-bullying-Post-Office-scandal-bosses-accountable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T22:14:47.000Z" - }, - { - "title": "Katy Perry sports mystery band on wedding finger as she arrives home from vacation with fianc\u00e9 Orlando Bloom... five years after engagement", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924063/Katy-Perry-mystery-band-wedding-finger-fiance-Orlando-Bloom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 22:14:02 GMT", - "enclosure": { - "length": "9465", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590119-0-image-m-37_1704317342174.jpg" - }, - "content": "The singer, 39, appeared to be in high spirits and was seen making silly faces at her fianc\u00e9, Orlando Bloom, 46, as they arrived back home to Los Angeles after a New Year's getaway.", - "contentSnippet": "The singer, 39, appeared to be in high spirits and was seen making silly faces at her fianc\u00e9, Orlando Bloom, 46, as they arrived back home to Los Angeles after a New Year's getaway.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924063/Katy-Perry-mystery-band-wedding-finger-fiance-Orlando-Bloom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T22:14:02.000Z" - }, - { - "title": "Man, 40, is arrested after 'stealing a PLANE in Las Vegas and crash landing it in middle of desert - leaving marijuana joint and beer cans in cockpit'", - "link": "https://www.dailymail.co.uk/news/article-12923699/las-vegas-stolen-plane-marijuana-beer-crash-desert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 22:13:39 GMT", - "enclosure": { - "length": "8968", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79588209-0-image-a-42_1704314677478.jpg" - }, - "content": "An Idaho man is in police custody after he stole a plane in Las Vegas and landed in the middle of a California desert.", - "contentSnippet": "An Idaho man is in police custody after he stole a plane in Las Vegas and landed in the middle of a California desert.", - "guid": "https://www.dailymail.co.uk/news/article-12923699/las-vegas-stolen-plane-marijuana-beer-crash-desert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T22:13:39.000Z" - }, - { - "title": "Its invention heralded a social and sexual revolution. Now, six decades later, a remarkable sea change is taking place...\u00a0Why are so many young women turning their backs on the Pill?", - "link": "https://www.dailymail.co.uk/femail/article-12923487/Its-invention-heralded-social-sexual-revolution-six-decades-later-remarkable-sea-change-taking-place-young-women-turning-backs-Pill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 21:41:02 GMT", - "enclosure": { - "length": "10341", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79588359-0-image-a-4_1704317970145.jpg" - }, - "content": "When UK writer Sophie Cockerham canvased 61 women online - aged from 23 to 34 - almost all said they had been on the Pill at some point in their lives, but only a third had stuck with it.", - "contentSnippet": "When UK writer Sophie Cockerham canvased 61 women online - aged from 23 to 34 - almost all said they had been on the Pill at some point in their lives, but only a third had stuck with it.", - "guid": "https://www.dailymail.co.uk/femail/article-12923487/Its-invention-heralded-social-sexual-revolution-six-decades-later-remarkable-sea-change-taking-place-young-women-turning-backs-Pill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T21:41:02.000Z" - }, - { - "title": "Dietitians reveal which is really the HEALTHIER choice between ketchup and mustard", - "link": "https://www.dailymail.co.uk/femail/article-12920367/Dietitians-HEALTHIER-choice-ketchup-mustard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 21:40:14 GMT", - "enclosure": { - "length": "12417", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/02/22/79549595-0-image-m-24_1704233350738.jpg" - }, - "content": "When it comes to choosing between ketchup or mustard, which is the healthier pick? Dietitians Tina Marinaccio, Avery Zenker and Jennifer House have weighed in on the condiments.", - "contentSnippet": "When it comes to choosing between ketchup or mustard, which is the healthier pick? Dietitians Tina Marinaccio, Avery Zenker and Jennifer House have weighed in on the condiments.", - "guid": "https://www.dailymail.co.uk/femail/article-12920367/Dietitians-HEALTHIER-choice-ketchup-mustard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T21:40:14.000Z" - }, - { - "title": "Council is blasted over embarrassing mistake on road sign - but can you spot the blunder?", - "link": "https://www.dailymail.co.uk/news/article-12923507/council-blasted-road-sign-spot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 21:18:23 GMT", - "enclosure": { - "length": "6173", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587029-0-image-m-10_1704314033120.jpg" - }, - "content": "Essex County Council have erected a new sign leading up to the roundabout on the A131 on the outskirts of Chelmsford. But it has a huge spelling error.", - "contentSnippet": "Essex County Council have erected a new sign leading up to the roundabout on the A131 on the outskirts of Chelmsford. But it has a huge spelling error.", - "guid": "https://www.dailymail.co.uk/news/article-12923507/council-blasted-road-sign-spot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T21:18:23.000Z" - }, - { - "title": "I'm a plus-size traveler - other passengers complain to flight attendants about sitting next to me but I REFUSE to let trolls stop my adventures", - "link": "https://www.dailymail.co.uk/travel/article-12922907/plus-size-traveler-passengers-call-flight-attendants-horror.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 21:06:29 GMT", - "enclosure": { - "length": "10931", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79576375-0-image-a-212_1704306350109.jpg" - }, - "content": "Saibra Noel, 32, loves to travel - but sometimes struggles as a plus-sized\u00a0woman. She has detailed the difficulties of travelling with a bigger body - particularly when flying in tiny seats.", - "contentSnippet": "Saibra Noel, 32, loves to travel - but sometimes struggles as a plus-sized\u00a0woman. She has detailed the difficulties of travelling with a bigger body - particularly when flying in tiny seats.", - "guid": "https://www.dailymail.co.uk/travel/article-12922907/plus-size-traveler-passengers-call-flight-attendants-horror.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T21:06:29.000Z" - }, - { - "title": "Dragons' Den winner who landed \u00a360,000 investment from Peter Jones faces trial for 'knocking his pregnant partner unconscious'", - "link": "https://www.dailymail.co.uk/news/article-12923261/Dragons-Den-winner-landed-60-000-investment-Peter-Jones-faces-trial-knocking-pregnant-partner-unconscious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 20:58:34 GMT", - "enclosure": { - "length": "5998", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/78925637-0-Dragon_s_Den_participant_Ross_Mendham_who_won_a_60_000_investmen-a-7_1704313429708.jpg" - }, - "content": "Ross Mendham, 40, is said to have punched his partner, Annabelle Weedall, who was then 32 weeks pregnant, in the face causing her to lose consciousness on December 2 last year.", - "contentSnippet": "Ross Mendham, 40, is said to have punched his partner, Annabelle Weedall, who was then 32 weeks pregnant, in the face causing her to lose consciousness on December 2 last year.", - "guid": "https://www.dailymail.co.uk/news/article-12923261/Dragons-Den-winner-landed-60-000-investment-Peter-Jones-faces-trial-knocking-pregnant-partner-unconscious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T20:58:34.000Z" - }, - { - "title": "How shellfish! Fury as council nitwits order fishmonger to take down \u00a3500 knitted display above his shop despite the locals loving it", - "link": "https://www.dailymail.co.uk/news/article-12923643/How-shellfish-Fury-council-nitwits-order-fishmonger-500-knitted-display-shop-despite-locals-loving-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 20:45:30 GMT", - "enclosure": { - "length": "10115", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79586063-0-image-m-29_1704311927269.jpg" - }, - "content": "When a shark appeared in the first-floor window at his premises, fishmonger Glenn Graney, from Hertford, showed he had a flair for the unusual. But there was a catch when he added a knitted display.", - "contentSnippet": "When a shark appeared in the first-floor window at his premises, fishmonger Glenn Graney, from Hertford, showed he had a flair for the unusual. But there was a catch when he added a knitted display.", - "guid": "https://www.dailymail.co.uk/news/article-12923643/How-shellfish-Fury-council-nitwits-order-fishmonger-500-knitted-display-shop-despite-locals-loving-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T20:45:30.000Z" - }, - { - "title": "Horoscope today: Daily guide to what the stars have in store for YOU - January 4, 2024", - "link": "https://www.dailymail.co.uk/femail/article-12923351/horoscope-today-daily-star-sign-january-4-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 20:40:38 GMT", - "enclosure": { - "length": "8756", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79586381-0-image-a-6_1704311694599.jpg" - }, - "content": "OSCAR CAINER: Today, as Mars (the power planet) moves into earthy Capricorn, it gears up to create a 'talent triangle' involving Jupiter and the cosmic teacher Saturn.", - "contentSnippet": "OSCAR CAINER: Today, as Mars (the power planet) moves into earthy Capricorn, it gears up to create a 'talent triangle' involving Jupiter and the cosmic teacher Saturn.", - "guid": "https://www.dailymail.co.uk/femail/article-12923351/horoscope-today-daily-star-sign-january-4-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T20:40:38.000Z" - }, - { - "title": "Police officer and his civilian worker wife 'shared pictures and bodycam footage from death scenes'", - "link": "https://www.dailymail.co.uk/news/article-12923569/police-officer-civilian-wife-share-images-death-scenes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 20:02:18 GMT", - "enclosure": { - "length": "9656", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79586357-0-image-m-41_1704311389234.jpg" - }, - "content": "Thre Lancashire Police staff members are charged with offences including unauthorised access to police computers and disclosing sensitive information.", - "contentSnippet": "Thre Lancashire Police staff members are charged with offences including unauthorised access to police computers and disclosing sensitive information.", - "guid": "https://www.dailymail.co.uk/news/article-12923569/police-officer-civilian-wife-share-images-death-scenes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T20:02:18.000Z" - }, - { - "title": "'Falling asleep on her shoulder was pretty embarrassing': Find out if it's a match on this week's Blind Date", - "link": "https://www.dailymail.co.uk/femail/article-12923447/Falling-asleep-shoulder-pretty-embarrassing-match-weeks-Blind-Date.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 20:02:13 GMT", - "enclosure": { - "length": "8723", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79582929-0-image-a-4_1704305912675.jpg" - }, - "content": "Every week, FEMAIL asks two singletons to report back from their blind date. This week it's Alisha, 26, and Ryan, 27, but will romance be on the cards for these two hopefuls?", - "contentSnippet": "Every week, FEMAIL asks two singletons to report back from their blind date. This week it's Alisha, 26, and Ryan, 27, but will romance be on the cards for these two hopefuls?", - "guid": "https://www.dailymail.co.uk/femail/article-12923447/Falling-asleep-shoulder-pretty-embarrassing-match-weeks-Blind-Date.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T20:02:13.000Z" - }, - { - "title": "Carol Vorderman calls Tory peer Shaun Bailey 'a misogynist' after he said she should not comment on politics while sharing snaps 'of her bum and her boobs' online", - "link": "https://www.dailymail.co.uk/news/article-12923537/Carol-Vorderman-Tory-Shaun-Bailey-misogynist-politics-bum-boobs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 19:51:46 GMT", - "enclosure": { - "length": "5406", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79584633-0-image-m-38_1704308892320.jpg" - }, - "content": "A Tory peer has become embroiled in a sexism row after saying Carol Vorderman (pictured) cannot comment on politics while sharing photographs 'of her bum and her boobs' online.", - "contentSnippet": "A Tory peer has become embroiled in a sexism row after saying Carol Vorderman (pictured) cannot comment on politics while sharing photographs 'of her bum and her boobs' online.", - "guid": "https://www.dailymail.co.uk/news/article-12923537/Carol-Vorderman-Tory-Shaun-Bailey-misogynist-politics-bum-boobs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T19:51:46.000Z" - }, - { - "title": "NANA AKUA: Appointing transgender 'activist' Munroe Bergdorf to represent British women would be laughable if it weren't so dangerous - it's an appalling decision", - "link": "https://www.dailymail.co.uk/debate/article-12923701/NANA-AKUA-Appointing-transgender-activist-Munroe-Bergdorf-represent-British-women-laughable-werent-dangerous-appalling-decision.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 19:49:34 GMT", - "enclosure": { - "length": "8707", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79585567-0-image-m-56_1704311073360.jpg" - }, - "content": "NANA AKUA: Munroe Bergdorf (pictured), born a man but now identifies as a woman, has been appointed as UN Women UK's first 'UK champion' - an ambassadorial role to empower females.", - "contentSnippet": "NANA AKUA: Munroe Bergdorf (pictured), born a man but now identifies as a woman, has been appointed as UN Women UK's first 'UK champion' - an ambassadorial role to empower females.", - "guid": "https://www.dailymail.co.uk/debate/article-12923701/NANA-AKUA-Appointing-transgender-activist-Munroe-Bergdorf-represent-British-women-laughable-werent-dangerous-appalling-decision.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T19:49:34.000Z" - }, - { - "title": "More bad news for Apple: iPhone 15 Pro users outraged after finding back edges are 'peeling' due to a possible manufacturing defect", - "link": "https://www.dailymail.co.uk/sciencetech/article-12923231/Apple-iPhone-15-Pro-edges-peeling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 19:26:11 GMT", - "enclosure": { - "length": "7916", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/17/79581417-0-image-a-4_1704304062344.jpg" - }, - "content": "Some Apple users are complaining that the iPhone 15 Pro is defective after the phones started peeling. The users said they experienced the issue less than two months after buying the phone.", - "contentSnippet": "Some Apple users are complaining that the iPhone 15 Pro is defective after the phones started peeling. The users said they experienced the issue less than two months after buying the phone.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12923231/Apple-iPhone-15-Pro-edges-peeling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T19:26:11.000Z" - }, - { - "title": "The best spas of 2024: From the one that caters to cancer patients, to the one perfect for the sleep-deprived!", - "link": "https://www.dailymail.co.uk/home/you/article-12884989/The-best-spas-2024-pampering.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 03 Jan 2024 14:34:47 GMT", - "enclosure": { - "length": "9880", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/27/11/79212781-0-image-m-58_1703678061386.jpg" - }, - "content": "From Britain's best day stays to a luxury Mediterranean weight-loss retreat, here's our pick of 2024's starriest spas.", - "contentSnippet": "From Britain's best day stays to a luxury Mediterranean weight-loss retreat, here's our pick of 2024's starriest spas.", - "guid": "https://www.dailymail.co.uk/home/you/article-12884989/The-best-spas-2024-pampering.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-03T14:34:47.000Z" - }, - { - "title": "Is this the end of the road for Pontins? Holiday firm closes third holiday park for good as only three others remain - as workers say they were sacked by text", - "link": "https://www.dailymail.co.uk/news/article-12925511/Is-end-road-Pontins-Holiday-firm-closes-holiday-park-good-three-remain-workers-say-sacked-text.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 11:11:00 GMT", - "enclosure": { - "length": "7223", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608293-0-image-m-23_1704363628425.jpg" - }, - "content": "Staff at the Southport park site in Merseyside claim they found out by text they had lost their jobs just hours before the shock announcement was made.", - "contentSnippet": "Staff at the Southport park site in Merseyside claim they found out by text they had lost their jobs just hours before the shock announcement was made.", - "guid": "https://www.dailymail.co.uk/news/article-12925511/Is-end-road-Pontins-Holiday-firm-closes-holiday-park-good-three-remain-workers-say-sacked-text.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T11:11:00.000Z" - }, - { - "title": "Lorry driver, 69, who killed female NHS paediatrician, 41, had 'every opportunity' to see her in his mirrors before turning and knocking her off her bike, court told", - "link": "https://www.dailymail.co.uk/news/article-12925871/lorry-driver-nhs-pediatrician-opportunity-mirrors-court.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 11:10:17 GMT", - "enclosure": { - "length": "4931", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/46380745-0-Dr_Marta_Krawiec-a-17_1704366525769.jpg" - }, - "content": "Dr Marta Krawiec, 41, was struck by 69-year-old Kevin Allen's Mercedes truck on 4 August 2021 after he allegedly failed to indicate before turning.", - "contentSnippet": "Dr Marta Krawiec, 41, was struck by 69-year-old Kevin Allen's Mercedes truck on 4 August 2021 after he allegedly failed to indicate before turning.", - "guid": "https://www.dailymail.co.uk/news/article-12925871/lorry-driver-nhs-pediatrician-opportunity-mirrors-court.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T11:10:17.000Z" - }, - { - "title": "Classic FM signs Stephen Mangan to present a brand new Sunday show in latest shake-up as Dan Walker is set to host breakfast slot", - "link": "https://www.dailymail.co.uk/tvshowbiz/stephen-mangan/article-12925801/Classic-FM-signs-Stephen-Mangan-present-brand-new-Sunday-latest-shake-Dan-Walker-set-host-breakfast-slot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 11:07:32 GMT", - "enclosure": { - "length": "9855", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79609269-0-image-a-92_1704366049119.jpg" - }, - "content": "On Thursday, the actor, 55, completed Classic FM's all-star line-up which includes Dan Walker, Alexander Armstrong, Myleene Klass, Margherita Taylor, and Joanna Gosling.", - "contentSnippet": "On Thursday, the actor, 55, completed Classic FM's all-star line-up which includes Dan Walker, Alexander Armstrong, Myleene Klass, Margherita Taylor, and Joanna Gosling.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/stephen-mangan/article-12925801/Classic-FM-signs-Stephen-Mangan-present-brand-new-Sunday-latest-shake-Dan-Walker-set-host-breakfast-slot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T11:07:32.000Z" - }, - { - "title": "Ten ways to avoid inheritance tax legally", - "link": "https://www.dailymail.co.uk/money/pensions/article-4985392/How-avoid-inheritance-tax-legally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 11:05:45 GMT", - "enclosure": { - "length": "8258", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/02/17/07/67707603-0-image-m-2_1676620195607.jpg" - }, - "content": "There are many legal ways to dodge the dreaded 40 per cent 'death tax' if you want to pass on the maximum sum possible and are prepared to plan ahead.", - "contentSnippet": "There are many legal ways to dodge the dreaded 40 per cent 'death tax' if you want to pass on the maximum sum possible and are prepared to plan ahead.", - "guid": "https://www.dailymail.co.uk/money/pensions/article-4985392/How-avoid-inheritance-tax-legally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T11:05:45.000Z" - }, - { - "title": "Pantomime is hit by Me Too incident after 'audience member gropes one of the ugly sisters' in Cinderella performance in Chipping Norton", - "link": "https://www.dailymail.co.uk/news/article-12925829/Pantomime-hit-incident-audience-member-gropes-one-ugly-sisters-Cinderella-performance-Chipping-Norton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:59:23 GMT", - "enclosure": { - "length": "13349", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608653-0-image-a-27_1704364222240.jpg" - }, - "content": "Cast members at the Chipping Norton Theatre, in Oxfordshire, were left distraught after one of the ugly sisters was said to have been touched 'inappropriately' by the man.", - "contentSnippet": "Cast members at the Chipping Norton Theatre, in Oxfordshire, were left distraught after one of the ugly sisters was said to have been touched 'inappropriately' by the man.", - "guid": "https://www.dailymail.co.uk/news/article-12925829/Pantomime-hit-incident-audience-member-gropes-one-ugly-sisters-Cinderella-performance-Chipping-Norton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:59:23.000Z" - }, - { - "title": "Respected IFS think-tank warns Labour would not be able to cut taxes and splurge more money on public services... as charts show how Covid debt and spiralling NHS and pensions costs have trapped government", - "link": "https://www.dailymail.co.uk/news/article-12923021/IFS-Labour-Tories-tax-public-services-Covid-debt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:55:19 GMT", - "enclosure": { - "length": "4926", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/78117101-0-image-m-7_1704365447713.jpg" - }, - "content": "The respected IFS think-tank has poured cold water on signals from both main parties that they will ease the burden on Brits.", - "contentSnippet": "The respected IFS think-tank has poured cold water on signals from both main parties that they will ease the burden on Brits.", - "guid": "https://www.dailymail.co.uk/news/article-12923021/IFS-Labour-Tories-tax-public-services-Covid-debt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:55:19.000Z" - }, - { - "title": "Has Crown Princess Amalia found her 'Prince Charming'? Dutch magazine links future Queen with Spanish-born sculptor who is heir to the defunct Bulgarian throne", - "link": "https://www.dailymail.co.uk/femail/article-12925531/Has-Crown-Princess-Amalia-Prince-Charming-Dutch-magazine-links-future-Queen-Spanish-born-sculptor-heir-defunct-Bulgarian-throne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 10:53:50 GMT", - "enclosure": { - "length": "9935", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608717-0-image-a-4_1704364324364.jpg" - }, - "content": "Dutch magazine Priv\u00e9 has linked the heir to the Dutch throne and the Spanish-born sculptor who is from the Bulgarian royal bloodline.", - "contentSnippet": "Dutch magazine Priv\u00e9 has linked the heir to the Dutch throne and the Spanish-born sculptor who is from the Bulgarian royal bloodline.", - "guid": "https://www.dailymail.co.uk/femail/article-12925531/Has-Crown-Princess-Amalia-Prince-Charming-Dutch-magazine-links-future-Queen-Spanish-born-sculptor-heir-defunct-Bulgarian-throne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T10:53:50.000Z" - }, - { - "title": "ISIS claims responsibility for Iran cemetery bloodbath that left nearly 100 dead", - "link": "https://www.dailymail.co.uk/news/article-12927027/ISIS-claims-responsibility-Iran-cemetery-bloodbath-left-nearly-100-dead.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:08:08 GMT", - "enclosure": { - "length": "8336", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79573161-0-Iranian_emergency_services_arrive_at_the_site_where_two_explosio-a-6_1704385752321.jpg" - }, - "content": "Two explosions tore through the southeastern city of Kerman yesterday where thousands had gathered to\u00a0mark the four-year anniversary of Qassem Soleimani's killing.", - "contentSnippet": "Two explosions tore through the southeastern city of Kerman yesterday where thousands had gathered to\u00a0mark the four-year anniversary of Qassem Soleimani's killing.", - "guid": "https://www.dailymail.co.uk/news/article-12927027/ISIS-claims-responsibility-Iran-cemetery-bloodbath-left-nearly-100-dead.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:08:08.000Z" - }, - { - "title": "Perry High School shooter injures two Iowa students and an administrator on first day back from winter break before turning the gun on themself", - "link": "https://www.dailymail.co.uk/news/article-12926585/Shooting-multiple-victims-Perry-High-School-Iowa.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:07:37 GMT", - "enclosure": { - "length": "8584", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79617401-0-image-a-39_1704381705388.jpg" - }, - "content": "Multiple people are feared to be victims\u00a0after a shooting occurred at Perry High School in Iowa on Thursday morning.", - "contentSnippet": "Multiple people are feared to be victims\u00a0after a shooting occurred at Perry High School in Iowa on Thursday morning.", - "guid": "https://www.dailymail.co.uk/news/article-12926585/Shooting-multiple-victims-Perry-High-School-Iowa.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:07:37.000Z" - }, - { - "title": "Luke Littler's family claim 'jealous and nasty parents' have been 'trying to put him off' with jibes about his age for YEARS... accusing mums and dads of other players of 'starting a rumour that he was LYING about his age'", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12924195/Luke-Littlers-family-claim-jealous-nasty-parents-trying-jibes-age-YEARS-accusing-mums-dads-players-starting-rumour-LYING-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:07:04 GMT", - "enclosure": { - "length": "10734", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79593897-0-image-a-55_1704323549527.jpg" - }, - "content": "talkSPORT's Andy Goldstein thought that Littler was in his mid-30s but the release of Littler's birth certificate has ended any speculation about his age.", - "contentSnippet": "talkSPORT's Andy Goldstein thought that Littler was in his mid-30s but the release of Littler's birth certificate has ended any speculation about his age.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924195/Luke-Littlers-family-claim-jealous-nasty-parents-trying-jibes-age-YEARS-accusing-mums-dads-players-starting-rumour-LYING-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:07:04.000Z" - }, - { - "title": "Epstein list reignites suspicions that the pedophile financier was working for Mossad and blackmailing the rich and famous after ex-Israeli PM Ehud Barak was revealed to have met him at least 36 times", - "link": "https://www.dailymail.co.uk/news/article-12926465/jeffrey-epstein-list-friendship-israeli-prime-minister-ehud-barak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:06:56 GMT", - "enclosure": { - "length": "8062", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619985-0-image-m-33_1704386056814.jpg" - }, - "content": "The appearance of ex-Israeli Prime Minister Ehud Barak's name on the Epstein list has fueled previous claims the pedophile was a spy for Israel who mined Prince Andrew for intel.", - "contentSnippet": "The appearance of ex-Israeli Prime Minister Ehud Barak's name on the Epstein list has fueled previous claims the pedophile was a spy for Israel who mined Prince Andrew for intel.", - "guid": "https://www.dailymail.co.uk/news/article-12926465/jeffrey-epstein-list-friendship-israeli-prime-minister-ehud-barak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:06:56.000Z" - }, - { - "title": "Drag Race Icon Michelle Visage reveals how she 'lost a lot of money and a few pieces of my soul' as she gets candid about 'sleeping with all the wrong people', being exploited and finally finding her real mother", - "link": "https://www.dailymail.co.uk/home/you/article-12881903/Michelle-Visage-RuPaul-Drag-Race-husband-David-Case.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:06:50 GMT", - "enclosure": { - "length": "679081", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79622415-0-image-a-16_1704387965183.jpg" - }, - "content": "Despite her reputation for annihilating egos with a single hair flick as judge on the TV juggernaut RuPaul's Drag Race UK there is nothing fierce about Michelle Visage in person.", - "contentSnippet": "Despite her reputation for annihilating egos with a single hair flick as judge on the TV juggernaut RuPaul's Drag Race UK there is nothing fierce about Michelle Visage in person.", - "guid": "https://www.dailymail.co.uk/home/you/article-12881903/Michelle-Visage-RuPaul-Drag-Race-husband-David-Case.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:06:50.000Z" - }, - { - "title": "Jeffrey Epstein's infamous jet the 'Lolita Express' will be TORN APART after years of flying underage girls and high-powered associates to his Caribbean island and around the world", - "link": "https://www.dailymail.co.uk/news/article-12923995/Jeffrey-Epstein-private-jet-Lolita-Express-torn-apart-scrapped.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:06:22 GMT", - "enclosure": { - "length": "10005", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79591409-0-image-a-105_1704319262921.jpg" - }, - "content": "Jeffrey Epstein's private plane he used to shuttle underage girls and carry the likes of Bill Clinton, Donald Trump and Prince Andrew is set to be scrapped, DailyMail.com can reveal.", - "contentSnippet": "Jeffrey Epstein's private plane he used to shuttle underage girls and carry the likes of Bill Clinton, Donald Trump and Prince Andrew is set to be scrapped, DailyMail.com can reveal.", - "guid": "https://www.dailymail.co.uk/news/article-12923995/Jeffrey-Epstein-private-jet-Lolita-Express-torn-apart-scrapped.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:06:22.000Z" - }, - { - "title": "The 'final nail in the coffin' for Prince Andrew: Bombshell Epstein file 'underage orgy' revelations will torpedo any hope scandal-hit Duke of York has of returning to royal duties, say experts", - "link": "https://www.dailymail.co.uk/news/article-12926269/Prince-Andrew-Epstein-file-underage-orgy-royal-duties.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:05:45 GMT", - "enclosure": { - "length": "6015", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79604485-0-image-m-22_1704374112995.jpg" - }, - "content": "The Duke of York has been again dragged into the sex scandal surrounding his paedophile friend, just over a year after he settled the multi-million dollar case brought by Virginia Giuffre in 2022.", - "contentSnippet": "The Duke of York has been again dragged into the sex scandal surrounding his paedophile friend, just over a year after he settled the multi-million dollar case brought by Virginia Giuffre in 2022.", - "guid": "https://www.dailymail.co.uk/news/article-12926269/Prince-Andrew-Epstein-file-underage-orgy-royal-duties.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:05:45.000Z" - }, - { - "title": "Resident claims seaside strip club is breaching the Equality Act because it has no male dancers", - "link": "https://www.dailymail.co.uk/news/article-12926247/Resident-claims-seaside-strip-club-breaching-Equality-Act-no-male-dancers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:05:41 GMT", - "enclosure": { - "length": "7201", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79617549-0-image-m-9_1704382146570.jpg" - }, - "content": "The unnamed objector also complained to the local authority that punters who visit a strip club were 'not the type of people' wanted in the seaside town of Weymouth, Dorset.", - "contentSnippet": "The unnamed objector also complained to the local authority that punters who visit a strip club were 'not the type of people' wanted in the seaside town of Weymouth, Dorset.", - "guid": "https://www.dailymail.co.uk/news/article-12926247/Resident-claims-seaside-strip-club-breaching-Equality-Act-no-male-dancers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:05:41.000Z" - }, - { - "title": "Post Office scandal: I was on suicide watch in the same prison as Rose West when I was wrongly accused of stealing \u00a360,000 from the Post Office - this has never just been about compensation, it's about justice", - "link": "https://www.dailymail.co.uk/news/article-12926287/post-office-scadal-prison-rose-west-wrongly-accused.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:04:36 GMT", - "enclosure": { - "length": "10625", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79612947-0-image-a-19_1704375584503.jpg" - }, - "content": "Janet Skinner, 52, from Hull, has spoken of her ordeal of being unjustly accused of stealing \u00a360K from the Post Office she ran - resulting in the loss of her home and a stint in a drug-infested prison", - "contentSnippet": "Janet Skinner, 52, from Hull, has spoken of her ordeal of being unjustly accused of stealing \u00a360K from the Post Office she ran - resulting in the loss of her home and a stint in a drug-infested prison", - "guid": "https://www.dailymail.co.uk/news/article-12926287/post-office-scadal-prison-rose-west-wrongly-accused.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:04:36.000Z" - }, - { - "title": "US kills Iraqi militia leader in drone strike on Baghdad: Pentagon slays commander it blames for attacks against American troops", - "link": "https://www.dailymail.co.uk/news/article-12926605/Iraqi-militia-leader-drone-strike-Baghdad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:04:18 GMT", - "enclosure": { - "length": "10732", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79621933-0-image-a-32_1704387835604.jpg" - }, - "content": "The Popular Mobilisation Force (PMF)\u00a0 said its deputy head of operations in Baghdad Mushtaq Taleb al-Saidi was killed in the strike.", - "contentSnippet": "The Popular Mobilisation Force (PMF)\u00a0 said its deputy head of operations in Baghdad Mushtaq Taleb al-Saidi was killed in the strike.", - "guid": "https://www.dailymail.co.uk/news/article-12926605/Iraqi-militia-leader-drone-strike-Baghdad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:04:18.000Z" - }, - { - "title": "Police probing murder of Harry Pitman release CCTV images of two young men - as they reveal schoolboy, 16, was stabbed to death after fight with 'another male' at Primrose Hill on New Year's Eve", - "link": "https://www.dailymail.co.uk/news/article-12926883/harry-pitman-murder-police-release-cctv-two-youths.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:55:58 GMT", - "enclosure": { - "length": "3178", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79618365-0-image-m-59_1704383355645.jpg" - }, - "content": "Pitman, 16, was killed as he watched New Year's Eve fireworks from Camden, north London surrounded by thousands of revellers.", - "contentSnippet": "Pitman, 16, was killed as he watched New Year's Eve fireworks from Camden, north London surrounded by thousands of revellers.", - "guid": "https://www.dailymail.co.uk/news/article-12926883/harry-pitman-murder-police-release-cctv-two-youths.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:55:58.000Z" - }, - { - "title": "Scientists discover new class of antibiotic can kill drug-resistant superbug", - "link": "https://www.dailymail.co.uk/health/article-12925763/Scientists-discover-new-class-antibiotic-kill-drug-resistant-superbug.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:55:29 GMT", - "enclosure": { - "length": "8698", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79610891-0-image-a-11_1704370011871.jpg" - }, - "content": "Scientists from Swiss pharma giant Roche have developed a new class of antibiotic that could be first breakthrough of its kind in 50 years to beat the threat of 'superbugs' resistant to common drugs.", - "contentSnippet": "Scientists from Swiss pharma giant Roche have developed a new class of antibiotic that could be first breakthrough of its kind in 50 years to beat the threat of 'superbugs' resistant to common drugs.", - "guid": "https://www.dailymail.co.uk/health/article-12925763/Scientists-discover-new-class-antibiotic-kill-drug-resistant-superbug.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:55:29.000Z" - }, - { - "title": "Inside luxury mansion with stunning views where Oscar Pistorius will be living after spending the last seven-and-a-half years in jail for murdering Reeva Steenkamp", - "link": "https://www.dailymail.co.uk/news/article-12926555/Inside-luxury-mansion-Oscar-Pistorius-living.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:52:51 GMT", - "enclosure": { - "length": "8938", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79614279-0-image-a-23_1704379361131.jpg" - }, - "content": "The Blade Runner will swap a small cell at South Africa's Atteridgeville Correction Centre for a luxury multi-million-pound mansion belonging to his uncle who has agreed to become his 'custodian'.", - "contentSnippet": "The Blade Runner will swap a small cell at South Africa's Atteridgeville Correction Centre for a luxury multi-million-pound mansion belonging to his uncle who has agreed to become his 'custodian'.", - "guid": "https://www.dailymail.co.uk/news/article-12926555/Inside-luxury-mansion-Oscar-Pistorius-living.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:52:51.000Z" - }, - { - "title": "Father and daughter who both battled mental health issues start first day of work together as newly qualified nurses", - "link": "https://www.dailymail.co.uk/femail/article-12925833/Father-daughter-mental-health-issues-work-nurses.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:46:49 GMT", - "enclosure": { - "length": "7610", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79608817-0-image-a-58_1704366106651.jpg" - }, - "content": "Father and daughter Steven, 42, and Stevie-Leigh Jewell, graduated within weeks of each other and now both work at Blackpool's The Harbour, a mental health hospital, an NHS hospital.", - "contentSnippet": "Father and daughter Steven, 42, and Stevie-Leigh Jewell, graduated within weeks of each other and now both work at Blackpool's The Harbour, a mental health hospital, an NHS hospital.", - "guid": "https://www.dailymail.co.uk/femail/article-12925833/Father-daughter-mental-health-issues-work-nurses.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:46:49.000Z" - }, - { - "title": "Second Storm Henk tragedy as woman, 87, crashes into tree and dies - as police refer themselves to watchdog after the felling was reported to them 90 minutes earlier but not cleared", - "link": "https://www.dailymail.co.uk/news/article-12926903/storm-henk-second-tragedy-woman-crash-tree-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:44:31 GMT", - "enclosure": { - "length": "7806", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619767-0-image-a-47_1704385101202.jpg" - }, - "content": "Storm Henk has claimed a second life after a woman crashed into a tree and died after it wasn't moved when it fell 90 minutes earlier in Oxfordshire.", - "contentSnippet": "Storm Henk has claimed a second life after a woman crashed into a tree and died after it wasn't moved when it fell 90 minutes earlier in Oxfordshire.", - "guid": "https://www.dailymail.co.uk/news/article-12926903/storm-henk-second-tragedy-woman-crash-tree-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:44:31.000Z" - }, - { - "title": "Youth is arrested after 'burglar' stabbed at house in Bath in altercation that also left a woman injured", - "link": "https://www.dailymail.co.uk/news/article-12926501/youth-arrested-burglar-stabbed-bath-house-woman-injured.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:43:12 GMT", - "enclosure": { - "length": "11145", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616729-0-image-a-49_1704380813257.jpg" - }, - "content": "A man, in his 40s, is understood to have been stabbed before fleeing the scene in Odd Down, Bath - sparking an urgent search in the area.", - "contentSnippet": "A man, in his 40s, is understood to have been stabbed before fleeing the scene in Odd Down, Bath - sparking an urgent search in the area.", - "guid": "https://www.dailymail.co.uk/news/article-12926501/youth-arrested-burglar-stabbed-bath-house-woman-injured.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:43:12.000Z" - }, - { - "title": "Queen Margrethe's final bow: Danish monarch makes last public appearance before stepping down after 52 years on the throne", - "link": "https://www.dailymail.co.uk/femail/article-12926669/Queen-Margrethes-final-bow-Danish-monarch-makes-public-appearance-stepping-52-years-throne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:41:19 GMT", - "enclosure": { - "length": "10564", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79617851-0-image-a-10_1704382345003.jpg" - }, - "content": "The monarch rode through Denmark's capital in a gilded, horse-drawn coach as she concluded her final ever engagements ahead of her abdication.", - "contentSnippet": "The monarch rode through Denmark's capital in a gilded, horse-drawn coach as she concluded her final ever engagements ahead of her abdication.", - "guid": "https://www.dailymail.co.uk/femail/article-12926669/Queen-Margrethes-final-bow-Danish-monarch-makes-public-appearance-stepping-52-years-throne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:41:19.000Z" - }, - { - "title": "Mother and daughter treated to lush\u00a0\u00a39,016 all-expenses paid trip to Lapland on Rich Holiday, Poor Holiday - but ditch \u00a3300 fine dining experience to have 'real food' in takeaway for less than \u00a320", - "link": "https://www.dailymail.co.uk/femail/article-12926277/Mother-daughter-treated-lush-9-016-expenses-paid-trip-Lapland-Rich-Holiday-Poor-Holiday-ditch-300-fine-dining-experience-real-food-takeaway-20.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:35:40 GMT", - "enclosure": { - "length": "11350", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619181-0-image-a-21_1704384343553.jpg" - }, - "content": "In the episode airing on Channel 5 at Sunday at 9pm, Sarah, 50, and Victoria, 19, from Swansea, Wales, enjoyed a lush\u00a0\u00a39,016 all-expenses paid trip to Lapland - an idyllic area of Finland.", - "contentSnippet": "In the episode airing on Channel 5 at Sunday at 9pm, Sarah, 50, and Victoria, 19, from Swansea, Wales, enjoyed a lush\u00a0\u00a39,016 all-expenses paid trip to Lapland - an idyllic area of Finland.", - "guid": "https://www.dailymail.co.uk/femail/article-12926277/Mother-daughter-treated-lush-9-016-expenses-paid-trip-Lapland-Rich-Holiday-Poor-Holiday-ditch-300-fine-dining-experience-real-food-takeaway-20.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:35:40.000Z" - }, - { - "title": "Pub selling Britain's most popular Sunday roast sells out bookings for the whole of 2024 in just TWO HOURS - having just cleared its massive four-year waiting list", - "link": "https://www.dailymail.co.uk/news/article-12926399/pub-britain-popular-roast-sold-bookings-waiting-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:35:22 GMT", - "enclosure": { - "length": "10260", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615529-0-image-a-29_1704379462602.jpg" - }, - "content": "The tucked away Bank Tavern in Bristol opened spots for tables at 10am on New Year's Day for the year and all dates were filled by midday.", - "contentSnippet": "The tucked away Bank Tavern in Bristol opened spots for tables at 10am on New Year's Day for the year and all dates were filled by midday.", - "guid": "https://www.dailymail.co.uk/news/article-12926399/pub-britain-popular-roast-sold-bookings-waiting-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:35:22.000Z" - }, - { - "title": "From banshee-like screaming to 'yellow vomit': Developers of \u00a31.8m luxury seafront apartments are mocked over colourful addition to balconies after locals complained of 'tinnitus-inducing' high-pitched sound", - "link": "https://www.dailymail.co.uk/news/article-12925753/luxury-seafront-apartments-tinnitus-sound-neighbours-complained-noise.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:33:01 GMT", - "enclosure": { - "length": "5339", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79609117-0-image-a-18_1704369717708.jpg" - }, - "content": "It comes after a furious row broke out last year over a new block of luxury flats\u00a0that overlooks the shoreline in Folkestone, Kent.", - "contentSnippet": "It comes after a furious row broke out last year over a new block of luxury flats\u00a0that overlooks the shoreline in Folkestone, Kent.", - "guid": "https://www.dailymail.co.uk/news/article-12925753/luxury-seafront-apartments-tinnitus-sound-neighbours-complained-noise.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:33:01.000Z" - }, - { - "title": "Fitness influencer reveals 'lazy girl' breakfast bowl that helped her lose 50 POUNDS - and it includes HASH BROWNS and CHEESE", - "link": "https://www.dailymail.co.uk/femail/article-12923907/fitness-influencer-diet-breakfast-50-pounds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:29:13 GMT", - "enclosure": { - "length": "9480", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79593737-0-image-a-68_1704325375180.jpg" - }, - "content": "MaKayla Thomas, 29, from Kentucky, shares her workout routines and seemingly decadent high-protein meals on TikTok, where she has more than 1.7 million followers.", - "contentSnippet": "MaKayla Thomas, 29, from Kentucky, shares her workout routines and seemingly decadent high-protein meals on TikTok, where she has more than 1.7 million followers.", - "guid": "https://www.dailymail.co.uk/femail/article-12923907/fitness-influencer-diet-breakfast-50-pounds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:29:13.000Z" - }, - { - "title": "Newcastle fan, 42, who made drunken comments in crude social media video about the Munich air disaster which killed eight Manchester United players is handed three-year ban", - "link": "https://www.dailymail.co.uk/news/article-12926311/Newcastle-fan-42-drunken-comments-crude-social-media-video-Munich-air-disaster-killed-eight-Manchester-United-players-handed-three-year-ban.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:22:49 GMT", - "enclosure": { - "length": "6058", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619071-0-image-a-49_1704384847548.jpg" - }, - "content": "James Blake, 42,\u00a0of Wantage Avenue, North Shields, appeared at North Tyneside Magistrates' Court to challenge a banning order application but it was imposed by the bench.", - "contentSnippet": "James Blake, 42,\u00a0of Wantage Avenue, North Shields, appeared at North Tyneside Magistrates' Court to challenge a banning order application but it was imposed by the bench.", - "guid": "https://www.dailymail.co.uk/news/article-12926311/Newcastle-fan-42-drunken-comments-crude-social-media-video-Munich-air-disaster-killed-eight-Manchester-United-players-handed-three-year-ban.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:22:49.000Z" - }, - { - "title": "Darts hero Luke Littler, 16, says he and girlfriend Eloise will 'stick together whether anyone likes it or not' and reveals couple's date lined up for stadium tour at Old Trafford", - "link": "https://www.dailymail.co.uk/news/article-12926821/luke-littler-darts-girlfriend-stadium-tour-old-trafford.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:22:09 GMT", - "enclosure": { - "length": "6342", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79611957-0-Darting_wonderkid_Littler_was_seen_embracing_his_new_flame_durin-a-39_1704384929845.jpg" - }, - "content": "The besotted couple have been dating for several weeks after meeting over the Xbox, with blonde sales rep Eloise pictured embracing her other half during his fairy-tale tournament at Ally Pally.", - "contentSnippet": "The besotted couple have been dating for several weeks after meeting over the Xbox, with blonde sales rep Eloise pictured embracing her other half during his fairy-tale tournament at Ally Pally.", - "guid": "https://www.dailymail.co.uk/news/article-12926821/luke-littler-darts-girlfriend-stadium-tour-old-trafford.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:22:09.000Z" - }, - { - "title": "Prince Harry's explosive memoir Spare was the UK's best-selling book last year with more than 700,000 copies sold - beating Richard Osman and the Guinness Book of World Records", - "link": "https://www.dailymail.co.uk/femail/article-12926209/Prince-Harrys-explosive-memoir-Spare-UKs-best-selling-book-year-700-000-copies-sold-beating-Richard-Osman-Guinness-Book-World-Records.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:22:05 GMT", - "enclosure": { - "length": "11643", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79618511-0-image-a-38_1704383574756.jpg" - }, - "content": "Figures obtained by The Bookseller have revealed the top 20 bestselling books, both hardback and paperback, in the UK in 2023 - and the Duke's memoir tops the list.", - "contentSnippet": "Figures obtained by The Bookseller have revealed the top 20 bestselling books, both hardback and paperback, in the UK in 2023 - and the Duke's memoir tops the list.", - "guid": "https://www.dailymail.co.uk/femail/article-12926209/Prince-Harrys-explosive-memoir-Spare-UKs-best-selling-book-year-700-000-copies-sold-beating-Richard-Osman-Guinness-Book-World-Records.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:22:05.000Z" - }, - { - "title": "Chocolate factory worker, 28, appears in court accused of stabbing a heavily pregnant mother of two he 'stalked and filmed for TikTok'", - "link": "https://www.dailymail.co.uk/news/article-12926425/Chocolate-factory-worker-court-accused-stabbing-pregnant-mother-stalked-filmed-TikTok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:19:07 GMT", - "enclosure": { - "length": "8056", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79614763-0-image-m-28_1704378038201.jpg" - }, - "content": "Daniel Mihai Popescu, 28, is also accused of stalking fellow Romanian Andreea Pintilli, 29, before allegedly attempting to murder her.", - "contentSnippet": "Daniel Mihai Popescu, 28, is also accused of stalking fellow Romanian Andreea Pintilli, 29, before allegedly attempting to murder her.", - "guid": "https://www.dailymail.co.uk/news/article-12926425/Chocolate-factory-worker-court-accused-stabbing-pregnant-mother-stalked-filmed-TikTok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:19:07.000Z" - }, - { - "title": "Last sighting of missing woman who vanished a week before Christmas: CCTV shows Laura Wilkie, 43, sat on a bench shortly before disappearing as police issue desperate appeal to find her", - "link": "https://www.dailymail.co.uk/news/article-12926675/police-appeal-missing-laurie-wilkie-seen-ayr.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:18:51 GMT", - "enclosure": { - "length": "4907", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616991-0-image-m-37_1704381243311.jpg" - }, - "content": "Laura Wilkie was last seen sitting on a bench near the Millennium Bridge in Ayr, South Ayrshire, at around 8.30pm on Monday December 18.", - "contentSnippet": "Laura Wilkie was last seen sitting on a bench near the Millennium Bridge in Ayr, South Ayrshire, at around 8.30pm on Monday December 18.", - "guid": "https://www.dailymail.co.uk/news/article-12926675/police-appeal-missing-laurie-wilkie-seen-ayr.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:18:51.000Z" - }, - { - "title": "Body found in search for woman, 71, last seen leaving Manchester Airport on New Year's Day", - "link": "https://www.dailymail.co.uk/news/article-12926523/woman-Manchester-airport-new-years-day-body-found.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:17:18 GMT", - "enclosure": { - "length": "4556", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615057-0-image-m-28_1704378592563.jpg" - }, - "content": "Lillian Ferguson was last seen walking in the direction of the M56 just after midnight wearing a long brown coat, Burberry scarf and UGG boots.", - "contentSnippet": "Lillian Ferguson was last seen walking in the direction of the M56 just after midnight wearing a long brown coat, Burberry scarf and UGG boots.", - "guid": "https://www.dailymail.co.uk/news/article-12926523/woman-Manchester-airport-new-years-day-body-found.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:17:18.000Z" - }, - { - "title": "American urges people to try out Irish petrol garage food as he is left astounded by the quality - and admits he 'would never dare eat at a gas station in the US'", - "link": "https://www.dailymail.co.uk/femail/article-12925501/American-urges-people-try-Irish-petrol-garage-food.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:15:19 GMT", - "enclosure": { - "length": "10716", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79607319-0-image-a-46_1704361294457.jpg" - }, - "content": "American TikToker Connor Kearney is now living in Ireland and recently posted a clip to his 5,500 followers, where he praised the country's petrol station food.", - "contentSnippet": "American TikToker Connor Kearney is now living in Ireland and recently posted a clip to his 5,500 followers, where he praised the country's petrol station food.", - "guid": "https://www.dailymail.co.uk/femail/article-12925501/American-urges-people-try-Irish-petrol-garage-food.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:15:19.000Z" - }, - { - "title": "\u00a3200,000 goes up in flames! British couple are hit with huge bill after their 100-year-old sailing boat is accidentally set on fire by merchant sailors mucking around with emergency flares in Alicante", - "link": "https://www.dailymail.co.uk/news/article-12926617/200-000-goes-flames-British-couple-hit-huge-bill-100-year-old-sailing-boat-accidentally-set-fire-merchant-sailors-mucking-emergency-flares-Alicante.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:09:09 GMT", - "enclosure": { - "length": "8843", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79615273-0-image-a-30_1704382902922.jpg" - }, - "content": "The Ukrainian trio were arrested and put in a police cell for the night after flames came close to destroying the 65ft-yacht called Maori at Alicante Regatta Club.", - "contentSnippet": "The Ukrainian trio were arrested and put in a police cell for the night after flames came close to destroying the 65ft-yacht called Maori at Alicante Regatta Club.", - "guid": "https://www.dailymail.co.uk/news/article-12926617/200-000-goes-flames-British-couple-hit-huge-bill-100-year-old-sailing-boat-accidentally-set-fire-merchant-sailors-mucking-emergency-flares-Alicante.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:09:09.000Z" - }, - { - "title": "Female undertaker, 58, is crushed to death at funeral parlour as police and council launch investigations", - "link": "https://www.dailymail.co.uk/news/article-12926445/Female-undertaker-58-crushed-death-funeral-parlour-police-council-launch-investigations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:08:19 GMT", - "enclosure": { - "length": "7549", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79613887-0-image-m-11_1704376943041.jpg" - }, - "content": "Sally Blundell, 58, was killed in a 'tragic accident' on December 1\u00a0in Swaffham, Norfolk.", - "contentSnippet": "Sally Blundell, 58, was killed in a 'tragic accident' on December 1\u00a0in Swaffham, Norfolk.", - "guid": "https://www.dailymail.co.uk/news/article-12926445/Female-undertaker-58-crushed-death-funeral-parlour-police-council-launch-investigations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:08:19.000Z" - }, - { - "title": "Revealed: How minor injuries abroad can carry a BIG price tag if you're not insured, from \u00a31,600 for treating a cut lip in the U.S to \u00a31,860 for advice about a cough in Vietnam", - "link": "https://www.dailymail.co.uk/travel/article-12855373/How-minor-injuries-abroad-carry-BIG-price-tag-youre-not-insured-1-600-treating-cut-lip-U-S-1-860-advice-cough-Vietnam.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:06:19 GMT", - "enclosure": { - "length": "5583", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/18/12/79083375-0-image-m-37_1702903171701.jpg" - }, - "content": "If you're blas\u00e9 about travel insurance, here's a wake-up call. A travel insurance firm revealed recent bills travellers have received for minor injuries - and some are eye-watering.", - "contentSnippet": "If you're blas\u00e9 about travel insurance, here's a wake-up call. A travel insurance firm revealed recent bills travellers have received for minor injuries - and some are eye-watering.", - "guid": "https://www.dailymail.co.uk/travel/article-12855373/How-minor-injuries-abroad-carry-BIG-price-tag-youre-not-insured-1-600-treating-cut-lip-U-S-1-860-advice-cough-Vietnam.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:06:19.000Z" - }, - { - "title": "The battle to stop Captain Cook being erased: Furious locals fight proposals to axe 'birthplace' museum celebrating life of famous explorer - amid row over plans to drop his name from nearby square", - "link": "https://www.dailymail.co.uk/news/article-12926207/The-battle-stop-Captain-Cook-erased-Furious-locals-fight-proposals-axe-birthplace-museum-celebrating-life-famous-explorer-amid-row-plans-drop-nearby-square.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:05:07 GMT", - "enclosure": { - "length": "6398", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79613237-0-A_petition_calling_on_a_council_to_scrap_plans_to_close_the_only-a-173_1704383784196.jpg" - }, - "content": "Middlesbrough Council is considering closing the Captain Cook Birthplace Museum - which stands near to where the explorer was born - and transferring its collection to another institution nearby.", - "contentSnippet": "Middlesbrough Council is considering closing the Captain Cook Birthplace Museum - which stands near to where the explorer was born - and transferring its collection to another institution nearby.", - "guid": "https://www.dailymail.co.uk/news/article-12926207/The-battle-stop-Captain-Cook-erased-Furious-locals-fight-proposals-axe-birthplace-museum-celebrating-life-famous-explorer-amid-row-plans-drop-nearby-square.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:05:07.000Z" - }, - { - "title": "The making of Michelle: How beloved Corrie beauty Keegan went from fresh-faced newbie to polished Netflix star with a penchant for junk food - countered by HOURS in the gym", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12925701/Michelle-Keegans-body-transformation-star-counters-love-burgers-cheese-ice-cream-gruelling-workouts-achieve-husband-Mark-Wrights-perfect-figure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:04:55 GMT", - "enclosure": { - "length": "9948", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615253-0-image-a-91_1704378866973.jpg" - }, - "content": "Michelle Keegan has long-been famed for her ripped physique and stunning good looks, along with her acting prowess.\u00a0", - "contentSnippet": "Michelle Keegan has long-been famed for her ripped physique and stunning good looks, along with her acting prowess.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12925701/Michelle-Keegans-body-transformation-star-counters-love-burgers-cheese-ice-cream-gruelling-workouts-achieve-husband-Mark-Wrights-perfect-figure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:04:55.000Z" - }, - { - "title": "Church with 4,000-year-old stone circle of 'national importance' in its grounds goes on the market for just \u00a350,000", - "link": "https://www.dailymail.co.uk/news/article-12926223/church-stone-circle-national-importance-sale-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:04:00 GMT", - "enclosure": { - "length": "6968", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616505-0-image-a-40_1704380542723.jpg" - }, - "content": "Midmar Kirk, situated around two miles west of Echt, Aberdeenshire, with views overlooking the countryside, has been put up for sale by the Church of Scotland.", - "contentSnippet": "Midmar Kirk, situated around two miles west of Echt, Aberdeenshire, with views overlooking the countryside, has been put up for sale by the Church of Scotland.", - "guid": "https://www.dailymail.co.uk/news/article-12926223/church-stone-circle-national-importance-sale-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:04:00.000Z" - }, - { - "title": "Last of wartime SAS 'originals' dies: Ex-MI6 officer who won Military Cross and was last surviving member of famous L Detachment - and even had a piece of the Antarctic named after him - passes away aged 103", - "link": "https://www.dailymail.co.uk/news/article-12926611/Last-wartime-SAS-originals-dies-aged-103-Ex-MI6-officer-Major-Mike-Sadler-final-member-L-Detachment-famous-exploits-Second-World-War-pass-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:53:24 GMT", - "enclosure": { - "length": "5371", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615077-0-image-a-48_1704379226408.jpg" - }, - "content": "Major Mike Sadler was among the first men recruited by David Stirling, the founder of the British Army's elite Special Air Service regiment, in 1941.", - "contentSnippet": "Major Mike Sadler was among the first men recruited by David Stirling, the founder of the British Army's elite Special Air Service regiment, in 1941.", - "guid": "https://www.dailymail.co.uk/news/article-12926611/Last-wartime-SAS-originals-dies-aged-103-Ex-MI6-officer-Major-Mike-Sadler-final-member-L-Detachment-famous-exploits-Second-World-War-pass-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:53:24.000Z" - }, - { - "title": "Straight men with 'bisexual genes' have more children because the variations are linked to risk-taking, study claims", - "link": "https://www.dailymail.co.uk/sciencetech/article-12926845/Straight-men-bisexual-genes-risk-taking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:53:06 GMT", - "enclosure": { - "length": "6853", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79618347-0-image-a-8_1704383517388.jpg" - }, - "content": "A controversial study claims straight men with 'bisexual genes' are likely to have more children than heterosexual men. But These men were not actually bisexual, they only had the variations.", - "contentSnippet": "A controversial study claims straight men with 'bisexual genes' are likely to have more children than heterosexual men. But These men were not actually bisexual, they only had the variations.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12926845/Straight-men-bisexual-genes-risk-taking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:53:06.000Z" - }, - { - "title": "Another reason not to listen to the celebs! Trendy collagen pills and powders probably WON'T stave off wrinkles, dermatologist says", - "link": "https://www.dailymail.co.uk/health/article-12503767/Do-collagen-supplements-actually-work.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:52:29 GMT", - "enclosure": { - "length": "6742", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/29/08/76980341-0-image-m-11_1703838177968.jpg" - }, - "content": "Collagen is the building blocks for bones,\u00a0skin, hair and muscles. As we get older it starts to deplete. But London-based dermatologists says supplements are not the answer.", - "contentSnippet": "Collagen is the building blocks for bones,\u00a0skin, hair and muscles. As we get older it starts to deplete. But London-based dermatologists says supplements are not the answer.", - "guid": "https://www.dailymail.co.uk/health/article-12503767/Do-collagen-supplements-actually-work.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:52:29.000Z" - }, - { - "title": "Longevity expert shares simple habit that you can implement in the New Year that will lead to a much healthier lifestyle - and he insists it's a lot more effective in the long run than dieting", - "link": "https://www.dailymail.co.uk/femail/article-12923443/longevity-expert-healthy-habit-cooking-diet.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:49:24 GMT", - "enclosure": { - "length": "10026", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587511-0-image-a-107_1704313842255.jpg" - }, - "content": "Dan Buettner, 63, from Saint Paul, Minnesota, spoke to Business Insider about some of the easy steps that you can take as 2024 kicks off that could add years to your life in the long run.", - "contentSnippet": "Dan Buettner, 63, from Saint Paul, Minnesota, spoke to Business Insider about some of the easy steps that you can take as 2024 kicks off that could add years to your life in the long run.", - "guid": "https://www.dailymail.co.uk/femail/article-12923443/longevity-expert-healthy-habit-cooking-diet.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:49:24.000Z" - }, - { - "title": "General election will happen 'in the second half of the year' Rishi Sunak reveals, as he moves to kill speculation about May poll", - "link": "https://www.dailymail.co.uk/news/article-12926275/Rishi-Sunak-says-working-assumption-general-election-happen-second-half-year-moves-kill-speculation-poll.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:47:26 GMT", - "enclosure": { - "length": "9309", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611809-0-image-m-14_1704372039861.jpg" - }, - "content": "Rishi Sunak has said that his 'working assumption' is that he will hold a 'general election in the second half of this year'.", - "contentSnippet": "Rishi Sunak has said that his 'working assumption' is that he will hold a 'general election in the second half of this year'.", - "guid": "https://www.dailymail.co.uk/news/article-12926275/Rishi-Sunak-says-working-assumption-general-election-happen-second-half-year-moves-kill-speculation-poll.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:47:26.000Z" - }, - { - "title": "Luke Littler insists he'll stay 'level headed' and 'keep myself to myself' as he takes a few days off to 'chill out' - and says there is 'no chance' he will play darts tomorrow", - "link": "https://www.dailymail.co.uk/news/article-12926625/Luke-Littler-insists-hell-stay-level-headed-takes-days-chill-says-no-chance-play-darts-tomorrow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:47:24 GMT", - "enclosure": { - "length": "3718", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615259-0-image-m-23_1704378912692.jpg" - }, - "content": "The 16-year-old, who captivated the nation with his sensational run in the competition, fell just short of creating darts history after losing 7-4 to Luke Humphries in last night's final at Alexandra Palace.", - "contentSnippet": "The 16-year-old, who captivated the nation with his sensational run in the competition, fell just short of creating darts history after losing 7-4 to Luke Humphries in last night's final at Alexandra Palace.", - "guid": "https://www.dailymail.co.uk/news/article-12926625/Luke-Littler-insists-hell-stay-level-headed-takes-days-chill-says-no-chance-play-darts-tomorrow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:47:24.000Z" - }, - { - "title": "Jeremy Clarkson launches ANOTHER planning battle as he submits proposals for 'urgent' storage barn at his Diddly Squat farm", - "link": "https://www.dailymail.co.uk/news/article-12926175/Jeremy-clarkson-planning-battle-diddly-squat-farm-storage-barn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:44:59 GMT", - "enclosure": { - "length": "7233", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79435435-0-image-a-21_1704374862477.jpg" - }, - "content": "The former Top Gear host, 63, has filed fresh plans to build a huge 118ft long by 59ft wide barn to store grain at the site near Chadlington, Oxfordshire.", - "contentSnippet": "The former Top Gear host, 63, has filed fresh plans to build a huge 118ft long by 59ft wide barn to store grain at the site near Chadlington, Oxfordshire.", - "guid": "https://www.dailymail.co.uk/news/article-12926175/Jeremy-clarkson-planning-battle-diddly-squat-farm-storage-barn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:44:59.000Z" - }, - { - "title": "Are you killing your pets with second-hand smoke? Dogs in fume-filled homes are SIX times more likely to develop cancer, scientists warn", - "link": "https://www.dailymail.co.uk/sciencetech/article-12926167/Are-killing-pets-second-hand-smoke-Dogs-fume-filled-homes-SIX-times-likely-develop-cancer-scientists-warn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:42:06 GMT", - "enclosure": { - "length": "3900", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79617605-0-image-m-54_1704382823891.jpg" - }, - "content": "Researchers from Purdue University have warned that dogs in fume-filled homes are up to six times more likely to develop bladder cancer.", - "contentSnippet": "Researchers from Purdue University have warned that dogs in fume-filled homes are up to six times more likely to develop bladder cancer.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12926167/Are-killing-pets-second-hand-smoke-Dogs-fume-filled-homes-SIX-times-likely-develop-cancer-scientists-warn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:42:06.000Z" - }, - { - "title": "'Bring it on': Keir Starmer says he is ready to take on Rishi Sunak as he launches New Year election push by describing Britain as a 'downtrodden country' ... but admits he might NOT cut taxes", - "link": "https://www.dailymail.co.uk/news/article-12926027/Keir-Starmer-ready-Rishi-Sunak-live-TV-debate-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:39:22 GMT", - "enclosure": { - "length": "5453", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79609611-0-image-m-14_1704367327903.jpg" - }, - "content": "The Labour leader was bullish when asked about whether he would go head to head with the Prime Minister, during an event in Bristol.", - "contentSnippet": "The Labour leader was bullish when asked about whether he would go head to head with the Prime Minister, during an event in Bristol.", - "guid": "https://www.dailymail.co.uk/news/article-12926027/Keir-Starmer-ready-Rishi-Sunak-live-TV-debate-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:39:22.000Z" - }, - { - "title": "HR adviser left in tears after botched dental treatment ruined her smile wins \u00a340,000 pay out after four-year legal battle", - "link": "https://www.dailymail.co.uk/news/article-12926343/HR-adviser-left-tears-botched-dental-treatment-ruined-smile-wins-40-000-pay-four-year-legal-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:28:46 GMT", - "enclosure": { - "length": "5536", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79612353-0-image-m-11_1704373622210.jpg" - }, - "content": "Lynne Haines, of Penarth, South Wales, claimed that she suffered for more than a decade after having severe undiagnosed gum disease.", - "contentSnippet": "Lynne Haines, of Penarth, South Wales, claimed that she suffered for more than a decade after having severe undiagnosed gum disease.", - "guid": "https://www.dailymail.co.uk/news/article-12926343/HR-adviser-left-tears-botched-dental-treatment-ruined-smile-wins-40-000-pay-four-year-legal-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:28:46.000Z" - }, - { - "title": "Revealed: Six in ten Brits are planning at least three holidays in 2024, with budgets as high as \u00a310,000 per getaway", - "link": "https://www.dailymail.co.uk/travel/article-12854461/Six-ten-Brits-planning-three-holidays-2024-budgets-high-10-000-getaway.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:25:10 GMT", - "enclosure": { - "length": "7096", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/12/13/78866245-0-image-m-31_1702389525198.jpg" - }, - "content": "As many as 65 per cent are hoping to treat themselves to a room upgrade, closely followed by a flight upgrade (57 per cent) and fine dining (51 per cent).", - "contentSnippet": "As many as 65 per cent are hoping to treat themselves to a room upgrade, closely followed by a flight upgrade (57 per cent) and fine dining (51 per cent).", - "guid": "https://www.dailymail.co.uk/travel/article-12854461/Six-ten-Brits-planning-three-holidays-2024-budgets-high-10-000-getaway.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:25:10.000Z" - }, - { - "title": "Journey to the centre of the Earth: Scientists reveal ambitious plans to drill a tunnel into a volcano's magma chamber - and claim it could unleash UNLIMITED energy", - "link": "https://www.dailymail.co.uk/sciencetech/article-12925551/Journey-centre-Earth-Scientists-reveal-ambitious-plans-drill-tunnel-volcanos-magma-chamber-claim-unleash-UNLIMITED-energy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:24:49 GMT", - "enclosure": { - "length": "7743", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79613205-0-image-m-28_1704376743319.jpg" - }, - "content": "It may sound like the beginning of a disaster movie, but Iceland aims to become the first country to drill into a volcano's magma chamber.", - "contentSnippet": "It may sound like the beginning of a disaster movie, but Iceland aims to become the first country to drill into a volcano's magma chamber.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12925551/Journey-centre-Earth-Scientists-reveal-ambitious-plans-drill-tunnel-volcanos-magma-chamber-claim-unleash-UNLIMITED-energy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:24:49.000Z" - }, - { - "title": "Crown Princess Mary is all smiles for Queen Margrethe's last public appearance before stepping down - a day after 'frosty' outing with Prince Frederik", - "link": "https://www.dailymail.co.uk/femail/article-12925791/Crown-Princess-Mary-smiles-Queen-Margrethes-final-public-appearance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:24:01 GMT", - "enclosure": { - "length": "10872", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79609519-0-image-a-22_1704366610463.jpg" - }, - "content": "Following on from yesterday's frosty reception, Princess Mary of Denmark, 51, appeared to have a change of heart, and swapped tense looks for beaming smiles.", - "contentSnippet": "Following on from yesterday's frosty reception, Princess Mary of Denmark, 51, appeared to have a change of heart, and swapped tense looks for beaming smiles.", - "guid": "https://www.dailymail.co.uk/femail/article-12925791/Crown-Princess-Mary-smiles-Queen-Margrethes-final-public-appearance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:24:01.000Z" - }, - { - "title": "Family of 'beautiful and dearly loved' mother and daughter who were killed in a horror hit-and-run crash on Boxing Day say they are 'devastated' and urge witnesses to come forward", - "link": "https://www.dailymail.co.uk/news/article-12926431/Family-mother-daughter-killed-hit-run-crash-Boxing-Day-devastated-urge-witnesses-come-forward.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:22:18 GMT", - "enclosure": { - "length": "9124", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79613759-0-image-m-29_1704377394094.jpg" - }, - "content": "Linda Philips, 72, and Amanda Riley, 49, (pictured together) died after their MG ZS was involved in a crash with a BMW 4 Series and a quad bike in Sharp End, Birmingham.", - "contentSnippet": "Linda Philips, 72, and Amanda Riley, 49, (pictured together) died after their MG ZS was involved in a crash with a BMW 4 Series and a quad bike in Sharp End, Birmingham.", - "guid": "https://www.dailymail.co.uk/news/article-12926431/Family-mother-daughter-killed-hit-run-crash-Boxing-Day-devastated-urge-witnesses-come-forward.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:22:18.000Z" - }, - { - "title": "I vacuumed my mattress - and the result was horrifying", - "link": "https://www.dailymail.co.uk/femail/article-12923623/Home-vacuum-mattress-bed-dust.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:18:50 GMT", - "enclosure": { - "length": "8217", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79585359-0-image-a-122_1704312838302.jpg" - }, - "content": "Dave Chen is a US-based TikToker who frequently shares movie reviews on the video-sharing platform, where he boasts over 62,000 followers. He took to TikTok to share what he found on his mattress.", - "contentSnippet": "Dave Chen is a US-based TikToker who frequently shares movie reviews on the video-sharing platform, where he boasts over 62,000 followers. He took to TikTok to share what he found on his mattress.", - "guid": "https://www.dailymail.co.uk/femail/article-12923623/Home-vacuum-mattress-bed-dust.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:18:50.000Z" - }, - { - "title": "Touching moment Luke Littler and Luke Humphries share brotherly advice", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12925963/Touching-moment-Luke-Littler-Luke-Humphries-share-brotherly-advice.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:16:50 GMT", - "enclosure": { - "length": "11524", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79609907-0-image-a-40_1704367455053.jpg" - }, - "content": "On the brink of creating sporting history, 16-year-old Littler just fell short thanks to a remarkable comeback from Humphries.", - "contentSnippet": "On the brink of creating sporting history, 16-year-old Littler just fell short thanks to a remarkable comeback from Humphries.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925963/Touching-moment-Luke-Littler-Luke-Humphries-share-brotherly-advice.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:16:50.000Z" - }, - { - "title": "Council trashed over bins left uncollected for WEEKS after bosses say they were surprised by large amount of CARDBOARD during well-known posting and gift-giving Christmas period", - "link": "https://www.dailymail.co.uk/news/article-12926193/council-trashed-bins-uncollected-weeks-cardboard-christmas-period.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:14:28 GMT", - "enclosure": { - "length": "12894", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611661-0-image-a-17_1704372397193.jpg" - }, - "content": "Swindon Borough Council has been slammed for leaving bins uncollected for weeks at a time after they were surprised by the large amount of cardboard during Christmas.", - "contentSnippet": "Swindon Borough Council has been slammed for leaving bins uncollected for weeks at a time after they were surprised by the large amount of cardboard during Christmas.", - "guid": "https://www.dailymail.co.uk/news/article-12926193/council-trashed-bins-uncollected-weeks-cardboard-christmas-period.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:14:28.000Z" - }, - { - "title": "The son of Alain Delon reports his sister to police for 'abuse and violence' against the French screen legend, 88, amid battle for his \u00a3250million fortune", - "link": "https://www.dailymail.co.uk/news/article-12926661/The-son-Alain-Delon-reports-sister-police-abuse-violence-against-French-screen-legend-88-amid-battle-250million-fortune.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:12:49 GMT", - "enclosure": { - "length": "10922", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79616431-0-image-a-3_1704380235582.jpg" - }, - "content": "Anthony Delon, 59, reported his sister Anouchka Delon, 33, to French police for not telling him or his brother Alain-Fabien, 29, that their father had failed five cognitive tests at a private clinic.", - "contentSnippet": "Anthony Delon, 59, reported his sister Anouchka Delon, 33, to French police for not telling him or his brother Alain-Fabien, 29, that their father had failed five cognitive tests at a private clinic.", - "guid": "https://www.dailymail.co.uk/news/article-12926661/The-son-Alain-Delon-reports-sister-police-abuse-violence-against-French-screen-legend-88-amid-battle-250million-fortune.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:12:49.000Z" - }, - { - "title": "A friend I've known for five years won't let me into her house even when I asked to use the toilet - and people are all saying the same thing", - "link": "https://www.dailymail.co.uk/femail/article-12922611/Friend-five-years-wont-let-inside-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:11:16 GMT", - "enclosure": { - "length": "7192", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608639-0-image-a-60_1704364139936.jpg" - }, - "content": "A woman revealed that a friend of five years won't let her into her home- even to use the toilet. Taking to British platform Mumsnet , she explained no one has ever seen the inside of her colleagues house", - "contentSnippet": "A woman revealed that a friend of five years won't let her into her home- even to use the toilet. Taking to British platform Mumsnet , she explained no one has ever seen the inside of her colleagues house", - "guid": "https://www.dailymail.co.uk/femail/article-12922611/Friend-five-years-wont-let-inside-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:11:16.000Z" - }, - { - "title": "Burger King brings back its most requested burger ever in time for Veganuary after a successful petition demanding its return", - "link": "https://www.dailymail.co.uk/femail/article-12926239/Burger-King-brings-requested-burger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 15:03:44 GMT", - "enclosure": { - "length": "4906", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616475-0-image-a-14_1704380505685.jpg" - }, - "content": "Burger King 's Ultimate Bean Burger\u00a0officially joined UK menus on January 3, after a\u00a0 long hiatus which saw fans yearning for the veggie delight.", - "contentSnippet": "Burger King 's Ultimate Bean Burger\u00a0officially joined UK menus on January 3, after a\u00a0 long hiatus which saw fans yearning for the veggie delight.", - "guid": "https://www.dailymail.co.uk/femail/article-12926239/Burger-King-brings-requested-burger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T15:03:44.000Z" - }, - { - "title": "I'm 18 and my boyfriend is 60 - trolls say our relationship is wrong but I've never felt so secure", - "link": "https://www.dailymail.co.uk/femail/article-12921915/Im-18-boyfriend-60-trolls-say-relationship-wrong-Ive-never-felt-secure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 14:59:38 GMT", - "enclosure": { - "length": "10962", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/10/79564939-0-image-a-37_1704276700290.jpg" - }, - "content": "Keisha Louise, 18, from\u00a0Irvine, Scotland, is dating\u00a0Dimitrios Fotis, 60, who is 42 years her senior but trolls say their relationship is wrong. The pair began dating in early 2022.", - "contentSnippet": "Keisha Louise, 18, from\u00a0Irvine, Scotland, is dating\u00a0Dimitrios Fotis, 60, who is 42 years her senior but trolls say their relationship is wrong. The pair began dating in early 2022.", - "guid": "https://www.dailymail.co.uk/femail/article-12921915/Im-18-boyfriend-60-trolls-say-relationship-wrong-Ive-never-felt-secure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T14:59:38.000Z" - }, - { - "title": "Cleaning robot 'attacks' pet dog while owner is out! Video shows animal trying to escape as the machine latches on to its tail", - "link": "https://www.dailymail.co.uk/news/article-12925875/Cleaning-robot-attacks-pet-dog-video.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 14:48:52 GMT", - "enclosure": { - "length": "8260", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611063-0-image-m-44_1704369967349.jpg" - }, - "content": "The vacuum cleaner was making its pre-programmed rounds when it sucked in the dog's tail as the poor animal yelped in horror.", - "contentSnippet": "The vacuum cleaner was making its pre-programmed rounds when it sucked in the dog's tail as the poor animal yelped in horror.", - "guid": "https://www.dailymail.co.uk/news/article-12925875/Cleaning-robot-attacks-pet-dog-video.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T14:48:52.000Z" - }, - { - "title": "Wealthy architecture boss is banned from contacting his wife of 25 years after throwing a pack of sausage rolls in her face when she asked if he was going to London for 'cocaine and hookers' in attack at their \u00a32m home", - "link": "https://www.dailymail.co.uk/news/article-12925941/wealthy-architecture-boss-banned-wife-sausage-rolls-face-london-cocaine-hookers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 14:37:36 GMT", - "enclosure": { - "length": "6712", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610005-0-image-m-35_1704368587609.jpg" - }, - "content": "A court heard Nolan Bird flew into a fit of rage at their country home after wife Heather questioned him whether a night out with friends in London involved 'cocaine and hookers'.", - "contentSnippet": "A court heard Nolan Bird flew into a fit of rage at their country home after wife Heather questioned him whether a night out with friends in London involved 'cocaine and hookers'.", - "guid": "https://www.dailymail.co.uk/news/article-12925941/wealthy-architecture-boss-banned-wife-sausage-rolls-face-london-cocaine-hookers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T14:37:36.000Z" - }, - { - "title": "From \u00a33.2million losses on his hotel, 'huge mistakes' on his \u00a3400million Manchester housing plan to struggling to concentrate on Dragons' Den pitches - will Gary Neville cause BBC show's biggest shake-up as it returns tonight?", - "link": "https://www.dailymail.co.uk/news/article-12925751/From-3-2million-losses-hotel-huge-mistakes-400million-Manchester-housing-plan-struggling-concentrate-Dragons-Den-pitches-Gary-Neville-cause-BBC-shows-biggest-shake-returns-tonight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 14:35:34 GMT", - "enclosure": { - "length": "5005", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79608239-0-image-m-9_1704368178145.jpg" - }, - "content": "The former Manchester United legend has had mixed success as a businessman but has created a stir with the announcement he would appear on BBC's Dragons' Den.", - "contentSnippet": "The former Manchester United legend has had mixed success as a businessman but has created a stir with the announcement he would appear on BBC's Dragons' Den.", - "guid": "https://www.dailymail.co.uk/news/article-12925751/From-3-2million-losses-hotel-huge-mistakes-400million-Manchester-housing-plan-struggling-concentrate-Dragons-Den-pitches-Gary-Neville-cause-BBC-shows-biggest-shake-returns-tonight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T14:35:34.000Z" - }, - { - "title": "Gut expert reveals how a poo transplant could improve your health and protect against a range of conditions from cancer to depression", - "link": "https://www.dailymail.co.uk/femail/article-12926065/Gut-expert-reveals-poo-transplant-improve-health.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 14:33:33 GMT", - "enclosure": { - "length": "9758", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611995-0-image-a-10_1704373046783.jpg" - }, - "content": "Gut expert\u00a0Dr Will Bulsiewicz, from South Carolina,\u00a0revealed how a poo transplant could improve your health making you\u00a0less likely to be diagnosed with cancer and other diseases", - "contentSnippet": "Gut expert\u00a0Dr Will Bulsiewicz, from South Carolina,\u00a0revealed how a poo transplant could improve your health making you\u00a0less likely to be diagnosed with cancer and other diseases", - "guid": "https://www.dailymail.co.uk/femail/article-12926065/Gut-expert-reveals-poo-transplant-improve-health.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T14:33:33.000Z" - }, - { - "title": "The real-life victims behind Mr Bates vs the Post Office who are still fighting for justice after losing their livelihoods - and the bosses caught up in scandal", - "link": "https://www.dailymail.co.uk/news/article-12925621/real-people-mr-bates-vs-post-office-obe-ceo-parish-priest.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 14:21:56 GMT", - "enclosure": { - "length": "10368", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610671-0-image-a-157_1704369177503.jpg" - }, - "content": "Former postmaster Alan Bates led and won a legal battle after himself falling victim to the scandal. His victory paved the way for dozens of convictions to be overturned. He is portrayed by Toby Jones.", - "contentSnippet": "Former postmaster Alan Bates led and won a legal battle after himself falling victim to the scandal. His victory paved the way for dozens of convictions to be overturned. He is portrayed by Toby Jones.", - "guid": "https://www.dailymail.co.uk/news/article-12925621/real-people-mr-bates-vs-post-office-obe-ceo-parish-priest.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T14:21:56.000Z" - }, - { - "title": "Kate Middleton and Prince William are a 'normal mum and dad' who queue for the tombola at school fairs and never miss a school event, sources claim", - "link": "https://www.dailymail.co.uk/femail/article-12925861/Kate-Middleton-Prince-William-normal-mum-dad-queue-tombola-school-fairs-never-miss-school-event-sources-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 14:12:05 GMT", - "enclosure": { - "length": "11738", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611029-0-image-a-3_1704369878937.jpg" - }, - "content": "The Prince and Princess of Wales, both 41, throw themselves into events at Lambrook School in Berkshire where their three children are pupils, a source told Hello! magazine.", - "contentSnippet": "The Prince and Princess of Wales, both 41, throw themselves into events at Lambrook School in Berkshire where their three children are pupils, a source told Hello! magazine.", - "guid": "https://www.dailymail.co.uk/femail/article-12925861/Kate-Middleton-Prince-William-normal-mum-dad-queue-tombola-school-fairs-never-miss-school-event-sources-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T14:12:05.000Z" - }, - { - "title": "UK to get its first ever LGBTQ+ only housing for over-55s if new scheme in Manchester is approved", - "link": "https://www.dailymail.co.uk/news/article-12926315/LGBTQ-extra-care-housing-development-Manchester-UKs-55s-residents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 14:12:04 GMT", - "enclosure": { - "length": "8534", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79612907-0-image-a-7_1704374616634.jpg" - }, - "content": "The ground-breaking proposal in Manchester has been revealed by Great Places Housing Group, which plans to build two new apartment block at the site of a demolished hospital.", - "contentSnippet": "The ground-breaking proposal in Manchester has been revealed by Great Places Housing Group, which plans to build two new apartment block at the site of a demolished hospital.", - "guid": "https://www.dailymail.co.uk/news/article-12926315/LGBTQ-extra-care-housing-development-Manchester-UKs-55s-residents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T14:12:04.000Z" - }, - { - "title": "This common method of de-icing your cars on wintry mornings could land you with an \u00a380 fine", - "link": "https://www.dailymail.co.uk/news/article-12925993/common-method-icing-cars-land-80-fine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 14:05:38 GMT", - "enclosure": { - "length": "10721", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610087-0-image-m-13_1704368407477.jpg" - }, - "content": "A frozen car window isn't the most ideal thing to wake up to when you rushing to get set on your morning commute, but this de-icing method could land you in some hot water.", - "contentSnippet": "A frozen car window isn't the most ideal thing to wake up to when you rushing to get set on your morning commute, but this de-icing method could land you in some hot water.", - "guid": "https://www.dailymail.co.uk/news/article-12925993/common-method-icing-cars-land-80-fine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T14:05:38.000Z" - }, - { - "title": "Actress Lindsay Duncan reveals she made sure her mother, who had dementia, 'went peacefully' by deciding against her having surgery at the end of her life - and says she hopes her family would do the same for her", - "link": "https://www.dailymail.co.uk/femail/article-12925971/Actress-Lindsay-Duncan-reveals-sure-mother-dementia-went-peacefully-deciding-against-having-surgery-end-life-says-hopes-family-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 13:56:22 GMT", - "enclosure": { - "length": "8324", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611355-0-image-a-10_1704370540169.jpg" - }, - "content": "Speaking on BBC Woman's Hour, the star, 73, who is originally from Scotland but lives in London, also revealed that she hopes her family would do the same for her.", - "contentSnippet": "Speaking on BBC Woman's Hour, the star, 73, who is originally from Scotland but lives in London, also revealed that she hopes her family would do the same for her.", - "guid": "https://www.dailymail.co.uk/femail/article-12925971/Actress-Lindsay-Duncan-reveals-sure-mother-dementia-went-peacefully-deciding-against-having-surgery-end-life-says-hopes-family-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T13:56:22.000Z" - }, - { - "title": "Brits are warned price rises sparked by Houthi rebel attacks on cargo vessels are 'imminent' as shipping giants divert around South Africa, with a knock-on effect on inflation and even mortgages", - "link": "https://www.dailymail.co.uk/news/article-12925631/Price-rises-Houthi-rebel-attacks-cargo-vessels-imminent.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 13:55:40 GMT", - "enclosure": { - "length": "10986", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79611407-0-image-m-14_1704376510666.jpg" - }, - "content": "Vessels passing Yemen have come under frequent attack since Israel launched its offensive in Gaza following the October 7 terror attack by the Hamas terror group.", - "contentSnippet": "Vessels passing Yemen have come under frequent attack since Israel launched its offensive in Gaza following the October 7 terror attack by the Hamas terror group.", - "guid": "https://www.dailymail.co.uk/news/article-12925631/Price-rises-Houthi-rebel-attacks-cargo-vessels-imminent.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T13:55:40.000Z" - }, - { - "title": "Michael Schumacher is visited by son Mick's girlfriend, 23, as Danish model is one of a select few allowed into the 'inner circle'", - "link": "https://www.dailymail.co.uk/sport/formulaone/article-12926155/Michael-Schumacher-visited-son-Micks-girlfriend-23-Danish-model-one-select-allowed-inner-circle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 13:48:47 GMT", - "enclosure": { - "length": "9631", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611245-0-image-a-46_1704370414742.jpg" - }, - "content": "After a serious accident in December 2013, Michael's wife Corinna, 54, has protected the privacy of the seven-time world champion.", - "contentSnippet": "After a serious accident in December 2013, Michael's wife Corinna, 54, has protected the privacy of the seven-time world champion.", - "guid": "https://www.dailymail.co.uk/sport/formulaone/article-12926155/Michael-Schumacher-visited-son-Micks-girlfriend-23-Danish-model-one-select-allowed-inner-circle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T13:48:47.000Z" - }, - { - "title": "Family who had to investigate their 19-year-old autistic son's cause of death themselves blast inquest system", - "link": "https://www.dailymail.co.uk/news/article-12925705/family-autistic-son-cause-death-blast-inquest-system.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 13:33:10 GMT", - "enclosure": { - "length": "5338", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611579-0-image-m-9_1704371216950.jpg" - }, - "content": "Will Melbourne , 19, was found dead at his Cheshire home on December 18, 2020 after he mistakenly had taken a strong synthetic opioid 100 times stronger than morphine he bought on the dark web.", - "contentSnippet": "Will Melbourne , 19, was found dead at his Cheshire home on December 18, 2020 after he mistakenly had taken a strong synthetic opioid 100 times stronger than morphine he bought on the dark web.", - "guid": "https://www.dailymail.co.uk/news/article-12925705/family-autistic-son-cause-death-blast-inquest-system.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T13:33:10.000Z" - }, - { - "title": "World Athletics president Seb Coe says sportswomen would never win Olympic gold medals again if they had to compete against transgender rivals", - "link": "https://www.dailymail.co.uk/news/article-12926051/world-athletics-president-seb-coe-transgender-athletes-concerns.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 13:16:45 GMT", - "enclosure": { - "length": "8171", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610577-0-image-m-34_1704369305567.jpg" - }, - "content": "Lord Coe suggested in a new interview the gap is so large that females competing at the Olympics wouldn't stand a chance against trans women.", - "contentSnippet": "Lord Coe suggested in a new interview the gap is so large that females competing at the Olympics wouldn't stand a chance against trans women.", - "guid": "https://www.dailymail.co.uk/news/article-12926051/world-athletics-president-seb-coe-transgender-athletes-concerns.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T13:16:45.000Z" - }, - { - "title": "Luke Littler vows to help his beauty consultant girlfriend Eloise Milburn, 21, become a professional darts player after the 16-year-old prodigy fell short in the World Darts Championship final against Luke Humphries", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12926257/Luke-Littler-vows-help-beauty-consultant-girlfriend-Eloise-Milburn-21-professional-darts-player-16-year-old-prodigy-fell-short-World-Darts-Championship-final-against-Luke-Humphries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 13:04:39 GMT", - "enclosure": { - "length": "11114", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611877-0-image-a-22_1704372397307.jpg" - }, - "content": "Luke Littler has vowed to get his girlfriend Eloise Milburn to the same level of darts that he is at following his defeat in the World Darts Championship final.", - "contentSnippet": "Luke Littler has vowed to get his girlfriend Eloise Milburn to the same level of darts that he is at following his defeat in the World Darts Championship final.", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12926257/Luke-Littler-vows-help-beauty-consultant-girlfriend-Eloise-Milburn-21-professional-darts-player-16-year-old-prodigy-fell-short-World-Darts-Championship-final-against-Luke-Humphries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T13:04:39.000Z" - }, - { - "title": "The Traitors series two opening episode pulls in 3.1MILLION viewers beating numbers for series one's debut as popular show returns to BBC", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12925939/The-Traitors-series-two-opening-episode-pulls-3-1MILLION-viewers-beating-numbers-series-ones-debut-popular-returns-BBC.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 13:02:57 GMT", - "enclosure": { - "length": "9696", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610567-0-image-a-135_1704368944165.jpg" - }, - "content": "The Traitors series two opening episode pulled in an impressive 3.1million viewers as it returned to the BBC\u00a0on Wednesday night.\u00a0", - "contentSnippet": "The Traitors series two opening episode pulled in an impressive 3.1million viewers as it returned to the BBC\u00a0on Wednesday night.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12925939/The-Traitors-series-two-opening-episode-pulls-3-1MILLION-viewers-beating-numbers-series-ones-debut-popular-returns-BBC.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T13:02:57.000Z" - }, - { - "title": "Woman who lost 90LBS in just 12 months goes viral after documenting her incredible physical transformation - as she reveals healthy regimen that helped her slim down", - "link": "https://www.dailymail.co.uk/femail/article-12923481/woman-90-pounds-weight-loss-one-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 12:51:26 GMT", - "enclosure": { - "length": "10752", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587669-0-image-a-78_1704314059637.jpg" - }, - "content": "Ashley Gertley, a salon owner from Ontario, Canada, took to TikTok a few weeks before the new year to share pictures and videos of herself beginning last January and ending in December.", - "contentSnippet": "Ashley Gertley, a salon owner from Ontario, Canada, took to TikTok a few weeks before the new year to share pictures and videos of herself beginning last January and ending in December.", - "guid": "https://www.dailymail.co.uk/femail/article-12923481/woman-90-pounds-weight-loss-one-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T12:51:26.000Z" - }, - { - "title": "Asparagus fortune teller claims 2024 will see a royal divorce, a female US president and an Olympic flop", - "link": "https://www.dailymail.co.uk/femail/article-12926113/ssparagus-fortune-teller-2024-royal-divorce-female-president.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 12:38:10 GMT", - "enclosure": { - "length": "10059", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611373-0-image-a-31_1704370637178.jpg" - }, - "content": "Jemima Packington, 67, from Bath, is the world's only asparamancer and claims she can peer into the future by tossing spears in the air and interpreting how they land.", - "contentSnippet": "Jemima Packington, 67, from Bath, is the world's only asparamancer and claims she can peer into the future by tossing spears in the air and interpreting how they land.", - "guid": "https://www.dailymail.co.uk/femail/article-12926113/ssparagus-fortune-teller-2024-royal-divorce-female-president.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T12:38:10.000Z" - }, - { - "title": "British Army soldier who stole military equipment and gave it to a weapons maker who produced guns for Saving Private Ryan was busted when officers found the firearms in a secret room behind a bookcase", - "link": "https://www.dailymail.co.uk/news/article-12926087/British-Army-soldier-stole-military-equipment-gave-weapons-maker-produced-guns-Saving-Private-Ryan-busted-officers-firearms-secret-room-bookcase.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 12:37:53 GMT", - "enclosure": { - "length": "7571", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611387-0-image-m-13_1704371311179.jpg" - }, - "content": "Staff Sergeant Andrew Tongue pinched Ministry of Defence equipment over a four year period whilst in cahoots with licensed firearms dealer Gary Howard.", - "contentSnippet": "Staff Sergeant Andrew Tongue pinched Ministry of Defence equipment over a four year period whilst in cahoots with licensed firearms dealer Gary Howard.", - "guid": "https://www.dailymail.co.uk/news/article-12926087/British-Army-soldier-stole-military-equipment-gave-weapons-maker-produced-guns-Saving-Private-Ryan-busted-officers-firearms-secret-room-bookcase.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T12:37:53.000Z" - }, - { - "title": "Sadiq Khan must use minimum service laws to keep Tube running during strike, Tories say as it is revealed chaos will also spread to Elizabeth Line and five other major rail routes", - "link": "https://www.dailymail.co.uk/news/article-12926025/tube-strike-sadiq-khan-chaos-elizabeth-line-chiltern-railways.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 12:29:40 GMT", - "enclosure": { - "length": "9025", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/03/11/79566151-0-image-m-74_1704280628170.jpg" - }, - "content": "The London Underground will have 'little to no service' next week with a major Tube strike that begins tomorrow set to plunge the capital into travel chaos from Monday until Thursday.", - "contentSnippet": "The London Underground will have 'little to no service' next week with a major Tube strike that begins tomorrow set to plunge the capital into travel chaos from Monday until Thursday.", - "guid": "https://www.dailymail.co.uk/news/article-12926025/tube-strike-sadiq-khan-chaos-elizabeth-line-chiltern-railways.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T12:29:40.000Z" - }, - { - "title": "Tributes are paid to mother-of-three, 33, found dead at her home on New Year's Day as police arrest husband", - "link": "https://www.dailymail.co.uk/news/article-12926015/Tributes-paid-mother-three-33-dead-home-New-Years-Day-police-arrest-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 12:09:11 GMT", - "enclosure": { - "length": "6718", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79610649-0-image-m-9_1704369724724.jpg" - }, - "content": "Naso Isaacs, 33, was discovered at her home in North Berwick, East Lothian after police received a report of concern about the mother's well-being.", - "contentSnippet": "Naso Isaacs, 33, was discovered at her home in North Berwick, East Lothian after police received a report of concern about the mother's well-being.", - "guid": "https://www.dailymail.co.uk/news/article-12926015/Tributes-paid-mother-three-33-dead-home-New-Years-Day-police-arrest-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T12:09:11.000Z" - }, - { - "title": "Human brain is superior and more efficient than artificial intelligence, scientists say", - "link": "https://www.dailymail.co.uk/sciencetech/article-12925689/Human-brain-superior-efficient-artificial-intelligence-scientists-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 11:14:47 GMT", - "enclosure": { - "length": "9615", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607381-0-image-a-18_1704365068410.jpg" - }, - "content": "Robots might not be overtaking humanity for a long time yet according to scientists from the University of Oxford who say that the human brain learns more efficiently.", - "contentSnippet": "Robots might not be overtaking humanity for a long time yet according to scientists from the University of Oxford who say that the human brain learns more efficiently.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12925689/Human-brain-superior-efficient-artificial-intelligence-scientists-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T11:14:47.000Z" - }, - { - "title": "Jeffrey Epstein offered money to prove claims Stephen Hawking had an 'underage orgy' were false, bombshell court documents show", - "link": "https://www.dailymail.co.uk/news/article-12925595/Jeffrey-Epstein-offered-money-prove-claims-Stephen-Hawking-underage-orgy-false-bombshell-court-documents-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 11:05:24 GMT", - "enclosure": { - "length": "7163", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607941-0-image-m-26_1704364202811.jpg" - }, - "content": "In an email sent from Epstein to Maxwell on January 12, 2015, the paedophile financier suggested Ms Giuffre had made allegations relating to the British physicist.", - "contentSnippet": "In an email sent from Epstein to Maxwell on January 12, 2015, the paedophile financier suggested Ms Giuffre had made allegations relating to the British physicist.", - "guid": "https://www.dailymail.co.uk/news/article-12925595/Jeffrey-Epstein-offered-money-prove-claims-Stephen-Hawking-underage-orgy-false-bombshell-court-documents-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T11:05:24.000Z" - }, - { - "title": "Abandoned Staffordshire reservoir filmed for Grand Designs to go to auction with a \u00a3250k reduction", - "link": "https://www.dailymail.co.uk/property/article-12918931/Abandoned-Staffordshire-reservoir-filmed-Grand-Designs-auction-250k-reduction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 02 Jan 2024 16:44:21 GMT", - "enclosure": { - "length": "6414", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/02/13/79534137-0-image-a-19_1704203543627.jpg" - }, - "content": "The abandoned underground reservoir in Staffordshire is going to auction later this month with a guide price of \u00a3600,000.", - "contentSnippet": "The abandoned underground reservoir in Staffordshire is going to auction later this month with a guide price of \u00a3600,000.", - "guid": "https://www.dailymail.co.uk/property/article-12918931/Abandoned-Staffordshire-reservoir-filmed-Grand-Designs-auction-250k-reduction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-02T16:44:21.000Z" - }, - { - "title": "Inside the \u00a31.65million Durham House dating back to 1847 that blends 'old-world charm and modern luxury'", - "link": "https://www.dailymail.co.uk/property/article-12903731/Inside-1-65million-Durham-House-dating-1847-blends-old-world-charm-modern-luxury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 02 Jan 2024 13:30:09 GMT", - "enclosure": { - "length": "8643", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/27/14/79369183-0-image-m-41_1703685779545.jpg" - }, - "content": "Durham House boasts a host of original features despite being renovated two decades ago, including the date of the property etched on the headstone of the original door", - "contentSnippet": "Durham House boasts a host of original features despite being renovated two decades ago, including the date of the property etched on the headstone of the original door", - "guid": "https://www.dailymail.co.uk/property/article-12903731/Inside-1-65million-Durham-House-dating-1847-blends-old-world-charm-modern-luxury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-02T13:30:09.000Z" - }, - { - "title": "Nothing to sea here! Beach hut goes on the market for \u00a317,000 in popular Suffolk resort...but it's on grass and there's NO view of the water", - "link": "https://www.dailymail.co.uk/property/article-12916355/beach-hut-sale-popular-resort-no-sea-view.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 01 Jan 2024 16:10:25 GMT", - "enclosure": { - "length": "7852", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/01/14/79505443-0-image-a-46_1704120579781.jpg" - }, - "content": "The vibrant green unfurnished hut sits on a grassy area on top of a cliff in Brackenbury Fort, Felixstowe.", - "contentSnippet": "The vibrant green unfurnished hut sits on a grassy area on top of a cliff in Brackenbury Fort, Felixstowe.", - "guid": "https://www.dailymail.co.uk/property/article-12916355/beach-hut-sale-popular-resort-no-sea-view.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-01T16:10:25.000Z" - }, - { - "title": "ACTION PLAN:\u00a0CIAR BYRNE's essential jobs for your garden this week", - "link": "https://www.dailymail.co.uk/home/gardening/article-12915569/ACTION-PLAN-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 01 Jan 2024 01:44:28 GMT", - "enclosure": { - "length": "4964", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/01/01/79493587-0-image-a-47_1704073382606.jpg" - }, - "content": "The beauty of terrariums is you can enjoy a living world in miniature even if you have only the tiniest available indoor space. UK gardening expert Ciar Byrne explains how you can make one.", - "contentSnippet": "The beauty of terrariums is you can enjoy a living world in miniature even if you have only the tiniest available indoor space. UK gardening expert Ciar Byrne explains how you can make one.", - "guid": "https://www.dailymail.co.uk/home/gardening/article-12915569/ACTION-PLAN-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-01T01:44:28.000Z" - }, - { - "title": "Plot a healthy balance in 2024:\u00a0The start of a new year gives a welcome chance to ring the changes", - "link": "https://www.dailymail.co.uk/home/gardening/article-12915561/Plot-healthy-balance-2024-start-new-year-gives-welcome-chance-ring-changes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 01 Jan 2024 01:28:53 GMT", - "enclosure": { - "length": "9218", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/01/01/79493593-0-image-m-33_1704072478974.jpg" - }, - "content": "UK expert Ciar Byrne shares her gardening resolutions for 2024 and encourages would-be gardeners to commit to spending half an hour or even ten minutes a day tending to the garden.", - "contentSnippet": "UK expert Ciar Byrne shares her gardening resolutions for 2024 and encourages would-be gardeners to commit to spending half an hour or even ten minutes a day tending to the garden.", - "guid": "https://www.dailymail.co.uk/home/gardening/article-12915561/Plot-healthy-balance-2024-start-new-year-gives-welcome-chance-ring-changes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-01T01:28:53.000Z" - }, - { - "title": "THE CHIC LIST: New year revelations", - "link": "https://www.dailymail.co.uk/home/you/article-12881193/THE-CHIC-LIST-New-year-revelations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 31 Dec 2023 08:34:08 GMT", - "enclosure": { - "length": "685827", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/28/14/79403353-0-image-a-9_1703773496771.jpg" - }, - "content": "No night of the year is more controversial. New Year's Eve, planned with great intentions, too often fails to live up to expectations", - "contentSnippet": "No night of the year is more controversial. New Year's Eve, planned with great intentions, too often fails to live up to expectations", - "guid": "https://www.dailymail.co.uk/home/you/article-12881193/THE-CHIC-LIST-New-year-revelations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-31T08:34:08.000Z" - }, - { - "title": "LIZ JONES'S DIARY: In which I break down completely", - "link": "https://www.dailymail.co.uk/home/you/article-12885367/LIZ-JONESS-DIARY-Benji-horse-Bath.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 14:40:37 GMT", - "enclosure": { - "length": "3404", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/27/11/79178249-0-image-m-33_1703676873427.jpg" - }, - "content": "What they don't see is that the Prada skirt was bought with a discount in 1998. That The Pig, dinner, train and taxi fares mean three weeks from payday I have \u00a35.94 left in my account.", - "contentSnippet": "What they don't see is that the Prada skirt was bought with a discount in 1998. That The Pig, dinner, train and taxi fares mean three weeks from payday I have \u00a35.94 left in my account.", - "guid": "https://www.dailymail.co.uk/home/you/article-12885367/LIZ-JONESS-DIARY-Benji-horse-Bath.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T14:40:37.000Z" - }, - { - "title": "CAROLINE WEST MEADS: I think my sister is jealous of my life... We parted on bad terms and my husband never wants to see her again", - "link": "https://www.dailymail.co.uk/home/you/article-12885363/CAROLINE-WEST-MEADS-think-sister-jealous-life-parted-bad-terms-husband-never-wants-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:08:04 GMT", - "enclosure": { - "length": "672779", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/28/14/79403355-0-image-a-14_1703773520215.jpg" - }, - "content": "My sister has lived in the US for 50 years. She is 72, I am 78. Many years ago, she married an American but they divorced when their son was young.", - "contentSnippet": "My sister has lived in the US for 50 years. She is 72, I am 78. Many years ago, she married an American but they divorced when their son was young.", - "guid": "https://www.dailymail.co.uk/home/you/article-12885363/CAROLINE-WEST-MEADS-think-sister-jealous-life-parted-bad-terms-husband-never-wants-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:08:04.000Z" - }, - { - "title": "HOROSCOPES: Your stars for the week", - "link": "https://www.dailymail.co.uk/home/you/article-12885351/HOROSCOPES-stars-week-Sally-Brompton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:07:41 GMT", - "enclosure": { - "length": "12296", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/27/11/77971993-0-image-a-38_1703677182408.jpg" - }, - "content": "Your stars for this week by Sally Brompton", - "contentSnippet": "Your stars for this week by Sally Brompton", - "guid": "https://www.dailymail.co.uk/home/you/article-12885351/HOROSCOPES-stars-week-Sally-Brompton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:07:41.000Z" - }, - { - "title": "The hottest trend for 2024: Saunas", - "link": "https://www.dailymail.co.uk/home/you/article-12885089/The-hottest-trend-2024-Saunas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:07:24 GMT", - "enclosure": { - "length": "9134", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/21/13/79178233-0-image-m-26_1703164617062.jpg" - }, - "content": "From far-flung locations to DIY pop-ups, Emma O'Kelly goes in search of the world's steamiest saunas.", - "contentSnippet": "From far-flung locations to DIY pop-ups, Emma O'Kelly goes in search of the world's steamiest saunas.", - "guid": "https://www.dailymail.co.uk/home/you/article-12885089/The-hottest-trend-2024-Saunas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:07:24.000Z" - }, - { - "title": "Tom Parker Bowles savours the fresh flavours at buzzy new seafood restaurant Faber in London's Hammersmith", - "link": "https://www.dailymail.co.uk/home/you/article-12882187/Tom-Parker-Bowles-review-Faber-Hammersmith.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:06:51 GMT", - "enclosure": { - "length": "9166", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/21/14/79216081-0-image-m-35_1703170680141.jpg" - }, - "content": "Faber, a new West London fish restaurant, does the seemingly impossible", - "contentSnippet": "Faber, a new West London fish restaurant, does the seemingly impossible", - "guid": "https://www.dailymail.co.uk/home/you/article-12882187/Tom-Parker-Bowles-review-Faber-Hammersmith.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:06:51.000Z" - }, - { - "title": "CHARLOTTE KRISTENSEN'S dry January picks", - "link": "https://www.dailymail.co.uk/home/you/article-12882225/CHARLOTTE-KRISTENSENS-dry-January-picks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:06:36 GMT", - "enclosure": { - "length": "2480", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/21/15/79216069-0-image-m-54_1703171267567.jpg" - }, - "content": "A record-breaking number of people are expected to embrace #dryjanuary in 2024.", - "contentSnippet": "A record-breaking number of people are expected to embrace #dryjanuary in 2024.", - "guid": "https://www.dailymail.co.uk/home/you/article-12882225/CHARLOTTE-KRISTENSENS-dry-January-picks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:06:36.000Z" - }, - { - "title": "THE CANNY COOK:\u00a0Smoked haddock, bean and sweetcorn chowder", - "link": "https://www.dailymail.co.uk/home/you/article-12882133/THE-CANNY-COOK-Smoked-haddock-bean-sweetcorn-chowder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:06:21 GMT", - "enclosure": { - "length": "5705", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/21/15/79216965-0-image-m-83_1703172750761.jpg" - }, - "content": "A rich and warming soup that can be on the table in 20 minutes.", - "contentSnippet": "A rich and warming soup that can be on the table in 20 minutes.", - "guid": "https://www.dailymail.co.uk/home/you/article-12882133/THE-CANNY-COOK-Smoked-haddock-bean-sweetcorn-chowder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:06:21.000Z" - }, - { - "title": "Olympian Jessica Ennis Hill tells Tom Parker Bowles about her love of patriotic pudding - and a celebratory burger!", - "link": "https://www.dailymail.co.uk/home/you/article-12882083/Jessica-Ennis-Hill-food-Tom-Parker-Bowles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:06:05 GMT", - "enclosure": { - "length": "678657", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/28/14/79403357-0-image-a-22_1703773574771.jpg" - }, - "content": "My first food memory was being fed liquidised tripe as a toddler by my mum and dad. It was really disgusting!", - "contentSnippet": "My first food memory was being fed liquidised tripe as a toddler by my mum and dad. It was really disgusting!", - "guid": "https://www.dailymail.co.uk/home/you/article-12882083/Jessica-Ennis-Hill-food-Tom-Parker-Bowles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:06:05.000Z" - }, - { - "title": "Nutritiously Ella: Simple, quick dishes from queen of healthy cooking ELLA MILLS", - "link": "https://www.dailymail.co.uk/home/you/article-12882029/Nutritiously-Ella-Simple-quick-dishes-queen-healthy-cooking-ELLA-MILLS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:05:49 GMT", - "enclosure": { - "length": "7964", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/21/15/79216697-0-image-m-112_1703173528088.jpg" - }, - "content": "Everyday butter bean, carrot and sweet potato soup", - "contentSnippet": "Everyday butter bean, carrot and sweet potato soup", - "guid": "https://www.dailymail.co.uk/home/you/article-12882029/Nutritiously-Ella-Simple-quick-dishes-queen-healthy-cooking-ELLA-MILLS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:05:49.000Z" - }, - { - "title": "Sir Nicholas Winton - The 'British Schindler': How on the eve of the Second World War, a quiet Home Counties stockbroker rescued hundreds of young lives from Nazi persecution", - "link": "https://www.dailymail.co.uk/home/you/article-12881929/One-Life-film-Nicholas-Winton-Anthony-Hopkins.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:05:31 GMT", - "enclosure": { - "length": "7027", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/27/12/79180657-0-image-m-76_1703680466934.jpg" - }, - "content": "On the eve of the Second World War, a quiet Home Counties stockbroker rescued hundreds of young lives from Nazi persecution.", - "contentSnippet": "On the eve of the Second World War, a quiet Home Counties stockbroker rescued hundreds of young lives from Nazi persecution.", - "guid": "https://www.dailymail.co.uk/home/you/article-12881929/One-Life-film-Nicholas-Winton-Anthony-Hopkins.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:05:31.000Z" - }, - { - "title": "FASHION: Happy new comfort zone", - "link": "https://www.dailymail.co.uk/home/you/article-12886579/FASHION-Happy-new-comfort-zone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:05:13 GMT", - "enclosure": { - "length": "6084", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/20/17/79177223-0-image-m-307_1703092273877.jpg" - }, - "content": "Beat the January blues with a big hug from your wardrobe, says fashion stylist Stephanie Sofokleous", - "contentSnippet": "Beat the January blues with a big hug from your wardrobe, says fashion stylist Stephanie Sofokleous", - "guid": "https://www.dailymail.co.uk/home/you/article-12886579/FASHION-Happy-new-comfort-zone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:05:13.000Z" - }, - { - "title": "AGELESS STYLE: The tux", - "link": "https://www.dailymail.co.uk/home/you/article-12881745/AGELESS-STYLE-tux.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:04:55 GMT", - "enclosure": { - "length": "5620", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/20/15/79175409-0-image-m-126_1703086322077.jpg" - }, - "content": "Here at YOU we're huge advocates of occasionwear tailoring", - "contentSnippet": "Here at YOU we're huge advocates of occasionwear tailoring", - "guid": "https://www.dailymail.co.uk/home/you/article-12881745/AGELESS-STYLE-tux.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:04:55.000Z" - }, - { - "title": "CosMc's: New McDonald's everyone is talking about", - "link": "https://www.dailymail.co.uk/home/you/article-12881729/CosMcs-New-McDonalds-talking-about.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:04:37 GMT", - "enclosure": { - "length": "8959", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/20/15/79175233-0-image-m-10_1703085994921.jpg" - }, - "content": "I've just seen that McDonald's has launched a spinoff. How depressing.", - "contentSnippet": "I've just seen that McDonald's has launched a spinoff. How depressing.", - "guid": "https://www.dailymail.co.uk/home/you/article-12881729/CosMcs-New-McDonalds-talking-about.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:04:37.000Z" - }, - { - "title": "BEAUTY: The glow-slow lowdown", - "link": "https://www.dailymail.co.uk/home/you/article-12881273/BEAUTY-glow-slow-lowdown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:04:16 GMT", - "enclosure": { - "length": "2678", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/20/15/79174289-0-image-a-99_1703085235348.jpg" - }, - "content": "Post-New Year's Eve we enter that blissful time of year when the mantelpiece is empty of invitations", - "contentSnippet": "Post-New Year's Eve we enter that blissful time of year when the mantelpiece is empty of invitations", - "guid": "https://www.dailymail.co.uk/home/you/article-12881273/BEAUTY-glow-slow-lowdown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:04:16.000Z" - }, - { - "title": "THE GREEN GUIDE: Diffuser set, from \u00a349", - "link": "https://www.dailymail.co.uk/home/you/article-12881129/THE-GREEN-GUIDE-Diffuser-set-49.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 12:03:43 GMT", - "enclosure": { - "length": "6558", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/20/14/79173263-0-image-m-10_1703083488814.jpg" - }, - "content": "Diffuser set from \u00a349, plus \u00a335 for refills, with a subscription service, stinklondon.com", - "contentSnippet": "Diffuser set from \u00a349, plus \u00a335 for refills, with a subscription service, stinklondon.com", - "guid": "https://www.dailymail.co.uk/home/you/article-12881129/THE-GREEN-GUIDE-Diffuser-set-49.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T12:03:43.000Z" - }, - { - "title": "Shopping Finder Intersport\u00a0 Competition: Terms and conditions", - "link": "https://www.dailymail.co.uk/home/article-12907801/Shopping-Finder-Intersport-Competition-Terms-conditions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 30 Dec 2023 10:03:47 GMT", - "enclosure": { - "length": "6451", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/29/11/79433019-0-image-a-4_1703850125742.jpg" - }, - "content": "This prize draw (the \"Promotion\") is only open to UK residents (excluding Northern Ireland ), excluding employees and agents of (a) the Promoter or (b) any company connected with...", - "contentSnippet": "This prize draw (the \"Promotion\") is only open to UK residents (excluding Northern Ireland ), excluding employees and agents of (a) the Promoter or (b) any company connected with...", - "guid": "https://www.dailymail.co.uk/home/article-12907801/Shopping-Finder-Intersport-Competition-Terms-conditions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-30T10:03:47.000Z" - }, - { - "title": "How will you fare next year? After a turbulent 12 months, things could be looking up for the housing market", - "link": "https://www.dailymail.co.uk/property/article-12907563/How-fare-year-turbulent-12-months-things-looking-housing-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 29 Dec 2023 15:16:43 GMT", - "enclosure": { - "length": "13117", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/28/18/79411343-0-image-m-6_1703788323660.jpg" - }, - "content": "Whisper it quietly but the prospects for the 2024 housing market are much stronger than many expected just a few months ago.", - "contentSnippet": "Whisper it quietly but the prospects for the 2024 housing market are much stronger than many expected just a few months ago.", - "guid": "https://www.dailymail.co.uk/property/article-12907563/How-fare-year-turbulent-12-months-things-looking-housing-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-12-29T15:16:43.000Z" - }, - { - "title": "I won't be cowed: Furious anteater rears up and stretches out its 'arms' to see off herd of cattle crossing a field in Uruguay", - "link": "https://www.dailymail.co.uk/news/article-12926705/Furious-anteater-rears-stretches-arms-herd-cattle-crossing-field-Uruguay.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:21:38 GMT", - "enclosure": { - "length": "7432", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79622189-0-image-m-8_1704387735626.jpg" - }, - "content": "Footage shows the small but mighty animal stand up onto its back legs and come face to face with a cow in Uruguay.", - "contentSnippet": "Footage shows the small but mighty animal stand up onto its back legs and come face to face with a cow in Uruguay.", - "guid": "https://www.dailymail.co.uk/news/article-12926705/Furious-anteater-rears-stretches-arms-herd-cattle-crossing-field-Uruguay.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:21:38.000Z" - }, - { - "title": "Oscar Pistorius walks free from jail tomorrow as a paunchy, greying chain-smoker who will have to look over his shoulder forever: He will live with his rich uncle, gangs are out for revenge - and he may even become a preacher", - "link": "https://www.dailymail.co.uk/sport/othersports/article-12926979/Oscar-Pistorius-walks-free-jail-tomorrow-paunchy-greying-chain-smoker-look-shoulder-forever-live-rich-uncle-gangs-revenge-preacher.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:19:06 GMT", - "enclosure": { - "length": "11002", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79621715-0-image-a-47_1704387424250.jpg" - }, - "content": "JONATHAN MCEVOY: Oscar Pistorius could still be a gem of post-apartheid South Africa. But on Friday the only double amputee in Olympic history will walk away from jail", - "contentSnippet": "JONATHAN MCEVOY: Oscar Pistorius could still be a gem of post-apartheid South Africa. But on Friday the only double amputee in Olympic history will walk away from jail", - "guid": "https://www.dailymail.co.uk/sport/othersports/article-12926979/Oscar-Pistorius-walks-free-jail-tomorrow-paunchy-greying-chain-smoker-look-shoulder-forever-live-rich-uncle-gangs-revenge-preacher.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:19:06.000Z" - }, - { - "title": "Kelly Clarkson's weight loss secrets - will saunas, ice baths and walking work for you? Experts weigh in", - "link": "https://www.dailymail.co.uk/wellness-us/article-12924315/kelly-clarkson-weight-loss-sauna-ice-bath.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:12:01 GMT", - "enclosure": { - "length": "12163", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79622479-0-image-m-10_1704388304889.jpg" - }, - "content": "Kelly Clarkson, 41, has revealed that she lost 37 pounds by walking, eating a protein-heavy diet, plunging into ice-cold water, and stepping into infrared saunas. Experts are surprisingly supportive", - "contentSnippet": "Kelly Clarkson, 41, has revealed that she lost 37 pounds by walking, eating a protein-heavy diet, plunging into ice-cold water, and stepping into infrared saunas. Experts are surprisingly supportive", - "guid": "https://www.dailymail.co.uk/wellness-us/article-12924315/kelly-clarkson-weight-loss-sauna-ice-bath.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:12:01.000Z" - }, - { - "title": "Reeva Steenkamp's mother says she has 'lost hope' that Oscar Pistorius will ever reveal the truth about the night he killed her daughter and blames him for her husband's death - as Blade Runner prepares for his jail release tomorrow", - "link": "https://www.dailymail.co.uk/news/article-12926967/Reeva-Steenkamps-mother-speaks-ahead-release-Oscar-Pistorius.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:06:03 GMT", - "enclosure": { - "length": "6490", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619685-0-image-m-16_1704386856622.jpg" - }, - "content": "The double-amputee athlete, who became world famous as he ran in the Olympics with carbon-fibre prosthetic legs, will leave Atteridgeville jail tomorrow morning after serving just over half his sentence.", - "contentSnippet": "The double-amputee athlete, who became world famous as he ran in the Olympics with carbon-fibre prosthetic legs, will leave Atteridgeville jail tomorrow morning after serving just over half his sentence.", - "guid": "https://www.dailymail.co.uk/news/article-12926967/Reeva-Steenkamps-mother-speaks-ahead-release-Oscar-Pistorius.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:06:03.000Z" - }, - { - "title": "Leeds United star Brenden Aaronson, 23, is banned from driving and fined \u00a31,000 after doing 37mph in a 30mph zone in his high-powered Mercedes", - "link": "https://www.dailymail.co.uk/news/article-12927037/leeds-brenden-aaronson-banned-driving-fined-mercedes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:04:53 GMT", - "enclosure": { - "length": "7855", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79620281-0-image-a-34_1704386793851.jpg" - }, - "content": "The \u00a324.7million Leeds United midfielder was clocked driving at 37mph in a 30mph\u00a0zone on March 12 last year.", - "contentSnippet": "The \u00a324.7million Leeds United midfielder was clocked driving at 37mph in a 30mph\u00a0zone on March 12 last year.", - "guid": "https://www.dailymail.co.uk/news/article-12927037/leeds-brenden-aaronson-banned-driving-fined-mercedes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:04:53.000Z" - }, - { - "title": "Covid, flu and norovirus cases surge across the UK - as expert warns Brits sickened over Christmas and New Year may have succumbed to 'two or three infections' at the same time", - "link": "https://www.dailymail.co.uk/health/article-12926739/Covid-flu-norovirus-cases-UK-Christmas-New-Year-infections.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 17:00:50 GMT", - "enclosure": { - "length": "5476", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79621907-0-image-m-21_1704387504571.jpg" - }, - "content": "Surveillance programmes that monitor the UK's outbreak suggest Covid and flu hospital admissions in England are running at their highest level so far this winter.", - "contentSnippet": "Surveillance programmes that monitor the UK's outbreak suggest Covid and flu hospital admissions in England are running at their highest level so far this winter.", - "guid": "https://www.dailymail.co.uk/health/article-12926739/Covid-flu-norovirus-cases-UK-Christmas-New-Year-infections.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T17:00:50.000Z" - }, - { - "title": "Health visitor who took second NHS job while on sick leave was caught after a colleague took their mother to an appointment and recognised her", - "link": "https://www.dailymail.co.uk/news/article-12926753/Health-visitor-took-second-NHS-job-sick-leave-caught-colleague-took-mother-appointment-recognised-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:52:44 GMT", - "enclosure": { - "length": "6233", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79620983-0-image-m-43_1704387005102.jpg" - }, - "content": "Chelsie Morris - who now runs a yoga firm in Norfolk - accepted a full-time post at a GP surgery while claiming to be unable to report for work at an NHS community service trust.", - "contentSnippet": "Chelsie Morris - who now runs a yoga firm in Norfolk - accepted a full-time post at a GP surgery while claiming to be unable to report for work at an NHS community service trust.", - "guid": "https://www.dailymail.co.uk/news/article-12926753/Health-visitor-took-second-NHS-job-sick-leave-caught-colleague-took-mother-appointment-recognised-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:52:44.000Z" - }, - { - "title": "Nightmare neighbour is told to move house or be jailed after constantly trying to lure next door's cats into her home by rattling box of treats", - "link": "https://www.dailymail.co.uk/news/article-12926725/Nightmare-neighbour-told-house-jailed-constantly-trying-lure-doors-cats-home-rattling-box-treats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:50:48 GMT", - "enclosure": { - "length": "7402", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79618785-0-image-m-9_1704386609875.jpg" - }, - "content": "Angela Montgomery, 50, insists the cats in her neighbour's flat in a North York retirement complex are hers, with one of them belonging to her late mother.", - "contentSnippet": "Angela Montgomery, 50, insists the cats in her neighbour's flat in a North York retirement complex are hers, with one of them belonging to her late mother.", - "guid": "https://www.dailymail.co.uk/news/article-12926725/Nightmare-neighbour-told-house-jailed-constantly-trying-lure-doors-cats-home-rattling-box-treats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:50:48.000Z" - }, - { - "title": "Labour's Rosie Duffield says she has been 'completely exonerated' by the party after being accused of anti-Semitism and transphobia\u00a0over support for comedy writer's Eddie Izzard tweet", - "link": "https://www.dailymail.co.uk/news/article-12927051/Labours-Rosie-Duffield-completely-exonerated-anti-Semitism-transphobia-Eddie-Izzard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 16:47:18 GMT", - "enclosure": { - "length": "8767", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/78249819-0-Rosie_Duffield_52_could_be_blocked_from_defending_her_Canterbury-a-7_1704385854154.jpg" - }, - "content": "The MP for Canterbury said Labour's National Executive Committee had dismissed the claims against her, adding 'there was no case to answer, and nothing I had done had breached any rule'.", - "contentSnippet": "The MP for Canterbury said Labour's National Executive Committee had dismissed the claims against her, adding 'there was no case to answer, and nothing I had done had breached any rule'.", - "guid": "https://www.dailymail.co.uk/news/article-12927051/Labours-Rosie-Duffield-completely-exonerated-anti-Semitism-transphobia-Eddie-Izzard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T16:47:18.000Z" - }, - { - "title": "Floods LIVE: Storm Henk chaos as 1,000 homes are evacuated, victims show inside their flooded homes, schools close and party boat sinks", - "link": "https://www.dailymail.co.uk/news/live/article-12929763/floods-live-updates-storm-henk-chaos-warnings-uk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:54:12 GMT", - "enclosure": { - "length": "11315", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79650287-0-image-a-55_1704450570651.jpg" - }, - "content": "Follow MailOnline's weather liveblog for updates today as hundreds of flood warnings remain in place and commuters face more travel disruption after further heavy downpours following Storm Henk.", - "contentSnippet": "Follow MailOnline's weather liveblog for updates today as hundreds of flood warnings remain in place and commuters face more travel disruption after further heavy downpours following Storm Henk.", - "guid": "https://www.dailymail.co.uk/news/live/article-12929763/floods-live-updates-storm-henk-chaos-warnings-uk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:54:12.000Z" - }, - { - "title": "Kate Garraway's husband Derek Draper death latest: Former political adviser dies aged 56 following three-year long Covid battle", - "link": "https://www.dailymail.co.uk/news/live/article-12930009/Derek-draper-live-updates-death-kate-garraway-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:53:57 GMT", - "enclosure": { - "length": "6155", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652839-0-image-a-4_1704455446886.jpg" - }, - "content": "Follow MailOnline for live updates today after TV presenter Kate Garraway announced the death of her husband, Derek Draper, at the age of 56.", - "contentSnippet": "Follow MailOnline for live updates today after TV presenter Kate Garraway announced the death of her husband, Derek Draper, at the age of 56.", - "guid": "https://www.dailymail.co.uk/news/live/article-12930009/Derek-draper-live-updates-death-kate-garraway-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:53:57.000Z" - }, - { - "title": "Kate Garraway's GMB colleague Susanna Reid and Alan Carr lead celebrity sympathy messages to heartbroken star as she announces\u00a0husband Derek Draper's death aged 56", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12930073/Kate-Garraways-GMB-colleague-Susanna-Reid-Alan-Carr-lead-celebrity-tributes-heartbroken-star-announces-husband-Derek-Drapers-death-aged-56.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:53:25 GMT", - "enclosure": { - "length": "10702", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654683-0-image-m-101_1704458607488.jpg" - }, - "content": "Kate Garraway was met with a slew of celebrity condolences after announcing the death of her husband Derek Draper on Friday.\u00a0", - "contentSnippet": "Kate Garraway was met with a slew of celebrity condolences after announcing the death of her husband Derek Draper on Friday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12930073/Kate-Garraways-GMB-colleague-Susanna-Reid-Alan-Carr-lead-celebrity-tributes-heartbroken-star-announces-husband-Derek-Drapers-death-aged-56.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:53:25.000Z" - }, - { - "title": "NatWest chief Sir Howard Davies (who earns \u00a3750k a year) sparks fury by claiming it is 'not that difficult' for Brits to get on the property ladder", - "link": "https://www.dailymail.co.uk/news/article-12930165/NatWest-Howard-Davies-banker-difficult-house-homes-property-ladder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:51:58 GMT", - "enclosure": { - "length": "6845", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654399-0-image-m-21_1704459024635.jpg" - }, - "content": "Sir Howard Davies made the controversial comment as he argued that prospective buyers needed to save up - adding that 'is the way it always used to be'.", - "contentSnippet": "Sir Howard Davies made the controversial comment as he argued that prospective buyers needed to save up - adding that 'is the way it always used to be'.", - "guid": "https://www.dailymail.co.uk/news/article-12930165/NatWest-Howard-Davies-banker-difficult-house-homes-property-ladder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:51:58.000Z" - }, - { - "title": "The best-selling new cars and brands of 2023: Is your motor among the 10 most popular models?", - "link": "https://www.dailymail.co.uk/money/cars/article-12923361/Best-selling-new-cars-brands-2023-REVEALED.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:44:52 GMT", - "enclosure": { - "length": "12204", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651657-0-image-m-47_1704453653007.jpg" - }, - "content": "Registrations data collated by the SMMT lists the top models by sales figures in Britain last year - and among the 10 most in-demand motors is three British-built cars.", - "contentSnippet": "Registrations data collated by the SMMT lists the top models by sales figures in Britain last year - and among the 10 most in-demand motors is three British-built cars.", - "guid": "https://www.dailymail.co.uk/money/cars/article-12923361/Best-selling-new-cars-brands-2023-REVEALED.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:44:52.000Z" - }, - { - "title": "Kate Garraway's ITV co-stars Alison Hammond and Dermot O'Leary choke back tears announcing the death of her husband Derek Draper live on air as they lead ITV tributes", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12930067/kate-garraway-derek-draper-death-alison-hammond-dermont-oleary-announcement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:40:01 GMT", - "enclosure": { - "length": "11720", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79656177-0-image-m-89_1704461955063.jpg" - }, - "content": "Kate, 56, revealed in an Instagram post moments earlier that Derek had died aged 56 after suffering a heart attack before Christmas following a long battle with Covid.", - "contentSnippet": "Kate, 56, revealed in an Instagram post moments earlier that Derek had died aged 56 after suffering a heart attack before Christmas following a long battle with Covid.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12930067/kate-garraway-derek-draper-death-alison-hammond-dermont-oleary-announcement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:40:01.000Z" - }, - { - "title": "His resilience, paired with her endless love and courage, inspired millions: As Kate Garraway's husband Derek Draper tragically passes away after four-year battle with Covid - he will leave a lasting legacy, writes CHRISTOPHER STEPHENS", - "link": "https://www.dailymail.co.uk/news/article-12930191/kate-garraway-derek-draper-covid-health-struggle-tragic-death-devotion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:36:13 GMT", - "enclosure": { - "length": "9497", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79655599-0-image-m-48_1704460438577.jpg" - }, - "content": "The former political adviser and businessman survived a devastating bout of Covid at the beginning of the pandemic, and kept battling through months of therapy until he was able to be nursed at home.", - "contentSnippet": "The former political adviser and businessman survived a devastating bout of Covid at the beginning of the pandemic, and kept battling through months of therapy until he was able to be nursed at home.", - "guid": "https://www.dailymail.co.uk/news/article-12930191/kate-garraway-derek-draper-covid-health-struggle-tragic-death-devotion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:36:13.000Z" - }, - { - "title": "Oscar Pistorius's family hold summit to plan his new life, security and career - after working as a cleaner and tractor driver in prison - as the grey-haired, chain-smoking murderer is released from jail", - "link": "https://www.dailymail.co.uk/news/article-12930171/Oscar-pistorius-family-summit-plan-prison-murderer-new-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:31:19 GMT", - "enclosure": { - "length": "9964", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79656017-0-image-m-116_1704460459030.jpg" - }, - "content": "EXCLUSIVE: Oscar Pistorius 's relatives are to hold a family summit to plan a life for him now he is out of prison - and manage a strategy to keep him safe, MailOnline has learned.", - "contentSnippet": "EXCLUSIVE: Oscar Pistorius 's relatives are to hold a family summit to plan a life for him now he is out of prison - and manage a strategy to keep him safe, MailOnline has learned.", - "guid": "https://www.dailymail.co.uk/news/article-12930171/Oscar-pistorius-family-summit-plan-prison-murderer-new-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:31:19.000Z" - }, - { - "title": "How Derek Draper fought long Covid for years after he caught it age 52 and was left in a coma and battling sepsis", - "link": "https://www.dailymail.co.uk/health/article-12930093/Derek-Drapers-long-Covid-battle-detailed-dies-aged-56.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:30:41 GMT", - "enclosure": { - "length": "7910", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79458315-0-image-m-14_1704456438387.jpg" - }, - "content": "Derek had been plagued with extended health woes after contracting the Covid virus in March 2020, an infection which saw him put in a coma, battle sepsis and left with difficulties communicating.", - "contentSnippet": "Derek had been plagued with extended health woes after contracting the Covid virus in March 2020, an infection which saw him put in a coma, battle sepsis and left with difficulties communicating.", - "guid": "https://www.dailymail.co.uk/health/article-12930093/Derek-Drapers-long-Covid-battle-detailed-dies-aged-56.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:30:41.000Z" - }, - { - "title": "Kate Garraway and Derek Draper's last outing together: GMB star and her seriously ill husband attended wedding of his ex-boss Peter Mandelson two months before he tragically lost Covid battle", - "link": "https://www.dailymail.co.uk/news/article-12930115/Kate-Garraway-Derek-Drapers-outing-GMB-star-seriously-ill-husband-attended-wedding-ex-boss-Peter-Mandelson-two-months-tragically-lost-Covid-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:30:09 GMT", - "enclosure": { - "length": "8992", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79653099-0-Derek_Draper_s_final_outing_with_his_wife_Kate_Garraway_was_at_t-a-26_1704460101357.jpg" - }, - "content": "The former political aide, who has died aged 56 following a long battle with Covid, was seen sitting in a wheelchair next to his wife as he clasped Lord Mandelson's hand.", - "contentSnippet": "The former political aide, who has died aged 56 following a long battle with Covid, was seen sitting in a wheelchair next to his wife as he clasped Lord Mandelson's hand.", - "guid": "https://www.dailymail.co.uk/news/article-12930115/Kate-Garraway-Derek-Drapers-outing-GMB-star-seriously-ill-husband-attended-wedding-ex-boss-Peter-Mandelson-two-months-tragically-lost-Covid-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:30:09.000Z" - }, - { - "title": "Sophie Ellis-Bextor reveals hilarious (and clueless!) questions she is asked about Murder On The Dancefloor after THAT Saltburn scene landed the 2001 track back in charts", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12929745/Sophie-Ellis-Bextor-reveals-hilarious-clueless-questions-asked-Murder-Dancefloor-Saltburn-scene-landed-2001-track-charts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:29:09 GMT", - "enclosure": { - "length": "9509", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651103-0-image-m-70_1704452769086.jpg" - }, - "content": "\u00a0Her 2001 hit Murder On The Dancefloor has clattered back into the charts due to the success of edgy thriller Saltburn.\u00a0", - "contentSnippet": "Her 2001 hit Murder On The Dancefloor has clattered back into the charts due to the success of edgy thriller Saltburn.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12929745/Sophie-Ellis-Bextor-reveals-hilarious-clueless-questions-asked-Murder-Dancefloor-Saltburn-scene-landed-2001-track-charts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:29:09.000Z" - }, - { - "title": "The one man who has beaten Storm Henk floods: Homeowner built wall and installed pumps to keep his home dry after home was swamped 11 times since 2016", - "link": "https://www.dailymail.co.uk/news/article-12929993/The-one-man-beaten-Storm-Henk-floods-Homeowner-built-wall-installed-pumps-home-dry-home-swamped-11-times-2016.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:28:07 GMT", - "enclosure": { - "length": "9182", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653309-0-image-m-85_1704457865435.jpg" - }, - "content": "A retired engineer has built a 7-ft high wall to protect his \u00a3600,000 property from the Storm Henk flooding. Nick Lupton, 60, has had his house and land flooded 11 times since moving to Pixham in 2016.", - "contentSnippet": "A retired engineer has built a 7-ft high wall to protect his \u00a3600,000 property from the Storm Henk flooding. Nick Lupton, 60, has had his house and land flooded 11 times since moving to Pixham in 2016.", - "guid": "https://www.dailymail.co.uk/news/article-12929993/The-one-man-beaten-Storm-Henk-floods-Homeowner-built-wall-installed-pumps-home-dry-home-swamped-11-times-2016.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:28:07.000Z" - }, - { - "title": "Kate Garraway's husband Derek Draper dies aged 56 after long Covid battle", - "link": "https://www.dailymail.co.uk/news/article-12930001/derek-draper-dead-kate-garraway-husband-covid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:26:57 GMT", - "enclosure": { - "length": "6447", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653831-0-image-m-67_1704458734225.jpg" - }, - "content": "The Good Morning Britain star announced the passing of her husband on Instagram this morning.", - "contentSnippet": "The Good Morning Britain star announced the passing of her husband on Instagram this morning.", - "guid": "https://www.dailymail.co.uk/news/article-12930001/derek-draper-dead-kate-garraway-husband-covid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:26:57.000Z" - }, - { - "title": "Oscar Pistorius CAN restore his image and even attract sponsorship deals now he is out of prison, specialists say, as they reveal the one thing he needs to do most to get brands back on side", - "link": "https://www.dailymail.co.uk/news/article-12929839/Oscar-pistorius-sponsorship-prison-expert-brands.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:26:52 GMT", - "enclosure": { - "length": "5346", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652415-0-image-m-65_1704454642630.jpg" - }, - "content": "Oscar Pistorius can restore his image and even attract sponsorship deals now he is out of prison some 11 years after he shot dead his girlfriend, specialists have said.", - "contentSnippet": "Oscar Pistorius can restore his image and even attract sponsorship deals now he is out of prison some 11 years after he shot dead his girlfriend, specialists have said.", - "guid": "https://www.dailymail.co.uk/news/article-12929839/Oscar-pistorius-sponsorship-prison-expert-brands.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:26:52.000Z" - }, - { - "title": "American TikToker stuns Britons with her near-perfect South London accent - as people joke she must have been born in Southwark", - "link": "https://www.dailymail.co.uk/femail/article-12929413/American-TikToker-stuns-Britons-near-perfect-South-London-accent-people-joke-born-Southwark.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:26:09 GMT", - "enclosure": { - "length": "9600", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651335-0-image-a-19_1704452837558.jpg" - }, - "content": "One Maryland TikToker, who goes by @_.itsmona has lived in the US 'her entire life' but perfected her British accent to the point that she sounds like 'a South London babe' in a recent clip.", - "contentSnippet": "One Maryland TikToker, who goes by @_.itsmona has lived in the US 'her entire life' but perfected her British accent to the point that she sounds like 'a South London babe' in a recent clip.", - "guid": "https://www.dailymail.co.uk/femail/article-12929413/American-TikToker-stuns-Britons-near-perfect-South-London-accent-people-joke-born-Southwark.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:26:09.000Z" - }, - { - "title": "Rishi Sunak 'gambles on Spring interest rate and tax cuts to deliver Autumn election victory for Tories' as he hopes feelgood factor will come to his rescue", - "link": "https://www.dailymail.co.uk/news/article-12929391/Rishi-Sunak-election-Tories-Labour-tax-mortgages.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:25:12 GMT", - "enclosure": { - "length": "5645", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79647497-0-image-m-6_1704444569290.jpg" - }, - "content": "Rishi Sunak dramatically moved to kill speculation about a May election yesterday, saying his plan was to trigger a ballot in the 'second half of the year'.", - "contentSnippet": "Rishi Sunak dramatically moved to kill speculation about a May election yesterday, saying his plan was to trigger a ballot in the 'second half of the year'.", - "guid": "https://www.dailymail.co.uk/news/article-12929391/Rishi-Sunak-election-Tories-Labour-tax-mortgages.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:25:12.000Z" - }, - { - "title": "Kate Garraway says 'I was so lucky to have you in my life' in emotional tribute to husband Derek Draper following weeks-long vigil by his bedside - after cancelling all her TV commitments to be with him in his final days", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12930029/Kate-garraway-derek-draper-shopping-husband-final-days-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:24:29 GMT", - "enclosure": { - "length": "11731", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/30/09/79458187-0-image-a-32_1703929474139.jpg" - }, - "content": "The presenter,\u00a056, was seen on December 30 leaving a north London Tesco in a Santa hat with several bags of food after cancelling all of her TV work commitments to be at Derek's hospital bedside.", - "contentSnippet": "The presenter,\u00a056, was seen on December 30 leaving a north London Tesco in a Santa hat with several bags of food after cancelling all of her TV work commitments to be at Derek's hospital bedside.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12930029/Kate-garraway-derek-draper-shopping-husband-final-days-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:24:29.000Z" - }, - { - "title": "Prince Andrew faces MORE allegations in fresh Epstein files: New documents claim Duke 'knew paedophile financier and Ghislaine Maxwell were sex trafficking children' - after royal was reported to police over latest bombshell claims", - "link": "https://www.dailymail.co.uk/news/article-12929723/prince-andrew-jeffrey-epstein-list-allegations-sex-trafficking-police.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:23:36 GMT", - "enclosure": { - "length": "9156", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79639137-0-image-m-25_1704453490317.jpg" - }, - "content": "A second batch of unsealed files relating to Epstein's sexual abuse of teenage girls was released in the US last night.", - "contentSnippet": "A second batch of unsealed files relating to Epstein's sexual abuse of teenage girls was released in the US last night.", - "guid": "https://www.dailymail.co.uk/news/article-12929723/prince-andrew-jeffrey-epstein-list-allegations-sex-trafficking-police.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:23:36.000Z" - }, - { - "title": "'You little weasel!' Wild moment Delta Air Lines passenger erupts at staff in vicious f-bomb-laden tirade before telling witnesses 'she's on her period' as she's carted off by cops", - "link": "https://www.dailymail.co.uk/news/article-12927577/Delta-airlines-flight-passenger-wild-meltdown-delay.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:23:23 GMT", - "enclosure": { - "length": "4621", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79629595-0-image-m-55_1704402955196.jpg" - }, - "content": "The flight, between Atlanta and Rochester, New York, was held up at\u00a0Gate B14 of Hartsfield-Jackson Atlanta International Airport on Monday when the female passenger began screaming.", - "contentSnippet": "The flight, between Atlanta and Rochester, New York, was held up at\u00a0Gate B14 of Hartsfield-Jackson Atlanta International Airport on Monday when the female passenger began screaming.", - "guid": "https://www.dailymail.co.uk/news/article-12927577/Delta-airlines-flight-passenger-wild-meltdown-delay.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:23:23.000Z" - }, - { - "title": "Slay! Dragon's Den mogul Sara Davies tells brothers behind \u00a35M pre-loved fashion empire 'you don't need me' - saying bedroom start-up that began when their sister asked for designer trainers is already too successful", - "link": "https://www.dailymail.co.uk/femail/article-12930019/Luxe-Collective-brothers-created-pre-loved-empire-worth-6-5M.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:21:34 GMT", - "enclosure": { - "length": "9801", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654403-0-image-a-4_1704458834469.jpg" - }, - "content": "Luxe Collective was founded by Joe and Ben Gallagher, from Formby, after their mother managed to buy a pair of \u00a3400 trainers for just \u00a3100 online for their sister one Christmas.", - "contentSnippet": "Luxe Collective was founded by Joe and Ben Gallagher, from Formby, after their mother managed to buy a pair of \u00a3400 trainers for just \u00a3100 online for their sister one Christmas.", - "guid": "https://www.dailymail.co.uk/femail/article-12930019/Luxe-Collective-brothers-created-pre-loved-empire-worth-6-5M.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:21:34.000Z" - }, - { - "title": "New Labour spin doctor who won heart of Kate Garraway: How Derek Draper and TV star wife formed one of Britain's most prominent media power couples - before he bravely fought three-year Covid battle", - "link": "https://www.dailymail.co.uk/news/article-12930097/derek-draper-kate-garraway-media-power-couple-uk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:17:36 GMT", - "enclosure": { - "length": "6150", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653305-0-image-m-21_1704456514115.jpg" - }, - "content": "The New Labour spin doctor reached great heights of influence in the 1990s but became best known for his involvement in the 'lobbygate' scandal.", - "contentSnippet": "The New Labour spin doctor reached great heights of influence in the 1990s but became best known for his involvement in the 'lobbygate' scandal.", - "guid": "https://www.dailymail.co.uk/news/article-12930097/derek-draper-kate-garraway-media-power-couple-uk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:17:36.000Z" - }, - { - "title": "REVEALED: Jude Bellingham is the world's most valuable player at \u00a3230m, according to stats boffins... but can you guess which two other English stars make the top 10?", - "link": "https://www.dailymail.co.uk/sport/football/article-12929713/Jude-Bellingham-worlds-valuable-player-English.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:17:07 GMT", - "enclosure": { - "length": "10941", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79650925-0-image-a-6_1704451972313.jpg" - }, - "content": "This has been calculated by looking into the value of more than 6,000 transfer deals and the prices paid in the past for players with similar characteristics.", - "contentSnippet": "This has been calculated by looking into the value of more than 6,000 transfer deals and the prices paid in the past for players with similar characteristics.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12929713/Jude-Bellingham-worlds-valuable-player-English.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:17:07.000Z" - }, - { - "title": "Your ultimate guide to what to watch On Demand this weekend - from our picks of the week to the hottest new releases", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12929951/ultimate-guide-watch-Demand-weekend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:16:10 GMT", - "enclosure": { - "length": "11763", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653813-0-image-m-12_1704459556687.jpg" - }, - "content": "From gripping thrillers to intrepid travelogues, check out our critics' picks of the best films and shows to watch On Demand right now.", - "contentSnippet": "From gripping thrillers to intrepid travelogues, check out our critics' picks of the best films and shows to watch On Demand right now.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12929951/ultimate-guide-watch-Demand-weekend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:16:10.000Z" - }, - { - "title": "Passenger is found dead in plane toilet during flight from Tenerife to Manchester", - "link": "https://www.dailymail.co.uk/news/article-12929893/passenger-dead-plane-toilet-tenerife-manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:14:56 GMT", - "enclosure": { - "length": "7304", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79655749-0-image-a-14_1704459116170.jpg" - }, - "content": "During the journey to Manchester airport (pictured), travellers noticed the cubicle had been locked for some time, prompting them to alert staff. The plane was diverted to land in Cork.", - "contentSnippet": "During the journey to Manchester airport (pictured), travellers noticed the cubicle had been locked for some time, prompting them to alert staff. The plane was diverted to land in Cork.", - "guid": "https://www.dailymail.co.uk/news/article-12929893/passenger-dead-plane-toilet-tenerife-manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:14:56.000Z" - }, - { - "title": "Spanish holiday regions reintroduce Covid-mask rules after seeing surge in cases", - "link": "https://www.dailymail.co.uk/news/article-12929711/Spanish-holiday-region-reintroduces-Covid-mask-rules-seeing-surge-cases.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:13:49 GMT", - "enclosure": { - "length": "7183", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649693-0-image-m-77_1704449755061.jpg" - }, - "content": "The Covid and flu epidemic in Spain is becoming so bad that a number of holiday regions are reintroducing the obligatory mask-wearing rule in certain circumstances (file image).", - "contentSnippet": "The Covid and flu epidemic in Spain is becoming so bad that a number of holiday regions are reintroducing the obligatory mask-wearing rule in certain circumstances (file image).", - "guid": "https://www.dailymail.co.uk/news/article-12929711/Spanish-holiday-region-reintroduces-Covid-mask-rules-seeing-surge-cases.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:13:49.000Z" - }, - { - "title": "Loch Ness Monstered? Campaign launched to stop the development of further pumped storage hydro schemes in the water amid fears it could harm fish - and maybe even Nessie", - "link": "https://www.dailymail.co.uk/news/article-12930211/Loch-Ness-Monstered-Campaign-launched-stop-development-pumped-storage-hydro-schemes-water-fears-harm-fish-Nessie.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:13:36 GMT", - "enclosure": { - "length": "8699", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79655509-0-image-a-54_1704459344353.jpg" - }, - "content": "A campaign has been launched calling for an immediate halt on the development of further pumped storage hydro schemes in the Loch Ness water over fears it could harm its wild fish.", - "contentSnippet": "A campaign has been launched calling for an immediate halt on the development of further pumped storage hydro schemes in the Loch Ness water over fears it could harm its wild fish.", - "guid": "https://www.dailymail.co.uk/news/article-12930211/Loch-Ness-Monstered-Campaign-launched-stop-development-pumped-storage-hydro-schemes-water-fears-harm-fish-Nessie.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:13:36.000Z" - }, - { - "title": "Jeffrey Epstein list LIVE: Model who killed herself after being flown to 'paedo island' is named in docs as more court files emerge and Prince Andrew is reported to police", - "link": "https://www.dailymail.co.uk/news/article-12929455/Jeffrey-epstein-list-updates-prince-andrew-king-charles-court-documents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:11:03 GMT", - "enclosure": { - "length": "4048", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652533-0-image-m-9_1704454821017.jpg" - }, - "content": "Follow MailOnline's live coverage after the second set of bombshell court documents detailing the connections of the late pedophile financier Jeffrey Epstein were released.", - "contentSnippet": "Follow MailOnline's live coverage after the second set of bombshell court documents detailing the connections of the late pedophile financier Jeffrey Epstein were released.", - "guid": "https://www.dailymail.co.uk/news/article-12929455/Jeffrey-epstein-list-updates-prince-andrew-king-charles-court-documents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:11:03.000Z" - }, - { - "title": "Rare matchday programme for Manchester United game meant to be played two days after the Munich air disaster could net thousands of pounds at auction", - "link": "https://www.dailymail.co.uk/news/article-12929837/Manchester-united-game-matchday-programme-munich-air-disaster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:10:03 GMT", - "enclosure": { - "length": "8254", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79655123-0-image-m-85_1704460019127.jpg" - }, - "content": "The 'Holy Grail' of football programmes was made for the team's cancelled game against Wolverhampton Wanderers at Old Trafford on February 8, 1958.", - "contentSnippet": "The 'Holy Grail' of football programmes was made for the team's cancelled game against Wolverhampton Wanderers at Old Trafford on February 8, 1958.", - "guid": "https://www.dailymail.co.uk/news/article-12929837/Manchester-united-game-matchday-programme-munich-air-disaster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:10:03.000Z" - }, - { - "title": "Princess Beatrice visits Prince Andrew at the Royal Lodge hours after newly released files claim he knew\u00a0Jefferey Epstein and Ghislaine Maxwell were trafficking children for sex and 'took part in underage orgy on billionaire's private island'", - "link": "https://www.dailymail.co.uk/femail/article-12930129/Princess-Beatrice-visits-Prince-Andrew-Royal-Lodge-hours-newly-released-files-claim-knew-Jefferey-Epstein-Ghislaine-Maxwell-trafficking-children-sex-took-underage-orgy-billionaires-private-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:09:58 GMT", - "enclosure": { - "length": "9270", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654901-0-image-a-5_1704458417799.jpg" - }, - "content": "Beatrice, 35, smiled as she was driven into the home her divorced parents share, showing no sign of turmoil within the Firm.", - "contentSnippet": "Beatrice, 35, smiled as she was driven into the home her divorced parents share, showing no sign of turmoil within the Firm.", - "guid": "https://www.dailymail.co.uk/femail/article-12930129/Princess-Beatrice-visits-Prince-Andrew-Royal-Lodge-hours-newly-released-files-claim-knew-Jefferey-Epstein-Ghislaine-Maxwell-trafficking-children-sex-took-underage-orgy-billionaires-private-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:09:58.000Z" - }, - { - "title": "Sleep gurus now say we need SEVEN different types of rest every week - how much are you getting?", - "link": "https://www.dailymail.co.uk/wellness-us/article-12927761/seven-different-types-rest-need.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:06:59 GMT", - "enclosure": { - "length": "4949", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79630391-0-image-a-4_1704457158146.jpg" - }, - "content": "Doctors are now suggesting that there are seven types of rest we have to replenish every week. These include physical, mental, social, and even spiritual rest.", - "contentSnippet": "Doctors are now suggesting that there are seven types of rest we have to replenish every week. These include physical, mental, social, and even spiritual rest.", - "guid": "https://www.dailymail.co.uk/wellness-us/article-12927761/seven-different-types-rest-need.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:06:59.000Z" - }, - { - "title": "Month-old baby girl suffered cardiac arrest and died after medics made 'error' giving her heart drugs as parents say tragedy was their 'worst imaginable nightmare'", - "link": "https://www.dailymail.co.uk/news/article-12930117/baby-girl-cardiac-arrest-medics-error-drugs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:06:49 GMT", - "enclosure": { - "length": "8206", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79655885-0-image-m-9_1704459602125.jpg" - }, - "content": "Parents Amber Cutts, 36, and Lee Clayton, 29, have spoken of their 'worst imaginable nightmare' after little Orla passed away just an hour after being given adenosine.", - "contentSnippet": "Parents Amber Cutts, 36, and Lee Clayton, 29, have spoken of their 'worst imaginable nightmare' after little Orla passed away just an hour after being given adenosine.", - "guid": "https://www.dailymail.co.uk/news/article-12930117/baby-girl-cardiac-arrest-medics-error-drugs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:06:49.000Z" - }, - { - "title": "Disabled grandmother, 59, is hit with \u00a3100 parking fine despite having proof she still had two hours left on her car park ticket", - "link": "https://www.dailymail.co.uk/news/article-12929669/disabled-grandmother-parking-fine-time-ticket-proof.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:04:58 GMT", - "enclosure": { - "length": "10595", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649481-0-image-m-25_1704448846247.jpg" - }, - "content": "Jacquie Wright, 59, was told she had not bought a ticket when she left her red Renault in a car park in Evesham, Worcestershire. But she had paid \u00a32 for a three-hour stay.", - "contentSnippet": "Jacquie Wright, 59, was told she had not bought a ticket when she left her red Renault in a car park in Evesham, Worcestershire. But she had paid \u00a32 for a three-hour stay.", - "guid": "https://www.dailymail.co.uk/news/article-12929669/disabled-grandmother-parking-fine-time-ticket-proof.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:04:58.000Z" - }, - { - "title": "This Morning viewers left baffled by show's bizarre tips on how to eat your Christmas tree: 'Why would anybody do that?'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12930003/This-Morning-viewers-DISGUSTED-eat-Christmas-tree.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:02:28 GMT", - "enclosure": { - "length": "11023", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79653013-0-image-a-93_1704455558056.jpg" - }, - "content": "Hosts Alison Hammond , 48, and Dermot O'Leary , 50,\u00a0tucked into recipes from a cookbook called How To Eat Your Christmas Tree by chef Julia Georgallis.", - "contentSnippet": "Hosts Alison Hammond , 48, and Dermot O'Leary , 50,\u00a0tucked into recipes from a cookbook called How To Eat Your Christmas Tree by chef Julia Georgallis.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12930003/This-Morning-viewers-DISGUSTED-eat-Christmas-tree.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:02:28.000Z" - }, - { - "title": "XL Bully owners hold candlelit vigil for the pets 'who didn't make it' as Rishi Sunak's ban on the breed comes into force", - "link": "https://www.dailymail.co.uk/news/article-12929887/xl-bully-owners-candlelit-vigil-rishi-sunak-ban-breed-dog.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 13:01:04 GMT", - "enclosure": { - "length": "6869", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654023-0-image-m-17_1704457570533.jpg" - }, - "content": "The 'sombre' vigil, held in Pencester Gardens in Dover, was attended by approximately 40 people on New Year's Day for the dogs that had been put to sleep.", - "contentSnippet": "The 'sombre' vigil, held in Pencester Gardens in Dover, was attended by approximately 40 people on New Year's Day for the dogs that had been put to sleep.", - "guid": "https://www.dailymail.co.uk/news/article-12929887/xl-bully-owners-candlelit-vigil-rishi-sunak-ban-breed-dog.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T13:01:04.000Z" - }, - { - "title": "Clever mother fed up of shouting to her sons to come downstairs for meals fits doorbell line up to them to ring in the changes", - "link": "https://www.dailymail.co.uk/news/article-12929883/mother-shouting-sons-come-downstairs-meals-fits-doorbell-line-ring-changes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:58:30 GMT", - "enclosure": { - "length": "6506", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653037-0-image-m-45_1704457448659.jpg" - }, - "content": "Shelley Walker was sick of calling up the stairs to her three boys that dinner was ready - and being constantly ignored. So she installed doorbells for each of her children instead.", - "contentSnippet": "Shelley Walker was sick of calling up the stairs to her three boys that dinner was ready - and being constantly ignored. So she installed doorbells for each of her children instead.", - "guid": "https://www.dailymail.co.uk/news/article-12929883/mother-shouting-sons-come-downstairs-meals-fits-doorbell-line-ring-changes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:58:30.000Z" - }, - { - "title": "Rollercoaster thrill-seekers are stuck 100ft in the air as ride breaks down with their seats facing straight up", - "link": "https://www.dailymail.co.uk/news/article-12929999/Rollercoaster-thrill-seekers-stuck-100ft-Colombia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:55:20 GMT", - "enclosure": { - "length": "6051", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654083-0-image-m-10_1704457445401.jpg" - }, - "content": "The rollercoaster, named Krater, stopped working at the Parque del Caf\u00e9, in Montenegro, west of Bogota, Colombia, on January 3.", - "contentSnippet": "The rollercoaster, named Krater, stopped working at the Parque del Caf\u00e9, in Montenegro, west of Bogota, Colombia, on January 3.", - "guid": "https://www.dailymail.co.uk/news/article-12929999/Rollercoaster-thrill-seekers-stuck-100ft-Colombia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:55:20.000Z" - }, - { - "title": "'Patronising' NHS menopause advice is too critical of HRT, says Davina McCall", - "link": "https://www.dailymail.co.uk/health/article-12929683/Davina-McCall-Patronising-NHS-menopause-advice-critical-HRT.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:49:45 GMT", - "enclosure": { - "length": "5726", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79650949-0-image-m-8_1704458975155.jpg" - }, - "content": "Davina McCall has joined calls for the NHS's treatment watchdog to make changes to its draft menopause guidance, with the TV presenter saying it is unbalanced against HRT treatments.", - "contentSnippet": "Davina McCall has joined calls for the NHS's treatment watchdog to make changes to its draft menopause guidance, with the TV presenter saying it is unbalanced against HRT treatments.", - "guid": "https://www.dailymail.co.uk/health/article-12929683/Davina-McCall-Patronising-NHS-menopause-advice-critical-HRT.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:49:45.000Z" - }, - { - "title": "German tourists are awarded compensation after losing sunbed battle at Greek hotel: Family who could not get a lounger will receive \u00a3280", - "link": "https://www.dailymail.co.uk/news/article-12929799/German-tourists-awarded-compensation-sunbed-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:46:47 GMT", - "enclosure": { - "length": "12538", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79650567-0-image-m-39_1704453626298.jpg" - }, - "content": "The plaintiffs, who spent \u00a34,532 on the break last summer, told the court in Hanover, Germany, that staff at the TUI Kids Club Atlantica Mikri Poli hotel failed to implement their no-hogging policy.", - "contentSnippet": "The plaintiffs, who spent \u00a34,532 on the break last summer, told the court in Hanover, Germany, that staff at the TUI Kids Club Atlantica Mikri Poli hotel failed to implement their no-hogging policy.", - "guid": "https://www.dailymail.co.uk/news/article-12929799/German-tourists-awarded-compensation-sunbed-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:46:47.000Z" - }, - { - "title": "'The Fred and Rose West of football commentary': Outrage as Joey Barton makes sickening jibe at ITV's two female FA Cup pundits", - "link": "https://www.dailymail.co.uk/sport/football/article-12929489/Joey-Barton-attacks-ITVs-FA-Cup-round-punditry-team-sick-taunt-Eni-Aluko-commentator-Lucy-Ward-claims-coverage-reached-new-low.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:44:52 GMT", - "enclosure": { - "length": "10138", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79648053-0-image-a-29_1704445078329.jpg" - }, - "content": "The former Man City and Newcastle midfielder has come under intense scrutiny in recent weeks for his controversial views on women working in men's football in a string of social media tirades.", - "contentSnippet": "The former Man City and Newcastle midfielder has come under intense scrutiny in recent weeks for his controversial views on women working in men's football in a string of social media tirades.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12929489/Joey-Barton-attacks-ITVs-FA-Cup-round-punditry-team-sick-taunt-Eni-Aluko-commentator-Lucy-Ward-claims-coverage-reached-new-low.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:44:52.000Z" - }, - { - "title": "The Hamas 'CEO' who payrolled October 7 rapists and murderers: Former gang leader Zaher Jabarin runs terror group's financial operations from Turkish office and runs half-a-billion-dollar empire", - "link": "https://www.dailymail.co.uk/news/article-12929635/The-Hamas-CEO-payrolled-October-7-rapists-murderers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:44:48 GMT", - "enclosure": { - "length": "4703", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649649-0-image-m-18_1704450449108.jpg" - }, - "content": "Zaher Jabarin oversees the Hamas finance empire that is estimated to be worth half a billion dollars, and which funds the group's military operations.", - "contentSnippet": "Zaher Jabarin oversees the Hamas finance empire that is estimated to be worth half a billion dollars, and which funds the group's military operations.", - "guid": "https://www.dailymail.co.uk/news/article-12929635/The-Hamas-CEO-payrolled-October-7-rapists-murderers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:44:48.000Z" - }, - { - "title": "Home seller parks \u00a33million Ferrari in their living room to advertise Grade II-listed property - which is worth \u00a3500,000 less than the supercar", - "link": "https://www.dailymail.co.uk/property/article-12929833/home-seller-ferrari-living-room-property-advertisement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:41:15 GMT", - "enclosure": { - "length": "9177", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79650977-0-image-a-56_1704453883725.jpg" - }, - "content": "Potential buyers were left aghast after house seller drove a \u00a33m Ferrari into their living room for the estate agent's pictures and incredibly it's worth \u00a3500,000 MORE than the bricks and mortar.", - "contentSnippet": "Potential buyers were left aghast after house seller drove a \u00a33m Ferrari into their living room for the estate agent's pictures and incredibly it's worth \u00a3500,000 MORE than the bricks and mortar.", - "guid": "https://www.dailymail.co.uk/property/article-12929833/home-seller-ferrari-living-room-property-advertisement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:41:15.000Z" - }, - { - "title": "'It isn't difficult to get on the housing ladder at the moment,' says knighted bank boss", - "link": "https://www.dailymail.co.uk/property/article-12929945/It-isnt-difficult-housing-ladder-moment-says-knighted-bank-boss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:39:58 GMT", - "enclosure": { - "length": "10407", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653819-0-image-a-7_1704456790519.jpg" - }, - "content": "Natwest chairman Sir Howard Davies was speaking on BBC 4's Today radio programme after being asked by the show's presenter Amol Rajan about Britain's housing market.", - "contentSnippet": "Natwest chairman Sir Howard Davies was speaking on BBC 4's Today radio programme after being asked by the show's presenter Amol Rajan about Britain's housing market.", - "guid": "https://www.dailymail.co.uk/property/article-12929945/It-isnt-difficult-housing-ladder-moment-says-knighted-bank-boss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:39:58.000Z" - }, - { - "title": "Sue Radford complains of an 'awful' trip home from family holiday to Disneyland Paris after Storm Henk disrupted travel in the English Channel", - "link": "https://www.dailymail.co.uk/femail/article-12929751/Sue-Radford-complains-awful-trip-home-family-holiday-Disneyland-Paris-Storm-Henk-disrupted-travel-English-Channel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:39:27 GMT", - "enclosure": { - "length": "11323", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652847-0-image-a-51_1704455358013.jpg" - }, - "content": "The mother from Morecambe, Lancs, told her 518,000 Instagram followers of how she ended her\u00a0family's 23rd holiday in 24 months - to Disneyland Paris\u00a0on an 'awful' note.", - "contentSnippet": "The mother from Morecambe, Lancs, told her 518,000 Instagram followers of how she ended her\u00a0family's 23rd holiday in 24 months - to Disneyland Paris\u00a0on an 'awful' note.", - "guid": "https://www.dailymail.co.uk/femail/article-12929751/Sue-Radford-complains-awful-trip-home-family-holiday-Disneyland-Paris-Storm-Henk-disrupted-travel-English-Channel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:39:27.000Z" - }, - { - "title": "Chocolate lovers go wild after Easter egg that is 'hands down the best' returns to Tesco shelves", - "link": "https://www.dailymail.co.uk/femail/article-12926607/Chocolate-lovers-wild-Easter-egg-hands-best-returns-Tesco-shelves.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:38:57 GMT", - "enclosure": { - "length": "6518", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616351-0-image-a-18_1704381185588.jpg" - }, - "content": "Now that Christmas is over UK supermarkets are already in a rush to flog their Easter stock. Nestle fans are already raving about their favourite Easter egg claiming it is 'hands down the best' one.", - "contentSnippet": "Now that Christmas is over UK supermarkets are already in a rush to flog their Easter stock. Nestle fans are already raving about their favourite Easter egg claiming it is 'hands down the best' one.", - "guid": "https://www.dailymail.co.uk/femail/article-12926607/Chocolate-lovers-wild-Easter-egg-hands-best-returns-Tesco-shelves.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:38:57.000Z" - }, - { - "title": "Storm Henk flood chaos: Map reveals where sewage has been discharged into the sea at nearly 100 south coast beaches after rain and heavy winds battered Britain", - "link": "https://www.dailymail.co.uk/news/article-12929743/storm-henk-flood-chaos-sewage-beaches-wind-rain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:37:35 GMT", - "enclosure": { - "length": "9571", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651853-0-image-m-8_1704453779658.jpg" - }, - "content": "Popular seaside tourist spots including Hove, Folkestone and Newquay were among those drenched in filth after the heavy downpours of rain in recent days.", - "contentSnippet": "Popular seaside tourist spots including Hove, Folkestone and Newquay were among those drenched in filth after the heavy downpours of rain in recent days.", - "guid": "https://www.dailymail.co.uk/news/article-12929743/storm-henk-flood-chaos-sewage-beaches-wind-rain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:37:35.000Z" - }, - { - "title": "Inside Oscar Pistorius and his murder victim Reeva Steenkamp's short-lived and 'fear-ridden' relationship as South Africa's fallen legend is released from prison after nine years", - "link": "https://www.dailymail.co.uk/news/article-12929429/oscar-pistorius-murder-victim-reeva-steenkamp-fear-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:35:38 GMT", - "enclosure": { - "length": "9645", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79647257-0-image-a-4_1704445186226.jpg" - }, - "content": "Oscar Pistorius is a free man today after being released from prison. The Olympic athlete shot and killed his model girlfriend Reeva Steenkamp in 2013 - but what was their relationship really like?", - "contentSnippet": "Oscar Pistorius is a free man today after being released from prison. The Olympic athlete shot and killed his model girlfriend Reeva Steenkamp in 2013 - but what was their relationship really like?", - "guid": "https://www.dailymail.co.uk/news/article-12929429/oscar-pistorius-murder-victim-reeva-steenkamp-fear-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:35:38.000Z" - }, - { - "title": "Two female prison staff accused of having relationship with the same inmate at the same time due in court today accused of misconduct", - "link": "https://www.dailymail.co.uk/news/article-12929895/female-prison-staff-court-misconduct-relationship-inmate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:33:45 GMT", - "enclosure": { - "length": "7278", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651929-0-image-m-36_1704453958686.jpg" - }, - "content": "Aleesha Bates, 29, and Jodie Wilkes, 29, are both charged with misconduct in public office after allegedly 'engaging in a relationship with a prisoner' while working at HMP Buckley Hall.", - "contentSnippet": "Aleesha Bates, 29, and Jodie Wilkes, 29, are both charged with misconduct in public office after allegedly 'engaging in a relationship with a prisoner' while working at HMP Buckley Hall.", - "guid": "https://www.dailymail.co.uk/news/article-12929895/female-prison-staff-court-misconduct-relationship-inmate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:33:45.000Z" - }, - { - "title": "'Britain's most dangerous spider' strikes in Surrey: Schoolboy, 11, is rushed to hospital after a bite from a noble false widow leaves him 'delirious'", - "link": "https://www.dailymail.co.uk/sciencetech/article-12929503/Britains-dangerous-spider-strikes-Surrey-Schoolboy-11-rushed-hospital-bite-noble-false-widow-leaves-delirious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:20:13 GMT", - "enclosure": { - "length": "3269", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79648613-0-image-a-5_1704446304626.jpg" - }, - "content": "Matthew, 11, from Surrey, got an unwanted gift at Christmas when he was bitten on the back of the leg by a noble false widow.", - "contentSnippet": "Matthew, 11, from Surrey, got an unwanted gift at Christmas when he was bitten on the back of the leg by a noble false widow.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12929503/Britains-dangerous-spider-strikes-Surrey-Schoolboy-11-rushed-hospital-bite-noble-false-widow-leaves-delirious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:20:13.000Z" - }, - { - "title": "How 'the last great Englishman' dressed for bed! Duke of Wellington's slippers and woolly night cap are set to go on display in new exhibition that also features his duelling pistols", - "link": "https://www.dailymail.co.uk/news/article-12929617/Duke-Wellington-slippers-night-cap-exhibition-Apsley-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:19:53 GMT", - "enclosure": { - "length": "7595", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649113-0-A_jaunty_pair_of_slippers_and_a_woolly_night_cap_that_were_once_-a-14_1704450790656.jpg" - }, - "content": "The slippers are in near perfect condition, with just a hint of fading and the backs trodden down from use. They are set to be displayed with other items once owned by the famed Duke.", - "contentSnippet": "The slippers are in near perfect condition, with just a hint of fading and the backs trodden down from use. They are set to be displayed with other items once owned by the famed Duke.", - "guid": "https://www.dailymail.co.uk/news/article-12929617/Duke-Wellington-slippers-night-cap-exhibition-Apsley-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:19:53.000Z" - }, - { - "title": "Mother-of-two, 29, who feared her Army sniper ex was going to kill her, painted his name on her wall in blood to help police catch him after he moved in with her during lockdown and became abusive", - "link": "https://www.dailymail.co.uk/news/article-12929667/Mother-feared-Army-sniper-ex-going-kill-painted-wall-blood-help-police.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:19:01 GMT", - "enclosure": { - "length": "9671", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79648969-0-image-m-31_1704448012299.jpg" - }, - "content": "WARNING GRAPHIC CONTENT: Emmie Dalton, 29, locked herself in her bedroom in Sheffield and managed to spell out 'JOHN' before crazed Jonathan Hunt, 34, broke down the door.", - "contentSnippet": "WARNING GRAPHIC CONTENT: Emmie Dalton, 29, locked herself in her bedroom in Sheffield and managed to spell out 'JOHN' before crazed Jonathan Hunt, 34, broke down the door.", - "guid": "https://www.dailymail.co.uk/news/article-12929667/Mother-feared-Army-sniper-ex-going-kill-painted-wall-blood-help-police.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:19:01.000Z" - }, - { - "title": "Moment brazen thieves take several bottles of wine from a Tesco store and walk out without paying as crime continues to plague Lawless London", - "link": "https://www.dailymail.co.uk/news/article-12930061/Moment-thieves-bottles-wine-Tesco-store-walk-without-paying-crime-continues-plague-Lawless-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:18:32 GMT", - "enclosure": { - "length": "6400", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653689-0-image-m-39_1704456691515.jpg" - }, - "content": "This is the moment thieves are filmed taking several bottles of wine from a Tesco store in Kilburn and walk out without paying - with security making no attempt to stop them.", - "contentSnippet": "This is the moment thieves are filmed taking several bottles of wine from a Tesco store in Kilburn and walk out without paying - with security making no attempt to stop them.", - "guid": "https://www.dailymail.co.uk/news/article-12930061/Moment-thieves-bottles-wine-Tesco-store-walk-without-paying-crime-continues-plague-Lawless-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:18:32.000Z" - }, - { - "title": "Deliciously Ella says she retreated from public life as a result of 'overwhelming trolling' and she now 'wants to be vanilla'", - "link": "https://www.dailymail.co.uk/femail/article-12926927/Deliciously-Ella-says-retreated-public-life-result-overwhelming-trolling-wants-vanilla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:11:48 GMT", - "enclosure": { - "length": "7887", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634527-0-image-a-22_1704407619102.jpg" - }, - "content": "Ella Mills, 32, the clean eating pioneer found fame for her blog while studying at St Andrew's University in 2013.", - "contentSnippet": "Ella Mills, 32, the clean eating pioneer found fame for her blog while studying at St Andrew's University in 2013.", - "guid": "https://www.dailymail.co.uk/femail/article-12926927/Deliciously-Ella-says-retreated-public-life-result-overwhelming-trolling-wants-vanilla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:11:48.000Z" - }, - { - "title": "BBC The Traitors game lets you play along with the TV show - so, can you correctly guess who's next to be murdered?", - "link": "https://www.dailymail.co.uk/sciencetech/article-12930027/BBC-Traitors-game-lets-play-TV-correctly-guess-whos-murdered.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 12:11:01 GMT", - "enclosure": { - "length": "9686", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652317-0-image-m-27_1704454896769.jpg" - }, - "content": "The BBC has launched a new online predictor game\u00a0for 'The Traitors obsessives'.", - "contentSnippet": "The BBC has launched a new online predictor game\u00a0for 'The Traitors obsessives'.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12930027/BBC-Traitors-game-lets-play-TV-correctly-guess-whos-murdered.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T12:11:01.000Z" - }, - { - "title": "Inside the world's biggest cruise ship: Our graphic tells you all you need to know about the incredible 1,200ft-long Icon Of The Seas as it undergoes final tests ahead of maiden voyage", - "link": "https://www.dailymail.co.uk/travel/article-12927267/Inside-worlds-biggest-cruise-ship-graphic-tells-need-know-incredible-1-200ft-long-Icon-Seas-undergoes-final-tests-ahead-maiden-voyage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:59:18 GMT", - "enclosure": { - "length": "31083", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79624297-0-image-m-48_1704396492519.jpg" - }, - "content": "Locals and tourists in Puerto Rico were given a sneak peak at the 1,198 foot-long, 250,800-tonne pleasure cruiser, named the Icon of The Seas, as it took a break in port as part of its trial voyage", - "contentSnippet": "Locals and tourists in Puerto Rico were given a sneak peak at the 1,198 foot-long, 250,800-tonne pleasure cruiser, named the Icon of The Seas, as it took a break in port as part of its trial voyage", - "guid": "https://www.dailymail.co.uk/travel/article-12927267/Inside-worlds-biggest-cruise-ship-graphic-tells-need-know-incredible-1-200ft-long-Icon-Seas-undergoes-final-tests-ahead-maiden-voyage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:59:18.000Z" - }, - { - "title": "Google has turned off cookies for MILLIONS of people - how to tell if you're one of them", - "link": "https://www.dailymail.co.uk/sciencetech/article-12929427/Google-turned-cookies-MILLIONS-people-tell-youre-one-them.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:49:04 GMT", - "enclosure": { - "length": "5692", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997079-0-image-a-16_1702636691714.jpg" - }, - "content": "The tech giant has randomly selected one per cent of Chrome users globally - about 30 million people - to be the first to have third-party cookies turned off.", - "contentSnippet": "The tech giant has randomly selected one per cent of Chrome users globally - about 30 million people - to be the first to have third-party cookies turned off.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12929427/Google-turned-cookies-MILLIONS-people-tell-youre-one-them.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:49:04.000Z" - }, - { - "title": "RICHARD LITTLEJOHN: Here's an idea... maybe the Tories should stand down in favour of Reform UK", - "link": "https://www.dailymail.co.uk/debate/article-12927921/RICHARD-LITTLEJOHN-Heres-idea-maybe-Tories-stand-favour-Reform-UK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:34:13 GMT", - "enclosure": { - "length": "10699", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79632133-0-image-a-53_1704404128910.jpg" - }, - "content": "RICHARD LITTLEJOHN: Where is it written that the Conservative Party has a divine right to rule? Or that Tory MPs are entitled to hold on to seats, simply because Labour is too horrible to contemplate?", - "contentSnippet": "RICHARD LITTLEJOHN: Where is it written that the Conservative Party has a divine right to rule? Or that Tory MPs are entitled to hold on to seats, simply because Labour is too horrible to contemplate?", - "guid": "https://www.dailymail.co.uk/debate/article-12927921/RICHARD-LITTLEJOHN-Heres-idea-maybe-Tories-stand-favour-Reform-UK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:34:13.000Z" - }, - { - "title": "Virginia Giuffre pleaded with FBI agent to help her nail Jeffrey Epstein and 'many monsters he obliged with young girls', latest trove of court docs reveal", - "link": "https://www.dailymail.co.uk/news/article-12929461/Virginia-Giuffre-FBI-agent-jason-richards-epstein.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:32:12 GMT", - "enclosure": { - "length": "8797", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/54205569-0-Virginia_Roberts_Giuffre_holds_a_photo_of_herself_at_age_16_when-a-2_1704454048060.jpg" - }, - "content": "One of Jeffrey Epstein's most prominent victims pleaded with an FBI agent as far as back as 2014 to aid in her in quest to bring the pedophile financier to justice.", - "contentSnippet": "One of Jeffrey Epstein's most prominent victims pleaded with an FBI agent as far as back as 2014 to aid in her in quest to bring the pedophile financier to justice.", - "guid": "https://www.dailymail.co.uk/news/article-12929461/Virginia-Giuffre-FBI-agent-jason-richards-epstein.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:32:12.000Z" - }, - { - "title": "Spurned woman lied she was pregnant with her ex's baby, told him he'd 'bullied' her into having an 'abortion' before pretending she'd given birth in campaign of harassment after they split", - "link": "https://www.dailymail.co.uk/news/article-12929491/Spurned-woman-lied-pregnant-campaign-harassment-split.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:24:23 GMT", - "enclosure": { - "length": "8267", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79647633-0-image-m-11_1704448129797.jpg" - }, - "content": "Stephanie Mahoney, 32, subjected her former partner and his mother to a torrent of online abuse but has now been spared a prison sentence after going on trial at Liverpool Crown Court.", - "contentSnippet": "Stephanie Mahoney, 32, subjected her former partner and his mother to a torrent of online abuse but has now been spared a prison sentence after going on trial at Liverpool Crown Court.", - "guid": "https://www.dailymail.co.uk/news/article-12929491/Spurned-woman-lied-pregnant-campaign-harassment-split.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:24:23.000Z" - }, - { - "title": "Tate Modern puts trigger warning on a puppet show in case viewers are offended by 'violence and dead bodies'", - "link": "https://www.dailymail.co.uk/news/article-12929437/Tate-Modern-puts-trigger-warning-puppet-case-viewers-offended-violence-dead-bodies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:18:45 GMT", - "enclosure": { - "length": "10507", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79647675-0-image-a-10_1704445242685.jpg" - }, - "content": "Tate Modern has put a trigger warning on a puppet show saying that visitors may be offended as it shows 'dead bodies'. The film by Wael Shawky features puppets 'acting out historical events'.", - "contentSnippet": "Tate Modern has put a trigger warning on a puppet show saying that visitors may be offended as it shows 'dead bodies'. The film by Wael Shawky features puppets 'acting out historical events'.", - "guid": "https://www.dailymail.co.uk/news/article-12929437/Tate-Modern-puts-trigger-warning-puppet-case-viewers-offended-violence-dead-bodies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:18:45.000Z" - }, - { - "title": "The BBC's Shipping Forecast is 100 years old - and many of the regions featured make for holidays that'll blow you away!", - "link": "https://www.dailymail.co.uk/travel/article-12926013/The-BBCs-Shipping-Forecast-100-years-old-regions-featured-make-holidays-thatll-blow-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:18:02 GMT", - "enclosure": { - "length": "7712", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79610477-0-image-a-25_1704452512459.jpg" - }, - "content": "A surprising amount of land is featured in the 31 named areas of the Shipping Forecast, writes Rob Crossan who reveals 'where to stay without getting your feet wet' in five of them.", - "contentSnippet": "A surprising amount of land is featured in the 31 named areas of the Shipping Forecast, writes Rob Crossan who reveals 'where to stay without getting your feet wet' in five of them.", - "guid": "https://www.dailymail.co.uk/travel/article-12926013/The-BBCs-Shipping-Forecast-100-years-old-regions-featured-make-holidays-thatll-blow-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:18:02.000Z" - }, - { - "title": "Microsoft launches a $40 Xbox Series S TOASTER that burns the Xbox logo into your breakfast", - "link": "https://www.dailymail.co.uk/sciencetech/article-12929571/Microsoft-launches-40-Xbox-Series-S-TOASTER-burns-Xbox-logo-breakfast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:16:06 GMT", - "enclosure": { - "length": "5703", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79648463-0-image-a-45_1704452392628.jpg" - }, - "content": "For the gaming fan who truly has everything, Microsoft has now launched the Xbox Series S toaster in response to fans mocking the console's appearance.", - "contentSnippet": "For the gaming fan who truly has everything, Microsoft has now launched the Xbox Series S toaster in response to fans mocking the console's appearance.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12929571/Microsoft-launches-40-Xbox-Series-S-TOASTER-burns-Xbox-logo-breakfast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:16:06.000Z" - }, - { - "title": "Iceland bosses consider partnership with doner-loving Luke Littler as they hail his 'influential' impact which has seen kebab meat sales soar by 25pc after the teenager defied the odds to reach World Darts Championship final", - "link": "https://www.dailymail.co.uk/news/article-12929767/luke-littler-darts-world-championship-iceland-bosses-partnership-kebab-doner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:15:42 GMT", - "enclosure": { - "length": "6732", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79650801-0-image-m-17_1704452699149.jpg" - }, - "content": "Darts star Luke Littler grabbed the headlines after it emerged that he enjoyed a kebab after every match. And now Iceland say their frozen doner kebab sales soared 25 per cent.", - "contentSnippet": "Darts star Luke Littler grabbed the headlines after it emerged that he enjoyed a kebab after every match. And now Iceland say their frozen doner kebab sales soared 25 per cent.", - "guid": "https://www.dailymail.co.uk/news/article-12929767/luke-littler-darts-world-championship-iceland-bosses-partnership-kebab-doner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:15:42.000Z" - }, - { - "title": "Dragons' Den fans accuse contestants of 'copying' idea from Absolutely Fabulous comedy sketch", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12929687/Dragons-Den-fans-accuse-contestants-copying-Absolutely-Fabulous.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:13:35 GMT", - "enclosure": { - "length": "10053", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649713-0-image-m-104_1704450373000.jpg" - }, - "content": "Duo Daniel and Lina appeared in front of the formidable panel with their pitch, but fans were left baffled at the unexpected Absolutely Fabulous crossover.", - "contentSnippet": "Duo Daniel and Lina appeared in front of the formidable panel with their pitch, but fans were left baffled at the unexpected Absolutely Fabulous crossover.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12929687/Dragons-Den-fans-accuse-contestants-copying-Absolutely-Fabulous.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:13:35.000Z" - }, - { - "title": "Michelle Keegan has caught the eye of Hollywood film bosses in Netflix series Fool Me Once and is set to land blockbuster movie role", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927001/Michelle-Keegan-caught-eye-Hollywood-film-bosses-Netflix-series.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:11:29 GMT", - "enclosure": { - "length": "9357", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79649243-0-image-m-27_1704448120802.jpg" - }, - "content": "Michelle Keegan has caught the eye of Hollywood film executives following the success of Netflix series Fool Me Once, MailOnline can reveal.", - "contentSnippet": "Michelle Keegan has caught the eye of Hollywood film executives following the success of Netflix series Fool Me Once, MailOnline can reveal.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927001/Michelle-Keegan-caught-eye-Hollywood-film-bosses-Netflix-series.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:11:29.000Z" - }, - { - "title": "Valentine's Day flowers fears: Industry warns of 'disaster waiting to happen' due to delays and higher costs affecting chrysanthemums, carnations and orchids unless post-Brexit checks due to start on January 31 are delayed", - "link": "https://www.dailymail.co.uk/news/article-12929809/Valentines-Day-flowers-fears-Brexit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 11:02:15 GMT", - "enclosure": { - "length": "10732", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79651067-0-image-a-54_1704452177260.jpg" - }, - "content": "Chrysanthemums, carnations and orchids are classed as 'medium risk' imports under a new regime introduced after the UK left the EU.", - "contentSnippet": "Chrysanthemums, carnations and orchids are classed as 'medium risk' imports under a new regime introduced after the UK left the EU.", - "guid": "https://www.dailymail.co.uk/news/article-12929809/Valentines-Day-flowers-fears-Brexit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T11:02:15.000Z" - }, - { - "title": "Kirstie Allsopp says detached houses should be banned because they are not 'environmentally practical' and lead to loss of community feeling", - "link": "https://www.dailymail.co.uk/news/article-12929323/Kirstie-Allsopp-says-detached-houses-banned-not-environmentally-practical-lead-loss-community-feeling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 10:55:37 GMT", - "enclosure": { - "length": "11701", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79646163-0-image-a-10_1704444104843.jpg" - }, - "content": "The TV presenter and property expert, 52, fumed that Britain's housing system is 'not fit for purpose' and is in urgent need of a review.", - "contentSnippet": "The TV presenter and property expert, 52, fumed that Britain's housing system is 'not fit for purpose' and is in urgent need of a review.", - "guid": "https://www.dailymail.co.uk/news/article-12929323/Kirstie-Allsopp-says-detached-houses-banned-not-environmentally-practical-lead-loss-community-feeling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T10:55:37.000Z" - }, - { - "title": "Luke Littler the movie! Astonishing bidding war 'erupts' over right to tell teen darts sensation's life story - with Anthony Joshua's people 'interested'", - "link": "https://www.dailymail.co.uk/news/article-12928461/Luke-Littler-movie-Astonishing-bidding-war-erupts-right-tell-teen-darts-sensations-life-story-Anthony-Joshuas-people-interested.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 10:47:48 GMT", - "enclosure": { - "length": "9406", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79638681-0-image-m-17_1704417984475.jpg" - }, - "content": "Reports suggest that Luke Litter's meteoric rise to fame has already fuelled a bidding war for the rights to recreate it on film, less than a day after his World Darts Championship final at Alexandra Palace.", - "contentSnippet": "Reports suggest that Luke Litter's meteoric rise to fame has already fuelled a bidding war for the rights to recreate it on film, less than a day after his World Darts Championship final at Alexandra Palace.", - "guid": "https://www.dailymail.co.uk/news/article-12928461/Luke-Littler-movie-Astonishing-bidding-war-erupts-right-tell-teen-darts-sensations-life-story-Anthony-Joshuas-people-interested.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T10:47:48.000Z" - }, - { - "title": "Wetherspoon game where random members of the public buy food for tables on the pub's app get 200 portions of bangers and mash and four bin bags worth of crisps and peanuts for the homeless", - "link": "https://www.dailymail.co.uk/news/article-12929641/Wetherspoons-game-random-members-public-buy-food-tables-pubs-app-200-portions-bangers-mash-four-bin-bags-worth-crisps-peanuts-homeless.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 10:40:05 GMT", - "enclosure": { - "length": "11523", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649491-0-image-m-9_1704448990750.jpg" - }, - "content": "The game involves people drinking in one of the chain's pubs posting their location and table number into a Facebook group. Then members use the app to pay to send items to total strangers.", - "contentSnippet": "The game involves people drinking in one of the chain's pubs posting their location and table number into a Facebook group. Then members use the app to pay to send items to total strangers.", - "guid": "https://www.dailymail.co.uk/news/article-12929641/Wetherspoons-game-random-members-public-buy-food-tables-pubs-app-200-portions-bangers-mash-four-bin-bags-worth-crisps-peanuts-homeless.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T10:40:05.000Z" - }, - { - "title": "The not-that-much-safety net: Circus acrobats are sent flying when trampoline 'explodes' during trapeze act", - "link": "https://www.dailymail.co.uk/news/article-12929591/Circus-acrobats-sent-flying-trampoline-explodes-trapeze.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 10:38:56 GMT", - "enclosure": { - "length": "10173", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79649449-0-image-a-19_1704448608552.jpg" - }, - "content": "Footage shows six acrobats from China's Shanghai City Circus performing a flying trapeze act in which a performer jumps from one trapeze to another over a massive trampoline.", - "contentSnippet": "Footage shows six acrobats from China's Shanghai City Circus performing a flying trapeze act in which a performer jumps from one trapeze to another over a massive trampoline.", - "guid": "https://www.dailymail.co.uk/news/article-12929591/Circus-acrobats-sent-flying-trampoline-explodes-trapeze.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T10:38:56.000Z" - }, - { - "title": "Raising babies on a plant-based diet can cause 'irreversible damage' including 'more fractures, nutrient deficiencies and being shorter', nutrition experts warn after Lucy Watson announces she'll bring her child up vegan", - "link": "https://www.dailymail.co.uk/femail/article-12904327/Nutrition-experts-warn-raising-babies-plant-based-diet-cause-irreversible-damage-including-fractures-nutrient-deficiencies-shorter-Chelsea-star-Lucy-Watson-plans-raise-baby-vegan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 10:38:28 GMT", - "enclosure": { - "length": "9537", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/27/20/79379181-0-image-a-17_1703707876313.jpg" - }, - "content": "The Made in Chelsea star, 32, told fans on her Instagram during a Q&A that she and her husband, James Dunmore, 34, will raise their newborn on the same diet to which Lucy also adheres.", - "contentSnippet": "The Made in Chelsea star, 32, told fans on her Instagram during a Q&A that she and her husband, James Dunmore, 34, will raise their newborn on the same diet to which Lucy also adheres.", - "guid": "https://www.dailymail.co.uk/femail/article-12904327/Nutrition-experts-warn-raising-babies-plant-based-diet-cause-irreversible-damage-including-fractures-nutrient-deficiencies-shorter-Chelsea-star-Lucy-Watson-plans-raise-baby-vegan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T10:38:28.000Z" - }, - { - "title": "Series of unfortunate events! People having a bad day prove there's always someone with worse luck than you", - "link": "https://www.dailymail.co.uk/femail/article-12926707/Series-unfortunate-events-People-having-bad-day-prove-theres-worse-luck-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 10:34:52 GMT", - "enclosure": { - "length": "9330", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619405-0-image-a-27_1704384476515.jpg" - }, - "content": "Sometimes sticky situations are simply unavoidable. But you can feel sorry for yourself or have a good laugh about it - like the people in these photos shared by US website DeMilked.", - "contentSnippet": "Sometimes sticky situations are simply unavoidable. But you can feel sorry for yourself or have a good laugh about it - like the people in these photos shared by US website DeMilked.", - "guid": "https://www.dailymail.co.uk/femail/article-12926707/Series-unfortunate-events-People-having-bad-day-prove-theres-worse-luck-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T10:34:52.000Z" - }, - { - "title": "Strict Baptist dairy farmer, 27, stalked his university crush over WhatsApp for five years - forcing her to ask a male friend to 'be on standby' to protect her when her partner was away", - "link": "https://www.dailymail.co.uk/news/article-12929621/baptist-dairy-farmer-stalker-university-crush-whatsapp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 10:29:47 GMT", - "enclosure": { - "length": "6068", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79649275-0-image-m-12_1704448454680.jpg" - }, - "content": "Isaac Aidley, 27 who hails from a strict Baptist family had a secret crush on Isabella Knowles when they studied together at agricultural college and developed an obsession with her after they left.", - "contentSnippet": "Isaac Aidley, 27 who hails from a strict Baptist family had a secret crush on Isabella Knowles when they studied together at agricultural college and developed an obsession with her after they left.", - "guid": "https://www.dailymail.co.uk/news/article-12929621/baptist-dairy-farmer-stalker-university-crush-whatsapp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T10:29:47.000Z" - }, - { - "title": "Man, 32, and woman, 25, arrested in connection with the murder of EuroMillions winner Jane Park's ex after he was gunned down in drive-by Hogamanay shooting", - "link": "https://www.dailymail.co.uk/news/article-12929595/arrest-euromillions-winner-jane-park-ex-murder-hogamanay-shooting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 10:19:19 GMT", - "enclosure": { - "length": "6579", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79503741-0-Convicted_gangster_Marc_Webley_shot_dead_outside_an_Edinburgh_pu-a-7_1704446158127.jpg" - }, - "content": "Armed officers were sent to the Anchor Inn in the city's Granton area after revellers watched in horror as Marc Webley and another man were shot in the street while celebrating with friends.", - "contentSnippet": "Armed officers were sent to the Anchor Inn in the city's Granton area after revellers watched in horror as Marc Webley and another man were shot in the street while celebrating with friends.", - "guid": "https://www.dailymail.co.uk/news/article-12929595/arrest-euromillions-winner-jane-park-ex-murder-hogamanay-shooting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T10:19:19.000Z" - }, - { - "title": "Battlestar Galactica and Law & Order star Harry Johnson dies aged 81 after a 'long illness'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12929605/Battlestar-Galactica-Law-Order-Harry-Johnson-dies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 10:18:59 GMT", - "enclosure": { - "length": "9106", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649827-0-image-m-40_1704449810060.jpg" - }, - "content": "His four-decade career saw him star in the likes of\u00a0Battlestar Galactica and\u00a0Law & Order as well as the famous\u00a0Harry & Louise adverts.", - "contentSnippet": "His four-decade career saw him star in the likes of\u00a0Battlestar Galactica and\u00a0Law & Order as well as the famous\u00a0Harry & Louise adverts.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12929605/Battlestar-Galactica-Law-Order-Harry-Johnson-dies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T10:18:59.000Z" - }, - { - "title": "Shocking moment four men grapple with Costcutter 'shoplifter' and rain down punches on him", - "link": "https://www.dailymail.co.uk/news/article-12929465/costcutter-shoplifter-punches-men-moment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:58:28 GMT", - "enclosure": { - "length": "6464", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79648223-0-image-a-4_1704445697010.jpg" - }, - "content": "This is the moment a suspected shoplifter was stopped by a group of Good Samaritans teaming up in shocking footage filmed by a shopper.", - "contentSnippet": "This is the moment a suspected shoplifter was stopped by a group of Good Samaritans teaming up in shocking footage filmed by a shopper.", - "guid": "https://www.dailymail.co.uk/news/article-12929465/costcutter-shoplifter-punches-men-moment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:58:28.000Z" - }, - { - "title": "Giorgia Meloni tells Italy's mothers to return to the office, saying if she can run the country with a seven-year-old daughter, so can they", - "link": "https://www.dailymail.co.uk/news/article-12929493/Giorgia-Meloni-tells-Italys-mothers-return-office-saying-run-country-seven-year-old-daughter-they.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:51:34 GMT", - "enclosure": { - "length": "6433", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79648867-0-An_animated_Meloni_bounced_back_from_a_bout_of_illness_from_a_ve-a-51_1704447495551.jpg" - }, - "content": "An animated Meloni bounced back from a bout of illness from a vertigo-inducing ear infection to urge mothers to combine motherhood with working.", - "contentSnippet": "An animated Meloni bounced back from a bout of illness from a vertigo-inducing ear infection to urge mothers to combine motherhood with working.", - "guid": "https://www.dailymail.co.uk/news/article-12929493/Giorgia-Meloni-tells-Italys-mothers-return-office-saying-run-country-seven-year-old-daughter-they.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:51:34.000Z" - }, - { - "title": "Police search for missing 39-year-old woman who has not been seen for two weeks finds her personal items on river bank as fears grow for her safety", - "link": "https://www.dailymail.co.uk/news/article-12929483/police-missing-woman-search-river-bank-personal-items-safety.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:39:04 GMT", - "enclosure": { - "length": "5255", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79647537-0-image-a-2_1704444133294.jpg" - }, - "content": "Lucy Charles, 39, was last seen on Station Road, Bangor-on-Dee, Wrexham at 5.34pm when she was captured on CCTV walking past the Royal Oak pub on December 22.", - "contentSnippet": "Lucy Charles, 39, was last seen on Station Road, Bangor-on-Dee, Wrexham at 5.34pm when she was captured on CCTV walking past the Royal Oak pub on December 22.", - "guid": "https://www.dailymail.co.uk/news/article-12929483/police-missing-woman-search-river-bank-personal-items-safety.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:39:04.000Z" - }, - { - "title": "Two boys, 16 and 17, are arrested on suspicion of murdering Harry Pitman at Primrose Hill as 16-year-old waited to watch New Year's Eve fireworks", - "link": "https://www.dailymail.co.uk/news/article-12929593/harry-pitman-murder-two-boys-arrested.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:36:38 GMT", - "enclosure": { - "length": "11104", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79574667-0-image-m-15_1704446073724.jpg" - }, - "content": "Police say Harry, 16, died after a 'spontaneous fight' with 'another male' escalated into deadly violence at the viewing point in Camden, North London.", - "contentSnippet": "Police say Harry, 16, died after a 'spontaneous fight' with 'another male' escalated into deadly violence at the viewing point in Camden, North London.", - "guid": "https://www.dailymail.co.uk/news/article-12929593/harry-pitman-murder-two-boys-arrested.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:36:38.000Z" - }, - { - "title": "REVEALED: Present-day Premier League star was sat one row behind one of the league's most bizarre viral moments as a Chelsea fan started brushing his teeth mid-match\u2026 but can you recognise who it is?", - "link": "https://www.dailymail.co.uk/sport/football/article-12929227/Premier-League-star-Chelsea-fan-brushing-teeth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:24:40 GMT", - "enclosure": { - "length": "9667", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/07/79646077-0-image-a-21_1704440444042.jpg" - }, - "content": "However, as the camera panned to the dugout, eagle-eyed supporters noticed one fan near the front of the stand brushing his teeth while this was all taking place.", - "contentSnippet": "However, as the camera panned to the dugout, eagle-eyed supporters noticed one fan near the front of the stand brushing his teeth while this was all taking place.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12929227/Premier-League-star-Chelsea-fan-brushing-teeth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:24:40.000Z" - }, - { - "title": "'Broadband poles have spoiled our community': Pensioner slams BT after 'eyesores' were put up outside his cul-de-sac home", - "link": "https://www.dailymail.co.uk/news/article-12925649/Telecoms-workers-installed-two-telegraph-poles-outside-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:12:04 GMT", - "enclosure": { - "length": "6440", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79607505-0-image-m-22_1704370567658.jpg" - }, - "content": "EXCLUSIVE: John Scholefield, of Sheffield, said he can see the huge masts when he sits on the sofa in his living room and they are 'distracting' when he looks out the three front windows of his house.", - "contentSnippet": "EXCLUSIVE: John Scholefield, of Sheffield, said he can see the huge masts when he sits on the sofa in his living room and they are 'distracting' when he looks out the three front windows of his house.", - "guid": "https://www.dailymail.co.uk/news/article-12925649/Telecoms-workers-installed-two-telegraph-poles-outside-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:12:04.000Z" - }, - { - "title": "Glow sticks and an early night! As DJ Annie Mac's clubbing tour for 'parents who can't stay up late' sells out, and Vicky McClure launches a 2pm disco - how daytime raving became all the rage", - "link": "https://www.dailymail.co.uk/femail/article-12880631/Glow-sticks-early-night-DJ-Annie-Macs-clubbing-tour-parents-stay-late-sells-Vicky-McClure-launches-2pm-disco-daytime-raving-rage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:10:05 GMT", - "enclosure": { - "length": "10810", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/19/11/79124301-0-image-a-7_1702986588248.jpg" - }, - "content": "UK clubbers who thought they'd bid farewell to raving decades ago are being invited to rediscover their passion for dance music - at daytime and early evening sessions.", - "contentSnippet": "UK clubbers who thought they'd bid farewell to raving decades ago are being invited to rediscover their passion for dance music - at daytime and early evening sessions.", - "guid": "https://www.dailymail.co.uk/femail/article-12880631/Glow-sticks-early-night-DJ-Annie-Macs-clubbing-tour-parents-stay-late-sells-Vicky-McClure-launches-2pm-disco-daytime-raving-rage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:10:05.000Z" - }, - { - "title": "Lioness Mary Earps shares snaps of her VERY glamorous holiday in Barbados to ring in 2024 after being crowned Sports Personality of the Year and making the New Year's Honours List", - "link": "https://www.dailymail.co.uk/femail/article-12929341/Lioness-Mary-Earps-shares-snaps-glamorous-holiday-Barbados-ring-2024-crowned-Sports-Personality-Year-making-New-Years-Honours-List.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:08:49 GMT", - "enclosure": { - "length": "11452", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79646495-0-image-a-21_1704443382246.jpg" - }, - "content": "The Nottingham-born goalkeeper saw out 2023 in the Caribbean. She shared snaps on Instagram of her lavish holiday after a hugely successful year.", - "contentSnippet": "The Nottingham-born goalkeeper saw out 2023 in the Caribbean. She shared snaps on Instagram of her lavish holiday after a hugely successful year.", - "guid": "https://www.dailymail.co.uk/femail/article-12929341/Lioness-Mary-Earps-shares-snaps-glamorous-holiday-Barbados-ring-2024-crowned-Sports-Personality-Year-making-New-Years-Honours-List.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:08:49.000Z" - }, - { - "title": "How tragedy brought Kirstie Allsopp and Phil Spencer closer than ever: He tearfully opens up for the first time about his parents' deaths and she praises his strength as TV's favourite property duo return to screens", - "link": "https://www.dailymail.co.uk/femail/article-12917101/How-tragedy-brought-Kirstie-Allsopp-Phil-Spencer-closer-tearfully-opens-time-parents-deaths-praises-strength-TVs-favourite-property-duo-return-screens.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:04:40 GMT", - "enclosure": { - "length": "11611", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/02/18/79543761-0-image-a-18_1704219756033.jpg" - }, - "content": "Co-presenters of 24 years, Brits Kirstie Allsopp and Phil Spencer return to TV screens with a new series of Love It Or List It, the show which helps people decide whether to adapt their home or move on.", - "contentSnippet": "Co-presenters of 24 years, Brits Kirstie Allsopp and Phil Spencer return to TV screens with a new series of Love It Or List It, the show which helps people decide whether to adapt their home or move on.", - "guid": "https://www.dailymail.co.uk/femail/article-12917101/How-tragedy-brought-Kirstie-Allsopp-Phil-Spencer-closer-tearfully-opens-time-parents-deaths-praises-strength-TVs-favourite-property-duo-return-screens.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:04:40.000Z" - }, - { - "title": "Neo-Nazi podcasters who called for the execution of Prince Harry and said his son Archie is an 'abomination' who should be 'put down' are jailed", - "link": "https://www.dailymail.co.uk/news/article-12929367/prince-harry-son-archie-neo-nazi-podcasters-abomination-jailed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 09:02:16 GMT", - "enclosure": { - "length": "8870", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/13241006-0-image-m-15_1704442525848.jpg" - }, - "content": "Christopher Gibbons and Tyrone Patten-Walsh were white supremacists who came up with a radio-show format which included chats about violent acts of\u00a0misogyny, Kingston Crown Court was told.", - "contentSnippet": "Christopher Gibbons and Tyrone Patten-Walsh were white supremacists who came up with a radio-show format which included chats about violent acts of\u00a0misogyny, Kingston Crown Court was told.", - "guid": "https://www.dailymail.co.uk/news/article-12929367/prince-harry-son-archie-neo-nazi-podcasters-abomination-jailed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T09:02:16.000Z" - }, - { - "title": "BBC News presenter struggles to contain his laughter after pothole segment takes a VERY cheeky turn", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927473/BBC-News-presenter-laughter-pothole-segment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 08:59:38 GMT", - "enclosure": { - "length": "10530", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630631-0-image-a-27_1704401395480.jpg" - }, - "content": "BBC Look North presenter Peter Levy struggled to contain his laughter after a segment on potholes took a racy turn.", - "contentSnippet": "BBC Look North presenter Peter Levy struggled to contain his laughter after a segment on potholes took a racy turn.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927473/BBC-News-presenter-laughter-pothole-segment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T08:59:38.000Z" - }, - { - "title": "Are YOU a rat snacker? How Gen Z teens are raiding the kitchen cupboards to put together weird snack combinations in new trend - as Waitrose data reveals how snacking is on the rise in Britain", - "link": "https://www.dailymail.co.uk/news/article-12925641/Are-Gen-Z-teens-raiding-kitchen-cupboards-weird-snack-combinations-new-trend-Waitrose-data-reveals-snacking-rise-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 08:57:29 GMT", - "enclosure": { - "length": "6158", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619641-0-image-m-35_1704385507945.jpg" - }, - "content": "The strange trend - branded 'rat snacking' - is seeing humans mimic rodent-like behaviours by scavenging for any old scraps of food to try and make up a meal.", - "contentSnippet": "The strange trend - branded 'rat snacking' - is seeing humans mimic rodent-like behaviours by scavenging for any old scraps of food to try and make up a meal.", - "guid": "https://www.dailymail.co.uk/news/article-12925641/Are-Gen-Z-teens-raiding-kitchen-cupboards-weird-snack-combinations-new-trend-Waitrose-data-reveals-snacking-rise-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T08:57:29.000Z" - }, - { - "title": "Proud father reveals why his 14-year-old son doesn't get pocket money - so had to ditch the video games and start his own hand car washing business", - "link": "https://www.dailymail.co.uk/news/article-12927013/Proud-father-reveals-14-year-old-son-doesnt-pocket-money-ditch-video-games-start-hand-car-washing-business.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 08:56:48 GMT", - "enclosure": { - "length": "7563", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79621181-0-image-m-19_1704391818224.jpg" - }, - "content": "Fourteen-year-old Clark Heisel decided to spend his Christmas gift cash on products to clean neighbours' cars - but parent Patrick has faced an online backlash.", - "contentSnippet": "Fourteen-year-old Clark Heisel decided to spend his Christmas gift cash on products to clean neighbours' cars - but parent Patrick has faced an online backlash.", - "guid": "https://www.dailymail.co.uk/news/article-12927013/Proud-father-reveals-14-year-old-son-doesnt-pocket-money-ditch-video-games-start-hand-car-washing-business.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T08:56:48.000Z" - }, - { - "title": "Paedophile ring of 'witches and wizards' who subjected vulnerable youngsters to 'appalling' abuse face life sentences as judge warns releasing them could endanger more children", - "link": "https://www.dailymail.co.uk/news/article-12927439/paedophile-ring-vulnerable-youngsters-abuse-life-sentences.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 08:54:40 GMT", - "enclosure": { - "length": "9622", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/77785243-0-Five_men_and_three_women_were_convicted_today_at_the_High_Court_-a-31_1704397410083.jpg" - }, - "content": "WARNING - GRAPHIC CONTENT: Five men and two women, who raped, attacked and brutalised vulnerable children at a dirty hovel, were branded a potential danger to the public by a judge.", - "contentSnippet": "WARNING - GRAPHIC CONTENT: Five men and two women, who raped, attacked and brutalised vulnerable children at a dirty hovel, were branded a potential danger to the public by a judge.", - "guid": "https://www.dailymail.co.uk/news/article-12927439/paedophile-ring-vulnerable-youngsters-abuse-life-sentences.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T08:54:40.000Z" - }, - { - "title": "Ruth Perry's sister slams new Ofsted chief's 'sticking plaster' improvements to school inspection system that contributed to head teacher's suicide - saying it is not enough 'to tell inspectors to be nicer'", - "link": "https://www.dailymail.co.uk/news/article-12929403/Ruth-Perry-sister-slams-Ofsted-chief-sticking-plaster-improvements-school-inspection-headteachers-suicide-inspectors-nicer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 08:50:03 GMT", - "enclosure": { - "length": "10320", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79646861-0-image-m-17_1704444281516.jpg" - }, - "content": "Professor Julia Waters (pictured)\u00a0told Ofsted boss Sir Martyn Oliver, who started the role on January 1, that it was not enough 'to tell inspectors to be nicer'.", - "contentSnippet": "Professor Julia Waters (pictured)\u00a0told Ofsted boss Sir Martyn Oliver, who started the role on January 1, that it was not enough 'to tell inspectors to be nicer'.", - "guid": "https://www.dailymail.co.uk/news/article-12929403/Ruth-Perry-sister-slams-Ofsted-chief-sticking-plaster-improvements-school-inspection-headteachers-suicide-inspectors-nicer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T08:50:03.000Z" - }, - { - "title": "Nike's new world record-breaking Alphafly 3 'super shoes' hit resale sites at nearly \u00a3600 a pair after selling out in two minutes", - "link": "https://www.dailymail.co.uk/news/article-12929273/Nike-world-record-breaking-Alphafly-3-super-shoes-resale-600-pair-selling-two-minutes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 08:49:22 GMT", - "enclosure": { - "length": "8764", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79646599-0-image-m-16_1704442248589.jpg" - }, - "content": "Kenya's Kelvin Kiptum wore Nike Alphafly 3 shoe (pictured) when he broke the world record time for marathons in Chicago in October.", - "contentSnippet": "Kenya's Kelvin Kiptum wore Nike Alphafly 3 shoe (pictured) when he broke the world record time for marathons in Chicago in October.", - "guid": "https://www.dailymail.co.uk/news/article-12929273/Nike-world-record-breaking-Alphafly-3-super-shoes-resale-600-pair-selling-two-minutes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T08:49:22.000Z" - }, - { - "title": "Meet Juan Carlos I - the dashing King who rescued democracy and the Spanish throne but today lives in exile, beset by an ocean of complaints about\u00a0 adultery and financial impropriety", - "link": "https://www.dailymail.co.uk/femail/article-12648865/Juan-Carlos-dashing-King-rescued-democracy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 08:45:16 GMT", - "enclosure": { - "length": "10040", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/19/14/76753721-0-image-a-5_1697721783812.jpg" - }, - "content": "Once the most glamorous king in Europe, Juan Carlos is now living\u00a0in exile in the United Arab Emirates, estranged from his family and facing a multi-million pound lawsuit from his former mistress.", - "contentSnippet": "Once the most glamorous king in Europe, Juan Carlos is now living\u00a0in exile in the United Arab Emirates, estranged from his family and facing a multi-million pound lawsuit from his former mistress.", - "guid": "https://www.dailymail.co.uk/femail/article-12648865/Juan-Carlos-dashing-King-rescued-democracy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T08:45:16.000Z" - }, - { - "title": "Top model killed herself two years after visiting Jeffrey Epstein's 'pedo island' aged just 18: Appeared in flight logs and was named in new court documents", - "link": "https://www.dailymail.co.uk/news/article-12928607/ruslana-korshunova-jeffrey-epstein-flight-logs-virginia-robert-giuffre.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 08:09:16 GMT", - "enclosure": { - "length": "8696", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/03/79640841-0-image-a-1_1704425344073.jpg" - }, - "content": "A top Kazakh model jumped to her death from an apartment building two years after visiting Jeffrey Epstein 's so-called pedophile island as an 18 year-old.", - "contentSnippet": "A top Kazakh model jumped to her death from an apartment building two years after visiting Jeffrey Epstein 's so-called pedophile island as an 18 year-old.", - "guid": "https://www.dailymail.co.uk/news/article-12928607/ruslana-korshunova-jeffrey-epstein-flight-logs-virginia-robert-giuffre.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T08:09:16.000Z" - }, - { - "title": "Prince Andrew will NEVER return to the royal fold and will be 'forced out' of the Royal Lodge after documents relating to paedophile Jeffrey Epstein detailing sexual assault allegations 'crystallise' King Charles's determination to act", - "link": "https://www.dailymail.co.uk/news/article-12928105/prince-andrew-royal-jeffrey-epstein-documents-king-charles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 07:50:25 GMT", - "enclosure": { - "length": "10035", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639769-0-image-a-10_1704419099255.jpg" - }, - "content": "Plans were already in train to evict him from Royal Lodge, his ten-bedroom Windsor home since 2003, and move him to a smaller residence in keeping with his 'downgraded' status.", - "contentSnippet": "Plans were already in train to evict him from Royal Lodge, his ten-bedroom Windsor home since 2003, and move him to a smaller residence in keeping with his 'downgraded' status.", - "guid": "https://www.dailymail.co.uk/news/article-12928105/prince-andrew-royal-jeffrey-epstein-documents-king-charles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T07:50:25.000Z" - }, - { - "title": "See Neptune and Uranus in their TRUE colours: Incredible new photos reveal the planets are the same shade of greenish blue", - "link": "https://www.dailymail.co.uk/sciencetech/article-12926443/See-Neptune-Uranus-TRUE-colours-Incredible-new-photos-reveal-planets-shade-greenish-blue.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 07:49:02 GMT", - "enclosure": { - "length": "4736", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79613529-0-image-m-62_1704386346111.jpg" - }, - "content": "A new University of Oxford-led study finally reveals what the two ice giants really look like\u00a0- and they're far closer in colour than previously thought.", - "contentSnippet": "A new University of Oxford-led study finally reveals what the two ice giants really look like\u00a0- and they're far closer in colour than previously thought.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12926443/See-Neptune-Uranus-TRUE-colours-Incredible-new-photos-reveal-planets-shade-greenish-blue.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T07:49:02.000Z" - }, - { - "title": "HMV collapsed into administration and closed stores across the country, but Britain's beloved music business is on a comeback driven by vinyl-loving Gen Zs fed up of streaming - and now plans to expand into Europe and Canada", - "link": "https://www.dailymail.co.uk/news/article-12918537/HMV-stores-music-administration-GenZ-streaming-Europe-Canada.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 07:42:53 GMT", - "enclosure": { - "length": "5964", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79640045-0-image-m-24_1704419851443.jpg" - }, - "content": "The beloved British music business collapsed into administration and shut shops across the country, but HMV's boss has revealed to MailOnline ambitious plans for the year ahead.", - "contentSnippet": "The beloved British music business collapsed into administration and shut shops across the country, but HMV's boss has revealed to MailOnline ambitious plans for the year ahead.", - "guid": "https://www.dailymail.co.uk/news/article-12918537/HMV-stores-music-administration-GenZ-streaming-Europe-Canada.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T07:42:53.000Z" - }, - { - "title": "El Salvador claims its murder rate has fallen from 495 in 2022 to 154 in 2023 amid strongman president's brutal crackdown on gangs", - "link": "https://www.dailymail.co.uk/news/article-12927605/El-Salvador-claims-murder-rate-fallen-495-2022-154-2023-amid-strongman-presidents-brutal-crackdown-gangs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 07:37:10 GMT", - "enclosure": { - "length": "8660", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79630157-0-image-a-39_1704405574637.jpg" - }, - "content": "A murder rate that peaked at 106 per 100,000 nine years ago collapsed to 2.4 last year, making 2023 the 'safest year in El Salvador's history' after a mass round-up of suspected gang members", - "contentSnippet": "A murder rate that peaked at 106 per 100,000 nine years ago collapsed to 2.4 last year, making 2023 the 'safest year in El Salvador's history' after a mass round-up of suspected gang members", - "guid": "https://www.dailymail.co.uk/news/article-12927605/El-Salvador-claims-murder-rate-fallen-495-2022-154-2023-amid-strongman-presidents-brutal-crackdown-gangs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T07:37:10.000Z" - }, - { - "title": "From THAT 'Pizza Express' alibi, lies to Emily Maitlis and an infamous trip to New York in 2001: All of the hotly-disputed sex claims against Prince Andrew, as he finds himself mired in allegations again after release of Epstein files", - "link": "https://www.dailymail.co.uk/news/article-12926663/prince-andrew-jeffrey-epstein-daily-mail-investigation-sex-allegations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 07:31:30 GMT", - "enclosure": { - "length": "6849", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79618517-0-image-m-281_1704387352598.jpg" - }, - "content": "A little over three years ago, the Daily Mail published a bombshell four-part series on the hotly-disputed sex allegations facing the Duke of the York.", - "contentSnippet": "A little over three years ago, the Daily Mail published a bombshell four-part series on the hotly-disputed sex allegations facing the Duke of the York.", - "guid": "https://www.dailymail.co.uk/news/article-12926663/prince-andrew-jeffrey-epstein-daily-mail-investigation-sex-allegations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T07:31:30.000Z" - }, - { - "title": "SAMANTHA BRICK: How I finally discovered the malevolence that conjured up the poltergeist in my attic... The door handle that rattled in the night. Books that flew off the shelves. The scratching down the walls that made my dogs growl", - "link": "https://www.dailymail.co.uk/femail/article-12928205/SAMANTHA-BRICK-finally-discovered-malevolence-conjured-poltergeist-attic-door-handle-rattled-night-Books-flew-shelves-scratching-walls-dogs-growl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 07:25:12 GMT", - "enclosure": { - "length": "10217", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633099-0-image-a-11_1704406510690.jpg" - }, - "content": "SAMANTHA BRICK: I was sitting at the kitchen table engrossed in one of our usual chats when suddenly I heard a massive bang upstairs, Followed by intermittent thudding.", - "contentSnippet": "SAMANTHA BRICK: I was sitting at the kitchen table engrossed in one of our usual chats when suddenly I heard a massive bang upstairs, Followed by intermittent thudding.", - "guid": "https://www.dailymail.co.uk/femail/article-12928205/SAMANTHA-BRICK-finally-discovered-malevolence-conjured-poltergeist-attic-door-handle-rattled-night-Books-flew-shelves-scratching-walls-dogs-growl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T07:25:12.000Z" - }, - { - "title": "Looks can be deceiving! Adorable black footed cat that's world's deadliest feline stares shyly at camera in new video after arriving at Utah zoo", - "link": "https://www.dailymail.co.uk/news/article-12929139/Adorable-black-footed-cat-worlds-deadliest-feline-utah-zoo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 07:04:14 GMT", - "enclosure": { - "length": "10913", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/06/79644863-0-image-a-60_1704436121540.jpg" - }, - "content": "The newest resident at a Salt Lake City area zoo has been pictured settling into her new home and even though she is\u00a0the world's most lethal African wild cat, Gaia is adorable.", - "contentSnippet": "The newest resident at a Salt Lake City area zoo has been pictured settling into her new home and even though she is\u00a0the world's most lethal African wild cat, Gaia is adorable.", - "guid": "https://www.dailymail.co.uk/news/article-12929139/Adorable-black-footed-cat-worlds-deadliest-feline-utah-zoo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T07:04:14.000Z" - }, - { - "title": "Sally Field reveals former boyfriend Burt Reynolds refused to attend 1980 Academy Awards with her when she won her first Oscar: 'He really was not a nice guy around me then'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927497/Sally-Field-reveals-Burt-Reynolds-refused-attend-Oscars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 06:50:39 GMT", - "enclosure": { - "length": "10745", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79628889-0-image-m-53_1704397596264.jpg" - }, - "content": "Field won her first Oscar in 1980 for Norma Rae, but Reynolds refused to attend the Academy Awards with her and even tried to get her to skip the Cannes Film Festival.", - "contentSnippet": "Field won her first Oscar in 1980 for Norma Rae, but Reynolds refused to attend the Academy Awards with her and even tried to get her to skip the Cannes Film Festival.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927497/Sally-Field-reveals-Burt-Reynolds-refused-attend-Oscars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T06:50:39.000Z" - }, - { - "title": "Iowa school shooter plotted massacre after he and his sister suffered horrific bullying - with teachers ignoring their torment, classmates say", - "link": "https://www.dailymail.co.uk/news/article-12929031/iowa-perry-high-school-shooting-dylan-butler-bullied.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 05:42:49 GMT", - "enclosure": { - "length": "10149", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/05/79644051-0-image-a-1_1704432888420.jpg" - }, - "content": "Dylan Butler, who shot and killed a fellow student in Iowa on Thursday and injured five others before killing himself, had been bullied since elementary school, classmates said.", - "contentSnippet": "Dylan Butler, who shot and killed a fellow student in Iowa on Thursday and injured five others before killing himself, had been bullied since elementary school, classmates said.", - "guid": "https://www.dailymail.co.uk/news/article-12929031/iowa-perry-high-school-shooting-dylan-butler-bullied.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T05:42:49.000Z" - }, - { - "title": "'What a small-minded, smug & horrible thing to say': Sky News presenter Jayne Secker is slammed for telling 13-year-old boy to 'go outside and get some fresh air' after he became the first person in history to beat Tetris game", - "link": "https://www.dailymail.co.uk/news/article-12927147/sky-news-presenter-slammed-boy-outside-beat-tetris.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 03:50:22 GMT", - "enclosure": { - "length": "9746", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79628581-0-image-a-21_1704396911731.jpg" - }, - "content": "Jayne Secker, who in recent days has waxed lyrical about Luke Littler's run to the World Darts Championship final, was accused of being 'small-minded' over her remarks about gamer Willis Gibson.", - "contentSnippet": "Jayne Secker, who in recent days has waxed lyrical about Luke Littler's run to the World Darts Championship final, was accused of being 'small-minded' over her remarks about gamer Willis Gibson.", - "guid": "https://www.dailymail.co.uk/news/article-12927147/sky-news-presenter-slammed-boy-outside-beat-tetris.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T03:50:22.000Z" - }, - { - "title": "EDEN CONFIDENTIAL: After Archbishop of Canterbury Justin Welby discovers his real father was Winston Churchill's private secretary Sir Anthony Montague Browne and not his mother's first husband, he now discovers she has left him a surprise \u00a32.4 million", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928177/Archbishop-Canterbury-Justin-Welby-discovers-mother-left-surprise-inheritance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 03:50:20 GMT", - "enclosure": { - "length": "11033", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633671-0-image-a-39_1704407536503.jpg" - }, - "content": "EDEN CONFIDENTIAL: The windfall is 28 times his annual salary as leader of the Church of England and head of the worldwide Anglican Communion. 'It's a life-changing sum,' a friend tells me.", - "contentSnippet": "EDEN CONFIDENTIAL: The windfall is 28 times his annual salary as leader of the Church of England and head of the worldwide Anglican Communion. 'It's a life-changing sum,' a friend tells me.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928177/Archbishop-Canterbury-Justin-Welby-discovers-mother-left-surprise-inheritance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T03:50:20.000Z" - }, - { - "title": "Grand jury DECLINES to charge 'hero' vigilante who shot and killed serial thief Eugene Washington inside Houston taqueria as he was walking away after robbery", - "link": "https://www.dailymail.co.uk/news/article-12927791/Grand-jury-DECLINES-charge-vigilante-killed-Houston-robber.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 02:41:57 GMT", - "enclosure": { - "length": "10964", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630787-0-image-a-75_1704401775440.jpg" - }, - "content": "A\u00a0Texas\u00a0vigilante who shot and killed a robber in a Houston restaurant last year will not be charged, a grand jury has decided.", - "contentSnippet": "A\u00a0Texas\u00a0vigilante who shot and killed a robber in a Houston restaurant last year will not be charged, a grand jury has decided.", - "guid": "https://www.dailymail.co.uk/news/article-12927791/Grand-jury-DECLINES-charge-vigilante-killed-Houston-robber.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T02:41:57.000Z" - }, - { - "title": "Billionaire James Packer shows off his slimmed-down figure after 33kg weight loss as he goes for a walk with his ex wife Jodhi Meares in LA after spending Christmas together", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927775/Billionaire-James-Packer-shows-slimmed-figure-33kg-weight-loss-goes-walk-ex-wife-Jodhi-Meares-Los-Angeles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 02:35:03 GMT", - "enclosure": { - "length": "10570", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631349-0-image-a-6_1704402489219.jpg" - }, - "content": "James Packer has slimmed down following his 33kg weight loss.", - "contentSnippet": "James Packer has slimmed down following his 33kg weight loss.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927775/Billionaire-James-Packer-shows-slimmed-figure-33kg-weight-loss-goes-walk-ex-wife-Jodhi-Meares-Los-Angeles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T02:35:03.000Z" - }, - { - "title": "BBC is facing furious backlash after omitting the word 'Jewish' from promotional material for film telling the story of WWII hero Sir Nicholas Winton who saved kindertransport children from the Nazis", - "link": "https://www.dailymail.co.uk/news/article-12928561/BBC-backlash-Jewish-film-WWII-Sir-Nicholas-Winton-kindertransport-Nazis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 02:11:57 GMT", - "enclosure": { - "length": "5992", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639123-0-image-m-60_1704419228888.jpg" - }, - "content": "A new film, One Life, tells the story of Sir Nicholas Winton (Anthony Hopkins pictured in the role) rescuing hundreds of mostly Jewish children from the expanding Nazi invasion across Europe.", - "contentSnippet": "A new film, One Life, tells the story of Sir Nicholas Winton (Anthony Hopkins pictured in the role) rescuing hundreds of mostly Jewish children from the expanding Nazi invasion across Europe.", - "guid": "https://www.dailymail.co.uk/news/article-12928561/BBC-backlash-Jewish-film-WWII-Sir-Nicholas-Winton-kindertransport-Nazis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T02:11:57.000Z" - }, - { - "title": "Britain vows North Korea will 'pay a high price' for supplying ballistic missiles to Putin for use in Ukraine - as the Foreign Office brands move a 'sign of Russia's desperation'", - "link": "https://www.dailymail.co.uk/news/article-12928295/Britain-North-Korea-ballistic-missiles-Putin-Ukraine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 02:08:01 GMT", - "enclosure": { - "length": "10896", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79628553-0-image-a-33_1704397445944.jpg" - }, - "content": "Moscow acquired the weapons from Pyongyang as it struggles to replenish its arsenal for the drawn-out war in Ukraine - which has seen it sustain heavy losses during almost two years of fighting.", - "contentSnippet": "Moscow acquired the weapons from Pyongyang as it struggles to replenish its arsenal for the drawn-out war in Ukraine - which has seen it sustain heavy losses during almost two years of fighting.", - "guid": "https://www.dailymail.co.uk/news/article-12928295/Britain-North-Korea-ballistic-missiles-Putin-Ukraine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T02:08:01.000Z" - }, - { - "title": "The rising stars to watch in 2024: A jazz sensation for the digital age, the perfect Gen Z pop star and the bearded storyteller stepping into Ed Sheeran's folksy shoes", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927659/The-rising-stars-watch-2024-jazz-sensation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 02:07:36 GMT", - "enclosure": { - "length": "10672", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631965-0-image-a-12_1704403411674.jpg" - }, - "content": "ADRIAN THRILLS: Her swooning vocals sound as though they might have come straight from the 1940s, but Icelandic-Chinese singer Laufey L\u00edn J\u00f3nsd\u00f3ttir is a jazz star for the digital age.", - "contentSnippet": "ADRIAN THRILLS: Her swooning vocals sound as though they might have come straight from the 1940s, but Icelandic-Chinese singer Laufey L\u00edn J\u00f3nsd\u00f3ttir is a jazz star for the digital age.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927659/The-rising-stars-watch-2024-jazz-sensation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T02:07:36.000Z" - }, - { - "title": "Is Daniel Day-Lewis being pulled out of retirement? Reclusive actor seen leaving meeting with directors Steven Spielberg and Jim Sheridan who each led him to Oscar glory", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928593/Is-Daniel-Day-Lewis-pulled-retirement-Reclusive-actor-seen-leaving-meeting-directors-Steven-Spielberg-Jim-Sheridan-led-Oscar-glory.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 02:04:54 GMT", - "enclosure": { - "length": "9917", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639907-0-image-m-22_1704419544285.jpg" - }, - "content": "Three-time Oscar winning-actor Daniel Day-Lewis may be coming out of retirement after seven years, with the actor spotted leaving a meeting with Steven Spielberg and Jim Sheridan.", - "contentSnippet": "Three-time Oscar winning-actor Daniel Day-Lewis may be coming out of retirement after seven years, with the actor spotted leaving a meeting with Steven Spielberg and Jim Sheridan.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928593/Is-Daniel-Day-Lewis-pulled-retirement-Reclusive-actor-seen-leaving-meeting-directors-Steven-Spielberg-Jim-Sheridan-led-Oscar-glory.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T02:04:54.000Z" - }, - { - "title": "'Pets are treated better than us': Migrants who spent life savings traveling from Africa to NYC complain they've been 'sold a dream by Hollywood - but the American Dream isn't like the movies'", - "link": "https://www.dailymail.co.uk/news/article-12927751/Pets-treated-better-Migrants-spent-life-savings-traveling-Africa-NYC-complain-theyve-sold-dream-Hollywood-American-Dream-isnt-like-movies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:52:22 GMT", - "enclosure": { - "length": "6236", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633571-0-image-m-15_1704406106566.jpg" - }, - "content": "Hundreds of homeless migrants, mostly young African men, were waiting in line outside a church on East 7th Street in Manhattan's East Village on Thursday.", - "contentSnippet": "Hundreds of homeless migrants, mostly young African men, were waiting in line outside a church on East 7th Street in Manhattan's East Village on Thursday.", - "guid": "https://www.dailymail.co.uk/news/article-12927751/Pets-treated-better-Migrants-spent-life-savings-traveling-Africa-NYC-complain-theyve-sold-dream-Hollywood-American-Dream-isnt-like-movies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:52:22.000Z" - }, - { - "title": "Labour plans could leave pensioners worse off if other levies are hiked to pay for a cut in income tax or national insurance, leading economist warns", - "link": "https://www.dailymail.co.uk/news/article-12928553/Labour-plans-leave-pensioners-worse-levies-hiked-pay-cut-income-tax-national-insurance-leading-economist-warns.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:50:12 GMT", - "enclosure": { - "length": "8482", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79638749-0-image-a-101_1704416879092.jpg" - }, - "content": "Paul Johnson, director of the Institute for Fiscal Studies, said he was 'pretty surprised' by reports that Labour was considering pledging tax cuts in its election manifesto.", - "contentSnippet": "Paul Johnson, director of the Institute for Fiscal Studies, said he was 'pretty surprised' by reports that Labour was considering pledging tax cuts in its election manifesto.", - "guid": "https://www.dailymail.co.uk/news/article-12928553/Labour-plans-leave-pensioners-worse-levies-hiked-pay-cut-income-tax-national-insurance-leading-economist-warns.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:50:12.000Z" - }, - { - "title": "Lorraine Kelly reveals 'she doesn't like to attend posh events' because she considers herself 'working class' and admits why she HATES red carpets", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928555/Lorraine-Kelly-doesnt-like-posh-events-considers-working-class-HATES-red-carpets.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:48:48 GMT", - "enclosure": { - "length": "10473", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639781-0-image-a-205_1704419082720.jpg" - }, - "content": "The TV presenter, 64, who hosts her own show Lorraine and has spent 40 years on screen, admitted she still considers herself as 'working class' because of her upbringing.", - "contentSnippet": "The TV presenter, 64, who hosts her own show Lorraine and has spent 40 years on screen, admitted she still considers herself as 'working class' because of her upbringing.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928555/Lorraine-Kelly-doesnt-like-posh-events-considers-working-class-HATES-red-carpets.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:48:48.000Z" - }, - { - "title": "RICHARD KAY: King Charles promised the Queen that he would look after Prince Andrew, but is he now regretting last week's show of unity at Sandringham?", - "link": "https://www.dailymail.co.uk/debate/article-12927759/RICHARD-KAY-King-Charles-promised-Queen-look-Prince-Andrew-regretting-weeks-unity-Sandringham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:47:05 GMT", - "enclosure": { - "length": "10874", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630213-0-image-a-27_1704400790412.jpg" - }, - "content": "RICHARD KAY: At the time this fraternal decision seemed a typically Christian one from Charles. Ten days later the gesture seems not just astounding but possibly unwise.", - "contentSnippet": "RICHARD KAY: At the time this fraternal decision seemed a typically Christian one from Charles. Ten days later the gesture seems not just astounding but possibly unwise.", - "guid": "https://www.dailymail.co.uk/debate/article-12927759/RICHARD-KAY-King-Charles-promised-Queen-look-Prince-Andrew-regretting-weeks-unity-Sandringham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:47:05.000Z" - }, - { - "title": "Male nurse who told female colleague she was a 'sex bomb' during late night texting session is struck off", - "link": "https://www.dailymail.co.uk/news/article-12928535/Male-nurse-female-colleague-sex-bomb-texting-struck-off.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:31:44 GMT", - "enclosure": { - "length": "4966", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639035-0-image-m-65_1704417388216.jpg" - }, - "content": "A male nurse has been struck off after he told a female colleague she was a 'sex bomb'. Gareth Pritchard texted her late with the message along with other comments sexual, a tribunal heard.", - "contentSnippet": "A male nurse has been struck off after he told a female colleague she was a 'sex bomb'. Gareth Pritchard texted her late with the message along with other comments sexual, a tribunal heard.", - "guid": "https://www.dailymail.co.uk/news/article-12928535/Male-nurse-female-colleague-sex-bomb-texting-struck-off.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:31:44.000Z" - }, - { - "title": "Fans and pundits slam 'DISGRACEFUL' red card shown to Dominic Calvert-Lewin after ref was sent to monitor in Everton's FA Cup draw at Crystal Palace: 'Our game is being ruined by VAR'", - "link": "https://www.dailymail.co.uk/sport/football/article-12928021/Everton-fans-slam-DISGRACEFUL-red-card-shown-Dominic-Calvert-Lewin-FA-Cup-tie-Crystal-Palace-just-substituted.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:26:19 GMT", - "enclosure": { - "length": "11482", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634397-0-image-a-31_1704408139209.jpg" - }, - "content": "Everton fans have slammed the decision to give Dominic Calvert-Lewin a red card in their FA Cup clash with Crystal Palace.\u00a0", - "contentSnippet": "Everton fans have slammed the decision to give Dominic Calvert-Lewin a red card in their FA Cup clash with Crystal Palace.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12928021/Everton-fans-slam-DISGRACEFUL-red-card-shown-Dominic-Calvert-Lewin-FA-Cup-tie-Crystal-Palace-just-substituted.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:26:19.000Z" - }, - { - "title": "PowerWash Simulator VR review: Like housework, only fun! Wash those blues away, writes PETER HOSKIN", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928505/PowerWash-Simulator-VR-review-Like-housework-fun-Wash-blues-away-writes-PETER-HOSKIN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:18:57 GMT", - "enclosure": { - "length": "8950", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79638295-0-image-m-172_1704415578659.jpg" - }, - "content": "PETER HOSKIN: My New Year's resolution is to do a bit more cleaning. Not of actual dirt in my actual house, of course. That would be silly. But of virtual dirt in a game.", - "contentSnippet": "PETER HOSKIN: My New Year's resolution is to do a bit more cleaning. Not of actual dirt in my actual house, of course. That would be silly. But of virtual dirt in a game.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928505/PowerWash-Simulator-VR-review-Like-housework-fun-Wash-blues-away-writes-PETER-HOSKIN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:18:57.000Z" - }, - { - "title": "Divorces fall to their lowest rate in more than five decades as men 'become better husbands' and are more 'committed' to their marriages, study finds", - "link": "https://www.dailymail.co.uk/news/article-12928507/Divorces-fall-lowest-rate-five-decades-men-better-husbands-committed-marriages-study-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:18:27 GMT", - "enclosure": { - "length": "10495", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/23/79635771-0-image-a-85_1704409495938.jpg" - }, - "content": "The chance of a marriage breaking down is now 35 per cent, down from a high of 44 per cent in 1986, and a rate not seen since 1970.", - "contentSnippet": "The chance of a marriage breaking down is now 35 per cent, down from a high of 44 per cent in 1986, and a rate not seen since 1970.", - "guid": "https://www.dailymail.co.uk/news/article-12928507/Divorces-fall-lowest-rate-five-decades-men-better-husbands-committed-marriages-study-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:18:27.000Z" - }, - { - "title": "EPHRAIM HARDCASTLE: How Prince William called Queen Elizabeth to change the guest list for his wedding to Princess Kate in 2011", - "link": "https://www.dailymail.co.uk/news/article-12928451/Prince-William-called-Queen-change-guest-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:17:33 GMT", - "enclosure": { - "length": "10583", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79637753-0-image-a-138_1704414221724.jpg" - }, - "content": "EPHRAIM HARDCASTLE: Sophie Winkleman, aka Lady Frederick Windsor, wails that she knew virtually no one at her 2009 wedding, organised by mother-in-law Princess Michael of Kent.", - "contentSnippet": "EPHRAIM HARDCASTLE: Sophie Winkleman, aka Lady Frederick Windsor, wails that she knew virtually no one at her 2009 wedding, organised by mother-in-law Princess Michael of Kent.", - "guid": "https://www.dailymail.co.uk/news/article-12928451/Prince-William-called-Queen-change-guest-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:17:33.000Z" - }, - { - "title": "Society of the Snow: The shocking true story of the 1970s Andes disaster as 'must-see' film arrives on Netflix", - "link": "https://www.dailymail.co.uk/news/article-12927399/society-snow-andes-disaster-netflix.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:16:41 GMT", - "enclosure": { - "length": "7791", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79627177-0-image-a-32_1704394262865.jpg" - }, - "content": "Society of the Snow, directed by J.A Bayona, has premiered on the streaming giant today and has been nominated for Best Foreign Language Film at the Golden Globes this weekend.", - "contentSnippet": "Society of the Snow, directed by J.A Bayona, has premiered on the streaming giant today and has been nominated for Best Foreign Language Film at the Golden Globes this weekend.", - "guid": "https://www.dailymail.co.uk/news/article-12927399/society-snow-andes-disaster-netflix.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:16:41.000Z" - }, - { - "title": "Take your seats for Withnail & I, Sarah Jessica Parker and Shiv from Succession: PATRICK MARMION picks out the best of theatre in 2024 in what looks to be a bumper year for plays", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927817/Take-seats-Withnail-Sarah-Jessica-Parker-Shiv-Succession-PATRICK-MARMION-picks-best-theatre-2024-looks-bumper-year-plays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:15:49 GMT", - "enclosure": { - "length": "11347", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630627-0-image-a-34_1704401975031.jpg" - }, - "content": "PATRICK MARMION: Comedies and tragedies, adaptations and original works - as well as some of the finest stage actors in the world, jockeying for our attention - yes, it looks like being a bumper year.", - "contentSnippet": "PATRICK MARMION: Comedies and tragedies, adaptations and original works - as well as some of the finest stage actors in the world, jockeying for our attention - yes, it looks like being a bumper year.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927817/Take-seats-Withnail-Sarah-Jessica-Parker-Shiv-Succession-PATRICK-MARMION-picks-best-theatre-2024-looks-bumper-year-plays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:15:49.000Z" - }, - { - "title": "Secret Life Of The Safari Park review: Meet Kevin, the cheeky monkey who likes cars and older ladies, writes CHRISTOPHER STEVENS", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927797/Secret-Life-Safari-Park-review-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 01:01:21 GMT", - "enclosure": { - "length": "9047", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79632813-0-image-a-156_1704414606992.jpg" - }, - "content": "CHRISTOPHER STEVENS: Pete is a zookeeper in Knowsley, near Liverpool, and the amorous Kev is one of the baboons followed by cameras in Secret Life Of The Safari Park (Ch4).", - "contentSnippet": "CHRISTOPHER STEVENS: Pete is a zookeeper in Knowsley, near Liverpool, and the amorous Kev is one of the baboons followed by cameras in Secret Life Of The Safari Park (Ch4).", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927797/Secret-Life-Safari-Park-review-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T01:01:21.000Z" - }, - { - "title": "Shropshire is named in the world's top 10 'destinations to watch' in 2024 as travel company praises the historic region's 'beautiful landscapes, towns and villages'", - "link": "https://www.dailymail.co.uk/news/article-12928519/Shropshire-destination-watch-2024-travel-region-beautiful-landscapes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 00:57:05 GMT", - "enclosure": { - "length": "6783", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79638307-0-image-a-38_1704415735941.jpg" - }, - "content": "It is the first time anywhere in the UK has made the list by travel trade organisation Abta, which described Shropshire as a 'rural gem' with 'beautiful landscapes, towns and villages'.", - "contentSnippet": "It is the first time anywhere in the UK has made the list by travel trade organisation Abta, which described Shropshire as a 'rural gem' with 'beautiful landscapes, towns and villages'.", - "guid": "https://www.dailymail.co.uk/news/article-12928519/Shropshire-destination-watch-2024-travel-region-beautiful-landscapes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T00:57:05.000Z" - }, - { - "title": "Royal Navy has so few sailors it has been 'forced to decommission' two warships so its new frigates won't go unmanned", - "link": "https://www.dailymail.co.uk/news/article-12928373/Royal-Navy-sailors-forced-decommission-two-warships-new-frigates-wont-unmanned.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 00:32:19 GMT", - "enclosure": { - "length": "9132", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79637175-0-image-a-8_1704414300613.jpg" - }, - "content": "HMS Westminster and HMS Argyll were allegedly retired so their crews could transfer to the service's new Type 26 frigates. The news comes as UK sailors were sent to the Red Sea to protect merchant ships.", - "contentSnippet": "HMS Westminster and HMS Argyll were allegedly retired so their crews could transfer to the service's new Type 26 frigates. The news comes as UK sailors were sent to the Red Sea to protect merchant ships.", - "guid": "https://www.dailymail.co.uk/news/article-12928373/Royal-Navy-sailors-forced-decommission-two-warships-new-frigates-wont-unmanned.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T00:32:19.000Z" - }, - { - "title": "Nick Carter breaks his silence over death of sister Bobbie Jean - says he's 'completely heartbroken' in emotional tribute sharing childhood snap", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927843/Nick-Carter-breaks-silence-sister-Bobbie-Jeans-death-says-hes-completely-heartbroken.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 00:31:03 GMT", - "enclosure": { - "length": "10482", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634515-0-image-m-34_1704407511541.jpg" - }, - "content": "Nick Carter has broken his silence over the death of his sister Bobbie Jean's - writing that he is 'completely heartbroken' in emotional tribute on Instagram.\u00a0", - "contentSnippet": "Nick Carter has broken his silence over the death of his sister Bobbie Jean's - writing that he is 'completely heartbroken' in emotional tribute on Instagram.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927843/Nick-Carter-breaks-silence-sister-Bobbie-Jeans-death-says-hes-completely-heartbroken.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T00:31:03.000Z" - }, - { - "title": "Forsyte Saga star Susan Hampshire reveals she would rather end her own life than suffer like her sisters during their final weeks in a powerful contribution to the debate on assisted dying", - "link": "https://www.dailymail.co.uk/femail/article-12927855/Forsyte-Saga-star-Susan-Hampshire-reveals-end-life-suffer-like-sisters-final-weeks-powerful-contribution-debate-assisted-dying.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 00:30:22 GMT", - "enclosure": { - "length": "11545", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631857-0-image-a-33_1704403315311.jpg" - }, - "content": "'I have witnessed, hour by hour and week by week, my loved ones' wishes for a dignified end being denied,' Susan wrote in a submission to the House of Commons health select committee.", - "contentSnippet": "'I have witnessed, hour by hour and week by week, my loved ones' wishes for a dignified end being denied,' Susan wrote in a submission to the House of Commons health select committee.", - "guid": "https://www.dailymail.co.uk/femail/article-12927855/Forsyte-Saga-star-Susan-Hampshire-reveals-end-life-suffer-like-sisters-final-weeks-powerful-contribution-debate-assisted-dying.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T00:30:22.000Z" - }, - { - "title": "Shane MacGowan's widow\u00a0Victoria Mary Clarke claims the late singer has contacted her with a message following his death", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928375/Shane-Macgowans-widow-message-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 00:26:03 GMT", - "enclosure": { - "length": "9858", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79637795-0-image-a-4_1704414328548.jpg" - }, - "content": "The Pogues hitmaker had been battling viral encephalitis and was released from hospital in Dublin shortly before passing away on November 30 surrounded by his family.", - "contentSnippet": "The Pogues hitmaker had been battling viral encephalitis and was released from hospital in Dublin shortly before passing away on November 30 surrounded by his family.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928375/Shane-Macgowans-widow-message-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T00:26:03.000Z" - }, - { - "title": "'How ironic Trainline Wrapped dropped late': Rail passengers share hilarious memes of their 'year in trains' revealing their most visited stations - but not how many journeys were cancelled!", - "link": "https://www.dailymail.co.uk/news/article-12928261/Trainline-Wrapped-late-Rail-memes-trains.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 00:13:26 GMT", - "enclosure": { - "length": "7094", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79636681-0-image-m-54_1704413197925.jpg" - }, - "content": "'Year in Trains', which emulates Spotify Wrapped, reveals to Trainline customers their most visited railway stations in 2023, but does not offer up information on how many journeys were cancelled.", - "contentSnippet": "'Year in Trains', which emulates Spotify Wrapped, reveals to Trainline customers their most visited railway stations in 2023, but does not offer up information on how many journeys were cancelled.", - "guid": "https://www.dailymail.co.uk/news/article-12928261/Trainline-Wrapped-late-Rail-memes-trains.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T00:13:26.000Z" - }, - { - "title": "The Spice Girls set to become first female group to feature on an entire set of Royal Mail stamps to celebrate their 30th anniversary", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927463/The-Spice-Girls-feature-entire-set-Royal-Mail-stamps-celebrate-30th-anniversary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 00:10:39 GMT", - "enclosure": { - "length": "12068", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79627151-0-image-m-44_1704394039414.jpg" - }, - "content": "The Spice Girls have become the first female group to feature on a special stamp set issued by the Royal Mail .", - "contentSnippet": "The Spice Girls have become the first female group to feature on a special stamp set issued by the Royal Mail .", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927463/The-Spice-Girls-feature-entire-set-Royal-Mail-stamps-celebrate-30th-anniversary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T00:10:39.000Z" - }, - { - "title": "BBC Radio 1's Sound of 2024 winner revealed as panel including Olivia Rodrigo and Chase & Status award honour to band tipped for big things", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12926007/BBC-Radio-1-Sound-2024-winner-LastDinnerParty-Olivia-Rodrigo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 00:10:16 GMT", - "enclosure": { - "length": "4510", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610411-0-image-m-82_1704368661982.jpg" - }, - "content": "The winner of BBC Radio 1's Sound of 2024 has been announced. The group were chosen by a panel of over 140 industry experts and artists, including Olivia Rodrigo , Chase & Status and more.", - "contentSnippet": "The winner of BBC Radio 1's Sound of 2024 has been announced. The group were chosen by a panel of over 140 industry experts and artists, including Olivia Rodrigo , Chase & Status and more.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12926007/BBC-Radio-1-Sound-2024-winner-LastDinnerParty-Olivia-Rodrigo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T00:10:16.000Z" - }, - { - "title": "Shia LaBeouf is confirmed into Catholic Church and has said he wants 'to become a deacon'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928179/Shia-LaBeouf-confirmed-Catholic-Church-said-wants-deacon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 05 Jan 2024 00:00:12 GMT", - "enclosure": { - "length": "7272", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79637123-0-image-m-5_1704412793622.jpg" - }, - "content": "The Los Angeles native, who follows the path of a number of celebrities who have had religious awakenings in recent years.", - "contentSnippet": "The Los Angeles native, who follows the path of a number of celebrities who have had religious awakenings in recent years.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928179/Shia-LaBeouf-confirmed-Catholic-Church-said-wants-deacon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-05T00:00:12.000Z" - }, - { - "title": "Virginia town shuts down TikToker's tunnel building project: Viral star racked up millions of views excavating chamber 22ft below her own home", - "link": "https://www.dailymail.co.uk/news/article-12927747/virginia-town-shuts-tiktoker-kala-tunnel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 23:57:05 GMT", - "enclosure": { - "length": "6138", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/77834135-0-image-m-94_1704406104175.jpg" - }, - "content": "Social media star Kala, 37, was ordered to halt work on the construction of a storm shelter beneath her suburban home until she acquires the necessary permits.", - "contentSnippet": "Social media star Kala, 37, was ordered to halt work on the construction of a storm shelter beneath her suburban home until she acquires the necessary permits.", - "guid": "https://www.dailymail.co.uk/news/article-12927747/virginia-town-shuts-tiktoker-kala-tunnel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T23:57:05.000Z" - }, - { - "title": "Fossils of giant 'terror beast' worms that were top of the food chain 518 million years ago are discovered in North Greenland", - "link": "https://www.dailymail.co.uk/sciencetech/article-12927585/Giant-terror-beast-worm-Greenland-fossil.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 23:54:07 GMT", - "enclosure": { - "length": "7760", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79630555-0-image-m-19_1704403615314.jpg" - }, - "content": "The 1-ft-long worm, whose name Timorebestia means 'terror beasts' in Latin, was one of the largest animals prowling Earth's oceans during the Early Cambrian Period, scientists said", - "contentSnippet": "The 1-ft-long worm, whose name Timorebestia means 'terror beasts' in Latin, was one of the largest animals prowling Earth's oceans during the Early Cambrian Period, scientists said", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12927585/Giant-terror-beast-worm-Greenland-fossil.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T23:54:07.000Z" - }, - { - "title": "Jody Bunting: Police accused gay Big Breakfast fitness guru of 'trying to murder allergic woman boss with chocolate' because he fancied her", - "link": "https://www.dailymail.co.uk/news/article-12927393/big-breakfast-accused-jody-bunting-murder-chocolate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 23:22:01 GMT", - "enclosure": { - "length": "7992", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631595-0-image-m-22_1704403622769.jpg" - }, - "content": "EXCLUSIVE: Jody, 45, insisted that he had innocently left the half-eaten bar of Cadbury Dairy Milk Fruit and Nut in a storeroom at the health club for his colleagues to tuck into as a treat.", - "contentSnippet": "EXCLUSIVE: Jody, 45, insisted that he had innocently left the half-eaten bar of Cadbury Dairy Milk Fruit and Nut in a storeroom at the health club for his colleagues to tuck into as a treat.", - "guid": "https://www.dailymail.co.uk/news/article-12927393/big-breakfast-accused-jody-bunting-murder-chocolate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T23:22:01.000Z" - }, - { - "title": "Hundreds sign petition against town's \u00a3250,000 Spanish-style plaza which has sparked a chaotic one-way system for bin lorries and tourist traffic", - "link": "https://www.dailymail.co.uk/news/article-12927669/residents-sign-petition-against-Spanish-style-plaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 23:20:27 GMT", - "enclosure": { - "length": "10250", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79629437-0-image-m-41_1704399691091.jpg" - }, - "content": "A stretch along the seafront of Herne Bay in Kent has recently been shut off to cars as a result of the area's pedestrianisation scheme.", - "contentSnippet": "A stretch along the seafront of Herne Bay in Kent has recently been shut off to cars as a result of the area's pedestrianisation scheme.", - "guid": "https://www.dailymail.co.uk/news/article-12927669/residents-sign-petition-against-Spanish-style-plaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T23:20:27.000Z" - }, - { - "title": "QUENTIN LETTS watches Keir Starmer's New Year speech: 'He was like a hippo waddling into the swamp for its morning sit-down. Blimey it was dire'", - "link": "https://www.dailymail.co.uk/debate/article-12928149/QUENTIN-LETTS-watches-Keir-Starmers-New-Year-speech-like-hippo-waddling-swamp-morning-sit-Blimey-dire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 23:05:35 GMT", - "enclosure": { - "length": "9646", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634503-0-image-m-36_1704408231707.jpg" - }, - "content": "QUENTIN LETTS: On the eleventh day of Christmas, my true love said to me: 'Sir Keir Starmer's giving a speech in Bristol - is he always this demoralising?'", - "contentSnippet": "QUENTIN LETTS: On the eleventh day of Christmas, my true love said to me: 'Sir Keir Starmer's giving a speech in Bristol - is he always this demoralising?'", - "guid": "https://www.dailymail.co.uk/debate/article-12928149/QUENTIN-LETTS-watches-Keir-Starmers-New-Year-speech-like-hippo-waddling-swamp-morning-sit-Blimey-dire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T23:05:35.000Z" - }, - { - "title": "JAN MOIR: Every day that ex-Post Office boss Paula Vennells holds on to her CBE is an affront to the victims who suffered so much on her watch", - "link": "https://www.dailymail.co.uk/debate/article-12928203/JAN-MOIR-day-ex-Post-Office-boss-Paula-Vennells-holds-CBE-affront-victims-suffered-watch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 22:59:07 GMT", - "enclosure": { - "length": "11173", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633973-0-image-a-58_1704407031862.jpg" - }, - "content": "JAN MOIR: Yet how could Paula Vennells square her godly conscience with her award for services to the Post Office in light of the scandal of the Post Office workers.", - "contentSnippet": "JAN MOIR: Yet how could Paula Vennells square her godly conscience with her award for services to the Post Office in light of the scandal of the Post Office workers.", - "guid": "https://www.dailymail.co.uk/debate/article-12928203/JAN-MOIR-day-ex-Post-Office-boss-Paula-Vennells-holds-CBE-affront-victims-suffered-watch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T22:59:07.000Z" - }, - { - "title": "One Life review: Tired of bad news? Let one of life's good guys give you a lift, writes BRIAN VINER", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927767/One-Life-review-BRIAN-VINER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 22:58:13 GMT", - "enclosure": { - "length": "6232", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79635253-0-image-m-97_1704408683801.jpg" - }, - "content": "BRIAN VINER: One Life dramatises what in recent years has become a well-known tale, that of hundreds of Jewish children from Czechoslovakia who escaped the Holocaust.", - "contentSnippet": "BRIAN VINER: One Life dramatises what in recent years has become a well-known tale, that of hundreds of Jewish children from Czechoslovakia who escaped the Holocaust.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927767/One-Life-review-BRIAN-VINER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T22:58:13.000Z" - }, - { - "title": "MAUREEN CALLAHAN: Pitiful Prince Andrew, Sleazy Bill Clinton and the burning shame that will never end... until they find the courage to tell us what they REALLY know about Epstein's circus of depravity", - "link": "https://www.dailymail.co.uk/news/article-12927683/jeffery-epstein-prince-andrew-bill-clinton-maureen-callahan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 22:50:21 GMT", - "enclosure": { - "length": "9885", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633539-0-image-a-4_1704406852817.jpg" - }, - "content": "No wonder conspiracy theories abound as to Epstein's manner of death. Not one single person save Maxwell, have ever been called to account.", - "contentSnippet": "No wonder conspiracy theories abound as to Epstein's manner of death. Not one single person save Maxwell, have ever been called to account.", - "guid": "https://www.dailymail.co.uk/news/article-12927683/jeffery-epstein-prince-andrew-bill-clinton-maureen-callahan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T22:50:21.000Z" - }, - { - "title": "Did Charles Lindbergh sacrifice his son for science and then stage a monstrous cover-up? The kidnap and murder of the legendary aviator's child was dubbed the 'crime of the century' - but now this chilling question is being asked", - "link": "https://www.dailymail.co.uk/news/article-12928071/Did-Charles-Lindbergh-sacrifice-son-science-stage-monstrous-cover-kidnap-murder-legendary-aviators-child-dubbed-crime-century-chilling-question-asked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 22:48:47 GMT", - "enclosure": { - "length": "5354", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633271-0-image-m-76_1704405598003.jpg" - }, - "content": "Was that version of events wrong? Now, according to Lise Pearlman, a retired judge and celebrated author, the whole sorry tale might be one of the biggest ever miscarriages of justice.", - "contentSnippet": "Was that version of events wrong? Now, according to Lise Pearlman, a retired judge and celebrated author, the whole sorry tale might be one of the biggest ever miscarriages of justice.", - "guid": "https://www.dailymail.co.uk/news/article-12928071/Did-Charles-Lindbergh-sacrifice-son-science-stage-monstrous-cover-kidnap-murder-legendary-aviators-child-dubbed-crime-century-chilling-question-asked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T22:48:47.000Z" - }, - { - "title": "Mr Bates vs The Post Office viewers left in tears as 'heartbreaking'\u00a0final episode airs", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928113/Mr-Bates-vs-Post-Office-viewers-left-tears-heartbreaking-final-episode-airs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 22:44:18 GMT", - "enclosure": { - "length": "10157", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634561-0-image-a-61_1704407602636.jpg" - }, - "content": "The series follows the true story of hundreds of subpostmasters wrongly prosecuted for theft by the Post Office due to a faulty IT system.", - "contentSnippet": "The series follows the true story of hundreds of subpostmasters wrongly prosecuted for theft by the Post Office due to a faulty IT system.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928113/Mr-Bates-vs-Post-Office-viewers-left-tears-heartbreaking-final-episode-airs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T22:44:18.000Z" - }, - { - "title": "How paedophile Jeffrey Epstein's Caribbean paradise Little Saint James was debased as underage girls were trafficked to the island", - "link": "https://www.dailymail.co.uk/news/article-12928077/Jeffrey-Epsteins-Caribbean-paradise.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 22:36:36 GMT", - "enclosure": { - "length": "11801", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633719-0-image-m-55_1704406366060.jpg" - }, - "content": "With the help of his former lover and 'Madame' Ghislaine Maxwell , Jeffrey Epstein trafficked underage girls to the island, where he would rape and sexually assault them.", - "contentSnippet": "With the help of his former lover and 'Madame' Ghislaine Maxwell , Jeffrey Epstein trafficked underage girls to the island, where he would rape and sexually assault them.", - "guid": "https://www.dailymail.co.uk/news/article-12928077/Jeffrey-Epsteins-Caribbean-paradise.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T22:36:36.000Z" - }, - { - "title": "Expert advice on what to do in Storm Henk-style floods and the crucial error that could lead to tragedy", - "link": "https://www.dailymail.co.uk/news/article-12927271/Expert-advice-Storm-Henk-style-floods-crucial-error-lead-tragedy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 22:24:23 GMT", - "enclosure": { - "length": "5430", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79626241-0-image-a-21_1704393575508.jpg" - }, - "content": "Professor Hannah Cloke, a hydrologist at the University of Reading, warned against treating a flood as a 'swimming pool' or 'large puddle', pointing out risks such as falling trees.", - "contentSnippet": "Professor Hannah Cloke, a hydrologist at the University of Reading, warned against treating a flood as a 'swimming pool' or 'large puddle', pointing out risks such as falling trees.", - "guid": "https://www.dailymail.co.uk/news/article-12927271/Expert-advice-Storm-Henk-style-floods-crucial-error-lead-tragedy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T22:24:23.000Z" - }, - { - "title": "'I want everyone to know the b****** is gone': Father says he'll frame letter confirming killer who snatched his two-year-old daughter from her bed before murdering her has died in jail", - "link": "https://www.dailymail.co.uk/news/article-12927401/I-want-know-b-gone-Father-says-hell-frame-letter-confirming-killer-snatched-two-year-old-daughter-bed-murdering-died-jail.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 22:07:56 GMT", - "enclosure": { - "length": "10456", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79627209-0-image-a-15_1704394097152.jpg" - }, - "content": "Robert Astley, 68, of Sutton Coldfield,\u00a0was jailed for life with a minimum term of 20 years in 1983 after admitting to the murder of Denise Bradbury.", - "contentSnippet": "Robert Astley, 68, of Sutton Coldfield,\u00a0was jailed for life with a minimum term of 20 years in 1983 after admitting to the murder of Denise Bradbury.", - "guid": "https://www.dailymail.co.uk/news/article-12927401/I-want-know-b-gone-Father-says-hell-frame-letter-confirming-killer-snatched-two-year-old-daughter-bed-murdering-died-jail.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T22:07:56.000Z" - }, - { - "title": "The men who wash their towels just once a YEAR - As experts warn millions could be risking skin infections and other health issues because of poor towel hygiene", - "link": "https://www.dailymail.co.uk/health/article-12927965/men-wash-towels-year-warning-skin-infection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 22:05:57 GMT", - "enclosure": { - "length": "7149", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79632461-0-image-m-44_1704405087499.jpg" - }, - "content": "A survey of 2,200 UK residents reveals men are five times more likely than women to wash their towels once a year or less.", - "contentSnippet": "A survey of 2,200 UK residents reveals men are five times more likely than women to wash their towels once a year or less.", - "guid": "https://www.dailymail.co.uk/health/article-12927965/men-wash-towels-year-warning-skin-infection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T22:05:57.000Z" - }, - { - "title": "Rape-accused Sunderland star Jack Diamond tells jurors he refused sex with woman he met on Tinder which left her in a 'huff'", - "link": "https://www.dailymail.co.uk/news/article-12927307/Rape-accused-Sunderland-star-Jack-Diamond-tells-jurors-refused-sex-woman-met-Tinder-left-huff.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 21:56:53 GMT", - "enclosure": { - "length": "8101", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79624549-0-image-m-13_1704390472556.jpg" - }, - "content": "Jack Diamond, 23, is on trial charged with raping and sexually assaulting the woman at his home in Washington, Sunderland, in May 2022.", - "contentSnippet": "Jack Diamond, 23, is on trial charged with raping and sexually assaulting the woman at his home in Washington, Sunderland, in May 2022.", - "guid": "https://www.dailymail.co.uk/news/article-12927307/Rape-accused-Sunderland-star-Jack-Diamond-tells-jurors-refused-sex-woman-met-Tinder-left-huff.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T21:56:53.000Z" - }, - { - "title": "Princess Martha Louise of Norway's fianc\u00e9 Shaman Durek is slammed for saying suicidal people and naughty children are 'possessed by evil spirits'", - "link": "https://www.dailymail.co.uk/femail/article-12927757/Princess-Martha-Louise-Norways-fianc-Shaman-Durek-slammed-saying-suicidal-people-naughty-children-possessed-evil-spirits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 21:53:45 GMT", - "enclosure": { - "length": "11199", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630811-0-image-a-42_1704401644812.jpg" - }, - "content": "The US-born bisexual celebrity healer took to Instagram to share a video about the 'suicide spirit' in Shamanism.", - "contentSnippet": "The US-born bisexual celebrity healer took to Instagram to share a video about the 'suicide spirit' in Shamanism.", - "guid": "https://www.dailymail.co.uk/femail/article-12927757/Princess-Martha-Louise-Norways-fianc-Shaman-Durek-slammed-saying-suicidal-people-naughty-children-possessed-evil-spirits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T21:53:45.000Z" - }, - { - "title": "ALISON BOSHOFF: How chef Brooklyn Beckham plans to sell his hot sauce in the virtual world as his billionaire father-in-law Nelson Peltz reportedly advises him on building his culinary empire", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927625/ALISON-BOSHOFF-chef-Brooklyn-Beckham-plans-sell-hot-sauce-virtual-world-billionaire-father-law-Nelson-Peltz-reportedly-advises-building-culinary-empire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 21:40:50 GMT", - "enclosure": { - "length": "10279", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79629045-0-image-a-37_1704398180017.jpg" - }, - "content": "ALISON BOSHOFF: Brooklyn Beckham is in the advanced stages of planning the launch of his very own 'Brand Beckham' called Cloud 23 after the shirt his father David wore at Real Madrid.", - "contentSnippet": "ALISON BOSHOFF: Brooklyn Beckham is in the advanced stages of planning the launch of his very own 'Brand Beckham' called Cloud 23 after the shirt his father David wore at Real Madrid.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927625/ALISON-BOSHOFF-chef-Brooklyn-Beckham-plans-sell-hot-sauce-virtual-world-billionaire-father-law-Nelson-Peltz-reportedly-advises-building-culinary-empire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T21:40:50.000Z" - }, - { - "title": "Sandra Bullock releases late partner Bryan Randall's ashes in Wyoming on what would have been his 58th birthday - after tragic death from ALS battle", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927699/Sandra-Bullock-releases-late-partner-Bryan-Randalls-ashes-Wyoming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 21:32:35 GMT", - "enclosure": { - "length": "10803", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631123-0-image-a-36_1704402214038.jpg" - }, - "content": "Sandra Bullock has released her partner Bryan Randall's ashes in Wyoming, according to her sister Gesine Bullock-Prado, five months after his tragic death from private ALS battle.", - "contentSnippet": "Sandra Bullock has released her partner Bryan Randall's ashes in Wyoming, according to her sister Gesine Bullock-Prado, five months after his tragic death from private ALS battle.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927699/Sandra-Bullock-releases-late-partner-Bryan-Randalls-ashes-Wyoming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T21:32:35.000Z" - }, - { - "title": "Jerry Lee Lewis' former teen bride Myra Williams opens up about their marriage when she was just 13 that was so controversial it ruined his rock and roll career - before 'things went to hell quickly'", - "link": "https://www.dailymail.co.uk/news/article-12926925/jerry-lee-lewis-teen-wife-myra-williams-opens-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 21:21:49 GMT", - "enclosure": { - "length": "10642", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79629407-0-image-a-48_1704398810854.jpg" - }, - "content": "Myra Gale Brown, as she was then known, married Jerry Lee Lewis in December 1957 when she was just 13 - enraging her father JW Brown who was also Lewis' cousin.", - "contentSnippet": "Myra Gale Brown, as she was then known, married Jerry Lee Lewis in December 1957 when she was just 13 - enraging her father JW Brown who was also Lewis' cousin.", - "guid": "https://www.dailymail.co.uk/news/article-12926925/jerry-lee-lewis-teen-wife-myra-williams-opens-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T21:21:49.000Z" - }, - { - "title": "Keep calm and carry on watching: With their bottom-pinching and wolf-whistling, the classic series risks being cancelled today. But a new book argues it was the men, not the women, who were the butt of the jokes", - "link": "https://www.dailymail.co.uk/home/books/article-12927671/Keep-calm-carry-watching-bottom-pinching-wolf-whistling-classic-series-risks-cancelled-today-new-book-argues-men-not-women-butt-jokes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 04 Jan 2024 21:13:09 GMT", - "enclosure": { - "length": "11364", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631387-0-image-a-23_1704402723291.jpg" - }, - "content": "At serious risk of cancellation due to their bottom-pinching and wolf-whistling, the Carry On films are rather defended as social history in The Carry On Girls by Gemma and Robert Ross.", - "contentSnippet": "At serious risk of cancellation due to their bottom-pinching and wolf-whistling, the Carry On films are rather defended as social history in The Carry On Girls by Gemma and Robert Ross.", - "guid": "https://www.dailymail.co.uk/home/books/article-12927671/Keep-calm-carry-watching-bottom-pinching-wolf-whistling-classic-series-risks-cancelled-today-new-book-argues-men-not-women-butt-jokes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-04T21:13:09.000Z" - }, - { - "title": "Britain and US 'to carry out airstrikes against Iran-backed Houthi rebels in Yemen TONIGHT': Emergency meeting is called for UK ministers to sign off response after ships targeted in Red Sea", - "link": "https://www.dailymail.co.uk/news/article-12953065/emergency-cabinet-meeting-yemen-attacks-airstrikes-ministers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 21:13:51 GMT", - "enclosure": { - "length": "8247", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906831-0-image-a-25_1704999404665.jpg" - }, - "content": "The Prime Minister was due to meet his top team at 7.45pm this evening to discuss a response to ships being targeted in the Red Sea.", - "contentSnippet": "The Prime Minister was due to meet his top team at 7.45pm this evening to discuss a response to ships being targeted in the Red Sea.", - "guid": "https://www.dailymail.co.uk/news/article-12953065/emergency-cabinet-meeting-yemen-attacks-airstrikes-ministers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T21:13:51.000Z" - }, - { - "title": "Yemen airstrikes LIVE: Rishi Sunak calls emergency cabinet meeting to plan response to attacks from Houthi rebels", - "link": "https://www.dailymail.co.uk/news/live/article-12953241/Yemen-airstrikes-live-updates-emergency-cabinet-meeting-rishi-sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 21:12:19 GMT", - "enclosure": { - "length": "7081", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/20/79909405-0-image-m-12_1705004541642.jpg" - }, - "content": "Rishi Sunak calls emergency cabinet meeting to plan response to attacks from Houthi rebels", - "contentSnippet": "Rishi Sunak calls emergency cabinet meeting to plan response to attacks from Houthi rebels", - "guid": "https://www.dailymail.co.uk/news/live/article-12953241/Yemen-airstrikes-live-updates-emergency-cabinet-meeting-rishi-sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T21:12:19.000Z" - }, - { - "title": "Police probe 'dine and dashers' who 'fled without paying \u00a3425 bill': Italian restaurant posts images of four women who visited with eight children 'and gorged on oysters, roast beef and pasta'", - "link": "https://www.dailymail.co.uk/news/article-12952301/Dine-dash-Restaurant-pictures-women-refusing-pay-bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:53:39 GMT", - "enclosure": { - "length": "4676", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79901147-0-image-m-9_1704991273517.jpg" - }, - "content": "Italian restaurant La Bella Vista, in St Leonards-on-Sea, East Sussex, has pictured and shamed four women who they say dined-and-dashed with their eight children after refusing to pay a \u00a3400 bill.", - "contentSnippet": "Italian restaurant La Bella Vista, in St Leonards-on-Sea, East Sussex, has pictured and shamed four women who they say dined-and-dashed with their eight children after refusing to pay a \u00a3400 bill.", - "guid": "https://www.dailymail.co.uk/news/article-12952301/Dine-dash-Restaurant-pictures-women-refusing-pay-bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:53:39.000Z" - }, - { - "title": "Now GPs are threatening to strike! \u00a3110,000/year family doctors could organise industrial action ahead of general election later this year", - "link": "https://www.dailymail.co.uk/health/article-12952565/Now-GPs-threatening-strike-110-000-year-family-doctors-organise-industrial-action-ahead-general-election-later-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:52:37 GMT", - "enclosure": { - "length": "9728", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79842439-0-image-m-19_1704991790794.jpg" - }, - "content": "The British Medical Association said industrial action by family doctors could 'play out' into autumn and winter so MPs are forced to talk about it 'on the doorstep' during their election campaign.", - "contentSnippet": "The British Medical Association said industrial action by family doctors could 'play out' into autumn and winter so MPs are forced to talk about it 'on the doorstep' during their election campaign.", - "guid": "https://www.dailymail.co.uk/health/article-12952565/Now-GPs-threatening-strike-110-000-year-family-doctors-organise-industrial-action-ahead-general-election-later-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:52:37.000Z" - }, - { - "title": "Curb Your Enthusiasm final season trailer: Larry David goes out with a bang as he hilariously argues with Vince Vaughn, Sean Hayes and Dan Levy", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12953187/Curb-Enthusiasm-final-season-trailer-Larry-David-goes-bang-hilariously-argues-Vince-Vaughn-Sean-Hayes-Dan-Levy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:42:57 GMT", - "enclosure": { - "length": "10292", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79907795-0-image-m-74_1705001764827.jpg" - }, - "content": "Larry David is going out in style as the trailer for the final season of Curb Your Enthusiasm dropped on Thursday.\u00a0The 12th season of the HBO hit comedy will feature 10 episodes.", - "contentSnippet": "Larry David is going out in style as the trailer for the final season of Curb Your Enthusiasm dropped on Thursday.\u00a0The 12th season of the HBO hit comedy will feature 10 episodes.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12953187/Curb-Enthusiasm-final-season-trailer-Larry-David-goes-bang-hilariously-argues-Vince-Vaughn-Sean-Hayes-Dan-Levy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:42:57.000Z" - }, - { - "title": "Lauryn Goodman's rise to fame as her reality star sister's sidekick: How both had babies with top footballers within weeks of each other - before a 'bitter fallout' between the siblings amid THAT Kyle Walker paternity scandal", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12950907/Lauryn-Goodman-rise-fame-reality-star-sisters-sidekick-babies-footballers-weeks-bitter-fallout-siblings-amid-Kyle-Walker-paternity-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:35:41 GMT", - "enclosure": { - "length": "11485", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/13/79891933-0-image-m-76_1704979057370.jpg" - }, - "content": "Social media star Lauryn, 33, has dominated headlines of late, with married footballer Kyle Walker named as the\u00a0the father of her five-month-old daughter.", - "contentSnippet": "Social media star Lauryn, 33, has dominated headlines of late, with married footballer Kyle Walker named as the\u00a0the father of her five-month-old daughter.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12950907/Lauryn-Goodman-rise-fame-reality-star-sisters-sidekick-babies-footballers-weeks-bitter-fallout-siblings-amid-Kyle-Walker-paternity-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:35:41.000Z" - }, - { - "title": "Kyle Walker IS the father of Lauryn Goodman's 5-month-old daughter - after he was dumped by wife Annie Kilner and kicked out of their \u00a32.4million mansion", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12952905/kyle-walker-father-lauryn-goodman-daughter-annie-kilner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:34:33 GMT", - "enclosure": { - "length": "10877", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905613-0-image-a-15_1704997214215.jpg" - }, - "content": "The Manchester City defender, 33, has been rumoured to be the biological dad since the reality star gave birth to the tot in August, which she claimed to have welcomed with 'another footballer'.", - "contentSnippet": "The Manchester City defender, 33, has been rumoured to be the biological dad since the reality star gave birth to the tot in August, which she claimed to have welcomed with 'another footballer'.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12952905/kyle-walker-father-lauryn-goodman-daughter-annie-kilner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:34:33.000Z" - }, - { - "title": "Donald Trump launches into a tirade during closing arguments of fraud trial forcing judge - who finally caves and lets the former president speak - to order lawyers 'control your client!'", - "link": "https://www.dailymail.co.uk/news/article-12951909/Donald-Trump-court-closing-arguments-fraud-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:34:03 GMT", - "enclosure": { - "length": "6546", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79898583-0-image-m-20_1704990669525.jpg" - }, - "content": "Donald Trump was seen heading to New York Supreme Court on Thursday where closing arguments are set to begin.", - "contentSnippet": "Donald Trump was seen heading to New York Supreme Court on Thursday where closing arguments are set to begin.", - "guid": "https://www.dailymail.co.uk/news/article-12951909/Donald-Trump-court-closing-arguments-fraud-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:34:03.000Z" - }, - { - "title": "The future of sex toys: An ejaculation trainer, a new phone sex app for long distance intimacy and the first vibrator to use sound waves", - "link": "https://www.dailymail.co.uk/sciencetech/article-12952441/Sex-tech-CES-svakom-myhixel-handy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:33:35 GMT", - "enclosure": { - "length": "5369", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79907781-0-image-m-65_1705002189065.jpg" - }, - "content": "Sexual technology is not as prevalent at CES as it once was, but a few high-tech companies showed off their devices, with an emphasis on security, intimacy, and even medical treatment.", - "contentSnippet": "Sexual technology is not as prevalent at CES as it once was, but a few high-tech companies showed off their devices, with an emphasis on security, intimacy, and even medical treatment.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12952441/Sex-tech-CES-svakom-myhixel-handy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:33:35.000Z" - }, - { - "title": "Cash-strapped Conservative council paid 'anti-Tory' comedian Simon Harris \u00a3500,000 to 'engage' with the public online during the Covid pandemic", - "link": "https://www.dailymail.co.uk/news/article-12953095/conservative-council-anti-tory-simon-harris-comedian-covid-pandemic-public.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:33:18 GMT", - "enclosure": { - "length": "5830", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/20/79907019-0-image-a-30_1705004938541.jpg" - }, - "content": "Internet prankster Simon Harris was handed the huge sum of money to provide 'digital consultancy and delivery via social media channels' on behalf of Essex County Council.", - "contentSnippet": "Internet prankster Simon Harris was handed the huge sum of money to provide 'digital consultancy and delivery via social media channels' on behalf of Essex County Council.", - "guid": "https://www.dailymail.co.uk/news/article-12953095/conservative-council-anti-tory-simon-harris-comedian-covid-pandemic-public.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:33:18.000Z" - }, - { - "title": "Secret tunnels, a brawl with police and the fanatical Hasidic Jews devoted to their 'Messiah': Incredible story behind the viral videos that shocked the world as 'extremist' zealots staged their own Shawshank Redemption in reverse", - "link": "https://www.dailymail.co.uk/news/article-12952759/Secret-tunnels-brawl-police-fanatical-Hasidic-Jews-Messiah-Shawshank-Redemption.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:28:49 GMT", - "enclosure": { - "length": "5048", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905807-0-image-m-22_1704997530147.jpg" - }, - "content": "The leaders of the synagogue, which are the headquarters of the Chabad-Lubavitch movement in Crown Heights, Brooklyn, only discovered the tunnel in recent weeks.", - "contentSnippet": "The leaders of the synagogue, which are the headquarters of the Chabad-Lubavitch movement in Crown Heights, Brooklyn, only discovered the tunnel in recent weeks.", - "guid": "https://www.dailymail.co.uk/news/article-12952759/Secret-tunnels-brawl-police-fanatical-Hasidic-Jews-Messiah-Shawshank-Redemption.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:28:49.000Z" - }, - { - "title": "End of road for EVs? Hertz to sell 20,000 since customers don't like them - but could you get a good deal buying a cast-off Tesla for $18k?", - "link": "https://www.dailymail.co.uk/yourmoney/cars/article-12951939/hertz-sell-fleet-tesla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:26:48 GMT", - "enclosure": { - "length": "9893", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79899913-0-image-a-15_1704989897000.jpg" - }, - "content": "Car rental giant Hertz is selling 20,000 EVs - a third of its electric fleet - due to a lack of demand and expensive repair costs", - "contentSnippet": "Car rental giant Hertz is selling 20,000 EVs - a third of its electric fleet - due to a lack of demand and expensive repair costs", - "guid": "https://www.dailymail.co.uk/yourmoney/cars/article-12951939/hertz-sell-fleet-tesla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:26:48.000Z" - }, - { - "title": "Horoscope today: Daily guide to what the stars have in store for YOU - January 12, 2024", - "link": "https://www.dailymail.co.uk/femail/article-12953215/horoscope-today-daily-star-sign-january-12-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:11:42 GMT", - "enclosure": { - "length": "7817", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/20/79908815-0-image-a-31_1705003429545.jpg" - }, - "content": "OSCAR CAINER: Today's Mars /Jupiter link brings a reminder that spiritual exploration (rather than material expansion) provides the best return on our investments.", - "contentSnippet": "OSCAR CAINER: Today's Mars /Jupiter link brings a reminder that spiritual exploration (rather than material expansion) provides the best return on our investments.", - "guid": "https://www.dailymail.co.uk/femail/article-12953215/horoscope-today-daily-star-sign-january-12-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:11:42.000Z" - }, - { - "title": "Secondary school is forced to apologise after staff handed pupil a self-help leaflet recommending smoking a cigarette as a calming measure", - "link": "https://www.dailymail.co.uk/news/article-12952765/School-forced-apologise-handing-pupil-self-help-leaflet-recommending-smoking-cigarette-calming-measure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:07:28 GMT", - "enclosure": { - "length": "6440", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79903843-0-image-m-11_1704994986818.jpg" - }, - "content": "The flyer recommending the habit was handed out by a member of staff at Bartley Green School, on the southwest edge of Birmingham, it confirmed in an email to parents", - "contentSnippet": "The flyer recommending the habit was handed out by a member of staff at Bartley Green School, on the southwest edge of Birmingham, it confirmed in an email to parents", - "guid": "https://www.dailymail.co.uk/news/article-12952765/School-forced-apologise-handing-pupil-self-help-leaflet-recommending-smoking-cigarette-calming-measure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:07:28.000Z" - }, - { - "title": "Former Baywatch star is unrecognizable as she shows off impressive TATTOO sleeves during outing in LA... so, can YOU identify the former screen siren?", - "link": "https://www.dailymail.co.uk/femail/article-12952767/Ex-Baywatch-star-unrecognizable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:07:22 GMT", - "enclosure": { - "length": "11522", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905183-0-image-a-55_1704996528352.jpg" - }, - "content": "The now 54-year-old was spotted as she ran errands in Los Angeles on Wednesday. She\u00a0began by hauling multiple boxes on a hand truck before taking her dog for a walk.", - "contentSnippet": "The now 54-year-old was spotted as she ran errands in Los Angeles on Wednesday. She\u00a0began by hauling multiple boxes on a hand truck before taking her dog for a walk.", - "guid": "https://www.dailymail.co.uk/femail/article-12952767/Ex-Baywatch-star-unrecognizable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:07:22.000Z" - }, - { - "title": "Jeremy Allen White more than doubles salary to $750,000 per episode of The Bear after his raunchy Calvin Klein underwear campaign - but says being in the kitchen is scarier than wrestling in the Iron Claw", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12951833/Jeremy-Allen-White-salary-Bear-Calvin-Klein-underwear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:07:19 GMT", - "enclosure": { - "length": "10452", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79901517-0-image-a-4_1704991538856.jpg" - }, - "content": "Actor Jeremy Allen White will return as Carmen 'Carmy' Berzatto for a third season of acclaimed drama The Bear. He will start filming in Chicago at the end of February.", - "contentSnippet": "Actor Jeremy Allen White will return as Carmen 'Carmy' Berzatto for a third season of acclaimed drama The Bear. He will start filming in Chicago at the end of February.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12951833/Jeremy-Allen-White-salary-Bear-Calvin-Klein-underwear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:07:19.000Z" - }, - { - "title": "Police issue new pic of missing woman, 39, who was wearing long padded coat and hi-viz vest when she was last seen nearly three weeks ago", - "link": "https://www.dailymail.co.uk/news/article-12953077/Police-new-pic-missing-woman-wearing-long-padded-coat-hi-viz-vest-seen-nearly-three-weeks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:05:32 GMT", - "enclosure": { - "length": "3614", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79908219-0-image-m-28_1705002514463.jpg" - }, - "content": "Lucy Charles, 39, was last seen in Bangor-on-Dee, Wrexham at 5.34pm when she was captured on CCTV walking past the Royal Oak pub on December 22.", - "contentSnippet": "Lucy Charles, 39, was last seen in Bangor-on-Dee, Wrexham at 5.34pm when she was captured on CCTV walking past the Royal Oak pub on December 22.", - "guid": "https://www.dailymail.co.uk/news/article-12953077/Police-new-pic-missing-woman-wearing-long-padded-coat-hi-viz-vest-seen-nearly-three-weeks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:05:32.000Z" - }, - { - "title": "Touching moment Rob Burrow smiles as he's presented with his CBE by Prince William - alongside his beaming wife and daughters who said it was an 'honour' to meet a future King", - "link": "https://www.dailymail.co.uk/femail/article-12952033/Robs-little-Princesses-Rob-Burrows-adorable-daughters-practice-curtsies-Prince-William-visits-Headingley-Stadium-present-rugby-legend-CBE-raising-awareness-Motor-Neurone-Disease.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:00:44 GMT", - "enclosure": { - "length": "10437", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904057-0-image-a-61_1704994602265.jpg" - }, - "content": "The Prince of Wales presented Rob, 41, with the medal - still in its box - as he lauded the former athlete's legacy and efforts in campaigning.", - "contentSnippet": "The Prince of Wales presented Rob, 41, with the medal - still in its box - as he lauded the former athlete's legacy and efforts in campaigning.", - "guid": "https://www.dailymail.co.uk/femail/article-12952033/Robs-little-Princesses-Rob-Burrows-adorable-daughters-practice-curtsies-Prince-William-visits-Headingley-Stadium-present-rugby-legend-CBE-raising-awareness-Motor-Neurone-Disease.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:00:44.000Z" - }, - { - "title": "Armie Hammer's 'fianc\u00e9e' Marina Gris reveals couple has SPLIT, weeks after their 'engagement' and insists relationship was 'positive' and 'not reflective' of cannibalism and abuse allegations", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12952229/Armie-Hammer-fiancee-Marina-Gris-split-engagement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 20:00:25 GMT", - "enclosure": { - "length": "10203", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/15/79898281-0-image-a-42_1704988079645.jpg" - }, - "content": "Call Me By Your Name star Armie Hammer and his Kazakh beauty fianc\u00e9e have called off their marriage, she revealed Thursday in a message on Instagram.", - "contentSnippet": "Call Me By Your Name star Armie Hammer and his Kazakh beauty fianc\u00e9e have called off their marriage, she revealed Thursday in a message on Instagram.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12952229/Armie-Hammer-fiancee-Marina-Gris-split-engagement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T20:00:25.000Z" - }, - { - "title": "Architectural historian who starred in Channel 5 show is jailed for over two years after she had a 'microsleep' at the wheel and caused a pile-up which killed a husband and wife", - "link": "https://www.dailymail.co.uk/news/article-12952993/please-channel-5-historian-jailed-sleep-wheel-accident-killed-husband-wife.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:58:08 GMT", - "enclosure": { - "length": "8251", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79906869-0-image-m-32_1705002777212.jpg" - }, - "content": "Ellen Leslie, 55, an acclaimed heritage consultant and commentator, dozed off while driving her youngest son Theo, 21, home to London from Edinburgh .", - "contentSnippet": "Ellen Leslie, 55, an acclaimed heritage consultant and commentator, dozed off while driving her youngest son Theo, 21, home to London from Edinburgh .", - "guid": "https://www.dailymail.co.uk/news/article-12952993/please-channel-5-historian-jailed-sleep-wheel-accident-killed-husband-wife.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:58:08.000Z" - }, - { - "title": "Why not promote Beatrice and Eugenie to front-line royals, asks RICHARD EDEN? They've never put a foot wrong! But\u00a0it's time to STRIP troubled Prince Andrew and Prince Harry from the line of succession - for the good of the Monarchy...", - "link": "https://www.dailymail.co.uk/news/article-12950903/King-promote-Beatrice-STRIP-Andrew-Harry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:57:10 GMT", - "enclosure": { - "length": "10063", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/10/79887367-0-image-a-4_1704970212160.jpg" - }, - "content": "'It's been a difficult week for the Royal Family, with allegations of Prince Andrew's seedy past casting a shadow over his brother's reign,' writes Richard Eden.", - "contentSnippet": "'It's been a difficult week for the Royal Family, with allegations of Prince Andrew's seedy past casting a shadow over his brother's reign,' writes Richard Eden.", - "guid": "https://www.dailymail.co.uk/news/article-12950903/King-promote-Beatrice-STRIP-Andrew-Harry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:57:10.000Z" - }, - { - "title": "Spain's Prado Museum renames paintings to remove 'offensive' terms including 'dwarf' and 'deformed' after reviewing thousands of titles and descriptions to comply with disability laws", - "link": "https://www.dailymail.co.uk/news/article-12952819/Spains-Prado-Museum-renames-paintings-remove-offensive-terms-including-dwarf-deformed-reviewing-thousands-titles-descriptions-comply-disability-laws.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:56:19 GMT", - "enclosure": { - "length": "7457", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79907195-0-image-a-20_1705000632638.jpg" - }, - "content": "Workers at the Prado looked at nearly 27,000 descriptions of paintings on its website, and the signs that accompany 1,800 pieces of art as part of the review.", - "contentSnippet": "Workers at the Prado looked at nearly 27,000 descriptions of paintings on its website, and the signs that accompany 1,800 pieces of art as part of the review.", - "guid": "https://www.dailymail.co.uk/news/article-12952819/Spains-Prado-Museum-renames-paintings-remove-offensive-terms-including-dwarf-deformed-reviewing-thousands-titles-descriptions-comply-disability-laws.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:56:19.000Z" - }, - { - "title": "Penniless Ghislaine Maxwell is seeking to recoup MILLIONS from Jeffrey Epstein's estate - acting as her own lawyer a ndfiling legal briefs using a TYPEWRITER", - "link": "https://www.dailymail.co.uk/news/article-12951865/Jeffrey-Epstein-Ghislaine-Maxwell-typewriter-estate-lawsuit-prison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:50:32 GMT", - "enclosure": { - "length": "8997", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79902761-0-image-a-118_1704994804701.jpg" - }, - "content": "Ghislaine Maxwell is so broke she is now representing herself in court - and filing legal briefs on a typewriter from prison.", - "contentSnippet": "Ghislaine Maxwell is so broke she is now representing herself in court - and filing legal briefs on a typewriter from prison.", - "guid": "https://www.dailymail.co.uk/news/article-12951865/Jeffrey-Epstein-Ghislaine-Maxwell-typewriter-estate-lawsuit-prison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:50:32.000Z" - }, - { - "title": "Inside Kyle Walker and Annie Kilner's romance from 'love at first sight' to 'cheating' as model announces split and bombshell revelation he IS the father of Lauryn Goodman's 5-month old daughter", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12952707/Kyle-Walker-Annie-Kilners-romance-love-sight-cheating-rumours-model-announces-split-tumultuous-two-year-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:48:36 GMT", - "enclosure": { - "length": "10807", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905149-0-image-a-34_1704996434720.jpg" - }, - "content": "Here we take a look at their rocky romance - from 'love at first sight' to cheating rumours and bitter wars with Ex On The Beach star Lauryn Goodman.", - "contentSnippet": "Here we take a look at their rocky romance - from 'love at first sight' to cheating rumours and bitter wars with Ex On The Beach star Lauryn Goodman.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12952707/Kyle-Walker-Annie-Kilners-romance-love-sight-cheating-rumours-model-announces-split-tumultuous-two-year-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:48:36.000Z" - }, - { - "title": "Parents embrace Scandi trick of leaving babies outside to nap and opening bedroom windows as temperatures plummet, but cold therapy is nothing new - little ones were put in outdoor cages in the '40s", - "link": "https://www.dailymail.co.uk/femail/article-12951579/Parents-embrace-Scandi-trick-leaving-babies-outside-nap-opening-bedroom-windows-temperatures-plummet-cold-therapy-new-little-ones-outdoor-cages-40s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:46:39 GMT", - "enclosure": { - "length": "10507", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79899899-0-image-a-4_1704990054609.jpg" - }, - "content": "The technique is making waves through TikTok and Instagram as people from Britain and America embrace the idea of getting a better sleep by benefitting from the cold.", - "contentSnippet": "The technique is making waves through TikTok and Instagram as people from Britain and America embrace the idea of getting a better sleep by benefitting from the cold.", - "guid": "https://www.dailymail.co.uk/femail/article-12951579/Parents-embrace-Scandi-trick-leaving-babies-outside-nap-opening-bedroom-windows-temperatures-plummet-cold-therapy-new-little-ones-outdoor-cages-40s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:46:39.000Z" - }, - { - "title": "Sadio Mane's new wife, 18, is given a hero's welcome as she returns to her school, where she is still a student, and waves from a balcony to children chanting for her and her ex-Liverpool star husband, 31", - "link": "https://www.dailymail.co.uk/sport/football/article-12952897/Sadio-Mane-wife-18-returns-school-student-Liverpool-31.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:43:40 GMT", - "enclosure": { - "length": "9115", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906577-0-image-a-11_1704998751971.jpg" - }, - "content": "Mane married Tamba in an Islamic ceremony on January 7 in Keur Massar, a suburb in the capital city of Dakar, just six days before the start of the Africa Cup of Nations on January 13.", - "contentSnippet": "Mane married Tamba in an Islamic ceremony on January 7 in Keur Massar, a suburb in the capital city of Dakar, just six days before the start of the Africa Cup of Nations on January 13.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12952897/Sadio-Mane-wife-18-returns-school-student-Liverpool-31.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:43:40.000Z" - }, - { - "title": "ANOTHER Labour-run council verges on bankruptcy: Middlesbrough set to ask Government for emergency funding - following Birmingham, Woking and Nottingham", - "link": "https://www.dailymail.co.uk/news/article-12952427/ANOTHER-Labour-run-council-verges-bankruptcy-Middlesbrough-set-ask-Government-emergency-funding-following-Birmingham-Woking-Nottingham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:39:48 GMT", - "enclosure": { - "length": "11122", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79907695-0-image-m-41_1705001896259.jpg" - }, - "content": "If sufficient cash isn't provided Middlesbrough Council could become the 10th local authority since 2018 to issue a section 114 notice.", - "contentSnippet": "If sufficient cash isn't provided Middlesbrough Council could become the 10th local authority since 2018 to issue a section 114 notice.", - "guid": "https://www.dailymail.co.uk/news/article-12952427/ANOTHER-Labour-run-council-verges-bankruptcy-Middlesbrough-set-ask-Government-emergency-funding-following-Birmingham-Woking-Nottingham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:39:48.000Z" - }, - { - "title": "Prince William reveals Mike Tindall has apologised to him after revealing the future king's nickname is 'One Pint Willy'", - "link": "https://www.dailymail.co.uk/femail/article-12952343/Prince-William-Mike-Tindall-apologised-nickname.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:19:13 GMT", - "enclosure": { - "length": "10341", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904443-0-image-a-4_1704995253896.jpg" - }, - "content": "A laughing Prince William admitted today that Mike Tindall has apologised to him after revealing his nickname as 'One Pint Willy' in a podcast released in December.", - "contentSnippet": "A laughing Prince William admitted today that Mike Tindall has apologised to him after revealing his nickname as 'One Pint Willy' in a podcast released in December.", - "guid": "https://www.dailymail.co.uk/femail/article-12952343/Prince-William-Mike-Tindall-apologised-nickname.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:19:13.000Z" - }, - { - "title": "Ellie Goulding wraps up in black coat as she and husband Caspar Jopling enjoy date night at comedy club after relationship troubles", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12952657/Ellie-Goulding-wraps-black-coat-husband-Caspar-Jopling-enjoy-date-night-comedy-club-relationship-troubles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:12:32 GMT", - "enclosure": { - "length": "11075", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904349-0-image-a-29_1704995091016.jpg" - }, - "content": "The couple were seen enjoying a night out at Ricky Gervais ' comedy show in Leicester Square on Tuesday.", - "contentSnippet": "The couple were seen enjoying a night out at Ricky Gervais ' comedy show in Leicester Square on Tuesday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12952657/Ellie-Goulding-wraps-black-coat-husband-Caspar-Jopling-enjoy-date-night-comedy-club-relationship-troubles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:12:32.000Z" - }, - { - "title": "M&S is set to overtake Waitrose as Britain's middle-class shop of choice after food sales rise by 12.1% in the weeks before Christmas", - "link": "https://www.dailymail.co.uk/news/article-12952753/ms-waitrose-britain-middle-class-shop-choice-sales-christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:08:02 GMT", - "enclosure": { - "length": "8017", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906821-0-image-m-35_1704999397182.jpg" - }, - "content": "Sales of food at M&S were up 12.1 per cent in the crucial 12 weeks ahead of Christmas while the figure for Waitrose rose 3.6 per cent.", - "contentSnippet": "Sales of food at M&S were up 12.1 per cent in the crucial 12 weeks ahead of Christmas while the figure for Waitrose rose 3.6 per cent.", - "guid": "https://www.dailymail.co.uk/news/article-12952753/ms-waitrose-britain-middle-class-shop-choice-sales-christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:08:02.000Z" - }, - { - "title": "Has Annie Kilner pulled off the ultimate revenge on her cheating husband? After TWO kids with Lauryn Goodman, years of humiliation and mystery over \u00a32.5m house for his ex, is Kyle Walker's wife of two years now set for battle over \u00a327m fortune?", - "link": "https://www.dailymail.co.uk/news/article-12950603/kyle-walker-annie-kilner-lauryn-goodman-fortune.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:05:06 GMT", - "enclosure": { - "length": "10692", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/14/79893295-0-image-a-130_1704982913950.jpg" - }, - "content": "Annie had forgiven her husband many times for alleged infidelity during their relationship, which began when they were teenagers in Sheffield.", - "contentSnippet": "Annie had forgiven her husband many times for alleged infidelity during their relationship, which began when they were teenagers in Sheffield.", - "guid": "https://www.dailymail.co.uk/news/article-12950603/kyle-walker-annie-kilner-lauryn-goodman-fortune.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:05:06.000Z" - }, - { - "title": "Police launch probe as town's 'Pride' rainbow path is painted white by vandals three years after it was created to be 'inclusive and welcoming'", - "link": "https://www.dailymail.co.uk/news/article-12952777/police-probe-pride-rainbow-path-white-vandals-inclusive.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 19:02:30 GMT", - "enclosure": { - "length": "10791", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79903179-0-image-m-5_1704993903432.jpg" - }, - "content": "Part of the 62-metre Rainbow path in Goodland Gardens, Taunton, Somerset which was opened in 2021 was covered in white paint on Wednesday.", - "contentSnippet": "Part of the 62-metre Rainbow path in Goodland Gardens, Taunton, Somerset which was opened in 2021 was covered in white paint on Wednesday.", - "guid": "https://www.dailymail.co.uk/news/article-12952777/police-probe-pride-rainbow-path-white-vandals-inclusive.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T19:02:30.000Z" - }, - { - "title": "Afghan interpreter who helped frontline British soldiers faces 'death sentence' when he is sent back to the Taliban after UK 'cruelly' withdrew offer of sanctuary", - "link": "https://www.dailymail.co.uk/news/article-12952821/Afghan-interpreter-helped-frontline-British-soldiers-faces-death-sentence-sent-Taliban-UK-cruelly-withdrew-offer-sanctuary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:59:40 GMT", - "enclosure": { - "length": "7589", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906565-0-image-a-4_1704998665483.jpg" - }, - "content": "For more than two years Nasir (not his real name, which is protected by a court order) believed he was about to relocate to the UK after twice being told he was qualified for assistance", - "contentSnippet": "For more than two years Nasir (not his real name, which is protected by a court order) believed he was about to relocate to the UK after twice being told he was qualified for assistance", - "guid": "https://www.dailymail.co.uk/news/article-12952821/Afghan-interpreter-helped-frontline-British-soldiers-faces-death-sentence-sent-Taliban-UK-cruelly-withdrew-offer-sanctuary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:59:40.000Z" - }, - { - "title": "Experts reveal whether or not you should take off your 'outside clothes' after riding the train - if you want to avoid infections", - "link": "https://www.dailymail.co.uk/wellness-us/body/article-12951661/outside-clothes-shoes-train-infection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:54:19 GMT", - "enclosure": { - "length": "6996", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/13/79892743-0-image-m-3_1704980661163.jpg" - }, - "content": "TikTok videos with millions of views show people tossing clothes in the wash the minute they come indoors. But do experts think it's key to preventing infection?", - "contentSnippet": "TikTok videos with millions of views show people tossing clothes in the wash the minute they come indoors. But do experts think it's key to preventing infection?", - "guid": "https://www.dailymail.co.uk/wellness-us/body/article-12951661/outside-clothes-shoes-train-infection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:54:19.000Z" - }, - { - "title": "University of York to accept foreign students with lower grades after 'financial challenges' - but bar still remains high for British applicants!", - "link": "https://www.dailymail.co.uk/news/article-12952995/university-york-foreign-students-lower-grades.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:53:31 GMT", - "enclosure": { - "length": "7434", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906459-0-image-m-15_1704998677706.jpg" - }, - "content": "The Russell Group university in Yorkshire will now admit some overseas applicants that achieve the equivalent of BBC grades at A-level, or a 2:2 for postgraduate courses.", - "contentSnippet": "The Russell Group university in Yorkshire will now admit some overseas applicants that achieve the equivalent of BBC grades at A-level, or a 2:2 for postgraduate courses.", - "guid": "https://www.dailymail.co.uk/news/article-12952995/university-york-foreign-students-lower-grades.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:53:31.000Z" - }, - { - "title": "Shocking moment antisemite gives Nazi salute and shouts 'Heil Hitler' as he threatens Jewish man at Speakers' Corner in Hyde Park", - "link": "https://www.dailymail.co.uk/news/article-12952783/Antisemite-gives-Nazi-salute-shouts-Heil-Hitler-threatens-Jewish-man-Speakers-Corner-Hyde-Park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:53:24 GMT", - "enclosure": { - "length": "10872", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905425-0-image-m-14_1704997751504.jpg" - }, - "content": "WARNING GRAPHIC CONTENT: The incident in Hyde Park showed an antisemite raising his hand to salute and mimic Hitler's moustache with his finger within a crowd of people.", - "contentSnippet": "WARNING GRAPHIC CONTENT: The incident in Hyde Park showed an antisemite raising his hand to salute and mimic Hitler's moustache with his finger within a crowd of people.", - "guid": "https://www.dailymail.co.uk/news/article-12952783/Antisemite-gives-Nazi-salute-shouts-Heil-Hitler-threatens-Jewish-man-Speakers-Corner-Hyde-Park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:53:24.000Z" - }, - { - "title": "Marie Osmond, 64, never starves, enjoys desserts and exercises lightly as she maintains her figure after 50lb weight loss: 'I am thriving'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12931487/Marie-Osmond-64-never-starves-enjoys-desserts-exercises-lightly-maintains-figure-50lb-weight-loss-thriving.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:44:13 GMT", - "enclosure": { - "length": "10022", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/05/22/79676421-0-image-m-105_1704494793229.jpg" - }, - "content": "She is also still an ambassador with NutriSystem after almost 20 years. Last year she helped introduce a program for people over 50.", - "contentSnippet": "She is also still an ambassador with NutriSystem after almost 20 years. Last year she helped introduce a program for people over 50.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12931487/Marie-Osmond-64-never-starves-enjoys-desserts-exercises-lightly-maintains-figure-50lb-weight-loss-thriving.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:44:13.000Z" - }, - { - "title": "FAA warns 'this incident should not have happened and cannot happen again' as it launches probe into Boeing's killer 737-Max after door blew off in mid-air: Regulator accused of failing to keep tabs on aviation giant", - "link": "https://www.dailymail.co.uk/news/article-12952245/Boeing-737-Max-quality-manufacturing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:40:48 GMT", - "enclosure": { - "length": "7475", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79900549-0-image-a-39_1704991292848.jpg" - }, - "content": "Wall Street analyst Jason Gursky said the aircraft maker's struggles are partly caused by the workforce that replaced the veteran workers after the pandemic.", - "contentSnippet": "Wall Street analyst Jason Gursky said the aircraft maker's struggles are partly caused by the workforce that replaced the veteran workers after the pandemic.", - "guid": "https://www.dailymail.co.uk/news/article-12952245/Boeing-737-Max-quality-manufacturing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:40:48.000Z" - }, - { - "title": "So which IS safer, tap or bottled? Experts give their verdict after startling study found 240,000 cancer-causing nanoplastics in average liter of water in stores", - "link": "https://www.dailymail.co.uk/sciencetech/article-12948079/tap-bottled-water-safer-plastics-PFAS-contaminated.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:37:26 GMT", - "enclosure": { - "length": "10081", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/10/21/79857465-0-image-a-15_1704923073961.jpg" - }, - "content": "Americans' bottled water consumption has nearly doubled in recent years due to growing concerns about chemicals in tap water. But the debate about which is safer has been reignited.", - "contentSnippet": "Americans' bottled water consumption has nearly doubled in recent years due to growing concerns about chemicals in tap water. But the debate about which is safer has been reignited.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12948079/tap-bottled-water-safer-plastics-PFAS-contaminated.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:37:26.000Z" - }, - { - "title": "Where are the stars of the 2004 Mean Girls movie now? From Lindsay Lohan's WILD scandals and dramatic transformation to Lizzy Caplan's tragic romance with Matthew Perry, FEMAIL lifts the lid on rollercoaster lives of the cast as musical reboot premieres", - "link": "https://www.dailymail.co.uk/femail/article-12948089/original-mean-girls-cast-lindsay-lohan-lizzy-caplan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:35:25 GMT", - "enclosure": { - "length": "11845", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/10/21/79863873-0-image-a-152_1704922095226.jpg" - }, - "content": "As the world prepares for a new adaptation of the flick, FEMAIL uncovered what all the stars of the 2004 version are doing now - and revealed the many controversies the cast has faced.", - "contentSnippet": "As the world prepares for a new adaptation of the flick, FEMAIL uncovered what all the stars of the 2004 version are doing now - and revealed the many controversies the cast has faced.", - "guid": "https://www.dailymail.co.uk/femail/article-12948089/original-mean-girls-cast-lindsay-lohan-lizzy-caplan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:35:25.000Z" - }, - { - "title": "Swearing Imam, 72, who ran over and killed man, 49, lying in the middle of the road after hurling insults at those trying to warn him told police he thought body was 'a bin bag'", - "link": "https://www.dailymail.co.uk/news/article-12952681/Swearing-Imam-72-ran-killed-man-49-lying-middle-road-hurling-insults-trying-warn-told-police-thought-body-bin-bag.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:35:13 GMT", - "enclosure": { - "length": "5948", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905627-0-image-m-27_1704997354351.jpg" - }, - "content": "Qari Hazarvi Abassi, 72, was on his way to lead early morning prayers at the Abubakr Mosque in Southall, west London, when he hit Harvinder Singh, 49, on 4 May, 2021.", - "contentSnippet": "Qari Hazarvi Abassi, 72, was on his way to lead early morning prayers at the Abubakr Mosque in Southall, west London, when he hit Harvinder Singh, 49, on 4 May, 2021.", - "guid": "https://www.dailymail.co.uk/news/article-12952681/Swearing-Imam-72-ran-killed-man-49-lying-middle-road-hurling-insults-trying-warn-told-police-thought-body-bin-bag.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:35:13.000Z" - }, - { - "title": "Illegal Albanian immigrants are jailed for running \u00a32.1m cannabis factory in once-grand High Street department store", - "link": "https://www.dailymail.co.uk/news/article-12952559/Illegal-Albanian-immigrants-jailed-running-2-1m-cannabis-factory-High-Street-department-store.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:34:13 GMT", - "enclosure": { - "length": "8294", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905657-0-image-a-6_1704997279264.jpg" - }, - "content": "Illegal Albanian immigrants have been jailed for running a \u00a32.1million cannabis factory in a once-grand High Street department store.", - "contentSnippet": "Illegal Albanian immigrants have been jailed for running a \u00a32.1million cannabis factory in a once-grand High Street department store.", - "guid": "https://www.dailymail.co.uk/news/article-12952559/Illegal-Albanian-immigrants-jailed-running-2-1m-cannabis-factory-High-Street-department-store.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:34:13.000Z" - }, - { - "title": "I'm 26 and fell in love with my neighbor whos' nearly 60 - his adult daughters call me 'mom' even though they're a decade older than me", - "link": "https://www.dailymail.co.uk/femail/article-12950715/Fell-love-neighbour-33-years-older.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:34:12 GMT", - "enclosure": { - "length": "11154", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/10/79885929-0-image-a-19_1704967716627.jpg" - }, - "content": "Roxana Eubanks, 26, from Sacramento, California , wasn't looking for love when she nervously attended her apartment building's annual party for the first time, aged 21.", - "contentSnippet": "Roxana Eubanks, 26, from Sacramento, California , wasn't looking for love when she nervously attended her apartment building's annual party for the first time, aged 21.", - "guid": "https://www.dailymail.co.uk/femail/article-12950715/Fell-love-neighbour-33-years-older.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:34:12.000Z" - }, - { - "title": "Female prison officer caught on camera having sex with inmate in store cupboard at Category B men's prison is jailed for 16 months", - "link": "https://www.dailymail.co.uk/news/article-12952909/Female-prison-officer-caught-camera-having-sex-inmate-store-cupboard-Category-B-mens-prison-jailed-16-months.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:29:08 GMT", - "enclosure": { - "length": "7444", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905001-0-image-m-42_1704997376272.jpg" - }, - "content": "Twenty-five-year-old Shania Begum of Telford, Shropshire was found to have used the storeroom at HMP Birmingham for a number of inappropriate purposes during her employment.", - "contentSnippet": "Twenty-five-year-old Shania Begum of Telford, Shropshire was found to have used the storeroom at HMP Birmingham for a number of inappropriate purposes during her employment.", - "guid": "https://www.dailymail.co.uk/news/article-12952909/Female-prison-officer-caught-camera-having-sex-inmate-store-cupboard-Category-B-mens-prison-jailed-16-months.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:29:08.000Z" - }, - { - "title": "Rob Burrow's adorable daughters practice their curtsies while his son is seen sticking out his tongue and enjoying a lie down during royal visit from Prince William", - "link": "https://www.dailymail.co.uk/femail/article-12952861/Rob-Burrows-adorable-daughters-practice-curtsies-son-seen-sticking-tongue-enjoying-lie-royal-visit-Prince-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:27:37 GMT", - "enclosure": { - "length": "10259", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905429-0-image-a-10_1704996728664.jpg" - }, - "content": "While touring the stadium in Leeds, Rob told the Prince of Wales that his daughters had been practicing their curtsies ahead of the royal's arrival.", - "contentSnippet": "While touring the stadium in Leeds, Rob told the Prince of Wales that his daughters had been practicing their curtsies ahead of the royal's arrival.", - "guid": "https://www.dailymail.co.uk/femail/article-12952861/Rob-Burrows-adorable-daughters-practice-curtsies-son-seen-sticking-tongue-enjoying-lie-royal-visit-Prince-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:27:37.000Z" - }, - { - "title": "Mother-of-two blasts Evri delivery driver for smashing up jigsaw meant for her son when he hurled parcel across driveway like a frisbee - as it is claimed he 'was too busy chatting up the neighbours'", - "link": "https://www.dailymail.co.uk/news/article-12952247/Evri-delivery-driver-hurled-parcel-driveway-like-frisbee-busy-chatting-neighbours-mother-jigsaw-son-smashed-throw.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:24:23 GMT", - "enclosure": { - "length": "7304", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79850561-0-image-m-17_1704995742802.jpg" - }, - "content": "An Evri delivery driver who was filmed hurling a parcel across a driveway like a frisbee was 'too busy chatting up the neighbours', according to the mother who received the 'shattered' jigsaw.", - "contentSnippet": "An Evri delivery driver who was filmed hurling a parcel across a driveway like a frisbee was 'too busy chatting up the neighbours', according to the mother who received the 'shattered' jigsaw.", - "guid": "https://www.dailymail.co.uk/news/article-12952247/Evri-delivery-driver-hurled-parcel-driveway-like-frisbee-busy-chatting-neighbours-mother-jigsaw-son-smashed-throw.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:24:23.000Z" - }, - { - "title": "Now Fujitsu staff vote to strike over four per cent pay offer as firm battles Horizon computer scandal - saying Japanese counterparts have been offered 10 times more", - "link": "https://www.dailymail.co.uk/news/article-12952363/New-woe-Fujitsu-staff-vote-strike-four-cent-pay-offer-saying-Japanese-counterparts-offered-10-times-more.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:23:51 GMT", - "enclosure": { - "length": "9221", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79745589-0-image-m-16_1704996091610.jpg" - }, - "content": "About 300 members of the Public and Commercial Services union (PCS) working mainly for HM Revenue & Customs ( HMRC ) in Stratford-on-Avon and Telford will walk out next Wednesday.", - "contentSnippet": "About 300 members of the Public and Commercial Services union (PCS) working mainly for HM Revenue & Customs ( HMRC ) in Stratford-on-Avon and Telford will walk out next Wednesday.", - "guid": "https://www.dailymail.co.uk/news/article-12952363/New-woe-Fujitsu-staff-vote-strike-four-cent-pay-offer-saying-Japanese-counterparts-offered-10-times-more.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:23:51.000Z" - }, - { - "title": "Ex-mayoral candidate Zac Goldsmith is banned from driving for speeding in London four times in his VW Golf hybrid - including twice being caught above the limit in one of Sadiq Khan's 20mph zones", - "link": "https://www.dailymail.co.uk/news/article-12952387/Ex-environment-minister-Zac-Goldsmith-banned-driving-caught-speeding-London-four-times-one-year-VW-Golf-hybrid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:19:45 GMT", - "enclosure": { - "length": "7690", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79902259-0-image-m-11_1704992201684.jpg" - }, - "content": "Zac Goldsmith, 48, (pictured) was spotted in his black hybrid electric Volkswagen Golf breaking the speed limit between April and August last year.", - "contentSnippet": "Zac Goldsmith, 48, (pictured) was spotted in his black hybrid electric Volkswagen Golf breaking the speed limit between April and August last year.", - "guid": "https://www.dailymail.co.uk/news/article-12952387/Ex-environment-minister-Zac-Goldsmith-banned-driving-caught-speeding-London-four-times-one-year-VW-Golf-hybrid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:19:45.000Z" - }, - { - "title": "The end looms for Justin Trudeau: Canadian PM plummets in the polls as 70% disapprove of him while CBC warns he needs a new message and conservative rival gains momentum", - "link": "https://www.dailymail.co.uk/news/article-12952085/Justin-Trudeau-Canada-Liberal-Conservative-Pierre-Poilievre.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 18:01:48 GMT", - "enclosure": { - "length": "9901", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79901017-0-image-a-16_1704991945953.jpg" - }, - "content": "Justin Trudeau's ailing political popularity could spell trouble for the Liberal party in the next election as rival leader Pierre Poilievre picks up steam.", - "contentSnippet": "Justin Trudeau's ailing political popularity could spell trouble for the Liberal party in the next election as rival leader Pierre Poilievre picks up steam.", - "guid": "https://www.dailymail.co.uk/news/article-12952085/Justin-Trudeau-Canada-Liberal-Conservative-Pierre-Poilievre.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T18:01:48.000Z" - }, - { - "title": "Rishi shuns Davos again: Sunak dodges ski resort business schmooze-fest as he snubs the World Economic Forum for a second year in a row - but Jeremy Hunt and David Cameron are set to attend", - "link": "https://www.dailymail.co.uk/news/article-12952865/Rishi-shuns-Davos-Sunak-dodges-ski-resort-business-schmooze-fest-snubs-World-Economic-Forum-second-year-row-Jeremy-Hunt-David-Cameron-set-attend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:55:58 GMT", - "enclosure": { - "length": "4704", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904331-0-image-m-60_1704995077975.jpg" - }, - "content": "Downing Street tonight confirmed the Prime Minister will not be attending next week's World Economic Forum in Davos.", - "contentSnippet": "Downing Street tonight confirmed the Prime Minister will not be attending next week's World Economic Forum in Davos.", - "guid": "https://www.dailymail.co.uk/news/article-12952865/Rishi-shuns-Davos-Sunak-dodges-ski-resort-business-schmooze-fest-snubs-World-Economic-Forum-second-year-row-Jeremy-Hunt-David-Cameron-set-attend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:55:58.000Z" - }, - { - "title": "'Optical illusion' cycle lane dubbed Britain's most dangerous is no safer despite being repainted red, campaigners warn - after 100 were injured in first two years", - "link": "https://www.dailymail.co.uk/news/article-12952435/cycle-lane-no-safer-keynsham-somerset.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:49:30 GMT", - "enclosure": { - "length": "10021", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904001-0-image-a-9_1704995329842.jpg" - }, - "content": "Councillors say the route along a town high street creates an 'optical illusion' - with kerbs and white lines looking similar - and is still posing a danger almost two years after it was installed.", - "contentSnippet": "Councillors say the route along a town high street creates an 'optical illusion' - with kerbs and white lines looking similar - and is still posing a danger almost two years after it was installed.", - "guid": "https://www.dailymail.co.uk/news/article-12952435/cycle-lane-no-safer-keynsham-somerset.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:49:30.000Z" - }, - { - "title": "Exactly how much caffeine will wake you up - but not lead to a crash, and when to drink it, according to experts", - "link": "https://www.dailymail.co.uk/wellness-us/nutrition/article-12951983/caffeine-crash-energy-amount.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:46:58 GMT", - "enclosure": { - "length": "5283", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79900681-0-image-m-6_1704992830347.jpg" - }, - "content": "A lot of us need caffeine to survive the day, but too much can leave you tossing and turning at night and jittery during waking hours. The official recommendation is no more than 400 milligrams.", - "contentSnippet": "A lot of us need caffeine to survive the day, but too much can leave you tossing and turning at night and jittery during waking hours. The official recommendation is no more than 400 milligrams.", - "guid": "https://www.dailymail.co.uk/wellness-us/nutrition/article-12951983/caffeine-crash-energy-amount.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:46:58.000Z" - }, - { - "title": "The UK's favourite film locations revealed - and Harry Potter fans won't be surprised at what tops the ranking...", - "link": "https://www.dailymail.co.uk/travel/article-12841727/The-UKs-favourite-film-locations-revealed-Harry-Potter-fans-wont-surprised-tops-ranking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:45:05 GMT", - "enclosure": { - "length": "7309", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/12/11/09/78742377-0-image-a-13_1702286884325.jpg" - }, - "content": "The locations that make the list are connected to movies that include Notting Hill, The Holiday, Batman, This is England, and Bridget Jones's Diary.", - "contentSnippet": "The locations that make the list are connected to movies that include Notting Hill, The Holiday, Batman, This is England, and Bridget Jones's Diary.", - "guid": "https://www.dailymail.co.uk/travel/article-12841727/The-UKs-favourite-film-locations-revealed-Harry-Potter-fans-wont-surprised-tops-ranking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:45:05.000Z" - }, - { - "title": "Saudi Arabia unveils vision for 'ultra-luxury upside-down skyscraper' built INSIDE a 1,500ft mountain and accessed through an underground canal as part of trillion-pound plans for futuristic city NEOM", - "link": "https://www.dailymail.co.uk/news/article-12952183/Saudi-Arabia-unveils-vision-ultra-luxury-upside-skyscraper-built-INSIDE-1-500ft-mountain-accessed-underground-canal-trillion-pound-plans-futuristic-city-NEOM.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:43:58 GMT", - "enclosure": { - "length": "11085", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79899667-0-image-a-130_1704992407391.jpg" - }, - "content": "The new site, dubbed 'Aquellum' and billed as a 'luxury and experiential space offering guests a taste of futuristic living', looks like something out of a sci-fi video game", - "contentSnippet": "The new site, dubbed 'Aquellum' and billed as a 'luxury and experiential space offering guests a taste of futuristic living', looks like something out of a sci-fi video game", - "guid": "https://www.dailymail.co.uk/news/article-12952183/Saudi-Arabia-unveils-vision-ultra-luxury-upside-skyscraper-built-INSIDE-1-500ft-mountain-accessed-underground-canal-trillion-pound-plans-futuristic-city-NEOM.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:43:58.000Z" - }, - { - "title": "'Even my wife started doubting me': Frankie Dettori tells Piers Morgan how his partner of 27 years gave him a brutal ultimatum after he was banned from racing for taking cocaine and couldn't pay his family bills", - "link": "https://www.dailymail.co.uk/news/article-12952403/Even-wife-started-doubting-Frankie-Dettori-reveals-partner-27-years-delivered-startling-home-truths-cocaine-ban-meant-pay-family-bills.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:38:32 GMT", - "enclosure": { - "length": "11033", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79901385-0-image-a-46_1704991852702.jpg" - }, - "content": "Frankie Dettori has told how his partner of 27 years slammed him with home truths during his cocaine ban from horse racing over a decade ago.", - "contentSnippet": "Frankie Dettori has told how his partner of 27 years slammed him with home truths during his cocaine ban from horse racing over a decade ago.", - "guid": "https://www.dailymail.co.uk/news/article-12952403/Even-wife-started-doubting-Frankie-Dettori-reveals-partner-27-years-delivered-startling-home-truths-cocaine-ban-meant-pay-family-bills.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:38:32.000Z" - }, - { - "title": "Terrifying moment gang of hooded thugs launch frenzied attack on man and woman in front of young child on yet another day in Lawless London - as cops hunt attackers", - "link": "https://www.dailymail.co.uk/news/article-12951911/Moment-gang-hooded-thugs-pounce-group-three-including-young-child-mugging-day-Lawless-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:37:10 GMT", - "enclosure": { - "length": "5682", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/15/79896183-0-image-m-71_1704986079775.jpg" - }, - "content": "A teenage girl, a small child and a man were innocently walking along Halfway Street in Sidcup, south-east London just after 5pm yesterday when they were set upon by three thugs.", - "contentSnippet": "A teenage girl, a small child and a man were innocently walking along Halfway Street in Sidcup, south-east London just after 5pm yesterday when they were set upon by three thugs.", - "guid": "https://www.dailymail.co.uk/news/article-12951911/Moment-gang-hooded-thugs-pounce-group-three-including-young-child-mugging-day-Lawless-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:37:10.000Z" - }, - { - "title": "Not a 'Friend' - but a fraud: Matthew Perry violently assaulted women... while posing as a paragon of virtue. Now MAUREEN CALLAHAN demands: how much longer can Hollywood give him the halo treatment?", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12949069/Matthew-Perry-fraud-violently-assaulted-women-MAUREEN-CALLAHAN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:35:00 GMT", - "enclosure": { - "length": "7732", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/14/79893435-0-image-m-23_1704981900667.jpg" - }, - "content": "Matthew Perry's greatest performance wasn't on 'Friends'. It was as a newly sober good guy who wanted to help others get clean. He sold the world a pack of lies...", - "contentSnippet": "Matthew Perry's greatest performance wasn't on 'Friends'. It was as a newly sober good guy who wanted to help others get clean. He sold the world a pack of lies...", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12949069/Matthew-Perry-fraud-violently-assaulted-women-MAUREEN-CALLAHAN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:35:00.000Z" - }, - { - "title": "Pictured: Sven Goran Eriksson's ex-lover Ulrika Jonsson looks downcast in first sighting since former England boss revealed he has terminal cancer with 'at best a year to live'", - "link": "https://www.dailymail.co.uk/news/article-12952017/ulrika-jonsson-looks-downcast-sighting-sven-goran-eriksson-terminal-cancer-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:33:16 GMT", - "enclosure": { - "length": "10113", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/15/79897879-0-image-a-44_1704987336584.jpg" - }, - "content": "Ulrika Jonsson looked sombre as she was seen out in public for the first time since her former lover Sven-Goran Eriksson revealed today he was dying of terminal cancer.", - "contentSnippet": "Ulrika Jonsson looked sombre as she was seen out in public for the first time since her former lover Sven-Goran Eriksson revealed today he was dying of terminal cancer.", - "guid": "https://www.dailymail.co.uk/news/article-12952017/ulrika-jonsson-looks-downcast-sighting-sven-goran-eriksson-terminal-cancer-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:33:16.000Z" - }, - { - "title": "Jeff Bezos' fianc\u00e9 Lauren Sanchez will be honoured with her own 'Living Legends of Aviation' award at glitzy bash where Prince Harry is getting inducted - the latest famous pilots to be feted including Harrison Ford and Tom Cruise", - "link": "https://www.dailymail.co.uk/news/article-12952169/lauren-sanchez-living-legends-aviation-honour-prince-harry-induction-glitzy-bash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:33:05 GMT", - "enclosure": { - "length": "11761", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79903937-0-image-a-9_1704994373348.jpg" - }, - "content": "The\u00a0Living Legends of Aviation is bestowing television anchor turned helicopter pilot Lauren Sanchez with its highest honor for vertical flight,\u00a0the Elling Halvorson Vertical Flight Hall of Fame Award.", - "contentSnippet": "The\u00a0Living Legends of Aviation is bestowing television anchor turned helicopter pilot Lauren Sanchez with its highest honor for vertical flight,\u00a0the Elling Halvorson Vertical Flight Hall of Fame Award.", - "guid": "https://www.dailymail.co.uk/news/article-12952169/lauren-sanchez-living-legends-aviation-honour-prince-harry-induction-glitzy-bash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:33:05.000Z" - }, - { - "title": "Revealed: Two electric buses caught fire in garage blaze two years before today's double decker blast - sparking fears Sadiq Khan's 1,000-strong fleet is at risk amid push to make all of London's buses 'zero-emission' by 2034", - "link": "https://www.dailymail.co.uk/news/article-12951853/London-electric-bus-fire-two-buses-Potters-Bar-Sadiq-Khan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:32:38 GMT", - "enclosure": { - "length": "10225", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/15/79896771-0-image-m-6_1704986471726.jpg" - }, - "content": "An Optare Metrodecker 1050 bus burst into flames in Wimbledon, South West London, during rush hour this morning while operating route 200 from Mitcham to Raynes Park.", - "contentSnippet": "An Optare Metrodecker 1050 bus burst into flames in Wimbledon, South West London, during rush hour this morning while operating route 200 from Mitcham to Raynes Park.", - "guid": "https://www.dailymail.co.uk/news/article-12951853/London-electric-bus-fire-two-buses-Potters-Bar-Sadiq-Khan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:32:38.000Z" - }, - { - "title": "Drug and drink-fuelled driver, 43, who tried to blame his girlfriend, 47, for horror crash with lorry which killed her before trying to flee the scene in a taxi weeps as he's jailed for 16 years", - "link": "https://www.dailymail.co.uk/news/article-12952385/Drug-drink-fuelled-driver-43-tried-blame-girlfriend-47-horror-crash-lorry-killed-trying-flee-scene-taxi-weeps-hes-jailed-16-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:28:31 GMT", - "enclosure": { - "length": "5295", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79903301-0-image-m-12_1704993733774.jpg" - }, - "content": "Kevin Marsh, 43, had taken cocaine and cannabis and drank gin before getting behind the wheel of a white Ford Fiesta on July 5 last year.", - "contentSnippet": "Kevin Marsh, 43, had taken cocaine and cannabis and drank gin before getting behind the wheel of a white Ford Fiesta on July 5 last year.", - "guid": "https://www.dailymail.co.uk/news/article-12952385/Drug-drink-fuelled-driver-43-tried-blame-girlfriend-47-horror-crash-lorry-killed-trying-flee-scene-taxi-weeps-hes-jailed-16-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:28:31.000Z" - }, - { - "title": "RICHARD LITTLEJOHN: Why is the BBC fawning over migrants given free bed and board, wifi and a bus into town?", - "link": "https://www.dailymail.co.uk/columnists/article-12952625/Richard-Littlejohn-BBC-migrants-Bibby-Stockholm-asylum-barge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:28:08 GMT", - "enclosure": { - "length": "8133", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79900647-0-image-a-8_1704994031231.jpg" - }, - "content": "RICHARD LITTLEJOHN: This is the BBC News. There now follows a partly political broadcast on behalf of asylum seekers.", - "contentSnippet": "RICHARD LITTLEJOHN: This is the BBC News. There now follows a partly political broadcast on behalf of asylum seekers.", - "guid": "https://www.dailymail.co.uk/columnists/article-12952625/Richard-Littlejohn-BBC-migrants-Bibby-Stockholm-asylum-barge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:28:08.000Z" - }, - { - "title": "I have been ridiculed for my gigantic \u00a342 'adult sippy cup'. But I'm gulping more water than ever. This is why I am a fully signed-up member of the Stanley Squad along with Adele, Victoria Beckham and Meghan", - "link": "https://www.dailymail.co.uk/femail/article-12951503/adult-sippy-cup-viral-review-Hollywood-stanley.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:23:09 GMT", - "enclosure": { - "length": "10569", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79900575-0-image-a-44_1704990478542.jpg" - }, - "content": "The latest craze among celebrities and on social media is not a designer bag. It's an almost comically gigantic 'adult sippy cup' insulated water tumbler", - "contentSnippet": "The latest craze among celebrities and on social media is not a designer bag. It's an almost comically gigantic 'adult sippy cup' insulated water tumbler", - "guid": "https://www.dailymail.co.uk/femail/article-12951503/adult-sippy-cup-viral-review-Hollywood-stanley.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:23:09.000Z" - }, - { - "title": "Calm before the storm? Covid rates peaked over Christmas amid arrival of highly-contagious 'Juno' strain - but experts warn of post-New Year wave as flu and norovirus continue to bite", - "link": "https://www.dailymail.co.uk/health/article-12951381/Calm-storm-Covid-rates-peaked-Christmas-amid-arrival-highly-contagious-Juno-strain-experts-warn-post-New-Year-wave-flu-norovirus-continue-bite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:12:31 GMT", - "enclosure": { - "length": "4215", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/14/79894815-0-image-m-10_1704983924919.jpg" - }, - "content": "A peak of one in 22 people across the country were infected with the virus on December 21, according to the UK Health Security Agency.", - "contentSnippet": "A peak of one in 22 people across the country were infected with the virus on December 21, according to the UK Health Security Agency.", - "guid": "https://www.dailymail.co.uk/health/article-12951381/Calm-storm-Covid-rates-peaked-Christmas-amid-arrival-highly-contagious-Juno-strain-experts-warn-post-New-Year-wave-flu-norovirus-continue-bite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:12:31.000Z" - }, - { - "title": "Post Office investigator 'who behaved like a Mafia gangster' was accused of 'disgusting behaviour' and having an 'unbearable attitude' as he interviewed sub-postmasters over claims of theft, Horizon scandal inquiry hears", - "link": "https://www.dailymail.co.uk/news/article-12952471/post-office-horizon-investigator-behaved-like-mafia-gangster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 17:11:42 GMT", - "enclosure": { - "length": "4961", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/11/79888677-0-image-m-10_1704972243913.jpg" - }, - "content": "Stephen Bradshaw has been employed at the Post Office since 1978 and\u00a0was involved in the criminal investigation of nine subpostmasters.", - "contentSnippet": "Stephen Bradshaw has been employed at the Post Office since 1978 and\u00a0was involved in the criminal investigation of nine subpostmasters.", - "guid": "https://www.dailymail.co.uk/news/article-12952471/post-office-horizon-investigator-behaved-like-mafia-gangster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T17:11:42.000Z" - }, - { - "title": "ROBERT JOBSON: Harry must be contemplating how it could have been so different. His family needs him, but he has gone AWOL. And it raises some important 'what ifs'...", - "link": "https://www.dailymail.co.uk/debate/article-12978251/ROBERT-JOBSON-Harry-contemplating-different-family-needs-gone-AWOL-raises-important-ifs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:25:20 GMT", - "enclosure": { - "length": "8521", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80171935-0-image-m-30_1705578623429.jpg" - }, - "content": "Rather than gazing at his navel or collecting pointless awards - lauded as a 'legend' of aviation - the royal formerly known as Prince could have been doing something useful for Crown and country.", - "contentSnippet": "Rather than gazing at his navel or collecting pointless awards - lauded as a 'legend' of aviation - the royal formerly known as Prince could have been doing something useful for Crown and country.", - "guid": "https://www.dailymail.co.uk/debate/article-12978251/ROBERT-JOBSON-Harry-contemplating-different-family-needs-gone-AWOL-raises-important-ifs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:25:20.000Z" - }, - { - "title": "Revealed: Children's 'healthy' fruit juices and snacks with MORE SUGAR than Fanta", - "link": "https://www.dailymail.co.uk/health/article-12978043/Childrens-healthy-fruit-juices-snacks-sugar-Fanta.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:24:15 GMT", - "enclosure": { - "length": "13141", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172651-0-image-a-40_1705578510621.jpg" - }, - "content": "Experts say many parents are still unaware of the sky-high levels of sugar found in supposedly healthy fruit-flavoured products, and even branded them 'liquid calories'", - "contentSnippet": "Experts say many parents are still unaware of the sky-high levels of sugar found in supposedly healthy fruit-flavoured products, and even branded them 'liquid calories'", - "guid": "https://www.dailymail.co.uk/health/article-12978043/Childrens-healthy-fruit-juices-snacks-sugar-Fanta.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:24:15.000Z" - }, - { - "title": "Doctor sparks social media row after suggesting Princess Kate would have been sent home within a day had she been treated on the NHS", - "link": "https://www.dailymail.co.uk/health/article-12977721/Doctor-sparks-social-media-row-Princess-Kate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:23:37 GMT", - "enclosure": { - "length": "8274", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80131905-0-image-m-25_1705572802999.jpg" - }, - "content": "Prolific X user @EmergMedDr, who has consistently backed NHS strike action to his tens of thousands of followers, was accused of trying to make a 'political point'.", - "contentSnippet": "Prolific X user @EmergMedDr, who has consistently backed NHS strike action to his tens of thousands of followers, was accused of trying to make a 'political point'.", - "guid": "https://www.dailymail.co.uk/health/article-12977721/Doctor-sparks-social-media-row-Princess-Kate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:23:37.000Z" - }, - { - "title": "How Sheryl Sandberg became the highest-ranking woman in the tech industry after joining Facebook when it was a start-up before racking up 14 years as COO following a stint in Clinton's White House", - "link": "https://www.dailymail.co.uk/news/article-12977733/sheryl-sandberg-career-meta-facebook-google.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:23:00 GMT", - "enclosure": { - "length": "7654", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168647-0-image-a-5_1705574010598.jpg" - }, - "content": "Where exactly did Sandberg study prior to her position at Meta and where else has she worked throughout her career? Here is everything you need to know about Sheryl Sandberg.", - "contentSnippet": "Where exactly did Sandberg study prior to her position at Meta and where else has she worked throughout her career? Here is everything you need to know about Sheryl Sandberg.", - "guid": "https://www.dailymail.co.uk/news/article-12977733/sheryl-sandberg-career-meta-facebook-google.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:23:00.000Z" - }, - { - "title": "I fell victim to the Pompeii 'curse': Tourist returns pumice stone stolen from ancient site with grovelling letter written in English revealing she has since been diagnosed with breast cancer", - "link": "https://www.dailymail.co.uk/news/article-12977669/I-fell-victim-Pompeii-curse-Tourist-returns-pumice-stone-stolen-ancient-site-grovelling-letter-written-English-revealing-diagnosed-breast-cancer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:22:13 GMT", - "enclosure": { - "length": "6830", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167489-0-image-m-12_1705571295129.jpg" - }, - "content": "The woman sent a package containing three small stones and a letter written in English saying she 'didn't know about the curse' of Pompeii when she stole the artefacts.", - "contentSnippet": "The woman sent a package containing three small stones and a letter written in English saying she 'didn't know about the curse' of Pompeii when she stole the artefacts.", - "guid": "https://www.dailymail.co.uk/news/article-12977669/I-fell-victim-Pompeii-curse-Tourist-returns-pumice-stone-stolen-ancient-site-grovelling-letter-written-English-revealing-diagnosed-breast-cancer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:22:13.000Z" - }, - { - "title": "'He loved to cuddle': Bronson Battersby's mother breaks down in tears remembering her tragic toddler who died of starvation hugging his father's leg - as landlady reveals the harrowing moment she found their bodies", - "link": "https://www.dailymail.co.uk/news/article-12978343/The-little-things-did-amazing-Heartbreaking-moment-Bronson-Battersbys-mother-breaks-tears-remembers-tragic-toddler-starved-cuddling-dead-fathers-leg.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:21:49 GMT", - "enclosure": { - "length": "4889", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172757-0-image-m-26_1705578631077.jpg" - }, - "content": "The two-year-old was found dead cuddling his father Kenneth's leg at their Skegness home earlier this month after the 60-year-old was believed to have suffered a heart attack around New Year.", - "contentSnippet": "The two-year-old was found dead cuddling his father Kenneth's leg at their Skegness home earlier this month after the 60-year-old was believed to have suffered a heart attack around New Year.", - "guid": "https://www.dailymail.co.uk/news/article-12978343/The-little-things-did-amazing-Heartbreaking-moment-Bronson-Battersbys-mother-breaks-tears-remembers-tragic-toddler-starved-cuddling-dead-fathers-leg.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:21:49.000Z" - }, - { - "title": "NANA AKUA: You can't win.\u00a0The black teacher who 'saw racism everywhere' - even when her colleagues' desperately tried to AVOID avoid being labelled a racist - sums up the tangle we are in", - "link": "https://www.dailymail.co.uk/debate/article-12978215/NANA-AKUA-win-black-teacher-saw-racism-colleagues-desperately-tried-AVOID-avoid-labelled-racist-sums-tangle-in.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:21:19 GMT", - "enclosure": { - "length": "4906", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172013-0-image-m-13_1705577608003.jpg" - }, - "content": "If ever there was a sorry tale for our times, it is the saga of Andrea Mairs.\nFor those unfamiliar with the story, Ms Mairs (right) is a black teacher who has won a discrimination claim after losing her job.", - "contentSnippet": "If ever there was a sorry tale for our times, it is the saga of Andrea Mairs.\nFor those unfamiliar with the story, Ms Mairs (right) is a black teacher who has won a discrimination claim after losing her job.", - "guid": "https://www.dailymail.co.uk/debate/article-12978215/NANA-AKUA-win-black-teacher-saw-racism-colleagues-desperately-tried-AVOID-avoid-labelled-racist-sums-tangle-in.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:21:19.000Z" - }, - { - "title": "Rishi Sunak warns House of Lords not to 'frustrate the will of the people' over Rwanda plan and says he CAN 'Stop the Boats' as he stages No10 relaunch to get back on track after seeing off damaging Tory revolt", - "link": "https://www.dailymail.co.uk/news/article-12977941/Rishi-Sunak-warns-House-Lords-not-frustrate-people-Rwanda-plan-says-Stop-Boats-stages-No10-relaunch-track-seeing-damaging-Tory-revolt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:20:52 GMT", - "enclosure": { - "length": "6068", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80169827-0-image-a-22_1705573230525.jpg" - }, - "content": "Rishi Sunak held a press conference in Downing Street this morning insisting he can 'Stop the Boats' after forcing the flagship legislation through the Commons.", - "contentSnippet": "Rishi Sunak held a press conference in Downing Street this morning insisting he can 'Stop the Boats' after forcing the flagship legislation through the Commons.", - "guid": "https://www.dailymail.co.uk/news/article-12977941/Rishi-Sunak-warns-House-Lords-not-frustrate-people-Rwanda-plan-says-Stop-Boats-stages-No10-relaunch-track-seeing-damaging-Tory-revolt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:20:52.000Z" - }, - { - "title": "Luxurious \u00a33m five-bed mansion complete with its own gym and views overlooking the Cotswolds plus \u00a3100,000 in cash could be yours in latest Omaze prize draw", - "link": "https://www.dailymail.co.uk/news/article-12977411/luxurious-omaze-mansion-cotswolds-prize-draw.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:20:41 GMT", - "enclosure": { - "length": "8608", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/07/80164563-0-image-a-6_1705563756657.jpg" - }, - "content": "The \u00a33million five-bedroom countryside retreat near Charlbury, in west Oxfordshire, comes with a third of an acre of landscaped gardens - and the winner will also pocket \u00a3100,000 in cash.", - "contentSnippet": "The \u00a33million five-bedroom countryside retreat near Charlbury, in west Oxfordshire, comes with a third of an acre of landscaped gardens - and the winner will also pocket \u00a3100,000 in cash.", - "guid": "https://www.dailymail.co.uk/news/article-12977411/luxurious-omaze-mansion-cotswolds-prize-draw.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:20:41.000Z" - }, - { - "title": "Princess Diana WOULD still have done a bombshell interview even if she hadn't been duped by disgraced BBC man Martin Bashir - but it might not have been so incendiary, royal writer Tina Brown claims", - "link": "https://www.dailymail.co.uk/news/article-12973257/Princess-Diana-Martin-Bashir-interview-Tina-Brown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:19:19 GMT", - "enclosure": { - "length": "10232", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/11/80125409-0-image-a-16_1705490524989.jpg" - }, - "content": "The late royal's TV interview with Bashir was watched by 23million people in 1995 and caused a worldwide media frenzy.", - "contentSnippet": "The late royal's TV interview with Bashir was watched by 23million people in 1995 and caused a worldwide media frenzy.", - "guid": "https://www.dailymail.co.uk/news/article-12973257/Princess-Diana-Martin-Bashir-interview-Tina-Brown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:19:19.000Z" - }, - { - "title": "Rare 1,000-year-old 'Viking sword' is discovered in near perfect condition on a river bed in Poland", - "link": "https://www.dailymail.co.uk/sciencetech/article-12977605/Rare-1-000-year-old-Viking-sword-discovered-near-perfect-condition-river-bed-Poland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:18:45 GMT", - "enclosure": { - "length": "7224", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166491-0-image-a-75_1705567324603.jpg" - }, - "content": "Workers carrying out work in the Wisla River in the city of Wroclawek came across the 'perfectly preserved' sword after spotting 'an oblong, metal object' sticking out of the sediment.", - "contentSnippet": "Workers carrying out work in the Wisla River in the city of Wroclawek came across the 'perfectly preserved' sword after spotting 'an oblong, metal object' sticking out of the sediment.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12977605/Rare-1-000-year-old-Viking-sword-discovered-near-perfect-condition-river-bed-Poland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:18:45.000Z" - }, - { - "title": "LIZ JONES: This feels personal\u2026 the news Kate is in hospital has hit me like a young member of my family has been struck down", - "link": "https://www.dailymail.co.uk/debate/article-12978349/LIZ-JONES-news-Kate-hospital-member-family-struck-down.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:15:35 GMT", - "enclosure": { - "length": "9362", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/12/80173259-0-image-m-14_1705579797623.jpg" - }, - "content": "Wasn't the Princess of Wales like a brightly flickering candle at Christmas when she hosted her annual carol concert at Westminster Abbey?", - "contentSnippet": "Wasn't the Princess of Wales like a brightly flickering candle at Christmas when she hosted her annual carol concert at Westminster Abbey?", - "guid": "https://www.dailymail.co.uk/debate/article-12978349/LIZ-JONES-news-Kate-hospital-member-family-struck-down.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:15:35.000Z" - }, - { - "title": "Michael Owen opens up on his son's incurable condition that has left him clinically blind and forced him to give up on football... as James, 17, admits people expected him to follow in his father's footsteps", - "link": "https://www.dailymail.co.uk/sport/football/article-12978245/Michael-Owen-sons-incurable-condition-clinically-blind-James-football-dreams.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:14:59 GMT", - "enclosure": { - "length": "9131", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172241-0-image-a-10_1705578677136.jpg" - }, - "content": "EXCLUSIVE INTERVIEW BY KATHRYN BATTE: James played the game during his childhood and showed signs of promise, but his dream of", - "contentSnippet": "EXCLUSIVE INTERVIEW BY KATHRYN BATTE: James played the game during his childhood and showed signs of promise, but his dream of", - "guid": "https://www.dailymail.co.uk/sport/football/article-12978245/Michael-Owen-sons-incurable-condition-clinically-blind-James-football-dreams.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:14:59.000Z" - }, - { - "title": "Can a slimmed down monarchy cope now THREE working royals are out of action? Princess Anne's warning has been 'proved right', royal experts say - and it shows how much Harry's decision to 'desert' family has rocked the Firm", - "link": "https://www.dailymail.co.uk/news/article-12977671/slimmed-monarchy-princess-anne-warning-proved-right.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:14:01 GMT", - "enclosure": { - "length": "7027", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/12/80172777-0-image-m-8_1705579778763.jpg" - }, - "content": "The Princess of Wales is in hospital after an abdominal operation, Prince William has taken time off to care for his family and King Charles has revealed he needs a procedure on his enlarged prostate.", - "contentSnippet": "The Princess of Wales is in hospital after an abdominal operation, Prince William has taken time off to care for his family and King Charles has revealed he needs a procedure on his enlarged prostate.", - "guid": "https://www.dailymail.co.uk/news/article-12977671/slimmed-monarchy-princess-anne-warning-proved-right.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:14:01.000Z" - }, - { - "title": "Thug, 50, slashed his stepson with a 15-inch machete and left him fearing he was going to bleed to death in bitter inheritance row", - "link": "https://www.dailymail.co.uk/news/article-12978017/Thug-50-slashed-stepson-15-inch-machete-left-fearing-going-bleed-death-bitter-inheritance-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:09:58 GMT", - "enclosure": { - "length": "5456", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80171367-0-image-m-70_1705579098242.jpg" - }, - "content": "Scott Bass, 29, needed seven staples in his head and had slices in his arm after Mark Kilpatrick, 50, repeatedly hacked him with a Gurkha-style military blade.", - "contentSnippet": "Scott Bass, 29, needed seven staples in his head and had slices in his arm after Mark Kilpatrick, 50, repeatedly hacked him with a Gurkha-style military blade.", - "guid": "https://www.dailymail.co.uk/news/article-12978017/Thug-50-slashed-stepson-15-inch-machete-left-fearing-going-bleed-death-bitter-inheritance-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:09:58.000Z" - }, - { - "title": "Kate Middleton's third day in hospital: Britain rallies round Princess of Wales as she recovers from abdominal surgery with her parents and William clearing diaries to support her - leaving three senior working royals out of action", - "link": "https://www.dailymail.co.uk/news/article-12977441/kate-middleton-day-london-clinic-hospital-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:06:37 GMT", - "enclosure": { - "length": "11312", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166753-0-image-a-14_1705567778550.jpg" - }, - "content": "The Princess of Wales is said to be 'doing well' as she recovers following the procedure at the London Clinic in Marylebone revealed on the same day King Charles announced he was taking a break.", - "contentSnippet": "The Princess of Wales is said to be 'doing well' as she recovers following the procedure at the London Clinic in Marylebone revealed on the same day King Charles announced he was taking a break.", - "guid": "https://www.dailymail.co.uk/news/article-12977441/kate-middleton-day-london-clinic-hospital-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:06:37.000Z" - }, - { - "title": "XL Bully owner spends her entire \u00a313,000 Postcode Lottery win trying in vain to save life of her poisoned pet", - "link": "https://www.dailymail.co.uk/news/article-12977761/xl-bully-owner-postcode-lottery-winnings-poisoned-dog.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:05:24 GMT", - "enclosure": { - "length": "9613", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172585-0-image-m-16_1705578229615.jpg" - }, - "content": "Anna-Marie Stevens, 51, spent the cash in a desperate attempt to save her nine-month-old puppy Paul after she suspected he ate\u00a0something poisonous during a walk in Essex.", - "contentSnippet": "Anna-Marie Stevens, 51, spent the cash in a desperate attempt to save her nine-month-old puppy Paul after she suspected he ate\u00a0something poisonous during a walk in Essex.", - "guid": "https://www.dailymail.co.uk/news/article-12977761/xl-bully-owner-postcode-lottery-winnings-poisoned-dog.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:05:24.000Z" - }, - { - "title": "GP wins three-year battle to force his millionaire neighbours to cut massive 26ft leylandii hedge which was so high it blocked out sunlight to his home amid simmering row that has turned idyllic village into a 'battlefield'", - "link": "https://www.dailymail.co.uk/news/article-12977711/GP-wins-battle-neighbours-massive-26ft-leylandii.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:04:10 GMT", - "enclosure": { - "length": "5401", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80169111-0-image-m-43_1705572457987.jpg" - }, - "content": "Dr Andrew Cross, 64, and his neighbours, property boss Mark Dyer and wife Clare, have clashed over the latter's 26ft leylandii hedge - which has turned the tiny Surrey hamlet of Brook into a 'battlefield'.", - "contentSnippet": "Dr Andrew Cross, 64, and his neighbours, property boss Mark Dyer and wife Clare, have clashed over the latter's 26ft leylandii hedge - which has turned the tiny Surrey hamlet of Brook into a 'battlefield'.", - "guid": "https://www.dailymail.co.uk/news/article-12977711/GP-wins-battle-neighbours-massive-26ft-leylandii.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:04:10.000Z" - }, - { - "title": "Sheryl Sandberg steps down from Meta board as Mark Zuckerberg thanks her for her 'extraordinary contributions'", - "link": "https://www.dailymail.co.uk/news/article-12977493/Sheryl-Sandberg-leaves-meta-board.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:02:57 GMT", - "enclosure": { - "length": "7798", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80165753-0-image-m-19_1705566066741.jpg" - }, - "content": "Meta 's former COO Sheryl Sandberg plans to step down from her position on the company's board of directors after her term ends in May, she said in a Facebook post on Wednesday.", - "contentSnippet": "Meta 's former COO Sheryl Sandberg plans to step down from her position on the company's board of directors after her term ends in May, she said in a Facebook post on Wednesday.", - "guid": "https://www.dailymail.co.uk/news/article-12977493/Sheryl-Sandberg-leaves-meta-board.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:02:57.000Z" - }, - { - "title": "Really, Sir Keir? Starmer insists he never believed Jeremy Corbyn would win a general election and only served in the left-winger's shadow cabinet because he felt 'responsible'", - "link": "https://www.dailymail.co.uk/news/article-12978179/Really-Sir-Keir-Starmer-insists-never-believed-Jeremy-Corbyn-win-general-election-served-left-wingers-shadow-cabinet-felt-responsible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:01:46 GMT", - "enclosure": { - "length": "4157", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80171601-0-image-m-31_1705576282735.jpg" - }, - "content": "In a new ITV programme, Sir Keir insisted he never thought Mr Corbyn had a chance of becoming prime minister in 2019.", - "contentSnippet": "In a new ITV programme, Sir Keir insisted he never thought Mr Corbyn had a chance of becoming prime minister in 2019.", - "guid": "https://www.dailymail.co.uk/news/article-12978179/Really-Sir-Keir-Starmer-insists-never-believed-Jeremy-Corbyn-win-general-election-served-left-wingers-shadow-cabinet-felt-responsible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:01:46.000Z" - }, - { - "title": "Final letter home from 'victim' of 'Frankenstein' killer: Mother reveals note written by her sailor son from HMS Illustrious before he vanished in 1986 - as police launch new search for his body amid fears he was murdered by serial killer", - "link": "https://www.dailymail.co.uk/news/article-12977621/final-letter-victim-frankenstein-killer-vanished.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 12:00:29 GMT", - "enclosure": { - "length": "6715", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80171137-0-image-m-38_1705575917905.jpg" - }, - "content": "Simon Parkes told his family the date he was due to arrive back in Portsmouth onboard the aircraft carrier\u00a0HMS Illustrious at the end of his maiden voyage.", - "contentSnippet": "Simon Parkes told his family the date he was due to arrive back in Portsmouth onboard the aircraft carrier\u00a0HMS Illustrious at the end of his maiden voyage.", - "guid": "https://www.dailymail.co.uk/news/article-12977621/final-letter-victim-frankenstein-killer-vanished.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T12:00:29.000Z" - }, - { - "title": "My breasts are so droopy I've never even let my boyfriend of six years see me without a bra on - I'm desperate for a reduction", - "link": "https://www.dailymail.co.uk/femail/article-12977597/woman-breast-reduction-boyfriend-never-seen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:59:22 GMT", - "enclosure": { - "length": "9552", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167675-0-image-a-4_1705569651411.jpg" - }, - "content": "Holly Norman, 23, from Swindon, Wiltshire, admitted she is 'too scared' to discover the real size of her breasts, which leave her with agonising back pain and painful rashes.", - "contentSnippet": "Holly Norman, 23, from Swindon, Wiltshire, admitted she is 'too scared' to discover the real size of her breasts, which leave her with agonising back pain and painful rashes.", - "guid": "https://www.dailymail.co.uk/femail/article-12977597/woman-breast-reduction-boyfriend-never-seen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:59:22.000Z" - }, - { - "title": "Inside the life of Hollywood's newest bad boy: Hunk Jeremy Allen White is a chain-smoking troubled former addict who's been through a messy divorce and must be breathalysed every time he sees his children", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12974303/Jeremy-Allen-White-Calvin-Klein-Emmy-Bear-alcoholic.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:58:18 GMT", - "enclosure": { - "length": "4258", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/15/79615127-0-image-m-24_1705506671398.jpg" - }, - "content": "With his tattooed biceps, artfully dishevelled hair and mournful, blue-eyed gaze, Carmen 'Carmy' Berzatto hardly needs to display his ability with a paring knife to show that chefs can be sexy.", - "contentSnippet": "With his tattooed biceps, artfully dishevelled hair and mournful, blue-eyed gaze, Carmen 'Carmy' Berzatto hardly needs to display his ability with a paring knife to show that chefs can be sexy.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12974303/Jeremy-Allen-White-Calvin-Klein-Emmy-Bear-alcoholic.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:58:18.000Z" - }, - { - "title": "I'm a motoring expert and this clever 'pump and flick' hack will open your frozen car doors and hoods in an instant", - "link": "https://www.dailymail.co.uk/femail/article-12977541/pump-flick-hack-opening-frozen-car-doors-hoods.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:57:19 GMT", - "enclosure": { - "length": "10513", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170513-0-image-a-1_1705574278859.jpg" - }, - "content": "US car expert, @RoadsideGenius took to TikTok to walk his followers through the method - step by step - so that freezing temperatures will not get into the way of their commute.", - "contentSnippet": "US car expert, @RoadsideGenius took to TikTok to walk his followers through the method - step by step - so that freezing temperatures will not get into the way of their commute.", - "guid": "https://www.dailymail.co.uk/femail/article-12977541/pump-flick-hack-opening-frozen-car-doors-hoods.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:57:19.000Z" - }, - { - "title": "Japanese knotweed stopped me getting a mortgage - even though it wasn't even growing on my property", - "link": "https://www.dailymail.co.uk/news/article-12977873/japanese-knotweed-stopped-mortgage-growing-property.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:56:30 GMT", - "enclosure": { - "length": "5125", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80170507-0-image-a-17_1705575956397.jpg" - }, - "content": "Property investor Lisa Best, 42, from Manchester, says she was once denied a mortgage due to a bizarre law relating to Japanese knotweed - even though it wasn't on her property.", - "contentSnippet": "Property investor Lisa Best, 42, from Manchester, says she was once denied a mortgage due to a bizarre law relating to Japanese knotweed - even though it wasn't on her property.", - "guid": "https://www.dailymail.co.uk/news/article-12977873/japanese-knotweed-stopped-mortgage-growing-property.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:56:30.000Z" - }, - { - "title": "The gentle giants killed by devastating Zimbabwe drought: Calfs lie dead after more than 160 elephants die as a result of devastating conditions - and it's feared more will follow", - "link": "https://www.dailymail.co.uk/news/article-12977971/Zimbabwe-drought-160-elephants-die.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:47:08 GMT", - "enclosure": { - "length": "8031", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80170567-0-image-a-18_1705576216799.jpg" - }, - "content": "Around 160 of the gentle giants perished in a matter of weeks in the country's Hwange national park, which did not experience a single drop of rain between February and November 2023.", - "contentSnippet": "Around 160 of the gentle giants perished in a matter of weeks in the country's Hwange national park, which did not experience a single drop of rain between February and November 2023.", - "guid": "https://www.dailymail.co.uk/news/article-12977971/Zimbabwe-drought-160-elephants-die.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:47:08.000Z" - }, - { - "title": "The next Captain Tom Moore? WW2 veteran, 100, completes 660-mile charity walk around his garden after being inspired by the record-breaking lockdown hero", - "link": "https://www.dailymail.co.uk/news/article-12977763/captain-tom-moore-inspired-world-war-two-veteran-charity-garden-walk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:45:39 GMT", - "enclosure": { - "length": "11100", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168431-0-image-m-19_1705573074736.jpg" - }, - "content": "Come rain or shine, WWII hero Lance Corporal Harold Jones (pictured), from Sutton Coldfield, West Midlands, has walked laps of his back garden 30 times a day, every day since 2020.", - "contentSnippet": "Come rain or shine, WWII hero Lance Corporal Harold Jones (pictured), from Sutton Coldfield, West Midlands, has walked laps of his back garden 30 times a day, every day since 2020.", - "guid": "https://www.dailymail.co.uk/news/article-12977763/captain-tom-moore-inspired-world-war-two-veteran-charity-garden-walk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:45:39.000Z" - }, - { - "title": "The 'Hot Houthi' Timothee Chalamet lookalike who says he's 'longing for martyrdom': As 19-year-old 'pirate' goes viral, how he has warned US and UK they face 'their end'... and hates his comparison to Wonka star", - "link": "https://www.dailymail.co.uk/news/article-12977753/Hot-Houthi-Timothee-Chalamet-lookalike-says-hes-longing-martyrdom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:43:55 GMT", - "enclosure": { - "length": "5933", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170485-0-image-m-30_1705574232109.jpg" - }, - "content": "Rashid Al Haddad - a 19-year-old from\u00a0Ibb Governorate in central Yemen - captured the attention of netizens this week by posting videos to social media of himself aboard the Galaxy Leader.", - "contentSnippet": "Rashid Al Haddad - a 19-year-old from\u00a0Ibb Governorate in central Yemen - captured the attention of netizens this week by posting videos to social media of himself aboard the Galaxy Leader.", - "guid": "https://www.dailymail.co.uk/news/article-12977753/Hot-Houthi-Timothee-Chalamet-lookalike-says-hes-longing-martyrdom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:43:55.000Z" - }, - { - "title": "Mother-of-three sacked from \u00a3124,000-a-year job after she rejected advances of boss who called her a 'naughty girl', praised her 'candy toes' and bought her a diamond ring wins \u00a3100,000 sex harassment payout", - "link": "https://www.dailymail.co.uk/news/article-12977617/Mother-three-sacked-job-rejected-advances-boss-called-naughty-girl-praised-candy-toes-sex-harassment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:41:52 GMT", - "enclosure": { - "length": "5525", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/76473385-0-image-m-7_1705571173728.jpg" - }, - "content": "Marc Bandemer (right), 59, made repeated advances towards Louise Crabtree (left), 49, over two years. A Southampton tribunal heard how he sent her messages, referring to her as his 'second wife'.", - "contentSnippet": "Marc Bandemer (right), 59, made repeated advances towards Louise Crabtree (left), 49, over two years. A Southampton tribunal heard how he sent her messages, referring to her as his 'second wife'.", - "guid": "https://www.dailymail.co.uk/news/article-12977617/Mother-three-sacked-job-rejected-advances-boss-called-naughty-girl-praised-candy-toes-sex-harassment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:41:52.000Z" - }, - { - "title": "'I only left my car running for a few minutes to de-ice it - and it was gone': Man whose \u00a38,000 Peugeot was stolen as he said goodbye to his wife believes he's victim of organised 'ice bandit' gang - after three more cars were taken nearby in a morning", - "link": "https://www.dailymail.co.uk/news/article-12974301/I-left-car-running-minutes-deice-gone-Man-8-000-Peugeot-stolen-said-goodbye-wife-believes-hes-victim-organised-ice-bandit-gang-three-cars-taken-nearby-morning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:38:09 GMT", - "enclosure": { - "length": "5362", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/16/80135389-0-image-m-30_1705508453965.jpg" - }, - "content": "Miles Key says he only left his vehicle running unattended to de-ice for a matter of minutes while he bid goodbye to his wife. His car was one of four stolen in Devon. A van was also reported stolen.", - "contentSnippet": "Miles Key says he only left his vehicle running unattended to de-ice for a matter of minutes while he bid goodbye to his wife. His car was one of four stolen in Devon. A van was also reported stolen.", - "guid": "https://www.dailymail.co.uk/news/article-12974301/I-left-car-running-minutes-deice-gone-Man-8-000-Peugeot-stolen-said-goodbye-wife-believes-hes-victim-organised-ice-bandit-gang-three-cars-taken-nearby-morning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:38:09.000Z" - }, - { - "title": "Kanye West flashes his shock new $850K titanium dentures while out with wife Bianca Censori and Chris Rock\u2026 after getting teeth REMOVED in 'Jaws' the Bond villain makeover", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12977069/Kanye-West-flashes-titanium-dentures-Bianca-Censori-Chris-Rock.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:37:18 GMT", - "enclosure": { - "length": "8204", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/04/80160881-0-image-m-2_1705551114533.jpg" - }, - "content": "Kanye West cut an imposing figure on Wednesday when he was spotted showing off his new titanium dentures while hanging out with Chris Rock and his wife Bianca Censori.", - "contentSnippet": "Kanye West cut an imposing figure on Wednesday when he was spotted showing off his new titanium dentures while hanging out with Chris Rock and his wife Bianca Censori.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12977069/Kanye-West-flashes-titanium-dentures-Bianca-Censori-Chris-Rock.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:37:18.000Z" - }, - { - "title": "Venture inside a 'monster' supermassive black hole: Incredible new image of M87 confirms the enormous void is 'active and feeding'", - "link": "https://www.dailymail.co.uk/sciencetech/article-12977777/Venture-inside-monster-supermassive-black-hole-Incredible-new-image-M87-confirms-enormous-void-active-feeding.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:35:10 GMT", - "enclosure": { - "length": "2131", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80169933-0-image-a-26_1705575826286.jpg" - }, - "content": "Scientists have revealed new images of a 'monster' black hole at the heart of the Messier 87 galaxy, providing the first confirmation that this mysterious object is real.", - "contentSnippet": "Scientists have revealed new images of a 'monster' black hole at the heart of the Messier 87 galaxy, providing the first confirmation that this mysterious object is real.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12977777/Venture-inside-monster-supermassive-black-hole-Incredible-new-image-M87-confirms-enormous-void-active-feeding.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:35:10.000Z" - }, - { - "title": "Emma Raducanu has to have her blood pressure checked during Australian Open defeat by Yafan Wang in three sets... as loss caps a dismal day for Brits with Jack Draper and Katie Boulter out too", - "link": "https://www.dailymail.co.uk/sport/tennis/article-12978081/Emma-Raducanu-Australian-Open-Jack-Draper-Katie-Boulter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:31:20 GMT", - "enclosure": { - "length": "10232", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170937-0-image-a-25_1705575383205.jpg" - }, - "content": "Raducanu, playing only her fourth match since returning from eight months out and three surgeries, had battled back strongly from a set and a break down to force a deciding set.", - "contentSnippet": "Raducanu, playing only her fourth match since returning from eight months out and three surgeries, had battled back strongly from a set and a break down to force a deciding set.", - "guid": "https://www.dailymail.co.uk/sport/tennis/article-12978081/Emma-Raducanu-Australian-Open-Jack-Draper-Katie-Boulter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:31:20.000Z" - }, - { - "title": "Fascinating map reveals the world's busiest international flight routes with\u00a0Kuala Lumpur to Singapore Changi No.1 and London Heathrow to JFK ranking eighth", - "link": "https://www.dailymail.co.uk/travel/article-12974037/Fascinating-map-reveals-worlds-busiest-international-flight-routes-Kuala-Lumpur-Singapore-Changi-No-1-London-JFK-ranking-eighth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:30:00 GMT", - "enclosure": { - "length": "8030", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/16/80132825-0-image-m-45_1705510182324.jpg" - }, - "content": "Flight data company OAG has revealed its busiest flight routes of 2023, produced by measuring the routes with the largest volume of scheduled airline seats in both directions.", - "contentSnippet": "Flight data company OAG has revealed its busiest flight routes of 2023, produced by measuring the routes with the largest volume of scheduled airline seats in both directions.", - "guid": "https://www.dailymail.co.uk/travel/article-12974037/Fascinating-map-reveals-worlds-busiest-international-flight-routes-Kuala-Lumpur-Singapore-Changi-No-1-London-JFK-ranking-eighth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:30:00.000Z" - }, - { - "title": "John Travolta was 'driving force' behind Prince Harry being named as a 'Living Legend of Aviation' after 'always feeling connection to Duke since dancing with Diana at the White House'", - "link": "https://www.dailymail.co.uk/news/article-12977667/John-Travolta-driving-force-Prince-Harry-named-Living-Legend-Aviation-feeling-connection-Duke-dancing-Diana-White-House.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:27:30 GMT", - "enclosure": { - "length": "6827", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168221-0-image-m-13_1705572549295.jpg" - }, - "content": "John Travolta was said to be one of the 'biggest supporters' of Prince Harry being honoured at tomorrow's event during a selection process among existing honourees and committee members.", - "contentSnippet": "John Travolta was said to be one of the 'biggest supporters' of Prince Harry being honoured at tomorrow's event during a selection process among existing honourees and committee members.", - "guid": "https://www.dailymail.co.uk/news/article-12977667/John-Travolta-driving-force-Prince-Harry-named-Living-Legend-Aviation-feeling-connection-Duke-dancing-Diana-White-House.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:27:30.000Z" - }, - { - "title": "Prison warden who got so high off fumes of drugs smoked by inmates that he was 'rushed to hospital after hallucinating and becoming aggressive' wins payout", - "link": "https://www.dailymail.co.uk/news/article-12977805/Prison-warden-got-high-fumes-drugs-smoked-inmates-rushed-hospital-hallucinating-aggressive-wins-payout.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:19:24 GMT", - "enclosure": { - "length": "5617", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80165803-0-image-m-17_1705570917512.jpg" - }, - "content": "A prison warden in Scotland who was rushed to hospital after inhaling drugs being smoked by inmates has won a payout.", - "contentSnippet": "A prison warden in Scotland who was rushed to hospital after inhaling drugs being smoked by inmates has won a payout.", - "guid": "https://www.dailymail.co.uk/news/article-12977805/Prison-warden-got-high-fumes-drugs-smoked-inmates-rushed-hospital-hallucinating-aggressive-wins-payout.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:19:24.000Z" - }, - { - "title": "Captain Tom Moore's daughter's company suffers \u00a3145,000 drop in assets over last financial year, accounts show amid questions of the family's handling of NHS hero's fundraising cash", - "link": "https://www.dailymail.co.uk/news/article-12977751/captain-tom-moore-daughter-hannah-company-massive-financial-drop.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:07:52 GMT", - "enclosure": { - "length": "6941", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170135-0-image-m-10_1705573787383.jpg" - }, - "content": "Club Nook Ltd was registered by Hannah Ingram-Moore in the UK in April 2020, less than two weeks before the Captain Tom Foundation was incorporated.", - "contentSnippet": "Club Nook Ltd was registered by Hannah Ingram-Moore in the UK in April 2020, less than two weeks before the Captain Tom Foundation was incorporated.", - "guid": "https://www.dailymail.co.uk/news/article-12977751/captain-tom-moore-daughter-hannah-company-massive-financial-drop.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:07:52.000Z" - }, - { - "title": "Woman forced to spend almost \u00a31,000 on private dental care when she fell down the stairs and busted her mouth - after she was not told she had been deregistered by her NHS dentist", - "link": "https://www.dailymail.co.uk/news/article-12977673/dentist-1000-pounds-stairs-mouth-deregistered-NHS-Manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:03:26 GMT", - "enclosure": { - "length": "4596", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168359-0-image-m-18_1705570797698.jpg" - }, - "content": "Mandy Lincoln had been going to the Mydentist practice in Cheadle, Greater Manchester, for more than ten years when the disastrous incident happened just before Christmas.", - "contentSnippet": "Mandy Lincoln had been going to the Mydentist practice in Cheadle, Greater Manchester, for more than ten years when the disastrous incident happened just before Christmas.", - "guid": "https://www.dailymail.co.uk/news/article-12977673/dentist-1000-pounds-stairs-mouth-deregistered-NHS-Manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:03:26.000Z" - }, - { - "title": "Science Museum reinstates trans inclusive display a year after controversial 'Boy or Girl' exhibit featuring fake penis and chest binders was removed following complaints", - "link": "https://www.dailymail.co.uk/news/article-12977557/Science-Museum-reinstates-trans-inclusive-display-year-controversial-Boy-Girl-exhibit-featuring-fake-penis-chest-binders-removed-following-complaints.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 11:01:45 GMT", - "enclosure": { - "length": "6400", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/66694789-0-The_controversial_sex_and_gender_gallery_describes_transitioning-a-29_1705568594718.jpg" - }, - "content": "The museum took down the display last year following complaints the gallery - which described transitioning from the 'wrong body' as a 'hero's journey' - was\u00a0propaganda rather than biology.", - "contentSnippet": "The museum took down the display last year following complaints the gallery - which described transitioning from the 'wrong body' as a 'hero's journey' - was\u00a0propaganda rather than biology.", - "guid": "https://www.dailymail.co.uk/news/article-12977557/Science-Museum-reinstates-trans-inclusive-display-year-controversial-Boy-Girl-exhibit-featuring-fake-penis-chest-binders-removed-following-complaints.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T11:01:45.000Z" - }, - { - "title": "Footage reveals dementia-stricken grandmother's shocking abuse at the hands of cruel carers after family hid Fool Me Once-style secret camera in a photo frame when they noticed bruises on her body", - "link": "https://www.dailymail.co.uk/news/article-12973977/Footage-dementia-stricken-grandmothers-shocking-abuse-cruel-carers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:59:46 GMT", - "enclosure": { - "length": "8081", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/17/80133627-0-image-a-76_1705511007665.jpg" - }, - "content": "DISTRESSING CONTENT: Danielle and Rebecca Hinsley unwittingly captured footage that 'broke their hearts' after concerns for their grandmother in a West Midlands care home.", - "contentSnippet": "DISTRESSING CONTENT: Danielle and Rebecca Hinsley unwittingly captured footage that 'broke their hearts' after concerns for their grandmother in a West Midlands care home.", - "guid": "https://www.dailymail.co.uk/news/article-12973977/Footage-dementia-stricken-grandmothers-shocking-abuse-cruel-carers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:59:46.000Z" - }, - { - "title": "Would you have a baby at 50? Mothers engage in furious debate as some claim it's 'selfish' and 'unimaginably bad' - but others insist there's no reason not to if you're fit and healthy", - "link": "https://www.dailymail.co.uk/femail/article-12973821/is-having-baby-50-old.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:57:46 GMT", - "enclosure": { - "length": "3346", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/15/80134833-0-image-a-86_1705505004411.jpg" - }, - "content": "Taking to British platform Mumsnet, a woman asked if others would consider becoming a parent at 50, assuming you can provide for the child financially and emotionally.", - "contentSnippet": "Taking to British platform Mumsnet, a woman asked if others would consider becoming a parent at 50, assuming you can provide for the child financially and emotionally.", - "guid": "https://www.dailymail.co.uk/femail/article-12973821/is-having-baby-50-old.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:57:46.000Z" - }, - { - "title": "Is it a Covid lab squeak? Mouse manages to escape hapless Chinese laboratory worker by clinging on to the back of her hazmat suit for ten minutes while she searches for the rodent", - "link": "https://www.dailymail.co.uk/news/article-12977757/Covid-lab-squeak-mouse-escape-Chinese-laboratory-worker-hazmat-suit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:53:59 GMT", - "enclosure": { - "length": "9323", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168659-0-image-m-20_1705574888670.jpg" - }, - "content": "Lab technician Tian Yongyi frantically searches for the mouse, even lying on the floor to look under cabinets as the clever rodent clings to her and scrambles over her back without her noticing.", - "contentSnippet": "Lab technician Tian Yongyi frantically searches for the mouse, even lying on the floor to look under cabinets as the clever rodent clings to her and scrambles over her back without her noticing.", - "guid": "https://www.dailymail.co.uk/news/article-12977757/Covid-lab-squeak-mouse-escape-Chinese-laboratory-worker-hazmat-suit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:53:59.000Z" - }, - { - "title": "Kate Middleton is in the best possible position to recover from surgery thanks to her healthy lifestyle of daily workouts,\u00a0 cold water swimming and drinking green juice", - "link": "https://www.dailymail.co.uk/femail/article-12977607/kate-middleton-abdominal-surgery-recovery-cold-water-swimming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:51:50 GMT", - "enclosure": { - "length": "11920", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170703-0-image-a-41_1705574803468.jpg" - }, - "content": "While the time to take to recover from abdominal surgery can vary massively, Kate, who is currently at the London Clinic in Marylebone, is likely to boucne back.", - "contentSnippet": "While the time to take to recover from abdominal surgery can vary massively, Kate, who is currently at the London Clinic in Marylebone, is likely to boucne back.", - "guid": "https://www.dailymail.co.uk/femail/article-12977607/kate-middleton-abdominal-surgery-recovery-cold-water-swimming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:51:50.000Z" - }, - { - "title": "Doctor, 57, who was once in charge of beauty and anti-ageing treatments for Champneys is struck off for having a relationship with a patient", - "link": "https://www.dailymail.co.uk/news/article-12977683/Doctor-charge-beauty-anti-ageing-treatments-Champneys-struck-having-relationship-patient.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:50:34 GMT", - "enclosure": { - "length": "5801", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168725-0-image-m-46_1705574967245.jpg" - }, - "content": "Family GP Dr Simon Berrisford, 57, illicitly began dating the woman after meeting her during a consultation and she later went on to work alongside him as a director of his practice.", - "contentSnippet": "Family GP Dr Simon Berrisford, 57, illicitly began dating the woman after meeting her during a consultation and she later went on to work alongside him as a director of his practice.", - "guid": "https://www.dailymail.co.uk/news/article-12977683/Doctor-charge-beauty-anti-ageing-treatments-Champneys-struck-having-relationship-patient.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:50:34.000Z" - }, - { - "title": "Bronson Battersby: Policing minister says 'questions need to be answered' as force refers itself to watchdog over death of toddler who was 'two inches too small' to open fridge full of leftovers that 'could have saved him'", - "link": "https://www.dailymail.co.uk/news/article-12977615/bronson-battersby-policing-minister-questions-watchdog-toddler-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:40:09 GMT", - "enclosure": { - "length": "6213", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168279-0-image-m-43_1705573521800.jpg" - }, - "content": "Chris Philp said it was vital that investigations uncover what happened after the 'heartbreaking tragedy' which saw the two-year-old found dead curled up at the knees of his father Kenneth.", - "contentSnippet": "Chris Philp said it was vital that investigations uncover what happened after the 'heartbreaking tragedy' which saw the two-year-old found dead curled up at the knees of his father Kenneth.", - "guid": "https://www.dailymail.co.uk/news/article-12977615/bronson-battersby-policing-minister-questions-watchdog-toddler-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:40:09.000Z" - }, - { - "title": "Labour and SNP accuse ex-minister Liam Fox of sexism after he brands female MP 'hysterical' for claiming Rwanda plan amounts to 'state sponsored human trafficking'", - "link": "https://www.dailymail.co.uk/news/article-12977849/Labour-SNP-accuse-ex-minister-Liam-Fox-sexism-brands-female-MP-hysterical-claiming-Rwanda-plan-amounts-state-sponsored-human-trafficking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:36:59 GMT", - "enclosure": { - "length": "4202", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168739-0-image-m-11_1705571569687.jpg" - }, - "content": "Dr Liam Fox was labelled a 'misogynist' by fellow MPs after he made the remark about the SNP 's Alison Thewliss.", - "contentSnippet": "Dr Liam Fox was labelled a 'misogynist' by fellow MPs after he made the remark about the SNP 's Alison Thewliss.", - "guid": "https://www.dailymail.co.uk/news/article-12977849/Labour-SNP-accuse-ex-minister-Liam-Fox-sexism-brands-female-MP-hysterical-claiming-Rwanda-plan-amounts-state-sponsored-human-trafficking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:36:59.000Z" - }, - { - "title": "Bizarre new TikTok weight loss hack... COTTAGE CHEESE (but the dietitians aren't convinced)", - "link": "https://www.dailymail.co.uk/wellness-uk/article-12969861/TikTok-weight-loss-cottage-cheese-cookie-dough.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:34:43 GMT", - "enclosure": { - "length": "8370", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/15/80134691-0-image-m-34_1705504503966.jpg" - }, - "content": "Videos claim you can eat cookie dough made from cottage cheese and protein powder 'every single day' still lose body fat. But Nutritionist Rob Hobson says this claim is 'unfounded'.", - "contentSnippet": "Videos claim you can eat cookie dough made from cottage cheese and protein powder 'every single day' still lose body fat. But Nutritionist Rob Hobson says this claim is 'unfounded'.", - "guid": "https://www.dailymail.co.uk/wellness-uk/article-12969861/TikTok-weight-loss-cottage-cheese-cookie-dough.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:34:43.000Z" - }, - { - "title": "A shower and a shave! Stephen Bear has already ditched his long hair and beard after prison guard said shamed reality star 'found God' behind bars - as he enjoys first day of freedom with pampering session and family insist he 'ain't hiding under no rock'", - "link": "https://www.dailymail.co.uk/news/article-12977653/A-shower-shave-Shamed-reality-TV-star-Stephen-Bear-chops-long-locks-just-hours-leaving-prison-celebrates-night-freedom-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:32:27 GMT", - "enclosure": { - "length": "5291", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166793-0-image-m-13_1705567933635.jpg" - }, - "content": "Stephen Bear appeared to have ditched his long locks, shaggy beard and rosary beads just hours after leaving prison in London on Wednesday looking unrecognisable.", - "contentSnippet": "Stephen Bear appeared to have ditched his long locks, shaggy beard and rosary beads just hours after leaving prison in London on Wednesday looking unrecognisable.", - "guid": "https://www.dailymail.co.uk/news/article-12977653/A-shower-shave-Shamed-reality-TV-star-Stephen-Bear-chops-long-locks-just-hours-leaving-prison-celebrates-night-freedom-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:32:27.000Z" - }, - { - "title": "Brooklyn Beckham hopes to bring home the bacon as Insta-cook launches pop-up restaurant specialising in his Nanny Peggy's English breakfast sandwiches", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12975325/Brooklyn-Beckham-hopes-bring-home-bacon-Insta-cook-launches-pop-restaurant-specialising-Nanny-Peggys-English-breakfast-sandwiches.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:30:17 GMT", - "enclosure": { - "length": "11240", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/19/80145251-0-image-a-23_1705520651765.jpg" - }, - "content": "Brooklyn, 24, has created a menu for his pop-up eatery which will offer five dishes inspired by his 'global upbringing'.", - "contentSnippet": "Brooklyn, 24, has created a menu for his pop-up eatery which will offer five dishes inspired by his 'global upbringing'.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12975325/Brooklyn-Beckham-hopes-bring-home-bacon-Insta-cook-launches-pop-restaurant-specialising-Nanny-Peggys-English-breakfast-sandwiches.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:30:17.000Z" - }, - { - "title": "Owner of Bobi 'the world's oldest dog' launches scathing attack on 'parasite' vets for 'discrediting' his late pet after Guinness World Records suspended the title and launched a review in to his age", - "link": "https://www.dailymail.co.uk/news/article-12977781/Bobi-world-oldest-dog-attack-parasite-vets-discrediting-late-pet-Guinness-World-Records-suspended-title-review-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:27:22 GMT", - "enclosure": { - "length": "5493", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80167945-0-image-m-18_1705572438466.jpg" - }, - "content": "Leonel Costa said industry people with a vested interest in selling 'processed' pet food had targeted him and his dog because he had extolled the virtues of human food for his four-legged friend.", - "contentSnippet": "Leonel Costa said industry people with a vested interest in selling 'processed' pet food had targeted him and his dog because he had extolled the virtues of human food for his four-legged friend.", - "guid": "https://www.dailymail.co.uk/news/article-12977781/Bobi-world-oldest-dog-attack-parasite-vets-discrediting-late-pet-Guinness-World-Records-suspended-title-review-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:27:22.000Z" - }, - { - "title": "Incredible moment US 'Bradley' destroys three Russian BMP-2 fighting vehicles as they try to flank Ukrainian soldiers defending a village - before reducing one of Putin's 'world-best' battle tanks to scrap", - "link": "https://www.dailymail.co.uk/news/article-12977603/Bradley-destroys-Russian-BMP2-T90-tank-Ukraine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:24:24 GMT", - "enclosure": { - "length": "7994", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167707-0-image-a-19_1705571104945.jpg" - }, - "content": "An incredible clip shared by Ukraine's 109th Separate Territorial Defence Brigade showed how the expertly piloted Bradley saved a troop of Kyiv 's soldiers from certain death", - "contentSnippet": "An incredible clip shared by Ukraine's 109th Separate Territorial Defence Brigade showed how the expertly piloted Bradley saved a troop of Kyiv 's soldiers from certain death", - "guid": "https://www.dailymail.co.uk/news/article-12977603/Bradley-destroys-Russian-BMP2-T90-tank-Ukraine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:24:24.000Z" - }, - { - "title": "The middle class mums 'flexi-schooling' their children: They go to extraordinary lengths to teach their children from home part-time... despite some teachers' fears that pupils will miss out on\u00a0 key lessons", - "link": "https://www.dailymail.co.uk/femail/article-12975099/Should-send-children-school-three-days-homeschool-two-Meet-middle-class-mothers-embracing-flexi-schooling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:19:37 GMT", - "enclosure": { - "length": "10780", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/18/80141941-0-image-a-31_1705514728651.jpg" - }, - "content": "Sara Sutherland is one of a growing number of parents 'flexi-schooling'. Part of the week her children attend school as normal, and for the rest they are schooled from home. Or - Spain.", - "contentSnippet": "Sara Sutherland is one of a growing number of parents 'flexi-schooling'. Part of the week her children attend school as normal, and for the rest they are schooled from home. Or - Spain.", - "guid": "https://www.dailymail.co.uk/femail/article-12975099/Should-send-children-school-three-days-homeschool-two-Meet-middle-class-mothers-embracing-flexi-schooling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:19:37.000Z" - }, - { - "title": "Kate Moss' pals share a behind the scenes look at her wild 50th birthday bash as 30 of her closest friends partied until the early hours in Paris", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12977523/Kate-Moss-pals-share-scenes-look-wild-50th-birthday-bash-30-closest-friends-partied-early-hours-Paris.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:13:54 GMT", - "enclosure": { - "length": "10291", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168297-0-image-m-34_1705570704262.jpg" - }, - "content": "Kate Moss' nearest and dearest showed up to celebrate her 50th birthday with a wild night out at the Laurent Restaurantin in Paris on Tuesday night.", - "contentSnippet": "Kate Moss' nearest and dearest showed up to celebrate her 50th birthday with a wild night out at the Laurent Restaurantin in Paris on Tuesday night.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12977523/Kate-Moss-pals-share-scenes-look-wild-50th-birthday-bash-30-closest-friends-partied-early-hours-Paris.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:13:54.000Z" - }, - { - "title": "Novak Djokovic pays tribute to legendary Mail Sport tennis correspondent Mike Dickson as the sport mourns the loss of 'Mr Wimbledon', who tragically died aged 59 covering the Australian Open", - "link": "https://www.dailymail.co.uk/sport/tennis/article-12977305/Novak-Djokovic-pays-tribute-legendary-Mail-Sport-tennis-correspondent-Mike-Dickson-sport-mourns-loss-Mr-Wimbledon-tragically-died-aged-59-covering-Australian-Open.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:11:46 GMT", - "enclosure": { - "length": "6207", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/06/80163805-0-image-a-24_1705560365499.jpg" - }, - "content": "Novak Djokovic paid tribute to Mail Sport's legendary correspondent Mike Dickson after he tragically passed away on Wednesday.", - "contentSnippet": "Novak Djokovic paid tribute to Mail Sport's legendary correspondent Mike Dickson after he tragically passed away on Wednesday.", - "guid": "https://www.dailymail.co.uk/sport/tennis/article-12977305/Novak-Djokovic-pays-tribute-legendary-Mail-Sport-tennis-correspondent-Mike-Dickson-sport-mourns-loss-Mr-Wimbledon-tragically-died-aged-59-covering-Australian-Open.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:11:46.000Z" - }, - { - "title": "Bargain Loving Brits in the Sun star Graham Boland dead: Benidorm legend passes away as 'heartbroken' brother and fans pay tribute", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12977689/Bargain-Loving-Brits-Sun-star-Graham-Boland-dead-Benidorm-legend-heartbroken-brother-fans-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:09:15 GMT", - "enclosure": { - "length": "10701", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167671-0-image-m-28_1705569647201.jpg" - }, - "content": "The owner of the iconic Benidorm bar Happy Days tragically passed away on Wednesday afternoon, after he was said to have been suffering from a long-term illness.", - "contentSnippet": "The owner of the iconic Benidorm bar Happy Days tragically passed away on Wednesday afternoon, after he was said to have been suffering from a long-term illness.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12977689/Bargain-Loving-Brits-Sun-star-Graham-Boland-dead-Benidorm-legend-heartbroken-brother-fans-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:09:15.000Z" - }, - { - "title": "The show might not go on! Performers at the English National Opera to go on strike over funding cuts - with adaptation of the Handmaid's Tale facing the axe on its opening night", - "link": "https://www.dailymail.co.uk/news/article-12977583/Performers-English-National-Opera-strike-Handmaids-Tale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 10:08:10 GMT", - "enclosure": { - "length": "9074", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167465-0-image-a-19_1705569603867.jpg" - }, - "content": "Musicians' Union and Equity confirmed its members would picket the London Coliseum on February 1 - the opening night for the show based on Margaret Atwood's acclaimed 1985 novel.", - "contentSnippet": "Musicians' Union and Equity confirmed its members would picket the London Coliseum on February 1 - the opening night for the show based on Margaret Atwood's acclaimed 1985 novel.", - "guid": "https://www.dailymail.co.uk/news/article-12977583/Performers-English-National-Opera-strike-Handmaids-Tale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T10:08:10.000Z" - }, - { - "title": "Vaping while pregnant is safe for both babies and mothers, rule experts amid growing fears of dangers of e-cigs", - "link": "https://www.dailymail.co.uk/health/article-12977497/Vaping-pregnant-safe-babies-mothers-rule-experts-amid-growing-fears-dangers-e-cigs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:58:16 GMT", - "enclosure": { - "length": "4767", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166859-0-image-a-10_1705568175007.jpg" - }, - "content": "Women who feel nicotine cravings while pregnant can be reassured that using a vape won't harm their baby, according to results from a British study involving over 1,100 expectant mothers.", - "contentSnippet": "Women who feel nicotine cravings while pregnant can be reassured that using a vape won't harm their baby, according to results from a British study involving over 1,100 expectant mothers.", - "guid": "https://www.dailymail.co.uk/health/article-12977497/Vaping-pregnant-safe-babies-mothers-rule-experts-amid-growing-fears-dangers-e-cigs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:58:16.000Z" - }, - { - "title": "I registered to buy a wreck at a property auction - here's how I prepared to bid", - "link": "https://www.dailymail.co.uk/property/article-12952277/I-registered-buy-wreck-property-auction-heres-prepared-bid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:55:25 GMT", - "enclosure": { - "length": "6688", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79902473-0-image-a-18_1704992954601.jpg" - }, - "content": "In our new series of three articles, Myra Butterworth reveals what happened when she registered to bid - and gets some expert tips from an auctioneer.", - "contentSnippet": "In our new series of three articles, Myra Butterworth reveals what happened when she registered to bid - and gets some expert tips from an auctioneer.", - "guid": "https://www.dailymail.co.uk/property/article-12952277/I-registered-buy-wreck-property-auction-heres-prepared-bid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:55:25.000Z" - }, - { - "title": "Doomed $108 million NASA-backed Peregrine One will crash back down to Earth TODAY - these are the potential impact zones", - "link": "https://www.dailymail.co.uk/sciencetech/article-12977491/Doomed-108-million-NASA-backed-Peregrine-One-crash-Earth-TODAY-potential-impact-zones.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:55:22 GMT", - "enclosure": { - "length": "9260", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168235-0-image-m-132_1705570559727.jpg" - }, - "content": "Peregrine One was supposed to land on the moon but suffered a\u00a0propellant leak. Here's where the craft is expected to crash down after nearly a week in space.", - "contentSnippet": "Peregrine One was supposed to land on the moon but suffered a\u00a0propellant leak. Here's where the craft is expected to crash down after nearly a week in space.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12977491/Doomed-108-million-NASA-backed-Peregrine-One-crash-Earth-TODAY-potential-impact-zones.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:55:22.000Z" - }, - { - "title": "Family stunned to find their pet pug had more than 50 hairbands in her stomach after they took her to the vet because she was acting strangely", - "link": "https://www.dailymail.co.uk/news/article-12977709/Family-stunned-pet-pug-50-hairbands-stomach-took-vet-acting-strangely.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:53:18 GMT", - "enclosure": { - "length": "8204", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168451-0-image-m-20_1705571456600.jpg" - }, - "content": "Owner Victoria Northwood, from Sherbert, Dorset, noticed her two-year-old dog, Ham, was a lot quieter than usual and decided to call the local vet.", - "contentSnippet": "Owner Victoria Northwood, from Sherbert, Dorset, noticed her two-year-old dog, Ham, was a lot quieter than usual and decided to call the local vet.", - "guid": "https://www.dailymail.co.uk/news/article-12977709/Family-stunned-pet-pug-50-hairbands-stomach-took-vet-acting-strangely.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:53:18.000Z" - }, - { - "title": "Arnold Schwarzenegger jokes 'this is the most watched watch in the world now' as full details of 'incompetent' cop blunders are revealed after he was detained in Munich for failing to declare luxury timepiece", - "link": "https://www.dailymail.co.uk/news/article-12977529/Arnold-Schwarzenegger-luxury-watch-joke-incompetent-police-detained-munich.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:52:01 GMT", - "enclosure": { - "length": "6129", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80165875-0-image-m-16_1705568434142.jpg" - }, - "content": "The Terminator actor, 76, was on his way to auction off the watch for his eco charity when he was detained for three hours by customs officials after landing in Germany yesterday afternoon.", - "contentSnippet": "The Terminator actor, 76, was on his way to auction off the watch for his eco charity when he was detained for three hours by customs officials after landing in Germany yesterday afternoon.", - "guid": "https://www.dailymail.co.uk/news/article-12977529/Arnold-Schwarzenegger-luxury-watch-joke-incompetent-police-detained-munich.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:52:01.000Z" - }, - { - "title": "Major supermarket announces end to loyalty reward programme starting next week - and customers are not happy", - "link": "https://www.dailymail.co.uk/femail/article-12970667/Major-supermarket-announces-end-loyalty-reward-programme-starting-week-customers-not-happy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:48:30 GMT", - "enclosure": { - "length": "9799", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167035-0-image-a-54_1705568477948.jpg" - }, - "content": "The chain's current loyalty scheme\u00a0allows Co-op members to earn 2p back for every \u00a31 spent in store, however it will be axed across the UK from January 24", - "contentSnippet": "The chain's current loyalty scheme\u00a0allows Co-op members to earn 2p back for every \u00a31 spent in store, however it will be axed across the UK from January 24", - "guid": "https://www.dailymail.co.uk/femail/article-12970667/Major-supermarket-announces-end-loyalty-reward-programme-starting-week-customers-not-happy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:48:30.000Z" - }, - { - "title": "I paid \u00a3889 for a robot vacuum that doesn't work: CRANE ON THE CASE", - "link": "https://www.dailymail.co.uk/money/bills/article-12974185/I-paid-889-robot-vacuum-doesnt-work-CRANE-CASE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:38:36 GMT", - "enclosure": { - "length": "10981", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/16/80137659-0-image-m-30_1705509219081.jpg" - }, - "content": "My futuristic vacuum stopped working after only eight months - and now no-one at iRobot seems to be able to help.", - "contentSnippet": "My futuristic vacuum stopped working after only eight months - and now no-one at iRobot seems to be able to help.", - "guid": "https://www.dailymail.co.uk/money/bills/article-12974185/I-paid-889-robot-vacuum-doesnt-work-CRANE-CASE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:38:36.000Z" - }, - { - "title": "DR MARTIN SCURR: A planned operation reduces the risk of complications for Kate", - "link": "https://www.dailymail.co.uk/health/article-12976251/planned-operation-reduces-risk-complications-Princess-Kate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:21:39 GMT", - "enclosure": { - "length": "10178", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/23/80153733-0-image-a-53_1705533757380.jpg" - }, - "content": "She exudes radiant good health, so the news that the Princess of Wales has undergone abdominal surgery at the London Clinic will have given rise to some concern.", - "contentSnippet": "She exudes radiant good health, so the news that the Princess of Wales has undergone abdominal surgery at the London Clinic will have given rise to some concern.", - "guid": "https://www.dailymail.co.uk/health/article-12976251/planned-operation-reduces-risk-complications-Princess-Kate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:21:39.000Z" - }, - { - "title": "Hollywood father-son duo look unrecognisable in sweet throwback snap - but can YOU guess who it is?", - "link": "https://www.dailymail.co.uk/tvshowbiz/dan-levy/article-12977445/Hollywood-father-son-duo-look-unrecognisable-sweet-throwback-snap-guess-is.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:03:54 GMT", - "enclosure": { - "length": "6009", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80164975-0-image-m-13_1705565028682.jpg" - }, - "content": "They are two of the most recognisable actors in Hollywood after starring in a popular sitcom series.", - "contentSnippet": "They are two of the most recognisable actors in Hollywood after starring in a popular sitcom series.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/dan-levy/article-12977445/Hollywood-father-son-duo-look-unrecognisable-sweet-throwback-snap-guess-is.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:03:54.000Z" - }, - { - "title": "Back to the drawing board! These baffling design fails should never have seen the light of day", - "link": "https://www.dailymail.co.uk/femail/article-12969855/baffling-design-fails.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 09:03:33 GMT", - "enclosure": { - "length": "10438", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166107-0-image-a-12_1705566647353.jpg" - }, - "content": "People from around the world have shared baffling snaps of outrageous design and the worst have been collected by Pleated Jeans. Including a toilet decorated with a sharks head", - "contentSnippet": "People from around the world have shared baffling snaps of outrageous design and the worst have been collected by Pleated Jeans. Including a toilet decorated with a sharks head", - "guid": "https://www.dailymail.co.uk/femail/article-12969855/baffling-design-fails.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T09:03:33.000Z" - }, - { - "title": "Alternative 'quackery', faith healing and herbalism: The royal doctor looking after King Charles who claims Christian healers may be able to help the chronically ill (and is a fan of devil's claw and horny goat weed)", - "link": "https://www.dailymail.co.uk/news/article-12977297/Who-Dr-Michael-Dixon-royal-doctor-King-Charles-Princess-Wales-operations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:57:41 GMT", - "enclosure": { - "length": "6978", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/07/80164267-0-image-a-8_1705562527123.jpg" - }, - "content": "Dr Michael Dixon, who heads up the team of medics who will be responsible for Charles and Kate's recovery, has previously been the subject of discussion for his support of homeopathy.", - "contentSnippet": "Dr Michael Dixon, who heads up the team of medics who will be responsible for Charles and Kate's recovery, has previously been the subject of discussion for his support of homeopathy.", - "guid": "https://www.dailymail.co.uk/news/article-12977297/Who-Dr-Michael-Dixon-royal-doctor-King-Charles-Princess-Wales-operations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:57:41.000Z" - }, - { - "title": "Burglar who carried out \u00a326m raid on homes of celebrities including Tamara Ecclestone and Frank Lampard is freed from prison just two years into his eight-year sentence", - "link": "https://www.dailymail.co.uk/news/article-12973121/Italian-burglar-carried-26m-raid-homes-celebrities-including-Tamara-Ecclestone-Frank-Lampard-released-prison-just-two-years-eight-year-sentence-member-gang-set-freed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:56:13 GMT", - "enclosure": { - "length": "3816", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/10/80122903-0-image-m-42_1705487105007.jpg" - }, - "content": "EXCLUSIVE: Alessandro Donati, 46, was given an eight-year sentence in November 2021 along with Alessandro Maltese, 47, while Jugoslav Jovanovic, 26, got 11 years.", - "contentSnippet": "EXCLUSIVE: Alessandro Donati, 46, was given an eight-year sentence in November 2021 along with Alessandro Maltese, 47, while Jugoslav Jovanovic, 26, got 11 years.", - "guid": "https://www.dailymail.co.uk/news/article-12973121/Italian-burglar-carried-26m-raid-homes-celebrities-including-Tamara-Ecclestone-Frank-Lampard-released-prison-just-two-years-eight-year-sentence-member-gang-set-freed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:56:13.000Z" - }, - { - "title": "RICHARD KAY: The double blow of King Charles and our future Queen Kate's medical treatment leaves the nation reeling... it sends a shiver down our spines and shows how threadbare royal resources are", - "link": "https://www.dailymail.co.uk/debate/article-12976113/RICHARD-KAY-double-blow-King-Charles-Princess-Kates-medical-treatment-send-collective-shiver-spines.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:52:07 GMT", - "enclosure": { - "length": "10529", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/22/80152443-0-image-a-29_1705531588587.jpg" - }, - "content": "RICHARD KAY: After the sadness of the late Queen's slow decline and death, the bulletin about Catherine has sent a collective shiver down the spine of royal fans. People are reeling.", - "contentSnippet": "RICHARD KAY: After the sadness of the late Queen's slow decline and death, the bulletin about Catherine has sent a collective shiver down the spine of royal fans. People are reeling.", - "guid": "https://www.dailymail.co.uk/debate/article-12976113/RICHARD-KAY-double-blow-King-Charles-Princess-Kates-medical-treatment-send-collective-shiver-spines.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:52:07.000Z" - }, - { - "title": "Fury over pothole-ridden 'tank track' which ambulances and bin lorries refuse to use: Homeowners are told THEY have to fund \u00a3500,000 repairs in stand-off with group which doesn't regard it as a proper street", - "link": "https://www.dailymail.co.uk/news/article-12973333/Fury-pothole-ridden-tank-track-ambulances-bin-lorries-refuse-use-Homeowners-told-fund-500-000-repairs-stand-group-doesnt-regard-proper-street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:51:04 GMT", - "enclosure": { - "length": "8352", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/12/80126585-0-image-a-45_1705495891998.jpg" - }, - "content": "Renters and homeowners on the nightmare road in Mitcham, southeast London, say the stretch is in such bad condition they're forced to fork out thousands to repair their cars.", - "contentSnippet": "Renters and homeowners on the nightmare road in Mitcham, southeast London, say the stretch is in such bad condition they're forced to fork out thousands to repair their cars.", - "guid": "https://www.dailymail.co.uk/news/article-12973333/Fury-pothole-ridden-tank-track-ambulances-bin-lorries-refuse-use-Homeowners-told-fund-500-000-repairs-stand-group-doesnt-regard-proper-street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:51:04.000Z" - }, - { - "title": "I was given \u00a32,000 for spotting a derelict property that could be transformed into a family home - it's paid for my holiday to Barbados", - "link": "https://www.dailymail.co.uk/news/article-12970005/paid-flagging-derelict-property-family-home-barbados-trip.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:45:49 GMT", - "enclosure": { - "length": "6196", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/07/80118695-0-image-m-15_1705478234651.jpg" - }, - "content": "Riyan Springer, 30, of Reading, Berkshire, was rewarded more than \u00a32,000 for reporting an empty house, which she has used to pay for a winter holiday to Barbados.", - "contentSnippet": "Riyan Springer, 30, of Reading, Berkshire, was rewarded more than \u00a32,000 for reporting an empty house, which she has used to pay for a winter holiday to Barbados.", - "guid": "https://www.dailymail.co.uk/news/article-12970005/paid-flagging-derelict-property-family-home-barbados-trip.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:45:49.000Z" - }, - { - "title": "How to turn \u00a3100 into \u00a3225 with your work pension: SIMON LAMBERT on the retirement saving trick", - "link": "https://www.dailymail.co.uk/money/pensions/article-12975193/How-turn-100-225-work-pension-SIMON-LAMBERT-retirement-saving-trick.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:40:16 GMT", - "enclosure": { - "length": "4407", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/18/80142295-0-image-m-6_1705514875734.jpg" - }, - "content": "If I told you that if you gave me \u00a3100, I would turn it into \u00a3225 immediately would that sound like a good deal?", - "contentSnippet": "If I told you that if you gave me \u00a3100, I would turn it into \u00a3225 immediately would that sound like a good deal?", - "guid": "https://www.dailymail.co.uk/money/pensions/article-12975193/How-turn-100-225-work-pension-SIMON-LAMBERT-retirement-saving-trick.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:40:16.000Z" - }, - { - "title": "TANYA GOLD: I lost a decade to drugs, sex and alcohol - convinced I was unlovable. It's a miracle I've got to 50", - "link": "https://www.dailymail.co.uk/femail/article-12975077/TANYA-GOLD-lost-decade-drugs-alcohol-convinced-unlovable-miracle-Ive-got-50.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:36:15 GMT", - "enclosure": { - "length": "11035", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/19/80145275-0-image-a-38_1705520754679.jpg" - }, - "content": "Fifty. It felt like a good time to look back, since I'm finally in a place where I'm not scared to do so. I feel ready to take stock. So, what are my thoughts on half a century?", - "contentSnippet": "Fifty. It felt like a good time to look back, since I'm finally in a place where I'm not scared to do so. I feel ready to take stock. So, what are my thoughts on half a century?", - "guid": "https://www.dailymail.co.uk/femail/article-12975077/TANYA-GOLD-lost-decade-drugs-alcohol-convinced-unlovable-miracle-Ive-got-50.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:36:15.000Z" - }, - { - "title": "US drops more bombs on Yemen as it launches airstrikes on 14 Iran-backed Houthi terrorist missile launchers that were loaded and pinned on Navy ships", - "link": "https://www.dailymail.co.uk/news/article-12977237/US-drops-bombs-Yemen-launches-airstrikes-14-Iran-backed-Houthi-terrorist-missile-launchers-loaded-pinned-Navy-ships.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:32:47 GMT", - "enclosure": { - "length": "9253", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/06/80163369-0-image-a-51_1705559485501.jpg" - }, - "content": "U.S. Central Command on Wednesday confirmed they had launched air strikes against 14 Houthi missile launchers, which were ready to fire towards the Red Sea.", - "contentSnippet": "U.S. Central Command on Wednesday confirmed they had launched air strikes against 14 Houthi missile launchers, which were ready to fire towards the Red Sea.", - "guid": "https://www.dailymail.co.uk/news/article-12977237/US-drops-bombs-Yemen-launches-airstrikes-14-Iran-backed-Houthi-terrorist-missile-launchers-loaded-pinned-Navy-ships.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:32:47.000Z" - }, - { - "title": "Middle East tinderbox threatens to explode as Pakistan air force launches airstrikes on Iran at 'militant targets' it says are behind missiles that killed two children", - "link": "https://www.dailymail.co.uk/news/article-12977223/Pakistan-launches-airstrike-Iran.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:28:53 GMT", - "enclosure": { - "length": "7762", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/06/80163773-0-image-a-181_1705561115525.jpg" - }, - "content": "The air attacks in Sistan and Baluchestan province Thursday, in turn,\u00a0killed at least seven - and threaten to further enflame tensions between the two nations.", - "contentSnippet": "The air attacks in Sistan and Baluchestan province Thursday, in turn,\u00a0killed at least seven - and threaten to further enflame tensions between the two nations.", - "guid": "https://www.dailymail.co.uk/news/article-12977223/Pakistan-launches-airstrike-Iran.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:28:53.000Z" - }, - { - "title": "Meta presentation 'claimed 100,000 children who use Facebook and Instagram are sent photos of adults genitals or other sex abuse material EVERY DAY - with \"people you may know\" feature helping connect predators to youngsters'", - "link": "https://www.dailymail.co.uk/news/article-12977157/Meta-Instagram-Facebook-predators.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:25:08 GMT", - "enclosure": { - "length": "9410", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/05/80162245-0-image-a-35_1705555377194.jpg" - }, - "content": "In the documents, seen by the Wall Street Journal , Meta employees noted that one of its recommended algorithms had been connecting child users with potential predators.", - "contentSnippet": "In the documents, seen by the Wall Street Journal , Meta employees noted that one of its recommended algorithms had been connecting child users with potential predators.", - "guid": "https://www.dailymail.co.uk/news/article-12977157/Meta-Instagram-Facebook-predators.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:25:08.000Z" - }, - { - "title": "'Eye-watering differences': Train station ticket machines can charge up to 154% more than booking online, Which? mystery shopper study discovers", - "link": "https://www.dailymail.co.uk/travel/article-12970131/Train-station-machines-charge-double-price-booking-online-Which.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:12:48 GMT", - "enclosure": { - "length": "8490", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/10/80121409-0-image-a-8_1705485714861.jpg" - }, - "content": "Which? sent mystery shoppers to 15 stations and checked the price of 75 journeys from a ticket machine against the price available from the UK's biggest ticket site,Trainline .", - "contentSnippet": "Which? sent mystery shoppers to 15 stations and checked the price of 75 journeys from a ticket machine against the price available from the UK's biggest ticket site,Trainline .", - "guid": "https://www.dailymail.co.uk/travel/article-12970131/Train-station-machines-charge-double-price-booking-online-Which.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:12:48.000Z" - }, - { - "title": "Calum Best breaks his silence as he is cleared of sexually assaulting British tourist at Wayne Lineker's Ibiza club after CCTV 'did not support woman's claim'", - "link": "https://www.dailymail.co.uk/news/article-12977453/Calum-Best-says-truth-prevails-cleared-sexually-assaulting-British-tourist-Wayne-Linekers-Ibiza-club-CCTV-did-not-support-womans-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 08:03:53 GMT", - "enclosure": { - "length": "10436", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/07/80164817-0-image-a-19_1705564540783.jpg" - }, - "content": "The 42-year-old son of late footballer George Best was told yesterday he had been acquitted after a one-day trial just over a week ago at a court in Majorca.", - "contentSnippet": "The 42-year-old son of late footballer George Best was told yesterday he had been acquitted after a one-day trial just over a week ago at a court in Majorca.", - "guid": "https://www.dailymail.co.uk/news/article-12977453/Calum-Best-says-truth-prevails-cleared-sexually-assaulting-British-tourist-Wayne-Linekers-Ibiza-club-CCTV-did-not-support-womans-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T08:03:53.000Z" - }, - { - "title": "Alan Cook oversaw the prosecution of innocent postmasters, rolled out smart motorways, and tried to sell LV to US private equity predators... So how DID he get away with it?", - "link": "https://www.dailymail.co.uk/news/article-12976455/Alan-Cook-oversaw-prosecution-innocent-postmasters-rolled-smart-motorways-tried-sell-LV-private-equity-predators-DID-away-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 07:52:31 GMT", - "enclosure": { - "length": "8295", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80156227-0-image-m-44_1705540800546.jpg" - }, - "content": "Alan Cook was managing director of the Post Office between 2006 and 2010 when the private prosecution of hundreds of innocent postmasters over a glitch in the Horizon IT system began", - "contentSnippet": "Alan Cook was managing director of the Post Office between 2006 and 2010 when the private prosecution of hundreds of innocent postmasters over a glitch in the Horizon IT system began", - "guid": "https://www.dailymail.co.uk/news/article-12976455/Alan-Cook-oversaw-prosecution-innocent-postmasters-rolled-smart-motorways-tried-sell-LV-private-equity-predators-DID-away-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T07:52:31.000Z" - }, - { - "title": "Former Jeremy Kyle guest\u00a0 Audrey Chawner dies 'peacefully in her sleep' aged 73 as her X Factor star daughter Emma pays tribute: 'She loved her animals and loved a good laugh'", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12976319/Jeremy-Kyle-Audrey-Chawner-dies-X-Factor-Emma-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 07:39:10 GMT", - "enclosure": { - "length": "9523", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/00/80155883-0-image-m-88_1705537689407.jpg" - }, - "content": "Emma confirmed the devastating news that her mother had 'passed peacefully in her sleep' in an Instagram post shared on Tuesday.", - "contentSnippet": "Emma confirmed the devastating news that her mother had 'passed peacefully in her sleep' in an Instagram post shared on Tuesday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12976319/Jeremy-Kyle-Audrey-Chawner-dies-X-Factor-Emma-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T07:39:10.000Z" - }, - { - "title": "JENNI MURRAY:\u00a0If only there'd been measles jabs when I was little, my friend would still be alive", - "link": "https://www.dailymail.co.uk/femail/article-12975221/JENNI-MURRAY-thered-measles-jabs-little-friend-alive.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 07:16:02 GMT", - "enclosure": { - "length": "9399", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/20/80146785-0-image-a-61_1705523482001.jpg" - }, - "content": "Perhaps it's just my generation that rushed its babies to be vaccinated against measles. It's a parental habit that appears to have diminished and now there's a terrifying rise in cases.", - "contentSnippet": "Perhaps it's just my generation that rushed its babies to be vaccinated against measles. It's a parental habit that appears to have diminished and now there's a terrifying rise in cases.", - "guid": "https://www.dailymail.co.uk/femail/article-12975221/JENNI-MURRAY-thered-measles-jabs-little-friend-alive.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T07:16:02.000Z" - }, - { - "title": "PETER HITCHENS: Your starter for 10 - why has University Challenge become a festival of political correctness? (With questions almost no one can possibly answer)", - "link": "https://www.dailymail.co.uk/debate/article-12975439/PETER-HITCHENS-starter-10-University-Challenge-festival-political-correctness-questions-no-one-possibly-answer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 07:14:04 GMT", - "enclosure": { - "length": "11975", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/20/80147013-0-image-a-13_1705524816972.jpg" - }, - "content": "Our quiz shows are important. But the transformation of the popular but difficult University Challenge into a festival of political correctness is a scandal.", - "contentSnippet": "Our quiz shows are important. But the transformation of the popular but difficult University Challenge into a festival of political correctness is a scandal.", - "guid": "https://www.dailymail.co.uk/debate/article-12975439/PETER-HITCHENS-starter-10-University-Challenge-festival-political-correctness-questions-no-one-possibly-answer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T07:14:04.000Z" - }, - { - "title": "STEPHEN GLOVER: You don't have to be a saint to head up the Church of England, William", - "link": "https://www.dailymail.co.uk/debate/article-12975469/STEPHEN-GLOVER-dont-saint-head-Church-England-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 07:12:49 GMT", - "enclosure": { - "length": "7455", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/21/80149059-0-image-a-17_1705527098650.jpg" - }, - "content": "Could Prince William be the first monarch in nearly five centuries not to become head of the Church of England when he succeeds to the throne?", - "contentSnippet": "Could Prince William be the first monarch in nearly five centuries not to become head of the Church of England when he succeeds to the throne?", - "guid": "https://www.dailymail.co.uk/debate/article-12975469/STEPHEN-GLOVER-dont-saint-head-Church-England-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T07:12:49.000Z" - }, - { - "title": "Two adults and teen are fatally-electrocuted by power line that fell on their car and set one of them on FIRE: Toddler also in SUV was pulled safe from dead body's arms", - "link": "https://www.dailymail.co.uk/news/article-12976419/Two-adults-teen-electrocuted-Portland-power-line.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 06:55:23 GMT", - "enclosure": { - "length": "10333", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80156989-0-image-a-47_1705539997352.jpg" - }, - "content": "The incident occurred on an intersection in the Russel Neighborhood of the city around 11:45am Wednesday - when 911 calls suddenly came in about a person set ablaze.", - "contentSnippet": "The incident occurred on an intersection in the Russel Neighborhood of the city around 11:45am Wednesday - when 911 calls suddenly came in about a person set ablaze.", - "guid": "https://www.dailymail.co.uk/news/article-12976419/Two-adults-teen-electrocuted-Portland-power-line.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T06:55:23.000Z" - }, - { - "title": "Do mortgages have an age limit? I'm 65 and rent but just got an inheritance: DAVID HOLLINGWORTH replies", - "link": "https://www.dailymail.co.uk/money/mortgageshome/article-12968415/Do-mortgages-age-limit-Im-65-rent-just-got-inheritance-DAVID-HOLLINGWORTH-replies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 06:00:58 GMT", - "enclosure": { - "length": "6080", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/16/10/73809425-0-image-m-13_1705399197839.jpg" - }, - "content": "I have received enough money to put an \u00a385,000 deposit down on a \u00a3120,000 home. As I am nearing retirement, what is the chance of getting a mortgage for the rest?", - "contentSnippet": "I have received enough money to put an \u00a385,000 deposit down on a \u00a3120,000 home. As I am nearing retirement, what is the chance of getting a mortgage for the rest?", - "guid": "https://www.dailymail.co.uk/money/mortgageshome/article-12968415/Do-mortgages-age-limit-Im-65-rent-just-got-inheritance-DAVID-HOLLINGWORTH-replies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T06:00:58.000Z" - }, - { - "title": "How will the latest rise in inflation impact house prices?", - "link": "https://www.dailymail.co.uk/property/article-12974483/How-latest-rise-inflation-impact-house-prices.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 06:00:55 GMT", - "enclosure": { - "length": "10266", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/16/80137955-0-image-a-18_1705508413155.jpg" - }, - "content": "Property insiders predicted that it is likely to be a 'bumpy ride' ahead for the property market following the latest inflation figures.", - "contentSnippet": "Property insiders predicted that it is likely to be a 'bumpy ride' ahead for the property market following the latest inflation figures.", - "guid": "https://www.dailymail.co.uk/property/article-12974483/How-latest-rise-inflation-impact-house-prices.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T06:00:55.000Z" - }, - { - "title": "Will I lose pension tax relief at 75 - even though I still work and pay tax?", - "link": "https://www.dailymail.co.uk/money/pensions/article-12970285/Will-lose-pension-tax-relief-75-work-pay-tax.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 06:00:46 GMT", - "enclosure": { - "length": "4884", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/16/17/80076671-0-image-a-34_1705426285535.jpg" - }, - "content": "Should I put the maximum lump sum I can afford into my pension before the deadline to get the tax relief?", - "contentSnippet": "Should I put the maximum lump sum I can afford into my pension before the deadline to get the tax relief?", - "guid": "https://www.dailymail.co.uk/money/pensions/article-12970285/Will-lose-pension-tax-relief-75-work-pay-tax.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T06:00:46.000Z" - }, - { - "title": "British Army officer crushed to death by armoured troop carrier with broken safety alarm that had not been fixed for years, investigation concludes", - "link": "https://www.dailymail.co.uk/news/article-12976441/British-Army-officer-crushed-death-armoured-troop-carrier.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 01:57:47 GMT", - "enclosure": { - "length": "5723", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80157161-0-image-m-102_1705542076260.jpg" - }, - "content": "Second Lieutenant Max George died from head injuries after being hit by the Warrior army vehicle on Salisbury Plain, Wiltshire, in 2022.", - "contentSnippet": "Second Lieutenant Max George died from head injuries after being hit by the Warrior army vehicle on Salisbury Plain, Wiltshire, in 2022.", - "guid": "https://www.dailymail.co.uk/news/article-12976441/British-Army-officer-crushed-death-armoured-troop-carrier.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T01:57:47.000Z" - }, - { - "title": "Revealed at last: How to pronounce 'scone' (so you'll just have to fight over the jam and cream now)", - "link": "https://www.dailymail.co.uk/news/article-12976431/pronounce-scone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 01:27:04 GMT", - "enclosure": { - "length": "6030", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80156259-0-image-m-144_1705540017712.jpg" - }, - "content": "Wordsmith Susie Dent, known for her appearances on the Channel 4 show Countdown, has attempted to solve the answer.", - "contentSnippet": "Wordsmith Susie Dent, known for her appearances on the Channel 4 show Countdown, has attempted to solve the answer.", - "guid": "https://www.dailymail.co.uk/news/article-12976431/pronounce-scone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T01:27:04.000Z" - }, - { - "title": "Kate Middleton is among the millions flocking to read MailOnline: New book reveals Princess of Wales likes to keep tabs on royal stories in the press like Queen Camilla (unlike William or King Charles who aren't as keen)", - "link": "https://www.dailymail.co.uk/news/article-12975945/kate-middleton-reads-mailonlione-queen-camilla-prince-william.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 01:18:40 GMT", - "enclosure": { - "length": "9663", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/23/80153127-0-image-a-5_1705532783365.jpg" - }, - "content": "Catherine is said to be among the tens of millions who get their updates from the Mail's award-winning news service, according to a new book from renowned royal author Robert Hardman.", - "contentSnippet": "Catherine is said to be among the tens of millions who get their updates from the Mail's award-winning news service, according to a new book from renowned royal author Robert Hardman.", - "guid": "https://www.dailymail.co.uk/news/article-12975945/kate-middleton-reads-mailonlione-queen-camilla-prince-william.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T01:18:40.000Z" - }, - { - "title": "King Charles wants to make Buckingham Palace 'the People's Palace', Martin Bashir makes Prince William's 'blood boil' and Kate is a fan of MailOnline! The revelations from Robert Hardman's new book", - "link": "https://www.dailymail.co.uk/news/article-12976131/King-Charles-wants-make-Buckingham-Palace-Peoples-Palace-Martin-Bashir-makes-Prince-Williams-blood-boil-Kate-fan-MailOnline-revelations-Robert-Hardmans-new-book.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 01:09:58 GMT", - "enclosure": { - "length": "9713", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80157045-0-image-a-11_1705540194528.jpg" - }, - "content": "The King has embarked on his vision to modernise the Royal Family including making Buckingham Palace 'the People's Palace', a new book reveals.", - "contentSnippet": "The King has embarked on his vision to modernise the Royal Family including making Buckingham Palace 'the People's Palace', a new book reveals.", - "guid": "https://www.dailymail.co.uk/news/article-12976131/King-Charles-wants-make-Buckingham-Palace-Peoples-Palace-Martin-Bashir-makes-Prince-Williams-blood-boil-Kate-fan-MailOnline-revelations-Robert-Hardmans-new-book.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T01:09:58.000Z" - }, - { - "title": "Rachel Reeves hints she could cut taxes for the highest earners if Labour wins the next election", - "link": "https://www.dailymail.co.uk/news/article-12976389/Rachel-Reeves-cut-taxes-highest-earners-Labour-wins-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 01:02:34 GMT", - "enclosure": { - "length": "8901", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/18/00/80155749-0-image-m-96_1705536748116.jpg" - }, - "content": "Shadow Chancellor Rachel Reeves has hinted that she could cut taxes even for the highest earners if Labour wins the general election.", - "contentSnippet": "Shadow Chancellor Rachel Reeves has hinted that she could cut taxes even for the highest earners if Labour wins the general election.", - "guid": "https://www.dailymail.co.uk/news/article-12976389/Rachel-Reeves-cut-taxes-highest-earners-Labour-wins-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T01:02:34.000Z" - }, - { - "title": "Finders Keepers review: All treasure, no tat... those Anglo-Saxon hoarders had the right idea! writes CHRISTOPHER STEVENS", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12975725/Finders-Keepers-review-treasure-no-tat-Anglo-Saxon-hoarders-right-idea-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 00:53:44 GMT", - "enclosure": { - "length": "6722", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/21/80147785-0-image-m-22_1705525517823.jpg" - }, - "content": "CHRISTOPHER STEVENS: Back in the Dark Ages, hoarding was an art. Our ancestors had only rudimentary tools, but Anglo-Saxon hoarders did hang on to the richest gems.", - "contentSnippet": "CHRISTOPHER STEVENS: Back in the Dark Ages, hoarding was an art. Our ancestors had only rudimentary tools, but Anglo-Saxon hoarders did hang on to the richest gems.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12975725/Finders-Keepers-review-treasure-no-tat-Anglo-Saxon-hoarders-right-idea-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T00:53:44.000Z" - }, - { - "title": "Organisers of the King's coronation came under 'strong pressure' from the BBC to let them film Charles's anointing", - "link": "https://www.dailymail.co.uk/news/article-12976135/Organisers-Kings-coronation-came-strong-pressure-BBC-let-film-Charless-anointing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 00:14:41 GMT", - "enclosure": { - "length": "13242", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/23/80154409-0-image-a-10_1705534710865.jpg" - }, - "content": "Coronation organisers came under 'pressure' to allow filming of the intimate moment King Charles was anointed with oil, according to a new book.", - "contentSnippet": "Coronation organisers came under 'pressure' to allow filming of the intimate moment King Charles was anointed with oil, according to a new book.", - "guid": "https://www.dailymail.co.uk/news/article-12976135/Organisers-Kings-coronation-came-strong-pressure-BBC-let-film-Charless-anointing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T00:14:41.000Z" - }, - { - "title": "Prince William was left 'frantic' by the Lady Susan Hussey race storm with Kensington Palace fearing it could 'derail' his official visit to Boston", - "link": "https://www.dailymail.co.uk/news/article-12976141/Prince-William-left-frantic-Lady-Susan-Hussey-race-storm-Kensington-Palace-fearing-derail-official-visit-Boston.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 18 Jan 2024 00:00:21 GMT", - "enclosure": { - "length": "9938", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/22/80152591-0-image-a-36_1705531811863.jpg" - }, - "content": "Kensington Palace feared that Prince William's official visit to Boston would be 'derailed' by the race storm over Lady Susan Hussey.", - "contentSnippet": "Kensington Palace feared that Prince William's official visit to Boston would be 'derailed' by the race storm over Lady Susan Hussey.", - "guid": "https://www.dailymail.co.uk/news/article-12976141/Prince-William-left-frantic-Lady-Susan-Hussey-race-storm-Kensington-Palace-fearing-derail-official-visit-Boston.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-18T00:00:21.000Z" - }, - { - "title": "This is the grim reason why Gen Z thinks this woman looks 'old' and 'haggard'", - "link": "https://www.dailymail.co.uk/femail/beauty/article-12972221/This-grim-reason-Gen-Z-thinks-woman-looks-old-haggard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 17 Jan 2024 22:21:29 GMT", - "enclosure": { - "length": "9190", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/05/80116249-0-image-a-46_1705470920686.jpg" - }, - "content": "Courtney Ball, who lives in Hawaii , recently shared a close-up video of her face pointing out the natural texture of her skin.", - "contentSnippet": "Courtney Ball, who lives in Hawaii , recently shared a close-up video of her face pointing out the natural texture of her skin.", - "guid": "https://www.dailymail.co.uk/femail/beauty/article-12972221/This-grim-reason-Gen-Z-thinks-woman-looks-old-haggard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-17T22:21:29.000Z" - }, - { - "title": "Heartwarming moment adorable calf Wynonna is rescued from frozen Tennessee pond", - "link": "https://www.dailymail.co.uk/news/article-12975385/calf-wynonna-rescued-frozen-Tennessee-pond.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 17 Jan 2024 22:05:47 GMT", - "enclosure": { - "length": "10255", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/20/80145867-0-image-a-1_1705521850858.jpg" - }, - "content": "A Smokin' F BBQ & Feedlot employee in Philadelphia, Tennessee , made one incredible save on January 16.", - "contentSnippet": "A Smokin' F BBQ & Feedlot employee in Philadelphia, Tennessee , made one incredible save on January 16.", - "guid": "https://www.dailymail.co.uk/news/article-12975385/calf-wynonna-rescued-frozen-Tennessee-pond.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-17T22:05:47.000Z" - }, - { - "title": "Couple's therapist reveals the three little-known signs your relationship is doomed", - "link": "https://www.dailymail.co.uk/wellness-us/article-12975517/couples-therapist-three-signs-relationship-doomed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 17 Jan 2024 21:59:49 GMT", - "enclosure": { - "length": "10944", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/21/80150195-0-image-a-18_1705528525377.jpg" - }, - "content": "A professor of counselling from Northern Illinois University has revealed three red-flags to be aware of - including conveniently forgetting to text your partner back.", - "contentSnippet": "A professor of counselling from Northern Illinois University has revealed three red-flags to be aware of - including conveniently forgetting to text your partner back.", - "guid": "https://www.dailymail.co.uk/wellness-us/article-12975517/couples-therapist-three-signs-relationship-doomed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-17T21:59:49.000Z" - }, - { - "title": "Beauty guru reveals her top five tips to make your perfume last LONGER - including why you should NEVER rub your wrists together", - "link": "https://www.dailymail.co.uk/femail/article-12957911/beauty-guru-make-perfume-scent-longer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 17 Jan 2024 21:49:37 GMT", - "enclosure": { - "length": "10500", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/16/20/80097913-0-image-a-115_1705435315821.jpg" - }, - "content": "The tricks were shared on TikTok this month by Los Angeles-based content creator Ashley Paige, who often posts videos about beauty, fashion and lifestyle on her social media channels.", - "contentSnippet": "The tricks were shared on TikTok this month by Los Angeles-based content creator Ashley Paige, who often posts videos about beauty, fashion and lifestyle on her social media channels.", - "guid": "https://www.dailymail.co.uk/femail/article-12957911/beauty-guru-make-perfume-scent-longer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-17T21:49:37.000Z" - }, - { - "title": "Miniature Grade II listed castle goes on the market for \u00a3120,000, complete with its own tiny turret", - "link": "https://www.dailymail.co.uk/property/article-12973787/Miniature-listed-castle-tiny-turret-auction-Dover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 17 Jan 2024 17:22:28 GMT", - "enclosure": { - "length": "7251", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/14/80130127-0-image-m-38_1705500319639.jpg" - }, - "content": "The unusual one-bedroom property in Dover, Kent dates back to the 19th century and is set to go to auction on January 31. It boasts an ensuite bathroom, a four-poster bed and a large fireplace.", - "contentSnippet": "The unusual one-bedroom property in Dover, Kent dates back to the 19th century and is set to go to auction on January 31. It boasts an ensuite bathroom, a four-poster bed and a large fireplace.", - "guid": "https://www.dailymail.co.uk/property/article-12973787/Miniature-listed-castle-tiny-turret-auction-Dover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-17T17:22:28.000Z" - }, - { - "title": "The best next president? Here's MY verdict! JUDGE JUDY delivers a no-nonsense (and VERY surprising) ruling on the White House race", - "link": "https://www.dailymail.co.uk/news/article-12974235/JUDGE-JUDY-verdict-president-endorses-nikki-haley.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 17 Jan 2024 16:37:50 GMT", - "enclosure": { - "length": "12220", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/17/15/80134841-0-image-m-27_1705504739469.jpg" - }, - "content": "I've seen a lot of politicians come and go during my life, and I am not someone who suffers fools. It takes a lot for me to support any one candidate so strongly...", - "contentSnippet": "I've seen a lot of politicians come and go during my life, and I am not someone who suffers fools. It takes a lot for me to support any one candidate so strongly...", - "guid": "https://www.dailymail.co.uk/news/article-12974235/JUDGE-JUDY-verdict-president-endorses-nikki-haley.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-17T16:37:50.000Z" - }, - { - "title": "Roald Dahl books illustrator Quentin Blake's 600-year-old Medieval home goes on the market for \u00a3950,000, complete with preserved original features", - "link": "https://www.dailymail.co.uk/property/article-12969241/Roald-Dahl-books-illustrator-Quentin-Blakes-Medieval-home-market-original-features.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 17 Jan 2024 12:20:42 GMT", - "enclosure": { - "length": "11165", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/16/17/80085015-0-image-a-526_1705425348292.jpg" - }, - "content": "The Grade II Listed Medieval home on All Saints Street in Hastings offers\u00a0five-bedroom, two bathrooms, flexible spaces for working from home and a good-sized, well stocked garden.", - "contentSnippet": "The Grade II Listed Medieval home on All Saints Street in Hastings offers\u00a0five-bedroom, two bathrooms, flexible spaces for working from home and a good-sized, well stocked garden.", - "guid": "https://www.dailymail.co.uk/property/article-12969241/Roald-Dahl-books-illustrator-Quentin-Blakes-Medieval-home-market-original-features.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-17T12:20:42.000Z" - }, - { - "title": "Number of homeowners renting a room jumps 89%... as average lodger now pays \u00a3739 a month", - "link": "https://www.dailymail.co.uk/property/article-12968619/Number-homeowners-renting-room-jumps-89-average-lodger-pays-739-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 17 Jan 2024 06:00:49 GMT", - "enclosure": { - "length": "9546", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/16/14/80083979-0-image-a-6_1705414312667.jpg" - }, - "content": "Flatshare site SpareRoom said people were looking for ways to make extra money to afford to stay in their homes.", - "contentSnippet": "Flatshare site SpareRoom said people were looking for ways to make extra money to afford to stay in their homes.", - "guid": "https://www.dailymail.co.uk/property/article-12968619/Number-homeowners-renting-room-jumps-89-average-lodger-pays-739-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-17T06:00:49.000Z" - }, - { - "title": "Why 2024 will be all about MIA MCKENNA BRUCE: The How To Have Sex star who's had her first baby at age 26, a marriage proposal and a hit film - all in less than a year", - "link": "https://www.dailymail.co.uk/home/you/article-12938649/Why-2024-MIA-MCKENNA-BRUCE-Sex-star-whos-baby-age-26-marriage-proposal-hit-film-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 16 Jan 2024 16:51:31 GMT", - "enclosure": { - "length": "7844", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/16/16/80091851-0-image-m-137_1705423850889.jpg" - }, - "content": "A hit film. A new baby. A marriage proposal. Prestigious awards\u2026 And all in less than a year.", - "contentSnippet": "A hit film. A new baby. A marriage proposal. Prestigious awards\u2026 And all in less than a year.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938649/Why-2024-MIA-MCKENNA-BRUCE-Sex-star-whos-baby-age-26-marriage-proposal-hit-film-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-16T16:51:31.000Z" - }, - { - "title": "Row of garages are for sale at auction - would they get planning permission for a house?", - "link": "https://www.dailymail.co.uk/property/article-12964487/Row-garages-sale-auction-planning-permission-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 16 Jan 2024 06:00:55 GMT", - "enclosure": { - "length": "9639", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/15/13/80030139-0-image-a-22_1705325053558.jpg" - }, - "content": "A row of garages are for sale at auction, how likely is it that I would get planning permission for a house?", - "contentSnippet": "A row of garages are for sale at auction, how likely is it that I would get planning permission for a house?", - "guid": "https://www.dailymail.co.uk/property/article-12964487/Row-garages-sale-auction-planning-permission-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-16T06:00:55.000Z" - }, - { - "title": "'You couldn't pay me to live in that!' Home buyers slam tiny one-bedroom flat with NO carpets on sale in affluent London neighbourhood for \u00a3220,000", - "link": "https://www.dailymail.co.uk/property/article-12965565/Home-buyers-slam-tiny-one-bedroom-flat-NO-carpets-sale-affluent-London-neighbourhood.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 15 Jan 2024 19:11:53 GMT", - "enclosure": { - "length": "5462", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/15/17/80040999-0-image-a-8_1705338875819.jpg" - }, - "content": "The grotty flat was spotted by a house-hunter who was left thoroughly unimpressed by the value for money of the property in the Churchill Gardens housing estate in Westminster.", - "contentSnippet": "The grotty flat was spotted by a house-hunter who was left thoroughly unimpressed by the value for money of the property in the Churchill Gardens housing estate in Westminster.", - "guid": "https://www.dailymail.co.uk/property/article-12965565/Home-buyers-slam-tiny-one-bedroom-flat-NO-carpets-sale-affluent-London-neighbourhood.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-15T19:11:53.000Z" - }, - { - "title": "Small place, big ideas: KATE WATSON-SMYTH on how to be mad about your home", - "link": "https://www.dailymail.co.uk/home/you/article-12939135/Small-place-big-ideas-KATE-WATSON-SMITH-mad-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 15 Jan 2024 10:51:05 GMT", - "enclosure": { - "length": "8848", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79796261-0-image-m-503_1704808181105.jpg" - }, - "content": "How do you turn a narrow terrace house into a cosy family home?", - "contentSnippet": "How do you turn a narrow terrace house into a cosy family home?", - "guid": "https://www.dailymail.co.uk/home/you/article-12939135/Small-place-big-ideas-KATE-WATSON-SMITH-mad-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-15T10:51:05.000Z" - }, - { - "title": "THE GREEN GUIDE: Pendant light, \u00a399", - "link": "https://www.dailymail.co.uk/home/you/article-12938501/THE-GREEN-GUIDE-Pendant-light-99.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 15 Jan 2024 10:06:13 GMT", - "enclosure": { - "length": "2343", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/14/79799547-0-image-m-14_1704811310558.jpg" - }, - "content": "Pendant light, \u00a399, houseof.com", - "contentSnippet": "Pendant light, \u00a399, houseof.com", - "guid": "https://www.dailymail.co.uk/home/you/article-12938501/THE-GREEN-GUIDE-Pendant-light-99.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-15T10:06:13.000Z" - }, - { - "title": "Landlords rush to incorporate their buy-to-lets to help 'shelter' from higher interest rates", - "link": "https://www.dailymail.co.uk/property/article-12955905/Landlords-rush-incorporate-buy-lets-help-shelter-higher-rates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 15 Jan 2024 00:01:46 GMT", - "enclosure": { - "length": "7923", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/12/13/79936541-0-image-a-17_1705066428086.jpg" - }, - "content": "New figures from Hamptons found that a record 50,004 limited buy-to-let companies were set up across Britain in 2023, surpassing 2022's previous record of 48,540 by 3 per cent.", - "contentSnippet": "New figures from Hamptons found that a record 50,004 limited buy-to-let companies were set up across Britain in 2023, surpassing 2022's previous record of 48,540 by 3 per cent.", - "guid": "https://www.dailymail.co.uk/property/article-12955905/Landlords-rush-incorporate-buy-lets-help-shelter-higher-rates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-15T00:01:46.000Z" - }, - { - "title": "ACTION PLAN: CIAR BYRNE's essential jobs for your garden this week", - "link": "https://www.dailymail.co.uk/home/gardening/article-12962221/CIAR-BYRNE-action-plan-essential-jobs-garden.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 14 Jan 2024 21:22:09 GMT", - "enclosure": { - "length": "8787", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/14/17/79999375-0-image-m-2_1705255064860.jpg" - }, - "content": "January is the perfect month for planning what you are going to grow in the garden for the rest of the year. UK gardening expert CIAR BYRNE explains how to make the most of it.", - "contentSnippet": "January is the perfect month for planning what you are going to grow in the garden for the rest of the year. UK gardening expert CIAR BYRNE explains how to make the most of it.", - "guid": "https://www.dailymail.co.uk/home/gardening/article-12962221/CIAR-BYRNE-action-plan-essential-jobs-garden.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-14T21:22:09.000Z" - }, - { - "title": "Solar panels, heat pumps and bat boxes - retirement residents are now part of the eco revolution", - "link": "https://www.dailymail.co.uk/property/article-12959191/Solar-panels-heat-pumps-bat-boxes-retirement-residents-eco-revolution.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:14:40 GMT", - "enclosure": { - "length": "9009", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/13/12/79966101-0-image-a-68_1705147747966.jpg" - }, - "content": "Solar panels, electric vehicle-charging points, triple-glazed windows, motion sensor lights and even living walls are being installed.", - "contentSnippet": "Solar panels, electric vehicle-charging points, triple-glazed windows, motion sensor lights and even living walls are being installed.", - "guid": "https://www.dailymail.co.uk/property/article-12959191/Solar-panels-heat-pumps-bat-boxes-retirement-residents-eco-revolution.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:14:40.000Z" - }, - { - "title": "Wok stars: CHING-HE-HUAN's speedy dishes are low on cost and high on flavour", - "link": "https://www.dailymail.co.uk/home/you/article-12938831/Wok-stars-CHING-HUANs-speedy-dishes-low-cost-high-flavour.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:01:30 GMT", - "enclosure": { - "length": "9826", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/11/79792629-0-image-m-251_1704801125480.jpg" - }, - "content": "Prawn and edamame rice", - "contentSnippet": "Prawn and edamame rice", - "guid": "https://www.dailymail.co.uk/home/you/article-12938831/Wok-stars-CHING-HUANs-speedy-dishes-low-cost-high-flavour.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:01:30.000Z" - }, - { - "title": "MY LIFE IN DRINKS: Sam McKnight", - "link": "https://www.dailymail.co.uk/home/you/article-12938847/MY-LIFE-DRINKS-Sam-McKnight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:01:27 GMT", - "enclosure": { - "length": "675338", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79807209-0-image-m-154_1704819533581.jpg" - }, - "content": "The A-list hairdresser, 68, tells Samuel Fishwick why he gave up drinking alcohol and how Elle Macpherson gets him out of bed.", - "contentSnippet": "The A-list hairdresser, 68, tells Samuel Fishwick why he gave up drinking alcohol and how Elle Macpherson gets him out of bed.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938847/MY-LIFE-DRINKS-Sam-McKnight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:01:27.000Z" - }, - { - "title": "THE CANNY COOK: Butternut squash and smoky bacon spaghetti", - "link": "https://www.dailymail.co.uk/home/you/article-12938933/THE-CANNY-COOK-Butternut-squash-smoky-bacon-spaghetti.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:01:24 GMT", - "enclosure": { - "length": "9270", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/17/79807575-0-image-m-232_1704819923808.jpg" - }, - "content": "This easy pasta dish pairs sweet and seasonal squash and salty bacon..", - "contentSnippet": "This easy pasta dish pairs sweet and seasonal squash and salty bacon..", - "guid": "https://www.dailymail.co.uk/home/you/article-12938933/THE-CANNY-COOK-Butternut-squash-smoky-bacon-spaghetti.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:01:24.000Z" - }, - { - "title": "TOM PARKER BOWLES reviews Italian dishes in Bayswater", - "link": "https://www.dailymail.co.uk/home/you/article-12938951/TOM-PARKER-BOWLES-reviews-Italian-dishes-Bayswater.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:01:20 GMT", - "enclosure": { - "length": "8297", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/12/79795041-0-image-m-327_1704804718684.jpg" - }, - "content": "Tom tucks into the good old Rome comforts of a discreet little Italian spot in London's Bayswater.", - "contentSnippet": "Tom tucks into the good old Rome comforts of a discreet little Italian spot in London's Bayswater.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938951/TOM-PARKER-BOWLES-reviews-Italian-dishes-Bayswater.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:01:20.000Z" - }, - { - "title": "Nine beauty game-changers for 2024: ROSIE GREEN reveals the innovations that will make your year", - "link": "https://www.dailymail.co.uk/home/you/article-12938557/Nine-beauty-game-changers-2024-ROSIE-GREEN-reveals-innovations-make-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:01:14 GMT", - "enclosure": { - "length": "673219", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79806925-0-image-m-110_1704819198335.jpg" - }, - "content": "In with the now: nine game-changers for 2024.\u00a0These trends and innovations will make your year, says Rosie Green .", - "contentSnippet": "In with the now: nine game-changers for 2024.\u00a0These trends and innovations will make your year, says Rosie Green .", - "guid": "https://www.dailymail.co.uk/home/you/article-12938557/Nine-beauty-game-changers-2024-ROSIE-GREEN-reveals-innovations-make-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:01:14.000Z" - }, - { - "title": "In the loop with Cirque du Soleil", - "link": "https://www.dailymail.co.uk/home/you/article-12938985/In-loop-Cirque-du-Soleil.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:01:11 GMT", - "enclosure": { - "length": "5395", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79795431-0-image-m-389_1704805560313.jpg" - }, - "content": "As the cast of world-famous Cirque du Soleil perform feats of body-bending magic at London's Royal Albert Hall, Maddy Fletcher finds out what it takes to join a circus like no other.", - "contentSnippet": "As the cast of world-famous Cirque du Soleil perform feats of body-bending magic at London's Royal Albert Hall, Maddy Fletcher finds out what it takes to join a circus like no other.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938985/In-loop-Cirque-du-Soleil.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:01:11.000Z" - }, - { - "title": "10 things you need to know about AI", - "link": "https://www.dailymail.co.uk/home/you/article-12939007/10-things-need-know-AI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:01:08 GMT", - "enclosure": { - "length": "8123", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79795709-0-image-m-409_1704806024328.jpg" - }, - "content": "From Google Maps to facial recognition, we're ever more reliant on artificial intelligence. Expert Mike Wooldridge gives his reasons to be fearful - and cheerful.", - "contentSnippet": "From Google Maps to facial recognition, we're ever more reliant on artificial intelligence. Expert Mike Wooldridge gives his reasons to be fearful - and cheerful.", - "guid": "https://www.dailymail.co.uk/home/you/article-12939007/10-things-need-know-AI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:01:08.000Z" - }, - { - "title": "AGELESS STYLE: The jumper dress", - "link": "https://www.dailymail.co.uk/home/you/article-12938619/AGELESS-STYLE-jumper-dress.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:01:05 GMT", - "enclosure": { - "length": "5183", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/08/16/79755547-0-image-m-50_1704731013767.jpg" - }, - "content": "Jumper dresses are top of the trend list this season, and it's easy to see why.", - "contentSnippet": "Jumper dresses are top of the trend list this season, and it's easy to see why.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938619/AGELESS-STYLE-jumper-dress.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:01:05.000Z" - }, - { - "title": "HOROSCOPES: Your stars for the week", - "link": "https://www.dailymail.co.uk/home/you/article-12939063/HOROSCOPES-stars-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:01:02 GMT", - "enclosure": { - "length": "23619", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/17/79807843-0-image-m-254_1704820329085.jpg" - }, - "content": "CAPRICORN\n\n22 Dec-20 Jan Don't give away too much about your plans or ambitions.", - "contentSnippet": "CAPRICORN\n\n22 Dec-20 Jan Don't give away too much about your plans or ambitions.", - "guid": "https://www.dailymail.co.uk/home/you/article-12939063/HOROSCOPES-stars-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:01:02.000Z" - }, - { - "title": "EVERYONE'S TALKING ABOUT: Dark academia", - "link": "https://www.dailymail.co.uk/home/you/article-12938585/EVERYONES-TALKING-Dark-academia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:00:59 GMT", - "enclosure": { - "length": "6706", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/08/16/79755443-0-image-m-32_1704730896782.jpg" - }, - "content": "The world is obsessed with this scholarly fashion and interiors trend: 5.7 billion views and rising on TikTok.", - "contentSnippet": "The world is obsessed with this scholarly fashion and interiors trend: 5.7 billion views and rising on TikTok.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938585/EVERYONES-TALKING-Dark-academia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:00:59.000Z" - }, - { - "title": "CHARLOTTE KRISTENSEN'S January gems", - "link": "https://www.dailymail.co.uk/home/you/article-12938965/CHARLOTTE-KRISTENSENS-January-gems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:00:55 GMT", - "enclosure": { - "length": "674810", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79806769-0-image-m-68_1704818903062.jpg" - }, - "content": "Feeling the dry Jan slump? Consider 'damp Jan' and 'try Jan'.", - "contentSnippet": "Feeling the dry Jan slump? Consider 'damp Jan' and 'try Jan'.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938965/CHARLOTTE-KRISTENSENS-January-gems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:00:55.000Z" - }, - { - "title": "TOPLINE FITNESS: Climbing walls", - "link": "https://www.dailymail.co.uk/home/you/article-12939029/TOPLINE-FITNESS-Climbing-walls.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:00:52 GMT", - "enclosure": { - "length": "7090", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79795713-0-image-m-424_1704806223686.jpg" - }, - "content": "Our fact-filled, fluff-free page of fitness.", - "contentSnippet": "Our fact-filled, fluff-free page of fitness.", - "guid": "https://www.dailymail.co.uk/home/you/article-12939029/TOPLINE-FITNESS-Climbing-walls.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:00:52.000Z" - }, - { - "title": "Your new sporting heroes: Stephanie Sofokleous's activewear choices", - "link": "https://www.dailymail.co.uk/home/you/article-12938727/Your-new-sporting-heroes-Stephanie-Sofokleouss-activewear-choices.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:00:49 GMT", - "enclosure": { - "length": "7535", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/08/17/79758785-0-image-m-134_1704736441071.jpg" - }, - "content": "Whether you're wild swimming or saluting the sun, push yourself to look the part with Stephanie Sofokleous 's edit of the latest activewear.", - "contentSnippet": "Whether you're wild swimming or saluting the sun, push yourself to look the part with Stephanie Sofokleous 's edit of the latest activewear.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938727/Your-new-sporting-heroes-Stephanie-Sofokleouss-activewear-choices.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:00:49.000Z" - }, - { - "title": "LIZ JONES'S DIARY: In which I try to get our glow back", - "link": "https://www.dailymail.co.uk/home/you/article-12939209/LIZ-JONESS-DIARY-try-glow-back.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 12:00:46 GMT", - "enclosure": { - "length": "4926", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79796097-0-image-m-9_1704807043986.jpg" - }, - "content": "I think it was Einstein who said the definition of insanity is to keep doing the same thing, while expecting a different outcome.", - "contentSnippet": "I think it was Einstein who said the definition of insanity is to keep doing the same thing, while expecting a different outcome.", - "guid": "https://www.dailymail.co.uk/home/you/article-12939209/LIZ-JONESS-DIARY-try-glow-back.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T12:00:46.000Z" - }, - { - "title": "Basement 'studio' with exposed brickwork and a single toilet goes up for sale - and estate agents claim it is a bargain", - "link": "https://www.dailymail.co.uk/property/article-12958933/Basement-studio-exposed-brickwork-single-toilet-goes-sale-estate-agents-claim-bargain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 11:29:39 GMT", - "enclosure": { - "length": "7474", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/13/09/79963803-0-image-a-13_1705136814459.jpg" - }, - "content": "Described as a 'dungeon' by shocked users online, the studio based in Crouch End could be converted into a self-contained flat, but this is 'subject to obtaining necessary consents'.", - "contentSnippet": "Described as a 'dungeon' by shocked users online, the studio based in Crouch End could be converted into a self-contained flat, but this is 'subject to obtaining necessary consents'.", - "guid": "https://www.dailymail.co.uk/property/article-12958933/Basement-studio-exposed-brickwork-single-toilet-goes-sale-estate-agents-claim-bargain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T11:29:39.000Z" - }, - { - "title": "Pet hates for home buyers: Fussy gardens, pools - and even staircases can make it harder to sell", - "link": "https://www.dailymail.co.uk/property/article-12952965/Pet-hates-home-buyers-Fussy-gardens-pools-staircases-make-harder-sell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 13 Jan 2024 06:00:49 GMT", - "enclosure": { - "length": "6971", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/20/79908773-0-image-m-6_1705003382074.jpg" - }, - "content": "Some of these fancy home additions listed by property experts may surprise you - but they're likely to end up hampering a sale.", - "contentSnippet": "Some of these fancy home additions listed by property experts may surprise you - but they're likely to end up hampering a sale.", - "guid": "https://www.dailymail.co.uk/property/article-12952965/Pet-hates-home-buyers-Fussy-gardens-pools-staircases-make-harder-sell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-13T06:00:49.000Z" - }, - { - "title": "My love affair with M&S knickers: From shapewear to the high-leg - these are not just pants, writes FRAN HORNAK", - "link": "https://www.dailymail.co.uk/home/you/article-12938745/My-love-affair-M-S-knickers-shapewear-high-leg-not-just-pants-writes-FRAN-HORNAK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 12 Jan 2024 17:30:54 GMT", - "enclosure": { - "length": "667957", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79806645-0-image-m-47_1704818685610.jpg" - }, - "content": "From school playground to maternity ward and beyond, FRAN HORNAK reveals why trusty M&S pants have always underpinned her life.", - "contentSnippet": "From school playground to maternity ward and beyond, FRAN HORNAK reveals why trusty M&S pants have always underpinned her life.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938745/My-love-affair-M-S-knickers-shapewear-high-leg-not-just-pants-writes-FRAN-HORNAK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-12T17:30:54.000Z" - }, - { - "title": "Beachfront cafe in millionaires' playground Sandbanks goes on the market for \u00a37.5million (well they do sell fish and chips for \u00a323.50!)", - "link": "https://www.dailymail.co.uk/property/article-12956533/Beachfront-cafe-millionaires-playground-Sandbanks-goes-market-7-5million-sell-fish-chips-23-50.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 12 Jan 2024 16:07:39 GMT", - "enclosure": { - "length": "8644", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/12/15/79940623-0-image-m-46_1705074995124.jpg" - }, - "content": "Jazz Cafe (pictured) in the exclusive seaside resort of Sandbanks in Poole, Dorset, has gone on the market - for an eye-watering \u00a37.5million. It was owned by local Alan Dykes for 28 years.", - "contentSnippet": "Jazz Cafe (pictured) in the exclusive seaside resort of Sandbanks in Poole, Dorset, has gone on the market - for an eye-watering \u00a37.5million. It was owned by local Alan Dykes for 28 years.", - "guid": "https://www.dailymail.co.uk/property/article-12956533/Beachfront-cafe-millionaires-playground-Sandbanks-goes-market-7-5million-sell-fish-chips-23-50.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-12T16:07:39.000Z" - }, - { - "title": "CAROLINE WEST-MEADS: 'Our underage daughter got drunk at a friend's sleepover'", - "link": "https://www.dailymail.co.uk/home/you/article-12939179/CAROLINE-WEST-MEADS-underage-daughter-got-drunk-friends-sleepover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 12 Jan 2024 14:26:31 GMT", - "enclosure": { - "length": "678914", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/17/79807291-0-image-m-172_1704819625399.jpg" - }, - "content": "Our daughter, who is 15, went to a friend's house for a New Year's Eve sleepover.", - "contentSnippet": "Our daughter, who is 15, went to a friend's house for a New Year's Eve sleepover.", - "guid": "https://www.dailymail.co.uk/home/you/article-12939179/CAROLINE-WEST-MEADS-underage-daughter-got-drunk-friends-sleepover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-12T14:26:31.000Z" - }, - { - "title": "Forget nepo babies, the nepo PARENTS are coming: From Harry Styles's mum's new career as an influencer to Lana Del Rey's father who boasts about being a 'nepo daddy'", - "link": "https://www.dailymail.co.uk/home/you/article-12938765/Forget-nepo-babies-nepo-PARENTS-coming-Harry-Styless-mums-new-career-influencer-Lana-Del-Reys-father-boasts-nepo-daddy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 12 Jan 2024 12:53:47 GMT", - "enclosure": { - "length": "676479", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79807073-0-image-m-122_1704819310027.jpg" - }, - "content": "They looked on with pride as their children became household names - but now the beaming mums and dads want the spotlight on themselves, says Scarlett Dargan.", - "contentSnippet": "They looked on with pride as their children became household names - but now the beaming mums and dads want the spotlight on themselves, says Scarlett Dargan.", - "guid": "https://www.dailymail.co.uk/home/you/article-12938765/Forget-nepo-babies-nepo-PARENTS-coming-Harry-Styless-mums-new-career-influencer-Lana-Del-Reys-father-boasts-nepo-daddy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-12T12:53:47.000Z" - }, - { - "title": "Tenants face losing deposit as 83% of landlords report tenancy agreements being breached", - "link": "https://www.dailymail.co.uk/property/article-12943107/Tenants-face-losing-deposit-83-landlords-report-tenancy-agreements-breached.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 12 Jan 2024 06:00:52 GMT", - "enclosure": { - "length": "7204", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/14/79799483-0-image-a-18_1704811382848.jpg" - }, - "content": "The most common breaches of a tenancy agreement included not keeping the property sufficiently clean and failing to notify a landlord of required repairs.", - "contentSnippet": "The most common breaches of a tenancy agreement included not keeping the property sufficiently clean and failing to notify a landlord of required repairs.", - "guid": "https://www.dailymail.co.uk/property/article-12943107/Tenants-face-losing-deposit-83-landlords-report-tenancy-agreements-breached.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-12T06:00:52.000Z" - }, - { - "title": "PICTURE THIS", - "link": "https://www.dailymail.co.uk/home/books/article-12953957/PICTURE-THIS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 23:12:53 GMT", - "enclosure": { - "length": "9552", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/23/79916225-0-image-m-129_1705014738311.jpg" - }, - "content": "The third of his celebratory series on 'Iconic Black Women', Marcellas Reynolds tracks through the evolution of Black female performers and the music industry they inhabit.", - "contentSnippet": "The third of his celebratory series on 'Iconic Black Women', Marcellas Reynolds tracks through the evolution of Black female performers and the music industry they inhabit.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953957/PICTURE-THIS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T23:12:53.000Z" - }, - { - "title": "SCI-FI", - "link": "https://www.dailymail.co.uk/home/books/article-12953947/SCI-FI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 23:06:47 GMT", - "enclosure": { - "length": "8406", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/23/79916009-0-image-a-108_1705014367361.jpg" - }, - "content": "Prefect Tom Dreyfus, dogged, humane and irascible, is the Panoply's most valued investigator. And though he drives a space cutter rather than a Jag, he's more Inspector Morse than Judge Dredd.", - "contentSnippet": "Prefect Tom Dreyfus, dogged, humane and irascible, is the Panoply's most valued investigator. And though he drives a space cutter rather than a Jag, he's more Inspector Morse than Judge Dredd.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953947/SCI-FI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T23:06:47.000Z" - }, - { - "title": "PSYCHOS", - "link": "https://www.dailymail.co.uk/home/books/article-12953935/PSYCHOS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 23:02:28 GMT", - "enclosure": { - "length": "10388", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/23/79915949-0-image-a-92_1705014111676.jpg" - }, - "content": "This is a very clever book indeed. Soloski is herself a prize-winning theatre critic for the New York Times and the book is packed with gripping insider knowledge of the dark side of a critic's life.", - "contentSnippet": "This is a very clever book indeed. Soloski is herself a prize-winning theatre critic for the New York Times and the book is packed with gripping insider knowledge of the dark side of a critic's life.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953935/PSYCHOS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T23:02:28.000Z" - }, - { - "title": "RETROS", - "link": "https://www.dailymail.co.uk/home/books/article-12953927/RETROS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 22:57:37 GMT", - "enclosure": { - "length": "4761", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/22/79915817-0-image-m-77_1705013814463.jpg" - }, - "content": "When mysterious Leonora Eyre meets antique dealer Humphrey and his nephew, James, all three lives become entwined in a complex web of manipulation, unfulfilled lust and jealousy.", - "contentSnippet": "When mysterious Leonora Eyre meets antique dealer Humphrey and his nephew, James, all three lives become entwined in a complex web of manipulation, unfulfilled lust and jealousy.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953927/RETROS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T22:57:37.000Z" - }, - { - "title": "LITERARY FICTION", - "link": "https://www.dailymail.co.uk/home/books/article-12953911/LITERARY-FICTION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 22:52:16 GMT", - "enclosure": { - "length": "11468", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/22/79915683-0-image-m-56_1705013499743.jpg" - }, - "content": "Irish writer Barrett won widespread praise for his violent yet tender story collections Young Skins and Homesickness, often about low life in a fictional version of his native County Mayo.", - "contentSnippet": "Irish writer Barrett won widespread praise for his violent yet tender story collections Young Skins and Homesickness, often about low life in a fictional version of his native County Mayo.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953911/LITERARY-FICTION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T22:52:16.000Z" - }, - { - "title": "MUST READS", - "link": "https://www.dailymail.co.uk/home/books/article-12953883/MUST-READS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 22:47:03 GMT", - "enclosure": { - "length": "5184", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/22/79915493-0-image-m-34_1705013140146.jpg" - }, - "content": "Many of us begin the new year with good intentions, only to lapse. But Holmes's new book promises to banish the never-ending to-do list.", - "contentSnippet": "Many of us begin the new year with good intentions, only to lapse. But Holmes's new book promises to banish the never-ending to-do list.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953883/MUST-READS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T22:47:03.000Z" - }, - { - "title": "Was my father the Nazis' last victim?\u00a0In 1938, 11-year-old Robert Borger escaped Vienna thanks to a newspaper ad and a kindly British couple. But he could never escape the terror unleashed on Austria's Jews...", - "link": "https://www.dailymail.co.uk/home/books/article-12953185/Was-father-Nazis-victim-1938-11-year-old-Robert-Borger-escaped-Vienna-thanks-newspaper-ad-kindly-British-couple-never-escape-terror-unleashed-Austrias-Jews.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 22:40:45 GMT", - "enclosure": { - "length": "9480", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/22/79915195-0-image-a-10_1705012573767.jpg" - }, - "content": "Journalist Julian Borger grew up with a vague impression that his father Robert had come to Britain from Vienna as a result of a newspaper ad, and after his father's death he managed to track it down.", - "contentSnippet": "Journalist Julian Borger grew up with a vague impression that his father Robert had come to Britain from Vienna as a result of a newspaper ad, and after his father's death he managed to track it down.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953185/Was-father-Nazis-victim-1938-11-year-old-Robert-Borger-escaped-Vienna-thanks-newspaper-ad-kindly-British-couple-never-escape-terror-unleashed-Austrias-Jews.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T22:40:45.000Z" - }, - { - "title": "I'm a professor, but people only care that I'm fat", - "link": "https://www.dailymail.co.uk/home/books/article-12953407/Im-professor-people-care-Im-fat.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 21:59:25 GMT", - "enclosure": { - "length": "8354", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/21/79913507-0-image-a-45_1705010209656.jpg" - }, - "content": "Kate Manne argues the world is 'mired' in fatphobia.\u00a0Rather than demand people shrink to a 'normal' size, we need to address the social systems which rank fatter bodies as inferior.", - "contentSnippet": "Kate Manne argues the world is 'mired' in fatphobia.\u00a0Rather than demand people shrink to a 'normal' size, we need to address the social systems which rank fatter bodies as inferior.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953407/Im-professor-people-care-Im-fat.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T21:59:25.000Z" - }, - { - "title": "WHAT BOOK would author James Patterson take to a desert island?", - "link": "https://www.dailymail.co.uk/home/books/article-12953429/WHAT-BOOK-author-James-Patterson-desert-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 21:46:52 GMT", - "enclosure": { - "length": "4681", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/21/79912027-0-image-m-15_1705009125481.jpg" - }, - "content": "Author James Patterson would use his time on a desert island to re-read James Joyce's books.", - "contentSnippet": "Author James Patterson would use his time on a desert island to re-read James Joyce's books.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953429/WHAT-BOOK-author-James-Patterson-desert-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T21:46:52.000Z" - }, - { - "title": "Crashed and stranded in the Andes for 72 days with no food... so would you have turned cannibal?", - "link": "https://www.dailymail.co.uk/home/books/article-12953423/Crashed-stranded-Andes-72-days-no-food-turned-cannibal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 21:26:28 GMT", - "enclosure": { - "length": "11724", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/11/21/79911691-0-image-a-22_1705007985415.jpg" - }, - "content": "A triumph of empathy, Society Of The Snow Pablo Vierci recounts the events of 1972 that became known as the 'Miracle of the Andes'.", - "contentSnippet": "A triumph of empathy, Society Of The Snow Pablo Vierci recounts the events of 1972 that became known as the 'Miracle of the Andes'.", - "guid": "https://www.dailymail.co.uk/home/books/article-12953423/Crashed-stranded-Andes-72-days-no-food-turned-cannibal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T21:26:28.000Z" - }, - { - "title": "Asking prices rise 20% in Sandbanks, making it Britain's top property hotspot", - "link": "https://www.dailymail.co.uk/property/article-12946977/Asking-prices-rise-20-Sandbanks-making-Britains-property-hotspot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 11 Jan 2024 00:01:49 GMT", - "enclosure": { - "length": "10202", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/10/15/79849833-0-image-a-9_1704901198318.jpg" - }, - "content": "Properties for sale in the sun-soaked millionaires' playground of Sandbanks have seen asking prices rise by 20% from 2022 to 2023, according to Rightmove.", - "contentSnippet": "Properties for sale in the sun-soaked millionaires' playground of Sandbanks have seen asking prices rise by 20% from 2022 to 2023, according to Rightmove.", - "guid": "https://www.dailymail.co.uk/property/article-12946977/Asking-prices-rise-20-Sandbanks-making-Britains-property-hotspot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-11T00:01:49.000Z" - }, - { - "title": "A sliver of a home! 7ft-wide terraced house that can just about fit a king sized bed goes on sale for \u00a3225,000 in north London", - "link": "https://www.dailymail.co.uk/property/article-12946667/A-sliver-home-7ft-wide-terraced-house-just-fit-king-sized-bed-goes-sale-225-000-south-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 10 Jan 2024 17:05:12 GMT", - "enclosure": { - "length": "8712", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/10/12/79842653-0-image-a-5_1704890170520.jpg" - }, - "content": "A pint-sized one-bedroom property in Colindale, northwest London, has been added to the market for an eye-watering \u00a3225,000 - boasting a 2.21M space no larger than a king-size bed", - "contentSnippet": "A pint-sized one-bedroom property in Colindale, northwest London, has been added to the market for an eye-watering \u00a3225,000 - boasting a 2.21M space no larger than a king-size bed", - "guid": "https://www.dailymail.co.uk/property/article-12946667/A-sliver-home-7ft-wide-terraced-house-just-fit-king-sized-bed-goes-sale-225-000-south-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-10T17:05:12.000Z" - }, - { - "title": "Three bedroom family home that is so mouldy buyers are not allowed inside for viewings goes on the market for \u00a310,000", - "link": "https://www.dailymail.co.uk/property/article-12947409/Three-bedroom-family-home-mouldy-buyers-not-allowed-inside-viewings-goes-market-10-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 10 Jan 2024 16:06:07 GMT", - "enclosure": { - "length": "10857", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/10/16/79848379-0-image-a-16_1704902679119.jpg" - }, - "content": "A three-bedroom family home, located in Northfield, Birmingham, has gone on the market for just \u00a310,000 - but it's riddled with so much mould that buyers are not allowed inside for viewings", - "contentSnippet": "A three-bedroom family home, located in Northfield, Birmingham, has gone on the market for just \u00a310,000 - but it's riddled with so much mould that buyers are not allowed inside for viewings", - "guid": "https://www.dailymail.co.uk/property/article-12947409/Three-bedroom-family-home-mouldy-buyers-not-allowed-inside-viewings-goes-market-10-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-10T16:06:07.000Z" - }, - { - "title": "Stunning Grade II-listed Mayfair home that once belonged to the Earls of Crawford is sold to an American buyer for \u00a311.5million in London's 'first super-prime property sale of 2024'", - "link": "https://www.dailymail.co.uk/property/article-12941797/Grade-II-Mayfair-home-Earl-Crawford-American-London-prime-property-sale-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 09 Jan 2024 23:40:13 GMT", - "enclosure": { - "length": "6907", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/08/79785309-0-image-a-4_1704787968632.jpg" - }, - "content": "The agent has revealed it could be London 's 'first super-prime property sale of 2024' and labelled the sale as a 'fantastic start to the year'.", - "contentSnippet": "The agent has revealed it could be London 's 'first super-prime property sale of 2024' and labelled the sale as a 'fantastic start to the year'.", - "guid": "https://www.dailymail.co.uk/property/article-12941797/Grade-II-Mayfair-home-Earl-Crawford-American-London-prime-property-sale-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-09T23:40:13.000Z" - }, - { - "title": "Gladiators ready? One of them can squat three and a half washing machines, and another can deadlift three times her bodyweight - meet the stars of the BBC reboot of a Nineties classic", - "link": "https://www.dailymail.co.uk/home/you/article-12918699/Gladiators-ready-One-squat-three-half-washing-machines-deadlift-three-times-bodyweight-meet-stars-BBC-reboot-Nineties-classic.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 09 Jan 2024 17:39:29 GMT", - "enclosure": { - "length": "22997", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/17/79809037-0-image-m-4_1704821959666.jpg" - }, - "content": "They dominated 90s primetime TV with their rippling six-packs and knockout combat techniques. Now the Glads are back. Nick Curtis takes them on.", - "contentSnippet": "They dominated 90s primetime TV with their rippling six-packs and knockout combat techniques. Now the Glads are back. Nick Curtis takes them on.", - "guid": "https://www.dailymail.co.uk/home/you/article-12918699/Gladiators-ready-One-squat-three-half-washing-machines-deadlift-three-times-bodyweight-meet-stars-BBC-reboot-Nineties-classic.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-09T17:39:29.000Z" - }, - { - "title": "Three-bed bungalow in one of 'the prettiest villages in Essex' is up for grabs for \u00a31.1m", - "link": "https://www.dailymail.co.uk/property/article-12938753/Three-bed-bungalow-one-prettiest-villages-Essex-grabs-1-1m.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 09 Jan 2024 14:08:32 GMT", - "enclosure": { - "length": "8721", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/08/14/79750595-0-image-a-5_1704723784868.jpg" - }, - "content": "The \u00a31.1m property spreads across an area of 1,465 square feet, and includes a single open-plan living area as well as the three bedrooms and an entrance hallway.", - "contentSnippet": "The \u00a31.1m property spreads across an area of 1,465 square feet, and includes a single open-plan living area as well as the three bedrooms and an entrance hallway.", - "guid": "https://www.dailymail.co.uk/property/article-12938753/Three-bed-bungalow-one-prettiest-villages-Essex-grabs-1-1m.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-09T14:08:32.000Z" - }, - { - "title": "Does he come with the house? Adorable dog stars in EVERY photo of \u00a375,000 home on the market in Scotland", - "link": "https://www.dailymail.co.uk/property/article-12942507/adorable-dog-featured-photograph-house-market-scotland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 09 Jan 2024 13:50:32 GMT", - "enclosure": { - "length": "4265", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79796837-0-image-m-31_1704808219043.jpg" - }, - "content": "A two-bedroom flat in Falkirk, Stirlingshire, Scotland offered for just \u00a375,000 has received a huge amount of interest from buyers - after it featured an adorable Labrador in its photos", - "contentSnippet": "A two-bedroom flat in Falkirk, Stirlingshire, Scotland offered for just \u00a375,000 has received a huge amount of interest from buyers - after it featured an adorable Labrador in its photos", - "guid": "https://www.dailymail.co.uk/property/article-12942507/adorable-dog-featured-photograph-house-market-scotland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2024-01-09T13:50:32.000Z" - }, - { - "title": "Sadiq Khan challenges Keir Starmer over Gaza: London mayor becomes most high-profile Labour figure to demand a ceasefire with a quarter of its MPs now calling for end to bloodshed while leader backs Israel's right to defend itself", - "link": "https://www.dailymail.co.uk/news/article-12679235/Keir-Starmer-urged-stand-ground-support-Israel-Gaza-crisis-Muslim-Labour-politicians-labelled-traitors.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:52:53 GMT", - "enclosure": { - "length": "3691", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072599-0-image-m-80_1698397907823.jpg" - }, - "content": "The London mayor became the most high profile figure to back calls for break in fighting between Israel and Hamas that has claimed thousands of lives since the terrorists' brutal raid.", - "contentSnippet": "The London mayor became the most high profile figure to back calls for break in fighting between Israel and Hamas that has claimed thousands of lives since the terrorists' brutal raid.", - "guid": "https://www.dailymail.co.uk/news/article-12679235/Keir-Starmer-urged-stand-ground-support-Israel-Gaza-crisis-Muslim-Labour-politicians-labelled-traitors.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:52:53.000Z" - }, - { - "title": "Israel-Hamas war LIVE: UN suggests Hamas and Israel are BOTH guilty of war crimes as it warns 'many more will die' in Gaza", - "link": "https://www.dailymail.co.uk/news/article-12679133/Israel-Hamas-war-live-Palestine-Gaza-latest-updates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:47:00 GMT", - "enclosure": { - "length": "8451", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078941-0-image-m-26_1698409398612.jpg" - }, - "content": "MAILONLINE LIVE BLOG: Follow along for live updates as Israel's war against Hamas is in its 21st day.", - "contentSnippet": "MAILONLINE LIVE BLOG: Follow along for live updates as Israel's war against Hamas is in its 21st day.", - "guid": "https://www.dailymail.co.uk/news/article-12679133/Israel-Hamas-war-live-Palestine-Gaza-latest-updates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:47:00.000Z" - }, - { - "title": "Moussa Diaby saves the day for tearful young Aston Villa fan as French star gives him his shirt after banner asking for it gets confiscated", - "link": "https://www.dailymail.co.uk/sport/football/article-12679365/Moussa-Diaby-saves-day-tearful-young-Aston-Villa-fan-French-star-gives-shirt-banner-asking-gets-confiscated.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:46:52 GMT", - "enclosure": { - "length": "10983", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072159-0-image-a-18_1698397313879.jpg" - }, - "content": "Before Villa played AZ Alkmaar last night in the Europa Conference League , a young fan hung a beautifully hand-crafted sign near to the touchline asking for the French footballer's shirt.", - "contentSnippet": "Before Villa played AZ Alkmaar last night in the Europa Conference League , a young fan hung a beautifully hand-crafted sign near to the touchline asking for the French footballer's shirt.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12679365/Moussa-Diaby-saves-day-tearful-young-Aston-Villa-fan-French-star-gives-shirt-banner-asking-gets-confiscated.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:46:52.000Z" - }, - { - "title": "Mother was found dead at home with her two-year-old daughter trying to wake her up - hours after paramedics gave her the all clear, family claim", - "link": "https://www.dailymail.co.uk/news/article-12679411/Mother-dead-home-two-year-old-daughter-trying-wake-hours-paramedics-gave-clear-family-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:46:06 GMT", - "enclosure": { - "length": "5382", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77073141-0-image-m-24_1698403721380.jpg" - }, - "content": "Lauren Page Smith, 29, was found at her house in Wolverhampton by her mother in January, lying on the floor with her two-year-old daughter on her chest. The toddler had tried to wake her up.", - "contentSnippet": "Lauren Page Smith, 29, was found at her house in Wolverhampton by her mother in January, lying on the floor with her two-year-old daughter on her chest. The toddler had tried to wake her up.", - "guid": "https://www.dailymail.co.uk/news/article-12679411/Mother-dead-home-two-year-old-daughter-trying-wake-hours-paramedics-gave-clear-family-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:46:06.000Z" - }, - { - "title": "EXCLUSIVE: I pushed my baby's pram to safety before I was mown down by a speeding car - and I'd do it again to save my children: Hero mother who suffered life-changing injuries gives first interview since drunk driver was jailed after leaving her for dead", - "link": "https://www.dailymail.co.uk/news/article-12679703/quick-thinking-mother-life-changing-injuries-drunk-driver-jailed-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:40:01 GMT", - "enclosure": { - "length": "8062", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77076731-0-Becky_Sharp_centre_pictured_holding_her_baby_girl_before_the_hor-a-3_1698409190779.jpg" - }, - "content": "Becky Sharp was saluted for her courage and quick-thinking this week as a judge jailed the maniac drunk driver who left her for dead and would have hit her baby too if she hadn't acted so decisively.", - "contentSnippet": "Becky Sharp was saluted for her courage and quick-thinking this week as a judge jailed the maniac drunk driver who left her for dead and would have hit her baby too if she hadn't acted so decisively.", - "guid": "https://www.dailymail.co.uk/news/article-12679703/quick-thinking-mother-life-changing-injuries-drunk-driver-jailed-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:40:01.000Z" - }, - { - "title": "Manhunt for Maine shooter Robert Card intensifies: Border units, FBI and State Police swarm ghost town as search for killer who shot 18 dead at bowling alley and bar enters day two", - "link": "https://www.dailymail.co.uk/news/article-12679939/Manhunt-Maine-shooter-Robert-Card-intensifies-Border-units-FBI-State-Police-swarm-ghost-town-search-killer-shot-18-dead-bowling-alley-bar-enters-day-two.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:40:01 GMT", - "enclosure": { - "length": "9134", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077779-0-Ghost_town_Lewiston_Schools_stores_and_most_businesses_in_Lewist-a-4_1698407587229.jpg" - }, - "content": "Lewiston, a once-busy city is today a ghost town as hundreds of FBI agents and Maine state troopers search for Card, the 40-year-old mentally ill gunman.", - "contentSnippet": "Lewiston, a once-busy city is today a ghost town as hundreds of FBI agents and Maine state troopers search for Card, the 40-year-old mentally ill gunman.", - "guid": "https://www.dailymail.co.uk/news/article-12679939/Manhunt-Maine-shooter-Robert-Card-intensifies-Border-units-FBI-State-Police-swarm-ghost-town-search-killer-shot-18-dead-bowling-alley-bar-enters-day-two.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:40:01.000Z" - }, - { - "title": "The wacky ways to wrap up this winter: Met Office releases list of weird hacks to stay warm... from ankle socks filled with microwaved beans to swimming caps and THIN layers of clothing", - "link": "https://www.dailymail.co.uk/news/article-12679701/Met-Office-winter-hacks-cold-weather-RAC-cars-cycling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:34:32 GMT", - "enclosure": { - "length": "11908", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77076449-0-image-m-36_1698404248291.jpg" - }, - "content": "Other so-called '#WeatherHacks' issued by the Met Office include packing a towel to remove toxic grit or rock salt from your dog's paws and preparing a kit of essential items in case of flooding.", - "contentSnippet": "Other so-called '#WeatherHacks' issued by the Met Office include packing a towel to remove toxic grit or rock salt from your dog's paws and preparing a kit of essential items in case of flooding.", - "guid": "https://www.dailymail.co.uk/news/article-12679701/Met-Office-winter-hacks-cold-weather-RAC-cars-cycling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:34:32.000Z" - }, - { - "title": "Astonishing moment Brazilian Uber driver delivers a baby in the back of her car (then doesn't even charge for the journey!)", - "link": "https://www.dailymail.co.uk/news/article-12679801/Astonishing-moment-Brazilian-Uber-driver-delivers-baby-car.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:33:23 GMT", - "enclosure": { - "length": "7192", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078667-0-image-m-9_1698409049583.jpg" - }, - "content": "Iara only realised her passenger was heavily pregnant when she arrived at the pick-up point in Bras\u00edlia, Brazil. During the drive, Sandy unexpectedly went into labour.", - "contentSnippet": "Iara only realised her passenger was heavily pregnant when she arrived at the pick-up point in Bras\u00edlia, Brazil. During the drive, Sandy unexpectedly went into labour.", - "guid": "https://www.dailymail.co.uk/news/article-12679801/Astonishing-moment-Brazilian-Uber-driver-delivers-baby-car.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:33:23.000Z" - }, - { - "title": "Young people are ditching gravy with a roast dinner condiments for ketchup and chilli mayo", - "link": "https://www.dailymail.co.uk/femail/article-12679649/millenial-gen-z-gravy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:29:59 GMT", - "enclosure": { - "length": "7634", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077199-0-image-m-5_1698406179862.jpg" - }, - "content": "UK millennials will opt for ketchup instead, while Gen Z prefer olive oil, sweet and sour sauce, mayonnaise and even chilli sauce according to a report by Tesco.", - "contentSnippet": "UK millennials will opt for ketchup instead, while Gen Z prefer olive oil, sweet and sour sauce, mayonnaise and even chilli sauce according to a report by Tesco.", - "guid": "https://www.dailymail.co.uk/femail/article-12679649/millenial-gen-z-gravy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:29:59.000Z" - }, - { - "title": "Ioan Gruffudd's ex-wife Alice Evans vows to 'tell my truth' in Instagram post amid bitter legal battle with actor over their daughters", - "link": "https://www.dailymail.co.uk/news/article-12679273/ioan-gruffud-actor-ex-wife-alice-evans-truth-instagram-bitter-legal-battle-daughters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:26:13 GMT", - "enclosure": { - "length": "9654", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77076353-0-image-a-13_1698403827107.jpg" - }, - "content": "The warring Hollywood stars are locked in an acrimonious battle for custody over their young children Ella and Elsie after Gruffudd left his then-wife Evans following a 14-year marriage.", - "contentSnippet": "The warring Hollywood stars are locked in an acrimonious battle for custody over their young children Ella and Elsie after Gruffudd left his then-wife Evans following a 14-year marriage.", - "guid": "https://www.dailymail.co.uk/news/article-12679273/ioan-gruffud-actor-ex-wife-alice-evans-truth-instagram-bitter-legal-battle-daughters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:26:13.000Z" - }, - { - "title": "Primary school teacher who refused to take Covid tests and wear a face mask at the height of pandemic loses discrimination legal battle", - "link": "https://www.dailymail.co.uk/news/article-12679485/Primary-school-teacher-refused-Covid-tests-wear-face-mask-height-pandemic-loses-discrimination-legal-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:25:36 GMT", - "enclosure": { - "length": "7263", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077575-0-image-m-11_1698406985985.jpg" - }, - "content": "Teacher Ijeomi Onyebalu refused to comply with the primary school's policies of testing twice a week and covering her face - reasoning that it was a 'personal choice' that didn't require any justification.", - "contentSnippet": "Teacher Ijeomi Onyebalu refused to comply with the primary school's policies of testing twice a week and covering her face - reasoning that it was a 'personal choice' that didn't require any justification.", - "guid": "https://www.dailymail.co.uk/news/article-12679485/Primary-school-teacher-refused-Covid-tests-wear-face-mask-height-pandemic-loses-discrimination-legal-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:25:36.000Z" - }, - { - "title": "Watch the shambolic moment a man is RUN OVER by horses immediately after starting a race in Carlisle - but somehow escapes a serious injury", - "link": "https://www.dailymail.co.uk/sport/racing/article-12678955/Watch-moment-groundstaff-member-gets-knocked-ground-HORSE-immediately-starting-race-Carlisle-escapes-unhurt-following-worrying-incident.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:22:38 GMT", - "enclosure": { - "length": "10379", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068345-0-image-a-4_1698387446343.jpg" - }, - "content": "A groundstaff member was fortunate to avoid serious injury after being knocked over by a horse just moments after starting a race in Carlisle on Thursday afternoon.", - "contentSnippet": "A groundstaff member was fortunate to avoid serious injury after being knocked over by a horse just moments after starting a race in Carlisle on Thursday afternoon.", - "guid": "https://www.dailymail.co.uk/sport/racing/article-12678955/Watch-moment-groundstaff-member-gets-knocked-ground-HORSE-immediately-starting-race-Carlisle-escapes-unhurt-following-worrying-incident.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:22:38.000Z" - }, - { - "title": "Investigation into missing X Factor rugby star Levi Davis is halted by Spanish officials, a year after he disappeared", - "link": "https://www.dailymail.co.uk/news/article-12679873/Investigation-missing-X-Factor-rugby-star-Levi-Davis-halted-Spanish-officials.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:17:41 GMT", - "enclosure": { - "length": "8835", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77077497-0-image-a-37_1698408479736.jpg" - }, - "content": "Mr Davis, a rugby union player and X Factor : Celebrity guest, disappeared on October 29, 2022 after travelling alone to Barcelona from Ibiza.", - "contentSnippet": "Mr Davis, a rugby union player and X Factor : Celebrity guest, disappeared on October 29, 2022 after travelling alone to Barcelona from Ibiza.", - "guid": "https://www.dailymail.co.uk/news/article-12679873/Investigation-missing-X-Factor-rugby-star-Levi-Davis-halted-Spanish-officials.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:17:41.000Z" - }, - { - "title": "Abbey Clancy cuddles up to EastEnders' Shaun Williamson as she imagines her life without her husband Peter Crouch in hilarious new advert", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12678135/Abbey-Clancy-cuddles-EastEnders-Shaun-Williamson-Peter-Crouch-advert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:08:47 GMT", - "enclosure": { - "length": "10301", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/00/77059315-0-image-m-120_1698363719028.jpg" - }, - "content": "The model, 37, imagines what her life would be like if she had rejected her husband Peter Crouch when they first met in a hilarious advert for Paddy Power Games.", - "contentSnippet": "The model, 37, imagines what her life would be like if she had rejected her husband Peter Crouch when they first met in a hilarious advert for Paddy Power Games.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12678135/Abbey-Clancy-cuddles-EastEnders-Shaun-Williamson-Peter-Crouch-advert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:08:47.000Z" - }, - { - "title": "Fears of wider war grow as Kremlin says US strikes in Syria are a 'very bad' sign of 'broader regional tensions' and defends inviting Hamas delegation to Moscow after Israel described the decision as 'deplorable'", - "link": "https://www.dailymail.co.uk/news/article-12679063/Fears-grow-Middle-East-conflict-tinderbox-thats-going-catch-fire-warplanes-strike-Iranian-forces-Syria-Israel-prepares-ground-invasion-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:06:17 GMT", - "enclosure": { - "length": "12114", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/08/77069263-0-image-a-4_1698390553520.jpg" - }, - "content": "The\u00a0Kremlin has spoken out about US airstrikes on two Iranian-controlled sites in eastern Syria saying it would further stoke rising tensions in the Middle East.", - "contentSnippet": "The\u00a0Kremlin has spoken out about US airstrikes on two Iranian-controlled sites in eastern Syria saying it would further stoke rising tensions in the Middle East.", - "guid": "https://www.dailymail.co.uk/news/article-12679063/Fears-grow-Middle-East-conflict-tinderbox-thats-going-catch-fire-warplanes-strike-Iranian-forces-Syria-Israel-prepares-ground-invasion-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:06:17.000Z" - }, - { - "title": "Gynaecologist 'mutilated his virgin wife's vagina with scissors because he was unable to have sex with her on their honeymoon'", - "link": "https://www.dailymail.co.uk/news/article-12679651/Gynaecologist-mutilated-virgin-wifes-vagina-scissors-unable-sex-honeymoon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:03:07 GMT", - "enclosure": { - "length": "3734", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075201-0-image-m-15_1698402714423.jpg" - }, - "content": "In a furious rage, the 54-year-old medic, who lives in Germany, had allegedly blamed his wife and decided to solve the problem himself, using a pair of scissors.", - "contentSnippet": "In a furious rage, the 54-year-old medic, who lives in Germany, had allegedly blamed his wife and decided to solve the problem himself, using a pair of scissors.", - "guid": "https://www.dailymail.co.uk/news/article-12679651/Gynaecologist-mutilated-virgin-wifes-vagina-scissors-unable-sex-honeymoon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:03:07.000Z" - }, - { - "title": "Groom and dressage rider, 40, banned from driving after three-car smash as she took her mother on an errand while high on cocaine", - "link": "https://www.dailymail.co.uk/news/article-12679575/groom-dressage-rider-banned-driving-three-car-crash-high-cocaine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:52:39 GMT", - "enclosure": { - "length": "4913", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073703-0-image-m-27_1698400141842.jpg" - }, - "content": "Groom and dressage rider Caroline Hoyle, 40, has been banned from driving after she took her mother on an errand while high on cocaine and caused a three-car smash.", - "contentSnippet": "Groom and dressage rider Caroline Hoyle, 40, has been banned from driving after she took her mother on an errand while high on cocaine and caused a three-car smash.", - "guid": "https://www.dailymail.co.uk/news/article-12679575/groom-dressage-rider-banned-driving-three-car-crash-high-cocaine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:52:39.000Z" - }, - { - "title": "EXCLUSIVE: Ivanka Trump channels Jackie O as she shows off her tanned legs in a demure yellow shift dress while heading to the Four Seasons in Miami - after celebrating her wedding anniversary ALONE while Jared Kushner was in Saudi Arabia", - "link": "https://www.dailymail.co.uk/femail/article-12677533/Ivanka-Trump-channels-Jackie-O-shows-tanned-legs-demure-yellow-shift-dress-heading-Four-Seasons-Miami-enjoying-fun-night-friends.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:51:29 GMT", - "enclosure": { - "length": "10876", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77076361-0-image-a-42_1698403928074.jpg" - }, - "content": "The 41-year-old was pictured strolling into the Four Seasons hotel near her family's home on Thursday, beaming happily as she was snapped by photographers.", - "contentSnippet": "The 41-year-old was pictured strolling into the Four Seasons hotel near her family's home on Thursday, beaming happily as she was snapped by photographers.", - "guid": "https://www.dailymail.co.uk/femail/article-12677533/Ivanka-Trump-channels-Jackie-O-shows-tanned-legs-demure-yellow-shift-dress-heading-Four-Seasons-Miami-enjoying-fun-night-friends.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:51:29.000Z" - }, - { - "title": "\u00a310million German lottery winner sparks fury online with video of his policewoman girlfriend blowing her nose with a \u20ac500 note", - "link": "https://www.dailymail.co.uk/news/article-12679587/German-lottery-winner-video-policewoman-girlfriend-blowing-nose-500-note.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:43:02 GMT", - "enclosure": { - "length": "6746", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074021-0-image-m-7_1698400799037.jpg" - }, - "content": "Kursat Yildirim's 36-year-old policewoman partner is named only as Candice N. The 42-year-old, who has won multiple jackpots, and his girlfriend posted the controversial\u00a0 video on October 13.", - "contentSnippet": "Kursat Yildirim's 36-year-old policewoman partner is named only as Candice N. The 42-year-old, who has won multiple jackpots, and his girlfriend posted the controversial\u00a0 video on October 13.", - "guid": "https://www.dailymail.co.uk/news/article-12679587/German-lottery-winner-video-policewoman-girlfriend-blowing-nose-500-note.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:43:02.000Z" - }, - { - "title": "How long will YOU live for? Find out by taking this 38-question quiz devised by longevity experts", - "link": "https://www.dailymail.co.uk/health/article-12679225/Longevity-quiz-38-questions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:40:52 GMT", - "enclosure": { - "length": "3949", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074643-0-image-m-11_1698401394570.jpg" - }, - "content": "EXCLUSIVE: Dr Paul Savage, who runs a health clinic in Chicago focused on helping patients live longer, has created a 38-point quiz to gain a snapshot of a person's health.", - "contentSnippet": "EXCLUSIVE: Dr Paul Savage, who runs a health clinic in Chicago focused on helping patients live longer, has created a 38-point quiz to gain a snapshot of a person's health.", - "guid": "https://www.dailymail.co.uk/health/article-12679225/Longevity-quiz-38-questions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:40:52.000Z" - }, - { - "title": "Heritage campaigners say \u00a31billion plan for Liverpool Street station including high-rise building from the developers of The Shard are 'insensitive and unnecessary'", - "link": "https://www.dailymail.co.uk/news/article-12679283/Heritage-campaigners-Liverpool-Street-station-redevelopment-plan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:34:26 GMT", - "enclosure": { - "length": "12293", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77071361-0-image-a-42_1698398536016.jpg" - }, - "content": "Heritage campaigners have branded the \u00a31billion plan for Liverpool Street station, which includes a high-rise building from the developers of The Shard, as 'insensitive and unnnecessary'.", - "contentSnippet": "Heritage campaigners have branded the \u00a31billion plan for Liverpool Street station, which includes a high-rise building from the developers of The Shard, as 'insensitive and unnnecessary'.", - "guid": "https://www.dailymail.co.uk/news/article-12679283/Heritage-campaigners-Liverpool-Street-station-redevelopment-plan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:34:26.000Z" - }, - { - "title": "Moment drug dealer and his passenger lead police on 60-minute chase before capture on quiet housing estate", - "link": "https://www.dailymail.co.uk/news/article-12679599/VIDEO-Drug-dealer-caught-high-speed-pursuit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:34:13 GMT", - "enclosure": { - "length": "7974", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074483-0-image-a-35_1698402728689.jpg" - }, - "content": "Patrick McCabe, pictured, tried to escape from police during an hour-long chase across Sussex and Surrey before he attempted to flee over a garden fence after abandoning his car.", - "contentSnippet": "Patrick McCabe, pictured, tried to escape from police during an hour-long chase across Sussex and Surrey before he attempted to flee over a garden fence after abandoning his car.", - "guid": "https://www.dailymail.co.uk/news/article-12679599/VIDEO-Drug-dealer-caught-high-speed-pursuit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:34:13.000Z" - }, - { - "title": "Number of banned dogs in Britain hits 3,500 due to legal loophole - as officials move to outlaw XL Bully breed following spate of deadly attacks", - "link": "https://www.dailymail.co.uk/news/article-12678935/Britains-banned-dog-explosion-3-500-illegal-pooches-UK-1-200-past-10-years-officials-ban-huge-XL-Bully-breed-following-spate-attacks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:33:24 GMT", - "enclosure": { - "length": "6744", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/06/77022531-0-image-m-26_1698385471352.jpg" - }, - "content": "There are 3,499 banned dogs registered in the UK, government data has revealed. Almost all were pit bull terriers, with 3,316 in England and 149 in Wales.", - "contentSnippet": "There are 3,499 banned dogs registered in the UK, government data has revealed. Almost all were pit bull terriers, with 3,316 in England and 149 in Wales.", - "guid": "https://www.dailymail.co.uk/news/article-12678935/Britains-banned-dog-explosion-3-500-illegal-pooches-UK-1-200-past-10-years-officials-ban-huge-XL-Bully-breed-following-spate-attacks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:33:24.000Z" - }, - { - "title": "Police officer is suspended from driving day after video emerges of pair of cops 'watching match on high-speed 999 call'", - "link": "https://www.dailymail.co.uk/news/article-12679631/Police-officer-suspended-video-watching-football-match.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:30:39 GMT", - "enclosure": { - "length": "4696", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77027083-0-Two_officers_were_caught_watching_a_Premier_League_football_matc-a-54_1698402412793.jpg" - }, - "content": "A police officer has been suspended from driving a day after a video of two officers allegedly watching a football match on a high-speed drive to a 999 emergency.", - "contentSnippet": "A police officer has been suspended from driving a day after a video of two officers allegedly watching a football match on a high-speed drive to a 999 emergency.", - "guid": "https://www.dailymail.co.uk/news/article-12679631/Police-officer-suspended-video-watching-football-match.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:30:39.000Z" - }, - { - "title": "Pensioner, 70, charged with murder of partner, 59, at holiday park after she was found with a 'significant injury'", - "link": "https://www.dailymail.co.uk/news/article-12679757/Pensioner-70-charged-murder-partner-59-holiday-park-significant-injury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:27:43 GMT", - "enclosure": { - "length": "11450", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77046961-0-image-m-16_1698404374913.jpg" - }, - "content": "Simon Steeves, 70, has been charged with the murder of his partner at a holiday park in Brean, Somerset, after she was found with a 'significant injury'.", - "contentSnippet": "Simon Steeves, 70, has been charged with the murder of his partner at a holiday park in Brean, Somerset, after she was found with a 'significant injury'.", - "guid": "https://www.dailymail.co.uk/news/article-12679757/Pensioner-70-charged-murder-partner-59-holiday-park-significant-injury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:27:43.000Z" - }, - { - "title": "Taylor Swift: Superstar singer or marketing genius? How the Anti-Hero hitmaker became a billionaire", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679385/Taylor-Swift-Superstar-singer-marketing-genius-Anti-Hero-hitmaker-billionaire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:23:55 GMT", - "enclosure": { - "length": "10849", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074285-0-image-a-33_1698400832915.jpg" - }, - "content": "Taylor Swift, 33, has officially reached billionaire status - 17 years into her career as music's biggest superstar - but is just the success of her music that has cemented Taylor's ten-figure net worth?", - "contentSnippet": "Taylor Swift, 33, has officially reached billionaire status - 17 years into her career as music's biggest superstar - but is just the success of her music that has cemented Taylor's ten-figure net worth?", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679385/Taylor-Swift-Superstar-singer-marketing-genius-Anti-Hero-hitmaker-billionaire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:23:55.000Z" - }, - { - "title": "Ronnie O'Sullivan reveals how his father promised he'd be 'the best snooker star in the world' in new doc... before Soho sex shop boss spent 18 years in prison for Kray driver's murder", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679635/Ronnie-OSullivan-reveals-father-promised-hed-best-snooker-star-world-new-doc-Soho-sex-shop-boss-spent-18-years-prison-Kray-drivers-murder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:23:14 GMT", - "enclosure": { - "length": "9283", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075233-0-image-m-78_1698402017292.jpg" - }, - "content": "Ronnie O'Sullivan has spoken about his convict father's encouragement at the start of his snooker career when he was just 10.\u00a0", - "contentSnippet": "Ronnie O'Sullivan has spoken about his convict father's encouragement at the start of his snooker career when he was just 10.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679635/Ronnie-OSullivan-reveals-father-promised-hed-best-snooker-star-world-new-doc-Soho-sex-shop-boss-spent-18-years-prison-Kray-drivers-murder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:23:14.000Z" - }, - { - "title": "Tyson Fury breaks silence on missing birth of seventh baby with wife Paris Fury: 'Daddy's gotta do what daddy's gotta do'", - "link": "https://www.dailymail.co.uk/news/article-12679563/Tyson-Fury-breaks-silence-missing-birth-seventh-baby-wife-Paris-Fury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:20:22 GMT", - "enclosure": { - "length": "7954", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77073389-0-image-m-56_1698402718738.jpg" - }, - "content": "The English heavyweight boxing champion, 35, and his wife Paris, 33, welcomed Prince Rico Paris Fury to their ever growing brood last month.", - "contentSnippet": "The English heavyweight boxing champion, 35, and his wife Paris, 33, welcomed Prince Rico Paris Fury to their ever growing brood last month.", - "guid": "https://www.dailymail.co.uk/news/article-12679563/Tyson-Fury-breaks-silence-missing-birth-seventh-baby-wife-Paris-Fury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:20:22.000Z" - }, - { - "title": "Union bosses demands new rules barring MPs from Parliament if they are arrested after Tory ex-minister Crispin Blunt is quizzed on suspicion of rape", - "link": "https://www.dailymail.co.uk/news/article-12679779/Union-bosses-demands-new-rules-barring-MPs-Parliament-arrested-Tory-ex-minister-Crispin-Blunt-quizzed-suspicion-rape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:13:17 GMT", - "enclosure": { - "length": "5569", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77076491-0-image-m-35_1698404373638.jpg" - }, - "content": "Crispin Blunt, the long-serving MP for Reigate, last night named himself as the MP arrested in connection with an allegation of rape.", - "contentSnippet": "Crispin Blunt, the long-serving MP for Reigate, last night named himself as the MP arrested in connection with an allegation of rape.", - "guid": "https://www.dailymail.co.uk/news/article-12679779/Union-bosses-demands-new-rules-barring-MPs-Parliament-arrested-Tory-ex-minister-Crispin-Blunt-quizzed-suspicion-rape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:13:17.000Z" - }, - { - "title": "Touching moment blind dog named Molly who was missing for three days is reunited with her owner after drone tracked her down", - "link": "https://www.dailymail.co.uk/news/article-12679521/Touching-moment-blind-dog-named-Molly-missing-three-days-reunited-owner-drone-tracked-down.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:12:32 GMT", - "enclosure": { - "length": "6887", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075187-0-image-m-62_1698403688423.jpg" - }, - "content": "Footage captured by the drone shows Molly roaming around a paddock in Tissington, Derbyshire, before her owner pulls up and the two are finally reunited.", - "contentSnippet": "Footage captured by the drone shows Molly roaming around a paddock in Tissington, Derbyshire, before her owner pulls up and the two are finally reunited.", - "guid": "https://www.dailymail.co.uk/news/article-12679521/Touching-moment-blind-dog-named-Molly-missing-three-days-reunited-owner-drone-tracked-down.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:12:32.000Z" - }, - { - "title": "Taylor Swift fans speculate Harry Styles is 'lying traitor' she sings about on new song as wild theories circulate about her and Dianna Agron", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679193/Taylor-Swift-fans-speculate-Harry-Styles-lying-traitor-sings-new-song-wild-theories-circulate-Dianna-Agron.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:11:12 GMT", - "enclosure": { - "length": "11603", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072519-0-image-a-85_1698397545405.jpg" - }, - "content": "The singer, 33, has dropped previously unreleased songs on the new version of her fifth album 1989 which took her career to new heights when it came out in 2014.", - "contentSnippet": "The singer, 33, has dropped previously unreleased songs on the new version of her fifth album 1989 which took her career to new heights when it came out in 2014.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679193/Taylor-Swift-fans-speculate-Harry-Styles-lying-traitor-sings-new-song-wild-theories-circulate-Dianna-Agron.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:11:12.000Z" - }, - { - "title": "The pram fit for a prince (or princess!): From Queen Elizabeth to Diana and George, how Silver Cross buggies have carried generations of royal babies - and now James Middleton's child has got one too", - "link": "https://www.dailymail.co.uk/femail/article-12679527/A-gift-Kate-Princess-Wales-brother-James-Middleton-wife-Alizee-Thevenet-walk-newborn-795-Silver-Cross-pram-brand-loved-royals-century.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:10:02 GMT", - "enclosure": { - "length": "12144", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074889-0-image-a-1_1698401913082.jpg" - }, - "content": "The Princess of Wales' brother James Middleton was spotted walking around Notting Hill on Tuesday alongside his wife Alizee Thevenet and their first child.", - "contentSnippet": "The Princess of Wales' brother James Middleton was spotted walking around Notting Hill on Tuesday alongside his wife Alizee Thevenet and their first child.", - "guid": "https://www.dailymail.co.uk/femail/article-12679527/A-gift-Kate-Princess-Wales-brother-James-Middleton-wife-Alizee-Thevenet-walk-newborn-795-Silver-Cross-pram-brand-loved-royals-century.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:10:02.000Z" - }, - { - "title": "I converted a Ford Fiesta into my permanent home for less than \u00a32,000 - now I shower in the gym and cook on a camping stove but I love my nomadic lifestyle", - "link": "https://www.dailymail.co.uk/femail/article-12679189/I-converted-Ford-Fiesta-permanent-home-2-000-shower-gym-cook-camping-stove-love-nomadic-lifestyle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:07:59 GMT", - "enclosure": { - "length": "11131", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072301-0-image-a-8_1698397327223.jpg" - }, - "content": "Yavor Dantzarov, 33, from Bulgaria was renting a shoebox flat in South London for \u00a3600 - but decided to get creative when he was was kicked out, after moving from Eastbourne in June 2023.", - "contentSnippet": "Yavor Dantzarov, 33, from Bulgaria was renting a shoebox flat in South London for \u00a3600 - but decided to get creative when he was was kicked out, after moving from Eastbourne in June 2023.", - "guid": "https://www.dailymail.co.uk/femail/article-12679189/I-converted-Ford-Fiesta-permanent-home-2-000-shower-gym-cook-camping-stove-love-nomadic-lifestyle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:07:59.000Z" - }, - { - "title": "Yoga teacher and her catering boss husband who were exiled from local wine society by 'nimby' neighbours are forced to sell their \u00a31.5m home to pay \u00a3150k legal bill after losing court battle over redevelopment plans", - "link": "https://www.dailymail.co.uk/news/article-12679379/couple-exiled-oxshott-wine-society-forced-sell-home-neighbour-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:04:57 GMT", - "enclosure": { - "length": "6574", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77071937-0-Mrs_McGuinness_41_was_formerly_a_competitive_figure_skater_but_h-a-5_1698401928986.jpg" - }, - "content": "Yoga teacher Emma McGuiness and her catering boss husband Terence McGuinness, from Oxshott, will have to pay the sum following a planning dispute.", - "contentSnippet": "Yoga teacher Emma McGuiness and her catering boss husband Terence McGuinness, from Oxshott, will have to pay the sum following a planning dispute.", - "guid": "https://www.dailymail.co.uk/news/article-12679379/couple-exiled-oxshott-wine-society-forced-sell-home-neighbour-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:04:57.000Z" - }, - { - "title": "Did Maine gunman Robert Card target deaf friends? Killer had recently been given hearing aids and claimed they let him hear people criticizing him at the bowling alley and bar where he murdered four deaf friends and 14 others", - "link": "https://www.dailymail.co.uk/news/article-12679215/Did-Maine-gunman-target-deaf-friends-Robert-Card-recently-given-hearing-aids-claimed-let-hear-people-criticizing-bowling-alley-bar-murdered-three-deaf-friends-15-others.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 11:02:44 GMT", - "enclosure": { - "length": "4886", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77025447-0-image-m-13_1698394006582.jpg" - }, - "content": "Maine mass shooting suspect Robert Card had recently been prescribed with hearing aids and struggled with mental health.", - "contentSnippet": "Maine mass shooting suspect Robert Card had recently been prescribed with hearing aids and struggled with mental health.", - "guid": "https://www.dailymail.co.uk/news/article-12679215/Did-Maine-gunman-target-deaf-friends-Robert-Card-recently-given-hearing-aids-claimed-let-hear-people-criticizing-bowling-alley-bar-murdered-three-deaf-friends-15-others.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T11:02:44.000Z" - }, - { - "title": "Revealed: The new tool for landing cheap 5-star hotel stays around the world - with prices from just \u00a390", - "link": "https://www.dailymail.co.uk/travel/article-12679203/The-new-tool-landing-cheap-5-star-hotel-stays-world-prices-just-90.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:59:12 GMT", - "enclosure": { - "length": "6544", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77071225-0-In_Colombo_Sri_Lanka_the_average_price_for_a_double_room_in_a_fi-a-6_1698400462191.jpg" - }, - "content": "If you're dreaming of a luxury holiday but funds are limited, you're in luck - Kayak's new '5-Star Steals' tool is designed to help travellers 'enjoy luxury stays for less'.", - "contentSnippet": "If you're dreaming of a luxury holiday but funds are limited, you're in luck - Kayak's new '5-Star Steals' tool is designed to help travellers 'enjoy luxury stays for less'.", - "guid": "https://www.dailymail.co.uk/travel/article-12679203/The-new-tool-landing-cheap-5-star-hotel-stays-world-prices-just-90.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:59:12.000Z" - }, - { - "title": "King Charles has gone from 'confused' young man to a monarch 'comfortable' in his own skin who is like 'the nation's grandfather' thanks to Queen Camilla, experts tell PALACE CONFIDENTIAL ahead of his 75th birthday", - "link": "https://www.dailymail.co.uk/femail/article-12679155/charles-palace-confidential-confused.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:53:59 GMT", - "enclosure": { - "length": "11519", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073851-0-image-a-8_1698399597036.jpg" - }, - "content": "Speaking in a special episode of Palace Confidential to celebrate the monarch's 75th birthday next month, Richard Kay shared how Charles has become 'very comfortable in his skin'.", - "contentSnippet": "Speaking in a special episode of Palace Confidential to celebrate the monarch's 75th birthday next month, Richard Kay shared how Charles has become 'very comfortable in his skin'.", - "guid": "https://www.dailymail.co.uk/femail/article-12679155/charles-palace-confidential-confused.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:53:59.000Z" - }, - { - "title": "The secrets of the world's best first-class cabin revealed: Travel expert goes behind the scenes at Singapore Airlines to discover how it creates its '5-star hotel in the sky' experience", - "link": "https://www.dailymail.co.uk/travel/article-12649559/The-secrets-worlds-best-class-cabin-revealed-Travel-expert-goes-scenes-Singapore-Airlines.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:53:55 GMT", - "enclosure": { - "length": "5460", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/76991523-0-image-a-18_1698394287333.jpg" - }, - "content": "It's been named the World's Best Airline at the 'Oscars of Aviation'. The secrets to its success? Coming right up, courtesy of The Points Guy.", - "contentSnippet": "It's been named the World's Best Airline at the 'Oscars of Aviation'. The secrets to its success? Coming right up, courtesy of The Points Guy.", - "guid": "https://www.dailymail.co.uk/travel/article-12649559/The-secrets-worlds-best-class-cabin-revealed-Travel-expert-goes-scenes-Singapore-Airlines.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:53:55.000Z" - }, - { - "title": "Posters of OnlyFans model who claims she was forced to pose naked after losing her job following collapse of the Middletons' family business are put up around the couple's Berkshire village", - "link": "https://www.dailymail.co.uk/news/article-12679251/onlyfans-model-hate-campaign-kate-middleton-family-party-pieces-bucklebury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:52:13 GMT", - "enclosure": { - "length": "4548", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072601-0-image-m-34_1698397737069.jpg" - }, - "content": "The outrageous signs have been put up around\u00a0Carole and Michael Middleton's home village of Bucklebury in Berkshire.", - "contentSnippet": "The outrageous signs have been put up around\u00a0Carole and Michael Middleton's home village of Bucklebury in Berkshire.", - "guid": "https://www.dailymail.co.uk/news/article-12679251/onlyfans-model-hate-campaign-kate-middleton-family-party-pieces-bucklebury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:52:13.000Z" - }, - { - "title": "Inside the luxury \u00a310m lighthouse which appeared on 'saddest ever' Grand Designs episode - as it's listed on the market again", - "link": "https://www.dailymail.co.uk/property/article-12679503/luxury-lighthouse-grand-designs-property-listing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:50:12 GMT", - "enclosure": { - "length": "8691", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77074025-0-image-a-4_1698400070842.jpg" - }, - "content": "Located on a clifftop near the idyllic seaside town of Croyde, Devon,\u00a0Chesil Cliff House, the white art-deco style lighthouse has been listed by estate agent Knight Frank, via Rightmove.", - "contentSnippet": "Located on a clifftop near the idyllic seaside town of Croyde, Devon,\u00a0Chesil Cliff House, the white art-deco style lighthouse has been listed by estate agent Knight Frank, via Rightmove.", - "guid": "https://www.dailymail.co.uk/property/article-12679503/luxury-lighthouse-grand-designs-property-listing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:50:12.000Z" - }, - { - "title": "London rental or plush prison? Letting agent devises a game comparing dire rooms to rent in the capital with cosy-looking jail cells around the world - but can YOU tell which is which?", - "link": "https://www.dailymail.co.uk/femail/article-12679149/London-rental-plush-prison-Letting-agent-devises-game-comparing-dire-rooms-rent-capital-cosy-looking-jail-cells-world-tell-which.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:46:01 GMT", - "enclosure": { - "length": "9555", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075633-0-image-a-16_1698402794035.jpg" - }, - "content": "A difficult game of spot-the-difference posted by London letting agent, Bob Makler, has left Londoners begging to stay in a luxurious prison cell instead.", - "contentSnippet": "A difficult game of spot-the-difference posted by London letting agent, Bob Makler, has left Londoners begging to stay in a luxurious prison cell instead.", - "guid": "https://www.dailymail.co.uk/femail/article-12679149/London-rental-plush-prison-Letting-agent-devises-game-comparing-dire-rooms-rent-capital-cosy-looking-jail-cells-world-tell-which.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:46:01.000Z" - }, - { - "title": "Revealed - Kim Kardashian's British 'manny': How Arsenal-loving Brit and his glamorous wife befriend the celebrity icon, partied with her in Dublin and took her kids to see the Gunners", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679353/kim-kardashian-british-manny-revealed-arsenal-wife-party-dublin-kids-red-devils.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:44:47 GMT", - "enclosure": { - "length": "10504", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074019-0-image-a-27_1698400985866.jpg" - }, - "content": "A British couple have become close friends with Kim Kardashian - after she befriended the glamorous wife on social jaunts then employed the husband as her children's 'manny', MailOnline can reveal.", - "contentSnippet": "A British couple have become close friends with Kim Kardashian - after she befriended the glamorous wife on social jaunts then employed the husband as her children's 'manny', MailOnline can reveal.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679353/kim-kardashian-british-manny-revealed-arsenal-wife-party-dublin-kids-red-devils.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:44:47.000Z" - }, - { - "title": "Nigel Farage slams 'whitewash' report that finds 'serious failings' in the way NatWest shut down his account at posh bank Coutts but rules decision was legal", - "link": "https://www.dailymail.co.uk/news/article-12679165/Nigel-Farage-slams-whitewash-report-NatWest-Coutts-debanking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:41:35 GMT", - "enclosure": { - "length": "9055", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/08/77069465-0-image-a-10_1698390916138.jpg" - }, - "content": "An independent review of the decision by NatWest Group ruled that while there were 'serious failings' in the way he was 'debanked', it was mainly a commercial decision.", - "contentSnippet": "An independent review of the decision by NatWest Group ruled that while there were 'serious failings' in the way he was 'debanked', it was mainly a commercial decision.", - "guid": "https://www.dailymail.co.uk/news/article-12679165/Nigel-Farage-slams-whitewash-report-NatWest-Coutts-debanking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:41:35.000Z" - }, - { - "title": "You can see the chatbot now: NHS patients get mental health treatment referrals from AI chatbot", - "link": "https://www.dailymail.co.uk/health/article-12671653/You-chatbot-NHS-patients-referred-AI-chatbot-mental-health-treatment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:39:35 GMT", - "enclosure": { - "length": "3912", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/02/77021315-0-image-m-7_1698370182400.jpg" - }, - "content": "NHS patients are now getting referrals for mental health treatment by an AI chatbot - but those behind the tech insist they're 'not trying to replace' therapists.", - "contentSnippet": "NHS patients are now getting referrals for mental health treatment by an AI chatbot - but those behind the tech insist they're 'not trying to replace' therapists.", - "guid": "https://www.dailymail.co.uk/health/article-12671653/You-chatbot-NHS-patients-referred-AI-chatbot-mental-health-treatment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:39:35.000Z" - }, - { - "title": "Luxury watch thefts on the rise - but \u00a33m of them were recovered last year by a team of specialist hunters, including this \u00a321k Rolex...", - "link": "https://www.dailymail.co.uk/money/beatthescammers/article-12676157/Luxury-watch-thefts-rise-1m-recovered-year-team-specialist-hunters-including-21k-Rolex.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:38:51 GMT", - "enclosure": { - "length": "5218", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77037435-0-image-a-3_1698335455704.jpg" - }, - "content": "The latest figures from The Watch Register show that there were 6,815 watches newly recorded as being missing or stolen in 2022, a 60 per cent rise from 2021.", - "contentSnippet": "The latest figures from The Watch Register show that there were 6,815 watches newly recorded as being missing or stolen in 2022, a 60 per cent rise from 2021.", - "guid": "https://www.dailymail.co.uk/money/beatthescammers/article-12676157/Luxury-watch-thefts-rise-1m-recovered-year-team-specialist-hunters-including-21k-Rolex.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:38:51.000Z" - }, - { - "title": "The cars most likely to be stolen: Motors most targeted by thieves are revealed and they're NOT luxury Ferraris or Porsches - but will YOUR insurance actually pay out?", - "link": "https://www.dailymail.co.uk/money/cars/article-12679221/cars-thieves-steal-revealed-not-ferrari-porsche-motor-thefts-britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:36:17 GMT", - "enclosure": { - "length": "12187", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77071695-0-image-m-57_1698396621679.jpg" - }, - "content": "Black Land Rovers are the now most commonly stolen vehicles ahead of blue Fords while cars made in 2016 are most likely to be taken, according to Tesco Bank's insurance data.", - "contentSnippet": "Black Land Rovers are the now most commonly stolen vehicles ahead of blue Fords while cars made in 2016 are most likely to be taken, according to Tesco Bank's insurance data.", - "guid": "https://www.dailymail.co.uk/money/cars/article-12679221/cars-thieves-steal-revealed-not-ferrari-porsche-motor-thefts-britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:36:17.000Z" - }, - { - "title": "I vant to drink your milk! 'Vampire cat' Toivo looks just like a furry Dracula", - "link": "https://www.dailymail.co.uk/news/article-12679397/My-vampire-cat-fangtastic-Toivo-oriental-shorthair-looks-just-like-furry-Dracula.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:35:13 GMT", - "enclosure": { - "length": "9618", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072171-0-image-a-6_1698397800653.jpg" - }, - "content": "The creepy cat from Finland can be seeing posing next to a pumpkin and spooking out his housemates with his jet-black fur and piercing golden eyes.", - "contentSnippet": "The creepy cat from Finland can be seeing posing next to a pumpkin and spooking out his housemates with his jet-black fur and piercing golden eyes.", - "guid": "https://www.dailymail.co.uk/news/article-12679397/My-vampire-cat-fangtastic-Toivo-oriental-shorthair-looks-just-like-furry-Dracula.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:35:13.000Z" - }, - { - "title": "Britain's being battered by a... poo-nami! 'Unprecedented' outbreak of diarrhoea-causing parasite that can spread in SWIMMING POOLS alarms health chiefs", - "link": "https://www.dailymail.co.uk/health/article-12679199/Britains-battered-poo-nami-Unprecedented-outbreak-diarrhoea-causing-parasite-spread-SWIMMING-POOLS-alarms-health-chiefs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:33:26 GMT", - "enclosure": { - "length": "11027", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77071335-0-image-m-16_1698397271214.jpg" - }, - "content": "UK health agencies suspect Brits are catching the bug while on sun-seeking holidays in countries like Spain with infected swimming pool water one of the likely routes of infection.", - "contentSnippet": "UK health agencies suspect Brits are catching the bug while on sun-seeking holidays in countries like Spain with infected swimming pool water one of the likely routes of infection.", - "guid": "https://www.dailymail.co.uk/health/article-12679199/Britains-battered-poo-nami-Unprecedented-outbreak-diarrhoea-causing-parasite-spread-SWIMMING-POOLS-alarms-health-chiefs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:33:26.000Z" - }, - { - "title": "'Super mafia' fears as leading figures from Italy's three most powerful mobs - 'Ndrangheta, Camorra and Cosa Nostra - are seen sharing a meal of wine and pasta together", - "link": "https://www.dailymail.co.uk/news/article-12679141/Mafia-Italy-powerful-Ndrangheta-Camorra-Cosa-Nostra.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:29:23 GMT", - "enclosure": { - "length": "8107", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77073431-0-image-m-29_1698400855217.jpg" - }, - "content": "There are fears Italy's\u00a0three most powerful mafia groups may have formed a formidable alliance after images emerge of leading figures sharing a meal together.", - "contentSnippet": "There are fears Italy's\u00a0three most powerful mafia groups may have formed a formidable alliance after images emerge of leading figures sharing a meal together.", - "guid": "https://www.dailymail.co.uk/news/article-12679141/Mafia-Italy-powerful-Ndrangheta-Camorra-Cosa-Nostra.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:29:23.000Z" - }, - { - "title": "Luxury black cab fit for a king includes a fridge, Apple TV and first class plane-style seats and could be yours for just... \u00a3141,331.25", - "link": "https://www.dailymail.co.uk/money/cars/article-12679247/Luxury-car-dealership-offers-139k-London-taxi-fitted-fridge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:25:12 GMT", - "enclosure": { - "length": "7288", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072671-0-image-a-4_1698397855336.jpg" - }, - "content": "Celebrities such as Stephen Fry, Kate Moss and Noel Edmonds all have owned former black London taxis because of the anonymity the vehicles provide when touring the capital.", - "contentSnippet": "Celebrities such as Stephen Fry, Kate Moss and Noel Edmonds all have owned former black London taxis because of the anonymity the vehicles provide when touring the capital.", - "guid": "https://www.dailymail.co.uk/money/cars/article-12679247/Luxury-car-dealership-offers-139k-London-taxi-fitted-fridge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:25:12.000Z" - }, - { - "title": "Tourist dies and three others are injured when 30ft-high glass walkway shatters at Indonesian beauty spot", - "link": "https://www.dailymail.co.uk/news/article-12679513/Tourist-dies-three-injured-glass-walkway-shatters-Indonesia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:24:55 GMT", - "enclosure": { - "length": "9399", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075123-0-image-m-18_1698402022825.jpg" - }, - "content": "The tragedy struck while 11 tourists from Cilacep, Central Java, were crossing the Geong bridge around 10am on Wednesday, some 30ft (10m) off the forest floor.", - "contentSnippet": "The tragedy struck while 11 tourists from Cilacep, Central Java, were crossing the Geong bridge around 10am on Wednesday, some 30ft (10m) off the forest floor.", - "guid": "https://www.dailymail.co.uk/news/article-12679513/Tourist-dies-three-injured-glass-walkway-shatters-Indonesia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:24:55.000Z" - }, - { - "title": "Gang which set up fake prescription delivery firm as a front for drug trafficking empire so it could get around lockdown restrictions during Covid pandemic is jailed", - "link": "https://www.dailymail.co.uk/news/article-12679373/Gang-jailed-creating-fake-company-drug-trafficking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:24:12 GMT", - "enclosure": { - "length": "6539", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073795-0-image-m-21_1698400185580.jpg" - }, - "content": "The organised crime group\u00a0crumbled after police searched a VW Scirrocco used by the gang's leader Kurt Bradshaw, 30, and found a haul of cannabis in bin liners plus.", - "contentSnippet": "The organised crime group\u00a0crumbled after police searched a VW Scirrocco used by the gang's leader Kurt Bradshaw, 30, and found a haul of cannabis in bin liners plus.", - "guid": "https://www.dailymail.co.uk/news/article-12679373/Gang-jailed-creating-fake-company-drug-trafficking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:24:12.000Z" - }, - { - "title": "Billboard advert for flooring firm with a woman next to slogan 'it's so easy to lay' is removed after campaigners said it 'perpetuates the culture of rape'", - "link": "https://www.dailymail.co.uk/news/article-12679245/Billboard-flooring-woman-slogan-easy-lay-removed-campaigners-culture-rape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:19:52 GMT", - "enclosure": { - "length": "7240", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77070905-0-image-m-13_1698396327666.jpg" - }, - "content": "Garage Floors Direct in Manningtree, Essex, put up an advert showing a woman in a 'tiny dress and high heels' in a garage, captioned with the slogan: 'It's so easy to lay'.", - "contentSnippet": "Garage Floors Direct in Manningtree, Essex, put up an advert showing a woman in a 'tiny dress and high heels' in a garage, captioned with the slogan: 'It's so easy to lay'.", - "guid": "https://www.dailymail.co.uk/news/article-12679245/Billboard-flooring-woman-slogan-easy-lay-removed-campaigners-culture-rape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:19:52.000Z" - }, - { - "title": "China releases clips of 'provocative' actions by USS Ralph Johnson", - "link": "https://www.dailymail.co.uk/galleries/article-12679687/China-releases-clips-provocative-actions-USS-Ralph-Johnson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:19:08 GMT", - "enclosure": { - "length": "5391", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77050089-0-image-a-94_1698401832548.jpg" - }, - "content": "China has released footage of 'provocative' actions taken by a US warship\u00a0in the South China Sea as tensions continue to escalate in the region between the two nations.", - "contentSnippet": "China has released footage of 'provocative' actions taken by a US warship\u00a0in the South China Sea as tensions continue to escalate in the region between the two nations.", - "guid": "https://www.dailymail.co.uk/galleries/article-12679687/China-releases-clips-provocative-actions-USS-Ralph-Johnson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:19:08.000Z" - }, - { - "title": "The Crown recreates one of the last ever photos of Princess Diana on Mohamed Al-Fayed's yacht just a week before her death - as Netflix also shares a glimpse of her romance with Dodi", - "link": "https://www.dailymail.co.uk/femail/article-12679255/The-Crown-recreates-one-photos-Princess-Diana-Mohamed-Al-Fayeds-yacht-just-week-death-Netflix-shares-glimpse-romance-Dodi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:03:36 GMT", - "enclosure": { - "length": "8717", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073779-0-image-a-18_1698399475197.jpg" - }, - "content": "The final series of the Netflix series features Diana in the South of France as it's set to recreate poignant moments from her final days.", - "contentSnippet": "The final series of the Netflix series features Diana in the South of France as it's set to recreate poignant moments from her final days.", - "guid": "https://www.dailymail.co.uk/femail/article-12679255/The-Crown-recreates-one-photos-Princess-Diana-Mohamed-Al-Fayeds-yacht-just-week-death-Netflix-shares-glimpse-romance-Dodi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:03:36.000Z" - }, - { - "title": "True or false? EVs are cheaper to service, maintain and repair than petrol and diesel cars", - "link": "https://www.dailymail.co.uk/money/electriccars/article-12671771/True-false-EVs-cheaper-service-maintain-repair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 10:00:35 GMT", - "enclosure": { - "length": "11881", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77071525-0-image-a-53_1698395906585.jpg" - }, - "content": "There is a general consensus that electric vehicles have cheaper servicing and maintenance costs than petrol and diesel cars because there are fewer moving parts to go wrong.", - "contentSnippet": "There is a general consensus that electric vehicles have cheaper servicing and maintenance costs than petrol and diesel cars because there are fewer moving parts to go wrong.", - "guid": "https://www.dailymail.co.uk/money/electriccars/article-12671771/True-false-EVs-cheaper-service-maintain-repair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T10:00:35.000Z" - }, - { - "title": "Wilko will return to the high street! The Range announces five new stores will open before Christmas - after discount chain collapsed into administration", - "link": "https://www.dailymail.co.uk/news/article-12679039/Wilko-high-street-stores-locations-Range-UK-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:58:37 GMT", - "enclosure": { - "length": "10094", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068449-0-A_Wilko_store_in_Slough_Berkshire_which_was_one_of_the_400_shops-a-11_1698388137004.jpg" - }, - "content": "The first two new Wilko stores will be in Plymouth and Exeter in Devon, followed by two unidentified sites in the South East and one in the North to be revealed 'imminently'.", - "contentSnippet": "The first two new Wilko stores will be in Plymouth and Exeter in Devon, followed by two unidentified sites in the South East and one in the North to be revealed 'imminently'.", - "guid": "https://www.dailymail.co.uk/news/article-12679039/Wilko-high-street-stores-locations-Range-UK-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:58:37.000Z" - }, - { - "title": "John Lennon murder witnesses will speak publicly for the first time about the night the Beatle legend was shot dead by Mark David Chapman in new Apple TV documentary about killing", - "link": "https://www.dailymail.co.uk/news/article-12679319/john-lennon-murder-witnesses-speak-mark-david-chaptman-apple-tv-documentary-beatles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:57:42 GMT", - "enclosure": { - "length": "6227", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77072025-0-image-m-20_1698396909020.jpg" - }, - "content": "A new documentary on the murder by Apple TV+ titled 'John Lennon: Murder Without a Trial' will reveal previously unseen crime scene photographs that shed light on the killing of the Beatles star.", - "contentSnippet": "A new documentary on the murder by Apple TV+ titled 'John Lennon: Murder Without a Trial' will reveal previously unseen crime scene photographs that shed light on the killing of the Beatles star.", - "guid": "https://www.dailymail.co.uk/news/article-12679319/john-lennon-murder-witnesses-speak-mark-david-chaptman-apple-tv-documentary-beatles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:57:42.000Z" - }, - { - "title": "Would YOU survive a zombie apocalypse? Scientists reveal how long it would take a plague to spread through a city - with terrifying results", - "link": "https://www.dailymail.co.uk/sciencetech/article-12679427/Would-survive-zombie-apocalypse-Scientists-reveal-long-plague-spread-city-terrifying-results.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:46:49 GMT", - "enclosure": { - "length": "7486", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073473-0-image-m-136_1698399319125.jpg" - }, - "content": "What would happen if a zombie takeover happened in the real world? In a new study, researchers at Aalto University set out to answer this question - with terrifying results.", - "contentSnippet": "What would happen if a zombie takeover happened in the real world? In a new study, researchers at Aalto University set out to answer this question - with terrifying results.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12679427/Would-survive-zombie-apocalypse-Scientists-reveal-long-plague-spread-city-terrifying-results.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:46:49.000Z" - }, - { - "title": "I was born with one hand it makes dating difficult - men used to ghost me because of my disability but now I'm proud to look different", - "link": "https://www.dailymail.co.uk/femail/article-12679263/one-handed-woman-ghosted-men-disability-embarrassed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:45:53 GMT", - "enclosure": { - "length": "9616", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072815-0-image-a-48_1698398172914.jpg" - }, - "content": "Leona Brown, 31, from Middlesbrough, was born with Symbrachydactyly, which affects a single upper limb and can cause some fingers to be undeveloped or not to develop at all.", - "contentSnippet": "Leona Brown, 31, from Middlesbrough, was born with Symbrachydactyly, which affects a single upper limb and can cause some fingers to be undeveloped or not to develop at all.", - "guid": "https://www.dailymail.co.uk/femail/article-12679263/one-handed-woman-ghosted-men-disability-embarrassed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:45:53.000Z" - }, - { - "title": "How many fines did YOUR council dish out to drivers? Map reveals which London authorities handed out most penalties - as figures show 7.6million were issued last year", - "link": "https://www.dailymail.co.uk/news/article-12678997/London-penalty-charge-notices-fines-Sadiq-Khan-TfL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:41:00 GMT", - "enclosure": { - "length": "8410", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77070957-0-image-m-12_1698394338568.jpg" - }, - "content": "Some 7,599,875 penalty charge notices were issued by Transport for London (TfL) and the capital's 33 councils in 2022/23, up 1.7 per cent on the previous 12 months.", - "contentSnippet": "Some 7,599,875 penalty charge notices were issued by Transport for London (TfL) and the capital's 33 councils in 2022/23, up 1.7 per cent on the previous 12 months.", - "guid": "https://www.dailymail.co.uk/news/article-12678997/London-penalty-charge-notices-fines-Sadiq-Khan-TfL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:41:00.000Z" - }, - { - "title": "Rishi Sunak warned China could send 'very nasty, dodgy people' to Britain for next week's AI summit - as Cabinet minister insists it's not 'embarrassing' that US, German, French and Canadian leaders might stay away", - "link": "https://www.dailymail.co.uk/news/article-12679519/Rishi-Sunak-warned-China-send-nasty-dodgy-people-Britain-weeks-AI-summit-Cabinet-minister-insists-not-embarrassing-German-French-Canadian-leaders-stay-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:38:41 GMT", - "enclosure": { - "length": "6359", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77034349-0-image-m-24_1698399418399.jpg" - }, - "content": "Former Tory leader Sir Iain Duncan Smith continued a backlash against the Prime Minister's decision to allow representatives from Beijing to attend the gathering.", - "contentSnippet": "Former Tory leader Sir Iain Duncan Smith continued a backlash against the Prime Minister's decision to allow representatives from Beijing to attend the gathering.", - "guid": "https://www.dailymail.co.uk/news/article-12679519/Rishi-Sunak-warned-China-send-nasty-dodgy-people-Britain-weeks-AI-summit-Cabinet-minister-insists-not-embarrassing-German-French-Canadian-leaders-stay-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:38:41.000Z" - }, - { - "title": "Father and his 14-year-old son are among 18 Maine mass shooting victims after pair were gunned down at Lewiston bowling alley - where manager was also killed", - "link": "https://www.dailymail.co.uk/news/article-12676291/Maine-Lewiston-shooting-victims.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:37:09 GMT", - "enclosure": { - "length": "7318", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/04/77062611-0-image-m-8_1698377844474.jpg" - }, - "content": "Bob Violette, 76, was killed in the massacre that erupted inside Sparetime Recreation bowling alley and Schemengees Bar and Grille , according to his daughter-in-law Cassandra.", - "contentSnippet": "Bob Violette, 76, was killed in the massacre that erupted inside Sparetime Recreation bowling alley and Schemengees Bar and Grille , according to his daughter-in-law Cassandra.", - "guid": "https://www.dailymail.co.uk/news/article-12676291/Maine-Lewiston-shooting-victims.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:37:09.000Z" - }, - { - "title": "JustGiving page raises more than \u00a352,000 for two Met Police officers sacked over stop and search of Team GB star Bianca Williams and her athlete partner Ricardo Dos Santos", - "link": "https://www.dailymail.co.uk/news/article-12677007/just-giving-page-raises-money-met-officers-sacked-stop-search-bianca-williams-partner-ricardo-dos-santos.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:31:40 GMT", - "enclosure": { - "length": "10305", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/19/77046709-0-image-m-28_1698344767348.jpg" - }, - "content": "The Portuguese Olympian, 28, and Team GB world championship medallist, 29, were pulled over and handcuffed while their three-month-old baby son, Zuri, was in the back of their car on July 4, 2020.", - "contentSnippet": "The Portuguese Olympian, 28, and Team GB world championship medallist, 29, were pulled over and handcuffed while their three-month-old baby son, Zuri, was in the back of their car on July 4, 2020.", - "guid": "https://www.dailymail.co.uk/news/article-12677007/just-giving-page-raises-money-met-officers-sacked-stop-search-bianca-williams-partner-ricardo-dos-santos.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:31:40.000Z" - }, - { - "title": "Tense moment Chinese fighter jet 'comes close to COLLIDING' with American B-52 bomber by just TEN FEET over South China Sea, sparking US fury", - "link": "https://www.dailymail.co.uk/news/article-12678957/Chinese-jet-came-close-bomber-south-china-sea.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:21:40 GMT", - "enclosure": { - "length": "4646", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068515-0-image-m-49_1698388233481.jpg" - }, - "content": "The revelation, offered by the US Indo-Pacific Command in a statement Thursday, comes as\u00a0part of what American officials have described as risky behavior by Chinese military aircraft.", - "contentSnippet": "The revelation, offered by the US Indo-Pacific Command in a statement Thursday, comes as\u00a0part of what American officials have described as risky behavior by Chinese military aircraft.", - "guid": "https://www.dailymail.co.uk/news/article-12678957/Chinese-jet-came-close-bomber-south-china-sea.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:21:40.000Z" - }, - { - "title": "Revealed: The surprising ways you're ALREADY using AI in your day-to-day life", - "link": "https://www.dailymail.co.uk/sciencetech/article-12679351/The-surprising-ways-youre-using-AI-day-day-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:19:49 GMT", - "enclosure": { - "length": "5754", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77071597-0-image-m-114_1698396079786.jpg" - }, - "content": "Experts from the Institution of Engineering and Technology surveyed over 2,000 Britons, and found that, despite its everyday use, over half of us admit to be nervous about a future with AI.", - "contentSnippet": "Experts from the Institution of Engineering and Technology surveyed over 2,000 Britons, and found that, despite its everyday use, over half of us admit to be nervous about a future with AI.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12679351/The-surprising-ways-youre-using-AI-day-day-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:19:49.000Z" - }, - { - "title": "Milton Keynes - the 1960s New Town showing how we may live in the future", - "link": "https://www.dailymail.co.uk/property/article-12676805/Milton-Keynes-1960s-New-Town-showing-live-future.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:19:38 GMT", - "enclosure": { - "length": "8453", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072791-0-image-a-14_1698398096430.jpg" - }, - "content": "What happens there now often rolls out to the UK in the future - but what does that mean for this city's housing market and those who live there?", - "contentSnippet": "What happens there now often rolls out to the UK in the future - but what does that mean for this city's housing market and those who live there?", - "guid": "https://www.dailymail.co.uk/property/article-12676805/Milton-Keynes-1960s-New-Town-showing-live-future.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:19:38.000Z" - }, - { - "title": "Full list of Wilko stores reopening as High Street retailer announces new shops before Christmas - is there one near you?", - "link": "https://www.dailymail.co.uk/news/article-12679275/wilko-stores-reopening-high-street-retailer-new-shops-christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:14:52 GMT", - "enclosure": { - "length": "7455", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77070825-0-image-m-12_1698396474134.jpg" - }, - "content": "Wilko has announced it will open shops in a number new locations before the start of Christmas 2023. The chain seemingly ceased operations for the final time on October 8.", - "contentSnippet": "Wilko has announced it will open shops in a number new locations before the start of Christmas 2023. The chain seemingly ceased operations for the final time on October 8.", - "guid": "https://www.dailymail.co.uk/news/article-12679275/wilko-stores-reopening-high-street-retailer-new-shops-christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:14:52.000Z" - }, - { - "title": "Taylor Swift SLAMS speculation she is bisexual in prologue for 1989 re-record after THOSE Karlie Kloss rumors as she reflects on 'swearing off dating' in her mid-twenties due to harsh judgement", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12677863/Taylor-Swift-denies-bisexual-Karlie-Kloss-rumors-swearing-dating.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 09:07:57 GMT", - "enclosure": { - "length": "10498", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77052683-0-image-a-109_1698353918381.jpg" - }, - "content": "Taylor Swift penned an incredibly vulnerable prologue for her upcoming album, 1989 (Taylor's Version), in which she opens up about her sexuality and dating history.", - "contentSnippet": "Taylor Swift penned an incredibly vulnerable prologue for her upcoming album, 1989 (Taylor's Version), in which she opens up about her sexuality and dating history.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12677863/Taylor-Swift-denies-bisexual-Karlie-Kloss-rumors-swearing-dating.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T09:07:57.000Z" - }, - { - "title": "Ultimate, expert-backed guide to future-proof your HEART and keep it healthy in old age", - "link": "https://www.dailymail.co.uk/health/article-12645749/Ultimate-expert-backed-guide-future-proof-HEART-healthy-old-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:29:15 GMT", - "enclosure": { - "length": "7918", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/23/15/76896199-0-image-a-19_1698072799733.jpg" - }, - "content": "Cardiovascular disease - which includes all of the heart and circulation such as coronary heart disease, stroke and blood vessel diseases\u00a0- is among the leading causes of death and disability in the UK.", - "contentSnippet": "Cardiovascular disease - which includes all of the heart and circulation such as coronary heart disease, stroke and blood vessel diseases\u00a0- is among the leading causes of death and disability in the UK.", - "guid": "https://www.dailymail.co.uk/health/article-12645749/Ultimate-expert-backed-guide-future-proof-HEART-healthy-old-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:29:15.000Z" - }, - { - "title": "Fury over 'rapacious' 26% air traffic control charge hike that 'will leave passengers with higher fares for YEARS': Loganair chief blasts watchdog after it allowed NATS to increase its fees despite IT meltdown that left thousands stranded", - "link": "https://www.dailymail.co.uk/news/article-12678983/Air-traffic-control-hike-NATS-Loganair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:27:51 GMT", - "enclosure": { - "length": "7175", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068547-0-image-m-4_1698388828972.jpg" - }, - "content": "Loganair, which flies between Scottish airports and other parts of the UK, recently said something had gone 'badly wrong' in the CAA when it approved 'rapacious' new fees by Nats.", - "contentSnippet": "Loganair, which flies between Scottish airports and other parts of the UK, recently said something had gone 'badly wrong' in the CAA when it approved 'rapacious' new fees by Nats.", - "guid": "https://www.dailymail.co.uk/news/article-12678983/Air-traffic-control-hike-NATS-Loganair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:27:51.000Z" - }, - { - "title": "Prince Albert of Monaco takes a solo trip to the US to plant a tree in Philadelphia while Charlene stays at home (and he might have popped to New York to visit son Alexandre too!)", - "link": "https://www.dailymail.co.uk/femail/article-12679069/Prince-Albert-Monaco-Philadelphia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:26:11 GMT", - "enclosure": { - "length": "11048", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/08/77069447-0-image-a-13_1698390777794.jpg" - }, - "content": "The billionaire monarch, 65, flew to Pennsylvania to meet with\u00a0Orlando Rendon the Commissioner of Philadelphia Parks & Recreation.", - "contentSnippet": "The billionaire monarch, 65, flew to Pennsylvania to meet with\u00a0Orlando Rendon the Commissioner of Philadelphia Parks & Recreation.", - "guid": "https://www.dailymail.co.uk/femail/article-12679069/Prince-Albert-Monaco-Philadelphia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:26:11.000Z" - }, - { - "title": "How Britain's fallen out of love with red meat (as well as tea, potatoes, bread and milk!): Fascinating charts show how diets have drastically changed since the 70s - and we now eat up to 80% LESS beef, pork and lamb", - "link": "https://www.dailymail.co.uk/health/article-12670203/Britains-red-meat-tea-potatoes-bread-milk-charts-diets-drastically-changed-70s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:20:41 GMT", - "enclosure": { - "length": "9781", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/15/76995659-0-image-a-8_1698328886532.jpg" - }, - "content": "EXCL: Red meat, potatoes and bread are off the menu in modern Britian, replaced by chicken, fish and fruit as data shows how the nation's dietary preferences have changed since the 70s.", - "contentSnippet": "EXCL: Red meat, potatoes and bread are off the menu in modern Britian, replaced by chicken, fish and fruit as data shows how the nation's dietary preferences have changed since the 70s.", - "guid": "https://www.dailymail.co.uk/health/article-12670203/Britains-red-meat-tea-potatoes-bread-milk-charts-diets-drastically-changed-70s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:20:41.000Z" - }, - { - "title": "iPhone users say Apple's iOS 17.1 update is RUINING their battery life, with reports of charge draining within hours - here's what to do if your phone is affected", - "link": "https://www.dailymail.co.uk/sciencetech/article-12679253/iPhone-users-say-Apples-iOS-17-1-update-RUINING-battery-life-reports-charge-draining-hours-heres-phone-affected.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:19:25 GMT", - "enclosure": { - "length": "3612", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/08/77070295-0-image-m-96_1698392890041.jpg" - }, - "content": "While many iPhone users rushed to install the iOS 17.1 update, new reports may have you delaying the download.", - "contentSnippet": "While many iPhone users rushed to install the iOS 17.1 update, new reports may have you delaying the download.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12679253/iPhone-users-say-Apples-iOS-17-1-update-RUINING-battery-life-reports-charge-draining-hours-heres-phone-affected.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:19:25.000Z" - }, - { - "title": "The Duchy of Cate: How actress Cate Blanchett and her husband have spent nearly \u00a33million on TWO prime plots in Cornwall's 'Hollywood-On-Sea' - but furious locals accuse star of 'damaging coastal wildlife habitat' with sprawling eco-home", - "link": "https://www.dailymail.co.uk/news/article-12674423/Cate-Blanchett-husband-demolishing-cottage-Cornwalls-Hollywood-Sea-replaced-eco-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:14:36 GMT", - "enclosure": { - "length": "10191", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/08/77021753-0-image-a-30_1698306220422.jpg" - }, - "content": "EXCLUSIVE: MailOnline can reveal the actress, 54, and Andrew Upton, 56, bought an old cottage\u00a0in Mawgan Porth for \u00a31.6million in 2020 and a year later paid \u00a31.25million for a plot of land next to it.", - "contentSnippet": "EXCLUSIVE: MailOnline can reveal the actress, 54, and Andrew Upton, 56, bought an old cottage\u00a0in Mawgan Porth for \u00a31.6million in 2020 and a year later paid \u00a31.25million for a plot of land next to it.", - "guid": "https://www.dailymail.co.uk/news/article-12674423/Cate-Blanchett-husband-demolishing-cottage-Cornwalls-Hollywood-Sea-replaced-eco-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:14:36.000Z" - }, - { - "title": "Moment top Hamas spokesman storms out of BBC interview after being asked how terror group justified killing Israeli families 'as they slept'", - "link": "https://www.dailymail.co.uk/news/article-12678281/Hamas-spokesman-storms-bbc-interview-asked-justify-killing-israeli-families.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:12:34 GMT", - "enclosure": { - "length": "5054", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/01/77059559-0-image-a-13_1698366775622.jpg" - }, - "content": "The deputy foreign minister for Hamas in Gaza, Ghazi Hamad, was being grilled by the BBC's Middle East correspondent Hugo Bachega about the barbaric butchering of up to 1,500 Israelis.", - "contentSnippet": "The deputy foreign minister for Hamas in Gaza, Ghazi Hamad, was being grilled by the BBC's Middle East correspondent Hugo Bachega about the barbaric butchering of up to 1,500 Israelis.", - "guid": "https://www.dailymail.co.uk/news/article-12678281/Hamas-spokesman-storms-bbc-interview-asked-justify-killing-israeli-families.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:12:34.000Z" - }, - { - "title": "I'm an elegance coach and I blame celebrities for making sloppy fashion cool - but it can make the average person feel\u00a0worse about themselves", - "link": "https://www.dailymail.co.uk/femail/article-12663751/Im-elegance-coach-blame-celebrities-making-sloppy-fashion-cool-make-average-person-feel-worse-themselves.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:10:37 GMT", - "enclosure": { - "length": "11489", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/23/22/76911285-0-image-a-66_1698097898260.jpg" - }, - "content": "Anna Bey asked why people 'dress so poorly' these days, and criticised the 'norm' of wearing casual clothes in public. The lifestyle guru splits her time between London and Geneva.", - "contentSnippet": "Anna Bey asked why people 'dress so poorly' these days, and criticised the 'norm' of wearing casual clothes in public. The lifestyle guru splits her time between London and Geneva.", - "guid": "https://www.dailymail.co.uk/femail/article-12663751/Im-elegance-coach-blame-celebrities-making-sloppy-fashion-cool-make-average-person-feel-worse-themselves.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:10:37.000Z" - }, - { - "title": "I want to rehome my dog after he snapped at my twins' faces - but my partner is REFUSING to agree", - "link": "https://www.dailymail.co.uk/femail/article-12654217/I-want-rehome-dog-snapped-twins-faces-partner-REFUSING-agree.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:09:02 GMT", - "enclosure": { - "length": "6162", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/20/16/76808635-0-image-a-19_1697817203771.jpg" - }, - "content": "An anonymous British woman took to parenting forum Mumsnet to explain the delicate situation. Her\u00a0Border Collie has been terrorising her household-of-four for two years.", - "contentSnippet": "An anonymous British woman took to parenting forum Mumsnet to explain the delicate situation. Her\u00a0Border Collie has been terrorising her household-of-four for two years.", - "guid": "https://www.dailymail.co.uk/femail/article-12654217/I-want-rehome-dog-snapped-twins-faces-partner-REFUSING-agree.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:09:02.000Z" - }, - { - "title": "Boy, five, was given a 93% chance of surviving cancer only to relapse THREE times - as his family fly to the US and try to raise \u00a31m for highly experimental treatment in 'last chance' to save him", - "link": "https://www.dailymail.co.uk/news/article-12654291/Dillan-Ramsey-Aksehir-battling-Leukemia-treatment-US.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:08:10 GMT", - "enclosure": { - "length": "6860", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/14/77026521-0-image-m-65_1698325209740.jpg" - }, - "content": "Little Dillan Ramsey-Aksehir was diagnosed with Leukemia at age one\u00a0in May 2020 and\u00a0has since been battling the deadly disease. Now the five-year-old from London needs treatment in the US.", - "contentSnippet": "Little Dillan Ramsey-Aksehir was diagnosed with Leukemia at age one\u00a0in May 2020 and\u00a0has since been battling the deadly disease. Now the five-year-old from London needs treatment in the US.", - "guid": "https://www.dailymail.co.uk/news/article-12654291/Dillan-Ramsey-Aksehir-battling-Leukemia-treatment-US.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:08:10.000Z" - }, - { - "title": "And you thought your boss was bad! Employers appalling attempts at making their workers feel appreciated are revealed", - "link": "https://www.dailymail.co.uk/femail/article-12675899/And-thought-boss-bad-Employers-appalling-attempts-making-workers-feel-appreciated-revealed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:07:12 GMT", - "enclosure": { - "length": "9447", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/18/77044989-0-image-a-56_1698342360869.jpg" - }, - "content": "People from around the world have shared their employers' dismal attempts to make them feel appreciated and Bored Panda collated the very best into a hilarious online gallery.", - "contentSnippet": "People from around the world have shared their employers' dismal attempts to make them feel appreciated and Bored Panda collated the very best into a hilarious online gallery.", - "guid": "https://www.dailymail.co.uk/femail/article-12675899/And-thought-boss-bad-Employers-appalling-attempts-making-workers-feel-appreciated-revealed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:07:12.000Z" - }, - { - "title": "I'm a fund manager: Why Hargreaves Lansdown's Steve Clayton backs tech but not gold", - "link": "https://www.dailymail.co.uk/money/investing/article-12665969/Im-fund-manager-Hargreaves-Lansdowns-Steve-Clayton-backs-tech-not-gold.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 08:04:02 GMT", - "enclosure": { - "length": "10061", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/24/17/76945997-0-image-m-10_1698164980781.jpg" - }, - "content": "Each month, This is Money speaks with a senior fund or investment manager and puts them to task with a dozen quickfire question about where they would invest right now.", - "contentSnippet": "Each month, This is Money speaks with a senior fund or investment manager and puts them to task with a dozen quickfire question about where they would invest right now.", - "guid": "https://www.dailymail.co.uk/money/investing/article-12665969/Im-fund-manager-Hargreaves-Lansdowns-Steve-Clayton-backs-tech-not-gold.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T08:04:02.000Z" - }, - { - "title": "Hilarious moment toddler driving a bright pink toy car is pulled over by cops for 'exceeding the speed limit' and brushing her teeth at the wheel", - "link": "https://www.dailymail.co.uk/news/article-12678817/Toddler-pink-toy-car-cops-speed-limit-teeth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 07:53:08 GMT", - "enclosure": { - "length": "9563", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/06/77066491-0-image-a-27_1698382851888.jpg" - }, - "content": "Two-year-old Rose Fern broke the law as she was pulled over by the police while brushing her teeth behind the wheel of her hot pink, battery-operated mini car in Okarche, Oklahoma.", - "contentSnippet": "Two-year-old Rose Fern broke the law as she was pulled over by the police while brushing her teeth behind the wheel of her hot pink, battery-operated mini car in Okarche, Oklahoma.", - "guid": "https://www.dailymail.co.uk/news/article-12678817/Toddler-pink-toy-car-cops-speed-limit-teeth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T07:53:08.000Z" - }, - { - "title": "Dragon's Den star Sara Davies' firm is \u00a31million in the red as entrepreneur continues to feel the effects of Covid", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679037/Dragons-Den-star-Sara-Davies-firm-1million-red-entrepreneur-continues-feel-effects-Covid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 07:49:42 GMT", - "enclosure": { - "length": "11278", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068947-0-image-a-4_1698389563216.jpg" - }, - "content": "But all is not well at Sara Davies' own company Crafter's Companion which is more than \u00a31million in the red.", - "contentSnippet": "But all is not well at Sara Davies' own company Crafter's Companion which is more than \u00a31million in the red.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679037/Dragons-Den-star-Sara-Davies-firm-1million-red-entrepreneur-continues-feel-effects-Covid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T07:49:42.000Z" - }, - { - "title": "It's the John Fury show! Tyson's dad strips off, calls out Mike Tyson for a fight and gets involved in the face-off at press conference with Francis Ngannou ahead of the big fight", - "link": "https://www.dailymail.co.uk/sport/boxing/article-12677281/Tyson-Fury-brags-Francis-Ngannous-punch-ZERO-power-final-press-conference-Battle-Baddest-John-Fury-steals-calls-MIKE-TYSON-Riyadh.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 07:20:36 GMT", - "enclosure": { - "length": "11254", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/20/77048771-0-image-m-20_1698348936976.jpg" - }, - "content": "CHARLOTTE DALY: John Fury and Mike Tyson stole the show, exchanging verbal blows before the Gypsy King's father charged down the stage to square up to Iron Mike.", - "contentSnippet": "CHARLOTTE DALY: John Fury and Mike Tyson stole the show, exchanging verbal blows before the Gypsy King's father charged down the stage to square up to Iron Mike.", - "guid": "https://www.dailymail.co.uk/sport/boxing/article-12677281/Tyson-Fury-brags-Francis-Ngannous-punch-ZERO-power-final-press-conference-Battle-Baddest-John-Fury-steals-calls-MIKE-TYSON-Riyadh.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T07:20:36.000Z" - }, - { - "title": "What really happens when we die? Palliative care doctor on a 'mission to take away the fear' reveals the stages the body goes through", - "link": "https://www.dailymail.co.uk/femail/article-12676177/What-really-happens-die-Palliative-care-doctor-mission-away-fear-reveals-stages-body-goes-through.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 07:15:51 GMT", - "enclosure": { - "length": "10596", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77038581-0-image-a-18_1698333308282.jpg" - }, - "content": "Cheshire-born doctor Dr Kathryn Mannix, 64, appeared on BBC Woman's Hour alongside host Emma Barnett ,\u00a0to discuss\u00a0her new short animation 'Dying for Beginners'.", - "contentSnippet": "Cheshire-born doctor Dr Kathryn Mannix, 64, appeared on BBC Woman's Hour alongside host Emma Barnett ,\u00a0to discuss\u00a0her new short animation 'Dying for Beginners'.", - "guid": "https://www.dailymail.co.uk/femail/article-12676177/What-really-happens-die-Palliative-care-doctor-mission-away-fear-reveals-stages-body-goes-through.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T07:15:51.000Z" - }, - { - "title": "Which formidable female laid down the rules in no uncertain terms: 'You are a member of the British Royal Family,' she declared. 'We are never tired and we all love hospitals'?", - "link": "https://www.dailymail.co.uk/femail/article-12640771/Mary-royals-never-tired-love-hospitals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 07:10:15 GMT", - "enclosure": { - "length": "11396", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/18/09/76696527-0-image-a-13_1697616567341.jpg" - }, - "content": "If Queen Elizabeth II looked to her father and his sense of duty, there was other example on hand - someone who laid down the template for how royals should behave...", - "contentSnippet": "If Queen Elizabeth II looked to her father and his sense of duty, there was other example on hand - someone who laid down the template for how royals should behave...", - "guid": "https://www.dailymail.co.uk/femail/article-12640771/Mary-royals-never-tired-love-hospitals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T07:10:15.000Z" - }, - { - "title": "Inside Little Hong Kong: How a single London borough is attracting thousands of families and students fleeing China as influencers use photos of Poundland, Starbucks and Lidl to entice others to the area", - "link": "https://www.dailymail.co.uk/news/article-12676059/Inside-Little-Hong-Kong-single-London-borough-attracting-thousands-families-students-fleeing-China-influencers-use-photos-Poundland-Starbucks-Lidl-entice-area.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 07:08:37 GMT", - "enclosure": { - "length": "6725", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77033919-0-image-m-53_1698335414692.jpg" - }, - "content": "The south London borough of Sutton has become a haven for thousands of Hong Kong residents who have moved to Britain following China's crackdown of the financial hub in 2020.", - "contentSnippet": "The south London borough of Sutton has become a haven for thousands of Hong Kong residents who have moved to Britain following China's crackdown of the financial hub in 2020.", - "guid": "https://www.dailymail.co.uk/news/article-12676059/Inside-Little-Hong-Kong-single-London-borough-attracting-thousands-families-students-fleeing-China-influencers-use-photos-Poundland-Starbucks-Lidl-entice-area.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T07:08:37.000Z" - }, - { - "title": "I'm a vicar by day and barman by night: Beer-loving reverend splits his time running a church and pulling pints at the pub (and reveals his favourite lager is a brew called Hell)", - "link": "https://www.dailymail.co.uk/news/article-12679015/Berr-loving-vicar-pulls-pints-runs-church.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 06:59:35 GMT", - "enclosure": { - "length": "11912", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068153-0-image-a-5_1698387615159.jpg" - }, - "content": "The father-of-two works two nights a week at The Crown Inn in Claverley, Shropshire - with his pay going towards raising money for new heating and lighting at All Saints Church.", - "contentSnippet": "The father-of-two works two nights a week at The Crown Inn in Claverley, Shropshire - with his pay going towards raising money for new heating and lighting at All Saints Church.", - "guid": "https://www.dailymail.co.uk/news/article-12679015/Berr-loving-vicar-pulls-pints-runs-church.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T06:59:35.000Z" - }, - { - "title": "EXCLUSIVE: Brad Pitt exposes Angelina Jolie's friendly relationship with billionaire vodka baron he accused of conspiring with his ex-wife in bitter winery battle - revealing email Stoli mogul sent to actress inviting her to stay at his Scottish castle", - "link": "https://www.dailymail.co.uk/femail/article-12676187/Brad-Pitt-Angelina-Jolie-Yuri-Shefler-winery-castle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 06:55:47 GMT", - "enclosure": { - "length": "10161", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/23/77057317-0-image-a-13_1698360169945.jpg" - }, - "content": "Shefler, 56, told Jolie, 48, that she should come and visit him at his lavish home - months after she signed over her half of the vineyard she previously owned with Pitt to him\u00a0for $8.5 million.", - "contentSnippet": "Shefler, 56, told Jolie, 48, that she should come and visit him at his lavish home - months after she signed over her half of the vineyard she previously owned with Pitt to him\u00a0for $8.5 million.", - "guid": "https://www.dailymail.co.uk/femail/article-12676187/Brad-Pitt-Angelina-Jolie-Yuri-Shefler-winery-castle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T06:55:47.000Z" - }, - { - "title": "Israeli comedians ruthlessly mock BBC reporting of Al-Ahli hospital bombing in Gaza: Satirical show pokes fun at the Beeb with report by fake journalist 'Harry Whiteguilt' - after broadcaster was slammed for its coverage of blast", - "link": "https://www.dailymail.co.uk/news/article-12678373/Israeli-comedians-ruthlessly-mock-BBC-reporting-Al-Ahli-hospital-bombing-Gaza-Satirical-pokes-fun-Beeb-report-fake-journalist-Harry-Whiteguilt-broadcaster-slammed-coverage-blast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 06:53:11 GMT", - "enclosure": { - "length": "6076", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/02/77060967-0-image-m-60_1698368698872.jpg" - }, - "content": "In the satirical show, a fake BBC newsreader said: 'Good evening from London, here are some news from the war in Gaza. Israel has bombed a hospital killing hundreds of innocent people.'", - "contentSnippet": "In the satirical show, a fake BBC newsreader said: 'Good evening from London, here are some news from the war in Gaza. Israel has bombed a hospital killing hundreds of innocent people.'", - "guid": "https://www.dailymail.co.uk/news/article-12678373/Israeli-comedians-ruthlessly-mock-BBC-reporting-Al-Ahli-hospital-bombing-Gaza-Satirical-pokes-fun-Beeb-report-fake-journalist-Harry-Whiteguilt-broadcaster-slammed-coverage-blast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T06:53:11.000Z" - }, - { - "title": "Influencer found guilty by jury of sex attack on 14-year-old boy - to shocked gasps from her supporters", - "link": "https://www.dailymail.co.uk/news/article-12678415/Influencer-guilty-jury-sex-attack-14-year-old-boy-shocked-gasps-supporters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 06:29:17 GMT", - "enclosure": { - "length": "4052", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/02/wire-77061411-1698368456-950_154x115.jpg" - }, - "content": "A social media influencer has been found guilty of sexually assaulting a 14-year-old boy twice after she admitted she was attracted to him and said she saw him as an adult.", - "contentSnippet": "A social media influencer has been found guilty of sexually assaulting a 14-year-old boy twice after she admitted she was attracted to him and said she saw him as an adult.", - "guid": "https://www.dailymail.co.uk/news/article-12678415/Influencer-guilty-jury-sex-attack-14-year-old-boy-shocked-gasps-supporters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T06:29:17.000Z" - }, - { - "title": "I'm a mother with ADHD - staying on top of chores, time-keeping and being patient are all challenges I face", - "link": "https://www.dailymail.co.uk/femail/article-12669915/Im-mother-ADHD-staying-chores-time-keeping-patient-challenges-face.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 06:22:45 GMT", - "enclosure": { - "length": "10320", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/25/09/76974503-0-image-a-4_1698221362637.jpg" - }, - "content": "Geraldine Kostrewa, 28, a mother from the south west of England, has spoken out about the challenges that Attention deficit hyperactivity disorder (ADHD) poses for new parents.", - "contentSnippet": "Geraldine Kostrewa, 28, a mother from the south west of England, has spoken out about the challenges that Attention deficit hyperactivity disorder (ADHD) poses for new parents.", - "guid": "https://www.dailymail.co.uk/femail/article-12669915/Im-mother-ADHD-staying-chores-time-keeping-patient-challenges-face.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T06:22:45.000Z" - }, - { - "title": "Woman, 31, who 'waded into river with two young children before all three were pulled out the water' is arrested on suspicion of attempted murder", - "link": "https://www.dailymail.co.uk/news/article-12678989/Woman-31-waded-river-two-young-children-three-pulled-water-arrested-suspicion-attempted-murder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 06:18:20 GMT", - "enclosure": { - "length": "8520", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068115-0-image-m-6_1698387213512.jpg" - }, - "content": "Officers were called to the Cobden Bridge in Southampton, over the River Itchen, at 3.38pm on Thursday October 26 after receiving reports of people in the water.", - "contentSnippet": "Officers were called to the Cobden Bridge in Southampton, over the River Itchen, at 3.38pm on Thursday October 26 after receiving reports of people in the water.", - "guid": "https://www.dailymail.co.uk/news/article-12678989/Woman-31-waded-river-two-young-children-three-pulled-water-arrested-suspicion-attempted-murder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T06:18:20.000Z" - }, - { - "title": "Love Island's Gemma Owen is 'dating Prince Naseem Hamed's son Aadam' as the couple enjoy a holiday to Dubai", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12678027/Love-Island-Gemma-Owen-Prince-Naseem-Hamed-Aadam-Dubai.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 06:09:28 GMT", - "enclosure": { - "length": "10323", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/23/77057077-0-image-a-29_1698360231996.jpg" - }, - "content": "The Love Island star, 20, split from her co-star boyfriend Luca Bish , 24, in November last year, three months after they finished as runners-up on the show.", - "contentSnippet": "The Love Island star, 20, split from her co-star boyfriend Luca Bish , 24, in November last year, three months after they finished as runners-up on the show.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12678027/Love-Island-Gemma-Owen-Prince-Naseem-Hamed-Aadam-Dubai.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T06:09:28.000Z" - }, - { - "title": "EXCLUSIVE: Kevin Costner's ex-wife Christine Baumgartner tells friends how she REALLY feels about being 'friends with benefits' after contentious divorce", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12672203/Kevin-Costner-ex-wife-Christine-Baumgartner-feels-friends-benefits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 05:50:51 GMT", - "enclosure": { - "length": "10428", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/25/22/77003457-0-image-a-65_1698268247658.jpg" - }, - "content": "As Christine Baumgartner faces the holidays without Kevin Costner, rumors abound that ice is melting between the once passionate pair.", - "contentSnippet": "As Christine Baumgartner faces the holidays without Kevin Costner, rumors abound that ice is melting between the once passionate pair.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12672203/Kevin-Costner-ex-wife-Christine-Baumgartner-feels-friends-benefits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T05:50:51.000Z" - }, - { - "title": "EXCLUSIVE: Sandra Bullock is seen for the first time since death of partner\u00a0Bryan Randall aged 57 from ALS - as star steps out with daughter Laila, 11, in LA", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12678083/Sandra-Bullock-seen-time-partner-Bryan-Randalls-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 04:03:36 GMT", - "enclosure": { - "length": "10190", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/23/77057243-0-image-m-126_1698359938677.jpg" - }, - "content": "Sandra Bullock was seen for the first time since the death of her longtime partner Bryan Randall in August - as she stepped out in LA with daughter Laila on Thursday.", - "contentSnippet": "Sandra Bullock was seen for the first time since the death of her longtime partner Bryan Randall in August - as she stepped out in LA with daughter Laila on Thursday.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12678083/Sandra-Bullock-seen-time-partner-Bryan-Randalls-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T04:03:36.000Z" - }, - { - "title": "What you need to know about this weekend's full moon and lunar eclipse: Emotional turmoil and major changes are imminent for every star sign", - "link": "https://www.dailymail.co.uk/femail/real-life/article-12678401/October-moon-lunar-eclipse-horoscope.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 03:17:25 GMT", - "enclosure": { - "length": "10691", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/03/77063439-0-image-a-3_1698374207464.jpg" - }, - "content": "Emotional turmoil is on the cards this weekend thanks to the Hunter's full moon and lunar eclipse.", - "contentSnippet": "Emotional turmoil is on the cards this weekend thanks to the Hunter's full moon and lunar eclipse.", - "guid": "https://www.dailymail.co.uk/femail/real-life/article-12678401/October-moon-lunar-eclipse-horoscope.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T03:17:25.000Z" - }, - { - "title": "I was diagnosed with stage four bowel cancer in my 30s: This is the habit that saved my life - and the warning I want everyone to read", - "link": "https://www.dailymail.co.uk/femail/real-life/article-12677875/bowel-cancer-symptoms-australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 02:48:39 GMT", - "enclosure": { - "length": "9273", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/03/77061571-0-A_sports_mad_school_teacher_has_urged_all_Australians_young_and_-a-42_1698374411789.jpg" - }, - "content": "A sports-mad school teacher has urged all Australians young and old to listen to his advice after he was diagnosed with bowel cancer.", - "contentSnippet": "A sports-mad school teacher has urged all Australians young and old to listen to his advice after he was diagnosed with bowel cancer.", - "guid": "https://www.dailymail.co.uk/femail/real-life/article-12677875/bowel-cancer-symptoms-australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T02:48:39.000Z" - }, - { - "title": "Border force teams are poised to rescue 200 Britons trapped in Gaza as Rishi Sunak pushes for a pause in the fighting to allow aid to reach besieged Palestinians", - "link": "https://www.dailymail.co.uk/news/article-12677851/Border-force-rescue-200-Britons-trapped-Gaza-Rishi-Sunak-Palestinians.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 02:29:21 GMT", - "enclosure": { - "length": "5412", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/22/77053933-0-image-m-13_1698356053039.jpg" - }, - "content": "Rishi Sunak (pictured) has sent Border Force teams to Egypt to help evacuate Britons still trapped in Gaza. The PM is also pushing for a pause in fighting between Israel and Hamas to allow aid in.", - "contentSnippet": "Rishi Sunak (pictured) has sent Border Force teams to Egypt to help evacuate Britons still trapped in Gaza. The PM is also pushing for a pause in fighting between Israel and Hamas to allow aid in.", - "guid": "https://www.dailymail.co.uk/news/article-12677851/Border-force-rescue-200-Britons-trapped-Gaza-Rishi-Sunak-Palestinians.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T02:29:21.000Z" - }, - { - "title": "Body found dumped in Ukrainian drain is identified as missing former British paratrooper Daniel Burke, 36, who was 'accidentally shot' by fellow fighter", - "link": "https://www.dailymail.co.uk/news/article-12678351/Body-dumped-Ukrainian-drain-identified-missing-former-British-paratrooper-Daniel-Burke-36-accidentally-shot-fellow-fighter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 00:43:56 GMT", - "enclosure": { - "length": "8810", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/01/77060403-0-image-m-69_1698367275970.jpg" - }, - "content": "A body that was found dumped in a Ukrainian drain was identified as missing former paratrooper Daniel Burke (pictured), who was 'accidentally shot' by a fellow fighter.", - "contentSnippet": "A body that was found dumped in a Ukrainian drain was identified as missing former paratrooper Daniel Burke (pictured), who was 'accidentally shot' by a fellow fighter.", - "guid": "https://www.dailymail.co.uk/news/article-12678351/Body-dumped-Ukrainian-drain-identified-missing-former-British-paratrooper-Daniel-Burke-36-accidentally-shot-fellow-fighter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T00:43:56.000Z" - }, - { - "title": "Is this the loneliest sheep in Britain? Drones are sent in to check on animal left stranded on a cliffside beach in the Scottish Highlands for TWO years", - "link": "https://www.dailymail.co.uk/news/article-12678309/Is-loneliest-sheep-Britain-Drones-sent-check-animal-left-stranded-cliffside-beach-Scottish-Highlands-TWO-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 00:34:07 GMT", - "enclosure": { - "length": "12554", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/25/19/76998405-0-image-m-17_1698259773870.jpg" - }, - "content": "Jillian Turner spotted the animal in 2021 during a trip from \u00adBalintore to Nigg with the East Sutherland Canoe and Kayak Club. But recently she took the same trip again and noticed the sheep was still trapped.", - "contentSnippet": "Jillian Turner spotted the animal in 2021 during a trip from \u00adBalintore to Nigg with the East Sutherland Canoe and Kayak Club. But recently she took the same trip again and noticed the sheep was still trapped.", - "guid": "https://www.dailymail.co.uk/news/article-12678309/Is-loneliest-sheep-Britain-Drones-sent-check-animal-left-stranded-cliffside-beach-Scottish-Highlands-TWO-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T00:34:07.000Z" - }, - { - "title": "When the 60s were far from swinging! Book details the dark history of the popular decade - when homosexuality was still illegal, suicide a crime and racism rife", - "link": "https://www.dailymail.co.uk/home/books/article-12677437/When-60s-far-swinging.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 23:29:23 GMT", - "enclosure": { - "length": "11011", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050239-0-image-a-6_1698351207137.jpg" - }, - "content": "Cataloguing events in Britain between 1962 and 1965, David Kynaston's 700 pages find room for Manfred Mann's hit Do Wah Diddy Diddy, Hughie Green opening Ilford's furniture supermarket.", - "contentSnippet": "Cataloguing events in Britain between 1962 and 1965, David Kynaston's 700 pages find room for Manfred Mann's hit Do Wah Diddy Diddy, Hughie Green opening Ilford's furniture supermarket.", - "guid": "https://www.dailymail.co.uk/home/books/article-12677437/When-60s-far-swinging.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T23:29:23.000Z" - }, - { - "title": "WHAT BOOK would food historian and author Pen Vogler take to a desert island?", - "link": "https://www.dailymail.co.uk/home/books/article-12677655/WHAT-BOOK-food-historian-author-Pen-Fogler-desert-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 23:28:00 GMT", - "enclosure": { - "length": "8029", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77051003-0-image-m-16_1698352439376.jpg" - }, - "content": "Pen Vogler is currently reading The Secret of Cooking by Bee Wilson, enjoying her 'grater techniques'. She would take RHS Encyclopedia Of Gardening to a desert island.", - "contentSnippet": "Pen Vogler is currently reading The Secret of Cooking by Bee Wilson, enjoying her 'grater techniques'. She would take RHS Encyclopedia Of Gardening to a desert island.", - "guid": "https://www.dailymail.co.uk/home/books/article-12677655/WHAT-BOOK-food-historian-author-Pen-Fogler-desert-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T23:28:00.000Z" - }, - { - "title": "PICTURE THIS", - "link": "https://www.dailymail.co.uk/home/books/article-12677721/PICTURE-THIS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 23:24:41 GMT", - "enclosure": { - "length": "5117", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77052625-0-image-m-12_1698353759774.jpg" - }, - "content": "'All that glitters is not gold' is an accusation that can't be levelled at Yves Saint Laurent, as this companion to the GOLD by YSL exhibition in Paris proves.", - "contentSnippet": "'All that glitters is not gold' is an accusation that can't be levelled at Yves Saint Laurent, as this companion to the GOLD by YSL exhibition in Paris proves.", - "guid": "https://www.dailymail.co.uk/home/books/article-12677721/PICTURE-THIS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T23:24:41.000Z" - }, - { - "title": "Forget good taste, says the King's garden designer - as she reveals how to discover your own horticultural style", - "link": "https://www.dailymail.co.uk/home/books/article-12677315/Forget-good-taste-says-Kings-garden-designer-reveals-discover-horticultural-style.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 23:23:36 GMT", - "enclosure": { - "length": "13931", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050223-0-image-a-6_1698351189464.jpg" - }, - "content": "Jinny Blom is an award-winning landscape designer who has made gardens at the Chelsea Flower Show for both King Charles and Prince Harry. For her, gardening is the highest of art forms.", - "contentSnippet": "Jinny Blom is an award-winning landscape designer who has made gardens at the Chelsea Flower Show for both King Charles and Prince Harry. For her, gardening is the highest of art forms.", - "guid": "https://www.dailymail.co.uk/home/books/article-12677315/Forget-good-taste-says-Kings-garden-designer-reveals-discover-horticultural-style.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T23:23:36.000Z" - }, - { - "title": "Wanted: A wife to look after my pigs. From a 19th-century lonely hearts ad to a nuptial blessing of the bride's buttocks, an entertaining history of love over the millennia that proves when it comes to the heart, little has changed", - "link": "https://www.dailymail.co.uk/home/books/article-12677261/Wanted-wife-look-pigs-19th-century-lonely-hearts-ad-nuptial-blessing-brides-buttocks-entertaining-history-love-millennia-proves-comes-heart-little-changed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 23:23:04 GMT", - "enclosure": { - "length": "10338", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77052633-0-image-m-14_1698353827876.jpg" - }, - "content": "Edward Brooke-Hitching's delightful book is a collection of the curiosities, absurdities and downright filth that can arise when two (or more) human beings become attracted to each other.", - "contentSnippet": "Edward Brooke-Hitching's delightful book is a collection of the curiosities, absurdities and downright filth that can arise when two (or more) human beings become attracted to each other.", - "guid": "https://www.dailymail.co.uk/home/books/article-12677261/Wanted-wife-look-pigs-19th-century-lonely-hearts-ad-nuptial-blessing-brides-buttocks-entertaining-history-love-millennia-proves-comes-heart-little-changed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T23:23:04.000Z" - }, - { - "title": "JAN MOIR: Edward VIII was a typical Windsor male: whiny and petulant... Remind you of anyone?", - "link": "https://www.dailymail.co.uk/debate/article-12677685/JAN-MOIR-Edward-VIII-typical-Windsor-male-whiny-petulant-Remind-anyone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 22:44:31 GMT", - "enclosure": { - "length": "11780", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050721-0-image-a-33_1698352895090.jpg" - }, - "content": "JAN MOIR: A lost memoir of Edward VIII has come to light and for the first time we hear the authentic inner voice of the man who had briefly been King.", - "contentSnippet": "JAN MOIR: A lost memoir of Edward VIII has come to light and for the first time we hear the authentic inner voice of the man who had briefly been King.", - "guid": "https://www.dailymail.co.uk/debate/article-12677685/JAN-MOIR-Edward-VIII-typical-Windsor-male-whiny-petulant-Remind-anyone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T22:44:31.000Z" - }, - { - "title": "How fashion finally fell in love with the MUCH older woman... As Dame Maggie Smith, 88, fronts the new campaign for luxury label Loewe, writes ALEXANDRA SHULMAN", - "link": "https://www.dailymail.co.uk/news/article-12677823/How-fashion-finally-fell-love-older-woman-Dame-Maggie-Smith-88-fronts-new-campaign-luxury-label-Loewe-writes-ALEXANDRA-SHULMAN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 22:28:48 GMT", - "enclosure": { - "length": "11278", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/22/77053025-0-image-a-30_1698355932470.jpg" - }, - "content": "Dame Maggie poses against a brick wall in an oversized, shaggy brown shearling coat clutching Loewe's best-selling Puzzle bag. In another, she wears a wide-skirted black and white dress.", - "contentSnippet": "Dame Maggie poses against a brick wall in an oversized, shaggy brown shearling coat clutching Loewe's best-selling Puzzle bag. In another, she wears a wide-skirted black and white dress.", - "guid": "https://www.dailymail.co.uk/news/article-12677823/How-fashion-finally-fell-love-older-woman-Dame-Maggie-Smith-88-fronts-new-campaign-luxury-label-Loewe-writes-ALEXANDRA-SHULMAN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T22:28:48.000Z" - }, - { - "title": "EDEN CONFIDENTIAL: At last! Carol Thatcher weds Marco Grass - the Swiss skiing instructor she met in 1992 - in Las Vegas", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12677711/EDEN-CONFIDENTIAL-Carol-Thatcher-weds-Marco-Grass-Swiss-skiing-instructor-met-1992-Las-Vegas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 22:04:28 GMT", - "enclosure": { - "length": "11078", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/22/77052921-0-image-a-47_1698354350966.jpg" - }, - "content": "EDEN CONFIDENTIAL: Showing a talent for pulling off a surprise which would surely have startled her mother, Carol has married in Las Vegas.", - "contentSnippet": "EDEN CONFIDENTIAL: Showing a talent for pulling off a surprise which would surely have startled her mother, Carol has married in Las Vegas.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12677711/EDEN-CONFIDENTIAL-Carol-Thatcher-weds-Marco-Grass-Swiss-skiing-instructor-met-1992-Las-Vegas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T22:04:28.000Z" - }, - { - "title": "The top chef charging \u00a3110.80 for a fish and chip supper for two! JAN MOIR puts Tom Kerridge's posh take on the British classic to the test", - "link": "https://www.dailymail.co.uk/news/article-12677647/The-chef-charging-110-80-fish-chip-supper-two-JAN-MOIR-puts-Tom-Kerridges-posh-British-classic-test.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 22:01:33 GMT", - "enclosure": { - "length": "8557", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77051911-0-image-m-49_1698352949299.jpg" - }, - "content": "JAN MOIR: At Tom Kerridge 's Fish & Chips restaurant in Harrods, a chippy tea will cost you \u00a3110.80 for two, including the tea, bread, butter and a 12.5 per cent service charge.", - "contentSnippet": "JAN MOIR: At Tom Kerridge 's Fish & Chips restaurant in Harrods, a chippy tea will cost you \u00a3110.80 for two, including the tea, bread, butter and a 12.5 per cent service charge.", - "guid": "https://www.dailymail.co.uk/news/article-12677647/The-chef-charging-110-80-fish-chip-supper-two-JAN-MOIR-puts-Tom-Kerridges-posh-British-classic-test.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T22:01:33.000Z" - }, - { - "title": "King Charles meets with leading Middle East charities in bid to focus resources on the growing humanitarian crisis in the region", - "link": "https://www.dailymail.co.uk/news/article-12677919/King-Charles-Middle-East-charities-humanitarian-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 21:55:27 GMT", - "enclosure": { - "length": "12272", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/22/77055389-0-image-a-36_1698357278576.jpg" - }, - "content": "King Charles (pictured) yesterday convened five leading charities operating in the Middle East to focus resources on the unfolding humanitarian crisis in the region.", - "contentSnippet": "King Charles (pictured) yesterday convened five leading charities operating in the Middle East to focus resources on the unfolding humanitarian crisis in the region.", - "guid": "https://www.dailymail.co.uk/news/article-12677919/King-Charles-Middle-East-charities-humanitarian-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T21:55:27.000Z" - }, - { - "title": "Americans reveal the items in the Harry Potter franchise they first thought were 'magic' - but they were actually just British", - "link": "https://www.dailymail.co.uk/femail/article-12674967/American-fans-believed-British-things-existed-Harry-Potter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 21:30:45 GMT", - "enclosure": { - "length": "5608", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77038821-0-image-a-68_1698333463940.jpg" - }, - "content": "American Harry Potter fans shared on Reddit that they mistakenly believed several ordinary British customs and cuisines were exclusive to the famous wizarding world of Hogwarts.", - "contentSnippet": "American Harry Potter fans shared on Reddit that they mistakenly believed several ordinary British customs and cuisines were exclusive to the famous wizarding world of Hogwarts.", - "guid": "https://www.dailymail.co.uk/femail/article-12674967/American-fans-believed-British-things-existed-Harry-Potter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T21:30:45.000Z" - }, - { - "title": "Scientists discover for the first time that sperm defy one of Newton's laws of PHYSICS", - "link": "https://www.dailymail.co.uk/sciencetech/article-12677263/Scientists-discover-sperm-defy-one-Newtons-laws-PHYSICS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 21:30:00 GMT", - "enclosure": { - "length": "5420", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/20/4839638-0-Researchers_at_Kyoto_University_found_the_sperms_flagella_or_tai-a-6_1698348483502.jpg" - }, - "content": "Scientists have observed a broken law of physics - the way sperms swim through surrounding liquid. The elasticity of the tail should slow the agent down, but instead pushes and pulls it through the fluid.", - "contentSnippet": "Scientists have observed a broken law of physics - the way sperms swim through surrounding liquid. The elasticity of the tail should slow the agent down, but instead pushes and pulls it through the fluid.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12677263/Scientists-discover-sperm-defy-one-Newtons-laws-PHYSICS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T21:30:00.000Z" - }, - { - "title": "LITERARY FICTION", - "link": "https://www.dailymail.co.uk/home/books/article-12677707/Literary-fiction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 21:15:21 GMT", - "enclosure": { - "length": "5283", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050475-0-image-m-17_1698353091981.jpg" - }, - "content": "It's been 12 years since Cole wowed critics with his debut Open City, in which a psychiatrist wanders Brussels and New York musing on the legacies of historical bloodshed.", - "contentSnippet": "It's been 12 years since Cole wowed critics with his debut Open City, in which a psychiatrist wanders Brussels and New York musing on the legacies of historical bloodshed.", - "guid": "https://www.dailymail.co.uk/home/books/article-12677707/Literary-fiction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T21:15:21.000Z" - }, - { - "title": "MUST READS", - "link": "https://www.dailymail.co.uk/home/books/article-12677589/MUST-READS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 21:08:48 GMT", - "enclosure": { - "length": "8850", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050479-0-image-m-23_1698351604620.jpg" - }, - "content": "Alex is 30 and unhappy with her life. She has fallen out with her best friend, Wren, and her novel is paralysed by writer's block. At this low moment, she lands a place at a writer's retreat.", - "contentSnippet": "Alex is 30 and unhappy with her life. She has fallen out with her best friend, Wren, and her novel is paralysed by writer's block. At this low moment, she lands a place at a writer's retreat.", - "guid": "https://www.dailymail.co.uk/home/books/article-12677589/MUST-READS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T21:08:48.000Z" - }, - { - "title": "CHILDREN'S", - "link": "https://www.dailymail.co.uk/home/article-12677545/CHILDRENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 21:02:09 GMT", - "enclosure": { - "length": "9223", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050455-0-image-m-18_1698351590655.jpg" - }, - "content": "The perfect pairing of Barnett and Klassen delivers a sublime festive gift in this testing question of how Father Christmas brings presents, all wrapped up with dead-pan humour...", - "contentSnippet": "The perfect pairing of Barnett and Klassen delivers a sublime festive gift in this testing question of how Father Christmas brings presents, all wrapped up with dead-pan humour...", - "guid": "https://www.dailymail.co.uk/home/article-12677545/CHILDRENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T21:02:09.000Z" - }, - { - "title": "CLASSIC CRIME", - "link": "https://www.dailymail.co.uk/home/books/article-12677517/CLASSIC-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 21:02:00 GMT", - "enclosure": { - "length": "6527", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050439-0-image-m-203_1698351872523.jpg" - }, - "content": "Popular images of rural France are of bucolic contentment with good food and wine. But, when it comes to life in the Loire, Ian Moore gives us the darker side...", - "contentSnippet": "Popular images of rural France are of bucolic contentment with good food and wine. But, when it comes to life in the Loire, Ian Moore gives us the darker side...", - "guid": "https://www.dailymail.co.uk/home/books/article-12677517/CLASSIC-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T21:02:00.000Z" - }, - { - "title": "POPULAR", - "link": "https://www.dailymail.co.uk/home/books/article-12677515/POPULAR.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 21:01:54 GMT", - "enclosure": { - "length": "10320", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050441-0-image-m-46_1698352727988.jpg" - }, - "content": "In this future shock Wyndhamesque tale, bots do everything from driving to very personal services.", - "contentSnippet": "In this future shock Wyndhamesque tale, bots do everything from driving to very personal services.", - "guid": "https://www.dailymail.co.uk/home/books/article-12677515/POPULAR.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T21:01:54.000Z" - }, - { - "title": "TOM UTLEY: Look, Steve Coogan, if you really want to get rid of the monarchy, abandon Israel and muzzle the Free Press, why not stand for office yourself!", - "link": "https://www.dailymail.co.uk/debate/article-12677641/TOM-UTLEY-Steve-Coogan-monarchy-Israel-stand-office.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 20:54:41 GMT", - "enclosure": { - "length": "8115", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77051999-0-image-m-34_1698353193489.jpg" - }, - "content": "TOM UTLEY: Have I boasted before that my grandfather, Dermot Morrah, wrote possibly the most famous and frequently quoted speech ever delivered by our late, beloved Queen?", - "contentSnippet": "TOM UTLEY: Have I boasted before that my grandfather, Dermot Morrah, wrote possibly the most famous and frequently quoted speech ever delivered by our late, beloved Queen?", - "guid": "https://www.dailymail.co.uk/debate/article-12677641/TOM-UTLEY-Steve-Coogan-monarchy-Israel-stand-office.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T20:54:41.000Z" - }, - { - "title": "Her mom is Oscar-nominated, dad worked with Angelina Jolie, grandma is a movie icon, her half-sister is on the A list and there is a Scarface connection. Who is she?", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12677235/Her-mom-Oscar-nominated-dad-worked-Angelina-Jolie-grandma-movie-icon-half-sister-list-Scarface-connection-she.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 19:53:25 GMT", - "enclosure": { - "length": "5070", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/20/77048145-0-image-m-106_1698347449554.jpg" - }, - "content": "Her mom is an Oscar-nominated actress who was twice wed to a TV turned movie star who was in the movie Knives Out. Her father is a Latin heartthrob and there is a link to Scarface.", - "contentSnippet": "Her mom is an Oscar-nominated actress who was twice wed to a TV turned movie star who was in the movie Knives Out. Her father is a Latin heartthrob and there is a link to Scarface.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12677235/Her-mom-Oscar-nominated-dad-worked-Angelina-Jolie-grandma-movie-icon-half-sister-list-Scarface-connection-she.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T19:53:25.000Z" - }, - { - "title": "Secluded seaside cottage which can only be reached by car when the tide is out goes on the market for \u00a3620,000", - "link": "https://www.dailymail.co.uk/property/article-12665891/Secluded-seaside-cottage-reached-car-tide-goes-market-620-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 13:58:31 GMT", - "enclosure": { - "length": "9877", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/24/12/76933771-0-image-m-51_1698147896316.jpg" - }, - "content": "The stunning two-bedroom hideaway located on the Isle of Anglesey in Wales offers privacy with mesmerising ocean views, though it may also feel quite isolating.", - "contentSnippet": "The stunning two-bedroom hideaway located on the Isle of Anglesey in Wales offers privacy with mesmerising ocean views, though it may also feel quite isolating.", - "guid": "https://www.dailymail.co.uk/property/article-12665891/Secluded-seaside-cottage-reached-car-tide-goes-market-620-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T13:58:31.000Z" - }, - { - "title": "Horoscopes: Your stars for this week by Sally Brompton", - "link": "https://www.dailymail.co.uk/home/you/article-12650003/Horoscopes-stars-week-Sally-Brompton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Thu, 26 Oct 2023 13:54:48 GMT", - "enclosure": { - "length": "6591", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/19/16/76760275-0-image-m-42_1697728864044.jpg" - }, - "content": "Sally Brompton reminds Scorpios that the sun enters their sign tomorrow and a new solar year begins. Just how good that year will be depends on the things Scorpios do over the next few days.", - "contentSnippet": "Sally Brompton reminds Scorpios that the sun enters their sign tomorrow and a new solar year begins. Just how good that year will be depends on the things Scorpios do over the next few days.", - "guid": "https://www.dailymail.co.uk/home/you/article-12650003/Horoscopes-stars-week-Sally-Brompton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-26T13:54:48.000Z" - }, - { - "title": "Do TikTok's make-up tricks work? 'Soap brows', contouring using fake tan\u2026 FRAN HORNAK spends a week testing social media trends", - "link": "https://www.dailymail.co.uk/home/you/article-12645211/Do-TikToks-make-tricks-work-Soap-brows-contouring-using-fake-tan-FRAN-HORNAK-spends-week-testing-social-media-trends.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Wed, 25 Oct 2023 15:45:26 GMT", - "enclosure": { - "length": "10141", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/23/18/76903641-0-image-a-24_1698083717626.jpg" - }, - "content": "UK beauty expert\u00a0Fran Hornak shares how these beauty hacks measure up - with everything from 'leggings' curls and 'soap brows' shared on TikTok.", - "contentSnippet": "UK beauty expert\u00a0Fran Hornak shares how these beauty hacks measure up - with everything from 'leggings' curls and 'soap brows' shared on TikTok.", - "guid": "https://www.dailymail.co.uk/home/you/article-12645211/Do-TikToks-make-tricks-work-Soap-brows-contouring-using-fake-tan-FRAN-HORNAK-spends-week-testing-social-media-trends.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-25T15:45:26.000Z" - }, - { - "title": "THE CHIC LIST: J'adore the city of delights", - "link": "https://www.dailymail.co.uk/home/you/article-12666609/THE-CHIC-LIST-Jadore-city-delights.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 24 Oct 2023 14:42:40 GMT", - "enclosure": { - "length": "8175", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/24/15/76939813-0-image-m-17_1698157947189.jpg" - }, - "content": "UK fashion columnist and influencer JOANNE HEGARTY celebrates Parisian style this week: neutral tones and classic shades with an occasional pop of red. Bravo!", - "contentSnippet": "UK fashion columnist and influencer JOANNE HEGARTY celebrates Parisian style this week: neutral tones and classic shades with an occasional pop of red. Bravo!", - "guid": "https://www.dailymail.co.uk/home/you/article-12666609/THE-CHIC-LIST-Jadore-city-delights.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-24T14:42:40.000Z" - }, - { - "title": "Messy property goes on the market for \u00a3180,000 despite being crammed full of rubbish, ravaged by mould and cat litter in the kitchen", - "link": "https://www.dailymail.co.uk/property/article-12665627/britians-saddest-house-gosport-hants-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 24 Oct 2023 12:53:03 GMT", - "enclosure": { - "length": "11939", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/24/11/76930703-0-image-a-28_1698143283466.jpg" - }, - "content": "The unloved property in Gosport, Hampshire, has mould-ridden walls, stained cabinets, filthy floors and rubbish in every corner.", - "contentSnippet": "The unloved property in Gosport, Hampshire, has mould-ridden walls, stained cabinets, filthy floors and rubbish in every corner.", - "guid": "https://www.dailymail.co.uk/property/article-12665627/britians-saddest-house-gosport-hants-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-24T12:53:03.000Z" - }, - { - "title": "When to put your home on the market if you want to sell by Christmas", - "link": "https://www.dailymail.co.uk/property/article-12661783/When-home-market-want-sell-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Tue, 24 Oct 2023 05:00:49 GMT", - "enclosure": { - "length": "8675", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/23/12/76888927-0-image-a-38_1698060935626.jpg" - }, - "content": "Getting a sale subject to contract before the festivities begin is still possible, according to the Homeowners Alliance - but sellers will need to act soon.", - "contentSnippet": "Getting a sale subject to contract before the festivities begin is still possible, according to the Homeowners Alliance - but sellers will need to act soon.", - "guid": "https://www.dailymail.co.uk/property/article-12661783/When-home-market-want-sell-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-24T05:00:49.000Z" - }, - { - "title": "IPSO ruling upheld against MailOnline following accuracy complaint from Martin Clunes", - "link": "https://www.dailymail.co.uk/home/article-12663221/IPSO-ruling-upheld-against-MailOnline-following-accuracy-complaint-Martin-Clunes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 23 Oct 2023 23:26:30 GMT", - "enclosure": { - "length": "7751", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/23/19/10122148-0-image-m-2_1698086246966.jpg" - }, - "content": "Actor Martin Clunes complained to the Independent Press Standards Organisation that MailOnline had breached Clause 1 (Accuracy) of the Editors' Code of Practice.", - "contentSnippet": "Actor Martin Clunes complained to the Independent Press Standards Organisation that MailOnline had breached Clause 1 (Accuracy) of the Editors' Code of Practice.", - "guid": "https://www.dailymail.co.uk/home/article-12663221/IPSO-ruling-upheld-against-MailOnline-following-accuracy-complaint-Martin-Clunes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-23T23:26:30.000Z" - }, - { - "title": "Action plan:\u00a0CIAR BYRNE's essential jobs for your garden this week", - "link": "https://www.dailymail.co.uk/home/gardening/article-12659545/Action-plan-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Mon, 23 Oct 2023 12:36:46 GMT", - "enclosure": { - "length": "11814", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/22/19/76864261-0-image-a-8_1697998914458.jpg" - }, - "content": "CIAR BYRNE: Temperatures fell sharply this week and while smaller tender plants can be moved to a frost-free greenhouse, this isn't always possible for larger plants.", - "contentSnippet": "CIAR BYRNE: Temperatures fell sharply this week and while smaller tender plants can be moved to a frost-free greenhouse, this isn't always possible for larger plants.", - "guid": "https://www.dailymail.co.uk/home/gardening/article-12659545/Action-plan-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-23T12:36:46.000Z" - }, - { - "title": "I'm a security expert - here are NINE ways to protect your home this winter", - "link": "https://www.dailymail.co.uk/property/article-12645179/Im-security-expert-NINE-ways-protect-home-winter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 22 Oct 2023 12:20:24 GMT", - "enclosure": { - "length": "6567", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/19/09/76742193-0-image-m-32_1697702559973.jpg" - }, - "content": "Andy Simms has given nine pieces of advice for homeowners with winter on the horizon. Clocks go back on October 29, meaning darkness will come even earlier from then on.", - "contentSnippet": "Andy Simms has given nine pieces of advice for homeowners with winter on the horizon. Clocks go back on October 29, meaning darkness will come even earlier from then on.", - "guid": "https://www.dailymail.co.uk/property/article-12645179/Im-security-expert-NINE-ways-protect-home-winter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-22T12:20:24.000Z" - }, - { - "title": "Not cheap, but spectacularly good. TOM PARKER BOWLES reviews one of London's hottest new restaurants", - "link": "https://www.dailymail.co.uk/home/you/article-12650093/Not-cheap-spectacularly-good-TOM-PARKER-BOWLES-reviews-one-Londons-hottest-new-restaurants.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 22 Oct 2023 09:51:35 GMT", - "enclosure": { - "length": "11107", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/19/16/76760605-0-image-a-63_1697729955938.jpg" - }, - "content": "Mountain in Soho is the new restaurant from Tomos Parry who helped spark a raging London culinary trend, doing special things to a Basque-meets- Wales menu at Brat in Shoreditch.", - "contentSnippet": "Mountain in Soho is the new restaurant from Tomos Parry who helped spark a raging London culinary trend, doing special things to a Basque-meets- Wales menu at Brat in Shoreditch.", - "guid": "https://www.dailymail.co.uk/home/you/article-12650093/Not-cheap-spectacularly-good-TOM-PARKER-BOWLES-reviews-one-Londons-hottest-new-restaurants.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-22T09:51:35.000Z" - }, - { - "title": "CAROLINE WEST-MEADS: I don't want my wife to have a face-lift", - "link": "https://www.dailymail.co.uk/home/you/article-12649853/CAROLINE-WEST-MEADS-dont-want-wife-face-lift.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 22 Oct 2023 09:49:19 GMT", - "enclosure": { - "length": "5223", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/19/15/76758157-0-image-a-27_1697726985640.jpg" - }, - "content": "Q I am in my early 60s and my wife turns 60 next year. Maybe we could do with losing a little weight, but I think we look good for our ages. However, she says she hates her ageing looks and wants to get a face-lift.", - "contentSnippet": "Q I am in my early 60s and my wife turns 60 next year. Maybe we could do with losing a little weight, but I think we look good for our ages. However, she says she hates her ageing looks and wants to get a face-lift.", - "guid": "https://www.dailymail.co.uk/home/you/article-12649853/CAROLINE-WEST-MEADS-dont-want-wife-face-lift.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-22T09:49:19.000Z" - }, - { - "title": "Secrets of the A-list's crowning glory:\u00a0Get your head around the latest hairpieces, says Alice Robertson", - "link": "https://www.dailymail.co.uk/home/you/article-12644961/Secrets-lists-crowning-glory-head-latest-hairpieces-says-Alice-Robertson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 22 Oct 2023 09:48:13 GMT", - "enclosure": { - "length": "7893", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/18/14/76707629-0-image-m-110_1697636299681.jpg" - }, - "content": "At his bespoke service in London's Selfridges, Gary Price's clients range from teenagers through to people in their 90s.", - "contentSnippet": "At his bespoke service in London's Selfridges, Gary Price's clients range from teenagers through to people in their 90s.", - "guid": "https://www.dailymail.co.uk/home/you/article-12644961/Secrets-lists-crowning-glory-head-latest-hairpieces-says-Alice-Robertson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-22T09:48:13.000Z" - }, - { - "title": "TOPLINE TRAVEL: Quinta do Lago", - "link": "https://www.dailymail.co.uk/home/you/article-12649737/TOPLINE-TRAVEL-Quinta-Lago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 22 Oct 2023 09:39:02 GMT", - "enclosure": { - "length": "677416", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/19/15/76756015-0-image-a-17_1697725566609.jpg" - }, - "content": "Set in the Ria Formosa Natural Park of southern Algarve, Portugal, Quinta do Lago includes a 74-room hotel and is so perfectly manicured it could have been created by CGI.", - "contentSnippet": "Set in the Ria Formosa Natural Park of southern Algarve, Portugal, Quinta do Lago includes a 74-room hotel and is so perfectly manicured it could have been created by CGI.", - "guid": "https://www.dailymail.co.uk/home/you/article-12649737/TOPLINE-TRAVEL-Quinta-Lago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-22T09:39:02.000Z" - }, - { - "title": "AGELESS STYLE: Wardrobe staples for everyone by fashion stylist Arabella Greenhill", - "link": "https://www.dailymail.co.uk/home/you/article-12645109/AGELESS-STYLE-Wardrobe-staples-fashion-stylist-Arabella-Greenhill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sun, 22 Oct 2023 09:33:40 GMT", - "enclosure": { - "length": "6088", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/18/15/76709109-0-image-m-141_1697637971829.jpg" - }, - "content": "A core accessory on the autumn/winter 23 runways, wrap capes were thrown over tailoring at The Row and Louis Vuitton, and flaunted checks at Burberry.", - "contentSnippet": "A core accessory on the autumn/winter 23 runways, wrap capes were thrown over tailoring at The Row and Louis Vuitton, and flaunted checks at Burberry.", - "guid": "https://www.dailymail.co.uk/home/you/article-12645109/AGELESS-STYLE-Wardrobe-staples-fashion-stylist-Arabella-Greenhill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-22T09:33:40.000Z" - }, - { - "title": "The tap cleaner you never knew you needed:\u00a0 It's a bit of an insiders' favourite even though it's not glamorous\u2026 these are our top five life-changing gadgets from Lakeland", - "link": "https://www.dailymail.co.uk/home/you/article-12644407/tap-cleaner-five-life-changing-gadgets-Lakeland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 21:52:17 GMT", - "enclosure": { - "length": "2430", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/21/22/76846093-0-image-m-14_1697925099753.jpg" - }, - "content": "Eager to find the one thing that's going to make our own lives easier, the YOU team heads to its Brent Cross branch in Northwest London to check out its latest kitchen gadgets.", - "contentSnippet": "Eager to find the one thing that's going to make our own lives easier, the YOU team heads to its Brent Cross branch in Northwest London to check out its latest kitchen gadgets.", - "guid": "https://www.dailymail.co.uk/home/you/article-12644407/tap-cleaner-five-life-changing-gadgets-Lakeland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T21:52:17.000Z" - }, - { - "title": "EVERYONE'S TALKING ABOUT:\u00a0How to smell like Victoria Beckham", - "link": "https://www.dailymail.co.uk/home/you/article-12623679/EVERYONES-TALKING-smell-like-Victoria-Beckham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 17:05:28 GMT", - "enclosure": { - "length": "5710", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76480221-0-image-m-214_1697122980970.jpg" - }, - "content": "Portofino '97 evokes the early days of her romance with David through 'a euphoric hit of Calabrian bergamot and black pepper\u2026 lingering on the skin of a significant other'.", - "contentSnippet": "Portofino '97 evokes the early days of her romance with David through 'a euphoric hit of Calabrian bergamot and black pepper\u2026 lingering on the skin of a significant other'.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623679/EVERYONES-TALKING-smell-like-Victoria-Beckham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T17:05:28.000Z" - }, - { - "title": "When LIZ JONES met Dolly Parton: Our columnist reveals the world according to Dolly and what she really keeps under her wig, 50 years since Jolene was released", - "link": "https://www.dailymail.co.uk/home/you/article-12622883/When-LIZ-JONES-met-Dolly-Parton-columnist-reveals-world-according-Dolly-really-keeps-wig-50-years-Jolene-released.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 17:04:32 GMT", - "enclosure": { - "length": "4209", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/13/15/76482761-0-image-m-12_1697209165923.jpg" - }, - "content": "Liz Jones speaks to Tennessee-born country icon, Dolly Parton for You Magazine, as the star cements her legacy as a musician and style inspiration.", - "contentSnippet": "Liz Jones speaks to Tennessee-born country icon, Dolly Parton for You Magazine, as the star cements her legacy as a musician and style inspiration.", - "guid": "https://www.dailymail.co.uk/home/you/article-12622883/When-LIZ-JONES-met-Dolly-Parton-columnist-reveals-world-according-Dolly-really-keeps-wig-50-years-Jolene-released.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T17:04:32.000Z" - }, - { - "title": "THE CHIC LIST:\u00a0Coat cachet? Amal's my gal", - "link": "https://www.dailymail.co.uk/home/you/article-12623659/THE-CHIC-LIST-Coat-cachet-Amals-gal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 17:04:00 GMT", - "enclosure": { - "length": "5237", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/15/76478725-0-image-m-159_1697121537130.jpg" - }, - "content": "JOANNE HEGARTY: Married for almost a decade and parents to six-year-old twins, Amal and George behave like they're on the set of a romantic movie - but one from Hollywood's golden era.", - "contentSnippet": "JOANNE HEGARTY: Married for almost a decade and parents to six-year-old twins, Amal and George behave like they're on the set of a romantic movie - but one from Hollywood's golden era.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623659/THE-CHIC-LIST-Coat-cachet-Amals-gal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T17:04:00.000Z" - }, - { - "title": "A cut, a chat and a shoulder to dry on:\u00a0As record numbers close, Jan Masters recalls the soul-soothing sanctuary of the old-school salon", - "link": "https://www.dailymail.co.uk/home/you/article-12623775/A-cut-chat-shoulder-dry-record-numbers-close-Jan-Masters-recalls-soul-soothing-sanctuary-old-school-salon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:59:58 GMT", - "enclosure": { - "length": "7243", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/13/12/76518203-0-image-a-52_1697197538823.jpg" - }, - "content": "With the Local\u00a0Data Company reporting that 527 traditional salons closed last year, Jan Masters celebrates the unique 'confessional relationship conducted purely in the salon chair.'", - "contentSnippet": "With the Local\u00a0Data Company reporting that 527 traditional salons closed last year, Jan Masters celebrates the unique 'confessional relationship conducted purely in the salon chair.'", - "guid": "https://www.dailymail.co.uk/home/you/article-12623775/A-cut-chat-shoulder-dry-record-numbers-close-Jan-Masters-recalls-soul-soothing-sanctuary-old-school-salon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:59:58.000Z" - }, - { - "title": "TOM PARKER BOWLES: A French-inspired London spot that I will return to again and again", - "link": "https://www.dailymail.co.uk/home/you/article-12623759/TOM-PARKER-BOWLES-French-inspired-London-spot-return-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:57:18 GMT", - "enclosure": { - "length": "10564", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/13/12/76516937-0-image-m-41_1697196983832.jpg" - }, - "content": "Tom Parker Bowles is so impressed with 64 Goodge Street in central London, a modern bistro that would make even the most cynique of Parisians crack a smile of greedy delight, that he'll be going back.", - "contentSnippet": "Tom Parker Bowles is so impressed with 64 Goodge Street in central London, a modern bistro that would make even the most cynique of Parisians crack a smile of greedy delight, that he'll be going back.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623759/TOM-PARKER-BOWLES-French-inspired-London-spot-return-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:57:18.000Z" - }, - { - "title": "The Canny Cook, lower your food bills and still eat well with food editor Eleanor Maidment: Cheat's lasagne", - "link": "https://www.dailymail.co.uk/home/you/article-12623735/The-Canny-Cook-lower-food-bills-eat-food-editor-Eleanor-Maidment-Cheats-lasagne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:46:50 GMT", - "enclosure": { - "length": "8652", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/18/76486029-0-image-a-47_1697131807267.jpg" - }, - "content": "Do you have a great recipe for eating well and cutting food bills? Email editor@you.co.uk. If we print it here, we'll send you a bottle of champagne.", - "contentSnippet": "Do you have a great recipe for eating well and cutting food bills? Email editor@you.co.uk. If we print it here, we'll send you a bottle of champagne.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623735/The-Canny-Cook-lower-food-bills-eat-food-editor-Eleanor-Maidment-Cheats-lasagne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:46:50.000Z" - }, - { - "title": "My life in drinks, Alex James: 'My best drink as a kid was Top Deck shandy'", - "link": "https://www.dailymail.co.uk/home/you/article-12623721/My-life-drinks-Alex-James-best-drink-kid-Deck-shandy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:45:49 GMT", - "enclosure": { - "length": "4127", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76482155-0-image-m-301_1697125313622.jpg" - }, - "content": "The Blur bassist, 54, tells Samuel Fishwick about drinking in the sixth form, his grandad's gooseberry wine and clinking glasses (almost) with the Queen.", - "contentSnippet": "The Blur bassist, 54, tells Samuel Fishwick about drinking in the sixth form, his grandad's gooseberry wine and clinking glasses (almost) with the Queen.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623721/My-life-drinks-Alex-James-best-drink-kid-Deck-shandy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:45:49.000Z" - }, - { - "title": "ON THE PULSE:\u00a0Healthy, hearty and wholesome bowls from Amelia Christie-Miller", - "link": "https://www.dailymail.co.uk/home/you/article-12623707/ON-PULSE-Healthy-hearty-wholesome-bowls-Amelia-Christie-Miller.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:44:26 GMT", - "enclosure": { - "length": "2230406", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76481171-0-image-a-281_1697124898648.jpg" - }, - "content": "As the UK heads into autumn and towards winter, these wholesome bowls incorporating beans make for the perfect comfort dishes.", - "contentSnippet": "As the UK heads into autumn and towards winter, these wholesome bowls incorporating beans make for the perfect comfort dishes.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623707/ON-PULSE-Healthy-hearty-wholesome-bowls-Amelia-Christie-Miller.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:44:26.000Z" - }, - { - "title": "AGELESS STYLE: Wardrobe staples for everyone by fashion stylist Arabella Greenhill", - "link": "https://www.dailymail.co.uk/home/you/article-12623701/AGELESS-STYLE-Wardrobe-staples-fashion-stylist-Arabella-Greenhill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:43:40 GMT", - "enclosure": { - "length": "6272", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76480817-0-image-m-260_1697123655088.jpg" - }, - "content": "Winter florals, or 'moody blooms', help us embrace the colder months with a bit of cheer. In darker, jewel-toned hues, florals are not only a great statement look, they also work for all occasions.", - "contentSnippet": "Winter florals, or 'moody blooms', help us embrace the colder months with a bit of cheer. In darker, jewel-toned hues, florals are not only a great statement look, they also work for all occasions.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623701/AGELESS-STYLE-Wardrobe-staples-fashion-stylist-Arabella-Greenhill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:43:40.000Z" - }, - { - "title": "Say hello to yellow:\u00a0Why? Because from buttermilk to mustard, it's the must-wear colour of the season", - "link": "https://www.dailymail.co.uk/home/you/article-12623693/Say-hello-yellow-buttermilk-mustard-wear-colour-season.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:37:15 GMT", - "enclosure": { - "length": "4162", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76480489-0-image-m-242_1697123372928.jpg" - }, - "content": "YOU Magazine shares a selection of the shades of yellow to wear in the UK this season, for the perfect bright yet autumnal look.", - "contentSnippet": "YOU Magazine shares a selection of the shades of yellow to wear in the UK this season, for the perfect bright yet autumnal look.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623693/Say-hello-yellow-buttermilk-mustard-wear-colour-season.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:37:15.000Z" - }, - { - "title": "How to solve the three most common skin conditions by ROSIE GREEN", - "link": "https://www.dailymail.co.uk/home/you/article-12623673/How-solve-three-common-skin-conditions-ROSIE-GREEN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:36:02 GMT", - "enclosure": { - "length": "9139", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/17/76483099-0-image-a-331_1697126453359.jpg" - }, - "content": "UK beauty expert Rosie Green shares her top tips for dealing with skin issues - and the products you should be keeping on hand to deal with any ailments.", - "contentSnippet": "UK beauty expert Rosie Green shares her top tips for dealing with skin issues - and the products you should be keeping on hand to deal with any ailments.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623673/How-solve-three-common-skin-conditions-ROSIE-GREEN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:36:02.000Z" - }, - { - "title": "Eight things to make your bathroom more environmentally friendly", - "link": "https://www.dailymail.co.uk/home/you/article-12623645/Eight-things-make-bathroom-environmentally-friendly.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:34:11 GMT", - "enclosure": { - "length": "2668", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/15/76477941-0-image-a-133_1697120571362.jpg" - }, - "content": "Here, UK interiors expert Nicole Gray rounds up the best of the bunch if you're looking to spruce up your bathroom kit that's also eco-friendly.", - "contentSnippet": "Here, UK interiors expert Nicole Gray rounds up the best of the bunch if you're looking to spruce up your bathroom kit that's also eco-friendly.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623645/Eight-things-make-bathroom-environmentally-friendly.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:34:11.000Z" - }, - { - "title": "The new Not on the High Street? HOLLY TUCKER launches a platform hand-picking gifts for women made by women", - "link": "https://www.dailymail.co.uk/home/you/article-12623255/The-new-Not-High-Street-HOLLY-TUCKER-launches-platform-hand-picking-gifts-women-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:32:53 GMT", - "enclosure": { - "length": "12976", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/13/76472563-0-image-m-63_1697112963063.jpg" - }, - "content": "From her South London home, Holly Tucker shares her journey to success with Rosamund Dean.", - "contentSnippet": "From her South London home, Holly Tucker shares her journey to success with Rosamund Dean.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623255/The-new-Not-High-Street-HOLLY-TUCKER-launches-platform-hand-picking-gifts-women-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:32:53.000Z" - }, - { - "title": "A real-life plot twist:\u00a0His Jack Reacher thrillers have sold more than 100 million copies - now LEE CHILD is handing the writing reins to his brother, Andrew. They tell Michael Odell about the change of narrative", - "link": "https://www.dailymail.co.uk/home/you/article-12623199/A-real-life-plot-twist-Jack-Reacher-thrillers-sold-100-million-copies-LEE-CHILD-handing-writing-reins-brother-Andrew-tell-Michael-Odell-change-narrative.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:31:29 GMT", - "enclosure": { - "length": "12316", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/13/76473811-0-image-a-111_1697114016311.jpg" - }, - "content": "Lee Child published the first Jack Reacher novel, Killing Floor, in 1997 and wrote a further 23 titles in the series.", - "contentSnippet": "Lee Child published the first Jack Reacher novel, Killing Floor, in 1997 and wrote a further 23 titles in the series.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623199/A-real-life-plot-twist-Jack-Reacher-thrillers-sold-100-million-copies-LEE-CHILD-handing-writing-reins-brother-Andrew-tell-Michael-Odell-change-narrative.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:31:29.000Z" - }, - { - "title": "'I was a misfit - an outsider':\u00a0Catapulted to stardom after her music wooed the world at the London Olympics, EMELI SAND\u00c9 admits she still had much to learn. She tells Richard Godwin why life feels so much sweeter now", - "link": "https://www.dailymail.co.uk/home/you/article-12623161/I-misfit-outsider-Catapulted-stardom-music-wooed-world-London-Olympics-EMELI-SAND-admits-learn-tells-Richard-Godwin-life-feels-sweeter-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Sat, 21 Oct 2023 16:29:29 GMT", - "enclosure": { - "length": "9268", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/12/13/76473765-0-image-a-104_1697113981971.jpg" - }, - "content": "This is a different Sand\u00e9 from the megaton voice/asymmetrical haircut that exploded into the national consciousness during the London 2012 Olympics.", - "contentSnippet": "This is a different Sand\u00e9 from the megaton voice/asymmetrical haircut that exploded into the national consciousness during the London 2012 Olympics.", - "guid": "https://www.dailymail.co.uk/home/you/article-12623161/I-misfit-outsider-Catapulted-stardom-music-wooed-world-London-Olympics-EMELI-SAND-admits-learn-tells-Richard-Godwin-life-feels-sweeter-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-21T16:29:29.000Z" - }, - { - "title": "Tyson Fury v Francis Ngannou weigh-in LIVE: The Gypsy King and former UFC star prepare to hit the scales in Saudi Arabia ahead of epic crossover bout this weekend", - "link": "https://www.dailymail.co.uk/sport/live/article-12680355/Tyson-Fury-v-Francis-Ngannou-weigh-LIVE-Gypsy-King-former-UFC-star-prepare-hit-scales-Saudi-Arabia-ahead-epic-crossover-bout-weekend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:52:40 GMT", - "enclosure": { - "length": "9802", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/15/77070335-0-image-a-2_1698415831006.jpg" - }, - "content": "Follow Mail Sport's live blog for the Tyson Fury v Francis Ngannou weigh-in below.\u00a0", - "contentSnippet": "Follow Mail Sport's live blog for the Tyson Fury v Francis Ngannou weigh-in below.", - "guid": "https://www.dailymail.co.uk/sport/live/article-12680355/Tyson-Fury-v-Francis-Ngannou-weigh-LIVE-Gypsy-King-former-UFC-star-prepare-hit-scales-Saudi-Arabia-ahead-epic-crossover-bout-weekend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:52:40.000Z" - }, - { - "title": "Ivanka Trump must TESTIFY at her father's $250 million New York fraud trial, judge says in shock ruling", - "link": "https://www.dailymail.co.uk/news/article-12680675/Ivanka-Trump-testify-donald-new-york-fraud-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:52:29 GMT", - "enclosure": { - "length": "9827", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77074661-0-Former_First_Daughter_Ivanka_Trump_channeled_former_First_Lady_a-m-15_1698421581275.jpg" - }, - "content": "Ivanka Trump will have to testify in the civil fraud case against her father, her brothers and the family business, a New York judge decided in a surprise ruling on Friday.", - "contentSnippet": "Ivanka Trump will have to testify in the civil fraud case against her father, her brothers and the family business, a New York judge decided in a surprise ruling on Friday.", - "guid": "https://www.dailymail.co.uk/news/article-12680675/Ivanka-Trump-testify-donald-new-york-fraud-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:52:29.000Z" - }, - { - "title": "Inside the spooky Enfield Haunting house where teenage girl was photographed 'levitating above her bed' in terrifying 1970s 'poltergeist' case (but North London family living there now haven't experienced anything out of this world!)", - "link": "https://www.dailymail.co.uk/news/article-12680357/inside-enfield-haunting-house-teenage-girl-levitating-bed-north-london-family-terrorised-poltergeist-case.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:46:46 GMT", - "enclosure": { - "length": "8011", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77085621-0-image-a-73_1698419735722.jpg" - }, - "content": "EXCLUSIVE: MailOnline was given access to the property to re-visit the rooms where a teenage girl was photographed levitating above her bed and objects suddenly flew across the room.", - "contentSnippet": "EXCLUSIVE: MailOnline was given access to the property to re-visit the rooms where a teenage girl was photographed levitating above her bed and objects suddenly flew across the room.", - "guid": "https://www.dailymail.co.uk/news/article-12680357/inside-enfield-haunting-house-teenage-girl-levitating-bed-north-london-family-terrorised-poltergeist-case.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:46:46.000Z" - }, - { - "title": "Is YOUR makeup aging you? Beauty experts reveal the worst mistakes people with 'mature skin' can make when it comes to cosmetics - and share genius tips for faking your way to a youthful complexion", - "link": "https://www.dailymail.co.uk/femail/article-12668021/five-tips-mature-skin-aging-makeup-tiktok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:46:31 GMT", - "enclosure": { - "length": "10371", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/25/14/76960131-0-image-a-9_1698240762771.jpg" - }, - "content": "In a viral video about perfecting glam looks on mature skin, the Sydney, Australia-based influencer explained how to go glam and use powder by using her simple - but effective - beauty hacks.", - "contentSnippet": "In a viral video about perfecting glam looks on mature skin, the Sydney, Australia-based influencer explained how to go glam and use powder by using her simple - but effective - beauty hacks.", - "guid": "https://www.dailymail.co.uk/femail/article-12668021/five-tips-mature-skin-aging-makeup-tiktok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:46:31.000Z" - }, - { - "title": "What boxing royalty 'Prince' Naseem Hamed and football icon Michael Owen can expect to bond over now their children are dating - from shock scandals to parenting dilemmas", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679533/What-boxing-royalty-Prince-Naseem-Hamed-football-icon-Michael-Owen-expect-bond-children-dating-shock-scandals-parenting-dilemmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:43:47 GMT", - "enclosure": { - "length": "11077", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/15/77084005-0-image-m-49_1698416836226.jpg" - }, - "content": "It was revealed this week that 'Prince' Naseem Hamed's son and Michael Owen's daughter are dating, with Aadam Hamed and\u00a0Gemma Owen\u00a0sharing a slew of snaps\u00a0from a romantic holiday in\u00a0Dubai.\u00a0", - "contentSnippet": "It was revealed this week that 'Prince' Naseem Hamed's son and Michael Owen's daughter are dating, with Aadam Hamed and\u00a0Gemma Owen\u00a0sharing a slew of snaps\u00a0from a romantic holiday in\u00a0Dubai.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679533/What-boxing-royalty-Prince-Naseem-Hamed-football-icon-Michael-Owen-expect-bond-children-dating-shock-scandals-parenting-dilemmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:43:47.000Z" - }, - { - "title": "Moment man 'confesses' to 'murdering mother-of-four ex-girlfriend' who has been missing for more than a decade in 999 call played to court - before being arrested at police station", - "link": "https://www.dailymail.co.uk/news/article-12680011/Moment-man-confesses-murdering-mother-four-ex-girlfriend-missing-decade-999-call-played-court-arrested-police-station.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:43:07 GMT", - "enclosure": { - "length": "6377", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/14/77079497-0-Claire_Holland_who_has_been_missing_for_more_than_a_decade_with_-a-1_1698413600301.jpg" - }, - "content": "Darren Osment, 41, is\u00a0currently on trial for the murder of mother-of-four Claire Holland who has been 'missing' for more than a decade with no trace of her since she left a pub in Bristol.", - "contentSnippet": "Darren Osment, 41, is\u00a0currently on trial for the murder of mother-of-four Claire Holland who has been 'missing' for more than a decade with no trace of her since she left a pub in Bristol.", - "guid": "https://www.dailymail.co.uk/news/article-12680011/Moment-man-confesses-murdering-mother-four-ex-girlfriend-missing-decade-999-call-played-court-arrested-police-station.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:43:07.000Z" - }, - { - "title": "Kate Moss, 49, reveals the secrets to her youthful complexion as she gives a rare interview - and it includes \u00a320 tea bags", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12680255/Kate-Moss-secrets-youthful-rare-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:40:45 GMT", - "enclosure": { - "length": "10469", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77087451-0-image-a-15_1698421238352.jpg" - }, - "content": "The veteran supermodel, 49, looked sensational as she revealed, in a Q&A advertisement in Harrods, that she drinks Dawn tea every morning.", - "contentSnippet": "The veteran supermodel, 49, looked sensational as she revealed, in a Q&A advertisement in Harrods, that she drinks Dawn tea every morning.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12680255/Kate-Moss-secrets-youthful-rare-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:40:45.000Z" - }, - { - "title": "Are plus-size going out of fashion? After Victoria's Secret's 'inclusive' rebrand fails activist Felicity Hayward accuses labels of treating bigger women as 'gimmicks' (but one retailer admits 'size 8 models shift more stock')", - "link": "https://www.dailymail.co.uk/femail/article-12674881/body-inclusivity-fashion-plus-size-models-high-street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:37:36 GMT", - "enclosure": { - "length": "11322", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/17/77042237-0-image-a-8_1698337469700.jpg" - }, - "content": "Plus-size model Felicity Hayward, 35, told FEMAIL: 'We want to be seen, we want to see clothes on people who look like us, and we want to see brands who are including the curve.'", - "contentSnippet": "Plus-size model Felicity Hayward, 35, told FEMAIL: 'We want to be seen, we want to see clothes on people who look like us, and we want to see brands who are including the curve.'", - "guid": "https://www.dailymail.co.uk/femail/article-12674881/body-inclusivity-fashion-plus-size-models-high-street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:37:36.000Z" - }, - { - "title": "Is this where it's heading for Meghan and Harry? Princess at the heart of Norway's 'Megxit' now appears in reality TV and tours the country as a life coach (with tickets costing \u00a3125!)", - "link": "https://www.dailymail.co.uk/femail/article-12680457/Is-heading-Meghan-Harry-Princess-heart-Norways-Megxit-appears-reality-TV-tours-country-life-coach-tickets-costing-125.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:31:03 GMT", - "enclosure": { - "length": "11630", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77085731-0-image-a-4_1698419226735.jpg" - }, - "content": "In a move labelled Norway's 'Megxit', Princess Martha Louise decided to step back from royal duties in November 2022 to work alongside her\u00a0self-proclaimed 'shaman' fianc\u00e9.", - "contentSnippet": "In a move labelled Norway's 'Megxit', Princess Martha Louise decided to step back from royal duties in November 2022 to work alongside her\u00a0self-proclaimed 'shaman' fianc\u00e9.", - "guid": "https://www.dailymail.co.uk/femail/article-12680457/Is-heading-Meghan-Harry-Princess-heart-Norways-Megxit-appears-reality-TV-tours-country-life-coach-tickets-costing-125.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:31:03.000Z" - }, - { - "title": "Fire breaks out on P&O cruise ship as mobility scooter explodes sparking passenger evacuation", - "link": "https://www.dailymail.co.uk/news/article-12680455/fire-cruise-ship-mobility-scooter-explosion-passenger-evacuation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:30:21 GMT", - "enclosure": { - "length": "10950", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77086567-0-image-m-26_1698420226894.jpg" - }, - "content": "Passengers were evacuated from P&O cruise ship the Iona on Saturday after a fire broke out when a lithium battery on a mobility scooter exploded and burst into flames.", - "contentSnippet": "Passengers were evacuated from P&O cruise ship the Iona on Saturday after a fire broke out when a lithium battery on a mobility scooter exploded and burst into flames.", - "guid": "https://www.dailymail.co.uk/news/article-12680455/fire-cruise-ship-mobility-scooter-explosion-passenger-evacuation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:30:21.000Z" - }, - { - "title": "Revealed - The mystery British power couple who are friends with Kim Kardashians: How Arsenal-loving Brit and his glamorous wife befriended the celebrity icon, partied with her in Dublin and took her kids to see the Gunners", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679353/kim-kardashian-british-friends-revealed-arsenal-wife-party-dublin-kids-red-devils.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:19:59 GMT", - "enclosure": { - "length": "10975", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77086533-0-image-a-1_1698419990771.jpg" - }, - "content": "Reality TV star Kim Kardashian has struck up a close friendship with a mystery British power couple who follow her across the world on her travels.", - "contentSnippet": "Reality TV star Kim Kardashian has struck up a close friendship with a mystery British power couple who follow her across the world on her travels.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679353/kim-kardashian-british-friends-revealed-arsenal-wife-party-dublin-kids-red-devils.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:19:59.000Z" - }, - { - "title": "Funeral is held for 15-year-old girl Jessica Baker who died in M53 bus crash while on her way to school", - "link": "https://www.dailymail.co.uk/news/article-12680185/Funeral-Jessica-Baker-M53-bus-crash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:13:45 GMT", - "enclosure": { - "length": "6004", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/14/77080383-0-image-a-37_1698412232772.jpg" - }, - "content": "Jessica Baker, 15, was killed instantly when the school coach overturned near junction 5 of the M53 in Wirral, Merseyside, on September 29.", - "contentSnippet": "Jessica Baker, 15, was killed instantly when the school coach overturned near junction 5 of the M53 in Wirral, Merseyside, on September 29.", - "guid": "https://www.dailymail.co.uk/news/article-12680185/Funeral-Jessica-Baker-M53-bus-crash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:13:45.000Z" - }, - { - "title": "75-year-old who is in PERFECT health reveals the 'SHIELD' lifestyle regimen he relies on to 'protect' his physical and mental wellbeing as he ages", - "link": "https://www.dailymail.co.uk/femail/article-12655247/75-year-old-financier-reveals-secrets-staying-healthy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:11:46 GMT", - "enclosure": { - "length": "10220", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/23/13/76891511-0-image-a-7_1698065645925.jpg" - }, - "content": "At 75 years old, Ng Kok Song is as mentally and physically strong as he's ever been - thanks to a few simple tricks. Financier Ng, from Singapore, says he uses the acronym SHIELD.", - "contentSnippet": "At 75 years old, Ng Kok Song is as mentally and physically strong as he's ever been - thanks to a few simple tricks. Financier Ng, from Singapore, says he uses the acronym SHIELD.", - "guid": "https://www.dailymail.co.uk/femail/article-12655247/75-year-old-financier-reveals-secrets-staying-healthy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:11:46.000Z" - }, - { - "title": "Keir Starmer faces a major Labour rebellion over his support for Israeli attacks in Gaza as Sadiq Khan and Andy Burnham lead demands for a ceasefire and a quarter of party MPs back calls for humanitarian end to bloodshed", - "link": "https://www.dailymail.co.uk/news/article-12680497/Keir-Starmer-faces-major-Labour-rebellion-Israel-Gaza-Sadiq-Khan-Andy-Burnham-Anas-Sarwar.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:09:21 GMT", - "enclosure": { - "length": "3691", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072599-0-image-m-80_1698397907823.jpg" - }, - "content": "Andy Burnham , the mayor of Greater Manchester, this afternoon joined his London counterpart Sadiq Khan and Scottish party leader Anas Sawar in supporting an end to the fighting.", - "contentSnippet": "Andy Burnham , the mayor of Greater Manchester, this afternoon joined his London counterpart Sadiq Khan and Scottish party leader Anas Sawar in supporting an end to the fighting.", - "guid": "https://www.dailymail.co.uk/news/article-12680497/Keir-Starmer-faces-major-Labour-rebellion-Israel-Gaza-Sadiq-Khan-Andy-Burnham-Anas-Sarwar.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:09:21.000Z" - }, - { - "title": "I got stuck in the toilet at work on the first day in my new role - my colleagues had to kick down the door to save me", - "link": "https://www.dailymail.co.uk/femail/article-12679925/I-got-stuck-toilet-work-day-new-role-colleagues-kick-door-save-me.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:07:12 GMT", - "enclosure": { - "length": "7872", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078747-0-image-a-13_1698409048605.jpg" - }, - "content": "For Lola Bridger, 23, disaster struck when she tried to nip to the loo during her first day at work as an admin assistant in London.", - "contentSnippet": "For Lola Bridger, 23, disaster struck when she tried to nip to the loo during her first day at work as an admin assistant in London.", - "guid": "https://www.dailymail.co.uk/femail/article-12679925/I-got-stuck-toilet-work-day-new-role-colleagues-kick-door-save-me.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:07:12.000Z" - }, - { - "title": "Incredible footage shows boats pushing a FLOATING ISLAND around a lake", - "link": "https://www.dailymail.co.uk/travel/article-12676553/Incredible-footage-shows-boats-pushing-FLOATING-ISLAND-lake.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:04:57 GMT", - "enclosure": { - "length": "8065", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77035263-0-image-a-9_1698335401650.jpg" - }, - "content": "The island in Wisconsin's Lake Chippewa needs to be shifted on a near-annual basis so it doesn't float too close to a bridge that connects the east and west sides of the lake.", - "contentSnippet": "The island in Wisconsin's Lake Chippewa needs to be shifted on a near-annual basis so it doesn't float too close to a bridge that connects the east and west sides of the lake.", - "guid": "https://www.dailymail.co.uk/travel/article-12676553/Incredible-footage-shows-boats-pushing-FLOATING-ISLAND-lake.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:04:57.000Z" - }, - { - "title": "Get the police on the case! Luggage louts caught on camera pinching bags from taxi boot before owners get out", - "link": "https://www.dailymail.co.uk/news/article-12680115/stolen-suitcase-video-kings-cross-station-london.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 15:04:44 GMT", - "enclosure": { - "length": "9543", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77084975-0-image-a-60_1698419001605.jpg" - }, - "content": "Shocking footage has captured the moment a suitcase is stolen from the boot of a taxi by a brazen thief outside London 's King's Cross station, as police issue warning to tourists.", - "contentSnippet": "Shocking footage has captured the moment a suitcase is stolen from the boot of a taxi by a brazen thief outside London 's King's Cross station, as police issue warning to tourists.", - "guid": "https://www.dailymail.co.uk/news/article-12680115/stolen-suitcase-video-kings-cross-station-london.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T15:04:44.000Z" - }, - { - "title": "Psychologist Emma Kenny blasts 'celebrity-washing' that makes mental health issues seem 'sexy' as she opens up about how her father took his own life after a battle with depression", - "link": "https://www.dailymail.co.uk/femail/article-12679927/Psychologist-Emma-Kenny-blasts-celebrity-washing-makes-mental-health-issues-sexy-opens-father-took-life-battle-depression.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 14:55:44 GMT", - "enclosure": { - "length": "10714", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/14/77081159-0-image-a-46_1698413357231.jpg" - }, - "content": "Manchester-based Emma Kenny, who regularly appears on television and is resident therapist on ITV 's This Morning, also called for a change in the way we approach mental health issues.", - "contentSnippet": "Manchester-based Emma Kenny, who regularly appears on television and is resident therapist on ITV 's This Morning, also called for a change in the way we approach mental health issues.", - "guid": "https://www.dailymail.co.uk/femail/article-12679927/Psychologist-Emma-Kenny-blasts-celebrity-washing-makes-mental-health-issues-sexy-opens-father-took-life-battle-depression.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T14:55:44.000Z" - }, - { - "title": "The ghost of Diana haunts our screens. The new Queen is flagging in the polls. But could\u00a0the controversial finale of The Crown bring unexpected VINDICATION for Camilla?", - "link": "https://www.dailymail.co.uk/news/article-12675331/Controversial-finale-Crown-VINDICATION-Camilla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 14:45:54 GMT", - "enclosure": { - "length": "10386", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/13/77031413-0-image-a-48_1698324354255.jpg" - }, - "content": "The polls show we're still in favour of the Monarchy, Charles is doing a good job while William and Kate grow more popular by the week. There's one thing that doesn't seem to change, though...", - "contentSnippet": "The polls show we're still in favour of the Monarchy, Charles is doing a good job while William and Kate grow more popular by the week. There's one thing that doesn't seem to change, though...", - "guid": "https://www.dailymail.co.uk/news/article-12675331/Controversial-finale-Crown-VINDICATION-Camilla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T14:45:54.000Z" - }, - { - "title": "Welcome to the Restaurant of Mistaken Orders in Tokyo where customers get the wrong meals and bad service... but LOVE it", - "link": "https://www.dailymail.co.uk/news/article-12680189/restaurant-tokyo-wrong-meals-bad-service-restaurant-mistaken-orders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 14:44:11 GMT", - "enclosure": { - "length": "10427", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/15/77082167-0-image-a-19_1698415250278.jpg" - }, - "content": "The Restaurant of Mistaken Orders in Tokyo, Japan opens as a recurring pop-up spot in the city in order to raise awareness among its clientele about dementia.", - "contentSnippet": "The Restaurant of Mistaken Orders in Tokyo, Japan opens as a recurring pop-up spot in the city in order to raise awareness among its clientele about dementia.", - "guid": "https://www.dailymail.co.uk/news/article-12680189/restaurant-tokyo-wrong-meals-bad-service-restaurant-mistaken-orders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T14:44:11.000Z" - }, - { - "title": "Bizarre moment motorist drives into a man who ends up on the bonnet before the vehicle knocks a woman over during Storm Babet flooding", - "link": "https://www.dailymail.co.uk/news/article-12679557/Bizarre-moment-motorist-drives-man-ends-bonnet-vehicle-knocks-woman-Storm-Babet-flooding.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 14:41:24 GMT", - "enclosure": { - "length": "10659", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077099-0-image-m-10_1698405923336.jpg" - }, - "content": "In the video, the motorist is seen driving down Nottingham Road in Ilkeston, Derbyshire, on October 21 following days of relentless rain.", - "contentSnippet": "In the video, the motorist is seen driving down Nottingham Road in Ilkeston, Derbyshire, on October 21 following days of relentless rain.", - "guid": "https://www.dailymail.co.uk/news/article-12679557/Bizarre-moment-motorist-drives-man-ends-bonnet-vehicle-knocks-woman-Storm-Babet-flooding.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T14:41:24.000Z" - }, - { - "title": "'I felt I'd done something positive but I was being punished for it': Convicted murderer who took on London Bridge terrorist while he was on day release says he was left 'suicidal' after attack when he was moved from open jail to Category B prison", - "link": "https://www.dailymail.co.uk/news/article-12679813/murderer-London-Bridge-terrorist-day-release-left-suicidal-attack-moved-open-jail-Category-B-prison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 14:32:54 GMT", - "enclosure": { - "length": "8765", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77079251-0-image-m-14_1698410109813.jpg" - }, - "content": "Steve Gallant was spending his first day outside prison in 14 years when convicted terrorist Usman Khan began attacking people at Fishmongers' Hall next to London Bridge.", - "contentSnippet": "Steve Gallant was spending his first day outside prison in 14 years when convicted terrorist Usman Khan began attacking people at Fishmongers' Hall next to London Bridge.", - "guid": "https://www.dailymail.co.uk/news/article-12679813/murderer-London-Bridge-terrorist-day-release-left-suicidal-attack-moved-open-jail-Category-B-prison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T14:32:54.000Z" - }, - { - "title": "Strictly Come Dancing's Angela Rippon,\u00a079, reveals why she's still determined to get as much fun out of life as possible", - "link": "https://www.dailymail.co.uk/femail/article-12666153/Strictly-Come-Dancings-Angela-Rippon-79-reveals-shes-determined-fun-life-possible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 14:12:08 GMT", - "enclosure": { - "length": "12077", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/24/15/76937303-0-image-a-64_1698158216718.jpg" - }, - "content": "Angela Rippon is 79 years of age, the oldest person ever to grace the dance floor on the BBC's British flagship series and - at the time we're talking - has not just survived, but thrived.", - "contentSnippet": "Angela Rippon is 79 years of age, the oldest person ever to grace the dance floor on the BBC's British flagship series and - at the time we're talking - has not just survived, but thrived.", - "guid": "https://www.dailymail.co.uk/femail/article-12666153/Strictly-Come-Dancings-Angela-Rippon-79-reveals-shes-determined-fun-life-possible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T14:12:08.000Z" - }, - { - "title": "How Iran pulls terrorist strings across the Middle East: Tehran uses its influence and proxy fighters to spread murder and mayhem throughout the region in its war against the West", - "link": "https://www.dailymail.co.uk/news/article-12679509/How-Iran-pulls-terrorist-strings-Middle-East-Tehran-uses-influence-proxy-fighters-spread-murder-mayhem-region-war-against-West.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 14:01:06 GMT", - "enclosure": { - "length": "13031", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/14/77081003-0-image-m-30_1698413216888.jpg" - }, - "content": "After the United States expanded its military support for Israel in the wake of Hamas' attacks, the Jewish state's most fearsome foe - Iran - has warned it could soon enter the fray", - "contentSnippet": "After the United States expanded its military support for Israel in the wake of Hamas' attacks, the Jewish state's most fearsome foe - Iran - has warned it could soon enter the fray", - "guid": "https://www.dailymail.co.uk/news/article-12679509/How-Iran-pulls-terrorist-strings-Middle-East-Tehran-uses-influence-proxy-fighters-spread-murder-mayhem-region-war-against-West.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T14:01:06.000Z" - }, - { - "title": "The most expensive fish and chips in the UK: From Tom Kerridge's \u00a337 Harrods meal, a \u00a327.50 plate at Bentley's in Mayfair, and Gordon Ramsay's \u00a323 dish..the priciest offerings of the British classic (compared to the cheapest in Grimsby at just \u00a33!)", - "link": "https://www.dailymail.co.uk/news/article-12169213/expensive-fish-chips-UK-Tom-Kerridges-Harrods.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 13:48:50 GMT", - "enclosure": { - "length": "8584", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078927-0-image-m-74_1698409340266.jpg" - }, - "content": "TV chef Tom Kerridge has been making headlines since June when it emerged that his restaurant is selling his take on fish and chips for a staggering \u00a337 - excluding the service charge.", - "contentSnippet": "TV chef Tom Kerridge has been making headlines since June when it emerged that his restaurant is selling his take on fish and chips for a staggering \u00a337 - excluding the service charge.", - "guid": "https://www.dailymail.co.uk/news/article-12169213/expensive-fish-chips-UK-Tom-Kerridges-Harrods.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T13:48:50.000Z" - }, - { - "title": "I've MARRIED my 22-year-old adopted son after raising him from the age of 14 - officials have now taken my other five children away from me", - "link": "https://www.dailymail.co.uk/femail/article-12679607/russian-woman-married-son.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 13:35:32 GMT", - "enclosure": { - "length": "11470", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077965-0-image-a-16_1698407505782.jpg" - }, - "content": "Aisylu Chizhevskaya Mingalim, 53, from Tatarstan, shocked child welfare experts after marrying her 22-year-old adopted son, Daniel Chizhevsky.", - "contentSnippet": "Aisylu Chizhevskaya Mingalim, 53, from Tatarstan, shocked child welfare experts after marrying her 22-year-old adopted son, Daniel Chizhevsky.", - "guid": "https://www.dailymail.co.uk/femail/article-12679607/russian-woman-married-son.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T13:35:32.000Z" - }, - { - "title": "Just in time for Halloween! NASA's Juno probe spots a ghoulish 'face' on Jupiter", - "link": "https://www.dailymail.co.uk/sciencetech/article-12679849/Just-time-Halloween-NASAs-Juno-probe-spots-ghoulish-face-Jupiter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 13:28:54 GMT", - "enclosure": { - "length": "2967", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77078079-0-image-m-51_1698407793046.jpg" - }, - "content": "The picture was snapped by the US space agency's Juno probe during its 54th close flyby of the gas giant last month.", - "contentSnippet": "The picture was snapped by the US space agency's Juno probe during its 54th close flyby of the gas giant last month.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12679849/Just-time-Halloween-NASAs-Juno-probe-spots-ghoulish-face-Jupiter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T13:28:54.000Z" - }, - { - "title": "A topless face-off with Mike Tyson, trashing a stage, headbutting a glass wall - and lashing out at KSI: The bizarre pre-fight antics of Tyson Fury's hellraising father John - as bemused fans brand him 'the most embarrassing man on the planet'", - "link": "https://www.dailymail.co.uk/news/article-12679777/Tyson-fury-bizarre-pre-fight-antics-father-john-ksi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 13:17:16 GMT", - "enclosure": { - "length": "4270", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078591-0-image-m-98_1698408693887.jpg" - }, - "content": "John, an Irish former professional boxer, was last seen on Thursday charging down a stage towards Iron Mike and shouting\u00a0'do you want to fight me?'", - "contentSnippet": "John, an Irish former professional boxer, was last seen on Thursday charging down a stage towards Iron Mike and shouting\u00a0'do you want to fight me?'", - "guid": "https://www.dailymail.co.uk/news/article-12679777/Tyson-fury-bizarre-pre-fight-antics-father-john-ksi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T13:17:16.000Z" - }, - { - "title": "We're au pairs and we graduated from Norland College, where Prince George's nanny trained - now we life a life of luxury in Beverly Hills", - "link": "https://www.dailymail.co.uk/femail/article-12679589/Norland-nanny-twins-gives-insight-life-one-year-Norland-college-trains-nannies-including-Spanish-supernanny-whos-cared-William-Kates-children-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 13:04:14 GMT", - "enclosure": { - "length": "11035", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77076759-0-image-a-6_1698404900842.jpg" - }, - "content": "Two unnamed twin sisters, who graduated from the prestigious college in Bath last year, have revealed their newfound luxury lifestyle as travel au pairs.", - "contentSnippet": "Two unnamed twin sisters, who graduated from the prestigious college in Bath last year, have revealed their newfound luxury lifestyle as travel au pairs.", - "guid": "https://www.dailymail.co.uk/femail/article-12679589/Norland-nanny-twins-gives-insight-life-one-year-Norland-college-trains-nannies-including-Spanish-supernanny-whos-cared-William-Kates-children-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T13:04:14.000Z" - }, - { - "title": "EXCLUSIVE: Kris Jenner's former bodyguard Marc McWilliams who accused her of grabbing his crotch and exposing her body parts in a 'lewd manner' drops $3million lawsuit", - "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679823/Kris-Jenner-accused-groping-crotch-bodyguard-settles-sexual-assault-lawsuit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:59:36 GMT", - "enclosure": { - "length": "10848", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2022/01/11/20/52809617-0-image-a-46_1641931209158.jpg" - }, - "content": "Marc McWilliams, 47, who worked for Kardashian-Jenner clan from 2017-2019,\u00a0 accused the matriarch of\u00a0sexual harassment as well as sexual assault and battery.", - "contentSnippet": "Marc McWilliams, 47, who worked for Kardashian-Jenner clan from 2017-2019,\u00a0 accused the matriarch of\u00a0sexual harassment as well as sexual assault and battery.", - "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679823/Kris-Jenner-accused-groping-crotch-bodyguard-settles-sexual-assault-lawsuit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:59:36.000Z" - }, - { - "title": "Wilko was 'saved from the scrapheap because shoppers love the brand - but it will have its work cut out competing with other discount retailers', expert warns as chain returns to high street... is a store opening near YOU?", - "link": "https://www.dailymail.co.uk/news/article-12680097/Wilko-high-street-expert-new-stores-UK-location-near-Range.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:59:07 GMT", - "enclosure": { - "length": "9607", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/76514519-0-image-m-125_1698411117578.jpg" - }, - "content": "Financial expert Susannah Streeter said there was clearly 'affection for Wilko among throngs of value conscious shoppers' but added that its store locations will be 'key'.", - "contentSnippet": "Financial expert Susannah Streeter said there was clearly 'affection for Wilko among throngs of value conscious shoppers' but added that its store locations will be 'key'.", - "guid": "https://www.dailymail.co.uk/news/article-12680097/Wilko-high-street-expert-new-stores-UK-location-near-Range.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:59:07.000Z" - }, - { - "title": "FTX founder Sam Bankman-Fried is scolded by Judge Lewis Kaplan for rambling on the stand, ordering him to 'answer the questions directly' during brutal cross examination", - "link": "https://www.dailymail.co.uk/news/article-12680037/FTX-founder-Sam-Bankman-Fried-scolded-Judge-Lewis-Kaplan-rambling-stand-ordering-answer-questions-directly-brutal-cross-examination.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:56:55 GMT", - "enclosure": { - "length": "10275", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/26/20/77048141-0-image-a-49_1698347373429.jpg" - }, - "content": "Judge Lewis Kaplan lost his patience with Bankman-Fried, remarking that he felt he had 'gotten beyond my tether here'.", - "contentSnippet": "Judge Lewis Kaplan lost his patience with Bankman-Fried, remarking that he felt he had 'gotten beyond my tether here'.", - "guid": "https://www.dailymail.co.uk/news/article-12680037/FTX-founder-Sam-Bankman-Fried-scolded-Judge-Lewis-Kaplan-rambling-stand-ordering-answer-questions-directly-brutal-cross-examination.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:56:55.000Z" - }, - { - "title": "Revealed: Ryan Gosling is the most DANGEROUS name to search online - while looking up Emily Blunt or Jennifer Lopez could also land you in hot water", - "link": "https://www.dailymail.co.uk/sciencetech/article-12679877/Ryan-Gosling-DANGEROUS-search-online-looking-Emily-Blunt-Jennifer-Lopez-land-hot-water.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:49:56 GMT", - "enclosure": { - "length": "10153", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77079805-0-image-a-148_1698410929964.jpg" - }, - "content": "A new report by McAfee Labs shows that Ryan Gosling's name is most use by scammers to create malware or risky sites.", - "contentSnippet": "A new report by McAfee Labs shows that Ryan Gosling's name is most use by scammers to create malware or risky sites.", - "guid": "https://www.dailymail.co.uk/sciencetech/article-12679877/Ryan-Gosling-DANGEROUS-search-online-looking-Emily-Blunt-Jennifer-Lopez-land-hot-water.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:49:56.000Z" - }, - { - "title": "Chelsea boss Mauricio Pochettino says the Premier League's Christmas Eve game will leave his WIFE unhappy as he misses their wedding anniversary, as he joins fan anger against fixtures", - "link": "https://www.dailymail.co.uk/sport/football/article-12680043/Chelsea-boss-Mauricio-Pochettino-says-Premier-Leagues-Christmas-Eve-game-leave-WIFE-unhappy-misses-wedding-anniversary-joins-fan-anger-against-fixtures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:47:14 GMT", - "enclosure": { - "length": "10088", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77079173-0-image-a-59_1698409939525.jpg" - }, - "content": "ADRIAN KAJUMBA: The Premier League's decision was dubbed 'totally unacceptable' by Chelsea's Supporters' Trust who also called for the decision to be reversed.", - "contentSnippet": "ADRIAN KAJUMBA: The Premier League's decision was dubbed 'totally unacceptable' by Chelsea's Supporters' Trust who also called for the decision to be reversed.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12680043/Chelsea-boss-Mauricio-Pochettino-says-Premier-Leagues-Christmas-Eve-game-leave-WIFE-unhappy-misses-wedding-anniversary-joins-fan-anger-against-fixtures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:47:14.000Z" - }, - { - "title": "Teenager, 17, charged with the murder of a 60-year-old woman stabbed to death in her own home", - "link": "https://www.dailymail.co.uk/news/article-12679995/Teenager-17-charged-murder-60-year-old-woman-stabbed-death-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:32:31 GMT", - "enclosure": { - "length": "7633", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078325-0-image-m-6_1698408393982.jpg" - }, - "content": "Mandy Barnett, pictured, died on Monday night shortly after she was rushed to hospital having suffered grave knife wounds at a house in Leeds.", - "contentSnippet": "Mandy Barnett, pictured, died on Monday night shortly after she was rushed to hospital having suffered grave knife wounds at a house in Leeds.", - "guid": "https://www.dailymail.co.uk/news/article-12679995/Teenager-17-charged-murder-60-year-old-woman-stabbed-death-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:32:31.000Z" - }, - { - "title": "Israeli Liverpool fan gets his tattoo of their crest blacked out and replaced by a Star of David while crossing out 'Never' from their motto 'You'll Never Walk Alone' - after the club banned a tribute to fans murdered by Hamas", - "link": "https://www.dailymail.co.uk/sport/football/article-12679885/Israeli-Liverpool-fan-gets-tattoo-crest-blacked-replaced-Star-David-crossing-Never-motto-Youll-Never-Walk-club-banned-tribute-fans-murdered-Hamas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "pubDate": "Fri, 27 Oct 2023 12:14:30 GMT", - "enclosure": { - "length": "9978", - "type": "image/jpeg", - "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078657-0-image-a-24_1698408842098.jpg" - }, - "content": "A lifelong Reds fan hailing from Israel, Oren Sensel, has been angered by Liverpool's decision to ban tributes to those killed by the Hamas attacks, and has stated he will no longer support the club.", - "contentSnippet": "A lifelong Reds fan hailing from Israel, Oren Sensel, has been angered by Liverpool's decision to ban tributes to those killed by the Hamas attacks, and has stated he will no longer support the club.", - "guid": "https://www.dailymail.co.uk/sport/football/article-12679885/Israeli-Liverpool-fan-gets-tattoo-crest-blacked-replaced-Star-David-crossing-Never-motto-Youll-Never-Walk-club-banned-tribute-fans-murdered-Hamas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", - "isoDate": "2023-10-27T12:14:30.000Z" - } -] \ No newline at end of file + { + "title": "Kate Middleton and Prince William ignore fallout from Omid Scobie race row as they arrive hand-in-hand at the Royal Variety Performance", + "link": "https://www.dailymail.co.uk/femail/article-12810801/Kate-Middleton-ignores-fallout-Omid-Scobie-race-row-puts-sleek-display-teal-gown-Royal-Variety-Performance-Prince-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:27:07 GMT", + "enclosure": { + "length": "9716", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437345-0-image-a-50_1701370890784.jpg" + }, + "content": "The Princess of Wales glowed as she arrived at the Royal Albert Hall in Kensington, following the release of Omid Scobie's Endgame earlier this week.", + "contentSnippet": "The Princess of Wales glowed as she arrived at the Royal Albert Hall in Kensington, following the release of Omid Scobie's Endgame earlier this week.", + "guid": "https://www.dailymail.co.uk/femail/article-12810801/Kate-Middleton-ignores-fallout-Omid-Scobie-race-row-puts-sleek-display-teal-gown-Royal-Variety-Performance-Prince-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:27:07.000Z" + }, + { + "title": "Taylor Swift DAZZLES in Balmain gown as she joins an underwear-flashing Beyonce at VERY star-studded Renaissance premiere in London - after jetting in from boyfriend Travis Kelce's mansion in Kansas City", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811409/Taylor-Swift-DAZZLES-Beyonces-Renaissance-premiere-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:27:01 GMT", + "enclosure": { + "length": "11998", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443659-0-image-m-132_1701380798216.jpg" + }, + "content": "Taylor Swift dazzled as she hit the red carpet for Beyonce's Renaissance premiere in London on Thursday.", + "contentSnippet": "Taylor Swift dazzled as she hit the red carpet for Beyonce's Renaissance premiere in London on Thursday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811409/Taylor-Swift-DAZZLES-Beyonces-Renaissance-premiere-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:27:01.000Z" + }, + { + "title": "A record 38,7000 asylum seekers are given refuge in the UK - even more than during the crisis in the early 2000s", + "link": "https://www.dailymail.co.uk/news/article-12811771/A-record-38-7000-asylum-seekers-given-refuge-UK-crisis-early-2000s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:26:12 GMT", + "enclosure": { + "length": "11191", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443409-0-image-a-27_1701380589973.jpg" + }, + "content": "Home Office caseworkers made just under 42,000 initial decisions on asylum claims in the year - the highest level in two decades", + "contentSnippet": "Home Office caseworkers made just under 42,000 initial decisions on asylum claims in the year - the highest level in two decades", + "guid": "https://www.dailymail.co.uk/news/article-12811771/A-record-38-7000-asylum-seekers-given-refuge-UK-crisis-early-2000s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:26:12.000Z" + }, + { + "title": "I'm Nigel Farage's secret girlfriend... I love his loyalty, his empathy - and he's got a great bottom!", + "link": "https://www.dailymail.co.uk/news/article-12811695/nigel-farage-secret-girlfriend-im-celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:18:59 GMT", + "enclosure": { + "length": "10551", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442525-0-image-a-36_1701379656697.jpg" + }, + "content": "EXCLUSIVE: She has stayed out of the spotlight and her life has been a closely guarded secret. But her lover Nigel Farage is deep in the celebrity jungle - and Laure Ferrari is silent no longer.", + "contentSnippet": "EXCLUSIVE: She has stayed out of the spotlight and her life has been a closely guarded secret. But her lover Nigel Farage is deep in the celebrity jungle - and Laure Ferrari is silent no longer.", + "guid": "https://www.dailymail.co.uk/news/article-12811695/nigel-farage-secret-girlfriend-im-celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:18:59.000Z" + }, + { + "title": "Mummified 'aliens' found in Peru have 30% DNA of an 'unknown species,' new analysis claims", + "link": "https://www.dailymail.co.uk/sciencetech/article-12811071/Mexicos-alien-corpses-30-unknown-species-new-DNA-analysis-shows.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:17:48 GMT", + "enclosure": { + "length": "5421", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78435915-0-image-a-10_1701371102152.jpg" + }, + "content": "Mexico's famed 'aliens' underwent an analysis that showed the pair have 30 percent DNA of an 'unknown species.' Researchers involved said the corpses are authentic and not of this world.", + "contentSnippet": "Mexico's famed 'aliens' underwent an analysis that showed the pair have 30 percent DNA of an 'unknown species.' Researchers involved said the corpses are authentic and not of this world.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12811071/Mexicos-alien-corpses-30-unknown-species-new-DNA-analysis-shows.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:17:48.000Z" + }, + { + "title": "Legia Warsaw fans injure three police officers on rampage outside Villa Park before being barred from entering stadium and kept in a car park... but some manage to BREAK IN during first-half as Polish club blame Aston Villa for violence", + "link": "https://www.dailymail.co.uk/sport/football/article-12811311/Legia-Warsaw-fans-CLASH-police-ahead-Europa-Conference-League-tie-Aston-Villa-1-000-supporters-vowed-travel-Villa-Park-despite-not-having-tickets-game.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:16:40 GMT", + "enclosure": { + "length": "12215", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/23/78446817-0-image-a-48_1701386166214.jpg" + }, + "content": "Mail Sport understands that Legia were unhappy with their reduced allocation after Villa reduced their ticket allocation based on advice from the police and Safety Advisory Group.", + "contentSnippet": "Mail Sport understands that Legia were unhappy with their reduced allocation after Villa reduced their ticket allocation based on advice from the police and Safety Advisory Group.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12811311/Legia-Warsaw-fans-CLASH-police-ahead-Europa-Conference-League-tie-Aston-Villa-1-000-supporters-vowed-travel-Villa-Park-despite-not-having-tickets-game.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:16:40.000Z" + }, + { + "title": "The thrillingly scandalous lives of the 300 American heiresses who paid to web impecunious Dukes, Earls and Viscounts and saved the aristocracy", + "link": "https://www.dailymail.co.uk/femail/article-12811673/The-thrillingly-scandalous-lives-300-American-heiresses-paid-web-impecunious-Dukes-Earls-Viscounts-saved-aristocracy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:10:16 GMT", + "enclosure": { + "length": "10437", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442473-0-image-a-2_1701380296902.jpg" + }, + "content": "The new TV series The Buccaneers shows in detail a time when English aristocrats were in high demand as marriage material for wealthy American girls and their socially ambitious families.", + "contentSnippet": "The new TV series The Buccaneers shows in detail a time when English aristocrats were in high demand as marriage material for wealthy American girls and their socially ambitious families.", + "guid": "https://www.dailymail.co.uk/femail/article-12811673/The-thrillingly-scandalous-lives-300-American-heiresses-paid-web-impecunious-Dukes-Earls-Viscounts-saved-aristocracy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:10:16.000Z" + }, + { + "title": "JAN MOIR: It beggars belief to suggest Harry's family implied that a non-white baby wouldn't be welcome", + "link": "https://www.dailymail.co.uk/debate/article-12811923/JAN-MOIR-beggars-belief-suggest-Harrys-family-implied-non-white-baby-wouldnt-welcome.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:09:14 GMT", + "enclosure": { + "length": "10071", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78445013-0-image-a-62_1701383099998.jpg" + }, + "content": "Two years after the Duke and Duchess of Sussex opened up to Oprah about 'concerns' members of the Royal Family had over what colour Archie's skin might be, the royal racist row has flared up again.", + "contentSnippet": "Two years after the Duke and Duchess of Sussex opened up to Oprah about 'concerns' members of the Royal Family had over what colour Archie's skin might be, the royal racist row has flared up again.", + "guid": "https://www.dailymail.co.uk/debate/article-12811923/JAN-MOIR-beggars-belief-suggest-Harrys-family-implied-non-white-baby-wouldnt-welcome.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:09:14.000Z" + }, + { + "title": "Eileen review: This film hits the target with more than a hint of Hitchcock and Highsmith, writes BRIAN VINER", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811559/Eileen-review-film-hits-target-hint-Hitchcock-Highsmith-writes-BRIAN-VINER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:08:11 GMT", + "enclosure": { + "length": "9553", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442309-0-image-m-3_1701380128207.jpg" + }, + "content": "BRIAN VINER: ileen - the eponymous character in William Oldroyd's carefully constructed psychological thriller - is a put-upon, dowdy, rather repressed young woman.", + "contentSnippet": "BRIAN VINER: ileen - the eponymous character in William Oldroyd's carefully constructed psychological thriller - is a put-upon, dowdy, rather repressed young woman.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811559/Eileen-review-film-hits-target-hint-Hitchcock-Highsmith-writes-BRIAN-VINER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:08:11.000Z" + }, + { + "title": "The real-life filming locations from Shane MacGowan's Christmas anthem Fairytale of New York music video - as The Pogues frontman dies aged 65", + "link": "https://www.dailymail.co.uk/femail/article-12810085/shane-macgowan-fairytale-new-york-filming-locations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:05:19 GMT", + "enclosure": { + "length": "9734", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435855-0-image-a-35_1701368264782.jpg" + }, + "content": "Self-proclaimed 'pop culture detective'\u00a0Bob Egan rounded up a list of all the filming locations that were used in the visual for Fairtytale of New York for this blog, PopSpotsNYC.", + "contentSnippet": "Self-proclaimed 'pop culture detective'\u00a0Bob Egan rounded up a list of all the filming locations that were used in the visual for Fairtytale of New York for this blog, PopSpotsNYC.", + "guid": "https://www.dailymail.co.uk/femail/article-12810085/shane-macgowan-fairytale-new-york-filming-locations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:05:19.000Z" + }, + { + "title": "I have a tattoo on my face - trolls say it makes me look like a thug and that I'm a bad mother", + "link": "https://www.dailymail.co.uk/femail/article-12809415/I-tattoo-face-trolls-say-makes-look-like-thug-Im-bad-mother.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:04:12 GMT", + "enclosure": { + "length": "9608", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78420495-0-image-a-42_1701347915951.jpg" + }, + "content": "Katie Taylor ,\u00a027, from Rayleigh, Essex, has been getting tattoos since she was 18 and wanted a special one to always reminded her of her two-year-old daughter.", + "contentSnippet": "Katie Taylor ,\u00a027, from Rayleigh, Essex, has been getting tattoos since she was 18 and wanted a special one to always reminded her of her two-year-old daughter.", + "guid": "https://www.dailymail.co.uk/femail/article-12809415/I-tattoo-face-trolls-say-makes-look-like-thug-Im-bad-mother.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:04:12.000Z" + }, + { + "title": "Tearful mother of Brendan Depa, the hulking 6ft 6in autistic boy who brutally beat teacher's aide unconscious over Nintendo Switch, says 'prison is a death sentence' as she breaks her silence and pleads with victim to show mercy", + "link": "https://www.dailymail.co.uk/news/article-12810815/mother-autistic-brendan-depa-beat-teacher-nintendo-switch-florida.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:02:25 GMT", + "enclosure": { + "length": "9754", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78436959-0-image-a-23_1701370008418.jpg" + }, + "content": "The mother of a\u00a06-foot 6-inch autistic teenager who\u00a0viscously beat a teacher's aide unconscious in Florida has claimed prison is a 'death sentence' for her son.", + "contentSnippet": "The mother of a\u00a06-foot 6-inch autistic teenager who\u00a0viscously beat a teacher's aide unconscious in Florida has claimed prison is a 'death sentence' for her son.", + "guid": "https://www.dailymail.co.uk/news/article-12810815/mother-autistic-brendan-depa-beat-teacher-nintendo-switch-florida.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:02:25.000Z" + }, + { + "title": "Henry Kissinger was a colossus who bestrode a century: He shaped politics like no other statesman and the world wouldn't be in such a perilous state if more followed his wise and ruthlessly pragmatic approach, says his acclaimed biographer NIALL FERGUSON", + "link": "https://www.dailymail.co.uk/news/article-12811757/Henry-Kissinger-death-biographer-niall-ferguson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:02:23 GMT", + "enclosure": { + "length": "4521", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443379-0-image-m-62_1701381260119.jpg" + }, + "content": "NIALL FERGUSON: Henry Kissinger was the most enduringly influential secretary of state in the history of the United States. He was also the most controversial.", + "contentSnippet": "NIALL FERGUSON: Henry Kissinger was the most enduringly influential secretary of state in the history of the United States. He was also the most controversial.", + "guid": "https://www.dailymail.co.uk/news/article-12811757/Henry-Kissinger-death-biographer-niall-ferguson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:02:23.000Z" + }, + { + "title": "A Sussex silence even more damning than the 'royal racist' stink bomb: MAUREEN CALLAHAN's devastating takedown of Harry and Meghan's cowardly refusal to denounce lying Scobie's noxious slurs", + "link": "https://www.dailymail.co.uk/news/article-12806599/MAUREEN-CALLAHAN-royal-racists-Harry-Meghan-Scobie-cowardly-silence.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:00:57 GMT", + "enclosure": { + "length": "11619", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/29/21/78391581-0-image-a-17_1701293062297.jpg" + }, + "content": "Harry and Meghan are playing their most dangerous game yet. These two cowards, who set off this stink bomb of racist accusations two-and-a-half-years ago, must now say something.", + "contentSnippet": "Harry and Meghan are playing their most dangerous game yet. These two cowards, who set off this stink bomb of racist accusations two-and-a-half-years ago, must now say something.", + "guid": "https://www.dailymail.co.uk/news/article-12806599/MAUREEN-CALLAHAN-royal-racists-Harry-Meghan-Scobie-cowardly-silence.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:00:57.000Z" + }, + { + "title": "Omid Scobie's defence unravels as Dutch translator says the names of royals accused of discussing Archie's skin colour WERE in the book - So how DID details from Meghan's private letter to Charles end up there?", + "link": "https://www.dailymail.co.uk/news/article-12811881/Omid-Scobie-Dutch-translator-Endgame-Meghans-letter-Charles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:47:10 GMT", + "enclosure": { + "length": "11705", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444873-0-image-m-130_1701383087353.jpg" + }, + "content": "What appears to have been intended as an innocuous chat about the excitement of a new baby culminated this week with two alleged 'royal racists' being outed on national television in the UK.", + "contentSnippet": "What appears to have been intended as an innocuous chat about the excitement of a new baby culminated this week with two alleged 'royal racists' being outed on national television in the UK.", + "guid": "https://www.dailymail.co.uk/news/article-12811881/Omid-Scobie-Dutch-translator-Endgame-Meghans-letter-Charles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:47:10.000Z" + }, + { + "title": "My friends thought I'd dyed my hair after seeing a TikTok video - it turned out to be my secret twin", + "link": "https://www.dailymail.co.uk/femail/article-12809969/twins-Ano-Sartania-Tako-Khvitia-separated-birth-Georgia-reunite-thanks-tiktok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:36:38 GMT", + "enclosure": { + "length": "9344", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78433111-0-image-a-2_1701363965875.jpg" + }, + "content": "Twins Ano Sartania and Tako Khvitia, now 21, were born in Kirtski, Georgia, on June 20, 2002 - but neither had any idea that the other existed until they were nearly 20. And it was all because of TikTok.", + "contentSnippet": "Twins Ano Sartania and Tako Khvitia, now 21, were born in Kirtski, Georgia, on June 20, 2002 - but neither had any idea that the other existed until they were nearly 20. And it was all because of TikTok.", + "guid": "https://www.dailymail.co.uk/femail/article-12809969/twins-Ano-Sartania-Tako-Khvitia-separated-birth-Georgia-reunite-thanks-tiktok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:36:38.000Z" + }, + { + "title": "SNP rocked by discovery of intimate texts revealing two politicians' torrid lockdown affair - at the same time the party insisted Scots stayed home", + "link": "https://www.dailymail.co.uk/news/article-12811227/SNP-rocked-intimate-texts-two-politicians-lockdown-affair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:26:00 GMT", + "enclosure": { + "length": "11216", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78439149-0-image-a-7_1701375255413.jpg" + }, + "content": "The secret relationship is said to have carried on during the Covid pandemic in 2020, when the SNP forced the rest of the country to stay at home under tough lockdown restrictions.", + "contentSnippet": "The secret relationship is said to have carried on during the Covid pandemic in 2020, when the SNP forced the rest of the country to stay at home under tough lockdown restrictions.", + "guid": "https://www.dailymail.co.uk/news/article-12811227/SNP-rocked-intimate-texts-two-politicians-lockdown-affair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:26:00.000Z" + }, + { + "title": "Scientists create microscopic ROBOTS made from human cells that repair neurons - opening the door to future Alzheimer's treatment", + "link": "https://www.dailymail.co.uk/sciencetech/article-12811183/tiny-biological-robots-human-cells.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:23:33 GMT", + "enclosure": { + "length": "10407", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438959-0-image-a-5_1701374095081.jpg" + }, + "content": "Microscopic 'anthrobots' built from human lung cells could roam around in a person's body and repair damaged tissues. Scientists hope they will one day help treat diseases.", + "contentSnippet": "Microscopic 'anthrobots' built from human lung cells could roam around in a person's body and repair damaged tissues. Scientists hope they will one day help treat diseases.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12811183/tiny-biological-robots-human-cells.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:23:33.000Z" + }, + { + "title": "QUENTIN LETTS: In six hours of Matt Hancock's evidence at the Covid Inquiry all we really found out was that he loathes the The Man He Would Not Name... Dominic Cummings", + "link": "https://www.dailymail.co.uk/debate/article-12811755/QUENTIN-LETTS-six-hours-Matt-Hancocks-evidence-Covid-Inquiry-really-loathes-Man-Not-Dominic-Cummings.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:05:31 GMT", + "enclosure": { + "length": "3945", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443133-0-image-m-52_1701380301265.jpg" + }, + "content": "During Mr Hancock's six hours at the Covid Inquiry witness table, not a single rude word was said, though a few were implied.", + "contentSnippet": "During Mr Hancock's six hours at the Covid Inquiry witness table, not a single rude word was said, though a few were implied.", + "guid": "https://www.dailymail.co.uk/debate/article-12811755/QUENTIN-LETTS-six-hours-Matt-Hancocks-evidence-Covid-Inquiry-really-loathes-Man-Not-Dominic-Cummings.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:05:31.000Z" + }, + { + "title": "My dear friend Henry Kissinger and Princess Diana flirted outrageously and he was catnip to beautiful women. No wonder he said 'power is the ultimate aphrodisiac', writes JONATHAN AITKEN", + "link": "https://www.dailymail.co.uk/debate/article-12811783/henry-kissinger-princess-diana-flirted-power-ultimate-aphrodisiac.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:00:50 GMT", + "enclosure": { + "length": "7213", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443961-0-image-a-125_1701381374502.jpg" + }, + "content": "JONATHAN AITKEN: Although tubby and bespectacled, Henry was irresistibly attractive to women, dating a string of film stars before his marriage to Nancy Maginnes", + "contentSnippet": "JONATHAN AITKEN: Although tubby and bespectacled, Henry was irresistibly attractive to women, dating a string of film stars before his marriage to Nancy Maginnes", + "guid": "https://www.dailymail.co.uk/debate/article-12811783/henry-kissinger-princess-diana-flirted-power-ultimate-aphrodisiac.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:00:50.000Z" + }, + { + "title": "RICHARD LITTLEJOHN: My old man's a dustman - and he's NOT working from home", + "link": "https://www.dailymail.co.uk/debate/article-12811653/RICHARD-LITTLEJOHN-old-mans-dustman-hes-NOT-working-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:55:31 GMT", + "enclosure": { + "length": "12795", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442499-0-image-a-18_1701379737458.jpg" + }, + "content": "According to a survey of 12,000 members conducted by the PCS, 4/10 said they were prepared to defy a ministerial instruction to spend at least 60% of their time in the office.", + "contentSnippet": "According to a survey of 12,000 members conducted by the PCS, 4/10 said they were prepared to defy a ministerial instruction to spend at least 60% of their time in the office.", + "guid": "https://www.dailymail.co.uk/debate/article-12811653/RICHARD-LITTLEJOHN-old-mans-dustman-hes-NOT-working-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:55:31.000Z" + }, + { + "title": "ALISON BOSHOFF: Will Timothee Chalamet's SNL Hamas 'joke' take a bite out of Wonka at the box office?", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811345/Timothee-Chalamet-SNL-Hamas-joke-Wonka.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:54:13 GMT", + "enclosure": { + "length": "9598", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78441363-0-image-a-69_1701377480127.jpg" + }, + "content": "ALISON BOSHOFF: Hundreds of negative comments have been posted on Chalamet's Instagram account - where he is followed by 18.4 million fans - since the SNL sketch was broadcast", + "contentSnippet": "ALISON BOSHOFF: Hundreds of negative comments have been posted on Chalamet's Instagram account - where he is followed by 18.4 million fans - since the SNL sketch was broadcast", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811345/Timothee-Chalamet-SNL-Hamas-joke-Wonka.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:54:13.000Z" + }, + { + "title": "Covid WAS clearly the result of genetic engineering in China. If the inquiry refuses to consider this, the hearings are pointless, says leading scientist PROF ANGUS DALGLEISH", + "link": "https://www.dailymail.co.uk/debate/article-12811711/Covid-genetic-engineering-China-inquiry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:53:54 GMT", + "enclosure": { + "length": "9491", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442325-0-image-a-83_1701379128438.jpg" + }, + "content": "PROFESSOR ANGUS DALGLEISH: If the Covid Inquiry was genuinely interested in discovering the truth behind the pandemic, the origin of this novel virus would be its main focus", + "contentSnippet": "PROFESSOR ANGUS DALGLEISH: If the Covid Inquiry was genuinely interested in discovering the truth behind the pandemic, the origin of this novel virus would be its main focus", + "guid": "https://www.dailymail.co.uk/debate/article-12811711/Covid-genetic-engineering-China-inquiry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:53:54.000Z" + }, + { + "title": "It's beginning to sound a lot like Christmas thanks to Cher and folk queen Kate Rusby: ADRIAN THRILLS review's this year's festive albums", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811535/Its-beginning-sound-lot-like-Christmas-thanks-Cher-folk-queen-Kate-Rusby-ADRIAN-THRILLS-reviews-years-festive-albums.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:51:25 GMT", + "enclosure": { + "length": "4201", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78441769-0-image-m-34_1701378700483.jpg" + }, + "content": "ADRIAN THRILLS: THE weather outside may be frightful, but pop's finest are ready to warm our hearts with Christmas standards, folk carols and kitsch classics.", + "contentSnippet": "ADRIAN THRILLS: THE weather outside may be frightful, but pop's finest are ready to warm our hearts with Christmas standards, folk carols and kitsch classics.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811535/Its-beginning-sound-lot-like-Christmas-thanks-Cher-folk-queen-Kate-Rusby-ADRIAN-THRILLS-reviews-years-festive-albums.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:51:25.000Z" + }, + { + "title": "Family of Anthony Walker tear apart Joey Barton's description of his brother's racially-motivated murder of the teenager as 'a f***ing scrap' - after former Bristol Rovers boss appeared to play down how serious the 2005 ice-axe killing was", + "link": "https://www.dailymail.co.uk/sport/football/article-12810729/Family-Anthony-Walker-tear-apart-Joey-Barton-Michael-2005-murder-ice-axe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:41:14 GMT", + "enclosure": { + "length": "10319", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78419781-0-image-a-35_1701347295018.jpg" + }, + "content": "Kaushik Mistry, the foundation's CEO, rubbished the idea that Michael had 'lost' years of his life as he issued a damning statement which underscored that Walker's life had been lost 'forever'.", + "contentSnippet": "Kaushik Mistry, the foundation's CEO, rubbished the idea that Michael had 'lost' years of his life as he issued a damning statement which underscored that Walker's life had been lost 'forever'.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12810729/Family-Anthony-Walker-tear-apart-Joey-Barton-Michael-2005-murder-ice-axe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:41:14.000Z" + }, + { + "title": "Dylan Sprouse was 'body-shamed by Disney exec when he was teen and was told to look more like brother Cole' on\u00a0The Suite Life Of Zack And Cody: 'No more junk food'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811037/Dylan-Sprouse-body-shamed-Disney-exec-Cole.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:35:58 GMT", + "enclosure": { + "length": "10398", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438249-0-image-m-73_1701372853016.jpg" + }, + "content": "The 54-year-old actress starred as Dylan's, now 31, mom on Disney Channel show The Suite Life Of Zack And Cody through all three seasons from 2005 to 2008.", + "contentSnippet": "The 54-year-old actress starred as Dylan's, now 31, mom on Disney Channel show The Suite Life Of Zack And Cody through all three seasons from 2005 to 2008.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811037/Dylan-Sprouse-body-shamed-Disney-exec-Cole.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:35:58.000Z" + }, + { + "title": "Inside Christian Horner's lavish birthday celebrations: Formula One star turns 50 with Spice Girl wife Geri and a three-tier birthday cake - while Gary Barlow is guest performer!", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811551/christian-horner-50th-birthday-geri-gary-barlow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:23:02 GMT", + "enclosure": { + "length": "10227", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78441713-0-image-a-135_1701378033531.jpg" + }, + "content": "The Formula One boss and his Spice Girl wife Geri, 51, hosted a lavish evening at Mount St. restaurant in Mayfair on Wednesday evening.", + "contentSnippet": "The Formula One boss and his Spice Girl wife Geri, 51, hosted a lavish evening at Mount St. restaurant in Mayfair on Wednesday evening.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811551/christian-horner-50th-birthday-geri-gary-barlow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:23:02.000Z" + }, + { + "title": "Pontins closes two resorts with 'immediate effect': Holidays are thrown into chaos as firm announces Camber Sands and Prestatyn sites will shut as customers with bookings are offered refunds", + "link": "https://www.dailymail.co.uk/news/article-12810973/Pontins-announces-immediate-closure-TWO-popular-seaside-resorts-throwing-hundreds-holidays-disarray.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:10:51 GMT", + "enclosure": { + "length": "7484", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78435465-0-image-a-2_1701367069011.jpg" + }, + "content": "The Official Pontins Holiday's Facebook page released a statement on Thursday to let customers know it would be closing its Prestatyn and Camber Sands locations with 'immediate effect.'", + "contentSnippet": "The Official Pontins Holiday's Facebook page released a statement on Thursday to let customers know it would be closing its Prestatyn and Camber Sands locations with 'immediate effect.'", + "guid": "https://www.dailymail.co.uk/news/article-12810973/Pontins-announces-immediate-closure-TWO-popular-seaside-resorts-throwing-hundreds-holidays-disarray.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:10:51.000Z" + }, + { + "title": "Hamas ghouls parade distressed captive father of dead ten-month-old hostage Kfir Bibas in new video - as they say Israel is refusing to take the bodies of the tragic baby, his four year old brother and their mother", + "link": "https://www.dailymail.co.uk/news/article-12811257/Hamas-claims-Israel-refusing-accept-offer-repatriating-dead-bodies-Bibas-family-including-10-month-old-Kfir-sharing-sick-video-distressed-father-Yarden-Bibas-captivity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:08:10 GMT", + "enclosure": { + "length": "9173", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438003-0-image-m-32_1701372352079.jpg" + }, + "content": "Yarden, 34, was seen distraught and weeping as he said: 'Bibi (Netanyahu) your airstrike took away my beloved family, now do what you can to bring them home so they can be buried at home", + "contentSnippet": "Yarden, 34, was seen distraught and weeping as he said: 'Bibi (Netanyahu) your airstrike took away my beloved family, now do what you can to bring them home so they can be buried at home", + "guid": "https://www.dailymail.co.uk/news/article-12811257/Hamas-claims-Israel-refusing-accept-offer-repatriating-dead-bodies-Bibas-family-including-10-month-old-Kfir-sharing-sick-video-distressed-father-Yarden-Bibas-captivity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:08:10.000Z" + }, + { + "title": "Red Cross says footage filmed in Gaza City hospital 'showing decomposing bodies of premature babies left to die in their beds' represents an 'unspeakable tragedy' and begs Hamas and the IDF to let them operate with security in war torn city", + "link": "https://www.dailymail.co.uk/news/article-12811115/Red-Cross-says-footage-filmed-Gaza-City-hospital-showing-decomposing-bodies-premature-babies-left-die-beds-represents-unspeakable-tragedy-begs-Hamas-IDF-let-operate-security-war-torn-city.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:07:11 GMT", + "enclosure": { + "length": "10817", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/02/78400581-0-image-a-24_1701310066060.jpg" + }, + "content": "The Red Cross says that footage that allegedly shows the bodies of five Palestinian children left to die in the Al-Nasr Hospital in Gaza represents an 'unspeakable tragedy.'", + "contentSnippet": "The Red Cross says that footage that allegedly shows the bodies of five Palestinian children left to die in the Al-Nasr Hospital in Gaza represents an 'unspeakable tragedy.'", + "guid": "https://www.dailymail.co.uk/news/article-12811115/Red-Cross-says-footage-filmed-Gaza-City-hospital-showing-decomposing-bodies-premature-babies-left-die-beds-represents-unspeakable-tragedy-begs-Hamas-IDF-let-operate-security-war-torn-city.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:07:11.000Z" + }, + { + "title": "Rebecca Adlington reflects on her heartbreaking miscarriage as she shares video montage from gender reveal to discovering she'd lost her unborn daughter", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810975/Rebecca-Adlington-reflects-heartbreaking-miscarriage-shares-video-montage-gender-reveal-discovering-shed-lost-unborn-daughter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:02:16 GMT", + "enclosure": { + "length": "11485", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435979-0-image-a-29_1701368704169.jpg" + }, + "content": "The former Olympic swimmer's Thursday video featured her husband Andy Parsons, her daughter Summer, eight, and her son Albie, two.", + "contentSnippet": "The former Olympic swimmer's Thursday video featured her husband Andy Parsons, her daughter Summer, eight, and her son Albie, two.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810975/Rebecca-Adlington-reflects-heartbreaking-miscarriage-shares-video-montage-gender-reveal-discovering-shed-lost-unborn-daughter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:02:16.000Z" + }, + { + "title": "Mel C flashes her bra under a statement white suit as she joins Hannah Waddingham and Paloma Faith in leading the stars arriving at the Royal Variety Performance 2023", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810809/royal-variety-performance-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:00:25 GMT", + "enclosure": { + "length": "10913", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78441711-0-image-a-2_1701378014945.jpg" + }, + "content": "Mel C led the star-studded arrivals at the Royal Variety Performance at the Royal Albert Hall on Thursday evening.\u00a0", + "contentSnippet": "Mel C led the star-studded arrivals at the Royal Variety Performance at the Royal Albert Hall on Thursday evening.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810809/royal-variety-performance-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:00:25.000Z" + }, + { + "title": "Aberdeen's game is stopped as fans launch SNOWBALLS at\u00a0HJK Helsinki goalkeeper... with Dons captain\u00a0Jonny Hayes urged to speak sense to the Red Army just moment before snow plough is brought onto the pitch!", + "link": "https://www.dailymail.co.uk/sport/football/article-12811315/Aberdeens-game-stopped-fans-launch-SNOWBALLS-HJK-Helsinki-goalkeeper-Dons-captain-Jonny-Hayes-urged-speak-sense-Red-Army-just-moment-snow-plough-brought-pitch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:49:53 GMT", + "enclosure": { + "length": "12200", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438575-0-image-a-5_1701373503759.jpg" + }, + "content": "Aberdeen's Europa Conference League game with HJK Helsinki was at risk of being abandoned after the Scottish fans decided to pelt the opposing goalkeeper with snowballs.", + "contentSnippet": "Aberdeen's Europa Conference League game with HJK Helsinki was at risk of being abandoned after the Scottish fans decided to pelt the opposing goalkeeper with snowballs.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12811315/Aberdeens-game-stopped-fans-launch-SNOWBALLS-HJK-Helsinki-goalkeeper-Dons-captain-Jonny-Hayes-urged-speak-sense-Red-Army-just-moment-snow-plough-brought-pitch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:49:53.000Z" + }, + { + "title": "Omid Scobie says he's 'as frustrated as everyone else' after 'royal racists' were named in Dutch translation of Endgame - as he insists he's been treated 'unfairly' and fails to apologise for scandal", + "link": "https://www.dailymail.co.uk/news/article-12809093/Palace-race-row-omid-scobie-endgame-Morning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:33:31 GMT", + "enclosure": { + "length": "10236", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78414721-0-image-a-17_1701340758285.jpg" + }, + "content": "The Sussexes' favoured royal reporter has squarely blamed the publisher in the Netherlands - and denied it was part of a money-spinning 'stunt' to shift more copies.", + "contentSnippet": "The Sussexes' favoured royal reporter has squarely blamed the publisher in the Netherlands - and denied it was part of a money-spinning 'stunt' to shift more copies.", + "guid": "https://www.dailymail.co.uk/news/article-12809093/Palace-race-row-omid-scobie-endgame-Morning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:33:31.000Z" + }, + { + "title": "King brushes off Omid Scobie race row: Charles jokes 'he's alright... just about' as Palace considers legal action - after Piers Morgan named two royals accused of racism", + "link": "https://www.dailymail.co.uk/news/article-12808575/King-Charles-Omid-Scobie-book-Endgame-Harry-Meghan-royal-racists.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:30:14 GMT", + "enclosure": { + "length": "9821", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78415255-0-image-a-8_1701341619687.jpg" + }, + "content": "Royal experts and insiders have said there is anger a at the heart of the British Royal Family over the scandal, heightened after Piers Morgan revealed the names on live TV last night.", + "contentSnippet": "Royal experts and insiders have said there is anger a at the heart of the British Royal Family over the scandal, heightened after Piers Morgan revealed the names on live TV last night.", + "guid": "https://www.dailymail.co.uk/news/article-12808575/King-Charles-Omid-Scobie-book-Endgame-Harry-Meghan-royal-racists.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:30:14.000Z" + }, + { + "title": "Alistair Darling dies aged 70: How the man with the most striking pair of eyebrows in Westminster proved he also had the safest pair of hands, writes ANDREW PIERCE", + "link": "https://www.dailymail.co.uk/news/article-12811367/alistair-darling-dies-labour-chancellor-westminster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:20:31 GMT", + "enclosure": { + "length": "8803", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78425187-0-image-a-51_1701374925123.jpg" + }, + "content": "Alistair Darling steered the country through the crisis prompting his admirers to remark that the man with the most striking pair of eyebrows in Westminster also had the safest pair of hands", + "contentSnippet": "Alistair Darling steered the country through the crisis prompting his admirers to remark that the man with the most striking pair of eyebrows in Westminster also had the safest pair of hands", + "guid": "https://www.dailymail.co.uk/news/article-12811367/alistair-darling-dies-labour-chancellor-westminster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:20:31.000Z" + }, + { + "title": "The surprising reason why Kissinger reached 100 - despite his diet of bratwurst and Wiener schnitzel and his lifelong aversion to exercise", + "link": "https://www.dailymail.co.uk/health/article-12810291/kissinger-diet-death-100.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:16:42 GMT", + "enclosure": { + "length": "9656", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437859-0-image-a-25_1701372457082.jpg" + }, + "content": "Former\u00a0US Secretary of State Henry Kissinger wasn't sure of the secret to his own longevity, given the former diplomat enjoyed a diet heavy in fat and led a sedentary lifestyle.", + "contentSnippet": "Former\u00a0US Secretary of State Henry Kissinger wasn't sure of the secret to his own longevity, given the former diplomat enjoyed a diet heavy in fat and led a sedentary lifestyle.", + "guid": "https://www.dailymail.co.uk/health/article-12810291/kissinger-diet-death-100.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:16:42.000Z" + }, + { + "title": "Liam Conlon, son of Keir Starmer's chief aide and Partygate investigator Sue Gray, is selected as the candidate for Labour target seat", + "link": "https://www.dailymail.co.uk/news/article-12810743/Liam-Conlon-Labour-son-Keir-Starmer-Partygate-Sue-Gray-MP-candidate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:11:57 GMT", + "enclosure": { + "length": "4438", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431735-0-image-m-40_1701363106658.jpg" + }, + "content": "Liam Conlon will stand in Beckenham & Penge at the general election after being picked by local activists last night.", + "contentSnippet": "Liam Conlon will stand in Beckenham & Penge at the general election after being picked by local activists last night.", + "guid": "https://www.dailymail.co.uk/news/article-12810743/Liam-Conlon-Labour-son-Keir-Starmer-Partygate-Sue-Gray-MP-candidate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:11:57.000Z" + }, + { + "title": "EXCLUSIVE: Man City and the Premier League agree date for trial over 115 financial rule-break charges - with expected timing for the verdict FINALLY set, when they could face a huge points deduction", + "link": "https://www.dailymail.co.uk/sport/football/article-12809173/Man-City-Premier-League-agree-date-tribunal-financial-rule-break-charges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:06:52 GMT", + "enclosure": { + "length": "13399", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78414711-0-image-a-97_1701340723607.jpg" + }, + "content": "EXCLUSIVE BY MIKE KEEGAN: The top-flight charged its champions with 115 alleged breaches of financial regulations in February after opening an investigation in 2018.", + "contentSnippet": "EXCLUSIVE BY MIKE KEEGAN: The top-flight charged its champions with 115 alleged breaches of financial regulations in February after opening an investigation in 2018.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12809173/Man-City-Premier-League-agree-date-tribunal-financial-rule-break-charges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:06:52.000Z" + }, + { + "title": "Incredible underwater footage shows huge US Navy plane stuck on Hawaii Bay's reef - as its tires remain lodged in the coral more than a WEEK after pilot overshot runway at Marine Corp base", + "link": "https://www.dailymail.co.uk/news/article-12811111/Navy-plane-Hawaii-Bays-reef-coral-Marine-Corp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:03:58 GMT", + "enclosure": { + "length": "9052", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78438785-0-image-a-8_1701374187980.jpg" + }, + "content": "The U.S. Navy released an underwater footage on Wednesday, revealing the plane's tires lodged in the coral as fish navigate through rock fissures.", + "contentSnippet": "The U.S. Navy released an underwater footage on Wednesday, revealing the plane's tires lodged in the coral as fish navigate through rock fissures.", + "guid": "https://www.dailymail.co.uk/news/article-12811111/Navy-plane-Hawaii-Bays-reef-coral-Marine-Corp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:03:58.000Z" + }, + { + "title": "'I never met anyone who didn't like him': Tributes pour in for 'thoroughly kind and decent' ex-Labour chancellor Alistair Darling after his death aged 70 - as video shows the moment George Osborne and Ed Balls learn he has passed away", + "link": "https://www.dailymail.co.uk/news/article-12810659/I-never-met-didnt-like-Tributes-pour-thoroughly-kind-decent-ex-Labour-chancellor-Alistair-Darling-death-aged-70-video-shows-moment-George-Osborne-Ed-Balls-learn-passed-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:03:30 GMT", + "enclosure": { + "length": "7520", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78421137-0-image-m-41_1701348810328.jpg" + }, + "content": "Tributes today poured in from across the political divide for a 'towering figure' who took 'calm' action in steering Britain through the chaos of the global credit crunch.", + "contentSnippet": "Tributes today poured in from across the political divide for a 'towering figure' who took 'calm' action in steering Britain through the chaos of the global credit crunch.", + "guid": "https://www.dailymail.co.uk/news/article-12810659/I-never-met-didnt-like-Tributes-pour-thoroughly-kind-decent-ex-Labour-chancellor-Alistair-Darling-death-aged-70-video-shows-moment-George-Osborne-Ed-Balls-learn-passed-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:03:30.000Z" + }, + { + "title": "Asteroid or supervolcano? New study says dinosaurs were wiped out by BOTH", + "link": "https://www.dailymail.co.uk/sciencetech/article-12810307/asteroid-supervolcano-dinosaurs-wiped-meteor.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 20:00:16 GMT", + "enclosure": { + "length": "9594", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78428099-0-image-a-8_1701360513992.jpg" + }, + "content": "'Volcanic winters' weakened the dinosaurs for 200,000 years prior to extinction. 'The final blow,' researchers said, was likely given by Chicxulub meteor impact", + "contentSnippet": "'Volcanic winters' weakened the dinosaurs for 200,000 years prior to extinction. 'The final blow,' researchers said, was likely given by Chicxulub meteor impact", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12810307/asteroid-supervolcano-dinosaurs-wiped-meteor.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T20:00:16.000Z" + }, + { + "title": "'Quite the line-up for heaven's waiting room': Social media users pay tribute as Shane MacGowan, Alistair Darling, Henry Kissinger and Brookside actor Dean Sullivan all pass away on the same day", + "link": "https://www.dailymail.co.uk/news/article-12811039/Social-media-tribute-Shane-MacGowan-Alistair-Darling-Henry-Kissinger-Dean-Sullivan-deaths.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:56:01 GMT", + "enclosure": { + "length": "4691", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437897-0-image-a-4_1701371873190.jpg" + }, + "content": "After the announcements that Shane MacGowan, Alistair Darling, Henry Kissinger and Dean Sullivan have all passed away over the last day, many have been left stunned and heartbroken.", + "contentSnippet": "After the announcements that Shane MacGowan, Alistair Darling, Henry Kissinger and Dean Sullivan have all passed away over the last day, many have been left stunned and heartbroken.", + "guid": "https://www.dailymail.co.uk/news/article-12811039/Social-media-tribute-Shane-MacGowan-Alistair-Darling-Henry-Kissinger-Dean-Sullivan-deaths.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:56:01.000Z" + }, + { + "title": "Jamie Lynn Spears is FINALLY reunited with her luxury item after leaving the I'm A Celeb camp on 'medical grounds'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810433/Jamie-Lynn-Spears-FINALLY-reunited-luxury-item-quit-Im-Celeb.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:49:13 GMT", + "enclosure": { + "length": "10003", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430631-0-image-a-235_1701360687705.jpg" + }, + "content": "Jamie Lynn Spears was finally reunited with her luxury item on Thursday after quitting I'm A Celebrity on medical grounds.\u00a0", + "contentSnippet": "Jamie Lynn Spears was finally reunited with her luxury item on Thursday after quitting I'm A Celebrity on medical grounds.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810433/Jamie-Lynn-Spears-FINALLY-reunited-luxury-item-quit-Im-Celeb.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:49:13.000Z" + }, + { + "title": "Woman who was sexually assaulted by a multi-millionaire tech tycoon - once known as 'Britain's nicest boss' - says his conviction shows that 'no amount of money or power puts you above the law'", + "link": "https://www.dailymail.co.uk/news/article-12811219/Woman-sexually-assaulted-multi-millionaire-tech-tycoon-known-Britains-nicest-boss-says-conviction-shows-no-money-power-puts-law.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:43:46 GMT", + "enclosure": { + "length": "7754", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437821-0-image-m-45_1701372376876.jpg" + }, + "content": "Lawrence Jones - once dubbed 'Britain's nicest boss' - tomorrow faces a lengthy jail sentence for preying on three women.", + "contentSnippet": "Lawrence Jones - once dubbed 'Britain's nicest boss' - tomorrow faces a lengthy jail sentence for preying on three women.", + "guid": "https://www.dailymail.co.uk/news/article-12811219/Woman-sexually-assaulted-multi-millionaire-tech-tycoon-known-Britains-nicest-boss-says-conviction-shows-no-money-power-puts-law.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:43:46.000Z" + }, + { + "title": "Forbes publishes new 'hall of shame' naming 10 people it regrets featuring on prized 30 under 30 list - with jailed FTX founder Sam Bankman-Fried taking inevitable top spot", + "link": "https://www.dailymail.co.uk/news/article-12810113/Forbes-hall-shame-naming-regrets-featuring-Sam-Bankman-Fried.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:41:03 GMT", + "enclosure": { + "length": "10234", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78425825-0-image-a-14_1701361060959.jpg" + }, + "content": "Forbes has published a new 'Hall of Shame' with 10 people it regrets featuring on its famous 30 Under 30 list in recent years.", + "contentSnippet": "Forbes has published a new 'Hall of Shame' with 10 people it regrets featuring on its famous 30 Under 30 list in recent years.", + "guid": "https://www.dailymail.co.uk/news/article-12810113/Forbes-hall-shame-naming-regrets-featuring-Sam-Bankman-Fried.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:41:03.000Z" + }, + { + "title": "Supermassive black hole at the heart of the Milky Way is warping space-time - and it could reveal how our galaxy formed", + "link": "https://www.dailymail.co.uk/sciencetech/article-12809795/galaxy-supermassive-black-hole-warping-space-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:35:39 GMT", + "enclosure": { + "length": "6013", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78431057-0-image-a-5_1701369779490.jpg" + }, + "content": "The supermassive black hole, Sagittarius A*, is warping space-time in the Milky Way galaxy because of its fast rotation. Its smaller size means Sagittarius A* can make more rotations quickly.", + "contentSnippet": "The supermassive black hole, Sagittarius A*, is warping space-time in the Milky Way galaxy because of its fast rotation. Its smaller size means Sagittarius A* can make more rotations quickly.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12809795/galaxy-supermassive-black-hole-warping-space-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:35:39.000Z" + }, + { + "title": "Moment Amazon delivery driver throws Christmas present over garden gate - before customer gets notification that \u00a340 gift has been 'handed to the resident'", + "link": "https://www.dailymail.co.uk/news/article-12810931/Amazon-delivery-Christmas-present-garden-gate-oldham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:20:31 GMT", + "enclosure": { + "length": "5708", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435509-0-image-a-23_1701367369394.jpg" + }, + "content": "Sean Newton was at his home in Oldham, Greater Manchester, when he heard a bang outside and security footage showed the parcel had been thrown over the garden gate", + "contentSnippet": "Sean Newton was at his home in Oldham, Greater Manchester, when he heard a bang outside and security footage showed the parcel had been thrown over the garden gate", + "guid": "https://www.dailymail.co.uk/news/article-12810931/Amazon-delivery-Christmas-present-garden-gate-oldham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:20:31.000Z" + }, + { + "title": "Female American Airlines worker is left with permanent scarring after male passenger, 29, 'punched her repeatedly' before being escorted off plane", + "link": "https://www.dailymail.co.uk/news/article-12810569/American-Airlines-Miami-Bruce-Machiavelo-employee-punch-plane.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:20:17 GMT", + "enclosure": { + "length": "7786", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434917-0-image-a-22_1701366527440.jpg" + }, + "content": "A female American Airlines employee was left permanently scarred after Bruce Luke Machiavelo, 29, repeatedly punched her on Monday night, police asid.", + "contentSnippet": "A female American Airlines employee was left permanently scarred after Bruce Luke Machiavelo, 29, repeatedly punched her on Monday night, police asid.", + "guid": "https://www.dailymail.co.uk/news/article-12810569/American-Airlines-Miami-Bruce-Machiavelo-employee-punch-plane.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:20:17.000Z" + }, + { + "title": "EXCLUSIVE: Missing Taylor already? Travis Kelce looks glum as he fills up his Rolls Royce and grabs some candy on the way to practice... just hours after popstar girlfriend Swift jetted off to London to see pal Beyonce", + "link": "https://www.dailymail.co.uk/sport/nfl/article-12811081/Missing-Taylor-Travis-Kelce-looks-glum-fills-Rolls-Royce-grabs-candy-way-practice-just-hours-popstar-girlfriend-Swift-jetted-London-pal-Beyonce.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:19:52 GMT", + "enclosure": { + "length": "11029", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437833-0-image-a-34_1701371819029.jpg" + }, + "content": "It is a sad day for the superstar NFL tight end after he waved goodbye to his girlfriend Taylor Swift last night, with the pop superstar jetting off to London to support her pal Beyonce at her premiere.", + "contentSnippet": "It is a sad day for the superstar NFL tight end after he waved goodbye to his girlfriend Taylor Swift last night, with the pop superstar jetting off to London to support her pal Beyonce at her premiere.", + "guid": "https://www.dailymail.co.uk/sport/nfl/article-12811081/Missing-Taylor-Travis-Kelce-looks-glum-fills-Rolls-Royce-grabs-candy-way-practice-just-hours-popstar-girlfriend-Swift-jetted-London-pal-Beyonce.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:19:52.000Z" + }, + { + "title": "Could this been the saviour of Britain's rubbish roads? British firm is developing the world's first artificial intelligence-led robots that can seek out and fix POTHOLES on UK roads", + "link": "https://www.dailymail.co.uk/news/article-12811065/Could-saviour-Britains-rubbish-roads-British-firm-developing-worlds-artificial-intelligence-led-robots-seek-fix-POTHOLES-UK-roads.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:11:31 GMT", + "enclosure": { + "length": "10545", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/19/78437559-0-image-a-4_1701371304358.jpg" + }, + "content": "The self-driving robot, which looks like a cross between a tank and a road roller, was created by tech firm Robotiz3d to help local authorities fix the holes in the roads.", + "contentSnippet": "The self-driving robot, which looks like a cross between a tank and a road roller, was created by tech firm Robotiz3d to help local authorities fix the holes in the roads.", + "guid": "https://www.dailymail.co.uk/news/article-12811065/Could-saviour-Britains-rubbish-roads-British-firm-developing-worlds-artificial-intelligence-led-robots-seek-fix-POTHOLES-UK-roads.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:11:31.000Z" + }, + { + "title": "Police officer who conned vulnerable widow, 81, out of \u00a318,000 after being called to check on her at home is jailed for 20 months", + "link": "https://www.dailymail.co.uk/news/article-12810921/Police-officer-conned-vulnerable-widow-81-18-000-called-check-home-jailed-20-months.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:05:57 GMT", + "enclosure": { + "length": "6405", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435397-0-image-a-6_1701368647262.jpg" + }, + "content": "Police Constable Sam Smith first met the pensioner, who was suffering from cancer and alcohol-related dementia, while on-duty when he was called to her South Devon home.", + "contentSnippet": "Police Constable Sam Smith first met the pensioner, who was suffering from cancer and alcohol-related dementia, while on-duty when he was called to her South Devon home.", + "guid": "https://www.dailymail.co.uk/news/article-12810921/Police-officer-conned-vulnerable-widow-81-18-000-called-check-home-jailed-20-months.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:05:57.000Z" + }, + { + "title": "Mother says school is picking on her dance-mad daughter, 12 - after she was put in detention for turning up for lessons still wearing fake tan from a competition", + "link": "https://www.dailymail.co.uk/news/article-12811117/Mother-says-school-picking-dance-mad-daughter-12-detention-turning-lessons-wearing-fake-tan-competition.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:04:22 GMT", + "enclosure": { + "length": "4480", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78437261-0-image-a-4_1701370786872.jpg" + }, + "content": "Natalie White said it should be expected for dancers to wear fake tan during weekend competitions and, while it can be tricky to wash off, this has never previously been a problem.", + "contentSnippet": "Natalie White said it should be expected for dancers to wear fake tan during weekend competitions and, while it can be tricky to wash off, this has never previously been a problem.", + "guid": "https://www.dailymail.co.uk/news/article-12811117/Mother-says-school-picking-dance-mad-daughter-12-detention-turning-lessons-wearing-fake-tan-competition.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:04:22.000Z" + }, + { + "title": "EXCLUSIVE: Taylor Swift will move in with 'soulmate' Travis Kelce for good if all goes well with 'practice run' at his $6 million Kansas City mansion - with friends claiming the couple have even discussed starting a family", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12806333/taylor-swift-moves-travis-kelce-kansas-city-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:03:56 GMT", + "enclosure": { + "length": "12805", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/29/22/78390307-0-image-a-13_1701296237565.jpg" + }, + "content": "Taylor, 33, has moved in with her boyfriend Travis, 34, at his mansion in Kansas City while on a break from her Era's tour. The singer's friends and family believe the two are 'soulmates.'", + "contentSnippet": "Taylor, 33, has moved in with her boyfriend Travis, 34, at his mansion in Kansas City while on a break from her Era's tour. The singer's friends and family believe the two are 'soulmates.'", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12806333/taylor-swift-moves-travis-kelce-kansas-city-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:03:56.000Z" + }, + { + "title": "Lawrence Jones is stripped of his honorary doctorate after the \u00a3700m tech tycoon once dubbed 'Britain's nicest boss' was found guilty of drugging and raping two women 30 years ago", + "link": "https://www.dailymail.co.uk/news/article-12809885/lawrence-jones-doctorate-stripped-guilty-drug-raping-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:02:46 GMT", + "enclosure": { + "length": "10881", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430339-0-image-m-38_1701361020702.jpg" + }, + "content": "The \u00a3700m tech tycoon, who was once known as 'Britain's nicest boss', was awarded an honorary doctorate of business administration from Manchester Metropolitan University in 2016.", + "contentSnippet": "The \u00a3700m tech tycoon, who was once known as 'Britain's nicest boss', was awarded an honorary doctorate of business administration from Manchester Metropolitan University in 2016.", + "guid": "https://www.dailymail.co.uk/news/article-12809885/lawrence-jones-doctorate-stripped-guilty-drug-raping-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:02:46.000Z" + }, + { + "title": "EXCLUSIVE: He was a teen heartthrob who worked with Pamela Anderson and also voiced a Lion King character - and there is a Tom Cruise link... but he became a recluse after attending Harvard. Who is he?", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810631/He-teen-heartthrob-worked-Pamela-Anderson-voiced-Lion-King-character-Tom-Cruise-link-recluse-attending-Harvard-he.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:02:41 GMT", + "enclosure": { + "length": "5641", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78433531-0-image-m-80_1701364267685.jpg" + }, + "content": "He was a teen heartthrob who young girls went crazy for thanks to his 90s TV show. He also made movies with Chevy Chase and Devon Sawa. He last acted in 2015. Who is he?", + "contentSnippet": "He was a teen heartthrob who young girls went crazy for thanks to his 90s TV show. He also made movies with Chevy Chase and Devon Sawa. He last acted in 2015. Who is he?", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810631/He-teen-heartthrob-worked-Pamela-Anderson-voiced-Lion-King-character-Tom-Cruise-link-recluse-attending-Harvard-he.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:02:41.000Z" + }, + { + "title": "EXCLUSIVE: Alice Evans 'cannot pay her rent or afford to buy food' as her marathon divorce fight with actor Ioan Gruffudd continues - as it's revealed she could take a job at Starbucks", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810005/Alice-Evans-afford-rent-food-divorce-Ioan-Gruffudd.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 19:00:41 GMT", + "enclosure": { + "length": "12270", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425257-0-image-a-61_1701355181756.jpg" + }, + "content": "Evans, 55, told pals that she is in a financial crisis, as the money she made from the sale of their marital home - believed to be $100,000 - has all gone, with most of it used to cover legal costs.", + "contentSnippet": "Evans, 55, told pals that she is in a financial crisis, as the money she made from the sale of their marital home - believed to be $100,000 - has all gone, with most of it used to cover legal costs.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810005/Alice-Evans-afford-rent-food-divorce-Ioan-Gruffudd.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T19:00:41.000Z" + }, + { + "title": "Man sparks debate after revealing he was YELLED at by a mother on a flight for watching an R-rated movie on his phone that made her son cry\u00a0- so whose side are YOU on?", + "link": "https://www.dailymail.co.uk/travel/article-12810705/mother-yelled-flight-watching-r-rated-movie-phone-plane.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:58:04 GMT", + "enclosure": { + "length": "10455", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435729-0-image-a-15_1701370516833.jpg" + }, + "content": "The 19-year-old, who kept his identity anonymous, opened up about his awkward in-flight interaction with the angry passenger in a post shared on Reddit's 'Am I The A**hole?' forum.", + "contentSnippet": "The 19-year-old, who kept his identity anonymous, opened up about his awkward in-flight interaction with the angry passenger in a post shared on Reddit's 'Am I The A**hole?' forum.", + "guid": "https://www.dailymail.co.uk/travel/article-12810705/mother-yelled-flight-watching-r-rated-movie-phone-plane.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:58:04.000Z" + }, + { + "title": "Shane MacGowan's life through quotes: 12 unforgettable one-liners from The Pogues rocker about drinking, women, and breaking into America", + "link": "https://www.dailymail.co.uk/news/article-12809941/Shane-MacGowans-life-quotes-Pogues.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:56:20 GMT", + "enclosure": { + "length": "9978", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426351-0-image-a-26_1701357356663.jpg" + }, + "content": "Praised for being the 'greatest songwriter of his generation' MacGowan was upfront and insightful off the stage and on. He had a quote on everything from religion to hamburgers.", + "contentSnippet": "Praised for being the 'greatest songwriter of his generation' MacGowan was upfront and insightful off the stage and on. He had a quote on everything from religion to hamburgers.", + "guid": "https://www.dailymail.co.uk/news/article-12809941/Shane-MacGowans-life-quotes-Pogues.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:56:20.000Z" + }, + { + "title": "Spectacular moment Rockefeller Christmas tree glistens in New York City as lighting is attended by thousands - after pro-Palestinian mob brandishing a swastika tried to wreck the ceremony", + "link": "https://www.dailymail.co.uk/news/article-12808263/rockefeller-christmas-tree-palestine-rally-swastika.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:54:40 GMT", + "enclosure": { + "length": "12912", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/06/78407535-0-image-a-23_1701325355304.jpg" + }, + "content": "The Rockefeller Christmas tree was lit on Wednesday evening in a spectacular ceremony. One block away, pro-Palestine protesters clashed with police who blocked their path.", + "contentSnippet": "The Rockefeller Christmas tree was lit on Wednesday evening in a spectacular ceremony. One block away, pro-Palestine protesters clashed with police who blocked their path.", + "guid": "https://www.dailymail.co.uk/news/article-12808263/rockefeller-christmas-tree-palestine-rally-swastika.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:54:40.000Z" + }, + { + "title": "Is 'greedflation' fuelling the cost-of-living crisis? How prices of own-brand goods have surged in the past two years - with baby formula up 45%, beans 57% and cat food 65% - amid claims they're being hiked", + "link": "https://www.dailymail.co.uk/news/article-12811013/Is-greedflation-fuelling-cost-living-crisis-prices-brand-goods-surged-past-two-years-baby-formula-45-beans-57-cat-food-65-amid-claims-theyre-hiked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:46:46 GMT", + "enclosure": { + "length": "14079", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78434223-0-image-m-18_1701367837500.jpg" + }, + "content": "In conjunction with big-manufacturers raising costs, the details published by CMA suggest companies producing own-brand labels have likely contributed to the hike in inflation.", + "contentSnippet": "In conjunction with big-manufacturers raising costs, the details published by CMA suggest companies producing own-brand labels have likely contributed to the hike in inflation.", + "guid": "https://www.dailymail.co.uk/news/article-12811013/Is-greedflation-fuelling-cost-living-crisis-prices-brand-goods-surged-past-two-years-baby-formula-45-beans-57-cat-food-65-amid-claims-theyre-hiked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:46:46.000Z" + }, + { + "title": "Shane MacGowan's wife pays emotional tribute to Pogues rocker after his death aged 65 and says he's 'gone to be with Jesus and Mary and his beautiful mother' - 'You will live in my heart forever. You meant the world to me'", + "link": "https://www.dailymail.co.uk/news/article-12810003/pogues-shane-macgowan-wife-tribute-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:43:56 GMT", + "enclosure": { + "length": "11995", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426347-0-image-a-1_1701356825817.jpg" + }, + "content": "The legendary musician, who was behind the Christmas anthem Fairytale of New York, died 'peacefully' at 3am today, aged 65, with his wife Victoria Mary Clarke and family by his side.", + "contentSnippet": "The legendary musician, who was behind the Christmas anthem Fairytale of New York, died 'peacefully' at 3am today, aged 65, with his wife Victoria Mary Clarke and family by his side.", + "guid": "https://www.dailymail.co.uk/news/article-12810003/pogues-shane-macgowan-wife-tribute-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:43:56.000Z" + }, + { + "title": "Sphere we go again? Controversial London plan to build 300ft replica of enormous Las Vegas venue could be BACK as government mulls calling it in after Sadiq Khan blocked huge build", + "link": "https://www.dailymail.co.uk/news/article-12808773/london-sphere-plan-government-sadiq-khan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:40:51 GMT", + "enclosure": { + "length": "6774", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/76102027-0-image-m-16_1701340210569.jpg" + }, + "content": "The reported \u00a3800 million development was given the green light back in March before Mayor of London Sadiq Khan blocked it on grounds of light pollution.", + "contentSnippet": "The reported \u00a3800 million development was given the green light back in March before Mayor of London Sadiq Khan blocked it on grounds of light pollution.", + "guid": "https://www.dailymail.co.uk/news/article-12808773/london-sphere-plan-government-sadiq-khan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:40:51.000Z" + }, + { + "title": "I'm NOT a liar, Matt Hancock tells Covid Inquiry: Ex-health secretary furiously rejects claims he misled colleagues about pandemic plans as he attacks 'malign' Dominic Cummings - but admits he didn't read minutes from meetings of SAGE experts in early 2020", + "link": "https://www.dailymail.co.uk/news/article-12808695/Matt-Hancock-Covid-Inquiry-pandemic-Boris-Johnson-Cummings.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:35:42 GMT", + "enclosure": { + "length": "5777", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78426957-0-image-m-14_1701362867134.jpg" + }, + "content": "Matt Hancock furiously denied lying to colleagues and attacked 'malign' Dominic Cummings today in stormy evidence to the Covid Inquiry.", + "contentSnippet": "Matt Hancock furiously denied lying to colleagues and attacked 'malign' Dominic Cummings today in stormy evidence to the Covid Inquiry.", + "guid": "https://www.dailymail.co.uk/news/article-12808695/Matt-Hancock-Covid-Inquiry-pandemic-Boris-Johnson-Cummings.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:35:42.000Z" + }, + { + "title": "Do they know something we don't? UK health chiefs issue guidance on what to do in a radiation emergency amid escalating WW3 fears", + "link": "https://www.dailymail.co.uk/health/article-12810635/Do-know-dont-UK-health-chiefs-issue-guidance-radiation-emergency-amid-escalating-WW3-fears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:34:53 GMT", + "enclosure": { + "length": "8017", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78433037-0-image-a-13_1701363550063.jpg" + }, + "content": "Keep calm, but don't carry on! UK health chiefs have issued new guidance on what to do in a radiation emergency. It involves getting inside as quickly as possible to reduce exposure.", + "contentSnippet": "Keep calm, but don't carry on! UK health chiefs have issued new guidance on what to do in a radiation emergency. It involves getting inside as quickly as possible to reduce exposure.", + "guid": "https://www.dailymail.co.uk/health/article-12810635/Do-know-dont-UK-health-chiefs-issue-guidance-radiation-emergency-amid-escalating-WW3-fears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:34:53.000Z" + }, + { + "title": "Jon Venables could be freed by Christmas: James Bulger's murderer will learn if he has won parole in week beginning December 11", + "link": "https://www.dailymail.co.uk/news/article-12810805/Jon-Venables-freed-Christmas-James-Bulgers-murderer-learn-won-parole-week-beginning-December-11.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:33:44 GMT", + "enclosure": { + "length": "6652", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78436009-0-image-a-12_1701369217899.jpg" + }, + "content": "EXCLUSIVE: The child murderer has been informed that the Parole Board will make a decision public during that week after it was delayed earlier this week.", + "contentSnippet": "EXCLUSIVE: The child murderer has been informed that the Parole Board will make a decision public during that week after it was delayed earlier this week.", + "guid": "https://www.dailymail.co.uk/news/article-12810805/Jon-Venables-freed-Christmas-James-Bulgers-murderer-learn-won-parole-week-beginning-December-11.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:33:44.000Z" + }, + { + "title": "Taylor Swift and Travis Kelce's love story is '100 percent FAKE', claims UFC star-turned-Only Fans model Paige VanZant", + "link": "https://www.dailymail.co.uk/sport/mma/article-12809615/Ex-UFC-star-Paige-VanZant-claims-Taylor-Swift-Travis-Kelces-love-story-100-cent-FAKE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:31:05 GMT", + "enclosure": { + "length": "11465", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421575-0-image-a-61_1701349410774.jpg" + }, + "content": "The 29-year-old blonde bombshell proposed that the supposed 'love story' between Kansas City Chiefs star Kelce and pop sensation Swift is entirely a 'publicity stunt', and their feelings aren't genuine.", + "contentSnippet": "The 29-year-old blonde bombshell proposed that the supposed 'love story' between Kansas City Chiefs star Kelce and pop sensation Swift is entirely a 'publicity stunt', and their feelings aren't genuine.", + "guid": "https://www.dailymail.co.uk/sport/mma/article-12809615/Ex-UFC-star-Paige-VanZant-claims-Taylor-Swift-Travis-Kelces-love-story-100-cent-FAKE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:31:05.000Z" + }, + { + "title": "John Oates 'deeply hurt' by Hall & Oates bandmate Daryl Hall's accusations that he secretly tried to sell his half of their music and timed it to 'ambush' him on tour", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810945/John-Oates-deeply-hurt-Daryl-Halls-accusations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:23:57 GMT", + "enclosure": { + "length": "10901", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/18/78435595-0-image-m-37_1701367426367.jpg" + }, + "content": "Oates, 75, filed a declaration in a Tennessee court to reveal his disappointment that a private dispute that he had with his 77-year-old bandmate has gone public.", + "contentSnippet": "Oates, 75, filed a declaration in a Tennessee court to reveal his disappointment that a private dispute that he had with his 77-year-old bandmate has gone public.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810945/John-Oates-deeply-hurt-Daryl-Halls-accusations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:23:57.000Z" + }, + { + "title": "Blonde Beyonce is seen for the first time since she was accused of 'lightening her skin' as she dines with Jay-Z, Tom Cruise and Henry Cavill\u00a0at London members' club Oswald's", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12809737/Blonde-Beyonce-seen-time-accused-lightening-skin-dines-London-members-club-Oswalds-Jay-Z-Tom-Cruise-Henry-Cavill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:16:37 GMT", + "enclosure": { + "length": "10493", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421715-0-image-m-70_1701349824679.jpg" + }, + "content": "Beyonce was pictured for the first time since she was hit with 'skin bleaching' accusations, as she headed out for dinner with husband Jay-Z,\u00a0Tom Cruise and Henry Cavill.", + "contentSnippet": "Beyonce was pictured for the first time since she was hit with 'skin bleaching' accusations, as she headed out for dinner with husband Jay-Z,\u00a0Tom Cruise and Henry Cavill.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12809737/Blonde-Beyonce-seen-time-accused-lightening-skin-dines-London-members-club-Oswalds-Jay-Z-Tom-Cruise-Henry-Cavill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:16:37.000Z" + }, + { + "title": "Headteachers struggling to sleep due to stress of Ofsted visits is 'usual', Ruth Perry inquest hears - as colleagues tell coroner how inspector 'sneered' at teachers and 'didn't listen to them'", + "link": "https://www.dailymail.co.uk/news/article-12810741/ruth-perry-inquest-ofsted-inspectore-sneered-headteachers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:10:22 GMT", + "enclosure": { + "length": "8304", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78014891-0-Ruth_Perry_53_was_headteacher_at_Caversham_Primary_School_in_Rea-a-7_1701346966586.jpg" + }, + "content": "Ms Perry, 53, was found dead in January this year after being told her school - Caversham Primary School in Reading - was being downgraded from 'outstanding' to 'inadequate',", + "contentSnippet": "Ms Perry, 53, was found dead in January this year after being told her school - Caversham Primary School in Reading - was being downgraded from 'outstanding' to 'inadequate',", + "guid": "https://www.dailymail.co.uk/news/article-12810741/ruth-perry-inquest-ofsted-inspectore-sneered-headteachers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:10:22.000Z" + }, + { + "title": "I'm A Celebrity's Grace Dent reveals she had a cockroach removed from her EAR after feeling it 'crawl towards her brain' and bemoans 'waking up with meal worms in her bra' before sensationally quitting the show", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810167/Im-Celebrity-Grace-Dent-cockroach-quitting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:06:40 GMT", + "enclosure": { + "length": "10322", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425977-0-image-a-99_1701356391105.jpg" + }, + "content": "The food critic, 50, broke her silence in a lengthy Instagram post on Thursday after flying back to the UK following her jungle exit.", + "contentSnippet": "The food critic, 50, broke her silence in a lengthy Instagram post on Thursday after flying back to the UK following her jungle exit.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810167/Im-Celebrity-Grace-Dent-cockroach-quitting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:06:40.000Z" + }, + { + "title": "Where are The Pogues bandmates now? From Jem Finer and Spider Stacy to newer members Caitl\u00edn O'Riordan and James Fearnley as former frontman Shane MacGowan dies aged 65", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810067/pogues-bandmates-shane-macgowan-death-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:03:05 GMT", + "enclosure": { + "length": "8688", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426949-0-image-m-69_1701358244402.jpg" + }, + "content": "The Pogues frontman Shane MacGowan, who was behind the iconic Christmas song Fairytale of New York, has died aged 65.", + "contentSnippet": "The Pogues frontman Shane MacGowan, who was behind the iconic Christmas song Fairytale of New York, has died aged 65.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810067/pogues-bandmates-shane-macgowan-death-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:03:05.000Z" + }, + { + "title": "Shane MacGowan death recap: Tributes pour in for Pogues frontman as Fairytale of New York singer passes away aged 65", + "link": "https://www.dailymail.co.uk/news/live/article-12809709/Shane-MacGowan-death-latest-news-Pogues.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 18:02:50 GMT", + "enclosure": { + "length": "9449", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78422741-0-image-a-107_1701351013570.jpg" + }, + "content": "Follow MailOnline's liveblog for the latest updates and tributes following the death of The Pogues frontman Shane MacGowan who was aged 65.", + "contentSnippet": "Follow MailOnline's liveblog for the latest updates and tributes following the death of The Pogues frontman Shane MacGowan who was aged 65.", + "guid": "https://www.dailymail.co.uk/news/live/article-12809709/Shane-MacGowan-death-latest-news-Pogues.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T18:02:50.000Z" + }, + { + "title": "World-leading transgender surgery specialist dubbed the Snapchat Surgeon after performing ops on social media puts his Mayfair clinic into liquidation", + "link": "https://www.dailymail.co.uk/news/article-12810657/World-leading-transgender-surgery-specialist-dubbed-Snapchat-Surgeon-performing-ops-social-media-puts-Mayfair-clinic-liquidation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:56:09 GMT", + "enclosure": { + "length": "6675", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434943-0-image-m-9_1701366043673.jpg" + }, + "content": "Controversial Christopher Inglefield - who became known as the Snapchat Surgeon after livestreaming operations on the platform - has left patients awaiting surgery in despair.", + "contentSnippet": "Controversial Christopher Inglefield - who became known as the Snapchat Surgeon after livestreaming operations on the platform - has left patients awaiting surgery in despair.", + "guid": "https://www.dailymail.co.uk/news/article-12810657/World-leading-transgender-surgery-specialist-dubbed-Snapchat-Surgeon-performing-ops-social-media-puts-Mayfair-clinic-liquidation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:56:09.000Z" + }, + { + "title": "Henry Kissinger profiled by DOMINIC SANDBROOK: The shy, stammering refugee who became one of the world's most powerful men (and dated some of Hollywood's most beautiful women)", + "link": "https://www.dailymail.co.uk/news/article-12809101/DOMINIC-SANDBROOK-profiles-Henry-Kissinger-shy-stammering-refugee-one-worlds-powerful-men-dated-Hollywoods-beautiful-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:54:46 GMT", + "enclosure": { + "length": "9846", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78414995-0-image-a-9_1701341205464.jpg" + }, + "content": "At all costs, Richard Nixon said, Gerald Ford must keep Henry Kissinger as his Secretary of State. 'Henry is a genius,' he explained. 'He'll be very loyal, but you can't let him have a totally free hand.'", + "contentSnippet": "At all costs, Richard Nixon said, Gerald Ford must keep Henry Kissinger as his Secretary of State. 'Henry is a genius,' he explained. 'He'll be very loyal, but you can't let him have a totally free hand.'", + "guid": "https://www.dailymail.co.uk/news/article-12809101/DOMINIC-SANDBROOK-profiles-Henry-Kissinger-shy-stammering-refugee-one-worlds-powerful-men-dated-Hollywoods-beautiful-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:54:46.000Z" + }, + { + "title": "Rolling Stone dances on Henry Kissinger's grave with brutal 'good riddance' headline: 'Finally, the war criminal is dead'", + "link": "https://www.dailymail.co.uk/news/article-12809687/Rolling-Stone-Henry-Kissingers-good-riddance-headline-Finally-war-criminal-dead.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:53:21 GMT", + "enclosure": { + "length": "10145", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78424277-0-image-a-28_1701353684325.jpg" + }, + "content": "The left-leaning outlet published a skewering obituary by Spencer Ackerman last night in which they said Kissinger's legacy should only be his 'confirmed kills'.", + "contentSnippet": "The left-leaning outlet published a skewering obituary by Spencer Ackerman last night in which they said Kissinger's legacy should only be his 'confirmed kills'.", + "guid": "https://www.dailymail.co.uk/news/article-12809687/Rolling-Stone-Henry-Kissingers-good-riddance-headline-Finally-war-criminal-dead.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:53:21.000Z" + }, + { + "title": "Henry Westons Cider makers are fined \u00a31.4m after grandfather was crushed to death on his 65th birthday by a security barrier which pierced through his van's windshield", + "link": "https://www.dailymail.co.uk/news/article-12810787/Henry-Westons-Cider-fined-grandfather-crushed-death-security-barrier.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:52:01 GMT", + "enclosure": { + "length": "9045", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434691-0-image-a-9_1701365630783.jpg" + }, + "content": "Tommy Manns was driving a van out of H Weston and Sons Limited site at Bounds Farm in Ledbury in September 2020 when the newly installed security barrier pierced the vehicle's windshield", + "contentSnippet": "Tommy Manns was driving a van out of H Weston and Sons Limited site at Bounds Farm in Ledbury in September 2020 when the newly installed security barrier pierced the vehicle's windshield", + "guid": "https://www.dailymail.co.uk/news/article-12810787/Henry-Westons-Cider-fined-grandfather-crushed-death-security-barrier.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:52:01.000Z" + }, + { + "title": "I tried on stunning wedding dresses from Shein all costing under \u00a3100 - and now people are clamouring to buy them", + "link": "https://www.dailymail.co.uk/femail/article-12809459/I-tried-stunning-wedding-dresses-Shein-costing-100-people-clamouring-buy-them.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:50:43 GMT", + "enclosure": { + "length": "8652", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431505-0-image-a-64_1701361869771.jpg" + }, + "content": "Narssie, from\u00a0Belgium, showcased wedding dress from Shein on TikTok, with the cheapest costing just \u00a339 and the most expensive costing \u00a362 - and fans were impressed.", + "contentSnippet": "Narssie, from\u00a0Belgium, showcased wedding dress from Shein on TikTok, with the cheapest costing just \u00a339 and the most expensive costing \u00a362 - and fans were impressed.", + "guid": "https://www.dailymail.co.uk/femail/article-12809459/I-tried-stunning-wedding-dresses-Shein-costing-100-people-clamouring-buy-them.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:50:43.000Z" + }, + { + "title": "Mother of carpenter, 50, hacked to death at a KFC drive-thru reveals how she held him in his final moments after he was covered with a blanket and a pillow was put under his head", + "link": "https://www.dailymail.co.uk/news/article-12810345/mother-carpenter-hacked-death-KFC-final-moments.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:49:09 GMT", + "enclosure": { + "length": "8351", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430921-0-image-m-105_1701362196591.jpg" + }, + "content": "EXCLUSIVE: Christine Ward held son Kelvin after he was murdered trying to stop the thugs from killing their intended target - his teenage son. Chilling footage showed Mr Ward being ambushed.", + "contentSnippet": "EXCLUSIVE: Christine Ward held son Kelvin after he was murdered trying to stop the thugs from killing their intended target - his teenage son. Chilling footage showed Mr Ward being ambushed.", + "guid": "https://www.dailymail.co.uk/news/article-12810345/mother-carpenter-hacked-death-KFC-final-moments.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:49:09.000Z" + }, + { + "title": "Alfie Phillips joins a heartbreaking rollcall of children killed in lockdown after the tragic deaths of Star Hobson, Arthur Labinjo-Hughes and Kaylea Titford", + "link": "https://www.dailymail.co.uk/news/article-12810309/Alfie-Phillips-joins-heartbreaking-rollcall-children-killed-lockdown-tragic-deaths-Star-Hobson-Arthur-Labinjo-Hughes-Kaylea-Titford.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:48:05 GMT", + "enclosure": { + "length": "10590", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78423817-0-image-m-38_1701354345921.jpg" + }, + "content": "The toddler died\u00a0on 28 Nov 2020, just days into the second Covid lockdown, with a 'myriad of bruises', broken ribs, arms and leg, after the\u00a0attack in Benham's caravan in Hernhill, near Faversham.", + "contentSnippet": "The toddler died\u00a0on 28 Nov 2020, just days into the second Covid lockdown, with a 'myriad of bruises', broken ribs, arms and leg, after the\u00a0attack in Benham's caravan in Hernhill, near Faversham.", + "guid": "https://www.dailymail.co.uk/news/article-12810309/Alfie-Phillips-joins-heartbreaking-rollcall-children-killed-lockdown-tragic-deaths-Star-Hobson-Arthur-Labinjo-Hughes-Kaylea-Titford.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:48:05.000Z" + }, + { + "title": "Gang who kidnapped DJ and locked his girlfriend in toilet where she was forced to hear his screams as he was tortured to death face years behind bars", + "link": "https://www.dailymail.co.uk/news/article-12810755/Gang-kidnapped-DJ-locked-girlfriend-toilet-forced-hear-screams-tortured-death-face-years-bars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:44:47 GMT", + "enclosure": { + "length": "10300", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/76373793-0-image-m-9_1701364455379.jpg" + }, + "content": "WARNING: GRAPHIC CONTENT - Koray Alpergin (pictured), 43, was ambushed outside his north London home and bundled into a van along with his girlfriend on October 13, 2022.", + "contentSnippet": "WARNING: GRAPHIC CONTENT - Koray Alpergin (pictured), 43, was ambushed outside his north London home and bundled into a van along with his girlfriend on October 13, 2022.", + "guid": "https://www.dailymail.co.uk/news/article-12810755/Gang-kidnapped-DJ-locked-girlfriend-toilet-forced-hear-screams-tortured-death-face-years-bars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:44:47.000Z" + }, + { + "title": "Where are the cast of Brookside now? From Jennifer Ellison to Claire Sweeney and Ricky Tomlinson - a look at what has happened to the stars of the famous Channel 4 soap", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12809503/Brookside-cast-legendary-soap-opera-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:36:35 GMT", + "enclosure": { + "length": "10515", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434729-0-image-a-3_1701365546508.jpg" + }, + "content": "Former Brookside actor Dean Sullivan has passed away at the age of 68, following a battle with prostate cancer. We take a look at where his Brookside cast mates and where they are now.", + "contentSnippet": "Former Brookside actor Dean Sullivan has passed away at the age of 68, following a battle with prostate cancer. We take a look at where his Brookside cast mates and where they are now.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12809503/Brookside-cast-legendary-soap-opera-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:36:35.000Z" + }, + { + "title": "Yes, Omid Scobie is the author of that poisonous book but it's shameful Harry and Meghan who are REALLY to blame for the nasty 'royal racists' speculation, says RICHARD EDEN", + "link": "https://www.dailymail.co.uk/news/article-12809171/Scobie-author-shameful-Harry-Meghan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:35:46 GMT", + "enclosure": { + "length": "9736", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78416345-0-image-a-4_1701345018267.jpg" + }, + "content": "Omid Scobie 's new book on the royals might be inaccurate and poisonous, but the true blame for the lurid speculation about 'racism' lies with Harry and Meghan and their Oprah interview, says Eden.", + "contentSnippet": "Omid Scobie 's new book on the royals might be inaccurate and poisonous, but the true blame for the lurid speculation about 'racism' lies with Harry and Meghan and their Oprah interview, says Eden.", + "guid": "https://www.dailymail.co.uk/news/article-12809171/Scobie-author-shameful-Harry-Meghan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:35:46.000Z" + }, + { + "title": "Sex addict rapist who spiked women's drinks and violated them with objects including a baseball bat is jailed for 24 years", + "link": "https://www.dailymail.co.uk/news/article-12810723/Sex-addict-rapist-spiked-womens-drinks-violated-objects-including-baseball-bat-jailed-24-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:32:01 GMT", + "enclosure": { + "length": "3722", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434539-0-image-m-89_1701365121114.jpg" + }, + "content": "Former soldier Steven Evans, 33, of Openshaw, Greater Manchester, was said to be a sex addict who demanded intercourse up to 11 times a day.", + "contentSnippet": "Former soldier Steven Evans, 33, of Openshaw, Greater Manchester, was said to be a sex addict who demanded intercourse up to 11 times a day.", + "guid": "https://www.dailymail.co.uk/news/article-12810723/Sex-addict-rapist-spiked-womens-drinks-violated-objects-including-baseball-bat-jailed-24-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:32:01.000Z" + }, + { + "title": "Skincare expert reveals the beauty ingredients you should NEVER mix - as she divulges the alarming consequences if used together", + "link": "https://www.dailymail.co.uk/femail/article-12806621/Skincare-expert-beauty-ingredients-never-mix.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:29:39 GMT", + "enclosure": { + "length": "9368", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425407-0-image-a-274_1701355406552.jpg" + }, + "content": "Manuela\u00a0Marcheggiani, from Canada and the co-founder and CEO of Isomers Skincare, revealed why you should never use salicylic acid and retinoids together.", + "contentSnippet": "Manuela\u00a0Marcheggiani, from Canada and the co-founder and CEO of Isomers Skincare, revealed why you should never use salicylic acid and retinoids together.", + "guid": "https://www.dailymail.co.uk/femail/article-12806621/Skincare-expert-beauty-ingredients-never-mix.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:29:39.000Z" + }, + { + "title": "Kiefer Sutherland's touching Shane MacGowan anecdote that changed his mind about 'trusting first encounters' goes viral", + "link": "https://www.dailymail.co.uk/femail/article-12810567/shane-macgowan-kiefer-sutherland-late-late-2019-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:25:23 GMT", + "enclosure": { + "length": "9457", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78432339-0-image-a-78_1701362966195.jpg" + }, + "content": "The 56-year-old actor recalled meeting The Pogues frontman in the 1990s - telling the heartwarming tale of their journey from enemies to friends during a night out in Dublin.", + "contentSnippet": "The 56-year-old actor recalled meeting The Pogues frontman in the 1990s - telling the heartwarming tale of their journey from enemies to friends during a night out in Dublin.", + "guid": "https://www.dailymail.co.uk/femail/article-12810567/shane-macgowan-kiefer-sutherland-late-late-2019-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:25:23.000Z" + }, + { + "title": "World of Chess rocked by a second scandal: Grandmasters go to war as\u00a0 American champion Hikaru Nakamura is accused of cheating by rival after 46-game winning streak", + "link": "https://www.dailymail.co.uk/news/article-12809825/Chess-grandmasters-streak-vladimir-kramnik-hikaru-nakamura-cheating.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:24:32 GMT", + "enclosure": { + "length": "10136", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78427997-0-image-a-13_1701359525960.jpg" + }, + "content": "In a sequel to the Hans Niemann anal beads saga, former world champion Vladimir Kramnik has accused America's top player Hikaru Nakamura of cheating in online games.", + "contentSnippet": "In a sequel to the Hans Niemann anal beads saga, former world champion Vladimir Kramnik has accused America's top player Hikaru Nakamura of cheating in online games.", + "guid": "https://www.dailymail.co.uk/news/article-12809825/Chess-grandmasters-streak-vladimir-kramnik-hikaru-nakamura-cheating.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:24:32.000Z" + }, + { + "title": "A New Labour stalwart who rose to the occasion as Britain faced economic meltdown in 2008: How Alistair Darling led the UK through the credit crunch as Chancellor... before going on to save the Union at the 2014 Scottish referendum", + "link": "https://www.dailymail.co.uk/news/article-12810853/A-New-Labour-stalwart-rose-occasion-Britain-faced-economic-armageddon-2008-Alistair-Darling-led-UK-credit-crunch-Chancellor-going-save-Union-2014-Scottish-referendum.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:21:48 GMT", + "enclosure": { + "length": "5184", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/17/78434249-0-image-a-77_1701364572121.jpg" + }, + "content": "With Britain facing economic meltdown amid the global credit crunch, Lord Darling emerged from the chaos with an enhanced reputation.", + "contentSnippet": "With Britain facing economic meltdown amid the global credit crunch, Lord Darling emerged from the chaos with an enhanced reputation.", + "guid": "https://www.dailymail.co.uk/news/article-12810853/A-New-Labour-stalwart-rose-occasion-Britain-faced-economic-armageddon-2008-Alistair-Darling-led-UK-credit-crunch-Chancellor-going-save-Union-2014-Scottish-referendum.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:21:48.000Z" + }, + { + "title": "Muslim family appeals to Hamas to free 17-year-old girl snatched from a kibbutz - with her uncle saying if she is not returned he'll 'fight them in Gaza myself'", + "link": "https://www.dailymail.co.uk/news/exclusive/article-12810453/Muslim-family-appeals-Hamas-free-17-year-old-girl-snatched-kibbutz-uncle-saying-not-returned-hell-fight-Gaza-myself.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:19:29 GMT", + "enclosure": { + "length": "5050", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430867-0-image-m-28_1701361922704.jpg" + }, + "content": "Aisha Ziadna was snatched along with her father and two brothers on October 7. Her uncle said that the Israeli army contacted them to say they were being held in Gaza.", + "contentSnippet": "Aisha Ziadna was snatched along with her father and two brothers on October 7. Her uncle said that the Israeli army contacted them to say they were being held in Gaza.", + "guid": "https://www.dailymail.co.uk/news/exclusive/article-12810453/Muslim-family-appeals-Hamas-free-17-year-old-girl-snatched-kibbutz-uncle-saying-not-returned-hell-fight-Gaza-myself.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:19:29.000Z" + }, + { + "title": "Ex-Man City star Joey Barton calls his brother Michael's racially-motivated murder of Anthony Walker 'a f***ing scrap' as he appears to play down how serious the 2005 ice-axe killing was", + "link": "https://www.dailymail.co.uk/sport/football/article-12809467/Joey-Barton-Michael-murder-Anthony-Walker-2005-ice-axe-scrap.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:19:05 GMT", + "enclosure": { + "length": "10319", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78419781-0-image-a-35_1701347295018.jpg" + }, + "content": "Michael Barton was released from prison in September 2022 having served 17 years of a life sentence for his part in killing the black 18-year-old in McGoldrick Park in Liverpool.", + "contentSnippet": "Michael Barton was released from prison in September 2022 having served 17 years of a life sentence for his part in killing the black 18-year-old in McGoldrick Park in Liverpool.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12809467/Joey-Barton-Michael-murder-Anthony-Walker-2005-ice-axe-scrap.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:19:05.000Z" + }, + { + "title": "I'm A Celeb star Jamie Lynn Spears breaks her silence after quitting the jungle show - as producers scramble to fix disastrous series", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810013/Jamie-Lynn-Spears-breaks-silence-quitting-Im-Celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:15:47 GMT", + "enclosure": { + "length": "10941", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425231-0-image-a-59_1701355083059.jpg" + }, + "content": "Jamie Lynn Spears has broken her silence after quitting I'm A Celebrity Get Me Out Of Here!", + "contentSnippet": "Jamie Lynn Spears has broken her silence after quitting I'm A Celebrity Get Me Out Of Here!", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810013/Jamie-Lynn-Spears-breaks-silence-quitting-Im-Celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:15:47.000Z" + }, + { + "title": "I lost all four of my limbs to a flesh-eating bug - and I'm loving life: Quadruple amputee father who scaled Ethiopia's highest mountain after losing his arms and legs in Strep A horror tells his incredible life story", + "link": "https://www.dailymail.co.uk/news/article-12809047/I-lost-four-limbs-flesh-eating-bug-Im-loving-life-Quadruple-amputee-father-scaled-Ethiopias-highest-mountain-losing-arms-legs-Strep-horror-tells-incredible-life-story.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:15:32 GMT", + "enclosure": { + "length": "6771", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78415897-0-image-m-33_1701348045307.jpg" + }, + "content": "EXCLUSIVE: Quadruple amputee Alex Lewis, 43, of Stockbridge, Hampshire, was a perfectly healthy man when he fell ill in 2013 - putting his symptoms down to 'man flu'.", + "contentSnippet": "EXCLUSIVE: Quadruple amputee Alex Lewis, 43, of Stockbridge, Hampshire, was a perfectly healthy man when he fell ill in 2013 - putting his symptoms down to 'man flu'.", + "guid": "https://www.dailymail.co.uk/news/article-12809047/I-lost-four-limbs-flesh-eating-bug-Im-loving-life-Quadruple-amputee-father-scaled-Ethiopias-highest-mountain-losing-arms-legs-Strep-horror-tells-incredible-life-story.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:15:32.000Z" + }, + { + "title": "Swedish girl, 15, and four teenage brothers are jailed after gang lured taxi driver, 26, into the woods and hanged him in revenge for raping her", + "link": "https://www.dailymail.co.uk/news/article-12810393/swedish-girl-15-jailed-brothers-killed-taxi-driver-hanged-sweden.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:13:33 GMT", + "enclosure": { + "length": "7237", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/76470789-0-The_taxi_driver_was_lured_to_a_carpark_near_the_Hj_lstavikens_na-a-49_1701360688329.jpg" + }, + "content": "The court in Uppsala, near Stockholm, found that the unnamed driver, 26, was led into a nature reserve in central Sweden in March with the promise of sexual favours.", + "contentSnippet": "The court in Uppsala, near Stockholm, found that the unnamed driver, 26, was led into a nature reserve in central Sweden in March with the promise of sexual favours.", + "guid": "https://www.dailymail.co.uk/news/article-12810393/swedish-girl-15-jailed-brothers-killed-taxi-driver-hanged-sweden.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:13:33.000Z" + }, + { + "title": "X CEO Linda Yaccarino doubles down on Elon Musk's 'go f**k yourselves' message to advertisers who have pulled their money over hate speech fears", + "link": "https://www.dailymail.co.uk/news/article-12809859/Twitter-CEO-Linda-Yaccarino-doubles-Elon-Musks-f-k-message-advertisers-pulled-money-hate-speech-fears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:10:49 GMT", + "enclosure": { + "length": "9269", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78424003-0-Elon_Musk_told_advertisers_to_go_f_k_themselves_at_the_DealBook_-a-4_1701352996122.jpg" + }, + "content": "Musk has been criticized for loosening Twitter's grip on what some perceive to be hate speech, and has even been accused of stoking antisemitism on the site by not cracking down on certain accounts.", + "contentSnippet": "Musk has been criticized for loosening Twitter's grip on what some perceive to be hate speech, and has even been accused of stoking antisemitism on the site by not cracking down on certain accounts.", + "guid": "https://www.dailymail.co.uk/news/article-12809859/Twitter-CEO-Linda-Yaccarino-doubles-Elon-Musks-f-k-message-advertisers-pulled-money-hate-speech-fears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:10:49.000Z" + }, + { + "title": "Northern Lights to shine across parts of the UK TONIGHT as a huge solar storm strikes Earth: Is your area going to be illuminated as Aurora Borealis lights up the night sky?", + "link": "https://www.dailymail.co.uk/sciencetech/article-12809409/Northern-Lights-shine-parts-UK-TONIGHT-huge-solar-storm-strikes-Earth-area-going-illuminated-Aurora-Borealis-lights-night-sky.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:06:07 GMT", + "enclosure": { + "length": "7714", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78419831-0-image-a-41_1701347641074.jpg" + }, + "content": "Even if you're not living in a northerly region of the country you may be in with a chance of capturing the aurora, experts say.", + "contentSnippet": "Even if you're not living in a northerly region of the country you may be in with a chance of capturing the aurora, experts say.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12809409/Northern-Lights-shine-parts-UK-TONIGHT-huge-solar-storm-strikes-Earth-area-going-illuminated-Aurora-Borealis-lights-night-sky.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:06:07.000Z" + }, + { + "title": "How Henry Kissinger escaped Nazi Germany in 1938 only to return as a US Army Sergeant seven years later and liberate the Ahlem concentration camp in what he described as one of the 'most horrifying experiences of my life'", + "link": "https://www.dailymail.co.uk/news/article-12808887/How-Henry-Kissinger-dead-100-escaped-Nazi-Germany-return-liberate-Ahlem-concentration-camp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:04:47 GMT", + "enclosure": { + "length": "6631", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78413225-0-image-m-13_1701338745154.jpg" + }, + "content": "In his early life, Kissinger would be persecuted by Nazis for being Jewish, flee Germany with his family, join the US army and return to help liberate a concentration camp.", + "contentSnippet": "In his early life, Kissinger would be persecuted by Nazis for being Jewish, flee Germany with his family, join the US army and return to help liberate a concentration camp.", + "guid": "https://www.dailymail.co.uk/news/article-12808887/How-Henry-Kissinger-dead-100-escaped-Nazi-Germany-return-liberate-Ahlem-concentration-camp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:04:47.000Z" + }, + { + "title": "How to get kids to eat more veg? Serve it with smiley faces! Children eat 52% more vegetables if they're in the same bowl as fun potato shapes, study finds", + "link": "https://www.dailymail.co.uk/sciencetech/article-12809387/How-kids-eat-veg-Serve-smiley-faces-Children-eat-52-vegetables-theyre-bowl-fun-potato-shapes-study-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:03:47 GMT", + "enclosure": { + "length": "7394", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78418469-0-image-a-30_1701346035568.jpg" + }, + "content": "Researchers from Brigham Young University found that children ate up to 52 per cent more peas and carrots when they was served with potato smiles.", + "contentSnippet": "Researchers from Brigham Young University found that children ate up to 52 per cent more peas and carrots when they was served with potato smiles.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12809387/How-kids-eat-veg-Serve-smiley-faces-Children-eat-52-vegetables-theyre-bowl-fun-potato-shapes-study-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:03:47.000Z" + }, + { + "title": "Britain's last opencast coal mine closes as row begins with operator over site clean-up bill that could hit \u00a3175million", + "link": "https://www.dailymail.co.uk/news/article-12810533/Britains-opencast-coal-closes-row-begins-operator-site-clean-bill-hit-175million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 17:00:25 GMT", + "enclosure": { + "length": "7937", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78432717-0-image-a-17_1701363549906.jpg" + }, + "content": "The giant Ffos-y-Fran mine, near Merthyr Tydfil, South Wales, is the size of 400 football pitches and about 656ft (200m) deep.", + "contentSnippet": "The giant Ffos-y-Fran mine, near Merthyr Tydfil, South Wales, is the size of 400 football pitches and about 656ft (200m) deep.", + "guid": "https://www.dailymail.co.uk/news/article-12810533/Britains-opencast-coal-closes-row-begins-operator-site-clean-bill-hit-175million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T17:00:25.000Z" + }, + { + "title": "The REAL reason why Ant McPartlin and Dec Donnelly keep their watches covered on I'm A Celebrity", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810399/Ant-McPartlin-Dec-Donnelly-watches-covered-Im-Celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:58:40 GMT", + "enclosure": { + "length": "10484", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78430661-0-image-a-21_1701360699461.jpg" + }, + "content": "There's one subject that's been boggling the mind's of the show's viewers.", + "contentSnippet": "There's one subject that's been boggling the mind's of the show's viewers.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810399/Ant-McPartlin-Dec-Donnelly-watches-covered-Im-Celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:58:40.000Z" + }, + { + "title": "Woman, 70, 'gives birth to twins after IVF treatment': Ugandan becomes the oldest person to give birth in Africa, hospital says", + "link": "https://www.dailymail.co.uk/news/article-12809271/Woman-70-gives-birth-twins-IVF-treatment-Ugandan-oldest-person-birth-Africa-hospital-says.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:57:54 GMT", + "enclosure": { + "length": "7335", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78416301-0-image-a-5_1701344030743.jpg" + }, + "content": "Safina Namukwaya became\u00a0the oldest woman to give birth in Africa after she delivered a baby girl and boy on Wednesday afternoon, the Women's Hospital International and Fertility Centre said.", + "contentSnippet": "Safina Namukwaya became\u00a0the oldest woman to give birth in Africa after she delivered a baby girl and boy on Wednesday afternoon, the Women's Hospital International and Fertility Centre said.", + "guid": "https://www.dailymail.co.uk/news/article-12809271/Woman-70-gives-birth-twins-IVF-treatment-Ugandan-oldest-person-birth-Africa-hospital-says.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:57:54.000Z" + }, + { + "title": "The Pogues' Spider Stacy and Imelda May lead the celebrity tributes to Shane MacGowan as the Fairytale of New York singer passes away aged 65 after long health battle", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12809555/Stars-pay-tribute-Shane-MacGowan-Pogues-star-passes-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:55:26 GMT", + "enclosure": { + "length": "8861", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421531-0-image-a-180_1701349386324.jpg" + }, + "content": "Tributes have been pouring in for Shane MacGowan after his death aged 65 on Thursday.\u00a0", + "contentSnippet": "Tributes have been pouring in for Shane MacGowan after his death aged 65 on Thursday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12809555/Stars-pay-tribute-Shane-MacGowan-Pogues-star-passes-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:55:26.000Z" + }, + { + "title": "Scotland's First Minister Humza Yousaf thanks King Charles for his 'prayers and words of comfort' at Cop28 climate summit - after SNP leader's parents-in-law were trapped in Gaza amid Israeli bombardment", + "link": "https://www.dailymail.co.uk/news/article-12809511/Charles-climate-king-Monarch-given-biodiversity-gifts-Amazonian-tribe-Dubai-hotel-hes-joined-Foreign-Secretary-Lord-Cameron-Cop28-summit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:54:56 GMT", + "enclosure": { + "length": "8706", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431991-0-Scottish_First_Minister_Humza_Yousaf_meetings_Kings_Charles_toda-a-11_1701362943009.jpg" + }, + "content": "Leaning towards the King and quietening his voice, Mr Yousaf said he 'very grateful' for messages the monarch had sent him during the family crisis.", + "contentSnippet": "Leaning towards the King and quietening his voice, Mr Yousaf said he 'very grateful' for messages the monarch had sent him during the family crisis.", + "guid": "https://www.dailymail.co.uk/news/article-12809511/Charles-climate-king-Monarch-given-biodiversity-gifts-Amazonian-tribe-Dubai-hotel-hes-joined-Foreign-Secretary-Lord-Cameron-Cop28-summit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:54:56.000Z" + }, + { + "title": "EXCLUSIVE: I'm A Celeb star Grace Dent has snubbed all TV appearances and interviews to jet off on holiday in a bid to put her jungle 'hell' behind her", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12808829/Im-Celeb-Grace-Dent-snubbed-TV-appearances-jet-holiday-jungle-hell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:51:58 GMT", + "enclosure": { + "length": "10178", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/09/78412615-0-image-a-18_1701336821186.jpg" + }, + "content": "I'm A Celeb star Grade Dent has snubbed all TV appearances and interviews to jet off on holiday in a bid to put her jungle 'hell' behind her.", + "contentSnippet": "I'm A Celeb star Grade Dent has snubbed all TV appearances and interviews to jet off on holiday in a bid to put her jungle 'hell' behind her.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12808829/Im-Celeb-Grace-Dent-snubbed-TV-appearances-jet-holiday-jungle-hell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:51:58.000Z" + }, + { + "title": "Panda-monium! Visitors flock to Edinburgh Zoo for their final chance to say farewell to the UK's only giant pandas before they return to China", + "link": "https://www.dailymail.co.uk/news/article-12809977/giant-pandas-Edinburgh-Zoo-farewell-UK-return-China.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:48:22 GMT", + "enclosure": { + "length": "5711", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78424515-0-image-m-66_1701357392190.jpg" + }, + "content": "Yang Guang and Tian Tian,\u00a0also known as Sunshine and Sweetie, will no longer be on public view at Edinburgh Zoo from around 3.30pm today as they prepare for their journey next week.", + "contentSnippet": "Yang Guang and Tian Tian,\u00a0also known as Sunshine and Sweetie, will no longer be on public view at Edinburgh Zoo from around 3.30pm today as they prepare for their journey next week.", + "guid": "https://www.dailymail.co.uk/news/article-12809977/giant-pandas-Edinburgh-Zoo-farewell-UK-return-China.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:48:22.000Z" + }, + { + "title": "Omid Scobie says names of two 'royal racists' in Endgame's Dutch translation have been 'known for a long time' and insists he 'never submitted book with them in it'", + "link": "https://www.dailymail.co.uk/news/article-12810133/omid-scobie-royal-racists-known.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:46:12 GMT", + "enclosure": { + "length": "10236", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/10/78414721-0-image-a-17_1701340758285.jpg" + }, + "content": "The Sussexes' favoured royal reporter has been accused of 'virtually confirming' the names in his first British TV appearance on ITV's This Morning today.", + "contentSnippet": "The Sussexes' favoured royal reporter has been accused of 'virtually confirming' the names in his first British TV appearance on ITV's This Morning today.", + "guid": "https://www.dailymail.co.uk/news/article-12810133/omid-scobie-royal-racists-known.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:46:12.000Z" + }, + { + "title": "Chris Pine's acne kept him from landing the lead role, Mischa Barton was overwhelmed and female orgasms were banned. The secrets of The O.C. are laid bare in new book on iconic show's 20th anniversary", + "link": "https://www.dailymail.co.uk/news/article-12806641/OC-producers-rejected-Chris-Pine-role-acne-killing-Mischa-Barton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:43:52 GMT", + "enclosure": { + "length": "10584", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425311-0-image-a-21_1701355270504.jpg" + }, + "content": "New book Welcome To The O.C.: The Oral History gives insight into the rise, fall and behind the scenes drama of the iconic show on its 20th anniversary.", + "contentSnippet": "New book Welcome To The O.C.: The Oral History gives insight into the rise, fall and behind the scenes drama of the iconic show on its 20th anniversary.", + "guid": "https://www.dailymail.co.uk/news/article-12806641/OC-producers-rejected-Chris-Pine-role-acne-killing-Mischa-Barton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:43:52.000Z" + }, + { + "title": "'Did he buy the street?' Tom Cruise finds it is a mission impossible to calm irate cab drivers as he holds up traffic to pose for selfies with fans after dining with Beyonce and Jay Z in Mayfair", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810087/tom-cruise-mission-impossible-beyonce-jay-z-mayfair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:39:47 GMT", + "enclosure": { + "length": "9591", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431039-0-image-a-78_1701361215700.jpg" + }, + "content": "Tom Cruise was spotted leaving the exclusive Oswald's Private Members Club in Mayfair yesterday evening, where he had just been dining with Beyonce , Jay Z and Henry Cavill.", + "contentSnippet": "Tom Cruise was spotted leaving the exclusive Oswald's Private Members Club in Mayfair yesterday evening, where he had just been dining with Beyonce , Jay Z and Henry Cavill.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810087/tom-cruise-mission-impossible-beyonce-jay-z-mayfair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:39:47.000Z" + }, + { + "title": "JANET STREET-PORTER: Is it REALLY racist to wonder what colour a child might be? After Scobie's ludicrous claims, now Beyonce has fallen victim to the hate mob - but why can't we judge people by their talent, not their skin?", + "link": "https://www.dailymail.co.uk/debate/article-12810107/JANET-STREET-PORTER-REALLY-racist-wonder-colour-child-Scobies-ludicrous-claims-Beyonce-fallen-victim-hate-mob-judge-people-talent-not-skin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:32:39 GMT", + "enclosure": { + "length": "10868", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78428103-0-image-a-8_1701358767721.jpg" + }, + "content": "JANET STREET-PORTER: For Beyonce, nothing is left to chance, she is a marketing genius, an icon and inspiration to girls of all colours and backgrounds.", + "contentSnippet": "JANET STREET-PORTER: For Beyonce, nothing is left to chance, she is a marketing genius, an icon and inspiration to girls of all colours and backgrounds.", + "guid": "https://www.dailymail.co.uk/debate/article-12810107/JANET-STREET-PORTER-REALLY-racist-wonder-colour-child-Scobies-ludicrous-claims-Beyonce-fallen-victim-hate-mob-judge-people-talent-not-skin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:32:39.000Z" + }, + { + "title": "More than 500 children are evacuated from \u00a317,000-a-year private prep school after bomb scare", + "link": "https://www.dailymail.co.uk/news/article-12810415/children-evacuated-private-school-bomb-scare.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:31:37 GMT", + "enclosure": { + "length": "7096", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78429945-0-image-a-152_1701360271093.jpg" + }, + "content": "Talbot Heath Preparatory School, in Bournemouth, Dorset, which costs up to \u00a317,301 a term, called the police at 9.36am after receiving a 'security threat'.", + "contentSnippet": "Talbot Heath Preparatory School, in Bournemouth, Dorset, which costs up to \u00a317,301 a term, called the police at 9.36am after receiving a 'security threat'.", + "guid": "https://www.dailymail.co.uk/news/article-12810415/children-evacuated-private-school-bomb-scare.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:31:37.000Z" + }, + { + "title": "EXCLUSIVE Son of retired Met Police officers who avoided jail despite killing two men in drug drive smash clocks up at least 27 offences - as he admits driving while disqualified", + "link": "https://www.dailymail.co.uk/news/article-12810527/son-retired-met-police-officers-gets-offence.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:30:42 GMT", + "enclosure": { + "length": "7066", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/16/78431385-0-image-m-92_1701361694287.jpg" + }, + "content": "Max Coopey, now aged 22, appeared before magistrates in Slough today where he admitted driving a blue Fiat 500 - said to belong to his ex Met officer mother.", + "contentSnippet": "Max Coopey, now aged 22, appeared before magistrates in Slough today where he admitted driving a blue Fiat 500 - said to belong to his ex Met officer mother.", + "guid": "https://www.dailymail.co.uk/news/article-12810527/son-retired-met-police-officers-gets-offence.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:30:42.000Z" + }, + { + "title": "The man who epitomised punk rock: The Pogues' frontman Shane MacGowan was a belligerent former drug addict with a love of cursing and raising hell...but that didn't stop him becoming the unlikely patron saint of Christmas", + "link": "https://www.dailymail.co.uk/news/article-12809569/The-man-epitomised-punk-rock-Pogues-frontman-Shane-MacGowan-belligerent-former-drug-addict-love-cursing-raising-hell-didnt-stop-unlikely-patron-saint-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:29:39 GMT", + "enclosure": { + "length": "10502", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78419925-0-image-a-25_1701348105746.jpg" + }, + "content": "With his double act with the tragic Kirsty MacColl on 1987 festive hit Fairytale of New York, MacGowan cemented himself into the hearts of millions", + "contentSnippet": "With his double act with the tragic Kirsty MacColl on 1987 festive hit Fairytale of New York, MacGowan cemented himself into the hearts of millions", + "guid": "https://www.dailymail.co.uk/news/article-12809569/The-man-epitomised-punk-rock-Pogues-frontman-Shane-MacGowan-belligerent-former-drug-addict-love-cursing-raising-hell-didnt-stop-unlikely-patron-saint-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:29:39.000Z" + }, + { + "title": "Nurse trolled after claiming wooden chopping boards contain 200 times MORE fecal matter than a toilet seat - as she suggests cleaning the utensil with lemon, vinegar and salt", + "link": "https://www.dailymail.co.uk/femail/article-12809867/Nurse-wooden-chopping-board-bacteria-clean.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:24:49 GMT", + "enclosure": { + "length": "9400", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78423649-0-image-a-39_1701353763542.jpg" + }, + "content": "Aesthetic nurse practitioner Miranda, who claimed the average cutting board has 200 times more fecal bacteria than a toilet seat, posted a TikTok with an easy way to clean the wooden board.", + "contentSnippet": "Aesthetic nurse practitioner Miranda, who claimed the average cutting board has 200 times more fecal bacteria than a toilet seat, posted a TikTok with an easy way to clean the wooden board.", + "guid": "https://www.dailymail.co.uk/femail/article-12809867/Nurse-wooden-chopping-board-bacteria-clean.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:24:49.000Z" + }, + { + "title": "Duchess of Edinburgh escapes Omid Scobie race row back home as she visits women's organisations on official visit to Colombia", + "link": "https://www.dailymail.co.uk/femail/article-12809693/The-Duchess-Edinburgh-looks-laid-floral-blouse-jeans-visits-womens-organisations-Colombia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:21:09 GMT", + "enclosure": { + "length": "12702", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78424527-0-image-a-46_1701353915031.jpg" + }, + "content": "The Duchess of Edinburgh looked laid back as she visited organisations in Cali. Duchess Sophie, 58, has been visiting Colombia this week to support the Women, Peace and Security Agenda", + "contentSnippet": "The Duchess of Edinburgh looked laid back as she visited organisations in Cali. Duchess Sophie, 58, has been visiting Colombia this week to support the Women, Peace and Security Agenda", + "guid": "https://www.dailymail.co.uk/femail/article-12809693/The-Duchess-Edinburgh-looks-laid-floral-blouse-jeans-visits-womens-organisations-Colombia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:21:09.000Z" + }, + { + "title": "Brianna Ghey's final journey: Jury shown footage of the moment tragic schoolgirl catches a bus to the park moments before she was stabbed to death", + "link": "https://www.dailymail.co.uk/news/article-12810247/brianna-ghey-footage-captures-moment-catches-bus-stabbed-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:20:38 GMT", + "enclosure": { + "length": "6275", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426625-0-image-m-12_1701357436913.jpg" + }, + "content": "Brianna left her house on the afternoon of February 11 and boarded a bus to a park in\u00a0Culcheth, near Warrington, Cheshire, where she was stabbed 28 times.", + "contentSnippet": "Brianna left her house on the afternoon of February 11 and boarded a bus to a park in\u00a0Culcheth, near Warrington, Cheshire, where she was stabbed 28 times.", + "guid": "https://www.dailymail.co.uk/news/article-12810247/brianna-ghey-footage-captures-moment-catches-bus-stabbed-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:20:38.000Z" + }, + { + "title": "Stunning flat up for grabs WITHIN medieval city wall - as tenants can rent rooms with exposed ancient brickwork and timber for just over \u00a3750 a month", + "link": "https://www.dailymail.co.uk/property/article-12810083/Stunning-flat-medieval-city-wall-tenants-rent-rooms-750-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:17:44 GMT", + "enclosure": { + "length": "8034", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78425587-0-image-m-35_1701356446763.jpg" + }, + "content": "The quirky pad, located in Coventry, is fitted with modern furnishings and a small window that looks out onto the city centre.", + "contentSnippet": "The quirky pad, located in Coventry, is fitted with modern furnishings and a small window that looks out onto the city centre.", + "guid": "https://www.dailymail.co.uk/property/article-12810083/Stunning-flat-medieval-city-wall-tenants-rent-rooms-750-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:17:44.000Z" + }, + { + "title": "'I was treated like a celebrity!' Passenger pictured taking his first ever flight - on a Jet2 plane at the age of NINETY", + "link": "https://www.dailymail.co.uk/travel/article-12805159/I-treated-like-celebrity-Passenger-pictured-taking-flight-Jet2-plane-age-NINETY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 16:00:41 GMT", + "enclosure": { + "length": "6409", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/29/16/78373985-0-image-m-40_1701274304431.jpg" + }, + "content": "Malcolm Shedlow made a memory to treasure forever when he took his first flight at age 90. The great-grandfather from Leeds said he was 'treated like a celebrity and fast-tracked through the airport'.", + "contentSnippet": "Malcolm Shedlow made a memory to treasure forever when he took his first flight at age 90. The great-grandfather from Leeds said he was 'treated like a celebrity and fast-tracked through the airport'.", + "guid": "https://www.dailymail.co.uk/travel/article-12805159/I-treated-like-celebrity-Passenger-pictured-taking-flight-Jet2-plane-age-NINETY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T16:00:41.000Z" + }, + { + "title": "Moment Met Police officer storms into house and Tasers girl, 10, as she tries to run upstairs with garden shears - as disciplinary panel clears him of misconduct", + "link": "https://www.dailymail.co.uk/news/article-12809427/Met-Police-officer-tasered-girl-threatening-mother-garden-shears-hammer-cleared-misconduct.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:59:44 GMT", + "enclosure": { + "length": "5368", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78427309-0-image-a-20_1701357950100.jpg" + }, + "content": "PC Jonathan Broadhead (pictured) did not breach police standards of professional behaviour relating to the use of force against the girl, a hearing ruled.", + "contentSnippet": "PC Jonathan Broadhead (pictured) did not breach police standards of professional behaviour relating to the use of force against the girl, a hearing ruled.", + "guid": "https://www.dailymail.co.uk/news/article-12809427/Met-Police-officer-tasered-girl-threatening-mother-garden-shears-hammer-cleared-misconduct.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:59:44.000Z" + }, + { + "title": "A 'Poundland' Christmas tree that the council put up by mistake and 'shocking' festive lights that are 'an absolute joke' - are these Britain's worst Yuletide decorations this year?", + "link": "https://www.dailymail.co.uk/news/article-12809039/Shocking-Christmas-lights-tree-Britains-worst-Yuletide-decorations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:58:07 GMT", + "enclosure": { + "length": "9741", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78415211-0-image-m-8_1701344017383.jpg" + }, + "content": "Britons are marking the beginning of the festive season by showing off the worst Yuletide decorations their local councils can muster...", + "contentSnippet": "Britons are marking the beginning of the festive season by showing off the worst Yuletide decorations their local councils can muster...", + "guid": "https://www.dailymail.co.uk/news/article-12809039/Shocking-Christmas-lights-tree-Britains-worst-Yuletide-decorations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:58:07.000Z" + }, + { + "title": "Mother, 38, has to have floors removed after work to unblock drain backfired and left her caravan and her children's school uniform covered in human waste", + "link": "https://www.dailymail.co.uk/news/article-12809703/mother-floors-removed-caravan-covered-human-waste.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:55:05 GMT", + "enclosure": { + "length": "9096", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78426217-0-image-m-68_1701358699277.jpg" + }, + "content": "Tammy Samuel, 38, says she had 'everyone's poo and urine' flow into her home after she reported blockages near her home on a traveller site in Sittingbourne, Kent.", + "contentSnippet": "Tammy Samuel, 38, says she had 'everyone's poo and urine' flow into her home after she reported blockages near her home on a traveller site in Sittingbourne, Kent.", + "guid": "https://www.dailymail.co.uk/news/article-12809703/mother-floors-removed-caravan-covered-human-waste.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:55:05.000Z" + }, + { + "title": "Pictured: Women being hunted by police after pickpocket gang stole \u00a31,000 cash from bus passenger, 86, who had just withdrawn it from the bank to buy Christmas presents", + "link": "https://www.dailymail.co.uk/news/article-12809841/woman-hunted-police-gang-stole-cash-pictured.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:53:16 GMT", + "enclosure": { + "length": "10477", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78423971-0-image-a-115_1701352957716.jpg" + }, + "content": "An 85-year-old woman 'screamed out loud' when she realised a large amount of cash had been stolen while she travelled on the bus in Warrington.", + "contentSnippet": "An 85-year-old woman 'screamed out loud' when she realised a large amount of cash had been stolen while she travelled on the bus in Warrington.", + "guid": "https://www.dailymail.co.uk/news/article-12809841/woman-hunted-police-gang-stole-cash-pictured.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:53:16.000Z" + }, + { + "title": "The Apprentice star, 40, who painted her baby and toddler shop gold is locked in planning permission row after council in historic market town told her 'yellow is not an acceptable colour in the conservation area'", + "link": "https://www.dailymail.co.uk/news/article-12809269/marianne-rawlins-planning-permission-row-historic-council.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:50:26 GMT", + "enclosure": { + "length": "11372", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78418669-0-image-m-29_1701346441597.jpg" + }, + "content": "Marianne Rawlins, who made it to the final weeks of Lord Sugar's infamously antagonistic reality series, opened her store Stork of Stamford, in Stamford, Lincolnshire in September.", + "contentSnippet": "Marianne Rawlins, who made it to the final weeks of Lord Sugar's infamously antagonistic reality series, opened her store Stork of Stamford, in Stamford, Lincolnshire in September.", + "guid": "https://www.dailymail.co.uk/news/article-12809269/marianne-rawlins-planning-permission-row-historic-council.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:50:26.000Z" + }, + { + "title": "The 10 most bizarre Elf on the Shelf ideas to see you through Christmas - but be warned these suggestions could wreak havoc in your household this festive season", + "link": "https://www.dailymail.co.uk/femail/article-12779233/The-10-bizarre-Elf-Shelf-ideas-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:48:36 GMT", + "enclosure": { + "length": "12013", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/22/16/78117501-0-image-a-44_1700669001734.jpg" + }, + "content": "Elf on the Shelf, is based on a 2005 children's picture book of the same name, written by American authors Carol V. Aebersold and Bell Chanda - but the trend has spread across the globe.", + "contentSnippet": "Elf on the Shelf, is based on a 2005 children's picture book of the same name, written by American authors Carol V. Aebersold and Bell Chanda - but the trend has spread across the globe.", + "guid": "https://www.dailymail.co.uk/femail/article-12779233/The-10-bizarre-Elf-Shelf-ideas-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:48:36.000Z" + }, + { + "title": "Peruvian wolf spider laid EGGS in my toe on my wedding anniversary cruise: Brit reveals pus oozed from his purple foot in French hospital... before one spider tried to EAT its way out", + "link": "https://www.dailymail.co.uk/news/article-12809207/Peruvian-wolf-spider-lay-EGGS-toe-wedding-anniversary-cruise-Brit-reveals-pus-oozed-purple-foot-French-hospital-one-spider-tried-EAT-way-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:44:23 GMT", + "enclosure": { + "length": "4523", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78415823-0-image-m-44_1701343176682.jpg" + }, + "content": "WARNING - GRAPHIC CONTENT: Colin Blake was bitten while he and his wife were having a meal on a cruise in Marseille in France. Terrified by his toe turning purple, he rushed to the ship's doctor.", + "contentSnippet": "WARNING - GRAPHIC CONTENT: Colin Blake was bitten while he and his wife were having a meal on a cruise in Marseille in France. Terrified by his toe turning purple, he rushed to the ship's doctor.", + "guid": "https://www.dailymail.co.uk/news/article-12809207/Peruvian-wolf-spider-lay-EGGS-toe-wedding-anniversary-cruise-Brit-reveals-pus-oozed-purple-foot-French-hospital-one-spider-tried-EAT-way-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:44:23.000Z" + }, + { + "title": "Matt Hancock tells Covid Inquiry his 'single greatest regret' was to not overrule scientists who said virus couldn't be spread by those without symptoms... and says he should have followed his 'hunch'", + "link": "https://www.dailymail.co.uk/health/article-12809673/Matt-Hancock-claims-not-overruling-science-stated-Covid-spread-asymptomatically-single-greatest-regret-says-followed-hunch-despite-emails-showing-told-March-2020-possible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:39:19 GMT", + "enclosure": { + "length": "3454", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78420607-0-image-m-17_1701349801509.jpg" + }, + "content": "The former health secretary claimed the UK's scientific advisers told him there was no 'concrete evidence' the virus could spread between people with no symptoms.", + "contentSnippet": "The former health secretary claimed the UK's scientific advisers told him there was no 'concrete evidence' the virus could spread between people with no symptoms.", + "guid": "https://www.dailymail.co.uk/health/article-12809673/Matt-Hancock-claims-not-overruling-science-stated-Covid-spread-asymptomatically-single-greatest-regret-says-followed-hunch-despite-emails-showing-told-March-2020-possible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:39:19.000Z" + }, + { + "title": "Sex offender is jailed for five years for attacking three women in half an hour before he was caught by gang of bike riding boys who followed and detained him", + "link": "https://www.dailymail.co.uk/news/article-12810171/sex-offender-jailed-attacking-women-caught-detained.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:31:41 GMT", + "enclosure": { + "length": "3999", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/15/78425497-0-image-a-10_1701357964348.jpg" + }, + "content": "Dylan Makepeace had pleaded guilty at Snaresbrook Crown Court to two counts of assault by beating, sexual assault on a female, intentional strangulation, and Section 20 grievous bodily harm.", + "contentSnippet": "Dylan Makepeace had pleaded guilty at Snaresbrook Crown Court to two counts of assault by beating, sexual assault on a female, intentional strangulation, and Section 20 grievous bodily harm.", + "guid": "https://www.dailymail.co.uk/news/article-12810171/sex-offender-jailed-attacking-women-caught-detained.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:31:41.000Z" + }, + { + "title": "Fresh blow for family of Kfir Bibas as Hamas offer to exchange three hostages' bodies a day after claiming the baby, his brother and mother were killed in Israeli bombardment", + "link": "https://www.dailymail.co.uk/news/article-12809913/Fresh-blow-family-Kfir-Bibas-Hamas-offer-exchange-three-hostages-bodies-day-claiming-baby-brother-mother-killed-Israeli-bombardment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:22:23 GMT", + "enclosure": { + "length": "8820", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78303181-0-Hamas_has_claimed_Kfir_Bibas_a_baby_who_was_snatched_and_taken_i-a-39_1701351811257.jpg" + }, + "content": "The family of the Kfir Bibas, a baby who was snatched and taken into Gaza by Hamas, were met with yet more anguish today after Hamas offered to hand over the bodies of three hostages to Israel.", + "contentSnippet": "The family of the Kfir Bibas, a baby who was snatched and taken into Gaza by Hamas, were met with yet more anguish today after Hamas offered to hand over the bodies of three hostages to Israel.", + "guid": "https://www.dailymail.co.uk/news/article-12809913/Fresh-blow-family-Kfir-Bibas-Hamas-offer-exchange-three-hostages-bodies-day-claiming-baby-brother-mother-killed-Israeli-bombardment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:22:23.000Z" + }, + { + "title": "Dean Sullivan's Brookside co-star Sue Jenkins reveals she was with him on the day he died as she shares a moving tribute: 'It's hard to find words to express my sadness'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12809853/Dean-Sullivans-Brookside-Sue-Jenkins-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:22:07 GMT", + "enclosure": { + "length": "10635", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78423623-0-image-a-92_1701352499085.jpg" + }, + "content": "The actress starred as\u00a0drug dealer Jimmy's long-suffering wife Jackie Corkhill on the soap, and sharing a moving tribute to the actor.", + "contentSnippet": "The actress starred as\u00a0drug dealer Jimmy's long-suffering wife Jackie Corkhill on the soap, and sharing a moving tribute to the actor.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12809853/Dean-Sullivans-Brookside-Sue-Jenkins-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:22:07.000Z" + }, + { + "title": "Mother and elderly ex-serviceman who backed move to place asylum seekers in a Sussex hotel say their car windows were smashed because of their support for refugees", + "link": "https://www.dailymail.co.uk/news/article-12809121/mother-servicemen-asylum-seeker-car-window-smashed-refugee-support.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:15:55 GMT", + "enclosure": { + "length": "9893", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78416633-0-image-m-20_1701348952719.jpg" + }, + "content": "The car attacks appear to have been carried out on Saturday night and Sunday night, with three windows of one car smashed (pictured), while the rear window of another was also destroyed.", + "contentSnippet": "The car attacks appear to have been carried out on Saturday night and Sunday night, with three windows of one car smashed (pictured), while the rear window of another was also destroyed.", + "guid": "https://www.dailymail.co.uk/news/article-12809121/mother-servicemen-asylum-seeker-car-window-smashed-refugee-support.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:15:55.000Z" + }, + { + "title": "Jennifer Lopez, 54, goes naked under a semi-sheer lace red dress to lead A-listers on ELLE's Women In Hollywood cover shoot as she says: 'Women just get sexier as they get older'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12810039/Jennifer-Lopez-54-goes-naked-semi-sheer-lace-red-dress-lead-listers-ELLEs-Women-Hollywood-cover-shoot-says-Women-just-sexier-older.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:11:16 GMT", + "enclosure": { + "length": "9984", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425009-0-image-m-26_1701354698653.jpg" + }, + "content": "Jennifer Lopez has graced the cover of ELLE's\u00a0Women In Hollywood issue and looks stunning in a series of images in which she models some incredibly powerful looks.\u00a0", + "contentSnippet": "Jennifer Lopez has graced the cover of ELLE's\u00a0Women In Hollywood issue and looks stunning in a series of images in which she models some incredibly powerful looks.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12810039/Jennifer-Lopez-54-goes-naked-semi-sheer-lace-red-dress-lead-listers-ELLEs-Women-Hollywood-cover-shoot-says-Women-just-sexier-older.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:11:16.000Z" + }, + { + "title": "Traditional annual Jewish holiday candles lit every year by London council to mark Hanukkah have been cancelled amid fears divisions over the Israel and Palestine conflict would mean they would 'inflame tensions'", + "link": "https://www.dailymail.co.uk/news/article-12809975/Traditional-annual-Jewish-holiday-candles-lit-year-London-council-mark-Hanukkah-cancelled-amid-fears-divisions-Israel-Palestine-conflict-mean-inflame-tensions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:01:56 GMT", + "enclosure": { + "length": "6215", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78424713-0-image-m-13_1701354597478.jpg" + }, + "content": "Havering Council said they took the 'difficult decision' to cancel the traditional menorah instillation outside Havering Town Hall in Romford.", + "contentSnippet": "Havering Council said they took the 'difficult decision' to cancel the traditional menorah instillation outside Havering Town Hall in Romford.", + "guid": "https://www.dailymail.co.uk/news/article-12809975/Traditional-annual-Jewish-holiday-candles-lit-year-London-council-mark-Hanukkah-cancelled-amid-fears-divisions-Israel-Palestine-conflict-mean-inflame-tensions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:01:56.000Z" + }, + { + "title": "Royal family unveil lavish Christmas decorations at Windsor Castle amid Omid Scobie race row", + "link": "https://www.dailymail.co.uk/femail/article-12809775/Royal-Christmas-decorations-Windsor-Castle-Omid-Scobie.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:00:59 GMT", + "enclosure": { + "length": "8474", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421465-0-image-a-81_1701349275893.jpg" + }, + "content": "The Berkshire royal residence, where the Prince and Princess of Wales live with their children George, Charlotte and Louis in Adelaide Cottage, has been transformed.", + "contentSnippet": "The Berkshire royal residence, where the Prince and Princess of Wales live with their children George, Charlotte and Louis in Adelaide Cottage, has been transformed.", + "guid": "https://www.dailymail.co.uk/femail/article-12809775/Royal-Christmas-decorations-Windsor-Castle-Omid-Scobie.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:00:59.000Z" + }, + { + "title": "Ursula von der Leyen 'needs to shut up' about Brexit says Tory deputy chairman Lee Anderson after she urged the younger generation to make Britain rejoin the EU", + "link": "https://www.dailymail.co.uk/news/article-12809191/Ursula-von-der-Leyen-needs-shut-Brexit-says-Tory-deputy-chairman-Lee-Anderson-urged-younger-generation-make-Britain-rejoin-EU.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 15:00:05 GMT", + "enclosure": { + "length": "6483", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/11/78414251-0-image-a-10_1701342671436.jpg" + }, + "content": "The president of the European Commission suggested Britain should look to rejoin the bloc, admitting 'we goofed it up' during\u00a0an interview in Brussels on Tuesday.", + "contentSnippet": "The president of the European Commission suggested Britain should look to rejoin the bloc, admitting 'we goofed it up' during\u00a0an interview in Brussels on Tuesday.", + "guid": "https://www.dailymail.co.uk/news/article-12809191/Ursula-von-der-Leyen-needs-shut-Brexit-says-Tory-deputy-chairman-Lee-Anderson-urged-younger-generation-make-Britain-rejoin-EU.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T15:00:05.000Z" + }, + { + "title": "Harrowing 999 call of dogwalker who found Brianna Ghey's body in park is played to murder trial jury as she tells operator, 'I can describe attackers clearly because I was really suspicious of them'", + "link": "https://www.dailymail.co.uk/news/article-12809525/dogwalker-Brianna-Gheys-body-jury-attackers-suspicious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:58:51 GMT", + "enclosure": { + "length": "10457", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78287683-0-image-m-67_1701347077909.jpg" + }, + "content": "Dogwalker Kathryn Vize was walking in a park in Culcheth, near Warrington, Cheshire when she saw two teenagers stooping over what she soon discovered was Brianna Ghey's body.", + "contentSnippet": "Dogwalker Kathryn Vize was walking in a park in Culcheth, near Warrington, Cheshire when she saw two teenagers stooping over what she soon discovered was Brianna Ghey's body.", + "guid": "https://www.dailymail.co.uk/news/article-12809525/dogwalker-Brianna-Gheys-body-jury-attackers-suspicious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:58:51.000Z" + }, + { + "title": "Kate Middleton and Prince William are all smiles as they welcome the future Queen and King of Sweden to\u00a0Windsor Castle ahead of their\u00a0 night out at the Royal Variety performance amid Omid Scobie race row", + "link": "https://www.dailymail.co.uk/femail/article-12809437/Kate-Middleton-Prince-William-Princess-Victoria-Windsor-Omid-Scobie-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:57:51 GMT", + "enclosure": { + "length": "7433", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78416627-0-image-m-60_1701347156752.jpg" + }, + "content": "The Prince and Princess of Wales welcomed the future Queen and King of Sweden to Windsor Castle this morning, with Kate looking chic in a green midi dress.", + "contentSnippet": "The Prince and Princess of Wales welcomed the future Queen and King of Sweden to Windsor Castle this morning, with Kate looking chic in a green midi dress.", + "guid": "https://www.dailymail.co.uk/femail/article-12809437/Kate-Middleton-Prince-William-Princess-Victoria-Windsor-Omid-Scobie-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:57:51.000Z" + }, + { + "title": "Tributes from world leaders praise Henry Kissinger as a 'giant of history' including China, which hails him as a 'good friend':\u00a0'The world has lost a great diplomat'", + "link": "https://www.dailymail.co.uk/news/article-12809379/Tributes-world-leaders-praise-Henry-Kissinger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:57:07 GMT", + "enclosure": { + "length": "6393", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78421773-0-image-m-39_1701351339489.jpg" + }, + "content": "The news of Kissinger's death on Wednesday prompted messages from officials worldwide, from the UK, France and Germany to Russia and China, praising the former US Secretary of State.", + "contentSnippet": "The news of Kissinger's death on Wednesday prompted messages from officials worldwide, from the UK, France and Germany to Russia and China, praising the former US Secretary of State.", + "guid": "https://www.dailymail.co.uk/news/article-12809379/Tributes-world-leaders-praise-Henry-Kissinger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:57:07.000Z" + }, + { + "title": "Mother who works full-time for a \u00a323,500 salary breaks down in tears as she claims she can barely afford to feed her two children", + "link": "https://www.dailymail.co.uk/femail/article-12806031/mother-time-tears-afford-feed-children.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:46:34 GMT", + "enclosure": { + "length": "10616", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/29/17/78384673-0-image-a-20_1701280262801.jpg" + }, + "content": "Abbie Palmer, a British mother-of-two who works full-time as a customer services manager, broke down as she revealed she can't give her children the Christmas they deserve because money is so tight.", + "contentSnippet": "Abbie Palmer, a British mother-of-two who works full-time as a customer services manager, broke down as she revealed she can't give her children the Christmas they deserve because money is so tight.", + "guid": "https://www.dailymail.co.uk/femail/article-12806031/mother-time-tears-afford-feed-children.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:46:34.000Z" + }, + { + "title": "The death of the middle-class kitchen? Sales of Le Creuset, Aga cookers and Farrow & Ball wallpaper fall sharply as families replace old staples amid cost of living crisis", + "link": "https://www.dailymail.co.uk/news/article-12808861/le-creuset-aga-cookers-farrow-ball-plummet-cost-living.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:43:53 GMT", + "enclosure": { + "length": "8097", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/14/78425401-0-image-m-43_1701355412622.jpg" + }, + "content": "Accounts for firms specialising in premium home products show declines in sales to the end of 2022, with no designer brand seemingly immune to the tightening of British wallets.", + "contentSnippet": "Accounts for firms specialising in premium home products show declines in sales to the end of 2022, with no designer brand seemingly immune to the tightening of British wallets.", + "guid": "https://www.dailymail.co.uk/news/article-12808861/le-creuset-aga-cookers-farrow-ball-plummet-cost-living.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:43:53.000Z" + }, + { + "title": "The UK's 'tallest and fastest roller coaster' is unveiled in spellbinding POV video: 'Hyperia' in Thorpe Park will reach a height of 236ft and travel at 80mph", + "link": "https://www.dailymail.co.uk/travel/article-12804511/The-UKs-tallest-fastest-roller-coaster-unveiled-spellbinding-POV-video-Hyperia-Thorpe-Park-reach-height-236ft-travel-80mph.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:33:49 GMT", + "enclosure": { + "length": "6965", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/29/16/78368855-0-image-a-22_1701276932131.jpg" + }, + "content": "The nerve-shredding CGI video reveals the hair-raising\u00a0twists and turns - and a huge stomach-churning drop with a summit high above the park.", + "contentSnippet": "The nerve-shredding CGI video reveals the hair-raising\u00a0twists and turns - and a huge stomach-churning drop with a summit high above the park.", + "guid": "https://www.dailymail.co.uk/travel/article-12804511/The-UKs-tallest-fastest-roller-coaster-unveiled-spellbinding-POV-video-Hyperia-Thorpe-Park-reach-height-236ft-travel-80mph.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:33:49.000Z" + }, + { + "title": "Cheek sample taken from Gilgo Beach murder suspect's estranged wife on the day he was arrested matches the hairs found on the victims' bodies, DNA tests confirm", + "link": "https://www.dailymail.co.uk/news/article-12809645/Gilgo-Beach-murders-cheek-swab-Rex-Heuermann-wife.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:24:00 GMT", + "enclosure": { + "length": "11123", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78421129-0-image-a-176_1701348848646.jpg" + }, + "content": "Asa Ellerup, 59, provided a cheek swab sample to investigators on the night they arrested Heuermann, 60, for the murders of three sex workers.", + "contentSnippet": "Asa Ellerup, 59, provided a cheek swab sample to investigators on the night they arrested Heuermann, 60, for the murders of three sex workers.", + "guid": "https://www.dailymail.co.uk/news/article-12809645/Gilgo-Beach-murders-cheek-swab-Rex-Heuermann-wife.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:24:00.000Z" + }, + { + "title": "EXCLUSIVE: Britney Spears is 'disappointed' in sister Jamie Lynn for QUITTING I'm A Celebrity - as insiders claim she 'never intended' to stay longer than needed to secure her pay check", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12805945/britney-spears-jamie-lynn-im-celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:13:48 GMT", + "enclosure": { + "length": "10136", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/29/18/78386397-0-image-a-15_1701283569364.jpg" + }, + "content": "Jamie's shock departure was announced in a statement on Wednesday, with show bosses revealing the actress, 32, quit on 'medical grounds,' just days after feeling 'emotionally weak.'", + "contentSnippet": "Jamie's shock departure was announced in a statement on Wednesday, with show bosses revealing the actress, 32, quit on 'medical grounds,' just days after feeling 'emotionally weak.'", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12805945/britney-spears-jamie-lynn-im-celebrity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:13:48.000Z" + }, + { + "title": "Palace 'considers all options' in royal race row stoked by Omid Scobie's book Endgame, sources say with King determined to 'get on with business' as he lands in Dubai for Cop28", + "link": "https://www.dailymail.co.uk/news/article-12808999/palace-race-row-omid-scobie-endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:11:10 GMT", + "enclosure": { + "length": "5941", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/09/78413069-0-image-m-38_1701337803830.jpg" + }, + "content": "Well-placed sources have told the Daily Mail while King Charles is determined to focus on important state business in Dubai, where he is holding bilateral meetings.", + "contentSnippet": "Well-placed sources have told the Daily Mail while King Charles is determined to focus on important state business in Dubai, where he is holding bilateral meetings.", + "guid": "https://www.dailymail.co.uk/news/article-12808999/palace-race-row-omid-scobie-endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:11:10.000Z" + }, + { + "title": "Watch the heroic moment tennis legend sprints over to help ball girl who collapsed while she was being interviewed on TV", + "link": "https://www.dailymail.co.uk/sport/tennis/article-12808775/Watch-heroic-moment-tennis-legend-helps-ball-girl-collapsed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:05:33 GMT", + "enclosure": { + "length": "5069", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/08/78410761-0-image-m-7_1701333187081.jpg" + }, + "content": "Molik, a former world No 8 and two-time grand slam doubles champion, was being unveiled as the new tournament director the Adelaide International when a ball girl collapsed on centre court.", + "contentSnippet": "Molik, a former world No 8 and two-time grand slam doubles champion, was being unveiled as the new tournament director the Adelaide International when a ball girl collapsed on centre court.", + "guid": "https://www.dailymail.co.uk/sport/tennis/article-12808775/Watch-heroic-moment-tennis-legend-helps-ball-girl-collapsed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:05:33.000Z" + }, + { + "title": "The tragic true stories of Shane MacGowan and Kirsty MacColl: The Pogues frontman battled alcoholism and a brain condition after his mother was killed in car crash - while fellow singer died in a speedboat accident days before Christmas", + "link": "https://www.dailymail.co.uk/news/article-12809585/tragic-story-fairytale-new-york-shane-macgowan-kirsty-maccoll.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:04:29 GMT", + "enclosure": { + "length": "6347", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78422549-0-image-m-69_1701350669835.jpg" + }, + "content": "Singer Kirsty MacColl, who duetted with Shane MacGowan in the festive hit, died aged 41 in 2000 after a horrific boating accident while scuba diving in Mexico.", + "contentSnippet": "Singer Kirsty MacColl, who duetted with Shane MacGowan in the festive hit, died aged 41 in 2000 after a horrific boating accident while scuba diving in Mexico.", + "guid": "https://www.dailymail.co.uk/news/article-12809585/tragic-story-fairytale-new-york-shane-macgowan-kirsty-maccoll.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:04:29.000Z" + }, + { + "title": "Shocking moment people smugglers push migrants off powerboat into fast-moving currents near a Spanish beach before speeding off... minutes after four youngsters are 'left to drown'", + "link": "https://www.dailymail.co.uk/news/article-12808917/Shocking-moment-people-smugglers-push-migrants-powerboat-fast-moving-currents-near-Spanish-beach-speeding-leaving-four-youngsters-drown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:04:23 GMT", + "enclosure": { + "length": "8125", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/09/78411719-0-image-a-9_1701337931748.jpg" + }, + "content": "Footage showed the group being forced into a channel of choppy water off the city of Cadiz by the gang on board a high-powered semi-rigid Zodiac -\u00a0 a vessel that is normally used by drug smugglers.", + "contentSnippet": "Footage showed the group being forced into a channel of choppy water off the city of Cadiz by the gang on board a high-powered semi-rigid Zodiac -\u00a0 a vessel that is normally used by drug smugglers.", + "guid": "https://www.dailymail.co.uk/news/article-12808917/Shocking-moment-people-smugglers-push-migrants-powerboat-fast-moving-currents-near-Spanish-beach-speeding-leaving-four-youngsters-drown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:04:23.000Z" + }, + { + "title": "WhatsApp trick lets you set Secret Codes to protect your most private chats - here's how to try it yourself", + "link": "https://www.dailymail.co.uk/sciencetech/article-12809793/WhatsApp-trick-lets-set-Secret-Codes-protect-private-chats-heres-try-yourself.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 14:00:55 GMT", + "enclosure": { + "length": "4866", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78420829-0-image-m-73_1701349357331.jpg" + }, + "content": "WhatsApp already has a Chat Lock feature, but is taking things up a notch, with the launch of new 'Secret Codes'.", + "contentSnippet": "WhatsApp already has a Chat Lock feature, but is taking things up a notch, with the launch of new 'Secret Codes'.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12809793/WhatsApp-trick-lets-set-Secret-Codes-protect-private-chats-heres-try-yourself.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T14:00:55.000Z" + }, + { + "title": "HMP Wandsworth locksmith, 44, who made moulds of three prison keys to sell for \u00a3100,000 so he could start life abroad with colleague is jailed for four years", + "link": "https://www.dailymail.co.uk/news/article-12809521/HMP-Wandsworth-locksmith-44-moulds-three-prison-keys-sell-100-000-start-life-abroad-colleague-jailed-four-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 13:56:05 GMT", + "enclosure": { + "length": "6233", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/76646979-0-Martynov_pleaded_guilty_to_one_count_of_misconduct_in_public_off-a-11_1701345712043.jpg" + }, + "content": "Andrej Martynov of Beckton previously pleaded guilty to one count of misconduct in public office after police found two quick-drying cement moulds, with three key impressions, in his home.", + "contentSnippet": "Andrej Martynov of Beckton previously pleaded guilty to one count of misconduct in public office after police found two quick-drying cement moulds, with three key impressions, in his home.", + "guid": "https://www.dailymail.co.uk/news/article-12809521/HMP-Wandsworth-locksmith-44-moulds-three-prison-keys-sell-100-000-start-life-abroad-colleague-jailed-four-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T13:56:05.000Z" + }, + { + "title": "Princess Beatrice re-wears favourite Self Portrait dress to support her sister Princess Eugenie at her anti-slavery charity's first Winter Gala", + "link": "https://www.dailymail.co.uk/femail/article-12808753/Princess-Beatrice-wears-favourite-Self-Potrait-dress-support-sister-Princess-Eugenie-anti-slavery-charitys-Winter-Gala.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 13:55:04 GMT", + "enclosure": { + "length": "9970", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/08/78411361-0-image-a-20_1701334365658.jpg" + }, + "content": "The royal, 35, perfected winter glamour, and donned a black velvet belted suit jacket paired with a flowy tulle skirt to London 's\u00a0Battersea Arts Centre.", + "contentSnippet": "The royal, 35, perfected winter glamour, and donned a black velvet belted suit jacket paired with a flowy tulle skirt to London 's\u00a0Battersea Arts Centre.", + "guid": "https://www.dailymail.co.uk/femail/article-12808753/Princess-Beatrice-wears-favourite-Self-Potrait-dress-support-sister-Princess-Eugenie-anti-slavery-charitys-Winter-Gala.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T13:55:04.000Z" + }, + { + "title": "The loving family behind Shane MacGowan: The Pogues' frontman - who lost his mother to a horrific New Year's Day car crash in 2017 - owed his career to his relatives, including his 'muse' wife, loving sister and the 'hero' uncle who inspired him", + "link": "https://www.dailymail.co.uk/news/article-12809683/The-loving-family-Shane-MacGowan-Pogues-frontman-lost-mother-horrific-New-Years-Day-car-crash-2017-owed-career-relatives-including-muse-wife-loving-sister-hero-uncle-inspired-him.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 13:52:08 GMT", + "enclosure": { + "length": "9852", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/13/78422035-0-image-a-11_1701350154676.jpg" + }, + "content": "The Pogues frontman died 'peacefully' this morning with his music journalist wife Victoria Mary Clarke and family by his side.", + "contentSnippet": "The Pogues frontman died 'peacefully' this morning with his music journalist wife Victoria Mary Clarke and family by his side.", + "guid": "https://www.dailymail.co.uk/news/article-12809683/The-loving-family-Shane-MacGowan-Pogues-frontman-lost-mother-horrific-New-Years-Day-car-crash-2017-owed-career-relatives-including-muse-wife-loving-sister-hero-uncle-inspired-him.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T13:52:08.000Z" + }, + { + "title": "Bookies slash odds on The Pogues being the Christmas Number One single - as fans call for Fairytale Of New York to top the festive charts in tribute to Shane MacGowan", + "link": "https://www.dailymail.co.uk/news/article-12809711/bookies-odds-pogues-christmas-number-one-shane-macgowan-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 13:40:50 GMT", + "enclosure": { + "length": "7070", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78109389-0-image-a-6_1701348112786.jpg" + }, + "content": "Fairytale of New York was already the favourite to hit number one as fans rallied around the Pogues frontman during his fight with viral encephalitis, a life-threatening condition affecting the brain.", + "contentSnippet": "Fairytale of New York was already the favourite to hit number one as fans rallied around the Pogues frontman during his fight with viral encephalitis, a life-threatening condition affecting the brain.", + "guid": "https://www.dailymail.co.uk/news/article-12809711/bookies-odds-pogues-christmas-number-one-shane-macgowan-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T13:40:50.000Z" + }, + { + "title": "I've got an interest-only mortgage - and no way to pay it off: LUNCH MONEY", + "link": "https://www.dailymail.co.uk/money/lunchmoney/article-12809751/Ive-got-mortgage-no-way-pay-LUNCH-MONEY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 13:23:27 GMT", + "enclosure": { + "length": "5206", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/12/78421307-0-image-m-9_1701349011246.jpg" + }, + "content": "We look how bad the interest-only crunch can be for borrowers, how big a problem this is and what people can do. Plus, greedflation and can the gold price keep rising?", + "contentSnippet": "We look how bad the interest-only crunch can be for borrowers, how big a problem this is and what people can do. Plus, greedflation and can the gold price keep rising?", + "guid": "https://www.dailymail.co.uk/money/lunchmoney/article-12809751/Ive-got-mortgage-no-way-pay-LUNCH-MONEY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T13:23:27.000Z" + }, + { + "title": "King Charles will warn world leaders 'the Earth does not belong to us' and call for nations to work together to battle climate change in his speech at the Cop28 summit in Dubai today", + "link": "https://www.dailymail.co.uk/news/article-12812051/King-Charles-warn-world-leaders-Earth-does-not-belong-call-nations-work-battle-climate-change-speech-Cop28-summit-Dubai-today.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:28:37 GMT", + "enclosure": { + "length": "12284", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/23/78446567-0-image-a-79_1701385742557.jpg" + }, + "content": "King Charles is the only foreign head of state who has been invited to speak at the climate action meeting of global leaders, in honour of his decades of work in the environmental field.", + "contentSnippet": "King Charles is the only foreign head of state who has been invited to speak at the climate action meeting of global leaders, in honour of his decades of work in the environmental field.", + "guid": "https://www.dailymail.co.uk/news/article-12812051/King-Charles-warn-world-leaders-Earth-does-not-belong-call-nations-work-battle-climate-change-speech-Cop28-summit-Dubai-today.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:28:37.000Z" + }, + { + "title": "Brazen Omid Scobie REFUSES to apologise to the two senior 'racist royals' named in his discredited book: 'Frustrated' author slams 'irresponsible people' for repeating the identities - which BOTH Endgame's Dutch translators insist WERE in the manuscript", + "link": "https://www.dailymail.co.uk/news/article-12812097/Omid-Scobie-REFUSES-apologise-two-senior-royals-book-accused-racist-tense-BBC-interview-Dutch-translator-Endgame-confirms-two-names-manuscript.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:17:24 GMT", + "enclosure": { + "length": "9248", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78449015-0-image-a-21_1701390925733.jpg" + }, + "content": "The royal author said that the book that he 'was extremely proud of' has been 'completely overshadowed by an event that's caused me a lot of frustration'.", + "contentSnippet": "The royal author said that the book that he 'was extremely proud of' has been 'completely overshadowed by an event that's caused me a lot of frustration'.", + "guid": "https://www.dailymail.co.uk/news/article-12812097/Omid-Scobie-REFUSES-apologise-two-senior-royals-book-accused-racist-tense-BBC-interview-Dutch-translator-Endgame-confirms-two-names-manuscript.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:17:24.000Z" + }, + { + "title": "EXCLUSIVE: Chris Kamara on the speech condition that stole his voice and how he's 'got his smile back' after fearing he wouldn't recognise his own family... now he's bouncing back and overjoyed to drive Jeff Stelling mad again!", + "link": "https://www.dailymail.co.uk/sport/football/article-12811465/Chris-Kamara-speech-condition-stole-voice-hes-got-smile-fearing-wouldnt-recognise-family-hes-bouncing-overjoyed-drive-Jeff-Stelling-mad-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:17:52 GMT", + "enclosure": { + "length": "10276", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444429-0-image-a-28_1701382074045.jpg" + }, + "content": "EXCLUSIVE INTERVIEW: Kamara chuckling away like a happy man - like the Kamara we remember. The one we all know as Kammy. But it was never a persona. It was him.", + "contentSnippet": "EXCLUSIVE INTERVIEW: Kamara chuckling away like a happy man - like the Kamara we remember. The one we all know as Kammy. But it was never a persona. It was him.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12811465/Chris-Kamara-speech-condition-stole-voice-hes-got-smile-fearing-wouldnt-recognise-family-hes-bouncing-overjoyed-drive-Jeff-Stelling-mad-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:17:52.000Z" + }, + { + "title": "Spanish amateur footballer faces calls for a lifetime ban after shocking unprovoked violent assault on opponent during Catalan fourth division match", + "link": "https://www.dailymail.co.uk/sport/football/article-12811613/Spanish-amateur-footballer-faces-calls-lifetime-ban-shocking-unprovoked-violent-assault-opponent-Catalan-fourth-division-match.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:09:28 GMT", + "enclosure": { + "length": "6736", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443675-0-image-a-4_1701380847955.jpg" + }, + "content": "NATALIA PENZA: The striker, identified locally as Marc Marquez, is said to have escaped punishment during the game because the ref didn't see him lash out at his opponent.", + "contentSnippet": "NATALIA PENZA: The striker, identified locally as Marc Marquez, is said to have escaped punishment during the game because the ref didn't see him lash out at his opponent.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12811613/Spanish-amateur-footballer-faces-calls-lifetime-ban-shocking-unprovoked-violent-assault-opponent-Catalan-fourth-division-match.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:09:28.000Z" + }, + { + "title": "Horoscope today: Daily guide to what the stars have in store for YOU - December 1, 2023", + "link": "https://www.dailymail.co.uk/femail/article-12810739/Horoscope-today-Daily-December-1.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:28:44 GMT", + "enclosure": { + "length": "7766", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444437-0-image-a-42_1701382143604.jpg" + }, + "content": "Today Oscar Cainer tells Geminis that in order to get to know someone they have to 'winter and summer them' - spend enough time with them to see them at their worst/most stressed.", + "contentSnippet": "Today Oscar Cainer tells Geminis that in order to get to know someone they have to 'winter and summer them' - spend enough time with them to see them at their worst/most stressed.", + "guid": "https://www.dailymail.co.uk/femail/article-12810739/Horoscope-today-Daily-December-1.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:28:44.000Z" + }, + { + "title": "RICHARD KAY: There's a sense of shock inside Palace circles after two royals are publicly identified as the supposed 'racists' in Omid Scobie's book. The Royal Family look like they're always one step behind events", + "link": "https://www.dailymail.co.uk/debate/article-12811893/shock-palace-Omid-Scobie-Royal-Family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:27:59 GMT", + "enclosure": { + "length": "6352", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444655-0-image-m-147_1701382840770.jpg" + }, + "content": "RICHARD KAY: Within Palace circles there was a sense of shock at events, along with some scepticism at the competing accounts of who was responsible.", + "contentSnippet": "RICHARD KAY: Within Palace circles there was a sense of shock at events, along with some scepticism at the competing accounts of who was responsible.", + "guid": "https://www.dailymail.co.uk/debate/article-12811893/shock-palace-Omid-Scobie-Royal-Family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:27:59.000Z" + }, + { + "title": "I'm A Celeb's Josie Gibson breaks down in tears for the first time as she quits trial after being left 'petrified' by huge spiders crawling near her face", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811703/im-celeb-josie-gibson-breaks-bushtucker-trial-spiders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:52:06 GMT", + "enclosure": { + "length": "8970", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448705-0-image-m-40_1701390299864.jpg" + }, + "content": "The This Morning star was surrounded by huge spiders by her face - after she was voted to receive the eight-legged critter by the public.", + "contentSnippet": "The This Morning star was surrounded by huge spiders by her face - after she was voted to receive the eight-legged critter by the public.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811703/im-celeb-josie-gibson-breaks-bushtucker-trial-spiders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:52:06.000Z" + }, + { + "title": "Culture Secretary Lucy Frazer steps in amid 'concerns' over the proposed sale of The Telegraph and Spectator to Abu Dhabi", + "link": "https://www.dailymail.co.uk/news/article-12812281/Culture-Secretary-Lucy-Frazer-intervenes-Telegraph-takeover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:31:05 GMT", + "enclosure": { + "length": "9970", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448353-0-image-a-152_1701389645914.jpg" + }, + "content": "Lucy Frazer ordered the media watchdog to investigate whether the controversial deal risked 'the need for accurate presentation of news and free expression of opinion in newspapers'.", + "contentSnippet": "Lucy Frazer ordered the media watchdog to investigate whether the controversial deal risked 'the need for accurate presentation of news and free expression of opinion in newspapers'.", + "guid": "https://www.dailymail.co.uk/news/article-12812281/Culture-Secretary-Lucy-Frazer-intervenes-Telegraph-takeover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:31:05.000Z" + }, + { + "title": "I'm A Celeb viewers are left yawning as Tony Bellew gives a very long-winded explanation of meeting his wife Rachael in four-minute-long monologue", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811871/im-celeb-tony-bellew-boring-four-minute-story-wife-rachel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:46:27 GMT", + "enclosure": { + "length": "10007", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/23/78446651-0-image-a-26_1701385803428.jpg" + }, + "content": "The former professional boxer, who celebrated his 41st birthday, told JLS's Marvin Humes and Made In Chelsea star Sam Thompson about how he and Rachael Roberts got together.", + "contentSnippet": "The former professional boxer, who celebrated his 41st birthday, told JLS's Marvin Humes and Made In Chelsea star Sam Thompson about how he and Rachael Roberts got together.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811871/im-celeb-tony-bellew-boring-four-minute-story-wife-rachel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:46:27.000Z" + }, + { + "title": "Biden\u00a0FINALLY releases a statement on Henry Kissinger - 20 hours after his death: President says they 'often disagreed strongly' but praises his 'fierce intellect' and 'strategic focus' - after they first met in the 1970s", + "link": "https://www.dailymail.co.uk/news/article-12811989/Biden-FINALLY-releases-statement-Henry-Kissingers-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:33:49 GMT", + "enclosure": { + "length": "9955", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448901-0-image-a-12_1701390746594.jpg" + }, + "content": "President Joe Biden finally put out a statement offering condolences for Henry Kissinger, 20 hours after the death of the 100-year-old American diplomat.", + "contentSnippet": "President Joe Biden finally put out a statement offering condolences for Henry Kissinger, 20 hours after the death of the 100-year-old American diplomat.", + "guid": "https://www.dailymail.co.uk/news/article-12811989/Biden-FINALLY-releases-statement-Henry-Kissingers-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:33:49.000Z" + }, + { + "title": "I'm A Celeb fans are disgusted as Sam Thompson, Tony Bellew and Nick Pickard strip off for a swim in the 'dirty' creek: 'Isn't that where they wash the pans!'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12811829/Im-Celeb-fans-disgusted-Sam-Thompson-Tony-Bellew-Nick-Pickard-strip-swim-dirty-creek-Isnt-wash-pans.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:12:05 GMT", + "enclosure": { + "length": "10184", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/23/78446573-0-image-m-64_1701385525203.jpg" + }, + "content": "ITV viewers are left concerned as Sam Thompson , Tony Bellew and Nick Pickard go swimming in the creek\u00a0on Thursday night's I'm A Celebrity ...Get Me Out Of Here!", + "contentSnippet": "ITV viewers are left concerned as Sam Thompson , Tony Bellew and Nick Pickard go swimming in the creek\u00a0on Thursday night's I'm A Celebrity ...Get Me Out Of Here!", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12811829/Im-Celeb-fans-disgusted-Sam-Thompson-Tony-Bellew-Nick-Pickard-strip-swim-dirty-creek-Isnt-wash-pans.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:12:05.000Z" + }, + { + "title": "Why I refuse to cook meals for my son's rude girlfriend even though they've been together for six years", + "link": "https://www.dailymail.co.uk/femail/real-life/article-12808235/Reddit-mum-refuses-cook-son-girlfriend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:44:55 GMT", + "enclosure": { + "length": "6752", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78442091-0-image-m-11_1701383459442.jpg" + }, + "content": "A fed-up mum has asked if she is 'in the wrong' for refusing to cook for her son and his 'picky' girlfriend when they visit.", + "contentSnippet": "A fed-up mum has asked if she is 'in the wrong' for refusing to cook for her son and his 'picky' girlfriend when they visit.", + "guid": "https://www.dailymail.co.uk/femail/real-life/article-12808235/Reddit-mum-refuses-cook-son-girlfriend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:44:55.000Z" + }, + { + "title": "HS2 boss called a village pub affected by the rail line a 's****y little pub that nobody wants to drink in anyway', MPs hear", + "link": "https://www.dailymail.co.uk/news/article-12812007/HS2-boss-called-village-pub-affected-rail-line-s-y-little-pub-wants-drink-MPs-hear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:38:23 GMT", + "enclosure": { + "length": "6413", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78445779-0-image-a-59_1701384355639.jpg" + }, + "content": "Mark Thurston, who stood down as chief executive in September, made the private comments about the Prince of Wales pub in [the village] Steeple Claydon", + "contentSnippet": "Mark Thurston, who stood down as chief executive in September, made the private comments about the Prince of Wales pub in [the village] Steeple Claydon", + "guid": "https://www.dailymail.co.uk/news/article-12812007/HS2-boss-called-village-pub-affected-rail-line-s-y-little-pub-wants-drink-MPs-hear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:38:23.000Z" + }, + { + "title": "Inside the life of Shane MacGowan: The Pogues rocker who was born in Tunbridge Wells and went to prep school in Westminster, but had his first Guiness at four, and got drunk on whiskey at eight, leaving all who loved him asking - how did he make it to 65!", + "link": "https://www.dailymail.co.uk/news/article-12811899/Shane-MacGowan-born-Tunbridge-Wells-went-prep-school-Westminster-Guinness-four-got-drunk-whiskey-eight-Thats-loved-asking-did-make-65-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:17:56 GMT", + "enclosure": { + "length": "10802", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444121-0-image-a-10_1701382886858.jpg" + }, + "content": "CHRISTOPHER STEVENS: Shane MacGowan, the ravaged, foul-mouthed, broken-toothed rock star who co-wrote the best-loved festive karaoke song of all time, has died aged 65.", + "contentSnippet": "CHRISTOPHER STEVENS: Shane MacGowan, the ravaged, foul-mouthed, broken-toothed rock star who co-wrote the best-loved festive karaoke song of all time, has died aged 65.", + "guid": "https://www.dailymail.co.uk/news/article-12811899/Shane-MacGowan-born-Tunbridge-Wells-went-prep-school-Westminster-Guinness-four-got-drunk-whiskey-eight-Thats-loved-asking-did-make-65-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:17:56.000Z" + }, + { + "title": "TOM UTLEY: Who wants to live to 150 in this mad world in which killjoys seek to ban all pleasure and police our thoughts?", + "link": "https://www.dailymail.co.uk/debate/article-12811937/TOM-UTLEY-wants-live-150-mad-world-killjoys-seek-ban-pleasure-police-thoughts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:13:48 GMT", + "enclosure": { + "length": "7189", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444709-0-image-a-51_1701383487697.jpg" + }, + "content": "TOM UTLEY: After a lifetime spent ignoring warnings about the lethal dangers of my chain-smoking, heavy drinking and love of unhealthy foods, I never expected to reach even 70.", + "contentSnippet": "TOM UTLEY: After a lifetime spent ignoring warnings about the lethal dangers of my chain-smoking, heavy drinking and love of unhealthy foods, I never expected to reach even 70.", + "guid": "https://www.dailymail.co.uk/debate/article-12811937/TOM-UTLEY-wants-live-150-mad-world-killjoys-seek-ban-pleasure-police-thoughts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:13:48.000Z" + }, + { + "title": "King Charles will never strip Harry and Meghan of their royal titles despite calls to do so as he would not want to 'humiliate' the Sussexes, sources say", + "link": "https://www.dailymail.co.uk/news/article-12811969/King-Charles-never-strip-Harry-Meghan-royal-titles-despite-calls-not-want-humiliate-Sussexes-sources-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 23:11:12 GMT", + "enclosure": { + "length": "10903", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78445607-0-image-a-27_1701384051956.jpg" + }, + "content": "King Charles will never strip the Sussexes of royal titles despite the continuing heartache they are causing to the Royal Family. Sources have said it is something he refuses to even contemplate.", + "contentSnippet": "King Charles will never strip the Sussexes of royal titles despite the continuing heartache they are causing to the Royal Family. Sources have said it is something he refuses to even contemplate.", + "guid": "https://www.dailymail.co.uk/news/article-12811969/King-Charles-never-strip-Harry-Meghan-royal-titles-despite-calls-not-want-humiliate-Sussexes-sources-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T23:11:12.000Z" + }, + { + "title": "Kate Middleton and Prince William's red carpet display is 'emotionally revealing' with the Princess of Wales appearing 'vulnerable', body language expert claims - amid fallout from Omid Scobie race row", + "link": "https://www.dailymail.co.uk/femail/article-12811707/Kate-Middleton-Prince-Williams-red-carpet-display-emotionally-revealing-Princess-Wales-appearing-vulnerable-body-language-expert-claims-amid-fallout-Omid-Scobie-race-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:53:28 GMT", + "enclosure": { + "length": "10440", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443957-0-image-a-11_1701381243831.jpg" + }, + "content": "Judi James told FEMAIL the couple's body language suggests William acted as a support for Kate as they arrived at the Royal Albert Hall in Kensington this evening.", + "contentSnippet": "Judi James told FEMAIL the couple's body language suggests William acted as a support for Kate as they arrived at the Royal Albert Hall in Kensington this evening.", + "guid": "https://www.dailymail.co.uk/femail/article-12811707/Kate-Middleton-Prince-Williams-red-carpet-display-emotionally-revealing-Princess-Wales-appearing-vulnerable-body-language-expert-claims-amid-fallout-Omid-Scobie-race-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:53:28.000Z" + }, + { + "title": "Conor McGregor welcomes his fourth child with wife Dee Devlin... as MMA star shares his delight over newborn son: '8.1lbs of prime Irish double champion beef'", + "link": "https://www.dailymail.co.uk/sport/mma/article-12811727/Conor-McGregor-welcomes-fourth-child-boy-Dee-Devlin-MMA-UFC.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:51:41 GMT", + "enclosure": { + "length": "11421", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/22/78444829-0-image-a-4_1701382843083.jpg" + }, + "content": "The 34-year-old, former featherweight and lightweight champion tweeted, that both, mother and child are 'doing amazing'. He also shared a couple of snaps of his child's birth on Instagram.", + "contentSnippet": "The 34-year-old, former featherweight and lightweight champion tweeted, that both, mother and child are 'doing amazing'. He also shared a couple of snaps of his child's birth on Instagram.", + "guid": "https://www.dailymail.co.uk/sport/mma/article-12811727/Conor-McGregor-welcomes-fourth-child-boy-Dee-Devlin-MMA-UFC.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:51:41.000Z" + }, + { + "title": "Mary Berry goes back to basics, while Jamie Oliver gets tasty in record time - and Nadiya spices up your life in our selection of 2023's best cookbooks", + "link": "https://www.dailymail.co.uk/home/books/article-12811425/Mary-Berry-goes-basics-Jamie-Oliver-gets-tasty-record-time-Nadiya-spices-life-selection-2023s-best-cookbooks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:17:45 GMT", + "enclosure": { + "length": "11604", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442511-0-image-a-15_1701381454857.jpg" + }, + "content": "Dame Mary's latest book is full of useful time-saving tips, tricks and shortcuts to make your life easier. Her food is elegant yet uncomplicated.", + "contentSnippet": "Dame Mary's latest book is full of useful time-saving tips, tricks and shortcuts to make your life easier. Her food is elegant yet uncomplicated.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811425/Mary-Berry-goes-basics-Jamie-Oliver-gets-tasty-record-time-Nadiya-spices-life-selection-2023s-best-cookbooks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:17:45.000Z" + }, + { + "title": "SCI-FI AND FANTASY", + "link": "https://www.dailymail.co.uk/home/books/article-12811645/SCI-FI-FANTASY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:06:41 GMT", + "enclosure": { + "length": "10500", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442031-0-image-m-22_1701378805226.jpg" + }, + "content": "After the massive reset at the end of Fourth Wing, Violet (aka Violence) Sorrengail is still flying high on her mighty - and mightily sarcastic - dragon.", + "contentSnippet": "After the massive reset at the end of Fourth Wing, Violet (aka Violence) Sorrengail is still flying high on her mighty - and mightily sarcastic - dragon.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811645/SCI-FI-FANTASY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:06:41.000Z" + }, + { + "title": "HISTORICAL", + "link": "https://www.dailymail.co.uk/home/books/article-12811689/HISTORICAL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:06:24 GMT", + "enclosure": { + "length": "5730", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442315-0-image-m-23_1701379255497.jpg" + }, + "content": "A smash-your-heart-to-smithereens debut from Alice Winn as she tells the story of two schoolboy soldiers, who attempt to survive the slaughter of the trenches and keep their secret love alive.", + "contentSnippet": "A smash-your-heart-to-smithereens debut from Alice Winn as she tells the story of two schoolboy soldiers, who attempt to survive the slaughter of the trenches and keep their secret love alive.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811689/HISTORICAL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:06:24.000Z" + }, + { + "title": "CONTEMPORARY", + "link": "https://www.dailymail.co.uk/home/books/article-12811693/CONTEMPORARY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:06:10 GMT", + "enclosure": { + "length": "6788", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442573-0-image-m-20_1701379663518.jpg" + }, + "content": "A new book from Cooper is huge news, especially when it stars iconic protagonist Rupert Campbell-Black. Now 60, Rupert buys the rubbish local football club.", + "contentSnippet": "A new book from Cooper is huge news, especially when it stars iconic protagonist Rupert Campbell-Black. Now 60, Rupert buys the rubbish local football club.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811693/CONTEMPORARY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:06:10.000Z" + }, + { + "title": "CLASSIC CRIME", + "link": "https://www.dailymail.co.uk/home/books/article-12811769/CLASSIC-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:05:59 GMT", + "enclosure": { + "length": "5674", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443285-0-image-m-39_1701380507191.jpg" + }, + "content": "In le Carr\u00e9's first novel we are introduced to George Smiley, whose shambolic life belies a formidable intelligence. Having cleared a civil servant for security, the man is found dead.", + "contentSnippet": "In le Carr\u00e9's first novel we are introduced to George Smiley, whose shambolic life belies a formidable intelligence. Having cleared a civil servant for security, the man is found dead.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811769/CLASSIC-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:05:59.000Z" + }, + { + "title": "SHORT STORIES", + "link": "https://www.dailymail.co.uk/home/books/article-12811785/SHORT-STORIES.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:05:51 GMT", + "enclosure": { + "length": "4068", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443615-0-image-a-10_1701380910439.jpg" + }, + "content": "Lichens, tiny insects, solitary reading, train journeys, overheard conversations, dissolving friendships and matrimonial irritations make up Davis's delicious short stories.", + "contentSnippet": "Lichens, tiny insects, solitary reading, train journeys, overheard conversations, dissolving friendships and matrimonial irritations make up Davis's delicious short stories.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811785/SHORT-STORIES.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:05:51.000Z" + }, + { + "title": "DEBUTS", + "link": "https://www.dailymail.co.uk/home/books/article-12811803/DEBUTS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:05:45 GMT", + "enclosure": { + "length": "5131", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443923-0-image-m-61_1701381263811.jpg" + }, + "content": "Hilarious and heart-breaking, this stars Sophie who works in a pub and Chris who likes to drink in them. He turns up in Sophie's bar and she can't believe her eyes - they have serious history.", + "contentSnippet": "Hilarious and heart-breaking, this stars Sophie who works in a pub and Chris who likes to drink in them. He turns up in Sophie's bar and she can't believe her eyes - they have serious history.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811803/DEBUTS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:05:45.000Z" + }, + { + "title": "POPULAR", + "link": "https://www.dailymail.co.uk/home/books/article-12811745/POPULAR.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:05:37 GMT", + "enclosure": { + "length": "7713", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78442937-0-image-m-78_1701381402640.jpg" + }, + "content": "I devoured this Hollywood thriller, whose heroine Mae is in 'black bag' PR. She cleans up bad celebrity stories, and boy are they terrible. Teen actor deaths, bent politicians, sex, drugs, murder.", + "contentSnippet": "I devoured this Hollywood thriller, whose heroine Mae is in 'black bag' PR. She cleans up bad celebrity stories, and boy are they terrible. Teen actor deaths, bent politicians, sex, drugs, murder.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811745/POPULAR.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:05:37.000Z" + }, + { + "title": "THRILLERS AND CRIME", + "link": "https://www.dailymail.co.uk/home/books/article-12811595/THRILLERS-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:05:18 GMT", + "enclosure": { + "length": "8117", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78441885-0-image-m-12_1701378299837.jpg" + }, + "content": "Retired LAPD cop turned private investigator Harry Bosch teams up with his half-brother, the Lincoln Lawyer Mickey Haller, to defend a woman imprisoned for killing her ex-husband.", + "contentSnippet": "Retired LAPD cop turned private investigator Harry Bosch teams up with his half-brother, the Lincoln Lawyer Mickey Haller, to defend a woman imprisoned for killing her ex-husband.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811595/THRILLERS-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:05:18.000Z" + }, + { + "title": "LITERARY FICTION", + "link": "https://www.dailymail.co.uk/home/books/article-12811569/LITERARY-FICTION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:05:11 GMT", + "enclosure": { + "length": "7451", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78441183-0-image-m-29_1701377381407.jpg" + }, + "content": "One of our most consistently surprising novelists rips up the rulebook again, taking us into space in the company of six astronauts circling Earth on the \u00adInternational Space Station.", + "contentSnippet": "One of our most consistently surprising novelists rips up the rulebook again, taking us into space in the company of six astronauts circling Earth on the \u00adInternational Space Station.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811569/LITERARY-FICTION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:05:11.000Z" + }, + { + "title": "POETRY", + "link": "https://www.dailymail.co.uk/home/books/article-12811455/POETRY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:05:03 GMT", + "enclosure": { + "length": "5380", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78440525-0-image-m-21_1701376405276.jpg" + }, + "content": "The last in William Sieghart's brilliant Poetry Pharmacy trilogy is full of wisdom and will bring comfort to anyone who yearns to soothe a troubled heart and learn more about poetry.", + "contentSnippet": "The last in William Sieghart's brilliant Poetry Pharmacy trilogy is full of wisdom and will bring comfort to anyone who yearns to soothe a troubled heart and learn more about poetry.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811455/POETRY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:05:03.000Z" + }, + { + "title": "GARDENING:\u00a0If you're a gardener you'll really dig these", + "link": "https://www.dailymail.co.uk/home/books/article-12811453/GARDENING-youre-gardener-youll-really-dig-these.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 22:04:55 GMT", + "enclosure": { + "length": "5345", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/20/78439747-0-image-m-45_1701375615531.jpg" + }, + "content": "With weather patterns getting more extreme, many gardeners are having to rethink their outdoor spaces. Designer Tom Massey offers lots of encouraging, practical advice.", + "contentSnippet": "With weather patterns getting more extreme, many gardeners are having to rethink their outdoor spaces. Designer Tom Massey offers lots of encouraging, practical advice.", + "guid": "https://www.dailymail.co.uk/home/books/article-12811453/GARDENING-youre-gardener-youll-really-dig-these.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T22:04:55.000Z" + }, + { + "title": "Crown Princess Victoria of Sweden stuns in black Toteme gown as she and Prince Daniel join Kate and William at the Royal Variety Performance", + "link": "https://www.dailymail.co.uk/femail/article-12811577/Crown-Princess-Victoria-Sweden-stuns-black-Toteme-gown-Prince-Daniel-join-Kate-William-Royal-Variety-Performance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 30 Nov 2023 21:54:29 GMT", + "enclosure": { + "length": "9118", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/30/21/78443413-0-image-a-84_1701380570772.jpg" + }, + "content": "The Duke and Duchess of V\u00e4sterg\u00f6tland appeared in high spirits as they arrived at the\u00a0Royal Albert Hall in London this evening. The eldest child of King Carl XVI Gustaf , 46, opted for a sophisticated ensemble.", + "contentSnippet": "The Duke and Duchess of V\u00e4sterg\u00f6tland appeared in high spirits as they arrived at the\u00a0Royal Albert Hall in London this evening. The eldest child of King Carl XVI Gustaf , 46, opted for a sophisticated ensemble.", + "guid": "https://www.dailymail.co.uk/femail/article-12811577/Crown-Princess-Victoria-Sweden-stuns-black-Toteme-gown-Prince-Daniel-join-Kate-William-Royal-Variety-Performance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-30T21:54:29.000Z" + }, + { + "title": "There's a moral void at the heart of Omid Scobie's laughably partisan book - and the entire Sussex industrial grievance complex: JAN MOIR reviews Endgame", + "link": "https://www.dailymail.co.uk/home/books/article-12807069/Omid-Scobie-book-JAN-MOIR-reviews-Endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 29 Nov 2023 23:30:14 GMT", + "enclosure": { + "length": "9575", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/29/22/78394585-0-image-a-62_1701296628464.jpg" + }, + "content": "JAN MOIR: Within days of its publication, Endgame has already been described as a poisonous exercise in vengeance and, believe me, that is almost one of the positives.", + "contentSnippet": "JAN MOIR: Within days of its publication, Endgame has already been described as a poisonous exercise in vengeance and, believe me, that is almost one of the positives.", + "guid": "https://www.dailymail.co.uk/home/books/article-12807069/Omid-Scobie-book-JAN-MOIR-reviews-Endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-29T23:30:14.000Z" + }, + { + "title": "Buy a bungalow for 50p: Rundown homes made of corrugated tin are for sale in mining village priced at \u00a31 for the pair - and seller says they'd make a perfect AirBnB", + "link": "https://www.dailymail.co.uk/news/article-12804369/Rundown-homes-corrugated-tin-sale-mining-village-AirBnB.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 29 Nov 2023 11:58:45 GMT", + "enclosure": { + "length": "11738", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/29/11/78368387-0-image-a-35_1701256949189.jpg" + }, + "content": "The two rundown homes made of brick-coloured corrugated sheets, featuring large bay windows, in Crumlin near Blackwood in Gwent, are in a 'poor state of repair' according to the listing.", + "contentSnippet": "The two rundown homes made of brick-coloured corrugated sheets, featuring large bay windows, in Crumlin near Blackwood in Gwent, are in a 'poor state of repair' according to the listing.", + "guid": "https://www.dailymail.co.uk/news/article-12804369/Rundown-homes-corrugated-tin-sale-mining-village-AirBnB.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-29T11:58:45.000Z" + }, + { + "title": "A view with a room! Tiny beach shack no bigger than a garage which overlooks picturesque Welsh beach dubbed 'Cheshire by the Sea' goes on the market for \u00a3185,000", + "link": "https://www.dailymail.co.uk/property/article-12795511/A-view-room-Tiny-beach-shack-no-bigger-garage-overlooks-picturesque-Welsh-beach-dubbed-Cheshire-Sea-goes-market-185-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 27 Nov 2023 13:07:25 GMT", + "enclosure": { + "length": "7163", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/27/12/78277519-0-image-m-28_1701089092912.jpg" + }, + "content": "The tiny beach shack is a simple corrugated hut but overlooks the sandy beach in the village of Abersoch, North Wales - which has been dubbed 'Cheshire by the Sea' due to the rise of second homeowning.", + "contentSnippet": "The tiny beach shack is a simple corrugated hut but overlooks the sandy beach in the village of Abersoch, North Wales - which has been dubbed 'Cheshire by the Sea' due to the rise of second homeowning.", + "guid": "https://www.dailymail.co.uk/property/article-12795511/A-view-room-Tiny-beach-shack-no-bigger-garage-overlooks-picturesque-Welsh-beach-dubbed-Cheshire-Sea-goes-market-185-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-27T13:07:25.000Z" + }, + { + "title": "Calling all Mail Commenters - we want to know what YOU think!", + "link": "https://www.dailymail.co.uk/home/article-12795537/Mail-Commenters-survey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 27 Nov 2023 12:12:13 GMT", + "enclosure": { + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/i/pix/m_logo_154x115px.png" + }, + "content": "Thank you for being a valued member of the Mail Community. Your opinion really matters to us and we would like to invite you to participate in a short survey, to help us improve.", + "contentSnippet": "Thank you for being a valued member of the Mail Community. Your opinion really matters to us and we would like to invite you to participate in a short survey, to help us improve.", + "guid": "https://www.dailymail.co.uk/home/article-12795537/Mail-Commenters-survey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-27T12:12:13.000Z" + }, + { + "title": "Shopping Finder Charlotte Tilbury Mystery Box: Terms and conditions", + "link": "https://www.dailymail.co.uk/home/article-12792755/Shopping-Finder-Charlotte-Tilbury-Mystery-Box-Terms-conditions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 27 Nov 2023 00:11:47 GMT", + "enclosure": { + "length": "6617", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/26/15/78250117-0-image-a-4_1701013575469.jpg" + }, + "content": "This prize draw (the \"Promotion\") is only open to UK residents (excluding Northern Ireland ), excluding employees and agents of (a) the Promoter or (b) any company connected with...", + "contentSnippet": "This prize draw (the \"Promotion\") is only open to UK residents (excluding Northern Ireland ), excluding employees and agents of (a) the Promoter or (b) any company connected with...", + "guid": "https://www.dailymail.co.uk/home/article-12792755/Shopping-Finder-Charlotte-Tilbury-Mystery-Box-Terms-conditions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-27T00:11:47.000Z" + }, + { + "title": "Flaming marvellous!\u00a0Brighten those borders with stems that lift winter's gloom", + "link": "https://www.dailymail.co.uk/home/gardening/article-12792983/Flaming-marvellous-Brighten-borders-stems-lift-winters-gloom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 22:08:21 GMT", + "enclosure": { + "length": "7985", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/26/17/78252525-0-image-a-5_1701021496971.jpg" + }, + "content": "When plants lose their leaves it might seem like the end of the story, but for some species, the moment they cast off their foliage is when they come into their own.", + "contentSnippet": "When plants lose their leaves it might seem like the end of the story, but for some species, the moment they cast off their foliage is when they come into their own.", + "guid": "https://www.dailymail.co.uk/home/gardening/article-12792983/Flaming-marvellous-Brighten-borders-stems-lift-winters-gloom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T22:08:21.000Z" + }, + { + "title": "Action plan: CIAR BYRNE's essential jobs for your garden this week", + "link": "https://www.dailymail.co.uk/home/gardening/article-12793011/Action-plan-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 22:08:10 GMT", + "enclosure": { + "length": "11527", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/26/17/78252521-0-image-a-9_1701021300771.jpg" + }, + "content": "As we move into the darkest time of the year, raise your spirits by planting a winter container. Wallflowers (Erysimum) are biennial. Plant them now for their foliage and they will reward you.", + "contentSnippet": "As we move into the darkest time of the year, raise your spirits by planting a winter container. Wallflowers (Erysimum) are biennial. Plant them now for their foliage and they will reward you.", + "guid": "https://www.dailymail.co.uk/home/gardening/article-12793011/Action-plan-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T22:08:10.000Z" + }, + { + "title": "Inside the pokey apartment from the Detectorists: 'Light and airy' one-bed from BBC show on sale at \u00a3200K - and fans want to club together and buy it", + "link": "https://www.dailymail.co.uk/property/article-12783851/Inside-pokey-apartment-Detectorists-Light-airy-one-bed-BBC-sale-200K-fans-want-club-buy-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 11:55:11 GMT", + "enclosure": { + "length": "6550", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/23/12/78154871-0-image-m-42_1700742829314.jpg" + }, + "content": "EXCLUSIVE: The one-bed flat from the hit BBC series the Detectorists is up for sale for \u00a3200,000 - driving super fans to suggest clubbing together to buy the iconic Suffolk property.", + "contentSnippet": "EXCLUSIVE: The one-bed flat from the hit BBC series the Detectorists is up for sale for \u00a3200,000 - driving super fans to suggest clubbing together to buy the iconic Suffolk property.", + "guid": "https://www.dailymail.co.uk/property/article-12783851/Inside-pokey-apartment-Detectorists-Light-airy-one-bed-BBC-sale-200K-fans-want-club-buy-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T11:55:11.000Z" + }, + { + "title": "ISLA FISHER reveals the touching gift Sacha Baron Cohen bought her after her father died... as she shares the personal mission that took her back to Scotland, land of her forefathers", + "link": "https://www.dailymail.co.uk/home/you/article-12770807/ISLA-FISHER-Sacha-Baron-Cohen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 08:27:36 GMT", + "enclosure": { + "length": "9985", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/25/13/78225953-0-image-a-1_1700920261257.jpg" + }, + "content": "Actress ISLA FISHER on family roots, her charity work as a Save the Children ambassador - and a meaningful gift from husband Sacha Baron Cohen", + "contentSnippet": "Actress ISLA FISHER on family roots, her charity work as a Save the Children ambassador - and a meaningful gift from husband Sacha Baron Cohen", + "guid": "https://www.dailymail.co.uk/home/you/article-12770807/ISLA-FISHER-Sacha-Baron-Cohen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T08:27:36.000Z" + }, + { + "title": "Twist & shake: Mulled apple & whiskey", + "link": "https://www.dailymail.co.uk/home/you/article-12771543/Twist-shake-Mulled-apple-whiskey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 00:02:01 GMT", + "enclosure": { + "length": "8382", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026785-0-image-m-198_1700497006344.jpg" + }, + "content": "Warming and wintery, perfect after a chilly walk", + "contentSnippet": "Warming and wintery, perfect after a chilly walk", + "guid": "https://www.dailymail.co.uk/home/you/article-12771543/Twist-shake-Mulled-apple-whiskey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T00:02:01.000Z" + }, + { + "title": "Twist & shake: Elderflower martini", + "link": "https://www.dailymail.co.uk/home/you/article-12771567/Twist-shake-Elderflower-martini.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 00:01:58 GMT", + "enclosure": { + "length": "7444", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026771-0-image-m-222_1700497335697.jpg" + }, + "content": "A sweet twist on the classic martini", + "contentSnippet": "A sweet twist on the classic martini", + "guid": "https://www.dailymail.co.uk/home/you/article-12771567/Twist-shake-Elderflower-martini.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T00:01:58.000Z" + }, + { + "title": "Twist & shake: All-Irish punch bowl", + "link": "https://www.dailymail.co.uk/home/you/article-12771559/Twist-shake-Irish-punch-bowl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 00:01:55 GMT", + "enclosure": { + "length": "9644", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026773-0-image-m-209_1700497176603.jpg" + }, + "content": "Nobody needs to spike this punch...", + "contentSnippet": "Nobody needs to spike this punch...", + "guid": "https://www.dailymail.co.uk/home/you/article-12771559/Twist-shake-Irish-punch-bowl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T00:01:55.000Z" + }, + { + "title": "Twist & shake: Plum vodka", + "link": "https://www.dailymail.co.uk/home/you/article-12771527/Twist-shake-Plum-vodka.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 00:01:52 GMT", + "enclosure": { + "length": "6162", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026787-0-image-m-186_1700496823094.jpg" + }, + "content": "A showstopper to serve your friends and family", + "contentSnippet": "A showstopper to serve your friends and family", + "guid": "https://www.dailymail.co.uk/home/you/article-12771527/Twist-shake-Plum-vodka.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T00:01:52.000Z" + }, + { + "title": "Twist & shake: Gin rickey", + "link": "https://www.dailymail.co.uk/home/you/article-12771511/Twist-shake-Gin-rickey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 00:01:49 GMT", + "enclosure": { + "length": "5161", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026777-0-image-m-165_1700496395139.jpg" + }, + "content": "Deliciously fresh", + "contentSnippet": "Deliciously fresh", + "guid": "https://www.dailymail.co.uk/home/you/article-12771511/Twist-shake-Gin-rickey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T00:01:49.000Z" + }, + { + "title": "Twist & shake: Hot buttered rum", + "link": "https://www.dailymail.co.uk/home/you/article-12771519/Twist-shake-Hot-buttered-rum.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 26 Nov 2023 00:01:46 GMT", + "enclosure": { + "length": "7089", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78026779-0-image-m-174_1700496597900.jpg" + }, + "content": "A true winter warmer", + "contentSnippet": "A true winter warmer", + "guid": "https://www.dailymail.co.uk/home/you/article-12771519/Twist-shake-Hot-buttered-rum.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-26T00:01:46.000Z" + }, + { + "title": "San Francisco's only private island is set to hit the market for $25 million - but you'll have to be prepared to live with no running water, power or wi-fi", + "link": "https://www.dailymail.co.uk/property/article-12780467/San-Francisco-Red-Rock-Island-Sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 25 Nov 2023 19:56:06 GMT", + "enclosure": { + "length": "9664", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/22/21/78120743-0-image-a-68_1700688966446.jpg" + }, + "content": "Red Rock Island - also known as Moleta and Golden Rock - is set to come in hot on the San Francisco Bay housing market at $25 million, a bargain for owning a private island", + "contentSnippet": "Red Rock Island - also known as Moleta and Golden Rock - is set to come in hot on the San Francisco Bay housing market at $25 million, a bargain for owning a private island", + "guid": "https://www.dailymail.co.uk/property/article-12780467/San-Francisco-Red-Rock-Island-Sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-25T19:56:06.000Z" + }, + { + "title": "Sole sister to the stars: Claudia Joseph meets LISA KAY, the woman behind the shoe brand the A-list can't get enough of", + "link": "https://www.dailymail.co.uk/home/you/article-12771433/Sole-sister-stars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 25 Nov 2023 19:13:02 GMT", + "enclosure": { + "length": "6980", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/15/78026167-0-image-m-136_1700495186645.jpg" + }, + "content": "The A-list can't get enough of LISA KAY's shoe brand Sole Bliss. Claudia Joseph meets the woman with a knack for blending red-carpet style with serious comfort", + "contentSnippet": "The A-list can't get enough of LISA KAY's shoe brand Sole Bliss. Claudia Joseph meets the woman with a knack for blending red-carpet style with serious comfort", + "guid": "https://www.dailymail.co.uk/home/you/article-12771433/Sole-sister-stars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-25T19:13:02.000Z" + }, + { + "title": "The Chic List:\u00a0How to style out party season", + "link": "https://www.dailymail.co.uk/home/you/article-12770329/The-Chic-List-style-party-season.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 25 Nov 2023 19:08:49 GMT", + "enclosure": { + "length": "5202", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/11/78018427-0-image-m-17_1700481273617.jpg" + }, + "content": "Fashion columnist and influencer Joanne Hegarty", + "contentSnippet": "Fashion columnist and influencer Joanne Hegarty", + "guid": "https://www.dailymail.co.uk/home/you/article-12770329/The-Chic-List-style-party-season.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-25T19:08:49.000Z" + }, + { + "title": "'Step away from the glitter': Beauty editor ROSIE GREEN'S 5-step party make up plan from sexy eyeshadow to megawatt skin", + "link": "https://www.dailymail.co.uk/home/you/article-12770473/Step-away-glitter-Beauty-editor-ROSIE-GREENS-5-step-party-make-plan-sexy-eyeshadow-megawatt-skin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 25 Nov 2023 19:03:44 GMT", + "enclosure": { + "length": "6480", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/12/78019703-0-image-m-61_1700483705666.jpg" + }, + "content": "No need to go OTT with the party make-up, says Rosie Green - just amp up your usual look", + "contentSnippet": "No need to go OTT with the party make-up, says Rosie Green - just amp up your usual look", + "guid": "https://www.dailymail.co.uk/home/you/article-12770473/Step-away-glitter-Beauty-editor-ROSIE-GREENS-5-step-party-make-plan-sexy-eyeshadow-megawatt-skin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-25T19:03:44.000Z" + }, + { + "title": "'I love being gay, though I don't do it very much now':\u00a0Out, proud and extremely loud, actress MIRIAM MARGOLYES, 82, is renowned for telling it as she sees it. She talks love and death... as well as laying off JK Rowling", + "link": "https://www.dailymail.co.uk/home/you/article-12771687/I-love-gay-dont-proud-extremely-loud-actress-MIRIAM-MARGOLYES-82-renowned-telling-sees-talks-love-death-laying-JK-Rowling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 25 Nov 2023 16:44:55 GMT", + "enclosure": { + "length": "6073", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/20/16/78028153-0-image-m-7_1700498922654.jpg" + }, + "content": "Out, proud and extremely loud, actress MIRIAM MARGOLYES, 82, talks to Nick Curtis about love, death and laying off J K Rowling", + "contentSnippet": "Out, proud and extremely loud, actress MIRIAM MARGOLYES, 82, talks to Nick Curtis about love, death and laying off J K Rowling", + "guid": "https://www.dailymail.co.uk/home/you/article-12771687/I-love-gay-dont-proud-extremely-loud-actress-MIRIAM-MARGOLYES-82-renowned-telling-sees-talks-love-death-laying-JK-Rowling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-25T16:44:55.000Z" + }, + { + "title": "Come into the cold", + "link": "https://www.dailymail.co.uk/home/you/article-12775019/Come-cold.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 25 Nov 2023 13:28:43 GMT", + "enclosure": { + "length": "7636", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/21/12/78057665-0-image-m-14_1700568845327.jpg" + }, + "content": "Stripped of high-summer foliage, Britain's finest gardens assume a stark beauty in winter", + "contentSnippet": "Stripped of high-summer foliage, Britain's finest gardens assume a stark beauty in winter", + "guid": "https://www.dailymail.co.uk/home/you/article-12775019/Come-cold.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-25T13:28:43.000Z" + }, + { + "title": "Life at the sharp end", + "link": "https://www.dailymail.co.uk/home/you/article-12775191/Life-sharp-end.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 25 Nov 2023 13:28:31 GMT", + "enclosure": { + "length": "7765", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/11/21/13/78059777-0-image-m-35_1700571781483.jpg" + }, + "content": "Master arrowsmith HECTOR COLE's museum-quality pieces are prized across the globe. He tells Maddy Fletcher how his boyhood passion was forged", + "contentSnippet": "Master arrowsmith HECTOR COLE's museum-quality pieces are prized across the globe. He tells Maddy Fletcher how his boyhood passion was forged", + "guid": "https://www.dailymail.co.uk/home/you/article-12775191/Life-sharp-end.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-11-25T13:28:31.000Z" + }, + { + "title": "Bomb blitz attack obliterates Russia's longest railway tunnel severing key freight link with China in the Severomuysky mountains, Ukraine claims", + "link": "https://www.dailymail.co.uk/news/article-12812387/Ukrainian-blitz-attack-obliterates-Russias-longest-railway-tunnel-severing-key-freight-link-China-Severomuysky-mountains.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:58:09 GMT", + "enclosure": { + "length": "6228", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78450425-0-image-a-8_1701393646967.jpg" + }, + "content": "Four explosive devices were detonated overnight as a cargo train was moving through the Severomuysky Tunnel in Buryatia region, which borders Mongolia, a source told Reuters", + "contentSnippet": "Four explosive devices were detonated overnight as a cargo train was moving through the Severomuysky Tunnel in Buryatia region, which borders Mongolia, a source told Reuters", + "guid": "https://www.dailymail.co.uk/news/article-12812387/Ukrainian-blitz-attack-obliterates-Russias-longest-railway-tunnel-severing-key-freight-link-China-Severomuysky-mountains.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:58:09.000Z" + }, + { + "title": "Business minister raises the alarm on the tourist tax, saying the government is 'very concerned' about its impact on companies", + "link": "https://www.dailymail.co.uk/news/article-12812465/Business-minister-raises-alarm-tourist-tax-saying-government-concerned-impact-companies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:55:22 GMT", + "enclosure": { + "length": "3522", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78450569-0-image-m-38_1701395182988.jpg" + }, + "content": "Kevin Hollinrake said Cabinet colleagues would 'make our views known very strongly' to the Treasury as it reviews whether to reinstate tax-free shopping for overseas visitors.", + "contentSnippet": "Kevin Hollinrake said Cabinet colleagues would 'make our views known very strongly' to the Treasury as it reviews whether to reinstate tax-free shopping for overseas visitors.", + "guid": "https://www.dailymail.co.uk/news/article-12812465/Business-minister-raises-alarm-tourist-tax-saying-government-concerned-impact-companies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:55:22.000Z" + }, + { + "title": "I'm A Celebrity bosses could 'rethink evictions' as show is at risk of a 'full-blown crisis' following departures of Jamie Lynn Spears and Grace Dent", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812435/im-celebrity-evictions-rethink-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:46:43 GMT", + "enclosure": { + "length": "9855", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78450601-0-image-a-66_1701393834968.jpg" + }, + "content": "I'm A Celebrity bosses are said to be 'rethinking' the evictions process as the show teeters on the brink of a 'full-blown crisis'.\u00a0", + "contentSnippet": "I'm A Celebrity bosses are said to be 'rethinking' the evictions process as the show teeters on the brink of a 'full-blown crisis'.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812435/im-celebrity-evictions-rethink-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:46:43.000Z" + }, + { + "title": "Rishi Sunak warns China it must step up efforts to tackle climate change as he flies to the Cop28 summit", + "link": "https://www.dailymail.co.uk/news/article-12812477/Rishi-Sunak-China-climate-change-Cop28.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:45:00 GMT", + "enclosure": { + "length": "11142", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78450637-0-image-a-217_1701394041244.jpg" + }, + "content": "The Prime Minister's official spokesman said China is 'vitally important' in addressing global warming, as Mr Sunak prepared to fly to Dubai for Cop28", + "contentSnippet": "The Prime Minister's official spokesman said China is 'vitally important' in addressing global warming, as Mr Sunak prepared to fly to Dubai for Cop28", + "guid": "https://www.dailymail.co.uk/news/article-12812477/Rishi-Sunak-China-climate-change-Cop28.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:45:00.000Z" + }, + { + "title": "The House Of Bernarda Alba review: Five sisters stuck in a sad (and sweary) house with a very forbidding mother, writes PATRICK MARMION", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812411/The-House-Bernarda-Alba-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:43:19 GMT", + "enclosure": { + "length": "10116", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78449323-0-image-a-192_1701391950102.jpg" + }, + "content": "PATRICK MARMION: This is not a play that ends well for anyone. Great as it is, the conclusion is as shocking as the barbarous execution of its author. Do not expect winter cheer", + "contentSnippet": "PATRICK MARMION: This is not a play that ends well for anyone. Great as it is, the conclusion is as shocking as the barbarous execution of its author. Do not expect winter cheer", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812411/The-House-Bernarda-Alba-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:43:19.000Z" + }, + { + "title": "My Teacher The Abuser: Fighting For Justice review - I was left seething this predator will never face proper justice, writes CHRISTOPHER STEVENS", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812419/My-Teacher-Abuser-Fighting-Justice-review-left-seething-predator-never-face-proper-justice-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:40:21 GMT", + "enclosure": { + "length": "3024", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/01/78449829-0-image-m-90_1701392627397.jpg" + }, + "content": "The pity is that justice can never really be done. The sexual predators whose abuses went unchecked in British schools during the 1970s and earlier are all now dead or ancient.", + "contentSnippet": "The pity is that justice can never really be done. The sexual predators whose abuses went unchecked in British schools during the 1970s and earlier are all now dead or ancient.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812419/My-Teacher-Abuser-Fighting-Justice-review-left-seething-predator-never-face-proper-justice-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:40:21.000Z" + }, + { + "title": "EPHRAIM HARDCASTLE: The naming of two royals allegedly accused of racism could make King Charles's task of holding on to overseas thrones more difficult", + "link": "https://www.dailymail.co.uk/debate/article-12812373/EPHRAIM-HARDCASTLE-naming-two-royals-allegedly-accused-racism-make-King-Charless-task-holding-overseas-thrones-difficult.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:38:29 GMT", + "enclosure": { + "length": "6913", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78445631-0-image-a-65_1701391812678.jpg" + }, + "content": "EPHRAIM HARDCASTLE: With Barbados no longer a kingdom, other Commonwealth countries Jamaica, Grenada, and Antigua and Barbuda face growing republican sentiment.", + "contentSnippet": "EPHRAIM HARDCASTLE: With Barbados no longer a kingdom, other Commonwealth countries Jamaica, Grenada, and Antigua and Barbuda face growing republican sentiment.", + "guid": "https://www.dailymail.co.uk/debate/article-12812373/EPHRAIM-HARDCASTLE-naming-two-royals-allegedly-accused-racism-make-King-Charless-task-holding-overseas-thrones-difficult.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:38:29.000Z" + }, + { + "title": "EDEN CONFIDENTIAL: Country Life reveals its new dinner party rules... Smoking jackets and sex are IN!", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812267/EDEN-CONFIDENTIAL-Country-Life-reveals-new-dinner-party-rules-Smoking-jackets-sex-IN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:35:08 GMT", + "enclosure": { + "length": "10905", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448247-0-image-a-38_1701389341723.jpg" + }, + "content": "EDEN CONFIDENTIAL: Once, in the old days, its engagement photographs of 'girls in pearls' were about as racy as it got.", + "contentSnippet": "EDEN CONFIDENTIAL: Once, in the old days, its engagement photographs of 'girls in pearls' were about as racy as it got.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812267/EDEN-CONFIDENTIAL-Country-Life-reveals-new-dinner-party-rules-Smoking-jackets-sex-IN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:35:08.000Z" + }, + { + "title": "Biden name drops Prince Harry and his role in the Invictus Games as the Royal Family is embroiled in the fallout from Omid Scobie's race revelations - and after Jill turned down an invite to the event to avoid upsetting Buckingham Palace", + "link": "https://www.dailymail.co.uk/news/article-12811869/Biden-drops-Prince-Harry-royal-racist-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:26:57 GMT", + "enclosure": { + "length": "11419", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78447943-0-image-a-8_1701391111489.jpg" + }, + "content": "President Joe Biden name dropped Prince Harry and his work with the Invictus Games at Thursday night's National Christmas Tree Lighting on the Ellipse.", + "contentSnippet": "President Joe Biden name dropped Prince Harry and his work with the Invictus Games at Thursday night's National Christmas Tree Lighting on the Ellipse.", + "guid": "https://www.dailymail.co.uk/news/article-12811869/Biden-drops-Prince-Harry-royal-racist-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:26:57.000Z" + }, + { + "title": "Beyonce makes FIRST red carpet appearance since being hit with skin 'lightening' accusations as she flashes the flesh in glitzy dress and busty bodysuit at Renaissance film premiere in London", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812265/Beyonce-red-carpet-Renaissance-film-premiere-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 01:19:27 GMT", + "enclosure": { + "length": "8816", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448811-0-image-m-41_1701390660441.jpg" + }, + "content": "It marks her first red carpet since\u00a0her mother Tina Knowles-Lawson fired back at 'racist and self-hating' critics who accused the star of 'lightening' her skin.", + "contentSnippet": "It marks her first red carpet since\u00a0her mother Tina Knowles-Lawson fired back at 'racist and self-hating' critics who accused the star of 'lightening' her skin.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812265/Beyonce-red-carpet-Renaissance-film-premiere-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T01:19:27.000Z" + }, + { + "title": "Nicola Sturgeon's time as SNP first minister saw her clock up 112,474 air miles including regular flights from London to Scotland", + "link": "https://www.dailymail.co.uk/news/article-12812309/Eco-zealot-Nicola-Sturgeons-time-SNP-minister-saw-clock-112-474-air-miles-including-regular-flights-London-Scotland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:55:20 GMT", + "enclosure": { + "length": "9088", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78449479-0-image-a-82_1701391756928.jpg" + }, + "content": "The former SNP leader, who in June was arrested and later released without charge during a Police Scotland probe into possible fundraising fraud in her party, took 153 flights during her tenure", + "contentSnippet": "The former SNP leader, who in June was arrested and later released without charge during a Police Scotland probe into possible fundraising fraud in her party, took 153 flights during her tenure", + "guid": "https://www.dailymail.co.uk/news/article-12812309/Eco-zealot-Nicola-Sturgeons-time-SNP-minister-saw-clock-112-474-air-miles-including-regular-flights-London-Scotland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:55:20.000Z" + }, + { + "title": "Boris Johnson allies hit back at Rishi Sunak after he suggested the former PM was responsible for soaring immigration", + "link": "https://www.dailymail.co.uk/news/article-12812367/Boris-Johnson-allies-hit-Rishi-Sunak-immigration.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:53:31 GMT", + "enclosure": { + "length": "7958", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78449359-0-image-a-185_1701391789847.jpg" + }, + "content": "Mr Sunak yesterday implied he was not responsible for immigration levels he 'inherited' from Mr Johnson and Liz Truss, sparking an angry response from the ex-Prime Minister's allies.", + "contentSnippet": "Mr Sunak yesterday implied he was not responsible for immigration levels he 'inherited' from Mr Johnson and Liz Truss, sparking an angry response from the ex-Prime Minister's allies.", + "guid": "https://www.dailymail.co.uk/news/article-12812367/Boris-Johnson-allies-hit-Rishi-Sunak-immigration.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:53:31.000Z" + }, + { + "title": "Strictly Come Dancing stars Ellie Leach and Vito Coppola are accused of 'faking' their romance to gain popularity on the BBC show: 'The hope is they will endear themselves to the nation'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12812259/Strictly-stars-Ellie-Leach-Vito-Coppola-faking-romance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:46:38 GMT", + "enclosure": { + "length": "11105", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448423-0-image-a-123_1701389844425.jpg" + }, + "content": "Talks of romance rumours have surrounded the couple for weeks.\u00a0", + "contentSnippet": "Talks of romance rumours have surrounded the couple for weeks.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12812259/Strictly-stars-Ellie-Leach-Vito-Coppola-faking-romance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:46:38.000Z" + }, + { + "title": "Villagers whose homes are at risk of falling into the sea are left stranded after access road collapses following a land slip", + "link": "https://www.dailymail.co.uk/news/article-12812347/home-risk-falling-sea-stranded-land-slip-hemsby-norfolk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:38:10 GMT", + "enclosure": { + "length": "7388", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448915-0-image-a-184_1701391073312.jpg" + }, + "content": "Four properties in Hemsby, Norfolk, were left at risk of falling into the sea following a land slip last Friday, with the local authority failing to come out to assess the situation until Monday", + "contentSnippet": "Four properties in Hemsby, Norfolk, were left at risk of falling into the sea following a land slip last Friday, with the local authority failing to come out to assess the situation until Monday", + "guid": "https://www.dailymail.co.uk/news/article-12812347/home-risk-falling-sea-stranded-land-slip-hemsby-norfolk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:38:10.000Z" + }, + { + "title": "DAILY MAIL COMMENT: Scobie's shaky defence is lost in translation", + "link": "https://www.dailymail.co.uk/news/article-12812303/omid-scobie-defence-endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:34:37 GMT", + "enclosure": { + "length": "6161", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448441-0-image-a-169_1701390001237.jpg" + }, + "content": "DAILY MAIL COMMENT: Scobie blames translation errors for the names appearing 'accidentally' in the Dutch edition of Endgame. But can he be believed?", + "contentSnippet": "DAILY MAIL COMMENT: Scobie blames translation errors for the names appearing 'accidentally' in the Dutch edition of Endgame. But can he be believed?", + "guid": "https://www.dailymail.co.uk/news/article-12812303/omid-scobie-defence-endgame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:34:37.000Z" + }, + { + "title": "'Politically correct' BBC is turning off working class viewers who think the broadcaster is out of touch, Ofcom report suggests", + "link": "https://www.dailymail.co.uk/news/article-12812317/Politically-correct-BBC-working-class-Ofcom-report.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 01 Dec 2023 00:33:49 GMT", + "enclosure": { + "length": "9935", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/00/78448743-0-image-m-174_1701390527816.jpg" + }, + "content": "Lower-income audiences increasingly prefer to use rival streaming services such as Netflix and Spotify, which offer more 'engaging' and 'light-hearted' shows, the media regulator found.", + "contentSnippet": "Lower-income audiences increasingly prefer to use rival streaming services such as Netflix and Spotify, which offer more 'engaging' and 'light-hearted' shows, the media regulator found.", + "guid": "https://www.dailymail.co.uk/news/article-12812317/Politically-correct-BBC-working-class-Ofcom-report.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-01T00:33:49.000Z" + }, + { + "title": "Dozens of Palestinians are captured by IDF, stripped and paraded around Gaza", + "link": "https://www.dailymail.co.uk/news/article-12839063/Palestinians-captured-IDF-stripped-paraded-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:34:22 GMT", + "enclosure": { + "length": "8051", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78708823-0-image-a-29_1701982311269.jpg" + }, + "content": "Palestinian men allegedly surrendered in the Jabalia refugee camp, with Israeli outlet Walla saying they were stripped 'to rule out the possibility that they were carrying weapons'.", + "contentSnippet": "Palestinian men allegedly surrendered in the Jabalia refugee camp, with Israeli outlet Walla saying they were stripped 'to rule out the possibility that they were carrying weapons'.", + "guid": "https://www.dailymail.co.uk/news/article-12839063/Palestinians-captured-IDF-stripped-paraded-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:34:22.000Z" + }, + { + "title": "Inside secret heartbreak of 'Britain's kindest plumber': How ex-homeless father was inspired to become a 'charity hero' to help the disabled and frail pensioners after his son died at 16-weeks from hole in the heart - as fan Hugh Grant donates \u00a320k", + "link": "https://www.dailymail.co.uk/news/article-12840877/Inside-remarkable-life-Britains-kindest-plumber-father-bullied-brink-suicide-having-no-teeth-baby-boy-tragically-died-dedicates-life-helping-disabled-children-frail-pensioners-winning-Hugh-Grant-fan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:33:08 GMT", + "enclosure": { + "length": "6409", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/71392529-0-image-m-12_1702025764155.jpg" + }, + "content": "Selfless James Anderson has touched the hearts of the nation with his generosity, which has seen him offering free plumbing for frail pensioners with cancer and disabled children", + "contentSnippet": "Selfless James Anderson has touched the hearts of the nation with his generosity, which has seen him offering free plumbing for frail pensioners with cancer and disabled children", + "guid": "https://www.dailymail.co.uk/news/article-12840877/Inside-remarkable-life-Britains-kindest-plumber-father-bullied-brink-suicide-having-no-teeth-baby-boy-tragically-died-dedicates-life-helping-disabled-children-frail-pensioners-winning-Hugh-Grant-fan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:33:08.000Z" + }, + { + "title": "Why are Tory MPs prioritising illegal migrants over the British people? asks RICHARD LITTLEJOHN", + "link": "https://www.dailymail.co.uk/debate/article-12839261/tory-mps-illegal-migrants-british-people-richard-littlejohn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:32:35 GMT", + "enclosure": { + "length": "9484", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709955-0-image-a-36_1701982540582.jpg" + }, + "content": "RICHARD LITTLEJOHN: An old friend of mine was enthusing about her next holiday in the New Year. She's just booked herself a Dian Fossey-style Gorillas In The Mist safari... in Rwanda.", + "contentSnippet": "RICHARD LITTLEJOHN: An old friend of mine was enthusing about her next holiday in the New Year. She's just booked herself a Dian Fossey-style Gorillas In The Mist safari... in Rwanda.", + "guid": "https://www.dailymail.co.uk/debate/article-12839261/tory-mps-illegal-migrants-british-people-richard-littlejohn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:32:35.000Z" + }, + { + "title": "Jon Rahm jumps ship from the PGA Tour to LIV Golf in eye-watering deal worth upwards of $500MILLION... with the Saudi rebel tour confirming his move in social media gaffe on Thursday night", + "link": "https://www.dailymail.co.uk/sport/golf/article-12833069/Jon-Rahm-jumps-ship-PGA-Tour-LIV-Golf-eye-watering-deal-worth-upwards-570MILLION-Spanish-two-time-major-winner-set-announced-Saudi-backed-breakaway-TODAY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:32:16 GMT", + "enclosure": { + "length": "10747", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78708239-0-image-a-31_1701979474843.jpg" + }, + "content": "There had been increasing speculation over the past few weeks that the two-time major winner would defect to Greg Norman's rebel circuit and the move reportedly is now a done deal.", + "contentSnippet": "There had been increasing speculation over the past few weeks that the two-time major winner would defect to Greg Norman's rebel circuit and the move reportedly is now a done deal.", + "guid": "https://www.dailymail.co.uk/sport/golf/article-12833069/Jon-Rahm-jumps-ship-PGA-Tour-LIV-Golf-eye-watering-deal-worth-upwards-570MILLION-Spanish-two-time-major-winner-set-announced-Saudi-backed-breakaway-TODAY.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:32:16.000Z" + }, + { + "title": "Boeing 737 passenger jet is forced to make emergency landing after 'micro-explosions' cause both engines to catch fire during take-off", + "link": "https://www.dailymail.co.uk/news/article-12840849/Boeing-737-passenger-jet-forced-make-emergency-landing-micro-explosions-cause-engines-catch-fire-off.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:30:45 GMT", + "enclosure": { + "length": "3074", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/78727689-0-image-m-12_1702024288118.jpg" + }, + "content": "The S7 airline plane with 175 passengers was flying from Novosibirsk - Russia 's third largest city - to capital city Moscow. The fires started as the plane was on the runway taking off, passengers said.", + "contentSnippet": "The S7 airline plane with 175 passengers was flying from Novosibirsk - Russia 's third largest city - to capital city Moscow. The fires started as the plane was on the runway taking off, passengers said.", + "guid": "https://www.dailymail.co.uk/news/article-12840849/Boeing-737-passenger-jet-forced-make-emergency-landing-micro-explosions-cause-engines-catch-fire-off.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:30:45.000Z" + }, + { + "title": "Daisy Lowe's designer mother Pearl is putting her beachside bolthole up for sale for \u00a31.8million after she transformed it during lockdown", + "link": "https://www.dailymail.co.uk/property/article-12840825/Daisy-Lowes-designer-mother-Pearl-beachside-bolthole-transformed-lockdown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:27:08 GMT", + "enclosure": { + "length": "7536", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/09/78728563-0-image-a-9_1702026257570.jpg" + }, + "content": "The 1940s Shell House was built by a soldier who was married to shell artist Theresa Arnott, who crafted the home with seaside-themed installations using shells from Winchelsea beach.", + "contentSnippet": "The 1940s Shell House was built by a soldier who was married to shell artist Theresa Arnott, who crafted the home with seaside-themed installations using shells from Winchelsea beach.", + "guid": "https://www.dailymail.co.uk/property/article-12840825/Daisy-Lowes-designer-mother-Pearl-beachside-bolthole-transformed-lockdown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:27:08.000Z" + }, + { + "title": "'Come on mate, hand yourself in': Parents' tearful plea for hit-and-run driver to hand themselves in after their seven-year-old son was hit and killed - as man, 49, is arrested", + "link": "https://www.dailymail.co.uk/news/article-12839023/Man-arrested-boy-seven-dies-hit-run.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:24:15 GMT", + "enclosure": { + "length": "9832", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78702947-0-image-m-11_1701978190106.jpg" + }, + "content": "William Brown was wearing his beloved Christiano Ronaldo kit when was knocked down by a car on Sandgate Esplanade in Folkestone, Kent on Wednesday evening.", + "contentSnippet": "William Brown was wearing his beloved Christiano Ronaldo kit when was knocked down by a car on Sandgate Esplanade in Folkestone, Kent on Wednesday evening.", + "guid": "https://www.dailymail.co.uk/news/article-12839023/Man-arrested-boy-seven-dies-hit-run.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:24:15.000Z" + }, + { + "title": "Rishi Sunak 'told Rwanda flight law will make it EASIER for migrants to stay in Britain' as Tory 'five families' go to war for soul of party amid 'insane' threats to replace PM as leader- as cost of project doubles to almost \u00a3300million", + "link": "https://www.dailymail.co.uk/news/article-12840977/Rishi-Sunak-Rwanda-law-EASIER-migrants-stay-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:23:32 GMT", + "enclosure": { + "length": "8283", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/78728275-0-image-a-9_1702025596326.jpg" + }, + "content": "Two senior lawyers told the PM that the hastily drawn-up plan still gave arrivals the ability to individually challenge their removal to Africa in the courts.", + "contentSnippet": "Two senior lawyers told the PM that the hastily drawn-up plan still gave arrivals the ability to individually challenge their removal to Africa in the courts.", + "guid": "https://www.dailymail.co.uk/news/article-12840977/Rishi-Sunak-Rwanda-law-EASIER-migrants-stay-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:23:32.000Z" + }, + { + "title": "Bird charity breaks ties with Chris Packham because outspoken broadcaster was 'becoming too political' and saying people should consider breaking the law", + "link": "https://www.dailymail.co.uk/news/article-12840799/Bird-charity-sacks-Chris-Packham-broadcaster-political.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:22:07 GMT", + "enclosure": { + "length": "12047", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/78727523-0-image-m-6_1702023359637.jpg" + }, + "content": "TV Presenter Chris Packham has been sacked by a Bird of Prey rehabilitation charity for becoming too 'political', which was dividing the views of its members.", + "contentSnippet": "TV Presenter Chris Packham has been sacked by a Bird of Prey rehabilitation charity for becoming too 'political', which was dividing the views of its members.", + "guid": "https://www.dailymail.co.uk/news/article-12840799/Bird-charity-sacks-Chris-Packham-broadcaster-political.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:22:07.000Z" + }, + { + "title": "Elizabeth line is hit by severe delays AGAIN morning after sex predator took advantage of rush hour chaos to assault passenger when thousands including Rachel Riley and James Blunt were trapped for hours on trains", + "link": "https://www.dailymail.co.uk/news/article-12840695/Elizabeth-Line-severe-delays-Rachel-Riley-James-Blunt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:17:15 GMT", + "enclosure": { + "length": "4130", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709573-0-image-m-44_1701982389019.jpg" + }, + "content": "Two people were injured when thousands of passengers were stuck on packed Elizabeth line trains in London for hours without power - with James Blunt and\u00a0Rachel Riley among those trapped.", + "contentSnippet": "Two people were injured when thousands of passengers were stuck on packed Elizabeth line trains in London for hours without power - with James Blunt and\u00a0Rachel Riley among those trapped.", + "guid": "https://www.dailymail.co.uk/news/article-12840695/Elizabeth-Line-severe-delays-Rachel-Riley-James-Blunt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:17:15.000Z" + }, + { + "title": "Zoopla's most viewed homes of 2023: From a \u00a325k terrace in Liverpool to a \u00a336.5m London mansion", + "link": "https://www.dailymail.co.uk/property/article-12837781/Zooplas-viewed-homes-2023-25k-terrace-Liverpool-36-5m-London-mansion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 09:15:36 GMT", + "enclosure": { + "length": "8751", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78699377-0-image-a-43_1701965670966.jpg" + }, + "content": "The most popular homes for sale online this year have been revealed - and they prove that people are not only interested in snooping at high-value homes, but also more modest offerings.", + "contentSnippet": "The most popular homes for sale online this year have been revealed - and they prove that people are not only interested in snooping at high-value homes, but also more modest offerings.", + "guid": "https://www.dailymail.co.uk/property/article-12837781/Zooplas-viewed-homes-2023-25k-terrace-Liverpool-36-5m-London-mansion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T09:15:36.000Z" + }, + { + "title": "I almost wept with relief when Kemi Badenoch spoke out against the 'epidemic' of gay children being encouraged to change gender, writes author HELEN JOYCE", + "link": "https://www.dailymail.co.uk/debate/article-12839437/Kemi-Badenoch-against-epidemic-gay-children-change-gender-HELEN-JOYCE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:58:55 GMT", + "enclosure": { + "length": "10130", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711789-0-image-a-26_1701985423734.jpg" + }, + "content": "HELEN JOYCE: Kemi Badenoch (pictured) drew attention ideology that led to an 'epidemic' of gay or bisexual youngsters being told they are transgender and given drugs that can lead to sterilisation.", + "contentSnippet": "HELEN JOYCE: Kemi Badenoch (pictured) drew attention ideology that led to an 'epidemic' of gay or bisexual youngsters being told they are transgender and given drugs that can lead to sterilisation.", + "guid": "https://www.dailymail.co.uk/debate/article-12839437/Kemi-Badenoch-against-epidemic-gay-children-change-gender-HELEN-JOYCE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:58:55.000Z" + }, + { + "title": "New digital parking permit scheme that replaces physical documents in car windows is slammed as 'an absolute failure' by drivers just one month after its launch", + "link": "https://www.dailymail.co.uk/news/article-12840893/New-digital-parking-permit-scheme-replaces-physical-documents-car-windows-slammed-absolute-failure-drivers-just-one-month-launch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:52:37 GMT", + "enclosure": { + "length": "7185", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/08/78727711-0-image-m-12_1702024515202.jpg" + }, + "content": "Reading Borough Council introduced the new scheme last month and it has already come under heavy criticism.", + "contentSnippet": "Reading Borough Council introduced the new scheme last month and it has already come under heavy criticism.", + "guid": "https://www.dailymail.co.uk/news/article-12840893/New-digital-parking-permit-scheme-replaces-physical-documents-car-windows-slammed-absolute-failure-drivers-just-one-month-launch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:52:37.000Z" + }, + { + "title": "I'm fed up with people calling me a bad girl because of my tattoos - so I'm getting them removed", + "link": "https://www.dailymail.co.uk/femail/article-12837247/Woman-tattoos-removed-bad-girl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:51:02 GMT", + "enclosure": { + "length": "9675", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/13/78691365-0-image-a-20_1701954941075.jpg" + }, + "content": "Lauren, 30, from Australia got her first piece - a set of roses on her stomach done when she was just 18 years old, after becoming inspired by Lady Gaga 's floral back tattoo.", + "contentSnippet": "Lauren, 30, from Australia got her first piece - a set of roses on her stomach done when she was just 18 years old, after becoming inspired by Lady Gaga 's floral back tattoo.", + "guid": "https://www.dailymail.co.uk/femail/article-12837247/Woman-tattoos-removed-bad-girl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:51:02.000Z" + }, + { + "title": "Every single woman Lucy Cavendish coached with her 'Calling In The One' dating therapy has met someone. Then LIZ JONES tried it", + "link": "https://www.dailymail.co.uk/debate/article-12839411/Lucy-Cavendish-coach-Calling-One-dating-therapy-LIZ-JONES-tried.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:43:20 GMT", + "enclosure": { + "length": "9546", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78711359-0-image-a-33_1701986491646.jpg" + }, + "content": "LIZ JONES: At the age of 65 (and in really good nick), can I finally fulfil the quest of a lifetime and find myself a good man to spend the rest of it with?", + "contentSnippet": "LIZ JONES: At the age of 65 (and in really good nick), can I finally fulfil the quest of a lifetime and find myself a good man to spend the rest of it with?", + "guid": "https://www.dailymail.co.uk/debate/article-12839411/Lucy-Cavendish-coach-Calling-One-dating-therapy-LIZ-JONES-tried.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:43:20.000Z" + }, + { + "title": "It's getting otter in here, so take off all your clothes! Smuggler is strip searched and busted after 'suspicious trouser bulge' turns out to be furry mammals", + "link": "https://www.dailymail.co.uk/news/article-12840749/Its-getting-otter-clothes-Smuggler-strip-searched-busted-suspicious-trouser-bulge-turns-furry-mammals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:34:57 GMT", + "enclosure": { + "length": "8166", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/07/78726875-0-image-a-14_1702022089381.jpg" + }, + "content": "When the Taiwanese smuggler queued up for airport security, he'd hoped that staff wouldn't notice the huge bulge in his trousers - and the fact that it kept moving.", + "contentSnippet": "When the Taiwanese smuggler queued up for airport security, he'd hoped that staff wouldn't notice the huge bulge in his trousers - and the fact that it kept moving.", + "guid": "https://www.dailymail.co.uk/news/article-12840749/Its-getting-otter-clothes-Smuggler-strip-searched-busted-suspicious-trouser-bulge-turns-furry-mammals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:34:57.000Z" + }, + { + "title": "'Hitler's only friend' who died in the city he tried to bomb into defeat: How Nazi war criminal Albert Speer passed away in London while making BBC programme - after saving himself from hanging by claiming ignorance of the Holocaust", + "link": "https://www.dailymail.co.uk/news/article-12836741/Hitlers-friend-died-city-tried-bomb-defeat-Nazi-war-criminal-Albert-Speer-passed-away-London-making-BBC-programme-saving-hanging-claiming-ignorance-Holocaust.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:31:53 GMT", + "enclosure": { + "length": "9326", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/14/78685427-0-image-m-41_1701959009282.jpg" + }, + "content": "Albert Speer, the chief architect of Nazi Germany who became armaments minister, spent 20 years in prison after being found guilty of war crimes at Nuremburg. Above: In London in 1973.", + "contentSnippet": "Albert Speer, the chief architect of Nazi Germany who became armaments minister, spent 20 years in prison after being found guilty of war crimes at Nuremburg. Above: In London in 1973.", + "guid": "https://www.dailymail.co.uk/news/article-12836741/Hitlers-friend-died-city-tried-bomb-defeat-Nazi-war-criminal-Albert-Speer-passed-away-London-making-BBC-programme-saving-hanging-claiming-ignorance-Holocaust.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:31:53.000Z" + }, + { + "title": "Now HMRC axes self assessment tax helpline for most callers", + "link": "https://www.dailymail.co.uk/news/article-12839997/HMRC-axes-self-assessment-tax-helpline.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:23:22 GMT", + "enclosure": { + "length": "11169", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718919-0-image-a-60_1701997130461.jpg" + }, + "content": "The announcement has provoked anger among MPs and tax experts, who warned it could lead to taxpayers inadvertently making mistakes on their tax returns and facing fines further down the line.", + "contentSnippet": "The announcement has provoked anger among MPs and tax experts, who warned it could lead to taxpayers inadvertently making mistakes on their tax returns and facing fines further down the line.", + "guid": "https://www.dailymail.co.uk/news/article-12839997/HMRC-axes-self-assessment-tax-helpline.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:23:22.000Z" + }, + { + "title": "Russell Simmons denies allegations of sex assault and says he's 'never been violent' ... and has taken NINE lie detector tests on topic", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12840017/Russell-Simmons-denies-allegations-sex-assault-says-hes-never-violent-taken-NINE-lie-detector-tests-topics.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:17:50 GMT", + "enclosure": { + "length": "9504", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/02/78720963-0-image-a-68_1702002415445.jpg" + }, + "content": "The Queens, New York native, 66, acknowledged that he'd behaved in a 'crude' manner and had past been involved in 'compromising situations' sexually.", + "contentSnippet": "The Queens, New York native, 66, acknowledged that he'd behaved in a 'crude' manner and had past been involved in 'compromising situations' sexually.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12840017/Russell-Simmons-denies-allegations-sex-assault-says-hes-never-violent-taken-NINE-lie-detector-tests-topics.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:17:50.000Z" + }, + { + "title": "Latest Omaze house winner is mature student who dreams of becoming a children's nurse and was 'technically sofa surfing' when she was handed the keys to amazing \u00a35m Chelsea home", + "link": "https://www.dailymail.co.uk/property/article-12840737/Omaze-winner-student-nurse-sofa-surfing-Chelsea-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:12:03 GMT", + "enclosure": { + "length": "9752", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/07/78726841-0-image-m-26_1702021367265.jpg" + }, + "content": "Oceanne Belle, 49, has won an elegant four storey Georgian home in the sought-after Royal Borough of Kensington and Chelsea in the latest Omaze Million Pound House Draw.", + "contentSnippet": "Oceanne Belle, 49, has won an elegant four storey Georgian home in the sought-after Royal Borough of Kensington and Chelsea in the latest Omaze Million Pound House Draw.", + "guid": "https://www.dailymail.co.uk/property/article-12840737/Omaze-winner-student-nurse-sofa-surfing-Chelsea-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:12:03.000Z" + }, + { + "title": "We are VERY amused! How humour is the secret weapon of the Windsors, as these uproarious pictures show", + "link": "https://www.dailymail.co.uk/news/article-12823757/Royals-laugh-humour-secret-weapon-pictures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 08:06:22 GMT", + "enclosure": { + "length": "11069", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/04/16/78561187-0-image-a-69_1701708097656.jpg" + }, + "content": "She has many talents, including her natural grace and dignity, playing the piano and photography. But another quality was on view when Kate met the stars at the Royal Variety Performance.", + "contentSnippet": "She has many talents, including her natural grace and dignity, playing the piano and photography. But another quality was on view when Kate met the stars at the Royal Variety Performance.", + "guid": "https://www.dailymail.co.uk/news/article-12823757/Royals-laugh-humour-secret-weapon-pictures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T08:06:22.000Z" + }, + { + "title": "Optical illusion claims only high IQs can spot the woman's face within 9 seconds - but can YOU find her?", + "link": "https://www.dailymail.co.uk/femail/article-12838293/Optical-illusion-claims-high-IQs-spot-womans-face-9-seconds-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:51:52 GMT", + "enclosure": { + "length": "9267", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78699761-0-image-a-10_1701967666105.jpg" + }, + "content": "The latest optical illusion is putting your IQ levels to the test as it's asking you to spot the hidden face within nine seconds. The black and white drawing was shared by\u00a0American Puzzle Cards.", + "contentSnippet": "The latest optical illusion is putting your IQ levels to the test as it's asking you to spot the hidden face within nine seconds. The black and white drawing was shared by\u00a0American Puzzle Cards.", + "guid": "https://www.dailymail.co.uk/femail/article-12838293/Optical-illusion-claims-high-IQs-spot-womans-face-9-seconds-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:51:52.000Z" + }, + { + "title": "How first son spent $200,000 on prostitutes, $118,000 on adult entertainment - and only $500 on mortgage payments as his spending is revealed amid new tax evasion charges", + "link": "https://www.dailymail.co.uk/news/article-12840203/How-son-spent-200-000-prostitutes-118-000-adult-entertainment-500-mortgage-payments-spending-revealed-amid-new-tax-evasion-charges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:46:06 GMT", + "enclosure": { + "length": "11875", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/05/78724499-0-image-a-10_1702012796152.jpg" + }, + "content": "Hunter Biden's 'wild' spending has been revealed after a fresh indictment of nine criminal charges was filed against the president's son on Thursday.", + "contentSnippet": "Hunter Biden's 'wild' spending has been revealed after a fresh indictment of nine criminal charges was filed against the president's son on Thursday.", + "guid": "https://www.dailymail.co.uk/news/article-12840203/How-son-spent-200-000-prostitutes-118-000-adult-entertainment-500-mortgage-payments-spending-revealed-amid-new-tax-evasion-charges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:46:06.000Z" + }, + { + "title": "45 ultimate Christmas gift ideas for him and her if money is no object - from a \u00a33,000 barware set to a \u00a313,400 evening gown", + "link": "https://www.dailymail.co.uk/femail/article-12831757/luxury-best-christmas-gifts-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:44:03 GMT", + "enclosure": { + "length": "11954", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78699175-0-image-a-5_1701965518095.jpg" + }, + "content": "Looking for a bit of luxury this Christmas? FEMAIL has selected the most exclusive designer gifts to splash on for her, him and the home if money is no object this Christmas.", + "contentSnippet": "Looking for a bit of luxury this Christmas? FEMAIL has selected the most exclusive designer gifts to splash on for her, him and the home if money is no object this Christmas.", + "guid": "https://www.dailymail.co.uk/femail/article-12831757/luxury-best-christmas-gifts-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:44:03.000Z" + }, + { + "title": "Did anyone engage their brain? These baffling design fails should never have seen the light of day", + "link": "https://www.dailymail.co.uk/femail/article-12837817/Did-engage-brain-baffling-design-fails-never-seen-light-day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:43:41 GMT", + "enclosure": { + "length": "11858", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78696737-0-image-a-96_1701964522400.jpg" + }, + "content": "Baffling snaps from around the world collected by Architecturendesign.net , include a wheelchair ramp in France, which was obstructed by a steel parking meter.", + "contentSnippet": "Baffling snaps from around the world collected by Architecturendesign.net , include a wheelchair ramp in France, which was obstructed by a steel parking meter.", + "guid": "https://www.dailymail.co.uk/femail/article-12837817/Did-engage-brain-baffling-design-fails-never-seen-light-day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:43:41.000Z" + }, + { + "title": "Inside McDonald's new Illinois CosMc's: DailyMail.com visits new store to sample its unusual range of products - including a $5.89 Sour Cherry Energy Burst and $4.99 Creamy Avocado Tomatillo Sandwich!", + "link": "https://www.dailymail.co.uk/yourmoney/consumer/article-12839541/Inside-McDonalds-new-CosMcs-DailyMail-com-visits-new-store-sample-unusual-range-products-including-5-89-Sour-Cherry-Energy-Burst-4-99-Creamy-Avocado-Tomatillo-Sandwich.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:42:22 GMT", + "enclosure": { + "length": "11321", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78716803-0-image-a-4_1701993963329.jpg" + }, + "content": "McDonald's superfans lined up for the opening of its new CosMc restaurant this morning after details of its menu were unveiled yesterday.", + "contentSnippet": "McDonald's superfans lined up for the opening of its new CosMc restaurant this morning after details of its menu were unveiled yesterday.", + "guid": "https://www.dailymail.co.uk/yourmoney/consumer/article-12839541/Inside-McDonalds-new-CosMcs-DailyMail-com-visits-new-store-sample-unusual-range-products-including-5-89-Sour-Cherry-Energy-Burst-4-99-Creamy-Avocado-Tomatillo-Sandwich.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:42:22.000Z" + }, + { + "title": "Civil servants demand the right to work a four-day week with no loss of pay as Defra looks to become the first department to try the controversial scheme", + "link": "https://www.dailymail.co.uk/news/article-12839913/Civil-servants-demand-work-four-day-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:19:14 GMT", + "enclosure": { + "length": "6149", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718165-0-image-m-120_1701995045718.jpg" + }, + "content": "Defra staff want a pilot scheme covering 21,000 employees to see if reducing their working hours by 20 per cent improves their wellbeing and productivity.", + "contentSnippet": "Defra staff want a pilot scheme covering 21,000 employees to see if reducing their working hours by 20 per cent improves their wellbeing and productivity.", + "guid": "https://www.dailymail.co.uk/news/article-12839913/Civil-servants-demand-work-four-day-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:19:14.000Z" + }, + { + "title": "Troubling rise of the 'silver snorters': Treatment for over 60s cocaine users has shot up in the last year", + "link": "https://www.dailymail.co.uk/news/article-12840047/rise-silver-snorters-60s-cocaine-users.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:19:05 GMT", + "enclosure": { + "length": "4968", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78720205-0-image-a-58_1701999863525.jpg" + }, + "content": "Patients as old as 90 have been turning up to hospitals after using the class-A drug, many of whom would have suffered seizures and overdoses.", + "contentSnippet": "Patients as old as 90 have been turning up to hospitals after using the class-A drug, many of whom would have suffered seizures and overdoses.", + "guid": "https://www.dailymail.co.uk/news/article-12840047/rise-silver-snorters-60s-cocaine-users.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:19:05.000Z" + }, + { + "title": "Moment man dressed as a PIRATE destroys 5,000 gallons of white wine worth $600,000 in Washington cellar before disappearing into the darkness", + "link": "https://www.dailymail.co.uk/news/article-12839885/PIRATE-destroys-gallons-white-wine-washington.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:06:31 GMT", + "enclosure": { + "length": "7503", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78720311-0-image-m-26_1702000318850.jpg" + }, + "content": "CCTV footage caught the eerie moment a mysterious man in a pirate outfit nonchalantly strolled into Sparkman Cellars in Woodinville, Washington, late at night on Thanksgiving Eve", + "contentSnippet": "CCTV footage caught the eerie moment a mysterious man in a pirate outfit nonchalantly strolled into Sparkman Cellars in Woodinville, Washington, late at night on Thanksgiving Eve", + "guid": "https://www.dailymail.co.uk/news/article-12839885/PIRATE-destroys-gallons-white-wine-washington.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:06:31.000Z" + }, + { + "title": "At Christmas, I like to delegate writing cards to Mrs Utley... along with cooking, cleaning, wrapping gifts and putting up decorations says TOM UTLEY", + "link": "https://www.dailymail.co.uk/news/article-12839443/TOM-UTLEY-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:06:28 GMT", + "enclosure": { + "length": "10637", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711285-0-image-a-24_1701985319402.jpg" + }, + "content": "Years ago an old friend and fellow journalist invented a distinctly uncharitable game, which he and his family used to play when they gathered together for the Christmas festivities.", + "contentSnippet": "Years ago an old friend and fellow journalist invented a distinctly uncharitable game, which he and his family used to play when they gathered together for the Christmas festivities.", + "guid": "https://www.dailymail.co.uk/news/article-12839443/TOM-UTLEY-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:06:28.000Z" + }, + { + "title": "Forest Whitaker's ex-wife Keisha Nash-Whitaker dead at 51 after years-long anorexia battle: Daughter confirms tragic news in heartbreaking post - as source reveals she was suffering from 'intestinal problems' before passing", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838937/Forest-Whitaker-ex-wife-Keisha-Whitaker-dead-51.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 07:00:51 GMT", + "enclosure": { + "length": "10427", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78710053-0-image-m-67_1701982682660.jpg" + }, + "content": "The former couple's daughter\u00a0True Whitaker, 25, confirmed the tragic news on her Instagram account, posting photos of her mother to her Stories on Wednesday.", + "contentSnippet": "The former couple's daughter\u00a0True Whitaker, 25, confirmed the tragic news on her Instagram account, posting photos of her mother to her Stories on Wednesday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838937/Forest-Whitaker-ex-wife-Keisha-Whitaker-dead-51.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T07:00:51.000Z" + }, + { + "title": "Airport worker gets the sack after scrawling sweary message on a baby's suitcase after family checked in 'late'", + "link": "https://www.dailymail.co.uk/news/article-12839955/Airport-worker-sack-sweary-message-baby-suitcase.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 06:45:21 GMT", + "enclosure": { + "length": "6367", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719395-0-image-a-93_1701997971327.jpg" + }, + "content": "Father Mario Lucas (pictured with wife Serena), 40, found the words 'c*** stop checking in late' written with a pen on his seven-month-old son's bag that went in the baggage hold at Stansted.", + "contentSnippet": "Father Mario Lucas (pictured with wife Serena), 40, found the words 'c*** stop checking in late' written with a pen on his seven-month-old son's bag that went in the baggage hold at Stansted.", + "guid": "https://www.dailymail.co.uk/news/article-12839955/Airport-worker-sack-sweary-message-baby-suitcase.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T06:45:21.000Z" + }, + { + "title": "How to make an expensive-looking Christmas wreath for free", + "link": "https://www.dailymail.co.uk/money/bills/article-12838383/How-make-expensive-looking-Christmas-wreath-free.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 06:00:55 GMT", + "enclosure": { + "length": "7699", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78701867-0-image-a-3_1701968956734.jpg" + }, + "content": "Having a Christmas wreath hanging on the front door is the perfect way to kick off celebrations for the yuletide season - but an expense we could all do without.", + "contentSnippet": "Having a Christmas wreath hanging on the front door is the perfect way to kick off celebrations for the yuletide season - but an expense we could all do without.", + "guid": "https://www.dailymail.co.uk/money/bills/article-12838383/How-make-expensive-looking-Christmas-wreath-free.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T06:00:55.000Z" + }, + { + "title": "I'm a retired businessman and fell for an online bitcoin scam\u2026 now I have to sell my house to pay back \u00a330k", + "link": "https://www.dailymail.co.uk/money/beatthescammers/article-12827995/Im-retired-businessman-fell-online-bitcoin-scam-sell-house-pay-30k.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 06:00:52 GMT", + "enclosure": { + "length": "5886", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/05/15/78600839-0-image-a-8_1701788798212.jpg" + }, + "content": "Gary Edmunds, 72, joined a car enthusiasts group on Facebook - but he ended up falling for a bitcoin investment scam and he is now \u00a330k in debt.", + "contentSnippet": "Gary Edmunds, 72, joined a car enthusiasts group on Facebook - but he ended up falling for a bitcoin investment scam and he is now \u00a330k in debt.", + "guid": "https://www.dailymail.co.uk/money/beatthescammers/article-12827995/Im-retired-businessman-fell-online-bitcoin-scam-sell-house-pay-30k.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T06:00:52.000Z" + }, + { + "title": "I want to sell my leasehold home: Will it be worth more after the reform bill?", + "link": "https://www.dailymail.co.uk/money/mortgageshome/article-12832255/I-want-sell-leasehold-home-worth-reform-bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 06:00:49 GMT", + "enclosure": { + "length": "4903", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78698681-0-image-a-61_1701965263894.jpg" + }, + "content": "The new rules could make it cheaper and easier to extend the lease or buy a share of freehold. Would a future buyer then pay more than it is worth today?", + "contentSnippet": "The new rules could make it cheaper and easier to extend the lease or buy a share of freehold. Would a future buyer then pay more than it is worth today?", + "guid": "https://www.dailymail.co.uk/money/mortgageshome/article-12832255/I-want-sell-leasehold-home-worth-reform-bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T06:00:49.000Z" + }, + { + "title": "Seven simple ways to make an extra \u00a31,000 this Christmas, by entrepeneur Tim Armoo", + "link": "https://www.dailymail.co.uk/money/entrepreneuracademy/article-12810041/Seven-simple-ways-make-extra-1-000-Christmas-entrepeneur-Tim-Armoo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 06:00:46 GMT", + "enclosure": { + "length": "6431", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/01/08/78426003-0-image-m-7_1701421183536.jpg" + }, + "content": "Tim Armoo founded Fanbytes aged 21, working with brands like Nike, Samsung and Deliveroo on influencer marketing.", + "contentSnippet": "Tim Armoo founded Fanbytes aged 21, working with brands like Nike, Samsung and Deliveroo on influencer marketing.", + "guid": "https://www.dailymail.co.uk/money/entrepreneuracademy/article-12810041/Seven-simple-ways-make-extra-1-000-Christmas-entrepeneur-Tim-Armoo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T06:00:46.000Z" + }, + { + "title": "Mother-of-two trying to inject 'skinny jab' Ozempic into her body almost died when it turned out to be pure insulin and left her in a coma", + "link": "https://www.dailymail.co.uk/news/article-12839367/mother-inject-skinny-jab-ozempic-insulin-coma.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 04:09:38 GMT", + "enclosure": { + "length": "8981", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710543-0-image-a-4_1701983712857.jpg" + }, + "content": "When Michelle Sword emerged from her near-death experience she recalls doctors asking a series of probing questions as she lay in her hospital bed.", + "contentSnippet": "When Michelle Sword emerged from her near-death experience she recalls doctors asking a series of probing questions as she lay in her hospital bed.", + "guid": "https://www.dailymail.co.uk/news/article-12839367/mother-inject-skinny-jab-ozempic-insulin-coma.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T04:09:38.000Z" + }, + { + "title": "Dame Esther Rantzen, 83, quits Childline after 37 years having been diagnosed with stage four lung cancer", + "link": "https://www.dailymail.co.uk/news/article-12837677/Dame-Esther-Rantzen-quits-Childline-lung-cancer-diagnosis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 03:16:19 GMT", + "enclosure": { + "length": "12091", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78694033-0-image-m-52_1701963822071.jpg" + }, + "content": "The 83-year-old has stepped back as president of the counselling service, having stepped into the role in 2018.", + "contentSnippet": "The 83-year-old has stepped back as president of the counselling service, having stepped into the role in 2018.", + "guid": "https://www.dailymail.co.uk/news/article-12837677/Dame-Esther-Rantzen-quits-Childline-lung-cancer-diagnosis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T03:16:19.000Z" + }, + { + "title": "The grate escape! Lorry containing \u00a350,000 of CHEESE is stolen from motorway service station", + "link": "https://www.dailymail.co.uk/news/article-12840079/Lorry-CHEESE-stolen-service-station.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 03:15:27 GMT", + "enclosure": { + "length": "10846", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78718795-0-image-m-108_1701998601156.jpg" + }, + "content": "The trailer filled with precious dairy cargo was taken from\u00a0Strensham services, near Cheltenham on the M5 on Friday.", + "contentSnippet": "The trailer filled with precious dairy cargo was taken from\u00a0Strensham services, near Cheltenham on the M5 on Friday.", + "guid": "https://www.dailymail.co.uk/news/article-12840079/Lorry-CHEESE-stolen-service-station.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T03:15:27.000Z" + }, + { + "title": "Football chiefs are urged to ban transgender women from playing in women's teams by leading politicians", + "link": "https://www.dailymail.co.uk/news/article-12840069/Football-chiefs-urged-ban-transgender-women-playing-womens-teams-leading-politicians.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 03:15:07 GMT", + "enclosure": { + "length": "5033", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719443-0-image-m-21_1701998145541.jpg" + }, + "content": "Under Football Association rules, players are currently able to register under their 'affirmed gender' rather than their biological sense,", + "contentSnippet": "Under Football Association rules, players are currently able to register under their 'affirmed gender' rather than their biological sense,", + "guid": "https://www.dailymail.co.uk/news/article-12840069/Football-chiefs-urged-ban-transgender-women-playing-womens-teams-leading-politicians.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T03:15:07.000Z" + }, + { + "title": "I'm A Celebrity elimination results: Danielle Harold is the fifth campmate to be voted out and joins eliminated stars in backing Sam Thompson to win", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839571/im-celebrity-elimination-results-Danielle-Harold-left-jungle-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 02:24:15 GMT", + "enclosure": { + "length": "11310", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/23/78715701-0-image-a-240_1701990300502.jpg" + }, + "content": "The\u00a0EastEnders actress, 31, left the camp after 30 days after losing out to Tony Bellew in the public vote after they came in the bottom two in the latest elimination.", + "contentSnippet": "The\u00a0EastEnders actress, 31, left the camp after 30 days after losing out to Tony Bellew in the public vote after they came in the bottom two in the latest elimination.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839571/im-celebrity-elimination-results-Danielle-Harold-left-jungle-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T02:24:15.000Z" + }, + { + "title": "Avatar: Frontiers of Pandora review - There's little surprising in this game, but it's one of the most beautiful settings I've ever visited, writes PETER HOSKIN", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12840087/Avatar-Frontiers-Pandora-review-Theres-little-surprising-game-one-beautiful-settings-Ive-visited-writes-PETER-HOSKIN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 02:10:06 GMT", + "enclosure": { + "length": "12095", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719979-0-image-a-149_1701999162199.jpg" + }, + "content": "PETER HOSKIN: Avatar : The Game - or, to allow it its official title, Avatar: Frontiers Of Pandora - sure is like Avatar: The Movies. In both good and bad ways.", + "contentSnippet": "PETER HOSKIN: Avatar : The Game - or, to allow it its official title, Avatar: Frontiers Of Pandora - sure is like Avatar: The Movies. In both good and bad ways.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12840087/Avatar-Frontiers-Pandora-review-Theres-little-surprising-game-one-beautiful-settings-Ive-visited-writes-PETER-HOSKIN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T02:10:06.000Z" + }, + { + "title": "Israel warns Hamas 'sleeper cells' could be activated amid fears of attacks across Europe over Christmas", + "link": "https://www.dailymail.co.uk/news/article-12838539/Israel-Hamas-cells-activate-Europe-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 02:09:49 GMT", + "enclosure": { + "length": "5593", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78706385-0-image-m-15_1701977951098.jpg" + }, + "content": "The EU this week warned that there is a 'huge risk of terrorist attacks' over the Christmas period, with community tensions inflamed by anger over the Israel-Hamas war.", + "contentSnippet": "The EU this week warned that there is a 'huge risk of terrorist attacks' over the Christmas period, with community tensions inflamed by anger over the Israel-Hamas war.", + "guid": "https://www.dailymail.co.uk/news/article-12838539/Israel-Hamas-cells-activate-Europe-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T02:09:49.000Z" + }, + { + "title": "Oliver! review: This revival is an absolute whopper of a show chock full of pre-loaded ear-worms, writes PATRICK MARMION", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12840077/Oliver-review-revival-absolute-whopper-chock-pre-loaded-ear-worms-writes-PATRICK-MARMION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 02:09:04 GMT", + "enclosure": { + "length": "9283", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719965-0-image-a-73_1701999131542.jpg" + }, + "content": "PATRICK MARMION: What is the greatest British musical of all time? The cascading Les Mis? The haunting Phantom? Or maybe the saucy, evergreen Rocky Horror Show?", + "contentSnippet": "PATRICK MARMION: What is the greatest British musical of all time? The cascading Les Mis? The haunting Phantom? Or maybe the saucy, evergreen Rocky Horror Show?", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12840077/Oliver-review-revival-absolute-whopper-chock-pre-loaded-ear-worms-writes-PATRICK-MARMION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T02:09:04.000Z" + }, + { + "title": "Rabbi sensationally QUITS Harvard's antisemitism taskforce because 'the ideology that grips far too many students and faculty ... is evil': 'Ignoring Jewish suffering is evil'", + "link": "https://www.dailymail.co.uk/news/article-12839895/david-wolpe-rabbi-harvard-quits-antisemitism-taskforce.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 02:00:15 GMT", + "enclosure": { + "length": "13268", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719591-0-image-a-4_1701999868999.jpg" + }, + "content": "David Wolpe, appointed to the eight-member antisemitism taskforce created by Harvard's president in October, said on Thursday he realized he could not 'make the sort of difference I had hoped'.", + "contentSnippet": "David Wolpe, appointed to the eight-member antisemitism taskforce created by Harvard's president in October, said on Thursday he realized he could not 'make the sort of difference I had hoped'.", + "guid": "https://www.dailymail.co.uk/news/article-12839895/david-wolpe-rabbi-harvard-quits-antisemitism-taskforce.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T02:00:15.000Z" + }, + { + "title": "'Angel of Death' Beverley Allitt who murdered four children and injured three others has jail move blocked - crushing her bid for freedom", + "link": "https://www.dailymail.co.uk/news/article-12840067/Angel-Death-Beverley-Allitt-murder-jail-blocked-bid-freedom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:59:03 GMT", + "enclosure": { + "length": "4548", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78720469-0-image-m-111_1702000399991.jpg" + }, + "content": "Baby killer Beverley Allitt (pictured), the 'Angel of Death', who murdered four children and injured three others has had a move to a lower category of prison blocked in a crushing blow to her bid for freedom.", + "contentSnippet": "Baby killer Beverley Allitt (pictured), the 'Angel of Death', who murdered four children and injured three others has had a move to a lower category of prison blocked in a crushing blow to her bid for freedom.", + "guid": "https://www.dailymail.co.uk/news/article-12840067/Angel-Death-Beverley-Allitt-murder-jail-blocked-bid-freedom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:59:03.000Z" + }, + { + "title": "Fed-up Mancunians DEFY orders to not disrupt Chanel's Metiers d'Art fashion show: Locals belt out karaoke and hold protest rally yards from the outdoor catwalk that forced roads to close during A-list event they were banned from watching from balconies", + "link": "https://www.dailymail.co.uk/news/article-12838973/Manchester-locals-DEFY-orders-not-disrupt-Chanel-fashion-holding-pro-Palestine-rally-outside-catwalk-singing-karaoke-corner-mock-organisers-picking-rainiest-city-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:58:49 GMT", + "enclosure": { + "length": "11783", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78707169-0-image-a-9_1701978955043.jpg" + }, + "content": "Famous faces from all around the world descended onto the unassuming street in the Northern Quarter of the city despite a furious uproar from residents and local businesses.", + "contentSnippet": "Famous faces from all around the world descended onto the unassuming street in the Northern Quarter of the city despite a furious uproar from residents and local businesses.", + "guid": "https://www.dailymail.co.uk/news/article-12838973/Manchester-locals-DEFY-orders-not-disrupt-Chanel-fashion-holding-pro-Palestine-rally-outside-catwalk-singing-karaoke-corner-mock-organisers-picking-rainiest-city-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:58:49.000Z" + }, + { + "title": "Boris Johnson recalls his own hospital ordeal and says it is 'simply not right' to claim he didn't care about other people's suffering in an emotional second day of evidence at the Covid Inquiry", + "link": "https://www.dailymail.co.uk/news/article-12840115/Boris-Johnson-recalls-hospital-ordeal-says-simply-not-right-claim-didnt-care-peoples-suffering-emotional-second-day-evidence-Covid-Inquiry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:56:55 GMT", + "enclosure": { + "length": "10270", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719849-0-image-a-20_1701998868290.jpg" + }, + "content": "Hugo Keith KC, quizzed Mr Johnson about rule breaking in No 10 during the pandemic and put it to the former PM that 'you knew how it would look but you didn't care that much'.", + "contentSnippet": "Hugo Keith KC, quizzed Mr Johnson about rule breaking in No 10 during the pandemic and put it to the former PM that 'you knew how it would look but you didn't care that much'.", + "guid": "https://www.dailymail.co.uk/news/article-12840115/Boris-Johnson-recalls-hospital-ordeal-says-simply-not-right-claim-didnt-care-peoples-suffering-emotional-second-day-evidence-Covid-Inquiry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:56:55.000Z" + }, + { + "title": "Bristol University axes the National Anthem from graduation ceremonies amid students' claims it is 'old-fashioned' and 'offensive to some'", + "link": "https://www.dailymail.co.uk/news/article-12839925/Bristol-University-axes-National-Anthem-graduation-ceremonies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:56:30 GMT", + "enclosure": { + "length": "9658", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718637-0-image-a-44_1701996017004.jpg" + }, + "content": "The anthem has not been played since last year's ceremony with the university saying it regularly updates its graduation ceremonies.", + "contentSnippet": "The anthem has not been played since last year's ceremony with the university saying it regularly updates its graduation ceremonies.", + "guid": "https://www.dailymail.co.uk/news/article-12839925/Bristol-University-axes-National-Anthem-graduation-ceremonies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:56:30.000Z" + }, + { + "title": "Camilla gives TV's Queen of Mean Anne Robinson her royal seal of approval for dating her ex-husband and has even 'joked about a double date' with the King", + "link": "https://www.dailymail.co.uk/news/article-12840029/anne-robinson-dating-camilla-ex-husband-approval.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:50:29 GMT", + "enclosure": { + "length": "10135", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719599-0-image-m-60_1701998681582.jpg" + }, + "content": "The former Weakest Link presenter, 79, has been in a secret relationship with Andrew Parker Bowles for more than a year.", + "contentSnippet": "The former Weakest Link presenter, 79, has been in a secret relationship with Andrew Parker Bowles for more than a year.", + "guid": "https://www.dailymail.co.uk/news/article-12840029/anne-robinson-dating-camilla-ex-husband-approval.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:50:29.000Z" + }, + { + "title": "Jewish leaders say Chanukah celebration will go on as planned despite rise in antisemitism since start of Israel-Hamas war as cities light menorahs to mark the eight-day celebration", + "link": "https://www.dailymail.co.uk/news/article-12834347/Jewish-leaders-say-Chanukah-celebration-planned-despite-rise-antisemitism-start-Israel-Hamas-war-cities-light-menorahs-mark-eight-day-celebration.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:41:22 GMT", + "enclosure": { + "length": "8191", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78707243-0-image-a-12_1701980974434.jpg" + }, + "content": "Menorah lightings are taking place all over the country as the world continues to grapple with the atrocities of the October 7 Hamas attack on Israel and rising anti-Semitism.", + "contentSnippet": "Menorah lightings are taking place all over the country as the world continues to grapple with the atrocities of the October 7 Hamas attack on Israel and rising anti-Semitism.", + "guid": "https://www.dailymail.co.uk/news/article-12834347/Jewish-leaders-say-Chanukah-celebration-planned-despite-rise-antisemitism-start-Israel-Hamas-war-cities-light-menorahs-mark-eight-day-celebration.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:41:22.000Z" + }, + { + "title": "Ofsted halts school inspections next week to rollout new training after Ruth Perry inquest finds it had 'likely contributed' to headteacher's suicide", + "link": "https://www.dailymail.co.uk/news/article-12839989/Ofsted-halts-school-inspections-week-rollout-new-training-Ruth-Perry-inquest-finds-likely-contributed-headteachers-suicide.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:40:22 GMT", + "enclosure": { + "length": "5513", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/12/78689797-0-image-m-69_1701953584829.jpg" + }, + "content": "The inquest heard the headteacher had been left 'completely devastated' in the weeks following the watchdog's 'intimidating' inspection into Caversham Primary School in Reading last year.", + "contentSnippet": "The inquest heard the headteacher had been left 'completely devastated' in the weeks following the watchdog's 'intimidating' inspection into Caversham Primary School in Reading last year.", + "guid": "https://www.dailymail.co.uk/news/article-12839989/Ofsted-halts-school-inspections-week-rollout-new-training-Ruth-Perry-inquest-finds-likely-contributed-headteachers-suicide.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:40:22.000Z" + }, + { + "title": "Tina's simply the best and Bryan Ferry and Bob Marley are Christmas crackers, too: ADRIAN THRILLS rounds up the reissues, box sets and greatest hits albums that make for the best presents", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839323/Tina-Turner-simply-best-Bryan-Ferry-Bob-Marley-Christmas-crackers-ADRIAN-THRILLS-reissues-box-sets-greatest-hits-albums-best-presents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:29:17 GMT", + "enclosure": { + "length": "10498", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710551-0-image-a-18_1701983788842.jpg" + }, + "content": "ADRIAN THRILLS: As Christmas approaches, a fresh batch of deluxe reissues, box sets and greatest hits albums make great presents. The Mail's music critic rounds up the best.", + "contentSnippet": "ADRIAN THRILLS: As Christmas approaches, a fresh batch of deluxe reissues, box sets and greatest hits albums make great presents. The Mail's music critic rounds up the best.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839323/Tina-Turner-simply-best-Bryan-Ferry-Bob-Marley-Christmas-crackers-ADRIAN-THRILLS-reissues-box-sets-greatest-hits-albums-best-presents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:29:17.000Z" + }, + { + "title": "Hugh Jackman takes a swipe at\u00a0Deadpool 3 co-star Ryan Reynolds after worrying photo emerges of Aussie heartthrob looking sad", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839713/Hugh-Jackman-takes-swipe-Deadpool-3-star-Ryan-Reynolds-worrying-photo-emerges-Aussie-heartthrob-looking-sad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:25:03 GMT", + "enclosure": { + "length": "8073", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78717961-0-image-m-20_1701996240590.jpg" + }, + "content": "Hugh Jackman has taken a swipe at his Deadpool co-star Ryan Reynolds after\u00a0a recent grumpy-looking selfie of the actor raised concerns among fans.\u00a0", + "contentSnippet": "Hugh Jackman has taken a swipe at his Deadpool co-star Ryan Reynolds after\u00a0a recent grumpy-looking selfie of the actor raised concerns among fans.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839713/Hugh-Jackman-takes-swipe-Deadpool-3-star-Ryan-Reynolds-worrying-photo-emerges-Aussie-heartthrob-looking-sad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:25:03.000Z" + }, + { + "title": "Fur Babies review: Brits dote on their pets - and I've got a show everyone will lap up, writes CHRISTOPHER STEVENS", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839985/Fur-Babies-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:22:06 GMT", + "enclosure": { + "length": "10070", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718881-0-image-m-77_1701997177502.jpg" + }, + "content": "Hang on, I'm having a brainwave. Nothing to worry about, it will pass in a moment, but I have to tell you this idea.", + "contentSnippet": "Hang on, I'm having a brainwave. Nothing to worry about, it will pass in a moment, but I have to tell you this idea.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839985/Fur-Babies-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:22:06.000Z" + }, + { + "title": "Joey Barton doubles down on his criticism of female broadcasters working in men's football in Piers Morgan interview as he blames 'woke agenda' and insists 'it's not to do with sexism at all'", + "link": "https://www.dailymail.co.uk/sport/football/article-12839413/Joey-Barton-criticism-female-broadcasters-mens-football-Piers-Morgan-interview-woke-agenda-sexism.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:13:03 GMT", + "enclosure": { + "length": "9434", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/01/78719347-0-image-a-6_1701997649957.jpg" + }, + "content": "Barton shared a series of misogynistic posts on social media on Wednesday that floated the idea that 'women shouldn't be talking with any kind of authority in the men's game'.", + "contentSnippet": "Barton shared a series of misogynistic posts on social media on Wednesday that floated the idea that 'women shouldn't be talking with any kind of authority in the men's game'.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12839413/Joey-Barton-criticism-female-broadcasters-mens-football-Piers-Morgan-interview-woke-agenda-sexism.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:13:03.000Z" + }, + { + "title": "ALISON BOSHOFF: It's the end of the line for The Crown, but speculation is raging over what the show's creator Peter Morgan could do next... As rumours swarm a new series about all the royal scandals he left out could be next", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838769/ALISON-BOSHOFF-end-line-Crown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 01:07:40 GMT", + "enclosure": { + "length": "9263", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709469-0-image-a-48_1701981760568.jpg" + }, + "content": "ALISON BOSHOFF: Speculation rages over what The Crown's writer might do next, with rumours circulating that a new show about royal scandals left out of the latest series could be next.", + "contentSnippet": "ALISON BOSHOFF: Speculation rages over what The Crown's writer might do next, with rumours circulating that a new show about royal scandals left out of the latest series could be next.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838769/ALISON-BOSHOFF-end-line-Crown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T01:07:40.000Z" + }, + { + "title": "Adele reveals the real reason why she doesn't want to move back to the UK", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839887/Adele-reveals-real-reason-doesnt-want-UK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:56:26 GMT", + "enclosure": { + "length": "11000", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718841-0-image-a-149_1701996743610.jpg" + }, + "content": "The London-born singer, 35, has revealed the real reason why she doesn't want to move back to the UK.", + "contentSnippet": "The London-born singer, 35, has revealed the real reason why she doesn't want to move back to the UK.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839887/Adele-reveals-real-reason-doesnt-want-UK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:56:26.000Z" + }, + { + "title": "Residents in Highland town are shocked by a warning that a great white shark is lurking off the coast... only to discover they were mixed up with a town in New Zealand", + "link": "https://www.dailymail.co.uk/news/article-12839975/Residents-Highland-town-shocked-warning-great-white-shark-lurking-coast-discover-mixed-town-New-Zealand.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:54:26 GMT", + "enclosure": { + "length": "6284", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718603-0-image-a-11_1701996244822.jpg" + }, + "content": "The alarm was raised about the presence of the giant predator to locals who had set up Google alerts for any breaking news about Fortrose, Ross-shire.", + "contentSnippet": "The alarm was raised about the presence of the giant predator to locals who had set up Google alerts for any breaking news about Fortrose, Ross-shire.", + "guid": "https://www.dailymail.co.uk/news/article-12839975/Residents-Highland-town-shocked-warning-great-white-shark-lurking-coast-discover-mixed-town-New-Zealand.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:54:26.000Z" + }, + { + "title": "How did Axminster become so associated with carpets? What became of the industry?", + "link": "https://www.dailymail.co.uk/news/article-12839939/How-did-Axminster-associated-carpets-industry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:53:38 GMT", + "enclosure": { + "length": "12616", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718519-0-image-m-133_1701995666600.jpg" + }, + "content": "ANSWERS TO CORRESPONDENTS: The market town of Axminster, on the River Axe in Devon, is synonymous with the manufacture of luxuriously woven carpets.", + "contentSnippet": "ANSWERS TO CORRESPONDENTS: The market town of Axminster, on the River Axe in Devon, is synonymous with the manufacture of luxuriously woven carpets.", + "guid": "https://www.dailymail.co.uk/news/article-12839939/How-did-Axminster-associated-carpets-industry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:53:38.000Z" + }, + { + "title": "I'm A Celebrity's Danielle Harold bursts into tears as her mother greets her on the bridge with a warm hug after she becomes fifth star voted out", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839815/Im-Celebritys-Danielle-Harold-tears-mother-greets-bridge-hug-voted-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:51:50 GMT", + "enclosure": { + "length": "11205", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78718055-0-image-m-94_1701994663144.jpg" + }, + "content": "The\u00a0EastEnders\u00a0actress, 31, was sent home\u00a0from camp after losing\u00a0out to Tony Bellew in the public vote after they ended up in the bottom two.", + "contentSnippet": "The\u00a0EastEnders\u00a0actress, 31, was sent home\u00a0from camp after losing\u00a0out to Tony Bellew in the public vote after they ended up in the bottom two.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839815/Im-Celebritys-Danielle-Harold-tears-mother-greets-bridge-hug-voted-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:51:50.000Z" + }, + { + "title": "Cher reflects on the loss of her 'amazing, kick-ass' mother but admits they sometimes had a 'rocky' relationship: 'We were two really strong women!'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839529/Cher-reflects-loss-mother-admits-rocky-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:48:55 GMT", + "enclosure": { + "length": "10823", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78715127-0-image-a-63_1701989563873.jpg" + }, + "content": "Cher has reflected on the loss of her 'amazing, kick-ass' mother in a candid new interview.", + "contentSnippet": "Cher has reflected on the loss of her 'amazing, kick-ass' mother in a candid new interview.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839529/Cher-reflects-loss-mother-admits-rocky-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:48:55.000Z" + }, + { + "title": "Celebs went for black and white... with very little underneath:\u00a0SHANE WATSON gives her fashion verdict on the Chanel Metiers d'Art show in Manchester", + "link": "https://www.dailymail.co.uk/femail/article-12839727/Celebs-went-black-white-little-underneath-SHANE-WATSON-gives-fashion-verdict-Chanel-Metiers-dArt-Manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:37:34 GMT", + "enclosure": { + "length": "11543", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/23/78716705-0-image-a-35_1701991942971.jpg" + }, + "content": "SHANE WATSON: This year the French fashion house transformed Thomas Street in Manchester's Northern Quarter for one night only into a glass canopy-covered catwalk.", + "contentSnippet": "SHANE WATSON: This year the French fashion house transformed Thomas Street in Manchester's Northern Quarter for one night only into a glass canopy-covered catwalk.", + "guid": "https://www.dailymail.co.uk/femail/article-12839727/Celebs-went-black-white-little-underneath-SHANE-WATSON-gives-fashion-verdict-Chanel-Metiers-dArt-Manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:37:34.000Z" + }, + { + "title": "Elf and safety? 21 million Brits injure themselves preparing for Christmas, research suggests", + "link": "https://www.dailymail.co.uk/news/article-12839509/Elf-safety-21-million-Brits-injure-preparing-Christmas-research-suggests.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:32:56 GMT", + "enclosure": { + "length": "10237", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714473-0-image-a-4_1701988521969.jpg" + }, + "content": "The kitchen can be a dangerous place, with 6 per cent of people burning themselves on hot oil, for example while basting the turkey.", + "contentSnippet": "The kitchen can be a dangerous place, with 6 per cent of people burning themselves on hot oil, for example while basting the turkey.", + "guid": "https://www.dailymail.co.uk/news/article-12839509/Elf-safety-21-million-Brits-injure-preparing-Christmas-research-suggests.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:32:56.000Z" + }, + { + "title": "Elon Musk demands Disney's Bob Iger resign after pulling ads from X - after telling him and other advertisers to 'go f**k yourselves': 'Walt Disney is turning in his grave over what Bob has done to his company'", + "link": "https://www.dailymail.co.uk/news/article-12839061/Elon-Musk-demands-Disneys-Bob-Iger-reisgn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:32:02 GMT", + "enclosure": { + "length": "11433", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710319-0-image-a-40_1701986051514.jpg" + }, + "content": "Elon Musk took to X to hit out at Bob Iger and call for his immediate resignation after the Disney CEO pulled adverts from his platform.", + "contentSnippet": "Elon Musk took to X to hit out at Bob Iger and call for his immediate resignation after the Disney CEO pulled adverts from his platform.", + "guid": "https://www.dailymail.co.uk/news/article-12839061/Elon-Musk-demands-Disneys-Bob-Iger-reisgn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:32:02.000Z" + }, + { + "title": "Moment mother comes face to face with lifelike statue of her hero son who declared 'glory to Ukraine' as he was executed by Russian captors", + "link": "https://www.dailymail.co.uk/news/article-12839803/mother-comes-face-statue-son-glory-Ukraine-executed-Russian.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:29:50 GMT", + "enclosure": { + "length": "7438", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78717455-0-image-m-68_1701995176672.jpg" + }, + "content": "Oleksandr Matsievskiy, 42, was murdered by Putin's soldiers near Bakhmut in the Donetsk region of eastern Ukraine in March this year, with footage of the horrific act going viral on social media.", + "contentSnippet": "Oleksandr Matsievskiy, 42, was murdered by Putin's soldiers near Bakhmut in the Donetsk region of eastern Ukraine in March this year, with footage of the horrific act going viral on social media.", + "guid": "https://www.dailymail.co.uk/news/article-12839803/mother-comes-face-statue-son-glory-Ukraine-executed-Russian.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:29:50.000Z" + }, + { + "title": "Strikes have cost the NHS \u00a32 billion in lost appointments and overtime... and they're not over yet", + "link": "https://www.dailymail.co.uk/news/article-12839897/Strikes-cost-NHS-2-billion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:29:28 GMT", + "enclosure": { + "length": "11395", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78717849-0-image-m-97_1701994323355.jpg" + }, + "content": "The figure was disclosed yesterday at an NHS England board meeting, where bosses admitted junior doctors could not have chosen a worse time to walkout than over Christmas and New Year.", + "contentSnippet": "The figure was disclosed yesterday at an NHS England board meeting, where bosses admitted junior doctors could not have chosen a worse time to walkout than over Christmas and New Year.", + "guid": "https://www.dailymail.co.uk/news/article-12839897/Strikes-cost-NHS-2-billion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:29:28.000Z" + }, + { + "title": "Russian despot Vladimir Putin says his country's alliance with Iran has helped gain 'good momentum' in the Ukraine war as he meets with Raisi in Tehran", + "link": "https://www.dailymail.co.uk/news/article-12839543/Russia-Vladimir-Putin-alliance-Iran-gain-good-momentum-Ukraine-war-Raisi-Tehran.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:15:31 GMT", + "enclosure": { + "length": "6192", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/00/78717489-0-image-a-44_1701994036084.jpg" + }, + "content": "The despot conveyed his thanks to Ayatollah Ali Khamenei, for helping turn the tide in Ukraine - despite reports of heavy Russian losses in recent weeks and months.", + "contentSnippet": "The despot conveyed his thanks to Ayatollah Ali Khamenei, for helping turn the tide in Ukraine - despite reports of heavy Russian losses in recent weeks and months.", + "guid": "https://www.dailymail.co.uk/news/article-12839543/Russia-Vladimir-Putin-alliance-Iran-gain-good-momentum-Ukraine-war-Raisi-Tehran.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:15:31.000Z" + }, + { + "title": "Kristen Stewart shows off her signature style in a tweed ensemble as she joins fashionable Lucy Boynton at\u00a0the Chanel Metiers d'Art show", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838705/Hollywood-stars-attend-Chanel-Metiers-dArt-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:15:30 GMT", + "enclosure": { + "length": "11261", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78705005-0-image-a-69_1701974147360.jpg" + }, + "content": "The actresses both showed off their signature senses of style as they made quite the entrance to the glitzy fashion show.", + "contentSnippet": "The actresses both showed off their signature senses of style as they made quite the entrance to the glitzy fashion show.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838705/Hollywood-stars-attend-Chanel-Metiers-dArt-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:15:30.000Z" + }, + { + "title": "Hospital sent widow video of husband's death. Grieving wife tells Covid Inquiry how she was banned from visiting ward - and sent memory stick of his final moments", + "link": "https://www.dailymail.co.uk/news/article-12838915/Hospital-covid-inquiry-death-wife-sent-video-banned-ward.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 08 Dec 2023 00:06:35 GMT", + "enclosure": { + "length": "12098", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78705479-0-image-m-16_1701987452021.jpg" + }, + "content": "A hospital filmed the death of a Covid victim before sending the video to his wife. She was refused permission to sit with her husband Mark as he lay dying on a ventilator.", + "contentSnippet": "A hospital filmed the death of a Covid victim before sending the video to his wife. She was refused permission to sit with her husband Mark as he lay dying on a ventilator.", + "guid": "https://www.dailymail.co.uk/news/article-12838915/Hospital-covid-inquiry-death-wife-sent-video-banned-ward.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-08T00:06:35.000Z" + }, + { + "title": "Culture Secretary Lucy Frazer says it is 'morally indefensible' to threaten to jail TV licence defaulters", + "link": "https://www.dailymail.co.uk/news/article-12839575/Lucy-Frazer-jail-TV-licence-defaulters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:55:26 GMT", + "enclosure": { + "length": "10401", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78713087-0-image-a-21_1701987053046.jpg" + }, + "content": "Lucy Frazer's hard-hitting comments came as she announced a \u00a310.50 rise in the annual fee - far lower than the increase sought by the BBC.", + "contentSnippet": "Lucy Frazer's hard-hitting comments came as she announced a \u00a310.50 rise in the annual fee - far lower than the increase sought by the BBC.", + "guid": "https://www.dailymail.co.uk/news/article-12839575/Lucy-Frazer-jail-TV-licence-defaulters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:55:26.000Z" + }, + { + "title": "Switching Prime Minister AGAIN would be 'insanity', warring Tories are warned as Rishi Sunak's Rwanda bill is blasted by both the Left and Right of the party", + "link": "https://www.dailymail.co.uk/news/article-12839555/Switching-Prime-Minister-insanity-Tories-Rishi-Sunaks-Rwanda.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:53:37 GMT", + "enclosure": { + "length": "6055", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78713093-0-image-m-47_1701987090835.jpg" + }, + "content": "MPs will vote on Tuesday on the principle of whether to tighten the law in response to the Supreme Court 's rejection of the scheme last month.", + "contentSnippet": "MPs will vote on Tuesday on the principle of whether to tighten the law in response to the Supreme Court 's rejection of the scheme last month.", + "guid": "https://www.dailymail.co.uk/news/article-12839555/Switching-Prime-Minister-insanity-Tories-Rishi-Sunaks-Rwanda.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:53:37.000Z" + }, + { + "title": "Jonathan Majors' ex-girlfriend Grace Jabbari breaks down in NYC court room before pleading not to watch police bodycam footage of her being quizzed by cops after alleged assault", + "link": "https://www.dailymail.co.uk/usshowbiz/article-12839657/Jonathan-Majors-Grace-Jabbari-assault-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:48:44 GMT", + "enclosure": { + "length": "10641", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/23/78716403-0-image-a-9_1701991696893.jpg" + }, + "content": "Grace Jabbari (left) sobbed on the stand during cross examination in her third day testifying in the Jonathan Majors (right) assault trial.", + "contentSnippet": "Grace Jabbari (left) sobbed on the stand during cross examination in her third day testifying in the Jonathan Majors (right) assault trial.", + "guid": "https://www.dailymail.co.uk/usshowbiz/article-12839657/Jonathan-Majors-Grace-Jabbari-assault-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:48:44.000Z" + }, + { + "title": "EPHRAIM HARDCASTLE: Robert Jenrick once encouraged hundreds of foreign artists, dancers and writers to come to Britain... But now clarions his passion for immigration curbs", + "link": "https://www.dailymail.co.uk/debate/article-12839731/EPHRAIM-HARDCASTLE-Robert-Jenrick-encouraged-hundreds-foreign-artists-dancers-writers-come-Britain-clarions-passion-immigration-curbs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:43:18 GMT", + "enclosure": { + "length": "7772", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/23/78712995-0-image-m-68_1701991094561.jpg" + }, + "content": "EPHRAIM HARDCASTLE: Could this be the same man who encouraged foreign artists, dancers and writers to come to the UK using the little-known Home Office scheme?", + "contentSnippet": "EPHRAIM HARDCASTLE: Could this be the same man who encouraged foreign artists, dancers and writers to come to the UK using the little-known Home Office scheme?", + "guid": "https://www.dailymail.co.uk/debate/article-12839731/EPHRAIM-HARDCASTLE-Robert-Jenrick-encouraged-hundreds-foreign-artists-dancers-writers-come-Britain-clarions-passion-immigration-curbs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:43:18.000Z" + }, + { + "title": "Chicken Run: Dawn Of The Nugget review - You'll wish these chickens the best of cluck in this eggscelent sequel... I give it FIVE STARS! writes BRIAN VINER", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839349/chicken-run-dawn-nugget-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:39:04 GMT", + "enclosure": { + "length": "12553", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710759-0-image-a-41_1701984113767.jpg" + }, + "content": "BRIAN VINER: Every so often a film comes along that makes you smile even before you've seen it, purely on account of the title.", + "contentSnippet": "BRIAN VINER: Every so often a film comes along that makes you smile even before you've seen it, purely on account of the title.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839349/chicken-run-dawn-nugget-review.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:39:04.000Z" + }, + { + "title": "ANDREW PIERCE: The Tory party's mood right now is as fractious as it was when Liz Truss was toppled.. It's not inconceivable Rishi Sunak could face a leadership challenge next year", + "link": "https://www.dailymail.co.uk/debate/article-12839593/Rishi-Sunak-leadership-challenge-ANDREW-PIERCE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:34:15 GMT", + "enclosure": { + "length": "10566", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714471-0-image-a-57_1701988504303.jpg" + }, + "content": "ANDREW PIERCE: After the PM's bravura performance in front of the 1922 Committee of backbenchers, dozens of Tory MPs banged their desks to show support for the embattled Rishi Sunak.", + "contentSnippet": "ANDREW PIERCE: After the PM's bravura performance in front of the 1922 Committee of backbenchers, dozens of Tory MPs banged their desks to show support for the embattled Rishi Sunak.", + "guid": "https://www.dailymail.co.uk/debate/article-12839593/Rishi-Sunak-leadership-challenge-ANDREW-PIERCE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:34:15.000Z" + }, + { + "title": "QUENTIN LETTS: Biffy Rishi was angrier than Oliver Cromwell's wart as he addressed the latest Tory infighting at an emergency news conference", + "link": "https://www.dailymail.co.uk/debate/article-12839523/QUENTIN-LETTS-Rishi-angrier-Tory-infighting-news-conference.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:32:35 GMT", + "enclosure": { + "length": "10312", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78712929-0-image-a-53_1701986827953.jpg" + }, + "content": "QUENTIN LETTS: There is something rather liberating when a polite technocrat loses his rag. Boy, Rishi Sunak was cross. The PM called a news conference to address the Tory infighting.", + "contentSnippet": "QUENTIN LETTS: There is something rather liberating when a polite technocrat loses his rag. Boy, Rishi Sunak was cross. The PM called a news conference to address the Tory infighting.", + "guid": "https://www.dailymail.co.uk/debate/article-12839523/QUENTIN-LETTS-Rishi-angrier-Tory-infighting-news-conference.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:32:35.000Z" + }, + { + "title": "'F*** YOU, Daily Mail!' Covid Inquiry hears the cry then-PM (and now must-read columnist) Boris Johnson made at the height of the pandemic\u2026 proof everyone falls in love with us in the end!", + "link": "https://www.dailymail.co.uk/news/article-12839391/Boris-Johnson-F-Daily-Mail-Covid-Inquiry-hears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:24:07 GMT", + "enclosure": { + "length": "3752", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78712861-0-image-m-30_1701987166535.jpg" + }, + "content": "Yesterday the Covid inquiry was shocked to hear that Boris Johnson exclaimed: 'F*** YOU Daily Mail!' at the height of the pandemic.", + "contentSnippet": "Yesterday the Covid inquiry was shocked to hear that Boris Johnson exclaimed: 'F*** YOU Daily Mail!' at the height of the pandemic.", + "guid": "https://www.dailymail.co.uk/news/article-12839391/Boris-Johnson-F-Daily-Mail-Covid-Inquiry-hears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:24:07.000Z" + }, + { + "title": "The cost of the Rwanda scheme has doubled to \u00a3300 million despite never having been used, the Home Office reveals", + "link": "https://www.dailymail.co.uk/news/article-12839625/The-cost-Rwanda-scheme-doubled-300-million-despite-never-having-used-Home-Office-reveals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:19:15 GMT", + "enclosure": { + "length": "8396", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714121-0-image-a-58_1701988238268.jpg" + }, + "content": "Whitehall sources told the Mail ministers had signed off payments totalling a further \u00a3100million to the east African state on top of the original \u00a3140million cost.", + "contentSnippet": "Whitehall sources told the Mail ministers had signed off payments totalling a further \u00a3100million to the east African state on top of the original \u00a3140million cost.", + "guid": "https://www.dailymail.co.uk/news/article-12839625/The-cost-Rwanda-scheme-doubled-300-million-despite-never-having-used-Home-Office-reveals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:19:15.000Z" + }, + { + "title": "LUCY FRAZER: Why I've capped the TV licence fee rise... There is no legitimate case for increasing it in the current climate", + "link": "https://www.dailymail.co.uk/news/article-12839577/LUCY-FRAZER-TV-licence-fee.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:11:00 GMT", + "enclosure": { + "length": "4884", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714971-0-image-m-64_1701989356827.jpg" + }, + "content": "We are not complacent - we know inflation in some areas is proving more persistent.", + "contentSnippet": "We are not complacent - we know inflation in some areas is proving more persistent.", + "guid": "https://www.dailymail.co.uk/news/article-12839577/LUCY-FRAZER-TV-licence-fee.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:11:00.000Z" + }, + { + "title": "Queen Mathilde of Belgium enjoys a beverage as she joins King Philippe at a Christmas market in Germany", + "link": "https://www.dailymail.co.uk/femail/article-12839169/Queen-Mathilde-Belgium-enjoys-beverage-joins-King-Philippe-Christmas-market-Germany.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 23:07:54 GMT", + "enclosure": { + "length": "10662", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78713175-0-image-a-149_1701987227312.jpg" + }, + "content": "The happy couple visited the festive stalls at the Frauenkirche in Dresden, where they soaked up the vibrant Christmas atmosphere.", + "contentSnippet": "The happy couple visited the festive stalls at the Frauenkirche in Dresden, where they soaked up the vibrant Christmas atmosphere.", + "guid": "https://www.dailymail.co.uk/femail/article-12839169/Queen-Mathilde-Belgium-enjoys-beverage-joins-King-Philippe-Christmas-market-Germany.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T23:07:54.000Z" + }, + { + "title": "Pornstar Adam22 claims it 'takes a REAL man to share his wife' as he and spouse Lena the Plug prepare to debut video of THREESOME with man who won a competition to join them in their marital bed", + "link": "https://www.dailymail.co.uk/femail/article-12839373/Pornstar-Adam22-wife-Lena-Plug-THREESOME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:55:57 GMT", + "enclosure": { + "length": "11093", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78713555-0-image-a-37_1701987698582.jpg" + }, + "content": "Adam22 has claimed it takes a 'real man' to let his wife sleep with another man as he and his pornstar wife prepare to debut a video of a threesome with X-rated actor.", + "contentSnippet": "Adam22 has claimed it takes a 'real man' to let his wife sleep with another man as he and his pornstar wife prepare to debut a video of a threesome with X-rated actor.", + "guid": "https://www.dailymail.co.uk/femail/article-12839373/Pornstar-Adam22-wife-Lena-Plug-THREESOME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:55:57.000Z" + }, + { + "title": "Kate Beckinsale is seen taking stepfather to hospital in a stretcher as it's revealed he's been diagnosed with two types of cancer AND suffered a stroke - while her mom is also battling a long-term illness that has put actress 'under relentless strain'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12833183/kate-beckinsale-caregiver-parents-health-battles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:55:53 GMT", + "enclosure": { + "length": "12359", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710037-0-image-a-16_1701985293526.jpg" + }, + "content": "Exclusive images show the actress, 50, comforting her stepdad Roy Battersby, 87, as he was transported on a stretcher outside a Los Angeles hospital on Wednesday.", + "contentSnippet": "Exclusive images show the actress, 50, comforting her stepdad Roy Battersby, 87, as he was transported on a stretcher outside a Los Angeles hospital on Wednesday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12833183/kate-beckinsale-caregiver-parents-health-battles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:55:53.000Z" + }, + { + "title": "Make time for your health and get outside for a walk", + "link": "https://www.dailymail.co.uk/home/books/article-12839001/Make-time-health-outside-walk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:55:48 GMT", + "enclosure": { + "length": "11021", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711387-0-image-a-22_1701984981440.jpg" + }, + "content": "We've picked out a selection of books that will help you feel better for longer, including Dr Peter Attia's Outlive: The Science of Longevity and Davinia Taylor's Hack Your Hormones.", + "contentSnippet": "We've picked out a selection of books that will help you feel better for longer, including Dr Peter Attia's Outlive: The Science of Longevity and Davinia Taylor's Hack Your Hormones.", + "guid": "https://www.dailymail.co.uk/home/books/article-12839001/Make-time-health-outside-walk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:55:48.000Z" + }, + { + "title": "A 5.8 magnitude earthquake has struck Mexico City, with reports of minimal damage", + "link": "https://www.dailymail.co.uk/news/article-12839365/earthquake-mexico-city-5-8-magnitude.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:54:33 GMT", + "enclosure": { + "length": "11268", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78712111-0-image-a-35_1701985883682.jpg" + }, + "content": "A 5.8 magnitude earthquake has struck Mexico City and sent anxious residents out into the streets as buildings shook.", + "contentSnippet": "A 5.8 magnitude earthquake has struck Mexico City and sent anxious residents out into the streets as buildings shook.", + "guid": "https://www.dailymail.co.uk/news/article-12839365/earthquake-mexico-city-5-8-magnitude.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:54:33.000Z" + }, + { + "title": "Queen Camilla joins famous faces such as\u00a0Dame Joanna Lumley, Dame Prue Leith and Gyles Brandreth at St Paul's Cathedral for charity Christmas carol concert", + "link": "https://www.dailymail.co.uk/femail/article-12839597/Queen-Camilla-joins-famous-faces-Dame-Joanna-Lumley-Dame-Prue-Leith-Gyles-Brandreth-St-Pauls-Cathedral-charity-Christmas-carol-concert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:53:05 GMT", + "enclosure": { + "length": "11257", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78714371-0-image-a-15_1701988529162.jpg" + }, + "content": "Camilla, 76, mingled with the likes of Dame Joanna Lumley, 77, Dame Prue Leith, 83, and Gyles Brandreth, 75, at the London event in her role as president for cancer charity Maggie's.", + "contentSnippet": "Camilla, 76, mingled with the likes of Dame Joanna Lumley, 77, Dame Prue Leith, 83, and Gyles Brandreth, 75, at the London event in her role as president for cancer charity Maggie's.", + "guid": "https://www.dailymail.co.uk/femail/article-12839597/Queen-Camilla-joins-famous-faces-Dame-Joanna-Lumley-Dame-Prue-Leith-Gyles-Brandreth-St-Pauls-Cathedral-charity-Christmas-carol-concert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:53:05.000Z" + }, + { + "title": "Feast your eyes on these picture-perfect presents", + "link": "https://www.dailymail.co.uk/home/books/article-12839011/Feast-eyes-picture-perfect-presents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:51:46 GMT", + "enclosure": { + "length": "10533", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78712805-0-image-a-4_1701986444595.jpg" + }, + "content": "When you're thinking what to buy for your loved ones this Christmas, be sure to consider one of these beautiful picture books on subjects ranging from Princess Diana to designer Yves Saint Laurent.", + "contentSnippet": "When you're thinking what to buy for your loved ones this Christmas, be sure to consider one of these beautiful picture books on subjects ranging from Princess Diana to designer Yves Saint Laurent.", + "guid": "https://www.dailymail.co.uk/home/books/article-12839011/Feast-eyes-picture-perfect-presents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:51:46.000Z" + }, + { + "title": "'Lady in red' seen around the world in iconic image from Nova festival terror attack reveals astonishing story of her survival, seeing her friends killed and how her daughter 'foresaw danger'... as she dons famous shawl again for the first time", + "link": "https://www.dailymail.co.uk/news/article-12837233/Lady-red-seen-world-iconic-image-Nova-festival-terror-attack-reveals-astonishing-story-survival-seeing-friends-killed-daughter-foresaw-danger-dons-famous-shawl-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:49:16 GMT", + "enclosure": { + "length": "5918", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/13/78690921-0-image-m-29_1701956298701.jpg" + }, + "content": "MailOnline has tracked down the 'lady in red' and, for the first time, Vlada Patapov - a 25-year-old Ukrainian-born mother of one - tells her story.", + "contentSnippet": "MailOnline has tracked down the 'lady in red' and, for the first time, Vlada Patapov - a 25-year-old Ukrainian-born mother of one - tells her story.", + "guid": "https://www.dailymail.co.uk/news/article-12837233/Lady-red-seen-world-iconic-image-Nova-festival-terror-attack-reveals-astonishing-story-survival-seeing-friends-killed-daughter-foresaw-danger-dons-famous-shawl-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:49:16.000Z" + }, + { + "title": "DAILY MAIL COMMENT: Stop squabbling and back the Rwanda Bill", + "link": "https://www.dailymail.co.uk/news/article-12839485/DAILY-MAIL-COMMENT-Rwanda-Bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:47:59 GMT", + "enclosure": { + "length": "8435", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/22/78712437-0-image-m-16_1701986490560.jpg" + }, + "content": "In a letter in 1780, John Adams, the second president of the US, warned of the hazards of political polarisation in a democracy.", + "contentSnippet": "In a letter in 1780, John Adams, the second president of the US, warned of the hazards of political polarisation in a democracy.", + "guid": "https://www.dailymail.co.uk/news/article-12839485/DAILY-MAIL-COMMENT-Rwanda-Bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:47:59.000Z" + }, + { + "title": "Premier League RECAP: Tottenham surrender lead at home to West Ham with Ward-Prowse firing Hammers 2-1 up... after Everton beat Newcastle 3-0", + "link": "https://www.dailymail.co.uk/sport/live/article-12838305/Everton-vs-Newcastle-Tottenham-vs-West-Ham-Premier-League-2023-24-Live-Results.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:36:23 GMT", + "enclosure": { + "length": "6144", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709253-0-image-a-84_1701981429174.jpg" + }, + "content": "Re-live Mail Sport's live blog providing all the team news and updates as Everton took on Newcastle United and Tottenham hosted West Ham in Premier League action.\u00a0", + "contentSnippet": "Re-live Mail Sport's live blog providing all the team news and updates as Everton took on Newcastle United and Tottenham hosted West Ham in Premier League action.", + "guid": "https://www.dailymail.co.uk/sport/live/article-12838305/Everton-vs-Newcastle-Tottenham-vs-West-Ham-Premier-League-2023-24-Live-Results.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:36:23.000Z" + }, + { + "title": "I'm A Celebrity bosses 'fear for the final' as\u00a0Cyclone Jasper heads for Australia with 120mph winds and heavy rain", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839087/im-celebrity-cyclone-jasper-australia-weather-winds-rain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:26:22 GMT", + "enclosure": { + "length": "9581", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709613-0-image-a-58_1701981954386.jpg" + }, + "content": "I'm A Celebrity bosses are said to be watching the weather forecast with 'baited breath' as Cyclone Jasper makes its way towards Australia.", + "contentSnippet": "I'm A Celebrity bosses are said to be watching the weather forecast with 'baited breath' as Cyclone Jasper makes its way towards Australia.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839087/im-celebrity-cyclone-jasper-australia-weather-winds-rain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:26:22.000Z" + }, + { + "title": "EDEN CONFIDENTIAL: The world's first supermodel Jean 'The Shrimp' Shrimpton to sell her idyllic seaside hotel in Cornwall for \u00a31.9 million", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839303/Jean-Shrimp-Shrimpton-sell-seaside-hotel-Cornwall-EDEN-CONFIDENTIAL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:23:09 GMT", + "enclosure": { + "length": "9571", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710321-0-image-a-6_1701983263901.jpg" + }, + "content": "EDEN CONFIDENTIAL: Within a decade, Jean Shrimpton turned her back on her time as 'The Shrimp' - a nickname she loathed - in favour of a reclusive life in Cornwall.", + "contentSnippet": "EDEN CONFIDENTIAL: Within a decade, Jean Shrimpton turned her back on her time as 'The Shrimp' - a nickname she loathed - in favour of a reclusive life in Cornwall.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839303/Jean-Shrimp-Shrimpton-sell-seaside-hotel-Cornwall-EDEN-CONFIDENTIAL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:23:09.000Z" + }, + { + "title": "Pantone reveals its 2024 Color of the Year is 'peach fuzz' - saying hue is meant to 'echo our innate yearning for closeness and connection'", + "link": "https://www.dailymail.co.uk/femail/article-12838687/Pantone-2024-Color-Year-Peach-Fuzz.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:18:22 GMT", + "enclosure": { + "length": "6594", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78706455-0-image-a-60_1701976818573.jpg" + }, + "content": "The company announced that Peach Fuzz,\u00a0also known as Pantone 13-1023, had clinched the accolade for the year ahead. Experts say the shade 'echoes our innate yearning for closeness'", + "contentSnippet": "The company announced that Peach Fuzz,\u00a0also known as Pantone 13-1023, had clinched the accolade for the year ahead. Experts say the shade 'echoes our innate yearning for closeness'", + "guid": "https://www.dailymail.co.uk/femail/article-12838687/Pantone-2024-Color-Year-Peach-Fuzz.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:18:22.000Z" + }, + { + "title": "Kevin Sinfield caps a gruelling SEVENTH ultra marathon in just seven days with an emotional speech - after running 190.4 miles in support of best friend Rob Burrow and motor neurone disease charities", + "link": "https://www.dailymail.co.uk/sport/rugbyunion/article-12838877/Kevin-Sinfield-gruelling-SEVENTH-ultra-marathon-emotional-speech-Rob-Burrow-motor-neurone-disease-charity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:18:03 GMT", + "enclosure": { + "length": "13035", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78706047-0-image-a-31_1701975936832.jpg" + }, + "content": "DAVID COVERDALE: Burrow was diagnosed with MND in 2019, and the following year, Sinfield embarked on his first fundraising challenge for his former Leeds Rhinos team-mate.", + "contentSnippet": "DAVID COVERDALE: Burrow was diagnosed with MND in 2019, and the following year, Sinfield embarked on his first fundraising challenge for his former Leeds Rhinos team-mate.", + "guid": "https://www.dailymail.co.uk/sport/rugbyunion/article-12838877/Kevin-Sinfield-gruelling-SEVENTH-ultra-marathon-emotional-speech-Rob-Burrow-motor-neurone-disease-charity.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:18:03.000Z" + }, + { + "title": "Lauren S\u00e1nchez flashes serious side boob in a playful halter top as she arrives hand-in-hand with Amazon billionaire Jeff Bezos at Art Basel event in Miami - before giving his behind a cheeky squeeze", + "link": "https://www.dailymail.co.uk/femail/article-12839085/Lauren-Sanchez-flashes-boob-holding-hands-jeff-bezos-miami.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:10:10 GMT", + "enclosure": { + "length": "11677", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711103-0-image-a-57_1701984658469.jpg" + }, + "content": "S\u00e1nchez has flashed some serious side boob in a playful star-emblazoned halter top as she arrived hand-in-hand with her Amazon billionaire\u00a0fianc\u00e9, Jeff Bezos, ahead of Miami's Art Basel exhibit.", + "contentSnippet": "S\u00e1nchez has flashed some serious side boob in a playful star-emblazoned halter top as she arrived hand-in-hand with her Amazon billionaire\u00a0fianc\u00e9, Jeff Bezos, ahead of Miami's Art Basel exhibit.", + "guid": "https://www.dailymail.co.uk/femail/article-12839085/Lauren-Sanchez-flashes-boob-holding-hands-jeff-bezos-miami.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:10:10.000Z" + }, + { + "title": "Evri named most hated parcel firm in Britain with the highest proportion of dissatisfied customers", + "link": "https://www.dailymail.co.uk/money/markets/article-12838913/Evri-named-hated-parcel-firm-Britain-highest-proportion-dissatisfied-customers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:01:02 GMT", + "enclosure": { + "length": "6348", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78705855-0-image-m-23_1701975821628.jpg" + }, + "content": "Nearly half of those who contacted Evri with an issue said they were unhappy with the complaints process, a major survey found.", + "contentSnippet": "Nearly half of those who contacted Evri with an issue said they were unhappy with the complaints process, a major survey found.", + "guid": "https://www.dailymail.co.uk/money/markets/article-12838913/Evri-named-hated-parcel-firm-Britain-highest-proportion-dissatisfied-customers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:01:02.000Z" + }, + { + "title": "Cash-strapped South East Water sinks deeper in the red\u00a0as interest payments on its debts soar", + "link": "https://www.dailymail.co.uk/money/markets/article-12838771/Cash-strapped-South-East-Water-sinks-deeper-red-payments-debts-soar.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 22:00:46 GMT", + "enclosure": { + "length": "8893", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78712017-0-image-m-4_1701985735498.jpg" + }, + "content": "In the latest setback for the industry, South East Water saw its loss before tax widen to \u00a318.1m from \u00a312.7m in the six months to the end of September.", + "contentSnippet": "In the latest setback for the industry, South East Water saw its loss before tax widen to \u00a318.1m from \u00a312.7m in the six months to the end of September.", + "guid": "https://www.dailymail.co.uk/money/markets/article-12838771/Cash-strapped-South-East-Water-sinks-deeper-red-payments-debts-soar.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T22:00:46.000Z" + }, + { + "title": "Rapper Kodak Black is arrested on drug charges after traffic stop where cops found 'white pills and $75,000 in cash' - three years after he was pardoned by Trump", + "link": "https://www.dailymail.co.uk/news/article-12839251/Rapper-Kodak-Black-arrested-drug-charges-Trump.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:56:57 GMT", + "enclosure": { + "length": "10202", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710389-0-image-a-21_1701983489900.jpg" + }, + "content": "Kodak was one of over 140 people granted pardons on Trump's last full day as president. In return Kodak has repeatedly endorsed the former president.", + "contentSnippet": "Kodak was one of over 140 people granted pardons on Trump's last full day as president. In return Kodak has repeatedly endorsed the former president.", + "guid": "https://www.dailymail.co.uk/news/article-12839251/Rapper-Kodak-Black-arrested-drug-charges-Trump.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:56:57.000Z" + }, + { + "title": "Las Vegas teacher sobs as she shares her students' heartbreaking Christmas wishes - including one who asked for a 'bag of chips so I won't feel hungry' and another who wants 'slippers to protect me from the cold'", + "link": "https://www.dailymail.co.uk/femail/article-12837705/Teacher-tears-students-Christmas-wishes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:55:39 GMT", + "enclosure": { + "length": "10884", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78704779-0-image-a-1_1701973537002.jpg" + }, + "content": "Cheri Guy, an English teacher at Desert Pines High School, Las Vegas, took to TikTok with the candid clip. Other social media users were quick to flood the comments with their support.", + "contentSnippet": "Cheri Guy, an English teacher at Desert Pines High School, Las Vegas, took to TikTok with the candid clip. Other social media users were quick to flood the comments with their support.", + "guid": "https://www.dailymail.co.uk/femail/article-12837705/Teacher-tears-students-Christmas-wishes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:55:39.000Z" + }, + { + "title": "Man, 41, is slammed after complaining that he has no savings, no job, and has had to rely on his parents to pay his rent for SEVEN YEARS - all because he REFUSES to take work that he believes is 'beneath him'", + "link": "https://www.dailymail.co.uk/femail/article-12838081/Man-no-job-savings-parents-pay-rent-work.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:55:36 GMT", + "enclosure": { + "length": "9914", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78702451-0-image-a-51_1701970829291.jpg" + }, + "content": "Brint Davy, from Austin, Texas, appeared on a recent episode of Caleb Hammer's Financial Audit on YouTube. He explained how he is thousands of dollars in debt, but is not willing to cut back.", + "contentSnippet": "Brint Davy, from Austin, Texas, appeared on a recent episode of Caleb Hammer's Financial Audit on YouTube. He explained how he is thousands of dollars in debt, but is not willing to cut back.", + "guid": "https://www.dailymail.co.uk/femail/article-12838081/Man-no-job-savings-parents-pay-rent-work.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:55:36.000Z" + }, + { + "title": "I'm A Celeb's Danielle Harold reveals how Jamie Oliver's Dream School changed her life as she reflects on landing her EastEnders role", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839229/Im-Celebs-Danielle-Harold-Jamie-Olivers-Dream-School-EastEnders-role-acting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:53:35 GMT", + "enclosure": { + "length": "9673", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78710409-0-image-a-11_1701983533386.jpg" + }, + "content": "I'm A Celeb's Danielle Harold revealed how Jamie Oliver's Dream School changed her life as she reflected on landing her EastEnders role on Thursday night's episode.", + "contentSnippet": "I'm A Celeb's Danielle Harold revealed how Jamie Oliver's Dream School changed her life as she reflected on landing her EastEnders role on Thursday night's episode.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839229/Im-Celebs-Danielle-Harold-Jamie-Olivers-Dream-School-EastEnders-role-acting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:53:35.000Z" + }, + { + "title": "Fury as Bristol University professor, 78, calls for 'somebody to blow up the venue' while Jewish Labour Movement hosts its annual conference", + "link": "https://www.dailymail.co.uk/news/article-12838801/Fury-Bristol-University-professor-78-calls-somebody-blow-venue-Jewish-Labour-Movement-hosts-annual-conference.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:52:30 GMT", + "enclosure": { + "length": "4062", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78706849-0-image-a-28_1701979829382.jpg" + }, + "content": "In a now-deleted Tweet, Harriet Bradley, 78, who works at Bristol University, re-shared a poster advertising the event due to be held in North London on January 14.", + "contentSnippet": "In a now-deleted Tweet, Harriet Bradley, 78, who works at Bristol University, re-shared a poster advertising the event due to be held in North London on January 14.", + "guid": "https://www.dailymail.co.uk/news/article-12838801/Fury-Bristol-University-professor-78-calls-somebody-blow-venue-Jewish-Labour-Movement-hosts-annual-conference.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:52:30.000Z" + }, + { + "title": "I'm A Celeb's Sam Thompson accuses Nigel Farage of 'throwing him under the bus' as they come to blows after burning the rice as camp chefs", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12839095/Im-Celebs-Sam-Thompson-Nigel-Farage-blows-camp-chefs-burnt-rice.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:51:06 GMT", + "enclosure": { + "length": "11180", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709055-0-image-a-57_1701981116718.jpg" + }, + "content": "The cooking drama continued on Thursday night's I'm A Celebrity as Sam Thompson and Nigel Farage came to blows over some burnt rice.\u00a0", + "contentSnippet": "The cooking drama continued on Thursday night's I'm A Celebrity as Sam Thompson and Nigel Farage came to blows over some burnt rice.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12839095/Im-Celebs-Sam-Thompson-Nigel-Farage-blows-camp-chefs-burnt-rice.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:51:06.000Z" + }, + { + "title": "Mom and two children, 2 and 3, are pinned underneath car as dozens of high school students lift up vehicle to save them from being crushed", + "link": "https://www.dailymail.co.uk/news/article-12838989/utah-mom-children-pinned-car-Layton-Christan-students.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:38:47 GMT", + "enclosure": { + "length": "9373", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78708095-0-image-a-70_1701983353025.jpg" + }, + "content": "Bridgette Ponson and her two children were trapped under a car after they were run over in the Layton Christian Academy parking lot on Tuesday. The students managed to save them from the vehicle.", + "contentSnippet": "Bridgette Ponson and her two children were trapped under a car after they were run over in the Layton Christian Academy parking lot on Tuesday. The students managed to save them from the vehicle.", + "guid": "https://www.dailymail.co.uk/news/article-12838989/utah-mom-children-pinned-car-Layton-Christan-students.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:38:47.000Z" + }, + { + "title": "Kidnapper, 38, broke into the home of grandfather as he babysat his two-year-old granddaughter and snatched the little girl before telling him: 'This child belongs to Jihad now'", + "link": "https://www.dailymail.co.uk/news/article-12839189/Kidnapper-38-broke-home-grandfather-babysat-two-year-old-granddaughter-snatched-little-girl-telling-child-belongs-Jihad-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:34:44 GMT", + "enclosure": { + "length": "3832", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/21/78711087-0-image-a-35_1701984668175.jpg" + }, + "content": "Andrzej Jasinski, 38, let himself into the house in Thomson Street, Carlisle, while the 63-year-old man was babysitting his granddaughter and watching children's TV.", + "contentSnippet": "Andrzej Jasinski, 38, let himself into the house in Thomson Street, Carlisle, while the 63-year-old man was babysitting his granddaughter and watching children's TV.", + "guid": "https://www.dailymail.co.uk/news/article-12839189/Kidnapper-38-broke-home-grandfather-babysat-two-year-old-granddaughter-snatched-little-girl-telling-child-belongs-Jihad-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:34:44.000Z" + }, + { + "title": "Awkward moment Rishi Sunak and Dutch prime minister Mark Rutte cannot get into 10 Downing Street", + "link": "https://www.dailymail.co.uk/news/article-12839067/Awkward-moment-Rishi-Sunak-Dutch-prime-minister-Mark-Rutte-10-Downing-Street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:30:30 GMT", + "enclosure": { + "length": "10317", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78709125-0-image-m-9_1701981601859.jpg" + }, + "content": "This is the awkward moment that Rishi Sunak (right) and outgoing Dutch prime minister Mark Rutte (left) found themselves unable to get into 10 Downing Street this evening.", + "contentSnippet": "This is the awkward moment that Rishi Sunak (right) and outgoing Dutch prime minister Mark Rutte (left) found themselves unable to get into 10 Downing Street this evening.", + "guid": "https://www.dailymail.co.uk/news/article-12839067/Awkward-moment-Rishi-Sunak-Dutch-prime-minister-Mark-Rutte-10-Downing-Street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:30:30.000Z" + }, + { + "title": "Why Liz Taylor needed 21 suites in a Paris hotel", + "link": "https://www.dailymail.co.uk/home/books/article-12838999/Why-Liz-Taylor-needed-21-suites-Paris-hotel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 21:14:58 GMT", + "enclosure": { + "length": "10695", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78707815-0-image-a-4_1701978996238.jpg" + }, + "content": "Can there be anything new to say about the king and queen of excess? The answer is a stonking yes, as Lewis brings his perception and wit to bear on Taylor and Burton's relationship.", + "contentSnippet": "Can there be anything new to say about the king and queen of excess? The answer is a stonking yes, as Lewis brings his perception and wit to bear on Taylor and Burton's relationship.", + "guid": "https://www.dailymail.co.uk/home/books/article-12838999/Why-Liz-Taylor-needed-21-suites-Paris-hotel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T21:14:58.000Z" + }, + { + "title": "Inside Oprah's INCREDIBLE weight loss transformation as she stuns fans with her VERY svelte physique - after years of struggling with 'yo-yo diets' and 'food addiction'", + "link": "https://www.dailymail.co.uk/femail/article-12838141/oprah-winfrey-weight-loss-transformation-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 20:50:42 GMT", + "enclosure": { + "length": "11388", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78703033-0-image-a-37_1701970281837.jpg" + }, + "content": "Oprah, 69, has flaunted her incredibly slimmed down physique recemt;y - after struggling for years with 'yo-yo dieting' and battling 'food addiction.' Take a look back at her weight loss journey.", + "contentSnippet": "Oprah, 69, has flaunted her incredibly slimmed down physique recemt;y - after struggling for years with 'yo-yo dieting' and battling 'food addiction.' Take a look back at her weight loss journey.", + "guid": "https://www.dailymail.co.uk/femail/article-12838141/oprah-winfrey-weight-loss-transformation-time.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T20:50:42.000Z" + }, + { + "title": "Grieving widower of a nurse, 35, who died after doctors missed her cancer tells inquest his wife 'wanted those responsible to be held to account' - as he pays tribute to the 'shining star'", + "link": "https://www.dailymail.co.uk/news/article-12838959/missed-cancer-nurse-catherine-jones-dead-inquest.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 20:47:33 GMT", + "enclosure": { + "length": "8565", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78610143-0-image-m-27_1701981588991.jpg" + }, + "content": "David Jones, 45, a chartered engineer, said all who knew his late wife Catherine, who died in November 2016 aged just 35, had their lives 'enriched by her'.", + "contentSnippet": "David Jones, 45, a chartered engineer, said all who knew his late wife Catherine, who died in November 2016 aged just 35, had their lives 'enriched by her'.", + "guid": "https://www.dailymail.co.uk/news/article-12838959/missed-cancer-nurse-catherine-jones-dead-inquest.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T20:47:33.000Z" + }, + { + "title": "Horoscope today: Daily guide to what the stars have in store for YOU - December 8, 2023", + "link": "https://www.dailymail.co.uk/femail/article-12839049/Horoscope-today-Daily-guide-stars-store-December-8-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 20:43:07 GMT", + "enclosure": { + "length": "10123", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78708445-0-image-a-6_1701980092751.jpg" + }, + "content": "JEMIMA CAINER: As Jupiter (which rules both Sagittarius and the world's fortunes), links with the cosmic messenger, Mercury, those born under Sagittarius will discover reasons to be hopeful.", + "contentSnippet": "JEMIMA CAINER: As Jupiter (which rules both Sagittarius and the world's fortunes), links with the cosmic messenger, Mercury, those born under Sagittarius will discover reasons to be hopeful.", + "guid": "https://www.dailymail.co.uk/femail/article-12839049/Horoscope-today-Daily-guide-stars-store-December-8-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T20:43:07.000Z" + }, + { + "title": "Man, 70, dies and five others are injured after horror four car pile-up on A66 slip road", + "link": "https://www.dailymail.co.uk/news/article-12839089/Man-70-dies-five-injured-horror-four-car-pile-A66.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 20:30:15 GMT", + "enclosure": { + "length": "7503", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/20/78708297-0-image-m-19_1701980008668.jpg" + }, + "content": "The horror smash took place on the A66 slip road near the Hartington Interchange in Middlesbrough, North Yorkshire, just before 8.40am on Wednesday.", + "contentSnippet": "The horror smash took place on the A66 slip road near the Hartington Interchange in Middlesbrough, North Yorkshire, just before 8.40am on Wednesday.", + "guid": "https://www.dailymail.co.uk/news/article-12839089/Man-70-dies-five-injured-horror-four-car-pile-A66.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T20:30:15.000Z" + }, + { + "title": "82-year-old grandma who 'looks 45' leaves reveals the beauty secrets behind her ageless looks - as she leaves social media in AWE with her VERY youthful appearance", + "link": "https://www.dailymail.co.uk/femail/article-12834023/Grandma-82-SHOCKS-people-young-looks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 20:22:27 GMT", + "enclosure": { + "length": "11585", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/06/21/78663471-0-image-a-38_1701898966144.jpg" + }, + "content": "An 82-year-old TikTok-famous grandmother who looks like she is her 40s has shocked the internet after revealing her real age, and has shared how she keeps herself looking so young.", + "contentSnippet": "An 82-year-old TikTok-famous grandmother who looks like she is her 40s has shocked the internet after revealing her real age, and has shared how she keeps herself looking so young.", + "guid": "https://www.dailymail.co.uk/femail/article-12834023/Grandma-82-SHOCKS-people-young-looks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T20:22:27.000Z" + }, + { + "title": "I'm A Celebrity fans baffled as they spot Nick Pickard secretly indulging in a 'panini' around the camp - after becoming the fourth star voted out", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838237/Im-Celebrity-fans-spot-Nick-Pickard-secretly-indulging-PANINI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 20:05:47 GMT", + "enclosure": { + "length": "12131", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78702955-0-image-m-11_1701969899239.jpg" + }, + "content": "I'm A Celebrity fans thought they spotted Nick Pickard secretly indulging into a panini during Wednesday night's episode.", + "contentSnippet": "I'm A Celebrity fans thought they spotted Nick Pickard secretly indulging into a panini during Wednesday night's episode.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838237/Im-Celebrity-fans-spot-Nick-Pickard-secretly-indulging-PANINI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T20:05:47.000Z" + }, + { + "title": "Heartwarming moment Prince William cheekily shouts 'boo' as he surprises woman during charity walk in memory of her daughter, 16, who took her own life - as delighted mother reveals how she went in for a 'nice hug'", + "link": "https://www.dailymail.co.uk/femail/article-12837333/Heartwarming-moment-Prince-William-surprises-woman-street-charity-walk-memory-daughter-16-took-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 20:02:21 GMT", + "enclosure": { + "length": "11256", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/14/78692557-0-image-a-4_1701957627975.jpg" + }, + "content": "In a video on Facebook, Emma Webb received the shock of her life when the Prince of Wales appeared out of nowhere to join her on day 13 of a fundraising trek from Wales to London", + "contentSnippet": "In a video on Facebook, Emma Webb received the shock of her life when the Prince of Wales appeared out of nowhere to join her on day 13 of a fundraising trek from Wales to London", + "guid": "https://www.dailymail.co.uk/femail/article-12837333/Heartwarming-moment-Prince-William-surprises-woman-street-charity-walk-memory-daughter-16-took-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T20:02:21.000Z" + }, + { + "title": "Chip off the old block! Liam Gallagher's lookalike sons Lennon and Gene hit his home turf for Chanel's Metiers d'Art Manchester show", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838965/Chip-old-block-Liam-Gallaghers-lookalike-sons-Lennon-Gene-hit-home-turf-Chanels-Metiers-dArt-Manchester-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 19:59:50 GMT", + "enclosure": { + "length": "10471", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78706897-0-image-a-84_1701977445941.jpg" + }, + "content": "The second generation of Gallagher brothers Lennon, 24, and Gene, 22, were back on their family's home turf at Chanel 's Metiers d'Art show in Manchester on Thursday.", + "contentSnippet": "The second generation of Gallagher brothers Lennon, 24, and Gene, 22, were back on their family's home turf at Chanel 's Metiers d'Art show in Manchester on Thursday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838965/Chip-old-block-Liam-Gallaghers-lookalike-sons-Lennon-Gene-hit-home-turf-Chanels-Metiers-dArt-Manchester-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T19:59:50.000Z" + }, + { + "title": "'Where is your humanity?': Moment pro-Palestine activist accosts Keir Starmer on a train in a bid to grill the Labour leader over his refusal to back a ceasefire in Gaza", + "link": "https://www.dailymail.co.uk/news/article-12838803/Where-humanity-Moment-pro-Palestine-activist-accosts-Keir-Starmer-train-bid-grill-Labour-leader-refusal-ceasefire-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 19:48:10 GMT", + "enclosure": { + "length": "7054", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78705299-0-image-m-16_1701974830071.jpg" + }, + "content": "In footage being widely shared on social media, Sir Keir is asked: 'Where is your humanity?'", + "contentSnippet": "In footage being widely shared on social media, Sir Keir is asked: 'Where is your humanity?'", + "guid": "https://www.dailymail.co.uk/news/article-12838803/Where-humanity-Moment-pro-Palestine-activist-accosts-Keir-Starmer-train-bid-grill-Labour-leader-refusal-ceasefire-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T19:48:10.000Z" + }, + { + "title": "Chevy Chase, 80, FALLS OFF STAGE at National Lampoon's Christmas Vacation event after arriving onstage in a wheelchair - one day after insisting he's in 'amazing' shape", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12838791/Chevy-Chase-80-FALLS-STAGE-National-Lampoon-event.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 19:46:15 GMT", + "enclosure": { + "length": "8806", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/19/78705793-0-image-m-38_1701975630502.jpg" + }, + "content": "Chevy Chase shocked fans when he fell off the stage during a National Lampoon's Christmas Vacation Q&A in Buffalo, NY on Wednesday..", + "contentSnippet": "Chevy Chase shocked fans when he fell off the stage during a National Lampoon's Christmas Vacation Q&A in Buffalo, NY on Wednesday..", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12838791/Chevy-Chase-80-FALLS-STAGE-National-Lampoon-event.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T19:46:15.000Z" + }, + { + "title": "ITV report into Phillip Schofield's affair with younger colleague is a 'whitewash' and 'a waste of time', say furious staff who are 'bewildered' by claim only one worker was aware of the relationship", + "link": "https://www.dailymail.co.uk/news/article-12838543/ITV-report-Phillip-Schofields-affair-younger-colleague-whitewash-waste-time-say-furious-staff-bewildered-claim-one-worker-aware-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 19:39:45 GMT", + "enclosure": { + "length": "8533", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/71619801-0-Schofield_and_Willoughby_are_pictured_either_side_of_the_man_wit-a-8_1701969898714.jpg" + }, + "content": "One employee told the Mail of their 'sheer bewilderment' that only one junior worker was aware of the relationship.", + "contentSnippet": "One employee told the Mail of their 'sheer bewilderment' that only one junior worker was aware of the relationship.", + "guid": "https://www.dailymail.co.uk/news/article-12838543/ITV-report-Phillip-Schofields-affair-younger-colleague-whitewash-waste-time-say-furious-staff-bewildered-claim-one-worker-aware-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T19:39:45.000Z" + }, + { + "title": "Sharon Osborne's bizarre lifestyle habits - two hour baths, three day fasts, and barely any sleep - could be wrecking her health, warn experts", + "link": "https://www.dailymail.co.uk/wellness/body/article-12838079/sharon-osbourne-no-sleep-fasts-ozempic-weight-loss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 19:33:36 GMT", + "enclosure": { + "length": "8922", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78700455-0-image-a-2_1701967330496.jpg" + }, + "content": "Sharon Osbourne, 71, has admitted to some concerning habits, including excessively long baths, not sleeping and going days without food. Experts say that, together, these behaviors are risky", + "contentSnippet": "Sharon Osbourne, 71, has admitted to some concerning habits, including excessively long baths, not sleeping and going days without food. Experts say that, together, these behaviors are risky", + "guid": "https://www.dailymail.co.uk/wellness/body/article-12838079/sharon-osbourne-no-sleep-fasts-ozempic-weight-loss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T19:33:36.000Z" + }, + { + "title": "'Murder plan' drawn up by girl accused of killing trans teen Brianna Ghey that says 'I say code word to Boy Y. He stabs her in the back as I stab her in the stomach'", + "link": "https://www.dailymail.co.uk/news/article-12838239/Blood-trans-teen-Brianna-Ghey-stabbed-28-times-frenzied-knife-attack-trainers-jacket-boy-15-accused-killing-murder-trial-hears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 19:01:55 GMT", + "enclosure": { + "length": "9902", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78699981-0-image-m-64_1701966978923.jpg" + }, + "content": "A handwritten plan to stab Brianna Ghey (pictured) to death which was drawn up by a teenage girl before she and a male friend allegedly carried out the murder was shown to a jury today.", + "contentSnippet": "A handwritten plan to stab Brianna Ghey (pictured) to death which was drawn up by a teenage girl before she and a male friend allegedly carried out the murder was shown to a jury today.", + "guid": "https://www.dailymail.co.uk/news/article-12838239/Blood-trans-teen-Brianna-Ghey-stabbed-28-times-frenzied-knife-attack-trainers-jacket-boy-15-accused-killing-murder-trial-hears.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T19:01:55.000Z" + }, + { + "title": "JANET STREET-PORTER: Sorry Anne Robinson, but I can't see the snarky 'Queen of Mean' holding her sharp tongue just because she's met her elderly Prince Charming (and, no, I'm not jealous)", + "link": "https://www.dailymail.co.uk/debate/article-12838749/JANET-STREET-PORTER-Anne-Robinson-Queen-Mean-holding-tongue-Prince-Charming-Andrew-Parker-Bowles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 18:58:12 GMT", + "enclosure": { + "length": "9351", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78704893-0-image-a-6_1701973834658.jpg" + }, + "content": "JANET STREET-PORTER: It is the season of good will to all, but I find it difficult to congratulate Anne Robinson on her new boyfriend Andrew Parker Bowles", + "contentSnippet": "JANET STREET-PORTER: It is the season of good will to all, but I find it difficult to congratulate Anne Robinson on her new boyfriend Andrew Parker Bowles", + "guid": "https://www.dailymail.co.uk/debate/article-12838749/JANET-STREET-PORTER-Anne-Robinson-Queen-Mean-holding-tongue-Prince-Charming-Andrew-Parker-Bowles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T18:58:12.000Z" + }, + { + "title": "Book in for a bright Christmas: Illuminated tunnels, fluorescent lakes, and talking trees - light shows are now a feature of the festive season, from Kew Gardens to the Eden Project", + "link": "https://www.dailymail.co.uk/travel/article-12831605/best-christmas-light-trails.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 18:49:07 GMT", + "enclosure": { + "length": "5956", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/06/10/78636385-0-image-m-31_1701857425218.jpg" + }, + "content": "Winter light trails offer dazzling displays and all sorts of treats to get you in the festive mood. Here are some of the best across the UK...", + "contentSnippet": "Winter light trails offer dazzling displays and all sorts of treats to get you in the festive mood. Here are some of the best across the UK...", + "guid": "https://www.dailymail.co.uk/travel/article-12831605/best-christmas-light-trails.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T18:49:07.000Z" + }, + { + "title": "Presents that won't need a return trip: A gift guide for globetrotters who like to travel in style", + "link": "https://www.dailymail.co.uk/travel/article-12817229/Presents-wont-need-return-trip-gift-guide-globetrotters-like-travel-style.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 18:41:16 GMT", + "enclosure": { + "length": "4729", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/18/78500237-0-image-m-145_1701973612560.jpg" + }, + "content": "Know someone who is always jetting off to fabulous destinations? Help them take their travels to the next level with these chic yet affordable gifts...", + "contentSnippet": "Know someone who is always jetting off to fabulous destinations? Help them take their travels to the next level with these chic yet affordable gifts...", + "guid": "https://www.dailymail.co.uk/travel/article-12817229/Presents-wont-need-return-trip-gift-guide-globetrotters-like-travel-style.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T18:41:16.000Z" + }, + { + "title": "1066 and all that! Metal detectorists strike it lucky when they unearth \u00a3500,000 hoard of Anglo-Saxon coins minted in the year Harold was beaten by William at the Battle of Hastings", + "link": "https://www.dailymail.co.uk/news/article-12838319/Metal-detectorists-Anglo-Saxon-coins-Harold-William-Battle-Hastings-1066.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 18:16:44 GMT", + "enclosure": { + "length": "8265", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78702523-0-image-m-18_1701970063936.jpg" + }, + "content": "Three metal detectorists (Paul Ibbotson pictured) struck lucky when they unearthed a hoard of silver coins from one of the most famous years in English history, 1066, in a field near York.", + "contentSnippet": "Three metal detectorists (Paul Ibbotson pictured) struck lucky when they unearthed a hoard of silver coins from one of the most famous years in English history, 1066, in a field near York.", + "guid": "https://www.dailymail.co.uk/news/article-12838319/Metal-detectorists-Anglo-Saxon-coins-Harold-William-Battle-Hastings-1066.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T18:16:44.000Z" + }, + { + "title": "Kate Middleton and Prince William are spotted searching for the perfect Christmas tree with Prince George and Princess Charlotte in Windsor Great Park", + "link": "https://www.dailymail.co.uk/femail/article-12837879/Kate-Middleton-Prince-William-spotted-searching-perfect-Christmas-tree-Prince-George-Princess-Charlotte-Windsor-Great-Park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 18:16:14 GMT", + "enclosure": { + "length": "11326", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78695961-0-image-a-19_1701963372246.jpg" + }, + "content": "Kate and William were visiting the\u00a0Christmas Tree Shop based in the Berkshire\u00a0landscape when they were noticed by a royal fan who shared a photo to Facebook of the Royal Family members.", + "contentSnippet": "Kate and William were visiting the\u00a0Christmas Tree Shop based in the Berkshire\u00a0landscape when they were noticed by a royal fan who shared a photo to Facebook of the Royal Family members.", + "guid": "https://www.dailymail.co.uk/femail/article-12837879/Kate-Middleton-Prince-William-spotted-searching-perfect-Christmas-tree-Prince-George-Princess-Charlotte-Windsor-Great-Park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T18:16:14.000Z" + }, + { + "title": "King Charles gets Santa's seal of approval as he meets Father Christmas at festive market: One's at the 'very top of the good list'", + "link": "https://www.dailymail.co.uk/femail/article-12838341/King-Charles-gets-Santas-seal-approval-meets-Father-Christmas-festive-market-Ones-good-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 18:11:59 GMT", + "enclosure": { + "length": "12075", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78700807-0-image-a-9_1701968055128.jpg" + }, + "content": "The monarch, 75, couldn't help but smile as he noticed a man dressed as Father Christmas at the festive event in London, with the pair sharing an enthusiastic greeting upon meeting one another.", + "contentSnippet": "The monarch, 75, couldn't help but smile as he noticed a man dressed as Father Christmas at the festive event in London, with the pair sharing an enthusiastic greeting upon meeting one another.", + "guid": "https://www.dailymail.co.uk/femail/article-12838341/King-Charles-gets-Santas-seal-approval-meets-Father-Christmas-festive-market-Ones-good-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T18:11:59.000Z" + }, + { + "title": "'I've been spelling my own name wrong my entire life!' Moment man discovers family secret at his grandfather's funeral", + "link": "https://www.dailymail.co.uk/news/article-12837931/Reddit-man-spells-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 18:08:06 GMT", + "enclosure": { + "length": "6053", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78700027-0-image-m-43_1701966607361.jpg" + }, + "content": "A man who attended his grandfather's funeral received the surprise of a lifetime after he unintentionally learned a 50-year-old family secret.", + "contentSnippet": "A man who attended his grandfather's funeral received the surprise of a lifetime after he unintentionally learned a 50-year-old family secret.", + "guid": "https://www.dailymail.co.uk/news/article-12837931/Reddit-man-spells-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T18:08:06.000Z" + }, + { + "title": "Red-faced Miriam Margolyes apologises to Steph McGovern for her rudeness because she said the\u00a0TV host was 'not beautiful' during their last interview", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12837895/miriam-margolyes-apology-steph-mcgovern-not-beautiful.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 18:05:32 GMT", + "enclosure": { + "length": "10060", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78698675-0-image-m-19_1701965202541.jpg" + }, + "content": "On Thursday Miriam was caught in a rare moment of mortification in an appearance on Channel 4 's Steph's Packed Lunch as she tuned in from Italy .", + "contentSnippet": "On Thursday Miriam was caught in a rare moment of mortification in an appearance on Channel 4 's Steph's Packed Lunch as she tuned in from Italy .", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12837895/miriam-margolyes-apology-steph-mcgovern-not-beautiful.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T18:05:32.000Z" + }, + { + "title": "Fears Rishi Sunak could be forced into snap election as Tory infighting rages on Rwanda plan: Defiant PM calls press conference to insist he CAN get deportation flights going ahead of crunch vote - as allies warn MPs against 'insane' leadership challenge", + "link": "https://www.dailymail.co.uk/news/article-12838097/Fears-Rishi-Sunak-forced-snap-election-Tory-infighting-rages-Rwanda-plan-Defiant-PM-calls-press-conference-insist-deportation-flights-going-ahead-crunch-vote-allies-warn-MPs-against-insane-leadership-challenge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 17:52:11 GMT", + "enclosure": { + "length": "5227", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/11/78687127-0-image-m-30_1701947790753.jpg" + }, + "content": "At a hastily-arranged Downing Street press conference, the PM dismissed a revolt among MPs on the right and left wings over new emergency legislation.", + "contentSnippet": "At a hastily-arranged Downing Street press conference, the PM dismissed a revolt among MPs on the right and left wings over new emergency legislation.", + "guid": "https://www.dailymail.co.uk/news/article-12838097/Fears-Rishi-Sunak-forced-snap-election-Tory-infighting-rages-Rwanda-plan-Defiant-PM-calls-press-conference-insist-deportation-flights-going-ahead-crunch-vote-allies-warn-MPs-against-insane-leadership-challenge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T17:52:11.000Z" + }, + { + "title": "RICHARD EDEN: Harry and Meghan are doing huge damage to the Monarchy. STRIP them of their titles now - or risk yet more havoc", + "link": "https://www.dailymail.co.uk/news/article-12836305/EDEN-Harry-Meghan-damage-Strip-titles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 17:51:34 GMT", + "enclosure": { + "length": "9890", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/11/78687937-0-image-a-48_1701948808225.jpg" + }, + "content": "Harry and Meghan should be stripped of their titles as Duke and Duchess of Sussex to prevent further damage to the monarchy, according to Richard Eden.", + "contentSnippet": "Harry and Meghan should be stripped of their titles as Duke and Duchess of Sussex to prevent further damage to the monarchy, according to Richard Eden.", + "guid": "https://www.dailymail.co.uk/news/article-12836305/EDEN-Harry-Meghan-damage-Strip-titles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T17:51:34.000Z" + }, + { + "title": "Gross sea creature that looks like feces may help fight CANCER", + "link": "https://www.dailymail.co.uk/sciencetech/article-12838099/sea-cucumber-looks-like-FECES-help-fight-CANCER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 17:31:51 GMT", + "enclosure": { + "length": "5698", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/17/78701583-0-image-a-27_1701968602046.jpg" + }, + "content": "A species of sea cucumber from the Philippines contains molecules that have been shown in lab testing to kill human liver cancer cells. More experiments are needed to confirm these properties.", + "contentSnippet": "A species of sea cucumber from the Philippines contains molecules that have been shown in lab testing to kill human liver cancer cells. More experiments are needed to confirm these properties.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12838099/sea-cucumber-looks-like-FECES-help-fight-CANCER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T17:31:51.000Z" + }, + { + "title": "Meghan Markle could be dropped by her Hollywood talent agency over Omid Scobie's bombshell book Endgame because she is now 'too hot to handle' and is 'guilty by association', PR experts say", + "link": "https://www.dailymail.co.uk/news/article-12837793/meghan-markle-omid-scobie-endgame-book.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 17:16:49 GMT", + "enclosure": { + "length": "9193", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78698069-0-image-a-36_1701964650880.jpg" + }, + "content": "The Duchess of Sussex signed with WME mega-agent Ari Emanuel whose roster includes Dwayne 'The Rock' Johnson , tennis star Serena Williams and other A-Listers.", + "contentSnippet": "The Duchess of Sussex signed with WME mega-agent Ari Emanuel whose roster includes Dwayne 'The Rock' Johnson , tennis star Serena Williams and other A-Listers.", + "guid": "https://www.dailymail.co.uk/news/article-12837793/meghan-markle-omid-scobie-endgame-book.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T17:16:49.000Z" + }, + { + "title": "I was born into a Maoist cult and held as a slave for 30 years by my brutish father Comrade Bala - and I've finally learned to forgive him: Woman shares her incredible true story", + "link": "https://www.dailymail.co.uk/news/article-12838025/Maoist-cult-leader-daughter-slave-Katy-Morgan-Davies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 17:07:58 GMT", + "enclosure": { + "length": "7228", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78698093-0-image-m-139_1701965896393.jpg" + }, + "content": "Katy Morgan-Davies, 40, was effectively kept prisoner in the bizarre cult's house in Herne Hill, South London , and could not get to know her extended family or make friends.", + "contentSnippet": "Katy Morgan-Davies, 40, was effectively kept prisoner in the bizarre cult's house in Herne Hill, South London , and could not get to know her extended family or make friends.", + "guid": "https://www.dailymail.co.uk/news/article-12838025/Maoist-cult-leader-daughter-slave-Katy-Morgan-Davies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T17:07:58.000Z" + }, + { + "title": "Founder of company which 'supplied jet engine parts with falsified safety paperwork' is arrested by fraud cops in Britain over scandal which forced airlines in US and around the globe to ground at least 126 passenger planes", + "link": "https://www.dailymail.co.uk/news/article-12837757/AOG-Technics-founder-arrested-fraud-fake-aircraft-parts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 17:03:10 GMT", + "enclosure": { + "length": "11127", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78698467-0-image-a-7_1701965196968.jpg" + }, + "content": "Fraud detectives in Britain have arrested the founder of a firm which allegedly sold thousands of bogus jet engine parts which were fitted in aircraft around the world.", + "contentSnippet": "Fraud detectives in Britain have arrested the founder of a firm which allegedly sold thousands of bogus jet engine parts which were fitted in aircraft around the world.", + "guid": "https://www.dailymail.co.uk/news/article-12837757/AOG-Technics-founder-arrested-fraud-fake-aircraft-parts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T17:03:10.000Z" + }, + { + "title": "The 15 best places to visit in the UK in 2024 named by Time Out - and it's Bristol that's No.1, followed by Hull and the Isles of Scilly", + "link": "https://www.dailymail.co.uk/travel/article-12836787/the-15-best-places-visit-UK-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 17:00:05 GMT", + "enclosure": { + "length": "7017", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/11/78686267-0-image-a-17_1701948428039.jpg" + }, + "content": "The list features 'picturesque seaside towns, buzzing cities and other-worldly islands'. 'Brits don't need to travel far to experience some of the best attractions in the world,' says Time Out.", + "contentSnippet": "The list features 'picturesque seaside towns, buzzing cities and other-worldly islands'. 'Brits don't need to travel far to experience some of the best attractions in the world,' says Time Out.", + "guid": "https://www.dailymail.co.uk/travel/article-12836787/the-15-best-places-visit-UK-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T17:00:05.000Z" + }, + { + "title": "I'm a dietician with PCOS - here are the three simple tricks I used to lose 30lbs AND eradicate my hormonal acne", + "link": "https://www.dailymail.co.uk/femail/article-12835003/dietitian-pcos-weight-loss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 16:46:10 GMT", + "enclosure": { + "length": "9013", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/01/78671073-0-image-a-123_1701913324169.jpg" + }, + "content": "Tallene Hacatoryan, 31, from California, has nearly 900,000 followers on TikTok, where she opens up about how she reversed her PCOS symptoms, which included weight gain and acne.", + "contentSnippet": "Tallene Hacatoryan, 31, from California, has nearly 900,000 followers on TikTok, where she opens up about how she reversed her PCOS symptoms, which included weight gain and acne.", + "guid": "https://www.dailymail.co.uk/femail/article-12835003/dietitian-pcos-weight-loss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T16:46:10.000Z" + }, + { + "title": "Is South America heading for WAR? Venezuelan President Maduro has sparked fears across the continent with vow to take oil-rich Guyana territory, with Brazil sending troops to its border", + "link": "https://www.dailymail.co.uk/news/article-12836973/Is-South-America-heading-WAR-Venezuelan-President-Maduro-sparked-fears-continent-vow-oil-rich-Guyana-territory-Brazil-sending-troops-border.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 16:01:35 GMT", + "enclosure": { + "length": "8745", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78696677-0-image-a-60_1701963846292.jpg" + }, + "content": "With Venezuelan President Nicolas Maduro vowing to annex the oil-rich territory of Guyana and his troops massing on the nation's border, there are growing fears that an invasion of the country is imminent.", + "contentSnippet": "With Venezuelan President Nicolas Maduro vowing to annex the oil-rich territory of Guyana and his troops massing on the nation's border, there are growing fears that an invasion of the country is imminent.", + "guid": "https://www.dailymail.co.uk/news/article-12836973/Is-South-America-heading-WAR-Venezuelan-President-Maduro-sparked-fears-continent-vow-oil-rich-Guyana-territory-Brazil-sending-troops-border.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T16:01:35.000Z" + }, + { + "title": "Rotten Tomatoes ranks the BEST TV shows of 2023... so, how many have YOU seen?", + "link": "https://www.dailymail.co.uk/femail/article-12823569/Best-TV-shows-2023-Rotten-Tomatoes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 15:55:10 GMT", + "enclosure": { + "length": "11049", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/05/20/78608603-0-image-a-33_1701806446686.jpg" + }, + "content": "It may have been a tough year for TV with the WGA and SAG-AFTRA strikes, but there were still some compelling series that kept viewers tuning in. Rotten Tomatoes has ranked these shows.", + "contentSnippet": "It may have been a tough year for TV with the WGA and SAG-AFTRA strikes, but there were still some compelling series that kept viewers tuning in. Rotten Tomatoes has ranked these shows.", + "guid": "https://www.dailymail.co.uk/femail/article-12823569/Best-TV-shows-2023-Rotten-Tomatoes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T15:55:10.000Z" + }, + { + "title": "Flaxseeds may reduce risk of BREAST CANCER, study suggests", + "link": "https://www.dailymail.co.uk/health/article-12837459/flaxseeds-reduce-breast-cancer-risk-study.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 15:45:22 GMT", + "enclosure": { + "length": "6920", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78696683-0-image-a-6_1701963053391.jpg" + }, + "content": "Researchers in Nebraska and Canada found that lignans in flaxseed led to a lower chance of developing breast cancer due to the relationship they have on the gut microbiome.", + "contentSnippet": "Researchers in Nebraska and Canada found that lignans in flaxseed led to a lower chance of developing breast cancer due to the relationship they have on the gut microbiome.", + "guid": "https://www.dailymail.co.uk/health/article-12837459/flaxseeds-reduce-breast-cancer-risk-study.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T15:45:22.000Z" + }, + { + "title": "Meet the seven-stone dog who is now a TikTok star for protecting a flock of Christmas turkeys round the clock", + "link": "https://www.dailymail.co.uk/news/article-12837843/dog-tiktok-star-christmas-turkey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 15:43:37 GMT", + "enclosure": { + "length": "12204", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/15/78694927-0-image-m-27_1701962370847.jpg" + }, + "content": "Bear, a 50kg Maremma Sheepdog, lives outside all year round and works day and night to protect farmer George Ford's 640-strong flock of slow-grown Bronze turkeys.", + "contentSnippet": "Bear, a 50kg Maremma Sheepdog, lives outside all year round and works day and night to protect farmer George Ford's 640-strong flock of slow-grown Bronze turkeys.", + "guid": "https://www.dailymail.co.uk/news/article-12837843/dog-tiktok-star-christmas-turkey.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T15:43:37.000Z" + }, + { + "title": "Asda's \u00a328 Vintage Brut tops Good Housekeeping's Champagne taste test for Christmas, with judges praising its 'complex fizz and aromatic apricot' - as shoppers claim its better than Moet", + "link": "https://www.dailymail.co.uk/femail/article-12837147/asda-best-champagne-good-housekeeping-taste-test.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 14:52:29 GMT", + "enclosure": { + "length": "8735", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/14/78694545-0-image-a-21_1701960320279.jpg" + }, + "content": "The Vintage Brut, available across the UK, has been praised for its 'complex fizz' and 'aromatic apricot' with judges suggesting it can pair with smoked salmon.", + "contentSnippet": "The Vintage Brut, available across the UK, has been praised for its 'complex fizz' and 'aromatic apricot' with judges suggesting it can pair with smoked salmon.", + "guid": "https://www.dailymail.co.uk/femail/article-12837147/asda-best-champagne-good-housekeeping-taste-test.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T14:52:29.000Z" + }, + { + "title": "How muggers are robbing Tube riders of \u00a31,500 Canada Goose and North Face winter coats, AirPods and phones - amid 56 per cent surge in crime on the London Underground", + "link": "https://www.dailymail.co.uk/news/article-12837349/muggers-tube-north-face-airpods-iphone-underground-crime-surge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 14:40:08 GMT", + "enclosure": { + "length": "10474", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/14/78693035-0-image-m-95_1701957902811.jpg" + }, + "content": "Muggers are targeting young London Underground passengers for their expensive Canada Goose and North Face winter coats worth up to \u00a31,500, bosses said today.", + "contentSnippet": "Muggers are targeting young London Underground passengers for their expensive Canada Goose and North Face winter coats worth up to \u00a31,500, bosses said today.", + "guid": "https://www.dailymail.co.uk/news/article-12837349/muggers-tube-north-face-airpods-iphone-underground-crime-surge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T14:40:08.000Z" + }, + { + "title": "Going, going... gondola! Tourists get dumped into Venice canal after they refused to sit down and stop taking selfies... and the boat capsizes", + "link": "https://www.dailymail.co.uk/news/article-12837065/venice-tourists-gondola-canal-selfies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 14:22:53 GMT", + "enclosure": { + "length": "6174", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/12/78689837-0-image-a-10_1701951968079.jpg" + }, + "content": "The group had been shifting around the vessel, posing for photos in front of famous landmarks before the gondolier had to tell them to sit down and stay still.", + "contentSnippet": "The group had been shifting around the vessel, posing for photos in front of famous landmarks before the gondolier had to tell them to sit down and stay still.", + "guid": "https://www.dailymail.co.uk/news/article-12837065/venice-tourists-gondola-canal-selfies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T14:22:53.000Z" + }, + { + "title": "Plague of rats terrify flat dwellers by climbing walls, breaking into cars and chewing through Christmas gifts in two-year reign of terror", + "link": "https://www.dailymail.co.uk/news/article-12837363/Plague-rats-terrify-flat-dwellers-climbing-walls-breaking-cars-chewing-Christmas-gifts-two-year-reign-terror.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 14:01:03 GMT", + "enclosure": { + "length": "9392", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/13/78691667-0-image-m-120_1701956059007.jpg" + }, + "content": "Families living in the Overland Mews apartment block, in Peterborough, Cambridgeshire, say they have been terrorized by hundreds of disease-carrying rats climbing up to their windows.", + "contentSnippet": "Families living in the Overland Mews apartment block, in Peterborough, Cambridgeshire, say they have been terrorized by hundreds of disease-carrying rats climbing up to their windows.", + "guid": "https://www.dailymail.co.uk/news/article-12837363/Plague-rats-terrify-flat-dwellers-climbing-walls-breaking-cars-chewing-Christmas-gifts-two-year-reign-terror.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T14:01:03.000Z" + }, + { + "title": "How to make your cheap wine taste vintage - and avoid the headache the next morning! New device promises to remove hangover causing additives in seconds", + "link": "https://www.dailymail.co.uk/femail/article-12836479/How-make-cheap-wine-taste-vintage-avoid-headache-morning-New-device-promises-hangover-causing-additives-seconds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 11:28:33 GMT", + "enclosure": { + "length": "12060", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/10/78685365-0-image-a-6_1701944533157.jpg" + }, + "content": "Winewizard is an aeration device, invented by Colchester-based Michael Pritchard MBE, that removes the impurities that cause you to feel rough after drinking.", + "contentSnippet": "Winewizard is an aeration device, invented by Colchester-based Michael Pritchard MBE, that removes the impurities that cause you to feel rough after drinking.", + "guid": "https://www.dailymail.co.uk/femail/article-12836479/How-make-cheap-wine-taste-vintage-avoid-headache-morning-New-device-promises-hangover-causing-additives-seconds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T11:28:33.000Z" + }, + { + "title": "Can the council stop me using a field for my dog walking business?", + "link": "https://www.dailymail.co.uk/property/article-12831893/Can-council-stop-using-fields-earn-cash-dog-walking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 07 Dec 2023 06:00:58 GMT", + "enclosure": { + "length": "10364", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/06/13/78643803-0-image-m-10_1701869693767.jpg" + }, + "content": "I've been using one of our fields for dog walking to earn some extra cash, but the council found out and refused planning permission - is there anything I can do?", + "contentSnippet": "I've been using one of our fields for dog walking to earn some extra cash, but the council found out and refused planning permission - is there anything I can do?", + "guid": "https://www.dailymail.co.uk/property/article-12831893/Can-council-stop-using-fields-earn-cash-dog-walking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-07T06:00:58.000Z" + }, + { + "title": "Millionaire, 45, who spent \u00a313.5m on 'world's most expensive bungalow' in Sandbanks now wants to demolish it as he reveals plans to build an eco-friendly home in its place that will 'set a benchmark' for posh neighbourhood", + "link": "https://www.dailymail.co.uk/news/article-12832113/sandbanks-millionaire-demolish-bungalow-eco-friendly.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 06 Dec 2023 14:33:40 GMT", + "enclosure": { + "length": "10802", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/06/14/78645383-0-image-a-4_1701871994606.jpg" + }, + "content": "Tom Glanfield set a record for the price paid for a property on the exclusive Dorset peninsula when he bought the 117-year-old bungalow in March.", + "contentSnippet": "Tom Glanfield set a record for the price paid for a property on the exclusive Dorset peninsula when he bought the 117-year-old bungalow in March.", + "guid": "https://www.dailymail.co.uk/news/article-12832113/sandbanks-millionaire-demolish-bungalow-eco-friendly.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-06T14:33:40.000Z" + }, + { + "title": "Idyllic house at Britain's tallest waterfall complete with its own tearoom and campsite goes up for sale for \u00a3950,000", + "link": "https://www.dailymail.co.uk/property/article-12827179/idyllic-little-home-240ft-welsh-waterfall-tearoom-campsite-sale-950-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 05 Dec 2023 12:31:45 GMT", + "enclosure": { + "length": "7970", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/05/11/78593195-0-image-a-36_1701777179219.jpg" + }, + "content": "Tan-y-Pistyll sits at the 240 feet-high\u00a0Pistyll Rhaeadr falls\u00a0in the Berwyn Mountains in Wales, west of Oswestry. The property, which is also a business venture, is listed for \u00a3950,000.", + "contentSnippet": "Tan-y-Pistyll sits at the 240 feet-high\u00a0Pistyll Rhaeadr falls\u00a0in the Berwyn Mountains in Wales, west of Oswestry. The property, which is also a business venture, is listed for \u00a3950,000.", + "guid": "https://www.dailymail.co.uk/property/article-12827179/idyllic-little-home-240ft-welsh-waterfall-tearoom-campsite-sale-950-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-05T12:31:45.000Z" + }, + { + "title": "Tiny beach hut on sale for \u00a389,000 is likened to Dr Who style TARDIS as it looks bigger inside than from outdoors", + "link": "https://www.dailymail.co.uk/property/article-12823881/tiny-beach-hut-home-dr-tardis-comparison-sale-89-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 04 Dec 2023 16:41:34 GMT", + "enclosure": { + "length": "7387", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/04/16/78559423-0-image-a-49_1701705961764.jpg" + }, + "content": "Inside the \u00a389,000 hut there is a large hob, a portable heater, a table to dine at and plenty of shelves for storage space which bely its minute size.", + "contentSnippet": "Inside the \u00a389,000 hut there is a large hob, a portable heater, a table to dine at and plenty of shelves for storage space which bely its minute size.", + "guid": "https://www.dailymail.co.uk/property/article-12823881/tiny-beach-hut-home-dr-tardis-comparison-sale-89-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-04T16:41:34.000Z" + }, + { + "title": "CIAR BYRNE's festive finds for the gardener in your life", + "link": "https://www.dailymail.co.uk/home/gardening/article-12820393/CIAR-BYRNEs-festive-finds-gardener-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 03 Dec 2023 22:44:37 GMT", + "enclosure": { + "length": "12440", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/03/17/78526477-0-image-m-32_1701624624946.jpg" + }, + "content": "CIAR BYRNE has picked out the best gardening gifts for Christmas, including a pair of gardening gloves made for the National Trust by Burgon & Ball and a Gin Cocktail Herb Garden Kit.", + "contentSnippet": "CIAR BYRNE has picked out the best gardening gifts for Christmas, including a pair of gardening gloves made for the National Trust by Burgon & Ball and a Gin Cocktail Herb Garden Kit.", + "guid": "https://www.dailymail.co.uk/home/gardening/article-12820393/CIAR-BYRNEs-festive-finds-gardener-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-03T22:44:37.000Z" + }, + { + "title": "Gaynor Lord police say she did not meet anyone before she vanished: Officers rule out 'third party involvement' but say they are 'keeping an open mind' as body is found in Norwich river in hunt for missing mother-of-three", + "link": "https://www.dailymail.co.uk/news/article-12868657/Gaynor-Lord-police-say-no-evidence-party-involvement-body-Norwich-river-hunt-missing-mother-three.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:34:56 GMT", + "enclosure": { + "length": "11488", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78976477-0-image-a-1_1702627268361.jpg" + }, + "content": "Chief superintendent Dave Buckley said that the case remains a missing person's inquiry and they do not believe she met anyone on the way to Wensum Park in Norwich.", + "contentSnippet": "Chief superintendent Dave Buckley said that the case remains a missing person's inquiry and they do not believe she met anyone on the way to Wensum Park in Norwich.", + "guid": "https://www.dailymail.co.uk/news/article-12868657/Gaynor-Lord-police-say-no-evidence-party-involvement-body-Norwich-river-hunt-missing-mother-three.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:34:56.000Z" + }, + { + "title": "'You are Americans': Melania tells new U.S. citizens from 25 countries how hard it was to become an American when she moved from Slovenia in 1996 and urges them to 'stand their ground' in moving naturalization ceremony", + "link": "https://www.dailymail.co.uk/news/article-12868391/melania-trump-national-archives-ceremony-speech.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:34:38 GMT", + "enclosure": { + "length": "2574", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007161-0-image-a-9_1702653725899.jpg" + }, + "content": "Melania Trump welcomed 25 new citizens on Friday during a rare public appearance, advising them on what it means to be an American.", + "contentSnippet": "Melania Trump welcomed 25 new citizens on Friday during a rare public appearance, advising them on what it means to be an American.", + "guid": "https://www.dailymail.co.uk/news/article-12868391/melania-trump-national-archives-ceremony-speech.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:34:38.000Z" + }, + { + "title": "Alex Batty's grandfather died six months before the teenager decided to leave French commune and return to his grandmother in Britain because his mother insisted they should move to Finland, police reveal", + "link": "https://www.dailymail.co.uk/news/article-12868829/Alex-Battys-grandfather-died-six-months-teenager-decided-leave-French-commune-return-grandmother-Britain-mother-insisted-Finland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:34:35 GMT", + "enclosure": { + "length": "7080", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007403-0-image-a-7_1702653844444.jpg" + }, + "content": "Alex Batty, from Oldham, Greater Manchester, was just 11 when he did not return from a holiday to Spain with his mother Melanie, then 37, and grandfather David, then 58, in 2017.", + "contentSnippet": "Alex Batty, from Oldham, Greater Manchester, was just 11 when he did not return from a holiday to Spain with his mother Melanie, then 37, and grandfather David, then 58, in 2017.", + "guid": "https://www.dailymail.co.uk/news/article-12868829/Alex-Battys-grandfather-died-six-months-teenager-decided-leave-French-commune-return-grandmother-Britain-mother-insisted-Finland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:34:35.000Z" + }, + { + "title": "Jade Goody's mum Jackiey Budden polishes late star's headstone, sobs and lays images of Strictly star son Bobby during grave visit... after failing to get a ticket to final amid feud", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868549/Jade-Goodys-mother-Jackiey-Budden-polishes-late-stars-headstone-sobs-lays-images-Strictly-star-son-Bobby-grave-visit-feud-Jeff-Brazier-rages-on.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:33:31 GMT", + "enclosure": { + "length": "11611", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007621-0-image-a-35_1702653964109.jpg" + }, + "content": "Jade Goody's mother Jackiey Budden appeared heartbroken as she visited the late star's grave in Epping Forest on Wednesday, 14 years after her death.\u00a0", + "contentSnippet": "Jade Goody's mother Jackiey Budden appeared heartbroken as she visited the late star's grave in Epping Forest on Wednesday, 14 years after her death.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868549/Jade-Goodys-mother-Jackiey-Budden-polishes-late-stars-headstone-sobs-lays-images-Strictly-star-son-Bobby-grave-visit-feud-Jeff-Brazier-rages-on.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:33:31.000Z" + }, + { + "title": "Thomas Straker, whose wife 'kicked him' out after learning of his affair with Princess Olympia of Greece - and who was criticised for white male team in his swanky Notting Hill eatery - is named the 'most in demand' restaurant of the year", + "link": "https://www.dailymail.co.uk/femail/article-12868251/Thomas-Straker-affair-princess-olympia-greece-demand-restaurant-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:27:46 GMT", + "enclosure": { + "length": "10539", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003911-0-image-a-80_1702647638111.jpg" + }, + "content": "Thomas Straker's London venue topped the list, curated by booking app Resy, Curlytails reports. His restaurant - called Straker's - promises to offer 'a hub of cultures and culinary delights'.", + "contentSnippet": "Thomas Straker's London venue topped the list, curated by booking app Resy, Curlytails reports. His restaurant - called Straker's - promises to offer 'a hub of cultures and culinary delights'.", + "guid": "https://www.dailymail.co.uk/femail/article-12868251/Thomas-Straker-affair-princess-olympia-greece-demand-restaurant-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:27:46.000Z" + }, + { + "title": "Already spending his Dingo Dollars? I'm A Celeb champ Sam Thompson treats Zara McDermott to dinner at The Ritz for her 27th birthday after splashing out on \u00a33500 designer bag", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868493/Sam-Thompson-Zara-McDermott-celebrate-27th-birthday-romantic-evening-Ritz.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:26:26 GMT", + "enclosure": { + "length": "10244", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79005005-0-image-a-13_1702649891360.jpg" + }, + "content": "The couple were all smiles as they departed the swanky venue following a romantic dinner date after Sam recently returned from winning I'm A Celebrity in Australia.", + "contentSnippet": "The couple were all smiles as they departed the swanky venue following a romantic dinner date after Sam recently returned from winning I'm A Celebrity in Australia.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868493/Sam-Thompson-Zara-McDermott-celebrate-27th-birthday-romantic-evening-Ritz.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:26:26.000Z" + }, + { + "title": "British Airways identifies 600 areas to improve as it announces \u00a37billion overhaul in bid to reclaim 'world's favourite airline' title from Middle Eastern rivals after years of decline", + "link": "https://www.dailymail.co.uk/news/article-12868531/British-Airways-identifies-600-areas-improve-announces-7billion-overhaul-bid-reclaim-worlds-favourite-airline-title-Middle-Eastern-rivals-years-decline.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:25:00 GMT", + "enclosure": { + "length": "7501", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007231-0-image-m-16_1702653407945.jpg" + }, + "content": "Bosses at Britain's flagship airline have identified more than 600 areas where it needs to improve after years of decline and a series of mass cancellations.", + "contentSnippet": "Bosses at Britain's flagship airline have identified more than 600 areas where it needs to improve after years of decline and a series of mass cancellations.", + "guid": "https://www.dailymail.co.uk/news/article-12868531/British-Airways-identifies-600-areas-improve-announces-7billion-overhaul-bid-reclaim-worlds-favourite-airline-title-Middle-Eastern-rivals-years-decline.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:25:00.000Z" + }, + { + "title": "Emmerdale's Steve Halliwell dies aged 77: Actor who played loveable Zak Dingle for 29 years passes away surrounded by family", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868419/Emmerdales-Steve-Halliwell-dies-Zak-Dingle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:24:32 GMT", + "enclosure": { + "length": "9444", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79004137-0-image-a-14_1702648019527.jpg" + }, + "content": "The soap star , best known for playing Zak Dingle, peacefully passed away in a hospice surrounded by his family, ITV revealed on Friday.", + "contentSnippet": "The soap star , best known for playing Zak Dingle, peacefully passed away in a hospice surrounded by his family, ITV revealed on Friday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868419/Emmerdales-Steve-Halliwell-dies-Zak-Dingle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:24:32.000Z" + }, + { + "title": "Thrifty Adele (who's worth \u00a3165M) reveals she steals hotel toiletries to give to guests at her\u00a0\u00a348M mansion", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868079/Adele-gets-Christmas-spirit-treating-guests-58m-LA-mansion-personalised-gifts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:24:28 GMT", + "enclosure": { + "length": "10220", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79002519-0-image-m-146_1702653847098.jpg" + }, + "content": "The singer, 35, has spent the last three months creating personalised goodies and toiletries in the rooms of her sprawling home in Hidden Hills, Los Angeles.", + "contentSnippet": "The singer, 35, has spent the last three months creating personalised goodies and toiletries in the rooms of her sprawling home in Hidden Hills, Los Angeles.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868079/Adele-gets-Christmas-spirit-treating-guests-58m-LA-mansion-personalised-gifts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:24:28.000Z" + }, + { + "title": "Dynamo fans watch with bated breath as magician is buried alive under five tonnes of soil live on air as they call his terrifying 'final act truly spectacular'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867427/Dynamo-dead-fans-watch-magician-buried-alive-five-tonnes-soil-live-air.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:24:18 GMT", + "enclosure": { + "length": "7663", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995717-0-image-a-39_1702630686458.jpg" + }, + "content": "Dynamo's final act under his stage name has been called 'truly spectacular' by fans after he was buried alive on live TV last night.", + "contentSnippet": "Dynamo's final act under his stage name has been called 'truly spectacular' by fans after he was buried alive on live TV last night.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867427/Dynamo-dead-fans-watch-magician-buried-alive-five-tonnes-soil-live-air.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:24:18.000Z" + }, + { + "title": "Gaynor Lord missing LIVE: Police issue statement after finding female's body in river Wensum as they say thoughts are with Norwich mother's family", + "link": "https://www.dailymail.co.uk/news/article-12867757/Gaynor-Lord-missing-LIVE-Divers-river-search-day-seven-police-detective.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:22:36 GMT", + "enclosure": { + "length": "9982", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998085-0-image-a-1_1702636128531.jpg" + }, + "content": "Follow MailOnline's blog for key updates as police and divers continue to search the River Wensum for mother Gaynor Lord who went missing from the centre of Norwich last week.", + "contentSnippet": "Follow MailOnline's blog for key updates as police and divers continue to search the River Wensum for mother Gaynor Lord who went missing from the centre of Norwich last week.", + "guid": "https://www.dailymail.co.uk/news/article-12867757/Gaynor-Lord-missing-LIVE-Divers-river-search-day-seven-police-detective.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:22:36.000Z" + }, + { + "title": "Katie Price and former fianc\u00e9 Carl Woods put the brakes on second hand car lot at \u00a33million 'mucky mansion' after council threatens enforcement action", + "link": "https://www.dailymail.co.uk/news/article-12867563/Katie-Price-former-fianc-Carl-Woods-brakes-second-hand-car-lot-3million-mucky-mansion-council-threatens-enforcement-action.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:22:22 GMT", + "enclosure": { + "length": "10812", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79007549-0-image-a-1_1702653734642.jpg" + }, + "content": "Katie Price is no longer using her \u00a33million 'mucky mansion' as a second-hand car lot after local council chiefs threatened enforcement action.", + "contentSnippet": "Katie Price is no longer using her \u00a33million 'mucky mansion' as a second-hand car lot after local council chiefs threatened enforcement action.", + "guid": "https://www.dailymail.co.uk/news/article-12867563/Katie-Price-former-fianc-Carl-Woods-brakes-second-hand-car-lot-3million-mucky-mansion-council-threatens-enforcement-action.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:22:22.000Z" + }, + { + "title": "Female pubgoer in her 50s is found dead in bar after being locked in toilet overnight", + "link": "https://www.dailymail.co.uk/news/article-12868281/Female-pubgoer-dead-bar-locked-toilet-overnight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:21:06 GMT", + "enclosure": { + "length": "7147", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/15/79006697-0-image-a-26_1702653487379.jpg" + }, + "content": "The woman, who is said to have been a regular at the Railway Inn in Droitwich, Worcestershire, went to the toilet during the evening but did not return to her table.", + "contentSnippet": "The woman, who is said to have been a regular at the Railway Inn in Droitwich, Worcestershire, went to the toilet during the evening but did not return to her table.", + "guid": "https://www.dailymail.co.uk/news/article-12868281/Female-pubgoer-dead-bar-locked-toilet-overnight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:21:06.000Z" + }, + { + "title": "School in Huddersfield sparks public health warning after two pupils are diagnosed with Hepatitis A", + "link": "https://www.dailymail.co.uk/news/article-12867863/School-Huddersfield-sparks-public-health-warning-two-pupils-diagnosed-Hepatitis-A.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:20:56 GMT", + "enclosure": { + "length": "7081", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78998991-0-image-a-6_1702638727187.jpg" + }, + "content": "A public health warning has been issued after two children from a Huddersfield school contracted\u00a0Hepatitis A.", + "contentSnippet": "A public health warning has been issued after two children from a Huddersfield school contracted\u00a0Hepatitis A.", + "guid": "https://www.dailymail.co.uk/news/article-12867863/School-Huddersfield-sparks-public-health-warning-two-pupils-diagnosed-Hepatitis-A.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:20:56.000Z" + }, + { + "title": "Judge blasts prison system 'shambles' after having to postpone sentencing of female cafe boss who tricked woman she met on Plenty of Fish into having sex with her by pretending to be a man", + "link": "https://www.dailymail.co.uk/news/article-12868713/Blade-Silvano-Plenty-Fish-sex-attacker.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:19:31 GMT", + "enclosure": { + "length": "9584", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79006585-0-image-m-112_1702652369955.jpg" + }, + "content": "Blade Silvano, 41, was convicted seven months ago at Cambridge Crown Court of pretending to be a man so she could sleep with another woman after tricking her victim via the website Plenty of Fish.", + "contentSnippet": "Blade Silvano, 41, was convicted seven months ago at Cambridge Crown Court of pretending to be a man so she could sleep with another woman after tricking her victim via the website Plenty of Fish.", + "guid": "https://www.dailymail.co.uk/news/article-12868713/Blade-Silvano-Plenty-Fish-sex-attacker.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:19:31.000Z" + }, + { + "title": "Terrifying moment Ukrainian politician lets off three GRENADES during council meeting, seriously wounding 26 people", + "link": "https://www.dailymail.co.uk/news/article-12868355/Terrifying-moment-Ukrainian-politician-lets-three-GRENADES-council-meeting-seriously-wounding-26-people.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:17:32 GMT", + "enclosure": { + "length": "8281", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003383-0-image-m-41_1702647028148.jpg" + }, + "content": "The man, named as council representative Serhiy Batrin, 54,\u00a0is seen entering the meeting late and standing by the door during a heated discussion at the session in Keretsk, in the Zakarpattia region", + "contentSnippet": "The man, named as council representative Serhiy Batrin, 54,\u00a0is seen entering the meeting late and standing by the door during a heated discussion at the session in Keretsk, in the Zakarpattia region", + "guid": "https://www.dailymail.co.uk/news/article-12868355/Terrifying-moment-Ukrainian-politician-lets-three-GRENADES-council-meeting-seriously-wounding-26-people.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:17:32.000Z" + }, + { + "title": "Queen Letizia 'branded a \"daughter of a b****\" by a Spanish government politician' on 'plane home with Luis Rubiales' after Women's World Cup that she watched in Australia", + "link": "https://www.dailymail.co.uk/femail/article-12863719/Queen-Letizia-branded-daughter-b-Spanish-government-politician-plane-home-Luis-Rubiales-Womens-World-Cup-watched-Australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:14:13 GMT", + "enclosure": { + "length": "9877", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/12/78957301-0-image-a-16_1702558535487.jpg" + }, + "content": "The Spanish Secretary of State for Sports, Victor Francos, allegedly used the expletive as the\u00a0'kissgate' scandal following the Women's World Cup final erupted.", + "contentSnippet": "The Spanish Secretary of State for Sports, Victor Francos, allegedly used the expletive as the\u00a0'kissgate' scandal following the Women's World Cup final erupted.", + "guid": "https://www.dailymail.co.uk/femail/article-12863719/Queen-Letizia-branded-daughter-b-Spanish-government-politician-plane-home-Luis-Rubiales-Womens-World-Cup-watched-Australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:14:13.000Z" + }, + { + "title": "Own a rock mecca! Welsh country house where Oasis, Queen, the Stone Roses and Black Sabbath all made hit records goes on the market for \u00a31.95million", + "link": "https://www.dailymail.co.uk/property/article-12868489/Own-rock-mecca-Welsh-country-house-Oasis-Queen-Stone-Roses-Black-Sabbath-hit-records-goes-market-1-95million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:12:17 GMT", + "enclosure": { + "length": "12911", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79006437-0-image-m-200_1702651988497.jpg" + }, + "content": "The Old Mill House near Monmouth, South Wales was part of the legendary Rockfield studios where Oasis, Queen, Black Sabbath The Stone Roses and Coldplay all recorded hit records.", + "contentSnippet": "The Old Mill House near Monmouth, South Wales was part of the legendary Rockfield studios where Oasis, Queen, Black Sabbath The Stone Roses and Coldplay all recorded hit records.", + "guid": "https://www.dailymail.co.uk/property/article-12868489/Own-rock-mecca-Welsh-country-house-Oasis-Queen-Stone-Roses-Black-Sabbath-hit-records-goes-market-1-95million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:12:17.000Z" + }, + { + "title": "Nigel Farage splashes out \u00a3500,000 on beachside lovenest he will share with his French girlfriend - and it boasts easy access to beach where migrants arrive from France in small boats", + "link": "https://www.dailymail.co.uk/news/article-12868351/nigel-farage-spends-500-000-beachside-lovenest-french-girlfriend-easy-access-migrants-arrive-france-small-boats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:11:42 GMT", + "enclosure": { + "length": "7353", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79005079-0-image-m-40_1702649923296.jpg" + }, + "content": "EXCLUSIVE: The cosy house, which has four bedrooms, two bathrooms and a games room sits on the Kent coast.", + "contentSnippet": "EXCLUSIVE: The cosy house, which has four bedrooms, two bathrooms and a games room sits on the Kent coast.", + "guid": "https://www.dailymail.co.uk/news/article-12868351/nigel-farage-spends-500-000-beachside-lovenest-french-girlfriend-easy-access-migrants-arrive-france-small-boats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:11:42.000Z" + }, + { + "title": "Why did Gaynor Lord leave work early? Why did she call her friend... and what happened in the missing 34 minutes? All the unanswered questions as body is found in hunt for missing mother-of-three", + "link": "https://www.dailymail.co.uk/news/article-12868371/Why-did-Gaynor-Lord-leave-work-early-did-call-friend-happened-missing-34-minutes-unanswered-questions-body-hunt-missing-mother-three.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:11:19 GMT", + "enclosure": { + "length": "8562", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/78950013-0-image-m-67_1702650873166.jpg" + }, + "content": "Gaynor Lord left work on Friday afternoon, hurried through the city centre and spent\u00a0over 30 minutes at Norwich Cathedral in a series of events which police described as 'out of character'.", + "contentSnippet": "Gaynor Lord left work on Friday afternoon, hurried through the city centre and spent\u00a0over 30 minutes at Norwich Cathedral in a series of events which police described as 'out of character'.", + "guid": "https://www.dailymail.co.uk/news/article-12868371/Why-did-Gaynor-Lord-leave-work-early-did-call-friend-happened-missing-34-minutes-unanswered-questions-body-hunt-missing-mother-three.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:11:19.000Z" + }, + { + "title": "Italian restaurant in London refuses to serve carbonara after too many customers demand to add 'cream, mushrooms and chicken' to the 'traditional Roman-style recipe'", + "link": "https://www.dailymail.co.uk/femail/article-12867825/Italian-restaurant-London-refuses-serve-carbonara-customers-demand-add-cream-mushrooms-chicken-traditional-Roman-style-recipe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:10:30 GMT", + "enclosure": { + "length": "11323", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999455-0-image-a-36_1702638853413.jpg" + }, + "content": "Bottega Prelibato, in Shoreditch, say they are not going to 'compromise on their quality and authenticity' by making adjustments to their 'traditional Roman-style recipe'.", + "contentSnippet": "Bottega Prelibato, in Shoreditch, say they are not going to 'compromise on their quality and authenticity' by making adjustments to their 'traditional Roman-style recipe'.", + "guid": "https://www.dailymail.co.uk/femail/article-12867825/Italian-restaurant-London-refuses-serve-carbonara-customers-demand-add-cream-mushrooms-chicken-traditional-Roman-style-recipe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:10:30.000Z" + }, + { + "title": "England and Wales' death hotspots MAPPED as official statistics show mortality rates are twice as high in parts of country", + "link": "https://www.dailymail.co.uk/health/article-12868155/England-Wales-death-hotspots-MAPPED-official-statistics-mortality-rates-twice-high-parts-country.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:09:38 GMT", + "enclosure": { + "length": "6269", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79004683-0-image-m-10_1702650259745.jpg" + }, + "content": "Overall, 577,160 deaths were registered in England and Wales in 2022, marking a\u00a01.6 per cent decline on the year before. But it was massively down on the 607,922 toll of 2020.", + "contentSnippet": "Overall, 577,160 deaths were registered in England and Wales in 2022, marking a\u00a01.6 per cent decline on the year before. But it was massively down on the 607,922 toll of 2020.", + "guid": "https://www.dailymail.co.uk/health/article-12868155/England-Wales-death-hotspots-MAPPED-official-statistics-mortality-rates-twice-high-parts-country.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:09:38.000Z" + }, + { + "title": "Female code breaker who helped Alan Turing reveal the Nazi war machine's innermost secrets dies aged 98", + "link": "https://www.dailymail.co.uk/news/article-12867531/code-breaker-Alan-Turing-Nazi-secrets-dies-aged-98.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:01:14 GMT", + "enclosure": { + "length": "9148", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78995971-0-image-m-16_1702631745290.jpg" + }, + "content": "Mary Ratcliffe (pictured), who has died aged 98, worked at a secret code breaking base in Middlesex, helping to decode Nazis messages, using machines invented by Alan Turing.", + "contentSnippet": "Mary Ratcliffe (pictured), who has died aged 98, worked at a secret code breaking base in Middlesex, helping to decode Nazis messages, using machines invented by Alan Turing.", + "guid": "https://www.dailymail.co.uk/news/article-12867531/code-breaker-Alan-Turing-Nazi-secrets-dies-aged-98.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:01:14.000Z" + }, + { + "title": "My boyfriend has spent more than $1 MILLION on our trips around the world - we have visited 55 countries and ALWAYS stay in five-star hotels", + "link": "https://www.dailymail.co.uk/femail/article-12861211/Boyfriend-million-travel-countries-hotels.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:00:59 GMT", + "enclosure": { + "length": "10041", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/13/22/78935125-0-image-a-89_1702506959373.jpg" + }, + "content": "Yelena Lala, 25, met her boyfriend, 34, who does not wish to be named, when he reached out on Instagram. He has since whisked her away to a whole host of different countries.", + "contentSnippet": "Yelena Lala, 25, met her boyfriend, 34, who does not wish to be named, when he reached out on Instagram. He has since whisked her away to a whole host of different countries.", + "guid": "https://www.dailymail.co.uk/femail/article-12861211/Boyfriend-million-travel-countries-hotels.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:00:59.000Z" + }, + { + "title": "'I wish I hadn't answered that call': Gaynor Lord's friend tells of her regret after she hung up on missing mother-of-three on day she disappeared so she could take a work call - as police divers recover body from river", + "link": "https://www.dailymail.co.uk/news/article-12868295/Gaynor-Lords-friend-regret-missing-mother-police-divers-recover-body-river.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 15:00:08 GMT", + "enclosure": { + "length": "8138", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79000269-0-image-m-27_1702646636344.jpg" + }, + "content": "Friend Julie Butcher (pictured) had shared 'gins and hugs' with the Gaynor Lord just days before and the pair agreed to play tennis together after Christmas.", + "contentSnippet": "Friend Julie Butcher (pictured) had shared 'gins and hugs' with the Gaynor Lord just days before and the pair agreed to play tennis together after Christmas.", + "guid": "https://www.dailymail.co.uk/news/article-12868295/Gaynor-Lords-friend-regret-missing-mother-police-divers-recover-body-river.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T15:00:08.000Z" + }, + { + "title": "Sophie Turner enjoys a smoke and a smooch with her friend after an al fresco coffee date amid blossoming romance with Peregrine Pearson", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867465/Sophie-Turner-enjoys-smoke-smooch-friend-al-fresco-coffee-date-amid-blossoming-romance-Peregrine-Pearson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:58:02 GMT", + "enclosure": { + "length": "9944", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995155-0-image-m-22_1702630415681.jpg" + }, + "content": "The Game Of Thrones star, 27, looked in high spirits on the outing as she grabbed a drink in Notting Hill, sitting outside so she could enjoy a smoke.", + "contentSnippet": "The Game Of Thrones star, 27, looked in high spirits on the outing as she grabbed a drink in Notting Hill, sitting outside so she could enjoy a smoke.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867465/Sophie-Turner-enjoys-smoke-smooch-friend-al-fresco-coffee-date-amid-blossoming-romance-Peregrine-Pearson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:58:02.000Z" + }, + { + "title": "Families' disgust as fathers on the school run are being targeted by sex workers in Britain's failed first legal red light district - as they are now being forced to offer Christmas cut-price specials due to the cost of living crisis", + "link": "https://www.dailymail.co.uk/news/article-12867507/Families-disgust-fathers-school-run-targeted-sex-workers-Britains-failed-legal-red-light-district-forced-offer-Christmas-cut-price-specials-cost-living-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:57:31 GMT", + "enclosure": { + "length": "9019", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78996249-0-image-m-20_1702635953461.jpg" + }, + "content": "Sex can be bought for as little as \u00a330 before 9am and \u00a310 after midnight on the streets of Leeds due to the cost-of-living crisis.", + "contentSnippet": "Sex can be bought for as little as \u00a330 before 9am and \u00a310 after midnight on the streets of Leeds due to the cost-of-living crisis.", + "guid": "https://www.dailymail.co.uk/news/article-12867507/Families-disgust-fathers-school-run-targeted-sex-workers-Britains-failed-legal-red-light-district-forced-offer-Christmas-cut-price-specials-cost-living-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:57:31.000Z" + }, + { + "title": "Has the air fryer had its chips? Kitchen company launches oven tray that mimics energy-efficient cooking of counter-top appliance, saying it 'does the same job' without cluttering worktops", + "link": "https://www.dailymail.co.uk/femail/article-12867847/air-fryer-oven-alternatives-energy-efficent-cooking-trays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:55:30 GMT", + "enclosure": { + "length": "9876", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003311-0-image-a-17_1702646338925.jpg" + }, + "content": "Kitchen company Howdens has just launched its AirFryer Tray, which it claims mimics the heat circulation process of an air fryer but in a standard oven", + "contentSnippet": "Kitchen company Howdens has just launched its AirFryer Tray, which it claims mimics the heat circulation process of an air fryer but in a standard oven", + "guid": "https://www.dailymail.co.uk/femail/article-12867847/air-fryer-oven-alternatives-energy-efficent-cooking-trays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:55:30.000Z" + }, + { + "title": "Elisabeth Moss, 41, cuts a low-key figure as she goes make-up free while sporting a casual ensemble in LA", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867687/Elisabeth-Moss-41-cuts-low-key-figure-goes-make-free-sporting-casual-ensemble-LA.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:53:11 GMT", + "enclosure": { + "length": "10078", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/02/78987773-0-image-a-75_1702608327447.jpg" + }, + "content": "The star looked fresh-faced as she went make-up free while making her way to her trailer with a Thermos cup and her phone in hand", + "contentSnippet": "The star looked fresh-faced as she went make-up free while making her way to her trailer with a Thermos cup and her phone in hand", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867687/Elisabeth-Moss-41-cuts-low-key-figure-goes-make-free-sporting-casual-ensemble-LA.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:53:11.000Z" + }, + { + "title": "Captain Tom's charity boss quits just months after 'trying to remove war hero's son-in-law from the board'", + "link": "https://www.dailymail.co.uk/news/article-12868425/captain-tom-charity-boss-quits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:52:43 GMT", + "enclosure": { + "length": "5214", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79004953-0-image-m-31_1702649720521.jpg" + }, + "content": "Simon DeMaid was one of three trustees of the Captain Tom Foundation, along with Colin Ingram-Moore, who is married to the Covid fundraiser's daughter, Hannah, and chair, Stephen Jones.", + "contentSnippet": "Simon DeMaid was one of three trustees of the Captain Tom Foundation, along with Colin Ingram-Moore, who is married to the Covid fundraiser's daughter, Hannah, and chair, Stephen Jones.", + "guid": "https://www.dailymail.co.uk/news/article-12868425/captain-tom-charity-boss-quits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:52:43.000Z" + }, + { + "title": "Prince Harry wins \u00a3140,000 from the Mirror's publisher after High Court rules he was the victim of phone hacking between 2003 and 2009", + "link": "https://www.dailymail.co.uk/news/article-12868243/Prince-Harry-Mirror-High-Court-phone-hacking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:49:30 GMT", + "enclosure": { + "length": "10531", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79001991-0-image-m-4_1702645427731.jpg" + }, + "content": "The Duke of Sussex 's case was 'proved in part', said Mr Justice Fancourt. Journalists at the Sunday Mirror, the People and the Daily Mirror had unlawfully obtained Harry's private information for stories.", + "contentSnippet": "The Duke of Sussex 's case was 'proved in part', said Mr Justice Fancourt. Journalists at the Sunday Mirror, the People and the Daily Mirror had unlawfully obtained Harry's private information for stories.", + "guid": "https://www.dailymail.co.uk/news/article-12868243/Prince-Harry-Mirror-High-Court-phone-hacking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:49:30.000Z" + }, + { + "title": "Meet the siblings, aged 7 and 10, who have dementia - as their mum reveals the giveaway signs something wasn't right", + "link": "https://www.dailymail.co.uk/news/article-12867827/childhood-dementia-giveaway-signs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:47:19 GMT", + "enclosure": { + "length": "5436", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003203-0-image-a-71_1702647527717.jpg" + }, + "content": "Brisbane siblings Rory and Anna O'Grady, aged ten and seven, began showing signs of dementia at an early age but went undiagnosed due to the belief the condition is only found in the elderly.", + "contentSnippet": "Brisbane siblings Rory and Anna O'Grady, aged ten and seven, began showing signs of dementia at an early age but went undiagnosed due to the belief the condition is only found in the elderly.", + "guid": "https://www.dailymail.co.uk/news/article-12867827/childhood-dementia-giveaway-signs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:47:19.000Z" + }, + { + "title": "'Miracle' on the D16: Remote spot where Alex Batty was discovered walking in the pouring rain at 2am in pitch darkness four days after leaving commune - as locals say he was lucky not to be run over and killed", + "link": "https://www.dailymail.co.uk/news/article-12868555/Alex-Batty-remote-road-D16-France-missing-boy-found.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:45:12 GMT", + "enclosure": { + "length": "5096", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79005311-0-image-a-39_1702651188615.jpg" + }, + "content": "Alex Batty, 17, was picked up on the D16 - an unlit single carriageway country road between the French towns of Chalabre and Mirepoix - by Fabien Accidini, a chiropractic student from Toulouse.", + "contentSnippet": "Alex Batty, 17, was picked up on the D16 - an unlit single carriageway country road between the French towns of Chalabre and Mirepoix - by Fabien Accidini, a chiropractic student from Toulouse.", + "guid": "https://www.dailymail.co.uk/news/article-12868555/Alex-Batty-remote-road-D16-France-missing-boy-found.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:45:12.000Z" + }, + { + "title": "Two-time world darts champion Peter Wright reveals he lives on a budget of just \u00a3212 per week, transferred to him by his hairdresser-manager wife... despite earning a million in winnings this year!", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12868321/Peter-Wright-strict-week-budget-wife-Joanne-darts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:44:02 GMT", + "enclosure": { + "length": "10666", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79005755-0-image-a-43_1702650807838.jpg" + }, + "content": "Peter Wright has revealed that despite banking millions during his successful darts career he has been given a strict weekly budget by his wife and manager\u00a0Joanne.", + "contentSnippet": "Peter Wright has revealed that despite banking millions during his successful darts career he has been given a strict weekly budget by his wife and manager\u00a0Joanne.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12868321/Peter-Wright-strict-week-budget-wife-Joanne-darts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:44:02.000Z" + }, + { + "title": "Shameless moment thief steals couple's luggage from the roadside as they load their other bags into a taxi", + "link": "https://www.dailymail.co.uk/news/article-12868203/Shameless-moment-thief-steals-couples-luggage-roadside-load-bags-taxi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:39:49 GMT", + "enclosure": { + "length": "6994", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79002045-0-image-a-20_1702648118103.jpg" + }, + "content": "This is the shocking moment a brazen thief stole a couple's bag as they loaded their luggage into a taxi outside a London railway station.", + "contentSnippet": "This is the shocking moment a brazen thief stole a couple's bag as they loaded their luggage into a taxi outside a London railway station.", + "guid": "https://www.dailymail.co.uk/news/article-12868203/Shameless-moment-thief-steals-couples-luggage-roadside-load-bags-taxi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:39:49.000Z" + }, + { + "title": "Alex Batty's grandmother says she is 'over the moon' after speaking to her grandson for the first time in six years and 'desperate to see him' as she waits for him to return to the UK 'in next few days'", + "link": "https://www.dailymail.co.uk/news/article-12867495/British-police-begin-hunt-Alex-Battys-mother-grandfather-detectives-fly-search-French-region-known-hippy-camps-boy-brainwashed-following-abduction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:39:26 GMT", + "enclosure": { + "length": "5075", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79004557-0-image-m-13_1702651152427.jpg" + }, + "content": "Alex Batty, from Oldham, Greater Manchester, was just 11 when he did not return from a holiday to Spain with his mother Melanie, then 37, and grandfather David, then 58, in 2017.", + "contentSnippet": "Alex Batty, from Oldham, Greater Manchester, was just 11 when he did not return from a holiday to Spain with his mother Melanie, then 37, and grandfather David, then 58, in 2017.", + "guid": "https://www.dailymail.co.uk/news/article-12867495/British-police-begin-hunt-Alex-Battys-mother-grandfather-detectives-fly-search-French-region-known-hippy-camps-boy-brainwashed-following-abduction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:39:26.000Z" + }, + { + "title": "Secret garden hidden for years by a 12ft wall goes up for sale for \u00a3975,000 - but buyers do get a cottage thrown in too", + "link": "https://www.dailymail.co.uk/news/article-12867975/Secret-garden-hidden-years-12foot-wall-goes-sale-cottage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:39:16 GMT", + "enclosure": { + "length": "8824", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79002467-0-image-m-19_1702645971032.jpg" + }, + "content": "The rare and historic property\u00a0in Glynllifon near Caernarfon, North Wales boasts the 2.3 acre plot as the perfect place for a budding landscaper to transform.", + "contentSnippet": "The rare and historic property\u00a0in Glynllifon near Caernarfon, North Wales boasts the 2.3 acre plot as the perfect place for a budding landscaper to transform.", + "guid": "https://www.dailymail.co.uk/news/article-12867975/Secret-garden-hidden-years-12foot-wall-goes-sale-cottage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:39:16.000Z" + }, + { + "title": "Gardeners' World star Monty Don admits he has no regrets about taking his friend's wife because they had an 'intense' attraction: 'All is fair in love and war'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867663/Monty-Don-admits-no-regrets-taking-friends-wife-intense-attraction-far-love-war.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:29:33 GMT", + "enclosure": { + "length": "10120", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997663-0-image-a-68_1702635445800.jpg" + }, + "content": "The Gardeners' World star, 68, fell for his now wife Sarah while she was already married to a wealthy botanist - at the time socialising with both her and her husband and even going riding with him.", + "contentSnippet": "The Gardeners' World star, 68, fell for his now wife Sarah while she was already married to a wealthy botanist - at the time socialising with both her and her husband and even going riding with him.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867663/Monty-Don-admits-no-regrets-taking-friends-wife-intense-attraction-far-love-war.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:29:33.000Z" + }, + { + "title": "Shocking new footage 'shows Michael B Jordan losing control of his $400k Ferrari and crashing into a parked Kia SUV while driving alongside another supercar' in Hollywood", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867909/shocking-footage-michael-b-jordan-driving-ferrari-horror-crash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:28:40 GMT", + "enclosure": { + "length": "3832", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999757-0-image-m-12_1702639410413.jpg" + }, + "content": "The new video purportedly shows Michael B Jordan's Ferrari fishtailing and slamming into a parked car while speeding along Sunset Boulevard.", + "contentSnippet": "The new video purportedly shows Michael B Jordan's Ferrari fishtailing and slamming into a parked car while speeding along Sunset Boulevard.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867909/shocking-footage-michael-b-jordan-driving-ferrari-horror-crash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:28:40.000Z" + }, + { + "title": "Rishi Sunak to hold migrant talks with Italy's Giorgia Meloni and Albania's Edi Rama in Rome this weekend as he seeks fresh action to tackle crisis", + "link": "https://www.dailymail.co.uk/news/article-12868527/Rishi-Sunak-hold-migrant-talks-Italy-Giorgia-Meloni-Albania-Edi-Rama.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:28:01 GMT", + "enclosure": { + "length": "8422", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/78913945-0-Ms_Meloni_46_has_struck_up_a_warm_friendship_with_the_PM_since_t-a-88_1702650420516.jpg" + }, + "content": "It comes after a bruising week for the PM as his party imploded over his plan to finally get Rwanda deportation flights off the ground next year.", + "contentSnippet": "It comes after a bruising week for the PM as his party imploded over his plan to finally get Rwanda deportation flights off the ground next year.", + "guid": "https://www.dailymail.co.uk/news/article-12868527/Rishi-Sunak-hold-migrant-talks-Italy-Giorgia-Meloni-Albania-Edi-Rama.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:28:01.000Z" + }, + { + "title": "How Rebecca Welch went from refereeing in the Sunday league while still working in the NHS to being named Premier League's first female referee - and has a simple message for those who say a woman can't do the job", + "link": "https://www.dailymail.co.uk/sport/sportsnews/article-12867969/who-rebecca-welch-premier-league-female-referee.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:17:21 GMT", + "enclosure": { + "length": "7112", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79002119-0-image-m-7_1702649834757.jpg" + }, + "content": "Rebecca Welch, 40, will become the first female referee in top-flight history when she takes charge of the Fulham v Burnley match on December 23.", + "contentSnippet": "Rebecca Welch, 40, will become the first female referee in top-flight history when she takes charge of the Fulham v Burnley match on December 23.", + "guid": "https://www.dailymail.co.uk/sport/sportsnews/article-12867969/who-rebecca-welch-premier-league-female-referee.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:17:21.000Z" + }, + { + "title": "Martin Lewis says teachers should not get Christmas presents from their class while hard-up families are battling cost of living crisis", + "link": "https://www.dailymail.co.uk/news/article-12867773/Martin-Lewis-says-teachers-not-Christmas-presents-class-hard-families-battling-cost-living-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:16:44 GMT", + "enclosure": { + "length": "8796", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79000805-0-image-a-39_1702641632730.jpg" + }, + "content": "The financial journalist has emphasised that Christmas is just one day, and should be spent with family rather than creating a 'financial hangover' for yourself in the new year by overspending on gifts.", + "contentSnippet": "The financial journalist has emphasised that Christmas is just one day, and should be spent with family rather than creating a 'financial hangover' for yourself in the new year by overspending on gifts.", + "guid": "https://www.dailymail.co.uk/news/article-12867773/Martin-Lewis-says-teachers-not-Christmas-presents-class-hard-families-battling-cost-living-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:16:44.000Z" + }, + { + "title": "Two cargo ships are hit by missiles fired from Houthi-rebel territory in Yemen and set ablaze", + "link": "https://www.dailymail.co.uk/news/article-12868213/Two-cargo-ships-hit-missiles-fired-Houthi-rebel-territory-Yemen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:16:28 GMT", + "enclosure": { + "length": "5636", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79003931-0-image-m-22_1702647856441.jpg" + }, + "content": "An official - who spoke on the condition of anonymity - identified the vessel as the MSC Palatium III and said it remained unclear if anyone was hurt in the attack near the near the Bab el-Mandeb Strait.", + "contentSnippet": "An official - who spoke on the condition of anonymity - identified the vessel as the MSC Palatium III and said it remained unclear if anyone was hurt in the attack near the near the Bab el-Mandeb Strait.", + "guid": "https://www.dailymail.co.uk/news/article-12868213/Two-cargo-ships-hit-missiles-fired-Houthi-rebel-territory-Yemen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:16:28.000Z" + }, + { + "title": "World's fastest man Noah Lyles on targeting world records and FOUR Olympic gold medals at Paris 2024, why he's 'bored' of comparisons to Usain Bolt... and that criticism of NBA's 'world champions'", + "link": "https://www.dailymail.co.uk/sport/olympics/article-12867697/Noah-Lyles-world-records-Olympic-gold-Paris-2024-Usain-Bolt-criticism-NBAs-world-champions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:14:37 GMT", + "enclosure": { + "length": "11723", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999521-0-image-a-11_1702639048814.jpg" + }, + "content": "EXCLUSIVE: Noah Lyles suits these surroundings. Sitting on the balcony of a luxury beach hotel overlooking Monte Carlo, wearing Fendi sunglasses and an adidas x Gucci tracksuit.", + "contentSnippet": "EXCLUSIVE: Noah Lyles suits these surroundings. Sitting on the balcony of a luxury beach hotel overlooking Monte Carlo, wearing Fendi sunglasses and an adidas x Gucci tracksuit.", + "guid": "https://www.dailymail.co.uk/sport/olympics/article-12867697/Noah-Lyles-world-records-Olympic-gold-Paris-2024-Usain-Bolt-criticism-NBAs-world-champions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:14:37.000Z" + }, + { + "title": "Labour denies claim it is planning another windfall tax to pay for its \u00a328billion green spending spree if it wins the next election", + "link": "https://www.dailymail.co.uk/news/article-12868475/Labour-denies-planning-windfall-tax-pay-28billion-green-spending.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:06:06 GMT", + "enclosure": { + "length": "10911", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/14/79004221-0-image-m-201_1702649074368.jpg" + }, + "content": "Reports suggested that the party was looking at another punitive strike on business as it seeks ways to fund its \u00a328billion-per year plan to make Britain more green.", + "contentSnippet": "Reports suggested that the party was looking at another punitive strike on business as it seeks ways to fund its \u00a328billion-per year plan to make Britain more green.", + "guid": "https://www.dailymail.co.uk/news/article-12868475/Labour-denies-planning-windfall-tax-pay-28billion-green-spending.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:06:06.000Z" + }, + { + "title": "Experts reveal top tips for protecting your HAIR against bitter winter weather - and detail the mistakes that could cause your tresses to break and SNAP in the cold", + "link": "https://www.dailymail.co.uk/femail/article-12829919/Experts-tips-protect-HAIR-winter-weather-mistakes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:05:31 GMT", + "enclosure": { + "length": "9837", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/13/20/78926227-0-image-a-15_1702497978391.jpg" + }, + "content": "Celebrity hairstylists and beauty experts told FEMAIL their top tips for protecting your hair in the bitter winter weather to prevent winter hair damage and guarantee your locks don't break.", + "contentSnippet": "Celebrity hairstylists and beauty experts told FEMAIL their top tips for protecting your hair in the bitter winter weather to prevent winter hair damage and guarantee your locks don't break.", + "guid": "https://www.dailymail.co.uk/femail/article-12829919/Experts-tips-protect-HAIR-winter-weather-mistakes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:05:31.000Z" + }, + { + "title": "Lance Armstrong explains how he escaped detection as a drug cheat despite being tested 500 TIMES before his spectacular fall from grace", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12868211/Lance-Armstrong-drug-cheat-500-TIMES.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:04:18 GMT", + "enclosure": { + "length": "11652", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79001147-0-image-a-20_1702642410964.jpg" + }, + "content": "Armstrong was previously regarded as perhaps the greatest ever road cyclist in the history of the sport, dominating the Tour de France from 199-2005 winning an unprecedented seven titles in succession.", + "contentSnippet": "Armstrong was previously regarded as perhaps the greatest ever road cyclist in the history of the sport, dominating the Tour de France from 199-2005 winning an unprecedented seven titles in succession.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12868211/Lance-Armstrong-drug-cheat-500-TIMES.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:04:18.000Z" + }, + { + "title": "Undertaker reveals why Johnny Depp carried Shane MacGowan's coffin - as furious Irish priest says star's funeral was a 'scandal' and 'completely inappropriate' - warning Fairytale Of New York is too foul-mouthed to be sung in a church", + "link": "https://www.dailymail.co.uk/news/article-12867469/undertaker-reveals-johnny-depp-carried-shane-macgowan-coffin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 14:00:43 GMT", + "enclosure": { + "length": "11963", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/78995831-0-image-m-10_1702648010352.jpg" + }, + "content": "Tipperary undertaker Philly Ryan says he invited Johnny Depp to perform the honour\u00a0at St Mary of the Rosary Church, but admitted it was never part of the plan.", + "contentSnippet": "Tipperary undertaker Philly Ryan says he invited Johnny Depp to perform the honour\u00a0at St Mary of the Rosary Church, but admitted it was never part of the plan.", + "guid": "https://www.dailymail.co.uk/news/article-12867469/undertaker-reveals-johnny-depp-carried-shane-macgowan-coffin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T14:00:43.000Z" + }, + { + "title": "Revealed: The best items in a British Christmas Dinner, according to AI - so, do you agree with the ranking?", + "link": "https://www.dailymail.co.uk/sciencetech/article-12868067/The-best-items-British-Christmas-Dinner-according-AI-agree-ranking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:58:55 GMT", + "enclosure": { + "length": "11205", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79004413-0-image-m-22_1702648617394.jpg" + }, + "content": "With just 10 days to go before we get to devour our Christmas Dinner, MailOnline asked ChatGPT to rank the elements on the meal.", + "contentSnippet": "With just 10 days to go before we get to devour our Christmas Dinner, MailOnline asked ChatGPT to rank the elements on the meal.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12868067/The-best-items-British-Christmas-Dinner-according-AI-agree-ranking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:58:55.000Z" + }, + { + "title": "Lady Isabella Hervey's estranged husband launches legal battle to evict her from their marital home after she called him a 'wife beater' who subjected her to years of physical and mental abuse", + "link": "https://www.dailymail.co.uk/news/article-12865259/Lady-Isabella-Herveys-estranged-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:49:32 GMT", + "enclosure": { + "length": "11039", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79004175-0-image-a-25_1702648165867.jpg" + }, + "content": "EXCLUSIVE: The husband of Lady Isabella Hervey is launching a legal battle to evict her from their former marital home after she accused him of being a 'wife beater', MailOnline can reveal.", + "contentSnippet": "EXCLUSIVE: The husband of Lady Isabella Hervey is launching a legal battle to evict her from their former marital home after she accused him of being a 'wife beater', MailOnline can reveal.", + "guid": "https://www.dailymail.co.uk/news/article-12865259/Lady-Isabella-Herveys-estranged-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:49:32.000Z" + }, + { + "title": "SNP goes into meltdown over Humza Yousaf's plan for new tax band to fill \u00a31.5bn chasm in Scottish government's finances - with warnings it could spark an exodus of workers", + "link": "https://www.dailymail.co.uk/news/article-12867607/SNP-Scotland-Humza-Yousaf-tax-band-Budget.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:47:03 GMT", + "enclosure": { + "length": "9460", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996121-0-image-m-5_1702631638006.jpg" + }, + "content": "The SNP is poised to use next week's Budget to introduce a 44 per cent band north of the border from April.", + "contentSnippet": "The SNP is poised to use next week's Budget to introduce a 44 per cent band north of the border from April.", + "guid": "https://www.dailymail.co.uk/news/article-12867607/SNP-Scotland-Humza-Yousaf-tax-band-Budget.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:47:03.000Z" + }, + { + "title": "James Haskell takes a swipe at estranged wife Chloe Madeley and claims he has no money to give her in their divorce because he's been 'cancelled too many times'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867559/James-Haskell-takes-swipe-estranged-wife-Chloe-Madeley-claims-no-money-divorce-hes-cancelled-times.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:39:22 GMT", + "enclosure": { + "length": "12293", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996781-0-image-m-55_1702633632445.jpg" + }, + "content": "The former rugby union player, 38, spoke out about his marriage as he appeared in Bath on Friday for the last of a 17-show run of his live podcast tour.", + "contentSnippet": "The former rugby union player, 38, spoke out about his marriage as he appeared in Bath on Friday for the last of a 17-show run of his live podcast tour.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867559/James-Haskell-takes-swipe-estranged-wife-Chloe-Madeley-claims-no-money-divorce-hes-cancelled-times.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:39:22.000Z" + }, + { + "title": "'New This Morning host' Cat Deeley is set for a bumper payday and could even DOUBLE her earnings with deals... but it's still not as much as her predecessor Holly Willoughby", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867849/new-morning-host-cat-deeley-ben-shepherd-six-figure-deal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:25:50 GMT", + "enclosure": { + "length": "10870", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000291-0-image-m-2_1702640765658.jpg" + }, + "content": "The English presenter, 47, has reportedly been picked to front the ITV show with Ben Shepherd and The Sun claims the pair will receive an annual salary of \u00a3555,000.", + "contentSnippet": "The English presenter, 47, has reportedly been picked to front the ITV show with Ben Shepherd and The Sun claims the pair will receive an annual salary of \u00a3555,000.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867849/new-morning-host-cat-deeley-ben-shepherd-six-figure-deal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:25:50.000Z" + }, + { + "title": "Moment millionaire property tycoon uses a chainsaw to cut through a door 'to evict tenants' (but social media is NOT impressed by the stunt)", + "link": "https://www.dailymail.co.uk/news/article-12867973/Millionaire-landlord-posts-video-using-chainsaw-cut-door-evict-tenants-online-sleuths-question-footage-seems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:24:46 GMT", + "enclosure": { + "length": "5453", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999591-0-image-m-14_1702639596053.jpg" + }, + "content": "Footage Samuel Leeds, 29, cutting through the door has been shared widely online but some have questioned if all is as Samuel says it is.", + "contentSnippet": "Footage Samuel Leeds, 29, cutting through the door has been shared widely online but some have questioned if all is as Samuel says it is.", + "guid": "https://www.dailymail.co.uk/news/article-12867973/Millionaire-landlord-posts-video-using-chainsaw-cut-door-evict-tenants-online-sleuths-question-footage-seems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:24:46.000Z" + }, + { + "title": "Your ultimate guide to what to watch on TV this Christmas: From the best dramas to family shows, films, comedies and specials, all you need to know about this year's festive telly extravaganza", + "link": "https://www.dailymail.co.uk/femail/article-12854841/ultimate-guide-watch-TV-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:21:32 GMT", + "enclosure": { + "length": "12840", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/12/17/78877375-0-image-a-8_1702401722630.jpg" + }, + "content": "TV dramas to enjoy over the festive period include The Heist Before Christmas, which conjures up a Yuletide miracle by blending bleak elements into a warm holiday film with a bit of edge.", + "contentSnippet": "TV dramas to enjoy over the festive period include The Heist Before Christmas, which conjures up a Yuletide miracle by blending bleak elements into a warm holiday film with a bit of edge.", + "guid": "https://www.dailymail.co.uk/femail/article-12854841/ultimate-guide-watch-TV-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:21:32.000Z" + }, + { + "title": "Gaynor Lord's last movements caught on camera: Video retraces her steps on day she vanished - as police divers recover body from river in hunt for missing mother", + "link": "https://www.dailymail.co.uk/news/article-12867815/gaynor-lord-moments-caught-camera.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:21:20 GMT", + "enclosure": { + "length": "9896", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998649-0-image-m-27_1702637931740.jpg" + }, + "content": "EXCLUSIVE: The missing mother was supposed to finish a shift at the Bullards Gin counter in the basement at Jarrolds department store at 4pm but she left over an hour early.", + "contentSnippet": "EXCLUSIVE: The missing mother was supposed to finish a shift at the Bullards Gin counter in the basement at Jarrolds department store at 4pm but she left over an hour early.", + "guid": "https://www.dailymail.co.uk/news/article-12867815/gaynor-lord-moments-caught-camera.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:21:20.000Z" + }, + { + "title": "The best and worst value places to go skiing in Europe this winter - with Bulgaria losing its crown as the cheapest destination to ITALY", + "link": "https://www.dailymail.co.uk/travel/article-12859417/The-best-worst-value-places-Britons-skiing-Europe-winter-Bulgaria-Italy-Switzerland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:19:17 GMT", + "enclosure": { + "length": "7566", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/08/78918953-0-image-m-7_1702542640890.jpg" + }, + "content": "For the first time in a decade, Bulgarian ski resorts Borovets and Bansko have lost their position as being the best value in Europe.", + "contentSnippet": "For the first time in a decade, Bulgarian ski resorts Borovets and Bansko have lost their position as being the best value in Europe.", + "guid": "https://www.dailymail.co.uk/travel/article-12859417/The-best-worst-value-places-Britons-skiing-Europe-winter-Bulgaria-Italy-Switzerland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:19:17.000Z" + }, + { + "title": "Armed Met officer who crashed while racing at 80mph to scene of Streatham terror attack will not be disciplined after fury that he was taken to court", + "link": "https://www.dailymail.co.uk/news/article-12868139/Armed-Met-officer-crashed-racing-80mph-scene-Streatham-terror-attack-not-disciplined-fury-taken-court.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:17:34 GMT", + "enclosure": { + "length": "7238", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/78042181-0-image-a-15_1702646201809.jpg" + }, + "content": "PC Paul Fisher, 46, made a 'split-second error' when he lost control of his unmarked BMW X5 and ran in to the back of a taxi driver's Toyota before hitting a Ford Fiesta and a wall.", + "contentSnippet": "PC Paul Fisher, 46, made a 'split-second error' when he lost control of his unmarked BMW X5 and ran in to the back of a taxi driver's Toyota before hitting a Ford Fiesta and a wall.", + "guid": "https://www.dailymail.co.uk/news/article-12868139/Armed-Met-officer-crashed-racing-80mph-scene-Streatham-terror-attack-not-disciplined-fury-taken-court.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:17:34.000Z" + }, + { + "title": "Google will turn off cookies for MILLIONS of people on January 4 - here's what it means for you", + "link": "https://www.dailymail.co.uk/sciencetech/article-12867609/Google-turn-cookies-MILLIONS-people-January-4-heres-means-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:16:03 GMT", + "enclosure": { + "length": "5692", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997079-0-image-a-16_1702636691714.jpg" + }, + "content": "Google is set to roll out a feature called Tracking Protection on January 4 to just 1 per cent of Chrome users globally that will block third-party cookies.", + "contentSnippet": "Google is set to roll out a feature called Tracking Protection on January 4 to just 1 per cent of Chrome users globally that will block third-party cookies.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12867609/Google-turn-cookies-MILLIONS-people-January-4-heres-means-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:16:03.000Z" + }, + { + "title": "Meet the World Darts Championship's power couple who are rivals in going for glory... and while one's 'The Queen of Ally Pally', her boyfriend's working a plumbing shift on the morning of a guaranteed \u00a37,500 payday!", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12867853/World-Darts-Championships-power-couple-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:15:48 GMT", + "enclosure": { + "length": "11158", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000313-0-image-a-15_1702640827454.jpg" + }, + "content": "Christmas is the time of year where families and loved ones come together to celebrate the festive season - but in one darts household, their competitive spirit is about to be put to the test.", + "contentSnippet": "Christmas is the time of year where families and loved ones come together to celebrate the festive season - but in one darts household, their competitive spirit is about to be put to the test.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12867853/World-Darts-Championships-power-couple-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:15:48.000Z" + }, + { + "title": "Is this Britain's worst parking company? Holidaymakers slam 'awful' Heathrow Airport firm saying they suffered 'nightmare' customer service, were left abandoned at terminals and had their cars returned looking 'filthy'", + "link": "https://www.dailymail.co.uk/news/article-12867895/Drivers-slam-parking-firm-Deals4Parking-London-Heathrow-Airport.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:13:29 GMT", + "enclosure": { + "length": "8193", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999205-0-Deals4Parking_co_uk_is_based_700_yards_away_from_London_Heathrow-a-15_1702638938532.jpg" + }, + "content": "Deals4Parking.co.uk, which is based in Sipson just 700 yards away from London Heathrow Airport's north runway, has a Trustpilot rating of just 1.3 stars from 179 reviews.", + "contentSnippet": "Deals4Parking.co.uk, which is based in Sipson just 700 yards away from London Heathrow Airport's north runway, has a Trustpilot rating of just 1.3 stars from 179 reviews.", + "guid": "https://www.dailymail.co.uk/news/article-12867895/Drivers-slam-parking-firm-Deals4Parking-London-Heathrow-Airport.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:13:29.000Z" + }, + { + "title": "Commercial ship 'is hijacked by pirates' and heading towards Somalia: Crew 'no longer in control' as Spanish warship heads to intercept", + "link": "https://www.dailymail.co.uk/news/article-12868181/Commercial-ship-hijacked-pirates-heading-Somalia-Crew-no-longer-control-Spanish-warship-heads-intercept.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:12:34 GMT", + "enclosure": { + "length": "2883", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79002205-0-image-a-14_1702644566477.jpg" + }, + "content": "A commercial ship has been hijacked and is currently heading towards by Somalia, the UK's\u00a0Marine Trade Operations said.", + "contentSnippet": "A commercial ship has been hijacked and is currently heading towards by Somalia, the UK's\u00a0Marine Trade Operations said.", + "guid": "https://www.dailymail.co.uk/news/article-12868181/Commercial-ship-hijacked-pirates-heading-Somalia-Crew-no-longer-control-Spanish-warship-heads-intercept.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:12:34.000Z" + }, + { + "title": "British tourist who claimed he had been drugged and scammed of \u00a33,500 in Brazil nightclub 'was lying to hide the fact he cheated on his wife' police say", + "link": "https://www.dailymail.co.uk/news/article-12867949/British-tourist-claimed-drugged-scammed-3-500-Brazil-nightclub-lying-hide-fact-cheated-wife-police-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:12:08 GMT", + "enclosure": { + "length": "7167", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/13/79000117-0-image-m-23_1702645845775.jpg" + }, + "content": "The 48-year-old holidaymaker said the club in Copacabana had doped him and run up a huge charge on his credit card. But CCTV footage showed him apparently having the time of his life", + "contentSnippet": "The 48-year-old holidaymaker said the club in Copacabana had doped him and run up a huge charge on his credit card. But CCTV footage showed him apparently having the time of his life", + "guid": "https://www.dailymail.co.uk/news/article-12867949/British-tourist-claimed-drugged-scammed-3-500-Brazil-nightclub-lying-hide-fact-cheated-wife-police-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:12:08.000Z" + }, + { + "title": "Lorraine Kelly breaks down in tears as she remembers ITV producer\u00a0Hannah Hawkins who died from breast cancer\u00a0aged 33 during emotional tribute", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12868047/Lorraine-Kelly-tears-ITV-producer-Hannah-Hawkins-died.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:12:01 GMT", + "enclosure": { + "length": "11535", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000407-0-image-a-70_1702641039816.jpg" + }, + "content": "The ITV team member was diagnosed with breast cancer in 2020 and went into remission the following year. Tragically, two days before she welcomed her son Rory.", + "contentSnippet": "The ITV team member was diagnosed with breast cancer in 2020 and went into remission the following year. Tragically, two days before she welcomed her son Rory.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12868047/Lorraine-Kelly-tears-ITV-producer-Hannah-Hawkins-died.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:12:01.000Z" + }, + { + "title": "'Can they only afford two hats?': Rishi Sunak's black-and-white Christmas card featuring wife Akshata Murthy and their two daughters raises eyebrows online", + "link": "https://www.dailymail.co.uk/news/article-12867867/rishi-sunak-family-christmas-card-raises-eyebrows-online.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:09:01 GMT", + "enclosure": { + "length": "10222", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78982059-0-image-a-12_1702639738578.jpg" + }, + "content": "The card features a Santa hat drawn on Mr Sunak's head while a Christmas tree can be seen on his wife's. A yellow star has also been doodled on the photograph.", + "contentSnippet": "The card features a Santa hat drawn on Mr Sunak's head while a Christmas tree can be seen on his wife's. A yellow star has also been doodled on the photograph.", + "guid": "https://www.dailymail.co.uk/news/article-12867867/rishi-sunak-family-christmas-card-raises-eyebrows-online.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:09:01.000Z" + }, + { + "title": "Woman divides opinion after revealing she started her wedding WITHOUT her tardy parents because she's 'sick of them always running late'", + "link": "https://www.dailymail.co.uk/femail/article-12867481/Woman-divides-opinion-revealing-started-wedding-WITHOUT-tardy-parents-shes-sick-running-late.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:06:22 GMT", + "enclosure": { + "length": "3339", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995169-0-image-a-10_1702629464474.jpg" + }, + "content": "One disgruntled newlywed, believed to be from the US recently told Reddit that her parents had missed most of her marriage ceremony, and expected her to accommodate them.", + "contentSnippet": "One disgruntled newlywed, believed to be from the US recently told Reddit that her parents had missed most of her marriage ceremony, and expected her to accommodate them.", + "guid": "https://www.dailymail.co.uk/femail/article-12867481/Woman-divides-opinion-revealing-started-wedding-WITHOUT-tardy-parents-shes-sick-running-late.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:06:22.000Z" + }, + { + "title": "Boris Johnson says 'with guts and determination' Britain can stop the boats 'just like Australia' in his latest Daily Mail column", + "link": "https://www.dailymail.co.uk/news/article-12868009/Boris-Johnson-column-Channel-boats-Britain-Australia-Rwanda.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:06:09 GMT", + "enclosure": { + "length": "3922", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/72209967-0-image-m-3_1702642705037.jpg" + }, + "content": "Boris Johnson sends a tough message to his successor after he visited the Commonwealth country this week.", + "contentSnippet": "Boris Johnson sends a tough message to his successor after he visited the Commonwealth country this week.", + "guid": "https://www.dailymail.co.uk/news/article-12868009/Boris-Johnson-column-Channel-boats-Britain-Australia-Rwanda.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:06:09.000Z" + }, + { + "title": "Where the super-rich REALLY go on holiday: Secret online forum for ultra-luxe travellers reveals where they like to check in, from jaw-dropping jungle villas to a hotel with a 'director of beach'", + "link": "https://www.dailymail.co.uk/travel/article-12864521/Where-super-rich-REALLY-holiday-Secret-online-forum-ultra-luxe-travellers-reveals-like-check-jaw-dropping-jungle-villas-hotel-director-beach.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 13:03:33 GMT", + "enclosure": { + "length": "8192", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/16/78962487-0-image-m-38_1702572627823.jpg" + }, + "content": "Forget the Hilton - this is where the super-rich really travel, according to a thread on Reddit seeking to uncover the hideaways where the elite check in for their holidays.", + "contentSnippet": "Forget the Hilton - this is where the super-rich really travel, according to a thread on Reddit seeking to uncover the hideaways where the elite check in for their holidays.", + "guid": "https://www.dailymail.co.uk/travel/article-12864521/Where-super-rich-REALLY-holiday-Secret-online-forum-ultra-luxe-travellers-reveals-like-check-jaw-dropping-jungle-villas-hotel-director-beach.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T13:03:33.000Z" + }, + { + "title": "What are the rarest circulating coins featuring Queen Elizabeth II?", + "link": "https://www.dailymail.co.uk/money/saving/article-12864123/What-rarest-circulating-coins-featuring-Queen-Elizabeth-II.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:58:18 GMT", + "enclosure": { + "length": "5676", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/15/78965049-0-image-m-40_1702568637382.jpg" + }, + "content": "The 2009 Kew Gardens 50p and a collection of alphabet 10p coins from 2018 and 2019 are some of the rarest coins to look out for in your change, the Royal Mint has revealed.", + "contentSnippet": "The 2009 Kew Gardens 50p and a collection of alphabet 10p coins from 2018 and 2019 are some of the rarest coins to look out for in your change, the Royal Mint has revealed.", + "guid": "https://www.dailymail.co.uk/money/saving/article-12864123/What-rarest-circulating-coins-featuring-Queen-Elizabeth-II.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:58:18.000Z" + }, + { + "title": "Five home across Britain you can get for the average rent of \u00a31,350 a month", + "link": "https://www.dailymail.co.uk/property/article-12854967/Five-home-Britain-average-rent-1-350-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:57:54 GMT", + "enclosure": { + "length": "5299", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/12/16/78873383-0-image-a-30_1702398651015.jpg" + }, + "content": "We pick five homes on Zoopla with rental asking prices of around \u00a31,350 a month.", + "contentSnippet": "We pick five homes on Zoopla with rental asking prices of around \u00a31,350 a month.", + "guid": "https://www.dailymail.co.uk/property/article-12854967/Five-home-Britain-average-rent-1-350-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:57:54.000Z" + }, + { + "title": "Kate Middleton 'is trying to raise our future King so it shouldn't be seen as not working hard', Richard Eden tells PALACE CONFIDENTIAL - after she was called a 'part-time royal' by Omid Scobie and\u00a0carried out just 128 engagements", + "link": "https://www.dailymail.co.uk/femail/article-12868019/Kate-Middleton-trying-raise-future-King-shouldnt-seen-not-working-hard-Richard-Eden-tells-PALACE-CONFIDENTIAL-called-time-royal-Omid-Scobie-carried-just-128-engagements.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:56:20 GMT", + "enclosure": { + "length": "11405", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79000735-0-image-a-1_1702642215218.jpg" + }, + "content": "It comes after an analysis of public events and official meetings by the Sunday Telegraph showed Princess Anne was the hardest working member of the British Royal Family this year.", + "contentSnippet": "It comes after an analysis of public events and official meetings by the Sunday Telegraph showed Princess Anne was the hardest working member of the British Royal Family this year.", + "guid": "https://www.dailymail.co.uk/femail/article-12868019/Kate-Middleton-trying-raise-future-King-shouldnt-seen-not-working-hard-Richard-Eden-tells-PALACE-CONFIDENTIAL-called-time-royal-Omid-Scobie-carried-just-128-engagements.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:56:20.000Z" + }, + { + "title": "Elon Musk SLAMS Microsoft Word's inclusiveness checker as it prompts him to reconsider using the word 'insane' - as his fans vent 'wokeism has literally infiltrated everything on this planet'", + "link": "https://www.dailymail.co.uk/sciencetech/article-12867925/Elon-Musk-SLAMS-Microsoft-Words-inclusiveness-checker-prompts-reconsider-using-word-insane-fans-vent-wokeism-literally-infiltrated-planet.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:46:44 GMT", + "enclosure": { + "length": "6946", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999303-0-image-a-30_1702639465925.jpg" + }, + "content": "Twitter CEO Elon Musk took to social media to slam Microsoft Word's inclusiveness checker after it 'scolded' him for using the word 'insane' to describe a car's stability in a document.", + "contentSnippet": "Twitter CEO Elon Musk took to social media to slam Microsoft Word's inclusiveness checker after it 'scolded' him for using the word 'insane' to describe a car's stability in a document.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12867925/Elon-Musk-SLAMS-Microsoft-Words-inclusiveness-checker-prompts-reconsider-using-word-insane-fans-vent-wokeism-literally-infiltrated-planet.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:46:44.000Z" + }, + { + "title": "Historic homes restoration expert, 72, broke planning laws by carrying out work to his Grade-II listed \u00a31.5m Cotswolds farmhouse without permission after he became 'frustrated' with council delays", + "link": "https://www.dailymail.co.uk/news/article-12867527/Historic-homes-restoration-expert-72-broke-planning-laws-carrying-work-Grade-II-listed-1-5m-Cotswolds-farmhouse-without-permission-frustrated-council-delays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:43:32 GMT", + "enclosure": { + "length": "6142", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995229-0-image-m-15_1702630747125.jpg" + }, + "content": "John Evetts, 72 - a former council planning chairman and consultant at the Landmark Trust - 'jumped the gun' after becoming frustrated with planning delays at his local council.", + "contentSnippet": "John Evetts, 72 - a former council planning chairman and consultant at the Landmark Trust - 'jumped the gun' after becoming frustrated with planning delays at his local council.", + "guid": "https://www.dailymail.co.uk/news/article-12867527/Historic-homes-restoration-expert-72-broke-planning-laws-carrying-work-Grade-II-listed-1-5m-Cotswolds-farmhouse-without-permission-frustrated-council-delays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:43:32.000Z" + }, + { + "title": "'Hamas terrorists who planned to carry out terror attack on Jewish institutions across Europe' appear before German court as it is claimed the four men 'had close ties to senior leaders'", + "link": "https://www.dailymail.co.uk/news/article-12868101/Hamas-terrorists-planned-carry-terror-attack-Jewish-institutions-Europe-appear-German-court-claimed-four-men-close-ties-senior-leaders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:33:02 GMT", + "enclosure": { + "length": "8003", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/12/79001711-0-image-a-15_1702643500857.jpg" + }, + "content": "Egyptian national Mohamed B., the Lebanon born Ibrahim El-R. and Abdelhamid Al A., also from Lebanon, were flown to the German city of Karlsruhe in a helicopter to appear before a judge.", + "contentSnippet": "Egyptian national Mohamed B., the Lebanon born Ibrahim El-R. and Abdelhamid Al A., also from Lebanon, were flown to the German city of Karlsruhe in a helicopter to appear before a judge.", + "guid": "https://www.dailymail.co.uk/news/article-12868101/Hamas-terrorists-planned-carry-terror-attack-Jewish-institutions-Europe-appear-German-court-claimed-four-men-close-ties-senior-leaders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:33:02.000Z" + }, + { + "title": "Wealthy surgeon who beat his 'Champagne Charlie girl' lover in their Travelodge room in bid to have rough sex with her and bought Class A drugs on dark web is banned from treating patients for a year", + "link": "https://www.dailymail.co.uk/news/article-12867401/wealthy-surgeon-beat-champagne-charlie-girl-lover-banned-treating-patients-one-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:31:47 GMT", + "enclosure": { + "length": "4706", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995075-0-image-m-10_1702630693134.jpg" + }, + "content": "Dr Perbinderpal Grewal, 50, slapped and choked the woman, pulled out clumps of her hair and threw her on the bed after he booked a room at the budget hotel in Portsmouth.", + "contentSnippet": "Dr Perbinderpal Grewal, 50, slapped and choked the woman, pulled out clumps of her hair and threw her on the bed after he booked a room at the budget hotel in Portsmouth.", + "guid": "https://www.dailymail.co.uk/news/article-12867401/wealthy-surgeon-beat-champagne-charlie-girl-lover-banned-treating-patients-one-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:31:47.000Z" + }, + { + "title": "S Club's Rachel Stevens fails to dodge driving ban after clocking up 21 points for speeding as she tells court she is still traumatised by mugging and shooting 15 years ago - and needs her car for the school run after breaking up with childhood sweetheart", + "link": "https://www.dailymail.co.uk/news/article-12867295/S-Clubs-Rachel-Stevens-fails-dodge-driving-ban-clocking-21-points-speeding-tells-court-traumatised-mugging-shooting-15-years-ago-needs-car-school-run-breaking-childhood-sweetheart.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:19:18 GMT", + "enclosure": { + "length": "6629", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/07/78794493-0-image-m-17_1702626810475.jpg" + }, + "content": "The 45-year-old told magistrates that she was 'absolutely terrified' when\u00a0she was robbed of her engagement ring by three muggers on her north London doorstep in June 2009.", + "contentSnippet": "The 45-year-old told magistrates that she was 'absolutely terrified' when\u00a0she was robbed of her engagement ring by three muggers on her north London doorstep in June 2009.", + "guid": "https://www.dailymail.co.uk/news/article-12867295/S-Clubs-Rachel-Stevens-fails-dodge-driving-ban-clocking-21-points-speeding-tells-court-traumatised-mugging-shooting-15-years-ago-needs-car-school-run-breaking-childhood-sweetheart.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:19:18.000Z" + }, + { + "title": "REVEALED: The highest paid player from EVERY Premier League season shows wages skyrocketing from John Barnes' \u00a310,000-a-week in 1992... with Man United and Man City stars dominating the list", + "link": "https://www.dailymail.co.uk/sport/football/article-12867429/highest-paid-player-Premier-League-season-wages-skyrocketing-John-Barnes-10-000-1992-Man-United-Man-City.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:13:52 GMT", + "enclosure": { + "length": "11707", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996649-0-image-a-4_1702632871184.jpg" + }, + "content": "2023-24's highest earner - Manchester City 's Kevin De Bruyne's \u00a3400,000-a-week wages makes John Barnes' 1992-93 take-home pay look paltry in comparison.", + "contentSnippet": "2023-24's highest earner - Manchester City 's Kevin De Bruyne's \u00a3400,000-a-week wages makes John Barnes' 1992-93 take-home pay look paltry in comparison.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12867429/highest-paid-player-Premier-League-season-wages-skyrocketing-John-Barnes-10-000-1992-Man-United-Man-City.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:13:52.000Z" + }, + { + "title": "Energy bills to rise by an extra \u00a316 next year to cover unpaid customer debt", + "link": "https://www.dailymail.co.uk/money/bills/article-12867741/Energy-bills-rise-extra-16-year-cover-unpaid-customer-debt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:11:59 GMT", + "enclosure": { + "length": "5192", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997815-0-image-m-13_1702635617061.jpg" + }, + "content": "Households face paying higher energy bills next year to help protect energy firms against soaring consumer debt.", + "contentSnippet": "Households face paying higher energy bills next year to help protect energy firms against soaring consumer debt.", + "guid": "https://www.dailymail.co.uk/money/bills/article-12867741/Energy-bills-rise-extra-16-year-cover-unpaid-customer-debt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:11:59.000Z" + }, + { + "title": "Moment Lime bike cyclist smashes into a double-decker bus when it suddenly stops - so who do YOU think was in the wrong?", + "link": "https://www.dailymail.co.uk/news/article-12867571/Moment-Lime-bike-cyclist-smashes-double-decker-bus-suddenly-stops-think-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:06:34 GMT", + "enclosure": { + "length": "9814", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78998733-0-image-m-36_1702638435994.jpg" + }, + "content": "This is the moment a cyclist on a hired electrically-assisted Lime bike crashed into a double decker bus which had stopped dramatically in the middle of the road in Ealing, west London.", + "contentSnippet": "This is the moment a cyclist on a hired electrically-assisted Lime bike crashed into a double decker bus which had stopped dramatically in the middle of the road in Ealing, west London.", + "guid": "https://www.dailymail.co.uk/news/article-12867571/Moment-Lime-bike-cyclist-smashes-double-decker-bus-suddenly-stops-think-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:06:34.000Z" + }, + { + "title": "Driver who ran over and killed Ryanair flight attendant when he was distracted by text message he sent his partner about their child's nappy is jailed for three years", + "link": "https://www.dailymail.co.uk/news/article-12867795/Driver-ran-killed-Ryanair-flight-attendant-distracted-text-message-sent-partner-childs-nappy-jailed-three-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:05:53 GMT", + "enclosure": { + "length": "7442", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78998839-0-image-a-184_1702640905590.jpg" + }, + "content": "Cinzia Ceravolo, 36, was a Ryanair crew member who was returning home after two days away with work. She was hit by Kieran Cooney, 31 in Liverpool.", + "contentSnippet": "Cinzia Ceravolo, 36, was a Ryanair crew member who was returning home after two days away with work. She was hit by Kieran Cooney, 31 in Liverpool.", + "guid": "https://www.dailymail.co.uk/news/article-12867795/Driver-ran-killed-Ryanair-flight-attendant-distracted-text-message-sent-partner-childs-nappy-jailed-three-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:05:53.000Z" + }, + { + "title": "Vigil star Rose Leslie and her Game of Thrones husband Kit Harington are locked in row with conservationists over plans to turn 15th century barn at their \u00a31.75m country house into guest bedrooms - amid fears work would disturb BATS", + "link": "https://www.dailymail.co.uk/news/article-12863773/Vigil-star-Rose-Leslie-Game-Thrones-husband-Kit-Harington-locked-row-conservationists-plans-turn-15th-century-barn-1-75m-country-house-guest-bedrooms-amid-fears-work-disturb-BATS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:05:41 GMT", + "enclosure": { + "length": "11802", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/07/78994075-0-image-a-1_1702626111655.jpg" + }, + "content": "Vigil star Rose Leslie is locked in a planning row with conservationists over turning a 15th century barn at her \u00a31.75m country mansion into bedrooms for guests - because of bats.", + "contentSnippet": "Vigil star Rose Leslie is locked in a planning row with conservationists over turning a 15th century barn at her \u00a31.75m country mansion into bedrooms for guests - because of bats.", + "guid": "https://www.dailymail.co.uk/news/article-12863773/Vigil-star-Rose-Leslie-Game-Thrones-husband-Kit-Harington-locked-row-conservationists-plans-turn-15th-century-barn-1-75m-country-house-guest-bedrooms-amid-fears-work-disturb-BATS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:05:41.000Z" + }, + { + "title": "Shane MacGowan's widow Victoria Mary Clarke says she went 'through hell at times' with The Pogues singer, saying: 'I was always wondering \"Will he die?\"'", + "link": "https://www.dailymail.co.uk/femail/article-12867929/Shane-MacGowans-widow-Victoria-Mary-Clarke-says-went-hell-times-Pogues-singer-saying-wondering-die.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 12:02:11 GMT", + "enclosure": { + "length": "9696", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000027-0-image-a-7_1702640208955.jpg" + }, + "content": "Irish journalist Victoria May Clarke, 57, told Anita Rani on Woman's Hour that she was still 'shaky' and 'dazed' after MacGowan's funeral in Nenagh, Co. Tipperary last week.", + "contentSnippet": "Irish journalist Victoria May Clarke, 57, told Anita Rani on Woman's Hour that she was still 'shaky' and 'dazed' after MacGowan's funeral in Nenagh, Co. Tipperary last week.", + "guid": "https://www.dailymail.co.uk/femail/article-12867929/Shane-MacGowans-widow-Victoria-Mary-Clarke-says-went-hell-times-Pogues-singer-saying-wondering-die.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T12:02:11.000Z" + }, + { + "title": "Michael Schumacher's close friend and former boss Jean Todt gives new insight on his condition ten years on from his horror skiing accident: 'He's simply not the Michael he used to be'", + "link": "https://www.dailymail.co.uk/sport/formulaone/article-12867623/Michael-Schumacher-Jean-Todt-insight-condition-skiing-accident.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:59:37 GMT", + "enclosure": { + "length": "11566", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78997175-0-image-a-1_1702634361695.jpg" + }, + "content": "Schumacher - who won seven F1 world championships - was involved in a tragic skiing accident in December 2013 that left him in a medically induced coma.", + "contentSnippet": "Schumacher - who won seven F1 world championships - was involved in a tragic skiing accident in December 2013 that left him in a medically induced coma.", + "guid": "https://www.dailymail.co.uk/sport/formulaone/article-12867623/Michael-Schumacher-Jean-Todt-insight-condition-skiing-accident.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:59:37.000Z" + }, + { + "title": "Is this Britain's worst place for potholes? Drivers say they have suffered \u00a31m of damage from cratered roads in last eight months - and council has only paid up \u00a348,000 so far", + "link": "https://www.dailymail.co.uk/news/article-12867695/Britains-worst-potholes-Drivers-1m-damage-council-paid-48000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:57:31 GMT", + "enclosure": { + "length": "7717", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78997019-0-image-m-14_1702634117943.jpg" + }, + "content": "Drivers in Devon have submitted claims amounting to more than \u00a31million for vehicle damage caused by potholes in just eight months, but the council has paid out less than 5%.", + "contentSnippet": "Drivers in Devon have submitted claims amounting to more than \u00a31million for vehicle damage caused by potholes in just eight months, but the council has paid out less than 5%.", + "guid": "https://www.dailymail.co.uk/news/article-12867695/Britains-worst-potholes-Drivers-1m-damage-council-paid-48000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:57:31.000Z" + }, + { + "title": "New app can tell you exactly how many calories are in your food - just by looking at it", + "link": "https://www.dailymail.co.uk/health/article-12867487/New-app-tell-exactly-calories-food-just-looking-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:55:52 GMT", + "enclosure": { + "length": "5197", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/79000563-0-image-m-11_1702641313233.jpg" + }, + "content": "Tushar Vashisht, who founded the app and is based in India, said: 'It can recognise more than 1million foods and outperforms ChatGPT on food recognition.'", + "contentSnippet": "Tushar Vashisht, who founded the app and is based in India, said: 'It can recognise more than 1million foods and outperforms ChatGPT on food recognition.'", + "guid": "https://www.dailymail.co.uk/health/article-12867487/New-app-tell-exactly-calories-food-just-looking-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:55:52.000Z" + }, + { + "title": "White Christmas is off! Met Office say there is 'little sign' of wintry weather on Christmas Day with warm 13C weekend ahead - but Britain is still on flood watch as amber warning is issued for heavy rain in Scotland", + "link": "https://www.dailymail.co.uk/news/article-12867501/met-office-reveals-little-sign-snow-christmas-day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:54:53 GMT", + "enclosure": { + "length": "9790", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996097-0-image-a-29_1702631229684.jpg" + }, + "content": "This weekend parts of the UK are set to enjoy unseasonably warm weather with highs of 13C (55F) today and tomorrow - 6C above the December daytime average.", + "contentSnippet": "This weekend parts of the UK are set to enjoy unseasonably warm weather with highs of 13C (55F) today and tomorrow - 6C above the December daytime average.", + "guid": "https://www.dailymail.co.uk/news/article-12867501/met-office-reveals-little-sign-snow-christmas-day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:54:53.000Z" + }, + { + "title": "The Crown's Imelda Staunton reveals she was 'inconsolable' when she found out The Queen died during filming", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867885/The-Crowns-Imelda-Staunton-reveals-inconsolable-Queen-died-filming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:53:23 GMT", + "enclosure": { + "length": "11639", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999495-0-image-a-87_1702638974855.jpg" + }, + "content": "The actress, 67, plays Elizabeth II in the Netflix series and told how some on set 'found it hard' looking at her after the news broke on September 8.", + "contentSnippet": "The actress, 67, plays Elizabeth II in the Netflix series and told how some on set 'found it hard' looking at her after the news broke on September 8.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867885/The-Crowns-Imelda-Staunton-reveals-inconsolable-Queen-died-filming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:53:23.000Z" + }, + { + "title": "Joey Barton claims England's men would beat the Lionesses 30-0 in a single half of football after calling for women to 'stop trying to ruin our game' in latest sexist social media rant", + "link": "https://www.dailymail.co.uk/sport/football/article-12867729/Joey-Barton-England-men-Lionesses-30-0.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:48:29 GMT", + "enclosure": { + "length": "11292", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996557-0-image-a-19_1702632578583.jpg" + }, + "content": "Barton has made headlines of late for his rants against women in men's football, clashing with a number of analysts, commentators and pundits featuring in coverage for the men's game.", + "contentSnippet": "Barton has made headlines of late for his rants against women in men's football, clashing with a number of analysts, commentators and pundits featuring in coverage for the men's game.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12867729/Joey-Barton-England-men-Lionesses-30-0.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:48:29.000Z" + }, + { + "title": "Ominous warning from author behind 'real life Yellowface': Cait Corrain, who was dropped by her publisher after giving fake reviews to rival non-white authors, said she is 'terrified of being cancelled' when her book comes out", + "link": "https://www.dailymail.co.uk/femail/article-12867629/Ominous-warning-author-real-life-Yellowface-Cait-Corrain-dropped-publisher-giving-fake-reviews-rival-non-white-authors-said-terrified-cancelled-book-comes-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:46:32 GMT", + "enclosure": { + "length": "8398", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/11/78999723-0-image-a-19_1702639410478.jpg" + }, + "content": "LA-based Cait Corrain was set to release Crown of Starlight - a 'steamy, sci-fi reimagining' of the Greek myth of Ariadne and Dionysus - in May 2024.", + "contentSnippet": "LA-based Cait Corrain was set to release Crown of Starlight - a 'steamy, sci-fi reimagining' of the Greek myth of Ariadne and Dionysus - in May 2024.", + "guid": "https://www.dailymail.co.uk/femail/article-12867629/Ominous-warning-author-real-life-Yellowface-Cait-Corrain-dropped-publisher-giving-fake-reviews-rival-non-white-authors-said-terrified-cancelled-book-comes-out.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:46:32.000Z" + }, + { + "title": "The French region home to hippy communes ranging from conspiracy theorists to doomsday cults: Ariege, where Alex Batty has spent the last two years, is infamous for its 'alternative' lifestyle groups including one led by convicted paedophile", + "link": "https://www.dailymail.co.uk/news/article-12867461/The-French-region-home-hippy-communes-ranging-conspiracy-theorists-doomsday-cults-Ariege-Alex-Batty-spent-two-years-infamous-alternative-lifestyle-groups-including-one-led-convicted-paedophile.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:42:25 GMT", + "enclosure": { + "length": "5119", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78962001-0-Alex_Batty_from_Oldham_Lancashire_was_just_11_when_he_did_not_re-m-15_1702635973761.jpg" + }, + "content": "Alex Batty, from Oldham, Lancashire, went missing in 2017 when he was just 11. Detectives believe his mother and grandfather took him as they went to live an 'alternative lifestyle' in southern France.", + "contentSnippet": "Alex Batty, from Oldham, Lancashire, went missing in 2017 when he was just 11. Detectives believe his mother and grandfather took him as they went to live an 'alternative lifestyle' in southern France.", + "guid": "https://www.dailymail.co.uk/news/article-12867461/The-French-region-home-hippy-communes-ranging-conspiracy-theorists-doomsday-cults-Ariege-Alex-Batty-spent-two-years-infamous-alternative-lifestyle-groups-including-one-led-convicted-paedophile.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:42:25.000Z" + }, + { + "title": "Ten-year-olds watching Chicken Run 2 insist it WON'T make them give up chicken nuggets - despite vegan activists claiming the film would turn audiences off meat", + "link": "https://www.dailymail.co.uk/news/article-12867823/chicken-run-2-kids-not-stop-eating-meat-despite-vegan-claims.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:40:03 GMT", + "enclosure": { + "length": "8873", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998301-0-image-a-5_1702637415886.jpg" + }, + "content": "EXCLUSIVE: Dawn of the Nugget, the sequel to the 2000 animated cult classic, sees thousands of hens\u00a0being kept in a stupefied state in a Bond villain-styled huge chicken-processing factory.", + "contentSnippet": "EXCLUSIVE: Dawn of the Nugget, the sequel to the 2000 animated cult classic, sees thousands of hens\u00a0being kept in a stupefied state in a Bond villain-styled huge chicken-processing factory.", + "guid": "https://www.dailymail.co.uk/news/article-12867823/chicken-run-2-kids-not-stop-eating-meat-despite-vegan-claims.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:40:03.000Z" + }, + { + "title": "Horrifying moment teenager falls in front of a moving train and is dragged along the platform at a Russian station - but miraculously survives after friends pull him to safety", + "link": "https://www.dailymail.co.uk/news/article-12867451/Horrifying-moment-teenager-falls-moving-train-dragged-platform-Russian-station-miraculously-survives-friends-pull-safety.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:37:40 GMT", + "enclosure": { + "length": "8915", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78994979-0-image-m-21_1702629021705.jpg" + }, + "content": "The horrific incident, caught on a security camera at a station in Moscow, begins when the male victim is shadow boxing, showing off skills to two friends, before slipping off the platform", + "contentSnippet": "The horrific incident, caught on a security camera at a station in Moscow, begins when the male victim is shadow boxing, showing off skills to two friends, before slipping off the platform", + "guid": "https://www.dailymail.co.uk/news/article-12867451/Horrifying-moment-teenager-falls-moving-train-dragged-platform-Russian-station-miraculously-survives-friends-pull-safety.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:37:40.000Z" + }, + { + "title": "Still living in the Mad Men age! From ignoring women's safety to obsessing over leading male stars, advertising campaigners reveal the modern-day commercials guilty of 'sneaky sexism'", + "link": "https://www.dailymail.co.uk/femail/article-12863695/Still-living-Mad-Men-age-ignoring-womens-safety-obsessing-leading-male-stars-advertising-campaigners-reveal-modern-day-commercials-guilty-sneaky-sexism.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:35:35 GMT", + "enclosure": { + "length": "9916", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998937-0-image-a-2_1702637873774.jpg" + }, + "content": "WACL\u00a0is a UK-based club of female leaders in advertising and communications on a mission to improve gender equality in the industry.", + "contentSnippet": "WACL\u00a0is a UK-based club of female leaders in advertising and communications on a mission to improve gender equality in the industry.", + "guid": "https://www.dailymail.co.uk/femail/article-12863695/Still-living-Mad-Men-age-ignoring-womens-safety-obsessing-leading-male-stars-advertising-campaigners-reveal-modern-day-commercials-guilty-sneaky-sexism.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:35:35.000Z" + }, + { + "title": "How Alex Batty's mother 'went from law student to 'chaotic' cult member who left her young son in Morocco to live in Bali with a new boyfriend and sent her mother a \u00a3500,000 'bill' for 'her use of' Alex'", + "link": "https://www.dailymail.co.uk/news/article-12867671/How-Alex-Battys-mother-went-law-student-chaotic-cult-member-left-young-son-Morocco-live-Bali-new-boyfriend-sent-mother-500-000-bill-use-Alex.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:31:36 GMT", + "enclosure": { + "length": "3728", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997211-0-image-m-40_1702634483929.jpg" + }, + "content": "Susan Caruana revealed that Melanie was a rebellious teenager, partying hard, drinking, and Susan and her husband, Dave, struggled to cope with her.", + "contentSnippet": "Susan Caruana revealed that Melanie was a rebellious teenager, partying hard, drinking, and Susan and her husband, Dave, struggled to cope with her.", + "guid": "https://www.dailymail.co.uk/news/article-12867671/How-Alex-Battys-mother-went-law-student-chaotic-cult-member-left-young-son-Morocco-live-Bali-new-boyfriend-sent-mother-500-000-bill-use-Alex.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:31:36.000Z" + }, + { + "title": "People are only just discovering why Rowan Atkinson's Love Actually character took so long to wrap Alan Rickman's present", + "link": "https://www.dailymail.co.uk/femail/article-12864291/Rowan-Atkinsons-Love-Actually-character-took-long-wrap-Alan-Rickmans-present.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:31:12 GMT", + "enclosure": { + "length": "6893", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/14/78961287-0-image-a-8_1702563512446.jpg" + }, + "content": "The perfect cosy movie to kick off the festive season, it turns out that one scene in British rom-com Love Actually (2003), which follows the relationships of eight London couples\u00a0has a very interesting origin.", + "contentSnippet": "The perfect cosy movie to kick off the festive season, it turns out that one scene in British rom-com Love Actually (2003), which follows the relationships of eight London couples\u00a0has a very interesting origin.", + "guid": "https://www.dailymail.co.uk/femail/article-12864291/Rowan-Atkinsons-Love-Actually-character-took-long-wrap-Alan-Rickmans-present.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:31:12.000Z" + }, + { + "title": "Susannah Constantine, who use to date King Charles's cousin David Armstrong-Jones,\u00a0 watches son Joe Bertelsen pass out from Naval Cadets (and Prince William watches on too!)", + "link": "https://www.dailymail.co.uk/femail/article-12864695/Still-rubbing-shoulders-high-society-Proud-Susannah-Constantine-use-date-King-Charless-cousin-David-Armstrong-Jones-watches-son-Joe-Bertelsen-pass-Naval-Cadets-Prince-William-watches-too.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:18:07 GMT", + "enclosure": { + "length": "11618", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/16/78968451-0-image-a-43_1702572539852.jpg" + }, + "content": "Susannah Constantine revealed she 'couldn't be more proud' of her son Joe Bertelsen. The presenter, 61, took to Instagram to share that her son graduated as a Naval Officer today", + "contentSnippet": "Susannah Constantine revealed she 'couldn't be more proud' of her son Joe Bertelsen. The presenter, 61, took to Instagram to share that her son graduated as a Naval Officer today", + "guid": "https://www.dailymail.co.uk/femail/article-12864695/Still-rubbing-shoulders-high-society-Proud-Susannah-Constantine-use-date-King-Charless-cousin-David-Armstrong-Jones-watches-son-Joe-Bertelsen-pass-Naval-Cadets-Prince-William-watches-too.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:18:07.000Z" + }, + { + "title": "Yet ANOTHER reason not to buy a pug: Vets warn flat-faced dogs are more likely to suffer from sleep problems", + "link": "https://www.dailymail.co.uk/sciencetech/article-12867889/Yet-reason-not-buy-pug-Vets-warn-flat-faced-dogs-likely-suffer-sleep-problems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:10:01 GMT", + "enclosure": { + "length": "4678", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78998395-0-image-m-131_1702637626976.jpg" + }, + "content": "Researchers from Eotvos Lorand University in Budapest found that flat-faced - or brachycephalic - dogs retain the sleep pattern of puppyhood.", + "contentSnippet": "Researchers from Eotvos Lorand University in Budapest found that flat-faced - or brachycephalic - dogs retain the sleep pattern of puppyhood.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12867889/Yet-reason-not-buy-pug-Vets-warn-flat-faced-dogs-likely-suffer-sleep-problems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:10:01.000Z" + }, + { + "title": "Inside horrifying world of the Nullo castration cult whose followers use amateur 'cutters' or even vets to remove their private parts inspired by Japanese artist who sold his penis and testicles to eat for \u00a3800", + "link": "https://www.dailymail.co.uk/news/article-12867579/Nullo-castration-cult-Japanese-artist-sold-penis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:09:01 GMT", + "enclosure": { + "length": "7330", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/53869671-0-The_group_are_likely_to_have_been_inspired_by_asexual_Japanese_i-a-43_1702634493302.jpg" + }, + "content": "The bizarre - and growing - Nullo movement subscribers cut off their own genitals and sometimes their nipples. The most famous modern 'Nullo' is Japanese artist Mao Sugiyama (above).", + "contentSnippet": "The bizarre - and growing - Nullo movement subscribers cut off their own genitals and sometimes their nipples. The most famous modern 'Nullo' is Japanese artist Mao Sugiyama (above).", + "guid": "https://www.dailymail.co.uk/news/article-12867579/Nullo-castration-cult-Japanese-artist-sold-penis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:09:01.000Z" + }, + { + "title": "Queen Camilla is launching her own podcast to encourage reading and featuring guests including Joanna Lumley and Ian Rankin", + "link": "https://www.dailymail.co.uk/femail/article-12867539/Queen-Camilla-launching-podcast-encourage-reading-featuring-guests-including-Joanna-Lumley-Ian-Rankin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:04:19 GMT", + "enclosure": { + "length": "10456", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997655-0-image-a-9_1702635403249.jpg" + }, + "content": "The Queen's Reading Room podcast is dedicated to developing the appreciation of literature among adults and children in the UK and around the world", + "contentSnippet": "The Queen's Reading Room podcast is dedicated to developing the appreciation of literature among adults and children in the UK and around the world", + "guid": "https://www.dailymail.co.uk/femail/article-12867539/Queen-Camilla-launching-podcast-encourage-reading-featuring-guests-including-Joanna-Lumley-Ian-Rankin.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:04:19.000Z" + }, + { + "title": "Cancer-stricken man, 31, says he could have avoided terminal diagnosis - if he hadn't tried to 'man up' and ignore tell-tale symptom", + "link": "https://www.dailymail.co.uk/health/article-12867523/Cancer-man-terminal-diagnosis-symptoms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 11:04:16 GMT", + "enclosure": { + "length": "10567", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996191-0-image-a-4_1702631648324.jpg" + }, + "content": "Liam Griffiths, 31, a former oil rig worker from Middlesbrough said he was the 'healthiest man in the world', but regrets ignoring his symptoms of peritoneal cancer which is terminal.", + "contentSnippet": "Liam Griffiths, 31, a former oil rig worker from Middlesbrough said he was the 'healthiest man in the world', but regrets ignoring his symptoms of peritoneal cancer which is terminal.", + "guid": "https://www.dailymail.co.uk/health/article-12867523/Cancer-man-terminal-diagnosis-symptoms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T11:04:16.000Z" + }, + { + "title": "Teacher heading for the naughty list after falsely telling a class of ten-year-old children that Father Christmas did not exist", + "link": "https://www.dailymail.co.uk/news/article-12867725/Teacher-heading-naughty-list-falsely-telling-class-ten-year-old-children-Father-Christmas-did-not-exist.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 10:56:00 GMT", + "enclosure": { + "length": "7568", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997631-0-image-m-13_1702635408725.jpg" + }, + "content": "The stand-in teacher at Hill View Primary School in Bournemouth, Dorest made the blunder while her class of 10 and 11-year-olds were making Christmas cards on Wednesday.", + "contentSnippet": "The stand-in teacher at Hill View Primary School in Bournemouth, Dorest made the blunder while her class of 10 and 11-year-olds were making Christmas cards on Wednesday.", + "guid": "https://www.dailymail.co.uk/news/article-12867725/Teacher-heading-naughty-list-falsely-telling-class-ten-year-old-children-Father-Christmas-did-not-exist.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T10:56:00.000Z" + }, + { + "title": "Shocking moment man threatens to 'kill' Orthodox Jews in north London as Hanukkah candelabras are smashed up amid rising wave of anti-Semitic attacks", + "link": "https://www.dailymail.co.uk/news/article-12867587/shocking-moment-man-threatens-kill-jews-north-london.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 10:49:01 GMT", + "enclosure": { + "length": "5103", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997425-0-Police_are_appealing_for_help_to_track_down_the_suspect_who_was_-a-27_1702635266217.jpg" + }, + "content": "Police are appealing for help to track down the suspect, who was filmed shouting at pedestrians in Stamford Hill at 7pm on Wednesday.", + "contentSnippet": "Police are appealing for help to track down the suspect, who was filmed shouting at pedestrians in Stamford Hill at 7pm on Wednesday.", + "guid": "https://www.dailymail.co.uk/news/article-12867587/shocking-moment-man-threatens-kill-jews-north-london.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T10:49:01.000Z" + }, + { + "title": "Dr Ranj Singh says his career lost work since he accused This Morning of bullying and questions if he should have spoken out at all", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12867645/Dr-Ranj-says-career-impacted-accused-Morning-bullying-questions-spoken-all.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 10:41:56 GMT", + "enclosure": { + "length": "9715", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78997013-0-image-a-3_1702633921420.jpg" + }, + "content": "The TV doctor, 44, believes accusing The Morning of having a 'toxic' culture of bullying and discrimination has negatively impacted his career.", + "contentSnippet": "The TV doctor, 44, believes accusing The Morning of having a 'toxic' culture of bullying and discrimination has negatively impacted his career.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12867645/Dr-Ranj-says-career-impacted-accused-Morning-bullying-questions-spoken-all.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T10:41:56.000Z" + }, + { + "title": "How comfortable is a Qantas A380 London to Sydney flight... in each cabin? Travel expert finds out by reviewing ALL FOUR classes, from a \u00a31,180 economy seat to a \u00a310k first-class berth", + "link": "https://www.dailymail.co.uk/travel/article-12860597/How-comfortable-Qantas-A380-London-Sydney-flight-cabin-Travel-expert-finds-reviewing-FOUR-classes-1-180-economy-seat-10k-class-berth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 10:22:26 GMT", + "enclosure": { + "length": "6278", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/08/78927689-0-image-a-5_1702543745898.jpg" + }, + "content": "The Points Guy's Nicky Kelvin films his experiences in economy, premium economy, business class and first class on Qantas's superjumbo. Read on for more...", + "contentSnippet": "The Points Guy's Nicky Kelvin films his experiences in economy, premium economy, business class and first class on Qantas's superjumbo. Read on for more...", + "guid": "https://www.dailymail.co.uk/travel/article-12860597/How-comfortable-Qantas-A380-London-Sydney-flight-cabin-Travel-expert-finds-reviewing-FOUR-classes-1-180-economy-seat-10k-class-berth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T10:22:26.000Z" + }, + { + "title": "Ailing George VI could barely stand. The Archbishop seemed about to drop the baby. Yet\u00a0 through it all, Prince Charles 'lay quiet as a mouse' - the Christening of a King on this day 75 years ago", + "link": "https://www.dailymail.co.uk/news/article-12822789/Ailing-George-VI-barely-stand-Archbishop-drop-baby-Prince-Charles-lay-quiet-mouse-Christening-King-day-75-years-ago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 10:14:01 GMT", + "enclosure": { + "length": "11094", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/04/11/78552243-0-image-a-38_1701690203632.jpg" + }, + "content": "Buckingham Palace released the baby's names the previous evening and there was much comment in the newspapers about the unusual choice of Charles as first name.", + "contentSnippet": "Buckingham Palace released the baby's names the previous evening and there was much comment in the newspapers about the unusual choice of Charles as first name.", + "guid": "https://www.dailymail.co.uk/news/article-12822789/Ailing-George-VI-barely-stand-Archbishop-drop-baby-Prince-Charles-lay-quiet-mouse-Christening-King-day-75-years-ago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T10:14:01.000Z" + }, + { + "title": "Tom Cruise better keep his wallet wide open - my ex-wife spent \u00a312MILLION on clothes and handbags during our 11-year marriage: Oligarch's 'warning' to Hollywood star, 61, as he 'strikes up romance' with glamorous 36-year-old Russian socialite", + "link": "https://www.dailymail.co.uk/news/article-12865269/Tom-Cruise-better-wallet-wide-open-ex-wife-spent-12MILLION-clothes-handbags-11-year-marriage-Oligarchs-warning-Hollywood-star-61-strikes-romance-glamorous-36-year-old-Russian-socialite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 10:11:36 GMT", + "enclosure": { + "length": "11784", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/19/78973407-0-image-a-29_1702581348694.jpg" + }, + "content": "EXCLUSIVE: Tom Cruise, 61, was seen getting cosy with socialite Elsina Khayrova, 36, at a party in London's Mayfair on Saturday - with friends saying the Hollywood A lister is 'besotted' with her.", + "contentSnippet": "EXCLUSIVE: Tom Cruise, 61, was seen getting cosy with socialite Elsina Khayrova, 36, at a party in London's Mayfair on Saturday - with friends saying the Hollywood A lister is 'besotted' with her.", + "guid": "https://www.dailymail.co.uk/news/article-12865269/Tom-Cruise-better-wallet-wide-open-ex-wife-spent-12MILLION-clothes-handbags-11-year-marriage-Oligarchs-warning-Hollywood-star-61-strikes-romance-glamorous-36-year-old-Russian-socialite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T10:11:36.000Z" + }, + { + "title": "Much-needed boost for Brits as key index shows UK economy growing at fastest rate in six months while inflation eases - but interest rate cuts could still be months away", + "link": "https://www.dailymail.co.uk/news/article-12867769/UK-economy-growing-PMI-inflation-rates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 10:09:09 GMT", + "enclosure": { + "length": "5505", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997271-0-image-m-6_1702634796814.jpg" + }, + "content": "The early reading of the closely-watched PMI came in at 51.7, with anything above 50 suggesting activity is in positive territory.", + "contentSnippet": "The early reading of the closely-watched PMI came in at 51.7, with anything above 50 suggesting activity is in positive territory.", + "guid": "https://www.dailymail.co.uk/news/article-12867769/UK-economy-growing-PMI-inflation-rates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T10:09:09.000Z" + }, + { + "title": "Thieves are left free to plunder our shops - we have to lock our stock in a CAGE: Camera shop in leafy west London suburb slams police after losing \u00a370,000 in ram raids - as shoplifting epidemic grips Britain", + "link": "https://www.dailymail.co.uk/news/article-12865651/Thieves-left-free-plunder-shops-lock-stock-CAGE-Camera-shop-leafy-west-London-suburb-slams-police-losing-70-000-ram-raids-shoplifting-epidemic-grips-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 09:47:40 GMT", + "enclosure": { + "length": "8167", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/01/78985393-0-image-a-66_1702604830347.jpg" + }, + "content": "Chiswick Camera Centre has removed all of its stock from its windows over safety concerns, replacing it with pictures of the products instead.", + "contentSnippet": "Chiswick Camera Centre has removed all of its stock from its windows over safety concerns, replacing it with pictures of the products instead.", + "guid": "https://www.dailymail.co.uk/news/article-12865651/Thieves-left-free-plunder-shops-lock-stock-CAGE-Camera-shop-leafy-west-London-suburb-slams-police-losing-70-000-ram-raids-shoplifting-epidemic-grips-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T09:47:40.000Z" + }, + { + "title": "Doctors debunk TikTok's 'DIY Botox': Two ingredient 'miracle cream' made from flaxseed and water becomes latest beauty hack to sweep social media - but scientists say it's nonsense", + "link": "https://www.dailymail.co.uk/femail/article-12864513/diy-botox-tiktok-miracle-cream-flaxseed-doctors-debunk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 09:39:36 GMT", + "enclosure": { + "length": "11472", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/17/78969521-0-image-a-19_1702574014032.jpg" + }, + "content": "Made from flaxseed and water, TikTokers across the globe are claiming this serum has a freezing affect on their skin - just like Botox.", + "contentSnippet": "Made from flaxseed and water, TikTokers across the globe are claiming this serum has a freezing affect on their skin - just like Botox.", + "guid": "https://www.dailymail.co.uk/femail/article-12864513/diy-botox-tiktok-miracle-cream-flaxseed-doctors-debunk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T09:39:36.000Z" + }, + { + "title": "Dangerous rapist is hunted across the UK after going on the run as police warn he may have changed his appearance to evade capture", + "link": "https://www.dailymail.co.uk/news/article-12867545/Dangerous-rapist-hunted-UK-going-run-police-warn-changed-appearance-evade-capture.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 09:39:22 GMT", + "enclosure": { + "length": "4168", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996647-0-image-m-105_1702632834669.jpg" + }, + "content": "Muarug Abraham Gebremcal, 34, is a black African male from Eritrea who is hunted by officers in London , the Midlands and the West Country.", + "contentSnippet": "Muarug Abraham Gebremcal, 34, is a black African male from Eritrea who is hunted by officers in London , the Midlands and the West Country.", + "guid": "https://www.dailymail.co.uk/news/article-12867545/Dangerous-rapist-hunted-UK-going-run-police-warn-changed-appearance-evade-capture.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T09:39:22.000Z" + }, + { + "title": "Henry Moore watercolour sells at auction for \u00a325,000 after being mistaken for a print when it was bought in a charity shop for a few pounds 20 years ago", + "link": "https://www.dailymail.co.uk/news/article-12867505/Henry-Moore-watercolour-sells-auction-25-000-mistaken-print-bought-charity-shop-pounds-20-years-ago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 09:36:55 GMT", + "enclosure": { + "length": "12454", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995309-0-image-m-103_1702630311322.jpg" + }, + "content": "The drawing features four studies of a mother and child, a common theme in Moore's work, who was one of the most important British sculptors of the 20th century.", + "contentSnippet": "The drawing features four studies of a mother and child, a common theme in Moore's work, who was one of the most important British sculptors of the 20th century.", + "guid": "https://www.dailymail.co.uk/news/article-12867505/Henry-Moore-watercolour-sells-auction-25-000-mistaken-print-bought-charity-shop-pounds-20-years-ago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T09:36:55.000Z" + }, + { + "title": "Eye kid you not! Doctors find tiny wooden splinter buried in man's cornea which had gone unnoticed for 15 years", + "link": "https://www.dailymail.co.uk/health/article-12867529/Doctors-tiny-wooden-splinter-buried-mans-cornea.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 09:32:33 GMT", + "enclosure": { + "length": "9978", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/09/78996115-0-image-m-14_1702631428938.jpg" + }, + "content": "The man, from Boston in Massachusetts, suffered an agonising 'penetrating injury' while gardening in the late 2000s but thought nothing of it because his pain faded over time.", + "contentSnippet": "The man, from Boston in Massachusetts, suffered an agonising 'penetrating injury' while gardening in the late 2000s but thought nothing of it because his pain faded over time.", + "guid": "https://www.dailymail.co.uk/health/article-12867529/Doctors-tiny-wooden-splinter-buried-mans-cornea.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T09:32:33.000Z" + }, + { + "title": "Silent Night no more! Historic Canterbury Christmas that faced the axe after 70 years over health and safety fears will go ahead after volunteers step in to rescue it", + "link": "https://www.dailymail.co.uk/news/article-12864791/Silent-Night-no-Historic-Canterbury-Christmas-faced-axe-70-years-health-safety-fears-ahead-volunteers-step-rescue-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 08:52:14 GMT", + "enclosure": { + "length": "13417", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/16/78867279-0-Organisers_of_the_Christmas_Eve_carol_singing_service_in_Rose_Sq-a-58_1702572419955.jpg" + }, + "content": "The Lord Mayor of Canterbury's Christmas Gift Fund. the organisers of the service, had raised concerns about the number of people attending, but the City Council are now helping.", + "contentSnippet": "The Lord Mayor of Canterbury's Christmas Gift Fund. the organisers of the service, had raised concerns about the number of people attending, but the City Council are now helping.", + "guid": "https://www.dailymail.co.uk/news/article-12864791/Silent-Night-no-Historic-Canterbury-Christmas-faced-axe-70-years-health-safety-fears-ahead-volunteers-step-rescue-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T08:52:14.000Z" + }, + { + "title": "Schoolboy screaming 'Allahu Akbar' attacks two classmates with a box cutter in latest incident of Islamist-inspired violence to shock France", + "link": "https://www.dailymail.co.uk/news/article-12867441/Schoolboy-screaming-Allahu-Akbar-attacks-two-classmates-box-cutter-latest-incident-Islamist-inspired-violence-shock-France.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 08:47:05 GMT", + "enclosure": { + "length": "5073", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78995125-0-image-a-16_1702629324475.jpg" + }, + "content": "The 14-year-old, who has not yet been named, chased two students in his class through the corridors of\u00a0Coll\u00e8ge De La Morinie in Saint-Omer, in the Pas-de-Calais region, on Wednesday morning", + "contentSnippet": "The 14-year-old, who has not yet been named, chased two students in his class through the corridors of\u00a0Coll\u00e8ge De La Morinie in Saint-Omer, in the Pas-de-Calais region, on Wednesday morning", + "guid": "https://www.dailymail.co.uk/news/article-12867441/Schoolboy-screaming-Allahu-Akbar-attacks-two-classmates-box-cutter-latest-incident-Islamist-inspired-violence-shock-France.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T08:47:05.000Z" + }, + { + "title": "Fury over damp and mouldy homes for Britain's armed forces veterans: Military families are being 'failed' as complaints about unsuitable living conditions surge by 40 PER CENT in a year", + "link": "https://www.dailymail.co.uk/news/article-12864267/Fury-damp-mouldy-homes-Britains-armed-forces-veterans-Military-families-failed-complaints-unsuitable-living-conditions-surge-40-CENT-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 08:38:48 GMT", + "enclosure": { + "length": "4538", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/16/78966019-0-image-m-27_1702571730680.jpg" + }, + "content": "EXCLUSIVE: Furious personnel and their loved ones have broken ranks to share pictures online of the shameful state of their homes, with a veteran general branding the UK's housing stock 'appalling'.", + "contentSnippet": "EXCLUSIVE: Furious personnel and their loved ones have broken ranks to share pictures online of the shameful state of their homes, with a veteran general branding the UK's housing stock 'appalling'.", + "guid": "https://www.dailymail.co.uk/news/article-12864267/Fury-damp-mouldy-homes-Britains-armed-forces-veterans-Military-families-failed-complaints-unsuitable-living-conditions-surge-40-CENT-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T08:38:48.000Z" + }, + { + "title": "They're getting ready for a VERY Merry Christmas! Students hit the town to celebrate the end of term as they get into the festive spirit early", + "link": "https://www.dailymail.co.uk/news/article-12867343/students-celebrate-end-term-festive-boozing-christmas-spirit-early.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 08:12:48 GMT", + "enclosure": { + "length": "10958", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/08/78993883-0-image-m-40_1702627597409.jpg" + }, + "content": "Pictures captured on Thursday night in Leeds and Nottingham show students pouring out into the streets ready for a night out - with many even donning festive attire for the occasion.", + "contentSnippet": "Pictures captured on Thursday night in Leeds and Nottingham show students pouring out into the streets ready for a night out - with many even donning festive attire for the occasion.", + "guid": "https://www.dailymail.co.uk/news/article-12867343/students-celebrate-end-term-festive-boozing-christmas-spirit-early.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T08:12:48.000Z" + }, + { + "title": "A royal reunion: Prince Frederik flies into New Zealand on a separate plane to meet Princess Mary and the twins - a month after 'affair' scandal", + "link": "https://www.dailymail.co.uk/femail/article-12866977/A-royal-reunion-Prince-Frederik-flies-New-Zealand-separate-plane-meet-Princess-Mary-twins-month-affair-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 08:11:15 GMT", + "enclosure": { + "length": "10278", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/05/78991359-0-image-a-21_1702617002419.jpg" + }, + "content": "Crown Princess Mary and Crown Prince Frederik appear to have reunited in Queenstown for a family holiday after their family was rocked by 'affair' rumours last month.", + "contentSnippet": "Crown Princess Mary and Crown Prince Frederik appear to have reunited in Queenstown for a family holiday after their family was rocked by 'affair' rumours last month.", + "guid": "https://www.dailymail.co.uk/femail/article-12866977/A-royal-reunion-Prince-Frederik-flies-New-Zealand-separate-plane-meet-Princess-Mary-twins-month-affair-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T08:11:15.000Z" + }, + { + "title": "Most popular dog names 2023 revealed - did YOUR pooch make the list?", + "link": "https://www.dailymail.co.uk/femail/article-12863525/Most-popular-dog-names-2023-revealed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 08:09:33 GMT", + "enclosure": { + "length": "10783", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/11/78956111-0-image-a-5_1702552598458.jpg" + }, + "content": "Ken,\u00a0Albus Dumblepaws, and Alan are also surging in popularity while Meghan and 'H' are both on their way out, according to reserach by Rover.com.", + "contentSnippet": "Ken,\u00a0Albus Dumblepaws, and Alan are also surging in popularity while Meghan and 'H' are both on their way out, according to reserach by Rover.com.", + "guid": "https://www.dailymail.co.uk/femail/article-12863525/Most-popular-dog-names-2023-revealed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T08:09:33.000Z" + }, + { + "title": "People share cheeky messages sent by entitled people who demand free designer handbags and rent", + "link": "https://www.dailymail.co.uk/femail/article-12860713/messages-entitled-people-free-designer-handbag.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 07:10:13 GMT", + "enclosure": { + "length": "9502", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/13/21/78932505-0-image-a-16_1702502022970.jpg" + }, + "content": "People from around the world have shared pictures of cheeky chancers trying it on in a gallery compiled by Herarld Weekly.", + "contentSnippet": "People from around the world have shared pictures of cheeky chancers trying it on in a gallery compiled by Herarld Weekly.", + "guid": "https://www.dailymail.co.uk/femail/article-12860713/messages-entitled-people-free-designer-handbag.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T07:10:13.000Z" + }, + { + "title": "Mom Ella Glendining with rare leg disability shares joy in new documentary after finally finding others who look like her", + "link": "https://www.dailymail.co.uk/news/article-12867013/Ella-Glendining-rare-leg-disease-documentary-condition.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 07:01:07 GMT", + "enclosure": { + "length": "10586", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/06/78991021-0-image-a-1_1702622010436.jpg" + }, + "content": "Ella Glendining, says she feels 'less alone in the world' after finally meeting others with similar leg malformations after a lifetime of never meeting anyone who looks like her.", + "contentSnippet": "Ella Glendining, says she feels 'less alone in the world' after finally meeting others with similar leg malformations after a lifetime of never meeting anyone who looks like her.", + "guid": "https://www.dailymail.co.uk/news/article-12867013/Ella-Glendining-rare-leg-disease-documentary-condition.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T07:01:07.000Z" + }, + { + "title": "Meet 'the new Arnold Schwarzenegger': 5-foot-11, 245lbs teen is the youngest bodybuilder in the world - and has already SMASHED movie legend's 57-year record", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12866775/Meet-new-Arnold-Schwarzenegger-5-foot-11-245lbs-teen-youngest-bodybuilder-world-SMASHED-movie-legends-57-year-record.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 03:32:04 GMT", + "enclosure": { + "length": "10996", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/03/78989227-0-image-a-31_1702610654849.jpg" + }, + "content": "An American teenage bodybuilder has surpassed a record set by Arnold Schwarzenegger nearly 57 years after the Austrian made a name for himself.", + "contentSnippet": "An American teenage bodybuilder has surpassed a record set by Arnold Schwarzenegger nearly 57 years after the Austrian made a name for himself.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12866775/Meet-new-Arnold-Schwarzenegger-5-foot-11-245lbs-teen-youngest-bodybuilder-world-SMASHED-movie-legends-57-year-record.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T03:32:04.000Z" + }, + { + "title": "Elly Warren death: Grief-stricken family of Aussie volunteer who died outside a toilet block in Africa remain in the dark about her death after coroner's ruling", + "link": "https://www.dailymail.co.uk/news/article-12866523/Elly-Warren-death-Grief-stricken-family-Aussie-volunteer-died-outside-toilet-block-Africa-remain-dark-death-coroners-ruling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 02:32:26 GMT", + "enclosure": { + "length": "7456", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/00/78985635-0-image-m-6_1702601201953.jpg" + }, + "content": "Victorian coroner Judge John Cain released his findings into Elly Warren's death on Friday, more than seven years after the 20-year-old was found dead outside a toilet block in Mozambique.", + "contentSnippet": "Victorian coroner Judge John Cain released his findings into Elly Warren's death on Friday, more than seven years after the 20-year-old was found dead outside a toilet block in Mozambique.", + "guid": "https://www.dailymail.co.uk/news/article-12866523/Elly-Warren-death-Grief-stricken-family-Aussie-volunteer-died-outside-toilet-block-Africa-remain-dark-death-coroners-ruling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T02:32:26.000Z" + }, + { + "title": "Dramatic moment gang smuggling \u00a31million of cocaine into the UK by coating it invisibly on broom handles are bust by police - as six crooks are jailed for a total of 135 years", + "link": "https://www.dailymail.co.uk/news/article-12865853/Dramatic-moment-gang-smuggling-1million-cocaine-UK-coating-invisibly-broom-handles-bust-police-six-crooks-jailed-total-135-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 01:29:24 GMT", + "enclosure": { + "length": "4890", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/22/78980949-0-image-m-48_1702592350957.jpg" + }, + "content": "It is thought to be the first time the 'chemical method', which made the Class A 'invisible to the human eye', has been used to hid the drug and get it into the UK, the Metropolitan Police said.", + "contentSnippet": "It is thought to be the first time the 'chemical method', which made the Class A 'invisible to the human eye', has been used to hid the drug and get it into the UK, the Metropolitan Police said.", + "guid": "https://www.dailymail.co.uk/news/article-12865853/Dramatic-moment-gang-smuggling-1million-cocaine-UK-coating-invisibly-broom-handles-bust-police-six-crooks-jailed-total-135-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T01:29:24.000Z" + }, + { + "title": "EPHRAIM HARDCASTLE: Omid Scobie faces further embarassment after the original foreign version of his book Endgame referred to unspecified 'rumours' about William", + "link": "https://www.dailymail.co.uk/debate/article-12866309/EPHRAIM-HARDCASTLE-Omid-Scobie-faces-embarassment-original-foreign-version-book-Endgame-referred-unspecified-rumours-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 01:15:07 GMT", + "enclosure": { + "length": "10344", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/01/78986489-0-image-a-49_1702602263773.jpg" + }, + "content": "EPHRAIM HARDCASTLE: Like the cack-handed mention of the King and the Princess of Wales, this has not been repeated in any other edition of the book.", + "contentSnippet": "EPHRAIM HARDCASTLE: Like the cack-handed mention of the King and the Princess of Wales, this has not been repeated in any other edition of the book.", + "guid": "https://www.dailymail.co.uk/debate/article-12866309/EPHRAIM-HARDCASTLE-Omid-Scobie-faces-embarassment-original-foreign-version-book-Endgame-referred-unspecified-rumours-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T01:15:07.000Z" + }, + { + "title": "The school bully kept stealing my daughter's food - so I spiked it with laxatives. Here's what happened", + "link": "https://www.dailymail.co.uk/femail/article-12866167/Reddit-mum-laxatives-daughters-lunchbox-teach-bully-lesson-stealing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 15 Dec 2023 00:29:56 GMT", + "enclosure": { + "length": "6244", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/00/78984247-0-image-a-25_1702598495802.jpg" + }, + "content": "A mother's admission has divided the internet: some think her actions were justified, others say it was criminal - and some are convinced the whole thing is fake.", + "contentSnippet": "A mother's admission has divided the internet: some think her actions were justified, others say it was criminal - and some are convinced the whole thing is fake.", + "guid": "https://www.dailymail.co.uk/femail/article-12866167/Reddit-mum-laxatives-daughters-lunchbox-teach-bully-lesson-stealing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-15T00:29:56.000Z" + }, + { + "title": "Forget long Covid, now you should be wary of 'long flu!' Scientists discover seasonal illness can cause lingering effects too", + "link": "https://www.dailymail.co.uk/health/article-12863993/Forget-long-Covid-wary-long-flu-Scientists-discover-seasonal-illness-cause-lingering-effects-too.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 14 Dec 2023 23:46:12 GMT", + "enclosure": { + "length": "8783", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/12/78958993-0-image-a-8_1702558317003.jpg" + }, + "content": "Covid was initially thought to only cause brief illness but was discovered to also lead to chronic disease. Researchers from Washington University looked at whether the same was true for flu.", + "contentSnippet": "Covid was initially thought to only cause brief illness but was discovered to also lead to chronic disease. Researchers from Washington University looked at whether the same was true for flu.", + "guid": "https://www.dailymail.co.uk/health/article-12863993/Forget-long-Covid-wary-long-flu-Scientists-discover-seasonal-illness-cause-lingering-effects-too.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-14T23:46:12.000Z" + }, + { + "title": "I'm a private investigator - these the four signs your partner is cheating on you", + "link": "https://www.dailymail.co.uk/femail/relationships/article-12862351/private-investigator-cheating-signs-husband-wife-girlfriend-boyfriend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 14 Dec 2023 23:09:43 GMT", + "enclosure": { + "length": "8201", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/05/78947129-0-image-a-36_1702532000101.jpg" + }, + "content": "An experienced private investigator claims cheating partners always have four things in common - and many often ignore the red flags early on.", + "contentSnippet": "An experienced private investigator claims cheating partners always have four things in common - and many often ignore the red flags early on.", + "guid": "https://www.dailymail.co.uk/femail/relationships/article-12862351/private-investigator-cheating-signs-husband-wife-girlfriend-boyfriend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-14T23:09:43.000Z" + }, + { + "title": "TOM UTLEY: My sainted wife and I hadn't the foggiest it was suddenly forbidden to drive down the road we've used for 35 years - until the fines began piling up", + "link": "https://www.dailymail.co.uk/debate/article-12866137/TOM-UTLEY-sainted-wife-hadnt-foggiest-suddenly-forbidden-drive-road-weve-used-35-years-fines-began-piling-up.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 14 Dec 2023 22:26:40 GMT", + "enclosure": { + "length": "10796", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/22/78980941-0-image-a-48_1702592330771.jpg" + }, + "content": "TOM UTLEY: We dread the postie's arrival because among this year's cards, he has taken to delivering penalty-charge notices from our local council, demanding \u00a365 if we pay immediately,", + "contentSnippet": "TOM UTLEY: We dread the postie's arrival because among this year's cards, he has taken to delivering penalty-charge notices from our local council, demanding \u00a365 if we pay immediately,", + "guid": "https://www.dailymail.co.uk/debate/article-12866137/TOM-UTLEY-sainted-wife-hadnt-foggiest-suddenly-forbidden-drive-road-weve-used-35-years-fines-began-piling-up.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-14T22:26:40.000Z" + }, + { + "title": "From a pool party with Diana to a road trip with Billy Connolly - a bumper crop of riveting memoirs", + "link": "https://www.dailymail.co.uk/home/books/article-12865387/From-pool-party-Diana-road-trip-Billy-Connolly-bumper-crop-riveting-memoirs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 14 Dec 2023 22:14:26 GMT", + "enclosure": { + "length": "11409", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/21/78979243-0-image-a-29_1702589673319.jpg" + }, + "content": "ROGER ALTON has picked out the best memoirs of the year, including The Unlikely Duke: Memoirs of an Eclectic Life by Harry Beaufort and Billy Connolly's Rambling Man.", + "contentSnippet": "ROGER ALTON has picked out the best memoirs of the year, including The Unlikely Duke: Memoirs of an Eclectic Life by Harry Beaufort and Billy Connolly's Rambling Man.", + "guid": "https://www.dailymail.co.uk/home/books/article-12865387/From-pool-party-Diana-road-trip-Billy-Connolly-bumper-crop-riveting-memoirs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-14T22:14:26.000Z" + }, + { + "title": "JAN MOIR: It's no wonder Rebekah Vardy wants to sweep the Wagatha trial under her tatty carpet of shame", + "link": "https://www.dailymail.co.uk/debate/article-12865975/JAN-MOIR-no-wonder-Rebekah-Vardy-wants-sweep-Wagatha-trial-tatty-carpet-shame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 14 Dec 2023 22:01:06 GMT", + "enclosure": { + "length": "9019", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/21/78979599-0-image-a-71_1702590972904.jpg" + }, + "content": "JAN MOIR: When Rebekah Vardy left court after losing the libel case she brought against Coleen Rooney last year, she said that the judge 'got it wrong'.", + "contentSnippet": "JAN MOIR: When Rebekah Vardy left court after losing the libel case she brought against Coleen Rooney last year, she said that the judge 'got it wrong'.", + "guid": "https://www.dailymail.co.uk/debate/article-12865975/JAN-MOIR-no-wonder-Rebekah-Vardy-wants-sweep-Wagatha-trial-tatty-carpet-shame.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-14T22:01:06.000Z" + }, + { + "title": "Divorced, beheaded, survived an IRA attack:\u00a0Tony Rennell reviews the most compelling history books of 2023", + "link": "https://www.dailymail.co.uk/home/books/article-12865763/Divorced-beheaded-survived-IRA-attack-Tony-Rennell-reviews-compelling-history-books-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 14 Dec 2023 21:55:38 GMT", + "enclosure": { + "length": "10080", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/20/78977655-0-image-a-63_1702587560073.jpg" + }, + "content": "TONY RENNELL reviews the year's most compelling history books, including Hunting the Falcon: Henry VIII, Anne Boleyn And The Marriage that Shook Europe and Rory Carroll's Killing Thatcher.", + "contentSnippet": "TONY RENNELL reviews the year's most compelling history books, including Hunting the Falcon: Henry VIII, Anne Boleyn And The Marriage that Shook Europe and Rory Carroll's Killing Thatcher.", + "guid": "https://www.dailymail.co.uk/home/books/article-12865763/Divorced-beheaded-survived-IRA-attack-Tony-Rennell-reviews-compelling-history-books-2023.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-14T21:55:38.000Z" + }, + { + "title": "RICHARD LITTLEJOHN: What if the small boats were going the other way?", + "link": "https://www.dailymail.co.uk/debate/article-12865933/RICHARD-LITTLEJOHN-small-boats-going-way.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 14 Dec 2023 21:45:38 GMT", + "enclosure": { + "length": "10162", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/21/78978795-0-image-a-89_1702589409758.jpg" + }, + "content": "RICHARD LITTLEJOHN: During a debate about illegal migration on Nick Ferrari's excellent LBC breakfast show this week, a caller wondered: What if the small boats were going the other way?", + "contentSnippet": "RICHARD LITTLEJOHN: During a debate about illegal migration on Nick Ferrari's excellent LBC breakfast show this week, a caller wondered: What if the small boats were going the other way?", + "guid": "https://www.dailymail.co.uk/debate/article-12865933/RICHARD-LITTLEJOHN-small-boats-going-way.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-14T21:45:38.000Z" + }, + { + "title": "How does Santa get down the chimney? Discover the answer in one of this year's best books for children. SALLY MORRIS selects the titles that will entertain and enthral all the family", + "link": "https://www.dailymail.co.uk/home/books/article-12865419/How-does-Santa-chimney-Discover-answer-one-years-best-books-children-SALLY-MORRIS-selects-titles-entertain-enthral-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 14 Dec 2023 21:40:57 GMT", + "enclosure": { + "length": "12309", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/14/20/78974923-0-image-a-20_1702584173926.jpg" + }, + "content": "SALLY MORRIS has chosen her top children's books of the year, but it's not just the kids who are going to be entertained with these charming reads.", + "contentSnippet": "SALLY MORRIS has chosen her top children's books of the year, but it's not just the kids who are going to be entertained with these charming reads.", + "guid": "https://www.dailymail.co.uk/home/books/article-12865419/How-does-Santa-chimney-Discover-answer-one-years-best-books-children-SALLY-MORRIS-selects-titles-entertain-enthral-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-14T21:40:57.000Z" + }, + { + "title": "Rightmove predicts surge of newly listed homes coming from Boxing Day", + "link": "https://www.dailymail.co.uk/property/article-12858907/Rightmove-predicts-surge-newly-listed-homes-coming-Boxing-Day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 14 Dec 2023 00:01:46 GMT", + "enclosure": { + "length": "9764", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/13/13/78911821-0-image-a-15_1702473653072.jpg" + }, + "content": "Last year saw a record number of new properties listed for sale on Boxing Day, according to Rightmove.", + "contentSnippet": "Last year saw a record number of new properties listed for sale on Boxing Day, according to Rightmove.", + "guid": "https://www.dailymail.co.uk/property/article-12858907/Rightmove-predicts-surge-newly-listed-homes-coming-Boxing-Day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-14T00:01:46.000Z" + }, + { + "title": "Entire shopping centre sells for just \u00a3300,000 in market town that has lost Debenhams, Topshop, River Island and H&M - less than the average price of a British house", + "link": "https://www.dailymail.co.uk/property/article-12859359/shopping-centre-sells-uk-average-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 13 Dec 2023 14:34:24 GMT", + "enclosure": { + "length": "11276", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/13/14/78915361-0-image-a-72_1702476920468.jpg" + }, + "content": "The once-prosperous Cambrian Way in the centre of Carmarthen in West Wales was built just 34 years ago.", + "contentSnippet": "The once-prosperous Cambrian Way in the centre of Carmarthen in West Wales was built just 34 years ago.", + "guid": "https://www.dailymail.co.uk/property/article-12859359/shopping-centre-sells-uk-average-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-13T14:34:24.000Z" + }, + { + "title": "Indian 'vaccine prince' becomes owner of 'London's most expensive home' this year after paying \u00a3138million for Mayfair mansion", + "link": "https://www.dailymail.co.uk/property/article-12855147/Indian-vaccine-prince-owner-Londons-expensive-home-year-paying-138million-Mayfair-mansion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 12 Dec 2023 21:37:53 GMT", + "enclosure": { + "length": "8891", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/12/14/78870409-0-image-a-22_1702392696045.jpg" + }, + "content": "Adar Poonawalla reached a deal to buy Aberconway House - a 25,000 square foot home from the 1920s near Hyde Park.", + "contentSnippet": "Adar Poonawalla reached a deal to buy Aberconway House - a 25,000 square foot home from the 1920s near Hyde Park.", + "guid": "https://www.dailymail.co.uk/property/article-12855147/Indian-vaccine-prince-owner-Londons-expensive-home-year-paying-138million-Mayfair-mansion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-12T21:37:53.000Z" + }, + { + "title": "Jada Pinkett Smith reveals why she'll never leave Will Smith - even though they have separate homes - and how 'the Oscars slap saved my marriage'", + "link": "https://www.dailymail.co.uk/home/you/article-12827701/Jada-Pinkett-Smith-reveals-shell-never-leave-Smith-separate-homes-Oscars-slap-saved-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 12 Dec 2023 17:56:01 GMT", + "enclosure": { + "length": "10160", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/09/16/78770191-0-image-a-6_1702140283423.jpg" + }, + "content": "When a marriage hits a rocky patch, couples find different ways of bringing back the magic - date night or perhaps counselling.", + "contentSnippet": "When a marriage hits a rocky patch, couples find different ways of bringing back the magic - date night or perhaps counselling.", + "guid": "https://www.dailymail.co.uk/home/you/article-12827701/Jada-Pinkett-Smith-reveals-shell-never-leave-Smith-separate-homes-Oscars-slap-saved-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-12T17:56:01.000Z" + }, + { + "title": "Could you buy just five things in a year? Tiffanie Darke took up the challenge - her choices may surprise you", + "link": "https://www.dailymail.co.uk/home/you/article-12828787/Could-buy-just-five-things-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 12 Dec 2023 16:56:41 GMT", + "enclosure": { + "length": "6134", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/05/17/78608131-0-image-m-109_1701798266198.jpg" + }, + "content": "Tiffanie Darke took up the challenge - her choices may surprise you (yes, there were gold trousers!)", + "contentSnippet": "Tiffanie Darke took up the challenge - her choices may surprise you (yes, there were gold trousers!)", + "guid": "https://www.dailymail.co.uk/home/you/article-12828787/Could-buy-just-five-things-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-12T16:56:41.000Z" + }, + { + "title": "Charming three-storey townhouse where Mary Shelley wrote her classic gothic novel Frankenstein goes on sale for \u00a3750,000", + "link": "https://www.dailymail.co.uk/property/article-12854649/mary-shelley-townhouse-wrote-frankenstein-sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 12 Dec 2023 14:38:50 GMT", + "enclosure": { + "length": "8289", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/12/13/78866475-0-image-m-58_1702386470704.jpg" + }, + "content": "Shelley Cottage, named after its famous former resident, was part of a larger historic Grade II listed building when Mary and Percy Shelley bought it in the early 19th century.", + "contentSnippet": "Shelley Cottage, named after its famous former resident, was part of a larger historic Grade II listed building when Mary and Percy Shelley bought it in the early 19th century.", + "guid": "https://www.dailymail.co.uk/property/article-12854649/mary-shelley-townhouse-wrote-frankenstein-sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-12T14:38:50.000Z" + }, + { + "title": "Lord Byron's Piccadilly mansion where the romantic poet wrote some of his most famous works including Parsinia and The Seige of Corinth goes on the market for \u00a329.5million", + "link": "https://www.dailymail.co.uk/news/article-12853917/Lord-Byrons-Piccadilly-mansion-romantic-poet-wrote-famous-works-including-Parsinia-Seige-Corinth-goes-market-29-5million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 12 Dec 2023 10:04:21 GMT", + "enclosure": { + "length": "8847", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/12/09/78859545-0-image-a-26_1702373132111.jpg" + }, + "content": "The grade II-listed townhouse, set over six floors and comprising of 14,000 sq/ft of space, is located in one of London's most affluent areas, overlooking Green Park in Mayfair.", + "contentSnippet": "The grade II-listed townhouse, set over six floors and comprising of 14,000 sq/ft of space, is located in one of London's most affluent areas, overlooking Green Park in Mayfair.", + "guid": "https://www.dailymail.co.uk/news/article-12853917/Lord-Byrons-Piccadilly-mansion-romantic-poet-wrote-famous-works-including-Parsinia-Seige-Corinth-goes-market-29-5million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-12T10:04:21.000Z" + }, + { + "title": "The Chic List: Festive favourites", + "link": "https://www.dailymail.co.uk/home/you/article-12824091/The-Chic-List-Festive-favourites.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 12 Dec 2023 07:44:48 GMT", + "enclosure": { + "length": "6729", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/04/16/78560585-0-image-m-25_1701707101193.jpg" + }, + "content": "Gift to self? A change of gear", + "contentSnippet": "Gift to self? A change of gear", + "guid": "https://www.dailymail.co.uk/home/you/article-12824091/The-Chic-List-Festive-favourites.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-12T07:44:48.000Z" + }, + { + "title": "Red-hot rental market set to cool next year as tenants simply won't be able to afford asking prices, says Zoopla", + "link": "https://www.dailymail.co.uk/property/article-12850547/Red-hot-rental-market-set-cool-year-tenants-simply-wont-able-afford-asking-prices-says-Zoopla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 12 Dec 2023 00:01:46 GMT", + "enclosure": { + "length": "7923", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/11/15/78825703-0-image-a-16_1702307990236.jpg" + }, + "content": "In its latest rental report, Zoopla claimed that tenants face no longer being able to afford high rents in some areas, leading to a slowdown in rental growth.", + "contentSnippet": "In its latest rental report, Zoopla claimed that tenants face no longer being able to afford high rents in some areas, leading to a slowdown in rental growth.", + "guid": "https://www.dailymail.co.uk/property/article-12850547/Red-hot-rental-market-set-cool-year-tenants-simply-wont-able-afford-asking-prices-says-Zoopla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-12T00:01:46.000Z" + }, + { + "title": "Now that's a GRAND Design: Former silver mine engine house converted into a five storey home on hit Channel 4 show is on the market for \u00a3550k after it dropped in price by \u00a3200k when it failed to sell last year", + "link": "https://www.dailymail.co.uk/property/article-12851577/Grand-Designs-engine-house-converted-five-storey-home-sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 11 Dec 2023 19:20:06 GMT", + "enclosure": { + "length": "11858", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/11/18/78834595-0-image-m-27_1702320859301.jpg" + }, + "content": "The Grade II listed property, named Wheal Langford House, failed to sell last year after being put up for sale for\u00a0\u00a3750,000, and has now been reduced in price in a bid to find a new owner.", + "contentSnippet": "The Grade II listed property, named Wheal Langford House, failed to sell last year after being put up for sale for\u00a0\u00a3750,000, and has now been reduced in price in a bid to find a new owner.", + "guid": "https://www.dailymail.co.uk/property/article-12851577/Grand-Designs-engine-house-converted-five-storey-home-sale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-11T19:20:06.000Z" + }, + { + "title": "Millennials who haven't got onto the property ladder told they will be 'likely renting into retirement'", + "link": "https://www.dailymail.co.uk/property/article-12841743/Millennials-havent-got-property-ladder-told-likely-renting-retirement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 11 Dec 2023 13:28:15 GMT", + "enclosure": { + "length": "8733", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/08/14/78739897-0-image-a-16_1702047020424.jpg" + }, + "content": "Hamptons issued the stark warning as it released its latest data about the health of Britain's lettings market, which included a look at the different ages of people renting in Britain.", + "contentSnippet": "Hamptons issued the stark warning as it released its latest data about the health of Britain's lettings market, which included a look at the different ages of people renting in Britain.", + "guid": "https://www.dailymail.co.uk/property/article-12841743/Millennials-havent-got-property-ladder-told-likely-renting-retirement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-11T13:28:15.000Z" + }, + { + "title": "ACTION PLAN:\u00a0CIAR BYRNE's essential jobs for your garden this week", + "link": "https://www.dailymail.co.uk/home/gardening/article-12847607/ACTION-PLAN-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 11 Dec 2023 00:13:17 GMT", + "enclosure": { + "length": "12196", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/10/17/78793269-0-image-m-14_1702230652423.jpg" + }, + "content": "UK gardening expert CIAR BYRNE says it is the ideal time of year to take stock if you have a veg plot, and prepare for the spring while everything is fallow.", + "contentSnippet": "UK gardening expert CIAR BYRNE says it is the ideal time of year to take stock if you have a veg plot, and prepare for the spring while everything is fallow.", + "guid": "https://www.dailymail.co.uk/home/gardening/article-12847607/ACTION-PLAN-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-11T00:13:17.000Z" + }, + { + "title": "CHRISTMAS GIFTS: Santa's page-turners", + "link": "https://www.dailymail.co.uk/home/gardening/article-12847563/CHRISTMAS-GIFTS-Santas-page-turners.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 11 Dec 2023 00:13:06 GMT", + "enclosure": { + "length": "12044", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/10/18/78793957-0-image-a-23_1702232770229.jpg" + }, + "content": "UK expert CIAR BYRNE picks out her top page-turners for gardeners, including Monty Don's The Gardening Book and Alan Titchmarsh's Chatsworth: The Gardens And The People Who Made Them.", + "contentSnippet": "UK expert CIAR BYRNE picks out her top page-turners for gardeners, including Monty Don's The Gardening Book and Alan Titchmarsh's Chatsworth: The Gardens And The People Who Made Them.", + "guid": "https://www.dailymail.co.uk/home/gardening/article-12847563/CHRISTMAS-GIFTS-Santas-page-turners.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-11T00:13:06.000Z" + }, + { + "title": "Star in your very own Love Actually! Pastel green mews house that was backdrop for Keira Knightley scene in festive film favourite goes up for sale in exclusive Notting Hill for \u00a32.7m", + "link": "https://www.dailymail.co.uk/property/article-12847067/Star-Love-Actually-Pastel-green-mews-house-backdrop-Keira-Knightley-scene-festive-film-favourite-goes-sale-exclusive-Notting-Hill-2-7m.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 10 Dec 2023 13:47:31 GMT", + "enclosure": { + "length": "6883", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/10/12/78788165-0-image-a-13_1702209945022.jpg" + }, + "content": "The three-bedroom pastel green mews house is used in the scene when Juliet, played by Knightley, gets a knock on the door from the best man at her wedding, Mark (Andrew Lincoln) on Christmas Eve.", + "contentSnippet": "The three-bedroom pastel green mews house is used in the scene when Juliet, played by Knightley, gets a knock on the door from the best man at her wedding, Mark (Andrew Lincoln) on Christmas Eve.", + "guid": "https://www.dailymail.co.uk/property/article-12847067/Star-Love-Actually-Pastel-green-mews-house-backdrop-Keira-Knightley-scene-festive-film-favourite-goes-sale-exclusive-Notting-Hill-2-7m.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-10T13:47:31.000Z" + }, + { + "title": "Last family on derelict estate won't move out for less than \u00a3220K! Father-of-seven vows to stay in home the council has wanted to bulldoze for 10 years... unless they offer more cash", + "link": "https://www.dailymail.co.uk/property/article-12832039/Last-family-derelict-estate-wont-220K-Father-seven-vows-stay-home-council-wanted-bulldoze-10-years-unless-offer-cash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 09 Dec 2023 23:22:49 GMT", + "enclosure": { + "length": "10339", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/07/16/78638633-0-image-m-11_1701965818522.jpg" + }, + "content": "A family of seven has been forced to live alone on a derelict estate for more than a decade because of a housing row.", + "contentSnippet": "A family of seven has been forced to live alone on a derelict estate for more than a decade because of a housing row.", + "guid": "https://www.dailymail.co.uk/property/article-12832039/Last-family-derelict-estate-wont-220K-Father-seven-vows-stay-home-council-wanted-bulldoze-10-years-unless-offer-cash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-09T23:22:49.000Z" + }, + { + "title": "'My controlling ex wanted my child at all costs'", + "link": "https://www.dailymail.co.uk/home/you/article-12828753/My-controlling-ex-wanted-child-costs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 09 Dec 2023 12:07:29 GMT", + "enclosure": { + "length": "5802", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/05/17/78607545-0-image-m-88_1701797498710.jpg" + }, + "content": "In acrimonious divorces fathers are encouraged to use their children as a weapon - and now family courts are being accused of wrongly taking kids away from their mothers.", + "contentSnippet": "In acrimonious divorces fathers are encouraged to use their children as a weapon - and now family courts are being accused of wrongly taking kids away from their mothers.", + "guid": "https://www.dailymail.co.uk/home/you/article-12828753/My-controlling-ex-wanted-child-costs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-09T12:07:29.000Z" + }, + { + "title": "Why I love my corner shop", + "link": "https://www.dailymail.co.uk/home/you/article-12828811/Why-love-corner-shop.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 09 Dec 2023 12:06:14 GMT", + "enclosure": { + "length": "9956", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/05/17/78608043-0-image-m-119_1701798589447.jpg" + }, + "content": "A decade ago, superstores and changing shopping habits threatened their existence; then the pandemic made them more essential than ever, says David Aaronovitch", + "contentSnippet": "A decade ago, superstores and changing shopping habits threatened their existence; then the pandemic made them more essential than ever, says David Aaronovitch", + "guid": "https://www.dailymail.co.uk/home/you/article-12828811/Why-love-corner-shop.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-09T12:06:14.000Z" + }, + { + "title": "Stephen Bear 'will be released from prison in days' - 11 months after being jailed for sharing sex tape of his Towie ex Georgia Harrison", + "link": "https://www.dailymail.co.uk/news/article-12925383/Stephen-bear-prison-release-georgie-harrison-towie-sex-tape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:59:13 GMT", + "enclosure": { + "length": "4785", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605135-0-image-a-4_1704359546088.jpg" + }, + "content": "Stephen Bear was sentenced to 21 months and is expected to be released halfway through the sentence on licence, according to reports.", + "contentSnippet": "Stephen Bear was sentenced to 21 months and is expected to be released halfway through the sentence on licence, according to reports.", + "guid": "https://www.dailymail.co.uk/news/article-12925383/Stephen-bear-prison-release-georgie-harrison-towie-sex-tape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:59:13.000Z" + }, + { + "title": "Jeffrey Epstein list LIVE: Bill Clinton, Prince Andrew, Professor Stephen Hawking and David Copperfield are among names released in court documents", + "link": "https://www.dailymail.co.uk/news/live/article-12925355/Jeffrey-epstein-list-live-updates-court-documents-names.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:58:53 GMT", + "enclosure": { + "length": "8945", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608033-0-image-a-35_1704362764720.jpg" + }, + "content": "Follow MailOnline's live coverage after bombshell US court documents detailing the connections of the late paedophile financier Jeffrey Epstein were released.", + "contentSnippet": "Follow MailOnline's live coverage after bombshell US court documents detailing the connections of the late paedophile financier Jeffrey Epstein were released.", + "guid": "https://www.dailymail.co.uk/news/live/article-12925355/Jeffrey-epstein-list-live-updates-court-documents-names.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:58:53.000Z" + }, + { + "title": "Neighbour decapitates woman, 65, after arguing about her flowers - then shows his friends her severed head down the pub", + "link": "https://www.dailymail.co.uk/news/article-12925803/neighbour-decapitates-woman-philippines-argument-flowers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:58:42 GMT", + "enclosure": { + "length": "8424", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607917-0-image-m-56_1704363871866.jpg" + }, + "content": "Furious and embarrassed by a petty dispute, Mario went drinking with his friends later that afternoon, later deciding to march over to Rosalina's local store wielding a sickle.", + "contentSnippet": "Furious and embarrassed by a petty dispute, Mario went drinking with his friends later that afternoon, later deciding to march over to Rosalina's local store wielding a sickle.", + "guid": "https://www.dailymail.co.uk/news/article-12925803/neighbour-decapitates-woman-philippines-argument-flowers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:58:42.000Z" + }, + { + "title": "Pensioners launch boycott of forced digital landline switchover: Brits told DON'T cooperate with rollout and send protest letters to telecoms providers instead amid fears millions could be left in the dark in the event of outages", + "link": "https://www.dailymail.co.uk/news/article-12922083/Pensioners-launch-boycott-forced-BT-digital-landline-switchover-Brits-told-DONT-cooperate-rollout-send-protest-letters-telecoms-providers-instead-amid-fears-millions-left-dark-event-outages.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:58:12 GMT", + "enclosure": { + "length": "11572", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/09/75856453-0-image-m-60_1704274393831.jpg" + }, + "content": "Silver Voices, the only UK-wide senior citizens campaign group, is calling for older people to write to their telecom provider and inform them they do not give permission to be switched over.", + "contentSnippet": "Silver Voices, the only UK-wide senior citizens campaign group, is calling for older people to write to their telecom provider and inform them they do not give permission to be switched over.", + "guid": "https://www.dailymail.co.uk/news/article-12922083/Pensioners-launch-boycott-forced-BT-digital-landline-switchover-Brits-told-DONT-cooperate-rollout-send-protest-letters-telecoms-providers-instead-amid-fears-millions-left-dark-event-outages.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:58:12.000Z" + }, + { + "title": "Tories go to war with Reform UK: Leader Richard Tice is branded a 'pound shop Farage' and compared to bungling Labour leftie Diane Abbott after Nigel snubs party's pre-election launch that warns Sunak and Starmer are 'socialist twins'", + "link": "https://www.dailymail.co.uk/news/article-12925799/Tories-war-Reform-UK-Leader-Richard-Tice-branded-pound-shop-Nigel-Farage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:57:22 GMT", + "enclosure": { + "length": "6393", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607969-0-image-m-16_1704363409717.jpg" + }, + "content": "Conservative deputy chairman Lee Anderson lashed out at Richard Tice after he launched the party's election drive with a dig at Rishi Sunak and suggested he was little different from Keir Starmer.", + "contentSnippet": "Conservative deputy chairman Lee Anderson lashed out at Richard Tice after he launched the party's election drive with a dig at Rishi Sunak and suggested he was little different from Keir Starmer.", + "guid": "https://www.dailymail.co.uk/news/article-12925799/Tories-war-Reform-UK-Leader-Richard-Tice-branded-pound-shop-Nigel-Farage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:57:22.000Z" + }, + { + "title": "A fairytale of New York: Come inside as the Novogratzs decorate their Manhattan townhouse", + "link": "https://www.dailymail.co.uk/home/you/article-12877127/A-fairytale-New-York-Come-inside-Novogratzs-decorate-Manhattan-townhouse.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:57:04 GMT", + "enclosure": { + "length": "8561", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/20/12/79123315-0-image-m-29_1703076270958.jpg" + }, + "content": "Seasoned renovators Cortney and Robert Novogratz have been serving fresh takes on classic American style for nearly three decades", + "contentSnippet": "Seasoned renovators Cortney and Robert Novogratz have been serving fresh takes on classic American style for nearly three decades", + "guid": "https://www.dailymail.co.uk/home/you/article-12877127/A-fairytale-New-York-Come-inside-Novogratzs-decorate-Manhattan-townhouse.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:57:04.000Z" + }, + { + "title": "Putin 'body double' is named for the first time as a fourth-rate carpenter from Belarus as it is claimed he survived assassination attempt to poison him", + "link": "https://www.dailymail.co.uk/news/article-12925439/putin-body-double-carpenter-belarus-assassination-attempt-poison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:56:43 GMT", + "enclosure": { + "length": "4022", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604343-0-image-a-11_1704358107105.jpg" + }, + "content": "Dr Valery Solovey, formerly a professor at a Moscow training academy for spies and diplomats, said\u00a0the poisoned double even stood in to deliver Putin's New Year's Eve rant", + "contentSnippet": "Dr Valery Solovey, formerly a professor at a Moscow training academy for spies and diplomats, said\u00a0the poisoned double even stood in to deliver Putin's New Year's Eve rant", + "guid": "https://www.dailymail.co.uk/news/article-12925439/putin-body-double-carpenter-belarus-assassination-attempt-poison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:56:43.000Z" + }, + { + "title": "Man, 49, is arrested after shooter opened fire outside Liverpool Showcase cinema packed with families watching new Wonka film", + "link": "https://www.dailymail.co.uk/news/article-12925319/Man-arrested-shooter-Liverpool-Showcase-cinema-families-Wonka-film.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:55:55 GMT", + "enclosure": { + "length": "11545", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/06/79595321-0-Armed_police_swooped_in_and_started_escorting_families_back_to_t-a-6_1704351539323.jpg" + }, + "content": "A 49-year-old man has been arrested after a gunman opened fire outside a packed Liverpool cinema filled with terrified families watching the new Wonka film.", + "contentSnippet": "A 49-year-old man has been arrested after a gunman opened fire outside a packed Liverpool cinema filled with terrified families watching the new Wonka film.", + "guid": "https://www.dailymail.co.uk/news/article-12925319/Man-arrested-shooter-Liverpool-Showcase-cinema-families-Wonka-film.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:55:55.000Z" + }, + { + "title": "Rod Stewart continues his generous streak after leaving staff at a five-star hotel a \u00a310,000 Hogmanay tip - and telling them to bet it on Scotland winning Euro 2024", + "link": "https://www.dailymail.co.uk/news/article-12925773/rod-stewart-five-star-hotel-staff-hogmanay-tip-generous-streak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:52:46 GMT", + "enclosure": { + "length": "7854", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607615-0-image-a-7_1704362454409.jpg" + }, + "content": "The 78-year-old rock idol, who was once labelled as 'tight as two coasts of paint' by Rolling Stones guitarist Ronnie Wood , left the ultra generous tip to staff at\u00a0Gleneagles Hotel in Perthshire.", + "contentSnippet": "The 78-year-old rock idol, who was once labelled as 'tight as two coasts of paint' by Rolling Stones guitarist Ronnie Wood , left the ultra generous tip to staff at\u00a0Gleneagles Hotel in Perthshire.", + "guid": "https://www.dailymail.co.uk/news/article-12925773/rod-stewart-five-star-hotel-staff-hogmanay-tip-generous-streak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:52:46.000Z" + }, + { + "title": "Welcome to XL Bully Island: Woman crowdfunds \u00a320,000 for dangerous dog sanctuary in Scotland - but won't tell anyone where it is", + "link": "https://www.dailymail.co.uk/news/article-12925635/xl-bully-island-scotland-dangerous-dog-sanctuary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:52:37 GMT", + "enclosure": { + "length": "6328", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607607-0-image-m-15_1704363297287.jpg" + }, + "content": "The owner of a dog charity in Scotland has set up a fundraiser for a sanctuary for XL Bully breeds, but refuses to reveal the location due to death threats.", + "contentSnippet": "The owner of a dog charity in Scotland has set up a fundraiser for a sanctuary for XL Bully breeds, but refuses to reveal the location due to death threats.", + "guid": "https://www.dailymail.co.uk/news/article-12925635/xl-bully-island-scotland-dangerous-dog-sanctuary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:52:37.000Z" + }, + { + "title": "Luke Littler fuelled up for darts final with scrambled eggs, beans on toast and a margherita pizza - but 16-year-old only practised for less than an hour a day because 'it gets boring'", + "link": "https://www.dailymail.co.uk/news/article-12925793/luke-littler-darts-final-scrambled-eggs-beans-toast-margherita-pizza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:49:46 GMT", + "enclosure": { + "length": "8621", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79606377-0-image-m-75_1704363835226.jpg" + }, + "content": "Speaking the morning after the final, which saw his tournament journey come to an end as he lost to world number one Luke Humphries 7-4, Littler said he had a lie-in on the day of the match.", + "contentSnippet": "Speaking the morning after the final, which saw his tournament journey come to an end as he lost to world number one Luke Humphries 7-4, Littler said he had a lie-in on the day of the match.", + "guid": "https://www.dailymail.co.uk/news/article-12925793/luke-littler-darts-final-scrambled-eggs-beans-toast-margherita-pizza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:49:46.000Z" + }, + { + "title": "Furious neighbour blames council's WFH culture for 'baffling' decision to allow 'monstrous' home to be built next to his bungalow", + "link": "https://www.dailymail.co.uk/news/article-12925755/Furious-neighbour-blames-councils-WFH-culture-baffling-decision-allow-monstrous-home-built-bungalow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:48:10 GMT", + "enclosure": { + "length": "8750", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/77992705-0-image-m-15_1704364419370.jpg" + }, + "content": "Terry Selby and wife Margaret have lodged an official complaint with the Local Government Ombudsman over Dorset Council's handling of the planning application.", + "contentSnippet": "Terry Selby and wife Margaret have lodged an official complaint with the Local Government Ombudsman over Dorset Council's handling of the planning application.", + "guid": "https://www.dailymail.co.uk/news/article-12925755/Furious-neighbour-blames-councils-WFH-culture-baffling-decision-allow-monstrous-home-built-bungalow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:48:10.000Z" + }, + { + "title": "James Bond films are given a trigger warning: Cinemagoers are told 007's adventures may UPSET them in absurd alert from British Film Institute snowflakes", + "link": "https://www.dailymail.co.uk/news/article-12925599/james-bond-films-trigger-warning-bfi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:47:33 GMT", + "enclosure": { + "length": "5800", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606981-0-image-a-22_1704361713768.jpg" + }, + "content": "Film buffs attending a season of classic movies at the BFI cinema in London have been warned Bond's adventures, like Goldfinger and You Only Live Twice, 'will cause offence today'.", + "contentSnippet": "Film buffs attending a season of classic movies at the BFI cinema in London have been warned Bond's adventures, like Goldfinger and You Only Live Twice, 'will cause offence today'.", + "guid": "https://www.dailymail.co.uk/news/article-12925599/james-bond-films-trigger-warning-bfi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:47:33.000Z" + }, + { + "title": "Keir Starmer kicks off New Year election campaign with speech vowing to 'tilt' Britain to the Left - despite senior Labour figures warning huge poll lead hides 'brittle' position", + "link": "https://www.dailymail.co.uk/news/article-12925831/Keir-Starmer-election-Labour-Tories-Rishi-Sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:43:38 GMT", + "enclosure": { + "length": "6965", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608303-0-image-a-3_1704363535931.jpg" + }, + "content": "As Westminster starts ramping up towards a showdown at the ballot boxes this year, the Labour leader insisted he can bring about change.", + "contentSnippet": "As Westminster starts ramping up towards a showdown at the ballot boxes this year, the Labour leader insisted he can bring about change.", + "guid": "https://www.dailymail.co.uk/news/article-12925831/Keir-Starmer-election-Labour-Tories-Rishi-Sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:43:38.000Z" + }, + { + "title": "Luxury penthouse in iconic Boiler House at Battersea Power Station is for sale for \u00a331m", + "link": "https://www.dailymail.co.uk/property/article-12922919/Luxury-penthouse-iconic-Boiler-House-Battersea-Power-Station-sale-31million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:43:35 GMT", + "enclosure": { + "length": "7482", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79574269-0-image-a-12_1704294817161.jpg" + }, + "content": "The four-bedroom penthouse boasts an outdoor seating area underneath one of the four iconic chimneys.", + "contentSnippet": "The four-bedroom penthouse boasts an outdoor seating area underneath one of the four iconic chimneys.", + "guid": "https://www.dailymail.co.uk/property/article-12922919/Luxury-penthouse-iconic-Boiler-House-Battersea-Power-Station-sale-31million.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:43:35.000Z" + }, + { + "title": "Sky Sports reporter Abigail Davies, 32, opens up on suicidal thoughts and battles with anorexia after revealing she visited the Priory before working on the Darts World Championship", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12925433/Sky-Sports-reporter-Abigail-Davies-opens-suicidal-thoughts-battles-anorexia-revealing-visited-mental-health-facility-working-Darts-World-Championships-December.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:41:54 GMT", + "enclosure": { + "length": "10137", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605767-0-image-a-25_1704358909019.jpg" + }, + "content": "The presenter decided to speak out on her mental health following the end of the latest tournament at Ally Pally, revealing she had visited a mental health hospital in December.", + "contentSnippet": "The presenter decided to speak out on her mental health following the end of the latest tournament at Ally Pally, revealing she had visited a mental health hospital in December.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925433/Sky-Sports-reporter-Abigail-Davies-opens-suicidal-thoughts-battles-anorexia-revealing-visited-mental-health-facility-working-Darts-World-Championships-December.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:41:54.000Z" + }, + { + "title": "New driver is slammed for parking in middle of road after they mistook junction for a space in car park", + "link": "https://www.dailymail.co.uk/news/article-12925655/New-driver-slammed-parking-middle-road-junction-space-car-park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:39:14 GMT", + "enclosure": { + "length": "5477", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79607321-0-image-m-20_1704361323086.jpg" + }, + "content": "Fellow motorists have criticised a new driver who embarrassingly mistook a junction for a car parking space.", + "contentSnippet": "Fellow motorists have criticised a new driver who embarrassingly mistook a junction for a car parking space.", + "guid": "https://www.dailymail.co.uk/news/article-12925655/New-driver-slammed-parking-middle-road-junction-space-car-park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:39:14.000Z" + }, + { + "title": "My hair started falling out in my teens and I was completely bald by 20- now I help\u00a0others to be empowered by designing wigs", + "link": "https://www.dailymail.co.uk/femail/article-12925513/My-hair-started-falling-teens-completely-bald-20-help-empowered-designing-wigs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:33:54 GMT", + "enclosure": { + "length": "9254", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79605569-0-image-a-16_1704358545192.jpg" + }, + "content": "Stephanie Barber, 31, from Totnes, Devon, is inspiring women to talk about hair loss - after her own alopecia began at just 16. Stephanie now designs wigs for fellow alopecia sufferers", + "contentSnippet": "Stephanie Barber, 31, from Totnes, Devon, is inspiring women to talk about hair loss - after her own alopecia began at just 16. Stephanie now designs wigs for fellow alopecia sufferers", + "guid": "https://www.dailymail.co.uk/femail/article-12925513/My-hair-started-falling-teens-completely-bald-20-help-empowered-designing-wigs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:33:54.000Z" + }, + { + "title": "Instagram tourists are blamed for record number of call-outs by mountain rescue teams as unprepared climbers flock to dangerous beauty spots for selfies", + "link": "https://www.dailymail.co.uk/news/article-12925499/Instagram-tourists-blamed-record-number-call-outs-mountain-rescue-teams-unprepared-climbers-flock-dangerous-beauty-spots-selfies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:32:32 GMT", + "enclosure": { + "length": "7953", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606333-0-image-m-9_1704362091897.jpg" + }, + "content": "Rescue teams covering Wales's\u00a03,560ft high peak Snowdon, Ben Nevis, the Scottish peak that is Britain's highest, and the Lake District all have seen record numbers of calls from climbers in distress.", + "contentSnippet": "Rescue teams covering Wales's\u00a03,560ft high peak Snowdon, Ben Nevis, the Scottish peak that is Britain's highest, and the Lake District all have seen record numbers of calls from climbers in distress.", + "guid": "https://www.dailymail.co.uk/news/article-12925499/Instagram-tourists-blamed-record-number-call-outs-mountain-rescue-teams-unprepared-climbers-flock-dangerous-beauty-spots-selfies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:32:32.000Z" + }, + { + "title": "I'll never forget this! Mother elephant cuddles her calf with her trunk as they are reunited days after the young animal was separated from the herd and got lost", + "link": "https://www.dailymail.co.uk/news/article-12925651/mother-elephant-cuddles-calf-tamil-nadu-india.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:31:46 GMT", + "enclosure": { + "length": "6920", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605655-0-image-m-38_1704359934099.jpg" + }, + "content": "Park officials reunited the calf with its herd after it disappeared on December 29, spending a day lost and alone in the Anamalaj Tiger Reserve in Tamil Nadu, India.", + "contentSnippet": "Park officials reunited the calf with its herd after it disappeared on December 29, spending a day lost and alone in the Anamalaj Tiger Reserve in Tamil Nadu, India.", + "guid": "https://www.dailymail.co.uk/news/article-12925651/mother-elephant-cuddles-calf-tamil-nadu-india.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:31:46.000Z" + }, + { + "title": "Boris Johnson condemns the Met Police for investigating Israel over alleged war crimes in Gaza as he says the force's appeal for witnesses to the conflict indicates a 'worrying politicisation' of the force", + "link": "https://www.dailymail.co.uk/news/article-12924551/Boris-Johnson-condemns-Met-Police-investigating-Israel-alleged-war-crimes-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:28:51 GMT", + "enclosure": { + "length": "5586", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595825-0-image-m-96_1704327872013.jpg" + }, + "content": "It has emerged that counter-terrorism police have put up posters in British airports telling travellers they can report crimes relating to events since the Hamas attacks of October 7.", + "contentSnippet": "It has emerged that counter-terrorism police have put up posters in British airports telling travellers they can report crimes relating to events since the Hamas attacks of October 7.", + "guid": "https://www.dailymail.co.uk/news/article-12924551/Boris-Johnson-condemns-Met-Police-investigating-Israel-alleged-war-crimes-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:28:51.000Z" + }, + { + "title": "Emily Atack called her cousins 'the best invention since the Game Boy' and '50% sibling, 50% mate'... years before revealing she is expecting a baby with step-cousin Alistair Garner", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12925481/Emily-Atack-branded-cousins-best-invention-Game-Boy-50-sibling-50-mate-years-revealing-expecting-baby-step-cousin-Alistair-Garner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:23:36 GMT", + "enclosure": { + "length": "9683", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79604661-0-image-m-2_1704359739486.jpg" + }, + "content": "MailOnline revealed on Wednesday, The Inbetweeners star's new boyfriend Dr Alistair Garner is her step-cousin who she has known for over 30 years", + "contentSnippet": "MailOnline revealed on Wednesday, The Inbetweeners star's new boyfriend Dr Alistair Garner is her step-cousin who she has known for over 30 years", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12925481/Emily-Atack-branded-cousins-best-invention-Game-Boy-50-sibling-50-mate-years-revealing-expecting-baby-step-cousin-Alistair-Garner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:23:36.000Z" + }, + { + "title": "Prince Andrew 'had underage orgy on Jeffrey Epstein's private island' as girl was told 'give him whatever he wants', claim bombshell court papers that also name Bill Clinton, Michael Jackson, Stephen Hawking and a 'well-known prime minister'", + "link": "https://www.dailymail.co.uk/news/article-12925317/Prince-Andrew-underage-orgy-Jeffrey-Epsteins-private-island-girl-told-wants-claim-bombshell-Jeffrey-Epstein-court-papers-Bill-Clinton-Michael-Jackson-Donald-Trump-known-prime-minister.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:22:48 GMT", + "enclosure": { + "length": "7240", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604485-0-image-m-13_1704357018087.jpg" + }, + "content": "The Duke of York has been again dragged into the sex scandal surrounding his paedophile friend, just over a year after he settled the multi-million dollar case brought by Virginia Giuffre in 2022.", + "contentSnippet": "The Duke of York has been again dragged into the sex scandal surrounding his paedophile friend, just over a year after he settled the multi-million dollar case brought by Virginia Giuffre in 2022.", + "guid": "https://www.dailymail.co.uk/news/article-12925317/Prince-Andrew-underage-orgy-Jeffrey-Epsteins-private-island-girl-told-wants-claim-bombshell-Jeffrey-Epstein-court-papers-Bill-Clinton-Michael-Jackson-Donald-Trump-known-prime-minister.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:22:48.000Z" + }, + { + "title": "Children will be automatically flung out of their beds in time for school, women will be beautiful strong dancers and horses will cease to exist - what the experts of 1924 thought the world of 2024 would look like", + "link": "https://www.dailymail.co.uk/news/article-12922715/Children-beds-1924-experts-predictions-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:21:37 GMT", + "enclosure": { + "length": "7587", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79576143-0-Picture_the_scene_it_is_nearing_8am_and_your_son_or_daughter_is_-a-27_1704295880510.jpg" + }, + "content": "An article in the Leicester Mercury from a century ago suggested that a bed-tipping device might exist in children's bedrooms, along with asbestos uniforms and transport in the form of an 'aerobus'.", + "contentSnippet": "An article in the Leicester Mercury from a century ago suggested that a bed-tipping device might exist in children's bedrooms, along with asbestos uniforms and transport in the form of an 'aerobus'.", + "guid": "https://www.dailymail.co.uk/news/article-12922715/Children-beds-1924-experts-predictions-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:21:37.000Z" + }, + { + "title": "Luke Littler's 'unbelievably proud' sister sends a heartwarming message to the 16-year-old darts sensation", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12925301/Luke-Littlers-unbelievably-proud-sister-sends-heartwarming-message-16-year-old-darts-sensation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:16:10 GMT", + "enclosure": { + "length": "11109", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/07/79603575-0-image-a-17_1704353966602.jpg" + }, + "content": "The darting sensation had been leading 4-2 against Luke Humphries on Wednesday night, but an inspired comeback from the world No 1\u00a0turned the tables.", + "contentSnippet": "The darting sensation had been leading 4-2 against Luke Humphries on Wednesday night, but an inspired comeback from the world No 1\u00a0turned the tables.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925301/Luke-Littlers-unbelievably-proud-sister-sends-heartwarming-message-16-year-old-darts-sensation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:16:10.000Z" + }, + { + "title": "Urgent recall of Reckitt baby formula: Safety chiefs issue warning to parents over fears powders could contain dangerous bacteria", + "link": "https://www.dailymail.co.uk/news/article-12925537/Urgent-recall-Reckitt-baby-formula-Safety-chiefs-issue-warning-parents-fears-powders-contain-deadly-bacteria.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:12:45 GMT", + "enclosure": { + "length": "5922", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79604895-0-image-a-11_1704360396517.jpg" + }, + "content": "Manufacturer Reckitt Benckiser has urgently recalled two baby formula powders - Nutramigen LGG Hypoallergenic formulas - as they could contain a deadly bacteria: Cronobacter sakazakii", + "contentSnippet": "Manufacturer Reckitt Benckiser has urgently recalled two baby formula powders - Nutramigen LGG Hypoallergenic formulas - as they could contain a deadly bacteria: Cronobacter sakazakii", + "guid": "https://www.dailymail.co.uk/news/article-12925537/Urgent-recall-Reckitt-baby-formula-Safety-chiefs-issue-warning-parents-fears-powders-contain-deadly-bacteria.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:12:45.000Z" + }, + { + "title": "Jeffrey Epstein 'victim' Johanna Sjoberg claims predator told her 'Clinton likes them young' in bombshell newly-released court documents", + "link": "https://www.dailymail.co.uk/news/article-12923589/jeffrey-epstein-list-names-released.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:09:19 GMT", + "enclosure": { + "length": "9411", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596507-0-image-m-50_1704329836536.jpg" + }, + "content": "Johanna Sjoberg, who was recruited by Ghislaine Maxwell when she was 20, told the lawyers in 2016 that Jeffrey Epstein told her 'Clinton likes them young, referring to girls.'", + "contentSnippet": "Johanna Sjoberg, who was recruited by Ghislaine Maxwell when she was 20, told the lawyers in 2016 that Jeffrey Epstein told her 'Clinton likes them young, referring to girls.'", + "guid": "https://www.dailymail.co.uk/news/article-12923589/jeffrey-epstein-list-names-released.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:09:19.000Z" + }, + { + "title": "Virginia Giuffre 'was groped with Prince Andrew puppet while the royal put his hand on Johanna Sjoberg's breast', Epstein court papers say", + "link": "https://www.dailymail.co.uk/news/article-12925283/Epstein-list-virginia-giuffre-prince-andrew-puppet-johanna-sjoberg-breast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:03:48 GMT", + "enclosure": { + "length": "10072", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604787-0-image-m-13_1704358101961.jpg" + }, + "content": "Testimony from Jeffrey Epstein 'victim' Johanna Sjoberg,\u00a0who was recruited at the age of 20 to work as a massage therapist, has once again embroiled the Duke of York in the sex scandal.", + "contentSnippet": "Testimony from Jeffrey Epstein 'victim' Johanna Sjoberg,\u00a0who was recruited at the age of 20 to work as a massage therapist, has once again embroiled the Duke of York in the sex scandal.", + "guid": "https://www.dailymail.co.uk/news/article-12925283/Epstein-list-virginia-giuffre-prince-andrew-puppet-johanna-sjoberg-breast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:03:48.000Z" + }, + { + "title": "Boxing bad boy Jarrell 'Big Baby' Miller is 'ARRESTED for carjacking and burglary with assault' after he 'chokeslammed a car dealership employee' following his biggest fight payday on Anthony Joshua undercard", + "link": "https://www.dailymail.co.uk/sport/boxing/article-12925507/Brash-talking-Jarrell-Miller-ARRESTED-carjacking-burglary-assault-just-12-days-picking-biggest-payday-career-Day-Reckoning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:59:12 GMT", + "enclosure": { + "length": "9908", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606835-0-image-a-4_1704360406301.jpg" + }, + "content": "Jarrell Miller was arrested on Tuesday afternoon and charged with carjacking without a firearm or weapon and burglary with assault or battery, according to Broward Sheriff's Office records.", + "contentSnippet": "Jarrell Miller was arrested on Tuesday afternoon and charged with carjacking without a firearm or weapon and burglary with assault or battery, according to Broward Sheriff's Office records.", + "guid": "https://www.dailymail.co.uk/sport/boxing/article-12925507/Brash-talking-Jarrell-Miller-ARRESTED-carjacking-burglary-assault-just-12-days-picking-biggest-payday-career-Day-Reckoning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:59:12.000Z" + }, + { + "title": "The glamorous first getaways of the royal newlyweds", + "link": "https://www.dailymail.co.uk/femail/article-11972607/The-glamorous-getaways-royal-newlyweds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:57:51 GMT", + "enclosure": { + "length": "10543", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/04/19/10/69993233-0-image-a-19_1681894883028.jpg" + }, + "content": "With the eyes of many thousands, if not millions, upon them when they marry, it's no wonder that royal couples often head straight off for a restful break. Here, then, are their colourful destinations.", + "contentSnippet": "With the eyes of many thousands, if not millions, upon them when they marry, it's no wonder that royal couples often head straight off for a restful break. Here, then, are their colourful destinations.", + "guid": "https://www.dailymail.co.uk/femail/article-11972607/The-glamorous-getaways-royal-newlyweds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:57:51.000Z" + }, + { + "title": "Magician David Copperfield had dinner with Jeffrey Epstein and asked 'victim' if she realised predator's girls were getting paid to find other girls for him to abuse, bombshell court papers claim", + "link": "https://www.dailymail.co.uk/news/article-12924635/David-Copperfield-Jeffrey-Epstein-victim-paid-recruit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:57:36 GMT", + "enclosure": { + "length": "8085", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79597283-0-image-m-29_1704331049860.jpg" + }, + "content": "Johanna Sjoberg said during her deposition the famous magician was having dinner at Epstein's house when he asked if she knew other girls were getting paid to bring in new girls.", + "contentSnippet": "Johanna Sjoberg said during her deposition the famous magician was having dinner at Epstein's house when he asked if she knew other girls were getting paid to bring in new girls.", + "guid": "https://www.dailymail.co.uk/news/article-12924635/David-Copperfield-Jeffrey-Epstein-victim-paid-recruit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:57:36.000Z" + }, + { + "title": "How Luke Littler turned the country into a nation of darts fans: Teen ace returns home after enthralling Britain with record-breaking run to World Championship final", + "link": "https://www.dailymail.co.uk/news/article-12925407/luke-littler-fans-darts-prodigy-world-champsionship-final-loss-record-numbers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:57:04 GMT", + "enclosure": { + "length": "9553", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79603923-0-image-m-29_1704355664641.jpg" + }, + "content": "Despite losing the final Luke The Nuke's fairytale journey saw him beat some of the best in the world and become the youngest player to ever compete in the annual event's final.", + "contentSnippet": "Despite losing the final Luke The Nuke's fairytale journey saw him beat some of the best in the world and become the youngest player to ever compete in the annual event's final.", + "guid": "https://www.dailymail.co.uk/news/article-12925407/luke-littler-fans-darts-prodigy-world-champsionship-final-loss-record-numbers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:57:04.000Z" + }, + { + "title": "Can YOU tell how these dogs are feeling? Study reveals flat-faced breeds are harder to read - so, do you think these pups are happy or sad?", + "link": "https://www.dailymail.co.uk/sciencetech/article-12922387/Can-tell-dogs-feeling-Study-reveals-flat-faced-breeds-harder-read-think-pups-happy-sad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:56:58 GMT", + "enclosure": { + "length": "11299", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/13/79571473-0-image-a-18_1704288073480.jpg" + }, + "content": "Researchers from the Czech University of Life Sciences Prague say that flat-faced dogs including Pugs, Boston Terriers, and French Bulldogs are harder to read than dogs with 'normal' heads.", + "contentSnippet": "Researchers from the Czech University of Life Sciences Prague say that flat-faced dogs including Pugs, Boston Terriers, and French Bulldogs are harder to read than dogs with 'normal' heads.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12922387/Can-tell-dogs-feeling-Study-reveals-flat-faced-breeds-harder-read-think-pups-happy-sad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:56:58.000Z" + }, + { + "title": "Carol Vorderman praises\u00a0ITV Mr Bates vs The Post Office real-life hero Alan Bates after he rejected an OBE title", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923705/Carol-Vorderman-praises-Alan-Bates-ITV-drama-Post-Office.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:54:49 GMT", + "enclosure": { + "length": "10039", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587355-0-image-a-70_1704312793332.jpg" + }, + "content": "Carol Vorderman sang the praises of ITV Mr Bates vs The Post Office's real-life hero Alan Bates after he snubbed an OBE title.", + "contentSnippet": "Carol Vorderman sang the praises of ITV Mr Bates vs The Post Office's real-life hero Alan Bates after he snubbed an OBE title.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923705/Carol-Vorderman-praises-Alan-Bates-ITV-drama-Post-Office.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:54:49.000Z" + }, + { + "title": "Mr Bates vs The Post Office: Where are Alan Bates and Paula Vennells now years after the Horizon Post Office scandal?", + "link": "https://www.dailymail.co.uk/news/article-12923263/Mr-Bates-vs-Post-Office-Alan-Bates-Paula-Vennells-years-Horizon-Post-Office-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:54:16 GMT", + "enclosure": { + "length": "4423", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587645-0-image-m-21_1704314992856.jpg" + }, + "content": "Alan Bates (pictured), was\u00a0one of hundreds of innocent subpostmasters working in the UK who was accused and later charged of theft, fraud and false accounting due to a faulty IT system.", + "contentSnippet": "Alan Bates (pictured), was\u00a0one of hundreds of innocent subpostmasters working in the UK who was accused and later charged of theft, fraud and false accounting due to a faulty IT system.", + "guid": "https://www.dailymail.co.uk/news/article-12923263/Mr-Bates-vs-Post-Office-Alan-Bates-Paula-Vennells-years-Horizon-Post-Office-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:54:16.000Z" + }, + { + "title": "Darts fans trade hilarious memes after World Darts Championship final... with both Arsenal and Tottenham fans blaming each other for Luke Littler's defeat and Luke Humphries compared to an unsporting Michael Owen!", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12925473/Darts-hilarious-memes-Luke-Littler-Arsenal-Tottenham-rivals-Luke-Humphries-Michael-Owen-clip.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:50:39 GMT", + "enclosure": { + "length": "11179", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79607127-0-image-a-9_1704360741201.jpg" + }, + "content": "Despite coming second place, the Warrington teenager will still pocket an eye-watering \u00a3200,000 in prize money, and his miraculous run has garned him legions of new fans.", + "contentSnippet": "Despite coming second place, the Warrington teenager will still pocket an eye-watering \u00a3200,000 in prize money, and his miraculous run has garned him legions of new fans.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925473/Darts-hilarious-memes-Luke-Littler-Arsenal-Tottenham-rivals-Luke-Humphries-Michael-Owen-clip.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:50:39.000Z" + }, + { + "title": "The beginning of the end for the iPhone? As Apple shares slump 4% after 'lacklustre' iPhone 15 sales, experts claim its smartphones have become 'formulaic' and warn customers are jumping ship to rivals Samsung and Huawei", + "link": "https://www.dailymail.co.uk/sciencetech/article-12922173/The-beginning-end-iPhone-Apple-shares-slump-4-lackluster-iPhone-15-sales-experts-claim-smartphones-formulaic-warn-customers-jumping-ship-rivals-Samsung-Huawei.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:47:03 GMT", + "enclosure": { + "length": "10388", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79603941-0-image-m-69_1704356724771.jpg" + }, + "content": "Apple investors have been advised to sell shares following months of 'weak' sales. MailOnline spoke to experts to find out if this is the\u00a0beginning of the end for the iPhone.", + "contentSnippet": "Apple investors have been advised to sell shares following months of 'weak' sales. MailOnline spoke to experts to find out if this is the\u00a0beginning of the end for the iPhone.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12922173/The-beginning-end-iPhone-Apple-shares-slump-4-lackluster-iPhone-15-sales-experts-claim-smartphones-formulaic-warn-customers-jumping-ship-rivals-Samsung-Huawei.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:47:03.000Z" + }, + { + "title": "REVEALED: Luke Littler's new world ranking after his painful World Darts Championship final loss to Luke Humphries... after the 16-year-old missed out on triumph that would have moved him up to NINTH", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12925417/Luke-Littlers-new-world-ranking-painful-World-Darts-Championship-final-loss-Luke-Humphries-16-year-old-missed-triumph-moved-NINTH.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:46:47 GMT", + "enclosure": { + "length": "10826", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/07/79603657-0-image-a-11_1704355073426.jpg" + }, + "content": "The 16-year-old was the story of the tournament as he stunned fans with his dominant displays to charge into the final - but suffered heartache in his bid to become the youngest ever champion.", + "contentSnippet": "The 16-year-old was the story of the tournament as he stunned fans with his dominant displays to charge into the final - but suffered heartache in his bid to become the youngest ever champion.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925417/Luke-Littlers-new-world-ranking-painful-World-Darts-Championship-final-loss-Luke-Humphries-16-year-old-missed-triumph-moved-NINTH.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:46:47.000Z" + }, + { + "title": "Las Vegas judge is attacked by freshly-convicted criminal who jumped over her bench to rain punches on her after she sentenced him to jail", + "link": "https://www.dailymail.co.uk/news/article-12924343/las-Vegas-judge-attacked-courtroom-Mary-Kay-holthus.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:45:01 GMT", + "enclosure": { + "length": "5871", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79594013-0-image-a-7_1704323970024.jpg" + }, + "content": "A Las Vegas judge was pounced on and attacked by a man during a hearing after she denied him bail.", + "contentSnippet": "A Las Vegas judge was pounced on and attacked by a man during a hearing after she denied him bail.", + "guid": "https://www.dailymail.co.uk/news/article-12924343/las-Vegas-judge-attacked-courtroom-Mary-Kay-holthus.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:45:01.000Z" + }, + { + "title": "Will HMRC really come after me for selling old clothes? Why it's unlikely you'll be taxed", + "link": "https://www.dailymail.co.uk/money/savemoneymakemoney/article-12922689/Will-HMRC-really-come-selling-old-clothes-unlikely-youll-taxed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:44:30 GMT", + "enclosure": { + "length": "7053", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79576369-0-image-a-23_1704295871704.jpg" + }, + "content": "The taxman is cracking down on online resellers who use digital platforms to make extra cash and failing to declare it as income. We explain who needs to pay tax.", + "contentSnippet": "The taxman is cracking down on online resellers who use digital platforms to make extra cash and failing to declare it as income. We explain who needs to pay tax.", + "guid": "https://www.dailymail.co.uk/money/savemoneymakemoney/article-12922689/Will-HMRC-really-come-selling-old-clothes-unlikely-youll-taxed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:44:30.000Z" + }, + { + "title": "Inside Obertauern, the ski resort made famous by The Beatles that gets so much snow it's 'climate-change-proof' - and a stay at a VERY seductive hotel there with a heavenly pool and rooms with bedside condoms", + "link": "https://www.dailymail.co.uk/travel/article-12922213/Inside-Obertauern-ski-resort-famous-Beatles-gets-snow-climate-change-proof-stay-seductive-hotel-heavenly-pool-rooms-bedside-condoms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:41:05 GMT", + "enclosure": { + "length": "9332", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/12/79566719-0-image-m-33_1704286639882.jpg" + }, + "content": "It was put on the map by The Beatles, who recorded movie Help! there. But these days Obertauern is just as well known for its snow record. Ted Thornhill visited and checked in to Places Hotel...", + "contentSnippet": "It was put on the map by The Beatles, who recorded movie Help! there. But these days Obertauern is just as well known for its snow record. Ted Thornhill visited and checked in to Places Hotel...", + "guid": "https://www.dailymail.co.uk/travel/article-12922213/Inside-Obertauern-ski-resort-famous-Beatles-gets-snow-climate-change-proof-stay-seductive-hotel-heavenly-pool-rooms-bedside-condoms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:41:05.000Z" + }, + { + "title": "Beaten but not broken: Luke Littler smiles as he poses with friends backstage at Ally Pally", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12925549/Beaten-not-broken-Luke-Littler-smiles-poses-friends-backstage-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:37:55 GMT", + "enclosure": { + "length": "11250", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604257-0-image-a-12_1704357082101.jpg" + }, + "content": "The 16-year-old darts sensation was on the brink of creating history by becoming the youngest ever winner of the tournament.", + "contentSnippet": "The 16-year-old darts sensation was on the brink of creating history by becoming the youngest ever winner of the tournament.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925549/Beaten-not-broken-Luke-Littler-smiles-poses-friends-backstage-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:37:55.000Z" + }, + { + "title": "Rishi Sunak is mocked for tweeting 'Congratulations Luke, a great win tonight' after Luke Humphries beat Luke Littler in darts final", + "link": "https://www.dailymail.co.uk/news/article-12925315/rishi-sunak-congratulations-luke-littler-Humphries-darts-final-mocked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:33:56 GMT", + "enclosure": { + "length": "7695", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604917-0-image-m-22_1704358289337.jpg" + }, + "content": "Moments after Luke Humphries beat Luke Littler to secure the title at Ally Pally, the Prime Minister was mocked for tweeting: 'Congratulations Luke, a great win tonight.'", + "contentSnippet": "Moments after Luke Humphries beat Luke Littler to secure the title at Ally Pally, the Prime Minister was mocked for tweeting: 'Congratulations Luke, a great win tonight.'", + "guid": "https://www.dailymail.co.uk/news/article-12925315/rishi-sunak-congratulations-luke-littler-Humphries-darts-final-mocked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:33:56.000Z" + }, + { + "title": "Police search for boy, 11, who went missing after failing to come home from a bike ride in Welsh village", + "link": "https://www.dailymail.co.uk/news/article-12925693/police-search-boy-missing-welsh-village-bike-ride.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:32:12 GMT", + "enclosure": { + "length": "4135", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606721-0-image-a-4_1704360339734.jpg" + }, + "content": "Police say the schoolboy, named only as Marley, was last seen wearing a hoody and black tracksuit bottoms near his countryside village home.", + "contentSnippet": "Police say the schoolboy, named only as Marley, was last seen wearing a hoody and black tracksuit bottoms near his countryside village home.", + "guid": "https://www.dailymail.co.uk/news/article-12925693/police-search-boy-missing-welsh-village-bike-ride.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:32:12.000Z" + }, + { + "title": "Luke Littler is spotted showing incredible sportsmanship, attempting to stop fans booing Luke Humphries on dart to win World Championship as 16-year-old is praised for being 'credit to the sport'", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12925505/Fans-spot-moment-Luke-Littler-tells-Alexandra-Palace-crowd-STOP-booing-Luke-Humphries-match-point-16-year-old-sensation-labelled-credit-sport-supporters-social-media.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:32:02 GMT", + "enclosure": { + "length": "9943", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79606161-0-image-a-1_1704359640216.jpg" + }, + "content": "Fans online have labelled Luke Littler a 'credit to the sport' after spotting the moment he tried to get the crowd to stop booing Luke Humphries.", + "contentSnippet": "Fans online have labelled Luke Littler a 'credit to the sport' after spotting the moment he tried to get the crowd to stop booing Luke Humphries.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925505/Fans-spot-moment-Luke-Littler-tells-Alexandra-Palace-crowd-STOP-booing-Luke-Humphries-match-point-16-year-old-sensation-labelled-credit-sport-supporters-social-media.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:32:02.000Z" + }, + { + "title": "ALEX BRUMMER:\u00a0My efforts at email hygiene went horribly wrong", + "link": "https://www.dailymail.co.uk/money/comment/article-12925449/ALEX-BRUMMER-efforts-email-hygiene-gone-horribly-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:30:22 GMT", + "enclosure": { + "length": "4394", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604109-0-image-m-16_1704355895150.jpg" + }, + "content": "Given that company equipment are used to access the private account, it was my assumption that double verification and firewalls would largely protect me from scammers.", + "contentSnippet": "Given that company equipment are used to access the private account, it was my assumption that double verification and firewalls would largely protect me from scammers.", + "guid": "https://www.dailymail.co.uk/money/comment/article-12925449/ALEX-BRUMMER-efforts-email-hygiene-gone-horribly-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:30:22.000Z" + }, + { + "title": "EV revolution held back by charging points crisis", + "link": "https://www.dailymail.co.uk/money/markets/article-12925475/EVs-held-charging-points-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:29:35 GMT", + "enclosure": { + "length": "6017", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604291-0-image-m-30_1704356156104.jpg" + }, + "content": "Just 16,178 public chargers were installed last year - 44 a day, and well short of the 110 needed to hit the Government's target of 300,000 in the UK by the end of the decade.", + "contentSnippet": "Just 16,178 public chargers were installed last year - 44 a day, and well short of the 110 needed to hit the Government's target of 300,000 in the UK by the end of the decade.", + "guid": "https://www.dailymail.co.uk/money/markets/article-12925475/EVs-held-charging-points-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:29:35.000Z" + }, + { + "title": "From a chocolate-box haven in Switzerland to a surfer's paradise in Portugal: UNWTO unveils the 54 most beautiful tourism villages you've (probably) never heard of...", + "link": "https://www.dailymail.co.uk/travel/article-12837501/The-worlds-beautiful-villages-youve-probably-never-heard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:29:32 GMT", + "enclosure": { + "length": "9328", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79573191-0-image-m-93_1704295274711.jpg" + }, + "content": "The Best Tourism Villages of 2023 list recognises 54 off-the-beaten-path villages that are not only beautiful, but perfect for authentic adventures. Which ones will you put on your bucket list?", + "contentSnippet": "The Best Tourism Villages of 2023 list recognises 54 off-the-beaten-path villages that are not only beautiful, but perfect for authentic adventures. Which ones will you put on your bucket list?", + "guid": "https://www.dailymail.co.uk/travel/article-12837501/The-worlds-beautiful-villages-youve-probably-never-heard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:29:32.000Z" + }, + { + "title": "That's one way to get your five a day!\u00a0 Fruit and veg that's morphed into something very different", + "link": "https://www.dailymail.co.uk/femail/article-12925365/Fruit-veg-thats-morphed-different.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:29:07 GMT", + "enclosure": { + "length": "9763", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604629-0-image-a-25_1704357022121.jpg" + }, + "content": "People from around the world have shared hilarious examples of their weird and wonderful fresh produce and Bored Panda collated the best into an online gallery.", + "contentSnippet": "People from around the world have shared hilarious examples of their weird and wonderful fresh produce and Bored Panda collated the best into an online gallery.", + "guid": "https://www.dailymail.co.uk/femail/article-12925365/Fruit-veg-thats-morphed-different.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:29:07.000Z" + }, + { + "title": "I make \u00a31,000 a week by dumpster diving -\u00a0 the amount of new stuff retailers throw away is criminal", + "link": "https://www.dailymail.co.uk/femail/article-12914231/I-make-1-000-week-dumpster-diving.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:24:48 GMT", + "enclosure": { + "length": "12001", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/31/11/79478247-0-image-a-47_1704023409269.jpg" + }, + "content": "Martyn, 47, from Kent, went\u00a0dumpster diving in B&M's bins and found \u00a3200 worth of items, including a golden drinks trolly, a\u00a0LED mirror and a Classic Glass Kettle by the brand Russell Hobbs", + "contentSnippet": "Martyn, 47, from Kent, went\u00a0dumpster diving in B&M's bins and found \u00a3200 worth of items, including a golden drinks trolly, a\u00a0LED mirror and a Classic Glass Kettle by the brand Russell Hobbs", + "guid": "https://www.dailymail.co.uk/femail/article-12914231/I-make-1-000-week-dumpster-diving.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:24:48.000Z" + }, + { + "title": "Israeli news anchor carries a gun while live on air in the studio in latest sign of how civilians still do not feel safe since Hamas attack", + "link": "https://www.dailymail.co.uk/news/article-12925479/Israeli-news-anchor-gun-live-studio-hamas-attack-fear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:20:12 GMT", + "enclosure": { + "length": "7437", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79604543-0-image-m-25_1704359619716.jpg" + }, + "content": "Lital Shemesh, a presenter for right-wing Israeli broadcaster Channel 14, was pictured on Tuesday sitting behind her anchor desk with a gun tucked into the waistband of her trousers.", + "contentSnippet": "Lital Shemesh, a presenter for right-wing Israeli broadcaster Channel 14, was pictured on Tuesday sitting behind her anchor desk with a gun tucked into the waistband of her trousers.", + "guid": "https://www.dailymail.co.uk/news/article-12925479/Israeli-news-anchor-gun-live-studio-hamas-attack-fear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:20:12.000Z" + }, + { + "title": "The modest stockbroker who rejected being labeled 'the British Schindler': As a new biopic hits cinemas, his son's\u00a0 former partner reveals the real Nicholas Winton - forthright, funny and a lifelong socialist", + "link": "https://www.dailymail.co.uk/news/article-12923161/The-REAL-British-Schindler-Nicholas-Wintons-former-daughter-law-reveals-modest-stockbroker-rescued-669-Jewish-children-Nazis-rejected-comparisons-factory-owner-Oskar-new-biopic-One-Life-hits-cinemas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:16:54 GMT", + "enclosure": { + "length": "6844", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79582545-0-image-a-63_1704307000925.jpg" + }, + "content": "Nicholas Winton, to his credit, always rejected the 'British Schindler' label. He recognised that, unlike Schindler who risked his life, he had carried out his mission from the safety of his Hampstead flat.", + "contentSnippet": "Nicholas Winton, to his credit, always rejected the 'British Schindler' label. He recognised that, unlike Schindler who risked his life, he had carried out his mission from the safety of his Hampstead flat.", + "guid": "https://www.dailymail.co.uk/news/article-12923161/The-REAL-British-Schindler-Nicholas-Wintons-former-daughter-law-reveals-modest-stockbroker-rescued-669-Jewish-children-Nazis-rejected-comparisons-factory-owner-Oskar-new-biopic-One-Life-hits-cinemas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:16:54.000Z" + }, + { + "title": "Nervous Keir Starmer pleads for voters to give him a chance and distances himself from Corbyn in speech TODAY kicking off New Year push to election\u2026 as senior Labour figures warn of 'brittle' position despite huge poll lead", + "link": "https://www.dailymail.co.uk/news/article-12925411/Keir-Starmer-Labour-Corbyn-speech-election-Tories-Rishi-Sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:13:50 GMT", + "enclosure": { + "length": "10027", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604255-0-image-m-7_1704356009089.jpg" + }, + "content": "As Westminster starts ramping up towards a showdown at the ballot boxes this year, Keir Starmer will insist he can bring about change.", + "contentSnippet": "As Westminster starts ramping up towards a showdown at the ballot boxes this year, Keir Starmer will insist he can bring about change.", + "guid": "https://www.dailymail.co.uk/news/article-12925411/Keir-Starmer-Labour-Corbyn-speech-election-Tories-Rishi-Sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:13:50.000Z" + }, + { + "title": "Poh Ling Yeow shares incredible food hack to make tomatoes taste better - and you'll never guess what it is", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12925309/Poh-Ling-Yeow-shares-incredible-food-hack.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:12:30 GMT", + "enclosure": { + "length": "11049", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/07/79603331-0-image-a-245_1704352893389.jpg" + }, + "content": "MasterChef Australia's new host Poh Ling Yeow shared an incredible food hack with her fans on Thursday, to ensure tomatoes maintain their taste during humid weather.", + "contentSnippet": "MasterChef Australia's new host Poh Ling Yeow shared an incredible food hack with her fans on Thursday, to ensure tomatoes maintain their taste during humid weather.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12925309/Poh-Ling-Yeow-shares-incredible-food-hack.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:12:30.000Z" + }, + { + "title": "Baker sparks debate over mysterious cookie cutter shape - but can YOU guess what it is?", + "link": "https://www.dailymail.co.uk/femail/article-12922107/Baker-sparks-debate-mysterious-cookie-cutter-shape-guess-is.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:11:02 GMT", + "enclosure": { + "length": "5578", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/11/79568179-0-image-a-23_1704282484779.jpg" + }, + "content": "The odd shape was posted on the Cookie Cutter Identification Facebook group last week - where people from around the world gather to attempt to pin down strangely shaped cutters.", + "contentSnippet": "The odd shape was posted on the Cookie Cutter Identification Facebook group last week - where people from around the world gather to attempt to pin down strangely shaped cutters.", + "guid": "https://www.dailymail.co.uk/femail/article-12922107/Baker-sparks-debate-mysterious-cookie-cutter-shape-guess-is.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:11:02.000Z" + }, + { + "title": "Travis Kelce loves darts! As Luke Littler takes the sport by storm, clip of Taylor Swift's boyfriend and brother Jason vowing to go to a tournament in Germany resurfaces: 'I have always wanted to go!'", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12924147/Travis-Kelce-loves-darts-Luke-Littler-Jason-Germany-tournament.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:07:39 GMT", + "enclosure": { + "length": "11661", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593407-0-image-a-8_1704322401041.jpg" + }, + "content": "A clip from Travis Kelce's New Heights episode has resurfaced where the Chiefs star - Taylor Swift 's boyfriend - talks about how much he loves the game after a visit to Germany.", + "contentSnippet": "A clip from Travis Kelce's New Heights episode has resurfaced where the Chiefs star - Taylor Swift 's boyfriend - talks about how much he loves the game after a visit to Germany.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924147/Travis-Kelce-loves-darts-Luke-Littler-Jason-Germany-tournament.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:07:39.000Z" + }, + { + "title": "Wearing hearing aids can slash risk of an early grave by a QUARTER, study suggests", + "link": "https://www.dailymail.co.uk/health/article-12925639/Wearing-hearing-aids-slash-risk-early-grave-QUARTER-study-suggests.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:06:31 GMT", + "enclosure": { + "length": "8036", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605623-0-image-a-5_1704359056635.jpg" + }, + "content": "US researchers found that people with hearing loss were 24 per cent less likely to die early if they regularly wore the device, compared to those who never wore it.", + "contentSnippet": "US researchers found that people with hearing loss were 24 per cent less likely to die early if they regularly wore the device, compared to those who never wore it.", + "guid": "https://www.dailymail.co.uk/health/article-12925639/Wearing-hearing-aids-slash-risk-early-grave-QUARTER-study-suggests.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:06:31.000Z" + }, + { + "title": "Push for heat pumps and solar panels on historic buildings: Ministers set to loosen planning rules despite fears listed properties could be blighted", + "link": "https://www.dailymail.co.uk/news/article-12925571/Heat-pumps-solar-panels-historic-buildings-planning-net-zero.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:03:16 GMT", + "enclosure": { + "length": "7859", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79605005-0-image-m-5_1704358795022.jpg" + }, + "content": "People in listed properties or who live in conservation areas could be exempted from having to apply for permission to fit the green technology.", + "contentSnippet": "People in listed properties or who live in conservation areas could be exempted from having to apply for permission to fit the green technology.", + "guid": "https://www.dailymail.co.uk/news/article-12925571/Heat-pumps-solar-panels-historic-buildings-planning-net-zero.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:03:16.000Z" + }, + { + "title": "Perfect after a ruff day! The Cornish pet whisperer who's started a reading group for DOGS and published a book specifically for our canine friends (and insists they really do listen)", + "link": "https://www.dailymail.co.uk/news/article-12923061/Perfect-ruff-day-Cornish-pet-whisperer-whos-started-reading-group-DOGS-published-book-specifically-canine-friends-insists-really-listen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:01:01 GMT", + "enclosure": { + "length": "8328", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/17/79580735-0-image-m-18_1704301823434.jpg" + }, + "content": "The sky is darkening, the waves crash on the beach and seagulls swirl in the winter chill. But inside Erica Longdon's Cornish home, everything is cosy. She picks up her book and everyone snuggles close.", + "contentSnippet": "The sky is darkening, the waves crash on the beach and seagulls swirl in the winter chill. But inside Erica Longdon's Cornish home, everything is cosy. She picks up her book and everyone snuggles close.", + "guid": "https://www.dailymail.co.uk/news/article-12923061/Perfect-ruff-day-Cornish-pet-whisperer-whos-started-reading-group-DOGS-published-book-specifically-canine-friends-insists-really-listen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:01:01.000Z" + }, + { + "title": "Cinema addict travels across the world mapping his favourite films - but can YOU match the iconic movies to their obscure locations?", + "link": "https://www.dailymail.co.uk/news/article-12873631/Cinema-addict-travels-world-mapping-favourite-films-match-iconic-movies-obscure-locations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 09:00:17 GMT", + "enclosure": { + "length": "11731", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/18/15/79089913-0-image-a-34_1702912033394.jpg" + }, + "content": "EXCLUSIVE: Thomas Duke, who is originally from Essex, studied BA Film for three years at Brunel University London from 2017 to 2020.", + "contentSnippet": "EXCLUSIVE: Thomas Duke, who is originally from Essex, studied BA Film for three years at Brunel University London from 2017 to 2020.", + "guid": "https://www.dailymail.co.uk/news/article-12873631/Cinema-addict-travels-world-mapping-favourite-films-match-iconic-movies-obscure-locations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T09:00:17.000Z" + }, + { + "title": "Cars that died in 2023: Ten major models that reached end of the road", + "link": "https://www.dailymail.co.uk/money/cars/article-12919027/Cars-died-2023-Ten-major-models-reached-end-road.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:58:20 GMT", + "enclosure": { + "length": "12992", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/14/79574675-0-image-a-37_1704293131445.jpg" + }, + "content": "There are number of very well known car models that you won't be seeing in showrooms from 2024 onwards. That's because 2023 saw the demise of some modern-era greats...", + "contentSnippet": "There are number of very well known car models that you won't be seeing in showrooms from 2024 onwards. That's because 2023 saw the demise of some modern-era greats...", + "guid": "https://www.dailymail.co.uk/money/cars/article-12919027/Cars-died-2023-Ten-major-models-reached-end-road.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:58:20.000Z" + }, + { + "title": "Duncan Bannatyne, 74, uses a walking stick while sporting a knee brace as he departs St Barts with wife Nigora, 43, following lavish getaway", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924075/Duncan-Bannatyne-74-uses-walking-stick-sporting-knee-brace-departs-St-Barts-wife-Nigora-43-following-lavish-getaway.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:58:08 GMT", + "enclosure": { + "length": "11995", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590959-0-image-m-36_1704318439687.jpg" + }, + "content": "Duncan Bannatyne and wife\u00a0Nigora were spotted boarding a plane to depart St Barts on Wednesday after spending the festive season on the island.\u00a0", + "contentSnippet": "Duncan Bannatyne and wife\u00a0Nigora were spotted boarding a plane to depart St Barts on Wednesday after spending the festive season on the island.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924075/Duncan-Bannatyne-74-uses-walking-stick-sporting-knee-brace-departs-St-Barts-wife-Nigora-43-following-lavish-getaway.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:58:08.000Z" + }, + { + "title": "Harry Styles' fans share their relief as the singer ditches short-lived buzz cut and grows back much-loved locks: 'Hide the scissors!'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923785/Harry-Styles-ditches-buzz-cut-grows-locks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:57:14 GMT", + "enclosure": { + "length": "11770", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79588617-0-image-a-50_1704315097804.jpg" + }, + "content": "Harry Styles, 29, has now seemingly ditched his short-lived trim and started growing back his precious long locks.", + "contentSnippet": "Harry Styles, 29, has now seemingly ditched his short-lived trim and started growing back his precious long locks.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923785/Harry-Styles-ditches-buzz-cut-grows-locks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:57:14.000Z" + }, + { + "title": "The 5 body parts you might not be washing enough according to a doctor - and they might surprise you", + "link": "https://www.dailymail.co.uk/femail/article-12909655/The-5-body-parts-not-washing-according-doctor-surprise-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:55:33 GMT", + "enclosure": { + "length": "4418", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/29/16/79439865-0-image-a-18_1703867067731.jpg" + }, + "content": "In a pinned TikTok - which has more than 2.5 million views - Dr Caudle, who is from the US, says people are likely to forget to clean are the backs of their ears and their belly button.", + "contentSnippet": "In a pinned TikTok - which has more than 2.5 million views - Dr Caudle, who is from the US, says people are likely to forget to clean are the backs of their ears and their belly button.", + "guid": "https://www.dailymail.co.uk/femail/article-12909655/The-5-body-parts-not-washing-according-doctor-surprise-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:55:33.000Z" + }, + { + "title": "Paul Mitchell's son dead at 53: Angus Mitchell - the only child of legendary late hairstylist - is 'found in swimming pool' at his home in Hawaii", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924345/Paul-Mitchells-son-dead-53-Angus-Mitchell-child-legendary-hairstylist-swimming-pool-home-Hawaii.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:51:36 GMT", + "enclosure": { + "length": "10855", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595739-0-image-a-68_1704327489233.jpg" + }, + "content": "Police sources on Wednesday told TMZ that they were contacted around 6 a.m. Wednesday about a possible drowning.", + "contentSnippet": "Police sources on Wednesday told TMZ that they were contacted around 6 a.m. Wednesday about a possible drowning.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924345/Paul-Mitchells-son-dead-53-Angus-Mitchell-child-legendary-hairstylist-swimming-pool-home-Hawaii.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:51:36.000Z" + }, + { + "title": "Jeffrey Epstein documents show pedophile emailed Ghislaine Maxwell to deny claims Professor Stephen Hawking participated in UNDERAGE ORGY at predator's island", + "link": "https://www.dailymail.co.uk/news/article-12924539/Jeffery-Epstein-documents-Ghislaine-Maxwell-deny-Stephen-Hawking-participated-underage-orgy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:50:10 GMT", + "enclosure": { + "length": "11334", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596139-0-image-a-14_1704329169875.jpg" + }, + "content": "Newly released documents show Jeffery Epstein emailed Ghislaine Maxwell to deny claims Professor Stephen Hawking participated in an underage orgy.", + "contentSnippet": "Newly released documents show Jeffery Epstein emailed Ghislaine Maxwell to deny claims Professor Stephen Hawking participated in an underage orgy.", + "guid": "https://www.dailymail.co.uk/news/article-12924539/Jeffery-Epstein-documents-Ghislaine-Maxwell-deny-Stephen-Hawking-participated-underage-orgy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:50:10.000Z" + }, + { + "title": "Jeffrey Epstein liked to brag about phone calls with A-list movie stars and name-dropped Cate Blanchett while receiving a massage, bombshell court documents claim", + "link": "https://www.dailymail.co.uk/news/article-12925495/Jeffrey-Epstein-Cate-Blanchett.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:43:06 GMT", + "enclosure": { + "length": "9805", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604827-0-image-a-6_1704357403514.jpg" + }, + "content": "Newly released court documents about pedophile monster Jeffrey Epstein reveal he liked to brag about phone calls with some of Hollywood's biggest stars.", + "contentSnippet": "Newly released court documents about pedophile monster Jeffrey Epstein reveal he liked to brag about phone calls with some of Hollywood's biggest stars.", + "guid": "https://www.dailymail.co.uk/news/article-12925495/Jeffrey-Epstein-Cate-Blanchett.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:43:06.000Z" + }, + { + "title": "The dream isn't over for Luke the Nuke: Darts ace, 16, on course to amass '\u00a340million fortune' with flurry of six-figure sponsorship deals despite 7-4 bruising against Luke Humphries - as 'unbelievably proud' family rally around to cheer on PDC runner-up", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12924461/The-dream-isnt-Luke-Nuke-Darts-ace-16-course-amass-40million-fortune-flurry-six-figure-sponsorship-deals-despite-7-4-bruising-against-Luke-Humphries-unbelievably-proud-family-rally-cheer-PDC-runner-up.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:19:54 GMT", + "enclosure": { + "length": "9266", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79595043-0-image-m-26_1704332025114.jpg" + }, + "content": "Marketing experts say the teenage sensation's record-breaking fairytale is only just beginning despite the momentary blip on Wednesday night - and the only direction for his career is up.", + "contentSnippet": "Marketing experts say the teenage sensation's record-breaking fairytale is only just beginning despite the momentary blip on Wednesday night - and the only direction for his career is up.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924461/The-dream-isnt-Luke-Nuke-Darts-ace-16-course-amass-40million-fortune-flurry-six-figure-sponsorship-deals-despite-7-4-bruising-against-Luke-Humphries-unbelievably-proud-family-rally-cheer-PDC-runner-up.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:19:54.000Z" + }, + { + "title": "'Miracle' escape for 'drunk' Irish woman, 19, after leaving French Alps nightclub in T-shirt and shorts and getting lost in a forest in sub-zero temperatures", + "link": "https://www.dailymail.co.uk/news/article-12925453/Miracle-escape-drunk-Irish-woman-19-leaving-French-Alps-nightclub-T-shirt-shorts-getting-lost-forest-sub-zero-temperatures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:18:32 GMT", + "enclosure": { + "length": "8661", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/08/79604177-0-image-m-13_1704356199115.jpg" + }, + "content": "The 19-year-old, who has not been named, had been drinking heavily during a ski holiday in the popular Les Deux Alps resort, police said.", + "contentSnippet": "The 19-year-old, who has not been named, had been drinking heavily during a ski holiday in the popular Les Deux Alps resort, police said.", + "guid": "https://www.dailymail.co.uk/news/article-12925453/Miracle-escape-drunk-Irish-woman-19-leaving-French-Alps-nightclub-T-shirt-shorts-getting-lost-forest-sub-zero-temperatures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:18:32.000Z" + }, + { + "title": "David Beckham says he is 'gutted' as he shows off the devastating mess caused by Storm Henk at his family home in the\u00a0Cotswolds", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923749/David-Beckham-says-gutted-shows-devastating-mess-caused-Storm-Henk-family-home-Cotswolds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:17:56 GMT", + "enclosure": { + "length": "10477", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587665-0-image-m-86_1704313342218.jpg" + }, + "content": "David Beckham confessed he is 'gutted' as he showed the devastation caused by Storm Henk at his family's Cotswolds home on Wednesday.\u00a0", + "contentSnippet": "David Beckham confessed he is 'gutted' as he showed the devastation caused by Storm Henk at his family's Cotswolds home on Wednesday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923749/David-Beckham-says-gutted-shows-devastating-mess-caused-Storm-Henk-family-home-Cotswolds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:17:56.000Z" + }, + { + "title": "Ministers vow Houthi rebels will 'bear the consequences' of attacks on ships in the Red Sea in joint statement with leaders from 11 other countries", + "link": "https://www.dailymail.co.uk/news/article-12924705/Ministers-vow-Houthi-rebels-bear-consequences-attacks-ships-Red-Sea-joint-statement-leaders-11-countries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:13:20 GMT", + "enclosure": { + "length": "7144", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/78067453-0-Pictured_The_Houthi_rebels_approached_the_bridge_of_a_different_-m-192_1704332572266.jpg" + }, + "content": "Since November, the Iranian-backed Houthi rebels has launched numerous attacks on shipping travelling towards the Suez Canal.", + "contentSnippet": "Since November, the Iranian-backed Houthi rebels has launched numerous attacks on shipping travelling towards the Suez Canal.", + "guid": "https://www.dailymail.co.uk/news/article-12924705/Ministers-vow-Houthi-rebels-bear-consequences-attacks-ships-Red-Sea-joint-statement-leaders-11-countries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:13:20.000Z" + }, + { + "title": "Minister calls on boss embroiled in Post Office scandal that saw hundreds of people wrongly prosecuted to give up her CBE", + "link": "https://www.dailymail.co.uk/news/article-12924103/Minister-Post-Office-scandal-CBE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:03:20 GMT", + "enclosure": { + "length": "5397", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590213-0-image-m-42_1704318001350.jpg" + }, + "content": "The former boss of the Post Office Paula Vennells (pictured) should consider returning her CBE over the scandal that saw hundreds of subpostmasters wrongly prosecuted, a Tory minister said today.", + "contentSnippet": "The former boss of the Post Office Paula Vennells (pictured) should consider returning her CBE over the scandal that saw hundreds of subpostmasters wrongly prosecuted, a Tory minister said today.", + "guid": "https://www.dailymail.co.uk/news/article-12924103/Minister-Post-Office-scandal-CBE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:03:20.000Z" + }, + { + "title": "PETER HITCHENS: Our hostility to Iran has only helped keep the ghastly Mullahs in power", + "link": "https://www.dailymail.co.uk/columnists/article-12923515/Peter-Hitchens-Iran-Mullahs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:03:00 GMT", + "enclosure": { + "length": "10230", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79584187-0-image-m-11_1704308061822.jpg" + }, + "content": "Why do we make such a bogeyman out of Iran? What is the British interest in keeping up hostility between us and that country? What good has it done us and is it justified?", + "contentSnippet": "Why do we make such a bogeyman out of Iran? What is the British interest in keeping up hostility between us and that country? What good has it done us and is it justified?", + "guid": "https://www.dailymail.co.uk/columnists/article-12923515/Peter-Hitchens-Iran-Mullahs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:03:00.000Z" + }, + { + "title": "One of Nostradamus' terrifying predictions for 2024 came true just hours into the new year", + "link": "https://www.dailymail.co.uk/femail/article-12923483/Nostradamus-predictions-2024-hours-new-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 08:02:35 GMT", + "enclosure": { + "length": "9174", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79584951-0-image-m-36_1704309538226.jpg" + }, + "content": "It appears 16th-century French philosopher Nostradamus may have predicted the 7.6-magnitude earthquake which rocked Japan on New Year's Day, so far killing 62 people", + "contentSnippet": "It appears 16th-century French philosopher Nostradamus may have predicted the 7.6-magnitude earthquake which rocked Japan on New Year's Day, so far killing 62 people", + "guid": "https://www.dailymail.co.uk/femail/article-12923483/Nostradamus-predictions-2024-hours-new-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T08:02:35.000Z" + }, + { + "title": "Women-only skiing event will host NAKED after-hours lap on chilly Colorado slopes: Event is open to non-binary skiiers and those who are 'female identifying'", + "link": "https://www.dailymail.co.uk/news/article-12924699/women-skiing-colorado-naked-nonbinary-snow-winter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:52:42 GMT", + "enclosure": { + "length": "12352", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/03/79599035-0-image-a-4_1704337576562.jpg" + }, + "content": "This year, the weekend, which will likely include at least 500 women is taking place at Colorado's Sunlight Mountain Resort", + "contentSnippet": "This year, the weekend, which will likely include at least 500 women is taking place at Colorado's Sunlight Mountain Resort", + "guid": "https://www.dailymail.co.uk/news/article-12924699/women-skiing-colorado-naked-nonbinary-snow-winter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:52:42.000Z" + }, + { + "title": "MH370 'breakthrough': Aussie fisherman's claim he pulled Malaysia Airlines plane wing from the Southern Ocean is 'plausible', ex-naval officer claims", + "link": "https://www.dailymail.co.uk/news/article-12924267/MH370-wing-Aussie-fisherman-Kit-Olver-Southern-Ocean.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:50:37 GMT", + "enclosure": { + "length": "6740", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79594949-0-image-m-38_1704326447597.jpg" + }, + "content": "A retired fisherman's claim that his deep-sea trawler pulled up an aeroplane wing from missing Malaysia Airlines flight MH370 is 'plausible', a former naval officer said.", + "contentSnippet": "A retired fisherman's claim that his deep-sea trawler pulled up an aeroplane wing from missing Malaysia Airlines flight MH370 is 'plausible', a former naval officer said.", + "guid": "https://www.dailymail.co.uk/news/article-12924267/MH370-wing-Aussie-fisherman-Kit-Olver-Southern-Ocean.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:50:37.000Z" + }, + { + "title": "I was convinced regaining my figure from ten years ago would make me happier. I was wrong", + "link": "https://www.dailymail.co.uk/femail/article-12923451/About-start-joyless-January-diet-Read-think-twice-convinced-regaining-figure-ten-years-ago-make-happier-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:39:19 GMT", + "enclosure": { + "length": "10256", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79594055-0-image-a-4_1704323981546.jpg" + }, + "content": "UK writer Farrah Storr, former editor of Women's Health Magazine, reveals how she regrets committing to a stringent diet and intense exercise regime at the age of 43 in a bid to shed two stone.", + "contentSnippet": "UK writer Farrah Storr, former editor of Women's Health Magazine, reveals how she regrets committing to a stringent diet and intense exercise regime at the age of 43 in a bid to shed two stone.", + "guid": "https://www.dailymail.co.uk/femail/article-12923451/About-start-joyless-January-diet-Read-think-twice-convinced-regaining-figure-ten-years-ago-make-happier-wrong.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:39:19.000Z" + }, + { + "title": "Billionaire hedge fund manager Glenn Dubin was first person Ghislaine Maxwell told Virginia Roberts Giuffre to have sex with, unsealed Jeffrey Epstein files allege", + "link": "https://www.dailymail.co.uk/news/article-12925235/Billionaire-hedge-fund-manager-Glenn-Dubin-Ghislaine-Maxwell-Virginia-Giuffre-sex-Jeffrey-Epstein.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:31:02 GMT", + "enclosure": { + "length": "10990", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/06/79602613-0-image-a-21_1704350102335.jpg" + }, + "content": "Billionaire hedge fund co-founder Glenn Dubin is allegedly the first person Virginia Giuffre was instructed by Ghislaine Maxwell to haave sex with.", + "contentSnippet": "Billionaire hedge fund co-founder Glenn Dubin is allegedly the first person Virginia Giuffre was instructed by Ghislaine Maxwell to haave sex with.", + "guid": "https://www.dailymail.co.uk/news/article-12925235/Billionaire-hedge-fund-manager-Glenn-Dubin-Ghislaine-Maxwell-Virginia-Giuffre-sex-Jeffrey-Epstein.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:31:02.000Z" + }, + { + "title": "California city prepares to open $15M 'turbo roundabout' to fix deadly intersection - despite national aversion to European road feature", + "link": "https://www.dailymail.co.uk/news/article-12922929/California-city-turbo-roundabout-deadly-intersection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:25:20 GMT", + "enclosure": { + "length": "9493", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/17/79579965-0-image-a-1_1704302266105.jpg" + }, + "content": "The 'turbo roundabout' will replace a dangerous intersection between highways 25 and 156 in San Benito County which sees twice as many collisions as similar crossings in the state.", + "contentSnippet": "The 'turbo roundabout' will replace a dangerous intersection between highways 25 and 156 in San Benito County which sees twice as many collisions as similar crossings in the state.", + "guid": "https://www.dailymail.co.uk/news/article-12922929/California-city-turbo-roundabout-deadly-intersection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:25:20.000Z" + }, + { + "title": "Veteran comedy star Jasper Carrott lined up for TV comeback on Taskmaster by host Alex Horne as he reveals he would be his 'dream guest'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924611/Comedy-legend-lines-Taskmaster-comeback.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:17:44 GMT", + "enclosure": { + "length": "10205", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79596885-0-image-a-198_1704330107006.jpg" + }, + "content": "Jasper Carrott will reportedly make a TV comeback joining BAFTA award-winning series Taskmaster, according to The Sun.", + "contentSnippet": "Jasper Carrott will reportedly make a TV comeback joining BAFTA award-winning series Taskmaster, according to The Sun.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924611/Comedy-legend-lines-Taskmaster-comeback.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:17:44.000Z" + }, + { + "title": "Elton John 'made \u00a3118,600 A DAY during his five-year\u00a0Yellow Brick Road Tour' - after it was revealed he failed to pay Gary Lineker his debt", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924619/Elton-John-earned-118-600-DAILY-Yellow-Brick-Road-Tour.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:17:05 GMT", + "enclosure": { + "length": "11051", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79597609-0-image-a-75_1704331960036.jpg" + }, + "content": "Sir Elton John is said to have made a whopping \u00a3118,600 a day while performing on his Yellow Brick Road Tour which continued for five years.", + "contentSnippet": "Sir Elton John is said to have made a whopping \u00a3118,600 a day while performing on his Yellow Brick Road Tour which continued for five years.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924619/Elton-John-earned-118-600-DAILY-Yellow-Brick-Road-Tour.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:17:05.000Z" + }, + { + "title": "Extraordinary before and after photos show just how much Bianca Censori has changed since she married Kanye West as fans say she now looks more like Kim Kardashian than the reality star herself: 'He's clearly not over Kim'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924177/Extraordinary-photos-just-Bianca-Censori-changed-married-Kanye-West-fans-say-looks-like-Kim-Kardashian-reality-star-Hes-clearly-not-Kim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:16:37 GMT", + "enclosure": { + "length": "8672", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79593847-0-image-a-100_1704323383775.jpg" + }, + "content": "Bianca Censori has undergone quite the transformation since her wedding to rapper Kanye West one year ago.", + "contentSnippet": "Bianca Censori has undergone quite the transformation since her wedding to rapper Kanye West one year ago.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924177/Extraordinary-photos-just-Bianca-Censori-changed-married-Kanye-West-fans-say-looks-like-Kim-Kardashian-reality-star-Hes-clearly-not-Kim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:16:37.000Z" + }, + { + "title": "Prince Andrew grope accuser Johanna Sjoberg claims she knew Virginia Roberts was underage during 2001 trip to Epstein's NY mansion 'where royal had sex with her', court papers claim", + "link": "https://www.dailymail.co.uk/news/article-12924745/prince-andrew-johanna-sjoberg-accuser-jeffrey-epstein-lists-ghislaine-maxwell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:15:40 GMT", + "enclosure": { + "length": "10757", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/03/79599707-0-image-a-57_1704339505851.jpg" + }, + "content": "Johanna Sjoberg said she was recruited by Ghislaine Maxwell in 2001, when she was 20. She said they went to Jeffrey Epstein's Manhattan mansion with Virginia Roberts and Prince Andrew.", + "contentSnippet": "Johanna Sjoberg said she was recruited by Ghislaine Maxwell in 2001, when she was 20. She said they went to Jeffrey Epstein's Manhattan mansion with Virginia Roberts and Prince Andrew.", + "guid": "https://www.dailymail.co.uk/news/article-12924745/prince-andrew-johanna-sjoberg-accuser-jeffrey-epstein-lists-ghislaine-maxwell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:15:40.000Z" + }, + { + "title": "Jeffrey Epstein 'victim' Johanna Sjoberg denies MASSAGING Donald Trump and reveals how predator financier boasted of being able to call former president before trip to his casino, court papers claim", + "link": "https://www.dailymail.co.uk/news/article-12924669/Jeffrey-Epstein-Johanna-Sjoberg-Trump-massage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 07:05:07 GMT", + "enclosure": { + "length": "10813", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/02/79598119-0-image-a-17_1704333671284.jpg" + }, + "content": "One of Jeffrey Epstein's alleged victims who claimed Prince Andrew groped her breast with a puppet said in newly unsealed depositions she never massaged Donald Trump.", + "contentSnippet": "One of Jeffrey Epstein's alleged victims who claimed Prince Andrew groped her breast with a puppet said in newly unsealed depositions she never massaged Donald Trump.", + "guid": "https://www.dailymail.co.uk/news/article-12924669/Jeffrey-Epstein-Johanna-Sjoberg-Trump-massage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T07:05:07.000Z" + }, + { + "title": "Getting divorced? Here's how to make a clean and fair financial break", + "link": "https://www.dailymail.co.uk/money/bills/article-12922827/Getting-divorced-clean-fair-financial-break.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 06:01:02 GMT", + "enclosure": { + "length": "6156", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/14/79567701-0-image-a-10_1704293524078.jpg" + }, + "content": "The first Monday falling on a working day in\u00a0the new calendar year is dubbed Divorce Day because so many people choose then to start the formalities. This year, it falls next Monday, on 8 January.", + "contentSnippet": "The first Monday falling on a working day in\u00a0the new calendar year is dubbed Divorce Day because so many people choose then to start the formalities. This year, it falls next Monday, on 8 January.", + "guid": "https://www.dailymail.co.uk/money/bills/article-12922827/Getting-divorced-clean-fair-financial-break.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T06:01:02.000Z" + }, + { + "title": "Log burners could cut heating bills by up to \u00a3128 a year, report finds", + "link": "https://www.dailymail.co.uk/money/bills/article-12922879/Log-burners-cut-heating-bills-128-year-report-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 06:00:59 GMT", + "enclosure": { + "length": "7502", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/15/79576413-0-image-m-35_1704296007959.jpg" + }, + "content": "Using a stove to burn wood or smokeless fuel can knock off \u00a392 or \u00a3128 a year respectively off the cost of heating, a new report finds.", + "contentSnippet": "Using a stove to burn wood or smokeless fuel can knock off \u00a392 or \u00a3128 a year respectively off the cost of heating, a new report finds.", + "guid": "https://www.dailymail.co.uk/money/bills/article-12922879/Log-burners-cut-heating-bills-128-year-report-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T06:00:59.000Z" + }, + { + "title": "Brexit customs charges, UPS and Packlink made selling Star Wars toy an epic drama: CRANE ON THE CASE", + "link": "https://www.dailymail.co.uk/money/bills/article-12922167/Brexit-customs-charges-UPS-Packlink-selling-Star-Wars-toy-epic-drama-CRANE-CASE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 06:00:49 GMT", + "enclosure": { + "length": "10647", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/14/79574429-0-image-a-9_1704293063680.jpg" + }, + "content": "I sold the rare collectable to a buyer in Spain for \u00a32,000 - but a mix-up meant it was returned to me and now UPS says I am on the hook for the \u00a3500 customs charges.", + "contentSnippet": "I sold the rare collectable to a buyer in Spain for \u00a32,000 - but a mix-up meant it was returned to me and now UPS says I am on the hook for the \u00a3500 customs charges.", + "guid": "https://www.dailymail.co.uk/money/bills/article-12922167/Brexit-customs-charges-UPS-Packlink-selling-Star-Wars-toy-epic-drama-CRANE-CASE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T06:00:49.000Z" + }, + { + "title": "Should I fix my mortgage for two or five years? More Britons now take shorter option", + "link": "https://www.dailymail.co.uk/money/mortgageshome/article-12919865/Should-fix-mortgage-two-five-years-Britons-shorter-option.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 06:00:46 GMT", + "enclosure": { + "length": "5736", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/02/18/79543601-0-image-m-13_1704219086284.jpg" + }, + "content": "Those buying or remortgaging this year face the question of how long to fix their mortgage deal for. We look at why the preference has shifted from five years to two.", + "contentSnippet": "Those buying or remortgaging this year face the question of how long to fix their mortgage deal for. We look at why the preference has shifted from five years to two.", + "guid": "https://www.dailymail.co.uk/money/mortgageshome/article-12919865/Should-fix-mortgage-two-five-years-Britons-shorter-option.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T06:00:46.000Z" + }, + { + "title": "Jeffrey Epstein was visited by MICHAEL JACKSON at his Palm Beach home, bombshell court documents claim - but 'victim' Johanna Sjoberg says she didn't massage late King of Pop", + "link": "https://www.dailymail.co.uk/news/article-12925009/Jeffrey-Epstein-Michael-Jackson-Palm-Beach.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 05:26:45 GMT", + "enclosure": { + "length": "12993", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/04/79600409-0-image-a-51_1704342594198.jpg" + }, + "content": "Johanna Sjoberg, who claimed Prince Andrew groped her breast with a puppet, said in newly unsealed depositions that she met Michael Jackson when she was with Jeffrey Epstein.", + "contentSnippet": "Johanna Sjoberg, who claimed Prince Andrew groped her breast with a puppet, said in newly unsealed depositions that she met Michael Jackson when she was with Jeffrey Epstein.", + "guid": "https://www.dailymail.co.uk/news/article-12925009/Jeffrey-Epstein-Michael-Jackson-Palm-Beach.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T05:26:45.000Z" + }, + { + "title": "I don't like my 'fat' bridesmaid - so I chose a revealing dress to make her drop out of the wedding", + "link": "https://www.dailymail.co.uk/femail/real-life/article-12924977/Reddit-bride-chose-revealing-dress-fat-bridesmaid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 05:26:14 GMT", + "enclosure": { + "length": "6497", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/05/79600225-0-image-m-29_1704345808058.jpg" + }, + "content": "The bride explained shopping for dresses has been a 'nightmare' because of her bridesmaid's self-doubt and body image issues.", + "contentSnippet": "The bride explained shopping for dresses has been a 'nightmare' because of her bridesmaid's self-doubt and body image issues.", + "guid": "https://www.dailymail.co.uk/femail/real-life/article-12924977/Reddit-bride-chose-revealing-dress-fat-bridesmaid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T05:26:14.000Z" + }, + { + "title": "How I found inner calm... by smashing up an entire room with a baseball bat! Forget mindfulness. Overwrought women are venting their anger in Britain's new Rage Rooms", + "link": "https://www.dailymail.co.uk/femail/article-12923497/How-inner-calm-smashing-entire-room-baseball-bat-Forget-mindfulness-Overwrought-women-venting-anger-Britains-new-Rage-Rooms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 04:56:37 GMT", + "enclosure": { + "length": "11746", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79592019-0-image-a-4_1704320393218.jpg" + }, + "content": "Finding herself seething about all the domestic chores and parental admin that fall to her, UK writer Antonia Hoyle wondered if a rage room - where you can smash objects of your choosing - might help.", + "contentSnippet": "Finding herself seething about all the domestic chores and parental admin that fall to her, UK writer Antonia Hoyle wondered if a rage room - where you can smash objects of your choosing - might help.", + "guid": "https://www.dailymail.co.uk/femail/article-12923497/How-inner-calm-smashing-entire-room-baseball-bat-Forget-mindfulness-Overwrought-women-venting-anger-Britains-new-Rage-Rooms.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T04:56:37.000Z" + }, + { + "title": "Luke Littler: The kebab-loving 'Ronaldo of darts' still in nappies when he started playing... After he comes agonisingly close to winning the World Darts Championship aged just 16", + "link": "https://www.dailymail.co.uk/news/article-12924307/Luke-Littler-Ronaldo-darts-winning-World-Darts-Championship-16.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 04:54:37 GMT", + "enclosure": { + "length": "7567", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593239-0-image-a-69_1704321923789.jpg" + }, + "content": "At six, he threw his first 180. By the time he was nine, he was smashing the under-14s. And aged 13, he did his first nine-dart finish (from a score of 501) and was good enough to win men's tournaments.", + "contentSnippet": "At six, he threw his first 180. By the time he was nine, he was smashing the under-14s. And aged 13, he did his first nine-dart finish (from a score of 501) and was good enough to win men's tournaments.", + "guid": "https://www.dailymail.co.uk/news/article-12924307/Luke-Littler-Ronaldo-darts-winning-World-Darts-Championship-16.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T04:54:37.000Z" + }, + { + "title": "Historic 1900s Texas home nicknamed the White House is destroyed in huge blaze", + "link": "https://www.dailymail.co.uk/news/article-12924529/Historic-1900s-Dallas-home-nicknamed-White-House-destroyed-huge-blaze.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 04:06:28 GMT", + "enclosure": { + "length": "10173", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/02/79598033-0-image-a-10_1704333804941.jpg" + }, + "content": "A historic home in Texas nicknamed the White House was tragically destroyed in an intense fire.", + "contentSnippet": "A historic home in Texas nicknamed the White House was tragically destroyed in an intense fire.", + "guid": "https://www.dailymail.co.uk/news/article-12924529/Historic-1900s-Dallas-home-nicknamed-White-House-destroyed-huge-blaze.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T04:06:28.000Z" + }, + { + "title": "How Princess Mary's teen son Christian's role is about to drastically change - despite him controversially 'delaying duties' when he turned 18", + "link": "https://www.dailymail.co.uk/femail/princess-mary-of-denmark/article-12924751/Princess-Marys-oldest-son-Prince-Christian-new-role-title-Queen-Margrethe-abdication-Denmark-royal-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 03:58:13 GMT", + "enclosure": { + "length": "11628", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/03/79599065-0-image-a-62_1704339125122.jpg" + }, + "content": "Prince Frederik and Princess Mary's eldest son Christian will be given a new title and duties after his father becomes king despite announcing he would delay his royal responsibilities in 2023.", + "contentSnippet": "Prince Frederik and Princess Mary's eldest son Christian will be given a new title and duties after his father becomes king despite announcing he would delay his royal responsibilities in 2023.", + "guid": "https://www.dailymail.co.uk/femail/princess-mary-of-denmark/article-12924751/Princess-Marys-oldest-son-Prince-Christian-new-role-title-Queen-Margrethe-abdication-Denmark-royal-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T03:58:13.000Z" + }, + { + "title": "EDEN CONFIDENTIAL: Panto shock for Chipping Norton set after one of the ugly stepsisters in Cinderella is touched inappropriately", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923905/Panto-Chipping-Norton-ugly-stepsisters-Cinderella.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 03:52:52 GMT", + "enclosure": { + "length": "13349", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79588443-0-image-a-49_1704315234171.jpg" + }, + "content": "EDEN CONFIDENTIAL: Cast members of Cinderella have been left upset after one of the ugly sisters, played by an actress, is said to have been touched 'inappropriately'.", + "contentSnippet": "EDEN CONFIDENTIAL: Cast members of Cinderella have been left upset after one of the ugly sisters, played by an actress, is said to have been touched 'inappropriately'.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923905/Panto-Chipping-Norton-ugly-stepsisters-Cinderella.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T03:52:52.000Z" + }, + { + "title": "Sun's strongest explosion of energy in six years 'is stuck in traffic': Physicist reveals weak solar winds are causing the delay - but says some marine radios and Starlink satellites have been disrupted", + "link": "https://www.dailymail.co.uk/sciencetech/article-12924123/Suns-strongest-explosion-energy-six-years-delayed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 03:29:51 GMT", + "enclosure": { + "length": "4884", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79594807-0-image-a-10_1704326653683.jpg" + }, + "content": "A space weather physicist has kept a watchful eye on the energy that erupted from the sun on New Years. The storm was set to hit Earth on Tuesday, but the expert revealed it is 'stuck in traffic.'", + "contentSnippet": "A space weather physicist has kept a watchful eye on the energy that erupted from the sun on New Years. The storm was set to hit Earth on Tuesday, but the expert revealed it is 'stuck in traffic.'", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12924123/Suns-strongest-explosion-energy-six-years-delayed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T03:29:51.000Z" + }, + { + "title": "Luke Littler's girlfriend Eloise Milburn, 21, looks tearful as 16-year-old agonisingly loses the World Darts Championship final against Luke Humphries at Ally Pally after capturing the nation's hearts", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12924317/Luke-Littlers-Eloise-Milburn-World-Darts-Championship-Luke-Humphries-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 03:10:59 GMT", + "enclosure": { + "length": "9795", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79593893-0-image-a-50_1704323523093.jpg" + }, + "content": "Eloise Milburn, 21, is an avid darts player herself and was crestfallen that her boyfriend's dreams of glory had been crushed for now.", + "contentSnippet": "Eloise Milburn, 21, is an avid darts player herself and was crestfallen that her boyfriend's dreams of glory had been crushed for now.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924317/Luke-Littlers-Eloise-Milburn-World-Darts-Championship-Luke-Humphries-Ally-Pally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T03:10:59.000Z" + }, + { + "title": "'This movie will be Disney's biggest flop yet': Star Wars fans say female-led next installment is destined to fail after 2015 comments from feminist director saying her goal 'is to make men uncomfortable'", + "link": "https://www.dailymail.co.uk/news/article-12924179/This-movie-Disneys-biggest-flop-Star-Wars-fans-say-female-led-installment-destined-fail-2015-comments-feminist-director-saying-goal-make-men-uncomfortable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 02:55:42 GMT", + "enclosure": { + "length": "9664", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79593319-0-image-a-8_1704326511670.jpg" + }, + "content": "Star Wars fans and conservatives have jumped on comments by the direct of a new female-led film in the franchise, leading them to believe it will be another ' woke ' flop from Disney.", + "contentSnippet": "Star Wars fans and conservatives have jumped on comments by the direct of a new female-led film in the franchise, leading them to believe it will be another ' woke ' flop from Disney.", + "guid": "https://www.dailymail.co.uk/news/article-12924179/This-movie-Disneys-biggest-flop-Star-Wars-fans-say-female-led-installment-destined-fail-2015-comments-feminist-director-saying-goal-make-men-uncomfortable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T02:55:42.000Z" + }, + { + "title": "This is the best thing I bought for my home in 2023: 'You won't regret it'", + "link": "https://www.dailymail.co.uk/femail/real-life/article-12924621/best-purchase-homewares-gadgets-2023-Australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 02:53:47 GMT", + "enclosure": { + "length": "10674", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/02/79597949-0-image-a-38_1704334859944.jpg" + }, + "content": "Australians have revealed the one thing they don't regret buying for their home in 2023.", + "contentSnippet": "Australians have revealed the one thing they don't regret buying for their home in 2023.", + "guid": "https://www.dailymail.co.uk/femail/real-life/article-12924621/best-purchase-homewares-gadgets-2023-Australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T02:53:47.000Z" + }, + { + "title": "Ghislaine Maxwell refuses to say whether Jeffrey Epstein liked her to pinch his nipples and says its a 'tricky question' when asked if she was ever pedophile's girlfriend", + "link": "https://www.dailymail.co.uk/news/article-12924581/ghislaine-maxwell-jeffrey-epstein-nipples-girlfriend-documents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 02:44:24 GMT", + "enclosure": { + "length": "6599", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595795-0-The_list_includes_a_host_of_Epstein_associates_previously_identi-a-5_1704328332154.jpg" + }, + "content": "Jeffrey Epstein's infamous right-hand woman Ghislaine Maxwell hedged on details about Epstein's sexual proclivities and whether or not he was his girlfriend in newly unsealed documents.", + "contentSnippet": "Jeffrey Epstein's infamous right-hand woman Ghislaine Maxwell hedged on details about Epstein's sexual proclivities and whether or not he was his girlfriend in newly unsealed documents.", + "guid": "https://www.dailymail.co.uk/news/article-12924581/ghislaine-maxwell-jeffrey-epstein-nipples-girlfriend-documents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T02:44:24.000Z" + }, + { + "title": "The Traitors viewers fume as host Claudia Winkleman ends first episode with HUGE cliffhanger as they show kicks off with several shock twists", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924231/The-Traitors-Claudia-Winkleman-ends-episode-HUGE-cliffhanger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 02:27:38 GMT", + "enclosure": { + "length": "9857", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593289-0-image-m-113_1704322112057.jpg" + }, + "content": "BBC 's hotly-anticipated series The Traitors returned to screens on Wednesday night with Claudia Winkleman as host again.", + "contentSnippet": "BBC 's hotly-anticipated series The Traitors returned to screens on Wednesday night with Claudia Winkleman as host again.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924231/The-Traitors-Claudia-Winkleman-ends-episode-HUGE-cliffhanger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T02:27:38.000Z" + }, + { + "title": "Former Labour MP Dame Joan Ruddock makes the tragic admission she wanted to smother her terminally ill husband with a pillow to put him out of his pain as she gives a passionate plea for the legislation of assisted dying", + "link": "https://www.dailymail.co.uk/news/article-12924663/Former-Labour-MP-Dame-Joan-Ruddock-makes-tragic-admission-wanted-smother-terminally-ill-husband-pillow-pain-gives-passionate-plea-legislation-assisted-dying.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 02:21:31 GMT", + "enclosure": { + "length": "8586", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79597883-0-image-m-88_1704332867231.jpg" + }, + "content": "In a submission to MPs, she said her husband had been suffering from end-stage bowel cancer in 2017 but she struggled to get him pain-relieving medication in the hours before he died.", + "contentSnippet": "In a submission to MPs, she said her husband had been suffering from end-stage bowel cancer in 2017 but she struggled to get him pain-relieving medication in the hours before he died.", + "guid": "https://www.dailymail.co.uk/news/article-12924663/Former-Labour-MP-Dame-Joan-Ruddock-makes-tragic-admission-wanted-smother-terminally-ill-husband-pillow-pain-gives-passionate-plea-legislation-assisted-dying.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T02:21:31.000Z" + }, + { + "title": "Woman, 37, found dead at a home inside house Waterlooville - as grieving family pay tribute to a 'special daughter, auntie and sister'", + "link": "https://www.dailymail.co.uk/news/article-12924643/Woman-37-dead-home-inside-house-Waterlooville-grieving-family-pay-tribute-special-daughter-auntie-sister.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:59:18 GMT", + "enclosure": { + "length": "6151", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79588745-0-image-a-26_1704330222722.jpg" + }, + "content": "Hampshire Police arrested a man on suspicion of murder after Joanna Derkacz was found inside a house on Nevinson Way at 11.30am on Thursday, December 28.", + "contentSnippet": "Hampshire Police arrested a man on suspicion of murder after Joanna Derkacz was found inside a house on Nevinson Way at 11.30am on Thursday, December 28.", + "guid": "https://www.dailymail.co.uk/news/article-12924643/Woman-37-dead-home-inside-house-Waterlooville-grieving-family-pay-tribute-special-daughter-auntie-sister.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:59:18.000Z" + }, + { + "title": "AMANDA PLATELL: Labour's plan for menopausal women in the workplace will make people LESS likely to employ those of a certain age", + "link": "https://www.dailymail.co.uk/debate/article-12924587/Labour-plan-menopausal-women-workplace-employ-certain-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:56:40 GMT", + "enclosure": { + "length": "8392", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596605-0-image-a-67_1704329720632.jpg" + }, + "content": "The idea of 'meno-leave' becoming law, of menopause action plans and officers being employed to police the treatment of us poor dears over the age 40 is horrifying.", + "contentSnippet": "The idea of 'meno-leave' becoming law, of menopause action plans and officers being employed to police the treatment of us poor dears over the age 40 is horrifying.", + "guid": "https://www.dailymail.co.uk/debate/article-12924587/Labour-plan-menopausal-women-workplace-employ-certain-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:56:40.000Z" + }, + { + "title": "'Catholic Eton' Ampleforth College vows not to pass on Labour's proposed fees tax hike to parents", + "link": "https://www.dailymail.co.uk/news/article-12924133/Catholic-Eton-Ampleforth-College-vows-not-pass-Labours-proposed-fees-tax-hike-parents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:55:34 GMT", + "enclosure": { + "length": "7139", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/41967746-0-image-m-12_1704319798139.jpg" + }, + "content": "The headmaster, Peter Roberts, said 222-year-old Ampleforth College would do everything it could to absorb the costs of the party's plan to charge 20 per cent VAT on fees.", + "contentSnippet": "The headmaster, Peter Roberts, said 222-year-old Ampleforth College would do everything it could to absorb the costs of the party's plan to charge 20 per cent VAT on fees.", + "guid": "https://www.dailymail.co.uk/news/article-12924133/Catholic-Eton-Ampleforth-College-vows-not-pass-Labours-proposed-fees-tax-hike-parents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:55:34.000Z" + }, + { + "title": "Alec Baldwin emerges with wife Hilaria and three of their SEVEN children as promo trail begins for Rust with first-look images taken by Halyna Hutchins", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924439/Alec-Baldwin-emerges-wife-Hilaria-children.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:39:01 GMT", + "enclosure": { + "length": "10655", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595933-0-image-a-13_1704327907387.jpg" + }, + "content": "They have welcomed seven children into the world together - Carmen, 10, Rafael, eight, Leonardo, seven, Romeo, five, Edu, three, Lucia Victoria, two, and Ilaria, one.", + "contentSnippet": "They have welcomed seven children into the world together - Carmen, 10, Rafael, eight, Leonardo, seven, Romeo, five, Edu, three, Lucia Victoria, two, and Ilaria, one.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924439/Alec-Baldwin-emerges-wife-Hilaria-children.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:39:01.000Z" + }, + { + "title": "Superfan of 70s sitcom On The Buses, 26, shuns woke jokes for classic comedy as he assembles the UK's biggest collection of the show's memorabilia", + "link": "https://www.dailymail.co.uk/news/article-12924561/Superfan-70s-sitcom-Buses-26-shuns-woke-jokes-classic-comedy-assembles-UKs-biggest-collection-shows-memorabilia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:29:11 GMT", + "enclosure": { + "length": "12741", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596121-0-image-a-2_1704328392865.jpg" + }, + "content": "George Darlow, who was born more than two decades after On The Buses ended in 1973, became fascinated by the show as a child.", + "contentSnippet": "George Darlow, who was born more than two decades after On The Buses ended in 1973, became fascinated by the show as a child.", + "guid": "https://www.dailymail.co.uk/news/article-12924561/Superfan-70s-sitcom-Buses-26-shuns-woke-jokes-classic-comedy-assembles-UKs-biggest-collection-shows-memorabilia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:29:11.000Z" + }, + { + "title": "Lib Dems refuse to rule out an election deal with Labour in the event of a hung parliament - as Tories warn a coalition between the two could see the Brexit vote unpicked", + "link": "https://www.dailymail.co.uk/news/article-12924547/Lib-Dems-refuse-rule-election-deal-Labour-event-hung-parliament-Tories-warn-coalition-two-Brexit-vote-unpicked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:22:48 GMT", + "enclosure": { + "length": "7922", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79597165-0-image-m-69_1704330706055.jpg" + }, + "content": "Liberal Democrat leader Sir Ed Davey refused to rule out the two parties forming a coalition, which the Tories warned could see the Brexit vote unpicked.", + "contentSnippet": "Liberal Democrat leader Sir Ed Davey refused to rule out the two parties forming a coalition, which the Tories warned could see the Brexit vote unpicked.", + "guid": "https://www.dailymail.co.uk/news/article-12924547/Lib-Dems-refuse-rule-election-deal-Labour-event-hung-parliament-Tories-warn-coalition-two-Brexit-vote-unpicked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:22:48.000Z" + }, + { + "title": "Truelove review: Timely assisted dying drama that leaves one question unanswered, writes CHRISTOPHER STEVENS", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12923799/Truelove-review-Timely-assisted-dying-drama-leaves-one-question-unanswered-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:21:56 GMT", + "enclosure": { + "length": "10264", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/01/79587413-0-image-a-24_1704330885399.jpg" + }, + "content": "CHRISTOPHER STEVENS: Lying in a hospital bed after a failed attempt to hang himself, and riddled with cancer , old Tom (Karl Johnson) summed up the bitter irony of his predicament.", + "contentSnippet": "CHRISTOPHER STEVENS: Lying in a hospital bed after a failed attempt to hang himself, and riddled with cancer , old Tom (Karl Johnson) summed up the bitter irony of his predicament.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12923799/Truelove-review-Timely-assisted-dying-drama-leaves-one-question-unanswered-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:21:56.000Z" + }, + { + "title": "New Year mortgage price war could boost Tory poll hopes by taking pressure off household finances as HSBC becomes the first major bank to offer fixed-rate deals under 4%", + "link": "https://www.dailymail.co.uk/news/article-12924565/New-Year-mortgage-price-war-boosts-Tory-poll-hopes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:17:32 GMT", + "enclosure": { + "length": "10546", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596027-0-image-a-56_1704328184329.jpg" + }, + "content": "Rishi Sunak hits the road today to drive home his pledge to put more money in people's pockets with a National Insurance cut starting on Saturday.", + "contentSnippet": "Rishi Sunak hits the road today to drive home his pledge to put more money in people's pockets with a National Insurance cut starting on Saturday.", + "guid": "https://www.dailymail.co.uk/news/article-12924565/New-Year-mortgage-price-war-boosts-Tory-poll-hopes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:17:32.000Z" + }, + { + "title": "Reform vows to fight for EVERY seat as defiant leader Richard Tice rules out an election pact with the Conservatives despite fears the right-wing vote could be split", + "link": "https://www.dailymail.co.uk/news/article-12924255/Reform-vows-fight-seat-defiant-leader-Richard-Tice-rules-election-pact-Conservatives-despite-fears-right-wing-vote-split.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:15:54 GMT", + "enclosure": { + "length": "9868", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593235-0-image-a-39_1704321920011.jpg" + }, + "content": "Reform's leader Richard Tice used a press conference yesterday to warn of an economic crisis under Labour, which he branded 'Starmergeddon', and vowed to stand candidates in every seat.", + "contentSnippet": "Reform's leader Richard Tice used a press conference yesterday to warn of an economic crisis under Labour, which he branded 'Starmergeddon', and vowed to stand candidates in every seat.", + "guid": "https://www.dailymail.co.uk/news/article-12924255/Reform-vows-fight-seat-defiant-leader-Richard-Tice-rules-election-pact-Conservatives-despite-fears-right-wing-vote-split.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:15:54.000Z" + }, + { + "title": "ROBERT HARDMAN: It was one hell of a fight from Luke Littler, but there was to be no fairy tale ending for the 16-year-old boy wonder at the World Darts final", + "link": "https://www.dailymail.co.uk/debate/article-12924389/ROBERT-HARDMAN-one-hell-fight-Luke-Littler-no-fairy-tale-ending-16-year-old-boy-wonder-World-Darts-final.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:14:16 GMT", + "enclosure": { + "length": "4355", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79594329-0-image-a-7_1704325173797.jpg" + }, + "content": "ROBERT HARDMAN: In the battle of the two Lukes, it was Luke the Nuke, the irrepressibly cheerful debutant, who was edged out by the clinical throwing of aptly named 'Cool Hand' Luke Humphries.", + "contentSnippet": "ROBERT HARDMAN: In the battle of the two Lukes, it was Luke the Nuke, the irrepressibly cheerful debutant, who was edged out by the clinical throwing of aptly named 'Cool Hand' Luke Humphries.", + "guid": "https://www.dailymail.co.uk/debate/article-12924389/ROBERT-HARDMAN-one-hell-fight-Luke-Littler-no-fairy-tale-ending-16-year-old-boy-wonder-World-Darts-final.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:14:16.000Z" + }, + { + "title": "Jack Grealish burglary gang 'tried to raid his mansion a month before \u00a31m attack but were scared off by police' after he broke silence following the 'traumatic' incident", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924481/Jack-Grealish-burglary-gang-tried-raid-mansion-month-prior-attack.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 01:05:24 GMT", + "enclosure": { + "length": "10191", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79596331-0-image-a-122_1704329142496.jpg" + }, + "content": "Jack Grealish's mansion was raided\u00a0for \u00a31million worth of jewellery by thieves on Boxing Day in Cheshire.", + "contentSnippet": "Jack Grealish's mansion was raided\u00a0for \u00a31million worth of jewellery by thieves on Boxing Day in Cheshire.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924481/Jack-Grealish-burglary-gang-tried-raid-mansion-month-prior-attack.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T01:05:24.000Z" + }, + { + "title": "Luke Littler vows to 'come back and win it' after his extraordinary run at World Darts Championship ends in defeat against Luke Humphries... but teenage darts sensation admits he may not be in another final for 'five or 10 years'", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12923173/Luke-Littler-PDC-World-championship-darts-Luke-Humphries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:54:19 GMT", + "enclosure": { + "length": "10317", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595565-0-image-a-17_1704326832445.jpg" + }, + "content": "Luke Littler\u00a0has vowed to go one better at the PDC World Championship after losing to Luke Humphries in the final at Alexandra Palace.", + "contentSnippet": "Luke Littler\u00a0has vowed to go one better at the PDC World Championship after losing to Luke Humphries in the final at Alexandra Palace.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12923173/Luke-Littler-PDC-World-championship-darts-Luke-Humphries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:54:19.000Z" + }, + { + "title": "Jeffrey Epstein's brother said if the pedophile had revealed what he knew about Trump and Clinton in 2016 the 'election would have to be canceled'", + "link": "https://www.dailymail.co.uk/news/article-12924305/jeffrey-epstein-bill-clinton-donald-trump-2016-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:36:44 GMT", + "enclosure": { + "length": "9140", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79594215-0-image-a-21_1704324835320.jpg" + }, + "content": "Mark Epstein, Jeffrey Epstein's brother, claimed that Jeffrey told him in 2016 he had explosive information which would derail the election. He did not provide details.", + "contentSnippet": "Mark Epstein, Jeffrey Epstein's brother, claimed that Jeffrey told him in 2016 he had explosive information which would derail the election. He did not provide details.", + "guid": "https://www.dailymail.co.uk/news/article-12924305/jeffrey-epstein-bill-clinton-donald-trump-2016-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:36:44.000Z" + }, + { + "title": "The celebrity mums who are cleaning up with baby bath ranges", + "link": "https://www.dailymail.co.uk/femail/article-12923491/The-celebrity-mums-cleaning-baby-bath-ranges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:34:45 GMT", + "enclosure": { + "length": "11276", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590689-0-image-a-19_1704318127285.jpg" + }, + "content": "With the help of her three young children, Lucy Tobin put the baby bath ranges from Kylie Jenner, Emma Bunton and Rochelle Humes, plus those by US actresses Kristen Bell and Jessica Alba, to the test.", + "contentSnippet": "With the help of her three young children, Lucy Tobin put the baby bath ranges from Kylie Jenner, Emma Bunton and Rochelle Humes, plus those by US actresses Kristen Bell and Jessica Alba, to the test.", + "guid": "https://www.dailymail.co.uk/femail/article-12923491/The-celebrity-mums-cleaning-baby-bath-ranges.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:34:45.000Z" + }, + { + "title": "Elvis Presley is back in the building as an AI holograph of The King is set for the stage in Britain - following the success of ABBA's digital avatars", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924209/Elvis-Presley-building-AI-holograph-King-set-stage-Britain-following-success-ABBAs-digital-avatars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:31:53 GMT", + "enclosure": { + "length": "9532", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79591361-0-image-a-71_1704319515062.jpg" + }, + "content": "Using artificial intelligence and holographic projection, Elvis Evolution plans to take audiences through every step of The King's life and career complete with a life-sized digital performing Elvis.", + "contentSnippet": "Using artificial intelligence and holographic projection, Elvis Evolution plans to take audiences through every step of The King's life and career complete with a life-sized digital performing Elvis.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924209/Elvis-Presley-building-AI-holograph-King-set-stage-Britain-following-success-ABBAs-digital-avatars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:31:53.000Z" + }, + { + "title": "Olympic rugby player Ilona Maher, 27, is praised for candidly revealing her CELLULITE to prove that 'everyone has it' no matter how 'fit or athletic' they are", + "link": "https://www.dailymail.co.uk/femail/article-12923233/Olympian-Ilona-Maher-praise-cellulite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:22:05 GMT", + "enclosure": { + "length": "10739", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79583353-0-image-a-22_1704306362716.jpg" + }, + "content": "The 27-year-old athlete, who was first thrust into the spotlight when she made her Team USA debut in\u00a02018, took to TikTok to address the fraught issue of body image, specifically that of her visible cellulite.", + "contentSnippet": "The 27-year-old athlete, who was first thrust into the spotlight when she made her Team USA debut in\u00a02018, took to TikTok to address the fraught issue of body image, specifically that of her visible cellulite.", + "guid": "https://www.dailymail.co.uk/femail/article-12923233/Olympian-Ilona-Maher-praise-cellulite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:22:05.000Z" + }, + { + "title": "KIERAN GILL: Ale flows as smoothly as the big scores in beer-drenched fever dream... Luke Humphries and Luke Littler put on a show as fancy dress-wearing punters were once again treated at this unique sporting event", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12924049/Luke-Littler-Luke-Humphries-fever-dream.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:08:20 GMT", + "enclosure": { + "length": "13260", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/00/79595283-0-image-a-80_1704326422909.jpg" + }, + "content": "KIERAN GILL AT ALEXANDRA PALACE: Littler's position as the fan-favourite ahead of Humphries was laid bare during the walk-ons - cheers for 'the Nuke', jeers for 'Cool Hand'.", + "contentSnippet": "KIERAN GILL AT ALEXANDRA PALACE: Littler's position as the fan-favourite ahead of Humphries was laid bare during the walk-ons - cheers for 'the Nuke', jeers for 'Cool Hand'.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924049/Luke-Littler-Luke-Humphries-fever-dream.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:08:20.000Z" + }, + { + "title": "SNP plan 'tax on shopping'. Backlash as ministers consider new levy on supermarkets - amid fears costs will be passed on to customers", + "link": "https://www.dailymail.co.uk/news/article-12923965/SNP-plan-tax-shopping-Backlash-ministers-consider-new-levy-supermarkets-amid-fears-costs-passed-customers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:06:24 GMT", + "enclosure": { + "length": "7991", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79589277-0-image-m-73_1704316555924.jpg" + }, + "content": "Hard-pressed Scots face the threat of soaring food bills as SNP ministers line up a punishing new tax on shops and supermarkets. The Scottish Government is preparing to bring back a controversial tax.", + "contentSnippet": "Hard-pressed Scots face the threat of soaring food bills as SNP ministers line up a punishing new tax on shops and supermarkets. The Scottish Government is preparing to bring back a controversial tax.", + "guid": "https://www.dailymail.co.uk/news/article-12923965/SNP-plan-tax-shopping-Backlash-ministers-consider-new-levy-supermarkets-amid-fears-costs-passed-customers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:06:24.000Z" + }, + { + "title": "RICHARD KAY: After charity founder Camila Batmanghelidjh dies at 61... Why WERE so many stars and politicians dazzled by the queen of Kids Company?", + "link": "https://www.dailymail.co.uk/debate/article-12924217/charity-founder-Camila-Batmanghelidjh-Kids-Company.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:04:32 GMT", + "enclosure": { + "length": "13688", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79591765-0-image-a-1_1704320650623.jpg" + }, + "content": "Eight years ago, her reign as Britain's undisputed charity queen came to a shuddering halt as Kids Company, which she set up to help vulnerable children, collapsed", + "contentSnippet": "Eight years ago, her reign as Britain's undisputed charity queen came to a shuddering halt as Kids Company, which she set up to help vulnerable children, collapsed", + "guid": "https://www.dailymail.co.uk/debate/article-12924217/charity-founder-Camila-Batmanghelidjh-Kids-Company.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:04:32.000Z" + }, + { + "title": "STEPHEN GLOVER: Is Keir Starmer wise to cosy up to Tony Blair, a man who has benefited financially from a panoply of autocrats?", + "link": "https://www.dailymail.co.uk/debate/article-12924087/Keir-Starmer-wise-cosy-Tony-Blair-autocrats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:04:18 GMT", + "enclosure": { + "length": "9959", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590477-0-image-a-46_1704317826219.jpg" + }, + "content": "After Sir Tony Blair was condemned by the 2016 Chilcot Inquiry into the Iraq War, many assumed that the former Prime Minister would disappear from public life.", + "contentSnippet": "After Sir Tony Blair was condemned by the 2016 Chilcot Inquiry into the Iraq War, many assumed that the former Prime Minister would disappear from public life.", + "guid": "https://www.dailymail.co.uk/debate/article-12924087/Keir-Starmer-wise-cosy-Tony-Blair-autocrats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:04:18.000Z" + }, + { + "title": "Rightmove saw RECORD number of new property listings on Boxing Day", + "link": "https://www.dailymail.co.uk/money/mortgageshome/article-12923195/Rightmove-saw-RECORD-number-new-property-listings-Boxing-Day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:01:49 GMT", + "enclosure": { + "length": "7586", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/16/79579425-0-image-a-20_1704299904984.jpg" + }, + "content": "Britain's biggest online property portal said it saw a 26% jump in new seller listings on 26 December, compared to the previous record last year.", + "contentSnippet": "Britain's biggest online property portal said it saw a 26% jump in new seller listings on 26 December, compared to the previous record last year.", + "guid": "https://www.dailymail.co.uk/money/mortgageshome/article-12923195/Rightmove-saw-RECORD-number-new-property-listings-Boxing-Day.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:01:49.000Z" + }, + { + "title": "I shed seven stone ahead of best friend's wedding by ditching fizzy drinks and crisps - but still ate chocolate and carbs", + "link": "https://www.dailymail.co.uk/femail/article-12922911/I-shed-seven-stone-ahead-best-friends-wedding-ditching-fizzy-drinks-crisps-ate-chocolate-carbs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 00:01:46 GMT", + "enclosure": { + "length": "10913", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590509-0-image-a-63_1704317990065.jpg" + }, + "content": "Dawn James, 33, from Ross-on-Wye in Herefordshire, had been struggling for years to lose weight at 19st 7Ibs. when her best friend asked her to be maid of honour she decided to make a change.", + "contentSnippet": "Dawn James, 33, from Ross-on-Wye in Herefordshire, had been struggling for years to lose weight at 19st 7Ibs. when her best friend asked her to be maid of honour she decided to make a change.", + "guid": "https://www.dailymail.co.uk/femail/article-12922911/I-shed-seven-stone-ahead-best-friends-wedding-ditching-fizzy-drinks-crisps-ate-chocolate-carbs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T00:01:46.000Z" + }, + { + "title": "Shannen Doherty hopes she can 'squeeze out another 3-5 years' to allow research to progress amid 'incurable' breast cancer battle", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924299/Shannen-Doherty-wants-squeeze-3-5-years-amid-cancer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 23:53:56 GMT", + "enclosure": { + "length": "8421", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79593431-0-image-m-61_1704322433220.jpg" + }, + "content": "The 52-year-old former child star has undergone a mastectomy, chemotherapy, radiation, and brain surgery since she was diagnosed in 2015", + "contentSnippet": "The 52-year-old former child star has undergone a mastectomy, chemotherapy, radiation, and brain surgery since she was diagnosed in 2015", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924299/Shannen-Doherty-wants-squeeze-3-5-years-amid-cancer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T23:53:56.000Z" + }, + { + "title": "What nightmares are made of: Hercules, the monstrous funnel-web spider breaks record", + "link": "https://www.dailymail.co.uk/news/article-12924137/What-nightmares-Hercules-monstrous-funnel-web-spider-breaks-record.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 23:41:59 GMT", + "enclosure": { + "length": "5094", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79591089-0-image-a-14_1704323861152.jpg" + }, + "content": "Nightmares come to life as Hercules, the colossal funnel-web spider, shatters records.", + "contentSnippet": "Nightmares come to life as Hercules, the colossal funnel-web spider, shatters records.", + "guid": "https://www.dailymail.co.uk/news/article-12924137/What-nightmares-Hercules-monstrous-funnel-web-spider-breaks-record.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T23:41:59.000Z" + }, + { + "title": "The Traitors review: A word out of place, a careless gasp and you're exposed. Yes, The Traitors is back and I love it. I must be a horrible person, writes CHRISTOPHER STEVENS", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924009/The-Traitors-review-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 23:30:16 GMT", + "enclosure": { + "length": "4308", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79589975-0-Claudia_will_once_again_host_the_nail_biting_psychological_reali-a-25_1704319071474.jpg" + }, + "content": "CHRISTOPHER STEVENS: Last year, the game began with three Traitors. This year, there are four, though the identity of the fourth won't be aired until tonight.", + "contentSnippet": "CHRISTOPHER STEVENS: Last year, the game began with three Traitors. This year, there are four, though the identity of the fourth won't be aired until tonight.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924009/The-Traitors-review-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T23:30:16.000Z" + }, + { + "title": "Can you match the celebrity to their withering school report? Answer which star was called 'Imbecilic, lunatic, impertinent & smug', who was accused of 'Spending too much time giggling over silly love letters', and who was labelled 'On the road to failure'", + "link": "https://www.dailymail.co.uk/news/article-12924055/Can-match-celebrity-withering-school-report-Answer-star-called-Imbecilic-lunatic-impertinent-smug-accused-Spending-time-giggling-silly-love-letters-labelled-road-failure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 23:25:38 GMT", + "enclosure": { + "length": "10610", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590671-0-image-a-18_1704318312587.jpg" + }, + "content": "He was the first actor to direct himself in an Oscar-winning performance and the first to be sent to the House of Lords. But Laurence Olivier's theatre debut didn't attract a rave review.", + "contentSnippet": "He was the first actor to direct himself in an Oscar-winning performance and the first to be sent to the House of Lords. But Laurence Olivier's theatre debut didn't attract a rave review.", + "guid": "https://www.dailymail.co.uk/news/article-12924055/Can-match-celebrity-withering-school-report-Answer-star-called-Imbecilic-lunatic-impertinent-smug-accused-Spending-time-giggling-silly-love-letters-labelled-road-failure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T23:25:38.000Z" + }, + { + "title": "Swimmer who drowned at Hutt Gully Beach is identified as Irish tourist who flew to Australia to visit his daughter", + "link": "https://www.dailymail.co.uk/news/article-12924061/Swimmer-drowned-Hutt-Gully-Beach-identified-Irish-tourist-flew-Australia-visit-daughter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 23:18:03 GMT", + "enclosure": { + "length": "8984", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79592473-0-image-a-18_1704323556369.jpg" + }, + "content": "John Holland, 63, drowned after being caught in a rip immediately after entering the water at Hutt Gully Beach, south of Anglesea on the Great Ocean Road, Victoria about 2.20pm on Monday.", + "contentSnippet": "John Holland, 63, drowned after being caught in a rip immediately after entering the water at Hutt Gully Beach, south of Anglesea on the Great Ocean Road, Victoria about 2.20pm on Monday.", + "guid": "https://www.dailymail.co.uk/news/article-12924061/Swimmer-drowned-Hutt-Gully-Beach-identified-Irish-tourist-flew-Australia-visit-daughter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T23:18:03.000Z" + }, + { + "title": "LIBBY PURVES: To mark 100 years of the Shipping Forecast, one sailor makes a lyrical tribute... 'A blessed incantation that wraps gently around our coast to keep us safe'", + "link": "https://www.dailymail.co.uk/debate/article-12924059/LIBBY-PURVES-mark-100-years-Shipping-Forecast-one-sailor-makes-lyrical-tribute-blessed-incantation-wraps-gently-coast-safe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 23:09:11 GMT", + "enclosure": { + "length": "10735", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590393-0-image-a-124_1704317941365.jpg" + }, + "content": "LIBBY PURVES:The Shipping Forecast on BBC Radio 4 is both reality and romance: a warning to seafarers, but a familiar reassurance to drowsers ashore.", + "contentSnippet": "LIBBY PURVES:The Shipping Forecast on BBC Radio 4 is both reality and romance: a warning to seafarers, but a familiar reassurance to drowsers ashore.", + "guid": "https://www.dailymail.co.uk/debate/article-12924059/LIBBY-PURVES-mark-100-years-Shipping-Forecast-one-sailor-makes-lyrical-tribute-blessed-incantation-wraps-gently-coast-safe.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T23:09:11.000Z" + }, + { + "title": "Mini bike gang that battered 90210 star Ian Ziering is notorious for terrorizing Hollywood with high-speed, booze-fueled riding on illegal machines while their groupies TWERK in the street", + "link": "https://www.dailymail.co.uk/news/article-12923787/Mini-bike-gang-90210-Ian-Ziering-brawl-terrorizing-Hollywood.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 23:03:17 GMT", + "enclosure": { + "length": "9256", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79587939-0-image-a-77_1704317795352.jpg" + }, + "content": "The 605 mini bike gang linked to the brawl involving Ian Ziering are renowned within Hollywood for performing dangerous stunts and posting videos of their twerking groupies.", + "contentSnippet": "The 605 mini bike gang linked to the brawl involving Ian Ziering are renowned within Hollywood for performing dangerous stunts and posting videos of their twerking groupies.", + "guid": "https://www.dailymail.co.uk/news/article-12923787/Mini-bike-gang-90210-Ian-Ziering-brawl-terrorizing-Hollywood.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T23:03:17.000Z" + }, + { + "title": "Apple Watch saved life of Delaware woman who suffered from carbon monoxide poisoning in her home - and she was released from the hospital New Year's Day", + "link": "https://www.dailymail.co.uk/sciencetech/article-12923919/Apple-watch-carbon-monoxide-poisoning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 23:02:52 GMT", + "enclosure": { + "length": "9776", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590179-0-image-a-14_1704318540614.jpg" + }, + "content": "Natalie Nasatka was weak from what turned out to be carbon monoxide poisoning but was saved thanks to the SOS feature on her Apple Watch. She was rushed to the hospital and has recovered.", + "contentSnippet": "Natalie Nasatka was weak from what turned out to be carbon monoxide poisoning but was saved thanks to the SOS feature on her Apple Watch. She was rushed to the hospital and has recovered.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12923919/Apple-watch-carbon-monoxide-poisoning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T23:02:52.000Z" + }, + { + "title": "I lost 50 kilos and transformed my health at 35 - these are the diet and exercise secrets I now swear by daily", + "link": "https://www.dailymail.co.uk/femail/fitness/article-12917951/I-lost-50-kilos-transformed-health-raising-four-kids-diet-exercise-secrets-swear-daily.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 22:50:12 GMT", + "enclosure": { + "length": "11188", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/05/79559905-0-image-a-6_1704259390646.jpg" + }, + "content": "A mum-of-four has shared everything she did to lose a staggering 50 kilograms and sculpt a lean, healthy physique.", + "contentSnippet": "A mum-of-four has shared everything she did to lose a staggering 50 kilograms and sculpt a lean, healthy physique.", + "guid": "https://www.dailymail.co.uk/femail/fitness/article-12917951/I-lost-50-kilos-transformed-health-raising-four-kids-diet-exercise-secrets-swear-daily.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T22:50:12.000Z" + }, + { + "title": "Dental hygienist reveals small detail that will prove if your nail salon is really using CLEAN tools - as she issues warning about the dangers of unsanitary instruments", + "link": "https://www.dailymail.co.uk/femail/article-12920519/dental-hygienist-small-nail-salon-using-clean-tools.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 22:25:10 GMT", + "enclosure": { + "length": "9344", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/16/79576395-0-image-a-31_1704298674082.jpg" + }, + "content": "TikTok content creator Jessica Marie, who works as a dental hygienist, revealed her hack when it comes to figuring out if nail techs are using clean instruments during manicures.", + "contentSnippet": "TikTok content creator Jessica Marie, who works as a dental hygienist, revealed her hack when it comes to figuring out if nail techs are using clean instruments during manicures.", + "guid": "https://www.dailymail.co.uk/femail/article-12920519/dental-hygienist-small-nail-salon-using-clean-tools.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T22:25:10.000Z" + }, + { + "title": "RUTH SUNDERLAND: For the sheer scale of corporate bullying, the Post Office scandal is in a league of its own. So will the bosses EVER be held accountable?", + "link": "https://www.dailymail.co.uk/debate/article-12924161/RUTH-SUNDERLAND-bullying-Post-Office-scandal-bosses-accountable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 22:14:47 GMT", + "enclosure": { + "length": "12553", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79591399-0-image-a-45_1704319375737.jpg" + }, + "content": "RUTH SUNDERLAND: Any miscarriage of justice takes a terrible toll. Innocent individuals have their lives ripped apart, marriages are broken, finances ruined and reputations in the gutter.", + "contentSnippet": "RUTH SUNDERLAND: Any miscarriage of justice takes a terrible toll. Innocent individuals have their lives ripped apart, marriages are broken, finances ruined and reputations in the gutter.", + "guid": "https://www.dailymail.co.uk/debate/article-12924161/RUTH-SUNDERLAND-bullying-Post-Office-scandal-bosses-accountable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T22:14:47.000Z" + }, + { + "title": "Katy Perry sports mystery band on wedding finger as she arrives home from vacation with fianc\u00e9 Orlando Bloom... five years after engagement", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12924063/Katy-Perry-mystery-band-wedding-finger-fiance-Orlando-Bloom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 22:14:02 GMT", + "enclosure": { + "length": "9465", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79590119-0-image-m-37_1704317342174.jpg" + }, + "content": "The singer, 39, appeared to be in high spirits and was seen making silly faces at her fianc\u00e9, Orlando Bloom, 46, as they arrived back home to Los Angeles after a New Year's getaway.", + "contentSnippet": "The singer, 39, appeared to be in high spirits and was seen making silly faces at her fianc\u00e9, Orlando Bloom, 46, as they arrived back home to Los Angeles after a New Year's getaway.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12924063/Katy-Perry-mystery-band-wedding-finger-fiance-Orlando-Bloom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T22:14:02.000Z" + }, + { + "title": "Man, 40, is arrested after 'stealing a PLANE in Las Vegas and crash landing it in middle of desert - leaving marijuana joint and beer cans in cockpit'", + "link": "https://www.dailymail.co.uk/news/article-12923699/las-vegas-stolen-plane-marijuana-beer-crash-desert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 22:13:39 GMT", + "enclosure": { + "length": "8968", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79588209-0-image-a-42_1704314677478.jpg" + }, + "content": "An Idaho man is in police custody after he stole a plane in Las Vegas and landed in the middle of a California desert.", + "contentSnippet": "An Idaho man is in police custody after he stole a plane in Las Vegas and landed in the middle of a California desert.", + "guid": "https://www.dailymail.co.uk/news/article-12923699/las-vegas-stolen-plane-marijuana-beer-crash-desert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T22:13:39.000Z" + }, + { + "title": "Its invention heralded a social and sexual revolution. Now, six decades later, a remarkable sea change is taking place...\u00a0Why are so many young women turning their backs on the Pill?", + "link": "https://www.dailymail.co.uk/femail/article-12923487/Its-invention-heralded-social-sexual-revolution-six-decades-later-remarkable-sea-change-taking-place-young-women-turning-backs-Pill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 21:41:02 GMT", + "enclosure": { + "length": "10341", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/21/79588359-0-image-a-4_1704317970145.jpg" + }, + "content": "When UK writer Sophie Cockerham canvased 61 women online - aged from 23 to 34 - almost all said they had been on the Pill at some point in their lives, but only a third had stuck with it.", + "contentSnippet": "When UK writer Sophie Cockerham canvased 61 women online - aged from 23 to 34 - almost all said they had been on the Pill at some point in their lives, but only a third had stuck with it.", + "guid": "https://www.dailymail.co.uk/femail/article-12923487/Its-invention-heralded-social-sexual-revolution-six-decades-later-remarkable-sea-change-taking-place-young-women-turning-backs-Pill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T21:41:02.000Z" + }, + { + "title": "Dietitians reveal which is really the HEALTHIER choice between ketchup and mustard", + "link": "https://www.dailymail.co.uk/femail/article-12920367/Dietitians-HEALTHIER-choice-ketchup-mustard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 21:40:14 GMT", + "enclosure": { + "length": "12417", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/02/22/79549595-0-image-m-24_1704233350738.jpg" + }, + "content": "When it comes to choosing between ketchup or mustard, which is the healthier pick? Dietitians Tina Marinaccio, Avery Zenker and Jennifer House have weighed in on the condiments.", + "contentSnippet": "When it comes to choosing between ketchup or mustard, which is the healthier pick? Dietitians Tina Marinaccio, Avery Zenker and Jennifer House have weighed in on the condiments.", + "guid": "https://www.dailymail.co.uk/femail/article-12920367/Dietitians-HEALTHIER-choice-ketchup-mustard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T21:40:14.000Z" + }, + { + "title": "Council is blasted over embarrassing mistake on road sign - but can you spot the blunder?", + "link": "https://www.dailymail.co.uk/news/article-12923507/council-blasted-road-sign-spot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 21:18:23 GMT", + "enclosure": { + "length": "6173", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587029-0-image-m-10_1704314033120.jpg" + }, + "content": "Essex County Council have erected a new sign leading up to the roundabout on the A131 on the outskirts of Chelmsford. But it has a huge spelling error.", + "contentSnippet": "Essex County Council have erected a new sign leading up to the roundabout on the A131 on the outskirts of Chelmsford. But it has a huge spelling error.", + "guid": "https://www.dailymail.co.uk/news/article-12923507/council-blasted-road-sign-spot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T21:18:23.000Z" + }, + { + "title": "I'm a plus-size traveler - other passengers complain to flight attendants about sitting next to me but I REFUSE to let trolls stop my adventures", + "link": "https://www.dailymail.co.uk/travel/article-12922907/plus-size-traveler-passengers-call-flight-attendants-horror.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 21:06:29 GMT", + "enclosure": { + "length": "10931", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79576375-0-image-a-212_1704306350109.jpg" + }, + "content": "Saibra Noel, 32, loves to travel - but sometimes struggles as a plus-sized\u00a0woman. She has detailed the difficulties of travelling with a bigger body - particularly when flying in tiny seats.", + "contentSnippet": "Saibra Noel, 32, loves to travel - but sometimes struggles as a plus-sized\u00a0woman. She has detailed the difficulties of travelling with a bigger body - particularly when flying in tiny seats.", + "guid": "https://www.dailymail.co.uk/travel/article-12922907/plus-size-traveler-passengers-call-flight-attendants-horror.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T21:06:29.000Z" + }, + { + "title": "Dragons' Den winner who landed \u00a360,000 investment from Peter Jones faces trial for 'knocking his pregnant partner unconscious'", + "link": "https://www.dailymail.co.uk/news/article-12923261/Dragons-Den-winner-landed-60-000-investment-Peter-Jones-faces-trial-knocking-pregnant-partner-unconscious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 20:58:34 GMT", + "enclosure": { + "length": "5998", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/78925637-0-Dragon_s_Den_participant_Ross_Mendham_who_won_a_60_000_investmen-a-7_1704313429708.jpg" + }, + "content": "Ross Mendham, 40, is said to have punched his partner, Annabelle Weedall, who was then 32 weeks pregnant, in the face causing her to lose consciousness on December 2 last year.", + "contentSnippet": "Ross Mendham, 40, is said to have punched his partner, Annabelle Weedall, who was then 32 weeks pregnant, in the face causing her to lose consciousness on December 2 last year.", + "guid": "https://www.dailymail.co.uk/news/article-12923261/Dragons-Den-winner-landed-60-000-investment-Peter-Jones-faces-trial-knocking-pregnant-partner-unconscious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T20:58:34.000Z" + }, + { + "title": "How shellfish! Fury as council nitwits order fishmonger to take down \u00a3500 knitted display above his shop despite the locals loving it", + "link": "https://www.dailymail.co.uk/news/article-12923643/How-shellfish-Fury-council-nitwits-order-fishmonger-500-knitted-display-shop-despite-locals-loving-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 20:45:30 GMT", + "enclosure": { + "length": "10115", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79586063-0-image-m-29_1704311927269.jpg" + }, + "content": "When a shark appeared in the first-floor window at his premises, fishmonger Glenn Graney, from Hertford, showed he had a flair for the unusual. But there was a catch when he added a knitted display.", + "contentSnippet": "When a shark appeared in the first-floor window at his premises, fishmonger Glenn Graney, from Hertford, showed he had a flair for the unusual. But there was a catch when he added a knitted display.", + "guid": "https://www.dailymail.co.uk/news/article-12923643/How-shellfish-Fury-council-nitwits-order-fishmonger-500-knitted-display-shop-despite-locals-loving-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T20:45:30.000Z" + }, + { + "title": "Horoscope today: Daily guide to what the stars have in store for YOU - January 4, 2024", + "link": "https://www.dailymail.co.uk/femail/article-12923351/horoscope-today-daily-star-sign-january-4-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 20:40:38 GMT", + "enclosure": { + "length": "8756", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79586381-0-image-a-6_1704311694599.jpg" + }, + "content": "OSCAR CAINER: Today, as Mars (the power planet) moves into earthy Capricorn, it gears up to create a 'talent triangle' involving Jupiter and the cosmic teacher Saturn.", + "contentSnippet": "OSCAR CAINER: Today, as Mars (the power planet) moves into earthy Capricorn, it gears up to create a 'talent triangle' involving Jupiter and the cosmic teacher Saturn.", + "guid": "https://www.dailymail.co.uk/femail/article-12923351/horoscope-today-daily-star-sign-january-4-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T20:40:38.000Z" + }, + { + "title": "Police officer and his civilian worker wife 'shared pictures and bodycam footage from death scenes'", + "link": "https://www.dailymail.co.uk/news/article-12923569/police-officer-civilian-wife-share-images-death-scenes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 20:02:18 GMT", + "enclosure": { + "length": "9656", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79586357-0-image-m-41_1704311389234.jpg" + }, + "content": "Thre Lancashire Police staff members are charged with offences including unauthorised access to police computers and disclosing sensitive information.", + "contentSnippet": "Thre Lancashire Police staff members are charged with offences including unauthorised access to police computers and disclosing sensitive information.", + "guid": "https://www.dailymail.co.uk/news/article-12923569/police-officer-civilian-wife-share-images-death-scenes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T20:02:18.000Z" + }, + { + "title": "'Falling asleep on her shoulder was pretty embarrassing': Find out if it's a match on this week's Blind Date", + "link": "https://www.dailymail.co.uk/femail/article-12923447/Falling-asleep-shoulder-pretty-embarrassing-match-weeks-Blind-Date.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 20:02:13 GMT", + "enclosure": { + "length": "8723", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/18/79582929-0-image-a-4_1704305912675.jpg" + }, + "content": "Every week, FEMAIL asks two singletons to report back from their blind date. This week it's Alisha, 26, and Ryan, 27, but will romance be on the cards for these two hopefuls?", + "contentSnippet": "Every week, FEMAIL asks two singletons to report back from their blind date. This week it's Alisha, 26, and Ryan, 27, but will romance be on the cards for these two hopefuls?", + "guid": "https://www.dailymail.co.uk/femail/article-12923447/Falling-asleep-shoulder-pretty-embarrassing-match-weeks-Blind-Date.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T20:02:13.000Z" + }, + { + "title": "Carol Vorderman calls Tory peer Shaun Bailey 'a misogynist' after he said she should not comment on politics while sharing snaps 'of her bum and her boobs' online", + "link": "https://www.dailymail.co.uk/news/article-12923537/Carol-Vorderman-Tory-Shaun-Bailey-misogynist-politics-bum-boobs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 19:51:46 GMT", + "enclosure": { + "length": "5406", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79584633-0-image-m-38_1704308892320.jpg" + }, + "content": "A Tory peer has become embroiled in a sexism row after saying Carol Vorderman (pictured) cannot comment on politics while sharing photographs 'of her bum and her boobs' online.", + "contentSnippet": "A Tory peer has become embroiled in a sexism row after saying Carol Vorderman (pictured) cannot comment on politics while sharing photographs 'of her bum and her boobs' online.", + "guid": "https://www.dailymail.co.uk/news/article-12923537/Carol-Vorderman-Tory-Shaun-Bailey-misogynist-politics-bum-boobs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T19:51:46.000Z" + }, + { + "title": "NANA AKUA: Appointing transgender 'activist' Munroe Bergdorf to represent British women would be laughable if it weren't so dangerous - it's an appalling decision", + "link": "https://www.dailymail.co.uk/debate/article-12923701/NANA-AKUA-Appointing-transgender-activist-Munroe-Bergdorf-represent-British-women-laughable-werent-dangerous-appalling-decision.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 19:49:34 GMT", + "enclosure": { + "length": "8707", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/19/79585567-0-image-m-56_1704311073360.jpg" + }, + "content": "NANA AKUA: Munroe Bergdorf (pictured), born a man but now identifies as a woman, has been appointed as UN Women UK's first 'UK champion' - an ambassadorial role to empower females.", + "contentSnippet": "NANA AKUA: Munroe Bergdorf (pictured), born a man but now identifies as a woman, has been appointed as UN Women UK's first 'UK champion' - an ambassadorial role to empower females.", + "guid": "https://www.dailymail.co.uk/debate/article-12923701/NANA-AKUA-Appointing-transgender-activist-Munroe-Bergdorf-represent-British-women-laughable-werent-dangerous-appalling-decision.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T19:49:34.000Z" + }, + { + "title": "More bad news for Apple: iPhone 15 Pro users outraged after finding back edges are 'peeling' due to a possible manufacturing defect", + "link": "https://www.dailymail.co.uk/sciencetech/article-12923231/Apple-iPhone-15-Pro-edges-peeling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 19:26:11 GMT", + "enclosure": { + "length": "7916", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/17/79581417-0-image-a-4_1704304062344.jpg" + }, + "content": "Some Apple users are complaining that the iPhone 15 Pro is defective after the phones started peeling. The users said they experienced the issue less than two months after buying the phone.", + "contentSnippet": "Some Apple users are complaining that the iPhone 15 Pro is defective after the phones started peeling. The users said they experienced the issue less than two months after buying the phone.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12923231/Apple-iPhone-15-Pro-edges-peeling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T19:26:11.000Z" + }, + { + "title": "The best spas of 2024: From the one that caters to cancer patients, to the one perfect for the sleep-deprived!", + "link": "https://www.dailymail.co.uk/home/you/article-12884989/The-best-spas-2024-pampering.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 03 Jan 2024 14:34:47 GMT", + "enclosure": { + "length": "9880", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/27/11/79212781-0-image-m-58_1703678061386.jpg" + }, + "content": "From Britain's best day stays to a luxury Mediterranean weight-loss retreat, here's our pick of 2024's starriest spas.", + "contentSnippet": "From Britain's best day stays to a luxury Mediterranean weight-loss retreat, here's our pick of 2024's starriest spas.", + "guid": "https://www.dailymail.co.uk/home/you/article-12884989/The-best-spas-2024-pampering.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-03T14:34:47.000Z" + }, + { + "title": "Is this the end of the road for Pontins? Holiday firm closes third holiday park for good as only three others remain - as workers say they were sacked by text", + "link": "https://www.dailymail.co.uk/news/article-12925511/Is-end-road-Pontins-Holiday-firm-closes-holiday-park-good-three-remain-workers-say-sacked-text.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 11:11:00 GMT", + "enclosure": { + "length": "7223", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608293-0-image-m-23_1704363628425.jpg" + }, + "content": "Staff at the Southport park site in Merseyside claim they found out by text they had lost their jobs just hours before the shock announcement was made.", + "contentSnippet": "Staff at the Southport park site in Merseyside claim they found out by text they had lost their jobs just hours before the shock announcement was made.", + "guid": "https://www.dailymail.co.uk/news/article-12925511/Is-end-road-Pontins-Holiday-firm-closes-holiday-park-good-three-remain-workers-say-sacked-text.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T11:11:00.000Z" + }, + { + "title": "Lorry driver, 69, who killed female NHS paediatrician, 41, had 'every opportunity' to see her in his mirrors before turning and knocking her off her bike, court told", + "link": "https://www.dailymail.co.uk/news/article-12925871/lorry-driver-nhs-pediatrician-opportunity-mirrors-court.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 11:10:17 GMT", + "enclosure": { + "length": "4931", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/46380745-0-Dr_Marta_Krawiec-a-17_1704366525769.jpg" + }, + "content": "Dr Marta Krawiec, 41, was struck by 69-year-old Kevin Allen's Mercedes truck on 4 August 2021 after he allegedly failed to indicate before turning.", + "contentSnippet": "Dr Marta Krawiec, 41, was struck by 69-year-old Kevin Allen's Mercedes truck on 4 August 2021 after he allegedly failed to indicate before turning.", + "guid": "https://www.dailymail.co.uk/news/article-12925871/lorry-driver-nhs-pediatrician-opportunity-mirrors-court.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T11:10:17.000Z" + }, + { + "title": "Classic FM signs Stephen Mangan to present a brand new Sunday show in latest shake-up as Dan Walker is set to host breakfast slot", + "link": "https://www.dailymail.co.uk/tvshowbiz/stephen-mangan/article-12925801/Classic-FM-signs-Stephen-Mangan-present-brand-new-Sunday-latest-shake-Dan-Walker-set-host-breakfast-slot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 11:07:32 GMT", + "enclosure": { + "length": "9855", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79609269-0-image-a-92_1704366049119.jpg" + }, + "content": "On Thursday, the actor, 55, completed Classic FM's all-star line-up which includes Dan Walker, Alexander Armstrong, Myleene Klass, Margherita Taylor, and Joanna Gosling.", + "contentSnippet": "On Thursday, the actor, 55, completed Classic FM's all-star line-up which includes Dan Walker, Alexander Armstrong, Myleene Klass, Margherita Taylor, and Joanna Gosling.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/stephen-mangan/article-12925801/Classic-FM-signs-Stephen-Mangan-present-brand-new-Sunday-latest-shake-Dan-Walker-set-host-breakfast-slot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T11:07:32.000Z" + }, + { + "title": "Ten ways to avoid inheritance tax legally", + "link": "https://www.dailymail.co.uk/money/pensions/article-4985392/How-avoid-inheritance-tax-legally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 11:05:45 GMT", + "enclosure": { + "length": "8258", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/02/17/07/67707603-0-image-m-2_1676620195607.jpg" + }, + "content": "There are many legal ways to dodge the dreaded 40 per cent 'death tax' if you want to pass on the maximum sum possible and are prepared to plan ahead.", + "contentSnippet": "There are many legal ways to dodge the dreaded 40 per cent 'death tax' if you want to pass on the maximum sum possible and are prepared to plan ahead.", + "guid": "https://www.dailymail.co.uk/money/pensions/article-4985392/How-avoid-inheritance-tax-legally.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T11:05:45.000Z" + }, + { + "title": "Pantomime is hit by Me Too incident after 'audience member gropes one of the ugly sisters' in Cinderella performance in Chipping Norton", + "link": "https://www.dailymail.co.uk/news/article-12925829/Pantomime-hit-incident-audience-member-gropes-one-ugly-sisters-Cinderella-performance-Chipping-Norton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:59:23 GMT", + "enclosure": { + "length": "13349", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608653-0-image-a-27_1704364222240.jpg" + }, + "content": "Cast members at the Chipping Norton Theatre, in Oxfordshire, were left distraught after one of the ugly sisters was said to have been touched 'inappropriately' by the man.", + "contentSnippet": "Cast members at the Chipping Norton Theatre, in Oxfordshire, were left distraught after one of the ugly sisters was said to have been touched 'inappropriately' by the man.", + "guid": "https://www.dailymail.co.uk/news/article-12925829/Pantomime-hit-incident-audience-member-gropes-one-ugly-sisters-Cinderella-performance-Chipping-Norton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:59:23.000Z" + }, + { + "title": "Respected IFS think-tank warns Labour would not be able to cut taxes and splurge more money on public services... as charts show how Covid debt and spiralling NHS and pensions costs have trapped government", + "link": "https://www.dailymail.co.uk/news/article-12923021/IFS-Labour-Tories-tax-public-services-Covid-debt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:55:19 GMT", + "enclosure": { + "length": "4926", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/78117101-0-image-m-7_1704365447713.jpg" + }, + "content": "The respected IFS think-tank has poured cold water on signals from both main parties that they will ease the burden on Brits.", + "contentSnippet": "The respected IFS think-tank has poured cold water on signals from both main parties that they will ease the burden on Brits.", + "guid": "https://www.dailymail.co.uk/news/article-12923021/IFS-Labour-Tories-tax-public-services-Covid-debt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:55:19.000Z" + }, + { + "title": "Has Crown Princess Amalia found her 'Prince Charming'? Dutch magazine links future Queen with Spanish-born sculptor who is heir to the defunct Bulgarian throne", + "link": "https://www.dailymail.co.uk/femail/article-12925531/Has-Crown-Princess-Amalia-Prince-Charming-Dutch-magazine-links-future-Queen-Spanish-born-sculptor-heir-defunct-Bulgarian-throne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 10:53:50 GMT", + "enclosure": { + "length": "9935", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608717-0-image-a-4_1704364324364.jpg" + }, + "content": "Dutch magazine Priv\u00e9 has linked the heir to the Dutch throne and the Spanish-born sculptor who is from the Bulgarian royal bloodline.", + "contentSnippet": "Dutch magazine Priv\u00e9 has linked the heir to the Dutch throne and the Spanish-born sculptor who is from the Bulgarian royal bloodline.", + "guid": "https://www.dailymail.co.uk/femail/article-12925531/Has-Crown-Princess-Amalia-Prince-Charming-Dutch-magazine-links-future-Queen-Spanish-born-sculptor-heir-defunct-Bulgarian-throne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T10:53:50.000Z" + }, + { + "title": "ISIS claims responsibility for Iran cemetery bloodbath that left nearly 100 dead", + "link": "https://www.dailymail.co.uk/news/article-12927027/ISIS-claims-responsibility-Iran-cemetery-bloodbath-left-nearly-100-dead.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:08:08 GMT", + "enclosure": { + "length": "8336", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79573161-0-Iranian_emergency_services_arrive_at_the_site_where_two_explosio-a-6_1704385752321.jpg" + }, + "content": "Two explosions tore through the southeastern city of Kerman yesterday where thousands had gathered to\u00a0mark the four-year anniversary of Qassem Soleimani's killing.", + "contentSnippet": "Two explosions tore through the southeastern city of Kerman yesterday where thousands had gathered to\u00a0mark the four-year anniversary of Qassem Soleimani's killing.", + "guid": "https://www.dailymail.co.uk/news/article-12927027/ISIS-claims-responsibility-Iran-cemetery-bloodbath-left-nearly-100-dead.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:08:08.000Z" + }, + { + "title": "Perry High School shooter injures two Iowa students and an administrator on first day back from winter break before turning the gun on themself", + "link": "https://www.dailymail.co.uk/news/article-12926585/Shooting-multiple-victims-Perry-High-School-Iowa.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:07:37 GMT", + "enclosure": { + "length": "8584", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79617401-0-image-a-39_1704381705388.jpg" + }, + "content": "Multiple people are feared to be victims\u00a0after a shooting occurred at Perry High School in Iowa on Thursday morning.", + "contentSnippet": "Multiple people are feared to be victims\u00a0after a shooting occurred at Perry High School in Iowa on Thursday morning.", + "guid": "https://www.dailymail.co.uk/news/article-12926585/Shooting-multiple-victims-Perry-High-School-Iowa.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:07:37.000Z" + }, + { + "title": "Luke Littler's family claim 'jealous and nasty parents' have been 'trying to put him off' with jibes about his age for YEARS... accusing mums and dads of other players of 'starting a rumour that he was LYING about his age'", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12924195/Luke-Littlers-family-claim-jealous-nasty-parents-trying-jibes-age-YEARS-accusing-mums-dads-players-starting-rumour-LYING-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:07:04 GMT", + "enclosure": { + "length": "10734", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79593897-0-image-a-55_1704323549527.jpg" + }, + "content": "talkSPORT's Andy Goldstein thought that Littler was in his mid-30s but the release of Littler's birth certificate has ended any speculation about his age.", + "contentSnippet": "talkSPORT's Andy Goldstein thought that Littler was in his mid-30s but the release of Littler's birth certificate has ended any speculation about his age.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12924195/Luke-Littlers-family-claim-jealous-nasty-parents-trying-jibes-age-YEARS-accusing-mums-dads-players-starting-rumour-LYING-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:07:04.000Z" + }, + { + "title": "Epstein list reignites suspicions that the pedophile financier was working for Mossad and blackmailing the rich and famous after ex-Israeli PM Ehud Barak was revealed to have met him at least 36 times", + "link": "https://www.dailymail.co.uk/news/article-12926465/jeffrey-epstein-list-friendship-israeli-prime-minister-ehud-barak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:06:56 GMT", + "enclosure": { + "length": "8062", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619985-0-image-m-33_1704386056814.jpg" + }, + "content": "The appearance of ex-Israeli Prime Minister Ehud Barak's name on the Epstein list has fueled previous claims the pedophile was a spy for Israel who mined Prince Andrew for intel.", + "contentSnippet": "The appearance of ex-Israeli Prime Minister Ehud Barak's name on the Epstein list has fueled previous claims the pedophile was a spy for Israel who mined Prince Andrew for intel.", + "guid": "https://www.dailymail.co.uk/news/article-12926465/jeffrey-epstein-list-friendship-israeli-prime-minister-ehud-barak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:06:56.000Z" + }, + { + "title": "Drag Race Icon Michelle Visage reveals how she 'lost a lot of money and a few pieces of my soul' as she gets candid about 'sleeping with all the wrong people', being exploited and finally finding her real mother", + "link": "https://www.dailymail.co.uk/home/you/article-12881903/Michelle-Visage-RuPaul-Drag-Race-husband-David-Case.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:06:50 GMT", + "enclosure": { + "length": "679081", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79622415-0-image-a-16_1704387965183.jpg" + }, + "content": "Despite her reputation for annihilating egos with a single hair flick as judge on the TV juggernaut RuPaul's Drag Race UK there is nothing fierce about Michelle Visage in person.", + "contentSnippet": "Despite her reputation for annihilating egos with a single hair flick as judge on the TV juggernaut RuPaul's Drag Race UK there is nothing fierce about Michelle Visage in person.", + "guid": "https://www.dailymail.co.uk/home/you/article-12881903/Michelle-Visage-RuPaul-Drag-Race-husband-David-Case.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:06:50.000Z" + }, + { + "title": "Jeffrey Epstein's infamous jet the 'Lolita Express' will be TORN APART after years of flying underage girls and high-powered associates to his Caribbean island and around the world", + "link": "https://www.dailymail.co.uk/news/article-12923995/Jeffrey-Epstein-private-jet-Lolita-Express-torn-apart-scrapped.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:06:22 GMT", + "enclosure": { + "length": "10005", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/22/79591409-0-image-a-105_1704319262921.jpg" + }, + "content": "Jeffrey Epstein's private plane he used to shuttle underage girls and carry the likes of Bill Clinton, Donald Trump and Prince Andrew is set to be scrapped, DailyMail.com can reveal.", + "contentSnippet": "Jeffrey Epstein's private plane he used to shuttle underage girls and carry the likes of Bill Clinton, Donald Trump and Prince Andrew is set to be scrapped, DailyMail.com can reveal.", + "guid": "https://www.dailymail.co.uk/news/article-12923995/Jeffrey-Epstein-private-jet-Lolita-Express-torn-apart-scrapped.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:06:22.000Z" + }, + { + "title": "The 'final nail in the coffin' for Prince Andrew: Bombshell Epstein file 'underage orgy' revelations will torpedo any hope scandal-hit Duke of York has of returning to royal duties, say experts", + "link": "https://www.dailymail.co.uk/news/article-12926269/Prince-Andrew-Epstein-file-underage-orgy-royal-duties.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:05:45 GMT", + "enclosure": { + "length": "6015", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79604485-0-image-m-22_1704374112995.jpg" + }, + "content": "The Duke of York has been again dragged into the sex scandal surrounding his paedophile friend, just over a year after he settled the multi-million dollar case brought by Virginia Giuffre in 2022.", + "contentSnippet": "The Duke of York has been again dragged into the sex scandal surrounding his paedophile friend, just over a year after he settled the multi-million dollar case brought by Virginia Giuffre in 2022.", + "guid": "https://www.dailymail.co.uk/news/article-12926269/Prince-Andrew-Epstein-file-underage-orgy-royal-duties.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:05:45.000Z" + }, + { + "title": "Resident claims seaside strip club is breaching the Equality Act because it has no male dancers", + "link": "https://www.dailymail.co.uk/news/article-12926247/Resident-claims-seaside-strip-club-breaching-Equality-Act-no-male-dancers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:05:41 GMT", + "enclosure": { + "length": "7201", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79617549-0-image-m-9_1704382146570.jpg" + }, + "content": "The unnamed objector also complained to the local authority that punters who visit a strip club were 'not the type of people' wanted in the seaside town of Weymouth, Dorset.", + "contentSnippet": "The unnamed objector also complained to the local authority that punters who visit a strip club were 'not the type of people' wanted in the seaside town of Weymouth, Dorset.", + "guid": "https://www.dailymail.co.uk/news/article-12926247/Resident-claims-seaside-strip-club-breaching-Equality-Act-no-male-dancers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:05:41.000Z" + }, + { + "title": "Post Office scandal: I was on suicide watch in the same prison as Rose West when I was wrongly accused of stealing \u00a360,000 from the Post Office - this has never just been about compensation, it's about justice", + "link": "https://www.dailymail.co.uk/news/article-12926287/post-office-scadal-prison-rose-west-wrongly-accused.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:04:36 GMT", + "enclosure": { + "length": "10625", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79612947-0-image-a-19_1704375584503.jpg" + }, + "content": "Janet Skinner, 52, from Hull, has spoken of her ordeal of being unjustly accused of stealing \u00a360K from the Post Office she ran - resulting in the loss of her home and a stint in a drug-infested prison", + "contentSnippet": "Janet Skinner, 52, from Hull, has spoken of her ordeal of being unjustly accused of stealing \u00a360K from the Post Office she ran - resulting in the loss of her home and a stint in a drug-infested prison", + "guid": "https://www.dailymail.co.uk/news/article-12926287/post-office-scadal-prison-rose-west-wrongly-accused.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:04:36.000Z" + }, + { + "title": "US kills Iraqi militia leader in drone strike on Baghdad: Pentagon slays commander it blames for attacks against American troops", + "link": "https://www.dailymail.co.uk/news/article-12926605/Iraqi-militia-leader-drone-strike-Baghdad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:04:18 GMT", + "enclosure": { + "length": "10732", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79621933-0-image-a-32_1704387835604.jpg" + }, + "content": "The Popular Mobilisation Force (PMF)\u00a0 said its deputy head of operations in Baghdad Mushtaq Taleb al-Saidi was killed in the strike.", + "contentSnippet": "The Popular Mobilisation Force (PMF)\u00a0 said its deputy head of operations in Baghdad Mushtaq Taleb al-Saidi was killed in the strike.", + "guid": "https://www.dailymail.co.uk/news/article-12926605/Iraqi-militia-leader-drone-strike-Baghdad.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:04:18.000Z" + }, + { + "title": "Police probing murder of Harry Pitman release CCTV images of two young men - as they reveal schoolboy, 16, was stabbed to death after fight with 'another male' at Primrose Hill on New Year's Eve", + "link": "https://www.dailymail.co.uk/news/article-12926883/harry-pitman-murder-police-release-cctv-two-youths.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:55:58 GMT", + "enclosure": { + "length": "3178", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79618365-0-image-m-59_1704383355645.jpg" + }, + "content": "Pitman, 16, was killed as he watched New Year's Eve fireworks from Camden, north London surrounded by thousands of revellers.", + "contentSnippet": "Pitman, 16, was killed as he watched New Year's Eve fireworks from Camden, north London surrounded by thousands of revellers.", + "guid": "https://www.dailymail.co.uk/news/article-12926883/harry-pitman-murder-police-release-cctv-two-youths.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:55:58.000Z" + }, + { + "title": "Scientists discover new class of antibiotic can kill drug-resistant superbug", + "link": "https://www.dailymail.co.uk/health/article-12925763/Scientists-discover-new-class-antibiotic-kill-drug-resistant-superbug.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:55:29 GMT", + "enclosure": { + "length": "8698", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79610891-0-image-a-11_1704370011871.jpg" + }, + "content": "Scientists from Swiss pharma giant Roche have developed a new class of antibiotic that could be first breakthrough of its kind in 50 years to beat the threat of 'superbugs' resistant to common drugs.", + "contentSnippet": "Scientists from Swiss pharma giant Roche have developed a new class of antibiotic that could be first breakthrough of its kind in 50 years to beat the threat of 'superbugs' resistant to common drugs.", + "guid": "https://www.dailymail.co.uk/health/article-12925763/Scientists-discover-new-class-antibiotic-kill-drug-resistant-superbug.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:55:29.000Z" + }, + { + "title": "Inside luxury mansion with stunning views where Oscar Pistorius will be living after spending the last seven-and-a-half years in jail for murdering Reeva Steenkamp", + "link": "https://www.dailymail.co.uk/news/article-12926555/Inside-luxury-mansion-Oscar-Pistorius-living.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:52:51 GMT", + "enclosure": { + "length": "8938", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79614279-0-image-a-23_1704379361131.jpg" + }, + "content": "The Blade Runner will swap a small cell at South Africa's Atteridgeville Correction Centre for a luxury multi-million-pound mansion belonging to his uncle who has agreed to become his 'custodian'.", + "contentSnippet": "The Blade Runner will swap a small cell at South Africa's Atteridgeville Correction Centre for a luxury multi-million-pound mansion belonging to his uncle who has agreed to become his 'custodian'.", + "guid": "https://www.dailymail.co.uk/news/article-12926555/Inside-luxury-mansion-Oscar-Pistorius-living.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:52:51.000Z" + }, + { + "title": "Father and daughter who both battled mental health issues start first day of work together as newly qualified nurses", + "link": "https://www.dailymail.co.uk/femail/article-12925833/Father-daughter-mental-health-issues-work-nurses.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:46:49 GMT", + "enclosure": { + "length": "7610", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79608817-0-image-a-58_1704366106651.jpg" + }, + "content": "Father and daughter Steven, 42, and Stevie-Leigh Jewell, graduated within weeks of each other and now both work at Blackpool's The Harbour, a mental health hospital, an NHS hospital.", + "contentSnippet": "Father and daughter Steven, 42, and Stevie-Leigh Jewell, graduated within weeks of each other and now both work at Blackpool's The Harbour, a mental health hospital, an NHS hospital.", + "guid": "https://www.dailymail.co.uk/femail/article-12925833/Father-daughter-mental-health-issues-work-nurses.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:46:49.000Z" + }, + { + "title": "Second Storm Henk tragedy as woman, 87, crashes into tree and dies - as police refer themselves to watchdog after the felling was reported to them 90 minutes earlier but not cleared", + "link": "https://www.dailymail.co.uk/news/article-12926903/storm-henk-second-tragedy-woman-crash-tree-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:44:31 GMT", + "enclosure": { + "length": "7806", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619767-0-image-a-47_1704385101202.jpg" + }, + "content": "Storm Henk has claimed a second life after a woman crashed into a tree and died after it wasn't moved when it fell 90 minutes earlier in Oxfordshire.", + "contentSnippet": "Storm Henk has claimed a second life after a woman crashed into a tree and died after it wasn't moved when it fell 90 minutes earlier in Oxfordshire.", + "guid": "https://www.dailymail.co.uk/news/article-12926903/storm-henk-second-tragedy-woman-crash-tree-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:44:31.000Z" + }, + { + "title": "Youth is arrested after 'burglar' stabbed at house in Bath in altercation that also left a woman injured", + "link": "https://www.dailymail.co.uk/news/article-12926501/youth-arrested-burglar-stabbed-bath-house-woman-injured.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:43:12 GMT", + "enclosure": { + "length": "11145", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616729-0-image-a-49_1704380813257.jpg" + }, + "content": "A man, in his 40s, is understood to have been stabbed before fleeing the scene in Odd Down, Bath - sparking an urgent search in the area.", + "contentSnippet": "A man, in his 40s, is understood to have been stabbed before fleeing the scene in Odd Down, Bath - sparking an urgent search in the area.", + "guid": "https://www.dailymail.co.uk/news/article-12926501/youth-arrested-burglar-stabbed-bath-house-woman-injured.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:43:12.000Z" + }, + { + "title": "Queen Margrethe's final bow: Danish monarch makes last public appearance before stepping down after 52 years on the throne", + "link": "https://www.dailymail.co.uk/femail/article-12926669/Queen-Margrethes-final-bow-Danish-monarch-makes-public-appearance-stepping-52-years-throne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:41:19 GMT", + "enclosure": { + "length": "10564", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79617851-0-image-a-10_1704382345003.jpg" + }, + "content": "The monarch rode through Denmark's capital in a gilded, horse-drawn coach as she concluded her final ever engagements ahead of her abdication.", + "contentSnippet": "The monarch rode through Denmark's capital in a gilded, horse-drawn coach as she concluded her final ever engagements ahead of her abdication.", + "guid": "https://www.dailymail.co.uk/femail/article-12926669/Queen-Margrethes-final-bow-Danish-monarch-makes-public-appearance-stepping-52-years-throne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:41:19.000Z" + }, + { + "title": "Mother and daughter treated to lush\u00a0\u00a39,016 all-expenses paid trip to Lapland on Rich Holiday, Poor Holiday - but ditch \u00a3300 fine dining experience to have 'real food' in takeaway for less than \u00a320", + "link": "https://www.dailymail.co.uk/femail/article-12926277/Mother-daughter-treated-lush-9-016-expenses-paid-trip-Lapland-Rich-Holiday-Poor-Holiday-ditch-300-fine-dining-experience-real-food-takeaway-20.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:35:40 GMT", + "enclosure": { + "length": "11350", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619181-0-image-a-21_1704384343553.jpg" + }, + "content": "In the episode airing on Channel 5 at Sunday at 9pm, Sarah, 50, and Victoria, 19, from Swansea, Wales, enjoyed a lush\u00a0\u00a39,016 all-expenses paid trip to Lapland - an idyllic area of Finland.", + "contentSnippet": "In the episode airing on Channel 5 at Sunday at 9pm, Sarah, 50, and Victoria, 19, from Swansea, Wales, enjoyed a lush\u00a0\u00a39,016 all-expenses paid trip to Lapland - an idyllic area of Finland.", + "guid": "https://www.dailymail.co.uk/femail/article-12926277/Mother-daughter-treated-lush-9-016-expenses-paid-trip-Lapland-Rich-Holiday-Poor-Holiday-ditch-300-fine-dining-experience-real-food-takeaway-20.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:35:40.000Z" + }, + { + "title": "Pub selling Britain's most popular Sunday roast sells out bookings for the whole of 2024 in just TWO HOURS - having just cleared its massive four-year waiting list", + "link": "https://www.dailymail.co.uk/news/article-12926399/pub-britain-popular-roast-sold-bookings-waiting-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:35:22 GMT", + "enclosure": { + "length": "10260", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615529-0-image-a-29_1704379462602.jpg" + }, + "content": "The tucked away Bank Tavern in Bristol opened spots for tables at 10am on New Year's Day for the year and all dates were filled by midday.", + "contentSnippet": "The tucked away Bank Tavern in Bristol opened spots for tables at 10am on New Year's Day for the year and all dates were filled by midday.", + "guid": "https://www.dailymail.co.uk/news/article-12926399/pub-britain-popular-roast-sold-bookings-waiting-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:35:22.000Z" + }, + { + "title": "From banshee-like screaming to 'yellow vomit': Developers of \u00a31.8m luxury seafront apartments are mocked over colourful addition to balconies after locals complained of 'tinnitus-inducing' high-pitched sound", + "link": "https://www.dailymail.co.uk/news/article-12925753/luxury-seafront-apartments-tinnitus-sound-neighbours-complained-noise.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:33:01 GMT", + "enclosure": { + "length": "5339", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79609117-0-image-a-18_1704369717708.jpg" + }, + "content": "It comes after a furious row broke out last year over a new block of luxury flats\u00a0that overlooks the shoreline in Folkestone, Kent.", + "contentSnippet": "It comes after a furious row broke out last year over a new block of luxury flats\u00a0that overlooks the shoreline in Folkestone, Kent.", + "guid": "https://www.dailymail.co.uk/news/article-12925753/luxury-seafront-apartments-tinnitus-sound-neighbours-complained-noise.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:33:01.000Z" + }, + { + "title": "Fitness influencer reveals 'lazy girl' breakfast bowl that helped her lose 50 POUNDS - and it includes HASH BROWNS and CHEESE", + "link": "https://www.dailymail.co.uk/femail/article-12923907/fitness-influencer-diet-breakfast-50-pounds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:29:13 GMT", + "enclosure": { + "length": "9480", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/23/79593737-0-image-a-68_1704325375180.jpg" + }, + "content": "MaKayla Thomas, 29, from Kentucky, shares her workout routines and seemingly decadent high-protein meals on TikTok, where she has more than 1.7 million followers.", + "contentSnippet": "MaKayla Thomas, 29, from Kentucky, shares her workout routines and seemingly decadent high-protein meals on TikTok, where she has more than 1.7 million followers.", + "guid": "https://www.dailymail.co.uk/femail/article-12923907/fitness-influencer-diet-breakfast-50-pounds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:29:13.000Z" + }, + { + "title": "Newcastle fan, 42, who made drunken comments in crude social media video about the Munich air disaster which killed eight Manchester United players is handed three-year ban", + "link": "https://www.dailymail.co.uk/news/article-12926311/Newcastle-fan-42-drunken-comments-crude-social-media-video-Munich-air-disaster-killed-eight-Manchester-United-players-handed-three-year-ban.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:22:49 GMT", + "enclosure": { + "length": "6058", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619071-0-image-a-49_1704384847548.jpg" + }, + "content": "James Blake, 42,\u00a0of Wantage Avenue, North Shields, appeared at North Tyneside Magistrates' Court to challenge a banning order application but it was imposed by the bench.", + "contentSnippet": "James Blake, 42,\u00a0of Wantage Avenue, North Shields, appeared at North Tyneside Magistrates' Court to challenge a banning order application but it was imposed by the bench.", + "guid": "https://www.dailymail.co.uk/news/article-12926311/Newcastle-fan-42-drunken-comments-crude-social-media-video-Munich-air-disaster-killed-eight-Manchester-United-players-handed-three-year-ban.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:22:49.000Z" + }, + { + "title": "Darts hero Luke Littler, 16, says he and girlfriend Eloise will 'stick together whether anyone likes it or not' and reveals couple's date lined up for stadium tour at Old Trafford", + "link": "https://www.dailymail.co.uk/news/article-12926821/luke-littler-darts-girlfriend-stadium-tour-old-trafford.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:22:09 GMT", + "enclosure": { + "length": "6342", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79611957-0-Darting_wonderkid_Littler_was_seen_embracing_his_new_flame_durin-a-39_1704384929845.jpg" + }, + "content": "The besotted couple have been dating for several weeks after meeting over the Xbox, with blonde sales rep Eloise pictured embracing her other half during his fairy-tale tournament at Ally Pally.", + "contentSnippet": "The besotted couple have been dating for several weeks after meeting over the Xbox, with blonde sales rep Eloise pictured embracing her other half during his fairy-tale tournament at Ally Pally.", + "guid": "https://www.dailymail.co.uk/news/article-12926821/luke-littler-darts-girlfriend-stadium-tour-old-trafford.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:22:09.000Z" + }, + { + "title": "Prince Harry's explosive memoir Spare was the UK's best-selling book last year with more than 700,000 copies sold - beating Richard Osman and the Guinness Book of World Records", + "link": "https://www.dailymail.co.uk/femail/article-12926209/Prince-Harrys-explosive-memoir-Spare-UKs-best-selling-book-year-700-000-copies-sold-beating-Richard-Osman-Guinness-Book-World-Records.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:22:05 GMT", + "enclosure": { + "length": "11643", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79618511-0-image-a-38_1704383574756.jpg" + }, + "content": "Figures obtained by The Bookseller have revealed the top 20 bestselling books, both hardback and paperback, in the UK in 2023 - and the Duke's memoir tops the list.", + "contentSnippet": "Figures obtained by The Bookseller have revealed the top 20 bestselling books, both hardback and paperback, in the UK in 2023 - and the Duke's memoir tops the list.", + "guid": "https://www.dailymail.co.uk/femail/article-12926209/Prince-Harrys-explosive-memoir-Spare-UKs-best-selling-book-year-700-000-copies-sold-beating-Richard-Osman-Guinness-Book-World-Records.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:22:05.000Z" + }, + { + "title": "Chocolate factory worker, 28, appears in court accused of stabbing a heavily pregnant mother of two he 'stalked and filmed for TikTok'", + "link": "https://www.dailymail.co.uk/news/article-12926425/Chocolate-factory-worker-court-accused-stabbing-pregnant-mother-stalked-filmed-TikTok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:19:07 GMT", + "enclosure": { + "length": "8056", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79614763-0-image-m-28_1704378038201.jpg" + }, + "content": "Daniel Mihai Popescu, 28, is also accused of stalking fellow Romanian Andreea Pintilli, 29, before allegedly attempting to murder her.", + "contentSnippet": "Daniel Mihai Popescu, 28, is also accused of stalking fellow Romanian Andreea Pintilli, 29, before allegedly attempting to murder her.", + "guid": "https://www.dailymail.co.uk/news/article-12926425/Chocolate-factory-worker-court-accused-stabbing-pregnant-mother-stalked-filmed-TikTok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:19:07.000Z" + }, + { + "title": "Last sighting of missing woman who vanished a week before Christmas: CCTV shows Laura Wilkie, 43, sat on a bench shortly before disappearing as police issue desperate appeal to find her", + "link": "https://www.dailymail.co.uk/news/article-12926675/police-appeal-missing-laurie-wilkie-seen-ayr.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:18:51 GMT", + "enclosure": { + "length": "4907", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616991-0-image-m-37_1704381243311.jpg" + }, + "content": "Laura Wilkie was last seen sitting on a bench near the Millennium Bridge in Ayr, South Ayrshire, at around 8.30pm on Monday December 18.", + "contentSnippet": "Laura Wilkie was last seen sitting on a bench near the Millennium Bridge in Ayr, South Ayrshire, at around 8.30pm on Monday December 18.", + "guid": "https://www.dailymail.co.uk/news/article-12926675/police-appeal-missing-laurie-wilkie-seen-ayr.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:18:51.000Z" + }, + { + "title": "Body found in search for woman, 71, last seen leaving Manchester Airport on New Year's Day", + "link": "https://www.dailymail.co.uk/news/article-12926523/woman-Manchester-airport-new-years-day-body-found.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:17:18 GMT", + "enclosure": { + "length": "4556", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615057-0-image-m-28_1704378592563.jpg" + }, + "content": "Lillian Ferguson was last seen walking in the direction of the M56 just after midnight wearing a long brown coat, Burberry scarf and UGG boots.", + "contentSnippet": "Lillian Ferguson was last seen walking in the direction of the M56 just after midnight wearing a long brown coat, Burberry scarf and UGG boots.", + "guid": "https://www.dailymail.co.uk/news/article-12926523/woman-Manchester-airport-new-years-day-body-found.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:17:18.000Z" + }, + { + "title": "American urges people to try out Irish petrol garage food as he is left astounded by the quality - and admits he 'would never dare eat at a gas station in the US'", + "link": "https://www.dailymail.co.uk/femail/article-12925501/American-urges-people-try-Irish-petrol-garage-food.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:15:19 GMT", + "enclosure": { + "length": "10716", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/09/79607319-0-image-a-46_1704361294457.jpg" + }, + "content": "American TikToker Connor Kearney is now living in Ireland and recently posted a clip to his 5,500 followers, where he praised the country's petrol station food.", + "contentSnippet": "American TikToker Connor Kearney is now living in Ireland and recently posted a clip to his 5,500 followers, where he praised the country's petrol station food.", + "guid": "https://www.dailymail.co.uk/femail/article-12925501/American-urges-people-try-Irish-petrol-garage-food.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:15:19.000Z" + }, + { + "title": "\u00a3200,000 goes up in flames! British couple are hit with huge bill after their 100-year-old sailing boat is accidentally set on fire by merchant sailors mucking around with emergency flares in Alicante", + "link": "https://www.dailymail.co.uk/news/article-12926617/200-000-goes-flames-British-couple-hit-huge-bill-100-year-old-sailing-boat-accidentally-set-fire-merchant-sailors-mucking-emergency-flares-Alicante.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:09:09 GMT", + "enclosure": { + "length": "8843", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79615273-0-image-a-30_1704382902922.jpg" + }, + "content": "The Ukrainian trio were arrested and put in a police cell for the night after flames came close to destroying the 65ft-yacht called Maori at Alicante Regatta Club.", + "contentSnippet": "The Ukrainian trio were arrested and put in a police cell for the night after flames came close to destroying the 65ft-yacht called Maori at Alicante Regatta Club.", + "guid": "https://www.dailymail.co.uk/news/article-12926617/200-000-goes-flames-British-couple-hit-huge-bill-100-year-old-sailing-boat-accidentally-set-fire-merchant-sailors-mucking-emergency-flares-Alicante.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:09:09.000Z" + }, + { + "title": "Female undertaker, 58, is crushed to death at funeral parlour as police and council launch investigations", + "link": "https://www.dailymail.co.uk/news/article-12926445/Female-undertaker-58-crushed-death-funeral-parlour-police-council-launch-investigations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:08:19 GMT", + "enclosure": { + "length": "7549", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79613887-0-image-m-11_1704376943041.jpg" + }, + "content": "Sally Blundell, 58, was killed in a 'tragic accident' on December 1\u00a0in Swaffham, Norfolk.", + "contentSnippet": "Sally Blundell, 58, was killed in a 'tragic accident' on December 1\u00a0in Swaffham, Norfolk.", + "guid": "https://www.dailymail.co.uk/news/article-12926445/Female-undertaker-58-crushed-death-funeral-parlour-police-council-launch-investigations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:08:19.000Z" + }, + { + "title": "Revealed: How minor injuries abroad can carry a BIG price tag if you're not insured, from \u00a31,600 for treating a cut lip in the U.S to \u00a31,860 for advice about a cough in Vietnam", + "link": "https://www.dailymail.co.uk/travel/article-12855373/How-minor-injuries-abroad-carry-BIG-price-tag-youre-not-insured-1-600-treating-cut-lip-U-S-1-860-advice-cough-Vietnam.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:06:19 GMT", + "enclosure": { + "length": "5583", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/18/12/79083375-0-image-m-37_1702903171701.jpg" + }, + "content": "If you're blas\u00e9 about travel insurance, here's a wake-up call. A travel insurance firm revealed recent bills travellers have received for minor injuries - and some are eye-watering.", + "contentSnippet": "If you're blas\u00e9 about travel insurance, here's a wake-up call. A travel insurance firm revealed recent bills travellers have received for minor injuries - and some are eye-watering.", + "guid": "https://www.dailymail.co.uk/travel/article-12855373/How-minor-injuries-abroad-carry-BIG-price-tag-youre-not-insured-1-600-treating-cut-lip-U-S-1-860-advice-cough-Vietnam.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:06:19.000Z" + }, + { + "title": "The battle to stop Captain Cook being erased: Furious locals fight proposals to axe 'birthplace' museum celebrating life of famous explorer - amid row over plans to drop his name from nearby square", + "link": "https://www.dailymail.co.uk/news/article-12926207/The-battle-stop-Captain-Cook-erased-Furious-locals-fight-proposals-axe-birthplace-museum-celebrating-life-famous-explorer-amid-row-plans-drop-nearby-square.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:05:07 GMT", + "enclosure": { + "length": "6398", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79613237-0-A_petition_calling_on_a_council_to_scrap_plans_to_close_the_only-a-173_1704383784196.jpg" + }, + "content": "Middlesbrough Council is considering closing the Captain Cook Birthplace Museum - which stands near to where the explorer was born - and transferring its collection to another institution nearby.", + "contentSnippet": "Middlesbrough Council is considering closing the Captain Cook Birthplace Museum - which stands near to where the explorer was born - and transferring its collection to another institution nearby.", + "guid": "https://www.dailymail.co.uk/news/article-12926207/The-battle-stop-Captain-Cook-erased-Furious-locals-fight-proposals-axe-birthplace-museum-celebrating-life-famous-explorer-amid-row-plans-drop-nearby-square.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:05:07.000Z" + }, + { + "title": "The making of Michelle: How beloved Corrie beauty Keegan went from fresh-faced newbie to polished Netflix star with a penchant for junk food - countered by HOURS in the gym", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12925701/Michelle-Keegans-body-transformation-star-counters-love-burgers-cheese-ice-cream-gruelling-workouts-achieve-husband-Mark-Wrights-perfect-figure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:04:55 GMT", + "enclosure": { + "length": "9948", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615253-0-image-a-91_1704378866973.jpg" + }, + "content": "Michelle Keegan has long-been famed for her ripped physique and stunning good looks, along with her acting prowess.\u00a0", + "contentSnippet": "Michelle Keegan has long-been famed for her ripped physique and stunning good looks, along with her acting prowess.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12925701/Michelle-Keegans-body-transformation-star-counters-love-burgers-cheese-ice-cream-gruelling-workouts-achieve-husband-Mark-Wrights-perfect-figure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:04:55.000Z" + }, + { + "title": "Church with 4,000-year-old stone circle of 'national importance' in its grounds goes on the market for just \u00a350,000", + "link": "https://www.dailymail.co.uk/news/article-12926223/church-stone-circle-national-importance-sale-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:04:00 GMT", + "enclosure": { + "length": "6968", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616505-0-image-a-40_1704380542723.jpg" + }, + "content": "Midmar Kirk, situated around two miles west of Echt, Aberdeenshire, with views overlooking the countryside, has been put up for sale by the Church of Scotland.", + "contentSnippet": "Midmar Kirk, situated around two miles west of Echt, Aberdeenshire, with views overlooking the countryside, has been put up for sale by the Church of Scotland.", + "guid": "https://www.dailymail.co.uk/news/article-12926223/church-stone-circle-national-importance-sale-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:04:00.000Z" + }, + { + "title": "Last of wartime SAS 'originals' dies: Ex-MI6 officer who won Military Cross and was last surviving member of famous L Detachment - and even had a piece of the Antarctic named after him - passes away aged 103", + "link": "https://www.dailymail.co.uk/news/article-12926611/Last-wartime-SAS-originals-dies-aged-103-Ex-MI6-officer-Major-Mike-Sadler-final-member-L-Detachment-famous-exploits-Second-World-War-pass-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:53:24 GMT", + "enclosure": { + "length": "5371", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615077-0-image-a-48_1704379226408.jpg" + }, + "content": "Major Mike Sadler was among the first men recruited by David Stirling, the founder of the British Army's elite Special Air Service regiment, in 1941.", + "contentSnippet": "Major Mike Sadler was among the first men recruited by David Stirling, the founder of the British Army's elite Special Air Service regiment, in 1941.", + "guid": "https://www.dailymail.co.uk/news/article-12926611/Last-wartime-SAS-originals-dies-aged-103-Ex-MI6-officer-Major-Mike-Sadler-final-member-L-Detachment-famous-exploits-Second-World-War-pass-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:53:24.000Z" + }, + { + "title": "Straight men with 'bisexual genes' have more children because the variations are linked to risk-taking, study claims", + "link": "https://www.dailymail.co.uk/sciencetech/article-12926845/Straight-men-bisexual-genes-risk-taking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:53:06 GMT", + "enclosure": { + "length": "6853", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79618347-0-image-a-8_1704383517388.jpg" + }, + "content": "A controversial study claims straight men with 'bisexual genes' are likely to have more children than heterosexual men. But These men were not actually bisexual, they only had the variations.", + "contentSnippet": "A controversial study claims straight men with 'bisexual genes' are likely to have more children than heterosexual men. But These men were not actually bisexual, they only had the variations.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12926845/Straight-men-bisexual-genes-risk-taking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:53:06.000Z" + }, + { + "title": "Another reason not to listen to the celebs! Trendy collagen pills and powders probably WON'T stave off wrinkles, dermatologist says", + "link": "https://www.dailymail.co.uk/health/article-12503767/Do-collagen-supplements-actually-work.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:52:29 GMT", + "enclosure": { + "length": "6742", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/29/08/76980341-0-image-m-11_1703838177968.jpg" + }, + "content": "Collagen is the building blocks for bones,\u00a0skin, hair and muscles. As we get older it starts to deplete. But London-based dermatologists says supplements are not the answer.", + "contentSnippet": "Collagen is the building blocks for bones,\u00a0skin, hair and muscles. As we get older it starts to deplete. But London-based dermatologists says supplements are not the answer.", + "guid": "https://www.dailymail.co.uk/health/article-12503767/Do-collagen-supplements-actually-work.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:52:29.000Z" + }, + { + "title": "Longevity expert shares simple habit that you can implement in the New Year that will lead to a much healthier lifestyle - and he insists it's a lot more effective in the long run than dieting", + "link": "https://www.dailymail.co.uk/femail/article-12923443/longevity-expert-healthy-habit-cooking-diet.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:49:24 GMT", + "enclosure": { + "length": "10026", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587511-0-image-a-107_1704313842255.jpg" + }, + "content": "Dan Buettner, 63, from Saint Paul, Minnesota, spoke to Business Insider about some of the easy steps that you can take as 2024 kicks off that could add years to your life in the long run.", + "contentSnippet": "Dan Buettner, 63, from Saint Paul, Minnesota, spoke to Business Insider about some of the easy steps that you can take as 2024 kicks off that could add years to your life in the long run.", + "guid": "https://www.dailymail.co.uk/femail/article-12923443/longevity-expert-healthy-habit-cooking-diet.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:49:24.000Z" + }, + { + "title": "General election will happen 'in the second half of the year' Rishi Sunak reveals, as he moves to kill speculation about May poll", + "link": "https://www.dailymail.co.uk/news/article-12926275/Rishi-Sunak-says-working-assumption-general-election-happen-second-half-year-moves-kill-speculation-poll.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:47:26 GMT", + "enclosure": { + "length": "9309", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611809-0-image-m-14_1704372039861.jpg" + }, + "content": "Rishi Sunak has said that his 'working assumption' is that he will hold a 'general election in the second half of this year'.", + "contentSnippet": "Rishi Sunak has said that his 'working assumption' is that he will hold a 'general election in the second half of this year'.", + "guid": "https://www.dailymail.co.uk/news/article-12926275/Rishi-Sunak-says-working-assumption-general-election-happen-second-half-year-moves-kill-speculation-poll.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:47:26.000Z" + }, + { + "title": "Luke Littler insists he'll stay 'level headed' and 'keep myself to myself' as he takes a few days off to 'chill out' - and says there is 'no chance' he will play darts tomorrow", + "link": "https://www.dailymail.co.uk/news/article-12926625/Luke-Littler-insists-hell-stay-level-headed-takes-days-chill-says-no-chance-play-darts-tomorrow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:47:24 GMT", + "enclosure": { + "length": "3718", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79615259-0-image-m-23_1704378912692.jpg" + }, + "content": "The 16-year-old, who captivated the nation with his sensational run in the competition, fell just short of creating darts history after losing 7-4 to Luke Humphries in last night's final at Alexandra Palace.", + "contentSnippet": "The 16-year-old, who captivated the nation with his sensational run in the competition, fell just short of creating darts history after losing 7-4 to Luke Humphries in last night's final at Alexandra Palace.", + "guid": "https://www.dailymail.co.uk/news/article-12926625/Luke-Littler-insists-hell-stay-level-headed-takes-days-chill-says-no-chance-play-darts-tomorrow.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:47:24.000Z" + }, + { + "title": "Jeremy Clarkson launches ANOTHER planning battle as he submits proposals for 'urgent' storage barn at his Diddly Squat farm", + "link": "https://www.dailymail.co.uk/news/article-12926175/Jeremy-clarkson-planning-battle-diddly-squat-farm-storage-barn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:44:59 GMT", + "enclosure": { + "length": "7233", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79435435-0-image-a-21_1704374862477.jpg" + }, + "content": "The former Top Gear host, 63, has filed fresh plans to build a huge 118ft long by 59ft wide barn to store grain at the site near Chadlington, Oxfordshire.", + "contentSnippet": "The former Top Gear host, 63, has filed fresh plans to build a huge 118ft long by 59ft wide barn to store grain at the site near Chadlington, Oxfordshire.", + "guid": "https://www.dailymail.co.uk/news/article-12926175/Jeremy-clarkson-planning-battle-diddly-squat-farm-storage-barn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:44:59.000Z" + }, + { + "title": "Are you killing your pets with second-hand smoke? Dogs in fume-filled homes are SIX times more likely to develop cancer, scientists warn", + "link": "https://www.dailymail.co.uk/sciencetech/article-12926167/Are-killing-pets-second-hand-smoke-Dogs-fume-filled-homes-SIX-times-likely-develop-cancer-scientists-warn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:42:06 GMT", + "enclosure": { + "length": "3900", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79617605-0-image-m-54_1704382823891.jpg" + }, + "content": "Researchers from Purdue University have warned that dogs in fume-filled homes are up to six times more likely to develop bladder cancer.", + "contentSnippet": "Researchers from Purdue University have warned that dogs in fume-filled homes are up to six times more likely to develop bladder cancer.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12926167/Are-killing-pets-second-hand-smoke-Dogs-fume-filled-homes-SIX-times-likely-develop-cancer-scientists-warn.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:42:06.000Z" + }, + { + "title": "'Bring it on': Keir Starmer says he is ready to take on Rishi Sunak as he launches New Year election push by describing Britain as a 'downtrodden country' ... but admits he might NOT cut taxes", + "link": "https://www.dailymail.co.uk/news/article-12926027/Keir-Starmer-ready-Rishi-Sunak-live-TV-debate-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:39:22 GMT", + "enclosure": { + "length": "5453", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79609611-0-image-m-14_1704367327903.jpg" + }, + "content": "The Labour leader was bullish when asked about whether he would go head to head with the Prime Minister, during an event in Bristol.", + "contentSnippet": "The Labour leader was bullish when asked about whether he would go head to head with the Prime Minister, during an event in Bristol.", + "guid": "https://www.dailymail.co.uk/news/article-12926027/Keir-Starmer-ready-Rishi-Sunak-live-TV-debate-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:39:22.000Z" + }, + { + "title": "HR adviser left in tears after botched dental treatment ruined her smile wins \u00a340,000 pay out after four-year legal battle", + "link": "https://www.dailymail.co.uk/news/article-12926343/HR-adviser-left-tears-botched-dental-treatment-ruined-smile-wins-40-000-pay-four-year-legal-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:28:46 GMT", + "enclosure": { + "length": "5536", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79612353-0-image-m-11_1704373622210.jpg" + }, + "content": "Lynne Haines, of Penarth, South Wales, claimed that she suffered for more than a decade after having severe undiagnosed gum disease.", + "contentSnippet": "Lynne Haines, of Penarth, South Wales, claimed that she suffered for more than a decade after having severe undiagnosed gum disease.", + "guid": "https://www.dailymail.co.uk/news/article-12926343/HR-adviser-left-tears-botched-dental-treatment-ruined-smile-wins-40-000-pay-four-year-legal-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:28:46.000Z" + }, + { + "title": "Revealed: Six in ten Brits are planning at least three holidays in 2024, with budgets as high as \u00a310,000 per getaway", + "link": "https://www.dailymail.co.uk/travel/article-12854461/Six-ten-Brits-planning-three-holidays-2024-budgets-high-10-000-getaway.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:25:10 GMT", + "enclosure": { + "length": "7096", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/12/13/78866245-0-image-m-31_1702389525198.jpg" + }, + "content": "As many as 65 per cent are hoping to treat themselves to a room upgrade, closely followed by a flight upgrade (57 per cent) and fine dining (51 per cent).", + "contentSnippet": "As many as 65 per cent are hoping to treat themselves to a room upgrade, closely followed by a flight upgrade (57 per cent) and fine dining (51 per cent).", + "guid": "https://www.dailymail.co.uk/travel/article-12854461/Six-ten-Brits-planning-three-holidays-2024-budgets-high-10-000-getaway.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:25:10.000Z" + }, + { + "title": "Journey to the centre of the Earth: Scientists reveal ambitious plans to drill a tunnel into a volcano's magma chamber - and claim it could unleash UNLIMITED energy", + "link": "https://www.dailymail.co.uk/sciencetech/article-12925551/Journey-centre-Earth-Scientists-reveal-ambitious-plans-drill-tunnel-volcanos-magma-chamber-claim-unleash-UNLIMITED-energy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:24:49 GMT", + "enclosure": { + "length": "7743", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79613205-0-image-m-28_1704376743319.jpg" + }, + "content": "It may sound like the beginning of a disaster movie, but Iceland aims to become the first country to drill into a volcano's magma chamber.", + "contentSnippet": "It may sound like the beginning of a disaster movie, but Iceland aims to become the first country to drill into a volcano's magma chamber.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12925551/Journey-centre-Earth-Scientists-reveal-ambitious-plans-drill-tunnel-volcanos-magma-chamber-claim-unleash-UNLIMITED-energy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:24:49.000Z" + }, + { + "title": "Crown Princess Mary is all smiles for Queen Margrethe's last public appearance before stepping down - a day after 'frosty' outing with Prince Frederik", + "link": "https://www.dailymail.co.uk/femail/article-12925791/Crown-Princess-Mary-smiles-Queen-Margrethes-final-public-appearance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:24:01 GMT", + "enclosure": { + "length": "10872", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79609519-0-image-a-22_1704366610463.jpg" + }, + "content": "Following on from yesterday's frosty reception, Princess Mary of Denmark, 51, appeared to have a change of heart, and swapped tense looks for beaming smiles.", + "contentSnippet": "Following on from yesterday's frosty reception, Princess Mary of Denmark, 51, appeared to have a change of heart, and swapped tense looks for beaming smiles.", + "guid": "https://www.dailymail.co.uk/femail/article-12925791/Crown-Princess-Mary-smiles-Queen-Margrethes-final-public-appearance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:24:01.000Z" + }, + { + "title": "Family of 'beautiful and dearly loved' mother and daughter who were killed in a horror hit-and-run crash on Boxing Day say they are 'devastated' and urge witnesses to come forward", + "link": "https://www.dailymail.co.uk/news/article-12926431/Family-mother-daughter-killed-hit-run-crash-Boxing-Day-devastated-urge-witnesses-come-forward.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:22:18 GMT", + "enclosure": { + "length": "9124", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79613759-0-image-m-29_1704377394094.jpg" + }, + "content": "Linda Philips, 72, and Amanda Riley, 49, (pictured together) died after their MG ZS was involved in a crash with a BMW 4 Series and a quad bike in Sharp End, Birmingham.", + "contentSnippet": "Linda Philips, 72, and Amanda Riley, 49, (pictured together) died after their MG ZS was involved in a crash with a BMW 4 Series and a quad bike in Sharp End, Birmingham.", + "guid": "https://www.dailymail.co.uk/news/article-12926431/Family-mother-daughter-killed-hit-run-crash-Boxing-Day-devastated-urge-witnesses-come-forward.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:22:18.000Z" + }, + { + "title": "I vacuumed my mattress - and the result was horrifying", + "link": "https://www.dailymail.co.uk/femail/article-12923623/Home-vacuum-mattress-bed-dust.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:18:50 GMT", + "enclosure": { + "length": "8217", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79585359-0-image-a-122_1704312838302.jpg" + }, + "content": "Dave Chen is a US-based TikToker who frequently shares movie reviews on the video-sharing platform, where he boasts over 62,000 followers. He took to TikTok to share what he found on his mattress.", + "contentSnippet": "Dave Chen is a US-based TikToker who frequently shares movie reviews on the video-sharing platform, where he boasts over 62,000 followers. He took to TikTok to share what he found on his mattress.", + "guid": "https://www.dailymail.co.uk/femail/article-12923623/Home-vacuum-mattress-bed-dust.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:18:50.000Z" + }, + { + "title": "Touching moment Luke Littler and Luke Humphries share brotherly advice", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12925963/Touching-moment-Luke-Littler-Luke-Humphries-share-brotherly-advice.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:16:50 GMT", + "enclosure": { + "length": "11524", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79609907-0-image-a-40_1704367455053.jpg" + }, + "content": "On the brink of creating sporting history, 16-year-old Littler just fell short thanks to a remarkable comeback from Humphries.", + "contentSnippet": "On the brink of creating sporting history, 16-year-old Littler just fell short thanks to a remarkable comeback from Humphries.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12925963/Touching-moment-Luke-Littler-Luke-Humphries-share-brotherly-advice.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:16:50.000Z" + }, + { + "title": "Council trashed over bins left uncollected for WEEKS after bosses say they were surprised by large amount of CARDBOARD during well-known posting and gift-giving Christmas period", + "link": "https://www.dailymail.co.uk/news/article-12926193/council-trashed-bins-uncollected-weeks-cardboard-christmas-period.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:14:28 GMT", + "enclosure": { + "length": "12894", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611661-0-image-a-17_1704372397193.jpg" + }, + "content": "Swindon Borough Council has been slammed for leaving bins uncollected for weeks at a time after they were surprised by the large amount of cardboard during Christmas.", + "contentSnippet": "Swindon Borough Council has been slammed for leaving bins uncollected for weeks at a time after they were surprised by the large amount of cardboard during Christmas.", + "guid": "https://www.dailymail.co.uk/news/article-12926193/council-trashed-bins-uncollected-weeks-cardboard-christmas-period.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:14:28.000Z" + }, + { + "title": "The son of Alain Delon reports his sister to police for 'abuse and violence' against the French screen legend, 88, amid battle for his \u00a3250million fortune", + "link": "https://www.dailymail.co.uk/news/article-12926661/The-son-Alain-Delon-reports-sister-police-abuse-violence-against-French-screen-legend-88-amid-battle-250million-fortune.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:12:49 GMT", + "enclosure": { + "length": "10922", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/14/79616431-0-image-a-3_1704380235582.jpg" + }, + "content": "Anthony Delon, 59, reported his sister Anouchka Delon, 33, to French police for not telling him or his brother Alain-Fabien, 29, that their father had failed five cognitive tests at a private clinic.", + "contentSnippet": "Anthony Delon, 59, reported his sister Anouchka Delon, 33, to French police for not telling him or his brother Alain-Fabien, 29, that their father had failed five cognitive tests at a private clinic.", + "guid": "https://www.dailymail.co.uk/news/article-12926661/The-son-Alain-Delon-reports-sister-police-abuse-violence-against-French-screen-legend-88-amid-battle-250million-fortune.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:12:49.000Z" + }, + { + "title": "A friend I've known for five years won't let me into her house even when I asked to use the toilet - and people are all saying the same thing", + "link": "https://www.dailymail.co.uk/femail/article-12922611/Friend-five-years-wont-let-inside-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:11:16 GMT", + "enclosure": { + "length": "7192", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79608639-0-image-a-60_1704364139936.jpg" + }, + "content": "A woman revealed that a friend of five years won't let her into her home- even to use the toilet. Taking to British platform Mumsnet , she explained no one has ever seen the inside of her colleagues house", + "contentSnippet": "A woman revealed that a friend of five years won't let her into her home- even to use the toilet. Taking to British platform Mumsnet , she explained no one has ever seen the inside of her colleagues house", + "guid": "https://www.dailymail.co.uk/femail/article-12922611/Friend-five-years-wont-let-inside-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:11:16.000Z" + }, + { + "title": "Burger King brings back its most requested burger ever in time for Veganuary after a successful petition demanding its return", + "link": "https://www.dailymail.co.uk/femail/article-12926239/Burger-King-brings-requested-burger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 15:03:44 GMT", + "enclosure": { + "length": "4906", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616475-0-image-a-14_1704380505685.jpg" + }, + "content": "Burger King 's Ultimate Bean Burger\u00a0officially joined UK menus on January 3, after a\u00a0 long hiatus which saw fans yearning for the veggie delight.", + "contentSnippet": "Burger King 's Ultimate Bean Burger\u00a0officially joined UK menus on January 3, after a\u00a0 long hiatus which saw fans yearning for the veggie delight.", + "guid": "https://www.dailymail.co.uk/femail/article-12926239/Burger-King-brings-requested-burger.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T15:03:44.000Z" + }, + { + "title": "I'm 18 and my boyfriend is 60 - trolls say our relationship is wrong but I've never felt so secure", + "link": "https://www.dailymail.co.uk/femail/article-12921915/Im-18-boyfriend-60-trolls-say-relationship-wrong-Ive-never-felt-secure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 14:59:38 GMT", + "enclosure": { + "length": "10962", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/10/79564939-0-image-a-37_1704276700290.jpg" + }, + "content": "Keisha Louise, 18, from\u00a0Irvine, Scotland, is dating\u00a0Dimitrios Fotis, 60, who is 42 years her senior but trolls say their relationship is wrong. The pair began dating in early 2022.", + "contentSnippet": "Keisha Louise, 18, from\u00a0Irvine, Scotland, is dating\u00a0Dimitrios Fotis, 60, who is 42 years her senior but trolls say their relationship is wrong. The pair began dating in early 2022.", + "guid": "https://www.dailymail.co.uk/femail/article-12921915/Im-18-boyfriend-60-trolls-say-relationship-wrong-Ive-never-felt-secure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T14:59:38.000Z" + }, + { + "title": "Cleaning robot 'attacks' pet dog while owner is out! Video shows animal trying to escape as the machine latches on to its tail", + "link": "https://www.dailymail.co.uk/news/article-12925875/Cleaning-robot-attacks-pet-dog-video.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 14:48:52 GMT", + "enclosure": { + "length": "8260", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611063-0-image-m-44_1704369967349.jpg" + }, + "content": "The vacuum cleaner was making its pre-programmed rounds when it sucked in the dog's tail as the poor animal yelped in horror.", + "contentSnippet": "The vacuum cleaner was making its pre-programmed rounds when it sucked in the dog's tail as the poor animal yelped in horror.", + "guid": "https://www.dailymail.co.uk/news/article-12925875/Cleaning-robot-attacks-pet-dog-video.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T14:48:52.000Z" + }, + { + "title": "Wealthy architecture boss is banned from contacting his wife of 25 years after throwing a pack of sausage rolls in her face when she asked if he was going to London for 'cocaine and hookers' in attack at their \u00a32m home", + "link": "https://www.dailymail.co.uk/news/article-12925941/wealthy-architecture-boss-banned-wife-sausage-rolls-face-london-cocaine-hookers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 14:37:36 GMT", + "enclosure": { + "length": "6712", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610005-0-image-m-35_1704368587609.jpg" + }, + "content": "A court heard Nolan Bird flew into a fit of rage at their country home after wife Heather questioned him whether a night out with friends in London involved 'cocaine and hookers'.", + "contentSnippet": "A court heard Nolan Bird flew into a fit of rage at their country home after wife Heather questioned him whether a night out with friends in London involved 'cocaine and hookers'.", + "guid": "https://www.dailymail.co.uk/news/article-12925941/wealthy-architecture-boss-banned-wife-sausage-rolls-face-london-cocaine-hookers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T14:37:36.000Z" + }, + { + "title": "From \u00a33.2million losses on his hotel, 'huge mistakes' on his \u00a3400million Manchester housing plan to struggling to concentrate on Dragons' Den pitches - will Gary Neville cause BBC show's biggest shake-up as it returns tonight?", + "link": "https://www.dailymail.co.uk/news/article-12925751/From-3-2million-losses-hotel-huge-mistakes-400million-Manchester-housing-plan-struggling-concentrate-Dragons-Den-pitches-Gary-Neville-cause-BBC-shows-biggest-shake-returns-tonight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 14:35:34 GMT", + "enclosure": { + "length": "5005", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79608239-0-image-m-9_1704368178145.jpg" + }, + "content": "The former Manchester United legend has had mixed success as a businessman but has created a stir with the announcement he would appear on BBC's Dragons' Den.", + "contentSnippet": "The former Manchester United legend has had mixed success as a businessman but has created a stir with the announcement he would appear on BBC's Dragons' Den.", + "guid": "https://www.dailymail.co.uk/news/article-12925751/From-3-2million-losses-hotel-huge-mistakes-400million-Manchester-housing-plan-struggling-concentrate-Dragons-Den-pitches-Gary-Neville-cause-BBC-shows-biggest-shake-returns-tonight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T14:35:34.000Z" + }, + { + "title": "Gut expert reveals how a poo transplant could improve your health and protect against a range of conditions from cancer to depression", + "link": "https://www.dailymail.co.uk/femail/article-12926065/Gut-expert-reveals-poo-transplant-improve-health.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 14:33:33 GMT", + "enclosure": { + "length": "9758", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611995-0-image-a-10_1704373046783.jpg" + }, + "content": "Gut expert\u00a0Dr Will Bulsiewicz, from South Carolina,\u00a0revealed how a poo transplant could improve your health making you\u00a0less likely to be diagnosed with cancer and other diseases", + "contentSnippet": "Gut expert\u00a0Dr Will Bulsiewicz, from South Carolina,\u00a0revealed how a poo transplant could improve your health making you\u00a0less likely to be diagnosed with cancer and other diseases", + "guid": "https://www.dailymail.co.uk/femail/article-12926065/Gut-expert-reveals-poo-transplant-improve-health.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T14:33:33.000Z" + }, + { + "title": "The real-life victims behind Mr Bates vs the Post Office who are still fighting for justice after losing their livelihoods - and the bosses caught up in scandal", + "link": "https://www.dailymail.co.uk/news/article-12925621/real-people-mr-bates-vs-post-office-obe-ceo-parish-priest.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 14:21:56 GMT", + "enclosure": { + "length": "10368", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610671-0-image-a-157_1704369177503.jpg" + }, + "content": "Former postmaster Alan Bates led and won a legal battle after himself falling victim to the scandal. His victory paved the way for dozens of convictions to be overturned. He is portrayed by Toby Jones.", + "contentSnippet": "Former postmaster Alan Bates led and won a legal battle after himself falling victim to the scandal. His victory paved the way for dozens of convictions to be overturned. He is portrayed by Toby Jones.", + "guid": "https://www.dailymail.co.uk/news/article-12925621/real-people-mr-bates-vs-post-office-obe-ceo-parish-priest.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T14:21:56.000Z" + }, + { + "title": "Kate Middleton and Prince William are a 'normal mum and dad' who queue for the tombola at school fairs and never miss a school event, sources claim", + "link": "https://www.dailymail.co.uk/femail/article-12925861/Kate-Middleton-Prince-William-normal-mum-dad-queue-tombola-school-fairs-never-miss-school-event-sources-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 14:12:05 GMT", + "enclosure": { + "length": "11738", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611029-0-image-a-3_1704369878937.jpg" + }, + "content": "The Prince and Princess of Wales, both 41, throw themselves into events at Lambrook School in Berkshire where their three children are pupils, a source told Hello! magazine.", + "contentSnippet": "The Prince and Princess of Wales, both 41, throw themselves into events at Lambrook School in Berkshire where their three children are pupils, a source told Hello! magazine.", + "guid": "https://www.dailymail.co.uk/femail/article-12925861/Kate-Middleton-Prince-William-normal-mum-dad-queue-tombola-school-fairs-never-miss-school-event-sources-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T14:12:05.000Z" + }, + { + "title": "UK to get its first ever LGBTQ+ only housing for over-55s if new scheme in Manchester is approved", + "link": "https://www.dailymail.co.uk/news/article-12926315/LGBTQ-extra-care-housing-development-Manchester-UKs-55s-residents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 14:12:04 GMT", + "enclosure": { + "length": "8534", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79612907-0-image-a-7_1704374616634.jpg" + }, + "content": "The ground-breaking proposal in Manchester has been revealed by Great Places Housing Group, which plans to build two new apartment block at the site of a demolished hospital.", + "contentSnippet": "The ground-breaking proposal in Manchester has been revealed by Great Places Housing Group, which plans to build two new apartment block at the site of a demolished hospital.", + "guid": "https://www.dailymail.co.uk/news/article-12926315/LGBTQ-extra-care-housing-development-Manchester-UKs-55s-residents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T14:12:04.000Z" + }, + { + "title": "This common method of de-icing your cars on wintry mornings could land you with an \u00a380 fine", + "link": "https://www.dailymail.co.uk/news/article-12925993/common-method-icing-cars-land-80-fine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 14:05:38 GMT", + "enclosure": { + "length": "10721", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610087-0-image-m-13_1704368407477.jpg" + }, + "content": "A frozen car window isn't the most ideal thing to wake up to when you rushing to get set on your morning commute, but this de-icing method could land you in some hot water.", + "contentSnippet": "A frozen car window isn't the most ideal thing to wake up to when you rushing to get set on your morning commute, but this de-icing method could land you in some hot water.", + "guid": "https://www.dailymail.co.uk/news/article-12925993/common-method-icing-cars-land-80-fine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T14:05:38.000Z" + }, + { + "title": "Actress Lindsay Duncan reveals she made sure her mother, who had dementia, 'went peacefully' by deciding against her having surgery at the end of her life - and says she hopes her family would do the same for her", + "link": "https://www.dailymail.co.uk/femail/article-12925971/Actress-Lindsay-Duncan-reveals-sure-mother-dementia-went-peacefully-deciding-against-having-surgery-end-life-says-hopes-family-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 13:56:22 GMT", + "enclosure": { + "length": "8324", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611355-0-image-a-10_1704370540169.jpg" + }, + "content": "Speaking on BBC Woman's Hour, the star, 73, who is originally from Scotland but lives in London, also revealed that she hopes her family would do the same for her.", + "contentSnippet": "Speaking on BBC Woman's Hour, the star, 73, who is originally from Scotland but lives in London, also revealed that she hopes her family would do the same for her.", + "guid": "https://www.dailymail.co.uk/femail/article-12925971/Actress-Lindsay-Duncan-reveals-sure-mother-dementia-went-peacefully-deciding-against-having-surgery-end-life-says-hopes-family-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T13:56:22.000Z" + }, + { + "title": "Brits are warned price rises sparked by Houthi rebel attacks on cargo vessels are 'imminent' as shipping giants divert around South Africa, with a knock-on effect on inflation and even mortgages", + "link": "https://www.dailymail.co.uk/news/article-12925631/Price-rises-Houthi-rebel-attacks-cargo-vessels-imminent.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 13:55:40 GMT", + "enclosure": { + "length": "10986", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/13/79611407-0-image-m-14_1704376510666.jpg" + }, + "content": "Vessels passing Yemen have come under frequent attack since Israel launched its offensive in Gaza following the October 7 terror attack by the Hamas terror group.", + "contentSnippet": "Vessels passing Yemen have come under frequent attack since Israel launched its offensive in Gaza following the October 7 terror attack by the Hamas terror group.", + "guid": "https://www.dailymail.co.uk/news/article-12925631/Price-rises-Houthi-rebel-attacks-cargo-vessels-imminent.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T13:55:40.000Z" + }, + { + "title": "Michael Schumacher is visited by son Mick's girlfriend, 23, as Danish model is one of a select few allowed into the 'inner circle'", + "link": "https://www.dailymail.co.uk/sport/formulaone/article-12926155/Michael-Schumacher-visited-son-Micks-girlfriend-23-Danish-model-one-select-allowed-inner-circle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 13:48:47 GMT", + "enclosure": { + "length": "9631", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611245-0-image-a-46_1704370414742.jpg" + }, + "content": "After a serious accident in December 2013, Michael's wife Corinna, 54, has protected the privacy of the seven-time world champion.", + "contentSnippet": "After a serious accident in December 2013, Michael's wife Corinna, 54, has protected the privacy of the seven-time world champion.", + "guid": "https://www.dailymail.co.uk/sport/formulaone/article-12926155/Michael-Schumacher-visited-son-Micks-girlfriend-23-Danish-model-one-select-allowed-inner-circle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T13:48:47.000Z" + }, + { + "title": "Family who had to investigate their 19-year-old autistic son's cause of death themselves blast inquest system", + "link": "https://www.dailymail.co.uk/news/article-12925705/family-autistic-son-cause-death-blast-inquest-system.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 13:33:10 GMT", + "enclosure": { + "length": "5338", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611579-0-image-m-9_1704371216950.jpg" + }, + "content": "Will Melbourne , 19, was found dead at his Cheshire home on December 18, 2020 after he mistakenly had taken a strong synthetic opioid 100 times stronger than morphine he bought on the dark web.", + "contentSnippet": "Will Melbourne , 19, was found dead at his Cheshire home on December 18, 2020 after he mistakenly had taken a strong synthetic opioid 100 times stronger than morphine he bought on the dark web.", + "guid": "https://www.dailymail.co.uk/news/article-12925705/family-autistic-son-cause-death-blast-inquest-system.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T13:33:10.000Z" + }, + { + "title": "World Athletics president Seb Coe says sportswomen would never win Olympic gold medals again if they had to compete against transgender rivals", + "link": "https://www.dailymail.co.uk/news/article-12926051/world-athletics-president-seb-coe-transgender-athletes-concerns.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 13:16:45 GMT", + "enclosure": { + "length": "8171", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610577-0-image-m-34_1704369305567.jpg" + }, + "content": "Lord Coe suggested in a new interview the gap is so large that females competing at the Olympics wouldn't stand a chance against trans women.", + "contentSnippet": "Lord Coe suggested in a new interview the gap is so large that females competing at the Olympics wouldn't stand a chance against trans women.", + "guid": "https://www.dailymail.co.uk/news/article-12926051/world-athletics-president-seb-coe-transgender-athletes-concerns.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T13:16:45.000Z" + }, + { + "title": "Luke Littler vows to help his beauty consultant girlfriend Eloise Milburn, 21, become a professional darts player after the 16-year-old prodigy fell short in the World Darts Championship final against Luke Humphries", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12926257/Luke-Littler-vows-help-beauty-consultant-girlfriend-Eloise-Milburn-21-professional-darts-player-16-year-old-prodigy-fell-short-World-Darts-Championship-final-against-Luke-Humphries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 13:04:39 GMT", + "enclosure": { + "length": "11114", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611877-0-image-a-22_1704372397307.jpg" + }, + "content": "Luke Littler has vowed to get his girlfriend Eloise Milburn to the same level of darts that he is at following his defeat in the World Darts Championship final.", + "contentSnippet": "Luke Littler has vowed to get his girlfriend Eloise Milburn to the same level of darts that he is at following his defeat in the World Darts Championship final.", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12926257/Luke-Littler-vows-help-beauty-consultant-girlfriend-Eloise-Milburn-21-professional-darts-player-16-year-old-prodigy-fell-short-World-Darts-Championship-final-against-Luke-Humphries.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T13:04:39.000Z" + }, + { + "title": "The Traitors series two opening episode pulls in 3.1MILLION viewers beating numbers for series one's debut as popular show returns to BBC", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12925939/The-Traitors-series-two-opening-episode-pulls-3-1MILLION-viewers-beating-numbers-series-ones-debut-popular-returns-BBC.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 13:02:57 GMT", + "enclosure": { + "length": "9696", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610567-0-image-a-135_1704368944165.jpg" + }, + "content": "The Traitors series two opening episode pulled in an impressive 3.1million viewers as it returned to the BBC\u00a0on Wednesday night.\u00a0", + "contentSnippet": "The Traitors series two opening episode pulled in an impressive 3.1million viewers as it returned to the BBC\u00a0on Wednesday night.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12925939/The-Traitors-series-two-opening-episode-pulls-3-1MILLION-viewers-beating-numbers-series-ones-debut-popular-returns-BBC.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T13:02:57.000Z" + }, + { + "title": "Woman who lost 90LBS in just 12 months goes viral after documenting her incredible physical transformation - as she reveals healthy regimen that helped her slim down", + "link": "https://www.dailymail.co.uk/femail/article-12923481/woman-90-pounds-weight-loss-one-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 12:51:26 GMT", + "enclosure": { + "length": "10752", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/20/79587669-0-image-a-78_1704314059637.jpg" + }, + "content": "Ashley Gertley, a salon owner from Ontario, Canada, took to TikTok a few weeks before the new year to share pictures and videos of herself beginning last January and ending in December.", + "contentSnippet": "Ashley Gertley, a salon owner from Ontario, Canada, took to TikTok a few weeks before the new year to share pictures and videos of herself beginning last January and ending in December.", + "guid": "https://www.dailymail.co.uk/femail/article-12923481/woman-90-pounds-weight-loss-one-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T12:51:26.000Z" + }, + { + "title": "Asparagus fortune teller claims 2024 will see a royal divorce, a female US president and an Olympic flop", + "link": "https://www.dailymail.co.uk/femail/article-12926113/ssparagus-fortune-teller-2024-royal-divorce-female-president.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 12:38:10 GMT", + "enclosure": { + "length": "10059", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611373-0-image-a-31_1704370637178.jpg" + }, + "content": "Jemima Packington, 67, from Bath, is the world's only asparamancer and claims she can peer into the future by tossing spears in the air and interpreting how they land.", + "contentSnippet": "Jemima Packington, 67, from Bath, is the world's only asparamancer and claims she can peer into the future by tossing spears in the air and interpreting how they land.", + "guid": "https://www.dailymail.co.uk/femail/article-12926113/ssparagus-fortune-teller-2024-royal-divorce-female-president.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T12:38:10.000Z" + }, + { + "title": "British Army soldier who stole military equipment and gave it to a weapons maker who produced guns for Saving Private Ryan was busted when officers found the firearms in a secret room behind a bookcase", + "link": "https://www.dailymail.co.uk/news/article-12926087/British-Army-soldier-stole-military-equipment-gave-weapons-maker-produced-guns-Saving-Private-Ryan-busted-officers-firearms-secret-room-bookcase.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 12:37:53 GMT", + "enclosure": { + "length": "7571", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79611387-0-image-m-13_1704371311179.jpg" + }, + "content": "Staff Sergeant Andrew Tongue pinched Ministry of Defence equipment over a four year period whilst in cahoots with licensed firearms dealer Gary Howard.", + "contentSnippet": "Staff Sergeant Andrew Tongue pinched Ministry of Defence equipment over a four year period whilst in cahoots with licensed firearms dealer Gary Howard.", + "guid": "https://www.dailymail.co.uk/news/article-12926087/British-Army-soldier-stole-military-equipment-gave-weapons-maker-produced-guns-Saving-Private-Ryan-busted-officers-firearms-secret-room-bookcase.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T12:37:53.000Z" + }, + { + "title": "Sadiq Khan must use minimum service laws to keep Tube running during strike, Tories say as it is revealed chaos will also spread to Elizabeth Line and five other major rail routes", + "link": "https://www.dailymail.co.uk/news/article-12926025/tube-strike-sadiq-khan-chaos-elizabeth-line-chiltern-railways.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 12:29:40 GMT", + "enclosure": { + "length": "9025", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/03/11/79566151-0-image-m-74_1704280628170.jpg" + }, + "content": "The London Underground will have 'little to no service' next week with a major Tube strike that begins tomorrow set to plunge the capital into travel chaos from Monday until Thursday.", + "contentSnippet": "The London Underground will have 'little to no service' next week with a major Tube strike that begins tomorrow set to plunge the capital into travel chaos from Monday until Thursday.", + "guid": "https://www.dailymail.co.uk/news/article-12926025/tube-strike-sadiq-khan-chaos-elizabeth-line-chiltern-railways.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T12:29:40.000Z" + }, + { + "title": "Tributes are paid to mother-of-three, 33, found dead at her home on New Year's Day as police arrest husband", + "link": "https://www.dailymail.co.uk/news/article-12926015/Tributes-paid-mother-three-33-dead-home-New-Years-Day-police-arrest-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 12:09:11 GMT", + "enclosure": { + "length": "6718", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79610649-0-image-m-9_1704369724724.jpg" + }, + "content": "Naso Isaacs, 33, was discovered at her home in North Berwick, East Lothian after police received a report of concern about the mother's well-being.", + "contentSnippet": "Naso Isaacs, 33, was discovered at her home in North Berwick, East Lothian after police received a report of concern about the mother's well-being.", + "guid": "https://www.dailymail.co.uk/news/article-12926015/Tributes-paid-mother-three-33-dead-home-New-Years-Day-police-arrest-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T12:09:11.000Z" + }, + { + "title": "Human brain is superior and more efficient than artificial intelligence, scientists say", + "link": "https://www.dailymail.co.uk/sciencetech/article-12925689/Human-brain-superior-efficient-artificial-intelligence-scientists-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 11:14:47 GMT", + "enclosure": { + "length": "9615", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607381-0-image-a-18_1704365068410.jpg" + }, + "content": "Robots might not be overtaking humanity for a long time yet according to scientists from the University of Oxford who say that the human brain learns more efficiently.", + "contentSnippet": "Robots might not be overtaking humanity for a long time yet according to scientists from the University of Oxford who say that the human brain learns more efficiently.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12925689/Human-brain-superior-efficient-artificial-intelligence-scientists-say.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T11:14:47.000Z" + }, + { + "title": "Jeffrey Epstein offered money to prove claims Stephen Hawking had an 'underage orgy' were false, bombshell court documents show", + "link": "https://www.dailymail.co.uk/news/article-12925595/Jeffrey-Epstein-offered-money-prove-claims-Stephen-Hawking-underage-orgy-false-bombshell-court-documents-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 11:05:24 GMT", + "enclosure": { + "length": "7163", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/10/79607941-0-image-m-26_1704364202811.jpg" + }, + "content": "In an email sent from Epstein to Maxwell on January 12, 2015, the paedophile financier suggested Ms Giuffre had made allegations relating to the British physicist.", + "contentSnippet": "In an email sent from Epstein to Maxwell on January 12, 2015, the paedophile financier suggested Ms Giuffre had made allegations relating to the British physicist.", + "guid": "https://www.dailymail.co.uk/news/article-12925595/Jeffrey-Epstein-offered-money-prove-claims-Stephen-Hawking-underage-orgy-false-bombshell-court-documents-show.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T11:05:24.000Z" + }, + { + "title": "Abandoned Staffordshire reservoir filmed for Grand Designs to go to auction with a \u00a3250k reduction", + "link": "https://www.dailymail.co.uk/property/article-12918931/Abandoned-Staffordshire-reservoir-filmed-Grand-Designs-auction-250k-reduction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 02 Jan 2024 16:44:21 GMT", + "enclosure": { + "length": "6414", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/02/13/79534137-0-image-a-19_1704203543627.jpg" + }, + "content": "The abandoned underground reservoir in Staffordshire is going to auction later this month with a guide price of \u00a3600,000.", + "contentSnippet": "The abandoned underground reservoir in Staffordshire is going to auction later this month with a guide price of \u00a3600,000.", + "guid": "https://www.dailymail.co.uk/property/article-12918931/Abandoned-Staffordshire-reservoir-filmed-Grand-Designs-auction-250k-reduction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-02T16:44:21.000Z" + }, + { + "title": "Inside the \u00a31.65million Durham House dating back to 1847 that blends 'old-world charm and modern luxury'", + "link": "https://www.dailymail.co.uk/property/article-12903731/Inside-1-65million-Durham-House-dating-1847-blends-old-world-charm-modern-luxury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 02 Jan 2024 13:30:09 GMT", + "enclosure": { + "length": "8643", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/27/14/79369183-0-image-m-41_1703685779545.jpg" + }, + "content": "Durham House boasts a host of original features despite being renovated two decades ago, including the date of the property etched on the headstone of the original door", + "contentSnippet": "Durham House boasts a host of original features despite being renovated two decades ago, including the date of the property etched on the headstone of the original door", + "guid": "https://www.dailymail.co.uk/property/article-12903731/Inside-1-65million-Durham-House-dating-1847-blends-old-world-charm-modern-luxury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-02T13:30:09.000Z" + }, + { + "title": "Nothing to sea here! Beach hut goes on the market for \u00a317,000 in popular Suffolk resort...but it's on grass and there's NO view of the water", + "link": "https://www.dailymail.co.uk/property/article-12916355/beach-hut-sale-popular-resort-no-sea-view.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 01 Jan 2024 16:10:25 GMT", + "enclosure": { + "length": "7852", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/01/14/79505443-0-image-a-46_1704120579781.jpg" + }, + "content": "The vibrant green unfurnished hut sits on a grassy area on top of a cliff in Brackenbury Fort, Felixstowe.", + "contentSnippet": "The vibrant green unfurnished hut sits on a grassy area on top of a cliff in Brackenbury Fort, Felixstowe.", + "guid": "https://www.dailymail.co.uk/property/article-12916355/beach-hut-sale-popular-resort-no-sea-view.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-01T16:10:25.000Z" + }, + { + "title": "ACTION PLAN:\u00a0CIAR BYRNE's essential jobs for your garden this week", + "link": "https://www.dailymail.co.uk/home/gardening/article-12915569/ACTION-PLAN-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 01 Jan 2024 01:44:28 GMT", + "enclosure": { + "length": "4964", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/01/01/79493587-0-image-a-47_1704073382606.jpg" + }, + "content": "The beauty of terrariums is you can enjoy a living world in miniature even if you have only the tiniest available indoor space. UK gardening expert Ciar Byrne explains how you can make one.", + "contentSnippet": "The beauty of terrariums is you can enjoy a living world in miniature even if you have only the tiniest available indoor space. UK gardening expert Ciar Byrne explains how you can make one.", + "guid": "https://www.dailymail.co.uk/home/gardening/article-12915569/ACTION-PLAN-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-01T01:44:28.000Z" + }, + { + "title": "Plot a healthy balance in 2024:\u00a0The start of a new year gives a welcome chance to ring the changes", + "link": "https://www.dailymail.co.uk/home/gardening/article-12915561/Plot-healthy-balance-2024-start-new-year-gives-welcome-chance-ring-changes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 01 Jan 2024 01:28:53 GMT", + "enclosure": { + "length": "9218", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/01/01/79493593-0-image-m-33_1704072478974.jpg" + }, + "content": "UK expert Ciar Byrne shares her gardening resolutions for 2024 and encourages would-be gardeners to commit to spending half an hour or even ten minutes a day tending to the garden.", + "contentSnippet": "UK expert Ciar Byrne shares her gardening resolutions for 2024 and encourages would-be gardeners to commit to spending half an hour or even ten minutes a day tending to the garden.", + "guid": "https://www.dailymail.co.uk/home/gardening/article-12915561/Plot-healthy-balance-2024-start-new-year-gives-welcome-chance-ring-changes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-01T01:28:53.000Z" + }, + { + "title": "THE CHIC LIST: New year revelations", + "link": "https://www.dailymail.co.uk/home/you/article-12881193/THE-CHIC-LIST-New-year-revelations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 31 Dec 2023 08:34:08 GMT", + "enclosure": { + "length": "685827", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/28/14/79403353-0-image-a-9_1703773496771.jpg" + }, + "content": "No night of the year is more controversial. New Year's Eve, planned with great intentions, too often fails to live up to expectations", + "contentSnippet": "No night of the year is more controversial. New Year's Eve, planned with great intentions, too often fails to live up to expectations", + "guid": "https://www.dailymail.co.uk/home/you/article-12881193/THE-CHIC-LIST-New-year-revelations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-31T08:34:08.000Z" + }, + { + "title": "LIZ JONES'S DIARY: In which I break down completely", + "link": "https://www.dailymail.co.uk/home/you/article-12885367/LIZ-JONESS-DIARY-Benji-horse-Bath.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 14:40:37 GMT", + "enclosure": { + "length": "3404", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/27/11/79178249-0-image-m-33_1703676873427.jpg" + }, + "content": "What they don't see is that the Prada skirt was bought with a discount in 1998. That The Pig, dinner, train and taxi fares mean three weeks from payday I have \u00a35.94 left in my account.", + "contentSnippet": "What they don't see is that the Prada skirt was bought with a discount in 1998. That The Pig, dinner, train and taxi fares mean three weeks from payday I have \u00a35.94 left in my account.", + "guid": "https://www.dailymail.co.uk/home/you/article-12885367/LIZ-JONESS-DIARY-Benji-horse-Bath.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T14:40:37.000Z" + }, + { + "title": "CAROLINE WEST MEADS: I think my sister is jealous of my life... We parted on bad terms and my husband never wants to see her again", + "link": "https://www.dailymail.co.uk/home/you/article-12885363/CAROLINE-WEST-MEADS-think-sister-jealous-life-parted-bad-terms-husband-never-wants-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:08:04 GMT", + "enclosure": { + "length": "672779", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/28/14/79403355-0-image-a-14_1703773520215.jpg" + }, + "content": "My sister has lived in the US for 50 years. She is 72, I am 78. Many years ago, she married an American but they divorced when their son was young.", + "contentSnippet": "My sister has lived in the US for 50 years. She is 72, I am 78. Many years ago, she married an American but they divorced when their son was young.", + "guid": "https://www.dailymail.co.uk/home/you/article-12885363/CAROLINE-WEST-MEADS-think-sister-jealous-life-parted-bad-terms-husband-never-wants-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:08:04.000Z" + }, + { + "title": "HOROSCOPES: Your stars for the week", + "link": "https://www.dailymail.co.uk/home/you/article-12885351/HOROSCOPES-stars-week-Sally-Brompton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:07:41 GMT", + "enclosure": { + "length": "12296", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/27/11/77971993-0-image-a-38_1703677182408.jpg" + }, + "content": "Your stars for this week by Sally Brompton", + "contentSnippet": "Your stars for this week by Sally Brompton", + "guid": "https://www.dailymail.co.uk/home/you/article-12885351/HOROSCOPES-stars-week-Sally-Brompton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:07:41.000Z" + }, + { + "title": "The hottest trend for 2024: Saunas", + "link": "https://www.dailymail.co.uk/home/you/article-12885089/The-hottest-trend-2024-Saunas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:07:24 GMT", + "enclosure": { + "length": "9134", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/21/13/79178233-0-image-m-26_1703164617062.jpg" + }, + "content": "From far-flung locations to DIY pop-ups, Emma O'Kelly goes in search of the world's steamiest saunas.", + "contentSnippet": "From far-flung locations to DIY pop-ups, Emma O'Kelly goes in search of the world's steamiest saunas.", + "guid": "https://www.dailymail.co.uk/home/you/article-12885089/The-hottest-trend-2024-Saunas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:07:24.000Z" + }, + { + "title": "Tom Parker Bowles savours the fresh flavours at buzzy new seafood restaurant Faber in London's Hammersmith", + "link": "https://www.dailymail.co.uk/home/you/article-12882187/Tom-Parker-Bowles-review-Faber-Hammersmith.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:06:51 GMT", + "enclosure": { + "length": "9166", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/21/14/79216081-0-image-m-35_1703170680141.jpg" + }, + "content": "Faber, a new West London fish restaurant, does the seemingly impossible", + "contentSnippet": "Faber, a new West London fish restaurant, does the seemingly impossible", + "guid": "https://www.dailymail.co.uk/home/you/article-12882187/Tom-Parker-Bowles-review-Faber-Hammersmith.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:06:51.000Z" + }, + { + "title": "CHARLOTTE KRISTENSEN'S dry January picks", + "link": "https://www.dailymail.co.uk/home/you/article-12882225/CHARLOTTE-KRISTENSENS-dry-January-picks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:06:36 GMT", + "enclosure": { + "length": "2480", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/21/15/79216069-0-image-m-54_1703171267567.jpg" + }, + "content": "A record-breaking number of people are expected to embrace #dryjanuary in 2024.", + "contentSnippet": "A record-breaking number of people are expected to embrace #dryjanuary in 2024.", + "guid": "https://www.dailymail.co.uk/home/you/article-12882225/CHARLOTTE-KRISTENSENS-dry-January-picks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:06:36.000Z" + }, + { + "title": "THE CANNY COOK:\u00a0Smoked haddock, bean and sweetcorn chowder", + "link": "https://www.dailymail.co.uk/home/you/article-12882133/THE-CANNY-COOK-Smoked-haddock-bean-sweetcorn-chowder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:06:21 GMT", + "enclosure": { + "length": "5705", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/21/15/79216965-0-image-m-83_1703172750761.jpg" + }, + "content": "A rich and warming soup that can be on the table in 20 minutes.", + "contentSnippet": "A rich and warming soup that can be on the table in 20 minutes.", + "guid": "https://www.dailymail.co.uk/home/you/article-12882133/THE-CANNY-COOK-Smoked-haddock-bean-sweetcorn-chowder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:06:21.000Z" + }, + { + "title": "Olympian Jessica Ennis Hill tells Tom Parker Bowles about her love of patriotic pudding - and a celebratory burger!", + "link": "https://www.dailymail.co.uk/home/you/article-12882083/Jessica-Ennis-Hill-food-Tom-Parker-Bowles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:06:05 GMT", + "enclosure": { + "length": "678657", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/28/14/79403357-0-image-a-22_1703773574771.jpg" + }, + "content": "My first food memory was being fed liquidised tripe as a toddler by my mum and dad. It was really disgusting!", + "contentSnippet": "My first food memory was being fed liquidised tripe as a toddler by my mum and dad. It was really disgusting!", + "guid": "https://www.dailymail.co.uk/home/you/article-12882083/Jessica-Ennis-Hill-food-Tom-Parker-Bowles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:06:05.000Z" + }, + { + "title": "Nutritiously Ella: Simple, quick dishes from queen of healthy cooking ELLA MILLS", + "link": "https://www.dailymail.co.uk/home/you/article-12882029/Nutritiously-Ella-Simple-quick-dishes-queen-healthy-cooking-ELLA-MILLS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:05:49 GMT", + "enclosure": { + "length": "7964", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/21/15/79216697-0-image-m-112_1703173528088.jpg" + }, + "content": "Everyday butter bean, carrot and sweet potato soup", + "contentSnippet": "Everyday butter bean, carrot and sweet potato soup", + "guid": "https://www.dailymail.co.uk/home/you/article-12882029/Nutritiously-Ella-Simple-quick-dishes-queen-healthy-cooking-ELLA-MILLS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:05:49.000Z" + }, + { + "title": "Sir Nicholas Winton - The 'British Schindler': How on the eve of the Second World War, a quiet Home Counties stockbroker rescued hundreds of young lives from Nazi persecution", + "link": "https://www.dailymail.co.uk/home/you/article-12881929/One-Life-film-Nicholas-Winton-Anthony-Hopkins.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:05:31 GMT", + "enclosure": { + "length": "7027", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/27/12/79180657-0-image-m-76_1703680466934.jpg" + }, + "content": "On the eve of the Second World War, a quiet Home Counties stockbroker rescued hundreds of young lives from Nazi persecution.", + "contentSnippet": "On the eve of the Second World War, a quiet Home Counties stockbroker rescued hundreds of young lives from Nazi persecution.", + "guid": "https://www.dailymail.co.uk/home/you/article-12881929/One-Life-film-Nicholas-Winton-Anthony-Hopkins.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:05:31.000Z" + }, + { + "title": "FASHION: Happy new comfort zone", + "link": "https://www.dailymail.co.uk/home/you/article-12886579/FASHION-Happy-new-comfort-zone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:05:13 GMT", + "enclosure": { + "length": "6084", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/20/17/79177223-0-image-m-307_1703092273877.jpg" + }, + "content": "Beat the January blues with a big hug from your wardrobe, says fashion stylist Stephanie Sofokleous", + "contentSnippet": "Beat the January blues with a big hug from your wardrobe, says fashion stylist Stephanie Sofokleous", + "guid": "https://www.dailymail.co.uk/home/you/article-12886579/FASHION-Happy-new-comfort-zone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:05:13.000Z" + }, + { + "title": "AGELESS STYLE: The tux", + "link": "https://www.dailymail.co.uk/home/you/article-12881745/AGELESS-STYLE-tux.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:04:55 GMT", + "enclosure": { + "length": "5620", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/20/15/79175409-0-image-m-126_1703086322077.jpg" + }, + "content": "Here at YOU we're huge advocates of occasionwear tailoring", + "contentSnippet": "Here at YOU we're huge advocates of occasionwear tailoring", + "guid": "https://www.dailymail.co.uk/home/you/article-12881745/AGELESS-STYLE-tux.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:04:55.000Z" + }, + { + "title": "CosMc's: New McDonald's everyone is talking about", + "link": "https://www.dailymail.co.uk/home/you/article-12881729/CosMcs-New-McDonalds-talking-about.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:04:37 GMT", + "enclosure": { + "length": "8959", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/20/15/79175233-0-image-m-10_1703085994921.jpg" + }, + "content": "I've just seen that McDonald's has launched a spinoff. How depressing.", + "contentSnippet": "I've just seen that McDonald's has launched a spinoff. How depressing.", + "guid": "https://www.dailymail.co.uk/home/you/article-12881729/CosMcs-New-McDonalds-talking-about.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:04:37.000Z" + }, + { + "title": "BEAUTY: The glow-slow lowdown", + "link": "https://www.dailymail.co.uk/home/you/article-12881273/BEAUTY-glow-slow-lowdown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:04:16 GMT", + "enclosure": { + "length": "2678", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/20/15/79174289-0-image-a-99_1703085235348.jpg" + }, + "content": "Post-New Year's Eve we enter that blissful time of year when the mantelpiece is empty of invitations", + "contentSnippet": "Post-New Year's Eve we enter that blissful time of year when the mantelpiece is empty of invitations", + "guid": "https://www.dailymail.co.uk/home/you/article-12881273/BEAUTY-glow-slow-lowdown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:04:16.000Z" + }, + { + "title": "THE GREEN GUIDE: Diffuser set, from \u00a349", + "link": "https://www.dailymail.co.uk/home/you/article-12881129/THE-GREEN-GUIDE-Diffuser-set-49.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 12:03:43 GMT", + "enclosure": { + "length": "6558", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/20/14/79173263-0-image-m-10_1703083488814.jpg" + }, + "content": "Diffuser set from \u00a349, plus \u00a335 for refills, with a subscription service, stinklondon.com", + "contentSnippet": "Diffuser set from \u00a349, plus \u00a335 for refills, with a subscription service, stinklondon.com", + "guid": "https://www.dailymail.co.uk/home/you/article-12881129/THE-GREEN-GUIDE-Diffuser-set-49.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T12:03:43.000Z" + }, + { + "title": "Shopping Finder Intersport\u00a0 Competition: Terms and conditions", + "link": "https://www.dailymail.co.uk/home/article-12907801/Shopping-Finder-Intersport-Competition-Terms-conditions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 30 Dec 2023 10:03:47 GMT", + "enclosure": { + "length": "6451", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/29/11/79433019-0-image-a-4_1703850125742.jpg" + }, + "content": "This prize draw (the \"Promotion\") is only open to UK residents (excluding Northern Ireland ), excluding employees and agents of (a) the Promoter or (b) any company connected with...", + "contentSnippet": "This prize draw (the \"Promotion\") is only open to UK residents (excluding Northern Ireland ), excluding employees and agents of (a) the Promoter or (b) any company connected with...", + "guid": "https://www.dailymail.co.uk/home/article-12907801/Shopping-Finder-Intersport-Competition-Terms-conditions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-30T10:03:47.000Z" + }, + { + "title": "How will you fare next year? After a turbulent 12 months, things could be looking up for the housing market", + "link": "https://www.dailymail.co.uk/property/article-12907563/How-fare-year-turbulent-12-months-things-looking-housing-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 29 Dec 2023 15:16:43 GMT", + "enclosure": { + "length": "13117", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/28/18/79411343-0-image-m-6_1703788323660.jpg" + }, + "content": "Whisper it quietly but the prospects for the 2024 housing market are much stronger than many expected just a few months ago.", + "contentSnippet": "Whisper it quietly but the prospects for the 2024 housing market are much stronger than many expected just a few months ago.", + "guid": "https://www.dailymail.co.uk/property/article-12907563/How-fare-year-turbulent-12-months-things-looking-housing-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-12-29T15:16:43.000Z" + }, + { + "title": "I won't be cowed: Furious anteater rears up and stretches out its 'arms' to see off herd of cattle crossing a field in Uruguay", + "link": "https://www.dailymail.co.uk/news/article-12926705/Furious-anteater-rears-stretches-arms-herd-cattle-crossing-field-Uruguay.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:21:38 GMT", + "enclosure": { + "length": "7432", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79622189-0-image-m-8_1704387735626.jpg" + }, + "content": "Footage shows the small but mighty animal stand up onto its back legs and come face to face with a cow in Uruguay.", + "contentSnippet": "Footage shows the small but mighty animal stand up onto its back legs and come face to face with a cow in Uruguay.", + "guid": "https://www.dailymail.co.uk/news/article-12926705/Furious-anteater-rears-stretches-arms-herd-cattle-crossing-field-Uruguay.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:21:38.000Z" + }, + { + "title": "Oscar Pistorius walks free from jail tomorrow as a paunchy, greying chain-smoker who will have to look over his shoulder forever: He will live with his rich uncle, gangs are out for revenge - and he may even become a preacher", + "link": "https://www.dailymail.co.uk/sport/othersports/article-12926979/Oscar-Pistorius-walks-free-jail-tomorrow-paunchy-greying-chain-smoker-look-shoulder-forever-live-rich-uncle-gangs-revenge-preacher.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:19:06 GMT", + "enclosure": { + "length": "11002", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79621715-0-image-a-47_1704387424250.jpg" + }, + "content": "JONATHAN MCEVOY: Oscar Pistorius could still be a gem of post-apartheid South Africa. But on Friday the only double amputee in Olympic history will walk away from jail", + "contentSnippet": "JONATHAN MCEVOY: Oscar Pistorius could still be a gem of post-apartheid South Africa. But on Friday the only double amputee in Olympic history will walk away from jail", + "guid": "https://www.dailymail.co.uk/sport/othersports/article-12926979/Oscar-Pistorius-walks-free-jail-tomorrow-paunchy-greying-chain-smoker-look-shoulder-forever-live-rich-uncle-gangs-revenge-preacher.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:19:06.000Z" + }, + { + "title": "Kelly Clarkson's weight loss secrets - will saunas, ice baths and walking work for you? Experts weigh in", + "link": "https://www.dailymail.co.uk/wellness-us/article-12924315/kelly-clarkson-weight-loss-sauna-ice-bath.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:12:01 GMT", + "enclosure": { + "length": "12163", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79622479-0-image-m-10_1704388304889.jpg" + }, + "content": "Kelly Clarkson, 41, has revealed that she lost 37 pounds by walking, eating a protein-heavy diet, plunging into ice-cold water, and stepping into infrared saunas. Experts are surprisingly supportive", + "contentSnippet": "Kelly Clarkson, 41, has revealed that she lost 37 pounds by walking, eating a protein-heavy diet, plunging into ice-cold water, and stepping into infrared saunas. Experts are surprisingly supportive", + "guid": "https://www.dailymail.co.uk/wellness-us/article-12924315/kelly-clarkson-weight-loss-sauna-ice-bath.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:12:01.000Z" + }, + { + "title": "Reeva Steenkamp's mother says she has 'lost hope' that Oscar Pistorius will ever reveal the truth about the night he killed her daughter and blames him for her husband's death - as Blade Runner prepares for his jail release tomorrow", + "link": "https://www.dailymail.co.uk/news/article-12926967/Reeva-Steenkamps-mother-speaks-ahead-release-Oscar-Pistorius.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:06:03 GMT", + "enclosure": { + "length": "6490", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619685-0-image-m-16_1704386856622.jpg" + }, + "content": "The double-amputee athlete, who became world famous as he ran in the Olympics with carbon-fibre prosthetic legs, will leave Atteridgeville jail tomorrow morning after serving just over half his sentence.", + "contentSnippet": "The double-amputee athlete, who became world famous as he ran in the Olympics with carbon-fibre prosthetic legs, will leave Atteridgeville jail tomorrow morning after serving just over half his sentence.", + "guid": "https://www.dailymail.co.uk/news/article-12926967/Reeva-Steenkamps-mother-speaks-ahead-release-Oscar-Pistorius.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:06:03.000Z" + }, + { + "title": "Leeds United star Brenden Aaronson, 23, is banned from driving and fined \u00a31,000 after doing 37mph in a 30mph zone in his high-powered Mercedes", + "link": "https://www.dailymail.co.uk/news/article-12927037/leeds-brenden-aaronson-banned-driving-fined-mercedes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:04:53 GMT", + "enclosure": { + "length": "7855", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79620281-0-image-a-34_1704386793851.jpg" + }, + "content": "The \u00a324.7million Leeds United midfielder was clocked driving at 37mph in a 30mph\u00a0zone on March 12 last year.", + "contentSnippet": "The \u00a324.7million Leeds United midfielder was clocked driving at 37mph in a 30mph\u00a0zone on March 12 last year.", + "guid": "https://www.dailymail.co.uk/news/article-12927037/leeds-brenden-aaronson-banned-driving-fined-mercedes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:04:53.000Z" + }, + { + "title": "Covid, flu and norovirus cases surge across the UK - as expert warns Brits sickened over Christmas and New Year may have succumbed to 'two or three infections' at the same time", + "link": "https://www.dailymail.co.uk/health/article-12926739/Covid-flu-norovirus-cases-UK-Christmas-New-Year-infections.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 17:00:50 GMT", + "enclosure": { + "length": "5476", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79621907-0-image-m-21_1704387504571.jpg" + }, + "content": "Surveillance programmes that monitor the UK's outbreak suggest Covid and flu hospital admissions in England are running at their highest level so far this winter.", + "contentSnippet": "Surveillance programmes that monitor the UK's outbreak suggest Covid and flu hospital admissions in England are running at their highest level so far this winter.", + "guid": "https://www.dailymail.co.uk/health/article-12926739/Covid-flu-norovirus-cases-UK-Christmas-New-Year-infections.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T17:00:50.000Z" + }, + { + "title": "Health visitor who took second NHS job while on sick leave was caught after a colleague took their mother to an appointment and recognised her", + "link": "https://www.dailymail.co.uk/news/article-12926753/Health-visitor-took-second-NHS-job-sick-leave-caught-colleague-took-mother-appointment-recognised-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:52:44 GMT", + "enclosure": { + "length": "6233", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79620983-0-image-m-43_1704387005102.jpg" + }, + "content": "Chelsie Morris - who now runs a yoga firm in Norfolk - accepted a full-time post at a GP surgery while claiming to be unable to report for work at an NHS community service trust.", + "contentSnippet": "Chelsie Morris - who now runs a yoga firm in Norfolk - accepted a full-time post at a GP surgery while claiming to be unable to report for work at an NHS community service trust.", + "guid": "https://www.dailymail.co.uk/news/article-12926753/Health-visitor-took-second-NHS-job-sick-leave-caught-colleague-took-mother-appointment-recognised-her.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:52:44.000Z" + }, + { + "title": "Nightmare neighbour is told to move house or be jailed after constantly trying to lure next door's cats into her home by rattling box of treats", + "link": "https://www.dailymail.co.uk/news/article-12926725/Nightmare-neighbour-told-house-jailed-constantly-trying-lure-doors-cats-home-rattling-box-treats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:50:48 GMT", + "enclosure": { + "length": "7402", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79618785-0-image-m-9_1704386609875.jpg" + }, + "content": "Angela Montgomery, 50, insists the cats in her neighbour's flat in a North York retirement complex are hers, with one of them belonging to her late mother.", + "contentSnippet": "Angela Montgomery, 50, insists the cats in her neighbour's flat in a North York retirement complex are hers, with one of them belonging to her late mother.", + "guid": "https://www.dailymail.co.uk/news/article-12926725/Nightmare-neighbour-told-house-jailed-constantly-trying-lure-doors-cats-home-rattling-box-treats.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:50:48.000Z" + }, + { + "title": "Labour's Rosie Duffield says she has been 'completely exonerated' by the party after being accused of anti-Semitism and transphobia\u00a0over support for comedy writer's Eddie Izzard tweet", + "link": "https://www.dailymail.co.uk/news/article-12927051/Labours-Rosie-Duffield-completely-exonerated-anti-Semitism-transphobia-Eddie-Izzard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 16:47:18 GMT", + "enclosure": { + "length": "8767", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/78249819-0-Rosie_Duffield_52_could_be_blocked_from_defending_her_Canterbury-a-7_1704385854154.jpg" + }, + "content": "The MP for Canterbury said Labour's National Executive Committee had dismissed the claims against her, adding 'there was no case to answer, and nothing I had done had breached any rule'.", + "contentSnippet": "The MP for Canterbury said Labour's National Executive Committee had dismissed the claims against her, adding 'there was no case to answer, and nothing I had done had breached any rule'.", + "guid": "https://www.dailymail.co.uk/news/article-12927051/Labours-Rosie-Duffield-completely-exonerated-anti-Semitism-transphobia-Eddie-Izzard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T16:47:18.000Z" + }, + { + "title": "Floods LIVE: Storm Henk chaos as 1,000 homes are evacuated, victims show inside their flooded homes, schools close and party boat sinks", + "link": "https://www.dailymail.co.uk/news/live/article-12929763/floods-live-updates-storm-henk-chaos-warnings-uk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:54:12 GMT", + "enclosure": { + "length": "11315", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79650287-0-image-a-55_1704450570651.jpg" + }, + "content": "Follow MailOnline's weather liveblog for updates today as hundreds of flood warnings remain in place and commuters face more travel disruption after further heavy downpours following Storm Henk.", + "contentSnippet": "Follow MailOnline's weather liveblog for updates today as hundreds of flood warnings remain in place and commuters face more travel disruption after further heavy downpours following Storm Henk.", + "guid": "https://www.dailymail.co.uk/news/live/article-12929763/floods-live-updates-storm-henk-chaos-warnings-uk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:54:12.000Z" + }, + { + "title": "Kate Garraway's husband Derek Draper death latest: Former political adviser dies aged 56 following three-year long Covid battle", + "link": "https://www.dailymail.co.uk/news/live/article-12930009/Derek-draper-live-updates-death-kate-garraway-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:53:57 GMT", + "enclosure": { + "length": "6155", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652839-0-image-a-4_1704455446886.jpg" + }, + "content": "Follow MailOnline for live updates today after TV presenter Kate Garraway announced the death of her husband, Derek Draper, at the age of 56.", + "contentSnippet": "Follow MailOnline for live updates today after TV presenter Kate Garraway announced the death of her husband, Derek Draper, at the age of 56.", + "guid": "https://www.dailymail.co.uk/news/live/article-12930009/Derek-draper-live-updates-death-kate-garraway-husband.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:53:57.000Z" + }, + { + "title": "Kate Garraway's GMB colleague Susanna Reid and Alan Carr lead celebrity sympathy messages to heartbroken star as she announces\u00a0husband Derek Draper's death aged 56", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12930073/Kate-Garraways-GMB-colleague-Susanna-Reid-Alan-Carr-lead-celebrity-tributes-heartbroken-star-announces-husband-Derek-Drapers-death-aged-56.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:53:25 GMT", + "enclosure": { + "length": "10702", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654683-0-image-m-101_1704458607488.jpg" + }, + "content": "Kate Garraway was met with a slew of celebrity condolences after announcing the death of her husband Derek Draper on Friday.\u00a0", + "contentSnippet": "Kate Garraway was met with a slew of celebrity condolences after announcing the death of her husband Derek Draper on Friday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12930073/Kate-Garraways-GMB-colleague-Susanna-Reid-Alan-Carr-lead-celebrity-tributes-heartbroken-star-announces-husband-Derek-Drapers-death-aged-56.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:53:25.000Z" + }, + { + "title": "NatWest chief Sir Howard Davies (who earns \u00a3750k a year) sparks fury by claiming it is 'not that difficult' for Brits to get on the property ladder", + "link": "https://www.dailymail.co.uk/news/article-12930165/NatWest-Howard-Davies-banker-difficult-house-homes-property-ladder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:51:58 GMT", + "enclosure": { + "length": "6845", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654399-0-image-m-21_1704459024635.jpg" + }, + "content": "Sir Howard Davies made the controversial comment as he argued that prospective buyers needed to save up - adding that 'is the way it always used to be'.", + "contentSnippet": "Sir Howard Davies made the controversial comment as he argued that prospective buyers needed to save up - adding that 'is the way it always used to be'.", + "guid": "https://www.dailymail.co.uk/news/article-12930165/NatWest-Howard-Davies-banker-difficult-house-homes-property-ladder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:51:58.000Z" + }, + { + "title": "The best-selling new cars and brands of 2023: Is your motor among the 10 most popular models?", + "link": "https://www.dailymail.co.uk/money/cars/article-12923361/Best-selling-new-cars-brands-2023-REVEALED.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:44:52 GMT", + "enclosure": { + "length": "12204", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651657-0-image-m-47_1704453653007.jpg" + }, + "content": "Registrations data collated by the SMMT lists the top models by sales figures in Britain last year - and among the 10 most in-demand motors is three British-built cars.", + "contentSnippet": "Registrations data collated by the SMMT lists the top models by sales figures in Britain last year - and among the 10 most in-demand motors is three British-built cars.", + "guid": "https://www.dailymail.co.uk/money/cars/article-12923361/Best-selling-new-cars-brands-2023-REVEALED.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:44:52.000Z" + }, + { + "title": "Kate Garraway's ITV co-stars Alison Hammond and Dermot O'Leary choke back tears announcing the death of her husband Derek Draper live on air as they lead ITV tributes", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12930067/kate-garraway-derek-draper-death-alison-hammond-dermont-oleary-announcement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:40:01 GMT", + "enclosure": { + "length": "11720", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79656177-0-image-m-89_1704461955063.jpg" + }, + "content": "Kate, 56, revealed in an Instagram post moments earlier that Derek had died aged 56 after suffering a heart attack before Christmas following a long battle with Covid.", + "contentSnippet": "Kate, 56, revealed in an Instagram post moments earlier that Derek had died aged 56 after suffering a heart attack before Christmas following a long battle with Covid.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12930067/kate-garraway-derek-draper-death-alison-hammond-dermont-oleary-announcement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:40:01.000Z" + }, + { + "title": "His resilience, paired with her endless love and courage, inspired millions: As Kate Garraway's husband Derek Draper tragically passes away after four-year battle with Covid - he will leave a lasting legacy, writes CHRISTOPHER STEPHENS", + "link": "https://www.dailymail.co.uk/news/article-12930191/kate-garraway-derek-draper-covid-health-struggle-tragic-death-devotion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:36:13 GMT", + "enclosure": { + "length": "9497", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79655599-0-image-m-48_1704460438577.jpg" + }, + "content": "The former political adviser and businessman survived a devastating bout of Covid at the beginning of the pandemic, and kept battling through months of therapy until he was able to be nursed at home.", + "contentSnippet": "The former political adviser and businessman survived a devastating bout of Covid at the beginning of the pandemic, and kept battling through months of therapy until he was able to be nursed at home.", + "guid": "https://www.dailymail.co.uk/news/article-12930191/kate-garraway-derek-draper-covid-health-struggle-tragic-death-devotion.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:36:13.000Z" + }, + { + "title": "Oscar Pistorius's family hold summit to plan his new life, security and career - after working as a cleaner and tractor driver in prison - as the grey-haired, chain-smoking murderer is released from jail", + "link": "https://www.dailymail.co.uk/news/article-12930171/Oscar-pistorius-family-summit-plan-prison-murderer-new-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:31:19 GMT", + "enclosure": { + "length": "9964", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79656017-0-image-m-116_1704460459030.jpg" + }, + "content": "EXCLUSIVE: Oscar Pistorius 's relatives are to hold a family summit to plan a life for him now he is out of prison - and manage a strategy to keep him safe, MailOnline has learned.", + "contentSnippet": "EXCLUSIVE: Oscar Pistorius 's relatives are to hold a family summit to plan a life for him now he is out of prison - and manage a strategy to keep him safe, MailOnline has learned.", + "guid": "https://www.dailymail.co.uk/news/article-12930171/Oscar-pistorius-family-summit-plan-prison-murderer-new-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:31:19.000Z" + }, + { + "title": "How Derek Draper fought long Covid for years after he caught it age 52 and was left in a coma and battling sepsis", + "link": "https://www.dailymail.co.uk/health/article-12930093/Derek-Drapers-long-Covid-battle-detailed-dies-aged-56.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:30:41 GMT", + "enclosure": { + "length": "7910", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79458315-0-image-m-14_1704456438387.jpg" + }, + "content": "Derek had been plagued with extended health woes after contracting the Covid virus in March 2020, an infection which saw him put in a coma, battle sepsis and left with difficulties communicating.", + "contentSnippet": "Derek had been plagued with extended health woes after contracting the Covid virus in March 2020, an infection which saw him put in a coma, battle sepsis and left with difficulties communicating.", + "guid": "https://www.dailymail.co.uk/health/article-12930093/Derek-Drapers-long-Covid-battle-detailed-dies-aged-56.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:30:41.000Z" + }, + { + "title": "Kate Garraway and Derek Draper's last outing together: GMB star and her seriously ill husband attended wedding of his ex-boss Peter Mandelson two months before he tragically lost Covid battle", + "link": "https://www.dailymail.co.uk/news/article-12930115/Kate-Garraway-Derek-Drapers-outing-GMB-star-seriously-ill-husband-attended-wedding-ex-boss-Peter-Mandelson-two-months-tragically-lost-Covid-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:30:09 GMT", + "enclosure": { + "length": "8992", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79653099-0-Derek_Draper_s_final_outing_with_his_wife_Kate_Garraway_was_at_t-a-26_1704460101357.jpg" + }, + "content": "The former political aide, who has died aged 56 following a long battle with Covid, was seen sitting in a wheelchair next to his wife as he clasped Lord Mandelson's hand.", + "contentSnippet": "The former political aide, who has died aged 56 following a long battle with Covid, was seen sitting in a wheelchair next to his wife as he clasped Lord Mandelson's hand.", + "guid": "https://www.dailymail.co.uk/news/article-12930115/Kate-Garraway-Derek-Drapers-outing-GMB-star-seriously-ill-husband-attended-wedding-ex-boss-Peter-Mandelson-two-months-tragically-lost-Covid-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:30:09.000Z" + }, + { + "title": "Sophie Ellis-Bextor reveals hilarious (and clueless!) questions she is asked about Murder On The Dancefloor after THAT Saltburn scene landed the 2001 track back in charts", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12929745/Sophie-Ellis-Bextor-reveals-hilarious-clueless-questions-asked-Murder-Dancefloor-Saltburn-scene-landed-2001-track-charts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:29:09 GMT", + "enclosure": { + "length": "9509", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651103-0-image-m-70_1704452769086.jpg" + }, + "content": "\u00a0Her 2001 hit Murder On The Dancefloor has clattered back into the charts due to the success of edgy thriller Saltburn.\u00a0", + "contentSnippet": "Her 2001 hit Murder On The Dancefloor has clattered back into the charts due to the success of edgy thriller Saltburn.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12929745/Sophie-Ellis-Bextor-reveals-hilarious-clueless-questions-asked-Murder-Dancefloor-Saltburn-scene-landed-2001-track-charts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:29:09.000Z" + }, + { + "title": "The one man who has beaten Storm Henk floods: Homeowner built wall and installed pumps to keep his home dry after home was swamped 11 times since 2016", + "link": "https://www.dailymail.co.uk/news/article-12929993/The-one-man-beaten-Storm-Henk-floods-Homeowner-built-wall-installed-pumps-home-dry-home-swamped-11-times-2016.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:28:07 GMT", + "enclosure": { + "length": "9182", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653309-0-image-m-85_1704457865435.jpg" + }, + "content": "A retired engineer has built a 7-ft high wall to protect his \u00a3600,000 property from the Storm Henk flooding. Nick Lupton, 60, has had his house and land flooded 11 times since moving to Pixham in 2016.", + "contentSnippet": "A retired engineer has built a 7-ft high wall to protect his \u00a3600,000 property from the Storm Henk flooding. Nick Lupton, 60, has had his house and land flooded 11 times since moving to Pixham in 2016.", + "guid": "https://www.dailymail.co.uk/news/article-12929993/The-one-man-beaten-Storm-Henk-floods-Homeowner-built-wall-installed-pumps-home-dry-home-swamped-11-times-2016.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:28:07.000Z" + }, + { + "title": "Kate Garraway's husband Derek Draper dies aged 56 after long Covid battle", + "link": "https://www.dailymail.co.uk/news/article-12930001/derek-draper-dead-kate-garraway-husband-covid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:26:57 GMT", + "enclosure": { + "length": "6447", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653831-0-image-m-67_1704458734225.jpg" + }, + "content": "The Good Morning Britain star announced the passing of her husband on Instagram this morning.", + "contentSnippet": "The Good Morning Britain star announced the passing of her husband on Instagram this morning.", + "guid": "https://www.dailymail.co.uk/news/article-12930001/derek-draper-dead-kate-garraway-husband-covid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:26:57.000Z" + }, + { + "title": "Oscar Pistorius CAN restore his image and even attract sponsorship deals now he is out of prison, specialists say, as they reveal the one thing he needs to do most to get brands back on side", + "link": "https://www.dailymail.co.uk/news/article-12929839/Oscar-pistorius-sponsorship-prison-expert-brands.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:26:52 GMT", + "enclosure": { + "length": "5346", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652415-0-image-m-65_1704454642630.jpg" + }, + "content": "Oscar Pistorius can restore his image and even attract sponsorship deals now he is out of prison some 11 years after he shot dead his girlfriend, specialists have said.", + "contentSnippet": "Oscar Pistorius can restore his image and even attract sponsorship deals now he is out of prison some 11 years after he shot dead his girlfriend, specialists have said.", + "guid": "https://www.dailymail.co.uk/news/article-12929839/Oscar-pistorius-sponsorship-prison-expert-brands.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:26:52.000Z" + }, + { + "title": "American TikToker stuns Britons with her near-perfect South London accent - as people joke she must have been born in Southwark", + "link": "https://www.dailymail.co.uk/femail/article-12929413/American-TikToker-stuns-Britons-near-perfect-South-London-accent-people-joke-born-Southwark.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:26:09 GMT", + "enclosure": { + "length": "9600", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651335-0-image-a-19_1704452837558.jpg" + }, + "content": "One Maryland TikToker, who goes by @_.itsmona has lived in the US 'her entire life' but perfected her British accent to the point that she sounds like 'a South London babe' in a recent clip.", + "contentSnippet": "One Maryland TikToker, who goes by @_.itsmona has lived in the US 'her entire life' but perfected her British accent to the point that she sounds like 'a South London babe' in a recent clip.", + "guid": "https://www.dailymail.co.uk/femail/article-12929413/American-TikToker-stuns-Britons-near-perfect-South-London-accent-people-joke-born-Southwark.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:26:09.000Z" + }, + { + "title": "Rishi Sunak 'gambles on Spring interest rate and tax cuts to deliver Autumn election victory for Tories' as he hopes feelgood factor will come to his rescue", + "link": "https://www.dailymail.co.uk/news/article-12929391/Rishi-Sunak-election-Tories-Labour-tax-mortgages.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:25:12 GMT", + "enclosure": { + "length": "5645", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79647497-0-image-m-6_1704444569290.jpg" + }, + "content": "Rishi Sunak dramatically moved to kill speculation about a May election yesterday, saying his plan was to trigger a ballot in the 'second half of the year'.", + "contentSnippet": "Rishi Sunak dramatically moved to kill speculation about a May election yesterday, saying his plan was to trigger a ballot in the 'second half of the year'.", + "guid": "https://www.dailymail.co.uk/news/article-12929391/Rishi-Sunak-election-Tories-Labour-tax-mortgages.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:25:12.000Z" + }, + { + "title": "Kate Garraway says 'I was so lucky to have you in my life' in emotional tribute to husband Derek Draper following weeks-long vigil by his bedside - after cancelling all her TV commitments to be with him in his final days", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12930029/Kate-garraway-derek-draper-shopping-husband-final-days-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:24:29 GMT", + "enclosure": { + "length": "11731", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/30/09/79458187-0-image-a-32_1703929474139.jpg" + }, + "content": "The presenter,\u00a056, was seen on December 30 leaving a north London Tesco in a Santa hat with several bags of food after cancelling all of her TV work commitments to be at Derek's hospital bedside.", + "contentSnippet": "The presenter,\u00a056, was seen on December 30 leaving a north London Tesco in a Santa hat with several bags of food after cancelling all of her TV work commitments to be at Derek's hospital bedside.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12930029/Kate-garraway-derek-draper-shopping-husband-final-days-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:24:29.000Z" + }, + { + "title": "Prince Andrew faces MORE allegations in fresh Epstein files: New documents claim Duke 'knew paedophile financier and Ghislaine Maxwell were sex trafficking children' - after royal was reported to police over latest bombshell claims", + "link": "https://www.dailymail.co.uk/news/article-12929723/prince-andrew-jeffrey-epstein-list-allegations-sex-trafficking-police.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:23:36 GMT", + "enclosure": { + "length": "9156", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79639137-0-image-m-25_1704453490317.jpg" + }, + "content": "A second batch of unsealed files relating to Epstein's sexual abuse of teenage girls was released in the US last night.", + "contentSnippet": "A second batch of unsealed files relating to Epstein's sexual abuse of teenage girls was released in the US last night.", + "guid": "https://www.dailymail.co.uk/news/article-12929723/prince-andrew-jeffrey-epstein-list-allegations-sex-trafficking-police.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:23:36.000Z" + }, + { + "title": "'You little weasel!' Wild moment Delta Air Lines passenger erupts at staff in vicious f-bomb-laden tirade before telling witnesses 'she's on her period' as she's carted off by cops", + "link": "https://www.dailymail.co.uk/news/article-12927577/Delta-airlines-flight-passenger-wild-meltdown-delay.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:23:23 GMT", + "enclosure": { + "length": "4621", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79629595-0-image-m-55_1704402955196.jpg" + }, + "content": "The flight, between Atlanta and Rochester, New York, was held up at\u00a0Gate B14 of Hartsfield-Jackson Atlanta International Airport on Monday when the female passenger began screaming.", + "contentSnippet": "The flight, between Atlanta and Rochester, New York, was held up at\u00a0Gate B14 of Hartsfield-Jackson Atlanta International Airport on Monday when the female passenger began screaming.", + "guid": "https://www.dailymail.co.uk/news/article-12927577/Delta-airlines-flight-passenger-wild-meltdown-delay.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:23:23.000Z" + }, + { + "title": "Slay! Dragon's Den mogul Sara Davies tells brothers behind \u00a35M pre-loved fashion empire 'you don't need me' - saying bedroom start-up that began when their sister asked for designer trainers is already too successful", + "link": "https://www.dailymail.co.uk/femail/article-12930019/Luxe-Collective-brothers-created-pre-loved-empire-worth-6-5M.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:21:34 GMT", + "enclosure": { + "length": "9801", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654403-0-image-a-4_1704458834469.jpg" + }, + "content": "Luxe Collective was founded by Joe and Ben Gallagher, from Formby, after their mother managed to buy a pair of \u00a3400 trainers for just \u00a3100 online for their sister one Christmas.", + "contentSnippet": "Luxe Collective was founded by Joe and Ben Gallagher, from Formby, after their mother managed to buy a pair of \u00a3400 trainers for just \u00a3100 online for their sister one Christmas.", + "guid": "https://www.dailymail.co.uk/femail/article-12930019/Luxe-Collective-brothers-created-pre-loved-empire-worth-6-5M.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:21:34.000Z" + }, + { + "title": "New Labour spin doctor who won heart of Kate Garraway: How Derek Draper and TV star wife formed one of Britain's most prominent media power couples - before he bravely fought three-year Covid battle", + "link": "https://www.dailymail.co.uk/news/article-12930097/derek-draper-kate-garraway-media-power-couple-uk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:17:36 GMT", + "enclosure": { + "length": "6150", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653305-0-image-m-21_1704456514115.jpg" + }, + "content": "The New Labour spin doctor reached great heights of influence in the 1990s but became best known for his involvement in the 'lobbygate' scandal.", + "contentSnippet": "The New Labour spin doctor reached great heights of influence in the 1990s but became best known for his involvement in the 'lobbygate' scandal.", + "guid": "https://www.dailymail.co.uk/news/article-12930097/derek-draper-kate-garraway-media-power-couple-uk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:17:36.000Z" + }, + { + "title": "REVEALED: Jude Bellingham is the world's most valuable player at \u00a3230m, according to stats boffins... but can you guess which two other English stars make the top 10?", + "link": "https://www.dailymail.co.uk/sport/football/article-12929713/Jude-Bellingham-worlds-valuable-player-English.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:17:07 GMT", + "enclosure": { + "length": "10941", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79650925-0-image-a-6_1704451972313.jpg" + }, + "content": "This has been calculated by looking into the value of more than 6,000 transfer deals and the prices paid in the past for players with similar characteristics.", + "contentSnippet": "This has been calculated by looking into the value of more than 6,000 transfer deals and the prices paid in the past for players with similar characteristics.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12929713/Jude-Bellingham-worlds-valuable-player-English.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:17:07.000Z" + }, + { + "title": "Your ultimate guide to what to watch On Demand this weekend - from our picks of the week to the hottest new releases", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12929951/ultimate-guide-watch-Demand-weekend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:16:10 GMT", + "enclosure": { + "length": "11763", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653813-0-image-m-12_1704459556687.jpg" + }, + "content": "From gripping thrillers to intrepid travelogues, check out our critics' picks of the best films and shows to watch On Demand right now.", + "contentSnippet": "From gripping thrillers to intrepid travelogues, check out our critics' picks of the best films and shows to watch On Demand right now.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12929951/ultimate-guide-watch-Demand-weekend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:16:10.000Z" + }, + { + "title": "Passenger is found dead in plane toilet during flight from Tenerife to Manchester", + "link": "https://www.dailymail.co.uk/news/article-12929893/passenger-dead-plane-toilet-tenerife-manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:14:56 GMT", + "enclosure": { + "length": "7304", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79655749-0-image-a-14_1704459116170.jpg" + }, + "content": "During the journey to Manchester airport (pictured), travellers noticed the cubicle had been locked for some time, prompting them to alert staff. The plane was diverted to land in Cork.", + "contentSnippet": "During the journey to Manchester airport (pictured), travellers noticed the cubicle had been locked for some time, prompting them to alert staff. The plane was diverted to land in Cork.", + "guid": "https://www.dailymail.co.uk/news/article-12929893/passenger-dead-plane-toilet-tenerife-manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:14:56.000Z" + }, + { + "title": "Spanish holiday regions reintroduce Covid-mask rules after seeing surge in cases", + "link": "https://www.dailymail.co.uk/news/article-12929711/Spanish-holiday-region-reintroduces-Covid-mask-rules-seeing-surge-cases.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:13:49 GMT", + "enclosure": { + "length": "7183", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649693-0-image-m-77_1704449755061.jpg" + }, + "content": "The Covid and flu epidemic in Spain is becoming so bad that a number of holiday regions are reintroducing the obligatory mask-wearing rule in certain circumstances (file image).", + "contentSnippet": "The Covid and flu epidemic in Spain is becoming so bad that a number of holiday regions are reintroducing the obligatory mask-wearing rule in certain circumstances (file image).", + "guid": "https://www.dailymail.co.uk/news/article-12929711/Spanish-holiday-region-reintroduces-Covid-mask-rules-seeing-surge-cases.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:13:49.000Z" + }, + { + "title": "Loch Ness Monstered? Campaign launched to stop the development of further pumped storage hydro schemes in the water amid fears it could harm fish - and maybe even Nessie", + "link": "https://www.dailymail.co.uk/news/article-12930211/Loch-Ness-Monstered-Campaign-launched-stop-development-pumped-storage-hydro-schemes-water-fears-harm-fish-Nessie.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:13:36 GMT", + "enclosure": { + "length": "8699", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79655509-0-image-a-54_1704459344353.jpg" + }, + "content": "A campaign has been launched calling for an immediate halt on the development of further pumped storage hydro schemes in the Loch Ness water over fears it could harm its wild fish.", + "contentSnippet": "A campaign has been launched calling for an immediate halt on the development of further pumped storage hydro schemes in the Loch Ness water over fears it could harm its wild fish.", + "guid": "https://www.dailymail.co.uk/news/article-12930211/Loch-Ness-Monstered-Campaign-launched-stop-development-pumped-storage-hydro-schemes-water-fears-harm-fish-Nessie.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:13:36.000Z" + }, + { + "title": "Jeffrey Epstein list LIVE: Model who killed herself after being flown to 'paedo island' is named in docs as more court files emerge and Prince Andrew is reported to police", + "link": "https://www.dailymail.co.uk/news/article-12929455/Jeffrey-epstein-list-updates-prince-andrew-king-charles-court-documents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:11:03 GMT", + "enclosure": { + "length": "4048", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652533-0-image-m-9_1704454821017.jpg" + }, + "content": "Follow MailOnline's live coverage after the second set of bombshell court documents detailing the connections of the late pedophile financier Jeffrey Epstein were released.", + "contentSnippet": "Follow MailOnline's live coverage after the second set of bombshell court documents detailing the connections of the late pedophile financier Jeffrey Epstein were released.", + "guid": "https://www.dailymail.co.uk/news/article-12929455/Jeffrey-epstein-list-updates-prince-andrew-king-charles-court-documents.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:11:03.000Z" + }, + { + "title": "Rare matchday programme for Manchester United game meant to be played two days after the Munich air disaster could net thousands of pounds at auction", + "link": "https://www.dailymail.co.uk/news/article-12929837/Manchester-united-game-matchday-programme-munich-air-disaster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:10:03 GMT", + "enclosure": { + "length": "8254", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79655123-0-image-m-85_1704460019127.jpg" + }, + "content": "The 'Holy Grail' of football programmes was made for the team's cancelled game against Wolverhampton Wanderers at Old Trafford on February 8, 1958.", + "contentSnippet": "The 'Holy Grail' of football programmes was made for the team's cancelled game against Wolverhampton Wanderers at Old Trafford on February 8, 1958.", + "guid": "https://www.dailymail.co.uk/news/article-12929837/Manchester-united-game-matchday-programme-munich-air-disaster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:10:03.000Z" + }, + { + "title": "Princess Beatrice visits Prince Andrew at the Royal Lodge hours after newly released files claim he knew\u00a0Jefferey Epstein and Ghislaine Maxwell were trafficking children for sex and 'took part in underage orgy on billionaire's private island'", + "link": "https://www.dailymail.co.uk/femail/article-12930129/Princess-Beatrice-visits-Prince-Andrew-Royal-Lodge-hours-newly-released-files-claim-knew-Jefferey-Epstein-Ghislaine-Maxwell-trafficking-children-sex-took-underage-orgy-billionaires-private-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:09:58 GMT", + "enclosure": { + "length": "9270", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654901-0-image-a-5_1704458417799.jpg" + }, + "content": "Beatrice, 35, smiled as she was driven into the home her divorced parents share, showing no sign of turmoil within the Firm.", + "contentSnippet": "Beatrice, 35, smiled as she was driven into the home her divorced parents share, showing no sign of turmoil within the Firm.", + "guid": "https://www.dailymail.co.uk/femail/article-12930129/Princess-Beatrice-visits-Prince-Andrew-Royal-Lodge-hours-newly-released-files-claim-knew-Jefferey-Epstein-Ghislaine-Maxwell-trafficking-children-sex-took-underage-orgy-billionaires-private-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:09:58.000Z" + }, + { + "title": "Sleep gurus now say we need SEVEN different types of rest every week - how much are you getting?", + "link": "https://www.dailymail.co.uk/wellness-us/article-12927761/seven-different-types-rest-need.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:06:59 GMT", + "enclosure": { + "length": "4949", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79630391-0-image-a-4_1704457158146.jpg" + }, + "content": "Doctors are now suggesting that there are seven types of rest we have to replenish every week. These include physical, mental, social, and even spiritual rest.", + "contentSnippet": "Doctors are now suggesting that there are seven types of rest we have to replenish every week. These include physical, mental, social, and even spiritual rest.", + "guid": "https://www.dailymail.co.uk/wellness-us/article-12927761/seven-different-types-rest-need.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:06:59.000Z" + }, + { + "title": "Month-old baby girl suffered cardiac arrest and died after medics made 'error' giving her heart drugs as parents say tragedy was their 'worst imaginable nightmare'", + "link": "https://www.dailymail.co.uk/news/article-12930117/baby-girl-cardiac-arrest-medics-error-drugs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:06:49 GMT", + "enclosure": { + "length": "8206", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/13/79655885-0-image-m-9_1704459602125.jpg" + }, + "content": "Parents Amber Cutts, 36, and Lee Clayton, 29, have spoken of their 'worst imaginable nightmare' after little Orla passed away just an hour after being given adenosine.", + "contentSnippet": "Parents Amber Cutts, 36, and Lee Clayton, 29, have spoken of their 'worst imaginable nightmare' after little Orla passed away just an hour after being given adenosine.", + "guid": "https://www.dailymail.co.uk/news/article-12930117/baby-girl-cardiac-arrest-medics-error-drugs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:06:49.000Z" + }, + { + "title": "Disabled grandmother, 59, is hit with \u00a3100 parking fine despite having proof she still had two hours left on her car park ticket", + "link": "https://www.dailymail.co.uk/news/article-12929669/disabled-grandmother-parking-fine-time-ticket-proof.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:04:58 GMT", + "enclosure": { + "length": "10595", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649481-0-image-m-25_1704448846247.jpg" + }, + "content": "Jacquie Wright, 59, was told she had not bought a ticket when she left her red Renault in a car park in Evesham, Worcestershire. But she had paid \u00a32 for a three-hour stay.", + "contentSnippet": "Jacquie Wright, 59, was told she had not bought a ticket when she left her red Renault in a car park in Evesham, Worcestershire. But she had paid \u00a32 for a three-hour stay.", + "guid": "https://www.dailymail.co.uk/news/article-12929669/disabled-grandmother-parking-fine-time-ticket-proof.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:04:58.000Z" + }, + { + "title": "This Morning viewers left baffled by show's bizarre tips on how to eat your Christmas tree: 'Why would anybody do that?'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12930003/This-Morning-viewers-DISGUSTED-eat-Christmas-tree.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:02:28 GMT", + "enclosure": { + "length": "11023", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79653013-0-image-a-93_1704455558056.jpg" + }, + "content": "Hosts Alison Hammond , 48, and Dermot O'Leary , 50,\u00a0tucked into recipes from a cookbook called How To Eat Your Christmas Tree by chef Julia Georgallis.", + "contentSnippet": "Hosts Alison Hammond , 48, and Dermot O'Leary , 50,\u00a0tucked into recipes from a cookbook called How To Eat Your Christmas Tree by chef Julia Georgallis.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12930003/This-Morning-viewers-DISGUSTED-eat-Christmas-tree.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:02:28.000Z" + }, + { + "title": "XL Bully owners hold candlelit vigil for the pets 'who didn't make it' as Rishi Sunak's ban on the breed comes into force", + "link": "https://www.dailymail.co.uk/news/article-12929887/xl-bully-owners-candlelit-vigil-rishi-sunak-ban-breed-dog.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 13:01:04 GMT", + "enclosure": { + "length": "6869", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654023-0-image-m-17_1704457570533.jpg" + }, + "content": "The 'sombre' vigil, held in Pencester Gardens in Dover, was attended by approximately 40 people on New Year's Day for the dogs that had been put to sleep.", + "contentSnippet": "The 'sombre' vigil, held in Pencester Gardens in Dover, was attended by approximately 40 people on New Year's Day for the dogs that had been put to sleep.", + "guid": "https://www.dailymail.co.uk/news/article-12929887/xl-bully-owners-candlelit-vigil-rishi-sunak-ban-breed-dog.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T13:01:04.000Z" + }, + { + "title": "Clever mother fed up of shouting to her sons to come downstairs for meals fits doorbell line up to them to ring in the changes", + "link": "https://www.dailymail.co.uk/news/article-12929883/mother-shouting-sons-come-downstairs-meals-fits-doorbell-line-ring-changes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:58:30 GMT", + "enclosure": { + "length": "6506", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653037-0-image-m-45_1704457448659.jpg" + }, + "content": "Shelley Walker was sick of calling up the stairs to her three boys that dinner was ready - and being constantly ignored. So she installed doorbells for each of her children instead.", + "contentSnippet": "Shelley Walker was sick of calling up the stairs to her three boys that dinner was ready - and being constantly ignored. So she installed doorbells for each of her children instead.", + "guid": "https://www.dailymail.co.uk/news/article-12929883/mother-shouting-sons-come-downstairs-meals-fits-doorbell-line-ring-changes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:58:30.000Z" + }, + { + "title": "Rollercoaster thrill-seekers are stuck 100ft in the air as ride breaks down with their seats facing straight up", + "link": "https://www.dailymail.co.uk/news/article-12929999/Rollercoaster-thrill-seekers-stuck-100ft-Colombia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:55:20 GMT", + "enclosure": { + "length": "6051", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79654083-0-image-m-10_1704457445401.jpg" + }, + "content": "The rollercoaster, named Krater, stopped working at the Parque del Caf\u00e9, in Montenegro, west of Bogota, Colombia, on January 3.", + "contentSnippet": "The rollercoaster, named Krater, stopped working at the Parque del Caf\u00e9, in Montenegro, west of Bogota, Colombia, on January 3.", + "guid": "https://www.dailymail.co.uk/news/article-12929999/Rollercoaster-thrill-seekers-stuck-100ft-Colombia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:55:20.000Z" + }, + { + "title": "'Patronising' NHS menopause advice is too critical of HRT, says Davina McCall", + "link": "https://www.dailymail.co.uk/health/article-12929683/Davina-McCall-Patronising-NHS-menopause-advice-critical-HRT.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:49:45 GMT", + "enclosure": { + "length": "5726", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79650949-0-image-m-8_1704458975155.jpg" + }, + "content": "Davina McCall has joined calls for the NHS's treatment watchdog to make changes to its draft menopause guidance, with the TV presenter saying it is unbalanced against HRT treatments.", + "contentSnippet": "Davina McCall has joined calls for the NHS's treatment watchdog to make changes to its draft menopause guidance, with the TV presenter saying it is unbalanced against HRT treatments.", + "guid": "https://www.dailymail.co.uk/health/article-12929683/Davina-McCall-Patronising-NHS-menopause-advice-critical-HRT.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:49:45.000Z" + }, + { + "title": "German tourists are awarded compensation after losing sunbed battle at Greek hotel: Family who could not get a lounger will receive \u00a3280", + "link": "https://www.dailymail.co.uk/news/article-12929799/German-tourists-awarded-compensation-sunbed-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:46:47 GMT", + "enclosure": { + "length": "12538", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79650567-0-image-m-39_1704453626298.jpg" + }, + "content": "The plaintiffs, who spent \u00a34,532 on the break last summer, told the court in Hanover, Germany, that staff at the TUI Kids Club Atlantica Mikri Poli hotel failed to implement their no-hogging policy.", + "contentSnippet": "The plaintiffs, who spent \u00a34,532 on the break last summer, told the court in Hanover, Germany, that staff at the TUI Kids Club Atlantica Mikri Poli hotel failed to implement their no-hogging policy.", + "guid": "https://www.dailymail.co.uk/news/article-12929799/German-tourists-awarded-compensation-sunbed-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:46:47.000Z" + }, + { + "title": "'The Fred and Rose West of football commentary': Outrage as Joey Barton makes sickening jibe at ITV's two female FA Cup pundits", + "link": "https://www.dailymail.co.uk/sport/football/article-12929489/Joey-Barton-attacks-ITVs-FA-Cup-round-punditry-team-sick-taunt-Eni-Aluko-commentator-Lucy-Ward-claims-coverage-reached-new-low.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:44:52 GMT", + "enclosure": { + "length": "10138", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79648053-0-image-a-29_1704445078329.jpg" + }, + "content": "The former Man City and Newcastle midfielder has come under intense scrutiny in recent weeks for his controversial views on women working in men's football in a string of social media tirades.", + "contentSnippet": "The former Man City and Newcastle midfielder has come under intense scrutiny in recent weeks for his controversial views on women working in men's football in a string of social media tirades.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12929489/Joey-Barton-attacks-ITVs-FA-Cup-round-punditry-team-sick-taunt-Eni-Aluko-commentator-Lucy-Ward-claims-coverage-reached-new-low.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:44:52.000Z" + }, + { + "title": "The Hamas 'CEO' who payrolled October 7 rapists and murderers: Former gang leader Zaher Jabarin runs terror group's financial operations from Turkish office and runs half-a-billion-dollar empire", + "link": "https://www.dailymail.co.uk/news/article-12929635/The-Hamas-CEO-payrolled-October-7-rapists-murderers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:44:48 GMT", + "enclosure": { + "length": "4703", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649649-0-image-m-18_1704450449108.jpg" + }, + "content": "Zaher Jabarin oversees the Hamas finance empire that is estimated to be worth half a billion dollars, and which funds the group's military operations.", + "contentSnippet": "Zaher Jabarin oversees the Hamas finance empire that is estimated to be worth half a billion dollars, and which funds the group's military operations.", + "guid": "https://www.dailymail.co.uk/news/article-12929635/The-Hamas-CEO-payrolled-October-7-rapists-murderers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:44:48.000Z" + }, + { + "title": "Home seller parks \u00a33million Ferrari in their living room to advertise Grade II-listed property - which is worth \u00a3500,000 less than the supercar", + "link": "https://www.dailymail.co.uk/property/article-12929833/home-seller-ferrari-living-room-property-advertisement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:41:15 GMT", + "enclosure": { + "length": "9177", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79650977-0-image-a-56_1704453883725.jpg" + }, + "content": "Potential buyers were left aghast after house seller drove a \u00a33m Ferrari into their living room for the estate agent's pictures and incredibly it's worth \u00a3500,000 MORE than the bricks and mortar.", + "contentSnippet": "Potential buyers were left aghast after house seller drove a \u00a33m Ferrari into their living room for the estate agent's pictures and incredibly it's worth \u00a3500,000 MORE than the bricks and mortar.", + "guid": "https://www.dailymail.co.uk/property/article-12929833/home-seller-ferrari-living-room-property-advertisement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:41:15.000Z" + }, + { + "title": "'It isn't difficult to get on the housing ladder at the moment,' says knighted bank boss", + "link": "https://www.dailymail.co.uk/property/article-12929945/It-isnt-difficult-housing-ladder-moment-says-knighted-bank-boss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:39:58 GMT", + "enclosure": { + "length": "10407", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653819-0-image-a-7_1704456790519.jpg" + }, + "content": "Natwest chairman Sir Howard Davies was speaking on BBC 4's Today radio programme after being asked by the show's presenter Amol Rajan about Britain's housing market.", + "contentSnippet": "Natwest chairman Sir Howard Davies was speaking on BBC 4's Today radio programme after being asked by the show's presenter Amol Rajan about Britain's housing market.", + "guid": "https://www.dailymail.co.uk/property/article-12929945/It-isnt-difficult-housing-ladder-moment-says-knighted-bank-boss.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:39:58.000Z" + }, + { + "title": "Sue Radford complains of an 'awful' trip home from family holiday to Disneyland Paris after Storm Henk disrupted travel in the English Channel", + "link": "https://www.dailymail.co.uk/femail/article-12929751/Sue-Radford-complains-awful-trip-home-family-holiday-Disneyland-Paris-Storm-Henk-disrupted-travel-English-Channel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:39:27 GMT", + "enclosure": { + "length": "11323", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652847-0-image-a-51_1704455358013.jpg" + }, + "content": "The mother from Morecambe, Lancs, told her 518,000 Instagram followers of how she ended her\u00a0family's 23rd holiday in 24 months - to Disneyland Paris\u00a0on an 'awful' note.", + "contentSnippet": "The mother from Morecambe, Lancs, told her 518,000 Instagram followers of how she ended her\u00a0family's 23rd holiday in 24 months - to Disneyland Paris\u00a0on an 'awful' note.", + "guid": "https://www.dailymail.co.uk/femail/article-12929751/Sue-Radford-complains-awful-trip-home-family-holiday-Disneyland-Paris-Storm-Henk-disrupted-travel-English-Channel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:39:27.000Z" + }, + { + "title": "Chocolate lovers go wild after Easter egg that is 'hands down the best' returns to Tesco shelves", + "link": "https://www.dailymail.co.uk/femail/article-12926607/Chocolate-lovers-wild-Easter-egg-hands-best-returns-Tesco-shelves.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:38:57 GMT", + "enclosure": { + "length": "6518", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/15/79616351-0-image-a-18_1704381185588.jpg" + }, + "content": "Now that Christmas is over UK supermarkets are already in a rush to flog their Easter stock. Nestle fans are already raving about their favourite Easter egg claiming it is 'hands down the best' one.", + "contentSnippet": "Now that Christmas is over UK supermarkets are already in a rush to flog their Easter stock. Nestle fans are already raving about their favourite Easter egg claiming it is 'hands down the best' one.", + "guid": "https://www.dailymail.co.uk/femail/article-12926607/Chocolate-lovers-wild-Easter-egg-hands-best-returns-Tesco-shelves.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:38:57.000Z" + }, + { + "title": "Storm Henk flood chaos: Map reveals where sewage has been discharged into the sea at nearly 100 south coast beaches after rain and heavy winds battered Britain", + "link": "https://www.dailymail.co.uk/news/article-12929743/storm-henk-flood-chaos-sewage-beaches-wind-rain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:37:35 GMT", + "enclosure": { + "length": "9571", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651853-0-image-m-8_1704453779658.jpg" + }, + "content": "Popular seaside tourist spots including Hove, Folkestone and Newquay were among those drenched in filth after the heavy downpours of rain in recent days.", + "contentSnippet": "Popular seaside tourist spots including Hove, Folkestone and Newquay were among those drenched in filth after the heavy downpours of rain in recent days.", + "guid": "https://www.dailymail.co.uk/news/article-12929743/storm-henk-flood-chaos-sewage-beaches-wind-rain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:37:35.000Z" + }, + { + "title": "Inside Oscar Pistorius and his murder victim Reeva Steenkamp's short-lived and 'fear-ridden' relationship as South Africa's fallen legend is released from prison after nine years", + "link": "https://www.dailymail.co.uk/news/article-12929429/oscar-pistorius-murder-victim-reeva-steenkamp-fear-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:35:38 GMT", + "enclosure": { + "length": "9645", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79647257-0-image-a-4_1704445186226.jpg" + }, + "content": "Oscar Pistorius is a free man today after being released from prison. The Olympic athlete shot and killed his model girlfriend Reeva Steenkamp in 2013 - but what was their relationship really like?", + "contentSnippet": "Oscar Pistorius is a free man today after being released from prison. The Olympic athlete shot and killed his model girlfriend Reeva Steenkamp in 2013 - but what was their relationship really like?", + "guid": "https://www.dailymail.co.uk/news/article-12929429/oscar-pistorius-murder-victim-reeva-steenkamp-fear-relationship.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:35:38.000Z" + }, + { + "title": "Two female prison staff accused of having relationship with the same inmate at the same time due in court today accused of misconduct", + "link": "https://www.dailymail.co.uk/news/article-12929895/female-prison-staff-court-misconduct-relationship-inmate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:33:45 GMT", + "enclosure": { + "length": "7278", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79651929-0-image-m-36_1704453958686.jpg" + }, + "content": "Aleesha Bates, 29, and Jodie Wilkes, 29, are both charged with misconduct in public office after allegedly 'engaging in a relationship with a prisoner' while working at HMP Buckley Hall.", + "contentSnippet": "Aleesha Bates, 29, and Jodie Wilkes, 29, are both charged with misconduct in public office after allegedly 'engaging in a relationship with a prisoner' while working at HMP Buckley Hall.", + "guid": "https://www.dailymail.co.uk/news/article-12929895/female-prison-staff-court-misconduct-relationship-inmate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:33:45.000Z" + }, + { + "title": "'Britain's most dangerous spider' strikes in Surrey: Schoolboy, 11, is rushed to hospital after a bite from a noble false widow leaves him 'delirious'", + "link": "https://www.dailymail.co.uk/sciencetech/article-12929503/Britains-dangerous-spider-strikes-Surrey-Schoolboy-11-rushed-hospital-bite-noble-false-widow-leaves-delirious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:20:13 GMT", + "enclosure": { + "length": "3269", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79648613-0-image-a-5_1704446304626.jpg" + }, + "content": "Matthew, 11, from Surrey, got an unwanted gift at Christmas when he was bitten on the back of the leg by a noble false widow.", + "contentSnippet": "Matthew, 11, from Surrey, got an unwanted gift at Christmas when he was bitten on the back of the leg by a noble false widow.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12929503/Britains-dangerous-spider-strikes-Surrey-Schoolboy-11-rushed-hospital-bite-noble-false-widow-leaves-delirious.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:20:13.000Z" + }, + { + "title": "How 'the last great Englishman' dressed for bed! Duke of Wellington's slippers and woolly night cap are set to go on display in new exhibition that also features his duelling pistols", + "link": "https://www.dailymail.co.uk/news/article-12929617/Duke-Wellington-slippers-night-cap-exhibition-Apsley-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:19:53 GMT", + "enclosure": { + "length": "7595", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649113-0-A_jaunty_pair_of_slippers_and_a_woolly_night_cap_that_were_once_-a-14_1704450790656.jpg" + }, + "content": "The slippers are in near perfect condition, with just a hint of fading and the backs trodden down from use. They are set to be displayed with other items once owned by the famed Duke.", + "contentSnippet": "The slippers are in near perfect condition, with just a hint of fading and the backs trodden down from use. They are set to be displayed with other items once owned by the famed Duke.", + "guid": "https://www.dailymail.co.uk/news/article-12929617/Duke-Wellington-slippers-night-cap-exhibition-Apsley-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:19:53.000Z" + }, + { + "title": "Mother-of-two, 29, who feared her Army sniper ex was going to kill her, painted his name on her wall in blood to help police catch him after he moved in with her during lockdown and became abusive", + "link": "https://www.dailymail.co.uk/news/article-12929667/Mother-feared-Army-sniper-ex-going-kill-painted-wall-blood-help-police.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:19:01 GMT", + "enclosure": { + "length": "9671", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79648969-0-image-m-31_1704448012299.jpg" + }, + "content": "WARNING GRAPHIC CONTENT: Emmie Dalton, 29, locked herself in her bedroom in Sheffield and managed to spell out 'JOHN' before crazed Jonathan Hunt, 34, broke down the door.", + "contentSnippet": "WARNING GRAPHIC CONTENT: Emmie Dalton, 29, locked herself in her bedroom in Sheffield and managed to spell out 'JOHN' before crazed Jonathan Hunt, 34, broke down the door.", + "guid": "https://www.dailymail.co.uk/news/article-12929667/Mother-feared-Army-sniper-ex-going-kill-painted-wall-blood-help-police.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:19:01.000Z" + }, + { + "title": "Moment brazen thieves take several bottles of wine from a Tesco store and walk out without paying as crime continues to plague Lawless London", + "link": "https://www.dailymail.co.uk/news/article-12930061/Moment-thieves-bottles-wine-Tesco-store-walk-without-paying-crime-continues-plague-Lawless-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:18:32 GMT", + "enclosure": { + "length": "6400", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/12/79653689-0-image-m-39_1704456691515.jpg" + }, + "content": "This is the moment thieves are filmed taking several bottles of wine from a Tesco store in Kilburn and walk out without paying - with security making no attempt to stop them.", + "contentSnippet": "This is the moment thieves are filmed taking several bottles of wine from a Tesco store in Kilburn and walk out without paying - with security making no attempt to stop them.", + "guid": "https://www.dailymail.co.uk/news/article-12930061/Moment-thieves-bottles-wine-Tesco-store-walk-without-paying-crime-continues-plague-Lawless-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:18:32.000Z" + }, + { + "title": "Deliciously Ella says she retreated from public life as a result of 'overwhelming trolling' and she now 'wants to be vanilla'", + "link": "https://www.dailymail.co.uk/femail/article-12926927/Deliciously-Ella-says-retreated-public-life-result-overwhelming-trolling-wants-vanilla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:11:48 GMT", + "enclosure": { + "length": "7887", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634527-0-image-a-22_1704407619102.jpg" + }, + "content": "Ella Mills, 32, the clean eating pioneer found fame for her blog while studying at St Andrew's University in 2013.", + "contentSnippet": "Ella Mills, 32, the clean eating pioneer found fame for her blog while studying at St Andrew's University in 2013.", + "guid": "https://www.dailymail.co.uk/femail/article-12926927/Deliciously-Ella-says-retreated-public-life-result-overwhelming-trolling-wants-vanilla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:11:48.000Z" + }, + { + "title": "BBC The Traitors game lets you play along with the TV show - so, can you correctly guess who's next to be murdered?", + "link": "https://www.dailymail.co.uk/sciencetech/article-12930027/BBC-Traitors-game-lets-play-TV-correctly-guess-whos-murdered.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 12:11:01 GMT", + "enclosure": { + "length": "9686", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79652317-0-image-m-27_1704454896769.jpg" + }, + "content": "The BBC has launched a new online predictor game\u00a0for 'The Traitors obsessives'.", + "contentSnippet": "The BBC has launched a new online predictor game\u00a0for 'The Traitors obsessives'.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12930027/BBC-Traitors-game-lets-play-TV-correctly-guess-whos-murdered.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T12:11:01.000Z" + }, + { + "title": "Inside the world's biggest cruise ship: Our graphic tells you all you need to know about the incredible 1,200ft-long Icon Of The Seas as it undergoes final tests ahead of maiden voyage", + "link": "https://www.dailymail.co.uk/travel/article-12927267/Inside-worlds-biggest-cruise-ship-graphic-tells-need-know-incredible-1-200ft-long-Icon-Seas-undergoes-final-tests-ahead-maiden-voyage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:59:18 GMT", + "enclosure": { + "length": "31083", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79624297-0-image-m-48_1704396492519.jpg" + }, + "content": "Locals and tourists in Puerto Rico were given a sneak peak at the 1,198 foot-long, 250,800-tonne pleasure cruiser, named the Icon of The Seas, as it took a break in port as part of its trial voyage", + "contentSnippet": "Locals and tourists in Puerto Rico were given a sneak peak at the 1,198 foot-long, 250,800-tonne pleasure cruiser, named the Icon of The Seas, as it took a break in port as part of its trial voyage", + "guid": "https://www.dailymail.co.uk/travel/article-12927267/Inside-worlds-biggest-cruise-ship-graphic-tells-need-know-incredible-1-200ft-long-Icon-Seas-undergoes-final-tests-ahead-maiden-voyage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:59:18.000Z" + }, + { + "title": "Google has turned off cookies for MILLIONS of people - how to tell if you're one of them", + "link": "https://www.dailymail.co.uk/sciencetech/article-12929427/Google-turned-cookies-MILLIONS-people-tell-youre-one-them.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:49:04 GMT", + "enclosure": { + "length": "5692", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/15/10/78997079-0-image-a-16_1702636691714.jpg" + }, + "content": "The tech giant has randomly selected one per cent of Chrome users globally - about 30 million people - to be the first to have third-party cookies turned off.", + "contentSnippet": "The tech giant has randomly selected one per cent of Chrome users globally - about 30 million people - to be the first to have third-party cookies turned off.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12929427/Google-turned-cookies-MILLIONS-people-tell-youre-one-them.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:49:04.000Z" + }, + { + "title": "RICHARD LITTLEJOHN: Here's an idea... maybe the Tories should stand down in favour of Reform UK", + "link": "https://www.dailymail.co.uk/debate/article-12927921/RICHARD-LITTLEJOHN-Heres-idea-maybe-Tories-stand-favour-Reform-UK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:34:13 GMT", + "enclosure": { + "length": "10699", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79632133-0-image-a-53_1704404128910.jpg" + }, + "content": "RICHARD LITTLEJOHN: Where is it written that the Conservative Party has a divine right to rule? Or that Tory MPs are entitled to hold on to seats, simply because Labour is too horrible to contemplate?", + "contentSnippet": "RICHARD LITTLEJOHN: Where is it written that the Conservative Party has a divine right to rule? Or that Tory MPs are entitled to hold on to seats, simply because Labour is too horrible to contemplate?", + "guid": "https://www.dailymail.co.uk/debate/article-12927921/RICHARD-LITTLEJOHN-Heres-idea-maybe-Tories-stand-favour-Reform-UK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:34:13.000Z" + }, + { + "title": "Virginia Giuffre pleaded with FBI agent to help her nail Jeffrey Epstein and 'many monsters he obliged with young girls', latest trove of court docs reveal", + "link": "https://www.dailymail.co.uk/news/article-12929461/Virginia-Giuffre-FBI-agent-jason-richards-epstein.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:32:12 GMT", + "enclosure": { + "length": "8797", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/54205569-0-Virginia_Roberts_Giuffre_holds_a_photo_of_herself_at_age_16_when-a-2_1704454048060.jpg" + }, + "content": "One of Jeffrey Epstein's most prominent victims pleaded with an FBI agent as far as back as 2014 to aid in her in quest to bring the pedophile financier to justice.", + "contentSnippet": "One of Jeffrey Epstein's most prominent victims pleaded with an FBI agent as far as back as 2014 to aid in her in quest to bring the pedophile financier to justice.", + "guid": "https://www.dailymail.co.uk/news/article-12929461/Virginia-Giuffre-FBI-agent-jason-richards-epstein.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:32:12.000Z" + }, + { + "title": "Spurned woman lied she was pregnant with her ex's baby, told him he'd 'bullied' her into having an 'abortion' before pretending she'd given birth in campaign of harassment after they split", + "link": "https://www.dailymail.co.uk/news/article-12929491/Spurned-woman-lied-pregnant-campaign-harassment-split.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:24:23 GMT", + "enclosure": { + "length": "8267", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79647633-0-image-m-11_1704448129797.jpg" + }, + "content": "Stephanie Mahoney, 32, subjected her former partner and his mother to a torrent of online abuse but has now been spared a prison sentence after going on trial at Liverpool Crown Court.", + "contentSnippet": "Stephanie Mahoney, 32, subjected her former partner and his mother to a torrent of online abuse but has now been spared a prison sentence after going on trial at Liverpool Crown Court.", + "guid": "https://www.dailymail.co.uk/news/article-12929491/Spurned-woman-lied-pregnant-campaign-harassment-split.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:24:23.000Z" + }, + { + "title": "Tate Modern puts trigger warning on a puppet show in case viewers are offended by 'violence and dead bodies'", + "link": "https://www.dailymail.co.uk/news/article-12929437/Tate-Modern-puts-trigger-warning-puppet-case-viewers-offended-violence-dead-bodies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:18:45 GMT", + "enclosure": { + "length": "10507", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79647675-0-image-a-10_1704445242685.jpg" + }, + "content": "Tate Modern has put a trigger warning on a puppet show saying that visitors may be offended as it shows 'dead bodies'. The film by Wael Shawky features puppets 'acting out historical events'.", + "contentSnippet": "Tate Modern has put a trigger warning on a puppet show saying that visitors may be offended as it shows 'dead bodies'. The film by Wael Shawky features puppets 'acting out historical events'.", + "guid": "https://www.dailymail.co.uk/news/article-12929437/Tate-Modern-puts-trigger-warning-puppet-case-viewers-offended-violence-dead-bodies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:18:45.000Z" + }, + { + "title": "The BBC's Shipping Forecast is 100 years old - and many of the regions featured make for holidays that'll blow you away!", + "link": "https://www.dailymail.co.uk/travel/article-12926013/The-BBCs-Shipping-Forecast-100-years-old-regions-featured-make-holidays-thatll-blow-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:18:02 GMT", + "enclosure": { + "length": "7712", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79610477-0-image-a-25_1704452512459.jpg" + }, + "content": "A surprising amount of land is featured in the 31 named areas of the Shipping Forecast, writes Rob Crossan who reveals 'where to stay without getting your feet wet' in five of them.", + "contentSnippet": "A surprising amount of land is featured in the 31 named areas of the Shipping Forecast, writes Rob Crossan who reveals 'where to stay without getting your feet wet' in five of them.", + "guid": "https://www.dailymail.co.uk/travel/article-12926013/The-BBCs-Shipping-Forecast-100-years-old-regions-featured-make-holidays-thatll-blow-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:18:02.000Z" + }, + { + "title": "Microsoft launches a $40 Xbox Series S TOASTER that burns the Xbox logo into your breakfast", + "link": "https://www.dailymail.co.uk/sciencetech/article-12929571/Microsoft-launches-40-Xbox-Series-S-TOASTER-burns-Xbox-logo-breakfast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:16:06 GMT", + "enclosure": { + "length": "5703", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79648463-0-image-a-45_1704452392628.jpg" + }, + "content": "For the gaming fan who truly has everything, Microsoft has now launched the Xbox Series S toaster in response to fans mocking the console's appearance.", + "contentSnippet": "For the gaming fan who truly has everything, Microsoft has now launched the Xbox Series S toaster in response to fans mocking the console's appearance.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12929571/Microsoft-launches-40-Xbox-Series-S-TOASTER-burns-Xbox-logo-breakfast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:16:06.000Z" + }, + { + "title": "Iceland bosses consider partnership with doner-loving Luke Littler as they hail his 'influential' impact which has seen kebab meat sales soar by 25pc after the teenager defied the odds to reach World Darts Championship final", + "link": "https://www.dailymail.co.uk/news/article-12929767/luke-littler-darts-world-championship-iceland-bosses-partnership-kebab-doner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:15:42 GMT", + "enclosure": { + "length": "6732", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/11/79650801-0-image-m-17_1704452699149.jpg" + }, + "content": "Darts star Luke Littler grabbed the headlines after it emerged that he enjoyed a kebab after every match. And now Iceland say their frozen doner kebab sales soared 25 per cent.", + "contentSnippet": "Darts star Luke Littler grabbed the headlines after it emerged that he enjoyed a kebab after every match. And now Iceland say their frozen doner kebab sales soared 25 per cent.", + "guid": "https://www.dailymail.co.uk/news/article-12929767/luke-littler-darts-world-championship-iceland-bosses-partnership-kebab-doner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:15:42.000Z" + }, + { + "title": "Dragons' Den fans accuse contestants of 'copying' idea from Absolutely Fabulous comedy sketch", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12929687/Dragons-Den-fans-accuse-contestants-copying-Absolutely-Fabulous.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:13:35 GMT", + "enclosure": { + "length": "10053", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649713-0-image-m-104_1704450373000.jpg" + }, + "content": "Duo Daniel and Lina appeared in front of the formidable panel with their pitch, but fans were left baffled at the unexpected Absolutely Fabulous crossover.", + "contentSnippet": "Duo Daniel and Lina appeared in front of the formidable panel with their pitch, but fans were left baffled at the unexpected Absolutely Fabulous crossover.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12929687/Dragons-Den-fans-accuse-contestants-copying-Absolutely-Fabulous.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:13:35.000Z" + }, + { + "title": "Michelle Keegan has caught the eye of Hollywood film bosses in Netflix series Fool Me Once and is set to land blockbuster movie role", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927001/Michelle-Keegan-caught-eye-Hollywood-film-bosses-Netflix-series.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:11:29 GMT", + "enclosure": { + "length": "9357", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79649243-0-image-m-27_1704448120802.jpg" + }, + "content": "Michelle Keegan has caught the eye of Hollywood film executives following the success of Netflix series Fool Me Once, MailOnline can reveal.", + "contentSnippet": "Michelle Keegan has caught the eye of Hollywood film executives following the success of Netflix series Fool Me Once, MailOnline can reveal.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927001/Michelle-Keegan-caught-eye-Hollywood-film-bosses-Netflix-series.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:11:29.000Z" + }, + { + "title": "Valentine's Day flowers fears: Industry warns of 'disaster waiting to happen' due to delays and higher costs affecting chrysanthemums, carnations and orchids unless post-Brexit checks due to start on January 31 are delayed", + "link": "https://www.dailymail.co.uk/news/article-12929809/Valentines-Day-flowers-fears-Brexit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 11:02:15 GMT", + "enclosure": { + "length": "10732", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79651067-0-image-a-54_1704452177260.jpg" + }, + "content": "Chrysanthemums, carnations and orchids are classed as 'medium risk' imports under a new regime introduced after the UK left the EU.", + "contentSnippet": "Chrysanthemums, carnations and orchids are classed as 'medium risk' imports under a new regime introduced after the UK left the EU.", + "guid": "https://www.dailymail.co.uk/news/article-12929809/Valentines-Day-flowers-fears-Brexit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T11:02:15.000Z" + }, + { + "title": "Kirstie Allsopp says detached houses should be banned because they are not 'environmentally practical' and lead to loss of community feeling", + "link": "https://www.dailymail.co.uk/news/article-12929323/Kirstie-Allsopp-says-detached-houses-banned-not-environmentally-practical-lead-loss-community-feeling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 10:55:37 GMT", + "enclosure": { + "length": "11701", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79646163-0-image-a-10_1704444104843.jpg" + }, + "content": "The TV presenter and property expert, 52, fumed that Britain's housing system is 'not fit for purpose' and is in urgent need of a review.", + "contentSnippet": "The TV presenter and property expert, 52, fumed that Britain's housing system is 'not fit for purpose' and is in urgent need of a review.", + "guid": "https://www.dailymail.co.uk/news/article-12929323/Kirstie-Allsopp-says-detached-houses-banned-not-environmentally-practical-lead-loss-community-feeling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T10:55:37.000Z" + }, + { + "title": "Luke Littler the movie! Astonishing bidding war 'erupts' over right to tell teen darts sensation's life story - with Anthony Joshua's people 'interested'", + "link": "https://www.dailymail.co.uk/news/article-12928461/Luke-Littler-movie-Astonishing-bidding-war-erupts-right-tell-teen-darts-sensations-life-story-Anthony-Joshuas-people-interested.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 10:47:48 GMT", + "enclosure": { + "length": "9406", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79638681-0-image-m-17_1704417984475.jpg" + }, + "content": "Reports suggest that Luke Litter's meteoric rise to fame has already fuelled a bidding war for the rights to recreate it on film, less than a day after his World Darts Championship final at Alexandra Palace.", + "contentSnippet": "Reports suggest that Luke Litter's meteoric rise to fame has already fuelled a bidding war for the rights to recreate it on film, less than a day after his World Darts Championship final at Alexandra Palace.", + "guid": "https://www.dailymail.co.uk/news/article-12928461/Luke-Littler-movie-Astonishing-bidding-war-erupts-right-tell-teen-darts-sensations-life-story-Anthony-Joshuas-people-interested.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T10:47:48.000Z" + }, + { + "title": "Wetherspoon game where random members of the public buy food for tables on the pub's app get 200 portions of bangers and mash and four bin bags worth of crisps and peanuts for the homeless", + "link": "https://www.dailymail.co.uk/news/article-12929641/Wetherspoons-game-random-members-public-buy-food-tables-pubs-app-200-portions-bangers-mash-four-bin-bags-worth-crisps-peanuts-homeless.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 10:40:05 GMT", + "enclosure": { + "length": "11523", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649491-0-image-m-9_1704448990750.jpg" + }, + "content": "The game involves people drinking in one of the chain's pubs posting their location and table number into a Facebook group. Then members use the app to pay to send items to total strangers.", + "contentSnippet": "The game involves people drinking in one of the chain's pubs posting their location and table number into a Facebook group. Then members use the app to pay to send items to total strangers.", + "guid": "https://www.dailymail.co.uk/news/article-12929641/Wetherspoons-game-random-members-public-buy-food-tables-pubs-app-200-portions-bangers-mash-four-bin-bags-worth-crisps-peanuts-homeless.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T10:40:05.000Z" + }, + { + "title": "The not-that-much-safety net: Circus acrobats are sent flying when trampoline 'explodes' during trapeze act", + "link": "https://www.dailymail.co.uk/news/article-12929591/Circus-acrobats-sent-flying-trampoline-explodes-trapeze.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 10:38:56 GMT", + "enclosure": { + "length": "10173", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79649449-0-image-a-19_1704448608552.jpg" + }, + "content": "Footage shows six acrobats from China's Shanghai City Circus performing a flying trapeze act in which a performer jumps from one trapeze to another over a massive trampoline.", + "contentSnippet": "Footage shows six acrobats from China's Shanghai City Circus performing a flying trapeze act in which a performer jumps from one trapeze to another over a massive trampoline.", + "guid": "https://www.dailymail.co.uk/news/article-12929591/Circus-acrobats-sent-flying-trampoline-explodes-trapeze.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T10:38:56.000Z" + }, + { + "title": "Raising babies on a plant-based diet can cause 'irreversible damage' including 'more fractures, nutrient deficiencies and being shorter', nutrition experts warn after Lucy Watson announces she'll bring her child up vegan", + "link": "https://www.dailymail.co.uk/femail/article-12904327/Nutrition-experts-warn-raising-babies-plant-based-diet-cause-irreversible-damage-including-fractures-nutrient-deficiencies-shorter-Chelsea-star-Lucy-Watson-plans-raise-baby-vegan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 10:38:28 GMT", + "enclosure": { + "length": "9537", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/27/20/79379181-0-image-a-17_1703707876313.jpg" + }, + "content": "The Made in Chelsea star, 32, told fans on her Instagram during a Q&A that she and her husband, James Dunmore, 34, will raise their newborn on the same diet to which Lucy also adheres.", + "contentSnippet": "The Made in Chelsea star, 32, told fans on her Instagram during a Q&A that she and her husband, James Dunmore, 34, will raise their newborn on the same diet to which Lucy also adheres.", + "guid": "https://www.dailymail.co.uk/femail/article-12904327/Nutrition-experts-warn-raising-babies-plant-based-diet-cause-irreversible-damage-including-fractures-nutrient-deficiencies-shorter-Chelsea-star-Lucy-Watson-plans-raise-baby-vegan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T10:38:28.000Z" + }, + { + "title": "Series of unfortunate events! People having a bad day prove there's always someone with worse luck than you", + "link": "https://www.dailymail.co.uk/femail/article-12926707/Series-unfortunate-events-People-having-bad-day-prove-theres-worse-luck-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 10:34:52 GMT", + "enclosure": { + "length": "9330", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619405-0-image-a-27_1704384476515.jpg" + }, + "content": "Sometimes sticky situations are simply unavoidable. But you can feel sorry for yourself or have a good laugh about it - like the people in these photos shared by US website DeMilked.", + "contentSnippet": "Sometimes sticky situations are simply unavoidable. But you can feel sorry for yourself or have a good laugh about it - like the people in these photos shared by US website DeMilked.", + "guid": "https://www.dailymail.co.uk/femail/article-12926707/Series-unfortunate-events-People-having-bad-day-prove-theres-worse-luck-you.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T10:34:52.000Z" + }, + { + "title": "Strict Baptist dairy farmer, 27, stalked his university crush over WhatsApp for five years - forcing her to ask a male friend to 'be on standby' to protect her when her partner was away", + "link": "https://www.dailymail.co.uk/news/article-12929621/baptist-dairy-farmer-stalker-university-crush-whatsapp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 10:29:47 GMT", + "enclosure": { + "length": "6068", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79649275-0-image-m-12_1704448454680.jpg" + }, + "content": "Isaac Aidley, 27 who hails from a strict Baptist family had a secret crush on Isabella Knowles when they studied together at agricultural college and developed an obsession with her after they left.", + "contentSnippet": "Isaac Aidley, 27 who hails from a strict Baptist family had a secret crush on Isabella Knowles when they studied together at agricultural college and developed an obsession with her after they left.", + "guid": "https://www.dailymail.co.uk/news/article-12929621/baptist-dairy-farmer-stalker-university-crush-whatsapp.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T10:29:47.000Z" + }, + { + "title": "Man, 32, and woman, 25, arrested in connection with the murder of EuroMillions winner Jane Park's ex after he was gunned down in drive-by Hogamanay shooting", + "link": "https://www.dailymail.co.uk/news/article-12929595/arrest-euromillions-winner-jane-park-ex-murder-hogamanay-shooting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 10:19:19 GMT", + "enclosure": { + "length": "6579", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79503741-0-Convicted_gangster_Marc_Webley_shot_dead_outside_an_Edinburgh_pu-a-7_1704446158127.jpg" + }, + "content": "Armed officers were sent to the Anchor Inn in the city's Granton area after revellers watched in horror as Marc Webley and another man were shot in the street while celebrating with friends.", + "contentSnippet": "Armed officers were sent to the Anchor Inn in the city's Granton area after revellers watched in horror as Marc Webley and another man were shot in the street while celebrating with friends.", + "guid": "https://www.dailymail.co.uk/news/article-12929595/arrest-euromillions-winner-jane-park-ex-murder-hogamanay-shooting.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T10:19:19.000Z" + }, + { + "title": "Battlestar Galactica and Law & Order star Harry Johnson dies aged 81 after a 'long illness'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12929605/Battlestar-Galactica-Law-Order-Harry-Johnson-dies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 10:18:59 GMT", + "enclosure": { + "length": "9106", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/10/79649827-0-image-m-40_1704449810060.jpg" + }, + "content": "His four-decade career saw him star in the likes of\u00a0Battlestar Galactica and\u00a0Law & Order as well as the famous\u00a0Harry & Louise adverts.", + "contentSnippet": "His four-decade career saw him star in the likes of\u00a0Battlestar Galactica and\u00a0Law & Order as well as the famous\u00a0Harry & Louise adverts.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12929605/Battlestar-Galactica-Law-Order-Harry-Johnson-dies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T10:18:59.000Z" + }, + { + "title": "Shocking moment four men grapple with Costcutter 'shoplifter' and rain down punches on him", + "link": "https://www.dailymail.co.uk/news/article-12929465/costcutter-shoplifter-punches-men-moment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:58:28 GMT", + "enclosure": { + "length": "6464", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79648223-0-image-a-4_1704445697010.jpg" + }, + "content": "This is the moment a suspected shoplifter was stopped by a group of Good Samaritans teaming up in shocking footage filmed by a shopper.", + "contentSnippet": "This is the moment a suspected shoplifter was stopped by a group of Good Samaritans teaming up in shocking footage filmed by a shopper.", + "guid": "https://www.dailymail.co.uk/news/article-12929465/costcutter-shoplifter-punches-men-moment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:58:28.000Z" + }, + { + "title": "Giorgia Meloni tells Italy's mothers to return to the office, saying if she can run the country with a seven-year-old daughter, so can they", + "link": "https://www.dailymail.co.uk/news/article-12929493/Giorgia-Meloni-tells-Italys-mothers-return-office-saying-run-country-seven-year-old-daughter-they.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:51:34 GMT", + "enclosure": { + "length": "6433", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79648867-0-An_animated_Meloni_bounced_back_from_a_bout_of_illness_from_a_ve-a-51_1704447495551.jpg" + }, + "content": "An animated Meloni bounced back from a bout of illness from a vertigo-inducing ear infection to urge mothers to combine motherhood with working.", + "contentSnippet": "An animated Meloni bounced back from a bout of illness from a vertigo-inducing ear infection to urge mothers to combine motherhood with working.", + "guid": "https://www.dailymail.co.uk/news/article-12929493/Giorgia-Meloni-tells-Italys-mothers-return-office-saying-run-country-seven-year-old-daughter-they.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:51:34.000Z" + }, + { + "title": "Police search for missing 39-year-old woman who has not been seen for two weeks finds her personal items on river bank as fears grow for her safety", + "link": "https://www.dailymail.co.uk/news/article-12929483/police-missing-woman-search-river-bank-personal-items-safety.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:39:04 GMT", + "enclosure": { + "length": "5255", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79647537-0-image-a-2_1704444133294.jpg" + }, + "content": "Lucy Charles, 39, was last seen on Station Road, Bangor-on-Dee, Wrexham at 5.34pm when she was captured on CCTV walking past the Royal Oak pub on December 22.", + "contentSnippet": "Lucy Charles, 39, was last seen on Station Road, Bangor-on-Dee, Wrexham at 5.34pm when she was captured on CCTV walking past the Royal Oak pub on December 22.", + "guid": "https://www.dailymail.co.uk/news/article-12929483/police-missing-woman-search-river-bank-personal-items-safety.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:39:04.000Z" + }, + { + "title": "Two boys, 16 and 17, are arrested on suspicion of murdering Harry Pitman at Primrose Hill as 16-year-old waited to watch New Year's Eve fireworks", + "link": "https://www.dailymail.co.uk/news/article-12929593/harry-pitman-murder-two-boys-arrested.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:36:38 GMT", + "enclosure": { + "length": "11104", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/09/79574667-0-image-m-15_1704446073724.jpg" + }, + "content": "Police say Harry, 16, died after a 'spontaneous fight' with 'another male' escalated into deadly violence at the viewing point in Camden, North London.", + "contentSnippet": "Police say Harry, 16, died after a 'spontaneous fight' with 'another male' escalated into deadly violence at the viewing point in Camden, North London.", + "guid": "https://www.dailymail.co.uk/news/article-12929593/harry-pitman-murder-two-boys-arrested.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:36:38.000Z" + }, + { + "title": "REVEALED: Present-day Premier League star was sat one row behind one of the league's most bizarre viral moments as a Chelsea fan started brushing his teeth mid-match\u2026 but can you recognise who it is?", + "link": "https://www.dailymail.co.uk/sport/football/article-12929227/Premier-League-star-Chelsea-fan-brushing-teeth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:24:40 GMT", + "enclosure": { + "length": "9667", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/07/79646077-0-image-a-21_1704440444042.jpg" + }, + "content": "However, as the camera panned to the dugout, eagle-eyed supporters noticed one fan near the front of the stand brushing his teeth while this was all taking place.", + "contentSnippet": "However, as the camera panned to the dugout, eagle-eyed supporters noticed one fan near the front of the stand brushing his teeth while this was all taking place.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12929227/Premier-League-star-Chelsea-fan-brushing-teeth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:24:40.000Z" + }, + { + "title": "'Broadband poles have spoiled our community': Pensioner slams BT after 'eyesores' were put up outside his cul-de-sac home", + "link": "https://www.dailymail.co.uk/news/article-12925649/Telecoms-workers-installed-two-telegraph-poles-outside-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:12:04 GMT", + "enclosure": { + "length": "6440", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/12/79607505-0-image-m-22_1704370567658.jpg" + }, + "content": "EXCLUSIVE: John Scholefield, of Sheffield, said he can see the huge masts when he sits on the sofa in his living room and they are 'distracting' when he looks out the three front windows of his house.", + "contentSnippet": "EXCLUSIVE: John Scholefield, of Sheffield, said he can see the huge masts when he sits on the sofa in his living room and they are 'distracting' when he looks out the three front windows of his house.", + "guid": "https://www.dailymail.co.uk/news/article-12925649/Telecoms-workers-installed-two-telegraph-poles-outside-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:12:04.000Z" + }, + { + "title": "Glow sticks and an early night! As DJ Annie Mac's clubbing tour for 'parents who can't stay up late' sells out, and Vicky McClure launches a 2pm disco - how daytime raving became all the rage", + "link": "https://www.dailymail.co.uk/femail/article-12880631/Glow-sticks-early-night-DJ-Annie-Macs-clubbing-tour-parents-stay-late-sells-Vicky-McClure-launches-2pm-disco-daytime-raving-rage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:10:05 GMT", + "enclosure": { + "length": "10810", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/19/11/79124301-0-image-a-7_1702986588248.jpg" + }, + "content": "UK clubbers who thought they'd bid farewell to raving decades ago are being invited to rediscover their passion for dance music - at daytime and early evening sessions.", + "contentSnippet": "UK clubbers who thought they'd bid farewell to raving decades ago are being invited to rediscover their passion for dance music - at daytime and early evening sessions.", + "guid": "https://www.dailymail.co.uk/femail/article-12880631/Glow-sticks-early-night-DJ-Annie-Macs-clubbing-tour-parents-stay-late-sells-Vicky-McClure-launches-2pm-disco-daytime-raving-rage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:10:05.000Z" + }, + { + "title": "Lioness Mary Earps shares snaps of her VERY glamorous holiday in Barbados to ring in 2024 after being crowned Sports Personality of the Year and making the New Year's Honours List", + "link": "https://www.dailymail.co.uk/femail/article-12929341/Lioness-Mary-Earps-shares-snaps-glamorous-holiday-Barbados-ring-2024-crowned-Sports-Personality-Year-making-New-Years-Honours-List.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:08:49 GMT", + "enclosure": { + "length": "11452", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79646495-0-image-a-21_1704443382246.jpg" + }, + "content": "The Nottingham-born goalkeeper saw out 2023 in the Caribbean. She shared snaps on Instagram of her lavish holiday after a hugely successful year.", + "contentSnippet": "The Nottingham-born goalkeeper saw out 2023 in the Caribbean. She shared snaps on Instagram of her lavish holiday after a hugely successful year.", + "guid": "https://www.dailymail.co.uk/femail/article-12929341/Lioness-Mary-Earps-shares-snaps-glamorous-holiday-Barbados-ring-2024-crowned-Sports-Personality-Year-making-New-Years-Honours-List.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:08:49.000Z" + }, + { + "title": "How tragedy brought Kirstie Allsopp and Phil Spencer closer than ever: He tearfully opens up for the first time about his parents' deaths and she praises his strength as TV's favourite property duo return to screens", + "link": "https://www.dailymail.co.uk/femail/article-12917101/How-tragedy-brought-Kirstie-Allsopp-Phil-Spencer-closer-tearfully-opens-time-parents-deaths-praises-strength-TVs-favourite-property-duo-return-screens.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:04:40 GMT", + "enclosure": { + "length": "11611", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/02/18/79543761-0-image-a-18_1704219756033.jpg" + }, + "content": "Co-presenters of 24 years, Brits Kirstie Allsopp and Phil Spencer return to TV screens with a new series of Love It Or List It, the show which helps people decide whether to adapt their home or move on.", + "contentSnippet": "Co-presenters of 24 years, Brits Kirstie Allsopp and Phil Spencer return to TV screens with a new series of Love It Or List It, the show which helps people decide whether to adapt their home or move on.", + "guid": "https://www.dailymail.co.uk/femail/article-12917101/How-tragedy-brought-Kirstie-Allsopp-Phil-Spencer-closer-tearfully-opens-time-parents-deaths-praises-strength-TVs-favourite-property-duo-return-screens.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:04:40.000Z" + }, + { + "title": "Neo-Nazi podcasters who called for the execution of Prince Harry and said his son Archie is an 'abomination' who should be 'put down' are jailed", + "link": "https://www.dailymail.co.uk/news/article-12929367/prince-harry-son-archie-neo-nazi-podcasters-abomination-jailed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 09:02:16 GMT", + "enclosure": { + "length": "8870", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/13241006-0-image-m-15_1704442525848.jpg" + }, + "content": "Christopher Gibbons and Tyrone Patten-Walsh were white supremacists who came up with a radio-show format which included chats about violent acts of\u00a0misogyny, Kingston Crown Court was told.", + "contentSnippet": "Christopher Gibbons and Tyrone Patten-Walsh were white supremacists who came up with a radio-show format which included chats about violent acts of\u00a0misogyny, Kingston Crown Court was told.", + "guid": "https://www.dailymail.co.uk/news/article-12929367/prince-harry-son-archie-neo-nazi-podcasters-abomination-jailed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T09:02:16.000Z" + }, + { + "title": "BBC News presenter struggles to contain his laughter after pothole segment takes a VERY cheeky turn", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927473/BBC-News-presenter-laughter-pothole-segment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 08:59:38 GMT", + "enclosure": { + "length": "10530", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630631-0-image-a-27_1704401395480.jpg" + }, + "content": "BBC Look North presenter Peter Levy struggled to contain his laughter after a segment on potholes took a racy turn.", + "contentSnippet": "BBC Look North presenter Peter Levy struggled to contain his laughter after a segment on potholes took a racy turn.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927473/BBC-News-presenter-laughter-pothole-segment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T08:59:38.000Z" + }, + { + "title": "Are YOU a rat snacker? How Gen Z teens are raiding the kitchen cupboards to put together weird snack combinations in new trend - as Waitrose data reveals how snacking is on the rise in Britain", + "link": "https://www.dailymail.co.uk/news/article-12925641/Are-Gen-Z-teens-raiding-kitchen-cupboards-weird-snack-combinations-new-trend-Waitrose-data-reveals-snacking-rise-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 08:57:29 GMT", + "enclosure": { + "length": "6158", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79619641-0-image-m-35_1704385507945.jpg" + }, + "content": "The strange trend - branded 'rat snacking' - is seeing humans mimic rodent-like behaviours by scavenging for any old scraps of food to try and make up a meal.", + "contentSnippet": "The strange trend - branded 'rat snacking' - is seeing humans mimic rodent-like behaviours by scavenging for any old scraps of food to try and make up a meal.", + "guid": "https://www.dailymail.co.uk/news/article-12925641/Are-Gen-Z-teens-raiding-kitchen-cupboards-weird-snack-combinations-new-trend-Waitrose-data-reveals-snacking-rise-Britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T08:57:29.000Z" + }, + { + "title": "Proud father reveals why his 14-year-old son doesn't get pocket money - so had to ditch the video games and start his own hand car washing business", + "link": "https://www.dailymail.co.uk/news/article-12927013/Proud-father-reveals-14-year-old-son-doesnt-pocket-money-ditch-video-games-start-hand-car-washing-business.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 08:56:48 GMT", + "enclosure": { + "length": "7563", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79621181-0-image-m-19_1704391818224.jpg" + }, + "content": "Fourteen-year-old Clark Heisel decided to spend his Christmas gift cash on products to clean neighbours' cars - but parent Patrick has faced an online backlash.", + "contentSnippet": "Fourteen-year-old Clark Heisel decided to spend his Christmas gift cash on products to clean neighbours' cars - but parent Patrick has faced an online backlash.", + "guid": "https://www.dailymail.co.uk/news/article-12927013/Proud-father-reveals-14-year-old-son-doesnt-pocket-money-ditch-video-games-start-hand-car-washing-business.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T08:56:48.000Z" + }, + { + "title": "Paedophile ring of 'witches and wizards' who subjected vulnerable youngsters to 'appalling' abuse face life sentences as judge warns releasing them could endanger more children", + "link": "https://www.dailymail.co.uk/news/article-12927439/paedophile-ring-vulnerable-youngsters-abuse-life-sentences.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 08:54:40 GMT", + "enclosure": { + "length": "9622", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/77785243-0-Five_men_and_three_women_were_convicted_today_at_the_High_Court_-a-31_1704397410083.jpg" + }, + "content": "WARNING - GRAPHIC CONTENT: Five men and two women, who raped, attacked and brutalised vulnerable children at a dirty hovel, were branded a potential danger to the public by a judge.", + "contentSnippet": "WARNING - GRAPHIC CONTENT: Five men and two women, who raped, attacked and brutalised vulnerable children at a dirty hovel, were branded a potential danger to the public by a judge.", + "guid": "https://www.dailymail.co.uk/news/article-12927439/paedophile-ring-vulnerable-youngsters-abuse-life-sentences.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T08:54:40.000Z" + }, + { + "title": "Ruth Perry's sister slams new Ofsted chief's 'sticking plaster' improvements to school inspection system that contributed to head teacher's suicide - saying it is not enough 'to tell inspectors to be nicer'", + "link": "https://www.dailymail.co.uk/news/article-12929403/Ruth-Perry-sister-slams-Ofsted-chief-sticking-plaster-improvements-school-inspection-headteachers-suicide-inspectors-nicer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 08:50:03 GMT", + "enclosure": { + "length": "10320", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79646861-0-image-m-17_1704444281516.jpg" + }, + "content": "Professor Julia Waters (pictured)\u00a0told Ofsted boss Sir Martyn Oliver, who started the role on January 1, that it was not enough 'to tell inspectors to be nicer'.", + "contentSnippet": "Professor Julia Waters (pictured)\u00a0told Ofsted boss Sir Martyn Oliver, who started the role on January 1, that it was not enough 'to tell inspectors to be nicer'.", + "guid": "https://www.dailymail.co.uk/news/article-12929403/Ruth-Perry-sister-slams-Ofsted-chief-sticking-plaster-improvements-school-inspection-headteachers-suicide-inspectors-nicer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T08:50:03.000Z" + }, + { + "title": "Nike's new world record-breaking Alphafly 3 'super shoes' hit resale sites at nearly \u00a3600 a pair after selling out in two minutes", + "link": "https://www.dailymail.co.uk/news/article-12929273/Nike-world-record-breaking-Alphafly-3-super-shoes-resale-600-pair-selling-two-minutes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 08:49:22 GMT", + "enclosure": { + "length": "8764", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/08/79646599-0-image-m-16_1704442248589.jpg" + }, + "content": "Kenya's Kelvin Kiptum wore Nike Alphafly 3 shoe (pictured) when he broke the world record time for marathons in Chicago in October.", + "contentSnippet": "Kenya's Kelvin Kiptum wore Nike Alphafly 3 shoe (pictured) when he broke the world record time for marathons in Chicago in October.", + "guid": "https://www.dailymail.co.uk/news/article-12929273/Nike-world-record-breaking-Alphafly-3-super-shoes-resale-600-pair-selling-two-minutes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T08:49:22.000Z" + }, + { + "title": "Meet Juan Carlos I - the dashing King who rescued democracy and the Spanish throne but today lives in exile, beset by an ocean of complaints about\u00a0 adultery and financial impropriety", + "link": "https://www.dailymail.co.uk/femail/article-12648865/Juan-Carlos-dashing-King-rescued-democracy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 08:45:16 GMT", + "enclosure": { + "length": "10040", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/19/14/76753721-0-image-a-5_1697721783812.jpg" + }, + "content": "Once the most glamorous king in Europe, Juan Carlos is now living\u00a0in exile in the United Arab Emirates, estranged from his family and facing a multi-million pound lawsuit from his former mistress.", + "contentSnippet": "Once the most glamorous king in Europe, Juan Carlos is now living\u00a0in exile in the United Arab Emirates, estranged from his family and facing a multi-million pound lawsuit from his former mistress.", + "guid": "https://www.dailymail.co.uk/femail/article-12648865/Juan-Carlos-dashing-King-rescued-democracy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T08:45:16.000Z" + }, + { + "title": "Top model killed herself two years after visiting Jeffrey Epstein's 'pedo island' aged just 18: Appeared in flight logs and was named in new court documents", + "link": "https://www.dailymail.co.uk/news/article-12928607/ruslana-korshunova-jeffrey-epstein-flight-logs-virginia-robert-giuffre.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 08:09:16 GMT", + "enclosure": { + "length": "8696", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/03/79640841-0-image-a-1_1704425344073.jpg" + }, + "content": "A top Kazakh model jumped to her death from an apartment building two years after visiting Jeffrey Epstein 's so-called pedophile island as an 18 year-old.", + "contentSnippet": "A top Kazakh model jumped to her death from an apartment building two years after visiting Jeffrey Epstein 's so-called pedophile island as an 18 year-old.", + "guid": "https://www.dailymail.co.uk/news/article-12928607/ruslana-korshunova-jeffrey-epstein-flight-logs-virginia-robert-giuffre.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T08:09:16.000Z" + }, + { + "title": "Prince Andrew will NEVER return to the royal fold and will be 'forced out' of the Royal Lodge after documents relating to paedophile Jeffrey Epstein detailing sexual assault allegations 'crystallise' King Charles's determination to act", + "link": "https://www.dailymail.co.uk/news/article-12928105/prince-andrew-royal-jeffrey-epstein-documents-king-charles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 07:50:25 GMT", + "enclosure": { + "length": "10035", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639769-0-image-a-10_1704419099255.jpg" + }, + "content": "Plans were already in train to evict him from Royal Lodge, his ten-bedroom Windsor home since 2003, and move him to a smaller residence in keeping with his 'downgraded' status.", + "contentSnippet": "Plans were already in train to evict him from Royal Lodge, his ten-bedroom Windsor home since 2003, and move him to a smaller residence in keeping with his 'downgraded' status.", + "guid": "https://www.dailymail.co.uk/news/article-12928105/prince-andrew-royal-jeffrey-epstein-documents-king-charles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T07:50:25.000Z" + }, + { + "title": "See Neptune and Uranus in their TRUE colours: Incredible new photos reveal the planets are the same shade of greenish blue", + "link": "https://www.dailymail.co.uk/sciencetech/article-12926443/See-Neptune-Uranus-TRUE-colours-Incredible-new-photos-reveal-planets-shade-greenish-blue.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 07:49:02 GMT", + "enclosure": { + "length": "4736", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79613529-0-image-m-62_1704386346111.jpg" + }, + "content": "A new University of Oxford-led study finally reveals what the two ice giants really look like\u00a0- and they're far closer in colour than previously thought.", + "contentSnippet": "A new University of Oxford-led study finally reveals what the two ice giants really look like\u00a0- and they're far closer in colour than previously thought.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12926443/See-Neptune-Uranus-TRUE-colours-Incredible-new-photos-reveal-planets-shade-greenish-blue.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T07:49:02.000Z" + }, + { + "title": "HMV collapsed into administration and closed stores across the country, but Britain's beloved music business is on a comeback driven by vinyl-loving Gen Zs fed up of streaming - and now plans to expand into Europe and Canada", + "link": "https://www.dailymail.co.uk/news/article-12918537/HMV-stores-music-administration-GenZ-streaming-Europe-Canada.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 07:42:53 GMT", + "enclosure": { + "length": "5964", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79640045-0-image-m-24_1704419851443.jpg" + }, + "content": "The beloved British music business collapsed into administration and shut shops across the country, but HMV's boss has revealed to MailOnline ambitious plans for the year ahead.", + "contentSnippet": "The beloved British music business collapsed into administration and shut shops across the country, but HMV's boss has revealed to MailOnline ambitious plans for the year ahead.", + "guid": "https://www.dailymail.co.uk/news/article-12918537/HMV-stores-music-administration-GenZ-streaming-Europe-Canada.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T07:42:53.000Z" + }, + { + "title": "El Salvador claims its murder rate has fallen from 495 in 2022 to 154 in 2023 amid strongman president's brutal crackdown on gangs", + "link": "https://www.dailymail.co.uk/news/article-12927605/El-Salvador-claims-murder-rate-fallen-495-2022-154-2023-amid-strongman-presidents-brutal-crackdown-gangs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 07:37:10 GMT", + "enclosure": { + "length": "8660", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79630157-0-image-a-39_1704405574637.jpg" + }, + "content": "A murder rate that peaked at 106 per 100,000 nine years ago collapsed to 2.4 last year, making 2023 the 'safest year in El Salvador's history' after a mass round-up of suspected gang members", + "contentSnippet": "A murder rate that peaked at 106 per 100,000 nine years ago collapsed to 2.4 last year, making 2023 the 'safest year in El Salvador's history' after a mass round-up of suspected gang members", + "guid": "https://www.dailymail.co.uk/news/article-12927605/El-Salvador-claims-murder-rate-fallen-495-2022-154-2023-amid-strongman-presidents-brutal-crackdown-gangs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T07:37:10.000Z" + }, + { + "title": "From THAT 'Pizza Express' alibi, lies to Emily Maitlis and an infamous trip to New York in 2001: All of the hotly-disputed sex claims against Prince Andrew, as he finds himself mired in allegations again after release of Epstein files", + "link": "https://www.dailymail.co.uk/news/article-12926663/prince-andrew-jeffrey-epstein-daily-mail-investigation-sex-allegations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 07:31:30 GMT", + "enclosure": { + "length": "6849", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/16/79618517-0-image-m-281_1704387352598.jpg" + }, + "content": "A little over three years ago, the Daily Mail published a bombshell four-part series on the hotly-disputed sex allegations facing the Duke of the York.", + "contentSnippet": "A little over three years ago, the Daily Mail published a bombshell four-part series on the hotly-disputed sex allegations facing the Duke of the York.", + "guid": "https://www.dailymail.co.uk/news/article-12926663/prince-andrew-jeffrey-epstein-daily-mail-investigation-sex-allegations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T07:31:30.000Z" + }, + { + "title": "SAMANTHA BRICK: How I finally discovered the malevolence that conjured up the poltergeist in my attic... The door handle that rattled in the night. Books that flew off the shelves. The scratching down the walls that made my dogs growl", + "link": "https://www.dailymail.co.uk/femail/article-12928205/SAMANTHA-BRICK-finally-discovered-malevolence-conjured-poltergeist-attic-door-handle-rattled-night-Books-flew-shelves-scratching-walls-dogs-growl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 07:25:12 GMT", + "enclosure": { + "length": "10217", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633099-0-image-a-11_1704406510690.jpg" + }, + "content": "SAMANTHA BRICK: I was sitting at the kitchen table engrossed in one of our usual chats when suddenly I heard a massive bang upstairs, Followed by intermittent thudding.", + "contentSnippet": "SAMANTHA BRICK: I was sitting at the kitchen table engrossed in one of our usual chats when suddenly I heard a massive bang upstairs, Followed by intermittent thudding.", + "guid": "https://www.dailymail.co.uk/femail/article-12928205/SAMANTHA-BRICK-finally-discovered-malevolence-conjured-poltergeist-attic-door-handle-rattled-night-Books-flew-shelves-scratching-walls-dogs-growl.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T07:25:12.000Z" + }, + { + "title": "Looks can be deceiving! Adorable black footed cat that's world's deadliest feline stares shyly at camera in new video after arriving at Utah zoo", + "link": "https://www.dailymail.co.uk/news/article-12929139/Adorable-black-footed-cat-worlds-deadliest-feline-utah-zoo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 07:04:14 GMT", + "enclosure": { + "length": "10913", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/06/79644863-0-image-a-60_1704436121540.jpg" + }, + "content": "The newest resident at a Salt Lake City area zoo has been pictured settling into her new home and even though she is\u00a0the world's most lethal African wild cat, Gaia is adorable.", + "contentSnippet": "The newest resident at a Salt Lake City area zoo has been pictured settling into her new home and even though she is\u00a0the world's most lethal African wild cat, Gaia is adorable.", + "guid": "https://www.dailymail.co.uk/news/article-12929139/Adorable-black-footed-cat-worlds-deadliest-feline-utah-zoo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T07:04:14.000Z" + }, + { + "title": "Sally Field reveals former boyfriend Burt Reynolds refused to attend 1980 Academy Awards with her when she won her first Oscar: 'He really was not a nice guy around me then'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927497/Sally-Field-reveals-Burt-Reynolds-refused-attend-Oscars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 06:50:39 GMT", + "enclosure": { + "length": "10745", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79628889-0-image-m-53_1704397596264.jpg" + }, + "content": "Field won her first Oscar in 1980 for Norma Rae, but Reynolds refused to attend the Academy Awards with her and even tried to get her to skip the Cannes Film Festival.", + "contentSnippet": "Field won her first Oscar in 1980 for Norma Rae, but Reynolds refused to attend the Academy Awards with her and even tried to get her to skip the Cannes Film Festival.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927497/Sally-Field-reveals-Burt-Reynolds-refused-attend-Oscars.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T06:50:39.000Z" + }, + { + "title": "Iowa school shooter plotted massacre after he and his sister suffered horrific bullying - with teachers ignoring their torment, classmates say", + "link": "https://www.dailymail.co.uk/news/article-12929031/iowa-perry-high-school-shooting-dylan-butler-bullied.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 05:42:49 GMT", + "enclosure": { + "length": "10149", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/05/79644051-0-image-a-1_1704432888420.jpg" + }, + "content": "Dylan Butler, who shot and killed a fellow student in Iowa on Thursday and injured five others before killing himself, had been bullied since elementary school, classmates said.", + "contentSnippet": "Dylan Butler, who shot and killed a fellow student in Iowa on Thursday and injured five others before killing himself, had been bullied since elementary school, classmates said.", + "guid": "https://www.dailymail.co.uk/news/article-12929031/iowa-perry-high-school-shooting-dylan-butler-bullied.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T05:42:49.000Z" + }, + { + "title": "'What a small-minded, smug & horrible thing to say': Sky News presenter Jayne Secker is slammed for telling 13-year-old boy to 'go outside and get some fresh air' after he became the first person in history to beat Tetris game", + "link": "https://www.dailymail.co.uk/news/article-12927147/sky-news-presenter-slammed-boy-outside-beat-tetris.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 03:50:22 GMT", + "enclosure": { + "length": "9746", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79628581-0-image-a-21_1704396911731.jpg" + }, + "content": "Jayne Secker, who in recent days has waxed lyrical about Luke Littler's run to the World Darts Championship final, was accused of being 'small-minded' over her remarks about gamer Willis Gibson.", + "contentSnippet": "Jayne Secker, who in recent days has waxed lyrical about Luke Littler's run to the World Darts Championship final, was accused of being 'small-minded' over her remarks about gamer Willis Gibson.", + "guid": "https://www.dailymail.co.uk/news/article-12927147/sky-news-presenter-slammed-boy-outside-beat-tetris.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T03:50:22.000Z" + }, + { + "title": "EDEN CONFIDENTIAL: After Archbishop of Canterbury Justin Welby discovers his real father was Winston Churchill's private secretary Sir Anthony Montague Browne and not his mother's first husband, he now discovers she has left him a surprise \u00a32.4 million", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928177/Archbishop-Canterbury-Justin-Welby-discovers-mother-left-surprise-inheritance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 03:50:20 GMT", + "enclosure": { + "length": "11033", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633671-0-image-a-39_1704407536503.jpg" + }, + "content": "EDEN CONFIDENTIAL: The windfall is 28 times his annual salary as leader of the Church of England and head of the worldwide Anglican Communion. 'It's a life-changing sum,' a friend tells me.", + "contentSnippet": "EDEN CONFIDENTIAL: The windfall is 28 times his annual salary as leader of the Church of England and head of the worldwide Anglican Communion. 'It's a life-changing sum,' a friend tells me.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928177/Archbishop-Canterbury-Justin-Welby-discovers-mother-left-surprise-inheritance.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T03:50:20.000Z" + }, + { + "title": "Grand jury DECLINES to charge 'hero' vigilante who shot and killed serial thief Eugene Washington inside Houston taqueria as he was walking away after robbery", + "link": "https://www.dailymail.co.uk/news/article-12927791/Grand-jury-DECLINES-charge-vigilante-killed-Houston-robber.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 02:41:57 GMT", + "enclosure": { + "length": "10964", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630787-0-image-a-75_1704401775440.jpg" + }, + "content": "A\u00a0Texas\u00a0vigilante who shot and killed a robber in a Houston restaurant last year will not be charged, a grand jury has decided.", + "contentSnippet": "A\u00a0Texas\u00a0vigilante who shot and killed a robber in a Houston restaurant last year will not be charged, a grand jury has decided.", + "guid": "https://www.dailymail.co.uk/news/article-12927791/Grand-jury-DECLINES-charge-vigilante-killed-Houston-robber.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T02:41:57.000Z" + }, + { + "title": "Billionaire James Packer shows off his slimmed-down figure after 33kg weight loss as he goes for a walk with his ex wife Jodhi Meares in LA after spending Christmas together", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927775/Billionaire-James-Packer-shows-slimmed-figure-33kg-weight-loss-goes-walk-ex-wife-Jodhi-Meares-Los-Angeles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 02:35:03 GMT", + "enclosure": { + "length": "10570", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631349-0-image-a-6_1704402489219.jpg" + }, + "content": "James Packer has slimmed down following his 33kg weight loss.", + "contentSnippet": "James Packer has slimmed down following his 33kg weight loss.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927775/Billionaire-James-Packer-shows-slimmed-figure-33kg-weight-loss-goes-walk-ex-wife-Jodhi-Meares-Los-Angeles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T02:35:03.000Z" + }, + { + "title": "BBC is facing furious backlash after omitting the word 'Jewish' from promotional material for film telling the story of WWII hero Sir Nicholas Winton who saved kindertransport children from the Nazis", + "link": "https://www.dailymail.co.uk/news/article-12928561/BBC-backlash-Jewish-film-WWII-Sir-Nicholas-Winton-kindertransport-Nazis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 02:11:57 GMT", + "enclosure": { + "length": "5992", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639123-0-image-m-60_1704419228888.jpg" + }, + "content": "A new film, One Life, tells the story of Sir Nicholas Winton (Anthony Hopkins pictured in the role) rescuing hundreds of mostly Jewish children from the expanding Nazi invasion across Europe.", + "contentSnippet": "A new film, One Life, tells the story of Sir Nicholas Winton (Anthony Hopkins pictured in the role) rescuing hundreds of mostly Jewish children from the expanding Nazi invasion across Europe.", + "guid": "https://www.dailymail.co.uk/news/article-12928561/BBC-backlash-Jewish-film-WWII-Sir-Nicholas-Winton-kindertransport-Nazis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T02:11:57.000Z" + }, + { + "title": "Britain vows North Korea will 'pay a high price' for supplying ballistic missiles to Putin for use in Ukraine - as the Foreign Office brands move a 'sign of Russia's desperation'", + "link": "https://www.dailymail.co.uk/news/article-12928295/Britain-North-Korea-ballistic-missiles-Putin-Ukraine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 02:08:01 GMT", + "enclosure": { + "length": "10896", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79628553-0-image-a-33_1704397445944.jpg" + }, + "content": "Moscow acquired the weapons from Pyongyang as it struggles to replenish its arsenal for the drawn-out war in Ukraine - which has seen it sustain heavy losses during almost two years of fighting.", + "contentSnippet": "Moscow acquired the weapons from Pyongyang as it struggles to replenish its arsenal for the drawn-out war in Ukraine - which has seen it sustain heavy losses during almost two years of fighting.", + "guid": "https://www.dailymail.co.uk/news/article-12928295/Britain-North-Korea-ballistic-missiles-Putin-Ukraine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T02:08:01.000Z" + }, + { + "title": "The rising stars to watch in 2024: A jazz sensation for the digital age, the perfect Gen Z pop star and the bearded storyteller stepping into Ed Sheeran's folksy shoes", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927659/The-rising-stars-watch-2024-jazz-sensation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 02:07:36 GMT", + "enclosure": { + "length": "10672", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631965-0-image-a-12_1704403411674.jpg" + }, + "content": "ADRIAN THRILLS: Her swooning vocals sound as though they might have come straight from the 1940s, but Icelandic-Chinese singer Laufey L\u00edn J\u00f3nsd\u00f3ttir is a jazz star for the digital age.", + "contentSnippet": "ADRIAN THRILLS: Her swooning vocals sound as though they might have come straight from the 1940s, but Icelandic-Chinese singer Laufey L\u00edn J\u00f3nsd\u00f3ttir is a jazz star for the digital age.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927659/The-rising-stars-watch-2024-jazz-sensation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T02:07:36.000Z" + }, + { + "title": "Is Daniel Day-Lewis being pulled out of retirement? Reclusive actor seen leaving meeting with directors Steven Spielberg and Jim Sheridan who each led him to Oscar glory", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928593/Is-Daniel-Day-Lewis-pulled-retirement-Reclusive-actor-seen-leaving-meeting-directors-Steven-Spielberg-Jim-Sheridan-led-Oscar-glory.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 02:04:54 GMT", + "enclosure": { + "length": "9917", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639907-0-image-m-22_1704419544285.jpg" + }, + "content": "Three-time Oscar winning-actor Daniel Day-Lewis may be coming out of retirement after seven years, with the actor spotted leaving a meeting with Steven Spielberg and Jim Sheridan.", + "contentSnippet": "Three-time Oscar winning-actor Daniel Day-Lewis may be coming out of retirement after seven years, with the actor spotted leaving a meeting with Steven Spielberg and Jim Sheridan.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928593/Is-Daniel-Day-Lewis-pulled-retirement-Reclusive-actor-seen-leaving-meeting-directors-Steven-Spielberg-Jim-Sheridan-led-Oscar-glory.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T02:04:54.000Z" + }, + { + "title": "'Pets are treated better than us': Migrants who spent life savings traveling from Africa to NYC complain they've been 'sold a dream by Hollywood - but the American Dream isn't like the movies'", + "link": "https://www.dailymail.co.uk/news/article-12927751/Pets-treated-better-Migrants-spent-life-savings-traveling-Africa-NYC-complain-theyve-sold-dream-Hollywood-American-Dream-isnt-like-movies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:52:22 GMT", + "enclosure": { + "length": "6236", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633571-0-image-m-15_1704406106566.jpg" + }, + "content": "Hundreds of homeless migrants, mostly young African men, were waiting in line outside a church on East 7th Street in Manhattan's East Village on Thursday.", + "contentSnippet": "Hundreds of homeless migrants, mostly young African men, were waiting in line outside a church on East 7th Street in Manhattan's East Village on Thursday.", + "guid": "https://www.dailymail.co.uk/news/article-12927751/Pets-treated-better-Migrants-spent-life-savings-traveling-Africa-NYC-complain-theyve-sold-dream-Hollywood-American-Dream-isnt-like-movies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:52:22.000Z" + }, + { + "title": "Labour plans could leave pensioners worse off if other levies are hiked to pay for a cut in income tax or national insurance, leading economist warns", + "link": "https://www.dailymail.co.uk/news/article-12928553/Labour-plans-leave-pensioners-worse-levies-hiked-pay-cut-income-tax-national-insurance-leading-economist-warns.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:50:12 GMT", + "enclosure": { + "length": "8482", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79638749-0-image-a-101_1704416879092.jpg" + }, + "content": "Paul Johnson, director of the Institute for Fiscal Studies, said he was 'pretty surprised' by reports that Labour was considering pledging tax cuts in its election manifesto.", + "contentSnippet": "Paul Johnson, director of the Institute for Fiscal Studies, said he was 'pretty surprised' by reports that Labour was considering pledging tax cuts in its election manifesto.", + "guid": "https://www.dailymail.co.uk/news/article-12928553/Labour-plans-leave-pensioners-worse-levies-hiked-pay-cut-income-tax-national-insurance-leading-economist-warns.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:50:12.000Z" + }, + { + "title": "Lorraine Kelly reveals 'she doesn't like to attend posh events' because she considers herself 'working class' and admits why she HATES red carpets", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928555/Lorraine-Kelly-doesnt-like-posh-events-considers-working-class-HATES-red-carpets.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:48:48 GMT", + "enclosure": { + "length": "10473", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639781-0-image-a-205_1704419082720.jpg" + }, + "content": "The TV presenter, 64, who hosts her own show Lorraine and has spent 40 years on screen, admitted she still considers herself as 'working class' because of her upbringing.", + "contentSnippet": "The TV presenter, 64, who hosts her own show Lorraine and has spent 40 years on screen, admitted she still considers herself as 'working class' because of her upbringing.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928555/Lorraine-Kelly-doesnt-like-posh-events-considers-working-class-HATES-red-carpets.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:48:48.000Z" + }, + { + "title": "RICHARD KAY: King Charles promised the Queen that he would look after Prince Andrew, but is he now regretting last week's show of unity at Sandringham?", + "link": "https://www.dailymail.co.uk/debate/article-12927759/RICHARD-KAY-King-Charles-promised-Queen-look-Prince-Andrew-regretting-weeks-unity-Sandringham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:47:05 GMT", + "enclosure": { + "length": "10874", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630213-0-image-a-27_1704400790412.jpg" + }, + "content": "RICHARD KAY: At the time this fraternal decision seemed a typically Christian one from Charles. Ten days later the gesture seems not just astounding but possibly unwise.", + "contentSnippet": "RICHARD KAY: At the time this fraternal decision seemed a typically Christian one from Charles. Ten days later the gesture seems not just astounding but possibly unwise.", + "guid": "https://www.dailymail.co.uk/debate/article-12927759/RICHARD-KAY-King-Charles-promised-Queen-look-Prince-Andrew-regretting-weeks-unity-Sandringham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:47:05.000Z" + }, + { + "title": "Male nurse who told female colleague she was a 'sex bomb' during late night texting session is struck off", + "link": "https://www.dailymail.co.uk/news/article-12928535/Male-nurse-female-colleague-sex-bomb-texting-struck-off.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:31:44 GMT", + "enclosure": { + "length": "4966", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/01/79639035-0-image-m-65_1704417388216.jpg" + }, + "content": "A male nurse has been struck off after he told a female colleague she was a 'sex bomb'. Gareth Pritchard texted her late with the message along with other comments sexual, a tribunal heard.", + "contentSnippet": "A male nurse has been struck off after he told a female colleague she was a 'sex bomb'. Gareth Pritchard texted her late with the message along with other comments sexual, a tribunal heard.", + "guid": "https://www.dailymail.co.uk/news/article-12928535/Male-nurse-female-colleague-sex-bomb-texting-struck-off.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:31:44.000Z" + }, + { + "title": "Fans and pundits slam 'DISGRACEFUL' red card shown to Dominic Calvert-Lewin after ref was sent to monitor in Everton's FA Cup draw at Crystal Palace: 'Our game is being ruined by VAR'", + "link": "https://www.dailymail.co.uk/sport/football/article-12928021/Everton-fans-slam-DISGRACEFUL-red-card-shown-Dominic-Calvert-Lewin-FA-Cup-tie-Crystal-Palace-just-substituted.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:26:19 GMT", + "enclosure": { + "length": "11482", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634397-0-image-a-31_1704408139209.jpg" + }, + "content": "Everton fans have slammed the decision to give Dominic Calvert-Lewin a red card in their FA Cup clash with Crystal Palace.\u00a0", + "contentSnippet": "Everton fans have slammed the decision to give Dominic Calvert-Lewin a red card in their FA Cup clash with Crystal Palace.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12928021/Everton-fans-slam-DISGRACEFUL-red-card-shown-Dominic-Calvert-Lewin-FA-Cup-tie-Crystal-Palace-just-substituted.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:26:19.000Z" + }, + { + "title": "PowerWash Simulator VR review: Like housework, only fun! Wash those blues away, writes PETER HOSKIN", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928505/PowerWash-Simulator-VR-review-Like-housework-fun-Wash-blues-away-writes-PETER-HOSKIN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:18:57 GMT", + "enclosure": { + "length": "8950", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79638295-0-image-m-172_1704415578659.jpg" + }, + "content": "PETER HOSKIN: My New Year's resolution is to do a bit more cleaning. Not of actual dirt in my actual house, of course. That would be silly. But of virtual dirt in a game.", + "contentSnippet": "PETER HOSKIN: My New Year's resolution is to do a bit more cleaning. Not of actual dirt in my actual house, of course. That would be silly. But of virtual dirt in a game.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928505/PowerWash-Simulator-VR-review-Like-housework-fun-Wash-blues-away-writes-PETER-HOSKIN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:18:57.000Z" + }, + { + "title": "Divorces fall to their lowest rate in more than five decades as men 'become better husbands' and are more 'committed' to their marriages, study finds", + "link": "https://www.dailymail.co.uk/news/article-12928507/Divorces-fall-lowest-rate-five-decades-men-better-husbands-committed-marriages-study-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:18:27 GMT", + "enclosure": { + "length": "10495", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/23/79635771-0-image-a-85_1704409495938.jpg" + }, + "content": "The chance of a marriage breaking down is now 35 per cent, down from a high of 44 per cent in 1986, and a rate not seen since 1970.", + "contentSnippet": "The chance of a marriage breaking down is now 35 per cent, down from a high of 44 per cent in 1986, and a rate not seen since 1970.", + "guid": "https://www.dailymail.co.uk/news/article-12928507/Divorces-fall-lowest-rate-five-decades-men-better-husbands-committed-marriages-study-finds.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:18:27.000Z" + }, + { + "title": "EPHRAIM HARDCASTLE: How Prince William called Queen Elizabeth to change the guest list for his wedding to Princess Kate in 2011", + "link": "https://www.dailymail.co.uk/news/article-12928451/Prince-William-called-Queen-change-guest-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:17:33 GMT", + "enclosure": { + "length": "10583", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79637753-0-image-a-138_1704414221724.jpg" + }, + "content": "EPHRAIM HARDCASTLE: Sophie Winkleman, aka Lady Frederick Windsor, wails that she knew virtually no one at her 2009 wedding, organised by mother-in-law Princess Michael of Kent.", + "contentSnippet": "EPHRAIM HARDCASTLE: Sophie Winkleman, aka Lady Frederick Windsor, wails that she knew virtually no one at her 2009 wedding, organised by mother-in-law Princess Michael of Kent.", + "guid": "https://www.dailymail.co.uk/news/article-12928451/Prince-William-called-Queen-change-guest-list.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:17:33.000Z" + }, + { + "title": "Society of the Snow: The shocking true story of the 1970s Andes disaster as 'must-see' film arrives on Netflix", + "link": "https://www.dailymail.co.uk/news/article-12927399/society-snow-andes-disaster-netflix.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:16:41 GMT", + "enclosure": { + "length": "7791", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79627177-0-image-a-32_1704394262865.jpg" + }, + "content": "Society of the Snow, directed by J.A Bayona, has premiered on the streaming giant today and has been nominated for Best Foreign Language Film at the Golden Globes this weekend.", + "contentSnippet": "Society of the Snow, directed by J.A Bayona, has premiered on the streaming giant today and has been nominated for Best Foreign Language Film at the Golden Globes this weekend.", + "guid": "https://www.dailymail.co.uk/news/article-12927399/society-snow-andes-disaster-netflix.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:16:41.000Z" + }, + { + "title": "Take your seats for Withnail & I, Sarah Jessica Parker and Shiv from Succession: PATRICK MARMION picks out the best of theatre in 2024 in what looks to be a bumper year for plays", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927817/Take-seats-Withnail-Sarah-Jessica-Parker-Shiv-Succession-PATRICK-MARMION-picks-best-theatre-2024-looks-bumper-year-plays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:15:49 GMT", + "enclosure": { + "length": "11347", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630627-0-image-a-34_1704401975031.jpg" + }, + "content": "PATRICK MARMION: Comedies and tragedies, adaptations and original works - as well as some of the finest stage actors in the world, jockeying for our attention - yes, it looks like being a bumper year.", + "contentSnippet": "PATRICK MARMION: Comedies and tragedies, adaptations and original works - as well as some of the finest stage actors in the world, jockeying for our attention - yes, it looks like being a bumper year.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927817/Take-seats-Withnail-Sarah-Jessica-Parker-Shiv-Succession-PATRICK-MARMION-picks-best-theatre-2024-looks-bumper-year-plays.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:15:49.000Z" + }, + { + "title": "Secret Life Of The Safari Park review: Meet Kevin, the cheeky monkey who likes cars and older ladies, writes CHRISTOPHER STEVENS", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927797/Secret-Life-Safari-Park-review-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 01:01:21 GMT", + "enclosure": { + "length": "9047", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79632813-0-image-a-156_1704414606992.jpg" + }, + "content": "CHRISTOPHER STEVENS: Pete is a zookeeper in Knowsley, near Liverpool, and the amorous Kev is one of the baboons followed by cameras in Secret Life Of The Safari Park (Ch4).", + "contentSnippet": "CHRISTOPHER STEVENS: Pete is a zookeeper in Knowsley, near Liverpool, and the amorous Kev is one of the baboons followed by cameras in Secret Life Of The Safari Park (Ch4).", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927797/Secret-Life-Safari-Park-review-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T01:01:21.000Z" + }, + { + "title": "Shropshire is named in the world's top 10 'destinations to watch' in 2024 as travel company praises the historic region's 'beautiful landscapes, towns and villages'", + "link": "https://www.dailymail.co.uk/news/article-12928519/Shropshire-destination-watch-2024-travel-region-beautiful-landscapes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 00:57:05 GMT", + "enclosure": { + "length": "6783", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79638307-0-image-a-38_1704415735941.jpg" + }, + "content": "It is the first time anywhere in the UK has made the list by travel trade organisation Abta, which described Shropshire as a 'rural gem' with 'beautiful landscapes, towns and villages'.", + "contentSnippet": "It is the first time anywhere in the UK has made the list by travel trade organisation Abta, which described Shropshire as a 'rural gem' with 'beautiful landscapes, towns and villages'.", + "guid": "https://www.dailymail.co.uk/news/article-12928519/Shropshire-destination-watch-2024-travel-region-beautiful-landscapes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T00:57:05.000Z" + }, + { + "title": "Royal Navy has so few sailors it has been 'forced to decommission' two warships so its new frigates won't go unmanned", + "link": "https://www.dailymail.co.uk/news/article-12928373/Royal-Navy-sailors-forced-decommission-two-warships-new-frigates-wont-unmanned.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 00:32:19 GMT", + "enclosure": { + "length": "9132", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79637175-0-image-a-8_1704414300613.jpg" + }, + "content": "HMS Westminster and HMS Argyll were allegedly retired so their crews could transfer to the service's new Type 26 frigates. The news comes as UK sailors were sent to the Red Sea to protect merchant ships.", + "contentSnippet": "HMS Westminster and HMS Argyll were allegedly retired so their crews could transfer to the service's new Type 26 frigates. The news comes as UK sailors were sent to the Red Sea to protect merchant ships.", + "guid": "https://www.dailymail.co.uk/news/article-12928373/Royal-Navy-sailors-forced-decommission-two-warships-new-frigates-wont-unmanned.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T00:32:19.000Z" + }, + { + "title": "Nick Carter breaks his silence over death of sister Bobbie Jean - says he's 'completely heartbroken' in emotional tribute sharing childhood snap", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927843/Nick-Carter-breaks-silence-sister-Bobbie-Jeans-death-says-hes-completely-heartbroken.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 00:31:03 GMT", + "enclosure": { + "length": "10482", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634515-0-image-m-34_1704407511541.jpg" + }, + "content": "Nick Carter has broken his silence over the death of his sister Bobbie Jean's - writing that he is 'completely heartbroken' in emotional tribute on Instagram.\u00a0", + "contentSnippet": "Nick Carter has broken his silence over the death of his sister Bobbie Jean's - writing that he is 'completely heartbroken' in emotional tribute on Instagram.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927843/Nick-Carter-breaks-silence-sister-Bobbie-Jeans-death-says-hes-completely-heartbroken.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T00:31:03.000Z" + }, + { + "title": "Forsyte Saga star Susan Hampshire reveals she would rather end her own life than suffer like her sisters during their final weeks in a powerful contribution to the debate on assisted dying", + "link": "https://www.dailymail.co.uk/femail/article-12927855/Forsyte-Saga-star-Susan-Hampshire-reveals-end-life-suffer-like-sisters-final-weeks-powerful-contribution-debate-assisted-dying.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 00:30:22 GMT", + "enclosure": { + "length": "11545", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631857-0-image-a-33_1704403315311.jpg" + }, + "content": "'I have witnessed, hour by hour and week by week, my loved ones' wishes for a dignified end being denied,' Susan wrote in a submission to the House of Commons health select committee.", + "contentSnippet": "'I have witnessed, hour by hour and week by week, my loved ones' wishes for a dignified end being denied,' Susan wrote in a submission to the House of Commons health select committee.", + "guid": "https://www.dailymail.co.uk/femail/article-12927855/Forsyte-Saga-star-Susan-Hampshire-reveals-end-life-suffer-like-sisters-final-weeks-powerful-contribution-debate-assisted-dying.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T00:30:22.000Z" + }, + { + "title": "Shane MacGowan's widow\u00a0Victoria Mary Clarke claims the late singer has contacted her with a message following his death", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928375/Shane-Macgowans-widow-message-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 00:26:03 GMT", + "enclosure": { + "length": "9858", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79637795-0-image-a-4_1704414328548.jpg" + }, + "content": "The Pogues hitmaker had been battling viral encephalitis and was released from hospital in Dublin shortly before passing away on November 30 surrounded by his family.", + "contentSnippet": "The Pogues hitmaker had been battling viral encephalitis and was released from hospital in Dublin shortly before passing away on November 30 surrounded by his family.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928375/Shane-Macgowans-widow-message-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T00:26:03.000Z" + }, + { + "title": "'How ironic Trainline Wrapped dropped late': Rail passengers share hilarious memes of their 'year in trains' revealing their most visited stations - but not how many journeys were cancelled!", + "link": "https://www.dailymail.co.uk/news/article-12928261/Trainline-Wrapped-late-Rail-memes-trains.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 00:13:26 GMT", + "enclosure": { + "length": "7094", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79636681-0-image-m-54_1704413197925.jpg" + }, + "content": "'Year in Trains', which emulates Spotify Wrapped, reveals to Trainline customers their most visited railway stations in 2023, but does not offer up information on how many journeys were cancelled.", + "contentSnippet": "'Year in Trains', which emulates Spotify Wrapped, reveals to Trainline customers their most visited railway stations in 2023, but does not offer up information on how many journeys were cancelled.", + "guid": "https://www.dailymail.co.uk/news/article-12928261/Trainline-Wrapped-late-Rail-memes-trains.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T00:13:26.000Z" + }, + { + "title": "The Spice Girls set to become first female group to feature on an entire set of Royal Mail stamps to celebrate their 30th anniversary", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927463/The-Spice-Girls-feature-entire-set-Royal-Mail-stamps-celebrate-30th-anniversary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 00:10:39 GMT", + "enclosure": { + "length": "12068", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79627151-0-image-m-44_1704394039414.jpg" + }, + "content": "The Spice Girls have become the first female group to feature on a special stamp set issued by the Royal Mail .", + "contentSnippet": "The Spice Girls have become the first female group to feature on a special stamp set issued by the Royal Mail .", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927463/The-Spice-Girls-feature-entire-set-Royal-Mail-stamps-celebrate-30th-anniversary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T00:10:39.000Z" + }, + { + "title": "BBC Radio 1's Sound of 2024 winner revealed as panel including Olivia Rodrigo and Chase & Status award honour to band tipped for big things", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12926007/BBC-Radio-1-Sound-2024-winner-LastDinnerParty-Olivia-Rodrigo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 00:10:16 GMT", + "enclosure": { + "length": "4510", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/11/79610411-0-image-m-82_1704368661982.jpg" + }, + "content": "The winner of BBC Radio 1's Sound of 2024 has been announced. The group were chosen by a panel of over 140 industry experts and artists, including Olivia Rodrigo , Chase & Status and more.", + "contentSnippet": "The winner of BBC Radio 1's Sound of 2024 has been announced. The group were chosen by a panel of over 140 industry experts and artists, including Olivia Rodrigo , Chase & Status and more.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12926007/BBC-Radio-1-Sound-2024-winner-LastDinnerParty-Olivia-Rodrigo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T00:10:16.000Z" + }, + { + "title": "Shia LaBeouf is confirmed into Catholic Church and has said he wants 'to become a deacon'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928179/Shia-LaBeouf-confirmed-Catholic-Church-said-wants-deacon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 05 Jan 2024 00:00:12 GMT", + "enclosure": { + "length": "7272", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/00/79637123-0-image-m-5_1704412793622.jpg" + }, + "content": "The Los Angeles native, who follows the path of a number of celebrities who have had religious awakenings in recent years.", + "contentSnippet": "The Los Angeles native, who follows the path of a number of celebrities who have had religious awakenings in recent years.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928179/Shia-LaBeouf-confirmed-Catholic-Church-said-wants-deacon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-05T00:00:12.000Z" + }, + { + "title": "Virginia town shuts down TikToker's tunnel building project: Viral star racked up millions of views excavating chamber 22ft below her own home", + "link": "https://www.dailymail.co.uk/news/article-12927747/virginia-town-shuts-tiktoker-kala-tunnel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 23:57:05 GMT", + "enclosure": { + "length": "6138", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/77834135-0-image-m-94_1704406104175.jpg" + }, + "content": "Social media star Kala, 37, was ordered to halt work on the construction of a storm shelter beneath her suburban home until she acquires the necessary permits.", + "contentSnippet": "Social media star Kala, 37, was ordered to halt work on the construction of a storm shelter beneath her suburban home until she acquires the necessary permits.", + "guid": "https://www.dailymail.co.uk/news/article-12927747/virginia-town-shuts-tiktoker-kala-tunnel.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T23:57:05.000Z" + }, + { + "title": "Fossils of giant 'terror beast' worms that were top of the food chain 518 million years ago are discovered in North Greenland", + "link": "https://www.dailymail.co.uk/sciencetech/article-12927585/Giant-terror-beast-worm-Greenland-fossil.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 23:54:07 GMT", + "enclosure": { + "length": "7760", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79630555-0-image-m-19_1704403615314.jpg" + }, + "content": "The 1-ft-long worm, whose name Timorebestia means 'terror beasts' in Latin, was one of the largest animals prowling Earth's oceans during the Early Cambrian Period, scientists said", + "contentSnippet": "The 1-ft-long worm, whose name Timorebestia means 'terror beasts' in Latin, was one of the largest animals prowling Earth's oceans during the Early Cambrian Period, scientists said", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12927585/Giant-terror-beast-worm-Greenland-fossil.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T23:54:07.000Z" + }, + { + "title": "Jody Bunting: Police accused gay Big Breakfast fitness guru of 'trying to murder allergic woman boss with chocolate' because he fancied her", + "link": "https://www.dailymail.co.uk/news/article-12927393/big-breakfast-accused-jody-bunting-murder-chocolate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 23:22:01 GMT", + "enclosure": { + "length": "7992", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631595-0-image-m-22_1704403622769.jpg" + }, + "content": "EXCLUSIVE: Jody, 45, insisted that he had innocently left the half-eaten bar of Cadbury Dairy Milk Fruit and Nut in a storeroom at the health club for his colleagues to tuck into as a treat.", + "contentSnippet": "EXCLUSIVE: Jody, 45, insisted that he had innocently left the half-eaten bar of Cadbury Dairy Milk Fruit and Nut in a storeroom at the health club for his colleagues to tuck into as a treat.", + "guid": "https://www.dailymail.co.uk/news/article-12927393/big-breakfast-accused-jody-bunting-murder-chocolate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T23:22:01.000Z" + }, + { + "title": "Hundreds sign petition against town's \u00a3250,000 Spanish-style plaza which has sparked a chaotic one-way system for bin lorries and tourist traffic", + "link": "https://www.dailymail.co.uk/news/article-12927669/residents-sign-petition-against-Spanish-style-plaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 23:20:27 GMT", + "enclosure": { + "length": "10250", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79629437-0-image-m-41_1704399691091.jpg" + }, + "content": "A stretch along the seafront of Herne Bay in Kent has recently been shut off to cars as a result of the area's pedestrianisation scheme.", + "contentSnippet": "A stretch along the seafront of Herne Bay in Kent has recently been shut off to cars as a result of the area's pedestrianisation scheme.", + "guid": "https://www.dailymail.co.uk/news/article-12927669/residents-sign-petition-against-Spanish-style-plaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T23:20:27.000Z" + }, + { + "title": "QUENTIN LETTS watches Keir Starmer's New Year speech: 'He was like a hippo waddling into the swamp for its morning sit-down. Blimey it was dire'", + "link": "https://www.dailymail.co.uk/debate/article-12928149/QUENTIN-LETTS-watches-Keir-Starmers-New-Year-speech-like-hippo-waddling-swamp-morning-sit-Blimey-dire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 23:05:35 GMT", + "enclosure": { + "length": "9646", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634503-0-image-m-36_1704408231707.jpg" + }, + "content": "QUENTIN LETTS: On the eleventh day of Christmas, my true love said to me: 'Sir Keir Starmer's giving a speech in Bristol - is he always this demoralising?'", + "contentSnippet": "QUENTIN LETTS: On the eleventh day of Christmas, my true love said to me: 'Sir Keir Starmer's giving a speech in Bristol - is he always this demoralising?'", + "guid": "https://www.dailymail.co.uk/debate/article-12928149/QUENTIN-LETTS-watches-Keir-Starmers-New-Year-speech-like-hippo-waddling-swamp-morning-sit-Blimey-dire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T23:05:35.000Z" + }, + { + "title": "JAN MOIR: Every day that ex-Post Office boss Paula Vennells holds on to her CBE is an affront to the victims who suffered so much on her watch", + "link": "https://www.dailymail.co.uk/debate/article-12928203/JAN-MOIR-day-ex-Post-Office-boss-Paula-Vennells-holds-CBE-affront-victims-suffered-watch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 22:59:07 GMT", + "enclosure": { + "length": "11173", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633973-0-image-a-58_1704407031862.jpg" + }, + "content": "JAN MOIR: Yet how could Paula Vennells square her godly conscience with her award for services to the Post Office in light of the scandal of the Post Office workers.", + "contentSnippet": "JAN MOIR: Yet how could Paula Vennells square her godly conscience with her award for services to the Post Office in light of the scandal of the Post Office workers.", + "guid": "https://www.dailymail.co.uk/debate/article-12928203/JAN-MOIR-day-ex-Post-Office-boss-Paula-Vennells-holds-CBE-affront-victims-suffered-watch.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T22:59:07.000Z" + }, + { + "title": "One Life review: Tired of bad news? Let one of life's good guys give you a lift, writes BRIAN VINER", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927767/One-Life-review-BRIAN-VINER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 22:58:13 GMT", + "enclosure": { + "length": "6232", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79635253-0-image-m-97_1704408683801.jpg" + }, + "content": "BRIAN VINER: One Life dramatises what in recent years has become a well-known tale, that of hundreds of Jewish children from Czechoslovakia who escaped the Holocaust.", + "contentSnippet": "BRIAN VINER: One Life dramatises what in recent years has become a well-known tale, that of hundreds of Jewish children from Czechoslovakia who escaped the Holocaust.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927767/One-Life-review-BRIAN-VINER.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T22:58:13.000Z" + }, + { + "title": "MAUREEN CALLAHAN: Pitiful Prince Andrew, Sleazy Bill Clinton and the burning shame that will never end... until they find the courage to tell us what they REALLY know about Epstein's circus of depravity", + "link": "https://www.dailymail.co.uk/news/article-12927683/jeffery-epstein-prince-andrew-bill-clinton-maureen-callahan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 22:50:21 GMT", + "enclosure": { + "length": "9885", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633539-0-image-a-4_1704406852817.jpg" + }, + "content": "No wonder conspiracy theories abound as to Epstein's manner of death. Not one single person save Maxwell, have ever been called to account.", + "contentSnippet": "No wonder conspiracy theories abound as to Epstein's manner of death. Not one single person save Maxwell, have ever been called to account.", + "guid": "https://www.dailymail.co.uk/news/article-12927683/jeffery-epstein-prince-andrew-bill-clinton-maureen-callahan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T22:50:21.000Z" + }, + { + "title": "Did Charles Lindbergh sacrifice his son for science and then stage a monstrous cover-up? The kidnap and murder of the legendary aviator's child was dubbed the 'crime of the century' - but now this chilling question is being asked", + "link": "https://www.dailymail.co.uk/news/article-12928071/Did-Charles-Lindbergh-sacrifice-son-science-stage-monstrous-cover-kidnap-murder-legendary-aviators-child-dubbed-crime-century-chilling-question-asked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 22:48:47 GMT", + "enclosure": { + "length": "5354", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633271-0-image-m-76_1704405598003.jpg" + }, + "content": "Was that version of events wrong? Now, according to Lise Pearlman, a retired judge and celebrated author, the whole sorry tale might be one of the biggest ever miscarriages of justice.", + "contentSnippet": "Was that version of events wrong? Now, according to Lise Pearlman, a retired judge and celebrated author, the whole sorry tale might be one of the biggest ever miscarriages of justice.", + "guid": "https://www.dailymail.co.uk/news/article-12928071/Did-Charles-Lindbergh-sacrifice-son-science-stage-monstrous-cover-kidnap-murder-legendary-aviators-child-dubbed-crime-century-chilling-question-asked.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T22:48:47.000Z" + }, + { + "title": "Mr Bates vs The Post Office viewers left in tears as 'heartbreaking'\u00a0final episode airs", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12928113/Mr-Bates-vs-Post-Office-viewers-left-tears-heartbreaking-final-episode-airs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 22:44:18 GMT", + "enclosure": { + "length": "10157", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79634561-0-image-a-61_1704407602636.jpg" + }, + "content": "The series follows the true story of hundreds of subpostmasters wrongly prosecuted for theft by the Post Office due to a faulty IT system.", + "contentSnippet": "The series follows the true story of hundreds of subpostmasters wrongly prosecuted for theft by the Post Office due to a faulty IT system.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12928113/Mr-Bates-vs-Post-Office-viewers-left-tears-heartbreaking-final-episode-airs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T22:44:18.000Z" + }, + { + "title": "How paedophile Jeffrey Epstein's Caribbean paradise Little Saint James was debased as underage girls were trafficked to the island", + "link": "https://www.dailymail.co.uk/news/article-12928077/Jeffrey-Epsteins-Caribbean-paradise.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 22:36:36 GMT", + "enclosure": { + "length": "11801", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/22/79633719-0-image-m-55_1704406366060.jpg" + }, + "content": "With the help of his former lover and 'Madame' Ghislaine Maxwell , Jeffrey Epstein trafficked underage girls to the island, where he would rape and sexually assault them.", + "contentSnippet": "With the help of his former lover and 'Madame' Ghislaine Maxwell , Jeffrey Epstein trafficked underage girls to the island, where he would rape and sexually assault them.", + "guid": "https://www.dailymail.co.uk/news/article-12928077/Jeffrey-Epsteins-Caribbean-paradise.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T22:36:36.000Z" + }, + { + "title": "Expert advice on what to do in Storm Henk-style floods and the crucial error that could lead to tragedy", + "link": "https://www.dailymail.co.uk/news/article-12927271/Expert-advice-Storm-Henk-style-floods-crucial-error-lead-tragedy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 22:24:23 GMT", + "enclosure": { + "length": "5430", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79626241-0-image-a-21_1704393575508.jpg" + }, + "content": "Professor Hannah Cloke, a hydrologist at the University of Reading, warned against treating a flood as a 'swimming pool' or 'large puddle', pointing out risks such as falling trees.", + "contentSnippet": "Professor Hannah Cloke, a hydrologist at the University of Reading, warned against treating a flood as a 'swimming pool' or 'large puddle', pointing out risks such as falling trees.", + "guid": "https://www.dailymail.co.uk/news/article-12927271/Expert-advice-Storm-Henk-style-floods-crucial-error-lead-tragedy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T22:24:23.000Z" + }, + { + "title": "'I want everyone to know the b****** is gone': Father says he'll frame letter confirming killer who snatched his two-year-old daughter from her bed before murdering her has died in jail", + "link": "https://www.dailymail.co.uk/news/article-12927401/I-want-know-b-gone-Father-says-hell-frame-letter-confirming-killer-snatched-two-year-old-daughter-bed-murdering-died-jail.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 22:07:56 GMT", + "enclosure": { + "length": "10456", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/18/79627209-0-image-a-15_1704394097152.jpg" + }, + "content": "Robert Astley, 68, of Sutton Coldfield,\u00a0was jailed for life with a minimum term of 20 years in 1983 after admitting to the murder of Denise Bradbury.", + "contentSnippet": "Robert Astley, 68, of Sutton Coldfield,\u00a0was jailed for life with a minimum term of 20 years in 1983 after admitting to the murder of Denise Bradbury.", + "guid": "https://www.dailymail.co.uk/news/article-12927401/I-want-know-b-gone-Father-says-hell-frame-letter-confirming-killer-snatched-two-year-old-daughter-bed-murdering-died-jail.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T22:07:56.000Z" + }, + { + "title": "The men who wash their towels just once a YEAR - As experts warn millions could be risking skin infections and other health issues because of poor towel hygiene", + "link": "https://www.dailymail.co.uk/health/article-12927965/men-wash-towels-year-warning-skin-infection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 22:05:57 GMT", + "enclosure": { + "length": "7149", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79632461-0-image-m-44_1704405087499.jpg" + }, + "content": "A survey of 2,200 UK residents reveals men are five times more likely than women to wash their towels once a year or less.", + "contentSnippet": "A survey of 2,200 UK residents reveals men are five times more likely than women to wash their towels once a year or less.", + "guid": "https://www.dailymail.co.uk/health/article-12927965/men-wash-towels-year-warning-skin-infection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T22:05:57.000Z" + }, + { + "title": "Rape-accused Sunderland star Jack Diamond tells jurors he refused sex with woman he met on Tinder which left her in a 'huff'", + "link": "https://www.dailymail.co.uk/news/article-12927307/Rape-accused-Sunderland-star-Jack-Diamond-tells-jurors-refused-sex-woman-met-Tinder-left-huff.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 21:56:53 GMT", + "enclosure": { + "length": "8101", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/17/79624549-0-image-m-13_1704390472556.jpg" + }, + "content": "Jack Diamond, 23, is on trial charged with raping and sexually assaulting the woman at his home in Washington, Sunderland, in May 2022.", + "contentSnippet": "Jack Diamond, 23, is on trial charged with raping and sexually assaulting the woman at his home in Washington, Sunderland, in May 2022.", + "guid": "https://www.dailymail.co.uk/news/article-12927307/Rape-accused-Sunderland-star-Jack-Diamond-tells-jurors-refused-sex-woman-met-Tinder-left-huff.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T21:56:53.000Z" + }, + { + "title": "Princess Martha Louise of Norway's fianc\u00e9 Shaman Durek is slammed for saying suicidal people and naughty children are 'possessed by evil spirits'", + "link": "https://www.dailymail.co.uk/femail/article-12927757/Princess-Martha-Louise-Norways-fianc-Shaman-Durek-slammed-saying-suicidal-people-naughty-children-possessed-evil-spirits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 21:53:45 GMT", + "enclosure": { + "length": "11199", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79630811-0-image-a-42_1704401644812.jpg" + }, + "content": "The US-born bisexual celebrity healer took to Instagram to share a video about the 'suicide spirit' in Shamanism.", + "contentSnippet": "The US-born bisexual celebrity healer took to Instagram to share a video about the 'suicide spirit' in Shamanism.", + "guid": "https://www.dailymail.co.uk/femail/article-12927757/Princess-Martha-Louise-Norways-fianc-Shaman-Durek-slammed-saying-suicidal-people-naughty-children-possessed-evil-spirits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T21:53:45.000Z" + }, + { + "title": "ALISON BOSHOFF: How chef Brooklyn Beckham plans to sell his hot sauce in the virtual world as his billionaire father-in-law Nelson Peltz reportedly advises him on building his culinary empire", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927625/ALISON-BOSHOFF-chef-Brooklyn-Beckham-plans-sell-hot-sauce-virtual-world-billionaire-father-law-Nelson-Peltz-reportedly-advises-building-culinary-empire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 21:40:50 GMT", + "enclosure": { + "length": "10279", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/19/79629045-0-image-a-37_1704398180017.jpg" + }, + "content": "ALISON BOSHOFF: Brooklyn Beckham is in the advanced stages of planning the launch of his very own 'Brand Beckham' called Cloud 23 after the shirt his father David wore at Real Madrid.", + "contentSnippet": "ALISON BOSHOFF: Brooklyn Beckham is in the advanced stages of planning the launch of his very own 'Brand Beckham' called Cloud 23 after the shirt his father David wore at Real Madrid.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927625/ALISON-BOSHOFF-chef-Brooklyn-Beckham-plans-sell-hot-sauce-virtual-world-billionaire-father-law-Nelson-Peltz-reportedly-advises-building-culinary-empire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T21:40:50.000Z" + }, + { + "title": "Sandra Bullock releases late partner Bryan Randall's ashes in Wyoming on what would have been his 58th birthday - after tragic death from ALS battle", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12927699/Sandra-Bullock-releases-late-partner-Bryan-Randalls-ashes-Wyoming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 21:32:35 GMT", + "enclosure": { + "length": "10803", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631123-0-image-a-36_1704402214038.jpg" + }, + "content": "Sandra Bullock has released her partner Bryan Randall's ashes in Wyoming, according to her sister Gesine Bullock-Prado, five months after his tragic death from private ALS battle.", + "contentSnippet": "Sandra Bullock has released her partner Bryan Randall's ashes in Wyoming, according to her sister Gesine Bullock-Prado, five months after his tragic death from private ALS battle.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12927699/Sandra-Bullock-releases-late-partner-Bryan-Randalls-ashes-Wyoming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T21:32:35.000Z" + }, + { + "title": "Jerry Lee Lewis' former teen bride Myra Williams opens up about their marriage when she was just 13 that was so controversial it ruined his rock and roll career - before 'things went to hell quickly'", + "link": "https://www.dailymail.co.uk/news/article-12926925/jerry-lee-lewis-teen-wife-myra-williams-opens-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 21:21:49 GMT", + "enclosure": { + "length": "10642", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/20/79629407-0-image-a-48_1704398810854.jpg" + }, + "content": "Myra Gale Brown, as she was then known, married Jerry Lee Lewis in December 1957 when she was just 13 - enraging her father JW Brown who was also Lewis' cousin.", + "contentSnippet": "Myra Gale Brown, as she was then known, married Jerry Lee Lewis in December 1957 when she was just 13 - enraging her father JW Brown who was also Lewis' cousin.", + "guid": "https://www.dailymail.co.uk/news/article-12926925/jerry-lee-lewis-teen-wife-myra-williams-opens-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T21:21:49.000Z" + }, + { + "title": "Keep calm and carry on watching: With their bottom-pinching and wolf-whistling, the classic series risks being cancelled today. But a new book argues it was the men, not the women, who were the butt of the jokes", + "link": "https://www.dailymail.co.uk/home/books/article-12927671/Keep-calm-carry-watching-bottom-pinching-wolf-whistling-classic-series-risks-cancelled-today-new-book-argues-men-not-women-butt-jokes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 04 Jan 2024 21:13:09 GMT", + "enclosure": { + "length": "11364", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/04/21/79631387-0-image-a-23_1704402723291.jpg" + }, + "content": "At serious risk of cancellation due to their bottom-pinching and wolf-whistling, the Carry On films are rather defended as social history in The Carry On Girls by Gemma and Robert Ross.", + "contentSnippet": "At serious risk of cancellation due to their bottom-pinching and wolf-whistling, the Carry On films are rather defended as social history in The Carry On Girls by Gemma and Robert Ross.", + "guid": "https://www.dailymail.co.uk/home/books/article-12927671/Keep-calm-carry-watching-bottom-pinching-wolf-whistling-classic-series-risks-cancelled-today-new-book-argues-men-not-women-butt-jokes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-04T21:13:09.000Z" + }, + { + "title": "Britain and US 'to carry out airstrikes against Iran-backed Houthi rebels in Yemen TONIGHT': Emergency meeting is called for UK ministers to sign off response after ships targeted in Red Sea", + "link": "https://www.dailymail.co.uk/news/article-12953065/emergency-cabinet-meeting-yemen-attacks-airstrikes-ministers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 21:13:51 GMT", + "enclosure": { + "length": "8247", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906831-0-image-a-25_1704999404665.jpg" + }, + "content": "The Prime Minister was due to meet his top team at 7.45pm this evening to discuss a response to ships being targeted in the Red Sea.", + "contentSnippet": "The Prime Minister was due to meet his top team at 7.45pm this evening to discuss a response to ships being targeted in the Red Sea.", + "guid": "https://www.dailymail.co.uk/news/article-12953065/emergency-cabinet-meeting-yemen-attacks-airstrikes-ministers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T21:13:51.000Z" + }, + { + "title": "Yemen airstrikes LIVE: Rishi Sunak calls emergency cabinet meeting to plan response to attacks from Houthi rebels", + "link": "https://www.dailymail.co.uk/news/live/article-12953241/Yemen-airstrikes-live-updates-emergency-cabinet-meeting-rishi-sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 21:12:19 GMT", + "enclosure": { + "length": "7081", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/20/79909405-0-image-m-12_1705004541642.jpg" + }, + "content": "Rishi Sunak calls emergency cabinet meeting to plan response to attacks from Houthi rebels", + "contentSnippet": "Rishi Sunak calls emergency cabinet meeting to plan response to attacks from Houthi rebels", + "guid": "https://www.dailymail.co.uk/news/live/article-12953241/Yemen-airstrikes-live-updates-emergency-cabinet-meeting-rishi-sunak.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T21:12:19.000Z" + }, + { + "title": "Police probe 'dine and dashers' who 'fled without paying \u00a3425 bill': Italian restaurant posts images of four women who visited with eight children 'and gorged on oysters, roast beef and pasta'", + "link": "https://www.dailymail.co.uk/news/article-12952301/Dine-dash-Restaurant-pictures-women-refusing-pay-bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:53:39 GMT", + "enclosure": { + "length": "4676", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79901147-0-image-m-9_1704991273517.jpg" + }, + "content": "Italian restaurant La Bella Vista, in St Leonards-on-Sea, East Sussex, has pictured and shamed four women who they say dined-and-dashed with their eight children after refusing to pay a \u00a3400 bill.", + "contentSnippet": "Italian restaurant La Bella Vista, in St Leonards-on-Sea, East Sussex, has pictured and shamed four women who they say dined-and-dashed with their eight children after refusing to pay a \u00a3400 bill.", + "guid": "https://www.dailymail.co.uk/news/article-12952301/Dine-dash-Restaurant-pictures-women-refusing-pay-bill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:53:39.000Z" + }, + { + "title": "Now GPs are threatening to strike! \u00a3110,000/year family doctors could organise industrial action ahead of general election later this year", + "link": "https://www.dailymail.co.uk/health/article-12952565/Now-GPs-threatening-strike-110-000-year-family-doctors-organise-industrial-action-ahead-general-election-later-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:52:37 GMT", + "enclosure": { + "length": "9728", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79842439-0-image-m-19_1704991790794.jpg" + }, + "content": "The British Medical Association said industrial action by family doctors could 'play out' into autumn and winter so MPs are forced to talk about it 'on the doorstep' during their election campaign.", + "contentSnippet": "The British Medical Association said industrial action by family doctors could 'play out' into autumn and winter so MPs are forced to talk about it 'on the doorstep' during their election campaign.", + "guid": "https://www.dailymail.co.uk/health/article-12952565/Now-GPs-threatening-strike-110-000-year-family-doctors-organise-industrial-action-ahead-general-election-later-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:52:37.000Z" + }, + { + "title": "Curb Your Enthusiasm final season trailer: Larry David goes out with a bang as he hilariously argues with Vince Vaughn, Sean Hayes and Dan Levy", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12953187/Curb-Enthusiasm-final-season-trailer-Larry-David-goes-bang-hilariously-argues-Vince-Vaughn-Sean-Hayes-Dan-Levy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:42:57 GMT", + "enclosure": { + "length": "10292", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79907795-0-image-m-74_1705001764827.jpg" + }, + "content": "Larry David is going out in style as the trailer for the final season of Curb Your Enthusiasm dropped on Thursday.\u00a0The 12th season of the HBO hit comedy will feature 10 episodes.", + "contentSnippet": "Larry David is going out in style as the trailer for the final season of Curb Your Enthusiasm dropped on Thursday.\u00a0The 12th season of the HBO hit comedy will feature 10 episodes.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12953187/Curb-Enthusiasm-final-season-trailer-Larry-David-goes-bang-hilariously-argues-Vince-Vaughn-Sean-Hayes-Dan-Levy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:42:57.000Z" + }, + { + "title": "Lauryn Goodman's rise to fame as her reality star sister's sidekick: How both had babies with top footballers within weeks of each other - before a 'bitter fallout' between the siblings amid THAT Kyle Walker paternity scandal", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12950907/Lauryn-Goodman-rise-fame-reality-star-sisters-sidekick-babies-footballers-weeks-bitter-fallout-siblings-amid-Kyle-Walker-paternity-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:35:41 GMT", + "enclosure": { + "length": "11485", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/13/79891933-0-image-m-76_1704979057370.jpg" + }, + "content": "Social media star Lauryn, 33, has dominated headlines of late, with married footballer Kyle Walker named as the\u00a0the father of her five-month-old daughter.", + "contentSnippet": "Social media star Lauryn, 33, has dominated headlines of late, with married footballer Kyle Walker named as the\u00a0the father of her five-month-old daughter.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12950907/Lauryn-Goodman-rise-fame-reality-star-sisters-sidekick-babies-footballers-weeks-bitter-fallout-siblings-amid-Kyle-Walker-paternity-scandal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:35:41.000Z" + }, + { + "title": "Kyle Walker IS the father of Lauryn Goodman's 5-month-old daughter - after he was dumped by wife Annie Kilner and kicked out of their \u00a32.4million mansion", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12952905/kyle-walker-father-lauryn-goodman-daughter-annie-kilner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:34:33 GMT", + "enclosure": { + "length": "10877", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905613-0-image-a-15_1704997214215.jpg" + }, + "content": "The Manchester City defender, 33, has been rumoured to be the biological dad since the reality star gave birth to the tot in August, which she claimed to have welcomed with 'another footballer'.", + "contentSnippet": "The Manchester City defender, 33, has been rumoured to be the biological dad since the reality star gave birth to the tot in August, which she claimed to have welcomed with 'another footballer'.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12952905/kyle-walker-father-lauryn-goodman-daughter-annie-kilner.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:34:33.000Z" + }, + { + "title": "Donald Trump launches into a tirade during closing arguments of fraud trial forcing judge - who finally caves and lets the former president speak - to order lawyers 'control your client!'", + "link": "https://www.dailymail.co.uk/news/article-12951909/Donald-Trump-court-closing-arguments-fraud-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:34:03 GMT", + "enclosure": { + "length": "6546", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79898583-0-image-m-20_1704990669525.jpg" + }, + "content": "Donald Trump was seen heading to New York Supreme Court on Thursday where closing arguments are set to begin.", + "contentSnippet": "Donald Trump was seen heading to New York Supreme Court on Thursday where closing arguments are set to begin.", + "guid": "https://www.dailymail.co.uk/news/article-12951909/Donald-Trump-court-closing-arguments-fraud-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:34:03.000Z" + }, + { + "title": "The future of sex toys: An ejaculation trainer, a new phone sex app for long distance intimacy and the first vibrator to use sound waves", + "link": "https://www.dailymail.co.uk/sciencetech/article-12952441/Sex-tech-CES-svakom-myhixel-handy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:33:35 GMT", + "enclosure": { + "length": "5369", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79907781-0-image-m-65_1705002189065.jpg" + }, + "content": "Sexual technology is not as prevalent at CES as it once was, but a few high-tech companies showed off their devices, with an emphasis on security, intimacy, and even medical treatment.", + "contentSnippet": "Sexual technology is not as prevalent at CES as it once was, but a few high-tech companies showed off their devices, with an emphasis on security, intimacy, and even medical treatment.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12952441/Sex-tech-CES-svakom-myhixel-handy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:33:35.000Z" + }, + { + "title": "Cash-strapped Conservative council paid 'anti-Tory' comedian Simon Harris \u00a3500,000 to 'engage' with the public online during the Covid pandemic", + "link": "https://www.dailymail.co.uk/news/article-12953095/conservative-council-anti-tory-simon-harris-comedian-covid-pandemic-public.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:33:18 GMT", + "enclosure": { + "length": "5830", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/20/79907019-0-image-a-30_1705004938541.jpg" + }, + "content": "Internet prankster Simon Harris was handed the huge sum of money to provide 'digital consultancy and delivery via social media channels' on behalf of Essex County Council.", + "contentSnippet": "Internet prankster Simon Harris was handed the huge sum of money to provide 'digital consultancy and delivery via social media channels' on behalf of Essex County Council.", + "guid": "https://www.dailymail.co.uk/news/article-12953095/conservative-council-anti-tory-simon-harris-comedian-covid-pandemic-public.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:33:18.000Z" + }, + { + "title": "Secret tunnels, a brawl with police and the fanatical Hasidic Jews devoted to their 'Messiah': Incredible story behind the viral videos that shocked the world as 'extremist' zealots staged their own Shawshank Redemption in reverse", + "link": "https://www.dailymail.co.uk/news/article-12952759/Secret-tunnels-brawl-police-fanatical-Hasidic-Jews-Messiah-Shawshank-Redemption.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:28:49 GMT", + "enclosure": { + "length": "5048", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905807-0-image-m-22_1704997530147.jpg" + }, + "content": "The leaders of the synagogue, which are the headquarters of the Chabad-Lubavitch movement in Crown Heights, Brooklyn, only discovered the tunnel in recent weeks.", + "contentSnippet": "The leaders of the synagogue, which are the headquarters of the Chabad-Lubavitch movement in Crown Heights, Brooklyn, only discovered the tunnel in recent weeks.", + "guid": "https://www.dailymail.co.uk/news/article-12952759/Secret-tunnels-brawl-police-fanatical-Hasidic-Jews-Messiah-Shawshank-Redemption.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:28:49.000Z" + }, + { + "title": "End of road for EVs? Hertz to sell 20,000 since customers don't like them - but could you get a good deal buying a cast-off Tesla for $18k?", + "link": "https://www.dailymail.co.uk/yourmoney/cars/article-12951939/hertz-sell-fleet-tesla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:26:48 GMT", + "enclosure": { + "length": "9893", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79899913-0-image-a-15_1704989897000.jpg" + }, + "content": "Car rental giant Hertz is selling 20,000 EVs - a third of its electric fleet - due to a lack of demand and expensive repair costs", + "contentSnippet": "Car rental giant Hertz is selling 20,000 EVs - a third of its electric fleet - due to a lack of demand and expensive repair costs", + "guid": "https://www.dailymail.co.uk/yourmoney/cars/article-12951939/hertz-sell-fleet-tesla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:26:48.000Z" + }, + { + "title": "Horoscope today: Daily guide to what the stars have in store for YOU - January 12, 2024", + "link": "https://www.dailymail.co.uk/femail/article-12953215/horoscope-today-daily-star-sign-january-12-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:11:42 GMT", + "enclosure": { + "length": "7817", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/20/79908815-0-image-a-31_1705003429545.jpg" + }, + "content": "OSCAR CAINER: Today's Mars /Jupiter link brings a reminder that spiritual exploration (rather than material expansion) provides the best return on our investments.", + "contentSnippet": "OSCAR CAINER: Today's Mars /Jupiter link brings a reminder that spiritual exploration (rather than material expansion) provides the best return on our investments.", + "guid": "https://www.dailymail.co.uk/femail/article-12953215/horoscope-today-daily-star-sign-january-12-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:11:42.000Z" + }, + { + "title": "Secondary school is forced to apologise after staff handed pupil a self-help leaflet recommending smoking a cigarette as a calming measure", + "link": "https://www.dailymail.co.uk/news/article-12952765/School-forced-apologise-handing-pupil-self-help-leaflet-recommending-smoking-cigarette-calming-measure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:07:28 GMT", + "enclosure": { + "length": "6440", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79903843-0-image-m-11_1704994986818.jpg" + }, + "content": "The flyer recommending the habit was handed out by a member of staff at Bartley Green School, on the southwest edge of Birmingham, it confirmed in an email to parents", + "contentSnippet": "The flyer recommending the habit was handed out by a member of staff at Bartley Green School, on the southwest edge of Birmingham, it confirmed in an email to parents", + "guid": "https://www.dailymail.co.uk/news/article-12952765/School-forced-apologise-handing-pupil-self-help-leaflet-recommending-smoking-cigarette-calming-measure.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:07:28.000Z" + }, + { + "title": "Former Baywatch star is unrecognizable as she shows off impressive TATTOO sleeves during outing in LA... so, can YOU identify the former screen siren?", + "link": "https://www.dailymail.co.uk/femail/article-12952767/Ex-Baywatch-star-unrecognizable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:07:22 GMT", + "enclosure": { + "length": "11522", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905183-0-image-a-55_1704996528352.jpg" + }, + "content": "The now 54-year-old was spotted as she ran errands in Los Angeles on Wednesday. She\u00a0began by hauling multiple boxes on a hand truck before taking her dog for a walk.", + "contentSnippet": "The now 54-year-old was spotted as she ran errands in Los Angeles on Wednesday. She\u00a0began by hauling multiple boxes on a hand truck before taking her dog for a walk.", + "guid": "https://www.dailymail.co.uk/femail/article-12952767/Ex-Baywatch-star-unrecognizable.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:07:22.000Z" + }, + { + "title": "Jeremy Allen White more than doubles salary to $750,000 per episode of The Bear after his raunchy Calvin Klein underwear campaign - but says being in the kitchen is scarier than wrestling in the Iron Claw", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12951833/Jeremy-Allen-White-salary-Bear-Calvin-Klein-underwear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:07:19 GMT", + "enclosure": { + "length": "10452", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79901517-0-image-a-4_1704991538856.jpg" + }, + "content": "Actor Jeremy Allen White will return as Carmen 'Carmy' Berzatto for a third season of acclaimed drama The Bear. He will start filming in Chicago at the end of February.", + "contentSnippet": "Actor Jeremy Allen White will return as Carmen 'Carmy' Berzatto for a third season of acclaimed drama The Bear. He will start filming in Chicago at the end of February.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12951833/Jeremy-Allen-White-salary-Bear-Calvin-Klein-underwear.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:07:19.000Z" + }, + { + "title": "Police issue new pic of missing woman, 39, who was wearing long padded coat and hi-viz vest when she was last seen nearly three weeks ago", + "link": "https://www.dailymail.co.uk/news/article-12953077/Police-new-pic-missing-woman-wearing-long-padded-coat-hi-viz-vest-seen-nearly-three-weeks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:05:32 GMT", + "enclosure": { + "length": "3614", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79908219-0-image-m-28_1705002514463.jpg" + }, + "content": "Lucy Charles, 39, was last seen in Bangor-on-Dee, Wrexham at 5.34pm when she was captured on CCTV walking past the Royal Oak pub on December 22.", + "contentSnippet": "Lucy Charles, 39, was last seen in Bangor-on-Dee, Wrexham at 5.34pm when she was captured on CCTV walking past the Royal Oak pub on December 22.", + "guid": "https://www.dailymail.co.uk/news/article-12953077/Police-new-pic-missing-woman-wearing-long-padded-coat-hi-viz-vest-seen-nearly-three-weeks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:05:32.000Z" + }, + { + "title": "Touching moment Rob Burrow smiles as he's presented with his CBE by Prince William - alongside his beaming wife and daughters who said it was an 'honour' to meet a future King", + "link": "https://www.dailymail.co.uk/femail/article-12952033/Robs-little-Princesses-Rob-Burrows-adorable-daughters-practice-curtsies-Prince-William-visits-Headingley-Stadium-present-rugby-legend-CBE-raising-awareness-Motor-Neurone-Disease.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:00:44 GMT", + "enclosure": { + "length": "10437", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904057-0-image-a-61_1704994602265.jpg" + }, + "content": "The Prince of Wales presented Rob, 41, with the medal - still in its box - as he lauded the former athlete's legacy and efforts in campaigning.", + "contentSnippet": "The Prince of Wales presented Rob, 41, with the medal - still in its box - as he lauded the former athlete's legacy and efforts in campaigning.", + "guid": "https://www.dailymail.co.uk/femail/article-12952033/Robs-little-Princesses-Rob-Burrows-adorable-daughters-practice-curtsies-Prince-William-visits-Headingley-Stadium-present-rugby-legend-CBE-raising-awareness-Motor-Neurone-Disease.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:00:44.000Z" + }, + { + "title": "Armie Hammer's 'fianc\u00e9e' Marina Gris reveals couple has SPLIT, weeks after their 'engagement' and insists relationship was 'positive' and 'not reflective' of cannibalism and abuse allegations", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12952229/Armie-Hammer-fiancee-Marina-Gris-split-engagement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 20:00:25 GMT", + "enclosure": { + "length": "10203", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/15/79898281-0-image-a-42_1704988079645.jpg" + }, + "content": "Call Me By Your Name star Armie Hammer and his Kazakh beauty fianc\u00e9e have called off their marriage, she revealed Thursday in a message on Instagram.", + "contentSnippet": "Call Me By Your Name star Armie Hammer and his Kazakh beauty fianc\u00e9e have called off their marriage, she revealed Thursday in a message on Instagram.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12952229/Armie-Hammer-fiancee-Marina-Gris-split-engagement.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T20:00:25.000Z" + }, + { + "title": "Architectural historian who starred in Channel 5 show is jailed for over two years after she had a 'microsleep' at the wheel and caused a pile-up which killed a husband and wife", + "link": "https://www.dailymail.co.uk/news/article-12952993/please-channel-5-historian-jailed-sleep-wheel-accident-killed-husband-wife.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:58:08 GMT", + "enclosure": { + "length": "8251", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79906869-0-image-m-32_1705002777212.jpg" + }, + "content": "Ellen Leslie, 55, an acclaimed heritage consultant and commentator, dozed off while driving her youngest son Theo, 21, home to London from Edinburgh .", + "contentSnippet": "Ellen Leslie, 55, an acclaimed heritage consultant and commentator, dozed off while driving her youngest son Theo, 21, home to London from Edinburgh .", + "guid": "https://www.dailymail.co.uk/news/article-12952993/please-channel-5-historian-jailed-sleep-wheel-accident-killed-husband-wife.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:58:08.000Z" + }, + { + "title": "Why not promote Beatrice and Eugenie to front-line royals, asks RICHARD EDEN? They've never put a foot wrong! But\u00a0it's time to STRIP troubled Prince Andrew and Prince Harry from the line of succession - for the good of the Monarchy...", + "link": "https://www.dailymail.co.uk/news/article-12950903/King-promote-Beatrice-STRIP-Andrew-Harry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:57:10 GMT", + "enclosure": { + "length": "10063", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/10/79887367-0-image-a-4_1704970212160.jpg" + }, + "content": "'It's been a difficult week for the Royal Family, with allegations of Prince Andrew's seedy past casting a shadow over his brother's reign,' writes Richard Eden.", + "contentSnippet": "'It's been a difficult week for the Royal Family, with allegations of Prince Andrew's seedy past casting a shadow over his brother's reign,' writes Richard Eden.", + "guid": "https://www.dailymail.co.uk/news/article-12950903/King-promote-Beatrice-STRIP-Andrew-Harry.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:57:10.000Z" + }, + { + "title": "Spain's Prado Museum renames paintings to remove 'offensive' terms including 'dwarf' and 'deformed' after reviewing thousands of titles and descriptions to comply with disability laws", + "link": "https://www.dailymail.co.uk/news/article-12952819/Spains-Prado-Museum-renames-paintings-remove-offensive-terms-including-dwarf-deformed-reviewing-thousands-titles-descriptions-comply-disability-laws.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:56:19 GMT", + "enclosure": { + "length": "7457", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79907195-0-image-a-20_1705000632638.jpg" + }, + "content": "Workers at the Prado looked at nearly 27,000 descriptions of paintings on its website, and the signs that accompany 1,800 pieces of art as part of the review.", + "contentSnippet": "Workers at the Prado looked at nearly 27,000 descriptions of paintings on its website, and the signs that accompany 1,800 pieces of art as part of the review.", + "guid": "https://www.dailymail.co.uk/news/article-12952819/Spains-Prado-Museum-renames-paintings-remove-offensive-terms-including-dwarf-deformed-reviewing-thousands-titles-descriptions-comply-disability-laws.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:56:19.000Z" + }, + { + "title": "Penniless Ghislaine Maxwell is seeking to recoup MILLIONS from Jeffrey Epstein's estate - acting as her own lawyer a ndfiling legal briefs using a TYPEWRITER", + "link": "https://www.dailymail.co.uk/news/article-12951865/Jeffrey-Epstein-Ghislaine-Maxwell-typewriter-estate-lawsuit-prison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:50:32 GMT", + "enclosure": { + "length": "8997", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79902761-0-image-a-118_1704994804701.jpg" + }, + "content": "Ghislaine Maxwell is so broke she is now representing herself in court - and filing legal briefs on a typewriter from prison.", + "contentSnippet": "Ghislaine Maxwell is so broke she is now representing herself in court - and filing legal briefs on a typewriter from prison.", + "guid": "https://www.dailymail.co.uk/news/article-12951865/Jeffrey-Epstein-Ghislaine-Maxwell-typewriter-estate-lawsuit-prison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:50:32.000Z" + }, + { + "title": "Inside Kyle Walker and Annie Kilner's romance from 'love at first sight' to 'cheating' as model announces split and bombshell revelation he IS the father of Lauryn Goodman's 5-month old daughter", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12952707/Kyle-Walker-Annie-Kilners-romance-love-sight-cheating-rumours-model-announces-split-tumultuous-two-year-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:48:36 GMT", + "enclosure": { + "length": "10807", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905149-0-image-a-34_1704996434720.jpg" + }, + "content": "Here we take a look at their rocky romance - from 'love at first sight' to cheating rumours and bitter wars with Ex On The Beach star Lauryn Goodman.", + "contentSnippet": "Here we take a look at their rocky romance - from 'love at first sight' to cheating rumours and bitter wars with Ex On The Beach star Lauryn Goodman.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12952707/Kyle-Walker-Annie-Kilners-romance-love-sight-cheating-rumours-model-announces-split-tumultuous-two-year-marriage.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:48:36.000Z" + }, + { + "title": "Parents embrace Scandi trick of leaving babies outside to nap and opening bedroom windows as temperatures plummet, but cold therapy is nothing new - little ones were put in outdoor cages in the '40s", + "link": "https://www.dailymail.co.uk/femail/article-12951579/Parents-embrace-Scandi-trick-leaving-babies-outside-nap-opening-bedroom-windows-temperatures-plummet-cold-therapy-new-little-ones-outdoor-cages-40s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:46:39 GMT", + "enclosure": { + "length": "10507", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79899899-0-image-a-4_1704990054609.jpg" + }, + "content": "The technique is making waves through TikTok and Instagram as people from Britain and America embrace the idea of getting a better sleep by benefitting from the cold.", + "contentSnippet": "The technique is making waves through TikTok and Instagram as people from Britain and America embrace the idea of getting a better sleep by benefitting from the cold.", + "guid": "https://www.dailymail.co.uk/femail/article-12951579/Parents-embrace-Scandi-trick-leaving-babies-outside-nap-opening-bedroom-windows-temperatures-plummet-cold-therapy-new-little-ones-outdoor-cages-40s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:46:39.000Z" + }, + { + "title": "Sadio Mane's new wife, 18, is given a hero's welcome as she returns to her school, where she is still a student, and waves from a balcony to children chanting for her and her ex-Liverpool star husband, 31", + "link": "https://www.dailymail.co.uk/sport/football/article-12952897/Sadio-Mane-wife-18-returns-school-student-Liverpool-31.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:43:40 GMT", + "enclosure": { + "length": "9115", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906577-0-image-a-11_1704998751971.jpg" + }, + "content": "Mane married Tamba in an Islamic ceremony on January 7 in Keur Massar, a suburb in the capital city of Dakar, just six days before the start of the Africa Cup of Nations on January 13.", + "contentSnippet": "Mane married Tamba in an Islamic ceremony on January 7 in Keur Massar, a suburb in the capital city of Dakar, just six days before the start of the Africa Cup of Nations on January 13.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12952897/Sadio-Mane-wife-18-returns-school-student-Liverpool-31.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:43:40.000Z" + }, + { + "title": "ANOTHER Labour-run council verges on bankruptcy: Middlesbrough set to ask Government for emergency funding - following Birmingham, Woking and Nottingham", + "link": "https://www.dailymail.co.uk/news/article-12952427/ANOTHER-Labour-run-council-verges-bankruptcy-Middlesbrough-set-ask-Government-emergency-funding-following-Birmingham-Woking-Nottingham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:39:48 GMT", + "enclosure": { + "length": "11122", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/19/79907695-0-image-m-41_1705001896259.jpg" + }, + "content": "If sufficient cash isn't provided Middlesbrough Council could become the 10th local authority since 2018 to issue a section 114 notice.", + "contentSnippet": "If sufficient cash isn't provided Middlesbrough Council could become the 10th local authority since 2018 to issue a section 114 notice.", + "guid": "https://www.dailymail.co.uk/news/article-12952427/ANOTHER-Labour-run-council-verges-bankruptcy-Middlesbrough-set-ask-Government-emergency-funding-following-Birmingham-Woking-Nottingham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:39:48.000Z" + }, + { + "title": "Prince William reveals Mike Tindall has apologised to him after revealing the future king's nickname is 'One Pint Willy'", + "link": "https://www.dailymail.co.uk/femail/article-12952343/Prince-William-Mike-Tindall-apologised-nickname.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:19:13 GMT", + "enclosure": { + "length": "10341", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904443-0-image-a-4_1704995253896.jpg" + }, + "content": "A laughing Prince William admitted today that Mike Tindall has apologised to him after revealing his nickname as 'One Pint Willy' in a podcast released in December.", + "contentSnippet": "A laughing Prince William admitted today that Mike Tindall has apologised to him after revealing his nickname as 'One Pint Willy' in a podcast released in December.", + "guid": "https://www.dailymail.co.uk/femail/article-12952343/Prince-William-Mike-Tindall-apologised-nickname.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:19:13.000Z" + }, + { + "title": "Ellie Goulding wraps up in black coat as she and husband Caspar Jopling enjoy date night at comedy club after relationship troubles", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12952657/Ellie-Goulding-wraps-black-coat-husband-Caspar-Jopling-enjoy-date-night-comedy-club-relationship-troubles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:12:32 GMT", + "enclosure": { + "length": "11075", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904349-0-image-a-29_1704995091016.jpg" + }, + "content": "The couple were seen enjoying a night out at Ricky Gervais ' comedy show in Leicester Square on Tuesday.", + "contentSnippet": "The couple were seen enjoying a night out at Ricky Gervais ' comedy show in Leicester Square on Tuesday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12952657/Ellie-Goulding-wraps-black-coat-husband-Caspar-Jopling-enjoy-date-night-comedy-club-relationship-troubles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:12:32.000Z" + }, + { + "title": "M&S is set to overtake Waitrose as Britain's middle-class shop of choice after food sales rise by 12.1% in the weeks before Christmas", + "link": "https://www.dailymail.co.uk/news/article-12952753/ms-waitrose-britain-middle-class-shop-choice-sales-christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:08:02 GMT", + "enclosure": { + "length": "8017", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906821-0-image-m-35_1704999397182.jpg" + }, + "content": "Sales of food at M&S were up 12.1 per cent in the crucial 12 weeks ahead of Christmas while the figure for Waitrose rose 3.6 per cent.", + "contentSnippet": "Sales of food at M&S were up 12.1 per cent in the crucial 12 weeks ahead of Christmas while the figure for Waitrose rose 3.6 per cent.", + "guid": "https://www.dailymail.co.uk/news/article-12952753/ms-waitrose-britain-middle-class-shop-choice-sales-christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:08:02.000Z" + }, + { + "title": "Has Annie Kilner pulled off the ultimate revenge on her cheating husband? After TWO kids with Lauryn Goodman, years of humiliation and mystery over \u00a32.5m house for his ex, is Kyle Walker's wife of two years now set for battle over \u00a327m fortune?", + "link": "https://www.dailymail.co.uk/news/article-12950603/kyle-walker-annie-kilner-lauryn-goodman-fortune.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:05:06 GMT", + "enclosure": { + "length": "10692", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/14/79893295-0-image-a-130_1704982913950.jpg" + }, + "content": "Annie had forgiven her husband many times for alleged infidelity during their relationship, which began when they were teenagers in Sheffield.", + "contentSnippet": "Annie had forgiven her husband many times for alleged infidelity during their relationship, which began when they were teenagers in Sheffield.", + "guid": "https://www.dailymail.co.uk/news/article-12950603/kyle-walker-annie-kilner-lauryn-goodman-fortune.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:05:06.000Z" + }, + { + "title": "Police launch probe as town's 'Pride' rainbow path is painted white by vandals three years after it was created to be 'inclusive and welcoming'", + "link": "https://www.dailymail.co.uk/news/article-12952777/police-probe-pride-rainbow-path-white-vandals-inclusive.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 19:02:30 GMT", + "enclosure": { + "length": "10791", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79903179-0-image-m-5_1704993903432.jpg" + }, + "content": "Part of the 62-metre Rainbow path in Goodland Gardens, Taunton, Somerset which was opened in 2021 was covered in white paint on Wednesday.", + "contentSnippet": "Part of the 62-metre Rainbow path in Goodland Gardens, Taunton, Somerset which was opened in 2021 was covered in white paint on Wednesday.", + "guid": "https://www.dailymail.co.uk/news/article-12952777/police-probe-pride-rainbow-path-white-vandals-inclusive.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T19:02:30.000Z" + }, + { + "title": "Afghan interpreter who helped frontline British soldiers faces 'death sentence' when he is sent back to the Taliban after UK 'cruelly' withdrew offer of sanctuary", + "link": "https://www.dailymail.co.uk/news/article-12952821/Afghan-interpreter-helped-frontline-British-soldiers-faces-death-sentence-sent-Taliban-UK-cruelly-withdrew-offer-sanctuary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:59:40 GMT", + "enclosure": { + "length": "7589", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906565-0-image-a-4_1704998665483.jpg" + }, + "content": "For more than two years Nasir (not his real name, which is protected by a court order) believed he was about to relocate to the UK after twice being told he was qualified for assistance", + "contentSnippet": "For more than two years Nasir (not his real name, which is protected by a court order) believed he was about to relocate to the UK after twice being told he was qualified for assistance", + "guid": "https://www.dailymail.co.uk/news/article-12952821/Afghan-interpreter-helped-frontline-British-soldiers-faces-death-sentence-sent-Taliban-UK-cruelly-withdrew-offer-sanctuary.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:59:40.000Z" + }, + { + "title": "Experts reveal whether or not you should take off your 'outside clothes' after riding the train - if you want to avoid infections", + "link": "https://www.dailymail.co.uk/wellness-us/body/article-12951661/outside-clothes-shoes-train-infection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:54:19 GMT", + "enclosure": { + "length": "6996", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/13/79892743-0-image-m-3_1704980661163.jpg" + }, + "content": "TikTok videos with millions of views show people tossing clothes in the wash the minute they come indoors. But do experts think it's key to preventing infection?", + "contentSnippet": "TikTok videos with millions of views show people tossing clothes in the wash the minute they come indoors. But do experts think it's key to preventing infection?", + "guid": "https://www.dailymail.co.uk/wellness-us/body/article-12951661/outside-clothes-shoes-train-infection.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:54:19.000Z" + }, + { + "title": "University of York to accept foreign students with lower grades after 'financial challenges' - but bar still remains high for British applicants!", + "link": "https://www.dailymail.co.uk/news/article-12952995/university-york-foreign-students-lower-grades.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:53:31 GMT", + "enclosure": { + "length": "7434", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79906459-0-image-m-15_1704998677706.jpg" + }, + "content": "The Russell Group university in Yorkshire will now admit some overseas applicants that achieve the equivalent of BBC grades at A-level, or a 2:2 for postgraduate courses.", + "contentSnippet": "The Russell Group university in Yorkshire will now admit some overseas applicants that achieve the equivalent of BBC grades at A-level, or a 2:2 for postgraduate courses.", + "guid": "https://www.dailymail.co.uk/news/article-12952995/university-york-foreign-students-lower-grades.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:53:31.000Z" + }, + { + "title": "Shocking moment antisemite gives Nazi salute and shouts 'Heil Hitler' as he threatens Jewish man at Speakers' Corner in Hyde Park", + "link": "https://www.dailymail.co.uk/news/article-12952783/Antisemite-gives-Nazi-salute-shouts-Heil-Hitler-threatens-Jewish-man-Speakers-Corner-Hyde-Park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:53:24 GMT", + "enclosure": { + "length": "10872", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905425-0-image-m-14_1704997751504.jpg" + }, + "content": "WARNING GRAPHIC CONTENT: The incident in Hyde Park showed an antisemite raising his hand to salute and mimic Hitler's moustache with his finger within a crowd of people.", + "contentSnippet": "WARNING GRAPHIC CONTENT: The incident in Hyde Park showed an antisemite raising his hand to salute and mimic Hitler's moustache with his finger within a crowd of people.", + "guid": "https://www.dailymail.co.uk/news/article-12952783/Antisemite-gives-Nazi-salute-shouts-Heil-Hitler-threatens-Jewish-man-Speakers-Corner-Hyde-Park.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:53:24.000Z" + }, + { + "title": "Marie Osmond, 64, never starves, enjoys desserts and exercises lightly as she maintains her figure after 50lb weight loss: 'I am thriving'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12931487/Marie-Osmond-64-never-starves-enjoys-desserts-exercises-lightly-maintains-figure-50lb-weight-loss-thriving.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:44:13 GMT", + "enclosure": { + "length": "10022", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/05/22/79676421-0-image-m-105_1704494793229.jpg" + }, + "content": "She is also still an ambassador with NutriSystem after almost 20 years. Last year she helped introduce a program for people over 50.", + "contentSnippet": "She is also still an ambassador with NutriSystem after almost 20 years. Last year she helped introduce a program for people over 50.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12931487/Marie-Osmond-64-never-starves-enjoys-desserts-exercises-lightly-maintains-figure-50lb-weight-loss-thriving.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:44:13.000Z" + }, + { + "title": "FAA warns 'this incident should not have happened and cannot happen again' as it launches probe into Boeing's killer 737-Max after door blew off in mid-air: Regulator accused of failing to keep tabs on aviation giant", + "link": "https://www.dailymail.co.uk/news/article-12952245/Boeing-737-Max-quality-manufacturing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:40:48 GMT", + "enclosure": { + "length": "7475", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79900549-0-image-a-39_1704991292848.jpg" + }, + "content": "Wall Street analyst Jason Gursky said the aircraft maker's struggles are partly caused by the workforce that replaced the veteran workers after the pandemic.", + "contentSnippet": "Wall Street analyst Jason Gursky said the aircraft maker's struggles are partly caused by the workforce that replaced the veteran workers after the pandemic.", + "guid": "https://www.dailymail.co.uk/news/article-12952245/Boeing-737-Max-quality-manufacturing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:40:48.000Z" + }, + { + "title": "So which IS safer, tap or bottled? Experts give their verdict after startling study found 240,000 cancer-causing nanoplastics in average liter of water in stores", + "link": "https://www.dailymail.co.uk/sciencetech/article-12948079/tap-bottled-water-safer-plastics-PFAS-contaminated.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:37:26 GMT", + "enclosure": { + "length": "10081", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/10/21/79857465-0-image-a-15_1704923073961.jpg" + }, + "content": "Americans' bottled water consumption has nearly doubled in recent years due to growing concerns about chemicals in tap water. But the debate about which is safer has been reignited.", + "contentSnippet": "Americans' bottled water consumption has nearly doubled in recent years due to growing concerns about chemicals in tap water. But the debate about which is safer has been reignited.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12948079/tap-bottled-water-safer-plastics-PFAS-contaminated.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:37:26.000Z" + }, + { + "title": "Where are the stars of the 2004 Mean Girls movie now? From Lindsay Lohan's WILD scandals and dramatic transformation to Lizzy Caplan's tragic romance with Matthew Perry, FEMAIL lifts the lid on rollercoaster lives of the cast as musical reboot premieres", + "link": "https://www.dailymail.co.uk/femail/article-12948089/original-mean-girls-cast-lindsay-lohan-lizzy-caplan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:35:25 GMT", + "enclosure": { + "length": "11845", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/10/21/79863873-0-image-a-152_1704922095226.jpg" + }, + "content": "As the world prepares for a new adaptation of the flick, FEMAIL uncovered what all the stars of the 2004 version are doing now - and revealed the many controversies the cast has faced.", + "contentSnippet": "As the world prepares for a new adaptation of the flick, FEMAIL uncovered what all the stars of the 2004 version are doing now - and revealed the many controversies the cast has faced.", + "guid": "https://www.dailymail.co.uk/femail/article-12948089/original-mean-girls-cast-lindsay-lohan-lizzy-caplan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:35:25.000Z" + }, + { + "title": "Swearing Imam, 72, who ran over and killed man, 49, lying in the middle of the road after hurling insults at those trying to warn him told police he thought body was 'a bin bag'", + "link": "https://www.dailymail.co.uk/news/article-12952681/Swearing-Imam-72-ran-killed-man-49-lying-middle-road-hurling-insults-trying-warn-told-police-thought-body-bin-bag.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:35:13 GMT", + "enclosure": { + "length": "5948", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905627-0-image-m-27_1704997354351.jpg" + }, + "content": "Qari Hazarvi Abassi, 72, was on his way to lead early morning prayers at the Abubakr Mosque in Southall, west London, when he hit Harvinder Singh, 49, on 4 May, 2021.", + "contentSnippet": "Qari Hazarvi Abassi, 72, was on his way to lead early morning prayers at the Abubakr Mosque in Southall, west London, when he hit Harvinder Singh, 49, on 4 May, 2021.", + "guid": "https://www.dailymail.co.uk/news/article-12952681/Swearing-Imam-72-ran-killed-man-49-lying-middle-road-hurling-insults-trying-warn-told-police-thought-body-bin-bag.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:35:13.000Z" + }, + { + "title": "Illegal Albanian immigrants are jailed for running \u00a32.1m cannabis factory in once-grand High Street department store", + "link": "https://www.dailymail.co.uk/news/article-12952559/Illegal-Albanian-immigrants-jailed-running-2-1m-cannabis-factory-High-Street-department-store.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:34:13 GMT", + "enclosure": { + "length": "8294", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905657-0-image-a-6_1704997279264.jpg" + }, + "content": "Illegal Albanian immigrants have been jailed for running a \u00a32.1million cannabis factory in a once-grand High Street department store.", + "contentSnippet": "Illegal Albanian immigrants have been jailed for running a \u00a32.1million cannabis factory in a once-grand High Street department store.", + "guid": "https://www.dailymail.co.uk/news/article-12952559/Illegal-Albanian-immigrants-jailed-running-2-1m-cannabis-factory-High-Street-department-store.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:34:13.000Z" + }, + { + "title": "I'm 26 and fell in love with my neighbor whos' nearly 60 - his adult daughters call me 'mom' even though they're a decade older than me", + "link": "https://www.dailymail.co.uk/femail/article-12950715/Fell-love-neighbour-33-years-older.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:34:12 GMT", + "enclosure": { + "length": "11154", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/10/79885929-0-image-a-19_1704967716627.jpg" + }, + "content": "Roxana Eubanks, 26, from Sacramento, California , wasn't looking for love when she nervously attended her apartment building's annual party for the first time, aged 21.", + "contentSnippet": "Roxana Eubanks, 26, from Sacramento, California , wasn't looking for love when she nervously attended her apartment building's annual party for the first time, aged 21.", + "guid": "https://www.dailymail.co.uk/femail/article-12950715/Fell-love-neighbour-33-years-older.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:34:12.000Z" + }, + { + "title": "Female prison officer caught on camera having sex with inmate in store cupboard at Category B men's prison is jailed for 16 months", + "link": "https://www.dailymail.co.uk/news/article-12952909/Female-prison-officer-caught-camera-having-sex-inmate-store-cupboard-Category-B-mens-prison-jailed-16-months.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:29:08 GMT", + "enclosure": { + "length": "7444", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905001-0-image-m-42_1704997376272.jpg" + }, + "content": "Twenty-five-year-old Shania Begum of Telford, Shropshire was found to have used the storeroom at HMP Birmingham for a number of inappropriate purposes during her employment.", + "contentSnippet": "Twenty-five-year-old Shania Begum of Telford, Shropshire was found to have used the storeroom at HMP Birmingham for a number of inappropriate purposes during her employment.", + "guid": "https://www.dailymail.co.uk/news/article-12952909/Female-prison-officer-caught-camera-having-sex-inmate-store-cupboard-Category-B-mens-prison-jailed-16-months.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:29:08.000Z" + }, + { + "title": "Rob Burrow's adorable daughters practice their curtsies while his son is seen sticking out his tongue and enjoying a lie down during royal visit from Prince William", + "link": "https://www.dailymail.co.uk/femail/article-12952861/Rob-Burrows-adorable-daughters-practice-curtsies-son-seen-sticking-tongue-enjoying-lie-royal-visit-Prince-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:27:37 GMT", + "enclosure": { + "length": "10259", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79905429-0-image-a-10_1704996728664.jpg" + }, + "content": "While touring the stadium in Leeds, Rob told the Prince of Wales that his daughters had been practicing their curtsies ahead of the royal's arrival.", + "contentSnippet": "While touring the stadium in Leeds, Rob told the Prince of Wales that his daughters had been practicing their curtsies ahead of the royal's arrival.", + "guid": "https://www.dailymail.co.uk/femail/article-12952861/Rob-Burrows-adorable-daughters-practice-curtsies-son-seen-sticking-tongue-enjoying-lie-royal-visit-Prince-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:27:37.000Z" + }, + { + "title": "Mother-of-two blasts Evri delivery driver for smashing up jigsaw meant for her son when he hurled parcel across driveway like a frisbee - as it is claimed he 'was too busy chatting up the neighbours'", + "link": "https://www.dailymail.co.uk/news/article-12952247/Evri-delivery-driver-hurled-parcel-driveway-like-frisbee-busy-chatting-neighbours-mother-jigsaw-son-smashed-throw.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:24:23 GMT", + "enclosure": { + "length": "7304", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79850561-0-image-m-17_1704995742802.jpg" + }, + "content": "An Evri delivery driver who was filmed hurling a parcel across a driveway like a frisbee was 'too busy chatting up the neighbours', according to the mother who received the 'shattered' jigsaw.", + "contentSnippet": "An Evri delivery driver who was filmed hurling a parcel across a driveway like a frisbee was 'too busy chatting up the neighbours', according to the mother who received the 'shattered' jigsaw.", + "guid": "https://www.dailymail.co.uk/news/article-12952247/Evri-delivery-driver-hurled-parcel-driveway-like-frisbee-busy-chatting-neighbours-mother-jigsaw-son-smashed-throw.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:24:23.000Z" + }, + { + "title": "Now Fujitsu staff vote to strike over four per cent pay offer as firm battles Horizon computer scandal - saying Japanese counterparts have been offered 10 times more", + "link": "https://www.dailymail.co.uk/news/article-12952363/New-woe-Fujitsu-staff-vote-strike-four-cent-pay-offer-saying-Japanese-counterparts-offered-10-times-more.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:23:51 GMT", + "enclosure": { + "length": "9221", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/18/79745589-0-image-m-16_1704996091610.jpg" + }, + "content": "About 300 members of the Public and Commercial Services union (PCS) working mainly for HM Revenue & Customs ( HMRC ) in Stratford-on-Avon and Telford will walk out next Wednesday.", + "contentSnippet": "About 300 members of the Public and Commercial Services union (PCS) working mainly for HM Revenue & Customs ( HMRC ) in Stratford-on-Avon and Telford will walk out next Wednesday.", + "guid": "https://www.dailymail.co.uk/news/article-12952363/New-woe-Fujitsu-staff-vote-strike-four-cent-pay-offer-saying-Japanese-counterparts-offered-10-times-more.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:23:51.000Z" + }, + { + "title": "Ex-mayoral candidate Zac Goldsmith is banned from driving for speeding in London four times in his VW Golf hybrid - including twice being caught above the limit in one of Sadiq Khan's 20mph zones", + "link": "https://www.dailymail.co.uk/news/article-12952387/Ex-environment-minister-Zac-Goldsmith-banned-driving-caught-speeding-London-four-times-one-year-VW-Golf-hybrid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:19:45 GMT", + "enclosure": { + "length": "7690", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79902259-0-image-m-11_1704992201684.jpg" + }, + "content": "Zac Goldsmith, 48, (pictured) was spotted in his black hybrid electric Volkswagen Golf breaking the speed limit between April and August last year.", + "contentSnippet": "Zac Goldsmith, 48, (pictured) was spotted in his black hybrid electric Volkswagen Golf breaking the speed limit between April and August last year.", + "guid": "https://www.dailymail.co.uk/news/article-12952387/Ex-environment-minister-Zac-Goldsmith-banned-driving-caught-speeding-London-four-times-one-year-VW-Golf-hybrid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:19:45.000Z" + }, + { + "title": "The end looms for Justin Trudeau: Canadian PM plummets in the polls as 70% disapprove of him while CBC warns he needs a new message and conservative rival gains momentum", + "link": "https://www.dailymail.co.uk/news/article-12952085/Justin-Trudeau-Canada-Liberal-Conservative-Pierre-Poilievre.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 18:01:48 GMT", + "enclosure": { + "length": "9901", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79901017-0-image-a-16_1704991945953.jpg" + }, + "content": "Justin Trudeau's ailing political popularity could spell trouble for the Liberal party in the next election as rival leader Pierre Poilievre picks up steam.", + "contentSnippet": "Justin Trudeau's ailing political popularity could spell trouble for the Liberal party in the next election as rival leader Pierre Poilievre picks up steam.", + "guid": "https://www.dailymail.co.uk/news/article-12952085/Justin-Trudeau-Canada-Liberal-Conservative-Pierre-Poilievre.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T18:01:48.000Z" + }, + { + "title": "Rishi shuns Davos again: Sunak dodges ski resort business schmooze-fest as he snubs the World Economic Forum for a second year in a row - but Jeremy Hunt and David Cameron are set to attend", + "link": "https://www.dailymail.co.uk/news/article-12952865/Rishi-shuns-Davos-Sunak-dodges-ski-resort-business-schmooze-fest-snubs-World-Economic-Forum-second-year-row-Jeremy-Hunt-David-Cameron-set-attend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:55:58 GMT", + "enclosure": { + "length": "4704", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904331-0-image-m-60_1704995077975.jpg" + }, + "content": "Downing Street tonight confirmed the Prime Minister will not be attending next week's World Economic Forum in Davos.", + "contentSnippet": "Downing Street tonight confirmed the Prime Minister will not be attending next week's World Economic Forum in Davos.", + "guid": "https://www.dailymail.co.uk/news/article-12952865/Rishi-shuns-Davos-Sunak-dodges-ski-resort-business-schmooze-fest-snubs-World-Economic-Forum-second-year-row-Jeremy-Hunt-David-Cameron-set-attend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:55:58.000Z" + }, + { + "title": "'Optical illusion' cycle lane dubbed Britain's most dangerous is no safer despite being repainted red, campaigners warn - after 100 were injured in first two years", + "link": "https://www.dailymail.co.uk/news/article-12952435/cycle-lane-no-safer-keynsham-somerset.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:49:30 GMT", + "enclosure": { + "length": "10021", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79904001-0-image-a-9_1704995329842.jpg" + }, + "content": "Councillors say the route along a town high street creates an 'optical illusion' - with kerbs and white lines looking similar - and is still posing a danger almost two years after it was installed.", + "contentSnippet": "Councillors say the route along a town high street creates an 'optical illusion' - with kerbs and white lines looking similar - and is still posing a danger almost two years after it was installed.", + "guid": "https://www.dailymail.co.uk/news/article-12952435/cycle-lane-no-safer-keynsham-somerset.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:49:30.000Z" + }, + { + "title": "Exactly how much caffeine will wake you up - but not lead to a crash, and when to drink it, according to experts", + "link": "https://www.dailymail.co.uk/wellness-us/nutrition/article-12951983/caffeine-crash-energy-amount.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:46:58 GMT", + "enclosure": { + "length": "5283", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79900681-0-image-m-6_1704992830347.jpg" + }, + "content": "A lot of us need caffeine to survive the day, but too much can leave you tossing and turning at night and jittery during waking hours. The official recommendation is no more than 400 milligrams.", + "contentSnippet": "A lot of us need caffeine to survive the day, but too much can leave you tossing and turning at night and jittery during waking hours. The official recommendation is no more than 400 milligrams.", + "guid": "https://www.dailymail.co.uk/wellness-us/nutrition/article-12951983/caffeine-crash-energy-amount.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:46:58.000Z" + }, + { + "title": "The UK's favourite film locations revealed - and Harry Potter fans won't be surprised at what tops the ranking...", + "link": "https://www.dailymail.co.uk/travel/article-12841727/The-UKs-favourite-film-locations-revealed-Harry-Potter-fans-wont-surprised-tops-ranking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:45:05 GMT", + "enclosure": { + "length": "7309", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/12/11/09/78742377-0-image-a-13_1702286884325.jpg" + }, + "content": "The locations that make the list are connected to movies that include Notting Hill, The Holiday, Batman, This is England, and Bridget Jones's Diary.", + "contentSnippet": "The locations that make the list are connected to movies that include Notting Hill, The Holiday, Batman, This is England, and Bridget Jones's Diary.", + "guid": "https://www.dailymail.co.uk/travel/article-12841727/The-UKs-favourite-film-locations-revealed-Harry-Potter-fans-wont-surprised-tops-ranking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:45:05.000Z" + }, + { + "title": "Saudi Arabia unveils vision for 'ultra-luxury upside-down skyscraper' built INSIDE a 1,500ft mountain and accessed through an underground canal as part of trillion-pound plans for futuristic city NEOM", + "link": "https://www.dailymail.co.uk/news/article-12952183/Saudi-Arabia-unveils-vision-ultra-luxury-upside-skyscraper-built-INSIDE-1-500ft-mountain-accessed-underground-canal-trillion-pound-plans-futuristic-city-NEOM.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:43:58 GMT", + "enclosure": { + "length": "11085", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79899667-0-image-a-130_1704992407391.jpg" + }, + "content": "The new site, dubbed 'Aquellum' and billed as a 'luxury and experiential space offering guests a taste of futuristic living', looks like something out of a sci-fi video game", + "contentSnippet": "The new site, dubbed 'Aquellum' and billed as a 'luxury and experiential space offering guests a taste of futuristic living', looks like something out of a sci-fi video game", + "guid": "https://www.dailymail.co.uk/news/article-12952183/Saudi-Arabia-unveils-vision-ultra-luxury-upside-skyscraper-built-INSIDE-1-500ft-mountain-accessed-underground-canal-trillion-pound-plans-futuristic-city-NEOM.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:43:58.000Z" + }, + { + "title": "'Even my wife started doubting me': Frankie Dettori tells Piers Morgan how his partner of 27 years gave him a brutal ultimatum after he was banned from racing for taking cocaine and couldn't pay his family bills", + "link": "https://www.dailymail.co.uk/news/article-12952403/Even-wife-started-doubting-Frankie-Dettori-reveals-partner-27-years-delivered-startling-home-truths-cocaine-ban-meant-pay-family-bills.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:38:32 GMT", + "enclosure": { + "length": "11033", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79901385-0-image-a-46_1704991852702.jpg" + }, + "content": "Frankie Dettori has told how his partner of 27 years slammed him with home truths during his cocaine ban from horse racing over a decade ago.", + "contentSnippet": "Frankie Dettori has told how his partner of 27 years slammed him with home truths during his cocaine ban from horse racing over a decade ago.", + "guid": "https://www.dailymail.co.uk/news/article-12952403/Even-wife-started-doubting-Frankie-Dettori-reveals-partner-27-years-delivered-startling-home-truths-cocaine-ban-meant-pay-family-bills.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:38:32.000Z" + }, + { + "title": "Terrifying moment gang of hooded thugs launch frenzied attack on man and woman in front of young child on yet another day in Lawless London - as cops hunt attackers", + "link": "https://www.dailymail.co.uk/news/article-12951911/Moment-gang-hooded-thugs-pounce-group-three-including-young-child-mugging-day-Lawless-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:37:10 GMT", + "enclosure": { + "length": "5682", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/15/79896183-0-image-m-71_1704986079775.jpg" + }, + "content": "A teenage girl, a small child and a man were innocently walking along Halfway Street in Sidcup, south-east London just after 5pm yesterday when they were set upon by three thugs.", + "contentSnippet": "A teenage girl, a small child and a man were innocently walking along Halfway Street in Sidcup, south-east London just after 5pm yesterday when they were set upon by three thugs.", + "guid": "https://www.dailymail.co.uk/news/article-12951911/Moment-gang-hooded-thugs-pounce-group-three-including-young-child-mugging-day-Lawless-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:37:10.000Z" + }, + { + "title": "Not a 'Friend' - but a fraud: Matthew Perry violently assaulted women... while posing as a paragon of virtue. Now MAUREEN CALLAHAN demands: how much longer can Hollywood give him the halo treatment?", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12949069/Matthew-Perry-fraud-violently-assaulted-women-MAUREEN-CALLAHAN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:35:00 GMT", + "enclosure": { + "length": "7732", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/14/79893435-0-image-m-23_1704981900667.jpg" + }, + "content": "Matthew Perry's greatest performance wasn't on 'Friends'. It was as a newly sober good guy who wanted to help others get clean. He sold the world a pack of lies...", + "contentSnippet": "Matthew Perry's greatest performance wasn't on 'Friends'. It was as a newly sober good guy who wanted to help others get clean. He sold the world a pack of lies...", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12949069/Matthew-Perry-fraud-violently-assaulted-women-MAUREEN-CALLAHAN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:35:00.000Z" + }, + { + "title": "Pictured: Sven Goran Eriksson's ex-lover Ulrika Jonsson looks downcast in first sighting since former England boss revealed he has terminal cancer with 'at best a year to live'", + "link": "https://www.dailymail.co.uk/news/article-12952017/ulrika-jonsson-looks-downcast-sighting-sven-goran-eriksson-terminal-cancer-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:33:16 GMT", + "enclosure": { + "length": "10113", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/15/79897879-0-image-a-44_1704987336584.jpg" + }, + "content": "Ulrika Jonsson looked sombre as she was seen out in public for the first time since her former lover Sven-Goran Eriksson revealed today he was dying of terminal cancer.", + "contentSnippet": "Ulrika Jonsson looked sombre as she was seen out in public for the first time since her former lover Sven-Goran Eriksson revealed today he was dying of terminal cancer.", + "guid": "https://www.dailymail.co.uk/news/article-12952017/ulrika-jonsson-looks-downcast-sighting-sven-goran-eriksson-terminal-cancer-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:33:16.000Z" + }, + { + "title": "Jeff Bezos' fianc\u00e9 Lauren Sanchez will be honoured with her own 'Living Legends of Aviation' award at glitzy bash where Prince Harry is getting inducted - the latest famous pilots to be feted including Harrison Ford and Tom Cruise", + "link": "https://www.dailymail.co.uk/news/article-12952169/lauren-sanchez-living-legends-aviation-honour-prince-harry-induction-glitzy-bash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:33:05 GMT", + "enclosure": { + "length": "11761", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79903937-0-image-a-9_1704994373348.jpg" + }, + "content": "The\u00a0Living Legends of Aviation is bestowing television anchor turned helicopter pilot Lauren Sanchez with its highest honor for vertical flight,\u00a0the Elling Halvorson Vertical Flight Hall of Fame Award.", + "contentSnippet": "The\u00a0Living Legends of Aviation is bestowing television anchor turned helicopter pilot Lauren Sanchez with its highest honor for vertical flight,\u00a0the Elling Halvorson Vertical Flight Hall of Fame Award.", + "guid": "https://www.dailymail.co.uk/news/article-12952169/lauren-sanchez-living-legends-aviation-honour-prince-harry-induction-glitzy-bash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:33:05.000Z" + }, + { + "title": "Revealed: Two electric buses caught fire in garage blaze two years before today's double decker blast - sparking fears Sadiq Khan's 1,000-strong fleet is at risk amid push to make all of London's buses 'zero-emission' by 2034", + "link": "https://www.dailymail.co.uk/news/article-12951853/London-electric-bus-fire-two-buses-Potters-Bar-Sadiq-Khan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:32:38 GMT", + "enclosure": { + "length": "10225", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/15/79896771-0-image-m-6_1704986471726.jpg" + }, + "content": "An Optare Metrodecker 1050 bus burst into flames in Wimbledon, South West London, during rush hour this morning while operating route 200 from Mitcham to Raynes Park.", + "contentSnippet": "An Optare Metrodecker 1050 bus burst into flames in Wimbledon, South West London, during rush hour this morning while operating route 200 from Mitcham to Raynes Park.", + "guid": "https://www.dailymail.co.uk/news/article-12951853/London-electric-bus-fire-two-buses-Potters-Bar-Sadiq-Khan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:32:38.000Z" + }, + { + "title": "Drug and drink-fuelled driver, 43, who tried to blame his girlfriend, 47, for horror crash with lorry which killed her before trying to flee the scene in a taxi weeps as he's jailed for 16 years", + "link": "https://www.dailymail.co.uk/news/article-12952385/Drug-drink-fuelled-driver-43-tried-blame-girlfriend-47-horror-crash-lorry-killed-trying-flee-scene-taxi-weeps-hes-jailed-16-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:28:31 GMT", + "enclosure": { + "length": "5295", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79903301-0-image-m-12_1704993733774.jpg" + }, + "content": "Kevin Marsh, 43, had taken cocaine and cannabis and drank gin before getting behind the wheel of a white Ford Fiesta on July 5 last year.", + "contentSnippet": "Kevin Marsh, 43, had taken cocaine and cannabis and drank gin before getting behind the wheel of a white Ford Fiesta on July 5 last year.", + "guid": "https://www.dailymail.co.uk/news/article-12952385/Drug-drink-fuelled-driver-43-tried-blame-girlfriend-47-horror-crash-lorry-killed-trying-flee-scene-taxi-weeps-hes-jailed-16-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:28:31.000Z" + }, + { + "title": "RICHARD LITTLEJOHN: Why is the BBC fawning over migrants given free bed and board, wifi and a bus into town?", + "link": "https://www.dailymail.co.uk/columnists/article-12952625/Richard-Littlejohn-BBC-migrants-Bibby-Stockholm-asylum-barge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:28:08 GMT", + "enclosure": { + "length": "8133", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79900647-0-image-a-8_1704994031231.jpg" + }, + "content": "RICHARD LITTLEJOHN: This is the BBC News. There now follows a partly political broadcast on behalf of asylum seekers.", + "contentSnippet": "RICHARD LITTLEJOHN: This is the BBC News. There now follows a partly political broadcast on behalf of asylum seekers.", + "guid": "https://www.dailymail.co.uk/columnists/article-12952625/Richard-Littlejohn-BBC-migrants-Bibby-Stockholm-asylum-barge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:28:08.000Z" + }, + { + "title": "I have been ridiculed for my gigantic \u00a342 'adult sippy cup'. But I'm gulping more water than ever. This is why I am a fully signed-up member of the Stanley Squad along with Adele, Victoria Beckham and Meghan", + "link": "https://www.dailymail.co.uk/femail/article-12951503/adult-sippy-cup-viral-review-Hollywood-stanley.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:23:09 GMT", + "enclosure": { + "length": "10569", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/16/79900575-0-image-a-44_1704990478542.jpg" + }, + "content": "The latest craze among celebrities and on social media is not a designer bag. It's an almost comically gigantic 'adult sippy cup' insulated water tumbler", + "contentSnippet": "The latest craze among celebrities and on social media is not a designer bag. It's an almost comically gigantic 'adult sippy cup' insulated water tumbler", + "guid": "https://www.dailymail.co.uk/femail/article-12951503/adult-sippy-cup-viral-review-Hollywood-stanley.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:23:09.000Z" + }, + { + "title": "Calm before the storm? Covid rates peaked over Christmas amid arrival of highly-contagious 'Juno' strain - but experts warn of post-New Year wave as flu and norovirus continue to bite", + "link": "https://www.dailymail.co.uk/health/article-12951381/Calm-storm-Covid-rates-peaked-Christmas-amid-arrival-highly-contagious-Juno-strain-experts-warn-post-New-Year-wave-flu-norovirus-continue-bite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:12:31 GMT", + "enclosure": { + "length": "4215", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/14/79894815-0-image-m-10_1704983924919.jpg" + }, + "content": "A peak of one in 22 people across the country were infected with the virus on December 21, according to the UK Health Security Agency.", + "contentSnippet": "A peak of one in 22 people across the country were infected with the virus on December 21, according to the UK Health Security Agency.", + "guid": "https://www.dailymail.co.uk/health/article-12951381/Calm-storm-Covid-rates-peaked-Christmas-amid-arrival-highly-contagious-Juno-strain-experts-warn-post-New-Year-wave-flu-norovirus-continue-bite.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:12:31.000Z" + }, + { + "title": "Post Office investigator 'who behaved like a Mafia gangster' was accused of 'disgusting behaviour' and having an 'unbearable attitude' as he interviewed sub-postmasters over claims of theft, Horizon scandal inquiry hears", + "link": "https://www.dailymail.co.uk/news/article-12952471/post-office-horizon-investigator-behaved-like-mafia-gangster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 17:11:42 GMT", + "enclosure": { + "length": "4961", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/11/79888677-0-image-m-10_1704972243913.jpg" + }, + "content": "Stephen Bradshaw has been employed at the Post Office since 1978 and\u00a0was involved in the criminal investigation of nine subpostmasters.", + "contentSnippet": "Stephen Bradshaw has been employed at the Post Office since 1978 and\u00a0was involved in the criminal investigation of nine subpostmasters.", + "guid": "https://www.dailymail.co.uk/news/article-12952471/post-office-horizon-investigator-behaved-like-mafia-gangster.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T17:11:42.000Z" + }, + { + "title": "ROBERT JOBSON: Harry must be contemplating how it could have been so different. His family needs him, but he has gone AWOL. And it raises some important 'what ifs'...", + "link": "https://www.dailymail.co.uk/debate/article-12978251/ROBERT-JOBSON-Harry-contemplating-different-family-needs-gone-AWOL-raises-important-ifs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:25:20 GMT", + "enclosure": { + "length": "8521", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80171935-0-image-m-30_1705578623429.jpg" + }, + "content": "Rather than gazing at his navel or collecting pointless awards - lauded as a 'legend' of aviation - the royal formerly known as Prince could have been doing something useful for Crown and country.", + "contentSnippet": "Rather than gazing at his navel or collecting pointless awards - lauded as a 'legend' of aviation - the royal formerly known as Prince could have been doing something useful for Crown and country.", + "guid": "https://www.dailymail.co.uk/debate/article-12978251/ROBERT-JOBSON-Harry-contemplating-different-family-needs-gone-AWOL-raises-important-ifs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:25:20.000Z" + }, + { + "title": "Revealed: Children's 'healthy' fruit juices and snacks with MORE SUGAR than Fanta", + "link": "https://www.dailymail.co.uk/health/article-12978043/Childrens-healthy-fruit-juices-snacks-sugar-Fanta.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:24:15 GMT", + "enclosure": { + "length": "13141", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172651-0-image-a-40_1705578510621.jpg" + }, + "content": "Experts say many parents are still unaware of the sky-high levels of sugar found in supposedly healthy fruit-flavoured products, and even branded them 'liquid calories'", + "contentSnippet": "Experts say many parents are still unaware of the sky-high levels of sugar found in supposedly healthy fruit-flavoured products, and even branded them 'liquid calories'", + "guid": "https://www.dailymail.co.uk/health/article-12978043/Childrens-healthy-fruit-juices-snacks-sugar-Fanta.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:24:15.000Z" + }, + { + "title": "Doctor sparks social media row after suggesting Princess Kate would have been sent home within a day had she been treated on the NHS", + "link": "https://www.dailymail.co.uk/health/article-12977721/Doctor-sparks-social-media-row-Princess-Kate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:23:37 GMT", + "enclosure": { + "length": "8274", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80131905-0-image-m-25_1705572802999.jpg" + }, + "content": "Prolific X user @EmergMedDr, who has consistently backed NHS strike action to his tens of thousands of followers, was accused of trying to make a 'political point'.", + "contentSnippet": "Prolific X user @EmergMedDr, who has consistently backed NHS strike action to his tens of thousands of followers, was accused of trying to make a 'political point'.", + "guid": "https://www.dailymail.co.uk/health/article-12977721/Doctor-sparks-social-media-row-Princess-Kate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:23:37.000Z" + }, + { + "title": "How Sheryl Sandberg became the highest-ranking woman in the tech industry after joining Facebook when it was a start-up before racking up 14 years as COO following a stint in Clinton's White House", + "link": "https://www.dailymail.co.uk/news/article-12977733/sheryl-sandberg-career-meta-facebook-google.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:23:00 GMT", + "enclosure": { + "length": "7654", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168647-0-image-a-5_1705574010598.jpg" + }, + "content": "Where exactly did Sandberg study prior to her position at Meta and where else has she worked throughout her career? Here is everything you need to know about Sheryl Sandberg.", + "contentSnippet": "Where exactly did Sandberg study prior to her position at Meta and where else has she worked throughout her career? Here is everything you need to know about Sheryl Sandberg.", + "guid": "https://www.dailymail.co.uk/news/article-12977733/sheryl-sandberg-career-meta-facebook-google.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:23:00.000Z" + }, + { + "title": "I fell victim to the Pompeii 'curse': Tourist returns pumice stone stolen from ancient site with grovelling letter written in English revealing she has since been diagnosed with breast cancer", + "link": "https://www.dailymail.co.uk/news/article-12977669/I-fell-victim-Pompeii-curse-Tourist-returns-pumice-stone-stolen-ancient-site-grovelling-letter-written-English-revealing-diagnosed-breast-cancer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:22:13 GMT", + "enclosure": { + "length": "6830", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167489-0-image-m-12_1705571295129.jpg" + }, + "content": "The woman sent a package containing three small stones and a letter written in English saying she 'didn't know about the curse' of Pompeii when she stole the artefacts.", + "contentSnippet": "The woman sent a package containing three small stones and a letter written in English saying she 'didn't know about the curse' of Pompeii when she stole the artefacts.", + "guid": "https://www.dailymail.co.uk/news/article-12977669/I-fell-victim-Pompeii-curse-Tourist-returns-pumice-stone-stolen-ancient-site-grovelling-letter-written-English-revealing-diagnosed-breast-cancer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:22:13.000Z" + }, + { + "title": "'He loved to cuddle': Bronson Battersby's mother breaks down in tears remembering her tragic toddler who died of starvation hugging his father's leg - as landlady reveals the harrowing moment she found their bodies", + "link": "https://www.dailymail.co.uk/news/article-12978343/The-little-things-did-amazing-Heartbreaking-moment-Bronson-Battersbys-mother-breaks-tears-remembers-tragic-toddler-starved-cuddling-dead-fathers-leg.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:21:49 GMT", + "enclosure": { + "length": "4889", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172757-0-image-m-26_1705578631077.jpg" + }, + "content": "The two-year-old was found dead cuddling his father Kenneth's leg at their Skegness home earlier this month after the 60-year-old was believed to have suffered a heart attack around New Year.", + "contentSnippet": "The two-year-old was found dead cuddling his father Kenneth's leg at their Skegness home earlier this month after the 60-year-old was believed to have suffered a heart attack around New Year.", + "guid": "https://www.dailymail.co.uk/news/article-12978343/The-little-things-did-amazing-Heartbreaking-moment-Bronson-Battersbys-mother-breaks-tears-remembers-tragic-toddler-starved-cuddling-dead-fathers-leg.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:21:49.000Z" + }, + { + "title": "NANA AKUA: You can't win.\u00a0The black teacher who 'saw racism everywhere' - even when her colleagues' desperately tried to AVOID avoid being labelled a racist - sums up the tangle we are in", + "link": "https://www.dailymail.co.uk/debate/article-12978215/NANA-AKUA-win-black-teacher-saw-racism-colleagues-desperately-tried-AVOID-avoid-labelled-racist-sums-tangle-in.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:21:19 GMT", + "enclosure": { + "length": "4906", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172013-0-image-m-13_1705577608003.jpg" + }, + "content": "If ever there was a sorry tale for our times, it is the saga of Andrea Mairs.\nFor those unfamiliar with the story, Ms Mairs (right) is a black teacher who has won a discrimination claim after losing her job.", + "contentSnippet": "If ever there was a sorry tale for our times, it is the saga of Andrea Mairs.\nFor those unfamiliar with the story, Ms Mairs (right) is a black teacher who has won a discrimination claim after losing her job.", + "guid": "https://www.dailymail.co.uk/debate/article-12978215/NANA-AKUA-win-black-teacher-saw-racism-colleagues-desperately-tried-AVOID-avoid-labelled-racist-sums-tangle-in.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:21:19.000Z" + }, + { + "title": "Rishi Sunak warns House of Lords not to 'frustrate the will of the people' over Rwanda plan and says he CAN 'Stop the Boats' as he stages No10 relaunch to get back on track after seeing off damaging Tory revolt", + "link": "https://www.dailymail.co.uk/news/article-12977941/Rishi-Sunak-warns-House-Lords-not-frustrate-people-Rwanda-plan-says-Stop-Boats-stages-No10-relaunch-track-seeing-damaging-Tory-revolt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:20:52 GMT", + "enclosure": { + "length": "6068", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80169827-0-image-a-22_1705573230525.jpg" + }, + "content": "Rishi Sunak held a press conference in Downing Street this morning insisting he can 'Stop the Boats' after forcing the flagship legislation through the Commons.", + "contentSnippet": "Rishi Sunak held a press conference in Downing Street this morning insisting he can 'Stop the Boats' after forcing the flagship legislation through the Commons.", + "guid": "https://www.dailymail.co.uk/news/article-12977941/Rishi-Sunak-warns-House-Lords-not-frustrate-people-Rwanda-plan-says-Stop-Boats-stages-No10-relaunch-track-seeing-damaging-Tory-revolt.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:20:52.000Z" + }, + { + "title": "Luxurious \u00a33m five-bed mansion complete with its own gym and views overlooking the Cotswolds plus \u00a3100,000 in cash could be yours in latest Omaze prize draw", + "link": "https://www.dailymail.co.uk/news/article-12977411/luxurious-omaze-mansion-cotswolds-prize-draw.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:20:41 GMT", + "enclosure": { + "length": "8608", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/07/80164563-0-image-a-6_1705563756657.jpg" + }, + "content": "The \u00a33million five-bedroom countryside retreat near Charlbury, in west Oxfordshire, comes with a third of an acre of landscaped gardens - and the winner will also pocket \u00a3100,000 in cash.", + "contentSnippet": "The \u00a33million five-bedroom countryside retreat near Charlbury, in west Oxfordshire, comes with a third of an acre of landscaped gardens - and the winner will also pocket \u00a3100,000 in cash.", + "guid": "https://www.dailymail.co.uk/news/article-12977411/luxurious-omaze-mansion-cotswolds-prize-draw.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:20:41.000Z" + }, + { + "title": "Princess Diana WOULD still have done a bombshell interview even if she hadn't been duped by disgraced BBC man Martin Bashir - but it might not have been so incendiary, royal writer Tina Brown claims", + "link": "https://www.dailymail.co.uk/news/article-12973257/Princess-Diana-Martin-Bashir-interview-Tina-Brown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:19:19 GMT", + "enclosure": { + "length": "10232", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/11/80125409-0-image-a-16_1705490524989.jpg" + }, + "content": "The late royal's TV interview with Bashir was watched by 23million people in 1995 and caused a worldwide media frenzy.", + "contentSnippet": "The late royal's TV interview with Bashir was watched by 23million people in 1995 and caused a worldwide media frenzy.", + "guid": "https://www.dailymail.co.uk/news/article-12973257/Princess-Diana-Martin-Bashir-interview-Tina-Brown.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:19:19.000Z" + }, + { + "title": "Rare 1,000-year-old 'Viking sword' is discovered in near perfect condition on a river bed in Poland", + "link": "https://www.dailymail.co.uk/sciencetech/article-12977605/Rare-1-000-year-old-Viking-sword-discovered-near-perfect-condition-river-bed-Poland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:18:45 GMT", + "enclosure": { + "length": "7224", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166491-0-image-a-75_1705567324603.jpg" + }, + "content": "Workers carrying out work in the Wisla River in the city of Wroclawek came across the 'perfectly preserved' sword after spotting 'an oblong, metal object' sticking out of the sediment.", + "contentSnippet": "Workers carrying out work in the Wisla River in the city of Wroclawek came across the 'perfectly preserved' sword after spotting 'an oblong, metal object' sticking out of the sediment.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12977605/Rare-1-000-year-old-Viking-sword-discovered-near-perfect-condition-river-bed-Poland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:18:45.000Z" + }, + { + "title": "LIZ JONES: This feels personal\u2026 the news Kate is in hospital has hit me like a young member of my family has been struck down", + "link": "https://www.dailymail.co.uk/debate/article-12978349/LIZ-JONES-news-Kate-hospital-member-family-struck-down.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:15:35 GMT", + "enclosure": { + "length": "9362", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/12/80173259-0-image-m-14_1705579797623.jpg" + }, + "content": "Wasn't the Princess of Wales like a brightly flickering candle at Christmas when she hosted her annual carol concert at Westminster Abbey?", + "contentSnippet": "Wasn't the Princess of Wales like a brightly flickering candle at Christmas when she hosted her annual carol concert at Westminster Abbey?", + "guid": "https://www.dailymail.co.uk/debate/article-12978349/LIZ-JONES-news-Kate-hospital-member-family-struck-down.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:15:35.000Z" + }, + { + "title": "Michael Owen opens up on his son's incurable condition that has left him clinically blind and forced him to give up on football... as James, 17, admits people expected him to follow in his father's footsteps", + "link": "https://www.dailymail.co.uk/sport/football/article-12978245/Michael-Owen-sons-incurable-condition-clinically-blind-James-football-dreams.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:14:59 GMT", + "enclosure": { + "length": "9131", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172241-0-image-a-10_1705578677136.jpg" + }, + "content": "EXCLUSIVE INTERVIEW BY KATHRYN BATTE: James played the game during his childhood and showed signs of promise, but his dream of", + "contentSnippet": "EXCLUSIVE INTERVIEW BY KATHRYN BATTE: James played the game during his childhood and showed signs of promise, but his dream of", + "guid": "https://www.dailymail.co.uk/sport/football/article-12978245/Michael-Owen-sons-incurable-condition-clinically-blind-James-football-dreams.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:14:59.000Z" + }, + { + "title": "Can a slimmed down monarchy cope now THREE working royals are out of action? Princess Anne's warning has been 'proved right', royal experts say - and it shows how much Harry's decision to 'desert' family has rocked the Firm", + "link": "https://www.dailymail.co.uk/news/article-12977671/slimmed-monarchy-princess-anne-warning-proved-right.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:14:01 GMT", + "enclosure": { + "length": "7027", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/12/80172777-0-image-m-8_1705579778763.jpg" + }, + "content": "The Princess of Wales is in hospital after an abdominal operation, Prince William has taken time off to care for his family and King Charles has revealed he needs a procedure on his enlarged prostate.", + "contentSnippet": "The Princess of Wales is in hospital after an abdominal operation, Prince William has taken time off to care for his family and King Charles has revealed he needs a procedure on his enlarged prostate.", + "guid": "https://www.dailymail.co.uk/news/article-12977671/slimmed-monarchy-princess-anne-warning-proved-right.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:14:01.000Z" + }, + { + "title": "Thug, 50, slashed his stepson with a 15-inch machete and left him fearing he was going to bleed to death in bitter inheritance row", + "link": "https://www.dailymail.co.uk/news/article-12978017/Thug-50-slashed-stepson-15-inch-machete-left-fearing-going-bleed-death-bitter-inheritance-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:09:58 GMT", + "enclosure": { + "length": "5456", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80171367-0-image-m-70_1705579098242.jpg" + }, + "content": "Scott Bass, 29, needed seven staples in his head and had slices in his arm after Mark Kilpatrick, 50, repeatedly hacked him with a Gurkha-style military blade.", + "contentSnippet": "Scott Bass, 29, needed seven staples in his head and had slices in his arm after Mark Kilpatrick, 50, repeatedly hacked him with a Gurkha-style military blade.", + "guid": "https://www.dailymail.co.uk/news/article-12978017/Thug-50-slashed-stepson-15-inch-machete-left-fearing-going-bleed-death-bitter-inheritance-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:09:58.000Z" + }, + { + "title": "Kate Middleton's third day in hospital: Britain rallies round Princess of Wales as she recovers from abdominal surgery with her parents and William clearing diaries to support her - leaving three senior working royals out of action", + "link": "https://www.dailymail.co.uk/news/article-12977441/kate-middleton-day-london-clinic-hospital-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:06:37 GMT", + "enclosure": { + "length": "11312", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166753-0-image-a-14_1705567778550.jpg" + }, + "content": "The Princess of Wales is said to be 'doing well' as she recovers following the procedure at the London Clinic in Marylebone revealed on the same day King Charles announced he was taking a break.", + "contentSnippet": "The Princess of Wales is said to be 'doing well' as she recovers following the procedure at the London Clinic in Marylebone revealed on the same day King Charles announced he was taking a break.", + "guid": "https://www.dailymail.co.uk/news/article-12977441/kate-middleton-day-london-clinic-hospital-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:06:37.000Z" + }, + { + "title": "XL Bully owner spends her entire \u00a313,000 Postcode Lottery win trying in vain to save life of her poisoned pet", + "link": "https://www.dailymail.co.uk/news/article-12977761/xl-bully-owner-postcode-lottery-winnings-poisoned-dog.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:05:24 GMT", + "enclosure": { + "length": "9613", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80172585-0-image-m-16_1705578229615.jpg" + }, + "content": "Anna-Marie Stevens, 51, spent the cash in a desperate attempt to save her nine-month-old puppy Paul after she suspected he ate\u00a0something poisonous during a walk in Essex.", + "contentSnippet": "Anna-Marie Stevens, 51, spent the cash in a desperate attempt to save her nine-month-old puppy Paul after she suspected he ate\u00a0something poisonous during a walk in Essex.", + "guid": "https://www.dailymail.co.uk/news/article-12977761/xl-bully-owner-postcode-lottery-winnings-poisoned-dog.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:05:24.000Z" + }, + { + "title": "GP wins three-year battle to force his millionaire neighbours to cut massive 26ft leylandii hedge which was so high it blocked out sunlight to his home amid simmering row that has turned idyllic village into a 'battlefield'", + "link": "https://www.dailymail.co.uk/news/article-12977711/GP-wins-battle-neighbours-massive-26ft-leylandii.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:04:10 GMT", + "enclosure": { + "length": "5401", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80169111-0-image-m-43_1705572457987.jpg" + }, + "content": "Dr Andrew Cross, 64, and his neighbours, property boss Mark Dyer and wife Clare, have clashed over the latter's 26ft leylandii hedge - which has turned the tiny Surrey hamlet of Brook into a 'battlefield'.", + "contentSnippet": "Dr Andrew Cross, 64, and his neighbours, property boss Mark Dyer and wife Clare, have clashed over the latter's 26ft leylandii hedge - which has turned the tiny Surrey hamlet of Brook into a 'battlefield'.", + "guid": "https://www.dailymail.co.uk/news/article-12977711/GP-wins-battle-neighbours-massive-26ft-leylandii.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:04:10.000Z" + }, + { + "title": "Sheryl Sandberg steps down from Meta board as Mark Zuckerberg thanks her for her 'extraordinary contributions'", + "link": "https://www.dailymail.co.uk/news/article-12977493/Sheryl-Sandberg-leaves-meta-board.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:02:57 GMT", + "enclosure": { + "length": "7798", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80165753-0-image-m-19_1705566066741.jpg" + }, + "content": "Meta 's former COO Sheryl Sandberg plans to step down from her position on the company's board of directors after her term ends in May, she said in a Facebook post on Wednesday.", + "contentSnippet": "Meta 's former COO Sheryl Sandberg plans to step down from her position on the company's board of directors after her term ends in May, she said in a Facebook post on Wednesday.", + "guid": "https://www.dailymail.co.uk/news/article-12977493/Sheryl-Sandberg-leaves-meta-board.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:02:57.000Z" + }, + { + "title": "Really, Sir Keir? Starmer insists he never believed Jeremy Corbyn would win a general election and only served in the left-winger's shadow cabinet because he felt 'responsible'", + "link": "https://www.dailymail.co.uk/news/article-12978179/Really-Sir-Keir-Starmer-insists-never-believed-Jeremy-Corbyn-win-general-election-served-left-wingers-shadow-cabinet-felt-responsible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:01:46 GMT", + "enclosure": { + "length": "4157", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80171601-0-image-m-31_1705576282735.jpg" + }, + "content": "In a new ITV programme, Sir Keir insisted he never thought Mr Corbyn had a chance of becoming prime minister in 2019.", + "contentSnippet": "In a new ITV programme, Sir Keir insisted he never thought Mr Corbyn had a chance of becoming prime minister in 2019.", + "guid": "https://www.dailymail.co.uk/news/article-12978179/Really-Sir-Keir-Starmer-insists-never-believed-Jeremy-Corbyn-win-general-election-served-left-wingers-shadow-cabinet-felt-responsible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:01:46.000Z" + }, + { + "title": "Final letter home from 'victim' of 'Frankenstein' killer: Mother reveals note written by her sailor son from HMS Illustrious before he vanished in 1986 - as police launch new search for his body amid fears he was murdered by serial killer", + "link": "https://www.dailymail.co.uk/news/article-12977621/final-letter-victim-frankenstein-killer-vanished.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 12:00:29 GMT", + "enclosure": { + "length": "6715", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80171137-0-image-m-38_1705575917905.jpg" + }, + "content": "Simon Parkes told his family the date he was due to arrive back in Portsmouth onboard the aircraft carrier\u00a0HMS Illustrious at the end of his maiden voyage.", + "contentSnippet": "Simon Parkes told his family the date he was due to arrive back in Portsmouth onboard the aircraft carrier\u00a0HMS Illustrious at the end of his maiden voyage.", + "guid": "https://www.dailymail.co.uk/news/article-12977621/final-letter-victim-frankenstein-killer-vanished.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T12:00:29.000Z" + }, + { + "title": "My breasts are so droopy I've never even let my boyfriend of six years see me without a bra on - I'm desperate for a reduction", + "link": "https://www.dailymail.co.uk/femail/article-12977597/woman-breast-reduction-boyfriend-never-seen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:59:22 GMT", + "enclosure": { + "length": "9552", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167675-0-image-a-4_1705569651411.jpg" + }, + "content": "Holly Norman, 23, from Swindon, Wiltshire, admitted she is 'too scared' to discover the real size of her breasts, which leave her with agonising back pain and painful rashes.", + "contentSnippet": "Holly Norman, 23, from Swindon, Wiltshire, admitted she is 'too scared' to discover the real size of her breasts, which leave her with agonising back pain and painful rashes.", + "guid": "https://www.dailymail.co.uk/femail/article-12977597/woman-breast-reduction-boyfriend-never-seen.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:59:22.000Z" + }, + { + "title": "Inside the life of Hollywood's newest bad boy: Hunk Jeremy Allen White is a chain-smoking troubled former addict who's been through a messy divorce and must be breathalysed every time he sees his children", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12974303/Jeremy-Allen-White-Calvin-Klein-Emmy-Bear-alcoholic.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:58:18 GMT", + "enclosure": { + "length": "4258", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/15/79615127-0-image-m-24_1705506671398.jpg" + }, + "content": "With his tattooed biceps, artfully dishevelled hair and mournful, blue-eyed gaze, Carmen 'Carmy' Berzatto hardly needs to display his ability with a paring knife to show that chefs can be sexy.", + "contentSnippet": "With his tattooed biceps, artfully dishevelled hair and mournful, blue-eyed gaze, Carmen 'Carmy' Berzatto hardly needs to display his ability with a paring knife to show that chefs can be sexy.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12974303/Jeremy-Allen-White-Calvin-Klein-Emmy-Bear-alcoholic.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:58:18.000Z" + }, + { + "title": "I'm a motoring expert and this clever 'pump and flick' hack will open your frozen car doors and hoods in an instant", + "link": "https://www.dailymail.co.uk/femail/article-12977541/pump-flick-hack-opening-frozen-car-doors-hoods.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:57:19 GMT", + "enclosure": { + "length": "10513", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170513-0-image-a-1_1705574278859.jpg" + }, + "content": "US car expert, @RoadsideGenius took to TikTok to walk his followers through the method - step by step - so that freezing temperatures will not get into the way of their commute.", + "contentSnippet": "US car expert, @RoadsideGenius took to TikTok to walk his followers through the method - step by step - so that freezing temperatures will not get into the way of their commute.", + "guid": "https://www.dailymail.co.uk/femail/article-12977541/pump-flick-hack-opening-frozen-car-doors-hoods.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:57:19.000Z" + }, + { + "title": "Japanese knotweed stopped me getting a mortgage - even though it wasn't even growing on my property", + "link": "https://www.dailymail.co.uk/news/article-12977873/japanese-knotweed-stopped-mortgage-growing-property.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:56:30 GMT", + "enclosure": { + "length": "5125", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80170507-0-image-a-17_1705575956397.jpg" + }, + "content": "Property investor Lisa Best, 42, from Manchester, says she was once denied a mortgage due to a bizarre law relating to Japanese knotweed - even though it wasn't on her property.", + "contentSnippet": "Property investor Lisa Best, 42, from Manchester, says she was once denied a mortgage due to a bizarre law relating to Japanese knotweed - even though it wasn't on her property.", + "guid": "https://www.dailymail.co.uk/news/article-12977873/japanese-knotweed-stopped-mortgage-growing-property.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:56:30.000Z" + }, + { + "title": "The gentle giants killed by devastating Zimbabwe drought: Calfs lie dead after more than 160 elephants die as a result of devastating conditions - and it's feared more will follow", + "link": "https://www.dailymail.co.uk/news/article-12977971/Zimbabwe-drought-160-elephants-die.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:47:08 GMT", + "enclosure": { + "length": "8031", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80170567-0-image-a-18_1705576216799.jpg" + }, + "content": "Around 160 of the gentle giants perished in a matter of weeks in the country's Hwange national park, which did not experience a single drop of rain between February and November 2023.", + "contentSnippet": "Around 160 of the gentle giants perished in a matter of weeks in the country's Hwange national park, which did not experience a single drop of rain between February and November 2023.", + "guid": "https://www.dailymail.co.uk/news/article-12977971/Zimbabwe-drought-160-elephants-die.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:47:08.000Z" + }, + { + "title": "The next Captain Tom Moore? WW2 veteran, 100, completes 660-mile charity walk around his garden after being inspired by the record-breaking lockdown hero", + "link": "https://www.dailymail.co.uk/news/article-12977763/captain-tom-moore-inspired-world-war-two-veteran-charity-garden-walk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:45:39 GMT", + "enclosure": { + "length": "11100", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168431-0-image-m-19_1705573074736.jpg" + }, + "content": "Come rain or shine, WWII hero Lance Corporal Harold Jones (pictured), from Sutton Coldfield, West Midlands, has walked laps of his back garden 30 times a day, every day since 2020.", + "contentSnippet": "Come rain or shine, WWII hero Lance Corporal Harold Jones (pictured), from Sutton Coldfield, West Midlands, has walked laps of his back garden 30 times a day, every day since 2020.", + "guid": "https://www.dailymail.co.uk/news/article-12977763/captain-tom-moore-inspired-world-war-two-veteran-charity-garden-walk.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:45:39.000Z" + }, + { + "title": "The 'Hot Houthi' Timothee Chalamet lookalike who says he's 'longing for martyrdom': As 19-year-old 'pirate' goes viral, how he has warned US and UK they face 'their end'... and hates his comparison to Wonka star", + "link": "https://www.dailymail.co.uk/news/article-12977753/Hot-Houthi-Timothee-Chalamet-lookalike-says-hes-longing-martyrdom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:43:55 GMT", + "enclosure": { + "length": "5933", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170485-0-image-m-30_1705574232109.jpg" + }, + "content": "Rashid Al Haddad - a 19-year-old from\u00a0Ibb Governorate in central Yemen - captured the attention of netizens this week by posting videos to social media of himself aboard the Galaxy Leader.", + "contentSnippet": "Rashid Al Haddad - a 19-year-old from\u00a0Ibb Governorate in central Yemen - captured the attention of netizens this week by posting videos to social media of himself aboard the Galaxy Leader.", + "guid": "https://www.dailymail.co.uk/news/article-12977753/Hot-Houthi-Timothee-Chalamet-lookalike-says-hes-longing-martyrdom.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:43:55.000Z" + }, + { + "title": "Mother-of-three sacked from \u00a3124,000-a-year job after she rejected advances of boss who called her a 'naughty girl', praised her 'candy toes' and bought her a diamond ring wins \u00a3100,000 sex harassment payout", + "link": "https://www.dailymail.co.uk/news/article-12977617/Mother-three-sacked-job-rejected-advances-boss-called-naughty-girl-praised-candy-toes-sex-harassment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:41:52 GMT", + "enclosure": { + "length": "5525", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/76473385-0-image-m-7_1705571173728.jpg" + }, + "content": "Marc Bandemer (right), 59, made repeated advances towards Louise Crabtree (left), 49, over two years. A Southampton tribunal heard how he sent her messages, referring to her as his 'second wife'.", + "contentSnippet": "Marc Bandemer (right), 59, made repeated advances towards Louise Crabtree (left), 49, over two years. A Southampton tribunal heard how he sent her messages, referring to her as his 'second wife'.", + "guid": "https://www.dailymail.co.uk/news/article-12977617/Mother-three-sacked-job-rejected-advances-boss-called-naughty-girl-praised-candy-toes-sex-harassment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:41:52.000Z" + }, + { + "title": "'I only left my car running for a few minutes to de-ice it - and it was gone': Man whose \u00a38,000 Peugeot was stolen as he said goodbye to his wife believes he's victim of organised 'ice bandit' gang - after three more cars were taken nearby in a morning", + "link": "https://www.dailymail.co.uk/news/article-12974301/I-left-car-running-minutes-deice-gone-Man-8-000-Peugeot-stolen-said-goodbye-wife-believes-hes-victim-organised-ice-bandit-gang-three-cars-taken-nearby-morning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:38:09 GMT", + "enclosure": { + "length": "5362", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/16/80135389-0-image-m-30_1705508453965.jpg" + }, + "content": "Miles Key says he only left his vehicle running unattended to de-ice for a matter of minutes while he bid goodbye to his wife. His car was one of four stolen in Devon. A van was also reported stolen.", + "contentSnippet": "Miles Key says he only left his vehicle running unattended to de-ice for a matter of minutes while he bid goodbye to his wife. His car was one of four stolen in Devon. A van was also reported stolen.", + "guid": "https://www.dailymail.co.uk/news/article-12974301/I-left-car-running-minutes-deice-gone-Man-8-000-Peugeot-stolen-said-goodbye-wife-believes-hes-victim-organised-ice-bandit-gang-three-cars-taken-nearby-morning.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:38:09.000Z" + }, + { + "title": "Kanye West flashes his shock new $850K titanium dentures while out with wife Bianca Censori and Chris Rock\u2026 after getting teeth REMOVED in 'Jaws' the Bond villain makeover", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12977069/Kanye-West-flashes-titanium-dentures-Bianca-Censori-Chris-Rock.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:37:18 GMT", + "enclosure": { + "length": "8204", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/04/80160881-0-image-m-2_1705551114533.jpg" + }, + "content": "Kanye West cut an imposing figure on Wednesday when he was spotted showing off his new titanium dentures while hanging out with Chris Rock and his wife Bianca Censori.", + "contentSnippet": "Kanye West cut an imposing figure on Wednesday when he was spotted showing off his new titanium dentures while hanging out with Chris Rock and his wife Bianca Censori.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12977069/Kanye-West-flashes-titanium-dentures-Bianca-Censori-Chris-Rock.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:37:18.000Z" + }, + { + "title": "Venture inside a 'monster' supermassive black hole: Incredible new image of M87 confirms the enormous void is 'active and feeding'", + "link": "https://www.dailymail.co.uk/sciencetech/article-12977777/Venture-inside-monster-supermassive-black-hole-Incredible-new-image-M87-confirms-enormous-void-active-feeding.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:35:10 GMT", + "enclosure": { + "length": "2131", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/11/80169933-0-image-a-26_1705575826286.jpg" + }, + "content": "Scientists have revealed new images of a 'monster' black hole at the heart of the Messier 87 galaxy, providing the first confirmation that this mysterious object is real.", + "contentSnippet": "Scientists have revealed new images of a 'monster' black hole at the heart of the Messier 87 galaxy, providing the first confirmation that this mysterious object is real.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12977777/Venture-inside-monster-supermassive-black-hole-Incredible-new-image-M87-confirms-enormous-void-active-feeding.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:35:10.000Z" + }, + { + "title": "Emma Raducanu has to have her blood pressure checked during Australian Open defeat by Yafan Wang in three sets... as loss caps a dismal day for Brits with Jack Draper and Katie Boulter out too", + "link": "https://www.dailymail.co.uk/sport/tennis/article-12978081/Emma-Raducanu-Australian-Open-Jack-Draper-Katie-Boulter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:31:20 GMT", + "enclosure": { + "length": "10232", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170937-0-image-a-25_1705575383205.jpg" + }, + "content": "Raducanu, playing only her fourth match since returning from eight months out and three surgeries, had battled back strongly from a set and a break down to force a deciding set.", + "contentSnippet": "Raducanu, playing only her fourth match since returning from eight months out and three surgeries, had battled back strongly from a set and a break down to force a deciding set.", + "guid": "https://www.dailymail.co.uk/sport/tennis/article-12978081/Emma-Raducanu-Australian-Open-Jack-Draper-Katie-Boulter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:31:20.000Z" + }, + { + "title": "Fascinating map reveals the world's busiest international flight routes with\u00a0Kuala Lumpur to Singapore Changi No.1 and London Heathrow to JFK ranking eighth", + "link": "https://www.dailymail.co.uk/travel/article-12974037/Fascinating-map-reveals-worlds-busiest-international-flight-routes-Kuala-Lumpur-Singapore-Changi-No-1-London-JFK-ranking-eighth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:30:00 GMT", + "enclosure": { + "length": "8030", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/16/80132825-0-image-m-45_1705510182324.jpg" + }, + "content": "Flight data company OAG has revealed its busiest flight routes of 2023, produced by measuring the routes with the largest volume of scheduled airline seats in both directions.", + "contentSnippet": "Flight data company OAG has revealed its busiest flight routes of 2023, produced by measuring the routes with the largest volume of scheduled airline seats in both directions.", + "guid": "https://www.dailymail.co.uk/travel/article-12974037/Fascinating-map-reveals-worlds-busiest-international-flight-routes-Kuala-Lumpur-Singapore-Changi-No-1-London-JFK-ranking-eighth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:30:00.000Z" + }, + { + "title": "John Travolta was 'driving force' behind Prince Harry being named as a 'Living Legend of Aviation' after 'always feeling connection to Duke since dancing with Diana at the White House'", + "link": "https://www.dailymail.co.uk/news/article-12977667/John-Travolta-driving-force-Prince-Harry-named-Living-Legend-Aviation-feeling-connection-Duke-dancing-Diana-White-House.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:27:30 GMT", + "enclosure": { + "length": "6827", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168221-0-image-m-13_1705572549295.jpg" + }, + "content": "John Travolta was said to be one of the 'biggest supporters' of Prince Harry being honoured at tomorrow's event during a selection process among existing honourees and committee members.", + "contentSnippet": "John Travolta was said to be one of the 'biggest supporters' of Prince Harry being honoured at tomorrow's event during a selection process among existing honourees and committee members.", + "guid": "https://www.dailymail.co.uk/news/article-12977667/John-Travolta-driving-force-Prince-Harry-named-Living-Legend-Aviation-feeling-connection-Duke-dancing-Diana-White-House.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:27:30.000Z" + }, + { + "title": "Prison warden who got so high off fumes of drugs smoked by inmates that he was 'rushed to hospital after hallucinating and becoming aggressive' wins payout", + "link": "https://www.dailymail.co.uk/news/article-12977805/Prison-warden-got-high-fumes-drugs-smoked-inmates-rushed-hospital-hallucinating-aggressive-wins-payout.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:19:24 GMT", + "enclosure": { + "length": "5617", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80165803-0-image-m-17_1705570917512.jpg" + }, + "content": "A prison warden in Scotland who was rushed to hospital after inhaling drugs being smoked by inmates has won a payout.", + "contentSnippet": "A prison warden in Scotland who was rushed to hospital after inhaling drugs being smoked by inmates has won a payout.", + "guid": "https://www.dailymail.co.uk/news/article-12977805/Prison-warden-got-high-fumes-drugs-smoked-inmates-rushed-hospital-hallucinating-aggressive-wins-payout.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:19:24.000Z" + }, + { + "title": "Captain Tom Moore's daughter's company suffers \u00a3145,000 drop in assets over last financial year, accounts show amid questions of the family's handling of NHS hero's fundraising cash", + "link": "https://www.dailymail.co.uk/news/article-12977751/captain-tom-moore-daughter-hannah-company-massive-financial-drop.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:07:52 GMT", + "enclosure": { + "length": "6941", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170135-0-image-m-10_1705573787383.jpg" + }, + "content": "Club Nook Ltd was registered by Hannah Ingram-Moore in the UK in April 2020, less than two weeks before the Captain Tom Foundation was incorporated.", + "contentSnippet": "Club Nook Ltd was registered by Hannah Ingram-Moore in the UK in April 2020, less than two weeks before the Captain Tom Foundation was incorporated.", + "guid": "https://www.dailymail.co.uk/news/article-12977751/captain-tom-moore-daughter-hannah-company-massive-financial-drop.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:07:52.000Z" + }, + { + "title": "Woman forced to spend almost \u00a31,000 on private dental care when she fell down the stairs and busted her mouth - after she was not told she had been deregistered by her NHS dentist", + "link": "https://www.dailymail.co.uk/news/article-12977673/dentist-1000-pounds-stairs-mouth-deregistered-NHS-Manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:03:26 GMT", + "enclosure": { + "length": "4596", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168359-0-image-m-18_1705570797698.jpg" + }, + "content": "Mandy Lincoln had been going to the Mydentist practice in Cheadle, Greater Manchester, for more than ten years when the disastrous incident happened just before Christmas.", + "contentSnippet": "Mandy Lincoln had been going to the Mydentist practice in Cheadle, Greater Manchester, for more than ten years when the disastrous incident happened just before Christmas.", + "guid": "https://www.dailymail.co.uk/news/article-12977673/dentist-1000-pounds-stairs-mouth-deregistered-NHS-Manchester.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:03:26.000Z" + }, + { + "title": "Science Museum reinstates trans inclusive display a year after controversial 'Boy or Girl' exhibit featuring fake penis and chest binders was removed following complaints", + "link": "https://www.dailymail.co.uk/news/article-12977557/Science-Museum-reinstates-trans-inclusive-display-year-controversial-Boy-Girl-exhibit-featuring-fake-penis-chest-binders-removed-following-complaints.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 11:01:45 GMT", + "enclosure": { + "length": "6400", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/66694789-0-The_controversial_sex_and_gender_gallery_describes_transitioning-a-29_1705568594718.jpg" + }, + "content": "The museum took down the display last year following complaints the gallery - which described transitioning from the 'wrong body' as a 'hero's journey' - was\u00a0propaganda rather than biology.", + "contentSnippet": "The museum took down the display last year following complaints the gallery - which described transitioning from the 'wrong body' as a 'hero's journey' - was\u00a0propaganda rather than biology.", + "guid": "https://www.dailymail.co.uk/news/article-12977557/Science-Museum-reinstates-trans-inclusive-display-year-controversial-Boy-Girl-exhibit-featuring-fake-penis-chest-binders-removed-following-complaints.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T11:01:45.000Z" + }, + { + "title": "Footage reveals dementia-stricken grandmother's shocking abuse at the hands of cruel carers after family hid Fool Me Once-style secret camera in a photo frame when they noticed bruises on her body", + "link": "https://www.dailymail.co.uk/news/article-12973977/Footage-dementia-stricken-grandmothers-shocking-abuse-cruel-carers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:59:46 GMT", + "enclosure": { + "length": "8081", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/17/80133627-0-image-a-76_1705511007665.jpg" + }, + "content": "DISTRESSING CONTENT: Danielle and Rebecca Hinsley unwittingly captured footage that 'broke their hearts' after concerns for their grandmother in a West Midlands care home.", + "contentSnippet": "DISTRESSING CONTENT: Danielle and Rebecca Hinsley unwittingly captured footage that 'broke their hearts' after concerns for their grandmother in a West Midlands care home.", + "guid": "https://www.dailymail.co.uk/news/article-12973977/Footage-dementia-stricken-grandmothers-shocking-abuse-cruel-carers.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:59:46.000Z" + }, + { + "title": "Would you have a baby at 50? Mothers engage in furious debate as some claim it's 'selfish' and 'unimaginably bad' - but others insist there's no reason not to if you're fit and healthy", + "link": "https://www.dailymail.co.uk/femail/article-12973821/is-having-baby-50-old.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:57:46 GMT", + "enclosure": { + "length": "3346", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/15/80134833-0-image-a-86_1705505004411.jpg" + }, + "content": "Taking to British platform Mumsnet, a woman asked if others would consider becoming a parent at 50, assuming you can provide for the child financially and emotionally.", + "contentSnippet": "Taking to British platform Mumsnet, a woman asked if others would consider becoming a parent at 50, assuming you can provide for the child financially and emotionally.", + "guid": "https://www.dailymail.co.uk/femail/article-12973821/is-having-baby-50-old.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:57:46.000Z" + }, + { + "title": "Is it a Covid lab squeak? Mouse manages to escape hapless Chinese laboratory worker by clinging on to the back of her hazmat suit for ten minutes while she searches for the rodent", + "link": "https://www.dailymail.co.uk/news/article-12977757/Covid-lab-squeak-mouse-escape-Chinese-laboratory-worker-hazmat-suit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:53:59 GMT", + "enclosure": { + "length": "9323", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168659-0-image-m-20_1705574888670.jpg" + }, + "content": "Lab technician Tian Yongyi frantically searches for the mouse, even lying on the floor to look under cabinets as the clever rodent clings to her and scrambles over her back without her noticing.", + "contentSnippet": "Lab technician Tian Yongyi frantically searches for the mouse, even lying on the floor to look under cabinets as the clever rodent clings to her and scrambles over her back without her noticing.", + "guid": "https://www.dailymail.co.uk/news/article-12977757/Covid-lab-squeak-mouse-escape-Chinese-laboratory-worker-hazmat-suit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:53:59.000Z" + }, + { + "title": "Kate Middleton is in the best possible position to recover from surgery thanks to her healthy lifestyle of daily workouts,\u00a0 cold water swimming and drinking green juice", + "link": "https://www.dailymail.co.uk/femail/article-12977607/kate-middleton-abdominal-surgery-recovery-cold-water-swimming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:51:50 GMT", + "enclosure": { + "length": "11920", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80170703-0-image-a-41_1705574803468.jpg" + }, + "content": "While the time to take to recover from abdominal surgery can vary massively, Kate, who is currently at the London Clinic in Marylebone, is likely to boucne back.", + "contentSnippet": "While the time to take to recover from abdominal surgery can vary massively, Kate, who is currently at the London Clinic in Marylebone, is likely to boucne back.", + "guid": "https://www.dailymail.co.uk/femail/article-12977607/kate-middleton-abdominal-surgery-recovery-cold-water-swimming.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:51:50.000Z" + }, + { + "title": "Doctor, 57, who was once in charge of beauty and anti-ageing treatments for Champneys is struck off for having a relationship with a patient", + "link": "https://www.dailymail.co.uk/news/article-12977683/Doctor-charge-beauty-anti-ageing-treatments-Champneys-struck-having-relationship-patient.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:50:34 GMT", + "enclosure": { + "length": "5801", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168725-0-image-m-46_1705574967245.jpg" + }, + "content": "Family GP Dr Simon Berrisford, 57, illicitly began dating the woman after meeting her during a consultation and she later went on to work alongside him as a director of his practice.", + "contentSnippet": "Family GP Dr Simon Berrisford, 57, illicitly began dating the woman after meeting her during a consultation and she later went on to work alongside him as a director of his practice.", + "guid": "https://www.dailymail.co.uk/news/article-12977683/Doctor-charge-beauty-anti-ageing-treatments-Champneys-struck-having-relationship-patient.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:50:34.000Z" + }, + { + "title": "Bronson Battersby: Policing minister says 'questions need to be answered' as force refers itself to watchdog over death of toddler who was 'two inches too small' to open fridge full of leftovers that 'could have saved him'", + "link": "https://www.dailymail.co.uk/news/article-12977615/bronson-battersby-policing-minister-questions-watchdog-toddler-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:40:09 GMT", + "enclosure": { + "length": "6213", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80168279-0-image-m-43_1705573521800.jpg" + }, + "content": "Chris Philp said it was vital that investigations uncover what happened after the 'heartbreaking tragedy' which saw the two-year-old found dead curled up at the knees of his father Kenneth.", + "contentSnippet": "Chris Philp said it was vital that investigations uncover what happened after the 'heartbreaking tragedy' which saw the two-year-old found dead curled up at the knees of his father Kenneth.", + "guid": "https://www.dailymail.co.uk/news/article-12977615/bronson-battersby-policing-minister-questions-watchdog-toddler-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:40:09.000Z" + }, + { + "title": "Labour and SNP accuse ex-minister Liam Fox of sexism after he brands female MP 'hysterical' for claiming Rwanda plan amounts to 'state sponsored human trafficking'", + "link": "https://www.dailymail.co.uk/news/article-12977849/Labour-SNP-accuse-ex-minister-Liam-Fox-sexism-brands-female-MP-hysterical-claiming-Rwanda-plan-amounts-state-sponsored-human-trafficking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:36:59 GMT", + "enclosure": { + "length": "4202", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168739-0-image-m-11_1705571569687.jpg" + }, + "content": "Dr Liam Fox was labelled a 'misogynist' by fellow MPs after he made the remark about the SNP 's Alison Thewliss.", + "contentSnippet": "Dr Liam Fox was labelled a 'misogynist' by fellow MPs after he made the remark about the SNP 's Alison Thewliss.", + "guid": "https://www.dailymail.co.uk/news/article-12977849/Labour-SNP-accuse-ex-minister-Liam-Fox-sexism-brands-female-MP-hysterical-claiming-Rwanda-plan-amounts-state-sponsored-human-trafficking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:36:59.000Z" + }, + { + "title": "Bizarre new TikTok weight loss hack... COTTAGE CHEESE (but the dietitians aren't convinced)", + "link": "https://www.dailymail.co.uk/wellness-uk/article-12969861/TikTok-weight-loss-cottage-cheese-cookie-dough.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:34:43 GMT", + "enclosure": { + "length": "8370", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/15/80134691-0-image-m-34_1705504503966.jpg" + }, + "content": "Videos claim you can eat cookie dough made from cottage cheese and protein powder 'every single day' still lose body fat. But Nutritionist Rob Hobson says this claim is 'unfounded'.", + "contentSnippet": "Videos claim you can eat cookie dough made from cottage cheese and protein powder 'every single day' still lose body fat. But Nutritionist Rob Hobson says this claim is 'unfounded'.", + "guid": "https://www.dailymail.co.uk/wellness-uk/article-12969861/TikTok-weight-loss-cottage-cheese-cookie-dough.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:34:43.000Z" + }, + { + "title": "A shower and a shave! Stephen Bear has already ditched his long hair and beard after prison guard said shamed reality star 'found God' behind bars - as he enjoys first day of freedom with pampering session and family insist he 'ain't hiding under no rock'", + "link": "https://www.dailymail.co.uk/news/article-12977653/A-shower-shave-Shamed-reality-TV-star-Stephen-Bear-chops-long-locks-just-hours-leaving-prison-celebrates-night-freedom-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:32:27 GMT", + "enclosure": { + "length": "5291", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166793-0-image-m-13_1705567933635.jpg" + }, + "content": "Stephen Bear appeared to have ditched his long locks, shaggy beard and rosary beads just hours after leaving prison in London on Wednesday looking unrecognisable.", + "contentSnippet": "Stephen Bear appeared to have ditched his long locks, shaggy beard and rosary beads just hours after leaving prison in London on Wednesday looking unrecognisable.", + "guid": "https://www.dailymail.co.uk/news/article-12977653/A-shower-shave-Shamed-reality-TV-star-Stephen-Bear-chops-long-locks-just-hours-leaving-prison-celebrates-night-freedom-family.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:32:27.000Z" + }, + { + "title": "Brooklyn Beckham hopes to bring home the bacon as Insta-cook launches pop-up restaurant specialising in his Nanny Peggy's English breakfast sandwiches", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12975325/Brooklyn-Beckham-hopes-bring-home-bacon-Insta-cook-launches-pop-restaurant-specialising-Nanny-Peggys-English-breakfast-sandwiches.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:30:17 GMT", + "enclosure": { + "length": "11240", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/19/80145251-0-image-a-23_1705520651765.jpg" + }, + "content": "Brooklyn, 24, has created a menu for his pop-up eatery which will offer five dishes inspired by his 'global upbringing'.", + "contentSnippet": "Brooklyn, 24, has created a menu for his pop-up eatery which will offer five dishes inspired by his 'global upbringing'.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12975325/Brooklyn-Beckham-hopes-bring-home-bacon-Insta-cook-launches-pop-restaurant-specialising-Nanny-Peggys-English-breakfast-sandwiches.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:30:17.000Z" + }, + { + "title": "Owner of Bobi 'the world's oldest dog' launches scathing attack on 'parasite' vets for 'discrediting' his late pet after Guinness World Records suspended the title and launched a review in to his age", + "link": "https://www.dailymail.co.uk/news/article-12977781/Bobi-world-oldest-dog-attack-parasite-vets-discrediting-late-pet-Guinness-World-Records-suspended-title-review-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:27:22 GMT", + "enclosure": { + "length": "5493", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/10/80167945-0-image-m-18_1705572438466.jpg" + }, + "content": "Leonel Costa said industry people with a vested interest in selling 'processed' pet food had targeted him and his dog because he had extolled the virtues of human food for his four-legged friend.", + "contentSnippet": "Leonel Costa said industry people with a vested interest in selling 'processed' pet food had targeted him and his dog because he had extolled the virtues of human food for his four-legged friend.", + "guid": "https://www.dailymail.co.uk/news/article-12977781/Bobi-world-oldest-dog-attack-parasite-vets-discrediting-late-pet-Guinness-World-Records-suspended-title-review-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:27:22.000Z" + }, + { + "title": "Incredible moment US 'Bradley' destroys three Russian BMP-2 fighting vehicles as they try to flank Ukrainian soldiers defending a village - before reducing one of Putin's 'world-best' battle tanks to scrap", + "link": "https://www.dailymail.co.uk/news/article-12977603/Bradley-destroys-Russian-BMP2-T90-tank-Ukraine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:24:24 GMT", + "enclosure": { + "length": "7994", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167707-0-image-a-19_1705571104945.jpg" + }, + "content": "An incredible clip shared by Ukraine's 109th Separate Territorial Defence Brigade showed how the expertly piloted Bradley saved a troop of Kyiv 's soldiers from certain death", + "contentSnippet": "An incredible clip shared by Ukraine's 109th Separate Territorial Defence Brigade showed how the expertly piloted Bradley saved a troop of Kyiv 's soldiers from certain death", + "guid": "https://www.dailymail.co.uk/news/article-12977603/Bradley-destroys-Russian-BMP2-T90-tank-Ukraine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:24:24.000Z" + }, + { + "title": "The middle class mums 'flexi-schooling' their children: They go to extraordinary lengths to teach their children from home part-time... despite some teachers' fears that pupils will miss out on\u00a0 key lessons", + "link": "https://www.dailymail.co.uk/femail/article-12975099/Should-send-children-school-three-days-homeschool-two-Meet-middle-class-mothers-embracing-flexi-schooling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:19:37 GMT", + "enclosure": { + "length": "10780", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/18/80141941-0-image-a-31_1705514728651.jpg" + }, + "content": "Sara Sutherland is one of a growing number of parents 'flexi-schooling'. Part of the week her children attend school as normal, and for the rest they are schooled from home. Or - Spain.", + "contentSnippet": "Sara Sutherland is one of a growing number of parents 'flexi-schooling'. Part of the week her children attend school as normal, and for the rest they are schooled from home. Or - Spain.", + "guid": "https://www.dailymail.co.uk/femail/article-12975099/Should-send-children-school-three-days-homeschool-two-Meet-middle-class-mothers-embracing-flexi-schooling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:19:37.000Z" + }, + { + "title": "Kate Moss' pals share a behind the scenes look at her wild 50th birthday bash as 30 of her closest friends partied until the early hours in Paris", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12977523/Kate-Moss-pals-share-scenes-look-wild-50th-birthday-bash-30-closest-friends-partied-early-hours-Paris.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:13:54 GMT", + "enclosure": { + "length": "10291", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168297-0-image-m-34_1705570704262.jpg" + }, + "content": "Kate Moss' nearest and dearest showed up to celebrate her 50th birthday with a wild night out at the Laurent Restaurantin in Paris on Tuesday night.", + "contentSnippet": "Kate Moss' nearest and dearest showed up to celebrate her 50th birthday with a wild night out at the Laurent Restaurantin in Paris on Tuesday night.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12977523/Kate-Moss-pals-share-scenes-look-wild-50th-birthday-bash-30-closest-friends-partied-early-hours-Paris.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:13:54.000Z" + }, + { + "title": "Novak Djokovic pays tribute to legendary Mail Sport tennis correspondent Mike Dickson as the sport mourns the loss of 'Mr Wimbledon', who tragically died aged 59 covering the Australian Open", + "link": "https://www.dailymail.co.uk/sport/tennis/article-12977305/Novak-Djokovic-pays-tribute-legendary-Mail-Sport-tennis-correspondent-Mike-Dickson-sport-mourns-loss-Mr-Wimbledon-tragically-died-aged-59-covering-Australian-Open.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:11:46 GMT", + "enclosure": { + "length": "6207", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/06/80163805-0-image-a-24_1705560365499.jpg" + }, + "content": "Novak Djokovic paid tribute to Mail Sport's legendary correspondent Mike Dickson after he tragically passed away on Wednesday.", + "contentSnippet": "Novak Djokovic paid tribute to Mail Sport's legendary correspondent Mike Dickson after he tragically passed away on Wednesday.", + "guid": "https://www.dailymail.co.uk/sport/tennis/article-12977305/Novak-Djokovic-pays-tribute-legendary-Mail-Sport-tennis-correspondent-Mike-Dickson-sport-mourns-loss-Mr-Wimbledon-tragically-died-aged-59-covering-Australian-Open.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:11:46.000Z" + }, + { + "title": "Bargain Loving Brits in the Sun star Graham Boland dead: Benidorm legend passes away as 'heartbroken' brother and fans pay tribute", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12977689/Bargain-Loving-Brits-Sun-star-Graham-Boland-dead-Benidorm-legend-heartbroken-brother-fans-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:09:15 GMT", + "enclosure": { + "length": "10701", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167671-0-image-m-28_1705569647201.jpg" + }, + "content": "The owner of the iconic Benidorm bar Happy Days tragically passed away on Wednesday afternoon, after he was said to have been suffering from a long-term illness.", + "contentSnippet": "The owner of the iconic Benidorm bar Happy Days tragically passed away on Wednesday afternoon, after he was said to have been suffering from a long-term illness.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12977689/Bargain-Loving-Brits-Sun-star-Graham-Boland-dead-Benidorm-legend-heartbroken-brother-fans-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:09:15.000Z" + }, + { + "title": "The show might not go on! Performers at the English National Opera to go on strike over funding cuts - with adaptation of the Handmaid's Tale facing the axe on its opening night", + "link": "https://www.dailymail.co.uk/news/article-12977583/Performers-English-National-Opera-strike-Handmaids-Tale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 10:08:10 GMT", + "enclosure": { + "length": "9074", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167465-0-image-a-19_1705569603867.jpg" + }, + "content": "Musicians' Union and Equity confirmed its members would picket the London Coliseum on February 1 - the opening night for the show based on Margaret Atwood's acclaimed 1985 novel.", + "contentSnippet": "Musicians' Union and Equity confirmed its members would picket the London Coliseum on February 1 - the opening night for the show based on Margaret Atwood's acclaimed 1985 novel.", + "guid": "https://www.dailymail.co.uk/news/article-12977583/Performers-English-National-Opera-strike-Handmaids-Tale.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T10:08:10.000Z" + }, + { + "title": "Vaping while pregnant is safe for both babies and mothers, rule experts amid growing fears of dangers of e-cigs", + "link": "https://www.dailymail.co.uk/health/article-12977497/Vaping-pregnant-safe-babies-mothers-rule-experts-amid-growing-fears-dangers-e-cigs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:58:16 GMT", + "enclosure": { + "length": "4767", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166859-0-image-a-10_1705568175007.jpg" + }, + "content": "Women who feel nicotine cravings while pregnant can be reassured that using a vape won't harm their baby, according to results from a British study involving over 1,100 expectant mothers.", + "contentSnippet": "Women who feel nicotine cravings while pregnant can be reassured that using a vape won't harm their baby, according to results from a British study involving over 1,100 expectant mothers.", + "guid": "https://www.dailymail.co.uk/health/article-12977497/Vaping-pregnant-safe-babies-mothers-rule-experts-amid-growing-fears-dangers-e-cigs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:58:16.000Z" + }, + { + "title": "I registered to buy a wreck at a property auction - here's how I prepared to bid", + "link": "https://www.dailymail.co.uk/property/article-12952277/I-registered-buy-wreck-property-auction-heres-prepared-bid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:55:25 GMT", + "enclosure": { + "length": "6688", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/17/79902473-0-image-a-18_1704992954601.jpg" + }, + "content": "In our new series of three articles, Myra Butterworth reveals what happened when she registered to bid - and gets some expert tips from an auctioneer.", + "contentSnippet": "In our new series of three articles, Myra Butterworth reveals what happened when she registered to bid - and gets some expert tips from an auctioneer.", + "guid": "https://www.dailymail.co.uk/property/article-12952277/I-registered-buy-wreck-property-auction-heres-prepared-bid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:55:25.000Z" + }, + { + "title": "Doomed $108 million NASA-backed Peregrine One will crash back down to Earth TODAY - these are the potential impact zones", + "link": "https://www.dailymail.co.uk/sciencetech/article-12977491/Doomed-108-million-NASA-backed-Peregrine-One-crash-Earth-TODAY-potential-impact-zones.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:55:22 GMT", + "enclosure": { + "length": "9260", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168235-0-image-m-132_1705570559727.jpg" + }, + "content": "Peregrine One was supposed to land on the moon but suffered a\u00a0propellant leak. Here's where the craft is expected to crash down after nearly a week in space.", + "contentSnippet": "Peregrine One was supposed to land on the moon but suffered a\u00a0propellant leak. Here's where the craft is expected to crash down after nearly a week in space.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12977491/Doomed-108-million-NASA-backed-Peregrine-One-crash-Earth-TODAY-potential-impact-zones.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:55:22.000Z" + }, + { + "title": "Family stunned to find their pet pug had more than 50 hairbands in her stomach after they took her to the vet because she was acting strangely", + "link": "https://www.dailymail.co.uk/news/article-12977709/Family-stunned-pet-pug-50-hairbands-stomach-took-vet-acting-strangely.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:53:18 GMT", + "enclosure": { + "length": "8204", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80168451-0-image-m-20_1705571456600.jpg" + }, + "content": "Owner Victoria Northwood, from Sherbert, Dorset, noticed her two-year-old dog, Ham, was a lot quieter than usual and decided to call the local vet.", + "contentSnippet": "Owner Victoria Northwood, from Sherbert, Dorset, noticed her two-year-old dog, Ham, was a lot quieter than usual and decided to call the local vet.", + "guid": "https://www.dailymail.co.uk/news/article-12977709/Family-stunned-pet-pug-50-hairbands-stomach-took-vet-acting-strangely.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:53:18.000Z" + }, + { + "title": "Arnold Schwarzenegger jokes 'this is the most watched watch in the world now' as full details of 'incompetent' cop blunders are revealed after he was detained in Munich for failing to declare luxury timepiece", + "link": "https://www.dailymail.co.uk/news/article-12977529/Arnold-Schwarzenegger-luxury-watch-joke-incompetent-police-detained-munich.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:52:01 GMT", + "enclosure": { + "length": "6129", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80165875-0-image-m-16_1705568434142.jpg" + }, + "content": "The Terminator actor, 76, was on his way to auction off the watch for his eco charity when he was detained for three hours by customs officials after landing in Germany yesterday afternoon.", + "contentSnippet": "The Terminator actor, 76, was on his way to auction off the watch for his eco charity when he was detained for three hours by customs officials after landing in Germany yesterday afternoon.", + "guid": "https://www.dailymail.co.uk/news/article-12977529/Arnold-Schwarzenegger-luxury-watch-joke-incompetent-police-detained-munich.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:52:01.000Z" + }, + { + "title": "Major supermarket announces end to loyalty reward programme starting next week - and customers are not happy", + "link": "https://www.dailymail.co.uk/femail/article-12970667/Major-supermarket-announces-end-loyalty-reward-programme-starting-week-customers-not-happy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:48:30 GMT", + "enclosure": { + "length": "9799", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/09/80167035-0-image-a-54_1705568477948.jpg" + }, + "content": "The chain's current loyalty scheme\u00a0allows Co-op members to earn 2p back for every \u00a31 spent in store, however it will be axed across the UK from January 24", + "contentSnippet": "The chain's current loyalty scheme\u00a0allows Co-op members to earn 2p back for every \u00a31 spent in store, however it will be axed across the UK from January 24", + "guid": "https://www.dailymail.co.uk/femail/article-12970667/Major-supermarket-announces-end-loyalty-reward-programme-starting-week-customers-not-happy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:48:30.000Z" + }, + { + "title": "I paid \u00a3889 for a robot vacuum that doesn't work: CRANE ON THE CASE", + "link": "https://www.dailymail.co.uk/money/bills/article-12974185/I-paid-889-robot-vacuum-doesnt-work-CRANE-CASE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:38:36 GMT", + "enclosure": { + "length": "10981", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/16/80137659-0-image-m-30_1705509219081.jpg" + }, + "content": "My futuristic vacuum stopped working after only eight months - and now no-one at iRobot seems to be able to help.", + "contentSnippet": "My futuristic vacuum stopped working after only eight months - and now no-one at iRobot seems to be able to help.", + "guid": "https://www.dailymail.co.uk/money/bills/article-12974185/I-paid-889-robot-vacuum-doesnt-work-CRANE-CASE.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:38:36.000Z" + }, + { + "title": "DR MARTIN SCURR: A planned operation reduces the risk of complications for Kate", + "link": "https://www.dailymail.co.uk/health/article-12976251/planned-operation-reduces-risk-complications-Princess-Kate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:21:39 GMT", + "enclosure": { + "length": "10178", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/23/80153733-0-image-a-53_1705533757380.jpg" + }, + "content": "She exudes radiant good health, so the news that the Princess of Wales has undergone abdominal surgery at the London Clinic will have given rise to some concern.", + "contentSnippet": "She exudes radiant good health, so the news that the Princess of Wales has undergone abdominal surgery at the London Clinic will have given rise to some concern.", + "guid": "https://www.dailymail.co.uk/health/article-12976251/planned-operation-reduces-risk-complications-Princess-Kate.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:21:39.000Z" + }, + { + "title": "Hollywood father-son duo look unrecognisable in sweet throwback snap - but can YOU guess who it is?", + "link": "https://www.dailymail.co.uk/tvshowbiz/dan-levy/article-12977445/Hollywood-father-son-duo-look-unrecognisable-sweet-throwback-snap-guess-is.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:03:54 GMT", + "enclosure": { + "length": "6009", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80164975-0-image-m-13_1705565028682.jpg" + }, + "content": "They are two of the most recognisable actors in Hollywood after starring in a popular sitcom series.", + "contentSnippet": "They are two of the most recognisable actors in Hollywood after starring in a popular sitcom series.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/dan-levy/article-12977445/Hollywood-father-son-duo-look-unrecognisable-sweet-throwback-snap-guess-is.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:03:54.000Z" + }, + { + "title": "Back to the drawing board! These baffling design fails should never have seen the light of day", + "link": "https://www.dailymail.co.uk/femail/article-12969855/baffling-design-fails.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 09:03:33 GMT", + "enclosure": { + "length": "10438", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/08/80166107-0-image-a-12_1705566647353.jpg" + }, + "content": "People from around the world have shared baffling snaps of outrageous design and the worst have been collected by Pleated Jeans. Including a toilet decorated with a sharks head", + "contentSnippet": "People from around the world have shared baffling snaps of outrageous design and the worst have been collected by Pleated Jeans. Including a toilet decorated with a sharks head", + "guid": "https://www.dailymail.co.uk/femail/article-12969855/baffling-design-fails.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T09:03:33.000Z" + }, + { + "title": "Alternative 'quackery', faith healing and herbalism: The royal doctor looking after King Charles who claims Christian healers may be able to help the chronically ill (and is a fan of devil's claw and horny goat weed)", + "link": "https://www.dailymail.co.uk/news/article-12977297/Who-Dr-Michael-Dixon-royal-doctor-King-Charles-Princess-Wales-operations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:57:41 GMT", + "enclosure": { + "length": "6978", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/07/80164267-0-image-a-8_1705562527123.jpg" + }, + "content": "Dr Michael Dixon, who heads up the team of medics who will be responsible for Charles and Kate's recovery, has previously been the subject of discussion for his support of homeopathy.", + "contentSnippet": "Dr Michael Dixon, who heads up the team of medics who will be responsible for Charles and Kate's recovery, has previously been the subject of discussion for his support of homeopathy.", + "guid": "https://www.dailymail.co.uk/news/article-12977297/Who-Dr-Michael-Dixon-royal-doctor-King-Charles-Princess-Wales-operations.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:57:41.000Z" + }, + { + "title": "Burglar who carried out \u00a326m raid on homes of celebrities including Tamara Ecclestone and Frank Lampard is freed from prison just two years into his eight-year sentence", + "link": "https://www.dailymail.co.uk/news/article-12973121/Italian-burglar-carried-26m-raid-homes-celebrities-including-Tamara-Ecclestone-Frank-Lampard-released-prison-just-two-years-eight-year-sentence-member-gang-set-freed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:56:13 GMT", + "enclosure": { + "length": "3816", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/10/80122903-0-image-m-42_1705487105007.jpg" + }, + "content": "EXCLUSIVE: Alessandro Donati, 46, was given an eight-year sentence in November 2021 along with Alessandro Maltese, 47, while Jugoslav Jovanovic, 26, got 11 years.", + "contentSnippet": "EXCLUSIVE: Alessandro Donati, 46, was given an eight-year sentence in November 2021 along with Alessandro Maltese, 47, while Jugoslav Jovanovic, 26, got 11 years.", + "guid": "https://www.dailymail.co.uk/news/article-12973121/Italian-burglar-carried-26m-raid-homes-celebrities-including-Tamara-Ecclestone-Frank-Lampard-released-prison-just-two-years-eight-year-sentence-member-gang-set-freed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:56:13.000Z" + }, + { + "title": "RICHARD KAY: The double blow of King Charles and our future Queen Kate's medical treatment leaves the nation reeling... it sends a shiver down our spines and shows how threadbare royal resources are", + "link": "https://www.dailymail.co.uk/debate/article-12976113/RICHARD-KAY-double-blow-King-Charles-Princess-Kates-medical-treatment-send-collective-shiver-spines.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:52:07 GMT", + "enclosure": { + "length": "10529", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/22/80152443-0-image-a-29_1705531588587.jpg" + }, + "content": "RICHARD KAY: After the sadness of the late Queen's slow decline and death, the bulletin about Catherine has sent a collective shiver down the spine of royal fans. People are reeling.", + "contentSnippet": "RICHARD KAY: After the sadness of the late Queen's slow decline and death, the bulletin about Catherine has sent a collective shiver down the spine of royal fans. People are reeling.", + "guid": "https://www.dailymail.co.uk/debate/article-12976113/RICHARD-KAY-double-blow-King-Charles-Princess-Kates-medical-treatment-send-collective-shiver-spines.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:52:07.000Z" + }, + { + "title": "Fury over pothole-ridden 'tank track' which ambulances and bin lorries refuse to use: Homeowners are told THEY have to fund \u00a3500,000 repairs in stand-off with group which doesn't regard it as a proper street", + "link": "https://www.dailymail.co.uk/news/article-12973333/Fury-pothole-ridden-tank-track-ambulances-bin-lorries-refuse-use-Homeowners-told-fund-500-000-repairs-stand-group-doesnt-regard-proper-street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:51:04 GMT", + "enclosure": { + "length": "8352", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/12/80126585-0-image-a-45_1705495891998.jpg" + }, + "content": "Renters and homeowners on the nightmare road in Mitcham, southeast London, say the stretch is in such bad condition they're forced to fork out thousands to repair their cars.", + "contentSnippet": "Renters and homeowners on the nightmare road in Mitcham, southeast London, say the stretch is in such bad condition they're forced to fork out thousands to repair their cars.", + "guid": "https://www.dailymail.co.uk/news/article-12973333/Fury-pothole-ridden-tank-track-ambulances-bin-lorries-refuse-use-Homeowners-told-fund-500-000-repairs-stand-group-doesnt-regard-proper-street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:51:04.000Z" + }, + { + "title": "I was given \u00a32,000 for spotting a derelict property that could be transformed into a family home - it's paid for my holiday to Barbados", + "link": "https://www.dailymail.co.uk/news/article-12970005/paid-flagging-derelict-property-family-home-barbados-trip.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:45:49 GMT", + "enclosure": { + "length": "6196", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/07/80118695-0-image-m-15_1705478234651.jpg" + }, + "content": "Riyan Springer, 30, of Reading, Berkshire, was rewarded more than \u00a32,000 for reporting an empty house, which she has used to pay for a winter holiday to Barbados.", + "contentSnippet": "Riyan Springer, 30, of Reading, Berkshire, was rewarded more than \u00a32,000 for reporting an empty house, which she has used to pay for a winter holiday to Barbados.", + "guid": "https://www.dailymail.co.uk/news/article-12970005/paid-flagging-derelict-property-family-home-barbados-trip.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:45:49.000Z" + }, + { + "title": "How to turn \u00a3100 into \u00a3225 with your work pension: SIMON LAMBERT on the retirement saving trick", + "link": "https://www.dailymail.co.uk/money/pensions/article-12975193/How-turn-100-225-work-pension-SIMON-LAMBERT-retirement-saving-trick.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:40:16 GMT", + "enclosure": { + "length": "4407", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/18/80142295-0-image-m-6_1705514875734.jpg" + }, + "content": "If I told you that if you gave me \u00a3100, I would turn it into \u00a3225 immediately would that sound like a good deal?", + "contentSnippet": "If I told you that if you gave me \u00a3100, I would turn it into \u00a3225 immediately would that sound like a good deal?", + "guid": "https://www.dailymail.co.uk/money/pensions/article-12975193/How-turn-100-225-work-pension-SIMON-LAMBERT-retirement-saving-trick.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:40:16.000Z" + }, + { + "title": "TANYA GOLD: I lost a decade to drugs, sex and alcohol - convinced I was unlovable. It's a miracle I've got to 50", + "link": "https://www.dailymail.co.uk/femail/article-12975077/TANYA-GOLD-lost-decade-drugs-alcohol-convinced-unlovable-miracle-Ive-got-50.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:36:15 GMT", + "enclosure": { + "length": "11035", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/19/80145275-0-image-a-38_1705520754679.jpg" + }, + "content": "Fifty. It felt like a good time to look back, since I'm finally in a place where I'm not scared to do so. I feel ready to take stock. So, what are my thoughts on half a century?", + "contentSnippet": "Fifty. It felt like a good time to look back, since I'm finally in a place where I'm not scared to do so. I feel ready to take stock. So, what are my thoughts on half a century?", + "guid": "https://www.dailymail.co.uk/femail/article-12975077/TANYA-GOLD-lost-decade-drugs-alcohol-convinced-unlovable-miracle-Ive-got-50.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:36:15.000Z" + }, + { + "title": "US drops more bombs on Yemen as it launches airstrikes on 14 Iran-backed Houthi terrorist missile launchers that were loaded and pinned on Navy ships", + "link": "https://www.dailymail.co.uk/news/article-12977237/US-drops-bombs-Yemen-launches-airstrikes-14-Iran-backed-Houthi-terrorist-missile-launchers-loaded-pinned-Navy-ships.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:32:47 GMT", + "enclosure": { + "length": "9253", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/06/80163369-0-image-a-51_1705559485501.jpg" + }, + "content": "U.S. Central Command on Wednesday confirmed they had launched air strikes against 14 Houthi missile launchers, which were ready to fire towards the Red Sea.", + "contentSnippet": "U.S. Central Command on Wednesday confirmed they had launched air strikes against 14 Houthi missile launchers, which were ready to fire towards the Red Sea.", + "guid": "https://www.dailymail.co.uk/news/article-12977237/US-drops-bombs-Yemen-launches-airstrikes-14-Iran-backed-Houthi-terrorist-missile-launchers-loaded-pinned-Navy-ships.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:32:47.000Z" + }, + { + "title": "Middle East tinderbox threatens to explode as Pakistan air force launches airstrikes on Iran at 'militant targets' it says are behind missiles that killed two children", + "link": "https://www.dailymail.co.uk/news/article-12977223/Pakistan-launches-airstrike-Iran.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:28:53 GMT", + "enclosure": { + "length": "7762", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/06/80163773-0-image-a-181_1705561115525.jpg" + }, + "content": "The air attacks in Sistan and Baluchestan province Thursday, in turn,\u00a0killed at least seven - and threaten to further enflame tensions between the two nations.", + "contentSnippet": "The air attacks in Sistan and Baluchestan province Thursday, in turn,\u00a0killed at least seven - and threaten to further enflame tensions between the two nations.", + "guid": "https://www.dailymail.co.uk/news/article-12977223/Pakistan-launches-airstrike-Iran.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:28:53.000Z" + }, + { + "title": "Meta presentation 'claimed 100,000 children who use Facebook and Instagram are sent photos of adults genitals or other sex abuse material EVERY DAY - with \"people you may know\" feature helping connect predators to youngsters'", + "link": "https://www.dailymail.co.uk/news/article-12977157/Meta-Instagram-Facebook-predators.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:25:08 GMT", + "enclosure": { + "length": "9410", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/05/80162245-0-image-a-35_1705555377194.jpg" + }, + "content": "In the documents, seen by the Wall Street Journal , Meta employees noted that one of its recommended algorithms had been connecting child users with potential predators.", + "contentSnippet": "In the documents, seen by the Wall Street Journal , Meta employees noted that one of its recommended algorithms had been connecting child users with potential predators.", + "guid": "https://www.dailymail.co.uk/news/article-12977157/Meta-Instagram-Facebook-predators.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:25:08.000Z" + }, + { + "title": "'Eye-watering differences': Train station ticket machines can charge up to 154% more than booking online, Which? mystery shopper study discovers", + "link": "https://www.dailymail.co.uk/travel/article-12970131/Train-station-machines-charge-double-price-booking-online-Which.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:12:48 GMT", + "enclosure": { + "length": "8490", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/10/80121409-0-image-a-8_1705485714861.jpg" + }, + "content": "Which? sent mystery shoppers to 15 stations and checked the price of 75 journeys from a ticket machine against the price available from the UK's biggest ticket site,Trainline .", + "contentSnippet": "Which? sent mystery shoppers to 15 stations and checked the price of 75 journeys from a ticket machine against the price available from the UK's biggest ticket site,Trainline .", + "guid": "https://www.dailymail.co.uk/travel/article-12970131/Train-station-machines-charge-double-price-booking-online-Which.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:12:48.000Z" + }, + { + "title": "Calum Best breaks his silence as he is cleared of sexually assaulting British tourist at Wayne Lineker's Ibiza club after CCTV 'did not support woman's claim'", + "link": "https://www.dailymail.co.uk/news/article-12977453/Calum-Best-says-truth-prevails-cleared-sexually-assaulting-British-tourist-Wayne-Linekers-Ibiza-club-CCTV-did-not-support-womans-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 08:03:53 GMT", + "enclosure": { + "length": "10436", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/07/80164817-0-image-a-19_1705564540783.jpg" + }, + "content": "The 42-year-old son of late footballer George Best was told yesterday he had been acquitted after a one-day trial just over a week ago at a court in Majorca.", + "contentSnippet": "The 42-year-old son of late footballer George Best was told yesterday he had been acquitted after a one-day trial just over a week ago at a court in Majorca.", + "guid": "https://www.dailymail.co.uk/news/article-12977453/Calum-Best-says-truth-prevails-cleared-sexually-assaulting-British-tourist-Wayne-Linekers-Ibiza-club-CCTV-did-not-support-womans-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T08:03:53.000Z" + }, + { + "title": "Alan Cook oversaw the prosecution of innocent postmasters, rolled out smart motorways, and tried to sell LV to US private equity predators... So how DID he get away with it?", + "link": "https://www.dailymail.co.uk/news/article-12976455/Alan-Cook-oversaw-prosecution-innocent-postmasters-rolled-smart-motorways-tried-sell-LV-private-equity-predators-DID-away-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 07:52:31 GMT", + "enclosure": { + "length": "8295", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80156227-0-image-m-44_1705540800546.jpg" + }, + "content": "Alan Cook was managing director of the Post Office between 2006 and 2010 when the private prosecution of hundreds of innocent postmasters over a glitch in the Horizon IT system began", + "contentSnippet": "Alan Cook was managing director of the Post Office between 2006 and 2010 when the private prosecution of hundreds of innocent postmasters over a glitch in the Horizon IT system began", + "guid": "https://www.dailymail.co.uk/news/article-12976455/Alan-Cook-oversaw-prosecution-innocent-postmasters-rolled-smart-motorways-tried-sell-LV-private-equity-predators-DID-away-it.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T07:52:31.000Z" + }, + { + "title": "Former Jeremy Kyle guest\u00a0 Audrey Chawner dies 'peacefully in her sleep' aged 73 as her X Factor star daughter Emma pays tribute: 'She loved her animals and loved a good laugh'", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12976319/Jeremy-Kyle-Audrey-Chawner-dies-X-Factor-Emma-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 07:39:10 GMT", + "enclosure": { + "length": "9523", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/00/80155883-0-image-m-88_1705537689407.jpg" + }, + "content": "Emma confirmed the devastating news that her mother had 'passed peacefully in her sleep' in an Instagram post shared on Tuesday.", + "contentSnippet": "Emma confirmed the devastating news that her mother had 'passed peacefully in her sleep' in an Instagram post shared on Tuesday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12976319/Jeremy-Kyle-Audrey-Chawner-dies-X-Factor-Emma-tribute.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T07:39:10.000Z" + }, + { + "title": "JENNI MURRAY:\u00a0If only there'd been measles jabs when I was little, my friend would still be alive", + "link": "https://www.dailymail.co.uk/femail/article-12975221/JENNI-MURRAY-thered-measles-jabs-little-friend-alive.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 07:16:02 GMT", + "enclosure": { + "length": "9399", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/20/80146785-0-image-a-61_1705523482001.jpg" + }, + "content": "Perhaps it's just my generation that rushed its babies to be vaccinated against measles. It's a parental habit that appears to have diminished and now there's a terrifying rise in cases.", + "contentSnippet": "Perhaps it's just my generation that rushed its babies to be vaccinated against measles. It's a parental habit that appears to have diminished and now there's a terrifying rise in cases.", + "guid": "https://www.dailymail.co.uk/femail/article-12975221/JENNI-MURRAY-thered-measles-jabs-little-friend-alive.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T07:16:02.000Z" + }, + { + "title": "PETER HITCHENS: Your starter for 10 - why has University Challenge become a festival of political correctness? (With questions almost no one can possibly answer)", + "link": "https://www.dailymail.co.uk/debate/article-12975439/PETER-HITCHENS-starter-10-University-Challenge-festival-political-correctness-questions-no-one-possibly-answer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 07:14:04 GMT", + "enclosure": { + "length": "11975", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/20/80147013-0-image-a-13_1705524816972.jpg" + }, + "content": "Our quiz shows are important. But the transformation of the popular but difficult University Challenge into a festival of political correctness is a scandal.", + "contentSnippet": "Our quiz shows are important. But the transformation of the popular but difficult University Challenge into a festival of political correctness is a scandal.", + "guid": "https://www.dailymail.co.uk/debate/article-12975439/PETER-HITCHENS-starter-10-University-Challenge-festival-political-correctness-questions-no-one-possibly-answer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T07:14:04.000Z" + }, + { + "title": "STEPHEN GLOVER: You don't have to be a saint to head up the Church of England, William", + "link": "https://www.dailymail.co.uk/debate/article-12975469/STEPHEN-GLOVER-dont-saint-head-Church-England-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 07:12:49 GMT", + "enclosure": { + "length": "7455", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/21/80149059-0-image-a-17_1705527098650.jpg" + }, + "content": "Could Prince William be the first monarch in nearly five centuries not to become head of the Church of England when he succeeds to the throne?", + "contentSnippet": "Could Prince William be the first monarch in nearly five centuries not to become head of the Church of England when he succeeds to the throne?", + "guid": "https://www.dailymail.co.uk/debate/article-12975469/STEPHEN-GLOVER-dont-saint-head-Church-England-William.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T07:12:49.000Z" + }, + { + "title": "Two adults and teen are fatally-electrocuted by power line that fell on their car and set one of them on FIRE: Toddler also in SUV was pulled safe from dead body's arms", + "link": "https://www.dailymail.co.uk/news/article-12976419/Two-adults-teen-electrocuted-Portland-power-line.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 06:55:23 GMT", + "enclosure": { + "length": "10333", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80156989-0-image-a-47_1705539997352.jpg" + }, + "content": "The incident occurred on an intersection in the Russel Neighborhood of the city around 11:45am Wednesday - when 911 calls suddenly came in about a person set ablaze.", + "contentSnippet": "The incident occurred on an intersection in the Russel Neighborhood of the city around 11:45am Wednesday - when 911 calls suddenly came in about a person set ablaze.", + "guid": "https://www.dailymail.co.uk/news/article-12976419/Two-adults-teen-electrocuted-Portland-power-line.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T06:55:23.000Z" + }, + { + "title": "Do mortgages have an age limit? I'm 65 and rent but just got an inheritance: DAVID HOLLINGWORTH replies", + "link": "https://www.dailymail.co.uk/money/mortgageshome/article-12968415/Do-mortgages-age-limit-Im-65-rent-just-got-inheritance-DAVID-HOLLINGWORTH-replies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 06:00:58 GMT", + "enclosure": { + "length": "6080", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/16/10/73809425-0-image-m-13_1705399197839.jpg" + }, + "content": "I have received enough money to put an \u00a385,000 deposit down on a \u00a3120,000 home. As I am nearing retirement, what is the chance of getting a mortgage for the rest?", + "contentSnippet": "I have received enough money to put an \u00a385,000 deposit down on a \u00a3120,000 home. As I am nearing retirement, what is the chance of getting a mortgage for the rest?", + "guid": "https://www.dailymail.co.uk/money/mortgageshome/article-12968415/Do-mortgages-age-limit-Im-65-rent-just-got-inheritance-DAVID-HOLLINGWORTH-replies.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T06:00:58.000Z" + }, + { + "title": "How will the latest rise in inflation impact house prices?", + "link": "https://www.dailymail.co.uk/property/article-12974483/How-latest-rise-inflation-impact-house-prices.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 06:00:55 GMT", + "enclosure": { + "length": "10266", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/16/80137955-0-image-a-18_1705508413155.jpg" + }, + "content": "Property insiders predicted that it is likely to be a 'bumpy ride' ahead for the property market following the latest inflation figures.", + "contentSnippet": "Property insiders predicted that it is likely to be a 'bumpy ride' ahead for the property market following the latest inflation figures.", + "guid": "https://www.dailymail.co.uk/property/article-12974483/How-latest-rise-inflation-impact-house-prices.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T06:00:55.000Z" + }, + { + "title": "Will I lose pension tax relief at 75 - even though I still work and pay tax?", + "link": "https://www.dailymail.co.uk/money/pensions/article-12970285/Will-lose-pension-tax-relief-75-work-pay-tax.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 06:00:46 GMT", + "enclosure": { + "length": "4884", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/16/17/80076671-0-image-a-34_1705426285535.jpg" + }, + "content": "Should I put the maximum lump sum I can afford into my pension before the deadline to get the tax relief?", + "contentSnippet": "Should I put the maximum lump sum I can afford into my pension before the deadline to get the tax relief?", + "guid": "https://www.dailymail.co.uk/money/pensions/article-12970285/Will-lose-pension-tax-relief-75-work-pay-tax.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T06:00:46.000Z" + }, + { + "title": "British Army officer crushed to death by armoured troop carrier with broken safety alarm that had not been fixed for years, investigation concludes", + "link": "https://www.dailymail.co.uk/news/article-12976441/British-Army-officer-crushed-death-armoured-troop-carrier.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 01:57:47 GMT", + "enclosure": { + "length": "5723", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80157161-0-image-m-102_1705542076260.jpg" + }, + "content": "Second Lieutenant Max George died from head injuries after being hit by the Warrior army vehicle on Salisbury Plain, Wiltshire, in 2022.", + "contentSnippet": "Second Lieutenant Max George died from head injuries after being hit by the Warrior army vehicle on Salisbury Plain, Wiltshire, in 2022.", + "guid": "https://www.dailymail.co.uk/news/article-12976441/British-Army-officer-crushed-death-armoured-troop-carrier.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T01:57:47.000Z" + }, + { + "title": "Revealed at last: How to pronounce 'scone' (so you'll just have to fight over the jam and cream now)", + "link": "https://www.dailymail.co.uk/news/article-12976431/pronounce-scone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 01:27:04 GMT", + "enclosure": { + "length": "6030", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80156259-0-image-m-144_1705540017712.jpg" + }, + "content": "Wordsmith Susie Dent, known for her appearances on the Channel 4 show Countdown, has attempted to solve the answer.", + "contentSnippet": "Wordsmith Susie Dent, known for her appearances on the Channel 4 show Countdown, has attempted to solve the answer.", + "guid": "https://www.dailymail.co.uk/news/article-12976431/pronounce-scone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T01:27:04.000Z" + }, + { + "title": "Kate Middleton is among the millions flocking to read MailOnline: New book reveals Princess of Wales likes to keep tabs on royal stories in the press like Queen Camilla (unlike William or King Charles who aren't as keen)", + "link": "https://www.dailymail.co.uk/news/article-12975945/kate-middleton-reads-mailonlione-queen-camilla-prince-william.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 01:18:40 GMT", + "enclosure": { + "length": "9663", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/23/80153127-0-image-a-5_1705532783365.jpg" + }, + "content": "Catherine is said to be among the tens of millions who get their updates from the Mail's award-winning news service, according to a new book from renowned royal author Robert Hardman.", + "contentSnippet": "Catherine is said to be among the tens of millions who get their updates from the Mail's award-winning news service, according to a new book from renowned royal author Robert Hardman.", + "guid": "https://www.dailymail.co.uk/news/article-12975945/kate-middleton-reads-mailonlione-queen-camilla-prince-william.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T01:18:40.000Z" + }, + { + "title": "King Charles wants to make Buckingham Palace 'the People's Palace', Martin Bashir makes Prince William's 'blood boil' and Kate is a fan of MailOnline! The revelations from Robert Hardman's new book", + "link": "https://www.dailymail.co.uk/news/article-12976131/King-Charles-wants-make-Buckingham-Palace-Peoples-Palace-Martin-Bashir-makes-Prince-Williams-blood-boil-Kate-fan-MailOnline-revelations-Robert-Hardmans-new-book.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 01:09:58 GMT", + "enclosure": { + "length": "9713", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/01/80157045-0-image-a-11_1705540194528.jpg" + }, + "content": "The King has embarked on his vision to modernise the Royal Family including making Buckingham Palace 'the People's Palace', a new book reveals.", + "contentSnippet": "The King has embarked on his vision to modernise the Royal Family including making Buckingham Palace 'the People's Palace', a new book reveals.", + "guid": "https://www.dailymail.co.uk/news/article-12976131/King-Charles-wants-make-Buckingham-Palace-Peoples-Palace-Martin-Bashir-makes-Prince-Williams-blood-boil-Kate-fan-MailOnline-revelations-Robert-Hardmans-new-book.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T01:09:58.000Z" + }, + { + "title": "Rachel Reeves hints she could cut taxes for the highest earners if Labour wins the next election", + "link": "https://www.dailymail.co.uk/news/article-12976389/Rachel-Reeves-cut-taxes-highest-earners-Labour-wins-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 01:02:34 GMT", + "enclosure": { + "length": "8901", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/18/00/80155749-0-image-m-96_1705536748116.jpg" + }, + "content": "Shadow Chancellor Rachel Reeves has hinted that she could cut taxes even for the highest earners if Labour wins the general election.", + "contentSnippet": "Shadow Chancellor Rachel Reeves has hinted that she could cut taxes even for the highest earners if Labour wins the general election.", + "guid": "https://www.dailymail.co.uk/news/article-12976389/Rachel-Reeves-cut-taxes-highest-earners-Labour-wins-election.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T01:02:34.000Z" + }, + { + "title": "Finders Keepers review: All treasure, no tat... those Anglo-Saxon hoarders had the right idea! writes CHRISTOPHER STEVENS", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12975725/Finders-Keepers-review-treasure-no-tat-Anglo-Saxon-hoarders-right-idea-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 00:53:44 GMT", + "enclosure": { + "length": "6722", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/21/80147785-0-image-m-22_1705525517823.jpg" + }, + "content": "CHRISTOPHER STEVENS: Back in the Dark Ages, hoarding was an art. Our ancestors had only rudimentary tools, but Anglo-Saxon hoarders did hang on to the richest gems.", + "contentSnippet": "CHRISTOPHER STEVENS: Back in the Dark Ages, hoarding was an art. Our ancestors had only rudimentary tools, but Anglo-Saxon hoarders did hang on to the richest gems.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12975725/Finders-Keepers-review-treasure-no-tat-Anglo-Saxon-hoarders-right-idea-writes-CHRISTOPHER-STEVENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T00:53:44.000Z" + }, + { + "title": "Organisers of the King's coronation came under 'strong pressure' from the BBC to let them film Charles's anointing", + "link": "https://www.dailymail.co.uk/news/article-12976135/Organisers-Kings-coronation-came-strong-pressure-BBC-let-film-Charless-anointing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 00:14:41 GMT", + "enclosure": { + "length": "13242", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/23/80154409-0-image-a-10_1705534710865.jpg" + }, + "content": "Coronation organisers came under 'pressure' to allow filming of the intimate moment King Charles was anointed with oil, according to a new book.", + "contentSnippet": "Coronation organisers came under 'pressure' to allow filming of the intimate moment King Charles was anointed with oil, according to a new book.", + "guid": "https://www.dailymail.co.uk/news/article-12976135/Organisers-Kings-coronation-came-strong-pressure-BBC-let-film-Charless-anointing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T00:14:41.000Z" + }, + { + "title": "Prince William was left 'frantic' by the Lady Susan Hussey race storm with Kensington Palace fearing it could 'derail' his official visit to Boston", + "link": "https://www.dailymail.co.uk/news/article-12976141/Prince-William-left-frantic-Lady-Susan-Hussey-race-storm-Kensington-Palace-fearing-derail-official-visit-Boston.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 18 Jan 2024 00:00:21 GMT", + "enclosure": { + "length": "9938", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/22/80152591-0-image-a-36_1705531811863.jpg" + }, + "content": "Kensington Palace feared that Prince William's official visit to Boston would be 'derailed' by the race storm over Lady Susan Hussey.", + "contentSnippet": "Kensington Palace feared that Prince William's official visit to Boston would be 'derailed' by the race storm over Lady Susan Hussey.", + "guid": "https://www.dailymail.co.uk/news/article-12976141/Prince-William-left-frantic-Lady-Susan-Hussey-race-storm-Kensington-Palace-fearing-derail-official-visit-Boston.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-18T00:00:21.000Z" + }, + { + "title": "This is the grim reason why Gen Z thinks this woman looks 'old' and 'haggard'", + "link": "https://www.dailymail.co.uk/femail/beauty/article-12972221/This-grim-reason-Gen-Z-thinks-woman-looks-old-haggard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 17 Jan 2024 22:21:29 GMT", + "enclosure": { + "length": "9190", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/05/80116249-0-image-a-46_1705470920686.jpg" + }, + "content": "Courtney Ball, who lives in Hawaii , recently shared a close-up video of her face pointing out the natural texture of her skin.", + "contentSnippet": "Courtney Ball, who lives in Hawaii , recently shared a close-up video of her face pointing out the natural texture of her skin.", + "guid": "https://www.dailymail.co.uk/femail/beauty/article-12972221/This-grim-reason-Gen-Z-thinks-woman-looks-old-haggard.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-17T22:21:29.000Z" + }, + { + "title": "Heartwarming moment adorable calf Wynonna is rescued from frozen Tennessee pond", + "link": "https://www.dailymail.co.uk/news/article-12975385/calf-wynonna-rescued-frozen-Tennessee-pond.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 17 Jan 2024 22:05:47 GMT", + "enclosure": { + "length": "10255", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/20/80145867-0-image-a-1_1705521850858.jpg" + }, + "content": "A Smokin' F BBQ & Feedlot employee in Philadelphia, Tennessee , made one incredible save on January 16.", + "contentSnippet": "A Smokin' F BBQ & Feedlot employee in Philadelphia, Tennessee , made one incredible save on January 16.", + "guid": "https://www.dailymail.co.uk/news/article-12975385/calf-wynonna-rescued-frozen-Tennessee-pond.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-17T22:05:47.000Z" + }, + { + "title": "Couple's therapist reveals the three little-known signs your relationship is doomed", + "link": "https://www.dailymail.co.uk/wellness-us/article-12975517/couples-therapist-three-signs-relationship-doomed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 17 Jan 2024 21:59:49 GMT", + "enclosure": { + "length": "10944", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/21/80150195-0-image-a-18_1705528525377.jpg" + }, + "content": "A professor of counselling from Northern Illinois University has revealed three red-flags to be aware of - including conveniently forgetting to text your partner back.", + "contentSnippet": "A professor of counselling from Northern Illinois University has revealed three red-flags to be aware of - including conveniently forgetting to text your partner back.", + "guid": "https://www.dailymail.co.uk/wellness-us/article-12975517/couples-therapist-three-signs-relationship-doomed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-17T21:59:49.000Z" + }, + { + "title": "Beauty guru reveals her top five tips to make your perfume last LONGER - including why you should NEVER rub your wrists together", + "link": "https://www.dailymail.co.uk/femail/article-12957911/beauty-guru-make-perfume-scent-longer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 17 Jan 2024 21:49:37 GMT", + "enclosure": { + "length": "10500", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/16/20/80097913-0-image-a-115_1705435315821.jpg" + }, + "content": "The tricks were shared on TikTok this month by Los Angeles-based content creator Ashley Paige, who often posts videos about beauty, fashion and lifestyle on her social media channels.", + "contentSnippet": "The tricks were shared on TikTok this month by Los Angeles-based content creator Ashley Paige, who often posts videos about beauty, fashion and lifestyle on her social media channels.", + "guid": "https://www.dailymail.co.uk/femail/article-12957911/beauty-guru-make-perfume-scent-longer.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-17T21:49:37.000Z" + }, + { + "title": "Miniature Grade II listed castle goes on the market for \u00a3120,000, complete with its own tiny turret", + "link": "https://www.dailymail.co.uk/property/article-12973787/Miniature-listed-castle-tiny-turret-auction-Dover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 17 Jan 2024 17:22:28 GMT", + "enclosure": { + "length": "7251", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/14/80130127-0-image-m-38_1705500319639.jpg" + }, + "content": "The unusual one-bedroom property in Dover, Kent dates back to the 19th century and is set to go to auction on January 31. It boasts an ensuite bathroom, a four-poster bed and a large fireplace.", + "contentSnippet": "The unusual one-bedroom property in Dover, Kent dates back to the 19th century and is set to go to auction on January 31. It boasts an ensuite bathroom, a four-poster bed and a large fireplace.", + "guid": "https://www.dailymail.co.uk/property/article-12973787/Miniature-listed-castle-tiny-turret-auction-Dover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-17T17:22:28.000Z" + }, + { + "title": "The best next president? Here's MY verdict! JUDGE JUDY delivers a no-nonsense (and VERY surprising) ruling on the White House race", + "link": "https://www.dailymail.co.uk/news/article-12974235/JUDGE-JUDY-verdict-president-endorses-nikki-haley.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 17 Jan 2024 16:37:50 GMT", + "enclosure": { + "length": "12220", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/17/15/80134841-0-image-m-27_1705504739469.jpg" + }, + "content": "I've seen a lot of politicians come and go during my life, and I am not someone who suffers fools. It takes a lot for me to support any one candidate so strongly...", + "contentSnippet": "I've seen a lot of politicians come and go during my life, and I am not someone who suffers fools. It takes a lot for me to support any one candidate so strongly...", + "guid": "https://www.dailymail.co.uk/news/article-12974235/JUDGE-JUDY-verdict-president-endorses-nikki-haley.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-17T16:37:50.000Z" + }, + { + "title": "Roald Dahl books illustrator Quentin Blake's 600-year-old Medieval home goes on the market for \u00a3950,000, complete with preserved original features", + "link": "https://www.dailymail.co.uk/property/article-12969241/Roald-Dahl-books-illustrator-Quentin-Blakes-Medieval-home-market-original-features.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 17 Jan 2024 12:20:42 GMT", + "enclosure": { + "length": "11165", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/16/17/80085015-0-image-a-526_1705425348292.jpg" + }, + "content": "The Grade II Listed Medieval home on All Saints Street in Hastings offers\u00a0five-bedroom, two bathrooms, flexible spaces for working from home and a good-sized, well stocked garden.", + "contentSnippet": "The Grade II Listed Medieval home on All Saints Street in Hastings offers\u00a0five-bedroom, two bathrooms, flexible spaces for working from home and a good-sized, well stocked garden.", + "guid": "https://www.dailymail.co.uk/property/article-12969241/Roald-Dahl-books-illustrator-Quentin-Blakes-Medieval-home-market-original-features.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-17T12:20:42.000Z" + }, + { + "title": "Number of homeowners renting a room jumps 89%... as average lodger now pays \u00a3739 a month", + "link": "https://www.dailymail.co.uk/property/article-12968619/Number-homeowners-renting-room-jumps-89-average-lodger-pays-739-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 17 Jan 2024 06:00:49 GMT", + "enclosure": { + "length": "9546", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/16/14/80083979-0-image-a-6_1705414312667.jpg" + }, + "content": "Flatshare site SpareRoom said people were looking for ways to make extra money to afford to stay in their homes.", + "contentSnippet": "Flatshare site SpareRoom said people were looking for ways to make extra money to afford to stay in their homes.", + "guid": "https://www.dailymail.co.uk/property/article-12968619/Number-homeowners-renting-room-jumps-89-average-lodger-pays-739-month.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-17T06:00:49.000Z" + }, + { + "title": "Why 2024 will be all about MIA MCKENNA BRUCE: The How To Have Sex star who's had her first baby at age 26, a marriage proposal and a hit film - all in less than a year", + "link": "https://www.dailymail.co.uk/home/you/article-12938649/Why-2024-MIA-MCKENNA-BRUCE-Sex-star-whos-baby-age-26-marriage-proposal-hit-film-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 16 Jan 2024 16:51:31 GMT", + "enclosure": { + "length": "7844", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/16/16/80091851-0-image-m-137_1705423850889.jpg" + }, + "content": "A hit film. A new baby. A marriage proposal. Prestigious awards\u2026 And all in less than a year.", + "contentSnippet": "A hit film. A new baby. A marriage proposal. Prestigious awards\u2026 And all in less than a year.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938649/Why-2024-MIA-MCKENNA-BRUCE-Sex-star-whos-baby-age-26-marriage-proposal-hit-film-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-16T16:51:31.000Z" + }, + { + "title": "Row of garages are for sale at auction - would they get planning permission for a house?", + "link": "https://www.dailymail.co.uk/property/article-12964487/Row-garages-sale-auction-planning-permission-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 16 Jan 2024 06:00:55 GMT", + "enclosure": { + "length": "9639", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/15/13/80030139-0-image-a-22_1705325053558.jpg" + }, + "content": "A row of garages are for sale at auction, how likely is it that I would get planning permission for a house?", + "contentSnippet": "A row of garages are for sale at auction, how likely is it that I would get planning permission for a house?", + "guid": "https://www.dailymail.co.uk/property/article-12964487/Row-garages-sale-auction-planning-permission-house.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-16T06:00:55.000Z" + }, + { + "title": "'You couldn't pay me to live in that!' Home buyers slam tiny one-bedroom flat with NO carpets on sale in affluent London neighbourhood for \u00a3220,000", + "link": "https://www.dailymail.co.uk/property/article-12965565/Home-buyers-slam-tiny-one-bedroom-flat-NO-carpets-sale-affluent-London-neighbourhood.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 15 Jan 2024 19:11:53 GMT", + "enclosure": { + "length": "5462", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/15/17/80040999-0-image-a-8_1705338875819.jpg" + }, + "content": "The grotty flat was spotted by a house-hunter who was left thoroughly unimpressed by the value for money of the property in the Churchill Gardens housing estate in Westminster.", + "contentSnippet": "The grotty flat was spotted by a house-hunter who was left thoroughly unimpressed by the value for money of the property in the Churchill Gardens housing estate in Westminster.", + "guid": "https://www.dailymail.co.uk/property/article-12965565/Home-buyers-slam-tiny-one-bedroom-flat-NO-carpets-sale-affluent-London-neighbourhood.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-15T19:11:53.000Z" + }, + { + "title": "Small place, big ideas: KATE WATSON-SMYTH on how to be mad about your home", + "link": "https://www.dailymail.co.uk/home/you/article-12939135/Small-place-big-ideas-KATE-WATSON-SMITH-mad-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 15 Jan 2024 10:51:05 GMT", + "enclosure": { + "length": "8848", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79796261-0-image-m-503_1704808181105.jpg" + }, + "content": "How do you turn a narrow terrace house into a cosy family home?", + "contentSnippet": "How do you turn a narrow terrace house into a cosy family home?", + "guid": "https://www.dailymail.co.uk/home/you/article-12939135/Small-place-big-ideas-KATE-WATSON-SMITH-mad-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-15T10:51:05.000Z" + }, + { + "title": "THE GREEN GUIDE: Pendant light, \u00a399", + "link": "https://www.dailymail.co.uk/home/you/article-12938501/THE-GREEN-GUIDE-Pendant-light-99.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 15 Jan 2024 10:06:13 GMT", + "enclosure": { + "length": "2343", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/14/79799547-0-image-m-14_1704811310558.jpg" + }, + "content": "Pendant light, \u00a399, houseof.com", + "contentSnippet": "Pendant light, \u00a399, houseof.com", + "guid": "https://www.dailymail.co.uk/home/you/article-12938501/THE-GREEN-GUIDE-Pendant-light-99.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-15T10:06:13.000Z" + }, + { + "title": "Landlords rush to incorporate their buy-to-lets to help 'shelter' from higher interest rates", + "link": "https://www.dailymail.co.uk/property/article-12955905/Landlords-rush-incorporate-buy-lets-help-shelter-higher-rates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 15 Jan 2024 00:01:46 GMT", + "enclosure": { + "length": "7923", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/12/13/79936541-0-image-a-17_1705066428086.jpg" + }, + "content": "New figures from Hamptons found that a record 50,004 limited buy-to-let companies were set up across Britain in 2023, surpassing 2022's previous record of 48,540 by 3 per cent.", + "contentSnippet": "New figures from Hamptons found that a record 50,004 limited buy-to-let companies were set up across Britain in 2023, surpassing 2022's previous record of 48,540 by 3 per cent.", + "guid": "https://www.dailymail.co.uk/property/article-12955905/Landlords-rush-incorporate-buy-lets-help-shelter-higher-rates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-15T00:01:46.000Z" + }, + { + "title": "ACTION PLAN: CIAR BYRNE's essential jobs for your garden this week", + "link": "https://www.dailymail.co.uk/home/gardening/article-12962221/CIAR-BYRNE-action-plan-essential-jobs-garden.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 14 Jan 2024 21:22:09 GMT", + "enclosure": { + "length": "8787", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/14/17/79999375-0-image-m-2_1705255064860.jpg" + }, + "content": "January is the perfect month for planning what you are going to grow in the garden for the rest of the year. UK gardening expert CIAR BYRNE explains how to make the most of it.", + "contentSnippet": "January is the perfect month for planning what you are going to grow in the garden for the rest of the year. UK gardening expert CIAR BYRNE explains how to make the most of it.", + "guid": "https://www.dailymail.co.uk/home/gardening/article-12962221/CIAR-BYRNE-action-plan-essential-jobs-garden.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-14T21:22:09.000Z" + }, + { + "title": "Solar panels, heat pumps and bat boxes - retirement residents are now part of the eco revolution", + "link": "https://www.dailymail.co.uk/property/article-12959191/Solar-panels-heat-pumps-bat-boxes-retirement-residents-eco-revolution.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:14:40 GMT", + "enclosure": { + "length": "9009", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/13/12/79966101-0-image-a-68_1705147747966.jpg" + }, + "content": "Solar panels, electric vehicle-charging points, triple-glazed windows, motion sensor lights and even living walls are being installed.", + "contentSnippet": "Solar panels, electric vehicle-charging points, triple-glazed windows, motion sensor lights and even living walls are being installed.", + "guid": "https://www.dailymail.co.uk/property/article-12959191/Solar-panels-heat-pumps-bat-boxes-retirement-residents-eco-revolution.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:14:40.000Z" + }, + { + "title": "Wok stars: CHING-HE-HUAN's speedy dishes are low on cost and high on flavour", + "link": "https://www.dailymail.co.uk/home/you/article-12938831/Wok-stars-CHING-HUANs-speedy-dishes-low-cost-high-flavour.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:01:30 GMT", + "enclosure": { + "length": "9826", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/11/79792629-0-image-m-251_1704801125480.jpg" + }, + "content": "Prawn and edamame rice", + "contentSnippet": "Prawn and edamame rice", + "guid": "https://www.dailymail.co.uk/home/you/article-12938831/Wok-stars-CHING-HUANs-speedy-dishes-low-cost-high-flavour.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:01:30.000Z" + }, + { + "title": "MY LIFE IN DRINKS: Sam McKnight", + "link": "https://www.dailymail.co.uk/home/you/article-12938847/MY-LIFE-DRINKS-Sam-McKnight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:01:27 GMT", + "enclosure": { + "length": "675338", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79807209-0-image-m-154_1704819533581.jpg" + }, + "content": "The A-list hairdresser, 68, tells Samuel Fishwick why he gave up drinking alcohol and how Elle Macpherson gets him out of bed.", + "contentSnippet": "The A-list hairdresser, 68, tells Samuel Fishwick why he gave up drinking alcohol and how Elle Macpherson gets him out of bed.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938847/MY-LIFE-DRINKS-Sam-McKnight.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:01:27.000Z" + }, + { + "title": "THE CANNY COOK: Butternut squash and smoky bacon spaghetti", + "link": "https://www.dailymail.co.uk/home/you/article-12938933/THE-CANNY-COOK-Butternut-squash-smoky-bacon-spaghetti.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:01:24 GMT", + "enclosure": { + "length": "9270", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/17/79807575-0-image-m-232_1704819923808.jpg" + }, + "content": "This easy pasta dish pairs sweet and seasonal squash and salty bacon..", + "contentSnippet": "This easy pasta dish pairs sweet and seasonal squash and salty bacon..", + "guid": "https://www.dailymail.co.uk/home/you/article-12938933/THE-CANNY-COOK-Butternut-squash-smoky-bacon-spaghetti.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:01:24.000Z" + }, + { + "title": "TOM PARKER BOWLES reviews Italian dishes in Bayswater", + "link": "https://www.dailymail.co.uk/home/you/article-12938951/TOM-PARKER-BOWLES-reviews-Italian-dishes-Bayswater.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:01:20 GMT", + "enclosure": { + "length": "8297", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/12/79795041-0-image-m-327_1704804718684.jpg" + }, + "content": "Tom tucks into the good old Rome comforts of a discreet little Italian spot in London's Bayswater.", + "contentSnippet": "Tom tucks into the good old Rome comforts of a discreet little Italian spot in London's Bayswater.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938951/TOM-PARKER-BOWLES-reviews-Italian-dishes-Bayswater.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:01:20.000Z" + }, + { + "title": "Nine beauty game-changers for 2024: ROSIE GREEN reveals the innovations that will make your year", + "link": "https://www.dailymail.co.uk/home/you/article-12938557/Nine-beauty-game-changers-2024-ROSIE-GREEN-reveals-innovations-make-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:01:14 GMT", + "enclosure": { + "length": "673219", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79806925-0-image-m-110_1704819198335.jpg" + }, + "content": "In with the now: nine game-changers for 2024.\u00a0These trends and innovations will make your year, says Rosie Green .", + "contentSnippet": "In with the now: nine game-changers for 2024.\u00a0These trends and innovations will make your year, says Rosie Green .", + "guid": "https://www.dailymail.co.uk/home/you/article-12938557/Nine-beauty-game-changers-2024-ROSIE-GREEN-reveals-innovations-make-year.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:01:14.000Z" + }, + { + "title": "In the loop with Cirque du Soleil", + "link": "https://www.dailymail.co.uk/home/you/article-12938985/In-loop-Cirque-du-Soleil.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:01:11 GMT", + "enclosure": { + "length": "5395", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79795431-0-image-m-389_1704805560313.jpg" + }, + "content": "As the cast of world-famous Cirque du Soleil perform feats of body-bending magic at London's Royal Albert Hall, Maddy Fletcher finds out what it takes to join a circus like no other.", + "contentSnippet": "As the cast of world-famous Cirque du Soleil perform feats of body-bending magic at London's Royal Albert Hall, Maddy Fletcher finds out what it takes to join a circus like no other.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938985/In-loop-Cirque-du-Soleil.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:01:11.000Z" + }, + { + "title": "10 things you need to know about AI", + "link": "https://www.dailymail.co.uk/home/you/article-12939007/10-things-need-know-AI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:01:08 GMT", + "enclosure": { + "length": "8123", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79795709-0-image-m-409_1704806024328.jpg" + }, + "content": "From Google Maps to facial recognition, we're ever more reliant on artificial intelligence. Expert Mike Wooldridge gives his reasons to be fearful - and cheerful.", + "contentSnippet": "From Google Maps to facial recognition, we're ever more reliant on artificial intelligence. Expert Mike Wooldridge gives his reasons to be fearful - and cheerful.", + "guid": "https://www.dailymail.co.uk/home/you/article-12939007/10-things-need-know-AI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:01:08.000Z" + }, + { + "title": "AGELESS STYLE: The jumper dress", + "link": "https://www.dailymail.co.uk/home/you/article-12938619/AGELESS-STYLE-jumper-dress.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:01:05 GMT", + "enclosure": { + "length": "5183", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/08/16/79755547-0-image-m-50_1704731013767.jpg" + }, + "content": "Jumper dresses are top of the trend list this season, and it's easy to see why.", + "contentSnippet": "Jumper dresses are top of the trend list this season, and it's easy to see why.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938619/AGELESS-STYLE-jumper-dress.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:01:05.000Z" + }, + { + "title": "HOROSCOPES: Your stars for the week", + "link": "https://www.dailymail.co.uk/home/you/article-12939063/HOROSCOPES-stars-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:01:02 GMT", + "enclosure": { + "length": "23619", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/17/79807843-0-image-m-254_1704820329085.jpg" + }, + "content": "CAPRICORN\n\n22 Dec-20 Jan Don't give away too much about your plans or ambitions.", + "contentSnippet": "CAPRICORN\n\n22 Dec-20 Jan Don't give away too much about your plans or ambitions.", + "guid": "https://www.dailymail.co.uk/home/you/article-12939063/HOROSCOPES-stars-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:01:02.000Z" + }, + { + "title": "EVERYONE'S TALKING ABOUT: Dark academia", + "link": "https://www.dailymail.co.uk/home/you/article-12938585/EVERYONES-TALKING-Dark-academia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:00:59 GMT", + "enclosure": { + "length": "6706", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/08/16/79755443-0-image-m-32_1704730896782.jpg" + }, + "content": "The world is obsessed with this scholarly fashion and interiors trend: 5.7 billion views and rising on TikTok.", + "contentSnippet": "The world is obsessed with this scholarly fashion and interiors trend: 5.7 billion views and rising on TikTok.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938585/EVERYONES-TALKING-Dark-academia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:00:59.000Z" + }, + { + "title": "CHARLOTTE KRISTENSEN'S January gems", + "link": "https://www.dailymail.co.uk/home/you/article-12938965/CHARLOTTE-KRISTENSENS-January-gems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:00:55 GMT", + "enclosure": { + "length": "674810", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79806769-0-image-m-68_1704818903062.jpg" + }, + "content": "Feeling the dry Jan slump? Consider 'damp Jan' and 'try Jan'.", + "contentSnippet": "Feeling the dry Jan slump? Consider 'damp Jan' and 'try Jan'.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938965/CHARLOTTE-KRISTENSENS-January-gems.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:00:55.000Z" + }, + { + "title": "TOPLINE FITNESS: Climbing walls", + "link": "https://www.dailymail.co.uk/home/you/article-12939029/TOPLINE-FITNESS-Climbing-walls.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:00:52 GMT", + "enclosure": { + "length": "7090", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79795713-0-image-m-424_1704806223686.jpg" + }, + "content": "Our fact-filled, fluff-free page of fitness.", + "contentSnippet": "Our fact-filled, fluff-free page of fitness.", + "guid": "https://www.dailymail.co.uk/home/you/article-12939029/TOPLINE-FITNESS-Climbing-walls.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:00:52.000Z" + }, + { + "title": "Your new sporting heroes: Stephanie Sofokleous's activewear choices", + "link": "https://www.dailymail.co.uk/home/you/article-12938727/Your-new-sporting-heroes-Stephanie-Sofokleouss-activewear-choices.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:00:49 GMT", + "enclosure": { + "length": "7535", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/08/17/79758785-0-image-m-134_1704736441071.jpg" + }, + "content": "Whether you're wild swimming or saluting the sun, push yourself to look the part with Stephanie Sofokleous 's edit of the latest activewear.", + "contentSnippet": "Whether you're wild swimming or saluting the sun, push yourself to look the part with Stephanie Sofokleous 's edit of the latest activewear.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938727/Your-new-sporting-heroes-Stephanie-Sofokleouss-activewear-choices.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:00:49.000Z" + }, + { + "title": "LIZ JONES'S DIARY: In which I try to get our glow back", + "link": "https://www.dailymail.co.uk/home/you/article-12939209/LIZ-JONESS-DIARY-try-glow-back.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 12:00:46 GMT", + "enclosure": { + "length": "4926", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79796097-0-image-m-9_1704807043986.jpg" + }, + "content": "I think it was Einstein who said the definition of insanity is to keep doing the same thing, while expecting a different outcome.", + "contentSnippet": "I think it was Einstein who said the definition of insanity is to keep doing the same thing, while expecting a different outcome.", + "guid": "https://www.dailymail.co.uk/home/you/article-12939209/LIZ-JONESS-DIARY-try-glow-back.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T12:00:46.000Z" + }, + { + "title": "Basement 'studio' with exposed brickwork and a single toilet goes up for sale - and estate agents claim it is a bargain", + "link": "https://www.dailymail.co.uk/property/article-12958933/Basement-studio-exposed-brickwork-single-toilet-goes-sale-estate-agents-claim-bargain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 11:29:39 GMT", + "enclosure": { + "length": "7474", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/13/09/79963803-0-image-a-13_1705136814459.jpg" + }, + "content": "Described as a 'dungeon' by shocked users online, the studio based in Crouch End could be converted into a self-contained flat, but this is 'subject to obtaining necessary consents'.", + "contentSnippet": "Described as a 'dungeon' by shocked users online, the studio based in Crouch End could be converted into a self-contained flat, but this is 'subject to obtaining necessary consents'.", + "guid": "https://www.dailymail.co.uk/property/article-12958933/Basement-studio-exposed-brickwork-single-toilet-goes-sale-estate-agents-claim-bargain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T11:29:39.000Z" + }, + { + "title": "Pet hates for home buyers: Fussy gardens, pools - and even staircases can make it harder to sell", + "link": "https://www.dailymail.co.uk/property/article-12952965/Pet-hates-home-buyers-Fussy-gardens-pools-staircases-make-harder-sell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 13 Jan 2024 06:00:49 GMT", + "enclosure": { + "length": "6971", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/20/79908773-0-image-m-6_1705003382074.jpg" + }, + "content": "Some of these fancy home additions listed by property experts may surprise you - but they're likely to end up hampering a sale.", + "contentSnippet": "Some of these fancy home additions listed by property experts may surprise you - but they're likely to end up hampering a sale.", + "guid": "https://www.dailymail.co.uk/property/article-12952965/Pet-hates-home-buyers-Fussy-gardens-pools-staircases-make-harder-sell.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-13T06:00:49.000Z" + }, + { + "title": "My love affair with M&S knickers: From shapewear to the high-leg - these are not just pants, writes FRAN HORNAK", + "link": "https://www.dailymail.co.uk/home/you/article-12938745/My-love-affair-M-S-knickers-shapewear-high-leg-not-just-pants-writes-FRAN-HORNAK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 12 Jan 2024 17:30:54 GMT", + "enclosure": { + "length": "667957", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79806645-0-image-m-47_1704818685610.jpg" + }, + "content": "From school playground to maternity ward and beyond, FRAN HORNAK reveals why trusty M&S pants have always underpinned her life.", + "contentSnippet": "From school playground to maternity ward and beyond, FRAN HORNAK reveals why trusty M&S pants have always underpinned her life.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938745/My-love-affair-M-S-knickers-shapewear-high-leg-not-just-pants-writes-FRAN-HORNAK.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-12T17:30:54.000Z" + }, + { + "title": "Beachfront cafe in millionaires' playground Sandbanks goes on the market for \u00a37.5million (well they do sell fish and chips for \u00a323.50!)", + "link": "https://www.dailymail.co.uk/property/article-12956533/Beachfront-cafe-millionaires-playground-Sandbanks-goes-market-7-5million-sell-fish-chips-23-50.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 12 Jan 2024 16:07:39 GMT", + "enclosure": { + "length": "8644", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/12/15/79940623-0-image-m-46_1705074995124.jpg" + }, + "content": "Jazz Cafe (pictured) in the exclusive seaside resort of Sandbanks in Poole, Dorset, has gone on the market - for an eye-watering \u00a37.5million. It was owned by local Alan Dykes for 28 years.", + "contentSnippet": "Jazz Cafe (pictured) in the exclusive seaside resort of Sandbanks in Poole, Dorset, has gone on the market - for an eye-watering \u00a37.5million. It was owned by local Alan Dykes for 28 years.", + "guid": "https://www.dailymail.co.uk/property/article-12956533/Beachfront-cafe-millionaires-playground-Sandbanks-goes-market-7-5million-sell-fish-chips-23-50.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-12T16:07:39.000Z" + }, + { + "title": "CAROLINE WEST-MEADS: 'Our underage daughter got drunk at a friend's sleepover'", + "link": "https://www.dailymail.co.uk/home/you/article-12939179/CAROLINE-WEST-MEADS-underage-daughter-got-drunk-friends-sleepover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 12 Jan 2024 14:26:31 GMT", + "enclosure": { + "length": "678914", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/17/79807291-0-image-m-172_1704819625399.jpg" + }, + "content": "Our daughter, who is 15, went to a friend's house for a New Year's Eve sleepover.", + "contentSnippet": "Our daughter, who is 15, went to a friend's house for a New Year's Eve sleepover.", + "guid": "https://www.dailymail.co.uk/home/you/article-12939179/CAROLINE-WEST-MEADS-underage-daughter-got-drunk-friends-sleepover.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-12T14:26:31.000Z" + }, + { + "title": "Forget nepo babies, the nepo PARENTS are coming: From Harry Styles's mum's new career as an influencer to Lana Del Rey's father who boasts about being a 'nepo daddy'", + "link": "https://www.dailymail.co.uk/home/you/article-12938765/Forget-nepo-babies-nepo-PARENTS-coming-Harry-Styless-mums-new-career-influencer-Lana-Del-Reys-father-boasts-nepo-daddy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 12 Jan 2024 12:53:47 GMT", + "enclosure": { + "length": "676479", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/16/79807073-0-image-m-122_1704819310027.jpg" + }, + "content": "They looked on with pride as their children became household names - but now the beaming mums and dads want the spotlight on themselves, says Scarlett Dargan.", + "contentSnippet": "They looked on with pride as their children became household names - but now the beaming mums and dads want the spotlight on themselves, says Scarlett Dargan.", + "guid": "https://www.dailymail.co.uk/home/you/article-12938765/Forget-nepo-babies-nepo-PARENTS-coming-Harry-Styless-mums-new-career-influencer-Lana-Del-Reys-father-boasts-nepo-daddy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-12T12:53:47.000Z" + }, + { + "title": "Tenants face losing deposit as 83% of landlords report tenancy agreements being breached", + "link": "https://www.dailymail.co.uk/property/article-12943107/Tenants-face-losing-deposit-83-landlords-report-tenancy-agreements-breached.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 12 Jan 2024 06:00:52 GMT", + "enclosure": { + "length": "7204", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/14/79799483-0-image-a-18_1704811382848.jpg" + }, + "content": "The most common breaches of a tenancy agreement included not keeping the property sufficiently clean and failing to notify a landlord of required repairs.", + "contentSnippet": "The most common breaches of a tenancy agreement included not keeping the property sufficiently clean and failing to notify a landlord of required repairs.", + "guid": "https://www.dailymail.co.uk/property/article-12943107/Tenants-face-losing-deposit-83-landlords-report-tenancy-agreements-breached.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-12T06:00:52.000Z" + }, + { + "title": "PICTURE THIS", + "link": "https://www.dailymail.co.uk/home/books/article-12953957/PICTURE-THIS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 23:12:53 GMT", + "enclosure": { + "length": "9552", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/23/79916225-0-image-m-129_1705014738311.jpg" + }, + "content": "The third of his celebratory series on 'Iconic Black Women', Marcellas Reynolds tracks through the evolution of Black female performers and the music industry they inhabit.", + "contentSnippet": "The third of his celebratory series on 'Iconic Black Women', Marcellas Reynolds tracks through the evolution of Black female performers and the music industry they inhabit.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953957/PICTURE-THIS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T23:12:53.000Z" + }, + { + "title": "SCI-FI", + "link": "https://www.dailymail.co.uk/home/books/article-12953947/SCI-FI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 23:06:47 GMT", + "enclosure": { + "length": "8406", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/23/79916009-0-image-a-108_1705014367361.jpg" + }, + "content": "Prefect Tom Dreyfus, dogged, humane and irascible, is the Panoply's most valued investigator. And though he drives a space cutter rather than a Jag, he's more Inspector Morse than Judge Dredd.", + "contentSnippet": "Prefect Tom Dreyfus, dogged, humane and irascible, is the Panoply's most valued investigator. And though he drives a space cutter rather than a Jag, he's more Inspector Morse than Judge Dredd.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953947/SCI-FI.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T23:06:47.000Z" + }, + { + "title": "PSYCHOS", + "link": "https://www.dailymail.co.uk/home/books/article-12953935/PSYCHOS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 23:02:28 GMT", + "enclosure": { + "length": "10388", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/23/79915949-0-image-a-92_1705014111676.jpg" + }, + "content": "This is a very clever book indeed. Soloski is herself a prize-winning theatre critic for the New York Times and the book is packed with gripping insider knowledge of the dark side of a critic's life.", + "contentSnippet": "This is a very clever book indeed. Soloski is herself a prize-winning theatre critic for the New York Times and the book is packed with gripping insider knowledge of the dark side of a critic's life.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953935/PSYCHOS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T23:02:28.000Z" + }, + { + "title": "RETROS", + "link": "https://www.dailymail.co.uk/home/books/article-12953927/RETROS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 22:57:37 GMT", + "enclosure": { + "length": "4761", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/22/79915817-0-image-m-77_1705013814463.jpg" + }, + "content": "When mysterious Leonora Eyre meets antique dealer Humphrey and his nephew, James, all three lives become entwined in a complex web of manipulation, unfulfilled lust and jealousy.", + "contentSnippet": "When mysterious Leonora Eyre meets antique dealer Humphrey and his nephew, James, all three lives become entwined in a complex web of manipulation, unfulfilled lust and jealousy.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953927/RETROS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T22:57:37.000Z" + }, + { + "title": "LITERARY FICTION", + "link": "https://www.dailymail.co.uk/home/books/article-12953911/LITERARY-FICTION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 22:52:16 GMT", + "enclosure": { + "length": "11468", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/22/79915683-0-image-m-56_1705013499743.jpg" + }, + "content": "Irish writer Barrett won widespread praise for his violent yet tender story collections Young Skins and Homesickness, often about low life in a fictional version of his native County Mayo.", + "contentSnippet": "Irish writer Barrett won widespread praise for his violent yet tender story collections Young Skins and Homesickness, often about low life in a fictional version of his native County Mayo.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953911/LITERARY-FICTION.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T22:52:16.000Z" + }, + { + "title": "MUST READS", + "link": "https://www.dailymail.co.uk/home/books/article-12953883/MUST-READS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 22:47:03 GMT", + "enclosure": { + "length": "5184", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/22/79915493-0-image-m-34_1705013140146.jpg" + }, + "content": "Many of us begin the new year with good intentions, only to lapse. But Holmes's new book promises to banish the never-ending to-do list.", + "contentSnippet": "Many of us begin the new year with good intentions, only to lapse. But Holmes's new book promises to banish the never-ending to-do list.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953883/MUST-READS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T22:47:03.000Z" + }, + { + "title": "Was my father the Nazis' last victim?\u00a0In 1938, 11-year-old Robert Borger escaped Vienna thanks to a newspaper ad and a kindly British couple. But he could never escape the terror unleashed on Austria's Jews...", + "link": "https://www.dailymail.co.uk/home/books/article-12953185/Was-father-Nazis-victim-1938-11-year-old-Robert-Borger-escaped-Vienna-thanks-newspaper-ad-kindly-British-couple-never-escape-terror-unleashed-Austrias-Jews.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 22:40:45 GMT", + "enclosure": { + "length": "9480", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/22/79915195-0-image-a-10_1705012573767.jpg" + }, + "content": "Journalist Julian Borger grew up with a vague impression that his father Robert had come to Britain from Vienna as a result of a newspaper ad, and after his father's death he managed to track it down.", + "contentSnippet": "Journalist Julian Borger grew up with a vague impression that his father Robert had come to Britain from Vienna as a result of a newspaper ad, and after his father's death he managed to track it down.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953185/Was-father-Nazis-victim-1938-11-year-old-Robert-Borger-escaped-Vienna-thanks-newspaper-ad-kindly-British-couple-never-escape-terror-unleashed-Austrias-Jews.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T22:40:45.000Z" + }, + { + "title": "I'm a professor, but people only care that I'm fat", + "link": "https://www.dailymail.co.uk/home/books/article-12953407/Im-professor-people-care-Im-fat.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 21:59:25 GMT", + "enclosure": { + "length": "8354", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/21/79913507-0-image-a-45_1705010209656.jpg" + }, + "content": "Kate Manne argues the world is 'mired' in fatphobia.\u00a0Rather than demand people shrink to a 'normal' size, we need to address the social systems which rank fatter bodies as inferior.", + "contentSnippet": "Kate Manne argues the world is 'mired' in fatphobia.\u00a0Rather than demand people shrink to a 'normal' size, we need to address the social systems which rank fatter bodies as inferior.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953407/Im-professor-people-care-Im-fat.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T21:59:25.000Z" + }, + { + "title": "WHAT BOOK would author James Patterson take to a desert island?", + "link": "https://www.dailymail.co.uk/home/books/article-12953429/WHAT-BOOK-author-James-Patterson-desert-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 21:46:52 GMT", + "enclosure": { + "length": "4681", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/21/79912027-0-image-m-15_1705009125481.jpg" + }, + "content": "Author James Patterson would use his time on a desert island to re-read James Joyce's books.", + "contentSnippet": "Author James Patterson would use his time on a desert island to re-read James Joyce's books.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953429/WHAT-BOOK-author-James-Patterson-desert-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T21:46:52.000Z" + }, + { + "title": "Crashed and stranded in the Andes for 72 days with no food... so would you have turned cannibal?", + "link": "https://www.dailymail.co.uk/home/books/article-12953423/Crashed-stranded-Andes-72-days-no-food-turned-cannibal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 21:26:28 GMT", + "enclosure": { + "length": "11724", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/11/21/79911691-0-image-a-22_1705007985415.jpg" + }, + "content": "A triumph of empathy, Society Of The Snow Pablo Vierci recounts the events of 1972 that became known as the 'Miracle of the Andes'.", + "contentSnippet": "A triumph of empathy, Society Of The Snow Pablo Vierci recounts the events of 1972 that became known as the 'Miracle of the Andes'.", + "guid": "https://www.dailymail.co.uk/home/books/article-12953423/Crashed-stranded-Andes-72-days-no-food-turned-cannibal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T21:26:28.000Z" + }, + { + "title": "Asking prices rise 20% in Sandbanks, making it Britain's top property hotspot", + "link": "https://www.dailymail.co.uk/property/article-12946977/Asking-prices-rise-20-Sandbanks-making-Britains-property-hotspot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 11 Jan 2024 00:01:49 GMT", + "enclosure": { + "length": "10202", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/10/15/79849833-0-image-a-9_1704901198318.jpg" + }, + "content": "Properties for sale in the sun-soaked millionaires' playground of Sandbanks have seen asking prices rise by 20% from 2022 to 2023, according to Rightmove.", + "contentSnippet": "Properties for sale in the sun-soaked millionaires' playground of Sandbanks have seen asking prices rise by 20% from 2022 to 2023, according to Rightmove.", + "guid": "https://www.dailymail.co.uk/property/article-12946977/Asking-prices-rise-20-Sandbanks-making-Britains-property-hotspot.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-11T00:01:49.000Z" + }, + { + "title": "A sliver of a home! 7ft-wide terraced house that can just about fit a king sized bed goes on sale for \u00a3225,000 in north London", + "link": "https://www.dailymail.co.uk/property/article-12946667/A-sliver-home-7ft-wide-terraced-house-just-fit-king-sized-bed-goes-sale-225-000-south-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 10 Jan 2024 17:05:12 GMT", + "enclosure": { + "length": "8712", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/10/12/79842653-0-image-a-5_1704890170520.jpg" + }, + "content": "A pint-sized one-bedroom property in Colindale, northwest London, has been added to the market for an eye-watering \u00a3225,000 - boasting a 2.21M space no larger than a king-size bed", + "contentSnippet": "A pint-sized one-bedroom property in Colindale, northwest London, has been added to the market for an eye-watering \u00a3225,000 - boasting a 2.21M space no larger than a king-size bed", + "guid": "https://www.dailymail.co.uk/property/article-12946667/A-sliver-home-7ft-wide-terraced-house-just-fit-king-sized-bed-goes-sale-225-000-south-London.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-10T17:05:12.000Z" + }, + { + "title": "Three bedroom family home that is so mouldy buyers are not allowed inside for viewings goes on the market for \u00a310,000", + "link": "https://www.dailymail.co.uk/property/article-12947409/Three-bedroom-family-home-mouldy-buyers-not-allowed-inside-viewings-goes-market-10-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 10 Jan 2024 16:06:07 GMT", + "enclosure": { + "length": "10857", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/10/16/79848379-0-image-a-16_1704902679119.jpg" + }, + "content": "A three-bedroom family home, located in Northfield, Birmingham, has gone on the market for just \u00a310,000 - but it's riddled with so much mould that buyers are not allowed inside for viewings", + "contentSnippet": "A three-bedroom family home, located in Northfield, Birmingham, has gone on the market for just \u00a310,000 - but it's riddled with so much mould that buyers are not allowed inside for viewings", + "guid": "https://www.dailymail.co.uk/property/article-12947409/Three-bedroom-family-home-mouldy-buyers-not-allowed-inside-viewings-goes-market-10-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-10T16:06:07.000Z" + }, + { + "title": "Stunning Grade II-listed Mayfair home that once belonged to the Earls of Crawford is sold to an American buyer for \u00a311.5million in London's 'first super-prime property sale of 2024'", + "link": "https://www.dailymail.co.uk/property/article-12941797/Grade-II-Mayfair-home-Earl-Crawford-American-London-prime-property-sale-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 09 Jan 2024 23:40:13 GMT", + "enclosure": { + "length": "6907", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/08/79785309-0-image-a-4_1704787968632.jpg" + }, + "content": "The agent has revealed it could be London 's 'first super-prime property sale of 2024' and labelled the sale as a 'fantastic start to the year'.", + "contentSnippet": "The agent has revealed it could be London 's 'first super-prime property sale of 2024' and labelled the sale as a 'fantastic start to the year'.", + "guid": "https://www.dailymail.co.uk/property/article-12941797/Grade-II-Mayfair-home-Earl-Crawford-American-London-prime-property-sale-2024.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-09T23:40:13.000Z" + }, + { + "title": "Gladiators ready? One of them can squat three and a half washing machines, and another can deadlift three times her bodyweight - meet the stars of the BBC reboot of a Nineties classic", + "link": "https://www.dailymail.co.uk/home/you/article-12918699/Gladiators-ready-One-squat-three-half-washing-machines-deadlift-three-times-bodyweight-meet-stars-BBC-reboot-Nineties-classic.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 09 Jan 2024 17:39:29 GMT", + "enclosure": { + "length": "22997", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/17/79809037-0-image-m-4_1704821959666.jpg" + }, + "content": "They dominated 90s primetime TV with their rippling six-packs and knockout combat techniques. Now the Glads are back. Nick Curtis takes them on.", + "contentSnippet": "They dominated 90s primetime TV with their rippling six-packs and knockout combat techniques. Now the Glads are back. Nick Curtis takes them on.", + "guid": "https://www.dailymail.co.uk/home/you/article-12918699/Gladiators-ready-One-squat-three-half-washing-machines-deadlift-three-times-bodyweight-meet-stars-BBC-reboot-Nineties-classic.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-09T17:39:29.000Z" + }, + { + "title": "Three-bed bungalow in one of 'the prettiest villages in Essex' is up for grabs for \u00a31.1m", + "link": "https://www.dailymail.co.uk/property/article-12938753/Three-bed-bungalow-one-prettiest-villages-Essex-grabs-1-1m.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 09 Jan 2024 14:08:32 GMT", + "enclosure": { + "length": "8721", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/08/14/79750595-0-image-a-5_1704723784868.jpg" + }, + "content": "The \u00a31.1m property spreads across an area of 1,465 square feet, and includes a single open-plan living area as well as the three bedrooms and an entrance hallway.", + "contentSnippet": "The \u00a31.1m property spreads across an area of 1,465 square feet, and includes a single open-plan living area as well as the three bedrooms and an entrance hallway.", + "guid": "https://www.dailymail.co.uk/property/article-12938753/Three-bed-bungalow-one-prettiest-villages-Essex-grabs-1-1m.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-09T14:08:32.000Z" + }, + { + "title": "Does he come with the house? Adorable dog stars in EVERY photo of \u00a375,000 home on the market in Scotland", + "link": "https://www.dailymail.co.uk/property/article-12942507/adorable-dog-featured-photograph-house-market-scotland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 09 Jan 2024 13:50:32 GMT", + "enclosure": { + "length": "4265", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2024/01/09/13/79796837-0-image-m-31_1704808219043.jpg" + }, + "content": "A two-bedroom flat in Falkirk, Stirlingshire, Scotland offered for just \u00a375,000 has received a huge amount of interest from buyers - after it featured an adorable Labrador in its photos", + "contentSnippet": "A two-bedroom flat in Falkirk, Stirlingshire, Scotland offered for just \u00a375,000 has received a huge amount of interest from buyers - after it featured an adorable Labrador in its photos", + "guid": "https://www.dailymail.co.uk/property/article-12942507/adorable-dog-featured-photograph-house-market-scotland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2024-01-09T13:50:32.000Z" + }, + { + "title": "Sadiq Khan challenges Keir Starmer over Gaza: London mayor becomes most high-profile Labour figure to demand a ceasefire with a quarter of its MPs now calling for end to bloodshed while leader backs Israel's right to defend itself", + "link": "https://www.dailymail.co.uk/news/article-12679235/Keir-Starmer-urged-stand-ground-support-Israel-Gaza-crisis-Muslim-Labour-politicians-labelled-traitors.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:52:53 GMT", + "enclosure": { + "length": "3691", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072599-0-image-m-80_1698397907823.jpg" + }, + "content": "The London mayor became the most high profile figure to back calls for break in fighting between Israel and Hamas that has claimed thousands of lives since the terrorists' brutal raid.", + "contentSnippet": "The London mayor became the most high profile figure to back calls for break in fighting between Israel and Hamas that has claimed thousands of lives since the terrorists' brutal raid.", + "guid": "https://www.dailymail.co.uk/news/article-12679235/Keir-Starmer-urged-stand-ground-support-Israel-Gaza-crisis-Muslim-Labour-politicians-labelled-traitors.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:52:53.000Z" + }, + { + "title": "Israel-Hamas war LIVE: UN suggests Hamas and Israel are BOTH guilty of war crimes as it warns 'many more will die' in Gaza", + "link": "https://www.dailymail.co.uk/news/article-12679133/Israel-Hamas-war-live-Palestine-Gaza-latest-updates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:47:00 GMT", + "enclosure": { + "length": "8451", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078941-0-image-m-26_1698409398612.jpg" + }, + "content": "MAILONLINE LIVE BLOG: Follow along for live updates as Israel's war against Hamas is in its 21st day.", + "contentSnippet": "MAILONLINE LIVE BLOG: Follow along for live updates as Israel's war against Hamas is in its 21st day.", + "guid": "https://www.dailymail.co.uk/news/article-12679133/Israel-Hamas-war-live-Palestine-Gaza-latest-updates.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:47:00.000Z" + }, + { + "title": "Moussa Diaby saves the day for tearful young Aston Villa fan as French star gives him his shirt after banner asking for it gets confiscated", + "link": "https://www.dailymail.co.uk/sport/football/article-12679365/Moussa-Diaby-saves-day-tearful-young-Aston-Villa-fan-French-star-gives-shirt-banner-asking-gets-confiscated.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:46:52 GMT", + "enclosure": { + "length": "10983", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072159-0-image-a-18_1698397313879.jpg" + }, + "content": "Before Villa played AZ Alkmaar last night in the Europa Conference League , a young fan hung a beautifully hand-crafted sign near to the touchline asking for the French footballer's shirt.", + "contentSnippet": "Before Villa played AZ Alkmaar last night in the Europa Conference League , a young fan hung a beautifully hand-crafted sign near to the touchline asking for the French footballer's shirt.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12679365/Moussa-Diaby-saves-day-tearful-young-Aston-Villa-fan-French-star-gives-shirt-banner-asking-gets-confiscated.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:46:52.000Z" + }, + { + "title": "Mother was found dead at home with her two-year-old daughter trying to wake her up - hours after paramedics gave her the all clear, family claim", + "link": "https://www.dailymail.co.uk/news/article-12679411/Mother-dead-home-two-year-old-daughter-trying-wake-hours-paramedics-gave-clear-family-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:46:06 GMT", + "enclosure": { + "length": "5382", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77073141-0-image-m-24_1698403721380.jpg" + }, + "content": "Lauren Page Smith, 29, was found at her house in Wolverhampton by her mother in January, lying on the floor with her two-year-old daughter on her chest. The toddler had tried to wake her up.", + "contentSnippet": "Lauren Page Smith, 29, was found at her house in Wolverhampton by her mother in January, lying on the floor with her two-year-old daughter on her chest. The toddler had tried to wake her up.", + "guid": "https://www.dailymail.co.uk/news/article-12679411/Mother-dead-home-two-year-old-daughter-trying-wake-hours-paramedics-gave-clear-family-claim.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:46:06.000Z" + }, + { + "title": "EXCLUSIVE: I pushed my baby's pram to safety before I was mown down by a speeding car - and I'd do it again to save my children: Hero mother who suffered life-changing injuries gives first interview since drunk driver was jailed after leaving her for dead", + "link": "https://www.dailymail.co.uk/news/article-12679703/quick-thinking-mother-life-changing-injuries-drunk-driver-jailed-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:40:01 GMT", + "enclosure": { + "length": "8062", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77076731-0-Becky_Sharp_centre_pictured_holding_her_baby_girl_before_the_hor-a-3_1698409190779.jpg" + }, + "content": "Becky Sharp was saluted for her courage and quick-thinking this week as a judge jailed the maniac drunk driver who left her for dead and would have hit her baby too if she hadn't acted so decisively.", + "contentSnippet": "Becky Sharp was saluted for her courage and quick-thinking this week as a judge jailed the maniac drunk driver who left her for dead and would have hit her baby too if she hadn't acted so decisively.", + "guid": "https://www.dailymail.co.uk/news/article-12679703/quick-thinking-mother-life-changing-injuries-drunk-driver-jailed-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:40:01.000Z" + }, + { + "title": "Manhunt for Maine shooter Robert Card intensifies: Border units, FBI and State Police swarm ghost town as search for killer who shot 18 dead at bowling alley and bar enters day two", + "link": "https://www.dailymail.co.uk/news/article-12679939/Manhunt-Maine-shooter-Robert-Card-intensifies-Border-units-FBI-State-Police-swarm-ghost-town-search-killer-shot-18-dead-bowling-alley-bar-enters-day-two.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:40:01 GMT", + "enclosure": { + "length": "9134", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077779-0-Ghost_town_Lewiston_Schools_stores_and_most_businesses_in_Lewist-a-4_1698407587229.jpg" + }, + "content": "Lewiston, a once-busy city is today a ghost town as hundreds of FBI agents and Maine state troopers search for Card, the 40-year-old mentally ill gunman.", + "contentSnippet": "Lewiston, a once-busy city is today a ghost town as hundreds of FBI agents and Maine state troopers search for Card, the 40-year-old mentally ill gunman.", + "guid": "https://www.dailymail.co.uk/news/article-12679939/Manhunt-Maine-shooter-Robert-Card-intensifies-Border-units-FBI-State-Police-swarm-ghost-town-search-killer-shot-18-dead-bowling-alley-bar-enters-day-two.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:40:01.000Z" + }, + { + "title": "The wacky ways to wrap up this winter: Met Office releases list of weird hacks to stay warm... from ankle socks filled with microwaved beans to swimming caps and THIN layers of clothing", + "link": "https://www.dailymail.co.uk/news/article-12679701/Met-Office-winter-hacks-cold-weather-RAC-cars-cycling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:34:32 GMT", + "enclosure": { + "length": "11908", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77076449-0-image-m-36_1698404248291.jpg" + }, + "content": "Other so-called '#WeatherHacks' issued by the Met Office include packing a towel to remove toxic grit or rock salt from your dog's paws and preparing a kit of essential items in case of flooding.", + "contentSnippet": "Other so-called '#WeatherHacks' issued by the Met Office include packing a towel to remove toxic grit or rock salt from your dog's paws and preparing a kit of essential items in case of flooding.", + "guid": "https://www.dailymail.co.uk/news/article-12679701/Met-Office-winter-hacks-cold-weather-RAC-cars-cycling.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:34:32.000Z" + }, + { + "title": "Astonishing moment Brazilian Uber driver delivers a baby in the back of her car (then doesn't even charge for the journey!)", + "link": "https://www.dailymail.co.uk/news/article-12679801/Astonishing-moment-Brazilian-Uber-driver-delivers-baby-car.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:33:23 GMT", + "enclosure": { + "length": "7192", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078667-0-image-m-9_1698409049583.jpg" + }, + "content": "Iara only realised her passenger was heavily pregnant when she arrived at the pick-up point in Bras\u00edlia, Brazil. During the drive, Sandy unexpectedly went into labour.", + "contentSnippet": "Iara only realised her passenger was heavily pregnant when she arrived at the pick-up point in Bras\u00edlia, Brazil. During the drive, Sandy unexpectedly went into labour.", + "guid": "https://www.dailymail.co.uk/news/article-12679801/Astonishing-moment-Brazilian-Uber-driver-delivers-baby-car.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:33:23.000Z" + }, + { + "title": "Young people are ditching gravy with a roast dinner condiments for ketchup and chilli mayo", + "link": "https://www.dailymail.co.uk/femail/article-12679649/millenial-gen-z-gravy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:29:59 GMT", + "enclosure": { + "length": "7634", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077199-0-image-m-5_1698406179862.jpg" + }, + "content": "UK millennials will opt for ketchup instead, while Gen Z prefer olive oil, sweet and sour sauce, mayonnaise and even chilli sauce according to a report by Tesco.", + "contentSnippet": "UK millennials will opt for ketchup instead, while Gen Z prefer olive oil, sweet and sour sauce, mayonnaise and even chilli sauce according to a report by Tesco.", + "guid": "https://www.dailymail.co.uk/femail/article-12679649/millenial-gen-z-gravy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:29:59.000Z" + }, + { + "title": "Ioan Gruffudd's ex-wife Alice Evans vows to 'tell my truth' in Instagram post amid bitter legal battle with actor over their daughters", + "link": "https://www.dailymail.co.uk/news/article-12679273/ioan-gruffud-actor-ex-wife-alice-evans-truth-instagram-bitter-legal-battle-daughters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:26:13 GMT", + "enclosure": { + "length": "9654", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77076353-0-image-a-13_1698403827107.jpg" + }, + "content": "The warring Hollywood stars are locked in an acrimonious battle for custody over their young children Ella and Elsie after Gruffudd left his then-wife Evans following a 14-year marriage.", + "contentSnippet": "The warring Hollywood stars are locked in an acrimonious battle for custody over their young children Ella and Elsie after Gruffudd left his then-wife Evans following a 14-year marriage.", + "guid": "https://www.dailymail.co.uk/news/article-12679273/ioan-gruffud-actor-ex-wife-alice-evans-truth-instagram-bitter-legal-battle-daughters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:26:13.000Z" + }, + { + "title": "Primary school teacher who refused to take Covid tests and wear a face mask at the height of pandemic loses discrimination legal battle", + "link": "https://www.dailymail.co.uk/news/article-12679485/Primary-school-teacher-refused-Covid-tests-wear-face-mask-height-pandemic-loses-discrimination-legal-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:25:36 GMT", + "enclosure": { + "length": "7263", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077575-0-image-m-11_1698406985985.jpg" + }, + "content": "Teacher Ijeomi Onyebalu refused to comply with the primary school's policies of testing twice a week and covering her face - reasoning that it was a 'personal choice' that didn't require any justification.", + "contentSnippet": "Teacher Ijeomi Onyebalu refused to comply with the primary school's policies of testing twice a week and covering her face - reasoning that it was a 'personal choice' that didn't require any justification.", + "guid": "https://www.dailymail.co.uk/news/article-12679485/Primary-school-teacher-refused-Covid-tests-wear-face-mask-height-pandemic-loses-discrimination-legal-battle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:25:36.000Z" + }, + { + "title": "Watch the shambolic moment a man is RUN OVER by horses immediately after starting a race in Carlisle - but somehow escapes a serious injury", + "link": "https://www.dailymail.co.uk/sport/racing/article-12678955/Watch-moment-groundstaff-member-gets-knocked-ground-HORSE-immediately-starting-race-Carlisle-escapes-unhurt-following-worrying-incident.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:22:38 GMT", + "enclosure": { + "length": "10379", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068345-0-image-a-4_1698387446343.jpg" + }, + "content": "A groundstaff member was fortunate to avoid serious injury after being knocked over by a horse just moments after starting a race in Carlisle on Thursday afternoon.", + "contentSnippet": "A groundstaff member was fortunate to avoid serious injury after being knocked over by a horse just moments after starting a race in Carlisle on Thursday afternoon.", + "guid": "https://www.dailymail.co.uk/sport/racing/article-12678955/Watch-moment-groundstaff-member-gets-knocked-ground-HORSE-immediately-starting-race-Carlisle-escapes-unhurt-following-worrying-incident.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:22:38.000Z" + }, + { + "title": "Investigation into missing X Factor rugby star Levi Davis is halted by Spanish officials, a year after he disappeared", + "link": "https://www.dailymail.co.uk/news/article-12679873/Investigation-missing-X-Factor-rugby-star-Levi-Davis-halted-Spanish-officials.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:17:41 GMT", + "enclosure": { + "length": "8835", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77077497-0-image-a-37_1698408479736.jpg" + }, + "content": "Mr Davis, a rugby union player and X Factor : Celebrity guest, disappeared on October 29, 2022 after travelling alone to Barcelona from Ibiza.", + "contentSnippet": "Mr Davis, a rugby union player and X Factor : Celebrity guest, disappeared on October 29, 2022 after travelling alone to Barcelona from Ibiza.", + "guid": "https://www.dailymail.co.uk/news/article-12679873/Investigation-missing-X-Factor-rugby-star-Levi-Davis-halted-Spanish-officials.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:17:41.000Z" + }, + { + "title": "Abbey Clancy cuddles up to EastEnders' Shaun Williamson as she imagines her life without her husband Peter Crouch in hilarious new advert", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12678135/Abbey-Clancy-cuddles-EastEnders-Shaun-Williamson-Peter-Crouch-advert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:08:47 GMT", + "enclosure": { + "length": "10301", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/00/77059315-0-image-m-120_1698363719028.jpg" + }, + "content": "The model, 37, imagines what her life would be like if she had rejected her husband Peter Crouch when they first met in a hilarious advert for Paddy Power Games.", + "contentSnippet": "The model, 37, imagines what her life would be like if she had rejected her husband Peter Crouch when they first met in a hilarious advert for Paddy Power Games.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12678135/Abbey-Clancy-cuddles-EastEnders-Shaun-Williamson-Peter-Crouch-advert.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:08:47.000Z" + }, + { + "title": "Fears of wider war grow as Kremlin says US strikes in Syria are a 'very bad' sign of 'broader regional tensions' and defends inviting Hamas delegation to Moscow after Israel described the decision as 'deplorable'", + "link": "https://www.dailymail.co.uk/news/article-12679063/Fears-grow-Middle-East-conflict-tinderbox-thats-going-catch-fire-warplanes-strike-Iranian-forces-Syria-Israel-prepares-ground-invasion-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:06:17 GMT", + "enclosure": { + "length": "12114", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/08/77069263-0-image-a-4_1698390553520.jpg" + }, + "content": "The\u00a0Kremlin has spoken out about US airstrikes on two Iranian-controlled sites in eastern Syria saying it would further stoke rising tensions in the Middle East.", + "contentSnippet": "The\u00a0Kremlin has spoken out about US airstrikes on two Iranian-controlled sites in eastern Syria saying it would further stoke rising tensions in the Middle East.", + "guid": "https://www.dailymail.co.uk/news/article-12679063/Fears-grow-Middle-East-conflict-tinderbox-thats-going-catch-fire-warplanes-strike-Iranian-forces-Syria-Israel-prepares-ground-invasion-Gaza.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:06:17.000Z" + }, + { + "title": "Gynaecologist 'mutilated his virgin wife's vagina with scissors because he was unable to have sex with her on their honeymoon'", + "link": "https://www.dailymail.co.uk/news/article-12679651/Gynaecologist-mutilated-virgin-wifes-vagina-scissors-unable-sex-honeymoon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:03:07 GMT", + "enclosure": { + "length": "3734", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075201-0-image-m-15_1698402714423.jpg" + }, + "content": "In a furious rage, the 54-year-old medic, who lives in Germany, had allegedly blamed his wife and decided to solve the problem himself, using a pair of scissors.", + "contentSnippet": "In a furious rage, the 54-year-old medic, who lives in Germany, had allegedly blamed his wife and decided to solve the problem himself, using a pair of scissors.", + "guid": "https://www.dailymail.co.uk/news/article-12679651/Gynaecologist-mutilated-virgin-wifes-vagina-scissors-unable-sex-honeymoon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:03:07.000Z" + }, + { + "title": "Groom and dressage rider, 40, banned from driving after three-car smash as she took her mother on an errand while high on cocaine", + "link": "https://www.dailymail.co.uk/news/article-12679575/groom-dressage-rider-banned-driving-three-car-crash-high-cocaine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:52:39 GMT", + "enclosure": { + "length": "4913", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073703-0-image-m-27_1698400141842.jpg" + }, + "content": "Groom and dressage rider Caroline Hoyle, 40, has been banned from driving after she took her mother on an errand while high on cocaine and caused a three-car smash.", + "contentSnippet": "Groom and dressage rider Caroline Hoyle, 40, has been banned from driving after she took her mother on an errand while high on cocaine and caused a three-car smash.", + "guid": "https://www.dailymail.co.uk/news/article-12679575/groom-dressage-rider-banned-driving-three-car-crash-high-cocaine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:52:39.000Z" + }, + { + "title": "EXCLUSIVE: Ivanka Trump channels Jackie O as she shows off her tanned legs in a demure yellow shift dress while heading to the Four Seasons in Miami - after celebrating her wedding anniversary ALONE while Jared Kushner was in Saudi Arabia", + "link": "https://www.dailymail.co.uk/femail/article-12677533/Ivanka-Trump-channels-Jackie-O-shows-tanned-legs-demure-yellow-shift-dress-heading-Four-Seasons-Miami-enjoying-fun-night-friends.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:51:29 GMT", + "enclosure": { + "length": "10876", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77076361-0-image-a-42_1698403928074.jpg" + }, + "content": "The 41-year-old was pictured strolling into the Four Seasons hotel near her family's home on Thursday, beaming happily as she was snapped by photographers.", + "contentSnippet": "The 41-year-old was pictured strolling into the Four Seasons hotel near her family's home on Thursday, beaming happily as she was snapped by photographers.", + "guid": "https://www.dailymail.co.uk/femail/article-12677533/Ivanka-Trump-channels-Jackie-O-shows-tanned-legs-demure-yellow-shift-dress-heading-Four-Seasons-Miami-enjoying-fun-night-friends.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:51:29.000Z" + }, + { + "title": "\u00a310million German lottery winner sparks fury online with video of his policewoman girlfriend blowing her nose with a \u20ac500 note", + "link": "https://www.dailymail.co.uk/news/article-12679587/German-lottery-winner-video-policewoman-girlfriend-blowing-nose-500-note.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:43:02 GMT", + "enclosure": { + "length": "6746", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074021-0-image-m-7_1698400799037.jpg" + }, + "content": "Kursat Yildirim's 36-year-old policewoman partner is named only as Candice N. The 42-year-old, who has won multiple jackpots, and his girlfriend posted the controversial\u00a0 video on October 13.", + "contentSnippet": "Kursat Yildirim's 36-year-old policewoman partner is named only as Candice N. The 42-year-old, who has won multiple jackpots, and his girlfriend posted the controversial\u00a0 video on October 13.", + "guid": "https://www.dailymail.co.uk/news/article-12679587/German-lottery-winner-video-policewoman-girlfriend-blowing-nose-500-note.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:43:02.000Z" + }, + { + "title": "How long will YOU live for? Find out by taking this 38-question quiz devised by longevity experts", + "link": "https://www.dailymail.co.uk/health/article-12679225/Longevity-quiz-38-questions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:40:52 GMT", + "enclosure": { + "length": "3949", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074643-0-image-m-11_1698401394570.jpg" + }, + "content": "EXCLUSIVE: Dr Paul Savage, who runs a health clinic in Chicago focused on helping patients live longer, has created a 38-point quiz to gain a snapshot of a person's health.", + "contentSnippet": "EXCLUSIVE: Dr Paul Savage, who runs a health clinic in Chicago focused on helping patients live longer, has created a 38-point quiz to gain a snapshot of a person's health.", + "guid": "https://www.dailymail.co.uk/health/article-12679225/Longevity-quiz-38-questions.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:40:52.000Z" + }, + { + "title": "Heritage campaigners say \u00a31billion plan for Liverpool Street station including high-rise building from the developers of The Shard are 'insensitive and unnecessary'", + "link": "https://www.dailymail.co.uk/news/article-12679283/Heritage-campaigners-Liverpool-Street-station-redevelopment-plan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:34:26 GMT", + "enclosure": { + "length": "12293", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77071361-0-image-a-42_1698398536016.jpg" + }, + "content": "Heritage campaigners have branded the \u00a31billion plan for Liverpool Street station, which includes a high-rise building from the developers of The Shard, as 'insensitive and unnnecessary'.", + "contentSnippet": "Heritage campaigners have branded the \u00a31billion plan for Liverpool Street station, which includes a high-rise building from the developers of The Shard, as 'insensitive and unnnecessary'.", + "guid": "https://www.dailymail.co.uk/news/article-12679283/Heritage-campaigners-Liverpool-Street-station-redevelopment-plan.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:34:26.000Z" + }, + { + "title": "Moment drug dealer and his passenger lead police on 60-minute chase before capture on quiet housing estate", + "link": "https://www.dailymail.co.uk/news/article-12679599/VIDEO-Drug-dealer-caught-high-speed-pursuit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:34:13 GMT", + "enclosure": { + "length": "7974", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074483-0-image-a-35_1698402728689.jpg" + }, + "content": "Patrick McCabe, pictured, tried to escape from police during an hour-long chase across Sussex and Surrey before he attempted to flee over a garden fence after abandoning his car.", + "contentSnippet": "Patrick McCabe, pictured, tried to escape from police during an hour-long chase across Sussex and Surrey before he attempted to flee over a garden fence after abandoning his car.", + "guid": "https://www.dailymail.co.uk/news/article-12679599/VIDEO-Drug-dealer-caught-high-speed-pursuit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:34:13.000Z" + }, + { + "title": "Number of banned dogs in Britain hits 3,500 due to legal loophole - as officials move to outlaw XL Bully breed following spate of deadly attacks", + "link": "https://www.dailymail.co.uk/news/article-12678935/Britains-banned-dog-explosion-3-500-illegal-pooches-UK-1-200-past-10-years-officials-ban-huge-XL-Bully-breed-following-spate-attacks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:33:24 GMT", + "enclosure": { + "length": "6744", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/06/77022531-0-image-m-26_1698385471352.jpg" + }, + "content": "There are 3,499 banned dogs registered in the UK, government data has revealed. Almost all were pit bull terriers, with 3,316 in England and 149 in Wales.", + "contentSnippet": "There are 3,499 banned dogs registered in the UK, government data has revealed. Almost all were pit bull terriers, with 3,316 in England and 149 in Wales.", + "guid": "https://www.dailymail.co.uk/news/article-12678935/Britains-banned-dog-explosion-3-500-illegal-pooches-UK-1-200-past-10-years-officials-ban-huge-XL-Bully-breed-following-spate-attacks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:33:24.000Z" + }, + { + "title": "Police officer is suspended from driving day after video emerges of pair of cops 'watching match on high-speed 999 call'", + "link": "https://www.dailymail.co.uk/news/article-12679631/Police-officer-suspended-video-watching-football-match.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:30:39 GMT", + "enclosure": { + "length": "4696", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77027083-0-Two_officers_were_caught_watching_a_Premier_League_football_matc-a-54_1698402412793.jpg" + }, + "content": "A police officer has been suspended from driving a day after a video of two officers allegedly watching a football match on a high-speed drive to a 999 emergency.", + "contentSnippet": "A police officer has been suspended from driving a day after a video of two officers allegedly watching a football match on a high-speed drive to a 999 emergency.", + "guid": "https://www.dailymail.co.uk/news/article-12679631/Police-officer-suspended-video-watching-football-match.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:30:39.000Z" + }, + { + "title": "Pensioner, 70, charged with murder of partner, 59, at holiday park after she was found with a 'significant injury'", + "link": "https://www.dailymail.co.uk/news/article-12679757/Pensioner-70-charged-murder-partner-59-holiday-park-significant-injury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:27:43 GMT", + "enclosure": { + "length": "11450", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77046961-0-image-m-16_1698404374913.jpg" + }, + "content": "Simon Steeves, 70, has been charged with the murder of his partner at a holiday park in Brean, Somerset, after she was found with a 'significant injury'.", + "contentSnippet": "Simon Steeves, 70, has been charged with the murder of his partner at a holiday park in Brean, Somerset, after she was found with a 'significant injury'.", + "guid": "https://www.dailymail.co.uk/news/article-12679757/Pensioner-70-charged-murder-partner-59-holiday-park-significant-injury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:27:43.000Z" + }, + { + "title": "Taylor Swift: Superstar singer or marketing genius? How the Anti-Hero hitmaker became a billionaire", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679385/Taylor-Swift-Superstar-singer-marketing-genius-Anti-Hero-hitmaker-billionaire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:23:55 GMT", + "enclosure": { + "length": "10849", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074285-0-image-a-33_1698400832915.jpg" + }, + "content": "Taylor Swift, 33, has officially reached billionaire status - 17 years into her career as music's biggest superstar - but is just the success of her music that has cemented Taylor's ten-figure net worth?", + "contentSnippet": "Taylor Swift, 33, has officially reached billionaire status - 17 years into her career as music's biggest superstar - but is just the success of her music that has cemented Taylor's ten-figure net worth?", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679385/Taylor-Swift-Superstar-singer-marketing-genius-Anti-Hero-hitmaker-billionaire.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:23:55.000Z" + }, + { + "title": "Ronnie O'Sullivan reveals how his father promised he'd be 'the best snooker star in the world' in new doc... before Soho sex shop boss spent 18 years in prison for Kray driver's murder", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679635/Ronnie-OSullivan-reveals-father-promised-hed-best-snooker-star-world-new-doc-Soho-sex-shop-boss-spent-18-years-prison-Kray-drivers-murder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:23:14 GMT", + "enclosure": { + "length": "9283", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075233-0-image-m-78_1698402017292.jpg" + }, + "content": "Ronnie O'Sullivan has spoken about his convict father's encouragement at the start of his snooker career when he was just 10.\u00a0", + "contentSnippet": "Ronnie O'Sullivan has spoken about his convict father's encouragement at the start of his snooker career when he was just 10.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679635/Ronnie-OSullivan-reveals-father-promised-hed-best-snooker-star-world-new-doc-Soho-sex-shop-boss-spent-18-years-prison-Kray-drivers-murder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:23:14.000Z" + }, + { + "title": "Tyson Fury breaks silence on missing birth of seventh baby with wife Paris Fury: 'Daddy's gotta do what daddy's gotta do'", + "link": "https://www.dailymail.co.uk/news/article-12679563/Tyson-Fury-breaks-silence-missing-birth-seventh-baby-wife-Paris-Fury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:20:22 GMT", + "enclosure": { + "length": "7954", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77073389-0-image-m-56_1698402718738.jpg" + }, + "content": "The English heavyweight boxing champion, 35, and his wife Paris, 33, welcomed Prince Rico Paris Fury to their ever growing brood last month.", + "contentSnippet": "The English heavyweight boxing champion, 35, and his wife Paris, 33, welcomed Prince Rico Paris Fury to their ever growing brood last month.", + "guid": "https://www.dailymail.co.uk/news/article-12679563/Tyson-Fury-breaks-silence-missing-birth-seventh-baby-wife-Paris-Fury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:20:22.000Z" + }, + { + "title": "Union bosses demands new rules barring MPs from Parliament if they are arrested after Tory ex-minister Crispin Blunt is quizzed on suspicion of rape", + "link": "https://www.dailymail.co.uk/news/article-12679779/Union-bosses-demands-new-rules-barring-MPs-Parliament-arrested-Tory-ex-minister-Crispin-Blunt-quizzed-suspicion-rape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:13:17 GMT", + "enclosure": { + "length": "5569", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77076491-0-image-m-35_1698404373638.jpg" + }, + "content": "Crispin Blunt, the long-serving MP for Reigate, last night named himself as the MP arrested in connection with an allegation of rape.", + "contentSnippet": "Crispin Blunt, the long-serving MP for Reigate, last night named himself as the MP arrested in connection with an allegation of rape.", + "guid": "https://www.dailymail.co.uk/news/article-12679779/Union-bosses-demands-new-rules-barring-MPs-Parliament-arrested-Tory-ex-minister-Crispin-Blunt-quizzed-suspicion-rape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:13:17.000Z" + }, + { + "title": "Touching moment blind dog named Molly who was missing for three days is reunited with her owner after drone tracked her down", + "link": "https://www.dailymail.co.uk/news/article-12679521/Touching-moment-blind-dog-named-Molly-missing-three-days-reunited-owner-drone-tracked-down.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:12:32 GMT", + "enclosure": { + "length": "6887", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075187-0-image-m-62_1698403688423.jpg" + }, + "content": "Footage captured by the drone shows Molly roaming around a paddock in Tissington, Derbyshire, before her owner pulls up and the two are finally reunited.", + "contentSnippet": "Footage captured by the drone shows Molly roaming around a paddock in Tissington, Derbyshire, before her owner pulls up and the two are finally reunited.", + "guid": "https://www.dailymail.co.uk/news/article-12679521/Touching-moment-blind-dog-named-Molly-missing-three-days-reunited-owner-drone-tracked-down.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:12:32.000Z" + }, + { + "title": "Taylor Swift fans speculate Harry Styles is 'lying traitor' she sings about on new song as wild theories circulate about her and Dianna Agron", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679193/Taylor-Swift-fans-speculate-Harry-Styles-lying-traitor-sings-new-song-wild-theories-circulate-Dianna-Agron.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:11:12 GMT", + "enclosure": { + "length": "11603", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072519-0-image-a-85_1698397545405.jpg" + }, + "content": "The singer, 33, has dropped previously unreleased songs on the new version of her fifth album 1989 which took her career to new heights when it came out in 2014.", + "contentSnippet": "The singer, 33, has dropped previously unreleased songs on the new version of her fifth album 1989 which took her career to new heights when it came out in 2014.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679193/Taylor-Swift-fans-speculate-Harry-Styles-lying-traitor-sings-new-song-wild-theories-circulate-Dianna-Agron.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:11:12.000Z" + }, + { + "title": "The pram fit for a prince (or princess!): From Queen Elizabeth to Diana and George, how Silver Cross buggies have carried generations of royal babies - and now James Middleton's child has got one too", + "link": "https://www.dailymail.co.uk/femail/article-12679527/A-gift-Kate-Princess-Wales-brother-James-Middleton-wife-Alizee-Thevenet-walk-newborn-795-Silver-Cross-pram-brand-loved-royals-century.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:10:02 GMT", + "enclosure": { + "length": "12144", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074889-0-image-a-1_1698401913082.jpg" + }, + "content": "The Princess of Wales' brother James Middleton was spotted walking around Notting Hill on Tuesday alongside his wife Alizee Thevenet and their first child.", + "contentSnippet": "The Princess of Wales' brother James Middleton was spotted walking around Notting Hill on Tuesday alongside his wife Alizee Thevenet and their first child.", + "guid": "https://www.dailymail.co.uk/femail/article-12679527/A-gift-Kate-Princess-Wales-brother-James-Middleton-wife-Alizee-Thevenet-walk-newborn-795-Silver-Cross-pram-brand-loved-royals-century.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:10:02.000Z" + }, + { + "title": "I converted a Ford Fiesta into my permanent home for less than \u00a32,000 - now I shower in the gym and cook on a camping stove but I love my nomadic lifestyle", + "link": "https://www.dailymail.co.uk/femail/article-12679189/I-converted-Ford-Fiesta-permanent-home-2-000-shower-gym-cook-camping-stove-love-nomadic-lifestyle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:07:59 GMT", + "enclosure": { + "length": "11131", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072301-0-image-a-8_1698397327223.jpg" + }, + "content": "Yavor Dantzarov, 33, from Bulgaria was renting a shoebox flat in South London for \u00a3600 - but decided to get creative when he was was kicked out, after moving from Eastbourne in June 2023.", + "contentSnippet": "Yavor Dantzarov, 33, from Bulgaria was renting a shoebox flat in South London for \u00a3600 - but decided to get creative when he was was kicked out, after moving from Eastbourne in June 2023.", + "guid": "https://www.dailymail.co.uk/femail/article-12679189/I-converted-Ford-Fiesta-permanent-home-2-000-shower-gym-cook-camping-stove-love-nomadic-lifestyle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:07:59.000Z" + }, + { + "title": "Yoga teacher and her catering boss husband who were exiled from local wine society by 'nimby' neighbours are forced to sell their \u00a31.5m home to pay \u00a3150k legal bill after losing court battle over redevelopment plans", + "link": "https://www.dailymail.co.uk/news/article-12679379/couple-exiled-oxshott-wine-society-forced-sell-home-neighbour-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:04:57 GMT", + "enclosure": { + "length": "6574", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77071937-0-Mrs_McGuinness_41_was_formerly_a_competitive_figure_skater_but_h-a-5_1698401928986.jpg" + }, + "content": "Yoga teacher Emma McGuiness and her catering boss husband Terence McGuinness, from Oxshott, will have to pay the sum following a planning dispute.", + "contentSnippet": "Yoga teacher Emma McGuiness and her catering boss husband Terence McGuinness, from Oxshott, will have to pay the sum following a planning dispute.", + "guid": "https://www.dailymail.co.uk/news/article-12679379/couple-exiled-oxshott-wine-society-forced-sell-home-neighbour-row.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:04:57.000Z" + }, + { + "title": "Did Maine gunman Robert Card target deaf friends? Killer had recently been given hearing aids and claimed they let him hear people criticizing him at the bowling alley and bar where he murdered four deaf friends and 14 others", + "link": "https://www.dailymail.co.uk/news/article-12679215/Did-Maine-gunman-target-deaf-friends-Robert-Card-recently-given-hearing-aids-claimed-let-hear-people-criticizing-bowling-alley-bar-murdered-three-deaf-friends-15-others.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 11:02:44 GMT", + "enclosure": { + "length": "4886", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77025447-0-image-m-13_1698394006582.jpg" + }, + "content": "Maine mass shooting suspect Robert Card had recently been prescribed with hearing aids and struggled with mental health.", + "contentSnippet": "Maine mass shooting suspect Robert Card had recently been prescribed with hearing aids and struggled with mental health.", + "guid": "https://www.dailymail.co.uk/news/article-12679215/Did-Maine-gunman-target-deaf-friends-Robert-Card-recently-given-hearing-aids-claimed-let-hear-people-criticizing-bowling-alley-bar-murdered-three-deaf-friends-15-others.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T11:02:44.000Z" + }, + { + "title": "Revealed: The new tool for landing cheap 5-star hotel stays around the world - with prices from just \u00a390", + "link": "https://www.dailymail.co.uk/travel/article-12679203/The-new-tool-landing-cheap-5-star-hotel-stays-world-prices-just-90.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:59:12 GMT", + "enclosure": { + "length": "6544", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77071225-0-In_Colombo_Sri_Lanka_the_average_price_for_a_double_room_in_a_fi-a-6_1698400462191.jpg" + }, + "content": "If you're dreaming of a luxury holiday but funds are limited, you're in luck - Kayak's new '5-Star Steals' tool is designed to help travellers 'enjoy luxury stays for less'.", + "contentSnippet": "If you're dreaming of a luxury holiday but funds are limited, you're in luck - Kayak's new '5-Star Steals' tool is designed to help travellers 'enjoy luxury stays for less'.", + "guid": "https://www.dailymail.co.uk/travel/article-12679203/The-new-tool-landing-cheap-5-star-hotel-stays-world-prices-just-90.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:59:12.000Z" + }, + { + "title": "King Charles has gone from 'confused' young man to a monarch 'comfortable' in his own skin who is like 'the nation's grandfather' thanks to Queen Camilla, experts tell PALACE CONFIDENTIAL ahead of his 75th birthday", + "link": "https://www.dailymail.co.uk/femail/article-12679155/charles-palace-confidential-confused.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:53:59 GMT", + "enclosure": { + "length": "11519", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073851-0-image-a-8_1698399597036.jpg" + }, + "content": "Speaking in a special episode of Palace Confidential to celebrate the monarch's 75th birthday next month, Richard Kay shared how Charles has become 'very comfortable in his skin'.", + "contentSnippet": "Speaking in a special episode of Palace Confidential to celebrate the monarch's 75th birthday next month, Richard Kay shared how Charles has become 'very comfortable in his skin'.", + "guid": "https://www.dailymail.co.uk/femail/article-12679155/charles-palace-confidential-confused.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:53:59.000Z" + }, + { + "title": "The secrets of the world's best first-class cabin revealed: Travel expert goes behind the scenes at Singapore Airlines to discover how it creates its '5-star hotel in the sky' experience", + "link": "https://www.dailymail.co.uk/travel/article-12649559/The-secrets-worlds-best-class-cabin-revealed-Travel-expert-goes-scenes-Singapore-Airlines.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:53:55 GMT", + "enclosure": { + "length": "5460", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/76991523-0-image-a-18_1698394287333.jpg" + }, + "content": "It's been named the World's Best Airline at the 'Oscars of Aviation'. The secrets to its success? Coming right up, courtesy of The Points Guy.", + "contentSnippet": "It's been named the World's Best Airline at the 'Oscars of Aviation'. The secrets to its success? Coming right up, courtesy of The Points Guy.", + "guid": "https://www.dailymail.co.uk/travel/article-12649559/The-secrets-worlds-best-class-cabin-revealed-Travel-expert-goes-scenes-Singapore-Airlines.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:53:55.000Z" + }, + { + "title": "Posters of OnlyFans model who claims she was forced to pose naked after losing her job following collapse of the Middletons' family business are put up around the couple's Berkshire village", + "link": "https://www.dailymail.co.uk/news/article-12679251/onlyfans-model-hate-campaign-kate-middleton-family-party-pieces-bucklebury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:52:13 GMT", + "enclosure": { + "length": "4548", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072601-0-image-m-34_1698397737069.jpg" + }, + "content": "The outrageous signs have been put up around\u00a0Carole and Michael Middleton's home village of Bucklebury in Berkshire.", + "contentSnippet": "The outrageous signs have been put up around\u00a0Carole and Michael Middleton's home village of Bucklebury in Berkshire.", + "guid": "https://www.dailymail.co.uk/news/article-12679251/onlyfans-model-hate-campaign-kate-middleton-family-party-pieces-bucklebury.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:52:13.000Z" + }, + { + "title": "Inside the luxury \u00a310m lighthouse which appeared on 'saddest ever' Grand Designs episode - as it's listed on the market again", + "link": "https://www.dailymail.co.uk/property/article-12679503/luxury-lighthouse-grand-designs-property-listing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:50:12 GMT", + "enclosure": { + "length": "8691", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77074025-0-image-a-4_1698400070842.jpg" + }, + "content": "Located on a clifftop near the idyllic seaside town of Croyde, Devon,\u00a0Chesil Cliff House, the white art-deco style lighthouse has been listed by estate agent Knight Frank, via Rightmove.", + "contentSnippet": "Located on a clifftop near the idyllic seaside town of Croyde, Devon,\u00a0Chesil Cliff House, the white art-deco style lighthouse has been listed by estate agent Knight Frank, via Rightmove.", + "guid": "https://www.dailymail.co.uk/property/article-12679503/luxury-lighthouse-grand-designs-property-listing.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:50:12.000Z" + }, + { + "title": "London rental or plush prison? Letting agent devises a game comparing dire rooms to rent in the capital with cosy-looking jail cells around the world - but can YOU tell which is which?", + "link": "https://www.dailymail.co.uk/femail/article-12679149/London-rental-plush-prison-Letting-agent-devises-game-comparing-dire-rooms-rent-capital-cosy-looking-jail-cells-world-tell-which.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:46:01 GMT", + "enclosure": { + "length": "9555", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075633-0-image-a-16_1698402794035.jpg" + }, + "content": "A difficult game of spot-the-difference posted by London letting agent, Bob Makler, has left Londoners begging to stay in a luxurious prison cell instead.", + "contentSnippet": "A difficult game of spot-the-difference posted by London letting agent, Bob Makler, has left Londoners begging to stay in a luxurious prison cell instead.", + "guid": "https://www.dailymail.co.uk/femail/article-12679149/London-rental-plush-prison-Letting-agent-devises-game-comparing-dire-rooms-rent-capital-cosy-looking-jail-cells-world-tell-which.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:46:01.000Z" + }, + { + "title": "Revealed - Kim Kardashian's British 'manny': How Arsenal-loving Brit and his glamorous wife befriend the celebrity icon, partied with her in Dublin and took her kids to see the Gunners", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679353/kim-kardashian-british-manny-revealed-arsenal-wife-party-dublin-kids-red-devils.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:44:47 GMT", + "enclosure": { + "length": "10504", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77074019-0-image-a-27_1698400985866.jpg" + }, + "content": "A British couple have become close friends with Kim Kardashian - after she befriended the glamorous wife on social jaunts then employed the husband as her children's 'manny', MailOnline can reveal.", + "contentSnippet": "A British couple have become close friends with Kim Kardashian - after she befriended the glamorous wife on social jaunts then employed the husband as her children's 'manny', MailOnline can reveal.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679353/kim-kardashian-british-manny-revealed-arsenal-wife-party-dublin-kids-red-devils.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:44:47.000Z" + }, + { + "title": "Nigel Farage slams 'whitewash' report that finds 'serious failings' in the way NatWest shut down his account at posh bank Coutts but rules decision was legal", + "link": "https://www.dailymail.co.uk/news/article-12679165/Nigel-Farage-slams-whitewash-report-NatWest-Coutts-debanking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:41:35 GMT", + "enclosure": { + "length": "9055", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/08/77069465-0-image-a-10_1698390916138.jpg" + }, + "content": "An independent review of the decision by NatWest Group ruled that while there were 'serious failings' in the way he was 'debanked', it was mainly a commercial decision.", + "contentSnippet": "An independent review of the decision by NatWest Group ruled that while there were 'serious failings' in the way he was 'debanked', it was mainly a commercial decision.", + "guid": "https://www.dailymail.co.uk/news/article-12679165/Nigel-Farage-slams-whitewash-report-NatWest-Coutts-debanking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:41:35.000Z" + }, + { + "title": "You can see the chatbot now: NHS patients get mental health treatment referrals from AI chatbot", + "link": "https://www.dailymail.co.uk/health/article-12671653/You-chatbot-NHS-patients-referred-AI-chatbot-mental-health-treatment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:39:35 GMT", + "enclosure": { + "length": "3912", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/02/77021315-0-image-m-7_1698370182400.jpg" + }, + "content": "NHS patients are now getting referrals for mental health treatment by an AI chatbot - but those behind the tech insist they're 'not trying to replace' therapists.", + "contentSnippet": "NHS patients are now getting referrals for mental health treatment by an AI chatbot - but those behind the tech insist they're 'not trying to replace' therapists.", + "guid": "https://www.dailymail.co.uk/health/article-12671653/You-chatbot-NHS-patients-referred-AI-chatbot-mental-health-treatment.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:39:35.000Z" + }, + { + "title": "Luxury watch thefts on the rise - but \u00a33m of them were recovered last year by a team of specialist hunters, including this \u00a321k Rolex...", + "link": "https://www.dailymail.co.uk/money/beatthescammers/article-12676157/Luxury-watch-thefts-rise-1m-recovered-year-team-specialist-hunters-including-21k-Rolex.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:38:51 GMT", + "enclosure": { + "length": "5218", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77037435-0-image-a-3_1698335455704.jpg" + }, + "content": "The latest figures from The Watch Register show that there were 6,815 watches newly recorded as being missing or stolen in 2022, a 60 per cent rise from 2021.", + "contentSnippet": "The latest figures from The Watch Register show that there were 6,815 watches newly recorded as being missing or stolen in 2022, a 60 per cent rise from 2021.", + "guid": "https://www.dailymail.co.uk/money/beatthescammers/article-12676157/Luxury-watch-thefts-rise-1m-recovered-year-team-specialist-hunters-including-21k-Rolex.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:38:51.000Z" + }, + { + "title": "The cars most likely to be stolen: Motors most targeted by thieves are revealed and they're NOT luxury Ferraris or Porsches - but will YOUR insurance actually pay out?", + "link": "https://www.dailymail.co.uk/money/cars/article-12679221/cars-thieves-steal-revealed-not-ferrari-porsche-motor-thefts-britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:36:17 GMT", + "enclosure": { + "length": "12187", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77071695-0-image-m-57_1698396621679.jpg" + }, + "content": "Black Land Rovers are the now most commonly stolen vehicles ahead of blue Fords while cars made in 2016 are most likely to be taken, according to Tesco Bank's insurance data.", + "contentSnippet": "Black Land Rovers are the now most commonly stolen vehicles ahead of blue Fords while cars made in 2016 are most likely to be taken, according to Tesco Bank's insurance data.", + "guid": "https://www.dailymail.co.uk/money/cars/article-12679221/cars-thieves-steal-revealed-not-ferrari-porsche-motor-thefts-britain.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:36:17.000Z" + }, + { + "title": "I vant to drink your milk! 'Vampire cat' Toivo looks just like a furry Dracula", + "link": "https://www.dailymail.co.uk/news/article-12679397/My-vampire-cat-fangtastic-Toivo-oriental-shorthair-looks-just-like-furry-Dracula.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:35:13 GMT", + "enclosure": { + "length": "9618", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072171-0-image-a-6_1698397800653.jpg" + }, + "content": "The creepy cat from Finland can be seeing posing next to a pumpkin and spooking out his housemates with his jet-black fur and piercing golden eyes.", + "contentSnippet": "The creepy cat from Finland can be seeing posing next to a pumpkin and spooking out his housemates with his jet-black fur and piercing golden eyes.", + "guid": "https://www.dailymail.co.uk/news/article-12679397/My-vampire-cat-fangtastic-Toivo-oriental-shorthair-looks-just-like-furry-Dracula.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:35:13.000Z" + }, + { + "title": "Britain's being battered by a... poo-nami! 'Unprecedented' outbreak of diarrhoea-causing parasite that can spread in SWIMMING POOLS alarms health chiefs", + "link": "https://www.dailymail.co.uk/health/article-12679199/Britains-battered-poo-nami-Unprecedented-outbreak-diarrhoea-causing-parasite-spread-SWIMMING-POOLS-alarms-health-chiefs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:33:26 GMT", + "enclosure": { + "length": "11027", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77071335-0-image-m-16_1698397271214.jpg" + }, + "content": "UK health agencies suspect Brits are catching the bug while on sun-seeking holidays in countries like Spain with infected swimming pool water one of the likely routes of infection.", + "contentSnippet": "UK health agencies suspect Brits are catching the bug while on sun-seeking holidays in countries like Spain with infected swimming pool water one of the likely routes of infection.", + "guid": "https://www.dailymail.co.uk/health/article-12679199/Britains-battered-poo-nami-Unprecedented-outbreak-diarrhoea-causing-parasite-spread-SWIMMING-POOLS-alarms-health-chiefs.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:33:26.000Z" + }, + { + "title": "'Super mafia' fears as leading figures from Italy's three most powerful mobs - 'Ndrangheta, Camorra and Cosa Nostra - are seen sharing a meal of wine and pasta together", + "link": "https://www.dailymail.co.uk/news/article-12679141/Mafia-Italy-powerful-Ndrangheta-Camorra-Cosa-Nostra.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:29:23 GMT", + "enclosure": { + "length": "8107", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77073431-0-image-m-29_1698400855217.jpg" + }, + "content": "There are fears Italy's\u00a0three most powerful mafia groups may have formed a formidable alliance after images emerge of leading figures sharing a meal together.", + "contentSnippet": "There are fears Italy's\u00a0three most powerful mafia groups may have formed a formidable alliance after images emerge of leading figures sharing a meal together.", + "guid": "https://www.dailymail.co.uk/news/article-12679141/Mafia-Italy-powerful-Ndrangheta-Camorra-Cosa-Nostra.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:29:23.000Z" + }, + { + "title": "Luxury black cab fit for a king includes a fridge, Apple TV and first class plane-style seats and could be yours for just... \u00a3141,331.25", + "link": "https://www.dailymail.co.uk/money/cars/article-12679247/Luxury-car-dealership-offers-139k-London-taxi-fitted-fridge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:25:12 GMT", + "enclosure": { + "length": "7288", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072671-0-image-a-4_1698397855336.jpg" + }, + "content": "Celebrities such as Stephen Fry, Kate Moss and Noel Edmonds all have owned former black London taxis because of the anonymity the vehicles provide when touring the capital.", + "contentSnippet": "Celebrities such as Stephen Fry, Kate Moss and Noel Edmonds all have owned former black London taxis because of the anonymity the vehicles provide when touring the capital.", + "guid": "https://www.dailymail.co.uk/money/cars/article-12679247/Luxury-car-dealership-offers-139k-London-taxi-fitted-fridge.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:25:12.000Z" + }, + { + "title": "Tourist dies and three others are injured when 30ft-high glass walkway shatters at Indonesian beauty spot", + "link": "https://www.dailymail.co.uk/news/article-12679513/Tourist-dies-three-injured-glass-walkway-shatters-Indonesia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:24:55 GMT", + "enclosure": { + "length": "9399", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77075123-0-image-m-18_1698402022825.jpg" + }, + "content": "The tragedy struck while 11 tourists from Cilacep, Central Java, were crossing the Geong bridge around 10am on Wednesday, some 30ft (10m) off the forest floor.", + "contentSnippet": "The tragedy struck while 11 tourists from Cilacep, Central Java, were crossing the Geong bridge around 10am on Wednesday, some 30ft (10m) off the forest floor.", + "guid": "https://www.dailymail.co.uk/news/article-12679513/Tourist-dies-three-injured-glass-walkway-shatters-Indonesia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:24:55.000Z" + }, + { + "title": "Gang which set up fake prescription delivery firm as a front for drug trafficking empire so it could get around lockdown restrictions during Covid pandemic is jailed", + "link": "https://www.dailymail.co.uk/news/article-12679373/Gang-jailed-creating-fake-company-drug-trafficking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:24:12 GMT", + "enclosure": { + "length": "6539", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073795-0-image-m-21_1698400185580.jpg" + }, + "content": "The organised crime group\u00a0crumbled after police searched a VW Scirrocco used by the gang's leader Kurt Bradshaw, 30, and found a haul of cannabis in bin liners plus.", + "contentSnippet": "The organised crime group\u00a0crumbled after police searched a VW Scirrocco used by the gang's leader Kurt Bradshaw, 30, and found a haul of cannabis in bin liners plus.", + "guid": "https://www.dailymail.co.uk/news/article-12679373/Gang-jailed-creating-fake-company-drug-trafficking.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:24:12.000Z" + }, + { + "title": "Billboard advert for flooring firm with a woman next to slogan 'it's so easy to lay' is removed after campaigners said it 'perpetuates the culture of rape'", + "link": "https://www.dailymail.co.uk/news/article-12679245/Billboard-flooring-woman-slogan-easy-lay-removed-campaigners-culture-rape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:19:52 GMT", + "enclosure": { + "length": "7240", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77070905-0-image-m-13_1698396327666.jpg" + }, + "content": "Garage Floors Direct in Manningtree, Essex, put up an advert showing a woman in a 'tiny dress and high heels' in a garage, captioned with the slogan: 'It's so easy to lay'.", + "contentSnippet": "Garage Floors Direct in Manningtree, Essex, put up an advert showing a woman in a 'tiny dress and high heels' in a garage, captioned with the slogan: 'It's so easy to lay'.", + "guid": "https://www.dailymail.co.uk/news/article-12679245/Billboard-flooring-woman-slogan-easy-lay-removed-campaigners-culture-rape.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:19:52.000Z" + }, + { + "title": "China releases clips of 'provocative' actions by USS Ralph Johnson", + "link": "https://www.dailymail.co.uk/galleries/article-12679687/China-releases-clips-provocative-actions-USS-Ralph-Johnson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:19:08 GMT", + "enclosure": { + "length": "5391", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/11/77050089-0-image-a-94_1698401832548.jpg" + }, + "content": "China has released footage of 'provocative' actions taken by a US warship\u00a0in the South China Sea as tensions continue to escalate in the region between the two nations.", + "contentSnippet": "China has released footage of 'provocative' actions taken by a US warship\u00a0in the South China Sea as tensions continue to escalate in the region between the two nations.", + "guid": "https://www.dailymail.co.uk/galleries/article-12679687/China-releases-clips-provocative-actions-USS-Ralph-Johnson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:19:08.000Z" + }, + { + "title": "The Crown recreates one of the last ever photos of Princess Diana on Mohamed Al-Fayed's yacht just a week before her death - as Netflix also shares a glimpse of her romance with Dodi", + "link": "https://www.dailymail.co.uk/femail/article-12679255/The-Crown-recreates-one-photos-Princess-Diana-Mohamed-Al-Fayeds-yacht-just-week-death-Netflix-shares-glimpse-romance-Dodi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:03:36 GMT", + "enclosure": { + "length": "8717", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073779-0-image-a-18_1698399475197.jpg" + }, + "content": "The final series of the Netflix series features Diana in the South of France as it's set to recreate poignant moments from her final days.", + "contentSnippet": "The final series of the Netflix series features Diana in the South of France as it's set to recreate poignant moments from her final days.", + "guid": "https://www.dailymail.co.uk/femail/article-12679255/The-Crown-recreates-one-photos-Princess-Diana-Mohamed-Al-Fayeds-yacht-just-week-death-Netflix-shares-glimpse-romance-Dodi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:03:36.000Z" + }, + { + "title": "True or false? EVs are cheaper to service, maintain and repair than petrol and diesel cars", + "link": "https://www.dailymail.co.uk/money/electriccars/article-12671771/True-false-EVs-cheaper-service-maintain-repair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 10:00:35 GMT", + "enclosure": { + "length": "11881", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77071525-0-image-a-53_1698395906585.jpg" + }, + "content": "There is a general consensus that electric vehicles have cheaper servicing and maintenance costs than petrol and diesel cars because there are fewer moving parts to go wrong.", + "contentSnippet": "There is a general consensus that electric vehicles have cheaper servicing and maintenance costs than petrol and diesel cars because there are fewer moving parts to go wrong.", + "guid": "https://www.dailymail.co.uk/money/electriccars/article-12671771/True-false-EVs-cheaper-service-maintain-repair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T10:00:35.000Z" + }, + { + "title": "Wilko will return to the high street! The Range announces five new stores will open before Christmas - after discount chain collapsed into administration", + "link": "https://www.dailymail.co.uk/news/article-12679039/Wilko-high-street-stores-locations-Range-UK-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:58:37 GMT", + "enclosure": { + "length": "10094", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068449-0-A_Wilko_store_in_Slough_Berkshire_which_was_one_of_the_400_shops-a-11_1698388137004.jpg" + }, + "content": "The first two new Wilko stores will be in Plymouth and Exeter in Devon, followed by two unidentified sites in the South East and one in the North to be revealed 'imminently'.", + "contentSnippet": "The first two new Wilko stores will be in Plymouth and Exeter in Devon, followed by two unidentified sites in the South East and one in the North to be revealed 'imminently'.", + "guid": "https://www.dailymail.co.uk/news/article-12679039/Wilko-high-street-stores-locations-Range-UK-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:58:37.000Z" + }, + { + "title": "John Lennon murder witnesses will speak publicly for the first time about the night the Beatle legend was shot dead by Mark David Chapman in new Apple TV documentary about killing", + "link": "https://www.dailymail.co.uk/news/article-12679319/john-lennon-murder-witnesses-speak-mark-david-chaptman-apple-tv-documentary-beatles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:57:42 GMT", + "enclosure": { + "length": "6227", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77072025-0-image-m-20_1698396909020.jpg" + }, + "content": "A new documentary on the murder by Apple TV+ titled 'John Lennon: Murder Without a Trial' will reveal previously unseen crime scene photographs that shed light on the killing of the Beatles star.", + "contentSnippet": "A new documentary on the murder by Apple TV+ titled 'John Lennon: Murder Without a Trial' will reveal previously unseen crime scene photographs that shed light on the killing of the Beatles star.", + "guid": "https://www.dailymail.co.uk/news/article-12679319/john-lennon-murder-witnesses-speak-mark-david-chaptman-apple-tv-documentary-beatles.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:57:42.000Z" + }, + { + "title": "Would YOU survive a zombie apocalypse? Scientists reveal how long it would take a plague to spread through a city - with terrifying results", + "link": "https://www.dailymail.co.uk/sciencetech/article-12679427/Would-survive-zombie-apocalypse-Scientists-reveal-long-plague-spread-city-terrifying-results.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:46:49 GMT", + "enclosure": { + "length": "7486", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77073473-0-image-m-136_1698399319125.jpg" + }, + "content": "What would happen if a zombie takeover happened in the real world? In a new study, researchers at Aalto University set out to answer this question - with terrifying results.", + "contentSnippet": "What would happen if a zombie takeover happened in the real world? In a new study, researchers at Aalto University set out to answer this question - with terrifying results.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12679427/Would-survive-zombie-apocalypse-Scientists-reveal-long-plague-spread-city-terrifying-results.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:46:49.000Z" + }, + { + "title": "I was born with one hand it makes dating difficult - men used to ghost me because of my disability but now I'm proud to look different", + "link": "https://www.dailymail.co.uk/femail/article-12679263/one-handed-woman-ghosted-men-disability-embarrassed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:45:53 GMT", + "enclosure": { + "length": "9616", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072815-0-image-a-48_1698398172914.jpg" + }, + "content": "Leona Brown, 31, from Middlesbrough, was born with Symbrachydactyly, which affects a single upper limb and can cause some fingers to be undeveloped or not to develop at all.", + "contentSnippet": "Leona Brown, 31, from Middlesbrough, was born with Symbrachydactyly, which affects a single upper limb and can cause some fingers to be undeveloped or not to develop at all.", + "guid": "https://www.dailymail.co.uk/femail/article-12679263/one-handed-woman-ghosted-men-disability-embarrassed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:45:53.000Z" + }, + { + "title": "How many fines did YOUR council dish out to drivers? Map reveals which London authorities handed out most penalties - as figures show 7.6million were issued last year", + "link": "https://www.dailymail.co.uk/news/article-12678997/London-penalty-charge-notices-fines-Sadiq-Khan-TfL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:41:00 GMT", + "enclosure": { + "length": "8410", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77070957-0-image-m-12_1698394338568.jpg" + }, + "content": "Some 7,599,875 penalty charge notices were issued by Transport for London (TfL) and the capital's 33 councils in 2022/23, up 1.7 per cent on the previous 12 months.", + "contentSnippet": "Some 7,599,875 penalty charge notices were issued by Transport for London (TfL) and the capital's 33 councils in 2022/23, up 1.7 per cent on the previous 12 months.", + "guid": "https://www.dailymail.co.uk/news/article-12678997/London-penalty-charge-notices-fines-Sadiq-Khan-TfL.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:41:00.000Z" + }, + { + "title": "Rishi Sunak warned China could send 'very nasty, dodgy people' to Britain for next week's AI summit - as Cabinet minister insists it's not 'embarrassing' that US, German, French and Canadian leaders might stay away", + "link": "https://www.dailymail.co.uk/news/article-12679519/Rishi-Sunak-warned-China-send-nasty-dodgy-people-Britain-weeks-AI-summit-Cabinet-minister-insists-not-embarrassing-German-French-Canadian-leaders-stay-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:38:41 GMT", + "enclosure": { + "length": "6359", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77034349-0-image-m-24_1698399418399.jpg" + }, + "content": "Former Tory leader Sir Iain Duncan Smith continued a backlash against the Prime Minister's decision to allow representatives from Beijing to attend the gathering.", + "contentSnippet": "Former Tory leader Sir Iain Duncan Smith continued a backlash against the Prime Minister's decision to allow representatives from Beijing to attend the gathering.", + "guid": "https://www.dailymail.co.uk/news/article-12679519/Rishi-Sunak-warned-China-send-nasty-dodgy-people-Britain-weeks-AI-summit-Cabinet-minister-insists-not-embarrassing-German-French-Canadian-leaders-stay-away.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:38:41.000Z" + }, + { + "title": "Father and his 14-year-old son are among 18 Maine mass shooting victims after pair were gunned down at Lewiston bowling alley - where manager was also killed", + "link": "https://www.dailymail.co.uk/news/article-12676291/Maine-Lewiston-shooting-victims.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:37:09 GMT", + "enclosure": { + "length": "7318", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/04/77062611-0-image-m-8_1698377844474.jpg" + }, + "content": "Bob Violette, 76, was killed in the massacre that erupted inside Sparetime Recreation bowling alley and Schemengees Bar and Grille , according to his daughter-in-law Cassandra.", + "contentSnippet": "Bob Violette, 76, was killed in the massacre that erupted inside Sparetime Recreation bowling alley and Schemengees Bar and Grille , according to his daughter-in-law Cassandra.", + "guid": "https://www.dailymail.co.uk/news/article-12676291/Maine-Lewiston-shooting-victims.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:37:09.000Z" + }, + { + "title": "JustGiving page raises more than \u00a352,000 for two Met Police officers sacked over stop and search of Team GB star Bianca Williams and her athlete partner Ricardo Dos Santos", + "link": "https://www.dailymail.co.uk/news/article-12677007/just-giving-page-raises-money-met-officers-sacked-stop-search-bianca-williams-partner-ricardo-dos-santos.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:31:40 GMT", + "enclosure": { + "length": "10305", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/19/77046709-0-image-m-28_1698344767348.jpg" + }, + "content": "The Portuguese Olympian, 28, and Team GB world championship medallist, 29, were pulled over and handcuffed while their three-month-old baby son, Zuri, was in the back of their car on July 4, 2020.", + "contentSnippet": "The Portuguese Olympian, 28, and Team GB world championship medallist, 29, were pulled over and handcuffed while their three-month-old baby son, Zuri, was in the back of their car on July 4, 2020.", + "guid": "https://www.dailymail.co.uk/news/article-12677007/just-giving-page-raises-money-met-officers-sacked-stop-search-bianca-williams-partner-ricardo-dos-santos.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:31:40.000Z" + }, + { + "title": "Tense moment Chinese fighter jet 'comes close to COLLIDING' with American B-52 bomber by just TEN FEET over South China Sea, sparking US fury", + "link": "https://www.dailymail.co.uk/news/article-12678957/Chinese-jet-came-close-bomber-south-china-sea.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:21:40 GMT", + "enclosure": { + "length": "4646", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068515-0-image-m-49_1698388233481.jpg" + }, + "content": "The revelation, offered by the US Indo-Pacific Command in a statement Thursday, comes as\u00a0part of what American officials have described as risky behavior by Chinese military aircraft.", + "contentSnippet": "The revelation, offered by the US Indo-Pacific Command in a statement Thursday, comes as\u00a0part of what American officials have described as risky behavior by Chinese military aircraft.", + "guid": "https://www.dailymail.co.uk/news/article-12678957/Chinese-jet-came-close-bomber-south-china-sea.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:21:40.000Z" + }, + { + "title": "Revealed: The surprising ways you're ALREADY using AI in your day-to-day life", + "link": "https://www.dailymail.co.uk/sciencetech/article-12679351/The-surprising-ways-youre-using-AI-day-day-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:19:49 GMT", + "enclosure": { + "length": "5754", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77071597-0-image-m-114_1698396079786.jpg" + }, + "content": "Experts from the Institution of Engineering and Technology surveyed over 2,000 Britons, and found that, despite its everyday use, over half of us admit to be nervous about a future with AI.", + "contentSnippet": "Experts from the Institution of Engineering and Technology surveyed over 2,000 Britons, and found that, despite its everyday use, over half of us admit to be nervous about a future with AI.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12679351/The-surprising-ways-youre-using-AI-day-day-life.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:19:49.000Z" + }, + { + "title": "Milton Keynes - the 1960s New Town showing how we may live in the future", + "link": "https://www.dailymail.co.uk/property/article-12676805/Milton-Keynes-1960s-New-Town-showing-live-future.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:19:38 GMT", + "enclosure": { + "length": "8453", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072791-0-image-a-14_1698398096430.jpg" + }, + "content": "What happens there now often rolls out to the UK in the future - but what does that mean for this city's housing market and those who live there?", + "contentSnippet": "What happens there now often rolls out to the UK in the future - but what does that mean for this city's housing market and those who live there?", + "guid": "https://www.dailymail.co.uk/property/article-12676805/Milton-Keynes-1960s-New-Town-showing-live-future.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:19:38.000Z" + }, + { + "title": "Full list of Wilko stores reopening as High Street retailer announces new shops before Christmas - is there one near you?", + "link": "https://www.dailymail.co.uk/news/article-12679275/wilko-stores-reopening-high-street-retailer-new-shops-christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:14:52 GMT", + "enclosure": { + "length": "7455", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/09/77070825-0-image-m-12_1698396474134.jpg" + }, + "content": "Wilko has announced it will open shops in a number new locations before the start of Christmas 2023. The chain seemingly ceased operations for the final time on October 8.", + "contentSnippet": "Wilko has announced it will open shops in a number new locations before the start of Christmas 2023. The chain seemingly ceased operations for the final time on October 8.", + "guid": "https://www.dailymail.co.uk/news/article-12679275/wilko-stores-reopening-high-street-retailer-new-shops-christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:14:52.000Z" + }, + { + "title": "Taylor Swift SLAMS speculation she is bisexual in prologue for 1989 re-record after THOSE Karlie Kloss rumors as she reflects on 'swearing off dating' in her mid-twenties due to harsh judgement", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12677863/Taylor-Swift-denies-bisexual-Karlie-Kloss-rumors-swearing-dating.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 09:07:57 GMT", + "enclosure": { + "length": "10498", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77052683-0-image-a-109_1698353918381.jpg" + }, + "content": "Taylor Swift penned an incredibly vulnerable prologue for her upcoming album, 1989 (Taylor's Version), in which she opens up about her sexuality and dating history.", + "contentSnippet": "Taylor Swift penned an incredibly vulnerable prologue for her upcoming album, 1989 (Taylor's Version), in which she opens up about her sexuality and dating history.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12677863/Taylor-Swift-denies-bisexual-Karlie-Kloss-rumors-swearing-dating.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T09:07:57.000Z" + }, + { + "title": "Ultimate, expert-backed guide to future-proof your HEART and keep it healthy in old age", + "link": "https://www.dailymail.co.uk/health/article-12645749/Ultimate-expert-backed-guide-future-proof-HEART-healthy-old-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:29:15 GMT", + "enclosure": { + "length": "7918", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/23/15/76896199-0-image-a-19_1698072799733.jpg" + }, + "content": "Cardiovascular disease - which includes all of the heart and circulation such as coronary heart disease, stroke and blood vessel diseases\u00a0- is among the leading causes of death and disability in the UK.", + "contentSnippet": "Cardiovascular disease - which includes all of the heart and circulation such as coronary heart disease, stroke and blood vessel diseases\u00a0- is among the leading causes of death and disability in the UK.", + "guid": "https://www.dailymail.co.uk/health/article-12645749/Ultimate-expert-backed-guide-future-proof-HEART-healthy-old-age.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:29:15.000Z" + }, + { + "title": "Fury over 'rapacious' 26% air traffic control charge hike that 'will leave passengers with higher fares for YEARS': Loganair chief blasts watchdog after it allowed NATS to increase its fees despite IT meltdown that left thousands stranded", + "link": "https://www.dailymail.co.uk/news/article-12678983/Air-traffic-control-hike-NATS-Loganair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:27:51 GMT", + "enclosure": { + "length": "7175", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068547-0-image-m-4_1698388828972.jpg" + }, + "content": "Loganair, which flies between Scottish airports and other parts of the UK, recently said something had gone 'badly wrong' in the CAA when it approved 'rapacious' new fees by Nats.", + "contentSnippet": "Loganair, which flies between Scottish airports and other parts of the UK, recently said something had gone 'badly wrong' in the CAA when it approved 'rapacious' new fees by Nats.", + "guid": "https://www.dailymail.co.uk/news/article-12678983/Air-traffic-control-hike-NATS-Loganair.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:27:51.000Z" + }, + { + "title": "Prince Albert of Monaco takes a solo trip to the US to plant a tree in Philadelphia while Charlene stays at home (and he might have popped to New York to visit son Alexandre too!)", + "link": "https://www.dailymail.co.uk/femail/article-12679069/Prince-Albert-Monaco-Philadelphia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:26:11 GMT", + "enclosure": { + "length": "11048", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/08/77069447-0-image-a-13_1698390777794.jpg" + }, + "content": "The billionaire monarch, 65, flew to Pennsylvania to meet with\u00a0Orlando Rendon the Commissioner of Philadelphia Parks & Recreation.", + "contentSnippet": "The billionaire monarch, 65, flew to Pennsylvania to meet with\u00a0Orlando Rendon the Commissioner of Philadelphia Parks & Recreation.", + "guid": "https://www.dailymail.co.uk/femail/article-12679069/Prince-Albert-Monaco-Philadelphia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:26:11.000Z" + }, + { + "title": "How Britain's fallen out of love with red meat (as well as tea, potatoes, bread and milk!): Fascinating charts show how diets have drastically changed since the 70s - and we now eat up to 80% LESS beef, pork and lamb", + "link": "https://www.dailymail.co.uk/health/article-12670203/Britains-red-meat-tea-potatoes-bread-milk-charts-diets-drastically-changed-70s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:20:41 GMT", + "enclosure": { + "length": "9781", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/15/76995659-0-image-a-8_1698328886532.jpg" + }, + "content": "EXCL: Red meat, potatoes and bread are off the menu in modern Britian, replaced by chicken, fish and fruit as data shows how the nation's dietary preferences have changed since the 70s.", + "contentSnippet": "EXCL: Red meat, potatoes and bread are off the menu in modern Britian, replaced by chicken, fish and fruit as data shows how the nation's dietary preferences have changed since the 70s.", + "guid": "https://www.dailymail.co.uk/health/article-12670203/Britains-red-meat-tea-potatoes-bread-milk-charts-diets-drastically-changed-70s.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:20:41.000Z" + }, + { + "title": "iPhone users say Apple's iOS 17.1 update is RUINING their battery life, with reports of charge draining within hours - here's what to do if your phone is affected", + "link": "https://www.dailymail.co.uk/sciencetech/article-12679253/iPhone-users-say-Apples-iOS-17-1-update-RUINING-battery-life-reports-charge-draining-hours-heres-phone-affected.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:19:25 GMT", + "enclosure": { + "length": "3612", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/08/77070295-0-image-m-96_1698392890041.jpg" + }, + "content": "While many iPhone users rushed to install the iOS 17.1 update, new reports may have you delaying the download.", + "contentSnippet": "While many iPhone users rushed to install the iOS 17.1 update, new reports may have you delaying the download.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12679253/iPhone-users-say-Apples-iOS-17-1-update-RUINING-battery-life-reports-charge-draining-hours-heres-phone-affected.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:19:25.000Z" + }, + { + "title": "The Duchy of Cate: How actress Cate Blanchett and her husband have spent nearly \u00a33million on TWO prime plots in Cornwall's 'Hollywood-On-Sea' - but furious locals accuse star of 'damaging coastal wildlife habitat' with sprawling eco-home", + "link": "https://www.dailymail.co.uk/news/article-12674423/Cate-Blanchett-husband-demolishing-cottage-Cornwalls-Hollywood-Sea-replaced-eco-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:14:36 GMT", + "enclosure": { + "length": "10191", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/08/77021753-0-image-a-30_1698306220422.jpg" + }, + "content": "EXCLUSIVE: MailOnline can reveal the actress, 54, and Andrew Upton, 56, bought an old cottage\u00a0in Mawgan Porth for \u00a31.6million in 2020 and a year later paid \u00a31.25million for a plot of land next to it.", + "contentSnippet": "EXCLUSIVE: MailOnline can reveal the actress, 54, and Andrew Upton, 56, bought an old cottage\u00a0in Mawgan Porth for \u00a31.6million in 2020 and a year later paid \u00a31.25million for a plot of land next to it.", + "guid": "https://www.dailymail.co.uk/news/article-12674423/Cate-Blanchett-husband-demolishing-cottage-Cornwalls-Hollywood-Sea-replaced-eco-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:14:36.000Z" + }, + { + "title": "Moment top Hamas spokesman storms out of BBC interview after being asked how terror group justified killing Israeli families 'as they slept'", + "link": "https://www.dailymail.co.uk/news/article-12678281/Hamas-spokesman-storms-bbc-interview-asked-justify-killing-israeli-families.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:12:34 GMT", + "enclosure": { + "length": "5054", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/01/77059559-0-image-a-13_1698366775622.jpg" + }, + "content": "The deputy foreign minister for Hamas in Gaza, Ghazi Hamad, was being grilled by the BBC's Middle East correspondent Hugo Bachega about the barbaric butchering of up to 1,500 Israelis.", + "contentSnippet": "The deputy foreign minister for Hamas in Gaza, Ghazi Hamad, was being grilled by the BBC's Middle East correspondent Hugo Bachega about the barbaric butchering of up to 1,500 Israelis.", + "guid": "https://www.dailymail.co.uk/news/article-12678281/Hamas-spokesman-storms-bbc-interview-asked-justify-killing-israeli-families.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:12:34.000Z" + }, + { + "title": "I'm an elegance coach and I blame celebrities for making sloppy fashion cool - but it can make the average person feel\u00a0worse about themselves", + "link": "https://www.dailymail.co.uk/femail/article-12663751/Im-elegance-coach-blame-celebrities-making-sloppy-fashion-cool-make-average-person-feel-worse-themselves.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:10:37 GMT", + "enclosure": { + "length": "11489", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/23/22/76911285-0-image-a-66_1698097898260.jpg" + }, + "content": "Anna Bey asked why people 'dress so poorly' these days, and criticised the 'norm' of wearing casual clothes in public. The lifestyle guru splits her time between London and Geneva.", + "contentSnippet": "Anna Bey asked why people 'dress so poorly' these days, and criticised the 'norm' of wearing casual clothes in public. The lifestyle guru splits her time between London and Geneva.", + "guid": "https://www.dailymail.co.uk/femail/article-12663751/Im-elegance-coach-blame-celebrities-making-sloppy-fashion-cool-make-average-person-feel-worse-themselves.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:10:37.000Z" + }, + { + "title": "I want to rehome my dog after he snapped at my twins' faces - but my partner is REFUSING to agree", + "link": "https://www.dailymail.co.uk/femail/article-12654217/I-want-rehome-dog-snapped-twins-faces-partner-REFUSING-agree.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:09:02 GMT", + "enclosure": { + "length": "6162", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/20/16/76808635-0-image-a-19_1697817203771.jpg" + }, + "content": "An anonymous British woman took to parenting forum Mumsnet to explain the delicate situation. Her\u00a0Border Collie has been terrorising her household-of-four for two years.", + "contentSnippet": "An anonymous British woman took to parenting forum Mumsnet to explain the delicate situation. Her\u00a0Border Collie has been terrorising her household-of-four for two years.", + "guid": "https://www.dailymail.co.uk/femail/article-12654217/I-want-rehome-dog-snapped-twins-faces-partner-REFUSING-agree.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:09:02.000Z" + }, + { + "title": "Boy, five, was given a 93% chance of surviving cancer only to relapse THREE times - as his family fly to the US and try to raise \u00a31m for highly experimental treatment in 'last chance' to save him", + "link": "https://www.dailymail.co.uk/news/article-12654291/Dillan-Ramsey-Aksehir-battling-Leukemia-treatment-US.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:08:10 GMT", + "enclosure": { + "length": "6860", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/14/77026521-0-image-m-65_1698325209740.jpg" + }, + "content": "Little Dillan Ramsey-Aksehir was diagnosed with Leukemia at age one\u00a0in May 2020 and\u00a0has since been battling the deadly disease. Now the five-year-old from London needs treatment in the US.", + "contentSnippet": "Little Dillan Ramsey-Aksehir was diagnosed with Leukemia at age one\u00a0in May 2020 and\u00a0has since been battling the deadly disease. Now the five-year-old from London needs treatment in the US.", + "guid": "https://www.dailymail.co.uk/news/article-12654291/Dillan-Ramsey-Aksehir-battling-Leukemia-treatment-US.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:08:10.000Z" + }, + { + "title": "And you thought your boss was bad! Employers appalling attempts at making their workers feel appreciated are revealed", + "link": "https://www.dailymail.co.uk/femail/article-12675899/And-thought-boss-bad-Employers-appalling-attempts-making-workers-feel-appreciated-revealed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:07:12 GMT", + "enclosure": { + "length": "9447", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/18/77044989-0-image-a-56_1698342360869.jpg" + }, + "content": "People from around the world have shared their employers' dismal attempts to make them feel appreciated and Bored Panda collated the very best into a hilarious online gallery.", + "contentSnippet": "People from around the world have shared their employers' dismal attempts to make them feel appreciated and Bored Panda collated the very best into a hilarious online gallery.", + "guid": "https://www.dailymail.co.uk/femail/article-12675899/And-thought-boss-bad-Employers-appalling-attempts-making-workers-feel-appreciated-revealed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:07:12.000Z" + }, + { + "title": "I'm a fund manager: Why Hargreaves Lansdown's Steve Clayton backs tech but not gold", + "link": "https://www.dailymail.co.uk/money/investing/article-12665969/Im-fund-manager-Hargreaves-Lansdowns-Steve-Clayton-backs-tech-not-gold.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 08:04:02 GMT", + "enclosure": { + "length": "10061", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/24/17/76945997-0-image-m-10_1698164980781.jpg" + }, + "content": "Each month, This is Money speaks with a senior fund or investment manager and puts them to task with a dozen quickfire question about where they would invest right now.", + "contentSnippet": "Each month, This is Money speaks with a senior fund or investment manager and puts them to task with a dozen quickfire question about where they would invest right now.", + "guid": "https://www.dailymail.co.uk/money/investing/article-12665969/Im-fund-manager-Hargreaves-Lansdowns-Steve-Clayton-backs-tech-not-gold.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T08:04:02.000Z" + }, + { + "title": "Hilarious moment toddler driving a bright pink toy car is pulled over by cops for 'exceeding the speed limit' and brushing her teeth at the wheel", + "link": "https://www.dailymail.co.uk/news/article-12678817/Toddler-pink-toy-car-cops-speed-limit-teeth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 07:53:08 GMT", + "enclosure": { + "length": "9563", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/06/77066491-0-image-a-27_1698382851888.jpg" + }, + "content": "Two-year-old Rose Fern broke the law as she was pulled over by the police while brushing her teeth behind the wheel of her hot pink, battery-operated mini car in Okarche, Oklahoma.", + "contentSnippet": "Two-year-old Rose Fern broke the law as she was pulled over by the police while brushing her teeth behind the wheel of her hot pink, battery-operated mini car in Okarche, Oklahoma.", + "guid": "https://www.dailymail.co.uk/news/article-12678817/Toddler-pink-toy-car-cops-speed-limit-teeth.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T07:53:08.000Z" + }, + { + "title": "Dragon's Den star Sara Davies' firm is \u00a31million in the red as entrepreneur continues to feel the effects of Covid", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679037/Dragons-Den-star-Sara-Davies-firm-1million-red-entrepreneur-continues-feel-effects-Covid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 07:49:42 GMT", + "enclosure": { + "length": "11278", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068947-0-image-a-4_1698389563216.jpg" + }, + "content": "But all is not well at Sara Davies' own company Crafter's Companion which is more than \u00a31million in the red.", + "contentSnippet": "But all is not well at Sara Davies' own company Crafter's Companion which is more than \u00a31million in the red.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679037/Dragons-Den-star-Sara-Davies-firm-1million-red-entrepreneur-continues-feel-effects-Covid.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T07:49:42.000Z" + }, + { + "title": "It's the John Fury show! Tyson's dad strips off, calls out Mike Tyson for a fight and gets involved in the face-off at press conference with Francis Ngannou ahead of the big fight", + "link": "https://www.dailymail.co.uk/sport/boxing/article-12677281/Tyson-Fury-brags-Francis-Ngannous-punch-ZERO-power-final-press-conference-Battle-Baddest-John-Fury-steals-calls-MIKE-TYSON-Riyadh.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 07:20:36 GMT", + "enclosure": { + "length": "11254", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/20/77048771-0-image-m-20_1698348936976.jpg" + }, + "content": "CHARLOTTE DALY: John Fury and Mike Tyson stole the show, exchanging verbal blows before the Gypsy King's father charged down the stage to square up to Iron Mike.", + "contentSnippet": "CHARLOTTE DALY: John Fury and Mike Tyson stole the show, exchanging verbal blows before the Gypsy King's father charged down the stage to square up to Iron Mike.", + "guid": "https://www.dailymail.co.uk/sport/boxing/article-12677281/Tyson-Fury-brags-Francis-Ngannous-punch-ZERO-power-final-press-conference-Battle-Baddest-John-Fury-steals-calls-MIKE-TYSON-Riyadh.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T07:20:36.000Z" + }, + { + "title": "What really happens when we die? Palliative care doctor on a 'mission to take away the fear' reveals the stages the body goes through", + "link": "https://www.dailymail.co.uk/femail/article-12676177/What-really-happens-die-Palliative-care-doctor-mission-away-fear-reveals-stages-body-goes-through.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 07:15:51 GMT", + "enclosure": { + "length": "10596", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77038581-0-image-a-18_1698333308282.jpg" + }, + "content": "Cheshire-born doctor Dr Kathryn Mannix, 64, appeared on BBC Woman's Hour alongside host Emma Barnett ,\u00a0to discuss\u00a0her new short animation 'Dying for Beginners'.", + "contentSnippet": "Cheshire-born doctor Dr Kathryn Mannix, 64, appeared on BBC Woman's Hour alongside host Emma Barnett ,\u00a0to discuss\u00a0her new short animation 'Dying for Beginners'.", + "guid": "https://www.dailymail.co.uk/femail/article-12676177/What-really-happens-die-Palliative-care-doctor-mission-away-fear-reveals-stages-body-goes-through.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T07:15:51.000Z" + }, + { + "title": "Which formidable female laid down the rules in no uncertain terms: 'You are a member of the British Royal Family,' she declared. 'We are never tired and we all love hospitals'?", + "link": "https://www.dailymail.co.uk/femail/article-12640771/Mary-royals-never-tired-love-hospitals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 07:10:15 GMT", + "enclosure": { + "length": "11396", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/18/09/76696527-0-image-a-13_1697616567341.jpg" + }, + "content": "If Queen Elizabeth II looked to her father and his sense of duty, there was other example on hand - someone who laid down the template for how royals should behave...", + "contentSnippet": "If Queen Elizabeth II looked to her father and his sense of duty, there was other example on hand - someone who laid down the template for how royals should behave...", + "guid": "https://www.dailymail.co.uk/femail/article-12640771/Mary-royals-never-tired-love-hospitals.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T07:10:15.000Z" + }, + { + "title": "Inside Little Hong Kong: How a single London borough is attracting thousands of families and students fleeing China as influencers use photos of Poundland, Starbucks and Lidl to entice others to the area", + "link": "https://www.dailymail.co.uk/news/article-12676059/Inside-Little-Hong-Kong-single-London-borough-attracting-thousands-families-students-fleeing-China-influencers-use-photos-Poundland-Starbucks-Lidl-entice-area.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 07:08:37 GMT", + "enclosure": { + "length": "6725", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77033919-0-image-m-53_1698335414692.jpg" + }, + "content": "The south London borough of Sutton has become a haven for thousands of Hong Kong residents who have moved to Britain following China's crackdown of the financial hub in 2020.", + "contentSnippet": "The south London borough of Sutton has become a haven for thousands of Hong Kong residents who have moved to Britain following China's crackdown of the financial hub in 2020.", + "guid": "https://www.dailymail.co.uk/news/article-12676059/Inside-Little-Hong-Kong-single-London-borough-attracting-thousands-families-students-fleeing-China-influencers-use-photos-Poundland-Starbucks-Lidl-entice-area.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T07:08:37.000Z" + }, + { + "title": "I'm a vicar by day and barman by night: Beer-loving reverend splits his time running a church and pulling pints at the pub (and reveals his favourite lager is a brew called Hell)", + "link": "https://www.dailymail.co.uk/news/article-12679015/Berr-loving-vicar-pulls-pints-runs-church.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 06:59:35 GMT", + "enclosure": { + "length": "11912", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068153-0-image-a-5_1698387615159.jpg" + }, + "content": "The father-of-two works two nights a week at The Crown Inn in Claverley, Shropshire - with his pay going towards raising money for new heating and lighting at All Saints Church.", + "contentSnippet": "The father-of-two works two nights a week at The Crown Inn in Claverley, Shropshire - with his pay going towards raising money for new heating and lighting at All Saints Church.", + "guid": "https://www.dailymail.co.uk/news/article-12679015/Berr-loving-vicar-pulls-pints-runs-church.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T06:59:35.000Z" + }, + { + "title": "EXCLUSIVE: Brad Pitt exposes Angelina Jolie's friendly relationship with billionaire vodka baron he accused of conspiring with his ex-wife in bitter winery battle - revealing email Stoli mogul sent to actress inviting her to stay at his Scottish castle", + "link": "https://www.dailymail.co.uk/femail/article-12676187/Brad-Pitt-Angelina-Jolie-Yuri-Shefler-winery-castle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 06:55:47 GMT", + "enclosure": { + "length": "10161", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/23/77057317-0-image-a-13_1698360169945.jpg" + }, + "content": "Shefler, 56, told Jolie, 48, that she should come and visit him at his lavish home - months after she signed over her half of the vineyard she previously owned with Pitt to him\u00a0for $8.5 million.", + "contentSnippet": "Shefler, 56, told Jolie, 48, that she should come and visit him at his lavish home - months after she signed over her half of the vineyard she previously owned with Pitt to him\u00a0for $8.5 million.", + "guid": "https://www.dailymail.co.uk/femail/article-12676187/Brad-Pitt-Angelina-Jolie-Yuri-Shefler-winery-castle.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T06:55:47.000Z" + }, + { + "title": "Israeli comedians ruthlessly mock BBC reporting of Al-Ahli hospital bombing in Gaza: Satirical show pokes fun at the Beeb with report by fake journalist 'Harry Whiteguilt' - after broadcaster was slammed for its coverage of blast", + "link": "https://www.dailymail.co.uk/news/article-12678373/Israeli-comedians-ruthlessly-mock-BBC-reporting-Al-Ahli-hospital-bombing-Gaza-Satirical-pokes-fun-Beeb-report-fake-journalist-Harry-Whiteguilt-broadcaster-slammed-coverage-blast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 06:53:11 GMT", + "enclosure": { + "length": "6076", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/02/77060967-0-image-m-60_1698368698872.jpg" + }, + "content": "In the satirical show, a fake BBC newsreader said: 'Good evening from London, here are some news from the war in Gaza. Israel has bombed a hospital killing hundreds of innocent people.'", + "contentSnippet": "In the satirical show, a fake BBC newsreader said: 'Good evening from London, here are some news from the war in Gaza. Israel has bombed a hospital killing hundreds of innocent people.'", + "guid": "https://www.dailymail.co.uk/news/article-12678373/Israeli-comedians-ruthlessly-mock-BBC-reporting-Al-Ahli-hospital-bombing-Gaza-Satirical-pokes-fun-Beeb-report-fake-journalist-Harry-Whiteguilt-broadcaster-slammed-coverage-blast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T06:53:11.000Z" + }, + { + "title": "Influencer found guilty by jury of sex attack on 14-year-old boy - to shocked gasps from her supporters", + "link": "https://www.dailymail.co.uk/news/article-12678415/Influencer-guilty-jury-sex-attack-14-year-old-boy-shocked-gasps-supporters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 06:29:17 GMT", + "enclosure": { + "length": "4052", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/02/wire-77061411-1698368456-950_154x115.jpg" + }, + "content": "A social media influencer has been found guilty of sexually assaulting a 14-year-old boy twice after she admitted she was attracted to him and said she saw him as an adult.", + "contentSnippet": "A social media influencer has been found guilty of sexually assaulting a 14-year-old boy twice after she admitted she was attracted to him and said she saw him as an adult.", + "guid": "https://www.dailymail.co.uk/news/article-12678415/Influencer-guilty-jury-sex-attack-14-year-old-boy-shocked-gasps-supporters.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T06:29:17.000Z" + }, + { + "title": "I'm a mother with ADHD - staying on top of chores, time-keeping and being patient are all challenges I face", + "link": "https://www.dailymail.co.uk/femail/article-12669915/Im-mother-ADHD-staying-chores-time-keeping-patient-challenges-face.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 06:22:45 GMT", + "enclosure": { + "length": "10320", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/25/09/76974503-0-image-a-4_1698221362637.jpg" + }, + "content": "Geraldine Kostrewa, 28, a mother from the south west of England, has spoken out about the challenges that Attention deficit hyperactivity disorder (ADHD) poses for new parents.", + "contentSnippet": "Geraldine Kostrewa, 28, a mother from the south west of England, has spoken out about the challenges that Attention deficit hyperactivity disorder (ADHD) poses for new parents.", + "guid": "https://www.dailymail.co.uk/femail/article-12669915/Im-mother-ADHD-staying-chores-time-keeping-patient-challenges-face.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T06:22:45.000Z" + }, + { + "title": "Woman, 31, who 'waded into river with two young children before all three were pulled out the water' is arrested on suspicion of attempted murder", + "link": "https://www.dailymail.co.uk/news/article-12678989/Woman-31-waded-river-two-young-children-three-pulled-water-arrested-suspicion-attempted-murder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 06:18:20 GMT", + "enclosure": { + "length": "8520", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/07/77068115-0-image-m-6_1698387213512.jpg" + }, + "content": "Officers were called to the Cobden Bridge in Southampton, over the River Itchen, at 3.38pm on Thursday October 26 after receiving reports of people in the water.", + "contentSnippet": "Officers were called to the Cobden Bridge in Southampton, over the River Itchen, at 3.38pm on Thursday October 26 after receiving reports of people in the water.", + "guid": "https://www.dailymail.co.uk/news/article-12678989/Woman-31-waded-river-two-young-children-three-pulled-water-arrested-suspicion-attempted-murder.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T06:18:20.000Z" + }, + { + "title": "Love Island's Gemma Owen is 'dating Prince Naseem Hamed's son Aadam' as the couple enjoy a holiday to Dubai", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12678027/Love-Island-Gemma-Owen-Prince-Naseem-Hamed-Aadam-Dubai.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 06:09:28 GMT", + "enclosure": { + "length": "10323", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/23/77057077-0-image-a-29_1698360231996.jpg" + }, + "content": "The Love Island star, 20, split from her co-star boyfriend Luca Bish , 24, in November last year, three months after they finished as runners-up on the show.", + "contentSnippet": "The Love Island star, 20, split from her co-star boyfriend Luca Bish , 24, in November last year, three months after they finished as runners-up on the show.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12678027/Love-Island-Gemma-Owen-Prince-Naseem-Hamed-Aadam-Dubai.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T06:09:28.000Z" + }, + { + "title": "EXCLUSIVE: Kevin Costner's ex-wife Christine Baumgartner tells friends how she REALLY feels about being 'friends with benefits' after contentious divorce", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12672203/Kevin-Costner-ex-wife-Christine-Baumgartner-feels-friends-benefits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 05:50:51 GMT", + "enclosure": { + "length": "10428", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/25/22/77003457-0-image-a-65_1698268247658.jpg" + }, + "content": "As Christine Baumgartner faces the holidays without Kevin Costner, rumors abound that ice is melting between the once passionate pair.", + "contentSnippet": "As Christine Baumgartner faces the holidays without Kevin Costner, rumors abound that ice is melting between the once passionate pair.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12672203/Kevin-Costner-ex-wife-Christine-Baumgartner-feels-friends-benefits.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T05:50:51.000Z" + }, + { + "title": "EXCLUSIVE: Sandra Bullock is seen for the first time since death of partner\u00a0Bryan Randall aged 57 from ALS - as star steps out with daughter Laila, 11, in LA", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12678083/Sandra-Bullock-seen-time-partner-Bryan-Randalls-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 04:03:36 GMT", + "enclosure": { + "length": "10190", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/23/77057243-0-image-m-126_1698359938677.jpg" + }, + "content": "Sandra Bullock was seen for the first time since the death of her longtime partner Bryan Randall in August - as she stepped out in LA with daughter Laila on Thursday.", + "contentSnippet": "Sandra Bullock was seen for the first time since the death of her longtime partner Bryan Randall in August - as she stepped out in LA with daughter Laila on Thursday.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12678083/Sandra-Bullock-seen-time-partner-Bryan-Randalls-death.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T04:03:36.000Z" + }, + { + "title": "What you need to know about this weekend's full moon and lunar eclipse: Emotional turmoil and major changes are imminent for every star sign", + "link": "https://www.dailymail.co.uk/femail/real-life/article-12678401/October-moon-lunar-eclipse-horoscope.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 03:17:25 GMT", + "enclosure": { + "length": "10691", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/03/77063439-0-image-a-3_1698374207464.jpg" + }, + "content": "Emotional turmoil is on the cards this weekend thanks to the Hunter's full moon and lunar eclipse.", + "contentSnippet": "Emotional turmoil is on the cards this weekend thanks to the Hunter's full moon and lunar eclipse.", + "guid": "https://www.dailymail.co.uk/femail/real-life/article-12678401/October-moon-lunar-eclipse-horoscope.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T03:17:25.000Z" + }, + { + "title": "I was diagnosed with stage four bowel cancer in my 30s: This is the habit that saved my life - and the warning I want everyone to read", + "link": "https://www.dailymail.co.uk/femail/real-life/article-12677875/bowel-cancer-symptoms-australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 02:48:39 GMT", + "enclosure": { + "length": "9273", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/03/77061571-0-A_sports_mad_school_teacher_has_urged_all_Australians_young_and_-a-42_1698374411789.jpg" + }, + "content": "A sports-mad school teacher has urged all Australians young and old to listen to his advice after he was diagnosed with bowel cancer.", + "contentSnippet": "A sports-mad school teacher has urged all Australians young and old to listen to his advice after he was diagnosed with bowel cancer.", + "guid": "https://www.dailymail.co.uk/femail/real-life/article-12677875/bowel-cancer-symptoms-australia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T02:48:39.000Z" + }, + { + "title": "Border force teams are poised to rescue 200 Britons trapped in Gaza as Rishi Sunak pushes for a pause in the fighting to allow aid to reach besieged Palestinians", + "link": "https://www.dailymail.co.uk/news/article-12677851/Border-force-rescue-200-Britons-trapped-Gaza-Rishi-Sunak-Palestinians.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 02:29:21 GMT", + "enclosure": { + "length": "5412", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/22/77053933-0-image-m-13_1698356053039.jpg" + }, + "content": "Rishi Sunak (pictured) has sent Border Force teams to Egypt to help evacuate Britons still trapped in Gaza. The PM is also pushing for a pause in fighting between Israel and Hamas to allow aid in.", + "contentSnippet": "Rishi Sunak (pictured) has sent Border Force teams to Egypt to help evacuate Britons still trapped in Gaza. The PM is also pushing for a pause in fighting between Israel and Hamas to allow aid in.", + "guid": "https://www.dailymail.co.uk/news/article-12677851/Border-force-rescue-200-Britons-trapped-Gaza-Rishi-Sunak-Palestinians.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T02:29:21.000Z" + }, + { + "title": "Body found dumped in Ukrainian drain is identified as missing former British paratrooper Daniel Burke, 36, who was 'accidentally shot' by fellow fighter", + "link": "https://www.dailymail.co.uk/news/article-12678351/Body-dumped-Ukrainian-drain-identified-missing-former-British-paratrooper-Daniel-Burke-36-accidentally-shot-fellow-fighter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 00:43:56 GMT", + "enclosure": { + "length": "8810", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/01/77060403-0-image-m-69_1698367275970.jpg" + }, + "content": "A body that was found dumped in a Ukrainian drain was identified as missing former paratrooper Daniel Burke (pictured), who was 'accidentally shot' by a fellow fighter.", + "contentSnippet": "A body that was found dumped in a Ukrainian drain was identified as missing former paratrooper Daniel Burke (pictured), who was 'accidentally shot' by a fellow fighter.", + "guid": "https://www.dailymail.co.uk/news/article-12678351/Body-dumped-Ukrainian-drain-identified-missing-former-British-paratrooper-Daniel-Burke-36-accidentally-shot-fellow-fighter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T00:43:56.000Z" + }, + { + "title": "Is this the loneliest sheep in Britain? Drones are sent in to check on animal left stranded on a cliffside beach in the Scottish Highlands for TWO years", + "link": "https://www.dailymail.co.uk/news/article-12678309/Is-loneliest-sheep-Britain-Drones-sent-check-animal-left-stranded-cliffside-beach-Scottish-Highlands-TWO-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 00:34:07 GMT", + "enclosure": { + "length": "12554", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/25/19/76998405-0-image-m-17_1698259773870.jpg" + }, + "content": "Jillian Turner spotted the animal in 2021 during a trip from \u00adBalintore to Nigg with the East Sutherland Canoe and Kayak Club. But recently she took the same trip again and noticed the sheep was still trapped.", + "contentSnippet": "Jillian Turner spotted the animal in 2021 during a trip from \u00adBalintore to Nigg with the East Sutherland Canoe and Kayak Club. But recently she took the same trip again and noticed the sheep was still trapped.", + "guid": "https://www.dailymail.co.uk/news/article-12678309/Is-loneliest-sheep-Britain-Drones-sent-check-animal-left-stranded-cliffside-beach-Scottish-Highlands-TWO-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T00:34:07.000Z" + }, + { + "title": "When the 60s were far from swinging! Book details the dark history of the popular decade - when homosexuality was still illegal, suicide a crime and racism rife", + "link": "https://www.dailymail.co.uk/home/books/article-12677437/When-60s-far-swinging.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 23:29:23 GMT", + "enclosure": { + "length": "11011", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050239-0-image-a-6_1698351207137.jpg" + }, + "content": "Cataloguing events in Britain between 1962 and 1965, David Kynaston's 700 pages find room for Manfred Mann's hit Do Wah Diddy Diddy, Hughie Green opening Ilford's furniture supermarket.", + "contentSnippet": "Cataloguing events in Britain between 1962 and 1965, David Kynaston's 700 pages find room for Manfred Mann's hit Do Wah Diddy Diddy, Hughie Green opening Ilford's furniture supermarket.", + "guid": "https://www.dailymail.co.uk/home/books/article-12677437/When-60s-far-swinging.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T23:29:23.000Z" + }, + { + "title": "WHAT BOOK would food historian and author Pen Vogler take to a desert island?", + "link": "https://www.dailymail.co.uk/home/books/article-12677655/WHAT-BOOK-food-historian-author-Pen-Fogler-desert-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 23:28:00 GMT", + "enclosure": { + "length": "8029", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77051003-0-image-m-16_1698352439376.jpg" + }, + "content": "Pen Vogler is currently reading The Secret of Cooking by Bee Wilson, enjoying her 'grater techniques'. She would take RHS Encyclopedia Of Gardening to a desert island.", + "contentSnippet": "Pen Vogler is currently reading The Secret of Cooking by Bee Wilson, enjoying her 'grater techniques'. She would take RHS Encyclopedia Of Gardening to a desert island.", + "guid": "https://www.dailymail.co.uk/home/books/article-12677655/WHAT-BOOK-food-historian-author-Pen-Fogler-desert-island.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T23:28:00.000Z" + }, + { + "title": "PICTURE THIS", + "link": "https://www.dailymail.co.uk/home/books/article-12677721/PICTURE-THIS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 23:24:41 GMT", + "enclosure": { + "length": "5117", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77052625-0-image-m-12_1698353759774.jpg" + }, + "content": "'All that glitters is not gold' is an accusation that can't be levelled at Yves Saint Laurent, as this companion to the GOLD by YSL exhibition in Paris proves.", + "contentSnippet": "'All that glitters is not gold' is an accusation that can't be levelled at Yves Saint Laurent, as this companion to the GOLD by YSL exhibition in Paris proves.", + "guid": "https://www.dailymail.co.uk/home/books/article-12677721/PICTURE-THIS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T23:24:41.000Z" + }, + { + "title": "Forget good taste, says the King's garden designer - as she reveals how to discover your own horticultural style", + "link": "https://www.dailymail.co.uk/home/books/article-12677315/Forget-good-taste-says-Kings-garden-designer-reveals-discover-horticultural-style.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 23:23:36 GMT", + "enclosure": { + "length": "13931", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050223-0-image-a-6_1698351189464.jpg" + }, + "content": "Jinny Blom is an award-winning landscape designer who has made gardens at the Chelsea Flower Show for both King Charles and Prince Harry. For her, gardening is the highest of art forms.", + "contentSnippet": "Jinny Blom is an award-winning landscape designer who has made gardens at the Chelsea Flower Show for both King Charles and Prince Harry. For her, gardening is the highest of art forms.", + "guid": "https://www.dailymail.co.uk/home/books/article-12677315/Forget-good-taste-says-Kings-garden-designer-reveals-discover-horticultural-style.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T23:23:36.000Z" + }, + { + "title": "Wanted: A wife to look after my pigs. From a 19th-century lonely hearts ad to a nuptial blessing of the bride's buttocks, an entertaining history of love over the millennia that proves when it comes to the heart, little has changed", + "link": "https://www.dailymail.co.uk/home/books/article-12677261/Wanted-wife-look-pigs-19th-century-lonely-hearts-ad-nuptial-blessing-brides-buttocks-entertaining-history-love-millennia-proves-comes-heart-little-changed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 23:23:04 GMT", + "enclosure": { + "length": "10338", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77052633-0-image-m-14_1698353827876.jpg" + }, + "content": "Edward Brooke-Hitching's delightful book is a collection of the curiosities, absurdities and downright filth that can arise when two (or more) human beings become attracted to each other.", + "contentSnippet": "Edward Brooke-Hitching's delightful book is a collection of the curiosities, absurdities and downright filth that can arise when two (or more) human beings become attracted to each other.", + "guid": "https://www.dailymail.co.uk/home/books/article-12677261/Wanted-wife-look-pigs-19th-century-lonely-hearts-ad-nuptial-blessing-brides-buttocks-entertaining-history-love-millennia-proves-comes-heart-little-changed.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T23:23:04.000Z" + }, + { + "title": "JAN MOIR: Edward VIII was a typical Windsor male: whiny and petulant... Remind you of anyone?", + "link": "https://www.dailymail.co.uk/debate/article-12677685/JAN-MOIR-Edward-VIII-typical-Windsor-male-whiny-petulant-Remind-anyone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 22:44:31 GMT", + "enclosure": { + "length": "11780", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050721-0-image-a-33_1698352895090.jpg" + }, + "content": "JAN MOIR: A lost memoir of Edward VIII has come to light and for the first time we hear the authentic inner voice of the man who had briefly been King.", + "contentSnippet": "JAN MOIR: A lost memoir of Edward VIII has come to light and for the first time we hear the authentic inner voice of the man who had briefly been King.", + "guid": "https://www.dailymail.co.uk/debate/article-12677685/JAN-MOIR-Edward-VIII-typical-Windsor-male-whiny-petulant-Remind-anyone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T22:44:31.000Z" + }, + { + "title": "How fashion finally fell in love with the MUCH older woman... As Dame Maggie Smith, 88, fronts the new campaign for luxury label Loewe, writes ALEXANDRA SHULMAN", + "link": "https://www.dailymail.co.uk/news/article-12677823/How-fashion-finally-fell-love-older-woman-Dame-Maggie-Smith-88-fronts-new-campaign-luxury-label-Loewe-writes-ALEXANDRA-SHULMAN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 22:28:48 GMT", + "enclosure": { + "length": "11278", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/22/77053025-0-image-a-30_1698355932470.jpg" + }, + "content": "Dame Maggie poses against a brick wall in an oversized, shaggy brown shearling coat clutching Loewe's best-selling Puzzle bag. In another, she wears a wide-skirted black and white dress.", + "contentSnippet": "Dame Maggie poses against a brick wall in an oversized, shaggy brown shearling coat clutching Loewe's best-selling Puzzle bag. In another, she wears a wide-skirted black and white dress.", + "guid": "https://www.dailymail.co.uk/news/article-12677823/How-fashion-finally-fell-love-older-woman-Dame-Maggie-Smith-88-fronts-new-campaign-luxury-label-Loewe-writes-ALEXANDRA-SHULMAN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T22:28:48.000Z" + }, + { + "title": "EDEN CONFIDENTIAL: At last! Carol Thatcher weds Marco Grass - the Swiss skiing instructor she met in 1992 - in Las Vegas", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12677711/EDEN-CONFIDENTIAL-Carol-Thatcher-weds-Marco-Grass-Swiss-skiing-instructor-met-1992-Las-Vegas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 22:04:28 GMT", + "enclosure": { + "length": "11078", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/22/77052921-0-image-a-47_1698354350966.jpg" + }, + "content": "EDEN CONFIDENTIAL: Showing a talent for pulling off a surprise which would surely have startled her mother, Carol has married in Las Vegas.", + "contentSnippet": "EDEN CONFIDENTIAL: Showing a talent for pulling off a surprise which would surely have startled her mother, Carol has married in Las Vegas.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12677711/EDEN-CONFIDENTIAL-Carol-Thatcher-weds-Marco-Grass-Swiss-skiing-instructor-met-1992-Las-Vegas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T22:04:28.000Z" + }, + { + "title": "The top chef charging \u00a3110.80 for a fish and chip supper for two! JAN MOIR puts Tom Kerridge's posh take on the British classic to the test", + "link": "https://www.dailymail.co.uk/news/article-12677647/The-chef-charging-110-80-fish-chip-supper-two-JAN-MOIR-puts-Tom-Kerridges-posh-British-classic-test.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 22:01:33 GMT", + "enclosure": { + "length": "8557", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77051911-0-image-m-49_1698352949299.jpg" + }, + "content": "JAN MOIR: At Tom Kerridge 's Fish & Chips restaurant in Harrods, a chippy tea will cost you \u00a3110.80 for two, including the tea, bread, butter and a 12.5 per cent service charge.", + "contentSnippet": "JAN MOIR: At Tom Kerridge 's Fish & Chips restaurant in Harrods, a chippy tea will cost you \u00a3110.80 for two, including the tea, bread, butter and a 12.5 per cent service charge.", + "guid": "https://www.dailymail.co.uk/news/article-12677647/The-chef-charging-110-80-fish-chip-supper-two-JAN-MOIR-puts-Tom-Kerridges-posh-British-classic-test.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T22:01:33.000Z" + }, + { + "title": "King Charles meets with leading Middle East charities in bid to focus resources on the growing humanitarian crisis in the region", + "link": "https://www.dailymail.co.uk/news/article-12677919/King-Charles-Middle-East-charities-humanitarian-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 21:55:27 GMT", + "enclosure": { + "length": "12272", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/22/77055389-0-image-a-36_1698357278576.jpg" + }, + "content": "King Charles (pictured) yesterday convened five leading charities operating in the Middle East to focus resources on the unfolding humanitarian crisis in the region.", + "contentSnippet": "King Charles (pictured) yesterday convened five leading charities operating in the Middle East to focus resources on the unfolding humanitarian crisis in the region.", + "guid": "https://www.dailymail.co.uk/news/article-12677919/King-Charles-Middle-East-charities-humanitarian-crisis.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T21:55:27.000Z" + }, + { + "title": "Americans reveal the items in the Harry Potter franchise they first thought were 'magic' - but they were actually just British", + "link": "https://www.dailymail.co.uk/femail/article-12674967/American-fans-believed-British-things-existed-Harry-Potter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 21:30:45 GMT", + "enclosure": { + "length": "5608", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77038821-0-image-a-68_1698333463940.jpg" + }, + "content": "American Harry Potter fans shared on Reddit that they mistakenly believed several ordinary British customs and cuisines were exclusive to the famous wizarding world of Hogwarts.", + "contentSnippet": "American Harry Potter fans shared on Reddit that they mistakenly believed several ordinary British customs and cuisines were exclusive to the famous wizarding world of Hogwarts.", + "guid": "https://www.dailymail.co.uk/femail/article-12674967/American-fans-believed-British-things-existed-Harry-Potter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T21:30:45.000Z" + }, + { + "title": "Scientists discover for the first time that sperm defy one of Newton's laws of PHYSICS", + "link": "https://www.dailymail.co.uk/sciencetech/article-12677263/Scientists-discover-sperm-defy-one-Newtons-laws-PHYSICS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 21:30:00 GMT", + "enclosure": { + "length": "5420", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/20/4839638-0-Researchers_at_Kyoto_University_found_the_sperms_flagella_or_tai-a-6_1698348483502.jpg" + }, + "content": "Scientists have observed a broken law of physics - the way sperms swim through surrounding liquid. The elasticity of the tail should slow the agent down, but instead pushes and pulls it through the fluid.", + "contentSnippet": "Scientists have observed a broken law of physics - the way sperms swim through surrounding liquid. The elasticity of the tail should slow the agent down, but instead pushes and pulls it through the fluid.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12677263/Scientists-discover-sperm-defy-one-Newtons-laws-PHYSICS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T21:30:00.000Z" + }, + { + "title": "LITERARY FICTION", + "link": "https://www.dailymail.co.uk/home/books/article-12677707/Literary-fiction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 21:15:21 GMT", + "enclosure": { + "length": "5283", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050475-0-image-m-17_1698353091981.jpg" + }, + "content": "It's been 12 years since Cole wowed critics with his debut Open City, in which a psychiatrist wanders Brussels and New York musing on the legacies of historical bloodshed.", + "contentSnippet": "It's been 12 years since Cole wowed critics with his debut Open City, in which a psychiatrist wanders Brussels and New York musing on the legacies of historical bloodshed.", + "guid": "https://www.dailymail.co.uk/home/books/article-12677707/Literary-fiction.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T21:15:21.000Z" + }, + { + "title": "MUST READS", + "link": "https://www.dailymail.co.uk/home/books/article-12677589/MUST-READS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 21:08:48 GMT", + "enclosure": { + "length": "8850", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050479-0-image-m-23_1698351604620.jpg" + }, + "content": "Alex is 30 and unhappy with her life. She has fallen out with her best friend, Wren, and her novel is paralysed by writer's block. At this low moment, she lands a place at a writer's retreat.", + "contentSnippet": "Alex is 30 and unhappy with her life. She has fallen out with her best friend, Wren, and her novel is paralysed by writer's block. At this low moment, she lands a place at a writer's retreat.", + "guid": "https://www.dailymail.co.uk/home/books/article-12677589/MUST-READS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T21:08:48.000Z" + }, + { + "title": "CHILDREN'S", + "link": "https://www.dailymail.co.uk/home/article-12677545/CHILDRENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 21:02:09 GMT", + "enclosure": { + "length": "9223", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050455-0-image-m-18_1698351590655.jpg" + }, + "content": "The perfect pairing of Barnett and Klassen delivers a sublime festive gift in this testing question of how Father Christmas brings presents, all wrapped up with dead-pan humour...", + "contentSnippet": "The perfect pairing of Barnett and Klassen delivers a sublime festive gift in this testing question of how Father Christmas brings presents, all wrapped up with dead-pan humour...", + "guid": "https://www.dailymail.co.uk/home/article-12677545/CHILDRENS.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T21:02:09.000Z" + }, + { + "title": "CLASSIC CRIME", + "link": "https://www.dailymail.co.uk/home/books/article-12677517/CLASSIC-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 21:02:00 GMT", + "enclosure": { + "length": "6527", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050439-0-image-m-203_1698351872523.jpg" + }, + "content": "Popular images of rural France are of bucolic contentment with good food and wine. But, when it comes to life in the Loire, Ian Moore gives us the darker side...", + "contentSnippet": "Popular images of rural France are of bucolic contentment with good food and wine. But, when it comes to life in the Loire, Ian Moore gives us the darker side...", + "guid": "https://www.dailymail.co.uk/home/books/article-12677517/CLASSIC-CRIME.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T21:02:00.000Z" + }, + { + "title": "POPULAR", + "link": "https://www.dailymail.co.uk/home/books/article-12677515/POPULAR.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 21:01:54 GMT", + "enclosure": { + "length": "10320", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77050441-0-image-m-46_1698352727988.jpg" + }, + "content": "In this future shock Wyndhamesque tale, bots do everything from driving to very personal services.", + "contentSnippet": "In this future shock Wyndhamesque tale, bots do everything from driving to very personal services.", + "guid": "https://www.dailymail.co.uk/home/books/article-12677515/POPULAR.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T21:01:54.000Z" + }, + { + "title": "TOM UTLEY: Look, Steve Coogan, if you really want to get rid of the monarchy, abandon Israel and muzzle the Free Press, why not stand for office yourself!", + "link": "https://www.dailymail.co.uk/debate/article-12677641/TOM-UTLEY-Steve-Coogan-monarchy-Israel-stand-office.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 20:54:41 GMT", + "enclosure": { + "length": "8115", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/21/77051999-0-image-m-34_1698353193489.jpg" + }, + "content": "TOM UTLEY: Have I boasted before that my grandfather, Dermot Morrah, wrote possibly the most famous and frequently quoted speech ever delivered by our late, beloved Queen?", + "contentSnippet": "TOM UTLEY: Have I boasted before that my grandfather, Dermot Morrah, wrote possibly the most famous and frequently quoted speech ever delivered by our late, beloved Queen?", + "guid": "https://www.dailymail.co.uk/debate/article-12677641/TOM-UTLEY-Steve-Coogan-monarchy-Israel-stand-office.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T20:54:41.000Z" + }, + { + "title": "Her mom is Oscar-nominated, dad worked with Angelina Jolie, grandma is a movie icon, her half-sister is on the A list and there is a Scarface connection. Who is she?", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12677235/Her-mom-Oscar-nominated-dad-worked-Angelina-Jolie-grandma-movie-icon-half-sister-list-Scarface-connection-she.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 19:53:25 GMT", + "enclosure": { + "length": "5070", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/20/77048145-0-image-m-106_1698347449554.jpg" + }, + "content": "Her mom is an Oscar-nominated actress who was twice wed to a TV turned movie star who was in the movie Knives Out. Her father is a Latin heartthrob and there is a link to Scarface.", + "contentSnippet": "Her mom is an Oscar-nominated actress who was twice wed to a TV turned movie star who was in the movie Knives Out. Her father is a Latin heartthrob and there is a link to Scarface.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12677235/Her-mom-Oscar-nominated-dad-worked-Angelina-Jolie-grandma-movie-icon-half-sister-list-Scarface-connection-she.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T19:53:25.000Z" + }, + { + "title": "Secluded seaside cottage which can only be reached by car when the tide is out goes on the market for \u00a3620,000", + "link": "https://www.dailymail.co.uk/property/article-12665891/Secluded-seaside-cottage-reached-car-tide-goes-market-620-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 13:58:31 GMT", + "enclosure": { + "length": "9877", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/24/12/76933771-0-image-m-51_1698147896316.jpg" + }, + "content": "The stunning two-bedroom hideaway located on the Isle of Anglesey in Wales offers privacy with mesmerising ocean views, though it may also feel quite isolating.", + "contentSnippet": "The stunning two-bedroom hideaway located on the Isle of Anglesey in Wales offers privacy with mesmerising ocean views, though it may also feel quite isolating.", + "guid": "https://www.dailymail.co.uk/property/article-12665891/Secluded-seaside-cottage-reached-car-tide-goes-market-620-000.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T13:58:31.000Z" + }, + { + "title": "Horoscopes: Your stars for this week by Sally Brompton", + "link": "https://www.dailymail.co.uk/home/you/article-12650003/Horoscopes-stars-week-Sally-Brompton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Thu, 26 Oct 2023 13:54:48 GMT", + "enclosure": { + "length": "6591", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/19/16/76760275-0-image-m-42_1697728864044.jpg" + }, + "content": "Sally Brompton reminds Scorpios that the sun enters their sign tomorrow and a new solar year begins. Just how good that year will be depends on the things Scorpios do over the next few days.", + "contentSnippet": "Sally Brompton reminds Scorpios that the sun enters their sign tomorrow and a new solar year begins. Just how good that year will be depends on the things Scorpios do over the next few days.", + "guid": "https://www.dailymail.co.uk/home/you/article-12650003/Horoscopes-stars-week-Sally-Brompton.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-26T13:54:48.000Z" + }, + { + "title": "Do TikTok's make-up tricks work? 'Soap brows', contouring using fake tan\u2026 FRAN HORNAK spends a week testing social media trends", + "link": "https://www.dailymail.co.uk/home/you/article-12645211/Do-TikToks-make-tricks-work-Soap-brows-contouring-using-fake-tan-FRAN-HORNAK-spends-week-testing-social-media-trends.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Wed, 25 Oct 2023 15:45:26 GMT", + "enclosure": { + "length": "10141", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/23/18/76903641-0-image-a-24_1698083717626.jpg" + }, + "content": "UK beauty expert\u00a0Fran Hornak shares how these beauty hacks measure up - with everything from 'leggings' curls and 'soap brows' shared on TikTok.", + "contentSnippet": "UK beauty expert\u00a0Fran Hornak shares how these beauty hacks measure up - with everything from 'leggings' curls and 'soap brows' shared on TikTok.", + "guid": "https://www.dailymail.co.uk/home/you/article-12645211/Do-TikToks-make-tricks-work-Soap-brows-contouring-using-fake-tan-FRAN-HORNAK-spends-week-testing-social-media-trends.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-25T15:45:26.000Z" + }, + { + "title": "THE CHIC LIST: J'adore the city of delights", + "link": "https://www.dailymail.co.uk/home/you/article-12666609/THE-CHIC-LIST-Jadore-city-delights.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 24 Oct 2023 14:42:40 GMT", + "enclosure": { + "length": "8175", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/24/15/76939813-0-image-m-17_1698157947189.jpg" + }, + "content": "UK fashion columnist and influencer JOANNE HEGARTY celebrates Parisian style this week: neutral tones and classic shades with an occasional pop of red. Bravo!", + "contentSnippet": "UK fashion columnist and influencer JOANNE HEGARTY celebrates Parisian style this week: neutral tones and classic shades with an occasional pop of red. Bravo!", + "guid": "https://www.dailymail.co.uk/home/you/article-12666609/THE-CHIC-LIST-Jadore-city-delights.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-24T14:42:40.000Z" + }, + { + "title": "Messy property goes on the market for \u00a3180,000 despite being crammed full of rubbish, ravaged by mould and cat litter in the kitchen", + "link": "https://www.dailymail.co.uk/property/article-12665627/britians-saddest-house-gosport-hants-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 24 Oct 2023 12:53:03 GMT", + "enclosure": { + "length": "11939", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/24/11/76930703-0-image-a-28_1698143283466.jpg" + }, + "content": "The unloved property in Gosport, Hampshire, has mould-ridden walls, stained cabinets, filthy floors and rubbish in every corner.", + "contentSnippet": "The unloved property in Gosport, Hampshire, has mould-ridden walls, stained cabinets, filthy floors and rubbish in every corner.", + "guid": "https://www.dailymail.co.uk/property/article-12665627/britians-saddest-house-gosport-hants-market.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-24T12:53:03.000Z" + }, + { + "title": "When to put your home on the market if you want to sell by Christmas", + "link": "https://www.dailymail.co.uk/property/article-12661783/When-home-market-want-sell-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Tue, 24 Oct 2023 05:00:49 GMT", + "enclosure": { + "length": "8675", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/23/12/76888927-0-image-a-38_1698060935626.jpg" + }, + "content": "Getting a sale subject to contract before the festivities begin is still possible, according to the Homeowners Alliance - but sellers will need to act soon.", + "contentSnippet": "Getting a sale subject to contract before the festivities begin is still possible, according to the Homeowners Alliance - but sellers will need to act soon.", + "guid": "https://www.dailymail.co.uk/property/article-12661783/When-home-market-want-sell-Christmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-24T05:00:49.000Z" + }, + { + "title": "IPSO ruling upheld against MailOnline following accuracy complaint from Martin Clunes", + "link": "https://www.dailymail.co.uk/home/article-12663221/IPSO-ruling-upheld-against-MailOnline-following-accuracy-complaint-Martin-Clunes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 23 Oct 2023 23:26:30 GMT", + "enclosure": { + "length": "7751", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/23/19/10122148-0-image-m-2_1698086246966.jpg" + }, + "content": "Actor Martin Clunes complained to the Independent Press Standards Organisation that MailOnline had breached Clause 1 (Accuracy) of the Editors' Code of Practice.", + "contentSnippet": "Actor Martin Clunes complained to the Independent Press Standards Organisation that MailOnline had breached Clause 1 (Accuracy) of the Editors' Code of Practice.", + "guid": "https://www.dailymail.co.uk/home/article-12663221/IPSO-ruling-upheld-against-MailOnline-following-accuracy-complaint-Martin-Clunes.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-23T23:26:30.000Z" + }, + { + "title": "Action plan:\u00a0CIAR BYRNE's essential jobs for your garden this week", + "link": "https://www.dailymail.co.uk/home/gardening/article-12659545/Action-plan-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Mon, 23 Oct 2023 12:36:46 GMT", + "enclosure": { + "length": "11814", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/22/19/76864261-0-image-a-8_1697998914458.jpg" + }, + "content": "CIAR BYRNE: Temperatures fell sharply this week and while smaller tender plants can be moved to a frost-free greenhouse, this isn't always possible for larger plants.", + "contentSnippet": "CIAR BYRNE: Temperatures fell sharply this week and while smaller tender plants can be moved to a frost-free greenhouse, this isn't always possible for larger plants.", + "guid": "https://www.dailymail.co.uk/home/gardening/article-12659545/Action-plan-CIAR-BYRNEs-essential-jobs-garden-week.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-23T12:36:46.000Z" + }, + { + "title": "I'm a security expert - here are NINE ways to protect your home this winter", + "link": "https://www.dailymail.co.uk/property/article-12645179/Im-security-expert-NINE-ways-protect-home-winter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 22 Oct 2023 12:20:24 GMT", + "enclosure": { + "length": "6567", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/19/09/76742193-0-image-m-32_1697702559973.jpg" + }, + "content": "Andy Simms has given nine pieces of advice for homeowners with winter on the horizon. Clocks go back on October 29, meaning darkness will come even earlier from then on.", + "contentSnippet": "Andy Simms has given nine pieces of advice for homeowners with winter on the horizon. Clocks go back on October 29, meaning darkness will come even earlier from then on.", + "guid": "https://www.dailymail.co.uk/property/article-12645179/Im-security-expert-NINE-ways-protect-home-winter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-22T12:20:24.000Z" + }, + { + "title": "Not cheap, but spectacularly good. TOM PARKER BOWLES reviews one of London's hottest new restaurants", + "link": "https://www.dailymail.co.uk/home/you/article-12650093/Not-cheap-spectacularly-good-TOM-PARKER-BOWLES-reviews-one-Londons-hottest-new-restaurants.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 22 Oct 2023 09:51:35 GMT", + "enclosure": { + "length": "11107", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/19/16/76760605-0-image-a-63_1697729955938.jpg" + }, + "content": "Mountain in Soho is the new restaurant from Tomos Parry who helped spark a raging London culinary trend, doing special things to a Basque-meets- Wales menu at Brat in Shoreditch.", + "contentSnippet": "Mountain in Soho is the new restaurant from Tomos Parry who helped spark a raging London culinary trend, doing special things to a Basque-meets- Wales menu at Brat in Shoreditch.", + "guid": "https://www.dailymail.co.uk/home/you/article-12650093/Not-cheap-spectacularly-good-TOM-PARKER-BOWLES-reviews-one-Londons-hottest-new-restaurants.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-22T09:51:35.000Z" + }, + { + "title": "CAROLINE WEST-MEADS: I don't want my wife to have a face-lift", + "link": "https://www.dailymail.co.uk/home/you/article-12649853/CAROLINE-WEST-MEADS-dont-want-wife-face-lift.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 22 Oct 2023 09:49:19 GMT", + "enclosure": { + "length": "5223", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/19/15/76758157-0-image-a-27_1697726985640.jpg" + }, + "content": "Q I am in my early 60s and my wife turns 60 next year. Maybe we could do with losing a little weight, but I think we look good for our ages. However, she says she hates her ageing looks and wants to get a face-lift.", + "contentSnippet": "Q I am in my early 60s and my wife turns 60 next year. Maybe we could do with losing a little weight, but I think we look good for our ages. However, she says she hates her ageing looks and wants to get a face-lift.", + "guid": "https://www.dailymail.co.uk/home/you/article-12649853/CAROLINE-WEST-MEADS-dont-want-wife-face-lift.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-22T09:49:19.000Z" + }, + { + "title": "Secrets of the A-list's crowning glory:\u00a0Get your head around the latest hairpieces, says Alice Robertson", + "link": "https://www.dailymail.co.uk/home/you/article-12644961/Secrets-lists-crowning-glory-head-latest-hairpieces-says-Alice-Robertson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 22 Oct 2023 09:48:13 GMT", + "enclosure": { + "length": "7893", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/18/14/76707629-0-image-m-110_1697636299681.jpg" + }, + "content": "At his bespoke service in London's Selfridges, Gary Price's clients range from teenagers through to people in their 90s.", + "contentSnippet": "At his bespoke service in London's Selfridges, Gary Price's clients range from teenagers through to people in their 90s.", + "guid": "https://www.dailymail.co.uk/home/you/article-12644961/Secrets-lists-crowning-glory-head-latest-hairpieces-says-Alice-Robertson.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-22T09:48:13.000Z" + }, + { + "title": "TOPLINE TRAVEL: Quinta do Lago", + "link": "https://www.dailymail.co.uk/home/you/article-12649737/TOPLINE-TRAVEL-Quinta-Lago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 22 Oct 2023 09:39:02 GMT", + "enclosure": { + "length": "677416", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/19/15/76756015-0-image-a-17_1697725566609.jpg" + }, + "content": "Set in the Ria Formosa Natural Park of southern Algarve, Portugal, Quinta do Lago includes a 74-room hotel and is so perfectly manicured it could have been created by CGI.", + "contentSnippet": "Set in the Ria Formosa Natural Park of southern Algarve, Portugal, Quinta do Lago includes a 74-room hotel and is so perfectly manicured it could have been created by CGI.", + "guid": "https://www.dailymail.co.uk/home/you/article-12649737/TOPLINE-TRAVEL-Quinta-Lago.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-22T09:39:02.000Z" + }, + { + "title": "AGELESS STYLE: Wardrobe staples for everyone by fashion stylist Arabella Greenhill", + "link": "https://www.dailymail.co.uk/home/you/article-12645109/AGELESS-STYLE-Wardrobe-staples-fashion-stylist-Arabella-Greenhill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sun, 22 Oct 2023 09:33:40 GMT", + "enclosure": { + "length": "6088", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/18/15/76709109-0-image-m-141_1697637971829.jpg" + }, + "content": "A core accessory on the autumn/winter 23 runways, wrap capes were thrown over tailoring at The Row and Louis Vuitton, and flaunted checks at Burberry.", + "contentSnippet": "A core accessory on the autumn/winter 23 runways, wrap capes were thrown over tailoring at The Row and Louis Vuitton, and flaunted checks at Burberry.", + "guid": "https://www.dailymail.co.uk/home/you/article-12645109/AGELESS-STYLE-Wardrobe-staples-fashion-stylist-Arabella-Greenhill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-22T09:33:40.000Z" + }, + { + "title": "The tap cleaner you never knew you needed:\u00a0 It's a bit of an insiders' favourite even though it's not glamorous\u2026 these are our top five life-changing gadgets from Lakeland", + "link": "https://www.dailymail.co.uk/home/you/article-12644407/tap-cleaner-five-life-changing-gadgets-Lakeland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 21:52:17 GMT", + "enclosure": { + "length": "2430", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/21/22/76846093-0-image-m-14_1697925099753.jpg" + }, + "content": "Eager to find the one thing that's going to make our own lives easier, the YOU team heads to its Brent Cross branch in Northwest London to check out its latest kitchen gadgets.", + "contentSnippet": "Eager to find the one thing that's going to make our own lives easier, the YOU team heads to its Brent Cross branch in Northwest London to check out its latest kitchen gadgets.", + "guid": "https://www.dailymail.co.uk/home/you/article-12644407/tap-cleaner-five-life-changing-gadgets-Lakeland.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T21:52:17.000Z" + }, + { + "title": "EVERYONE'S TALKING ABOUT:\u00a0How to smell like Victoria Beckham", + "link": "https://www.dailymail.co.uk/home/you/article-12623679/EVERYONES-TALKING-smell-like-Victoria-Beckham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 17:05:28 GMT", + "enclosure": { + "length": "5710", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76480221-0-image-m-214_1697122980970.jpg" + }, + "content": "Portofino '97 evokes the early days of her romance with David through 'a euphoric hit of Calabrian bergamot and black pepper\u2026 lingering on the skin of a significant other'.", + "contentSnippet": "Portofino '97 evokes the early days of her romance with David through 'a euphoric hit of Calabrian bergamot and black pepper\u2026 lingering on the skin of a significant other'.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623679/EVERYONES-TALKING-smell-like-Victoria-Beckham.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T17:05:28.000Z" + }, + { + "title": "When LIZ JONES met Dolly Parton: Our columnist reveals the world according to Dolly and what she really keeps under her wig, 50 years since Jolene was released", + "link": "https://www.dailymail.co.uk/home/you/article-12622883/When-LIZ-JONES-met-Dolly-Parton-columnist-reveals-world-according-Dolly-really-keeps-wig-50-years-Jolene-released.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 17:04:32 GMT", + "enclosure": { + "length": "4209", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/13/15/76482761-0-image-m-12_1697209165923.jpg" + }, + "content": "Liz Jones speaks to Tennessee-born country icon, Dolly Parton for You Magazine, as the star cements her legacy as a musician and style inspiration.", + "contentSnippet": "Liz Jones speaks to Tennessee-born country icon, Dolly Parton for You Magazine, as the star cements her legacy as a musician and style inspiration.", + "guid": "https://www.dailymail.co.uk/home/you/article-12622883/When-LIZ-JONES-met-Dolly-Parton-columnist-reveals-world-according-Dolly-really-keeps-wig-50-years-Jolene-released.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T17:04:32.000Z" + }, + { + "title": "THE CHIC LIST:\u00a0Coat cachet? Amal's my gal", + "link": "https://www.dailymail.co.uk/home/you/article-12623659/THE-CHIC-LIST-Coat-cachet-Amals-gal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 17:04:00 GMT", + "enclosure": { + "length": "5237", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/15/76478725-0-image-m-159_1697121537130.jpg" + }, + "content": "JOANNE HEGARTY: Married for almost a decade and parents to six-year-old twins, Amal and George behave like they're on the set of a romantic movie - but one from Hollywood's golden era.", + "contentSnippet": "JOANNE HEGARTY: Married for almost a decade and parents to six-year-old twins, Amal and George behave like they're on the set of a romantic movie - but one from Hollywood's golden era.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623659/THE-CHIC-LIST-Coat-cachet-Amals-gal.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T17:04:00.000Z" + }, + { + "title": "A cut, a chat and a shoulder to dry on:\u00a0As record numbers close, Jan Masters recalls the soul-soothing sanctuary of the old-school salon", + "link": "https://www.dailymail.co.uk/home/you/article-12623775/A-cut-chat-shoulder-dry-record-numbers-close-Jan-Masters-recalls-soul-soothing-sanctuary-old-school-salon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:59:58 GMT", + "enclosure": { + "length": "7243", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/13/12/76518203-0-image-a-52_1697197538823.jpg" + }, + "content": "With the Local\u00a0Data Company reporting that 527 traditional salons closed last year, Jan Masters celebrates the unique 'confessional relationship conducted purely in the salon chair.'", + "contentSnippet": "With the Local\u00a0Data Company reporting that 527 traditional salons closed last year, Jan Masters celebrates the unique 'confessional relationship conducted purely in the salon chair.'", + "guid": "https://www.dailymail.co.uk/home/you/article-12623775/A-cut-chat-shoulder-dry-record-numbers-close-Jan-Masters-recalls-soul-soothing-sanctuary-old-school-salon.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:59:58.000Z" + }, + { + "title": "TOM PARKER BOWLES: A French-inspired London spot that I will return to again and again", + "link": "https://www.dailymail.co.uk/home/you/article-12623759/TOM-PARKER-BOWLES-French-inspired-London-spot-return-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:57:18 GMT", + "enclosure": { + "length": "10564", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/13/12/76516937-0-image-m-41_1697196983832.jpg" + }, + "content": "Tom Parker Bowles is so impressed with 64 Goodge Street in central London, a modern bistro that would make even the most cynique of Parisians crack a smile of greedy delight, that he'll be going back.", + "contentSnippet": "Tom Parker Bowles is so impressed with 64 Goodge Street in central London, a modern bistro that would make even the most cynique of Parisians crack a smile of greedy delight, that he'll be going back.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623759/TOM-PARKER-BOWLES-French-inspired-London-spot-return-again.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:57:18.000Z" + }, + { + "title": "The Canny Cook, lower your food bills and still eat well with food editor Eleanor Maidment: Cheat's lasagne", + "link": "https://www.dailymail.co.uk/home/you/article-12623735/The-Canny-Cook-lower-food-bills-eat-food-editor-Eleanor-Maidment-Cheats-lasagne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:46:50 GMT", + "enclosure": { + "length": "8652", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/18/76486029-0-image-a-47_1697131807267.jpg" + }, + "content": "Do you have a great recipe for eating well and cutting food bills? Email editor@you.co.uk. If we print it here, we'll send you a bottle of champagne.", + "contentSnippet": "Do you have a great recipe for eating well and cutting food bills? Email editor@you.co.uk. If we print it here, we'll send you a bottle of champagne.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623735/The-Canny-Cook-lower-food-bills-eat-food-editor-Eleanor-Maidment-Cheats-lasagne.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:46:50.000Z" + }, + { + "title": "My life in drinks, Alex James: 'My best drink as a kid was Top Deck shandy'", + "link": "https://www.dailymail.co.uk/home/you/article-12623721/My-life-drinks-Alex-James-best-drink-kid-Deck-shandy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:45:49 GMT", + "enclosure": { + "length": "4127", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76482155-0-image-m-301_1697125313622.jpg" + }, + "content": "The Blur bassist, 54, tells Samuel Fishwick about drinking in the sixth form, his grandad's gooseberry wine and clinking glasses (almost) with the Queen.", + "contentSnippet": "The Blur bassist, 54, tells Samuel Fishwick about drinking in the sixth form, his grandad's gooseberry wine and clinking glasses (almost) with the Queen.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623721/My-life-drinks-Alex-James-best-drink-kid-Deck-shandy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:45:49.000Z" + }, + { + "title": "ON THE PULSE:\u00a0Healthy, hearty and wholesome bowls from Amelia Christie-Miller", + "link": "https://www.dailymail.co.uk/home/you/article-12623707/ON-PULSE-Healthy-hearty-wholesome-bowls-Amelia-Christie-Miller.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:44:26 GMT", + "enclosure": { + "length": "2230406", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76481171-0-image-a-281_1697124898648.jpg" + }, + "content": "As the UK heads into autumn and towards winter, these wholesome bowls incorporating beans make for the perfect comfort dishes.", + "contentSnippet": "As the UK heads into autumn and towards winter, these wholesome bowls incorporating beans make for the perfect comfort dishes.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623707/ON-PULSE-Healthy-hearty-wholesome-bowls-Amelia-Christie-Miller.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:44:26.000Z" + }, + { + "title": "AGELESS STYLE: Wardrobe staples for everyone by fashion stylist Arabella Greenhill", + "link": "https://www.dailymail.co.uk/home/you/article-12623701/AGELESS-STYLE-Wardrobe-staples-fashion-stylist-Arabella-Greenhill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:43:40 GMT", + "enclosure": { + "length": "6272", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76480817-0-image-m-260_1697123655088.jpg" + }, + "content": "Winter florals, or 'moody blooms', help us embrace the colder months with a bit of cheer. In darker, jewel-toned hues, florals are not only a great statement look, they also work for all occasions.", + "contentSnippet": "Winter florals, or 'moody blooms', help us embrace the colder months with a bit of cheer. In darker, jewel-toned hues, florals are not only a great statement look, they also work for all occasions.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623701/AGELESS-STYLE-Wardrobe-staples-fashion-stylist-Arabella-Greenhill.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:43:40.000Z" + }, + { + "title": "Say hello to yellow:\u00a0Why? Because from buttermilk to mustard, it's the must-wear colour of the season", + "link": "https://www.dailymail.co.uk/home/you/article-12623693/Say-hello-yellow-buttermilk-mustard-wear-colour-season.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:37:15 GMT", + "enclosure": { + "length": "4162", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/16/76480489-0-image-m-242_1697123372928.jpg" + }, + "content": "YOU Magazine shares a selection of the shades of yellow to wear in the UK this season, for the perfect bright yet autumnal look.", + "contentSnippet": "YOU Magazine shares a selection of the shades of yellow to wear in the UK this season, for the perfect bright yet autumnal look.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623693/Say-hello-yellow-buttermilk-mustard-wear-colour-season.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:37:15.000Z" + }, + { + "title": "How to solve the three most common skin conditions by ROSIE GREEN", + "link": "https://www.dailymail.co.uk/home/you/article-12623673/How-solve-three-common-skin-conditions-ROSIE-GREEN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:36:02 GMT", + "enclosure": { + "length": "9139", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/17/76483099-0-image-a-331_1697126453359.jpg" + }, + "content": "UK beauty expert Rosie Green shares her top tips for dealing with skin issues - and the products you should be keeping on hand to deal with any ailments.", + "contentSnippet": "UK beauty expert Rosie Green shares her top tips for dealing with skin issues - and the products you should be keeping on hand to deal with any ailments.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623673/How-solve-three-common-skin-conditions-ROSIE-GREEN.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:36:02.000Z" + }, + { + "title": "Eight things to make your bathroom more environmentally friendly", + "link": "https://www.dailymail.co.uk/home/you/article-12623645/Eight-things-make-bathroom-environmentally-friendly.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:34:11 GMT", + "enclosure": { + "length": "2668", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/15/76477941-0-image-a-133_1697120571362.jpg" + }, + "content": "Here, UK interiors expert Nicole Gray rounds up the best of the bunch if you're looking to spruce up your bathroom kit that's also eco-friendly.", + "contentSnippet": "Here, UK interiors expert Nicole Gray rounds up the best of the bunch if you're looking to spruce up your bathroom kit that's also eco-friendly.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623645/Eight-things-make-bathroom-environmentally-friendly.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:34:11.000Z" + }, + { + "title": "The new Not on the High Street? HOLLY TUCKER launches a platform hand-picking gifts for women made by women", + "link": "https://www.dailymail.co.uk/home/you/article-12623255/The-new-Not-High-Street-HOLLY-TUCKER-launches-platform-hand-picking-gifts-women-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:32:53 GMT", + "enclosure": { + "length": "12976", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/13/76472563-0-image-m-63_1697112963063.jpg" + }, + "content": "From her South London home, Holly Tucker shares her journey to success with Rosamund Dean.", + "contentSnippet": "From her South London home, Holly Tucker shares her journey to success with Rosamund Dean.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623255/The-new-Not-High-Street-HOLLY-TUCKER-launches-platform-hand-picking-gifts-women-women.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:32:53.000Z" + }, + { + "title": "A real-life plot twist:\u00a0His Jack Reacher thrillers have sold more than 100 million copies - now LEE CHILD is handing the writing reins to his brother, Andrew. They tell Michael Odell about the change of narrative", + "link": "https://www.dailymail.co.uk/home/you/article-12623199/A-real-life-plot-twist-Jack-Reacher-thrillers-sold-100-million-copies-LEE-CHILD-handing-writing-reins-brother-Andrew-tell-Michael-Odell-change-narrative.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:31:29 GMT", + "enclosure": { + "length": "12316", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/13/76473811-0-image-a-111_1697114016311.jpg" + }, + "content": "Lee Child published the first Jack Reacher novel, Killing Floor, in 1997 and wrote a further 23 titles in the series.", + "contentSnippet": "Lee Child published the first Jack Reacher novel, Killing Floor, in 1997 and wrote a further 23 titles in the series.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623199/A-real-life-plot-twist-Jack-Reacher-thrillers-sold-100-million-copies-LEE-CHILD-handing-writing-reins-brother-Andrew-tell-Michael-Odell-change-narrative.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:31:29.000Z" + }, + { + "title": "'I was a misfit - an outsider':\u00a0Catapulted to stardom after her music wooed the world at the London Olympics, EMELI SAND\u00c9 admits she still had much to learn. She tells Richard Godwin why life feels so much sweeter now", + "link": "https://www.dailymail.co.uk/home/you/article-12623161/I-misfit-outsider-Catapulted-stardom-music-wooed-world-London-Olympics-EMELI-SAND-admits-learn-tells-Richard-Godwin-life-feels-sweeter-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Sat, 21 Oct 2023 16:29:29 GMT", + "enclosure": { + "length": "9268", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/12/13/76473765-0-image-a-104_1697113981971.jpg" + }, + "content": "This is a different Sand\u00e9 from the megaton voice/asymmetrical haircut that exploded into the national consciousness during the London 2012 Olympics.", + "contentSnippet": "This is a different Sand\u00e9 from the megaton voice/asymmetrical haircut that exploded into the national consciousness during the London 2012 Olympics.", + "guid": "https://www.dailymail.co.uk/home/you/article-12623161/I-misfit-outsider-Catapulted-stardom-music-wooed-world-London-Olympics-EMELI-SAND-admits-learn-tells-Richard-Godwin-life-feels-sweeter-now.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-21T16:29:29.000Z" + }, + { + "title": "Tyson Fury v Francis Ngannou weigh-in LIVE: The Gypsy King and former UFC star prepare to hit the scales in Saudi Arabia ahead of epic crossover bout this weekend", + "link": "https://www.dailymail.co.uk/sport/live/article-12680355/Tyson-Fury-v-Francis-Ngannou-weigh-LIVE-Gypsy-King-former-UFC-star-prepare-hit-scales-Saudi-Arabia-ahead-epic-crossover-bout-weekend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:52:40 GMT", + "enclosure": { + "length": "9802", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/15/77070335-0-image-a-2_1698415831006.jpg" + }, + "content": "Follow Mail Sport's live blog for the Tyson Fury v Francis Ngannou weigh-in below.\u00a0", + "contentSnippet": "Follow Mail Sport's live blog for the Tyson Fury v Francis Ngannou weigh-in below.", + "guid": "https://www.dailymail.co.uk/sport/live/article-12680355/Tyson-Fury-v-Francis-Ngannou-weigh-LIVE-Gypsy-King-former-UFC-star-prepare-hit-scales-Saudi-Arabia-ahead-epic-crossover-bout-weekend.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:52:40.000Z" + }, + { + "title": "Ivanka Trump must TESTIFY at her father's $250 million New York fraud trial, judge says in shock ruling", + "link": "https://www.dailymail.co.uk/news/article-12680675/Ivanka-Trump-testify-donald-new-york-fraud-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:52:29 GMT", + "enclosure": { + "length": "9827", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77074661-0-Former_First_Daughter_Ivanka_Trump_channeled_former_First_Lady_a-m-15_1698421581275.jpg" + }, + "content": "Ivanka Trump will have to testify in the civil fraud case against her father, her brothers and the family business, a New York judge decided in a surprise ruling on Friday.", + "contentSnippet": "Ivanka Trump will have to testify in the civil fraud case against her father, her brothers and the family business, a New York judge decided in a surprise ruling on Friday.", + "guid": "https://www.dailymail.co.uk/news/article-12680675/Ivanka-Trump-testify-donald-new-york-fraud-trial.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:52:29.000Z" + }, + { + "title": "Inside the spooky Enfield Haunting house where teenage girl was photographed 'levitating above her bed' in terrifying 1970s 'poltergeist' case (but North London family living there now haven't experienced anything out of this world!)", + "link": "https://www.dailymail.co.uk/news/article-12680357/inside-enfield-haunting-house-teenage-girl-levitating-bed-north-london-family-terrorised-poltergeist-case.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:46:46 GMT", + "enclosure": { + "length": "8011", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77085621-0-image-a-73_1698419735722.jpg" + }, + "content": "EXCLUSIVE: MailOnline was given access to the property to re-visit the rooms where a teenage girl was photographed levitating above her bed and objects suddenly flew across the room.", + "contentSnippet": "EXCLUSIVE: MailOnline was given access to the property to re-visit the rooms where a teenage girl was photographed levitating above her bed and objects suddenly flew across the room.", + "guid": "https://www.dailymail.co.uk/news/article-12680357/inside-enfield-haunting-house-teenage-girl-levitating-bed-north-london-family-terrorised-poltergeist-case.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:46:46.000Z" + }, + { + "title": "Is YOUR makeup aging you? Beauty experts reveal the worst mistakes people with 'mature skin' can make when it comes to cosmetics - and share genius tips for faking your way to a youthful complexion", + "link": "https://www.dailymail.co.uk/femail/article-12668021/five-tips-mature-skin-aging-makeup-tiktok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:46:31 GMT", + "enclosure": { + "length": "10371", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/25/14/76960131-0-image-a-9_1698240762771.jpg" + }, + "content": "In a viral video about perfecting glam looks on mature skin, the Sydney, Australia-based influencer explained how to go glam and use powder by using her simple - but effective - beauty hacks.", + "contentSnippet": "In a viral video about perfecting glam looks on mature skin, the Sydney, Australia-based influencer explained how to go glam and use powder by using her simple - but effective - beauty hacks.", + "guid": "https://www.dailymail.co.uk/femail/article-12668021/five-tips-mature-skin-aging-makeup-tiktok.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:46:31.000Z" + }, + { + "title": "What boxing royalty 'Prince' Naseem Hamed and football icon Michael Owen can expect to bond over now their children are dating - from shock scandals to parenting dilemmas", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679533/What-boxing-royalty-Prince-Naseem-Hamed-football-icon-Michael-Owen-expect-bond-children-dating-shock-scandals-parenting-dilemmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:43:47 GMT", + "enclosure": { + "length": "11077", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/15/77084005-0-image-m-49_1698416836226.jpg" + }, + "content": "It was revealed this week that 'Prince' Naseem Hamed's son and Michael Owen's daughter are dating, with Aadam Hamed and\u00a0Gemma Owen\u00a0sharing a slew of snaps\u00a0from a romantic holiday in\u00a0Dubai.\u00a0", + "contentSnippet": "It was revealed this week that 'Prince' Naseem Hamed's son and Michael Owen's daughter are dating, with Aadam Hamed and\u00a0Gemma Owen\u00a0sharing a slew of snaps\u00a0from a romantic holiday in\u00a0Dubai.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679533/What-boxing-royalty-Prince-Naseem-Hamed-football-icon-Michael-Owen-expect-bond-children-dating-shock-scandals-parenting-dilemmas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:43:47.000Z" + }, + { + "title": "Moment man 'confesses' to 'murdering mother-of-four ex-girlfriend' who has been missing for more than a decade in 999 call played to court - before being arrested at police station", + "link": "https://www.dailymail.co.uk/news/article-12680011/Moment-man-confesses-murdering-mother-four-ex-girlfriend-missing-decade-999-call-played-court-arrested-police-station.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:43:07 GMT", + "enclosure": { + "length": "6377", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/14/77079497-0-Claire_Holland_who_has_been_missing_for_more_than_a_decade_with_-a-1_1698413600301.jpg" + }, + "content": "Darren Osment, 41, is\u00a0currently on trial for the murder of mother-of-four Claire Holland who has been 'missing' for more than a decade with no trace of her since she left a pub in Bristol.", + "contentSnippet": "Darren Osment, 41, is\u00a0currently on trial for the murder of mother-of-four Claire Holland who has been 'missing' for more than a decade with no trace of her since she left a pub in Bristol.", + "guid": "https://www.dailymail.co.uk/news/article-12680011/Moment-man-confesses-murdering-mother-four-ex-girlfriend-missing-decade-999-call-played-court-arrested-police-station.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:43:07.000Z" + }, + { + "title": "Kate Moss, 49, reveals the secrets to her youthful complexion as she gives a rare interview - and it includes \u00a320 tea bags", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12680255/Kate-Moss-secrets-youthful-rare-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:40:45 GMT", + "enclosure": { + "length": "10469", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77087451-0-image-a-15_1698421238352.jpg" + }, + "content": "The veteran supermodel, 49, looked sensational as she revealed, in a Q&A advertisement in Harrods, that she drinks Dawn tea every morning.", + "contentSnippet": "The veteran supermodel, 49, looked sensational as she revealed, in a Q&A advertisement in Harrods, that she drinks Dawn tea every morning.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12680255/Kate-Moss-secrets-youthful-rare-interview.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:40:45.000Z" + }, + { + "title": "Are plus-size going out of fashion? After Victoria's Secret's 'inclusive' rebrand fails activist Felicity Hayward accuses labels of treating bigger women as 'gimmicks' (but one retailer admits 'size 8 models shift more stock')", + "link": "https://www.dailymail.co.uk/femail/article-12674881/body-inclusivity-fashion-plus-size-models-high-street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:37:36 GMT", + "enclosure": { + "length": "11322", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/17/77042237-0-image-a-8_1698337469700.jpg" + }, + "content": "Plus-size model Felicity Hayward, 35, told FEMAIL: 'We want to be seen, we want to see clothes on people who look like us, and we want to see brands who are including the curve.'", + "contentSnippet": "Plus-size model Felicity Hayward, 35, told FEMAIL: 'We want to be seen, we want to see clothes on people who look like us, and we want to see brands who are including the curve.'", + "guid": "https://www.dailymail.co.uk/femail/article-12674881/body-inclusivity-fashion-plus-size-models-high-street.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:37:36.000Z" + }, + { + "title": "Is this where it's heading for Meghan and Harry? Princess at the heart of Norway's 'Megxit' now appears in reality TV and tours the country as a life coach (with tickets costing \u00a3125!)", + "link": "https://www.dailymail.co.uk/femail/article-12680457/Is-heading-Meghan-Harry-Princess-heart-Norways-Megxit-appears-reality-TV-tours-country-life-coach-tickets-costing-125.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:31:03 GMT", + "enclosure": { + "length": "11630", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77085731-0-image-a-4_1698419226735.jpg" + }, + "content": "In a move labelled Norway's 'Megxit', Princess Martha Louise decided to step back from royal duties in November 2022 to work alongside her\u00a0self-proclaimed 'shaman' fianc\u00e9.", + "contentSnippet": "In a move labelled Norway's 'Megxit', Princess Martha Louise decided to step back from royal duties in November 2022 to work alongside her\u00a0self-proclaimed 'shaman' fianc\u00e9.", + "guid": "https://www.dailymail.co.uk/femail/article-12680457/Is-heading-Meghan-Harry-Princess-heart-Norways-Megxit-appears-reality-TV-tours-country-life-coach-tickets-costing-125.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:31:03.000Z" + }, + { + "title": "Fire breaks out on P&O cruise ship as mobility scooter explodes sparking passenger evacuation", + "link": "https://www.dailymail.co.uk/news/article-12680455/fire-cruise-ship-mobility-scooter-explosion-passenger-evacuation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:30:21 GMT", + "enclosure": { + "length": "10950", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77086567-0-image-m-26_1698420226894.jpg" + }, + "content": "Passengers were evacuated from P&O cruise ship the Iona on Saturday after a fire broke out when a lithium battery on a mobility scooter exploded and burst into flames.", + "contentSnippet": "Passengers were evacuated from P&O cruise ship the Iona on Saturday after a fire broke out when a lithium battery on a mobility scooter exploded and burst into flames.", + "guid": "https://www.dailymail.co.uk/news/article-12680455/fire-cruise-ship-mobility-scooter-explosion-passenger-evacuation.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:30:21.000Z" + }, + { + "title": "Revealed - The mystery British power couple who are friends with Kim Kardashians: How Arsenal-loving Brit and his glamorous wife befriended the celebrity icon, partied with her in Dublin and took her kids to see the Gunners", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679353/kim-kardashian-british-friends-revealed-arsenal-wife-party-dublin-kids-red-devils.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:19:59 GMT", + "enclosure": { + "length": "10975", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77086533-0-image-a-1_1698419990771.jpg" + }, + "content": "Reality TV star Kim Kardashian has struck up a close friendship with a mystery British power couple who follow her across the world on her travels.", + "contentSnippet": "Reality TV star Kim Kardashian has struck up a close friendship with a mystery British power couple who follow her across the world on her travels.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679353/kim-kardashian-british-friends-revealed-arsenal-wife-party-dublin-kids-red-devils.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:19:59.000Z" + }, + { + "title": "Funeral is held for 15-year-old girl Jessica Baker who died in M53 bus crash while on her way to school", + "link": "https://www.dailymail.co.uk/news/article-12680185/Funeral-Jessica-Baker-M53-bus-crash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:13:45 GMT", + "enclosure": { + "length": "6004", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/14/77080383-0-image-a-37_1698412232772.jpg" + }, + "content": "Jessica Baker, 15, was killed instantly when the school coach overturned near junction 5 of the M53 in Wirral, Merseyside, on September 29.", + "contentSnippet": "Jessica Baker, 15, was killed instantly when the school coach overturned near junction 5 of the M53 in Wirral, Merseyside, on September 29.", + "guid": "https://www.dailymail.co.uk/news/article-12680185/Funeral-Jessica-Baker-M53-bus-crash.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:13:45.000Z" + }, + { + "title": "75-year-old who is in PERFECT health reveals the 'SHIELD' lifestyle regimen he relies on to 'protect' his physical and mental wellbeing as he ages", + "link": "https://www.dailymail.co.uk/femail/article-12655247/75-year-old-financier-reveals-secrets-staying-healthy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:11:46 GMT", + "enclosure": { + "length": "10220", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/23/13/76891511-0-image-a-7_1698065645925.jpg" + }, + "content": "At 75 years old, Ng Kok Song is as mentally and physically strong as he's ever been - thanks to a few simple tricks. Financier Ng, from Singapore, says he uses the acronym SHIELD.", + "contentSnippet": "At 75 years old, Ng Kok Song is as mentally and physically strong as he's ever been - thanks to a few simple tricks. Financier Ng, from Singapore, says he uses the acronym SHIELD.", + "guid": "https://www.dailymail.co.uk/femail/article-12655247/75-year-old-financier-reveals-secrets-staying-healthy.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:11:46.000Z" + }, + { + "title": "Keir Starmer faces a major Labour rebellion over his support for Israeli attacks in Gaza as Sadiq Khan and Andy Burnham lead demands for a ceasefire and a quarter of party MPs back calls for humanitarian end to bloodshed", + "link": "https://www.dailymail.co.uk/news/article-12680497/Keir-Starmer-faces-major-Labour-rebellion-Israel-Gaza-Sadiq-Khan-Andy-Burnham-Anas-Sarwar.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:09:21 GMT", + "enclosure": { + "length": "3691", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/10/77072599-0-image-m-80_1698397907823.jpg" + }, + "content": "Andy Burnham , the mayor of Greater Manchester, this afternoon joined his London counterpart Sadiq Khan and Scottish party leader Anas Sawar in supporting an end to the fighting.", + "contentSnippet": "Andy Burnham , the mayor of Greater Manchester, this afternoon joined his London counterpart Sadiq Khan and Scottish party leader Anas Sawar in supporting an end to the fighting.", + "guid": "https://www.dailymail.co.uk/news/article-12680497/Keir-Starmer-faces-major-Labour-rebellion-Israel-Gaza-Sadiq-Khan-Andy-Burnham-Anas-Sarwar.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:09:21.000Z" + }, + { + "title": "I got stuck in the toilet at work on the first day in my new role - my colleagues had to kick down the door to save me", + "link": "https://www.dailymail.co.uk/femail/article-12679925/I-got-stuck-toilet-work-day-new-role-colleagues-kick-door-save-me.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:07:12 GMT", + "enclosure": { + "length": "7872", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078747-0-image-a-13_1698409048605.jpg" + }, + "content": "For Lola Bridger, 23, disaster struck when she tried to nip to the loo during her first day at work as an admin assistant in London.", + "contentSnippet": "For Lola Bridger, 23, disaster struck when she tried to nip to the loo during her first day at work as an admin assistant in London.", + "guid": "https://www.dailymail.co.uk/femail/article-12679925/I-got-stuck-toilet-work-day-new-role-colleagues-kick-door-save-me.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:07:12.000Z" + }, + { + "title": "Incredible footage shows boats pushing a FLOATING ISLAND around a lake", + "link": "https://www.dailymail.co.uk/travel/article-12676553/Incredible-footage-shows-boats-pushing-FLOATING-ISLAND-lake.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:04:57 GMT", + "enclosure": { + "length": "8065", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/16/77035263-0-image-a-9_1698335401650.jpg" + }, + "content": "The island in Wisconsin's Lake Chippewa needs to be shifted on a near-annual basis so it doesn't float too close to a bridge that connects the east and west sides of the lake.", + "contentSnippet": "The island in Wisconsin's Lake Chippewa needs to be shifted on a near-annual basis so it doesn't float too close to a bridge that connects the east and west sides of the lake.", + "guid": "https://www.dailymail.co.uk/travel/article-12676553/Incredible-footage-shows-boats-pushing-FLOATING-ISLAND-lake.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:04:57.000Z" + }, + { + "title": "Get the police on the case! Luggage louts caught on camera pinching bags from taxi boot before owners get out", + "link": "https://www.dailymail.co.uk/news/article-12680115/stolen-suitcase-video-kings-cross-station-london.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 15:04:44 GMT", + "enclosure": { + "length": "9543", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/16/77084975-0-image-a-60_1698419001605.jpg" + }, + "content": "Shocking footage has captured the moment a suitcase is stolen from the boot of a taxi by a brazen thief outside London 's King's Cross station, as police issue warning to tourists.", + "contentSnippet": "Shocking footage has captured the moment a suitcase is stolen from the boot of a taxi by a brazen thief outside London 's King's Cross station, as police issue warning to tourists.", + "guid": "https://www.dailymail.co.uk/news/article-12680115/stolen-suitcase-video-kings-cross-station-london.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T15:04:44.000Z" + }, + { + "title": "Psychologist Emma Kenny blasts 'celebrity-washing' that makes mental health issues seem 'sexy' as she opens up about how her father took his own life after a battle with depression", + "link": "https://www.dailymail.co.uk/femail/article-12679927/Psychologist-Emma-Kenny-blasts-celebrity-washing-makes-mental-health-issues-sexy-opens-father-took-life-battle-depression.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 14:55:44 GMT", + "enclosure": { + "length": "10714", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/14/77081159-0-image-a-46_1698413357231.jpg" + }, + "content": "Manchester-based Emma Kenny, who regularly appears on television and is resident therapist on ITV 's This Morning, also called for a change in the way we approach mental health issues.", + "contentSnippet": "Manchester-based Emma Kenny, who regularly appears on television and is resident therapist on ITV 's This Morning, also called for a change in the way we approach mental health issues.", + "guid": "https://www.dailymail.co.uk/femail/article-12679927/Psychologist-Emma-Kenny-blasts-celebrity-washing-makes-mental-health-issues-sexy-opens-father-took-life-battle-depression.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T14:55:44.000Z" + }, + { + "title": "The ghost of Diana haunts our screens. The new Queen is flagging in the polls. But could\u00a0the controversial finale of The Crown bring unexpected VINDICATION for Camilla?", + "link": "https://www.dailymail.co.uk/news/article-12675331/Controversial-finale-Crown-VINDICATION-Camilla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 14:45:54 GMT", + "enclosure": { + "length": "10386", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/13/77031413-0-image-a-48_1698324354255.jpg" + }, + "content": "The polls show we're still in favour of the Monarchy, Charles is doing a good job while William and Kate grow more popular by the week. There's one thing that doesn't seem to change, though...", + "contentSnippet": "The polls show we're still in favour of the Monarchy, Charles is doing a good job while William and Kate grow more popular by the week. There's one thing that doesn't seem to change, though...", + "guid": "https://www.dailymail.co.uk/news/article-12675331/Controversial-finale-Crown-VINDICATION-Camilla.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T14:45:54.000Z" + }, + { + "title": "Welcome to the Restaurant of Mistaken Orders in Tokyo where customers get the wrong meals and bad service... but LOVE it", + "link": "https://www.dailymail.co.uk/news/article-12680189/restaurant-tokyo-wrong-meals-bad-service-restaurant-mistaken-orders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 14:44:11 GMT", + "enclosure": { + "length": "10427", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/15/77082167-0-image-a-19_1698415250278.jpg" + }, + "content": "The Restaurant of Mistaken Orders in Tokyo, Japan opens as a recurring pop-up spot in the city in order to raise awareness among its clientele about dementia.", + "contentSnippet": "The Restaurant of Mistaken Orders in Tokyo, Japan opens as a recurring pop-up spot in the city in order to raise awareness among its clientele about dementia.", + "guid": "https://www.dailymail.co.uk/news/article-12680189/restaurant-tokyo-wrong-meals-bad-service-restaurant-mistaken-orders.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T14:44:11.000Z" + }, + { + "title": "Bizarre moment motorist drives into a man who ends up on the bonnet before the vehicle knocks a woman over during Storm Babet flooding", + "link": "https://www.dailymail.co.uk/news/article-12679557/Bizarre-moment-motorist-drives-man-ends-bonnet-vehicle-knocks-woman-Storm-Babet-flooding.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 14:41:24 GMT", + "enclosure": { + "length": "10659", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077099-0-image-m-10_1698405923336.jpg" + }, + "content": "In the video, the motorist is seen driving down Nottingham Road in Ilkeston, Derbyshire, on October 21 following days of relentless rain.", + "contentSnippet": "In the video, the motorist is seen driving down Nottingham Road in Ilkeston, Derbyshire, on October 21 following days of relentless rain.", + "guid": "https://www.dailymail.co.uk/news/article-12679557/Bizarre-moment-motorist-drives-man-ends-bonnet-vehicle-knocks-woman-Storm-Babet-flooding.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T14:41:24.000Z" + }, + { + "title": "'I felt I'd done something positive but I was being punished for it': Convicted murderer who took on London Bridge terrorist while he was on day release says he was left 'suicidal' after attack when he was moved from open jail to Category B prison", + "link": "https://www.dailymail.co.uk/news/article-12679813/murderer-London-Bridge-terrorist-day-release-left-suicidal-attack-moved-open-jail-Category-B-prison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 14:32:54 GMT", + "enclosure": { + "length": "8765", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77079251-0-image-m-14_1698410109813.jpg" + }, + "content": "Steve Gallant was spending his first day outside prison in 14 years when convicted terrorist Usman Khan began attacking people at Fishmongers' Hall next to London Bridge.", + "contentSnippet": "Steve Gallant was spending his first day outside prison in 14 years when convicted terrorist Usman Khan began attacking people at Fishmongers' Hall next to London Bridge.", + "guid": "https://www.dailymail.co.uk/news/article-12679813/murderer-London-Bridge-terrorist-day-release-left-suicidal-attack-moved-open-jail-Category-B-prison.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T14:32:54.000Z" + }, + { + "title": "Strictly Come Dancing's Angela Rippon,\u00a079, reveals why she's still determined to get as much fun out of life as possible", + "link": "https://www.dailymail.co.uk/femail/article-12666153/Strictly-Come-Dancings-Angela-Rippon-79-reveals-shes-determined-fun-life-possible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 14:12:08 GMT", + "enclosure": { + "length": "12077", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/24/15/76937303-0-image-a-64_1698158216718.jpg" + }, + "content": "Angela Rippon is 79 years of age, the oldest person ever to grace the dance floor on the BBC's British flagship series and - at the time we're talking - has not just survived, but thrived.", + "contentSnippet": "Angela Rippon is 79 years of age, the oldest person ever to grace the dance floor on the BBC's British flagship series and - at the time we're talking - has not just survived, but thrived.", + "guid": "https://www.dailymail.co.uk/femail/article-12666153/Strictly-Come-Dancings-Angela-Rippon-79-reveals-shes-determined-fun-life-possible.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T14:12:08.000Z" + }, + { + "title": "How Iran pulls terrorist strings across the Middle East: Tehran uses its influence and proxy fighters to spread murder and mayhem throughout the region in its war against the West", + "link": "https://www.dailymail.co.uk/news/article-12679509/How-Iran-pulls-terrorist-strings-Middle-East-Tehran-uses-influence-proxy-fighters-spread-murder-mayhem-region-war-against-West.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 14:01:06 GMT", + "enclosure": { + "length": "13031", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/14/77081003-0-image-m-30_1698413216888.jpg" + }, + "content": "After the United States expanded its military support for Israel in the wake of Hamas' attacks, the Jewish state's most fearsome foe - Iran - has warned it could soon enter the fray", + "contentSnippet": "After the United States expanded its military support for Israel in the wake of Hamas' attacks, the Jewish state's most fearsome foe - Iran - has warned it could soon enter the fray", + "guid": "https://www.dailymail.co.uk/news/article-12679509/How-Iran-pulls-terrorist-strings-Middle-East-Tehran-uses-influence-proxy-fighters-spread-murder-mayhem-region-war-against-West.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T14:01:06.000Z" + }, + { + "title": "The most expensive fish and chips in the UK: From Tom Kerridge's \u00a337 Harrods meal, a \u00a327.50 plate at Bentley's in Mayfair, and Gordon Ramsay's \u00a323 dish..the priciest offerings of the British classic (compared to the cheapest in Grimsby at just \u00a33!)", + "link": "https://www.dailymail.co.uk/news/article-12169213/expensive-fish-chips-UK-Tom-Kerridges-Harrods.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 13:48:50 GMT", + "enclosure": { + "length": "8584", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078927-0-image-m-74_1698409340266.jpg" + }, + "content": "TV chef Tom Kerridge has been making headlines since June when it emerged that his restaurant is selling his take on fish and chips for a staggering \u00a337 - excluding the service charge.", + "contentSnippet": "TV chef Tom Kerridge has been making headlines since June when it emerged that his restaurant is selling his take on fish and chips for a staggering \u00a337 - excluding the service charge.", + "guid": "https://www.dailymail.co.uk/news/article-12169213/expensive-fish-chips-UK-Tom-Kerridges-Harrods.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T13:48:50.000Z" + }, + { + "title": "I've MARRIED my 22-year-old adopted son after raising him from the age of 14 - officials have now taken my other five children away from me", + "link": "https://www.dailymail.co.uk/femail/article-12679607/russian-woman-married-son.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 13:35:32 GMT", + "enclosure": { + "length": "11470", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77077965-0-image-a-16_1698407505782.jpg" + }, + "content": "Aisylu Chizhevskaya Mingalim, 53, from Tatarstan, shocked child welfare experts after marrying her 22-year-old adopted son, Daniel Chizhevsky.", + "contentSnippet": "Aisylu Chizhevskaya Mingalim, 53, from Tatarstan, shocked child welfare experts after marrying her 22-year-old adopted son, Daniel Chizhevsky.", + "guid": "https://www.dailymail.co.uk/femail/article-12679607/russian-woman-married-son.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T13:35:32.000Z" + }, + { + "title": "Just in time for Halloween! NASA's Juno probe spots a ghoulish 'face' on Jupiter", + "link": "https://www.dailymail.co.uk/sciencetech/article-12679849/Just-time-Halloween-NASAs-Juno-probe-spots-ghoulish-face-Jupiter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 13:28:54 GMT", + "enclosure": { + "length": "2967", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77078079-0-image-m-51_1698407793046.jpg" + }, + "content": "The picture was snapped by the US space agency's Juno probe during its 54th close flyby of the gas giant last month.", + "contentSnippet": "The picture was snapped by the US space agency's Juno probe during its 54th close flyby of the gas giant last month.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12679849/Just-time-Halloween-NASAs-Juno-probe-spots-ghoulish-face-Jupiter.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T13:28:54.000Z" + }, + { + "title": "A topless face-off with Mike Tyson, trashing a stage, headbutting a glass wall - and lashing out at KSI: The bizarre pre-fight antics of Tyson Fury's hellraising father John - as bemused fans brand him 'the most embarrassing man on the planet'", + "link": "https://www.dailymail.co.uk/news/article-12679777/Tyson-fury-bizarre-pre-fight-antics-father-john-ksi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 13:17:16 GMT", + "enclosure": { + "length": "4270", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078591-0-image-m-98_1698408693887.jpg" + }, + "content": "John, an Irish former professional boxer, was last seen on Thursday charging down a stage towards Iron Mike and shouting\u00a0'do you want to fight me?'", + "contentSnippet": "John, an Irish former professional boxer, was last seen on Thursday charging down a stage towards Iron Mike and shouting\u00a0'do you want to fight me?'", + "guid": "https://www.dailymail.co.uk/news/article-12679777/Tyson-fury-bizarre-pre-fight-antics-father-john-ksi.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T13:17:16.000Z" + }, + { + "title": "We're au pairs and we graduated from Norland College, where Prince George's nanny trained - now we life a life of luxury in Beverly Hills", + "link": "https://www.dailymail.co.uk/femail/article-12679589/Norland-nanny-twins-gives-insight-life-one-year-Norland-college-trains-nannies-including-Spanish-supernanny-whos-cared-William-Kates-children-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 13:04:14 GMT", + "enclosure": { + "length": "11035", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/12/77076759-0-image-a-6_1698404900842.jpg" + }, + "content": "Two unnamed twin sisters, who graduated from the prestigious college in Bath last year, have revealed their newfound luxury lifestyle as travel au pairs.", + "contentSnippet": "Two unnamed twin sisters, who graduated from the prestigious college in Bath last year, have revealed their newfound luxury lifestyle as travel au pairs.", + "guid": "https://www.dailymail.co.uk/femail/article-12679589/Norland-nanny-twins-gives-insight-life-one-year-Norland-college-trains-nannies-including-Spanish-supernanny-whos-cared-William-Kates-children-years.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T13:04:14.000Z" + }, + { + "title": "EXCLUSIVE: Kris Jenner's former bodyguard Marc McWilliams who accused her of grabbing his crotch and exposing her body parts in a 'lewd manner' drops $3million lawsuit", + "link": "https://www.dailymail.co.uk/tvshowbiz/article-12679823/Kris-Jenner-accused-groping-crotch-bodyguard-settles-sexual-assault-lawsuit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:59:36 GMT", + "enclosure": { + "length": "10848", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2022/01/11/20/52809617-0-image-a-46_1641931209158.jpg" + }, + "content": "Marc McWilliams, 47, who worked for Kardashian-Jenner clan from 2017-2019,\u00a0 accused the matriarch of\u00a0sexual harassment as well as sexual assault and battery.", + "contentSnippet": "Marc McWilliams, 47, who worked for Kardashian-Jenner clan from 2017-2019,\u00a0 accused the matriarch of\u00a0sexual harassment as well as sexual assault and battery.", + "guid": "https://www.dailymail.co.uk/tvshowbiz/article-12679823/Kris-Jenner-accused-groping-crotch-bodyguard-settles-sexual-assault-lawsuit.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:59:36.000Z" + }, + { + "title": "Wilko was 'saved from the scrapheap because shoppers love the brand - but it will have its work cut out competing with other discount retailers', expert warns as chain returns to high street... is a store opening near YOU?", + "link": "https://www.dailymail.co.uk/news/article-12680097/Wilko-high-street-expert-new-stores-UK-location-near-Range.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:59:07 GMT", + "enclosure": { + "length": "9607", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/76514519-0-image-m-125_1698411117578.jpg" + }, + "content": "Financial expert Susannah Streeter said there was clearly 'affection for Wilko among throngs of value conscious shoppers' but added that its store locations will be 'key'.", + "contentSnippet": "Financial expert Susannah Streeter said there was clearly 'affection for Wilko among throngs of value conscious shoppers' but added that its store locations will be 'key'.", + "guid": "https://www.dailymail.co.uk/news/article-12680097/Wilko-high-street-expert-new-stores-UK-location-near-Range.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:59:07.000Z" + }, + { + "title": "FTX founder Sam Bankman-Fried is scolded by Judge Lewis Kaplan for rambling on the stand, ordering him to 'answer the questions directly' during brutal cross examination", + "link": "https://www.dailymail.co.uk/news/article-12680037/FTX-founder-Sam-Bankman-Fried-scolded-Judge-Lewis-Kaplan-rambling-stand-ordering-answer-questions-directly-brutal-cross-examination.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:56:55 GMT", + "enclosure": { + "length": "10275", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/26/20/77048141-0-image-a-49_1698347373429.jpg" + }, + "content": "Judge Lewis Kaplan lost his patience with Bankman-Fried, remarking that he felt he had 'gotten beyond my tether here'.", + "contentSnippet": "Judge Lewis Kaplan lost his patience with Bankman-Fried, remarking that he felt he had 'gotten beyond my tether here'.", + "guid": "https://www.dailymail.co.uk/news/article-12680037/FTX-founder-Sam-Bankman-Fried-scolded-Judge-Lewis-Kaplan-rambling-stand-ordering-answer-questions-directly-brutal-cross-examination.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:56:55.000Z" + }, + { + "title": "Revealed: Ryan Gosling is the most DANGEROUS name to search online - while looking up Emily Blunt or Jennifer Lopez could also land you in hot water", + "link": "https://www.dailymail.co.uk/sciencetech/article-12679877/Ryan-Gosling-DANGEROUS-search-online-looking-Emily-Blunt-Jennifer-Lopez-land-hot-water.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:49:56 GMT", + "enclosure": { + "length": "10153", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77079805-0-image-a-148_1698410929964.jpg" + }, + "content": "A new report by McAfee Labs shows that Ryan Gosling's name is most use by scammers to create malware or risky sites.", + "contentSnippet": "A new report by McAfee Labs shows that Ryan Gosling's name is most use by scammers to create malware or risky sites.", + "guid": "https://www.dailymail.co.uk/sciencetech/article-12679877/Ryan-Gosling-DANGEROUS-search-online-looking-Emily-Blunt-Jennifer-Lopez-land-hot-water.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:49:56.000Z" + }, + { + "title": "Chelsea boss Mauricio Pochettino says the Premier League's Christmas Eve game will leave his WIFE unhappy as he misses their wedding anniversary, as he joins fan anger against fixtures", + "link": "https://www.dailymail.co.uk/sport/football/article-12680043/Chelsea-boss-Mauricio-Pochettino-says-Premier-Leagues-Christmas-Eve-game-leave-WIFE-unhappy-misses-wedding-anniversary-joins-fan-anger-against-fixtures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:47:14 GMT", + "enclosure": { + "length": "10088", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77079173-0-image-a-59_1698409939525.jpg" + }, + "content": "ADRIAN KAJUMBA: The Premier League's decision was dubbed 'totally unacceptable' by Chelsea's Supporters' Trust who also called for the decision to be reversed.", + "contentSnippet": "ADRIAN KAJUMBA: The Premier League's decision was dubbed 'totally unacceptable' by Chelsea's Supporters' Trust who also called for the decision to be reversed.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12680043/Chelsea-boss-Mauricio-Pochettino-says-Premier-Leagues-Christmas-Eve-game-leave-WIFE-unhappy-misses-wedding-anniversary-joins-fan-anger-against-fixtures.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:47:14.000Z" + }, + { + "title": "Teenager, 17, charged with the murder of a 60-year-old woman stabbed to death in her own home", + "link": "https://www.dailymail.co.uk/news/article-12679995/Teenager-17-charged-murder-60-year-old-woman-stabbed-death-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:32:31 GMT", + "enclosure": { + "length": "7633", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078325-0-image-m-6_1698408393982.jpg" + }, + "content": "Mandy Barnett, pictured, died on Monday night shortly after she was rushed to hospital having suffered grave knife wounds at a house in Leeds.", + "contentSnippet": "Mandy Barnett, pictured, died on Monday night shortly after she was rushed to hospital having suffered grave knife wounds at a house in Leeds.", + "guid": "https://www.dailymail.co.uk/news/article-12679995/Teenager-17-charged-murder-60-year-old-woman-stabbed-death-home.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:32:31.000Z" + }, + { + "title": "Israeli Liverpool fan gets his tattoo of their crest blacked out and replaced by a Star of David while crossing out 'Never' from their motto 'You'll Never Walk Alone' - after the club banned a tribute to fans murdered by Hamas", + "link": "https://www.dailymail.co.uk/sport/football/article-12679885/Israeli-Liverpool-fan-gets-tattoo-crest-blacked-replaced-Star-David-crossing-Never-motto-Youll-Never-Walk-club-banned-tribute-fans-murdered-Hamas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "pubDate": "Fri, 27 Oct 2023 12:14:30 GMT", + "enclosure": { + "length": "9978", + "type": "image/jpeg", + "url": "https://i.dailymail.co.uk/1s/2023/10/27/13/77078657-0-image-a-24_1698408842098.jpg" + }, + "content": "A lifelong Reds fan hailing from Israel, Oren Sensel, has been angered by Liverpool's decision to ban tributes to those killed by the Hamas attacks, and has stated he will no longer support the club.", + "contentSnippet": "A lifelong Reds fan hailing from Israel, Oren Sensel, has been angered by Liverpool's decision to ban tributes to those killed by the Hamas attacks, and has stated he will no longer support the club.", + "guid": "https://www.dailymail.co.uk/sport/football/article-12679885/Israeli-Liverpool-fan-gets-tattoo-crest-blacked-replaced-Star-David-crossing-Never-motto-Youll-Never-Walk-club-banned-tribute-fans-murdered-Hamas.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", + "isoDate": "2023-10-27T12:14:30.000Z" + } +] diff --git a/intro to react/newData/oldNews/e708c1d33bdfaa397da3f3f68681ae2d010f0fd76eaef33bb65f8cf4544a7713.json b/intro to react/newData/oldNews/e708c1d33bdfaa397da3f3f68681ae2d010f0fd76eaef33bb65f8cf4544a7713.json index 2bbb6d6..6b7bada 100644 --- a/intro to react/newData/oldNews/e708c1d33bdfaa397da3f3f68681ae2d010f0fd76eaef33bb65f8cf4544a7713.json +++ b/intro to react/newData/oldNews/e708c1d33bdfaa397da3f3f68681ae2d010f0fd76eaef33bb65f8cf4544a7713.json @@ -1,1332 +1,1332 @@ [ - { - "title": "'Loss and Damage Fund' is a landmark - but it's taken 32 years just to get here", - "link": "https://news.sky.com/story/cop28-uae-loss-and-damage-fund-is-a-landmark-but-its-taken-32-years-just-to-get-here-13020030", - "pubDate": "Thu, 30 Nov 2023 22:24:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-cop28-dubai-uae_6378062.jpg?20231130223134", - "length": "0", - "type": "image/jpeg" - }, - "content": "Here's something for those who think climate summits aren't really getting us anywhere.", - "contentSnippet": "Here's something for those who think climate summits aren't really getting us anywhere.", - "guid": "https://news.sky.com/story/cop28-uae-loss-and-damage-fund-is-a-landmark-but-its-taken-32-years-just-to-get-here-13020030", - "isoDate": "2023-11-30T22:24:00.000Z" - }, - { - "title": "Three police officers injured after clashes involving fans of Polish team outside Villa match", - "link": "https://news.sky.com/story/villa-park-disorder-three-police-officers-injured-after-clashes-involving-fans-of-polish-team-outside-ground-13019927", - "pubDate": "Thu, 30 Nov 2023 20:48:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-police-aston-villa_6378000.jpg?20231130210657", - "length": "0", - "type": "image/jpeg" - }, - "content": "Three police officers have been injured following disorder outside Aston Villa's ground in Birmingham ahead of a Europa Conference League match.", - "contentSnippet": "Three police officers have been injured following disorder outside Aston Villa's ground in Birmingham ahead of a Europa Conference League match.", - "guid": "https://news.sky.com/story/villa-park-disorder-three-police-officers-injured-after-clashes-involving-fans-of-polish-team-outside-ground-13019927", - "isoDate": "2023-11-30T20:48:00.000Z" - }, - { - "title": "As Gazans are told to move to a barren wilderness, can Israel destroy Hamas without killing thousands more?", - "link": "https://news.sky.com/story/as-gazans-are-told-to-move-to-a-1km-by-14km-wilderness-can-israel-destroy-hamas-without-killing-thousands-more-13019892", - "pubDate": "Thu, 30 Nov 2023 20:18:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-gaza-al-mawasi-camp_6377958.jpg?20231130203941", - "length": "0", - "type": "image/jpeg" - }, - "content": "From the Oval Office of the President of the United States, to the corridors of the royal palaces in Qatar, and through the messages of spy chiefs and negotiators to Hamas and Israel, there is an intense desire to keep this fragile ceasefire in Gaza in place. ", - "contentSnippet": "From the Oval Office of the President of the United States, to the corridors of the royal palaces in Qatar, and through the messages of spy chiefs and negotiators to Hamas and Israel, there is an intense desire to keep this fragile ceasefire in Gaza in place.", - "guid": "https://news.sky.com/story/as-gazans-are-told-to-move-to-a-1km-by-14km-wilderness-can-israel-destroy-hamas-without-killing-thousands-more-13019892", - "isoDate": "2023-11-30T20:18:00.000Z" - }, - { - "title": "Sunak to call for 'pragmatic' climate action at COP28", - "link": "https://news.sky.com/story/cop28-rishi-sunak-to-call-for-pragmatic-climate-action-at-conference-after-green-u-turns-earlier-this-year-13019876", - "pubDate": "Thu, 30 Nov 2023 19:58:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/21/11/70x70/skynews-rishi-sunak-climate_5569929.jpg?20211103090554", - "length": "0", - "type": "image/jpeg" - }, - "content": "Rishi Sunak will call for \"pragmatic\" climate action at COP28, as he seeks to reassure international partners following his climate U-turns earlier this year.", - "contentSnippet": "Rishi Sunak will call for \"pragmatic\" climate action at COP28, as he seeks to reassure international partners following his climate U-turns earlier this year.", - "guid": "https://news.sky.com/story/cop28-rishi-sunak-to-call-for-pragmatic-climate-action-at-conference-after-green-u-turns-earlier-this-year-13019876", - "isoDate": "2023-11-30T19:58:00.000Z" - }, - { - "title": "Elon Musk: A timeline of his most recent controversial moments", - "link": "https://news.sky.com/story/elon-musk-what-are-his-most-recent-controversial-moments-13019651", - "pubDate": "Thu, 30 Nov 2023 15:13:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/07/70x70/skynews-elon-musk-ai_6217043.jpg?20230712213547", - "length": "0", - "type": "image/jpeg" - }, - "content": "Elon Musk has apologised for endorsing an antisemitic conspiracy theory, admitting it may have been \"literally the worst and dumbest post I've ever done\".", - "contentSnippet": "Elon Musk has apologised for endorsing an antisemitic conspiracy theory, admitting it may have been \"literally the worst and dumbest post I've ever done\".", - "guid": "https://news.sky.com/story/elon-musk-what-are-his-most-recent-controversial-moments-13019651", - "isoDate": "2023-11-30T15:13:00.000Z" - }, - { - "title": "Shane MacGowan: A wild life, a raw talent, a forever connection with Christmas - whether he liked it or not", - "link": "https://news.sky.com/story/shane-macgowan-obituary-a-wild-life-raw-talent-and-a-forever-connection-with-christmas-whether-he-liked-it-or-not-13008693", - "pubDate": "Thu, 30 Nov 2023 11:50:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-shane-macgowan-singer_6361217.jpg?20231115102913", - "length": "0", - "type": "image/jpeg" - }, - "content": "According to Shane MacGowan, the seeds of Fairytale Of New York were sown when Elvis Costello bet him he couldn't write a yuletide hit without selling out.", - "contentSnippet": "According to Shane MacGowan, the seeds of Fairytale Of New York were sown when Elvis Costello bet him he couldn't write a yuletide hit without selling out.", - "guid": "https://news.sky.com/story/shane-macgowan-obituary-a-wild-life-raw-talent-and-a-forever-connection-with-christmas-whether-he-liked-it-or-not-13008693", - "isoDate": "2023-11-30T11:50:00.000Z" - }, - { - "title": "Shane MacGowan, best known for Christmas hit Fairytale Of New York, dies", - "link": "https://news.sky.com/story/the-pogues-star-shane-macgowan-best-known-for-christmas-hit-fairytale-of-new-york-dies-at-65-13008760", - "pubDate": "Thu, 30 Nov 2023 11:40:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-shane-macgowan-hospital_6377537.jpg?20231130123633", - "length": "0", - "type": "image/jpeg" - }, - "content": "Musician and singer Shane MacGowan, best known as the frontman of The Pogues, has died at the age of 65.", - "contentSnippet": "Musician and singer Shane MacGowan, best known as the frontman of The Pogues, has died at the age of 65.", - "guid": "https://news.sky.com/story/the-pogues-star-shane-macgowan-best-known-for-christmas-hit-fairytale-of-new-york-dies-at-65-13008760", - "isoDate": "2023-11-30T11:40:00.000Z" - }, - { - "title": "Former US secretary of state Henry Kissinger dies aged 100", - "link": "https://news.sky.com/story/former-united-states-secretary-of-state-henry-kissinger-has-died-aged-100-13019308", - "pubDate": "Thu, 30 Nov 2023 01:43:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-henry-kissinger-us_6377138.jpg?20231130014753", - "length": "0", - "type": "image/jpeg" - }, - "content": "Former United States secretary of state Henry Kissinger has died aged 100.\n", - "contentSnippet": "Former United States secretary of state Henry Kissinger has died aged 100.", - "guid": "https://news.sky.com/story/former-united-states-secretary-of-state-henry-kissinger-has-died-aged-100-13019308", - "isoDate": "2023-11-30T01:43:00.000Z" - }, - { - "title": "An end to the truce approaches - but the people of Gaza are desperate for help", - "link": "https://news.sky.com/story/an-end-to-the-israel-hamas-truce-approaches-but-the-people-of-gaza-are-desperate-for-help-13019257", - "pubDate": "Wed, 29 Nov 2023 22:01:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-gaza-israel_6377074.jpg?20231129221956", - "length": "0", - "type": "image/jpeg" - }, - "content": "The ceasefire clock is ticking down and everyone in Gaza knows it.", - "contentSnippet": "The ceasefire clock is ticking down and everyone in Gaza knows it.", - "guid": "https://news.sky.com/story/an-end-to-the-israel-hamas-truce-approaches-but-the-people-of-gaza-are-desperate-for-help-13019257", - "isoDate": "2023-11-29T22:01:00.000Z" - }, - { - "title": "UK sending one of its most lethal warships to Gulf to deter Iran-backed groups", - "link": "https://news.sky.com/story/israel-hamas-war-uk-sending-one-of-its-most-lethal-warships-to-gulf-to-deter-iran-backed-groups-13018926", - "pubDate": "Wed, 29 Nov 2023 14:06:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-hms-diamond-royal-navy_6376613.jpg?20231129142358", - "length": "0", - "type": "image/jpeg" - }, - "content": "The UK is sending one of its most lethal warships to the Gulf to deter growing threats to shipping from Iran and Iranian-backed groups in the wake of Israel's war against Hamas.", - "contentSnippet": "The UK is sending one of its most lethal warships to the Gulf to deter growing threats to shipping from Iran and Iranian-backed groups in the wake of Israel's war against Hamas.", - "guid": "https://news.sky.com/story/israel-hamas-war-uk-sending-one-of-its-most-lethal-warships-to-gulf-to-deter-iran-backed-groups-13018926", - "isoDate": "2023-11-29T14:06:00.000Z" - }, - { - "title": "Blinken tells Israel it needs 'clear plan' to protect civilians before Gaza attacks resume", - "link": "https://news.sky.com/story/blinken-tells-israel-it-needs-clear-plan-to-protect-civilians-before-gaza-attacks-resume-13019896", - "pubDate": "Thu, 30 Nov 2023 20:27:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-blinken-israel-gallant_6378037.jpg?20231130220017", - "length": "0", - "type": "image/jpeg" - }, - "content": "US secretary of state Antony Blinken has told Israel's leader he must establish better protection for civilians before resuming attacks on Gaza.", - "contentSnippet": "US secretary of state Antony Blinken has told Israel's leader he must establish better protection for civilians before resuming attacks on Gaza.", - "guid": "https://news.sky.com/story/blinken-tells-israel-it-needs-clear-plan-to-protect-civilians-before-gaza-attacks-resume-13019896", - "isoDate": "2023-11-30T20:27:00.000Z" - }, - { - "title": "Freed from captivity: The 79 Israeli hostages released by Hamas", - "link": "https://news.sky.com/story/who-are-the-first-71-israeli-hostages-released-by-hamas-13015007", - "pubDate": "Fri, 24 Nov 2023 12:51:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-israel-hostages_6378069.jpg?20231130225026", - "length": "0", - "type": "image/jpeg" - }, - "content": "Eight more Israeli hostages were freed by Hamas on Thursday as part of a string of releases under a temporary ceasefire deal.", - "contentSnippet": "Eight more Israeli hostages were freed by Hamas on Thursday as part of a string of releases under a temporary ceasefire deal.", - "guid": "https://news.sky.com/story/who-are-the-first-71-israeli-hostages-released-by-hamas-13015007", - "isoDate": "2023-11-24T12:51:00.000Z" - }, - { - "title": "Cristiano Ronaldo faces $1bn lawsuit after launching NFT collection", - "link": "https://news.sky.com/story/cristiano-ronaldo-faces-1bn-lawsuit-after-launching-nft-collection-13020043", - "pubDate": "Thu, 30 Nov 2023 23:29:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-ronaldo-cristiano-ronaldo_6378089.jpg?20231130234041", - "length": "0", - "type": "image/jpeg" - }, - "content": "Cristiano Ronaldo has been hit with a $1bn (£791m) class action lawsuit for his involvement in promoting non-fungible tokens.", - "contentSnippet": "Cristiano Ronaldo has been hit with a $1bn (\u00a3791m) class action lawsuit for his involvement in promoting non-fungible tokens.", - "guid": "https://news.sky.com/story/cristiano-ronaldo-faces-1bn-lawsuit-after-launching-nft-collection-13020043", - "isoDate": "2023-11-30T23:29:00.000Z" - }, - { - "title": "Thai hostage elated to be back with family - and says Hamas 'looked after us'", - "link": "https://news.sky.com/story/thai-hostage-elated-to-be-back-with-family-and-says-hamas-looked-after-us-13020040", - "pubDate": "Thu, 30 Nov 2023 23:17:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-thai-hostages-lynch_6378098.jpg?20231201001911", - "length": "0", - "type": "image/jpeg" - }, - "content": "At Bangkok International Airport, 17 Thai nationals touched down after two months in captivity.", - "contentSnippet": "At Bangkok International Airport, 17 Thai nationals touched down after two months in captivity.", - "guid": "https://news.sky.com/story/thai-hostage-elated-to-be-back-with-family-and-says-hamas-looked-after-us-13020040", - "isoDate": "2023-11-30T23:17:00.000Z" - }, - { - "title": "Man dies after being buried in sand on beach", - "link": "https://news.sky.com/story/australia-man-dies-after-being-buried-in-sand-on-bribie-island-13025349", - "pubDate": "Fri, 08 Dec 2023 06:47:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-josh-taylor-australia_6386202.jpg?20231208081306", - "length": "0", - "type": "image/jpeg" - }, - "content": "A 23-year-old man has died after being buried in sand on an Australian island, police have said.", - "contentSnippet": "A 23-year-old man has died after being buried in sand on an Australian island, police have said.", - "guid": "https://news.sky.com/story/australia-man-dies-after-being-buried-in-sand-on-bribie-island-13025349", - "isoDate": "2023-12-08T06:47:00.000Z" - }, - { - "title": "Brought down by a bag of cash: The politician fighting to clear her name", - "link": "https://news.sky.com/story/brought-down-by-a-bag-of-cash-the-politician-fighting-to-clear-her-name-13025092", - "pubDate": "Fri, 08 Dec 2023 04:06:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-eva-kaili-parliament_6385506.jpg?20231207132318", - "length": "0", - "type": "image/jpeg" - }, - "content": "A year ago, Eva Kaili was one of the rising stars of European politics.", - "contentSnippet": "A year ago, Eva Kaili was one of the rising stars of European politics.", - "guid": "https://news.sky.com/story/brought-down-by-a-bag-of-cash-the-politician-fighting-to-clear-her-name-13025092", - "isoDate": "2023-12-08T04:06:00.000Z" - }, - { - "title": "Biden's son charged with evading tax - and spending cash on drugs, escorts and exotic cars", - "link": "https://news.sky.com/story/hunter-biden-presidents-son-charged-with-evading-tax-and-spending-cash-on-drugs-escorts-and-exotic-cars-13025316", - "pubDate": "Fri, 08 Dec 2023 03:43:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-hunter-biden-court_6307748.jpg?20231003180004", - "length": "0", - "type": "image/jpeg" - }, - "content": "Hunter Biden has been criminally charged for tax-related offences in California, as a federal investigation into his financial conduct intensifies. ", - "contentSnippet": "Hunter Biden has been criminally charged for tax-related offences in California, as a federal investigation into his financial conduct intensifies.", - "guid": "https://news.sky.com/story/hunter-biden-presidents-son-charged-with-evading-tax-and-spending-cash-on-drugs-escorts-and-exotic-cars-13025316", - "isoDate": "2023-12-08T03:43:00.000Z" - }, - { - "title": "Masters champion joins Saudi-backed golf league in £450m deal", - "link": "https://news.sky.com/story/masters-champion-jon-rahm-joins-saudi-backed-golf-league-in-163450m-deal-13025312", - "pubDate": "Fri, 08 Dec 2023 02:30:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-jon-rahm-golf_6386129.jpg?20231208030912", - "length": "0", - "type": "image/jpeg" - }, - "content": "Jon Rahm has joined the Saudi-backed LIV Golf league in a deal understood to be worth up to £450m.", - "contentSnippet": "Jon Rahm has joined the Saudi-backed LIV Golf league in a deal understood to be worth up to \u00a3450m.", - "guid": "https://news.sky.com/story/masters-champion-jon-rahm-joins-saudi-backed-golf-league-in-163450m-deal-13025312", - "isoDate": "2023-12-08T02:30:00.000Z" - }, - { - "title": "Video appears to show Israeli forces detain and strip dozens of Palestinians in Gaza", - "link": "https://news.sky.com/story/video-appears-to-show-israeli-forces-detain-and-strip-dozens-of-palestinians-in-gaza-13025217", - "pubDate": "Thu, 07 Dec 2023 20:32:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-israel-idf-gaza_6385971.png?20231207210813", - "length": "0", - "type": "image/png" - }, - "content": "Footage has emerged appearing to show the Israeli military detaining dozens of Palestinian men in northern Gaza - with some stripped to their underwear.", - "contentSnippet": "Footage has emerged appearing to show the Israeli military detaining dozens of Palestinian men in northern Gaza - with some stripped to their underwear.", - "guid": "https://news.sky.com/story/video-appears-to-show-israeli-forces-detain-and-strip-dozens-of-palestinians-in-gaza-13025217", - "isoDate": "2023-12-07T20:32:00.000Z" - }, - { - "title": "Panic and heartbreak: The devastating effect of an airstrike in Gaza ", - "link": "https://news.sky.com/story/panic-and-heartbreak160the-devastating-effect-of-an-airstrike-in-gaza-13025163", - "pubDate": "Thu, 07 Dec 2023 19:12:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-gaza-israel-khan-younis_6385863.jpg?20231207190328", - "length": "0", - "type": "image/jpeg" - }, - "content": "As Israel's southern offensive continues, and thousands of Palestinians have been injured or killed, Khan Younis has been hit with an airstrike. Sky News' chief correspondent Stuart Ramsay reports on the scenes in the city and the strike's \"devastating effect\".", - "contentSnippet": "As Israel's southern offensive continues, and thousands of Palestinians have been injured or killed, Khan Younis has been hit with an airstrike. Sky News' chief correspondent Stuart Ramsay reports on the scenes in the city and the strike's \"devastating effect\".", - "guid": "https://news.sky.com/story/panic-and-heartbreak160the-devastating-effect-of-an-airstrike-in-gaza-13025163", - "isoDate": "2023-12-07T19:12:00.000Z" - }, - { - "title": "UK and US sanction Russian hackers who 'meddled in British politics'", - "link": "https://news.sky.com/story/uk-and-us-sanction-russian-hackers-who-used-spear-phishing-to-meddle-in-british-politics-13025122", - "pubDate": "Thu, 07 Dec 2023 17:56:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-russia-hackers_6385877.jpg?20231207191121", - "length": "0", - "type": "image/jpeg" - }, - "content": "The UK and US governments have imposed sanctions on two Russian hackers after the private conversations of high-profile politicians and civil servants were compromised.", - "contentSnippet": "The UK and US governments have imposed sanctions on two Russian hackers after the private conversations of high-profile politicians and civil servants were compromised.", - "guid": "https://news.sky.com/story/uk-and-us-sanction-russian-hackers-who-used-spear-phishing-to-meddle-in-british-politics-13025122", - "isoDate": "2023-12-07T17:56:00.000Z" - }, - { - "title": "Girl kills classmate and injures five at school before shooting herself", - "link": "https://news.sky.com/story/russia-school-shooting-14-year-old-girl-kills-classmate-and-injuries-five-13025015", - "pubDate": "Thu, 07 Dec 2023 14:33:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-russia-school-shooting_6385606.jpg?20231207145559", - "length": "0", - "type": "image/jpeg" - }, - "content": "A Russian girl has shot dead a classmate and injured five others at a school before killing herself.", - "contentSnippet": "A Russian girl has shot dead a classmate and injured five others at a school before killing herself.", - "guid": "https://news.sky.com/story/russia-school-shooting-14-year-old-girl-kills-classmate-and-injuries-five-13025015", - "isoDate": "2023-12-07T14:33:00.000Z" - }, - { - "title": "Satellite images show how far Israel's ground forces have reached inside southern Gaza", - "link": "https://news.sky.com/story/satellite-images-show-how-far-israels-ground-forces-have-reached-inside-gaza-13024992", - "pubDate": "Thu, 07 Dec 2023 13:48:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-gaza-khan-younis_6385668.png?20231207160429", - "length": "0", - "type": "image/png" - }, - "content": "As the Israeli military continues its operation in Gaza's southern region of Khan Younis, new satellite imagery reveals how far their ground forces may have reached. ", - "contentSnippet": "As the Israeli military continues its operation in Gaza's southern region of Khan Younis, new satellite imagery reveals how far their ground forces may have reached.", - "guid": "https://news.sky.com/story/satellite-images-show-how-far-israels-ground-forces-have-reached-inside-gaza-13024992", - "isoDate": "2023-12-07T13:48:00.000Z" - }, - { - "title": "Bedbug hoax targeting tourists in Greece, authorities warn", - "link": "https://news.sky.com/story/bedbug-hoax-targeting-tourists-in-greece-authorities-warn-13024983", - "pubDate": "Thu, 07 Dec 2023 13:40:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-bed-bug-bedbug_6324380.jpg?20231017115008", - "length": "0", - "type": "image/jpeg" - }, - "content": "Greece's health ministry has asked police to help tackle bedbug hoaxers trying to scare foreign tourists out of some Athens short-term rental apartments. ", - "contentSnippet": "Greece's health ministry has asked police to help tackle bedbug hoaxers trying to scare foreign tourists out of some Athens short-term rental apartments.", - "guid": "https://news.sky.com/story/bedbug-hoax-targeting-tourists-in-greece-authorities-warn-13024983", - "isoDate": "2023-12-07T13:40:00.000Z" - }, - { - "title": "14 airport workers arrested after '£1.7m worth of items stolen from luggage'", - "link": "https://news.sky.com/story/tenerift-airport-workers-arrested-after-16317m-worth-of-items-stolen-from-luggage-13031025", - "pubDate": "Fri, 15 Dec 2023 14:05:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-tenerife-stolen-items_6393916.jpg?20231215142201", - "length": "0", - "type": "image/jpeg" - }, - "content": "Fourteen workers at one of Spain's main tourist airports have been arrested on suspicion of stealing items from passengers' checked-in luggage.", - "contentSnippet": "Fourteen workers at one of Spain's main tourist airports have been arrested on suspicion of stealing items from passengers' checked-in luggage.", - "guid": "https://news.sky.com/story/tenerift-airport-workers-arrested-after-16317m-worth-of-items-stolen-from-luggage-13031025", - "isoDate": "2023-12-15T14:05:00.000Z" - }, - { - "title": "Anger over sentencing of boy, 10, for urinating in car park", - "link": "https://news.sky.com/story/anger-over-sentencing-of-boy-10-for-urinating-in-mississippi-car-park-13030865", - "pubDate": "Fri, 15 Dec 2023 10:25:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-quantavious-eason-mississippi_6393662.jpg?20231215110110", - "length": "0", - "type": "image/jpeg" - }, - "content": "A boy who urinated in a US car park has been given three months' probation and must write an essay on the late NBA legend Kobe Bryant.", - "contentSnippet": "A boy who urinated in a US car park has been given three months' probation and must write an essay on the late NBA legend Kobe Bryant.", - "guid": "https://news.sky.com/story/anger-over-sentencing-of-boy-10-for-urinating-in-mississippi-car-park-13030865", - "isoDate": "2023-12-15T10:25:00.000Z" - }, - { - "title": "UFC fighter tells opponent his dead father is 'in hell', sparking fury", - "link": "https://news.sky.com/story/colby-covington-ufc-fighter-provokes-pre-bout-row-by-saying-leon-edwards-dead-father-is-in-hell-13030863", - "pubDate": "Fri, 15 Dec 2023 10:15:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-leon-edwards-colby-covington_6393623.jpg?20231215101417", - "length": "0", - "type": "image/jpeg" - }, - "content": "Two UFC fighters have had to be separated at their pre-bout news conference in Las Vegas after one told the other his dead father was in hell.", - "contentSnippet": "Two UFC fighters have had to be separated at their pre-bout news conference in Las Vegas after one told the other his dead father was in hell.", - "guid": "https://news.sky.com/story/colby-covington-ufc-fighter-provokes-pre-bout-row-by-saying-leon-edwards-dead-father-is-in-hell-13030863", - "isoDate": "2023-12-15T10:15:00.000Z" - }, - { - "title": "Israeli soldiers suspended for reading out Jewish prayers at a mosque during West Bank raid", - "link": "https://news.sky.com/story/israel-hamas-war-israeli-soldiers-suspended-for-reading-out-jewish-prayers-at-jenin-mosque-during-west-bank-raid-13030762", - "pubDate": "Fri, 15 Dec 2023 09:10:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-israeli-soldier-jenin-refugee-camp_6393500.jpg?20231215074940", - "length": "0", - "type": "image/jpeg" - }, - "content": "Israel has suspended a group of its soldiers after video emerged of Israeli troops reading out Jewish prayers at a mosque in the occupied West Bank city of Jenin.", - "contentSnippet": "Israel has suspended a group of its soldiers after video emerged of Israeli troops reading out Jewish prayers at a mosque in the occupied West Bank city of Jenin.", - "guid": "https://news.sky.com/story/israel-hamas-war-israeli-soldiers-suspended-for-reading-out-jewish-prayers-at-jenin-mosque-during-west-bank-raid-13030762", - "isoDate": "2023-12-15T09:10:00.000Z" - }, - { - "title": "Despite it making him a style icon, Pope wants regulation of AI", - "link": "https://news.sky.com/story/pope-francis-calls-for-international-regulation-of-artificial-intelligence-13030787", - "pubDate": "Fri, 15 Dec 2023 08:13:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/09/70x70/skynews-pope-francis-pontiff_6295013.jpg?20230923115059", - "length": "0", - "type": "image/jpeg" - }, - "content": "Pope Francis has thrown his support behind calls for AI to be regulated.", - "contentSnippet": "Pope Francis has thrown his support behind calls for AI to be regulated.", - "guid": "https://news.sky.com/story/pope-francis-calls-for-international-regulation-of-artificial-intelligence-13030787", - "isoDate": "2023-12-15T08:13:00.000Z" - }, - { - "title": "Boat carrying migrants sinks in Channel", - "link": "https://news.sky.com/story/channel-crossing-one-dead-and-another-critical-after-boat-carrying-migrants-sinks-13030740", - "pubDate": "Fri, 15 Dec 2023 06:58:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-migrants-dinghy-crossing_6393496.jpg?20231215074759", - "length": "0", - "type": "image/jpeg" - }, - "content": "One person has died and another is in a critical condition in hospital after a boat carrying migrants sank in the English Channel.", - "contentSnippet": "One person has died and another is in a critical condition in hospital after a boat carrying migrants sank in the English Channel.", - "guid": "https://news.sky.com/story/channel-crossing-one-dead-and-another-critical-after-boat-carrying-migrants-sinks-13030740", - "isoDate": "2023-12-15T06:58:00.000Z" - }, - { - "title": "Gunmen kill 11 in night-time attack on Iran police station", - "link": "https://news.sky.com/story/iran-gunmen-kill-11-in-attack-on-police-station-13030730", - "pubDate": "Fri, 15 Dec 2023 06:32:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-iran-sistan-baluchestan_6393476.jpg?20231215072540", - "length": "0", - "type": "image/jpeg" - }, - "content": "Eleven people have died in a night-time attack on a police station by suspected members of a separatist group, according to Iranian state TV.", - "contentSnippet": "Eleven people have died in a night-time attack on a police station by suspected members of a separatist group, according to Iranian state TV.", - "guid": "https://news.sky.com/story/iran-gunmen-kill-11-in-attack-on-police-station-13030730", - "isoDate": "2023-12-15T06:32:00.000Z" - }, - { - "title": "Club president given life ban for punching football referee to the ground", - "link": "https://news.sky.com/story/ankaragucu-president-faruk-koca-handed-permanent-ban-for-punching-referee-13030705", - "pubDate": "Fri, 15 Dec 2023 03:12:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-turkey-referr-punch_6390412.jpg?20231212062513", - "length": "0", - "type": "image/jpeg" - }, - "content": "The former president of a top division Turkish football club has been handed a permanent ban after punching a referee at the end of a match.", - "contentSnippet": "The former president of a top division Turkish football club has been handed a permanent ban after punching a referee at the end of a match.", - "guid": "https://news.sky.com/story/ankaragucu-president-faruk-koca-handed-permanent-ban-for-punching-referee-13030705", - "isoDate": "2023-12-15T03:12:00.000Z" - }, - { - "title": "After School Satan Club to go ahead despite uproar from faith leaders", - "link": "https://news.sky.com/story/satan-club-to-be-held-in-memphis-school-library-despite-uproar-from-faith-leaders-13030700", - "pubDate": "Thu, 14 Dec 2023 23:54:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-after-school-satan-club_6393430.jpg?20231215000219", - "length": "0", - "type": "image/jpeg" - }, - "content": "An After School Satan Club will go ahead despite opposition from faith and education leaders in Tennessee.", - "contentSnippet": "An After School Satan Club will go ahead despite opposition from faith and education leaders in Tennessee.", - "guid": "https://news.sky.com/story/satan-club-to-be-held-in-memphis-school-library-despite-uproar-from-faith-leaders-13030700", - "isoDate": "2023-12-14T23:54:00.000Z" - }, - { - "title": "Ukraine's first step towards the EU club is a huge moment - but Putin will do all he can to thwart it", - "link": "https://news.sky.com/story/if-putin-prevails-there-will-be-no-ukraine-to-join-the-eu-and-that-is-no-longer-out-of-the-question-13030608", - "pubDate": "Thu, 14 Dec 2023 20:53:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/12/70x70/skynews-vladimir-putin-conference_6392584.jpg?20231214093039", - "length": "0", - "type": "image/jpeg" - }, - "content": "It had all the makings of one of those nightmare EU summits.", - "contentSnippet": "It had all the makings of one of those nightmare EU summits.", - "guid": "https://news.sky.com/story/if-putin-prevails-there-will-be-no-ukraine-to-join-the-eu-and-that-is-no-longer-out-of-the-question-13030608", - "isoDate": "2023-12-14T20:53:00.000Z" - }, - { - "title": "Man stranded at sea rescued after using watch to reflect sun", - "link": "https://news.sky.com/story/man-stranded-at-sea-in-new-zealand-rescued-after-using-watch-to-reflect-sun-13041926", - "pubDate": "Thu, 04 Jan 2024 09:08:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-aldermen-islands-new-zealand_6411784.jpg?20240104100313", - "length": "0", - "type": "image/jpeg" - }, - "content": "A man who spent nearly 24 hours at sea in New Zealand alerted his rescuers by using his watch to reflect the sun.", - "contentSnippet": "A man who spent nearly 24 hours at sea in New Zealand alerted his rescuers by using his watch to reflect the sun.", - "guid": "https://news.sky.com/story/man-stranded-at-sea-in-new-zealand-rescued-after-using-watch-to-reflect-sun-13041926", - "isoDate": "2024-01-04T09:08:00.000Z" - }, - { - "title": "Pilot in helicopter crash that killed British couple 'had cocaine in his system'", - "link": "https://news.sky.com/story/pilot-in-helicopter-crash-that-killed-british-couple-had-cocaine-in-his-system-13041707", - "pubDate": "Wed, 03 Jan 2024 18:48:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/01/70x70/skynews-australia-helicopter-crash_6012424.jpg?20230104075556", - "length": "0", - "type": "image/jpeg" - }, - "content": "The pilot of a helicopter that crashed and killed a British couple in Australia had cocaine in his system, a report has found.", - "contentSnippet": "The pilot of a helicopter that crashed and killed a British couple in Australia had cocaine in his system, a report has found.", - "guid": "https://news.sky.com/story/pilot-in-helicopter-crash-that-killed-british-couple-had-cocaine-in-his-system-13041707", - "isoDate": "2024-01-03T18:48:00.000Z" - }, - { - "title": "Epstein documents: Prince Andrew's puppet, Clinton's 'preferences' and underage orgy allegations", - "link": "https://news.sky.com/story/epstein-documents-clinton8217s-8216preferences8217-prince-andrew8217s-puppet-and-underage-orgy-allegations-13040654", - "pubDate": "Wed, 03 Jan 2024 18:00:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-prince-andrew-duke-of-york_6411671.jpg?20240104073116", - "length": "0", - "type": "image/jpeg" - }, - "content": "Prince Andrew, Bill Clinton, Donald Trump and Stephen Hawking are among those named in court documents relating to Ghislaine Maxwell, her relationship with Jeffrey Epstein and alleged victims of sexual abuse. ", - "contentSnippet": "Prince Andrew, Bill Clinton, Donald Trump and Stephen Hawking are among those named in court documents relating to Ghislaine Maxwell, her relationship with Jeffrey Epstein and alleged victims of sexual abuse.", - "guid": "https://news.sky.com/story/epstein-documents-clinton8217s-8216preferences8217-prince-andrew8217s-puppet-and-underage-orgy-allegations-13040654", - "isoDate": "2024-01-03T18:00:00.000Z" - }, - { - "title": "UK's 'unsustainable' consumption putting 'enormous pressure' on world's forests, MPs warn", - "link": "https://news.sky.com/story/deforestation-report-uks-unsustainable-consumption-putting-enormous-pressure-on-worlds-forests-mps-warn-13041672", - "pubDate": "Wed, 03 Jan 2024 17:01:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-brazil-deforestation_6411363.jpg?20240103172332", - "length": "0", - "type": "image/jpeg" - }, - "content": "The world's forests - the lungs of the planet - are being put under \"enormous pressure\" by the UK's appetite for commodities like soy, cocoa, palm oil, beef and leather, MPs have warned.", - "contentSnippet": "The world's forests - the lungs of the planet - are being put under \"enormous pressure\" by the UK's appetite for commodities like soy, cocoa, palm oil, beef and leather, MPs have warned.", - "guid": "https://news.sky.com/story/deforestation-report-uks-unsustainable-consumption-putting-enormous-pressure-on-worlds-forests-mps-warn-13041672", - "isoDate": "2024-01-03T17:01:00.000Z" - }, - { - "title": "Small coastguard jet involved in fiery Japan plane crash 'wasn't cleared for take-off'", - "link": "https://news.sky.com/story/japan-plane-crash-small-coastguard-jet-wasnt-cleared-for-take-off-at-time-of-collision-13041574", - "pubDate": "Wed, 03 Jan 2024 14:35:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-haneda-airport-plane-fire_6409892.jpg?20240102092642", - "length": "0", - "type": "image/jpeg" - }, - "content": "A coastguard aircraft that collided with a passenger plane at Tokyo's Haneda airport had not been cleared for take-off when the crash took place, authorities have said.", - "contentSnippet": "A coastguard aircraft that collided with a passenger plane at Tokyo's Haneda airport had not been cleared for take-off when the crash took place, authorities have said.", - "guid": "https://news.sky.com/story/japan-plane-crash-small-coastguard-jet-wasnt-cleared-for-take-off-at-time-of-collision-13041574", - "isoDate": "2024-01-03T14:35:00.000Z" - }, - { - "title": "Iran vows revenge after 95 killed in 'heinous' blasts near tomb", - "link": "https://news.sky.com/story/at-least-20-killed-in-explosions-near-tomb-of-iranian-guards-commander-qassem-soleimani-during-ceremony-13041479", - "pubDate": "Wed, 03 Jan 2024 12:21:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-kerman-iranblasts-explosion_6411689.jpg?20240104075659", - "length": "0", - "type": "image/jpeg" - }, - "content": "Iran has vowed revenge after 84 people were killed in two explosions near the tomb of a general.", - "contentSnippet": "Iran has vowed revenge after 84 people were killed in two explosions near the tomb of a general.", - "guid": "https://news.sky.com/story/at-least-20-killed-in-explosions-near-tomb-of-iranian-guards-commander-qassem-soleimani-during-ceremony-13041479", - "isoDate": "2024-01-03T12:21:00.000Z" - }, - { - "title": "Jimmy Kimmel threatens legal action against NFL star over suggested Epstein links", - "link": "https://news.sky.com/story/jimmy-kimmel-threatens-legal-action-against-nfl-star-over-suggested-jeffrey-epstein-links-13041406", - "pubDate": "Wed, 03 Jan 2024 10:21:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-aaron-rodgers-jimmy-kimmel_6410976.jpg?20240103105941", - "length": "0", - "type": "image/jpeg" - }, - "content": "Jimmy Kimmel has threatened to take legal action against an American football player over suggestions the presenter's name may appear on Jeffrey Epstein's client list.", - "contentSnippet": "Jimmy Kimmel has threatened to take legal action against an American football player over suggestions the presenter's name may appear on Jeffrey Epstein's client list.", - "guid": "https://news.sky.com/story/jimmy-kimmel-threatens-legal-action-against-nfl-star-over-suggested-jeffrey-epstein-links-13041406", - "isoDate": "2024-01-03T10:21:00.000Z" - }, - { - "title": "Ryanair lashes out at online 'pirates' after airline removed from booking sites", - "link": "https://news.sky.com/story/ryanair-lashes-out-at-online-pirates-after-airline-removed-from-booking-sites-including-bookingcom-and-kayak-13041325", - "pubDate": "Wed, 03 Jan 2024 08:19:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/09/70x70/skynews-ryanair-plane_6292411.jpg?20230921102917", - "length": "0", - "type": "image/jpeg" - }, - "content": "Ryanair has warned its business is likely to be hit in the short term after a string of online travel agents removed the airline from their online listings.", - "contentSnippet": "Ryanair has warned its business is likely to be hit in the short term after a string of online travel agents removed the airline from their online listings.", - "guid": "https://news.sky.com/story/ryanair-lashes-out-at-online-pirates-after-airline-removed-from-booking-sites-including-bookingcom-and-kayak-13041325", - "isoDate": "2024-01-03T08:19:00.000Z" - }, - { - "title": "Boy shot dead by 10-year-old who lost bike race, mum claims", - "link": "https://news.sky.com/story/keith-frierson-boy-shot-dead-by-10-year-old-who-lost-bike-race-mum-claims-13041316", - "pubDate": "Wed, 03 Jan 2024 07:56:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-kj-keith-frierson-sacramento_6410821.png?20240103080852", - "length": "0", - "type": "image/png" - }, - "content": "A 10-year-old boy was shot dead by another boy of the same age after losing a bicycle race, the victim's mother has claimed.", - "contentSnippet": "A 10-year-old boy was shot dead by another boy of the same age after losing a bicycle race, the victim's mother has claimed.", - "guid": "https://news.sky.com/story/keith-frierson-boy-shot-dead-by-10-year-old-who-lost-bike-race-mum-claims-13041316", - "isoDate": "2024-01-03T07:56:00.000Z" - }, - { - "title": "'Race against time' to save dozens still trapped under rubble after Japan earthquake", - "link": "https://news.sky.com/story/japan-earthquake-race-against-time-to-save-dozens-still-trapped-under-rubble-13041304", - "pubDate": "Wed, 03 Jan 2024 07:21:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-japan-earthquake_6410817.jpg?20240103080729", - "length": "0", - "type": "image/jpeg" - }, - "content": "Rescue teams in Japan face a \"race against time\" to find survivors after at least 73 people were killed following a 7.6-magnitude earthquake in the region.", - "contentSnippet": "Rescue teams in Japan face a \"race against time\" to find survivors after at least 73 people were killed following a 7.6-magnitude earthquake in the region.", - "guid": "https://news.sky.com/story/japan-earthquake-race-against-time-to-save-dozens-still-trapped-under-rubble-13041304", - "isoDate": "2024-01-03T07:21:00.000Z" - }, - { - "title": "Largest male specimen of world's most venomous spider found in Australia", - "link": "https://news.sky.com/story/largest-male-specimen-of-worlds-most-venomous-spider-found-in-australia-13042521", - "pubDate": "Fri, 05 Jan 2024 11:40:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-spider-australia_6412713.jpg?20240105104220", - "length": "0", - "type": "image/jpeg" - }, - "content": "The largest male specimen of the world's most venomous spider has been found in Australia.", - "contentSnippet": "The largest male specimen of the world's most venomous spider has been found in Australia.", - "guid": "https://news.sky.com/story/largest-male-specimen-of-worlds-most-venomous-spider-found-in-australia-13042521", - "isoDate": "2024-01-05T11:40:00.000Z" - }, - { - "title": "No police investigation after Prince Andrew among scores named in Epstein court papers", - "link": "https://news.sky.com/story/no-police-investigation-after-prince-andrew-among-scores-named-in-jeffrey-epstein-court-papers-13042477", - "pubDate": "Fri, 05 Jan 2024 08:57:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-andrew-epstein_6412327.jpg?20240104173124", - "length": "0", - "type": "image/jpeg" - }, - "content": "No investigation has been launched after Prince Andrew was among scores of people named as associates of Jeffrey Epstein in court papers unsealed by a US court, the Metropolitan Police have said.", - "contentSnippet": "No investigation has been launched after Prince Andrew was among scores of people named as associates of Jeffrey Epstein in court papers unsealed by a US court, the Metropolitan Police have said.", - "guid": "https://news.sky.com/story/no-police-investigation-after-prince-andrew-among-scores-named-in-jeffrey-epstein-court-papers-13042477", - "isoDate": "2024-01-05T08:57:00.000Z" - }, - { - "title": "Gaza could remain under Israeli 'security control' after war under new plan", - "link": "https://news.sky.com/story/gaza-could-remain-under-israeli-security-control-after-hamas-defeated-in-war-defence-minister-says-13042418", - "pubDate": "Fri, 05 Jan 2024 07:26:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-israel-gaza_6412509.jpg?20240105061932", - "length": "0", - "type": "image/jpeg" - }, - "content": "Israel's defence minister has outlined his vision for the next stage of the war in Gaza, including a more targeted approach in the north while fighting Hamas in the south \"for as long as necessary\".", - "contentSnippet": "Israel's defence minister has outlined his vision for the next stage of the war in Gaza, including a more targeted approach in the north while fighting Hamas in the south \"for as long as necessary\".", - "guid": "https://news.sky.com/story/gaza-could-remain-under-israeli-security-control-after-hamas-defeated-in-war-defence-minister-says-13042418", - "isoDate": "2024-01-05T07:26:00.000Z" - }, - { - "title": "McDonald's boss blames 'misinformation' for impact of war in Gaza on business", - "link": "https://news.sky.com/story/war-in-gaza-hits-mcdonalds-with-meaningful-business-impact-following-calls-for-boycotts-13042430", - "pubDate": "Fri, 05 Jan 2024 06:20:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-mcdonalds-fastfood_6412518.jpg?20240105062318", - "length": "0", - "type": "image/jpeg" - }, - "content": "The chief executive of McDonald's has revealed the company has suffered a \"meaningful business impact\" following controversy surrounding the Israel-Hamas war.", - "contentSnippet": "The chief executive of McDonald's has revealed the company has suffered a \"meaningful business impact\" following controversy surrounding the Israel-Hamas war.", - "guid": "https://news.sky.com/story/war-in-gaza-hits-mcdonalds-with-meaningful-business-impact-following-calls-for-boycotts-13042430", - "isoDate": "2024-01-05T06:20:00.000Z" - }, - { - "title": "Drone boat packed with explosives detonates in the Red Sea ", - "link": "https://news.sky.com/story/drone-boat-packed-with-explosives-detonates-in-the-red-sea-13042405", - "pubDate": "Fri, 05 Jan 2024 00:25:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-houthi-rebels_6412496.jpg?20240105002900", - "length": "0", - "type": "image/jpeg" - }, - "content": "A drone boat packed with explosives has detonated in the Red Sea.", - "contentSnippet": "A drone boat packed with explosives has detonated in the Red Sea.", - "guid": "https://news.sky.com/story/drone-boat-packed-with-explosives-detonates-in-the-red-sea-13042405", - "isoDate": "2024-01-05T00:25:00.000Z" - }, - { - "title": "Decades of confusion about Neptune's true colour ended with new images from space", - "link": "https://news.sky.com/story/new-images-reveal-neptune-and-uranus-are-not-the-colours-we-thought-they-were-13042392", - "pubDate": "Thu, 04 Jan 2024 22:32:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-uranus-planet_6412473.jpg?20240104225914", - "length": "0", - "type": "image/jpeg" - }, - "content": "New images have revealed Neptune and Uranus look more like each other than was previously thought.", - "contentSnippet": "New images have revealed Neptune and Uranus look more like each other than was previously thought.", - "guid": "https://news.sky.com/story/new-images-reveal-neptune-and-uranus-are-not-the-colours-we-thought-they-were-13042392", - "isoDate": "2024-01-04T22:32:00.000Z" - }, - { - "title": "Mother and child die in avalanche after temperatures fell to -20C and their skis were blown away", - "link": "https://news.sky.com/story/mother-and-child-die-in-avalanche-after-temperatures-fell-to-20c-and-their-skis-were-blown-away-13042340", - "pubDate": "Thu, 04 Jan 2024 19:20:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-finland-avalanche-lapland_6412438.png?20240104211318", - "length": "0", - "type": "image/png" - }, - "content": "A mother and her child have died after being caught in an avalanche in northern Finland, after temperatures dropped to -20C and the wind blew their skis away, police have said.", - "contentSnippet": "A mother and her child have died after being caught in an avalanche in northern Finland, after temperatures dropped to -20C and the wind blew their skis away, police have said.", - "guid": "https://news.sky.com/story/mother-and-child-die-in-avalanche-after-temperatures-fell-to-20c-and-their-skis-were-blown-away-13042340", - "isoDate": "2024-01-04T19:20:00.000Z" - }, - { - "title": "Pepsi faces supermarket boycott in four European countries", - "link": "https://news.sky.com/story/pepsi-faces-supermarket-boycott-in-four-european-countries-13042337", - "pubDate": "Thu, 04 Jan 2024 19:09:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/22/07/70x70/skynews-pepsi-pepsico-fizzy_5832305.jpg?20220712150612", - "length": "0", - "type": "image/jpeg" - }, - "content": "One of the largest supermarket chains in France is refusing to sell PepsiCo products on the grounds they have become too expensive to stock.", - "contentSnippet": "One of the largest supermarket chains in France is refusing to sell PepsiCo products on the grounds they have become too expensive to stock.", - "guid": "https://news.sky.com/story/pepsi-faces-supermarket-boycott-in-four-european-countries-13042337", - "isoDate": "2024-01-04T19:09:00.000Z" - }, - { - "title": "Pistorius freed from jail nearly 11 years after girlfriend's murder: What are his parole conditions?", - "link": "https://news.sky.com/story/oscar-pistorius-freed-on-parole-nearly-11-years-after-murdering-girlfriend-reeva-steenkamp-13042278", - "pubDate": "Thu, 04 Jan 2024 16:39:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/03/70x70/skynews-pistorius-reeva-steenkamp_6105625.jpg?20230331113753", - "length": "0", - "type": "image/jpeg" - }, - "content": "Oscar Pistorius has been freed on parole nearly 11 years after murdering his girlfriend in a case that made global headlines.", - "contentSnippet": "Oscar Pistorius has been freed on parole nearly 11 years after murdering his girlfriend in a case that made global headlines.", - "guid": "https://news.sky.com/story/oscar-pistorius-freed-on-parole-nearly-11-years-after-murdering-girlfriend-reeva-steenkamp-13042278", - "isoDate": "2024-01-04T16:39:00.000Z" - }, - { - "title": "US 'carries out drone strike' on base of Iranian-backed militia group in Iraq", - "link": "https://news.sky.com/story/us-carries-out-drone-strike-on-base-of-iranian-backed-militia-group-in-iraq-13042100", - "pubDate": "Thu, 04 Jan 2024 12:58:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-baghdad-iraq-drone-strike_6411995.jpg?20240104132249", - "length": "0", - "type": "image/jpeg" - }, - "content": "The US has reportedly carried out a drone strike on the base of an Iranian-backed militia in central Baghdad, killing a militia leader it blames for recent attacks on American personnel.", - "contentSnippet": "The US has reportedly carried out a drone strike on the base of an Iranian-backed militia in central Baghdad, killing a militia leader it blames for recent attacks on American personnel.", - "guid": "https://news.sky.com/story/us-carries-out-drone-strike-on-base-of-iranian-backed-militia-group-in-iraq-13042100", - "isoDate": "2024-01-04T12:58:00.000Z" - }, - { - "title": "'It cannot happen again': Official investigation into Boeing 737 MAX 9 under way", - "link": "https://news.sky.com/story/boeing-737-9-max-alaska-airlines-blowout-cannot-happen-again-official-investigation-into-jet-under-way-13046391", - "pubDate": "Thu, 11 Jan 2024 18:34:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-boeing-737-plane_6416744.jpg?20240110015932", - "length": "0", - "type": "image/jpeg" - }, - "content": "Regulators in the US have launched an official investigation into the Boeing 737 MAX 9 jet after a window and chunk of fuselage blew out of one in mid-air last week. ", - "contentSnippet": "Regulators in the US have launched an official investigation into the Boeing 737 MAX 9 jet after a window and chunk of fuselage blew out of one in mid-air last week.", - "guid": "https://news.sky.com/story/boeing-737-9-max-alaska-airlines-blowout-cannot-happen-again-official-investigation-into-jet-under-way-13046391", - "isoDate": "2024-01-11T18:34:00.000Z" - }, - { - "title": "South Africa accuses Israel of genocide as hearing at UN's top court begins", - "link": "https://news.sky.com/story/south-africa-accuses-israel-of-genocide-as-hearing-at-uns-top-court-begins-13046383", - "pubDate": "Thu, 11 Jan 2024 18:17:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-the-hague-israel_6418641.jpg?20240111184324", - "length": "0", - "type": "image/jpeg" - }, - "content": "South Africa has formally accused Israel of committing genocide against Palestinians in a hearing at the United Nations' International Court of Justice. ", - "contentSnippet": "South Africa has formally accused Israel of committing genocide against Palestinians in a hearing at the United Nations' International Court of Justice.", - "guid": "https://news.sky.com/story/south-africa-accuses-israel-of-genocide-as-hearing-at-uns-top-court-begins-13046383", - "isoDate": "2024-01-11T18:17:00.000Z" - }, - { - "title": "Microsoft briefly overtakes rival Apple as world's most valuable company", - "link": "https://news.sky.com/story/microsoft-briefly-overtakes-rival-apple-as-worlds-most-valuable-company-13046295", - "pubDate": "Thu, 11 Jan 2024 15:33:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/11/70x70/skynews-sam-altman-satya-nadella_6367160.jpg?20231120230241", - "length": "0", - "type": "image/jpeg" - }, - "content": "Two tech giants are battling it out for the title of the world's most valuable company. ", - "contentSnippet": "Two tech giants are battling it out for the title of the world's most valuable company.", - "guid": "https://news.sky.com/story/microsoft-briefly-overtakes-rival-apple-as-worlds-most-valuable-company-13046295", - "isoDate": "2024-01-11T15:33:00.000Z" - }, - { - "title": "Sky News launching new foreign affairs show The World with Yalda Hakim", - "link": "https://news.sky.com/story/sky-news-launching-new-foreign-affairs-show-the-world-with-yalda-hakim-13046103", - "pubDate": "Thu, 11 Jan 2024 11:06:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-yalda-hakim-sky-news_6418212.jpg?20240111114450", - "length": "0", - "type": "image/jpeg" - }, - "content": "Sky News is launching a new primetime foreign affairs programme hosted by lead world news presenter Yalda Hakim.", - "contentSnippet": "Sky News is launching a new primetime foreign affairs programme hosted by lead world news presenter Yalda Hakim.", - "guid": "https://news.sky.com/story/sky-news-launching-new-foreign-affairs-show-the-world-with-yalda-hakim-13046103", - "isoDate": "2024-01-11T11:06:00.000Z" - }, - { - "title": "Elderly couple found dead in home after heater's temperature reached 538C", - "link": "https://news.sky.com/story/south-carolina-couple-found-dead-in-home-after-heaters-temperature-reached-538c-13046052", - "pubDate": "Thu, 11 Jan 2024 10:29:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-google-maps-spartanburg_6418186.jpg?20240111113117", - "length": "0", - "type": "image/jpeg" - }, - "content": "An elderly couple have been found dead in their bedroom after their heater was estimated to have reached 538C (1,000F).", - "contentSnippet": "An elderly couple have been found dead in their bedroom after their heater was estimated to have reached 538C (1,000F).", - "guid": "https://news.sky.com/story/south-carolina-couple-found-dead-in-home-after-heaters-temperature-reached-538c-13046052", - "isoDate": "2024-01-11T10:29:00.000Z" - }, - { - "title": "British Airways pilot 'kidnapped and tortured' during stopover shopping trip", - "link": "https://news.sky.com/story/british-airways-pilot-kidnapped-and-tortured-during-stopover-shopping-trip-13046022", - "pubDate": "Thu, 11 Jan 2024 10:09:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-british-airways-pilot_6418073.jpg?20240111101308", - "length": "0", - "type": "image/jpeg" - }, - "content": "A pilot for British Airways was reportedly tortured after he was kidnapped while shopping during a stopover between flights in South Africa.", - "contentSnippet": "A pilot for British Airways was reportedly tortured after he was kidnapped while shopping during a stopover between flights in South Africa.", - "guid": "https://news.sky.com/story/british-airways-pilot-kidnapped-and-tortured-during-stopover-shopping-trip-13046022", - "isoDate": "2024-01-11T10:09:00.000Z" - }, - { - "title": "United Airlines flight makes emergency landing after 'open door light turns on'", - "link": "https://news.sky.com/story/united-airlines-flight-makes-emergency-landing-in-florida-after-open-door-light-turns-on-13046001", - "pubDate": "Thu, 11 Jan 2024 09:40:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-airbus-united-airlines_6418051.jpg?20240111095003", - "length": "0", - "type": "image/jpeg" - }, - "content": "A United Airlines flight from Sarasota, Florida, had to make an emergency landing in the same state shortly after take-off, reportedly due to an open door light illuminating in mid-air.", - "contentSnippet": "A United Airlines flight from Sarasota, Florida, had to make an emergency landing in the same state shortly after take-off, reportedly due to an open door light illuminating in mid-air.", - "guid": "https://news.sky.com/story/united-airlines-flight-makes-emergency-landing-in-florida-after-open-door-light-turns-on-13046001", - "isoDate": "2024-01-11T09:40:00.000Z" - }, - { - "title": "Iranian navy seizes oil tanker in Gulf of Oman", - "link": "https://news.sky.com/story/oil-tanker-in-the-gulf-of-oman-boarded-by-unauthorised-men-in-military-uniforms-13045921", - "pubDate": "Thu, 11 Jan 2024 07:29:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-st-nikolas-oil-tanker_6418460.jpg?20240111152016", - "length": "0", - "type": "image/jpeg" - }, - "content": "The Iranian navy has confirmed it has seized an oil tanker in the Gulf of Oman.", - "contentSnippet": "The Iranian navy has confirmed it has seized an oil tanker in the Gulf of Oman.", - "guid": "https://news.sky.com/story/oil-tanker-in-the-gulf-of-oman-boarded-by-unauthorised-men-in-military-uniforms-13045921", - "isoDate": "2024-01-11T07:29:00.000Z" - }, - { - "title": "Deserted streets in Ecuador as president declares 'state of war' on drug gangs", - "link": "https://news.sky.com/story/ecuador-streets-deserted-as-president-declares-state-of-war-on-drug-gangs-13045866", - "pubDate": "Thu, 11 Jan 2024 01:35:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-ecuador-violence_6417799.jpg?20240111021827", - "length": "0", - "type": "image/jpeg" - }, - "content": "The streets in Ecuador fell silent the day after hooded gunman invaded a live television broadcast, as President Daniel Noboa declared a \"state of war\" on drug-trafficking gangs.", - "contentSnippet": "The streets in Ecuador fell silent the day after hooded gunman invaded a live television broadcast, as President Daniel Noboa declared a \"state of war\" on drug-trafficking gangs.", - "guid": "https://news.sky.com/story/ecuador-streets-deserted-as-president-declares-state-of-war-on-drug-gangs-13045866", - "isoDate": "2024-01-11T01:35:00.000Z" - }, - { - "title": "British forces gear up to strike on Houthi rebels after Red Sea attacks", - "link": "https://news.sky.com/story/british-and-us-forces-appear-to-be-readying-to-strike-houthi-rebels-after-red-sea-attacks-13045626", - "pubDate": "Wed, 10 Jan 2024 18:43:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-hms-diamond-red-sea_6416913.jpg?20240110090003", - "length": "0", - "type": "image/jpeg" - }, - "content": "British and US forces appear to be gearing up to strike an Iranian-backed militant group in Yemen after the Houthi rebels defied a warning to stop attacking ships in the Red Sea.", - "contentSnippet": "British and US forces appear to be gearing up to strike an Iranian-backed militant group in Yemen after the Houthi rebels defied a warning to stop attacking ships in the Red Sea.", - "guid": "https://news.sky.com/story/british-and-us-forces-appear-to-be-readying-to-strike-houthi-rebels-after-red-sea-attacks-13045626", - "isoDate": "2024-01-10T18:43:00.000Z" - }, - { - "title": "Doomsday cult leader appears in Kenyan court charged with murdering 191 children", - "link": "https://news.sky.com/story/doomsday-cult-leader-paul-mackenzie-appears-in-kenyan-court-charged-with-murdering-191-children-13050799", - "pubDate": "Thu, 18 Jan 2024 12:00:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-paul-mackenzie-kenya_6425491.jpg?20240118112218", - "length": "0", - "type": "image/jpeg" - }, - "content": "A doomsday cult leader in Kenya has been charged with the murders of 191 children after their bodies were found in the forest where his church was based.", - "contentSnippet": "A doomsday cult leader in Kenya has been charged with the murders of 191 children after their bodies were found in the forest where his church was based.", - "guid": "https://news.sky.com/story/doomsday-cult-leader-paul-mackenzie-appears-in-kenyan-court-charged-with-murdering-191-children-13050799", - "isoDate": "2024-01-18T12:00:00.000Z" - }, - { - "title": "Raducanu out of Australian Open after struggling with sickness", - "link": "https://news.sky.com/story/emma-raducanu-out-of-australian-open-after-struggling-with-sickness-13050889", - "pubDate": "Thu, 18 Jan 2024 11:48:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-emma-raducanu-australian-open_6425542.jpg?20240118120411", - "length": "0", - "type": "image/jpeg" - }, - "content": "Emma Raducanu is out of the Australian Open after China's Yafan Wang beat her in three sets as the Briton struggled with sickness at the end of the match.", - "contentSnippet": "Emma Raducanu is out of the Australian Open after China's Yafan Wang beat her in three sets as the Briton struggled with sickness at the end of the match.", - "guid": "https://news.sky.com/story/emma-raducanu-out-of-australian-open-after-struggling-with-sickness-13050889", - "isoDate": "2024-01-18T11:48:00.000Z" - }, - { - "title": "Arnold Schwarzenegger detained at German airport over luxury watch", - "link": "https://news.sky.com/story/arnold-schwarzenegger-detained-at-munich-airport-over-luxury-watch-13050797", - "pubDate": "Thu, 18 Jan 2024 10:17:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-arnold-schwarzenegger_6425420.jpg?20240118102405", - "length": "0", - "type": "image/jpeg" - }, - "content": "Arnold Schwarzenegger was temporarily detained at Munich Airport for failing to declare a valuable luxury watch, according to German media.", - "contentSnippet": "Arnold Schwarzenegger was temporarily detained at Munich Airport for failing to declare a valuable luxury watch, according to German media.", - "guid": "https://news.sky.com/story/arnold-schwarzenegger-detained-at-munich-airport-over-luxury-watch-13050797", - "isoDate": "2024-01-18T10:17:00.000Z" - }, - { - "title": "Pakistan strikes Iran as both countries accuse the other of harbouring terrorists", - "link": "https://news.sky.com/story/pakistan-strikes-iran-as-both-countries-accuse-the-other-of-harbouring-terrorists-13050749", - "pubDate": "Thu, 18 Jan 2024 10:00:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-pakistan-iran_6425383.jpg?20240118093134", - "length": "0", - "type": "image/jpeg" - }, - "content": "Iran and Pakistan have accused each other of harbouring terrorists. ", - "contentSnippet": "Iran and Pakistan have accused each other of harbouring terrorists.", - "guid": "https://news.sky.com/story/pakistan-strikes-iran-as-both-countries-accuse-the-other-of-harbouring-terrorists-13050749", - "isoDate": "2024-01-18T10:00:00.000Z" - }, - { - "title": "Are British fish and chips under threat from Russia?", - "link": "https://news.sky.com/story/russia-could-rip-up-barents-sea-agreement-with-uk-posing-threat-to-cod-and-haddock-supplies-for-fish-and-chips-13050772", - "pubDate": "Thu, 18 Jan 2024 09:49:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/23/09/70x70/skynews-fish-and-chips-polystyrene_6303425.jpg?20230930151254", - "length": "0", - "type": "image/jpeg" - }, - "content": "British fish and chips could be under threat if Vladimir Putin's Russian government goes ahead with ripping up a longstanding agreement with the UK.", - "contentSnippet": "British fish and chips could be under threat if Vladimir Putin's Russian government goes ahead with ripping up a longstanding agreement with the UK.", - "guid": "https://news.sky.com/story/russia-could-rip-up-barents-sea-agreement-with-uk-posing-threat-to-cod-and-haddock-supplies-for-fish-and-chips-13050772", - "isoDate": "2024-01-18T09:49:00.000Z" - }, - { - "title": "'Nine killed' as Pakistan launches airstrikes on Iran", - "link": "https://news.sky.com/story/seven-killed-as-pakistan-launches-airstrikes-on-iran-13050660", - "pubDate": "Thu, 18 Jan 2024 06:14:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-pakistan-sistan-baluchestan_6425241.jpg?20240118064721", - "length": "0", - "type": "image/jpeg" - }, - "content": "At least nine people have been killed after Pakistan launched airstrikes on Iranian territory early this morning.", - "contentSnippet": "At least nine people have been killed after Pakistan launched airstrikes on Iranian territory early this morning.", - "guid": "https://news.sky.com/story/seven-killed-as-pakistan-launches-airstrikes-on-iran-13050660", - "isoDate": "2024-01-18T06:14:00.000Z" - }, - { - "title": "Prosecutor investigating Ecuador TV station attack shot dead", - "link": "https://news.sky.com/story/prosecutor-investigating-ecuador-tv-station-attack-shot-dead-13050642", - "pubDate": "Thu, 18 Jan 2024 04:34:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-ecuador-cesar-suarez_6425219.jpg?20240118045755", - "length": "0", - "type": "image/jpeg" - }, - "content": "A prosecutor investigating the storming of an Ecuadorian TV station by gang members has been shot dead.", - "contentSnippet": "A prosecutor investigating the storming of an Ecuadorian TV station by gang members has been shot dead.", - "guid": "https://news.sky.com/story/prosecutor-investigating-ecuador-tv-station-attack-shot-dead-13050642", - "isoDate": "2024-01-18T04:34:00.000Z" - }, - { - "title": "Explosion at fireworks factory kills 23 people", - "link": "https://news.sky.com/story/explosion-at-fireworks-factory-in-thailand-kills-23-people-13050330", - "pubDate": "Wed, 17 Jan 2024 14:42:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-thailand-fireworks_6424550.jpg?20240117131350", - "length": "0", - "type": "image/jpeg" - }, - "content": "An explosion at a fireworks factory in Thailand has killed at least 23 people, officials in the country say.", - "contentSnippet": "An explosion at a fireworks factory in Thailand has killed at least 23 people, officials in the country say.", - "guid": "https://news.sky.com/story/explosion-at-fireworks-factory-in-thailand-kills-23-people-13050330", - "isoDate": "2024-01-17T14:42:00.000Z" - }, - { - "title": "Police search Gibraltar car park for Royal Navy sailor missing since 1986", - "link": "https://news.sky.com/story/police-search-gibraltar-car-park-for-royal-navy-sailor-missing-since-1986-13050198", - "pubDate": "Wed, 17 Jan 2024 11:57:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-simon-parkes-gibraltar_6424323.jpg?20240117103047", - "length": "0", - "type": "image/jpeg" - }, - "content": "Detectives investigating the disappearance of a Royal Navy sailor more than 37 years ago are searching a car park in Gibraltar after receiving new information.", - "contentSnippet": "Detectives investigating the disappearance of a Royal Navy sailor more than 37 years ago are searching a car park in Gibraltar after receiving new information.", - "guid": "https://news.sky.com/story/police-search-gibraltar-car-park-for-royal-navy-sailor-missing-since-1986-13050198", - "isoDate": "2024-01-17T11:57:00.000Z" - }, - { - "title": "Could Israeli escalation with Hezbollah lead to wider Middle East war?", - "link": "https://news.sky.com/story/could-israel-escalation-with-hezbollah-lead-to-wider-war-in-the-middle-east-and-would-us-and-iran-be-dragged-in-13046311", - "pubDate": "Thu, 11 Jan 2024 16:04:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-shell-file-pic-israeli_6418469.jpg?20240111154431", - "length": "0", - "type": "image/jpeg" - }, - "content": "Since the beginning of 2024, an Israeli airstrike has killed a senior Hezbollah commander in Lebanon, the militant group has struck an Israeli base with explosive drones, and Israel has assassinated the deputy leader of Hamas in Beirut.", - "contentSnippet": "Since the beginning of 2024, an Israeli airstrike has killed a senior Hezbollah commander in Lebanon, the militant group has struck an Israeli base with explosive drones, and Israel has assassinated the deputy leader of Hamas in Beirut.", - "guid": "https://news.sky.com/story/could-israel-escalation-with-hezbollah-lead-to-wider-war-in-the-middle-east-and-would-us-and-iran-be-dragged-in-13046311", - "isoDate": "2024-01-11T16:04:00.000Z" - }, - { - "title": "Online predator who blackmailed women into carrying out acts of child abuse jailed", - "link": "https://news.sky.com/story/anthony-burns-online-predator-who-blackmailed-women-into-carrying-out-acts-of-child-abuse-jailed-for-24-years-13050176", - "pubDate": "Fri, 19 Jan 2024 14:00:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-anthony-burns_6424419.jpg?20240117125913", - "length": "0", - "type": "image/jpeg" - }, - "content": "An online predator who blackmailed dozens of women around the world into performing sexual and degrading acts, including child abuse, has been jailed for 24 years.", - "contentSnippet": "An online predator who blackmailed dozens of women around the world into performing sexual and degrading acts, including child abuse, has been jailed for 24 years.", - "guid": "https://news.sky.com/story/anthony-burns-online-predator-who-blackmailed-women-into-carrying-out-acts-of-child-abuse-jailed-for-24-years-13050176", - "isoDate": "2024-01-19T14:00:00.000Z" - }, - { - "title": "Teacher accused of poisoning husband's smoothie with toxic plant", - "link": "https://news.sky.com/story/teacher-accused-of-poisoning-husbands-smoothie-with-toxic-lily-of-the-valley-plant-in-us-13051587", - "pubDate": "Fri, 19 Jan 2024 12:55:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-sarah-scheffer-poisoned-husband_6426308.jpg?20240119090151", - "length": "0", - "type": "image/jpeg" - }, - "content": "A teacher in the US has been charged with attempted murder after allegedly being caught on hidden camera poisoning her husband's smoothie.", - "contentSnippet": "A teacher in the US has been charged with attempted murder after allegedly being caught on hidden camera poisoning her husband's smoothie.", - "guid": "https://news.sky.com/story/teacher-accused-of-poisoning-husbands-smoothie-with-toxic-lily-of-the-valley-plant-in-us-13051587", - "isoDate": "2024-01-19T12:55:00.000Z" - }, - { - "title": "Mexican marines capture leader of drug cartel that kidnapped and killed Americans", - "link": "https://news.sky.com/story/la-kena-mexican-marines-capture-leader-of-drug-cartel-that-kidnapped-and-killed-americans-13051454", - "pubDate": "Fri, 19 Jan 2024 09:21:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-kena-cyclone-vilano_6426316.png?20240119091859", - "length": "0", - "type": "image/png" - }, - "content": "One of the top leaders of a notorious Mexican drug cartel, which kidnapped four Americans and killed two of them last year, has been captured by marines.", - "contentSnippet": "One of the top leaders of a notorious Mexican drug cartel, which kidnapped four Americans and killed two of them last year, has been captured by marines.", - "guid": "https://news.sky.com/story/la-kena-mexican-marines-capture-leader-of-drug-cartel-that-kidnapped-and-killed-americans-13051454", - "isoDate": "2024-01-19T09:21:00.000Z" - }, - { - "title": "North Korea claims it has tested underwater nuclear attack drone", - "link": "https://news.sky.com/story/north-korea-claims-it-has-tested-underwater-nuclear-attack-drone-after-reckless-naval-exercise-by-us-south-korea-and-japan-13051444", - "pubDate": "Fri, 19 Jan 2024 09:04:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-north-korea-underwater_6426332.jpg?20240119094137", - "length": "0", - "type": "image/jpeg" - }, - "content": "North Korea says it has tested an underwater nuclear attack drone in response to a \"reckless\" and \"hostile\" combined naval exercise by the US, South Korea and Japan.", - "contentSnippet": "North Korea says it has tested an underwater nuclear attack drone in response to a \"reckless\" and \"hostile\" combined naval exercise by the US, South Korea and Japan.", - "guid": "https://news.sky.com/story/north-korea-claims-it-has-tested-underwater-nuclear-attack-drone-after-reckless-naval-exercise-by-us-south-korea-and-japan-13051444", - "isoDate": "2024-01-19T09:04:00.000Z" - }, - { - "title": "Home Office 'hires aircraft hangar' to practise forcing asylum seekers on to Rwanda flights", - "link": "https://news.sky.com/story/home-office-hires-aircraft-hangar-to-practise-forcing-asylum-seekers-on-to-rwanda-flights-13051396", - "pubDate": "Fri, 19 Jan 2024 07:46:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/22/09/70x70/skynews-plane-boris-johnson_5884141.jpg?20220902020708", - "length": "0", - "type": "image/jpeg" - }, - "content": "An aircraft hangar and fuselage have been hired by the Home Office for security officials to practise forcing asylum seekers on to deportation flights to Rwanda, it has been reported.", - "contentSnippet": "An aircraft hangar and fuselage have been hired by the Home Office for security officials to practise forcing asylum seekers on to deportation flights to Rwanda, it has been reported.", - "guid": "https://news.sky.com/story/home-office-hires-aircraft-hangar-to-practise-forcing-asylum-seekers-on-to-rwanda-flights-13051396", - "isoDate": "2024-01-19T07:46:00.000Z" - }, - { - "title": "City orders DNA tests for all dogs to trace and fine owners in poo crackdown", - "link": "https://news.sky.com/story/italian-province-orders-dna-tests-for-all-dogs-to-trace-and-fine-owners-in-poo-crackdown-13051387", - "pubDate": "Fri, 19 Jan 2024 07:29:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-dog-poo_6426283.jpg?20240119082911", - "length": "0", - "type": "image/jpeg" - }, - "content": "Dog owners in an Italian province are being forced to provide a sample of their pets' DNA as officials try to tackle the scourge of dog mess on the streets.", - "contentSnippet": "Dog owners in an Italian province are being forced to provide a sample of their pets' DNA as officials try to tackle the scourge of dog mess on the streets.", - "guid": "https://news.sky.com/story/italian-province-orders-dna-tests-for-all-dogs-to-trace-and-fine-owners-in-poo-crackdown-13051387", - "isoDate": "2024-01-19T07:29:00.000Z" - }, - { - "title": "Pregnant mum, her boyfriend and brother fatally electrocuted - but baby survives ice storm", - "link": "https://news.sky.com/story/three-die-from-electrocution-after-live-power-line-falls-on-car-in-oregon-ice-storm-13051354", - "pubDate": "Fri, 19 Jan 2024 04:33:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-oregon-weather-electrocuted_6426185.jpg?20240119050136", - "length": "0", - "type": "image/jpeg" - }, - "content": "Three people have died from electrocution after slipping on ice into a power line that fell on a car during a storm in Portland, Oregon.", - "contentSnippet": "Three people have died from electrocution after slipping on ice into a power line that fell on a car during a storm in Portland, Oregon.", - "guid": "https://news.sky.com/story/three-die-from-electrocution-after-live-power-line-falls-on-car-in-oregon-ice-storm-13051354", - "isoDate": "2024-01-19T04:33:00.000Z" - }, - { - "title": "'This truth I tell to our American friends' - Netanyahu rejects US calls for Palestinian state", - "link": "https://news.sky.com/story/benjamin-netanyahu-rejects-calls-from-us-for-palestinian-state-after-gaza-conflict-13051317", - "pubDate": "Thu, 18 Jan 2024 22:41:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-benjamin-netanyahu_6426243.jpg?20240119075433", - "length": "0", - "type": "image/jpeg" - }, - "content": "Israeli Prime Minister Benjamin Netanyahu has rejected US calls for the development of a Palestinian state, as he vowed the offensive in Gaza would press ahead for many months.", - "contentSnippet": "Israeli Prime Minister Benjamin Netanyahu has rejected US calls for the development of a Palestinian state, as he vowed the offensive in Gaza would press ahead for many months.", - "guid": "https://news.sky.com/story/benjamin-netanyahu-rejects-calls-from-us-for-palestinian-state-after-gaza-conflict-13051317", - "isoDate": "2024-01-18T22:41:00.000Z" - }, - { - "title": "Plane forced to turn back after 'drunk passenger bites flight attendant'", - "link": "https://news.sky.com/story/japan-drunk-passenger-bites-female-flight-attendant-as-plane-returns-to-airport-13051252", - "pubDate": "Thu, 18 Jan 2024 20:29:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-all-nippon-airways_6426051.jpg?20240118204637", - "length": "0", - "type": "image/jpeg" - }, - "content": "A plane has returned to its departure airport in Japan after a female member of the cabin crew was bitten by a drunk passenger, according to the airline.", - "contentSnippet": "A plane has returned to its departure airport in Japan after a female member of the cabin crew was bitten by a drunk passenger, according to the airline.", - "guid": "https://news.sky.com/story/japan-drunk-passenger-bites-female-flight-attendant-as-plane-returns-to-airport-13051252", - "isoDate": "2024-01-18T20:29:00.000Z" - }, - { - "title": "Man dies after explosion in Dublin city centre hostel", - "link": "https://news.sky.com/story/dublin-man-dies-after-explosion-in-city-centre-hostel-13051178", - "pubDate": "Thu, 18 Jan 2024 18:15:00 +0000", - "enclosure": { - "url": "https://e3.365dm.com/24/01/70x70/skynews-forensics-experts-explosion_6425958.jpg?20240118182036", - "length": "0", - "type": "image/jpeg" - }, - "content": "A man has died after an explosion in Dublin city centre.", - "contentSnippet": "A man has died after an explosion in Dublin city centre.", - "guid": "https://news.sky.com/story/dublin-man-dies-after-explosion-in-city-centre-hostel-13051178", - "isoDate": "2024-01-18T18:15:00.000Z" - }, - { - "title": "Israel carries out second ground raid in Gaza amid 'humanitarian catastrophe' warning", - "link": "https://news.sky.com/story/israel-carries-out-second-ground-raid-in-gaza-as-aid-trickles-in-amid-humanitarian-catastrophe-warning-12993867", - "pubDate": "Fri, 27 Oct 2023 12:16:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-israel-airstrikes-gaza_6337492.jpg?20231027130254", - "length": "0", - "type": "image/jpeg" - }, - "content": "Israeli forces backed by warplanes and drones have carried out a second ground raid in Gaza as aid trickles into the besieged territory amid warnings of a deepening \"humanitarian catastrophe\".", - "contentSnippet": "Israeli forces backed by warplanes and drones have carried out a second ground raid in Gaza as aid trickles into the besieged territory amid warnings of a deepening \"humanitarian catastrophe\".", - "guid": "https://news.sky.com/story/israel-carries-out-second-ground-raid-in-gaza-as-aid-trickles-in-amid-humanitarian-catastrophe-warning-12993867", - "isoDate": "2023-10-27T11:16:00.000Z" - }, - { - "title": "Search called off for crew members missing after British cargo ship sank off German coast", - "link": "https://news.sky.com/story/search-called-off-for-crew-members-missing-after-british-cargo-ship-sank-off-coast-of-germany-12993853", - "pubDate": "Fri, 27 Oct 2023 12:03:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-rescue-ships-verity_6337426.jpg?20231027121432", - "length": "0", - "type": "image/jpeg" - }, - "content": "A search for four people missing after two ships crashed off the coast of Germany has been called off.", - "contentSnippet": "A search for four people missing after two ships crashed off the coast of Germany has been called off.", - "guid": "https://news.sky.com/story/search-called-off-for-crew-members-missing-after-british-cargo-ship-sank-off-coast-of-germany-12993853", - "isoDate": "2023-10-27T11:03:00.000Z" - }, - { - "title": "Italian mum wins court order to evict her 40 and 42-year-old sons", - "link": "https://news.sky.com/story/italian-mum-wins-court-order-to-evict-her-sons-aged-40-and-42-12993809", - "pubDate": "Fri, 27 Oct 2023 10:37:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-pavia-italy_6337312.jpg?20231027105759", - "length": "0", - "type": "image/jpeg" - }, - "content": "An Italian mum has won a court battle to evict her two sons - aged 40 and 42 - from her home in the northern city of Pavia, according to local media.", - "contentSnippet": "An Italian mum has won a court battle to evict her two sons - aged 40 and 42 - from her home in the northern city of Pavia, according to local media.", - "guid": "https://news.sky.com/story/italian-mum-wins-court-order-to-evict-her-sons-aged-40-and-42-12993809", - "isoDate": "2023-10-27T09:37:00.000Z" - }, - { - "title": "Before and after images as deadly hurricane leaves multibillion-pound path of destruction in Mexico", - "link": "https://news.sky.com/story/hurricane-otis-deadly-165mph-storm-carves-multibillion-pound-path-of-destruction-through-acapulco-in-mexico-12993784", - "pubDate": "Fri, 27 Oct 2023 10:18:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-hurricane-otis-acapulco_6337275.jpg?20231027103439", - "length": "0", - "type": "image/jpeg" - }, - "content": "A swathe of destruction left after one of the most powerful storms ever to hit Mexico battered the beach resort of Acapulco, killing at least 27 people, has been laid bare by aerial images.", - "contentSnippet": "A swathe of destruction left after one of the most powerful storms ever to hit Mexico battered the beach resort of Acapulco, killing at least 27 people, has been laid bare by aerial images.", - "guid": "https://news.sky.com/story/hurricane-otis-deadly-165mph-storm-carves-multibillion-pound-path-of-destruction-through-acapulco-in-mexico-12993784", - "isoDate": "2023-10-27T09:18:00.000Z" - }, - { - "title": "China's ex-deputy leader sidelined by Xi dies from heart attack", - "link": "https://news.sky.com/story/chinas-former-deputy-leader-li-keqiang-suffers-fatal-heart-attack-12993676", - "pubDate": "Fri, 27 Oct 2023 07:27:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-keqiang-china-beijing_6337115.jpg?20231027074753", - "length": "0", - "type": "image/jpeg" - }, - "content": "China's former deputy leader Li Keqiang has died after suffering a heart attack.", - "contentSnippet": "China's former deputy leader Li Keqiang has died after suffering a heart attack.", - "guid": "https://news.sky.com/story/chinas-former-deputy-leader-li-keqiang-suffers-fatal-heart-attack-12993676", - "isoDate": "2023-10-27T06:27:00.000Z" - }, - { - "title": "US launches retaliatory strikes on Iran-linked munition storage sites in Syria", - "link": "https://news.sky.com/story/us-launches-retaliatory-strikes-on-iran-linked-munition-storage-sites-in-syria-12993637", - "pubDate": "Fri, 27 Oct 2023 04:18:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-syria-us-iran_6337027.jpg?20231027043016", - "length": "0", - "type": "image/jpeg" - }, - "content": "The US military has launched retaliatory airstrikes on two locations in eastern Syria linked to Iran's Revolutionary Guard Corps, the Pentagon has said. ", - "contentSnippet": "The US military has launched retaliatory airstrikes on two locations in eastern Syria linked to Iran's Revolutionary Guard Corps, the Pentagon has said.", - "guid": "https://news.sky.com/story/us-launches-retaliatory-strikes-on-iran-linked-munition-storage-sites-in-syria-12993637", - "isoDate": "2023-10-27T03:18:00.000Z" - }, - { - "title": "Satellites show Israel intensifying bombing of southern Gaza", - "link": "https://news.sky.com/story/gaza-war-satellite-data-shows-israel-intensifying-bombing-of-south-12993277", - "pubDate": "Thu, 26 Oct 2023 21:00:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-gaza-d-and-f-satellite_6336645.jpg?20231026173849", - "length": "0", - "type": "image/jpeg" - }, - "content": "For three weeks, Israel has been bombing the Gaza Strip as part of its war with Hamas.", - "contentSnippet": "For three weeks, Israel has been bombing the Gaza Strip as part of its war with Hamas.", - "guid": "https://news.sky.com/story/gaza-war-satellite-data-shows-israel-intensifying-bombing-of-south-12993277", - "isoDate": "2023-10-26T20:00:00.000Z" - }, - { - "title": "Border Force teams set up in Egypt to help British citizens - if they can get out of Gaza", - "link": "https://news.sky.com/story/british-citizens-escaping-gaza-will-receive-welfare-support-without-delay-12993508", - "pubDate": "Thu, 26 Oct 2023 20:47:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-palestinians-khan-younis_6336282.jpg?20231026123220", - "length": "0", - "type": "image/jpeg" - }, - "content": "Border Force teams are \"prepared and ready\" to evacuate British citizens trapped in Gaza.", - "contentSnippet": "Border Force teams are \"prepared and ready\" to evacuate British citizens trapped in Gaza.", - "guid": "https://news.sky.com/story/british-citizens-escaping-gaza-will-receive-welfare-support-without-delay-12993508", - "isoDate": "2023-10-26T19:47:00.000Z" - }, - { - "title": "All civilian hostages could be freed from Gaza in days if fighting paused, negotiators say", - "link": "https://news.sky.com/story/israel-hamas-war-all-civilian-hostages-could-be-freed-from-gaza-in-days-if-fighting-paused-qatari-negotiators-say-12993168", - "pubDate": "Thu, 26 Oct 2023 14:58:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-handshake-hostage-hamas_6334086.jpg?20231024172924", - "length": "0", - "type": "image/jpeg" - }, - "content": "All the civilians being held hostage in Gaza can be released in days, if there is a pause in the fighting, the Qataris leading negotiations say.", - "contentSnippet": "All the civilians being held hostage in Gaza can be released in days, if there is a pause in the fighting, the Qataris leading negotiations say.", - "guid": "https://news.sky.com/story/israel-hamas-war-all-civilian-hostages-could-be-freed-from-gaza-in-days-if-fighting-paused-qatari-negotiators-say-12993168", - "isoDate": "2023-10-26T13:58:00.000Z" - }, - { - "title": "Dozens dead after 'catastrophic' 165mph hurricane in Mexico", - "link": "https://news.sky.com/story/hurricane-otis-27-dead-and-four-missing-as-165mph-winds-hit-mexico-12992866", - "pubDate": "Thu, 26 Oct 2023 06:15:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-hurricane-mexico_6335962.jpg?20231026074916", - "length": "0", - "type": "image/jpeg" - }, - "content": "At least 27 people have died and four are missing after Hurricane Otis made landfall in Mexico, authorities have said.", - "contentSnippet": "At least 27 people have died and four are missing after Hurricane Otis made landfall in Mexico, authorities have said.", - "guid": "https://news.sky.com/story/hurricane-otis-27-dead-and-four-missing-as-165mph-winds-hit-mexico-12992866", - "isoDate": "2023-10-26T05:15:00.000Z" - }, - { - "title": "Ex-navy men sentenced to death on mysterious espionage charges", - "link": "https://news.sky.com/story/former-indian-navy-men-sentenced-to-death-in-qatar-on-mysterious-espionage-charges-12993891", - "pubDate": "Fri, 27 Oct 2023 12:52:00 +0100", - "enclosure": { - "url": "https://e3.365dm.com/23/10/70x70/skynews-india-navy-ship_6337571.jpg?20231027133722", - "length": "0", - "type": "image/jpeg" - }, - "content": "Eight former Indian navy men have been sentenced to death in Qatar on espionage charges.", - "contentSnippet": "Eight former Indian navy men have been sentenced to death in Qatar on espionage charges.", - "guid": "https://news.sky.com/story/former-indian-navy-men-sentenced-to-death-in-qatar-on-mysterious-espionage-charges-12993891", - "isoDate": "2023-10-27T11:52:00.000Z" - } -] \ No newline at end of file + { + "title": "'Loss and Damage Fund' is a landmark - but it's taken 32 years just to get here", + "link": "https://news.sky.com/story/cop28-uae-loss-and-damage-fund-is-a-landmark-but-its-taken-32-years-just-to-get-here-13020030", + "pubDate": "Thu, 30 Nov 2023 22:24:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-cop28-dubai-uae_6378062.jpg?20231130223134", + "length": "0", + "type": "image/jpeg" + }, + "content": "Here's something for those who think climate summits aren't really getting us anywhere.", + "contentSnippet": "Here's something for those who think climate summits aren't really getting us anywhere.", + "guid": "https://news.sky.com/story/cop28-uae-loss-and-damage-fund-is-a-landmark-but-its-taken-32-years-just-to-get-here-13020030", + "isoDate": "2023-11-30T22:24:00.000Z" + }, + { + "title": "Three police officers injured after clashes involving fans of Polish team outside Villa match", + "link": "https://news.sky.com/story/villa-park-disorder-three-police-officers-injured-after-clashes-involving-fans-of-polish-team-outside-ground-13019927", + "pubDate": "Thu, 30 Nov 2023 20:48:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-police-aston-villa_6378000.jpg?20231130210657", + "length": "0", + "type": "image/jpeg" + }, + "content": "Three police officers have been injured following disorder outside Aston Villa's ground in Birmingham ahead of a Europa Conference League match.", + "contentSnippet": "Three police officers have been injured following disorder outside Aston Villa's ground in Birmingham ahead of a Europa Conference League match.", + "guid": "https://news.sky.com/story/villa-park-disorder-three-police-officers-injured-after-clashes-involving-fans-of-polish-team-outside-ground-13019927", + "isoDate": "2023-11-30T20:48:00.000Z" + }, + { + "title": "As Gazans are told to move to a barren wilderness, can Israel destroy Hamas without killing thousands more?", + "link": "https://news.sky.com/story/as-gazans-are-told-to-move-to-a-1km-by-14km-wilderness-can-israel-destroy-hamas-without-killing-thousands-more-13019892", + "pubDate": "Thu, 30 Nov 2023 20:18:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-gaza-al-mawasi-camp_6377958.jpg?20231130203941", + "length": "0", + "type": "image/jpeg" + }, + "content": "From the Oval Office of the President of the United States, to the corridors of the royal palaces in Qatar, and through the messages of spy chiefs and negotiators to Hamas and Israel, there is an intense desire to keep this fragile ceasefire in Gaza in place. ", + "contentSnippet": "From the Oval Office of the President of the United States, to the corridors of the royal palaces in Qatar, and through the messages of spy chiefs and negotiators to Hamas and Israel, there is an intense desire to keep this fragile ceasefire in Gaza in place.", + "guid": "https://news.sky.com/story/as-gazans-are-told-to-move-to-a-1km-by-14km-wilderness-can-israel-destroy-hamas-without-killing-thousands-more-13019892", + "isoDate": "2023-11-30T20:18:00.000Z" + }, + { + "title": "Sunak to call for 'pragmatic' climate action at COP28", + "link": "https://news.sky.com/story/cop28-rishi-sunak-to-call-for-pragmatic-climate-action-at-conference-after-green-u-turns-earlier-this-year-13019876", + "pubDate": "Thu, 30 Nov 2023 19:58:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/21/11/70x70/skynews-rishi-sunak-climate_5569929.jpg?20211103090554", + "length": "0", + "type": "image/jpeg" + }, + "content": "Rishi Sunak will call for \"pragmatic\" climate action at COP28, as he seeks to reassure international partners following his climate U-turns earlier this year.", + "contentSnippet": "Rishi Sunak will call for \"pragmatic\" climate action at COP28, as he seeks to reassure international partners following his climate U-turns earlier this year.", + "guid": "https://news.sky.com/story/cop28-rishi-sunak-to-call-for-pragmatic-climate-action-at-conference-after-green-u-turns-earlier-this-year-13019876", + "isoDate": "2023-11-30T19:58:00.000Z" + }, + { + "title": "Elon Musk: A timeline of his most recent controversial moments", + "link": "https://news.sky.com/story/elon-musk-what-are-his-most-recent-controversial-moments-13019651", + "pubDate": "Thu, 30 Nov 2023 15:13:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/07/70x70/skynews-elon-musk-ai_6217043.jpg?20230712213547", + "length": "0", + "type": "image/jpeg" + }, + "content": "Elon Musk has apologised for endorsing an antisemitic conspiracy theory, admitting it may have been \"literally the worst and dumbest post I've ever done\".", + "contentSnippet": "Elon Musk has apologised for endorsing an antisemitic conspiracy theory, admitting it may have been \"literally the worst and dumbest post I've ever done\".", + "guid": "https://news.sky.com/story/elon-musk-what-are-his-most-recent-controversial-moments-13019651", + "isoDate": "2023-11-30T15:13:00.000Z" + }, + { + "title": "Shane MacGowan: A wild life, a raw talent, a forever connection with Christmas - whether he liked it or not", + "link": "https://news.sky.com/story/shane-macgowan-obituary-a-wild-life-raw-talent-and-a-forever-connection-with-christmas-whether-he-liked-it-or-not-13008693", + "pubDate": "Thu, 30 Nov 2023 11:50:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-shane-macgowan-singer_6361217.jpg?20231115102913", + "length": "0", + "type": "image/jpeg" + }, + "content": "According to Shane MacGowan, the seeds of Fairytale Of New York were sown when Elvis Costello bet him he couldn't write a yuletide hit without selling out.", + "contentSnippet": "According to Shane MacGowan, the seeds of Fairytale Of New York were sown when Elvis Costello bet him he couldn't write a yuletide hit without selling out.", + "guid": "https://news.sky.com/story/shane-macgowan-obituary-a-wild-life-raw-talent-and-a-forever-connection-with-christmas-whether-he-liked-it-or-not-13008693", + "isoDate": "2023-11-30T11:50:00.000Z" + }, + { + "title": "Shane MacGowan, best known for Christmas hit Fairytale Of New York, dies", + "link": "https://news.sky.com/story/the-pogues-star-shane-macgowan-best-known-for-christmas-hit-fairytale-of-new-york-dies-at-65-13008760", + "pubDate": "Thu, 30 Nov 2023 11:40:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-shane-macgowan-hospital_6377537.jpg?20231130123633", + "length": "0", + "type": "image/jpeg" + }, + "content": "Musician and singer Shane MacGowan, best known as the frontman of The Pogues, has died at the age of 65.", + "contentSnippet": "Musician and singer Shane MacGowan, best known as the frontman of The Pogues, has died at the age of 65.", + "guid": "https://news.sky.com/story/the-pogues-star-shane-macgowan-best-known-for-christmas-hit-fairytale-of-new-york-dies-at-65-13008760", + "isoDate": "2023-11-30T11:40:00.000Z" + }, + { + "title": "Former US secretary of state Henry Kissinger dies aged 100", + "link": "https://news.sky.com/story/former-united-states-secretary-of-state-henry-kissinger-has-died-aged-100-13019308", + "pubDate": "Thu, 30 Nov 2023 01:43:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-henry-kissinger-us_6377138.jpg?20231130014753", + "length": "0", + "type": "image/jpeg" + }, + "content": "Former United States secretary of state Henry Kissinger has died aged 100.\n", + "contentSnippet": "Former United States secretary of state Henry Kissinger has died aged 100.", + "guid": "https://news.sky.com/story/former-united-states-secretary-of-state-henry-kissinger-has-died-aged-100-13019308", + "isoDate": "2023-11-30T01:43:00.000Z" + }, + { + "title": "An end to the truce approaches - but the people of Gaza are desperate for help", + "link": "https://news.sky.com/story/an-end-to-the-israel-hamas-truce-approaches-but-the-people-of-gaza-are-desperate-for-help-13019257", + "pubDate": "Wed, 29 Nov 2023 22:01:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-gaza-israel_6377074.jpg?20231129221956", + "length": "0", + "type": "image/jpeg" + }, + "content": "The ceasefire clock is ticking down and everyone in Gaza knows it.", + "contentSnippet": "The ceasefire clock is ticking down and everyone in Gaza knows it.", + "guid": "https://news.sky.com/story/an-end-to-the-israel-hamas-truce-approaches-but-the-people-of-gaza-are-desperate-for-help-13019257", + "isoDate": "2023-11-29T22:01:00.000Z" + }, + { + "title": "UK sending one of its most lethal warships to Gulf to deter Iran-backed groups", + "link": "https://news.sky.com/story/israel-hamas-war-uk-sending-one-of-its-most-lethal-warships-to-gulf-to-deter-iran-backed-groups-13018926", + "pubDate": "Wed, 29 Nov 2023 14:06:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-hms-diamond-royal-navy_6376613.jpg?20231129142358", + "length": "0", + "type": "image/jpeg" + }, + "content": "The UK is sending one of its most lethal warships to the Gulf to deter growing threats to shipping from Iran and Iranian-backed groups in the wake of Israel's war against Hamas.", + "contentSnippet": "The UK is sending one of its most lethal warships to the Gulf to deter growing threats to shipping from Iran and Iranian-backed groups in the wake of Israel's war against Hamas.", + "guid": "https://news.sky.com/story/israel-hamas-war-uk-sending-one-of-its-most-lethal-warships-to-gulf-to-deter-iran-backed-groups-13018926", + "isoDate": "2023-11-29T14:06:00.000Z" + }, + { + "title": "Blinken tells Israel it needs 'clear plan' to protect civilians before Gaza attacks resume", + "link": "https://news.sky.com/story/blinken-tells-israel-it-needs-clear-plan-to-protect-civilians-before-gaza-attacks-resume-13019896", + "pubDate": "Thu, 30 Nov 2023 20:27:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-blinken-israel-gallant_6378037.jpg?20231130220017", + "length": "0", + "type": "image/jpeg" + }, + "content": "US secretary of state Antony Blinken has told Israel's leader he must establish better protection for civilians before resuming attacks on Gaza.", + "contentSnippet": "US secretary of state Antony Blinken has told Israel's leader he must establish better protection for civilians before resuming attacks on Gaza.", + "guid": "https://news.sky.com/story/blinken-tells-israel-it-needs-clear-plan-to-protect-civilians-before-gaza-attacks-resume-13019896", + "isoDate": "2023-11-30T20:27:00.000Z" + }, + { + "title": "Freed from captivity: The 79 Israeli hostages released by Hamas", + "link": "https://news.sky.com/story/who-are-the-first-71-israeli-hostages-released-by-hamas-13015007", + "pubDate": "Fri, 24 Nov 2023 12:51:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-israel-hostages_6378069.jpg?20231130225026", + "length": "0", + "type": "image/jpeg" + }, + "content": "Eight more Israeli hostages were freed by Hamas on Thursday as part of a string of releases under a temporary ceasefire deal.", + "contentSnippet": "Eight more Israeli hostages were freed by Hamas on Thursday as part of a string of releases under a temporary ceasefire deal.", + "guid": "https://news.sky.com/story/who-are-the-first-71-israeli-hostages-released-by-hamas-13015007", + "isoDate": "2023-11-24T12:51:00.000Z" + }, + { + "title": "Cristiano Ronaldo faces $1bn lawsuit after launching NFT collection", + "link": "https://news.sky.com/story/cristiano-ronaldo-faces-1bn-lawsuit-after-launching-nft-collection-13020043", + "pubDate": "Thu, 30 Nov 2023 23:29:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-ronaldo-cristiano-ronaldo_6378089.jpg?20231130234041", + "length": "0", + "type": "image/jpeg" + }, + "content": "Cristiano Ronaldo has been hit with a $1bn (£791m) class action lawsuit for his involvement in promoting non-fungible tokens.", + "contentSnippet": "Cristiano Ronaldo has been hit with a $1bn (\u00a3791m) class action lawsuit for his involvement in promoting non-fungible tokens.", + "guid": "https://news.sky.com/story/cristiano-ronaldo-faces-1bn-lawsuit-after-launching-nft-collection-13020043", + "isoDate": "2023-11-30T23:29:00.000Z" + }, + { + "title": "Thai hostage elated to be back with family - and says Hamas 'looked after us'", + "link": "https://news.sky.com/story/thai-hostage-elated-to-be-back-with-family-and-says-hamas-looked-after-us-13020040", + "pubDate": "Thu, 30 Nov 2023 23:17:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-thai-hostages-lynch_6378098.jpg?20231201001911", + "length": "0", + "type": "image/jpeg" + }, + "content": "At Bangkok International Airport, 17 Thai nationals touched down after two months in captivity.", + "contentSnippet": "At Bangkok International Airport, 17 Thai nationals touched down after two months in captivity.", + "guid": "https://news.sky.com/story/thai-hostage-elated-to-be-back-with-family-and-says-hamas-looked-after-us-13020040", + "isoDate": "2023-11-30T23:17:00.000Z" + }, + { + "title": "Man dies after being buried in sand on beach", + "link": "https://news.sky.com/story/australia-man-dies-after-being-buried-in-sand-on-bribie-island-13025349", + "pubDate": "Fri, 08 Dec 2023 06:47:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-josh-taylor-australia_6386202.jpg?20231208081306", + "length": "0", + "type": "image/jpeg" + }, + "content": "A 23-year-old man has died after being buried in sand on an Australian island, police have said.", + "contentSnippet": "A 23-year-old man has died after being buried in sand on an Australian island, police have said.", + "guid": "https://news.sky.com/story/australia-man-dies-after-being-buried-in-sand-on-bribie-island-13025349", + "isoDate": "2023-12-08T06:47:00.000Z" + }, + { + "title": "Brought down by a bag of cash: The politician fighting to clear her name", + "link": "https://news.sky.com/story/brought-down-by-a-bag-of-cash-the-politician-fighting-to-clear-her-name-13025092", + "pubDate": "Fri, 08 Dec 2023 04:06:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-eva-kaili-parliament_6385506.jpg?20231207132318", + "length": "0", + "type": "image/jpeg" + }, + "content": "A year ago, Eva Kaili was one of the rising stars of European politics.", + "contentSnippet": "A year ago, Eva Kaili was one of the rising stars of European politics.", + "guid": "https://news.sky.com/story/brought-down-by-a-bag-of-cash-the-politician-fighting-to-clear-her-name-13025092", + "isoDate": "2023-12-08T04:06:00.000Z" + }, + { + "title": "Biden's son charged with evading tax - and spending cash on drugs, escorts and exotic cars", + "link": "https://news.sky.com/story/hunter-biden-presidents-son-charged-with-evading-tax-and-spending-cash-on-drugs-escorts-and-exotic-cars-13025316", + "pubDate": "Fri, 08 Dec 2023 03:43:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-hunter-biden-court_6307748.jpg?20231003180004", + "length": "0", + "type": "image/jpeg" + }, + "content": "Hunter Biden has been criminally charged for tax-related offences in California, as a federal investigation into his financial conduct intensifies. ", + "contentSnippet": "Hunter Biden has been criminally charged for tax-related offences in California, as a federal investigation into his financial conduct intensifies.", + "guid": "https://news.sky.com/story/hunter-biden-presidents-son-charged-with-evading-tax-and-spending-cash-on-drugs-escorts-and-exotic-cars-13025316", + "isoDate": "2023-12-08T03:43:00.000Z" + }, + { + "title": "Masters champion joins Saudi-backed golf league in £450m deal", + "link": "https://news.sky.com/story/masters-champion-jon-rahm-joins-saudi-backed-golf-league-in-163450m-deal-13025312", + "pubDate": "Fri, 08 Dec 2023 02:30:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-jon-rahm-golf_6386129.jpg?20231208030912", + "length": "0", + "type": "image/jpeg" + }, + "content": "Jon Rahm has joined the Saudi-backed LIV Golf league in a deal understood to be worth up to £450m.", + "contentSnippet": "Jon Rahm has joined the Saudi-backed LIV Golf league in a deal understood to be worth up to \u00a3450m.", + "guid": "https://news.sky.com/story/masters-champion-jon-rahm-joins-saudi-backed-golf-league-in-163450m-deal-13025312", + "isoDate": "2023-12-08T02:30:00.000Z" + }, + { + "title": "Video appears to show Israeli forces detain and strip dozens of Palestinians in Gaza", + "link": "https://news.sky.com/story/video-appears-to-show-israeli-forces-detain-and-strip-dozens-of-palestinians-in-gaza-13025217", + "pubDate": "Thu, 07 Dec 2023 20:32:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-israel-idf-gaza_6385971.png?20231207210813", + "length": "0", + "type": "image/png" + }, + "content": "Footage has emerged appearing to show the Israeli military detaining dozens of Palestinian men in northern Gaza - with some stripped to their underwear.", + "contentSnippet": "Footage has emerged appearing to show the Israeli military detaining dozens of Palestinian men in northern Gaza - with some stripped to their underwear.", + "guid": "https://news.sky.com/story/video-appears-to-show-israeli-forces-detain-and-strip-dozens-of-palestinians-in-gaza-13025217", + "isoDate": "2023-12-07T20:32:00.000Z" + }, + { + "title": "Panic and heartbreak: The devastating effect of an airstrike in Gaza ", + "link": "https://news.sky.com/story/panic-and-heartbreak160the-devastating-effect-of-an-airstrike-in-gaza-13025163", + "pubDate": "Thu, 07 Dec 2023 19:12:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-gaza-israel-khan-younis_6385863.jpg?20231207190328", + "length": "0", + "type": "image/jpeg" + }, + "content": "As Israel's southern offensive continues, and thousands of Palestinians have been injured or killed, Khan Younis has been hit with an airstrike. Sky News' chief correspondent Stuart Ramsay reports on the scenes in the city and the strike's \"devastating effect\".", + "contentSnippet": "As Israel's southern offensive continues, and thousands of Palestinians have been injured or killed, Khan Younis has been hit with an airstrike. Sky News' chief correspondent Stuart Ramsay reports on the scenes in the city and the strike's \"devastating effect\".", + "guid": "https://news.sky.com/story/panic-and-heartbreak160the-devastating-effect-of-an-airstrike-in-gaza-13025163", + "isoDate": "2023-12-07T19:12:00.000Z" + }, + { + "title": "UK and US sanction Russian hackers who 'meddled in British politics'", + "link": "https://news.sky.com/story/uk-and-us-sanction-russian-hackers-who-used-spear-phishing-to-meddle-in-british-politics-13025122", + "pubDate": "Thu, 07 Dec 2023 17:56:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-russia-hackers_6385877.jpg?20231207191121", + "length": "0", + "type": "image/jpeg" + }, + "content": "The UK and US governments have imposed sanctions on two Russian hackers after the private conversations of high-profile politicians and civil servants were compromised.", + "contentSnippet": "The UK and US governments have imposed sanctions on two Russian hackers after the private conversations of high-profile politicians and civil servants were compromised.", + "guid": "https://news.sky.com/story/uk-and-us-sanction-russian-hackers-who-used-spear-phishing-to-meddle-in-british-politics-13025122", + "isoDate": "2023-12-07T17:56:00.000Z" + }, + { + "title": "Girl kills classmate and injures five at school before shooting herself", + "link": "https://news.sky.com/story/russia-school-shooting-14-year-old-girl-kills-classmate-and-injuries-five-13025015", + "pubDate": "Thu, 07 Dec 2023 14:33:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-russia-school-shooting_6385606.jpg?20231207145559", + "length": "0", + "type": "image/jpeg" + }, + "content": "A Russian girl has shot dead a classmate and injured five others at a school before killing herself.", + "contentSnippet": "A Russian girl has shot dead a classmate and injured five others at a school before killing herself.", + "guid": "https://news.sky.com/story/russia-school-shooting-14-year-old-girl-kills-classmate-and-injuries-five-13025015", + "isoDate": "2023-12-07T14:33:00.000Z" + }, + { + "title": "Satellite images show how far Israel's ground forces have reached inside southern Gaza", + "link": "https://news.sky.com/story/satellite-images-show-how-far-israels-ground-forces-have-reached-inside-gaza-13024992", + "pubDate": "Thu, 07 Dec 2023 13:48:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-gaza-khan-younis_6385668.png?20231207160429", + "length": "0", + "type": "image/png" + }, + "content": "As the Israeli military continues its operation in Gaza's southern region of Khan Younis, new satellite imagery reveals how far their ground forces may have reached. ", + "contentSnippet": "As the Israeli military continues its operation in Gaza's southern region of Khan Younis, new satellite imagery reveals how far their ground forces may have reached.", + "guid": "https://news.sky.com/story/satellite-images-show-how-far-israels-ground-forces-have-reached-inside-gaza-13024992", + "isoDate": "2023-12-07T13:48:00.000Z" + }, + { + "title": "Bedbug hoax targeting tourists in Greece, authorities warn", + "link": "https://news.sky.com/story/bedbug-hoax-targeting-tourists-in-greece-authorities-warn-13024983", + "pubDate": "Thu, 07 Dec 2023 13:40:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-bed-bug-bedbug_6324380.jpg?20231017115008", + "length": "0", + "type": "image/jpeg" + }, + "content": "Greece's health ministry has asked police to help tackle bedbug hoaxers trying to scare foreign tourists out of some Athens short-term rental apartments. ", + "contentSnippet": "Greece's health ministry has asked police to help tackle bedbug hoaxers trying to scare foreign tourists out of some Athens short-term rental apartments.", + "guid": "https://news.sky.com/story/bedbug-hoax-targeting-tourists-in-greece-authorities-warn-13024983", + "isoDate": "2023-12-07T13:40:00.000Z" + }, + { + "title": "14 airport workers arrested after '£1.7m worth of items stolen from luggage'", + "link": "https://news.sky.com/story/tenerift-airport-workers-arrested-after-16317m-worth-of-items-stolen-from-luggage-13031025", + "pubDate": "Fri, 15 Dec 2023 14:05:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-tenerife-stolen-items_6393916.jpg?20231215142201", + "length": "0", + "type": "image/jpeg" + }, + "content": "Fourteen workers at one of Spain's main tourist airports have been arrested on suspicion of stealing items from passengers' checked-in luggage.", + "contentSnippet": "Fourteen workers at one of Spain's main tourist airports have been arrested on suspicion of stealing items from passengers' checked-in luggage.", + "guid": "https://news.sky.com/story/tenerift-airport-workers-arrested-after-16317m-worth-of-items-stolen-from-luggage-13031025", + "isoDate": "2023-12-15T14:05:00.000Z" + }, + { + "title": "Anger over sentencing of boy, 10, for urinating in car park", + "link": "https://news.sky.com/story/anger-over-sentencing-of-boy-10-for-urinating-in-mississippi-car-park-13030865", + "pubDate": "Fri, 15 Dec 2023 10:25:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-quantavious-eason-mississippi_6393662.jpg?20231215110110", + "length": "0", + "type": "image/jpeg" + }, + "content": "A boy who urinated in a US car park has been given three months' probation and must write an essay on the late NBA legend Kobe Bryant.", + "contentSnippet": "A boy who urinated in a US car park has been given three months' probation and must write an essay on the late NBA legend Kobe Bryant.", + "guid": "https://news.sky.com/story/anger-over-sentencing-of-boy-10-for-urinating-in-mississippi-car-park-13030865", + "isoDate": "2023-12-15T10:25:00.000Z" + }, + { + "title": "UFC fighter tells opponent his dead father is 'in hell', sparking fury", + "link": "https://news.sky.com/story/colby-covington-ufc-fighter-provokes-pre-bout-row-by-saying-leon-edwards-dead-father-is-in-hell-13030863", + "pubDate": "Fri, 15 Dec 2023 10:15:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-leon-edwards-colby-covington_6393623.jpg?20231215101417", + "length": "0", + "type": "image/jpeg" + }, + "content": "Two UFC fighters have had to be separated at their pre-bout news conference in Las Vegas after one told the other his dead father was in hell.", + "contentSnippet": "Two UFC fighters have had to be separated at their pre-bout news conference in Las Vegas after one told the other his dead father was in hell.", + "guid": "https://news.sky.com/story/colby-covington-ufc-fighter-provokes-pre-bout-row-by-saying-leon-edwards-dead-father-is-in-hell-13030863", + "isoDate": "2023-12-15T10:15:00.000Z" + }, + { + "title": "Israeli soldiers suspended for reading out Jewish prayers at a mosque during West Bank raid", + "link": "https://news.sky.com/story/israel-hamas-war-israeli-soldiers-suspended-for-reading-out-jewish-prayers-at-jenin-mosque-during-west-bank-raid-13030762", + "pubDate": "Fri, 15 Dec 2023 09:10:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-israeli-soldier-jenin-refugee-camp_6393500.jpg?20231215074940", + "length": "0", + "type": "image/jpeg" + }, + "content": "Israel has suspended a group of its soldiers after video emerged of Israeli troops reading out Jewish prayers at a mosque in the occupied West Bank city of Jenin.", + "contentSnippet": "Israel has suspended a group of its soldiers after video emerged of Israeli troops reading out Jewish prayers at a mosque in the occupied West Bank city of Jenin.", + "guid": "https://news.sky.com/story/israel-hamas-war-israeli-soldiers-suspended-for-reading-out-jewish-prayers-at-jenin-mosque-during-west-bank-raid-13030762", + "isoDate": "2023-12-15T09:10:00.000Z" + }, + { + "title": "Despite it making him a style icon, Pope wants regulation of AI", + "link": "https://news.sky.com/story/pope-francis-calls-for-international-regulation-of-artificial-intelligence-13030787", + "pubDate": "Fri, 15 Dec 2023 08:13:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/09/70x70/skynews-pope-francis-pontiff_6295013.jpg?20230923115059", + "length": "0", + "type": "image/jpeg" + }, + "content": "Pope Francis has thrown his support behind calls for AI to be regulated.", + "contentSnippet": "Pope Francis has thrown his support behind calls for AI to be regulated.", + "guid": "https://news.sky.com/story/pope-francis-calls-for-international-regulation-of-artificial-intelligence-13030787", + "isoDate": "2023-12-15T08:13:00.000Z" + }, + { + "title": "Boat carrying migrants sinks in Channel", + "link": "https://news.sky.com/story/channel-crossing-one-dead-and-another-critical-after-boat-carrying-migrants-sinks-13030740", + "pubDate": "Fri, 15 Dec 2023 06:58:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-migrants-dinghy-crossing_6393496.jpg?20231215074759", + "length": "0", + "type": "image/jpeg" + }, + "content": "One person has died and another is in a critical condition in hospital after a boat carrying migrants sank in the English Channel.", + "contentSnippet": "One person has died and another is in a critical condition in hospital after a boat carrying migrants sank in the English Channel.", + "guid": "https://news.sky.com/story/channel-crossing-one-dead-and-another-critical-after-boat-carrying-migrants-sinks-13030740", + "isoDate": "2023-12-15T06:58:00.000Z" + }, + { + "title": "Gunmen kill 11 in night-time attack on Iran police station", + "link": "https://news.sky.com/story/iran-gunmen-kill-11-in-attack-on-police-station-13030730", + "pubDate": "Fri, 15 Dec 2023 06:32:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-iran-sistan-baluchestan_6393476.jpg?20231215072540", + "length": "0", + "type": "image/jpeg" + }, + "content": "Eleven people have died in a night-time attack on a police station by suspected members of a separatist group, according to Iranian state TV.", + "contentSnippet": "Eleven people have died in a night-time attack on a police station by suspected members of a separatist group, according to Iranian state TV.", + "guid": "https://news.sky.com/story/iran-gunmen-kill-11-in-attack-on-police-station-13030730", + "isoDate": "2023-12-15T06:32:00.000Z" + }, + { + "title": "Club president given life ban for punching football referee to the ground", + "link": "https://news.sky.com/story/ankaragucu-president-faruk-koca-handed-permanent-ban-for-punching-referee-13030705", + "pubDate": "Fri, 15 Dec 2023 03:12:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-turkey-referr-punch_6390412.jpg?20231212062513", + "length": "0", + "type": "image/jpeg" + }, + "content": "The former president of a top division Turkish football club has been handed a permanent ban after punching a referee at the end of a match.", + "contentSnippet": "The former president of a top division Turkish football club has been handed a permanent ban after punching a referee at the end of a match.", + "guid": "https://news.sky.com/story/ankaragucu-president-faruk-koca-handed-permanent-ban-for-punching-referee-13030705", + "isoDate": "2023-12-15T03:12:00.000Z" + }, + { + "title": "After School Satan Club to go ahead despite uproar from faith leaders", + "link": "https://news.sky.com/story/satan-club-to-be-held-in-memphis-school-library-despite-uproar-from-faith-leaders-13030700", + "pubDate": "Thu, 14 Dec 2023 23:54:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-after-school-satan-club_6393430.jpg?20231215000219", + "length": "0", + "type": "image/jpeg" + }, + "content": "An After School Satan Club will go ahead despite opposition from faith and education leaders in Tennessee.", + "contentSnippet": "An After School Satan Club will go ahead despite opposition from faith and education leaders in Tennessee.", + "guid": "https://news.sky.com/story/satan-club-to-be-held-in-memphis-school-library-despite-uproar-from-faith-leaders-13030700", + "isoDate": "2023-12-14T23:54:00.000Z" + }, + { + "title": "Ukraine's first step towards the EU club is a huge moment - but Putin will do all he can to thwart it", + "link": "https://news.sky.com/story/if-putin-prevails-there-will-be-no-ukraine-to-join-the-eu-and-that-is-no-longer-out-of-the-question-13030608", + "pubDate": "Thu, 14 Dec 2023 20:53:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/12/70x70/skynews-vladimir-putin-conference_6392584.jpg?20231214093039", + "length": "0", + "type": "image/jpeg" + }, + "content": "It had all the makings of one of those nightmare EU summits.", + "contentSnippet": "It had all the makings of one of those nightmare EU summits.", + "guid": "https://news.sky.com/story/if-putin-prevails-there-will-be-no-ukraine-to-join-the-eu-and-that-is-no-longer-out-of-the-question-13030608", + "isoDate": "2023-12-14T20:53:00.000Z" + }, + { + "title": "Man stranded at sea rescued after using watch to reflect sun", + "link": "https://news.sky.com/story/man-stranded-at-sea-in-new-zealand-rescued-after-using-watch-to-reflect-sun-13041926", + "pubDate": "Thu, 04 Jan 2024 09:08:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-aldermen-islands-new-zealand_6411784.jpg?20240104100313", + "length": "0", + "type": "image/jpeg" + }, + "content": "A man who spent nearly 24 hours at sea in New Zealand alerted his rescuers by using his watch to reflect the sun.", + "contentSnippet": "A man who spent nearly 24 hours at sea in New Zealand alerted his rescuers by using his watch to reflect the sun.", + "guid": "https://news.sky.com/story/man-stranded-at-sea-in-new-zealand-rescued-after-using-watch-to-reflect-sun-13041926", + "isoDate": "2024-01-04T09:08:00.000Z" + }, + { + "title": "Pilot in helicopter crash that killed British couple 'had cocaine in his system'", + "link": "https://news.sky.com/story/pilot-in-helicopter-crash-that-killed-british-couple-had-cocaine-in-his-system-13041707", + "pubDate": "Wed, 03 Jan 2024 18:48:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/01/70x70/skynews-australia-helicopter-crash_6012424.jpg?20230104075556", + "length": "0", + "type": "image/jpeg" + }, + "content": "The pilot of a helicopter that crashed and killed a British couple in Australia had cocaine in his system, a report has found.", + "contentSnippet": "The pilot of a helicopter that crashed and killed a British couple in Australia had cocaine in his system, a report has found.", + "guid": "https://news.sky.com/story/pilot-in-helicopter-crash-that-killed-british-couple-had-cocaine-in-his-system-13041707", + "isoDate": "2024-01-03T18:48:00.000Z" + }, + { + "title": "Epstein documents: Prince Andrew's puppet, Clinton's 'preferences' and underage orgy allegations", + "link": "https://news.sky.com/story/epstein-documents-clinton8217s-8216preferences8217-prince-andrew8217s-puppet-and-underage-orgy-allegations-13040654", + "pubDate": "Wed, 03 Jan 2024 18:00:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-prince-andrew-duke-of-york_6411671.jpg?20240104073116", + "length": "0", + "type": "image/jpeg" + }, + "content": "Prince Andrew, Bill Clinton, Donald Trump and Stephen Hawking are among those named in court documents relating to Ghislaine Maxwell, her relationship with Jeffrey Epstein and alleged victims of sexual abuse. ", + "contentSnippet": "Prince Andrew, Bill Clinton, Donald Trump and Stephen Hawking are among those named in court documents relating to Ghislaine Maxwell, her relationship with Jeffrey Epstein and alleged victims of sexual abuse.", + "guid": "https://news.sky.com/story/epstein-documents-clinton8217s-8216preferences8217-prince-andrew8217s-puppet-and-underage-orgy-allegations-13040654", + "isoDate": "2024-01-03T18:00:00.000Z" + }, + { + "title": "UK's 'unsustainable' consumption putting 'enormous pressure' on world's forests, MPs warn", + "link": "https://news.sky.com/story/deforestation-report-uks-unsustainable-consumption-putting-enormous-pressure-on-worlds-forests-mps-warn-13041672", + "pubDate": "Wed, 03 Jan 2024 17:01:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-brazil-deforestation_6411363.jpg?20240103172332", + "length": "0", + "type": "image/jpeg" + }, + "content": "The world's forests - the lungs of the planet - are being put under \"enormous pressure\" by the UK's appetite for commodities like soy, cocoa, palm oil, beef and leather, MPs have warned.", + "contentSnippet": "The world's forests - the lungs of the planet - are being put under \"enormous pressure\" by the UK's appetite for commodities like soy, cocoa, palm oil, beef and leather, MPs have warned.", + "guid": "https://news.sky.com/story/deforestation-report-uks-unsustainable-consumption-putting-enormous-pressure-on-worlds-forests-mps-warn-13041672", + "isoDate": "2024-01-03T17:01:00.000Z" + }, + { + "title": "Small coastguard jet involved in fiery Japan plane crash 'wasn't cleared for take-off'", + "link": "https://news.sky.com/story/japan-plane-crash-small-coastguard-jet-wasnt-cleared-for-take-off-at-time-of-collision-13041574", + "pubDate": "Wed, 03 Jan 2024 14:35:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-haneda-airport-plane-fire_6409892.jpg?20240102092642", + "length": "0", + "type": "image/jpeg" + }, + "content": "A coastguard aircraft that collided with a passenger plane at Tokyo's Haneda airport had not been cleared for take-off when the crash took place, authorities have said.", + "contentSnippet": "A coastguard aircraft that collided with a passenger plane at Tokyo's Haneda airport had not been cleared for take-off when the crash took place, authorities have said.", + "guid": "https://news.sky.com/story/japan-plane-crash-small-coastguard-jet-wasnt-cleared-for-take-off-at-time-of-collision-13041574", + "isoDate": "2024-01-03T14:35:00.000Z" + }, + { + "title": "Iran vows revenge after 95 killed in 'heinous' blasts near tomb", + "link": "https://news.sky.com/story/at-least-20-killed-in-explosions-near-tomb-of-iranian-guards-commander-qassem-soleimani-during-ceremony-13041479", + "pubDate": "Wed, 03 Jan 2024 12:21:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-kerman-iranblasts-explosion_6411689.jpg?20240104075659", + "length": "0", + "type": "image/jpeg" + }, + "content": "Iran has vowed revenge after 84 people were killed in two explosions near the tomb of a general.", + "contentSnippet": "Iran has vowed revenge after 84 people were killed in two explosions near the tomb of a general.", + "guid": "https://news.sky.com/story/at-least-20-killed-in-explosions-near-tomb-of-iranian-guards-commander-qassem-soleimani-during-ceremony-13041479", + "isoDate": "2024-01-03T12:21:00.000Z" + }, + { + "title": "Jimmy Kimmel threatens legal action against NFL star over suggested Epstein links", + "link": "https://news.sky.com/story/jimmy-kimmel-threatens-legal-action-against-nfl-star-over-suggested-jeffrey-epstein-links-13041406", + "pubDate": "Wed, 03 Jan 2024 10:21:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-aaron-rodgers-jimmy-kimmel_6410976.jpg?20240103105941", + "length": "0", + "type": "image/jpeg" + }, + "content": "Jimmy Kimmel has threatened to take legal action against an American football player over suggestions the presenter's name may appear on Jeffrey Epstein's client list.", + "contentSnippet": "Jimmy Kimmel has threatened to take legal action against an American football player over suggestions the presenter's name may appear on Jeffrey Epstein's client list.", + "guid": "https://news.sky.com/story/jimmy-kimmel-threatens-legal-action-against-nfl-star-over-suggested-jeffrey-epstein-links-13041406", + "isoDate": "2024-01-03T10:21:00.000Z" + }, + { + "title": "Ryanair lashes out at online 'pirates' after airline removed from booking sites", + "link": "https://news.sky.com/story/ryanair-lashes-out-at-online-pirates-after-airline-removed-from-booking-sites-including-bookingcom-and-kayak-13041325", + "pubDate": "Wed, 03 Jan 2024 08:19:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/09/70x70/skynews-ryanair-plane_6292411.jpg?20230921102917", + "length": "0", + "type": "image/jpeg" + }, + "content": "Ryanair has warned its business is likely to be hit in the short term after a string of online travel agents removed the airline from their online listings.", + "contentSnippet": "Ryanair has warned its business is likely to be hit in the short term after a string of online travel agents removed the airline from their online listings.", + "guid": "https://news.sky.com/story/ryanair-lashes-out-at-online-pirates-after-airline-removed-from-booking-sites-including-bookingcom-and-kayak-13041325", + "isoDate": "2024-01-03T08:19:00.000Z" + }, + { + "title": "Boy shot dead by 10-year-old who lost bike race, mum claims", + "link": "https://news.sky.com/story/keith-frierson-boy-shot-dead-by-10-year-old-who-lost-bike-race-mum-claims-13041316", + "pubDate": "Wed, 03 Jan 2024 07:56:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-kj-keith-frierson-sacramento_6410821.png?20240103080852", + "length": "0", + "type": "image/png" + }, + "content": "A 10-year-old boy was shot dead by another boy of the same age after losing a bicycle race, the victim's mother has claimed.", + "contentSnippet": "A 10-year-old boy was shot dead by another boy of the same age after losing a bicycle race, the victim's mother has claimed.", + "guid": "https://news.sky.com/story/keith-frierson-boy-shot-dead-by-10-year-old-who-lost-bike-race-mum-claims-13041316", + "isoDate": "2024-01-03T07:56:00.000Z" + }, + { + "title": "'Race against time' to save dozens still trapped under rubble after Japan earthquake", + "link": "https://news.sky.com/story/japan-earthquake-race-against-time-to-save-dozens-still-trapped-under-rubble-13041304", + "pubDate": "Wed, 03 Jan 2024 07:21:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-japan-earthquake_6410817.jpg?20240103080729", + "length": "0", + "type": "image/jpeg" + }, + "content": "Rescue teams in Japan face a \"race against time\" to find survivors after at least 73 people were killed following a 7.6-magnitude earthquake in the region.", + "contentSnippet": "Rescue teams in Japan face a \"race against time\" to find survivors after at least 73 people were killed following a 7.6-magnitude earthquake in the region.", + "guid": "https://news.sky.com/story/japan-earthquake-race-against-time-to-save-dozens-still-trapped-under-rubble-13041304", + "isoDate": "2024-01-03T07:21:00.000Z" + }, + { + "title": "Largest male specimen of world's most venomous spider found in Australia", + "link": "https://news.sky.com/story/largest-male-specimen-of-worlds-most-venomous-spider-found-in-australia-13042521", + "pubDate": "Fri, 05 Jan 2024 11:40:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-spider-australia_6412713.jpg?20240105104220", + "length": "0", + "type": "image/jpeg" + }, + "content": "The largest male specimen of the world's most venomous spider has been found in Australia.", + "contentSnippet": "The largest male specimen of the world's most venomous spider has been found in Australia.", + "guid": "https://news.sky.com/story/largest-male-specimen-of-worlds-most-venomous-spider-found-in-australia-13042521", + "isoDate": "2024-01-05T11:40:00.000Z" + }, + { + "title": "No police investigation after Prince Andrew among scores named in Epstein court papers", + "link": "https://news.sky.com/story/no-police-investigation-after-prince-andrew-among-scores-named-in-jeffrey-epstein-court-papers-13042477", + "pubDate": "Fri, 05 Jan 2024 08:57:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-andrew-epstein_6412327.jpg?20240104173124", + "length": "0", + "type": "image/jpeg" + }, + "content": "No investigation has been launched after Prince Andrew was among scores of people named as associates of Jeffrey Epstein in court papers unsealed by a US court, the Metropolitan Police have said.", + "contentSnippet": "No investigation has been launched after Prince Andrew was among scores of people named as associates of Jeffrey Epstein in court papers unsealed by a US court, the Metropolitan Police have said.", + "guid": "https://news.sky.com/story/no-police-investigation-after-prince-andrew-among-scores-named-in-jeffrey-epstein-court-papers-13042477", + "isoDate": "2024-01-05T08:57:00.000Z" + }, + { + "title": "Gaza could remain under Israeli 'security control' after war under new plan", + "link": "https://news.sky.com/story/gaza-could-remain-under-israeli-security-control-after-hamas-defeated-in-war-defence-minister-says-13042418", + "pubDate": "Fri, 05 Jan 2024 07:26:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-israel-gaza_6412509.jpg?20240105061932", + "length": "0", + "type": "image/jpeg" + }, + "content": "Israel's defence minister has outlined his vision for the next stage of the war in Gaza, including a more targeted approach in the north while fighting Hamas in the south \"for as long as necessary\".", + "contentSnippet": "Israel's defence minister has outlined his vision for the next stage of the war in Gaza, including a more targeted approach in the north while fighting Hamas in the south \"for as long as necessary\".", + "guid": "https://news.sky.com/story/gaza-could-remain-under-israeli-security-control-after-hamas-defeated-in-war-defence-minister-says-13042418", + "isoDate": "2024-01-05T07:26:00.000Z" + }, + { + "title": "McDonald's boss blames 'misinformation' for impact of war in Gaza on business", + "link": "https://news.sky.com/story/war-in-gaza-hits-mcdonalds-with-meaningful-business-impact-following-calls-for-boycotts-13042430", + "pubDate": "Fri, 05 Jan 2024 06:20:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-mcdonalds-fastfood_6412518.jpg?20240105062318", + "length": "0", + "type": "image/jpeg" + }, + "content": "The chief executive of McDonald's has revealed the company has suffered a \"meaningful business impact\" following controversy surrounding the Israel-Hamas war.", + "contentSnippet": "The chief executive of McDonald's has revealed the company has suffered a \"meaningful business impact\" following controversy surrounding the Israel-Hamas war.", + "guid": "https://news.sky.com/story/war-in-gaza-hits-mcdonalds-with-meaningful-business-impact-following-calls-for-boycotts-13042430", + "isoDate": "2024-01-05T06:20:00.000Z" + }, + { + "title": "Drone boat packed with explosives detonates in the Red Sea ", + "link": "https://news.sky.com/story/drone-boat-packed-with-explosives-detonates-in-the-red-sea-13042405", + "pubDate": "Fri, 05 Jan 2024 00:25:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-houthi-rebels_6412496.jpg?20240105002900", + "length": "0", + "type": "image/jpeg" + }, + "content": "A drone boat packed with explosives has detonated in the Red Sea.", + "contentSnippet": "A drone boat packed with explosives has detonated in the Red Sea.", + "guid": "https://news.sky.com/story/drone-boat-packed-with-explosives-detonates-in-the-red-sea-13042405", + "isoDate": "2024-01-05T00:25:00.000Z" + }, + { + "title": "Decades of confusion about Neptune's true colour ended with new images from space", + "link": "https://news.sky.com/story/new-images-reveal-neptune-and-uranus-are-not-the-colours-we-thought-they-were-13042392", + "pubDate": "Thu, 04 Jan 2024 22:32:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-uranus-planet_6412473.jpg?20240104225914", + "length": "0", + "type": "image/jpeg" + }, + "content": "New images have revealed Neptune and Uranus look more like each other than was previously thought.", + "contentSnippet": "New images have revealed Neptune and Uranus look more like each other than was previously thought.", + "guid": "https://news.sky.com/story/new-images-reveal-neptune-and-uranus-are-not-the-colours-we-thought-they-were-13042392", + "isoDate": "2024-01-04T22:32:00.000Z" + }, + { + "title": "Mother and child die in avalanche after temperatures fell to -20C and their skis were blown away", + "link": "https://news.sky.com/story/mother-and-child-die-in-avalanche-after-temperatures-fell-to-20c-and-their-skis-were-blown-away-13042340", + "pubDate": "Thu, 04 Jan 2024 19:20:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-finland-avalanche-lapland_6412438.png?20240104211318", + "length": "0", + "type": "image/png" + }, + "content": "A mother and her child have died after being caught in an avalanche in northern Finland, after temperatures dropped to -20C and the wind blew their skis away, police have said.", + "contentSnippet": "A mother and her child have died after being caught in an avalanche in northern Finland, after temperatures dropped to -20C and the wind blew their skis away, police have said.", + "guid": "https://news.sky.com/story/mother-and-child-die-in-avalanche-after-temperatures-fell-to-20c-and-their-skis-were-blown-away-13042340", + "isoDate": "2024-01-04T19:20:00.000Z" + }, + { + "title": "Pepsi faces supermarket boycott in four European countries", + "link": "https://news.sky.com/story/pepsi-faces-supermarket-boycott-in-four-european-countries-13042337", + "pubDate": "Thu, 04 Jan 2024 19:09:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/22/07/70x70/skynews-pepsi-pepsico-fizzy_5832305.jpg?20220712150612", + "length": "0", + "type": "image/jpeg" + }, + "content": "One of the largest supermarket chains in France is refusing to sell PepsiCo products on the grounds they have become too expensive to stock.", + "contentSnippet": "One of the largest supermarket chains in France is refusing to sell PepsiCo products on the grounds they have become too expensive to stock.", + "guid": "https://news.sky.com/story/pepsi-faces-supermarket-boycott-in-four-european-countries-13042337", + "isoDate": "2024-01-04T19:09:00.000Z" + }, + { + "title": "Pistorius freed from jail nearly 11 years after girlfriend's murder: What are his parole conditions?", + "link": "https://news.sky.com/story/oscar-pistorius-freed-on-parole-nearly-11-years-after-murdering-girlfriend-reeva-steenkamp-13042278", + "pubDate": "Thu, 04 Jan 2024 16:39:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/03/70x70/skynews-pistorius-reeva-steenkamp_6105625.jpg?20230331113753", + "length": "0", + "type": "image/jpeg" + }, + "content": "Oscar Pistorius has been freed on parole nearly 11 years after murdering his girlfriend in a case that made global headlines.", + "contentSnippet": "Oscar Pistorius has been freed on parole nearly 11 years after murdering his girlfriend in a case that made global headlines.", + "guid": "https://news.sky.com/story/oscar-pistorius-freed-on-parole-nearly-11-years-after-murdering-girlfriend-reeva-steenkamp-13042278", + "isoDate": "2024-01-04T16:39:00.000Z" + }, + { + "title": "US 'carries out drone strike' on base of Iranian-backed militia group in Iraq", + "link": "https://news.sky.com/story/us-carries-out-drone-strike-on-base-of-iranian-backed-militia-group-in-iraq-13042100", + "pubDate": "Thu, 04 Jan 2024 12:58:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-baghdad-iraq-drone-strike_6411995.jpg?20240104132249", + "length": "0", + "type": "image/jpeg" + }, + "content": "The US has reportedly carried out a drone strike on the base of an Iranian-backed militia in central Baghdad, killing a militia leader it blames for recent attacks on American personnel.", + "contentSnippet": "The US has reportedly carried out a drone strike on the base of an Iranian-backed militia in central Baghdad, killing a militia leader it blames for recent attacks on American personnel.", + "guid": "https://news.sky.com/story/us-carries-out-drone-strike-on-base-of-iranian-backed-militia-group-in-iraq-13042100", + "isoDate": "2024-01-04T12:58:00.000Z" + }, + { + "title": "'It cannot happen again': Official investigation into Boeing 737 MAX 9 under way", + "link": "https://news.sky.com/story/boeing-737-9-max-alaska-airlines-blowout-cannot-happen-again-official-investigation-into-jet-under-way-13046391", + "pubDate": "Thu, 11 Jan 2024 18:34:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-boeing-737-plane_6416744.jpg?20240110015932", + "length": "0", + "type": "image/jpeg" + }, + "content": "Regulators in the US have launched an official investigation into the Boeing 737 MAX 9 jet after a window and chunk of fuselage blew out of one in mid-air last week. ", + "contentSnippet": "Regulators in the US have launched an official investigation into the Boeing 737 MAX 9 jet after a window and chunk of fuselage blew out of one in mid-air last week.", + "guid": "https://news.sky.com/story/boeing-737-9-max-alaska-airlines-blowout-cannot-happen-again-official-investigation-into-jet-under-way-13046391", + "isoDate": "2024-01-11T18:34:00.000Z" + }, + { + "title": "South Africa accuses Israel of genocide as hearing at UN's top court begins", + "link": "https://news.sky.com/story/south-africa-accuses-israel-of-genocide-as-hearing-at-uns-top-court-begins-13046383", + "pubDate": "Thu, 11 Jan 2024 18:17:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-the-hague-israel_6418641.jpg?20240111184324", + "length": "0", + "type": "image/jpeg" + }, + "content": "South Africa has formally accused Israel of committing genocide against Palestinians in a hearing at the United Nations' International Court of Justice. ", + "contentSnippet": "South Africa has formally accused Israel of committing genocide against Palestinians in a hearing at the United Nations' International Court of Justice.", + "guid": "https://news.sky.com/story/south-africa-accuses-israel-of-genocide-as-hearing-at-uns-top-court-begins-13046383", + "isoDate": "2024-01-11T18:17:00.000Z" + }, + { + "title": "Microsoft briefly overtakes rival Apple as world's most valuable company", + "link": "https://news.sky.com/story/microsoft-briefly-overtakes-rival-apple-as-worlds-most-valuable-company-13046295", + "pubDate": "Thu, 11 Jan 2024 15:33:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/11/70x70/skynews-sam-altman-satya-nadella_6367160.jpg?20231120230241", + "length": "0", + "type": "image/jpeg" + }, + "content": "Two tech giants are battling it out for the title of the world's most valuable company. ", + "contentSnippet": "Two tech giants are battling it out for the title of the world's most valuable company.", + "guid": "https://news.sky.com/story/microsoft-briefly-overtakes-rival-apple-as-worlds-most-valuable-company-13046295", + "isoDate": "2024-01-11T15:33:00.000Z" + }, + { + "title": "Sky News launching new foreign affairs show The World with Yalda Hakim", + "link": "https://news.sky.com/story/sky-news-launching-new-foreign-affairs-show-the-world-with-yalda-hakim-13046103", + "pubDate": "Thu, 11 Jan 2024 11:06:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-yalda-hakim-sky-news_6418212.jpg?20240111114450", + "length": "0", + "type": "image/jpeg" + }, + "content": "Sky News is launching a new primetime foreign affairs programme hosted by lead world news presenter Yalda Hakim.", + "contentSnippet": "Sky News is launching a new primetime foreign affairs programme hosted by lead world news presenter Yalda Hakim.", + "guid": "https://news.sky.com/story/sky-news-launching-new-foreign-affairs-show-the-world-with-yalda-hakim-13046103", + "isoDate": "2024-01-11T11:06:00.000Z" + }, + { + "title": "Elderly couple found dead in home after heater's temperature reached 538C", + "link": "https://news.sky.com/story/south-carolina-couple-found-dead-in-home-after-heaters-temperature-reached-538c-13046052", + "pubDate": "Thu, 11 Jan 2024 10:29:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-google-maps-spartanburg_6418186.jpg?20240111113117", + "length": "0", + "type": "image/jpeg" + }, + "content": "An elderly couple have been found dead in their bedroom after their heater was estimated to have reached 538C (1,000F).", + "contentSnippet": "An elderly couple have been found dead in their bedroom after their heater was estimated to have reached 538C (1,000F).", + "guid": "https://news.sky.com/story/south-carolina-couple-found-dead-in-home-after-heaters-temperature-reached-538c-13046052", + "isoDate": "2024-01-11T10:29:00.000Z" + }, + { + "title": "British Airways pilot 'kidnapped and tortured' during stopover shopping trip", + "link": "https://news.sky.com/story/british-airways-pilot-kidnapped-and-tortured-during-stopover-shopping-trip-13046022", + "pubDate": "Thu, 11 Jan 2024 10:09:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-british-airways-pilot_6418073.jpg?20240111101308", + "length": "0", + "type": "image/jpeg" + }, + "content": "A pilot for British Airways was reportedly tortured after he was kidnapped while shopping during a stopover between flights in South Africa.", + "contentSnippet": "A pilot for British Airways was reportedly tortured after he was kidnapped while shopping during a stopover between flights in South Africa.", + "guid": "https://news.sky.com/story/british-airways-pilot-kidnapped-and-tortured-during-stopover-shopping-trip-13046022", + "isoDate": "2024-01-11T10:09:00.000Z" + }, + { + "title": "United Airlines flight makes emergency landing after 'open door light turns on'", + "link": "https://news.sky.com/story/united-airlines-flight-makes-emergency-landing-in-florida-after-open-door-light-turns-on-13046001", + "pubDate": "Thu, 11 Jan 2024 09:40:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-airbus-united-airlines_6418051.jpg?20240111095003", + "length": "0", + "type": "image/jpeg" + }, + "content": "A United Airlines flight from Sarasota, Florida, had to make an emergency landing in the same state shortly after take-off, reportedly due to an open door light illuminating in mid-air.", + "contentSnippet": "A United Airlines flight from Sarasota, Florida, had to make an emergency landing in the same state shortly after take-off, reportedly due to an open door light illuminating in mid-air.", + "guid": "https://news.sky.com/story/united-airlines-flight-makes-emergency-landing-in-florida-after-open-door-light-turns-on-13046001", + "isoDate": "2024-01-11T09:40:00.000Z" + }, + { + "title": "Iranian navy seizes oil tanker in Gulf of Oman", + "link": "https://news.sky.com/story/oil-tanker-in-the-gulf-of-oman-boarded-by-unauthorised-men-in-military-uniforms-13045921", + "pubDate": "Thu, 11 Jan 2024 07:29:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-st-nikolas-oil-tanker_6418460.jpg?20240111152016", + "length": "0", + "type": "image/jpeg" + }, + "content": "The Iranian navy has confirmed it has seized an oil tanker in the Gulf of Oman.", + "contentSnippet": "The Iranian navy has confirmed it has seized an oil tanker in the Gulf of Oman.", + "guid": "https://news.sky.com/story/oil-tanker-in-the-gulf-of-oman-boarded-by-unauthorised-men-in-military-uniforms-13045921", + "isoDate": "2024-01-11T07:29:00.000Z" + }, + { + "title": "Deserted streets in Ecuador as president declares 'state of war' on drug gangs", + "link": "https://news.sky.com/story/ecuador-streets-deserted-as-president-declares-state-of-war-on-drug-gangs-13045866", + "pubDate": "Thu, 11 Jan 2024 01:35:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-ecuador-violence_6417799.jpg?20240111021827", + "length": "0", + "type": "image/jpeg" + }, + "content": "The streets in Ecuador fell silent the day after hooded gunman invaded a live television broadcast, as President Daniel Noboa declared a \"state of war\" on drug-trafficking gangs.", + "contentSnippet": "The streets in Ecuador fell silent the day after hooded gunman invaded a live television broadcast, as President Daniel Noboa declared a \"state of war\" on drug-trafficking gangs.", + "guid": "https://news.sky.com/story/ecuador-streets-deserted-as-president-declares-state-of-war-on-drug-gangs-13045866", + "isoDate": "2024-01-11T01:35:00.000Z" + }, + { + "title": "British forces gear up to strike on Houthi rebels after Red Sea attacks", + "link": "https://news.sky.com/story/british-and-us-forces-appear-to-be-readying-to-strike-houthi-rebels-after-red-sea-attacks-13045626", + "pubDate": "Wed, 10 Jan 2024 18:43:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-hms-diamond-red-sea_6416913.jpg?20240110090003", + "length": "0", + "type": "image/jpeg" + }, + "content": "British and US forces appear to be gearing up to strike an Iranian-backed militant group in Yemen after the Houthi rebels defied a warning to stop attacking ships in the Red Sea.", + "contentSnippet": "British and US forces appear to be gearing up to strike an Iranian-backed militant group in Yemen after the Houthi rebels defied a warning to stop attacking ships in the Red Sea.", + "guid": "https://news.sky.com/story/british-and-us-forces-appear-to-be-readying-to-strike-houthi-rebels-after-red-sea-attacks-13045626", + "isoDate": "2024-01-10T18:43:00.000Z" + }, + { + "title": "Doomsday cult leader appears in Kenyan court charged with murdering 191 children", + "link": "https://news.sky.com/story/doomsday-cult-leader-paul-mackenzie-appears-in-kenyan-court-charged-with-murdering-191-children-13050799", + "pubDate": "Thu, 18 Jan 2024 12:00:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-paul-mackenzie-kenya_6425491.jpg?20240118112218", + "length": "0", + "type": "image/jpeg" + }, + "content": "A doomsday cult leader in Kenya has been charged with the murders of 191 children after their bodies were found in the forest where his church was based.", + "contentSnippet": "A doomsday cult leader in Kenya has been charged with the murders of 191 children after their bodies were found in the forest where his church was based.", + "guid": "https://news.sky.com/story/doomsday-cult-leader-paul-mackenzie-appears-in-kenyan-court-charged-with-murdering-191-children-13050799", + "isoDate": "2024-01-18T12:00:00.000Z" + }, + { + "title": "Raducanu out of Australian Open after struggling with sickness", + "link": "https://news.sky.com/story/emma-raducanu-out-of-australian-open-after-struggling-with-sickness-13050889", + "pubDate": "Thu, 18 Jan 2024 11:48:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-emma-raducanu-australian-open_6425542.jpg?20240118120411", + "length": "0", + "type": "image/jpeg" + }, + "content": "Emma Raducanu is out of the Australian Open after China's Yafan Wang beat her in three sets as the Briton struggled with sickness at the end of the match.", + "contentSnippet": "Emma Raducanu is out of the Australian Open after China's Yafan Wang beat her in three sets as the Briton struggled with sickness at the end of the match.", + "guid": "https://news.sky.com/story/emma-raducanu-out-of-australian-open-after-struggling-with-sickness-13050889", + "isoDate": "2024-01-18T11:48:00.000Z" + }, + { + "title": "Arnold Schwarzenegger detained at German airport over luxury watch", + "link": "https://news.sky.com/story/arnold-schwarzenegger-detained-at-munich-airport-over-luxury-watch-13050797", + "pubDate": "Thu, 18 Jan 2024 10:17:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-arnold-schwarzenegger_6425420.jpg?20240118102405", + "length": "0", + "type": "image/jpeg" + }, + "content": "Arnold Schwarzenegger was temporarily detained at Munich Airport for failing to declare a valuable luxury watch, according to German media.", + "contentSnippet": "Arnold Schwarzenegger was temporarily detained at Munich Airport for failing to declare a valuable luxury watch, according to German media.", + "guid": "https://news.sky.com/story/arnold-schwarzenegger-detained-at-munich-airport-over-luxury-watch-13050797", + "isoDate": "2024-01-18T10:17:00.000Z" + }, + { + "title": "Pakistan strikes Iran as both countries accuse the other of harbouring terrorists", + "link": "https://news.sky.com/story/pakistan-strikes-iran-as-both-countries-accuse-the-other-of-harbouring-terrorists-13050749", + "pubDate": "Thu, 18 Jan 2024 10:00:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-pakistan-iran_6425383.jpg?20240118093134", + "length": "0", + "type": "image/jpeg" + }, + "content": "Iran and Pakistan have accused each other of harbouring terrorists. ", + "contentSnippet": "Iran and Pakistan have accused each other of harbouring terrorists.", + "guid": "https://news.sky.com/story/pakistan-strikes-iran-as-both-countries-accuse-the-other-of-harbouring-terrorists-13050749", + "isoDate": "2024-01-18T10:00:00.000Z" + }, + { + "title": "Are British fish and chips under threat from Russia?", + "link": "https://news.sky.com/story/russia-could-rip-up-barents-sea-agreement-with-uk-posing-threat-to-cod-and-haddock-supplies-for-fish-and-chips-13050772", + "pubDate": "Thu, 18 Jan 2024 09:49:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/23/09/70x70/skynews-fish-and-chips-polystyrene_6303425.jpg?20230930151254", + "length": "0", + "type": "image/jpeg" + }, + "content": "British fish and chips could be under threat if Vladimir Putin's Russian government goes ahead with ripping up a longstanding agreement with the UK.", + "contentSnippet": "British fish and chips could be under threat if Vladimir Putin's Russian government goes ahead with ripping up a longstanding agreement with the UK.", + "guid": "https://news.sky.com/story/russia-could-rip-up-barents-sea-agreement-with-uk-posing-threat-to-cod-and-haddock-supplies-for-fish-and-chips-13050772", + "isoDate": "2024-01-18T09:49:00.000Z" + }, + { + "title": "'Nine killed' as Pakistan launches airstrikes on Iran", + "link": "https://news.sky.com/story/seven-killed-as-pakistan-launches-airstrikes-on-iran-13050660", + "pubDate": "Thu, 18 Jan 2024 06:14:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-pakistan-sistan-baluchestan_6425241.jpg?20240118064721", + "length": "0", + "type": "image/jpeg" + }, + "content": "At least nine people have been killed after Pakistan launched airstrikes on Iranian territory early this morning.", + "contentSnippet": "At least nine people have been killed after Pakistan launched airstrikes on Iranian territory early this morning.", + "guid": "https://news.sky.com/story/seven-killed-as-pakistan-launches-airstrikes-on-iran-13050660", + "isoDate": "2024-01-18T06:14:00.000Z" + }, + { + "title": "Prosecutor investigating Ecuador TV station attack shot dead", + "link": "https://news.sky.com/story/prosecutor-investigating-ecuador-tv-station-attack-shot-dead-13050642", + "pubDate": "Thu, 18 Jan 2024 04:34:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-ecuador-cesar-suarez_6425219.jpg?20240118045755", + "length": "0", + "type": "image/jpeg" + }, + "content": "A prosecutor investigating the storming of an Ecuadorian TV station by gang members has been shot dead.", + "contentSnippet": "A prosecutor investigating the storming of an Ecuadorian TV station by gang members has been shot dead.", + "guid": "https://news.sky.com/story/prosecutor-investigating-ecuador-tv-station-attack-shot-dead-13050642", + "isoDate": "2024-01-18T04:34:00.000Z" + }, + { + "title": "Explosion at fireworks factory kills 23 people", + "link": "https://news.sky.com/story/explosion-at-fireworks-factory-in-thailand-kills-23-people-13050330", + "pubDate": "Wed, 17 Jan 2024 14:42:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-thailand-fireworks_6424550.jpg?20240117131350", + "length": "0", + "type": "image/jpeg" + }, + "content": "An explosion at a fireworks factory in Thailand has killed at least 23 people, officials in the country say.", + "contentSnippet": "An explosion at a fireworks factory in Thailand has killed at least 23 people, officials in the country say.", + "guid": "https://news.sky.com/story/explosion-at-fireworks-factory-in-thailand-kills-23-people-13050330", + "isoDate": "2024-01-17T14:42:00.000Z" + }, + { + "title": "Police search Gibraltar car park for Royal Navy sailor missing since 1986", + "link": "https://news.sky.com/story/police-search-gibraltar-car-park-for-royal-navy-sailor-missing-since-1986-13050198", + "pubDate": "Wed, 17 Jan 2024 11:57:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-simon-parkes-gibraltar_6424323.jpg?20240117103047", + "length": "0", + "type": "image/jpeg" + }, + "content": "Detectives investigating the disappearance of a Royal Navy sailor more than 37 years ago are searching a car park in Gibraltar after receiving new information.", + "contentSnippet": "Detectives investigating the disappearance of a Royal Navy sailor more than 37 years ago are searching a car park in Gibraltar after receiving new information.", + "guid": "https://news.sky.com/story/police-search-gibraltar-car-park-for-royal-navy-sailor-missing-since-1986-13050198", + "isoDate": "2024-01-17T11:57:00.000Z" + }, + { + "title": "Could Israeli escalation with Hezbollah lead to wider Middle East war?", + "link": "https://news.sky.com/story/could-israel-escalation-with-hezbollah-lead-to-wider-war-in-the-middle-east-and-would-us-and-iran-be-dragged-in-13046311", + "pubDate": "Thu, 11 Jan 2024 16:04:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-shell-file-pic-israeli_6418469.jpg?20240111154431", + "length": "0", + "type": "image/jpeg" + }, + "content": "Since the beginning of 2024, an Israeli airstrike has killed a senior Hezbollah commander in Lebanon, the militant group has struck an Israeli base with explosive drones, and Israel has assassinated the deputy leader of Hamas in Beirut.", + "contentSnippet": "Since the beginning of 2024, an Israeli airstrike has killed a senior Hezbollah commander in Lebanon, the militant group has struck an Israeli base with explosive drones, and Israel has assassinated the deputy leader of Hamas in Beirut.", + "guid": "https://news.sky.com/story/could-israel-escalation-with-hezbollah-lead-to-wider-war-in-the-middle-east-and-would-us-and-iran-be-dragged-in-13046311", + "isoDate": "2024-01-11T16:04:00.000Z" + }, + { + "title": "Online predator who blackmailed women into carrying out acts of child abuse jailed", + "link": "https://news.sky.com/story/anthony-burns-online-predator-who-blackmailed-women-into-carrying-out-acts-of-child-abuse-jailed-for-24-years-13050176", + "pubDate": "Fri, 19 Jan 2024 14:00:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-anthony-burns_6424419.jpg?20240117125913", + "length": "0", + "type": "image/jpeg" + }, + "content": "An online predator who blackmailed dozens of women around the world into performing sexual and degrading acts, including child abuse, has been jailed for 24 years.", + "contentSnippet": "An online predator who blackmailed dozens of women around the world into performing sexual and degrading acts, including child abuse, has been jailed for 24 years.", + "guid": "https://news.sky.com/story/anthony-burns-online-predator-who-blackmailed-women-into-carrying-out-acts-of-child-abuse-jailed-for-24-years-13050176", + "isoDate": "2024-01-19T14:00:00.000Z" + }, + { + "title": "Teacher accused of poisoning husband's smoothie with toxic plant", + "link": "https://news.sky.com/story/teacher-accused-of-poisoning-husbands-smoothie-with-toxic-lily-of-the-valley-plant-in-us-13051587", + "pubDate": "Fri, 19 Jan 2024 12:55:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-sarah-scheffer-poisoned-husband_6426308.jpg?20240119090151", + "length": "0", + "type": "image/jpeg" + }, + "content": "A teacher in the US has been charged with attempted murder after allegedly being caught on hidden camera poisoning her husband's smoothie.", + "contentSnippet": "A teacher in the US has been charged with attempted murder after allegedly being caught on hidden camera poisoning her husband's smoothie.", + "guid": "https://news.sky.com/story/teacher-accused-of-poisoning-husbands-smoothie-with-toxic-lily-of-the-valley-plant-in-us-13051587", + "isoDate": "2024-01-19T12:55:00.000Z" + }, + { + "title": "Mexican marines capture leader of drug cartel that kidnapped and killed Americans", + "link": "https://news.sky.com/story/la-kena-mexican-marines-capture-leader-of-drug-cartel-that-kidnapped-and-killed-americans-13051454", + "pubDate": "Fri, 19 Jan 2024 09:21:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-kena-cyclone-vilano_6426316.png?20240119091859", + "length": "0", + "type": "image/png" + }, + "content": "One of the top leaders of a notorious Mexican drug cartel, which kidnapped four Americans and killed two of them last year, has been captured by marines.", + "contentSnippet": "One of the top leaders of a notorious Mexican drug cartel, which kidnapped four Americans and killed two of them last year, has been captured by marines.", + "guid": "https://news.sky.com/story/la-kena-mexican-marines-capture-leader-of-drug-cartel-that-kidnapped-and-killed-americans-13051454", + "isoDate": "2024-01-19T09:21:00.000Z" + }, + { + "title": "North Korea claims it has tested underwater nuclear attack drone", + "link": "https://news.sky.com/story/north-korea-claims-it-has-tested-underwater-nuclear-attack-drone-after-reckless-naval-exercise-by-us-south-korea-and-japan-13051444", + "pubDate": "Fri, 19 Jan 2024 09:04:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-north-korea-underwater_6426332.jpg?20240119094137", + "length": "0", + "type": "image/jpeg" + }, + "content": "North Korea says it has tested an underwater nuclear attack drone in response to a \"reckless\" and \"hostile\" combined naval exercise by the US, South Korea and Japan.", + "contentSnippet": "North Korea says it has tested an underwater nuclear attack drone in response to a \"reckless\" and \"hostile\" combined naval exercise by the US, South Korea and Japan.", + "guid": "https://news.sky.com/story/north-korea-claims-it-has-tested-underwater-nuclear-attack-drone-after-reckless-naval-exercise-by-us-south-korea-and-japan-13051444", + "isoDate": "2024-01-19T09:04:00.000Z" + }, + { + "title": "Home Office 'hires aircraft hangar' to practise forcing asylum seekers on to Rwanda flights", + "link": "https://news.sky.com/story/home-office-hires-aircraft-hangar-to-practise-forcing-asylum-seekers-on-to-rwanda-flights-13051396", + "pubDate": "Fri, 19 Jan 2024 07:46:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/22/09/70x70/skynews-plane-boris-johnson_5884141.jpg?20220902020708", + "length": "0", + "type": "image/jpeg" + }, + "content": "An aircraft hangar and fuselage have been hired by the Home Office for security officials to practise forcing asylum seekers on to deportation flights to Rwanda, it has been reported.", + "contentSnippet": "An aircraft hangar and fuselage have been hired by the Home Office for security officials to practise forcing asylum seekers on to deportation flights to Rwanda, it has been reported.", + "guid": "https://news.sky.com/story/home-office-hires-aircraft-hangar-to-practise-forcing-asylum-seekers-on-to-rwanda-flights-13051396", + "isoDate": "2024-01-19T07:46:00.000Z" + }, + { + "title": "City orders DNA tests for all dogs to trace and fine owners in poo crackdown", + "link": "https://news.sky.com/story/italian-province-orders-dna-tests-for-all-dogs-to-trace-and-fine-owners-in-poo-crackdown-13051387", + "pubDate": "Fri, 19 Jan 2024 07:29:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-dog-poo_6426283.jpg?20240119082911", + "length": "0", + "type": "image/jpeg" + }, + "content": "Dog owners in an Italian province are being forced to provide a sample of their pets' DNA as officials try to tackle the scourge of dog mess on the streets.", + "contentSnippet": "Dog owners in an Italian province are being forced to provide a sample of their pets' DNA as officials try to tackle the scourge of dog mess on the streets.", + "guid": "https://news.sky.com/story/italian-province-orders-dna-tests-for-all-dogs-to-trace-and-fine-owners-in-poo-crackdown-13051387", + "isoDate": "2024-01-19T07:29:00.000Z" + }, + { + "title": "Pregnant mum, her boyfriend and brother fatally electrocuted - but baby survives ice storm", + "link": "https://news.sky.com/story/three-die-from-electrocution-after-live-power-line-falls-on-car-in-oregon-ice-storm-13051354", + "pubDate": "Fri, 19 Jan 2024 04:33:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-oregon-weather-electrocuted_6426185.jpg?20240119050136", + "length": "0", + "type": "image/jpeg" + }, + "content": "Three people have died from electrocution after slipping on ice into a power line that fell on a car during a storm in Portland, Oregon.", + "contentSnippet": "Three people have died from electrocution after slipping on ice into a power line that fell on a car during a storm in Portland, Oregon.", + "guid": "https://news.sky.com/story/three-die-from-electrocution-after-live-power-line-falls-on-car-in-oregon-ice-storm-13051354", + "isoDate": "2024-01-19T04:33:00.000Z" + }, + { + "title": "'This truth I tell to our American friends' - Netanyahu rejects US calls for Palestinian state", + "link": "https://news.sky.com/story/benjamin-netanyahu-rejects-calls-from-us-for-palestinian-state-after-gaza-conflict-13051317", + "pubDate": "Thu, 18 Jan 2024 22:41:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-benjamin-netanyahu_6426243.jpg?20240119075433", + "length": "0", + "type": "image/jpeg" + }, + "content": "Israeli Prime Minister Benjamin Netanyahu has rejected US calls for the development of a Palestinian state, as he vowed the offensive in Gaza would press ahead for many months.", + "contentSnippet": "Israeli Prime Minister Benjamin Netanyahu has rejected US calls for the development of a Palestinian state, as he vowed the offensive in Gaza would press ahead for many months.", + "guid": "https://news.sky.com/story/benjamin-netanyahu-rejects-calls-from-us-for-palestinian-state-after-gaza-conflict-13051317", + "isoDate": "2024-01-18T22:41:00.000Z" + }, + { + "title": "Plane forced to turn back after 'drunk passenger bites flight attendant'", + "link": "https://news.sky.com/story/japan-drunk-passenger-bites-female-flight-attendant-as-plane-returns-to-airport-13051252", + "pubDate": "Thu, 18 Jan 2024 20:29:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-all-nippon-airways_6426051.jpg?20240118204637", + "length": "0", + "type": "image/jpeg" + }, + "content": "A plane has returned to its departure airport in Japan after a female member of the cabin crew was bitten by a drunk passenger, according to the airline.", + "contentSnippet": "A plane has returned to its departure airport in Japan after a female member of the cabin crew was bitten by a drunk passenger, according to the airline.", + "guid": "https://news.sky.com/story/japan-drunk-passenger-bites-female-flight-attendant-as-plane-returns-to-airport-13051252", + "isoDate": "2024-01-18T20:29:00.000Z" + }, + { + "title": "Man dies after explosion in Dublin city centre hostel", + "link": "https://news.sky.com/story/dublin-man-dies-after-explosion-in-city-centre-hostel-13051178", + "pubDate": "Thu, 18 Jan 2024 18:15:00 +0000", + "enclosure": { + "url": "https://e3.365dm.com/24/01/70x70/skynews-forensics-experts-explosion_6425958.jpg?20240118182036", + "length": "0", + "type": "image/jpeg" + }, + "content": "A man has died after an explosion in Dublin city centre.", + "contentSnippet": "A man has died after an explosion in Dublin city centre.", + "guid": "https://news.sky.com/story/dublin-man-dies-after-explosion-in-city-centre-hostel-13051178", + "isoDate": "2024-01-18T18:15:00.000Z" + }, + { + "title": "Israel carries out second ground raid in Gaza amid 'humanitarian catastrophe' warning", + "link": "https://news.sky.com/story/israel-carries-out-second-ground-raid-in-gaza-as-aid-trickles-in-amid-humanitarian-catastrophe-warning-12993867", + "pubDate": "Fri, 27 Oct 2023 12:16:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-israel-airstrikes-gaza_6337492.jpg?20231027130254", + "length": "0", + "type": "image/jpeg" + }, + "content": "Israeli forces backed by warplanes and drones have carried out a second ground raid in Gaza as aid trickles into the besieged territory amid warnings of a deepening \"humanitarian catastrophe\".", + "contentSnippet": "Israeli forces backed by warplanes and drones have carried out a second ground raid in Gaza as aid trickles into the besieged territory amid warnings of a deepening \"humanitarian catastrophe\".", + "guid": "https://news.sky.com/story/israel-carries-out-second-ground-raid-in-gaza-as-aid-trickles-in-amid-humanitarian-catastrophe-warning-12993867", + "isoDate": "2023-10-27T11:16:00.000Z" + }, + { + "title": "Search called off for crew members missing after British cargo ship sank off German coast", + "link": "https://news.sky.com/story/search-called-off-for-crew-members-missing-after-british-cargo-ship-sank-off-coast-of-germany-12993853", + "pubDate": "Fri, 27 Oct 2023 12:03:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-rescue-ships-verity_6337426.jpg?20231027121432", + "length": "0", + "type": "image/jpeg" + }, + "content": "A search for four people missing after two ships crashed off the coast of Germany has been called off.", + "contentSnippet": "A search for four people missing after two ships crashed off the coast of Germany has been called off.", + "guid": "https://news.sky.com/story/search-called-off-for-crew-members-missing-after-british-cargo-ship-sank-off-coast-of-germany-12993853", + "isoDate": "2023-10-27T11:03:00.000Z" + }, + { + "title": "Italian mum wins court order to evict her 40 and 42-year-old sons", + "link": "https://news.sky.com/story/italian-mum-wins-court-order-to-evict-her-sons-aged-40-and-42-12993809", + "pubDate": "Fri, 27 Oct 2023 10:37:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-pavia-italy_6337312.jpg?20231027105759", + "length": "0", + "type": "image/jpeg" + }, + "content": "An Italian mum has won a court battle to evict her two sons - aged 40 and 42 - from her home in the northern city of Pavia, according to local media.", + "contentSnippet": "An Italian mum has won a court battle to evict her two sons - aged 40 and 42 - from her home in the northern city of Pavia, according to local media.", + "guid": "https://news.sky.com/story/italian-mum-wins-court-order-to-evict-her-sons-aged-40-and-42-12993809", + "isoDate": "2023-10-27T09:37:00.000Z" + }, + { + "title": "Before and after images as deadly hurricane leaves multibillion-pound path of destruction in Mexico", + "link": "https://news.sky.com/story/hurricane-otis-deadly-165mph-storm-carves-multibillion-pound-path-of-destruction-through-acapulco-in-mexico-12993784", + "pubDate": "Fri, 27 Oct 2023 10:18:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-hurricane-otis-acapulco_6337275.jpg?20231027103439", + "length": "0", + "type": "image/jpeg" + }, + "content": "A swathe of destruction left after one of the most powerful storms ever to hit Mexico battered the beach resort of Acapulco, killing at least 27 people, has been laid bare by aerial images.", + "contentSnippet": "A swathe of destruction left after one of the most powerful storms ever to hit Mexico battered the beach resort of Acapulco, killing at least 27 people, has been laid bare by aerial images.", + "guid": "https://news.sky.com/story/hurricane-otis-deadly-165mph-storm-carves-multibillion-pound-path-of-destruction-through-acapulco-in-mexico-12993784", + "isoDate": "2023-10-27T09:18:00.000Z" + }, + { + "title": "China's ex-deputy leader sidelined by Xi dies from heart attack", + "link": "https://news.sky.com/story/chinas-former-deputy-leader-li-keqiang-suffers-fatal-heart-attack-12993676", + "pubDate": "Fri, 27 Oct 2023 07:27:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-keqiang-china-beijing_6337115.jpg?20231027074753", + "length": "0", + "type": "image/jpeg" + }, + "content": "China's former deputy leader Li Keqiang has died after suffering a heart attack.", + "contentSnippet": "China's former deputy leader Li Keqiang has died after suffering a heart attack.", + "guid": "https://news.sky.com/story/chinas-former-deputy-leader-li-keqiang-suffers-fatal-heart-attack-12993676", + "isoDate": "2023-10-27T06:27:00.000Z" + }, + { + "title": "US launches retaliatory strikes on Iran-linked munition storage sites in Syria", + "link": "https://news.sky.com/story/us-launches-retaliatory-strikes-on-iran-linked-munition-storage-sites-in-syria-12993637", + "pubDate": "Fri, 27 Oct 2023 04:18:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-syria-us-iran_6337027.jpg?20231027043016", + "length": "0", + "type": "image/jpeg" + }, + "content": "The US military has launched retaliatory airstrikes on two locations in eastern Syria linked to Iran's Revolutionary Guard Corps, the Pentagon has said. ", + "contentSnippet": "The US military has launched retaliatory airstrikes on two locations in eastern Syria linked to Iran's Revolutionary Guard Corps, the Pentagon has said.", + "guid": "https://news.sky.com/story/us-launches-retaliatory-strikes-on-iran-linked-munition-storage-sites-in-syria-12993637", + "isoDate": "2023-10-27T03:18:00.000Z" + }, + { + "title": "Satellites show Israel intensifying bombing of southern Gaza", + "link": "https://news.sky.com/story/gaza-war-satellite-data-shows-israel-intensifying-bombing-of-south-12993277", + "pubDate": "Thu, 26 Oct 2023 21:00:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-gaza-d-and-f-satellite_6336645.jpg?20231026173849", + "length": "0", + "type": "image/jpeg" + }, + "content": "For three weeks, Israel has been bombing the Gaza Strip as part of its war with Hamas.", + "contentSnippet": "For three weeks, Israel has been bombing the Gaza Strip as part of its war with Hamas.", + "guid": "https://news.sky.com/story/gaza-war-satellite-data-shows-israel-intensifying-bombing-of-south-12993277", + "isoDate": "2023-10-26T20:00:00.000Z" + }, + { + "title": "Border Force teams set up in Egypt to help British citizens - if they can get out of Gaza", + "link": "https://news.sky.com/story/british-citizens-escaping-gaza-will-receive-welfare-support-without-delay-12993508", + "pubDate": "Thu, 26 Oct 2023 20:47:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-palestinians-khan-younis_6336282.jpg?20231026123220", + "length": "0", + "type": "image/jpeg" + }, + "content": "Border Force teams are \"prepared and ready\" to evacuate British citizens trapped in Gaza.", + "contentSnippet": "Border Force teams are \"prepared and ready\" to evacuate British citizens trapped in Gaza.", + "guid": "https://news.sky.com/story/british-citizens-escaping-gaza-will-receive-welfare-support-without-delay-12993508", + "isoDate": "2023-10-26T19:47:00.000Z" + }, + { + "title": "All civilian hostages could be freed from Gaza in days if fighting paused, negotiators say", + "link": "https://news.sky.com/story/israel-hamas-war-all-civilian-hostages-could-be-freed-from-gaza-in-days-if-fighting-paused-qatari-negotiators-say-12993168", + "pubDate": "Thu, 26 Oct 2023 14:58:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-handshake-hostage-hamas_6334086.jpg?20231024172924", + "length": "0", + "type": "image/jpeg" + }, + "content": "All the civilians being held hostage in Gaza can be released in days, if there is a pause in the fighting, the Qataris leading negotiations say.", + "contentSnippet": "All the civilians being held hostage in Gaza can be released in days, if there is a pause in the fighting, the Qataris leading negotiations say.", + "guid": "https://news.sky.com/story/israel-hamas-war-all-civilian-hostages-could-be-freed-from-gaza-in-days-if-fighting-paused-qatari-negotiators-say-12993168", + "isoDate": "2023-10-26T13:58:00.000Z" + }, + { + "title": "Dozens dead after 'catastrophic' 165mph hurricane in Mexico", + "link": "https://news.sky.com/story/hurricane-otis-27-dead-and-four-missing-as-165mph-winds-hit-mexico-12992866", + "pubDate": "Thu, 26 Oct 2023 06:15:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-hurricane-mexico_6335962.jpg?20231026074916", + "length": "0", + "type": "image/jpeg" + }, + "content": "At least 27 people have died and four are missing after Hurricane Otis made landfall in Mexico, authorities have said.", + "contentSnippet": "At least 27 people have died and four are missing after Hurricane Otis made landfall in Mexico, authorities have said.", + "guid": "https://news.sky.com/story/hurricane-otis-27-dead-and-four-missing-as-165mph-winds-hit-mexico-12992866", + "isoDate": "2023-10-26T05:15:00.000Z" + }, + { + "title": "Ex-navy men sentenced to death on mysterious espionage charges", + "link": "https://news.sky.com/story/former-indian-navy-men-sentenced-to-death-in-qatar-on-mysterious-espionage-charges-12993891", + "pubDate": "Fri, 27 Oct 2023 12:52:00 +0100", + "enclosure": { + "url": "https://e3.365dm.com/23/10/70x70/skynews-india-navy-ship_6337571.jpg?20231027133722", + "length": "0", + "type": "image/jpeg" + }, + "content": "Eight former Indian navy men have been sentenced to death in Qatar on espionage charges.", + "contentSnippet": "Eight former Indian navy men have been sentenced to death in Qatar on espionage charges.", + "guid": "https://news.sky.com/story/former-indian-navy-men-sentenced-to-death-in-qatar-on-mysterious-espionage-charges-12993891", + "isoDate": "2023-10-27T11:52:00.000Z" + } +] diff --git a/intro to react/newData/oldNews/f08313c8cc0cadf226a696aca3c65b4eafba6cfea5d532e83cc7a99c6d04c61e.json b/intro to react/newData/oldNews/f08313c8cc0cadf226a696aca3c65b4eafba6cfea5d532e83cc7a99c6d04c61e.json index 9ad01a7..8639adb 100644 --- a/intro to react/newData/oldNews/f08313c8cc0cadf226a696aca3c65b4eafba6cfea5d532e83cc7a99c6d04c61e.json +++ b/intro to react/newData/oldNews/f08313c8cc0cadf226a696aca3c65b4eafba6cfea5d532e83cc7a99c6d04c61e.json @@ -1,16566 +1,13720 @@ [ - { - "creator": "Jonathan Gorrie", - "date": "2023-11-30T23:01:11+00:00", - "title": "Liverpool 4-0 LASK: Reds win Europa League group as Mohamed Salah hits 199 goals", - "link": "https://www.standard.co.uk/sport/football/liverpool-fc-vs-lask-europa-league-result-2023-b1124069.html", - "pubDate": "Thu, 30 Nov 2023 23:01:11 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-11-30T23:01:11+00:00", - "content": "

Reds win group with one game to spare

", - "contentSnippet": "Reds win group with one game to spare", - "guid": "b1124069", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T23:01:11.000Z" - }, - { - "creator": "Pa Reporters", - "date": "2023-11-30T22:58:41+00:00", - "title": "Mayor calls for Uefa action after police injured at Aston Villa match", - "link": "https://www.standard.co.uk/news/uk/villa-park-mayor-aston-villa-uefa-west-midlands-police-b1124073.html", - "pubDate": "Thu, 30 Nov 2023 22:58:41 GMT", - "dc:creator": "Pa Reporters", - "dc:date": "2023-11-30T22:58:41+00:00", - "content": "Objects were thrown at police as the visiting fans were held in a coach park near the ground.", - "contentSnippet": "Objects were thrown at police as the visiting fans were held in a coach park near the ground.", - "guid": "b1124073", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T22:58:41.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-11-30T22:58:06+00:00", - "title": "Liverpool vs LASK LIVE! Europa League result, match stream and latest updates today", - "link": "https://www.standard.co.uk/sport/football/liverpool-fc-vs-lask-live-stream-europa-league-2023-latest-score-result-watch-tv-team-news-b1124003.html", - "pubDate": "Thu, 30 Nov 2023 22:58:06 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-11-30T22:58:06+00:00", - "content": "

Reds win group after 4-0 victory

", - "contentSnippet": "Reds win group after 4-0 victory", - "guid": "b1124003", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:58:06.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-11-30T22:54:15+00:00", - "title": "Jurgen Klopp 'did not like' aspects of Liverpool's Europa League win over LASK", - "link": "https://www.standard.co.uk/sport/football/klopp-liverpool-fc-lask-europa-league-2023-b1124077.html", - "pubDate": "Thu, 30 Nov 2023 22:54:15 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-11-30T22:54:15+00:00", - "content": "

Reds seal progress to knockout stages as group winners

", - "contentSnippet": "Reds seal progress to knockout stages as group winners", - "guid": "b1124077", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:54:15.000Z" - }, - { - "creator": "Danielle Desouza", - "date": "2023-11-30T22:44:32+00:00", - "title": "Charlotte Church \u2018couldn\u2019t have been prouder\u2019 of young carers\u2019 choir performance", - "link": "https://www.standard.co.uk/news/uk/charlotte-church-kate-thornton-wales-larry-lamb-emma-thompson-b1124076.html", - "pubDate": "Thu, 30 Nov 2023 22:44:32 GMT", - "dc:creator": "Danielle Desouza", - "dc:date": "2023-11-30T22:44:32+00:00", - "content": "The performance took place on November 30, as part of Action for Children\u2019s Starry Night gala.", - "contentSnippet": "The performance took place on November 30, as part of Action for Children\u2019s Starry Night gala.", - "guid": "b1124076", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T22:44:32.000Z" - }, - { - "creator": "Patrick Daly", - "date": "2023-11-30T22:40:32+00:00", - "title": "A Labour government would consider new powers to prevent \u2018banking deserts\u2019", - "link": "https://www.standard.co.uk/business/money/a-labour-government-would-consider-new-powers-to-prevent-banking-deserts-b1124071.html", - "pubDate": "Thu, 30 Nov 2023 22:40:32 GMT", - "dc:creator": "Patrick Daly", - "dc:date": "2023-11-30T22:40:32+00:00", - "content": "Shadow chancellor Rachel Reeves said her party wants to ensure \u2018every community has access to high street banking services\u2019.", - "contentSnippet": "Shadow chancellor Rachel Reeves said her party wants to ensure \u2018every community has access to high street banking services\u2019.", - "guid": "b1124071", - "categories": [ - "Money", - "Business" - ], - "isoDate": "2023-11-30T22:40:32.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2023-11-30T22:33:41+00:00", - "title": "I\u2019m A Celeb\u2019s Sam Thompson opens up about ADHD diagnosis and wanting to be a dad", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/sam-thompson-adhd-eyes-josie-gibson-sam-b1124075.html", - "pubDate": "Thu, 30 Nov 2023 22:33:41 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2023-11-30T22:33:41+00:00", - "content": "The former Made In Chelsea star said that he remembers \u2018crying\u2019 into his textbook at school because he could not understand the words.", - "contentSnippet": "The former Made In Chelsea star said that he remembers \u2018crying\u2019 into his textbook at school because he could not understand the words.", - "guid": "b1124075", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-11-30T22:33:41.000Z" - }, - { - "creator": "Martin Robinson", - "date": "2023-11-30T22:32:38+00:00", - "title": "Shane MacGowan obituary: his life reminds us that chaos and fearlessness can create beauty", - "link": "https://www.standard.co.uk/culture/music/shane-macgowan-obituary-died-fairytale-of-new-york-b1124016.html", - "pubDate": "Thu, 30 Nov 2023 22:32:38 GMT", - "dc:creator": "Martin Robinson", - "dc:date": "2023-11-30T22:32:38+00:00", - "content": "

The musician has died at the age of 65

", - "contentSnippet": "The musician has died at the age of 65", - "guid": "b1124016", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-11-30T22:32:38.000Z" - }, - { - "creator": "Simon Collings", - "date": "2023-11-30T22:32:09+00:00", - "title": "Arsenal confident of adding Ben White to haul of new contracts", - "link": "https://www.standard.co.uk/sport/football/ben-white-contract-arsenal-fc-news-2023-b1124025.html", - "pubDate": "Thu, 30 Nov 2023 22:32:09 GMT", - "dc:creator": "Simon Collings", - "dc:date": "2023-11-30T22:32:09+00:00", - "content": "

Spate of extensions handed out over past year to cement young core of players

", - "contentSnippet": "Spate of extensions handed out over past year to cement young core of players", - "guid": "b1124025", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:32:09.000Z" - }, - { - "creator": "Sophie Wingate", - "date": "2023-11-30T22:30:41+00:00", - "title": "Rishi Sunak calls for \u2018era of action\u2019 at Cop28 climate summit", - "link": "https://www.standard.co.uk/news/politics/cop28-prime-minister-cameron-keir-starmer-labour-b1124074.html", - "pubDate": "Thu, 30 Nov 2023 22:30:41 GMT", - "dc:creator": "Sophie Wingate", - "dc:date": "2023-11-30T22:30:41+00:00", - "content": "The Prime Minister will commit \u00a31.6bn in UK funding for climate projects at the talks in Dubai.", - "contentSnippet": "The Prime Minister will commit \u00a31.6bn in UK funding for climate projects at the talks in Dubai.", - "guid": "b1124074", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T22:30:41.000Z" - }, - { - "creator": "David Hughes", - "date": "2023-11-30T22:30:00+00:00", - "title": "Starmer: Transition to net zero can \u2018turbo-charge growth\u2019", - "link": "https://www.standard.co.uk/business/business-news/starmer-transition-to-net-zero-can-turbocharge-growth-b1124072.html", - "pubDate": "Thu, 30 Nov 2023 22:30:00 GMT", - "dc:creator": "David Hughes", - "dc:date": "2023-11-30T22:30:00+00:00", - "content": "Labour leader Sir Keir Starmer is in Dubai for the Cop28 climate summit.", - "contentSnippet": "Labour leader Sir Keir Starmer is in Dubai for the Cop28 climate summit.", - "guid": "b1124072", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-11-30T22:30:00.000Z" - }, - { - "creator": "Matt Verri", - "date": "2023-11-30T22:20:24+00:00", - "title": "When is Euro 2024 draw? Date, start time, confirmed pots and qualified teams", - "link": "https://www.standard.co.uk/sport/football/when-is-euro-2024-draw-date-start-time-confirmed-pots-qualified-teams-b1114413.html", - "pubDate": "Thu, 30 Nov 2023 22:20:24 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2023-11-30T22:20:24+00:00", - "content": "

A total of 21 teams have now officially qualified for next summer's action in Germany, with a further three to be confirmed after the March play-offs

", - "contentSnippet": "A total of 21 teams have now officially qualified for next summer's action in Germany, with a further three to be confirmed after the March play-offs", - "guid": "b1114413", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:20:24.000Z" - }, - { - "creator": "Standard Sport", - "date": "2023-11-30T22:19:33+00:00", - "title": "Premier League table 2023-24: Latest standings, fixtures and results for matchday 14", - "link": "https://www.standard.co.uk/sport/football/premier-league-table-2023-24-standings-fixtures-results-live-scores-matchday-14-b1124056.html", - "pubDate": "Thu, 30 Nov 2023 22:19:33 GMT", - "dc:creator": "Standard Sport", - "dc:date": "2023-11-30T22:19:33+00:00", - "content": "

Title rivals all play at home this weekend

", - "contentSnippet": "Title rivals all play at home this weekend", - "guid": "b1124056", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:19:33.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-11-30T22:19:13+00:00", - "title": "Arsenal vs Wolves: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/arsenal-fc-vs-wolves-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1123969.html", - "pubDate": "Thu, 30 Nov 2023 22:19:13 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-11-30T22:19:13+00:00", - "content": "

League leaders out for fifth win in a row over Molineux club

", - "contentSnippet": "League leaders out for fifth win in a row over Molineux club", - "guid": "b1123969", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:19:13.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-11-30T22:18:39+00:00", - "title": "Manchester United XI vs Newcastle: Confirmed team news, predicted lineup and injury latest", - "link": "https://www.standard.co.uk/sport/football/man-united-xi-vs-newcastle-confirmed-team-news-predicted-lineup-injury-latest-premier-league-2023-b1124005.html", - "pubDate": "Thu, 30 Nov 2023 22:18:39 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-11-30T22:18:39+00:00", - "content": "

Marcus Rashford back from suspension for trip to St James' Park

", - "contentSnippet": "Marcus Rashford back from suspension for trip to St James' Park", - "guid": "b1124005", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:18:39.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-11-30T22:18:05+00:00", - "title": "Newcastle vs Manchester United: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/newcastle-vs-man-utd-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1123975.html", - "pubDate": "Thu, 30 Nov 2023 22:18:05 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-11-30T22:18:05+00:00", - "content": "

Sixth plays seventh on Tyneside after disappointing European nights for both

", - "contentSnippet": "Sixth plays seventh on Tyneside after disappointing European nights for both", - "guid": "b1123975", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:18:05.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-11-30T22:17:42+00:00", - "title": "When is Europa League draw? Date, time, teams qualified, play-off seeding and TV channel", - "link": "https://www.standard.co.uk/sport/football/europa-league-draw-2023-date-time-teams-qualified-seeding-tv-channel-live-stream-play-off-last-16-b1123957.html", - "pubDate": "Thu, 30 Nov 2023 22:17:42 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-11-30T22:17:42+00:00", - "content": "

Champions League teams to enter competition for play-off round

", - "contentSnippet": "Champions League teams to enter competition for play-off round", - "guid": "b1123957", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:17:42.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-11-30T22:13:21+00:00", - "title": "Man City XI vs Tottenham: Confirmed team news, predicted lineup and injury latest for Premier League game", - "link": "https://www.standard.co.uk/sport/football/man-city-xi-vs-tottenham-confirmed-team-news-predicted-lineup-injury-latest-premier-league-2023-b1124017.html", - "pubDate": "Thu, 30 Nov 2023 22:13:21 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-11-30T22:13:21+00:00", - "content": "

Pep Guardiola expected to restore big name players for Sunday's clash

", - "contentSnippet": "Pep Guardiola expected to restore big name players for Sunday's clash", - "guid": "b1124017", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:13:21.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-11-30T22:13:01+00:00", - "title": "Man City vs Tottenham: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/man-city-vs-tottenham-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1123999.html", - "pubDate": "Thu, 30 Nov 2023 22:13:01 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-11-30T22:13:01+00:00", - "content": "

Spurs face toughest trip of season amid major downturn in results

", - "contentSnippet": "Spurs face toughest trip of season amid major downturn in results", - "guid": "b1123999", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:13:01.000Z" - }, - { - "creator": "Standard Sport", - "date": "2023-11-30T22:02:43+00:00", - "title": "Europa League tables 2023-24: Group standings, fixture and results for matchday 5 as Liverpool win group", - "link": "https://www.standard.co.uk/sport/football/europa-league-tables-2023-24-standings-fixtures-results-live-scores-matchday-5-b1123940.html", - "pubDate": "Thu, 30 Nov 2023 22:02:43 GMT", - "dc:creator": "Standard Sport", - "dc:date": "2023-11-30T22:02:43+00:00", - "content": "

Penultimate round of games could send multiple teams through

", - "contentSnippet": "Penultimate round of games could send multiple teams through", - "guid": "b1123940", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T22:02:43.000Z" - }, - { - "creator": "Pa Reporter", - "date": "2023-11-30T21:22:56+00:00", - "title": "Three police officers injured ahead of Aston Villa match with Legia Warsaw", - "link": "https://www.standard.co.uk/news/uk/aston-villa-villa-park-legia-warsaw-europa-conference-league-football-b1124062.html", - "pubDate": "Thu, 30 Nov 2023 21:22:56 GMT", - "dc:creator": "Pa Reporter", - "dc:date": "2023-11-30T21:22:56+00:00", - "content": "Objects were thrown at police as the visiting fans were held in the coach park near the ground.", - "contentSnippet": "Objects were thrown at police as the visiting fans were held in the coach park near the ground.", - "guid": "b1124062", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T21:22:56.000Z" - }, - { - "creator": "Robert Dex", - "date": "2023-11-30T21:17:53+00:00", - "title": "More hostages freed by Hamas to return to Israel", - "link": "https://www.standard.co.uk/news/world/hostages-freed-hamas-israel-gaza-b1124068.html", - "pubDate": "Thu, 30 Nov 2023 21:17:53 GMT", - "dc:creator": "Robert Dex", - "dc:date": "2023-11-30T21:17:53+00:00", - "content": "

The latest release follows that of two women freed hours earlier

", - "contentSnippet": "The latest release follows that of two women freed hours earlier", - "guid": "b1124068", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-11-30T21:17:53.000Z" - }, - { - "creator": "Nina Lloyd", - "date": "2023-11-30T21:02:56+00:00", - "title": "Minister dubs Falklands \u2018an important part of the British family\u2019 ahead of visit", - "link": "https://www.standard.co.uk/news/politics/falklands-british-foreign-office-grant-shapps-buenos-aires-b1124030.html", - "pubDate": "Thu, 30 Nov 2023 21:02:56 GMT", - "dc:creator": "Nina Lloyd", - "dc:date": "2023-11-30T21:02:56+00:00", - "content": "David Rutley is arriving in Stanley later on Thursday, the Foreign Office said.", - "contentSnippet": "David Rutley is arriving in Stanley later on Thursday, the Foreign Office said.", - "guid": "b1124030", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T21:02:56.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2023-11-30T21:00:13+00:00", - "title": "Ncuti Gatwa in new photos of Doctor Who Christmas special with Davina McCall", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/davina-mccall-ncuti-gatwa-big-brother-catherine-tate-barbie-b1124067.html", - "pubDate": "Thu, 30 Nov 2023 21:00:13 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2023-11-30T21:00:13+00:00", - "content": "Former Big Brother host Davina McCall will play herself in the festive episode.", - "contentSnippet": "Former Big Brother host Davina McCall will play herself in the festive episode.", - "guid": "b1124067", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-11-30T21:00:13.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2023-11-30T20:59:45+00:00", - "title": "Ellie Taylor announces arrival of baby as she misses Royal Variety Performance", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/princess-prince-wales-instagram-rick-astley-b1124066.html", - "pubDate": "Thu, 30 Nov 2023 20:59:45 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2023-11-30T20:59:45+00:00", - "content": "The Prince and Princess of Wales were among the guests at the annual charity event.", - "contentSnippet": "The Prince and Princess of Wales were among the guests at the annual charity event.", - "guid": "b1124066", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-11-30T20:59:45.000Z" - }, - { - "creator": "Patrick Daly", - "date": "2023-11-30T20:52:00+00:00", - "title": "Sue Gray\u2019s son selected as Labour candidate to become MP at next election", - "link": "https://www.standard.co.uk/news/politics/sue-gray-keir-starmer-london-penge-mps-b1124064.html", - "pubDate": "Thu, 30 Nov 2023 20:52:00 GMT", - "dc:creator": "Patrick Daly", - "dc:date": "2023-11-30T20:52:00+00:00", - "content": "Liam Conlon will contest the newly created seat of Beckenham and Penge in south-east London.", - "contentSnippet": "Liam Conlon will contest the newly created seat of Beckenham and Penge in south-east London.", - "guid": "b1124064", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T20:52:00.000Z" - }, - { - "creator": "Patrick Daly", - "date": "2023-11-30T20:51:20+00:00", - "title": "Culture Secretary intervenes in Abu Dhabi-backed takeover of Daily Telegraph", - "link": "https://www.standard.co.uk/business/business-news/culture-secretary-intervenes-in-abu-dhabibacked-takeover-of-daily-telegraph-b1124046.html", - "pubDate": "Thu, 30 Nov 2023 20:51:20 GMT", - "dc:creator": "Patrick Daly", - "dc:date": "2023-11-30T20:51:20+00:00", - "content": "Lucy Frazer triggered a Public Interest Intervention Notice that will see the communications watchdog look into the deal\u2019s impact on press freedom.", - "contentSnippet": "Lucy Frazer triggered a Public Interest Intervention Notice that will see the communications watchdog look into the deal\u2019s impact on press freedom.", - "guid": "b1124046", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-11-30T20:51:20.000Z" - }, - { - "creator": "Tony Jones", - "date": "2023-11-30T20:50:32+00:00", - "title": "The Queen hails key infantry regiment at awards dinner", - "link": "https://www.standard.co.uk/news/uk/queen-british-city-of-london-duchess-europe-b1124065.html", - "pubDate": "Thu, 30 Nov 2023 20:50:32 GMT", - "dc:creator": "Tony Jones", - "dc:date": "2023-11-30T20:50:32+00:00", - "content": "Camilla is Colonel-in-Chief of The Rifles.", - "contentSnippet": "Camilla is Colonel-in-Chief of The Rifles.", - "guid": "b1124065", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T20:50:32.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-11-30T20:38:27+00:00", - "title": "Imelda May thanks the late Shane MacGowan for sharing his \u2018glorious talents\u2019", - "link": "https://www.standard.co.uk/culture/music/hospital-nick-cave-carol-vorderman-billy-bragg-dublin-b1124063.html", - "pubDate": "Thu, 30 Nov 2023 20:38:27 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-11-30T20:38:27+00:00", - "content": "A number of celebrities have paid tribute to the late Irish singer, best known for hit festive song Fairytale Of New York.", - "contentSnippet": "A number of celebrities have paid tribute to the late Irish singer, best known for hit festive song Fairytale Of New York.", - "guid": "b1124063", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-11-30T20:38:27.000Z" - }, - { - "creator": "Pol Allingham", - "date": "2023-11-30T20:15:01+00:00", - "title": "Prince William and Kate Middleton brush off Omid Scobie drama for Royal Variety Performance", - "link": "https://www.standard.co.uk/news/uk/prince-william-kate-middleton-omid-scobie-royal-variety-performance-b1124060.html", - "pubDate": "Thu, 30 Nov 2023 20:15:01 GMT", - "dc:creator": "Pol Allingham", - "dc:date": "2023-11-30T20:15:01+00:00", - "content": "

The event is taking place amid controversy around Omid Scobie's new book Endgamem

", - "contentSnippet": "The event is taking place amid controversy around Omid Scobie's new book Endgamem", - "guid": "b1124060", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T20:15:01.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-11-30T20:01:56+00:00", - "title": "West Ham players ratings vs Backa Topola: Maxwel Cornet comes good as Ben Johnson and Aaron Cresswell labour", - "link": "https://www.standard.co.uk/sport/football/west-ham-players-ratings-vs-backa-topola-cornet-johnson-cresswell-b1124040.html", - "pubDate": "Thu, 30 Nov 2023 20:01:56 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-11-30T20:01:56+00:00", - "content": "

Last-minute Tomas Soucek winner secures qualification to knockout rounds

", - "contentSnippet": "Last-minute Tomas Soucek winner secures qualification to knockout rounds", - "guid": "b1124040", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T20:01:56.000Z" - }, - { - "creator": "Jordan King", - "date": "2023-11-30T19:54:18+00:00", - "title": "Dutch translator insists Omid Scobie did name two royals 'who asked about Archie's skin colour'", - "link": "https://www.standard.co.uk/news/uk/omid-scobie-endgame-royal-racists-prince-harry-meghan-markle-archie-skin-colour-b1124050.html", - "pubDate": "Thu, 30 Nov 2023 19:54:18 GMT", - "dc:creator": "Jordan King", - "dc:date": "2023-11-30T19:54:18+00:00", - "content": "

'I translate what is in front of me - the names of the royals were there in black and white'

", - "contentSnippet": "'I translate what is in front of me - the names of the royals were there in black and white'", - "guid": "b1124050", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T19:54:18.000Z" - }, - { - "creator": "Ewan Kirk", - "date": "2023-11-30T19:51:25+00:00", - "title": "Why Jeremy Hunt should stop banging on about AI", - "link": "https://www.standard.co.uk/business/jeremy-hunt-should-stop-banging-on-about-ai-b1124059.html", - "pubDate": "Thu, 30 Nov 2023 19:51:25 GMT", - "dc:creator": "Ewan Kirk", - "dc:date": "2023-11-30T19:51:25+00:00", - "content": "

City Voices: The Chancellor should be listening to tech startups, university spinouts, researchers, and graduates from across the tech sector to identify areas where there is a funding shortfall

", - "contentSnippet": "City Voices: The Chancellor should be listening to tech startups, university spinouts, researchers, and graduates from across the tech sector to identify areas where there is a funding shortfall", - "guid": "b1124059", - "categories": [ - "Business" - ], - "isoDate": "2023-11-30T19:51:25.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-11-30T19:49:13+00:00", - "title": "Backa Topola 0-1 West Ham: Tomas Soucek delivers another late winner to seal Europa League progress", - "link": "https://www.standard.co.uk/sport/football/backa-topola-west-ham-europa-league-2023-tomas-soucek-b1124057.html", - "pubDate": "Thu, 30 Nov 2023 19:49:13 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-11-30T19:49:13+00:00", - "content": "

Hammers will face Freiburg next month in shootout for first place

", - "contentSnippet": "Hammers will face Freiburg next month in shootout for first place", - "guid": "b1124057", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T19:49:13.000Z" - }, - { - "creator": "Robert Dex", - "date": "2023-11-30T19:47:31+00:00", - "title": "Four migrants die after being forced overboard near Spain", - "link": "https://www.standard.co.uk/news/world/four-migrants-die-forced-overboard-spain-cadiz-north-africa-b1124044.html", - "pubDate": "Thu, 30 Nov 2023 19:47:31 GMT", - "dc:creator": "Robert Dex", - "dc:date": "2023-11-30T19:47:31+00:00", - "content": "

The police chased the boat crew but were unable to catch them

", - "contentSnippet": "The police chased the boat crew but were unable to catch them", - "guid": "b1124044", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-11-30T19:47:31.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2023-11-30T19:46:11+00:00", - "title": "Bookies slash odds of Pogues\u2019 Christmas number one after Shane MacGowan\u2019s death", - "link": "https://www.standard.co.uk/news/uk/victoria-hospital-dublin-kent-england-b1124058.html", - "pubDate": "Thu, 30 Nov 2023 19:46:11 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2023-11-30T19:46:11+00:00", - "content": "The Pogues\u2019 frontman has died at the age of 65.", - "contentSnippet": "The Pogues\u2019 frontman has died at the age of 65.", - "guid": "b1124058", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T19:46:11.000Z" - }, - { - "creator": "Nick Purewal", - "date": "2023-11-30T19:22:54+00:00", - "title": "Marcus Smith and George Ford to face off in Six Nations audition as Harlequins host league leaders Sale", - "link": "https://www.standard.co.uk/sport/rugby/harlequins-sale-marcus-smith-george-ford-owen-farrell-england-six-nations-b1124048.html", - "pubDate": "Thu, 30 Nov 2023 19:22:54 GMT", - "dc:creator": "Nick Purewal", - "dc:date": "2023-11-30T19:22:54+00:00", - "content": "

Premiership clash could offer fly-half pair chance to stake England claim

", - "contentSnippet": "Premiership clash could offer fly-half pair chance to stake England claim", - "guid": "b1124048", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2023-11-30T19:22:54.000Z" - }, - { - "creator": "Nina Lloyd and Robert Dex", - "date": "2023-11-30T19:20:16+00:00", - "title": "Matt Hancock says earlier first Covid lockdown could have stopped 90% of first wave deaths", - "link": "https://www.standard.co.uk/news/politics/dominic-cummings-lockdown-matt-hancock-covid-inquiry-latest-b1123970.html", - "pubDate": "Thu, 30 Nov 2023 19:20:16 GMT", - "dc:creator": "Nina Lloyd and Robert Dex", - "dc:date": "2023-11-30T19:20:16+00:00", - "content": "

The former minister said the country should have locked down earlier but he understood why it did not happen

", - "contentSnippet": "The former minister said the country should have locked down earlier but he understood why it did not happen", - "guid": "b1123970", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T19:20:16.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2023-11-30T19:14:29+00:00", - "title": "Football agents win landmark legal battle against FIFA to remove new cap on fees", - "link": "https://www.standard.co.uk/sport/football/agents-fees-fifa-ruling-b1124002.html", - "pubDate": "Thu, 30 Nov 2023 19:14:29 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2023-11-30T19:14:29+00:00", - "content": "

Agencies have earned a landmark victory against proposed FIFA regulations

", - "contentSnippet": "Agencies have earned a landmark victory against proposed FIFA regulations", - "guid": "b1124002", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T19:14:29.000Z" - }, - { - "creator": "Lauren Gilmour", - "date": "2023-11-30T19:11:41+00:00", - "title": "\u2018Final\u2019 pay offer put to college staff in long-running dispute", - "link": "https://www.standard.co.uk/business/business-news/final-pay-offer-put-to-college-staff-in-longrunning-dispute-b1124054.html", - "pubDate": "Thu, 30 Nov 2023 19:11:41 GMT", - "dc:creator": "Lauren Gilmour", - "dc:date": "2023-11-30T19:11:41+00:00", - "content": "Those at the start of the national pay scale would benefit from a rise of 14.2%.", - "contentSnippet": "Those at the start of the national pay scale would benefit from a rise of 14.2%.", - "guid": "b1124054", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-11-30T19:11:41.000Z" - }, - { - "creator": "Katrine Bussey", - "date": "2023-11-30T19:06:49+00:00", - "title": "Alistair Darling\u2019s \u2018calmness in a crisis\u2019 remembered following his death aged 70", - "link": "https://www.standard.co.uk/news/politics/alistair-darling-gordon-brown-alex-salmond-tony-blair-anna-b1123986.html", - "pubDate": "Thu, 30 Nov 2023 19:06:49 GMT", - "dc:creator": "Katrine Bussey", - "dc:date": "2023-11-30T19:06:49+00:00", - "content": "The former chancellor led the UK through the financial crisis of 2008.", - "contentSnippet": "The former chancellor led the UK through the financial crisis of 2008.", - "guid": "b1123986", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T19:06:49.000Z" - }, - { - "creator": "Abha Shah", - "date": "2023-11-30T19:00:32+00:00", - "title": "Best bathroom paints to shop in 2023", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/bathroom/best-bathroom-paints-b1123768.html", - "pubDate": "Thu, 30 Nov 2023 19:00:32 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2023-11-30T19:00:32+00:00", - "content": "

All white? Doesn't have to be

", - "contentSnippet": "All white? Doesn't have to be", - "guid": "b1123768", - "categories": [ - "Bathroom", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T19:00:32.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2023-11-30T19:00:18+00:00", - "title": "Best 3D pens for crafting shapes and designs that jump off the page", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-3d-pens-b1123710.html", - "pubDate": "Thu, 30 Nov 2023 19:00:18 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2023-11-30T19:00:18+00:00", - "content": "

Interdimensional creativity on lock

", - "contentSnippet": "Interdimensional creativity on lock", - "guid": "b1123710", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T19:00:18.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2023-11-30T19:00:07+00:00", - "title": "Best affordable cushions to punctuate your home", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-affordable-cushions-b1123746.html", - "pubDate": "Thu, 30 Nov 2023 19:00:07 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2023-11-30T19:00:07+00:00", - "content": "

Fluff up your shared spaces

", - "contentSnippet": "Fluff up your shared spaces", - "guid": "b1123746", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T19:00:07.000Z" - }, - { - "creator": "Katrine Bussey", - "date": "2023-11-30T19:00:00+00:00", - "title": "Voice of business at heart of Government, insists minister", - "link": "https://www.standard.co.uk/business/business-news/voice-of-business-at-heart-of-government-insists-minister-b1124052.html", - "pubDate": "Thu, 30 Nov 2023 19:00:00 GMT", - "dc:creator": "Katrine Bussey", - "dc:date": "2023-11-30T19:00:00+00:00", - "content": "Wellbeing Economy Secretary Neil Gray made the comments as he addressed the Scottish Chambers of Commerce annual dinner.", - "contentSnippet": "Wellbeing Economy Secretary Neil Gray made the comments as he addressed the Scottish Chambers of Commerce annual dinner.", - "guid": "b1124052", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-11-30T19:00:00.000Z" - }, - { - "creator": "Nilima Marshall", - "date": "2023-11-30T19:00:00+00:00", - "title": "Planet too big for its sun \u2018is challenging the idea of how solar systems form\u2019", - "link": "https://www.standard.co.uk/news/science/earth-neptune-texas-b1124051.html", - "pubDate": "Thu, 30 Nov 2023 19:00:00 GMT", - "dc:creator": "Nilima Marshall", - "dc:date": "2023-11-30T19:00:00+00:00", - "content": "The team said this is the first time a planet with such a high mass has been spotted orbiting a low-mass star.", - "contentSnippet": "The team said this is the first time a planet with such a high mass has been spotted orbiting a low-mass star.", - "guid": "b1124051", - "categories": [ - "Science", - "News" - ], - "isoDate": "2023-11-30T19:00:00.000Z" - }, - { - "creator": "Robert Dex", - "date": "2023-11-30T18:48:21+00:00", - "title": "21-year-old French-Israeli one of two women released by Hamas after 55 days captivity", - "link": "https://www.standard.co.uk/news/world/french-israeli-women-released-hamas-captivity-gaza-mia-schem-b1124036.html", - "pubDate": "Thu, 30 Nov 2023 18:48:21 GMT", - "dc:creator": "Robert Dex", - "dc:date": "2023-11-30T18:48:21+00:00", - "content": "

The two women were released as the truce between Israel and Hamas continues to hold

", - "contentSnippet": "The two women were released as the truce between Israel and Hamas continues to hold", - "guid": "b1124036", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-11-30T18:48:21.000Z" - }, - { - "creator": "Jordan King", - "date": "2023-11-30T18:47:46+00:00", - "title": "Women in Sudan \u2018gang-raped for hours in ethnically-targeted attacks\u2019", - "link": "https://www.standard.co.uk/news/world/women-gangrape-sexual-violence-sudan-masalit-tribe-b1124042.html", - "pubDate": "Thu, 30 Nov 2023 18:47:46 GMT", - "dc:creator": "Jordan King", - "dc:date": "2023-11-30T18:47:46+00:00", - "content": "

A 19-year-old said she was raped repeatedly for three days before being released

", - "contentSnippet": "A 19-year-old said she was raped repeatedly for three days before being released", - "guid": "b1124042", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-11-30T18:47:46.000Z" - }, - { - "creator": "Sam Hall", - "date": "2023-11-30T18:42:22+00:00", - "title": "Prime Minister switches on Downing Street Christmas tree lights", - "link": "https://www.standard.co.uk/news/politics/downing-street-rishi-sunak-prime-minister-london-british-b1124049.html", - "pubDate": "Thu, 30 Nov 2023 18:42:22 GMT", - "dc:creator": "Sam Hall", - "dc:date": "2023-11-30T18:42:22+00:00", - "content": "Rishi Sunak joined more than 100 guests at a festive market in Downing Street on Thursday afternoon.", - "contentSnippet": "Rishi Sunak joined more than 100 guests at a festive market in Downing Street on Thursday afternoon.", - "guid": "b1124049", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T18:42:22.000Z" - }, - { - "creator": "Sian Baldwin", - "date": "2023-11-30T18:35:31+00:00", - "title": "Ellie Taylor pulls out of Royal Variety Performance after baby comes early", - "link": "https://www.standard.co.uk/showbiz/ellie-taylor-pulls-out-royal-variety-performance-albert-hall-b1124019.html", - "pubDate": "Thu, 30 Nov 2023 18:35:31 GMT", - "dc:creator": "Sian Baldwin", - "dc:date": "2023-11-30T18:35:31+00:00", - "content": "

The former Strictly favourite and stand-up comic was due to join a host of celebrities and performers at the Royal Albert Hall tonight

", - "contentSnippet": "The former Strictly favourite and stand-up comic was due to join a host of celebrities and performers at the Royal Albert Hall tonight", - "guid": "b1124019", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-11-30T18:35:31.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2023-11-30T18:32:32+00:00", - "title": "Alexandra Burke and boyfriend sleeping in separate beds following birth of second child", - "link": "https://www.standard.co.uk/showbiz/alexandra-burke-motherhood-sleeping-separate-beds-partner-work-b1124029.html", - "pubDate": "Thu, 30 Nov 2023 18:32:32 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2023-11-30T18:32:32+00:00", - "content": "

The former X Factor winner also got candid about struggling juggling being a mum with her career

", - "contentSnippet": "The former X Factor winner also got candid about struggling juggling being a mum with her career", - "guid": "b1124029", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-11-30T18:32:32.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-11-30T18:19:29+00:00", - "title": "Chelsea one step closer to Kendry Paez arrival after 'visa accepted'", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-kendry-paez-b1124045.html", - "pubDate": "Thu, 30 Nov 2023 18:19:29 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-11-30T18:19:29+00:00", - "content": "

Planned visit to Cobham in the works ahead of 2025 transfer

", - "contentSnippet": "Planned visit to Cobham in the works ahead of 2025 transfer", - "guid": "b1124045", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T18:19:29.000Z" - }, - { - "creator": "Abha Shah", - "date": "2023-11-30T18:11:47+00:00", - "title": "Best Christmas gifts for mum 2023: Thoughtful and personalised present ideas for your leading lady", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-gifts-for-mum-b853785.html", - "pubDate": "Thu, 30 Nov 2023 18:11:47 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2023-11-30T18:11:47+00:00", - "content": "

Gift ideas as unique as your mum

", - "contentSnippet": "Gift ideas as unique as your mum", - "guid": "b853785", - "categories": [ - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T18:11:47.000Z" - }, - { - "creator": "Tamara Davison", - "date": "2023-11-30T18:08:50+00:00", - "title": "The Wetherspoons game is back: What is it and how do you play it?", - "link": "https://www.standard.co.uk/news/uk/wetherspoons-game-app-how-play-pub-facebook-b1123954.html", - "pubDate": "Thu, 30 Nov 2023 18:08:50 GMT", - "dc:creator": "Tamara Davison", - "dc:date": "2023-11-30T18:08:50+00:00", - "content": "

The pub chain's game has exploded in popularity recently

", - "contentSnippet": "The pub chain's game has exploded in popularity recently", - "guid": "b1123954", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T18:08:50.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2023-11-30T18:04:37+00:00", - "title": "Microsoft Paint's AI update adds Dall-E to let you create images using text ", - "link": "https://www.standard.co.uk/news/tech/microsoft-paint-ai-update-dall-e-images-text-b1123968.html", - "pubDate": "Thu, 30 Nov 2023 18:04:37 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2023-11-30T18:04:37+00:00", - "content": "

You can try out the AI 'Cocreator' for free by joining a waitlist

", - "contentSnippet": "You can try out the AI 'Cocreator' for free by joining a waitlist", - "guid": "b1123968", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-11-30T18:04:37.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-11-30T17:59:03+00:00", - "title": "Pogues frontman Shane MacGowan remembered as a \u2018lyrical genius\u2019", - "link": "https://www.standard.co.uk/culture/music/the-pogues-dublin-billy-bragg-hospital-nick-cave-b1124043.html", - "pubDate": "Thu, 30 Nov 2023 17:59:03 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-11-30T17:59:03+00:00", - "content": "MacGowan was discharged last week from St Vincent\u2019s Hospital in Dublin ahead of his 66th birthday on Christmas Day.", - "contentSnippet": "MacGowan was discharged last week from St Vincent\u2019s Hospital in Dublin ahead of his 66th birthday on Christmas Day.", - "guid": "b1124043", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-11-30T17:59:03.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2023-11-30T17:58:47+00:00", - "title": "Amazon\u2019s new AI chatbot is designed to be your workplace assistant", - "link": "https://www.standard.co.uk/news/tech/amazon-ai-chatbot-workplace-assistant-b1124020.html", - "pubDate": "Thu, 30 Nov 2023 17:58:47 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2023-11-30T17:58:47+00:00", - "content": "

Amazon Q can write emails, summarise documents, visualise data, and more

", - "contentSnippet": "Amazon Q can write emails, summarise documents, visualise data, and more", - "guid": "b1124020", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-11-30T17:58:47.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2023-11-30T17:56:05+00:00", - "title": "Best supermarket Christmas puddings of 2023, taste tested", - "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-christmas-puddings-supermarket-b1120057.html", - "pubDate": "Thu, 30 Nov 2023 17:56:05 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2023-11-30T17:56:05+00:00", - "content": "

From profiterole pyramids to tasty trifles, Christmas puds just keep getting better

", - "contentSnippet": "From profiterole pyramids to tasty trifles, Christmas puds just keep getting better", - "guid": "b1120057", - "categories": [ - "CHRISTMAS", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T17:56:05.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2023-11-30T17:55:50+00:00", - "title": "Best mince pies for Christmas 2023 taste tested, from Waitrose to DukesHill", - "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-supermarket-mince-pies-b1116777.html", - "pubDate": "Thu, 30 Nov 2023 17:55:50 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2023-11-30T17:55:50+00:00", - "content": "

The latest iterations of our favourite festive snack are finally here

", - "contentSnippet": "The latest iterations of our favourite festive snack are finally here", - "guid": "b1116777", - "categories": [ - "CHRISTMAS", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T17:55:50.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2023-11-30T17:52:59+00:00", - "title": "Best advent calendars for creative kids", - "link": "https://www.standard.co.uk/shopping/esbest/christmas/kids/best-advent-calendars-for-creative-kids-b1102166.html", - "pubDate": "Thu, 30 Nov 2023 17:52:59 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2023-11-30T17:52:59+00:00", - "content": "

Keep active minds busy in the run up to Christmas

", - "contentSnippet": "Keep active minds busy in the run up to Christmas", - "guid": "b1102166", - "categories": [ - "Kids", - "CHRISTMAS", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T17:52:59.000Z" - }, - { - "creator": "Pa", - "date": "2023-11-30T17:52:55+00:00", - "title": "In Pictures: Turbulent troubadour Shane MacGowan reinvented Irish music", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/london-home-counties-johnny-depp-westminster-school-bob-geldof-b1124041.html", - "pubDate": "Thu, 30 Nov 2023 17:52:55 GMT", - "dc:creator": "Pa", - "dc:date": "2023-11-30T17:52:55+00:00", - "content": "As frontman for the Pogues, a new wave band using Irish traditional instruments, MacGowan embodied classic songs including a festive favourite.", - "contentSnippet": "As frontman for the Pogues, a new wave band using Irish traditional instruments, MacGowan embodied classic songs including a festive favourite.", - "guid": "b1124041", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-11-30T17:52:55.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2023-11-30T17:51:47+00:00", - "title": "Best vegan advent calendars 2023: Delicious daily treats without the dairy", - "link": "https://www.standard.co.uk/shopping/esbest/food-drink/best-vegan-advent-calendars-b1107395.html", - "pubDate": "Thu, 30 Nov 2023 17:51:47 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2023-11-30T17:51:47+00:00", - "content": "

Plant-based treats to mark the Christmas countdown

", - "contentSnippet": "Plant-based treats to mark the Christmas countdown", - "guid": "b1107395", - "categories": [ - "Food & Drink", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T17:51:47.000Z" - }, - { - "creator": "Tamara Davison and Rachael Davies", - "date": "2023-11-30T17:49:31+00:00", - "title": "Why is Nottingham City Council effectively bankrupt, and what does Section 114 mean?", - "link": "https://www.standard.co.uk/news/politics/why-nottingham-city-council-effectively-bankrupt-b1105266.html", - "pubDate": "Thu, 30 Nov 2023 17:49:31 GMT", - "dc:creator": "Tamara Davison and Rachael Davies", - "dc:date": "2023-11-30T17:49:31+00:00", - "content": "

Nottingham joins a growing list of local councils that have declared effective bankruptcy by raising a Section 114 notice

", - "contentSnippet": "Nottingham joins a growing list of local councils that have declared effective bankruptcy by raising a Section 114 notice", - "guid": "b1105266", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T17:49:31.000Z" - }, - { - "creator": "Maryam Kara", - "date": "2023-11-30T17:49:05+00:00", - "title": "What is encephalitis? The Pogues' frontman Shane MacGowan dies from viral infection", - "link": "https://www.standard.co.uk/news/health/what-encephalitis-the-pogues-shane-macgowan-viral-infection-b1123972.html", - "pubDate": "Thu, 30 Nov 2023 17:49:05 GMT", - "dc:creator": "Maryam Kara", - "dc:date": "2023-11-30T17:49:05+00:00", - "content": "

Encephalitis can be life-threatening and requires urgent treatment in hospital

", - "contentSnippet": "Encephalitis can be life-threatening and requires urgent treatment in hospital", - "guid": "b1123972", - "categories": [ - "Health", - "News" - ], - "isoDate": "2023-11-30T17:49:05.000Z" - }, - { - "creator": "Ethan Croft", - "date": "2023-11-30T17:44:10+00:00", - "title": "Sacked GB News vicar Calvin Robinson has a new side hustle: Cameo", - "link": "https://www.standard.co.uk/news/londoners-diary/calvin-robinson-gb-news-laurence-fox-cameo-b1123891.html", - "pubDate": "Thu, 30 Nov 2023 17:44:10 GMT", - "dc:creator": "Ethan Croft", - "dc:date": "2023-11-30T17:44:10+00:00", - "content": "

Nigel Farage is under fire for his use of the same site

", - "contentSnippet": "Nigel Farage is under fire for his use of the same site", - "guid": "b1123891", - "categories": [ - "Diary", - "News" - ], - "isoDate": "2023-11-30T17:44:10.000Z" - }, - { - "creator": "Abha Shah and Peter Bevan", - "date": "2023-11-30T17:43:47+00:00", - "title": "Best Christmas gifts for him 2023: Present inspo for men who have everything", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/mens/best-gifts-for-men-b854279.html", - "pubDate": "Thu, 30 Nov 2023 17:43:47 GMT", - "dc:creator": "Abha Shah and Peter Bevan", - "dc:date": "2023-11-30T17:43:47+00:00", - "content": "

In dire need of gift inspiration? Click this way

", - "contentSnippet": "In dire need of gift inspiration? Click this way", - "guid": "b854279", - "categories": [ - "Men's", - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T17:43:47.000Z" - }, - { - "creator": "Ella Pickover", - "date": "2023-11-30T17:42:34+00:00", - "title": "One in 14 babies \u2018raised by fathers\u2019 \u2013 study", - "link": "https://www.standard.co.uk/news/health/children-babies-english-department-for-education-university-college-london-b1124039.html", - "pubDate": "Thu, 30 Nov 2023 17:42:34 GMT", - "dc:creator": "Ella Pickover", - "dc:date": "2023-11-30T17:42:34+00:00", - "content": "A new study has tracked child development among children from 8,500 families.", - "contentSnippet": "A new study has tracked child development among children from 8,500 families.", - "guid": "b1124039", - "categories": [ - "Health", - "News" - ], - "isoDate": "2023-11-30T17:42:34.000Z" - }, - { - "creator": "Neil Lancefield", - "date": "2023-11-30T17:41:17+00:00", - "title": "Hundreds of Eurostar passengers stranded on broken down train with no working toilets for eight hours", - "link": "https://www.standard.co.uk/news/uk/eurostar-power-cut-broken-down-train-st-pancras-b1124034.html", - "pubDate": "Thu, 30 Nov 2023 17:41:17 GMT", - "dc:creator": "Neil Lancefield", - "dc:date": "2023-11-30T17:41:17+00:00", - "content": "The Amsterdam-bound service departed London St Pancras as scheduled at 8.16am but broke down around half an hour later.", - "contentSnippet": "The Amsterdam-bound service departed London St Pancras as scheduled at 8.16am but broke down around half an hour later.", - "guid": "b1124034", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T17:41:17.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2023-11-30T17:39:06+00:00", - "title": "Best chocolate advent calendars for a sweet Christmas 2023 ", - "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-chocolate-advent-calendars-b1104778.html", - "pubDate": "Thu, 30 Nov 2023 17:39:06 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2023-11-30T17:39:06+00:00", - "content": "

For your most scrumptious Christmas countdown yet

", - "contentSnippet": "For your most scrumptious Christmas countdown yet", - "guid": "b1104778", - "categories": [ - "CHRISTMAS", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T17:39:06.000Z" - }, - { - "creator": "Patrick Daly", - "date": "2023-11-30T17:38:54+00:00", - "title": "British Museum to continue talks with Greece over Elgin Marbles despite fallout", - "link": "https://www.standard.co.uk/news/uk/george-osborne-british-museum-talks-greece-elgin-marbles-b1124035.html", - "pubDate": "Thu, 30 Nov 2023 17:38:54 GMT", - "dc:creator": "Patrick Daly", - "dc:date": "2023-11-30T17:38:54+00:00", - "content": "

Museum chairman George Osborne said negotiations over an exchange deal would go on \u2018whether Rishi Sunak meets Greek PM or not\u2019

", - "contentSnippet": "Museum chairman George Osborne said negotiations over an exchange deal would go on \u2018whether Rishi Sunak meets Greek PM or not\u2019", - "guid": "b1124035", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T17:38:54.000Z" - }, - { - "creator": "Aine Fox", - "date": "2023-11-30T17:38:40+00:00", - "title": "Matt Hancock admits protective ring around care homes was not \u2018unbroken circle\u2019", - "link": "https://www.standard.co.uk/news/politics/matt-hancock-downing-street-ppe-jamie-boris-johnson-b1124033.html", - "pubDate": "Thu, 30 Nov 2023 17:38:40 GMT", - "dc:creator": "Aine Fox", - "dc:date": "2023-11-30T17:38:40+00:00", - "content": "The former health secretary was addressing the UK Covid-19 Inquiry.", - "contentSnippet": "The former health secretary was addressing the UK Covid-19 Inquiry.", - "guid": "b1124033", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T17:38:40.000Z" - }, - { - "creator": "Daniel Keane", - "date": "2023-11-30T17:36:59+00:00", - "title": "Denmark and Netherlands report surge in child pneumonia as China battles outbreak", - "link": "https://www.standard.co.uk/news/world/denmark-netherlands-child-pneumonia-mycoplasma-china-outbreak-b1124026.html", - "pubDate": "Thu, 30 Nov 2023 17:36:59 GMT", - "dc:creator": "Daniel Keane", - "dc:date": "2023-11-30T17:36:59+00:00", - "content": "

Danish health experts warn spike in bacteria illness is high enough to be considered epidemic

", - "contentSnippet": "Danish health experts warn spike in bacteria illness is high enough to be considered epidemic", - "guid": "b1124026", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-11-30T17:36:59.000Z" - }, - { - "creator": "Elizabeth Gregory", - "date": "2023-11-30T17:34:38+00:00", - "title": "The five exhibitions to see this week in London, from Jenny Saville to Alice Instone (Nov 30 to Dec 7)", - "link": "https://www.standard.co.uk/culture/exhibitions/the-five-exhibitions-to-see-this-week-in-london-b1102286.html", - "pubDate": "Thu, 30 Nov 2023 17:34:38 GMT", - "dc:creator": "Elizabeth Gregory", - "dc:date": "2023-11-30T17:34:38+00:00", - "content": "

We pick the best art shows to enjoy this week

", - "contentSnippet": "We pick the best art shows to enjoy this week", - "guid": "b1102286", - "categories": [ - "Exhibitions", - "Culture" - ], - "isoDate": "2023-11-30T17:34:38.000Z" - }, - { - "creator": "By Grinne N. Aodha", - "date": "2023-11-30T17:30:01+00:00", - "title": "Fair City and other programmes to be hit by 10m euro cuts at RTE", - "link": "https://www.standard.co.uk/news/uk/government-european-paris-b1124037.html", - "pubDate": "Thu, 30 Nov 2023 17:30:01 GMT", - "dc:creator": "By Grinne N. Aodha", - "dc:date": "2023-11-30T17:30:01+00:00", - "content": "There will also be production savings in news and current affairs and sport, the broadcaster said.", - "contentSnippet": "There will also be production savings in news and current affairs and sport, the broadcaster said.", - "guid": "b1124037", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T17:30:01.000Z" - }, - { - "creator": "Tamara Davison,Beril Naz Hassan,Nuray Bulbul,Tamara Davison and William Mata", - "date": "2023-11-30T17:28:25+00:00", - "title": "UK airports\u2019 cancelled flights list: Heathrow, Gatwick, Luton and more", - "link": "https://www.standard.co.uk/news/uk/airport-cancelled-flights-list-gatwick-heathrow-luton-b1111239.html", - "pubDate": "Thu, 30 Nov 2023 17:28:25 GMT", - "dc:creator": "Tamara Davison,Beril Naz Hassan,Nuray Bulbul,Tamara Davison and William Mata", - "dc:date": "2023-11-30T17:28:25+00:00", - "content": "

\u00a0Snow around the country could impact flights in the coming days\u00a0

", - "contentSnippet": "Snow around the country could impact flights in the coming days", - "guid": "b1111239", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T17:28:25.000Z" - }, - { - "creator": "Daniel O'Boyle", - "date": "2023-11-30T17:21:07+00:00", - "title": "Culture Secretary steps in to potentially block UAE-backed Redbird's Telegraph deal on public interest grounds", - "link": "https://www.standard.co.uk/business/culture-secretary-steps-in-to-potentially-block-telegraph-deal-b1124032.html", - "pubDate": "Thu, 30 Nov 2023 17:21:07 GMT", - "dc:creator": "Daniel O'Boyle", - "dc:date": "2023-11-30T17:21:07+00:00", - "content": "

Culture Secretary Lucy Frazer says she \u201cwill be issuing a Public Interest Intervention Notice\u201d on the deal

", - "contentSnippet": "Culture Secretary Lucy Frazer says she \u201cwill be issuing a Public Interest Intervention Notice\u201d on the deal", - "guid": "b1124032", - "categories": [ - "Business" - ], - "isoDate": "2023-11-30T17:21:07.000Z" - }, - { - "creator": "Sian Baldwin", - "date": "2023-11-30T17:17:43+00:00", - "title": "Panda diplomacy: How to see Edinburgh Zoo's giant pandas before they return to China", - "link": "https://www.standard.co.uk/news/uk/edinburgh-zoo-giant-pandas-return-china-b1123977.html", - "pubDate": "Thu, 30 Nov 2023 17:17:43 GMT", - "dc:creator": "Sian Baldwin", - "dc:date": "2023-11-30T17:17:43+00:00", - "content": "

Tian Tian and Yang Guang\u00a0arrived in Scotland in 2011 but are due to return to their native land

", - "contentSnippet": "Tian Tian and Yang Guang\u00a0arrived in Scotland in 2011 but are due to return to their native land", - "guid": "b1123977", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T17:17:43.000Z" - }, - { - "creator": "Elizabeth Gregory,Dominique Hines and Nancy Durrant", - "date": "2023-11-30T17:15:27+00:00", - "title": "The best free exhibitions in London \u2013 get your culture fix and keep your money for coffee", - "link": "https://www.standard.co.uk/culture/exhibitions/best-free-exhibitions-in-london-now-b1053240.html", - "pubDate": "Thu, 30 Nov 2023 17:15:27 GMT", - "dc:creator": "Elizabeth Gregory,Dominique Hines and Nancy Durrant", - "dc:date": "2023-11-30T17:15:27+00:00", - "content": "

Want to have a fun day out but also save those pennies? These free London art exhibitions are perfect

", - "contentSnippet": "Want to have a fun day out but also save those pennies? These free London art exhibitions are perfect", - "guid": "b1053240", - "categories": [ - "Exhibitions", - "Culture" - ], - "isoDate": "2023-11-30T17:15:27.000Z" - }, - { - "creator": "August Graham", - "date": "2023-11-30T17:14:46+00:00", - "title": "London market ends November in the green as financial stocks gain", - "link": "https://www.standard.co.uk/business/business-news/london-market-ends-november-in-the-green-as-financial-stocks-gain-b1124031.html", - "pubDate": "Thu, 30 Nov 2023 17:14:46 GMT", - "dc:creator": "August Graham", - "dc:date": "2023-11-30T17:14:46+00:00", - "content": "The FTSE 100 rose 30.29 points, or 0.41%, to end the day at 7453.75.", - "contentSnippet": "The FTSE 100 rose 30.29 points, or 0.41%, to end the day at 7453.75.", - "guid": "b1124031", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-11-30T17:14:46.000Z" - }, - { - "creator": "Rachael Davies", - "date": "2023-11-30T17:14:06+00:00", - "title": "World AIDS Day 2023: What is it and how can you get involved?", - "link": "https://www.standard.co.uk/news/world/world-aids-day-how-to-get-involved-b1040942.html", - "pubDate": "Thu, 30 Nov 2023 17:14:06 GMT", - "dc:creator": "Rachael Davies", - "dc:date": "2023-11-30T17:14:06+00:00", - "content": "

World AIDS Day is taking place at the start of December

", - "contentSnippet": "World AIDS Day is taking place at the start of December", - "guid": "b1040942", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-11-30T17:14:06.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2023-11-30T17:10:18+00:00", - "title": "Best Christmas board games for hours of family fun", - "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-christmas-board-games-for-kids-and-adults-b1027518.html", - "pubDate": "Thu, 30 Nov 2023 17:10:18 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2023-11-30T17:10:18+00:00", - "content": "

Classic and kooky options that won\u2019t (necessarily) start any arguments

", - "contentSnippet": "Classic and kooky options that won\u2019t (necessarily) start any arguments", - "guid": "b1027518", - "categories": [ - "CHRISTMAS", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T17:10:18.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2023-11-30T17:04:21+00:00", - "title": "British minister flies to the Falklands after Argentina\u2019s president-elect Javier Milei vows to 'get them back'", - "link": "https://www.standard.co.uk/news/politics/falklands-britain-argentina-war-islands-back-minister-b1124014.html", - "pubDate": "Thu, 30 Nov 2023 17:04:21 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2023-11-30T17:04:21+00:00", - "content": "

Foreign Office minister David Rutley stressed the UK strongly backs the islanders\u2019 rights to self-determination as an 'important part of the British family'

", - "contentSnippet": "Foreign Office minister David Rutley stressed the UK strongly backs the islanders\u2019 rights to self-determination as an 'important part of the British family'", - "guid": "b1124014", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T17:04:21.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2023-11-30T17:01:32+00:00", - "title": "Best Christmas gifts for pets 2023: Delightful presents for your furry friend", - "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-christmas-gifts-for-pets-dogs-cats-b1120254.html", - "pubDate": "Thu, 30 Nov 2023 17:01:32 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2023-11-30T17:01:32+00:00", - "content": "

Purr-fect presents for your most precious family member

", - "contentSnippet": "Purr-fect presents for your most precious family member", - "guid": "b1120254", - "categories": [ - "CHRISTMAS", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T17:01:32.000Z" - }, - { - "creator": "Ann Martin", - "date": "2023-11-30T17:00:56+00:00", - "title": "Best dehumidifiers to keep your home feeling fresh", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-dehumidifiers-for-home-b1017519.html", - "pubDate": "Thu, 30 Nov 2023 17:00:56 GMT", - "dc:creator": "Ann Martin", - "dc:date": "2023-11-30T17:00:56+00:00", - "content": "

The best dehumidifiers for improving air quality in your home

", - "contentSnippet": "The best dehumidifiers for improving air quality in your home", - "guid": "b1017519", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-11-30T17:00:56.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-11-30T16:57:57+00:00", - "title": "Sin bins are making a difference in amateur football but clear issues remain ahead of professional trial ", - "link": "https://www.standard.co.uk/sport/football/sin-bin-trial-ifab-premier-league-b1123885.html", - "pubDate": "Thu, 30 Nov 2023 16:57:57 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-11-30T16:57:57+00:00", - "content": "

The impact at non-league level is clear, though there are obvious pitfalls that need to be addressed

", - "contentSnippet": "The impact at non-league level is clear, though there are obvious pitfalls that need to be addressed", - "guid": "b1123885", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-11-30T16:57:57.000Z" - }, - { - "creator": "Tristan Kirk", - "date": "2023-11-30T16:56:57+00:00", - "title": "EncroChat drug dealer jailed for plotting to buy 25 Skorpion submachine guns ", - "link": "https://www.standard.co.uk/news/crime/encrochat-drug-dealer-skorpion-guns-russia-cocaine-cannabis-b1123979.html", - "pubDate": "Thu, 30 Nov 2023 16:56:57 GMT", - "dc:creator": "Tristan Kirk", - "dc:date": "2023-11-30T16:56:57+00:00", - "content": "

Drug dealer Kirk Douglas was caught when the EncroChat system was infiltrated by law enforcement in 2020

", - "contentSnippet": "Drug dealer Kirk Douglas was caught when the EncroChat system was infiltrated by law enforcement in 2020", - "guid": "b1123979", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-11-30T16:56:57.000Z" - }, - { - "creator": "Clare Finney", - "date": "2023-11-30T16:54:58+00:00", - "title": "Where to feel like you've gone on holiday, without leaving London", - "link": "https://www.standard.co.uk/going-out/restaurants/restaurants-london-holiday-vibes-b1123721.html", - "pubDate": "Thu, 30 Nov 2023 16:54:58 GMT", - "dc:creator": "Clare Finney", - "dc:date": "2023-11-30T16:54:58+00:00", - "content": "

Clare Finney rounds up the dining rooms offering an escape from the London gloom \u2014 no flight required

", - "contentSnippet": "Clare Finney rounds up the dining rooms offering an escape from the London gloom \u2014 no flight required", - "guid": "b1123721", - "categories": [ - "Restaurants", - "Going Out" - ], - "isoDate": "2023-11-30T16:54:58.000Z" - }, - { - "creator": "Claire Hayhurst", - "date": "2023-11-30T16:52:51+00:00", - "title": "Yacht builder fined \u00a3600,000 over accident which left worker seriously injured", - "link": "https://www.standard.co.uk/news/crime/hse-plymouth-devon-princess-b1124028.html", - "pubDate": "Thu, 30 Nov 2023 16:52:51 GMT", - "dc:creator": "Claire Hayhurst", - "dc:date": "2023-11-30T16:52:51+00:00", - "content": "Mark Gillen, 54, was crushed and lost an arm when a staging platform toppled over and fell on him in Plymouth, Devon.", - "contentSnippet": "Mark Gillen, 54, was crushed and lost an arm when a staging platform toppled over and fell on him in Plymouth, Devon.", - "guid": "b1124028", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-11-30T16:52:51.000Z" - }, - { - "creator": "City Staff", - "date": "2023-11-30T16:51:10+00:00", - "title": "FTSE 100 Live: FTSE closes up 0.4%, OPEC oil cuts to be voluntary, EU inflation falls to 2.4%", - "link": "https://www.standard.co.uk/business/ftse-100-live-dr-martens-mitchells-butlers-stocks-shares-gdp-inflation-interest-rate-bank-of-england-b1123799.html", - "pubDate": "Thu, 30 Nov 2023 16:51:10 GMT", - "dc:creator": "City Staff", - "dc:date": "2023-11-30T16:51:10+00:00", - "content": "

", - "contentSnippet": "", - "guid": "b1123799", - "categories": [ - "Business" - ], - "isoDate": "2023-11-30T16:51:10.000Z" - }, - { - "creator": "Daniel Keane and Jordan King", - "date": "2023-11-30T16:50:51+00:00", - "title": "Hancock didn't know about Eat Out to Help Out until day of announcement, inquiry told", - "link": "https://www.standard.co.uk/news/uk/matt-hancock-covid-inquiry-latest-live-updates-pandemic-nhs-gina-coladangelo-b1123851.html", - "pubDate": "Thu, 30 Nov 2023 16:50:51 GMT", - "dc:creator": "Daniel Keane and Jordan King", - "dc:date": "2023-11-30T16:50:51+00:00", - "content": "

Former health secretary says ministers should have acted more quickly after warnings from scientists

", - "contentSnippet": "Former health secretary says ministers should have acted more quickly after warnings from scientists", - "guid": "b1123851", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T16:50:51.000Z" - }, - { - "creator": "Emily Pennink", - "date": "2023-11-30T16:45:13+00:00", - "title": "People smuggler linked to deaths of 39 men, women and children jailed for seven years", - "link": "https://www.standard.co.uk/news/crime/caolan-gormley-people-smuggling-migrants-deaths-essex-court-b1123985.html", - "pubDate": "Thu, 30 Nov 2023 16:45:13 GMT", - "dc:creator": "Emily Pennink", - "dc:date": "2023-11-30T16:45:13+00:00", - "content": "

Caolan Gormley, 26, from Co Tyrone, had denied being involved, claiming he thought he was helping bring alcohol into the UK illegally.

", - "contentSnippet": "Caolan Gormley, 26, from Co Tyrone, had denied being involved, claiming he thought he was helping bring alcohol into the UK illegally.", - "guid": "b1123985", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-11-30T16:45:13.000Z" - }, - { - "creator": "Emily Pennink", - "date": "2023-11-30T16:43:50+00:00", - "title": "Mehmet Koray Alpergin: Thugs found guilty of kidnap killing of radio DJ near Tottenham Hotspur Stadium", - "link": "https://www.standard.co.uk/news/crime/men-guilty-murder-radio-dj-near-tottenham-hotspur-stadium-white-hart-lane-b1124011.html", - "pubDate": "Thu, 30 Nov 2023 16:43:50 GMT", - "dc:creator": "Emily Pennink", - "dc:date": "2023-11-30T16:43:50+00:00", - "content": "

DJ and his girlfriend were abducted as they returned home from a restaurant in central London last October

", - "contentSnippet": "DJ and his girlfriend were abducted as they returned home from a restaurant in central London last October", - "guid": "b1124011", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-11-30T16:43:50.000Z" - }, - { - "creator": "Anthony France", - "date": "2023-11-30T16:41:36+00:00", - "title": "Met Police officer cleared of gross misconduct after Tasering 10-year-old girl", - "link": "https://www.standard.co.uk/news/crime/metropolitan-police-taser-girl-gross-misconduct-south-london-b1123915.html", - "pubDate": "Thu, 30 Nov 2023 16:41:36 GMT", - "dc:creator": "Anthony France", - "dc:date": "2023-11-30T16:41:36+00:00", - "content": "

PC Jonathan Broadhead fired his weapon at the girl twice within seconds of entering her home

", - "contentSnippet": "PC Jonathan Broadhead fired his weapon at the girl twice within seconds of entering her home", - "guid": "b1123915", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-11-30T16:41:36.000Z" - }, - { - "creator": "August Graham", - "date": "2023-11-30T16:41:12+00:00", - "title": "Frasers pulls out of deal to buy Germany\u2019s SportScheck", - "link": "https://www.standard.co.uk/business/business-news/frasers-pulls-out-of-deal-to-buy-germany-s-sportscheck-b1124023.html", - "pubDate": "Thu, 30 Nov 2023 16:41:12 GMT", - "dc:creator": "August Graham", - "dc:date": "2023-11-30T16:41:12+00:00", - "content": "The retailer said that it would try to buy the business or its assets out of administration.", - "contentSnippet": "The retailer said that it would try to buy the business or its assets out of administration.", - "guid": "b1124023", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-11-30T16:41:12.000Z" - }, - { - "creator": "Tony Jones", - "date": "2023-11-30T16:39:06+00:00", - "title": "Writer Omid Scobie accused of \u2018stunt to sell books\u2019 over naming of race row royals", - "link": "https://www.standard.co.uk/news/uk/omid-scobie-harry-meghan-piers-morgan-endgame-royals-b1123921.html", - "pubDate": "Thu, 30 Nov 2023 16:39:06 GMT", - "dc:creator": "Tony Jones", - "dc:date": "2023-11-30T16:39:06+00:00", - "content": "

Copies of Omid Scobie\u2019s book were pulled from the shelves in the Netherlands on publication day on Tuesday

", - "contentSnippet": "Copies of Omid Scobie\u2019s book were pulled from the shelves in the Netherlands on publication day on Tuesday", - "guid": "b1123921", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T16:39:06.000Z" - }, - { - "creator": "Nick Howells", - "date": "2023-11-30T16:38:00+00:00", - "title": "Eileen movie review: desire runs riot in this Ottessa Moshfegh adaptation", - "link": "https://www.standard.co.uk/culture/film/eileen-movie-review-ottessa-moshfegh-anne-hathaway-thomasin-mckenzie-b1123011.html", - "pubDate": "Thu, 30 Nov 2023 16:38:00 GMT", - "dc:creator": "Nick Howells", - "dc:date": "2023-11-30T16:38:00+00:00", - "content": "

Eileen is the drabbest of them all... until glamourous new prison psychiatrist Rebecca comes swanning into town, that is

", - "contentSnippet": "Eileen is the drabbest of them all... until glamourous new prison psychiatrist Rebecca comes swanning into town, that is", - "guid": "b1123011", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-11-30T16:38:00.000Z" - }, - { - "creator": "Storm Newton", - "date": "2023-11-30T16:35:34+00:00", - "title": "Hancock was \u2018frustrated\u2019 by reluctance to use private sector in Covid testing", - "link": "https://www.standard.co.uk/news/politics/matt-hancock-department-of-health-and-social-care-mark-sedwill-china-b1124022.html", - "pubDate": "Thu, 30 Nov 2023 16:35:34 GMT", - "dc:creator": "Storm Newton", - "dc:date": "2023-11-30T16:35:34+00:00", - "content": "The former health secretary gave evidence to the Covid-19 Inquiry on Thursday.", - "contentSnippet": "The former health secretary gave evidence to the Covid-19 Inquiry on Thursday.", - "guid": "b1124022", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-11-30T16:35:34.000Z" - }, - { - "creator": "Anna Wise", - "date": "2023-11-30T16:33:49+00:00", - "title": "Pubs and bars urge Aslef to follow in lead of RMT ahead of rail strikes", - "link": "https://www.standard.co.uk/business/business-news/pubs-and-bars-urge-aslef-to-follow-in-lead-of-rmt-ahead-of-rail-strikes-b1124021.html", - "pubDate": "Thu, 30 Nov 2023 16:33:49 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2023-11-30T16:33:49+00:00", - "content": "Trade body UKHospitality, which represents more than 130,000 venues, said \u201cwe are not out of the woods yet\u201d after RMT agreed to a pay deal.", - "contentSnippet": "Trade body UKHospitality, which represents more than 130,000 venues, said \u201cwe are not out of the woods yet\u201d after RMT agreed to a pay deal.", - "guid": "b1124021", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-11-30T16:33:49.000Z" - }, - { - "creator": "Lisa McLoughlin ", - "date": "2023-11-30T16:30:04+00:00", - "title": "Billy Porter details \u2018the worst year of his life\u2019 amid bankruptcy plus HIV and diabetes diagnosis", - "link": "https://www.standard.co.uk/showbiz/billy-porter-worst-year-of-his-life-hiv-diagnosis-bankruptcy-diabetes-b1124000.html", - "pubDate": "Thu, 30 Nov 2023 16:30:04 GMT", - "dc:creator": "Lisa McLoughlin ", - "dc:date": "2023-11-30T16:30:04+00:00", - "content": "

The actor first spoke publicly about his HIV diagnosis in 2021, explaining that he kept it secret for over a decade out of fear of harming his career

", - "contentSnippet": "The actor first spoke publicly about his HIV diagnosis in 2021, explaining that he kept it secret for over a decade out of fear of harming his career", - "guid": "b1124000", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-11-30T16:30:04.000Z" - }, - { - "creator": "Nick Clark", - "date": "2023-11-30T16:27:30+00:00", - "title": "The best Christmas shows to book: from Dickens and Elf to Gwyneth Paltrow on the slopes (yes, really)", - "link": "https://www.standard.co.uk/culture/theatre/best-christmas-shows-2023-a-christmas-carol-elf-gwyneth-paltrow-b1123991.html", - "pubDate": "Thu, 30 Nov 2023 16:27:30 GMT", - "dc:creator": "Nick Clark", - "dc:date": "2023-11-30T16:27:30+00:00", - "content": "

Fancy a festive night out at the theatre? Of course you do

", - "contentSnippet": "Fancy a festive night out at the theatre? Of course you do", - "guid": "b1123991", - "categories": [ - "Theatre", - "Culture" - ], - "isoDate": "2023-11-30T16:27:30.000Z" - }, - { - "creator": "Rachel Vickers-Price", - "date": "2023-12-01T01:02:26+00:00", - "title": "What the papers say \u2013 December 1", - "link": "https://www.standard.co.uk/news/uk/cop28-european-union-britain-the-sun-daily-star-b1124089.html", - "pubDate": "Fri, 01 Dec 2023 01:02:26 GMT", - "dc:creator": "Rachel Vickers-Price", - "dc:date": "2023-12-01T01:02:26+00:00", - "content": "Here are Britain\u2019s biggest stories on Friday.", - "contentSnippet": "Here are Britain\u2019s biggest stories on Friday.", - "guid": "b1124089", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-01T01:02:26.000Z" - }, - { - "creator": "Pol Allingham", - "date": "2023-12-01T00:28:41+00:00", - "title": "Prince and Princess of Wales appear \u2018relaxed\u2019 at Royal Variety Performance", - "link": "https://www.standard.co.uk/news/uk/princess-paloma-faith-prince-william-and-kate-princess-of-wales-b1124088.html", - "pubDate": "Fri, 01 Dec 2023 00:28:41 GMT", - "dc:creator": "Pol Allingham", - "dc:date": "2023-12-01T00:28:41+00:00", - "content": "Paloma Faith said William and Kate seemed calm when they spoke with her after she sang at the Royal Albert Hall.", - "contentSnippet": "Paloma Faith said William and Kate seemed calm when they spoke with her after she sang at the Royal Albert Hall.", - "guid": "b1124088", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-01T00:28:41.000Z" - }, - { - "creator": "Sophie Wingate", - "date": "2023-12-01T00:03:21+00:00", - "title": "King and Sunak to attend Cop28 as leaders assess bids to tackle climate change", - "link": "https://www.standard.co.uk/news/politics/cop28-king-david-cameron-keir-starmer-charles-b1124087.html", - "pubDate": "Fri, 01 Dec 2023 00:03:21 GMT", - "dc:creator": "Sophie Wingate", - "dc:date": "2023-12-01T00:03:21+00:00", - "content": "Britain will be represented at the climate summit by the Prime Minister, the Foreign Secretary and Charles, who is to make an address.", - "contentSnippet": "Britain will be represented at the climate summit by the Prime Minister, the Foreign Secretary and Charles, who is to make an address.", - "guid": "b1124087", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-01T00:03:21.000Z" - }, - { - "creator": "George Lithgow", - "date": "2023-12-01T00:01:47+00:00", - "title": "Wintry showers and sub-zero temperatures set to continue", - "link": "https://www.standard.co.uk/news/environment/met-office-scotland-northern-ireland-east-anglia-yorkshire-b1124080.html", - "pubDate": "Fri, 01 Dec 2023 00:01:47 GMT", - "dc:creator": "George Lithgow", - "dc:date": "2023-12-01T00:01:47+00:00", - "content": "Hilly areas including the North York Moors and parts of Scotland will see more snow on Friday, the Met Office said.", - "contentSnippet": "Hilly areas including the North York Moors and parts of Scotland will see more snow on Friday, the Met Office said.", - "guid": "b1124080", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2023-12-01T00:01:47.000Z" - }, - { - "creator": "George Lithgow", - "date": "2023-12-01T00:01:00+00:00", - "title": "Review set to scrutinise AI\u2019s impact on porn industry", - "link": "https://www.standard.co.uk/news/politics/michelle-donelan-secretary-of-state-government-b1124081.html", - "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", - "dc:creator": "George Lithgow", - "dc:date": "2023-12-01T00:01:00+00:00", - "content": "The review will look at how viewing pornography impacts users of all ages, including emerging challenges from AI.", - "contentSnippet": "The review will look at how viewing pornography impacts users of all ages, including emerging challenges from AI.", - "guid": "b1124081", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-01T00:01:00.000Z" - }, - { - "creator": "Rebecca Black", - "date": "2023-12-01T00:01:00+00:00", - "title": "CCTV footage of murder victim Mark Lovell\u2019s last movements released", - "link": "https://www.standard.co.uk/news/uk/police-mercedes-northern-ireland-dundalk-dublin-b1124084.html", - "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", - "dc:creator": "Rebecca Black", - "dc:date": "2023-12-01T00:01:00+00:00", - "content": "A \u00a320,000 reward has been offered for information leading to the arrest and conviction of those responsible.", - "contentSnippet": "A \u00a320,000 reward has been offered for information leading to the arrest and conviction of those responsible.", - "guid": "b1124084", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-01T00:01:00.000Z" - }, - { - "creator": "Kim Pilling", - "date": "2023-12-01T00:01:00+00:00", - "title": "Significant improvements by Greater Manchester Police, inspection finds", - "link": "https://www.standard.co.uk/news/uk/greater-manchester-police-andy-burnham-greater-manchester-mayor-gmp-b1124085.html", - "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", - "dc:creator": "Kim Pilling", - "dc:date": "2023-12-01T00:01:00+00:00", - "content": "Stephen Watson replaced Ian Hopkins as the chief constable of GMP in May 2021 after the force was placed in special measures in December 2020.", - "contentSnippet": "Stephen Watson replaced Ian Hopkins as the chief constable of GMP in May 2021 after the force was placed in special measures in December 2020.", - "guid": "b1124085", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-01T00:01:00.000Z" - }, - { - "creator": "George Lithgow", - "date": "2023-12-01T00:01:00+00:00", - "title": "NHS urges people to book \u2018lifesaving\u2019 Covid and flu vaccines before Christmas", - "link": "https://www.standard.co.uk/news/health/nhs-england-b1124082.html", - "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", - "dc:creator": "George Lithgow", - "dc:date": "2023-12-01T00:01:00+00:00", - "content": "A total of 11,404,669 Covid and 16,190,661 flu vaccinations have been administered by the NHS in England this autumn.", - "contentSnippet": "A total of 11,404,669 Covid and 16,190,661 flu vaccinations have been administered by the NHS in England this autumn.", - "guid": "b1124082", - "categories": [ - "Health", - "News" - ], - "isoDate": "2023-12-01T00:01:00.000Z" - }, - { - "creator": "Danny Halpin", - "date": "2023-12-01T00:01:00+00:00", - "title": "Government delays mean more plastic waste will go to landfill, say MPs", - "link": "https://www.standard.co.uk/news/politics/public-accounts-committee-mps-government-meg-hillier-england-b1124086.html", - "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", - "dc:creator": "Danny Halpin", - "dc:date": "2023-12-01T00:01:00+00:00", - "content": "A report from the Public Accounts Committee said councils and businesses do not have enough information to prepare for coming changes.", - "contentSnippet": "A report from the Public Accounts Committee said councils and businesses do not have enough information to prepare for coming changes.", - "guid": "b1124086", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-01T00:01:00.000Z" - }, - { - "creator": "Alan Jones", - "date": "2023-12-01T00:01:00+00:00", - "title": "Fresh disruption for rail travellers as train drivers strike again", - "link": "https://www.standard.co.uk/business/business-news/fresh-disruption-for-rail-travellers-as-train-drivers-strike-again-b1124079.html", - "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", - "dc:creator": "Alan Jones", - "dc:date": "2023-12-01T00:01:00+00:00", - "content": "Members of Aslef will stage a series of strikes and ban overtime in their long-running pay dispute.", - "contentSnippet": "Members of Aslef will stage a series of strikes and ban overtime in their long-running pay dispute.", - "guid": "b1124079", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-12-01T00:01:00.000Z" - }, - { - "creator": "Anna Wise", - "date": "2023-12-01T00:01:00+00:00", - "title": "More households turning to debt to pay for essentials, survey shows", - "link": "https://www.standard.co.uk/business/business-news/more-households-turning-to-debt-to-pay-for-essentials-survey-shows-b1124078.html", - "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2023-12-01T00:01:00+00:00", - "content": "Families in serious financial difficulty are increasingly taking on debt to pay for essentials, according to a survey of about 5,600 UK adults.", - "contentSnippet": "Families in serious financial difficulty are increasingly taking on debt to pay for essentials, according to a survey of about 5,600 UK adults.", - "guid": "b1124078", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-12-01T00:01:00.000Z" - }, - { - "creator": "Callum Parke", - "date": "2023-12-01T00:01:00+00:00", - "title": "King expected to call in opening speech for Cop28 to be \u2018critical turning point\u2019", - "link": "https://www.standard.co.uk/news/environment/king-cop28-charles-cameron-humza-yousaf-b1124083.html", - "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", - "dc:creator": "Callum Parke", - "dc:date": "2023-12-01T00:01:00+00:00", - "content": "Charles will address world leaders, heads of state and climate delegates in a speech at the summit on Friday.", - "contentSnippet": "Charles will address world leaders, heads of state and climate delegates in a speech at the summit on Friday.", - "guid": "b1124083", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2023-12-01T00:01:00.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2023-11-30T23:56:54+00:00", - "title": "Ellie Taylor announces arrival of baby as she misses Royal Variety Performance", - "link": "https://www.standard.co.uk/news/uk/princess-prince-wales-instagram-rick-astley-b1124066.html", - "pubDate": "Thu, 30 Nov 2023 23:56:54 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2023-11-30T23:56:54+00:00", - "content": "The Prince and Princess of Wales were among the guests at the annual charity event.", - "contentSnippet": "The Prince and Princess of Wales were among the guests at the annual charity event.", - "guid": "b1124066", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-11-30T23:56:54.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-12-01T01:35:42+00:00", - "title": "Warner Bros offer first glimpse at Anya Taylor-Joy in Mad Max prequel", - "link": "https://www.standard.co.uk/culture/film/warner-bros-anya-taylorjoy-mad-max-chris-hemsworth-charlize-theron-b1124090.html", - "pubDate": "Fri, 01 Dec 2023 01:35:42 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-12-01T01:35:42+00:00", - "content": "Furiosa: A Mad Max Saga will be released on May 24 2024.", - "contentSnippet": "Furiosa: A Mad Max Saga will be released on May 24 2024.", - "guid": "b1124090", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-12-01T01:35:42.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2023-12-08T09:36:15+00:00", - "title": "Off-duty Met officers 'involved in South Bank brawl' with four on restricted duties", - "link": "https://www.standard.co.uk/news/crime/met-police-south-bank-royal-festival-hall-jubilee-bridge-disorder-b1125658.html", - "pubDate": "Fri, 08 Dec 2023 09:36:15 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2023-12-08T09:36:15+00:00", - "content": "

Fights broke out on the Jubilee Bridge and near to the Royal Festival Hall

", - "contentSnippet": "Fights broke out on the Jubilee Bridge and near to the Royal Festival Hall", - "guid": "b1125658", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-08T09:36:15.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2023-12-08T09:31:41+00:00", - "title": "Tory minister defends middle finger social media jibe at Labour", - "link": "https://www.standard.co.uk/news/politics/bbc-news-mps-twitter-labour-party-foreign-affairs-committee-b1125652.html", - "pubDate": "Fri, 08 Dec 2023 09:31:41 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2023-12-08T09:31:41+00:00", - "content": "Tory MPs joined criticism of a post attacking Labour with an image of a BBC News presenter giving the middle finger live on air.", - "contentSnippet": "Tory MPs joined criticism of a post attacking Labour with an image of a BBC News presenter giving the middle finger live on air.", - "guid": "b1125652", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-08T09:31:41.000Z" - }, - { - "creator": "Abha Shah", - "date": "2023-12-08T09:29:18+00:00", - "title": "Best gifts for your friends: fun and fabulous ideas to spoil your inner circle this Christmas", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-friend-gifts-b918233.html", - "pubDate": "Fri, 08 Dec 2023 09:29:18 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2023-12-08T09:29:18+00:00", - "content": "

Good friends deserve great gifts - especially at Christmas. Here\u2019s our edit of the best

", - "contentSnippet": "Good friends deserve great gifts - especially at Christmas. Here\u2019s our edit of the best", - "guid": "b918233", - "categories": [ - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-12-08T09:29:18.000Z" - }, - { - "creator": "Jonathan Prynn and Daniel O'Boyle", - "date": "2023-12-08T09:26:58+00:00", - "title": "Average two-year fixed mortgage interest rate drops below 6% for first time in six months", - "link": "https://www.standard.co.uk/business/mortgage-interest-rate-two-year-fix-moneyfacts-prices-property-houses-homes-borrowing-loan-b1125660.html", - "pubDate": "Fri, 08 Dec 2023 09:26:58 GMT", - "dc:creator": "Jonathan Prynn and Daniel O'Boyle", - "dc:date": "2023-12-08T09:26:58+00:00", - "content": "

The average rate soared to as high as 6.81% in July

", - "contentSnippet": "The average rate soared to as high as 6.81% in July", - "guid": "b1125660", - "categories": [ - "Business" - ], - "isoDate": "2023-12-08T09:26:58.000Z" - }, - { - "creator": "Bill McLoughlin", - "date": "2023-12-08T09:22:09+00:00", - "title": "President Biden's son Hunter has nine tax charges added to gun indictments\u00a0", - "link": "https://www.standard.co.uk/news/world/hunter-biden-tax-charges-joe-biden-son-gun-b1125653.html", - "pubDate": "Fri, 08 Dec 2023 09:22:09 GMT", - "dc:creator": "Bill McLoughlin", - "dc:date": "2023-12-08T09:22:09+00:00", - "content": "

Scandal-hit Hunter Biden already faces a number of firearms charges

", - "contentSnippet": "Scandal-hit Hunter Biden already faces a number of firearms charges", - "guid": "b1125653", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-12-08T09:22:09.000Z" - }, - { - "creator": "Sophie Wingate", - "date": "2023-12-08T09:21:49+00:00", - "title": "Minister hints at possible compromises with Tory rebels over Rwanda plan", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-rwanda-mps-prime-minister-government-b1125659.html", - "pubDate": "Fri, 08 Dec 2023 09:21:49 GMT", - "dc:creator": "Sophie Wingate", - "dc:date": "2023-12-08T09:21:49+00:00", - "content": "Tory MPs will vote to back Rishi Sunak\u2019s beleaguered asylum plan next week, new legal migration minister Tom Pursglove said.", - "contentSnippet": "Tory MPs will vote to back Rishi Sunak\u2019s beleaguered asylum plan next week, new legal migration minister Tom Pursglove said.", - "guid": "b1125659", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-08T09:21:49.000Z" - }, - { - "creator": "Victoria Moss", - "date": "2023-12-08T09:18:37+00:00", - "title": "Manchester does Chanel: Virginie Viard presents a modish M\u00e9tier d\u2019Arts collection", - "link": "https://www.standard.co.uk/lifestyle/fashion/chanel-metier-d-arts-collection-manchester-2024-b1125647.html", - "pubDate": "Fri, 08 Dec 2023 09:18:37 GMT", - "dc:creator": "Victoria Moss", - "dc:date": "2023-12-08T09:18:37+00:00", - "content": "

Chanel shut down the Northern Quarter to host its first British show since 2012. Victoria Moss got in the spirit with Vimto tasting and a Man U game before joining the Gallagher kids on the front row

", - "contentSnippet": "Chanel shut down the Northern Quarter to host its first British show since 2012. Victoria Moss got in the spirit with Vimto tasting and a Man U game before joining the Gallagher kids on the front row", - "guid": "b1125647", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2023-12-08T09:18:37.000Z" - }, - { - "creator": "Christopher McKeon", - "date": "2023-12-08T09:18:31+00:00", - "title": "What is the Government\u2019s new Rwanda plan and could it trigger an election?", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-rwanda-suella-braverman-supreme-court-government-b1125458.html", - "pubDate": "Fri, 08 Dec 2023 09:18:31 GMT", - "dc:creator": "Christopher McKeon", - "dc:date": "2023-12-08T09:18:31+00:00", - "content": "Rishi Sunak defended his fresh legislation amid questions about his authority over the Conservative Party.", - "contentSnippet": "Rishi Sunak defended his fresh legislation amid questions about his authority over the Conservative Party.", - "guid": "b1125458", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-08T09:18:31.000Z" - }, - { - "creator": "Daniel Keane,Matt Watts and Josh Salisbury", - "date": "2023-12-08T09:17:41+00:00", - "title": "Elizabeth Line: Major disruption expected near Paddington all morning after James Blunt and Rachel Riley caught up", - "link": "https://www.standard.co.uk/news/transport/elizabeth-line-trains-travel-delays-suspended-overhead-wire-damage-b1125595.html", - "pubDate": "Fri, 08 Dec 2023 09:17:41 GMT", - "dc:creator": "Daniel Keane,Matt Watts and Josh Salisbury", - "dc:date": "2023-12-08T09:17:41+00:00", - "content": "

Commuters face ongoing severe disruption on Elizabeth Line after passengers left stranded for hours on trains

", - "contentSnippet": "Commuters face ongoing severe disruption on Elizabeth Line after passengers left stranded for hours on trains", - "guid": "b1125595", - "categories": [ - "Transport", - "News" - ], - "isoDate": "2023-12-08T09:17:41.000Z" - }, - { - "creator": "George Flood", - "date": "2023-12-08T09:17:41+00:00", - "title": "Manchester United handed Amad Diallo injury boost as winger makes training return", - "link": "https://www.standard.co.uk/sport/football/man-utd-injury-news-amad-diallo-b1125648.html", - "pubDate": "Fri, 08 Dec 2023 09:17:41 GMT", - "dc:creator": "George Flood", - "dc:date": "2023-12-08T09:17:41+00:00", - "content": "

Talented Ivorian winger is closing in on a comeback from a knee injury suffered during pre-season

", - "contentSnippet": "Talented Ivorian winger is closing in on a comeback from a knee injury suffered during pre-season", - "guid": "b1125648", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T09:17:41.000Z" - }, - { - "creator": "Dom Smith", - "date": "2023-12-08T09:10:35+00:00", - "title": "Tyrick Mitchell injury: Crystal Palace to discover extent of muscle strain as defender assessed", - "link": "https://www.standard.co.uk/sport/football/tyrick-mitchell-injury-crystal-palace-hodgson-b1125649.html", - "pubDate": "Fri, 08 Dec 2023 09:10:35 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2023-12-08T09:10:35+00:00", - "content": "

The club's only recognised left-back is expected to miss the visit of Liverpool

", - "contentSnippet": "The club's only recognised left-back is expected to miss the visit of Liverpool", - "guid": "b1125649", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T09:10:35.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2023-12-08T09:10:18+00:00", - "title": "Rogue north London HMO landlord ordered to pay back \u00a320,000 to tenants", - "link": "https://www.standard.co.uk/news/london/tottenham-landlord-haringey-hmo-licensing-rent-repayment-b1125646.html", - "pubDate": "Fri, 08 Dec 2023 09:10:18 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2023-12-08T09:10:18+00:00", - "content": "

Landlord who flouted licensing rules ordered to repay one years' rent to tenants

", - "contentSnippet": "Landlord who flouted licensing rules ordered to repay one years' rent to tenants", - "guid": "b1125646", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-12-08T09:10:18.000Z" - }, - { - "creator": "Jonathan Kanengoni and El Hunt", - "date": "2023-12-08T09:07:37+00:00", - "title": "Our music recommendations: What we\u2019re listening to this week, from IDLES to Adrianne Lenker", - "link": "https://www.standard.co.uk/culture/music/music-recommendations-what-were-listening-to-now-b74803.html", - "pubDate": "Fri, 08 Dec 2023 09:07:37 GMT", - "dc:creator": "Jonathan Kanengoni and El Hunt", - "dc:date": "2023-12-08T09:07:37+00:00", - "content": "

These are the tunes you need in your life

", - "contentSnippet": "These are the tunes you need in your life", - "guid": "b74803", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-12-08T09:07:37.000Z" - }, - { - "creator": "Nancy Durrant and Vicky Jessop", - "date": "2023-12-08T09:06:45+00:00", - "title": "Our film and TV recommendations this week: from Smothered to Squid Game", - "link": "https://www.standard.co.uk/culture/film/film-tv-streaming-recommendations-what-to-watch-b30220.html", - "pubDate": "Fri, 08 Dec 2023 09:06:45 GMT", - "dc:creator": "Nancy Durrant and Vicky Jessop", - "dc:date": "2023-12-08T09:06:45+00:00", - "content": "

Streaming recommendations from the Standard\u2019s Culture team\u00a0

", - "contentSnippet": "Streaming recommendations from the Standard\u2019s Culture team", - "guid": "b30220", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-12-08T09:06:45.000Z" - }, - { - "creator": "Henry Saker-Clark", - "date": "2023-12-08T09:02:12+00:00", - "title": "Miner Anglo American reveals production cuts to combat cost rises", - "link": "https://www.standard.co.uk/business/business-news/miner-anglo-american-reveals-production-cuts-to-combat-cost-rises-b1125650.html", - "pubDate": "Fri, 08 Dec 2023 09:02:12 GMT", - "dc:creator": "Henry Saker-Clark", - "dc:date": "2023-12-08T09:02:12+00:00", - "content": "Shares in the FTSE 100 company slumped in early trading after it announced the move, which is set to result in a 4% drop in production next year.", - "contentSnippet": "Shares in the FTSE 100 company slumped in early trading after it announced the move, which is set to result in a 4% drop in production next year.", - "guid": "b1125650", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-12-08T09:02:12.000Z" - }, - { - "creator": "Nicholas Cecil and Matt Watts", - "date": "2023-12-08T08:58:57+00:00", - "title": "Tory HQ under fire from own MPs after using BBC newsreader's 'middle finger' gaffe to attack Labour ", - "link": "https://www.standard.co.uk/news/politics/tory-mps-criticised-for-labour-immigration-attack-using-bbc-newsreader-maryam-moshiri-middle-finger-post-social-media-b1125583.html", - "pubDate": "Fri, 08 Dec 2023 08:58:57 GMT", - "dc:creator": "Nicholas Cecil and Matt Watts", - "dc:date": "2023-12-08T08:58:57+00:00", - "content": "

MPs criticise social media taunt using BBC news anchor Maryam Moshiri's viral gaffe as 'beneath us'

", - "contentSnippet": "MPs criticise social media taunt using BBC news anchor Maryam Moshiri's viral gaffe as 'beneath us'", - "guid": "b1125583", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-08T08:58:57.000Z" - }, - { - "creator": "Jacob Phillips", - "date": "2023-12-08T08:58:56+00:00", - "title": "Two arrested in France over bedbug \"scam\" that tricked pensioners", - "link": "https://www.standard.co.uk/news/world/france-bedbug-infestation-arrests-scam-pensioners-b1125644.html", - "pubDate": "Fri, 08 Dec 2023 08:58:56 GMT", - "dc:creator": "Jacob Phillips", - "dc:date": "2023-12-08T08:58:56+00:00", - "content": "

The pair allegedly called their victims and said there was an infestation in their neighbourhood.

", - "contentSnippet": "The pair allegedly called their victims and said there was an infestation in their neighbourhood.", - "guid": "b1125644", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-12-08T08:58:56.000Z" - }, - { - "creator": "Adam Turner and Peter Bevan", - "date": "2023-12-08T08:56:11+00:00", - "title": "Best men\u2019s slippers: From UGG to Birkenstock, moccasin to sheepskin ", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/mens/best-mens-slippers-a3970611.html", - "pubDate": "Fri, 08 Dec 2023 08:56:11 GMT", - "dc:creator": "Adam Turner and Peter Bevan", - "dc:date": "2023-12-08T08:56:11+00:00", - "content": "

As the temperatures drop, stay snug with these stylish slippers

", - "contentSnippet": "As the temperatures drop, stay snug with these stylish slippers", - "guid": "a3970611", - "categories": [ - "Men's", - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-12-08T08:56:11.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2023-12-08T08:53:22+00:00", - "title": "Best rechargeable heated gilets for toasty warm outings in cold weather", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-heated-gilets-rechargeable-womens-mens-b1124600.html", - "pubDate": "Fri, 08 Dec 2023 08:53:22 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2023-12-08T08:53:22+00:00", - "content": "

Say yes to the heated vest

", - "contentSnippet": "Say yes to the heated vest", - "guid": "b1124600", - "categories": [ - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-12-08T08:53:22.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-12-08T08:50:29+00:00", - "title": "Tottenham: Furious Ange Postecoglou sets target for Newcastle clash after West Ham loss", - "link": "https://www.standard.co.uk/sport/football/postecoglou-tottenham-west-ham-newcastle-premier-league-2023-b1125622.html", - "pubDate": "Fri, 08 Dec 2023 08:50:29 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-12-08T08:50:29+00:00", - "content": "

The Spurs boss was very unhappy with lack of conviction in front of goal

", - "contentSnippet": "The Spurs boss was very unhappy with lack of conviction in front of goal", - "guid": "b1125622", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T08:50:29.000Z" - }, - { - "creator": "Barry Millington", - "date": "2023-12-08T08:48:39+00:00", - "title": "Solomon\u2019s Knot at Wigmore Hall review: a first-rate performance from the Baroque collective? Knot half", - "link": "https://www.standard.co.uk/culture/music/solomon-s-knot-wigmore-hall-review-baroque-b1125643.html", - "pubDate": "Fri, 08 Dec 2023 08:48:39 GMT", - "dc:creator": "Barry Millington", - "dc:date": "2023-12-08T08:48:39+00:00", - "content": "

Performed from memory, the excellent collective brought precision, skill and spontaneity to this programme of Bach's works

", - "contentSnippet": "Performed from memory, the excellent collective brought precision, skill and spontaneity to this programme of Bach's works", - "guid": "b1125643", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-12-08T08:48:39.000Z" - }, - { - "creator": "David Smyth", - "date": "2023-12-08T08:48:23+00:00", - "title": "Nicki Minaj \u2013\u00a0Pink Friday 2 album review: the biggest, brashest queen of rap shows she still has the throne", - "link": "https://www.standard.co.uk/culture/music/nicki-minaj-pink-friday-2-album-review-billie-eilish-rap-sequel-b1125642.html", - "pubDate": "Fri, 08 Dec 2023 08:48:23 GMT", - "dc:creator": "David Smyth", - "dc:date": "2023-12-08T08:48:23+00:00", - "content": "

The rapper enlists guests such as Billie Eilish, Drake and Lil Wayne \u2013\u00a0but the throne is still hers

", - "contentSnippet": "The rapper enlists guests such as Billie Eilish, Drake and Lil Wayne \u2013\u00a0but the throne is still hers", - "guid": "b1125642", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-12-08T08:48:23.000Z" - }, - { - "creator": "George Flood", - "date": "2023-12-08T08:41:42+00:00", - "title": "Heung-min Son injury: Tottenham captain delivers update after scare in West Ham defeat", - "link": "https://www.standard.co.uk/sport/football/heung-min-son-injury-tottenham-b1125639.html", - "pubDate": "Fri, 08 Dec 2023 08:41:42 GMT", - "dc:creator": "George Flood", - "dc:date": "2023-12-08T08:41:42+00:00", - "content": "

Spurs skipper was forced off late as Ange Postecoglou's depleted side threw away an early lead to lose again

", - "contentSnippet": "Spurs skipper was forced off late as Ange Postecoglou's depleted side threw away an early lead to lose again", - "guid": "b1125639", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T08:41:42.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2023-12-08T08:35:23+00:00", - "title": "Australian man dies after falling into pig-roasting hole at beach and being buried in sand", - "link": "https://www.standard.co.uk/news/world/australia-josh-taylor-queensland-bribie-island-buried-b1125641.html", - "pubDate": "Fri, 08 Dec 2023 08:35:23 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2023-12-08T08:35:23+00:00", - "content": "

Josh Taylor and friends had reportedly dug hole at beach to roast a pig

", - "contentSnippet": "Josh Taylor and friends had reportedly dug hole at beach to roast a pig", - "guid": "b1125641", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-12-08T08:35:23.000Z" - }, - { - "creator": "By George Lithgow", - "date": "2023-12-08T08:31:54+00:00", - "title": "Sister of Ruth Perry says Ofsted has not apologised for \u2018causing\u2019 her death", - "link": "https://www.standard.co.uk/news/crime/ofsted-reading-andrew-matthews-b1125645.html", - "pubDate": "Fri, 08 Dec 2023 08:31:54 GMT", - "dc:creator": "By George Lithgow", - "dc:date": "2023-12-08T08:31:54+00:00", - "content": "Julia Walters said she has been contacted by countless teachers going through \u2018traumatic inspections\u2019.", - "contentSnippet": "Julia Walters said she has been contacted by countless teachers going through \u2018traumatic inspections\u2019.", - "guid": "b1125645", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-08T08:31:54.000Z" - }, - { - "creator": "Dom Smith", - "date": "2023-12-08T08:26:27+00:00", - "title": "Bryan Mbeumo injury: Brentford star in race to be fit for Africa Cup of Nations with Cameroon", - "link": "https://www.standard.co.uk/sport/football/bryan-mbeumo-injury-brentford-africa-cup-on-nations-afcon-cameroon-fpl-b1125640.html", - "pubDate": "Fri, 08 Dec 2023 08:26:27 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2023-12-08T08:26:27+00:00", - "content": "

The forward has been ruled out for \"weeks\" and will hope to link up with Cameroon in a month

", - "contentSnippet": "The forward has been ruled out for \"weeks\" and will hope to link up with Cameroon in a month", - "guid": "b1125640", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T08:26:27.000Z" - }, - { - "creator": "City Staff", - "date": "2023-12-08T08:25:50+00:00", - "title": "FTSE 100 Live 08 December: Housebuilder Berkeley update, blue-chips steady ahead of US jobs figures", - "link": "https://www.standard.co.uk/business/ftse-100-live-berkeley-us-job-figures-pound-dollar-stocks-shares-interest-rate-mortgage-bank-of-england-b1125632.html", - "pubDate": "Fri, 08 Dec 2023 08:25:50 GMT", - "dc:creator": "City Staff", - "dc:date": "2023-12-08T08:25:50+00:00", - "content": "

", - "contentSnippet": "", - "guid": "b1125632", - "categories": [ - "Business" - ], - "isoDate": "2023-12-08T08:25:50.000Z" - }, - { - "creator": "Elliot Wagland and Debasish Sarmah", - "date": "2023-12-08T08:24:13+00:00", - "title": "Snap! Evening Standard: Best Photos of the Day from around the world ", - "link": "https://www.standard.co.uk/news/world/best-photos-of-the-day-from-around-the-world-b39639.html", - "pubDate": "Fri, 08 Dec 2023 08:24:13 GMT", - "dc:creator": "Elliot Wagland and Debasish Sarmah", - "dc:date": "2023-12-08T08:24:13+00:00", - "content": "

See the best images of the day from around the world.

", - "contentSnippet": "See the best images of the day from around the world.", - "guid": "b39639", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-12-08T08:24:13.000Z" - }, - { - "creator": "Neil Lancefield", - "date": "2023-12-08T08:15:21+00:00", - "title": "Train disruption continues after \u2018wartime\u2019 evacuation", - "link": "https://www.standard.co.uk/news/uk/services-paddington-rachel-riley-james-blunt-ladbroke-grove-b1125637.html", - "pubDate": "Fri, 08 Dec 2023 08:15:21 GMT", - "dc:creator": "Neil Lancefield", - "dc:date": "2023-12-08T08:15:21+00:00", - "content": "Friday morning commuters were warned their journeys may be delayed by up to 90 minutes.", - "contentSnippet": "Friday morning commuters were warned their journeys may be delayed by up to 90 minutes.", - "guid": "b1125637", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-08T08:15:21.000Z" - }, - { - "creator": "Bill McLoughlin", - "date": "2023-12-08T08:12:47+00:00", - "title": "Man sought for sexual assault on Plymouth to Paddington train", - "link": "https://www.standard.co.uk/news/crime/man-sexual-assault-train-plymouth-london-btp-b1125638.html", - "pubDate": "Fri, 08 Dec 2023 08:12:47 GMT", - "dc:creator": "Bill McLoughlin", - "dc:date": "2023-12-08T08:12:47+00:00", - "content": "

Officers at British Transport Police have released an image of a man they wish to speak to

", - "contentSnippet": "Officers at British Transport Police have released an image of a man they wish to speak to", - "guid": "b1125638", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-08T08:12:47.000Z" - }, - { - "creator": "City Staff", - "date": "2023-12-08T08:07:42+00:00", - "title": "FTSE 100 Live: Small cap trading resumes again after 'incident' halts shares twice, blue chips unaffected", - "link": "https://www.standard.co.uk/business/ftse-100-live-marstons-ashtead-moonpig-stocks-shares-pound-dollar-inflation-interest-rate-mortgages-bank-b1124710.html", - "pubDate": "Fri, 08 Dec 2023 08:07:42 GMT", - "dc:creator": "City Staff", - "dc:date": "2023-12-08T08:07:42+00:00", - "content": "

London shares have been hit by two separate outages today, though trading has continued as normal for members of the FTSE 100 and FTSE 250.

", - "contentSnippet": "London shares have been hit by two separate outages today, though trading has continued as normal for members of the FTSE 100 and FTSE 250.", - "guid": "b1124710", - "categories": [ - "Business" - ], - "isoDate": "2023-12-08T08:07:42.000Z" - }, - { - "creator": "City Staff", - "date": "2023-12-08T08:07:10+00:00", - "title": "FTSE 100 Live: Shares close flat, private equity in \u00a31.3bn swoop, Halifax house prices up", - "link": "https://www.standard.co.uk/business/ftse-100-live-halifax-house-price-index-aj-bell-pound-dollar-stocks-shares-interest-rate-mortgage-b1125314.html", - "pubDate": "Fri, 08 Dec 2023 08:07:10 GMT", - "dc:creator": "City Staff", - "dc:date": "2023-12-08T08:07:10+00:00", - "content": "

The UK house market continues to show signs of resilience after the lender Halifax reported average prices rose for the second month in a row, up 0.5% in November.

", - "contentSnippet": "The UK house market continues to show signs of resilience after the lender Halifax reported average prices rose for the second month in a row, up 0.5% in November.", - "guid": "b1125314", - "categories": [ - "Business" - ], - "isoDate": "2023-12-08T08:07:10.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-12-08T08:00:00+00:00", - "title": "Martin Scorsese\u2019s Killers Of The Flower Moon named best film of 2023", - "link": "https://www.standard.co.uk/culture/film/martin-scorsese-robert-de-niro-greta-gerwig-barbie-people-b1125636.html", - "pubDate": "Fri, 08 Dec 2023 08:00:00 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-12-08T08:00:00+00:00", - "content": "Rounding up the top five saw a suitable tie between Greta Gerwig\u2019s Barbie and Oppenheimer from Christopher Nolan.", - "contentSnippet": "Rounding up the top five saw a suitable tie between Greta Gerwig\u2019s Barbie and Oppenheimer from Christopher Nolan.", - "guid": "b1125636", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-12-08T08:00:00.000Z" - }, - { - "creator": "Daniel O'Boyle", - "date": "2023-12-08T07:58:39+00:00", - "title": "City trading house IG Group picks ex-Betfair boss Corcoran as new CEO", - "link": "https://www.standard.co.uk/business/city-trading-house-ig-group-picks-exbetfair-boss-corcoran-as-new-ceo-b1125635.html", - "pubDate": "Fri, 08 Dec 2023 07:58:39 GMT", - "dc:creator": "Daniel O'Boyle", - "dc:date": "2023-12-08T07:58:39+00:00", - "content": "

He replaces June Felix, who left due to poor health in August

", - "contentSnippet": "He replaces June Felix, who left due to poor health in August", - "guid": "b1125635", - "categories": [ - "Business" - ], - "isoDate": "2023-12-08T07:58:39.000Z" - }, - { - "creator": "Henry Saker-Clark", - "date": "2023-12-08T07:56:21+00:00", - "title": "House sales to stay \u2018subdued\u2019, warns Berkeley, as reservations slump", - "link": "https://www.standard.co.uk/business/business-news/house-sales-to-stay-subdued-warns-berkeley-as-reservations-slump-b1125634.html", - "pubDate": "Fri, 08 Dec 2023 07:56:21 GMT", - "dc:creator": "Henry Saker-Clark", - "dc:date": "2023-12-08T07:56:21+00:00", - "content": "The London-listed firm\u2019s profits lifted for the past half-year despite completing fewer homes.", - "contentSnippet": "The London-listed firm\u2019s profits lifted for the past half-year despite completing fewer homes.", - "guid": "b1125634", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-12-08T07:56:21.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2023-12-08T07:56:07+00:00", - "title": "England supporter at Wembley wanted after police officer left with broken collar bone in assault", - "link": "https://www.standard.co.uk/news/crime/england-german-wembley-stadium-police-assault-appeal-b1125633.html", - "pubDate": "Fri, 08 Dec 2023 07:56:07 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2023-12-08T07:56:07+00:00", - "content": "

Disorder broke out after fans clashed in Wembley ahead of game

", - "contentSnippet": "Disorder broke out after fans clashed in Wembley ahead of game", - "guid": "b1125633", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-08T07:56:07.000Z" - }, - { - "creator": "Pat Hurst", - "date": "2023-12-08T07:43:31+00:00", - "title": "\u2018Murder plan\u2019 to kill transgender teenager Brianna Ghey detailed in court", - "link": "https://www.standard.co.uk/news/crime/warrington-harold-shipman-pukka-manchester-crown-court-linear-park-b1125588.html", - "pubDate": "Fri, 08 Dec 2023 07:43:31 GMT", - "dc:creator": "Pat Hurst", - "dc:date": "2023-12-08T07:43:31+00:00", - "content": "Brianna, 16, was stabbed 28 times with a hunting knife during a \u2018frenzied\u2019 attack near Warrington in February.", - "contentSnippet": "Brianna, 16, was stabbed 28 times with a hunting knife during a \u2018frenzied\u2019 attack near Warrington in February.", - "guid": "b1125588", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-08T07:43:31.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2023-12-08T07:38:30+00:00", - "title": "Tottenham player ratings vs West Ham: Pedro Porro a livewire but Yves Bissouma needs to be cuter", - "link": "https://www.standard.co.uk/sport/football/tottenham-player-ratings-vs-west-ham-premier-league-2023-b1125605.html", - "pubDate": "Fri, 08 Dec 2023 07:38:30 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2023-12-08T07:38:30+00:00", - "content": "

Spurs see game turned around by big rivals

", - "contentSnippet": "Spurs see game turned around by big rivals", - "guid": "b1125605", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T07:38:30.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-12-08T07:37:40+00:00", - "title": "West Ham player ratings vs Tottenham: James Ward-Prowse phenomenal as Mohammed Kudus shines ", - "link": "https://www.standard.co.uk/sport/football/west-ham-player-ratings-vs-tottenham-premier-league-2023-james-ward-prowse-mohammed-kudus-b1125593.html", - "pubDate": "Fri, 08 Dec 2023 07:37:40 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-12-08T07:37:40+00:00", - "content": "

Hammers grab huge win at London rivals

", - "contentSnippet": "Hammers grab huge win at London rivals", - "guid": "b1125593", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-08T07:37:40.000Z" - }, - { - "creator": "Matt Majendie", - "date": "2023-12-08T07:37:02+00:00", - "title": "Jon Rahm: Masters champion joins LIV Golf in blockbuster \u00a3450m deal after dramatic U-turn", - "link": "https://www.standard.co.uk/sport/golf/jon-rahm-liv-golf-b1125630.html", - "pubDate": "Fri, 08 Dec 2023 07:37:02 GMT", - "dc:creator": "Matt Majendie", - "dc:date": "2023-12-08T07:37:02+00:00", - "content": "

Former world No1 admits his Ryder Cup future is at risk after becoming the Saudi-backed breakaway league's biggest coup yet

", - "contentSnippet": "Former world No1 admits his Ryder Cup future is at risk after becoming the Saudi-backed breakaway league's biggest coup yet", - "guid": "b1125630", - "categories": [ - "Golf", - "Sport" - ], - "isoDate": "2023-12-08T07:37:02.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2023-12-08T07:23:53+00:00", - "title": "Paddy McGuinness says his 'money has run out' as he discusses return to stand-up comedy", - "link": "https://www.standard.co.uk/showbiz/paddy-mcguinness-stand-up-tour-2024-top-gear-this-morning-b1125578.html", - "pubDate": "Fri, 08 Dec 2023 07:23:53 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2023-12-08T07:23:53+00:00", - "content": "

The comedian will hit the road for a series of dates in 2024/25, including one night at the London Palladium

", - "contentSnippet": "The comedian will hit the road for a series of dates in 2024/25, including one night at the London Palladium", - "guid": "b1125578", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-12-08T07:23:53.000Z" - }, - { - "creator": "Prudence Ivey", - "date": "2023-12-08T07:21:17+00:00", - "title": "Buying in London: 'should I base my house hunt around my favourite pub?'", - "link": "https://www.standard.co.uk/homesandproperty/buying-mortgages/buying-in-london-house-hunting-best-neighbourhood-b1125572.html", - "pubDate": "Fri, 08 Dec 2023 07:21:17 GMT", - "dc:creator": "Prudence Ivey", - "dc:date": "2023-12-08T07:21:17+00:00", - "content": "

Finding the right neighbourhood to buy in is tricky when you live in your dream area but can't afford it. Can one colleague's house hunt hack help?

", - "contentSnippet": "Finding the right neighbourhood to buy in is tricky when you live in your dream area but can't afford it. Can one colleague's house hunt hack help?", - "guid": "b1125572", - "categories": [ - "Buying & Mortgages", - "Homes & Property" - ], - "isoDate": "2023-12-08T07:21:17.000Z" - }, - { - "creator": "Rachel Vickers-Price", - "date": "2023-12-08T07:04:27+00:00", - "title": "Stranded Paddington commuter describes \u2018wartime\u2019 evacuation as \u2018surreal\u2019", - "link": "https://www.standard.co.uk/news/uk/people-paddington-elizabeth-line-national-rail-james-blunt-b1125627.html", - "pubDate": "Fri, 08 Dec 2023 07:04:27 GMT", - "dc:creator": "Rachel Vickers-Price", - "dc:date": "2023-12-08T07:04:27+00:00", - "content": "Hundreds were left stranded on trains between stations in the dark for multiple hours.", - "contentSnippet": "Hundreds were left stranded on trains between stations in the dark for multiple hours.", - "guid": "b1125627", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-08T07:04:27.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2023-12-08T06:55:31+00:00", - "title": "Boris Johnson denies using \u2018let the bodies pile high\u2019 phrase during pandemic", - "link": "https://www.standard.co.uk/news/politics/boris-johnson-dominic-cummings-london-b1125631.html", - "pubDate": "Fri, 08 Dec 2023 06:55:31 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2023-12-08T06:55:31+00:00", - "content": "Boris Johnson also rejected the suggestion that he considered injecting himself with Covid-19 on TV to show it did not pose a threat.", - "contentSnippet": "Boris Johnson also rejected the suggestion that he considered injecting himself with Covid-19 on TV to show it did not pose a threat.", - "guid": "b1125631", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-08T06:55:31.000Z" - }, - { - "creator": "Cillian Sherlock", - "date": "2023-12-08T06:52:25+00:00", - "title": "Public funeral for Shane MacGowan to take place in Ireland", - "link": "https://www.standard.co.uk/news/uk/ireland-dublin-london-mansion-house-kent-b1125625.html", - "pubDate": "Fri, 08 Dec 2023 06:52:25 GMT", - "dc:creator": "Cillian Sherlock", - "dc:date": "2023-12-08T06:52:25+00:00", - "content": "The Pogues frontman was due to celebrate his 66th birthday on Christmas Day.", - "contentSnippet": "The Pogues frontman was due to celebrate his 66th birthday on Christmas Day.", - "guid": "b1125625", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-08T06:52:25.000Z" - }, - { - "creator": "Pa Reporters and Nicholas Cecil", - "date": "2023-12-08T06:47:07+00:00", - "title": "Rishi Sunak under pressure as \u00a3290 million cost of grounded Rwanda scheme emerges", - "link": "https://www.standard.co.uk/news/politics/rwanda-rishi-sunak-prime-minister-cost-immigration-b1125619.html", - "pubDate": "Fri, 08 Dec 2023 06:47:07 GMT", - "dc:creator": "Pa Reporters and Nicholas Cecil", - "dc:date": "2023-12-08T06:47:07+00:00", - "content": "

The Government spent a further \u00a3100 million in the 2023-24 financial year while flights remained grounded amid a series of legal setbacks

", - "contentSnippet": "The Government spent a further \u00a3100 million in the 2023-24 financial year while flights remained grounded amid a series of legal setbacks", - "guid": "b1125619", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-08T06:47:07.000Z" - }, - { - "creator": "Pa Reporters", - "date": "2023-12-08T06:40:26+00:00", - "title": "Lord Cameron denies political interference as he urges US to pass Ukraine aid", - "link": "https://www.standard.co.uk/news/politics/david-cameron-ukraine-foreign-aid-us-political-interference-b1125629.html", - "pubDate": "Fri, 08 Dec 2023 06:40:26 GMT", - "dc:creator": "Pa Reporters", - "dc:date": "2023-12-08T06:40:26+00:00", - "content": "He said he was \u2018making an argument\u2019 in the hope the US will \u2018vote through that money\u2019.", - "contentSnippet": "He said he was \u2018making an argument\u2019 in the hope the US will \u2018vote through that money\u2019.", - "guid": "b1125629", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-08T06:40:26.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-12-08T06:11:37+00:00", - "title": "Charlie Hunnam \u2018begged\u2019 to switch roles on Rebel Moon after audition", - "link": "https://www.standard.co.uk/culture/film/charlie-hunnam-ed-skrein-london-british-b1125623.html", - "pubDate": "Fri, 08 Dec 2023 06:11:37 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-12-08T06:11:37+00:00", - "content": "The actor said he had originally auditioned for a different role.", - "contentSnippet": "The actor said he had originally auditioned for a different role.", - "guid": "b1125623", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-12-08T06:11:37.000Z" - }, - { - "creator": "Greg Pitcher", - "date": "2023-12-08T06:00:00+00:00", - "title": "The one renovation that could double the value of your house (and make an enemy of your neighbours)", - "link": "https://www.standard.co.uk/homesandproperty/interiors/basement-extensions-double-your-house-value-renovations-b1125510.html", - "pubDate": "Fri, 08 Dec 2023 06:00:00 GMT", - "dc:creator": "Greg Pitcher", - "dc:date": "2023-12-08T06:00:00+00:00", - "content": "

Digging down is the best way to send your house price soaring, according to new analysis

", - "contentSnippet": "Digging down is the best way to send your house price soaring, according to new analysis", - "guid": "b1125510", - "categories": [ - "Interiors", - "Homes & Property" - ], - "isoDate": "2023-12-08T06:00:00.000Z" - }, - { - "creator": "Joanna Taylor", - "date": "2023-12-08T06:00:00+00:00", - "title": "The new London restaurants you need to visit in 2024 ", - "link": "https://www.standard.co.uk/going-out/new-best-london-restaurants-2024-arlington-the-park-b1125408.html", - "pubDate": "Fri, 08 Dec 2023 06:00:00 GMT", - "dc:creator": "Joanna Taylor", - "dc:date": "2023-12-08T06:00:00+00:00", - "content": "

Hungry to know where to eat next year? Joanna Taylor shares the best new openings

", - "contentSnippet": "Hungry to know where to eat next year? Joanna Taylor shares the best new openings", - "guid": "b1125408", - "categories": [ - "Going Out" - ], - "isoDate": "2023-12-08T06:00:00.000Z" - }, - { - "creator": "Shelley von Strunckel", - "date": "2023-12-08T06:00:00+00:00", - "title": "Horoscope today: Your daily guide for Friday, December 8, 2023", - "link": "https://www.standard.co.uk/lifestyle/horoscope-daily-stars-shelley-von-strunckel-friday-december-8-2023-b1125156.html", - "pubDate": "Fri, 08 Dec 2023 06:00:00 GMT", - "dc:creator": "Shelley von Strunckel", - "dc:date": "2023-12-08T06:00:00+00:00", - "content": "

Read what the stars mean for you today, from Sagittarius to Gemini

", - "contentSnippet": "Read what the stars mean for you today, from Sagittarius to Gemini", - "guid": "b1120001", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-12-08T06:00:00.000Z" - }, - { - "creator": "Pa Reporter", - "date": "2023-12-08T03:38:51+00:00", - "title": "What the papers say \u2013 December 8", - "link": "https://www.standard.co.uk/news/uk/rwanda-prime-minister-daily-star-the-times-conservative-party-b1125628.html", - "pubDate": "Fri, 08 Dec 2023 03:38:51 GMT", - "dc:creator": "Pa Reporter", - "dc:date": "2023-12-08T03:38:51+00:00", - "content": "Here are the biggest stories making headlines this Friday.", - "contentSnippet": "Here are the biggest stories making headlines this Friday.", - "guid": "b1125628", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-08T03:38:51.000Z" - }, - { - "creator": "Tom Pilgrim", - "date": "2023-12-08T02:45:05+00:00", - "title": "Ruling due over Harry\u2019s bid to throw out publisher\u2019s defence to libel claim", - "link": "https://www.standard.co.uk/news/crime/home-office-mail-on-sunday-high-court-sandringham-b1125626.html", - "pubDate": "Fri, 08 Dec 2023 02:45:05 GMT", - "dc:creator": "Tom Pilgrim", - "dc:date": "2023-12-08T02:45:05+00:00", - "content": "The Duke of Sussex has sued Associated Newspapers Limited over a February 2022 Mail on Sunday article.", - "contentSnippet": "The Duke of Sussex has sued Associated Newspapers Limited over a February 2022 Mail on Sunday article.", - "guid": "b1125626", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-08T02:45:05.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-12-08T02:42:06+00:00", - "title": "Winner of Netflix\u2019s Squid Game uses jackpot to take care of underprivileged", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/netflix-squid-game-korean-b1125624.html", - "pubDate": "Fri, 08 Dec 2023 02:42:06 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-12-08T02:42:06+00:00", - "content": "The winner scooped the 4.56 million US dollar (\u00a33.61 million) reward.", - "contentSnippet": "The winner scooped the 4.56 million US dollar (\u00a33.61 million) reward.", - "guid": "b1125624", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-12-08T02:42:06.000Z" - }, - { - "creator": "August Graham", - "date": "2023-12-08T00:01:00+00:00", - "title": "Promised reforms to City \u2018feel like a damp squib\u2019, says Treasury Committee", - "link": "https://www.standard.co.uk/business/business-news/promised-reforms-to-city-feel-like-a-damp-squib-says-treasury-committee-b1125617.html", - "pubDate": "Fri, 08 Dec 2023 00:01:00 GMT", - "dc:creator": "August Graham", - "dc:date": "2023-12-08T00:01:00+00:00", - "content": "The group of MPs said several of the Chancellor\u2019s reforms were nothing more than publishing a document or welcoming a consultation.", - "contentSnippet": "The group of MPs said several of the Chancellor\u2019s reforms were nothing more than publishing a document or welcoming a consultation.", - "guid": "b1125617", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-12-08T00:01:00.000Z" - }, - { - "creator": "Danny Halpin", - "date": "2023-12-08T00:01:00+00:00", - "title": "2024 set to be \u2018milestone in climate history\u2019, says Met Office", - "link": "https://www.standard.co.uk/news/environment/met-office-el-nino-countries-pacific-ocean-earth-b1125621.html", - "pubDate": "Fri, 08 Dec 2023 00:01:00 GMT", - "dc:creator": "Danny Halpin", - "dc:date": "2023-12-08T00:01:00+00:00", - "content": "Greenhouse gas emissions, buoyed by El Nino, are likely to make next year even hotter than 2023.", - "contentSnippet": "Greenhouse gas emissions, buoyed by El Nino, are likely to make next year even hotter than 2023.", - "guid": "b1125621", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2023-12-08T00:01:00.000Z" - }, - { - "creator": "Sam Russell", - "date": "2023-12-08T00:01:00+00:00", - "title": "Section of sea wall removed to help protect saltmarsh habitat", - "link": "https://www.standard.co.uk/news/environment/essex-work-blackwater-estuary-b1125620.html", - "pubDate": "Fri, 08 Dec 2023 00:01:00 GMT", - "dc:creator": "Sam Russell", - "dc:date": "2023-12-08T00:01:00+00:00", - "content": "The work at Northey Island in Essex has opened up more space for seawater to come through and help slow a phenomenon called coastal squeeze.", - "contentSnippet": "The work at Northey Island in Essex has opened up more space for seawater to come through and help slow a phenomenon called coastal squeeze.", - "guid": "b1125620", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2023-12-08T00:01:00.000Z" - }, - { - "creator": "Alan Jones", - "date": "2023-12-08T00:01:00+00:00", - "title": "Fresh disruption to rail services as drivers\u2019 strikes continue", - "link": "https://www.standard.co.uk/business/business-news/fresh-disruption-to-rail-services-as-drivers-strikes-continue-b1125618.html", - "pubDate": "Fri, 08 Dec 2023 00:01:00 GMT", - "dc:creator": "Alan Jones", - "dc:date": "2023-12-08T00:01:00+00:00", - "content": "Services across northern England are the latest to be affected by industrial action.", - "contentSnippet": "Services across northern England are the latest to be affected by industrial action.", - "guid": "b1125618", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-12-08T00:01:00.000Z" - }, - { - "creator": "Ted Hennessey", - "date": "2023-12-07T23:43:46+00:00", - "title": "Culture Secretary says \u2018morally indefensible\u2019 TV fee prosecutions to be reviewed", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/bbc-culture-secretary-commons-people-government-b1125616.html", - "pubDate": "Thu, 07 Dec 2023 23:43:46 GMT", - "dc:creator": "Ted Hennessey", - "dc:date": "2023-12-07T23:43:46+00:00", - "content": "Lucy Frazer on Thursday announced a \u00a310.50 rise in the annual fee, lower than the BBC expected.", - "contentSnippet": "Lucy Frazer on Thursday announced a \u00a310.50 rise in the annual fee, lower than the BBC expected.", - "guid": "b1125616", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-12-07T23:43:46.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-12-07T23:40:24+00:00", - "title": "David Moyes confident 'big' win over Tottenham can be a turning point for West Ham", - "link": "https://www.standard.co.uk/sport/football/moyes-west-ham-tottenham-premier-league-2023-b1125614.html", - "pubDate": "Thu, 07 Dec 2023 23:40:24 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-12-07T23:40:24+00:00", - "content": "

Hammers come from behind to beat rivals

", - "contentSnippet": "Hammers come from behind to beat rivals", - "guid": "b1125614", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-07T23:40:24.000Z" - }, - { - "creator": "Harry Stedman", - "date": "2023-12-07T23:38:08+00:00", - "title": "Passengers stuck for hours on cold, dark trains following overhead cables fault", - "link": "https://www.standard.co.uk/news/uk/rachel-riley-london-james-blunt-celebrities-network-rail-b1125615.html", - "pubDate": "Thu, 07 Dec 2023 23:38:08 GMT", - "dc:creator": "Harry Stedman", - "dc:date": "2023-12-07T23:38:08+00:00", - "content": "Some passengers reported on social media being stuck for more than three hours while receiving no information from rail operators.", - "contentSnippet": "Some passengers reported on social media being stuck for more than three hours while receiving no information from rail operators.", - "guid": "b1125615", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-07T23:38:08.000Z" - }, - { - "creator": "Rebecca Black", - "date": "2023-12-07T23:34:44+00:00", - "title": "31-year-old man charged with murder of nursing assistant Odhran Kelly", - "link": "https://www.standard.co.uk/news/uk/people-b1125613.html", - "pubDate": "Thu, 07 Dec 2023 23:34:44 GMT", - "dc:creator": "Rebecca Black", - "dc:date": "2023-12-07T23:34:44+00:00", - "content": "A second 31-year-old man arrested as part of the investigation remains in police custody at this time.", - "contentSnippet": "A second 31-year-old man arrested as part of the investigation remains in police custody at this time.", - "guid": "b1125613", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-07T23:34:44.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-12-07T23:28:03+00:00", - "title": "Heung-min Son hits out at 'soft' Tottenham after 'unacceptable' defeat to West Ham", - "link": "https://www.standard.co.uk/sport/football/heung-min-son-tottenham-west-ham-b1125612.html", - "pubDate": "Thu, 07 Dec 2023 23:28:03 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-12-07T23:28:03+00:00", - "content": "

Spurs once again beaten despite taking lead

", - "contentSnippet": "Spurs once again beaten despite taking lead", - "guid": "b1125612", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-07T23:28:03.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-12-07T22:49:14+00:00", - "title": "Danielle Harold becomes latest contestant to be eliminated from I\u2019m A Celebrity", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/sam-thompson-tony-bellew-nella-rose-frankie-dettori-fred-sirieix-b1125606.html", - "pubDate": "Thu, 07 Dec 2023 22:49:14 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-12-07T22:49:14+00:00", - "content": "In the episode she spoke about how she got into acting.", - "contentSnippet": "In the episode she spoke about how she got into acting.", - "guid": "b1125606", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-12-07T22:49:14.000Z" - }, - { - "creator": "Sarah Ping", - "date": "2023-12-07T22:49:14+00:00", - "title": "William surprises mother on charity walk in memory of daughter", - "link": "https://www.standard.co.uk/news/uk/london-wales-monmouthshire-prince-of-wales-facebook-b1125611.html", - "pubDate": "Thu, 07 Dec 2023 22:49:14 GMT", - "dc:creator": "Sarah Ping", - "dc:date": "2023-12-07T22:49:14+00:00", - "content": "Emma Webb is walking from Wales to London to raise awareness of suicide prevention in memory of her daughter, Brodie.", - "contentSnippet": "Emma Webb is walking from Wales to London to raise awareness of suicide prevention in memory of her daughter, Brodie.", - "guid": "b1125611", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-07T22:49:14.000Z" - }, - { - "creator": "Standard Sport", - "date": "2023-12-07T22:41:18+00:00", - "title": "Premier League table 2023-24: Latest standings, fixtures and results for matchday 15", - "link": "https://www.standard.co.uk/sport/football/premier-league-table-2023-24-standings-fixtures-results-live-scores-matchday-15-b1124753.html", - "pubDate": "Thu, 07 Dec 2023 22:41:18 GMT", - "dc:creator": "Standard Sport", - "dc:date": "2023-12-07T22:41:18+00:00", - "content": "

Festive midweek action continues tonight

", - "contentSnippet": "Festive midweek action continues tonight", - "guid": "b1124753", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-07T22:41:18.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-12-07T22:40:10+00:00", - "title": "David Moyes' gamble pays off as West Ham hold their nerve to spring surprise on Tottenham", - "link": "https://www.standard.co.uk/sport/football/west-ham-tottenham-david-moyes-premier-league-b1125608.html", - "pubDate": "Thu, 07 Dec 2023 22:40:10 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-12-07T22:40:10+00:00", - "content": "

Dreadful start put to bed with stirring comeback - aided by just a little bit of luck to win London derby

", - "contentSnippet": "Dreadful start put to bed with stirring comeback - aided by just a little bit of luck to win London derby", - "guid": "b1125608", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-07T22:40:10.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2023-12-07T22:38:40+00:00", - "title": "Tottenham developing alarming habit after West Ham defeat extends winless run", - "link": "https://www.standard.co.uk/sport/football/tottenham-vs-west-ham-analysis-result-premier-league-2023-b1125609.html", - "pubDate": "Thu, 07 Dec 2023 22:38:40 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2023-12-07T22:38:40+00:00", - "content": "

Spurs squander another lead in frustrating defeat

", - "contentSnippet": "Spurs squander another lead in frustrating defeat", - "guid": "b1125609", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-07T22:38:40.000Z" - }, - { - "creator": "Harry Stedman", - "date": "2023-12-07T22:38:31+00:00", - "title": "Passengers stranded on trains in west London after fault with overhead cables", - "link": "https://www.standard.co.uk/news/uk/london-paddington-london-great-western-railway-reading-mark-harper-b1125604.html", - "pubDate": "Thu, 07 Dec 2023 22:38:31 GMT", - "dc:creator": "Harry Stedman", - "dc:date": "2023-12-07T22:38:31+00:00", - "content": "Great Western Railway said disruption was expected on the London Paddington to Reading line until the end of the day.", - "contentSnippet": "Great Western Railway said disruption was expected on the London Paddington to Reading line until the end of the day.", - "guid": "b1125604", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-07T22:38:31.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-12-07T22:36:10+00:00", - "title": "Hugh Grant and Tilda Swinton lead star-studded Chanel Metiers d\u2019Art show", - "link": "https://www.standard.co.uk/culture/film/hugh-grant-tilda-swinton-manchester-gene-gallagher-kristen-stewart-b1125610.html", - "pubDate": "Thu, 07 Dec 2023 22:36:10 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-12-07T22:36:10+00:00", - "content": "Thomas Street in Manchester was transformed into a catwalk for one of the fashion world\u2019s most prestigious events.", - "contentSnippet": "Thomas Street in Manchester was transformed into a catwalk for one of the fashion world\u2019s most prestigious events.", - "guid": "b1125610", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-12-07T22:36:10.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2023-12-07T22:31:54+00:00", - "title": "Rose Leslie and Keeley Hawes to star in BBC adaptation of Miss Austen", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/rose-leslie-keeley-hawes-bbc-jessica-hynes-alfred-enoch-b1125607.html", - "pubDate": "Thu, 07 Dec 2023 22:31:54 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2023-12-07T22:31:54+00:00", - "content": "The corporation has released first-look images.", - "contentSnippet": "The corporation has released first-look images.", - "guid": "b1125607", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-12-07T22:31:54.000Z" - }, - { - "creator": "Marc Mayo,Malik Ouzia and Dan Kilpatrick", - "date": "2023-12-07T22:28:51+00:00", - "title": "Tottenham vs West Ham LIVE! Premier League result, match stream and latest updates today", - "link": "https://www.standard.co.uk/sport/football/tottenham-vs-west-ham-live-stream-premier-league-2023-latest-score-result-watch-tv-team-news-b1125531.html", - "pubDate": "Thu, 07 Dec 2023 22:28:51 GMT", - "dc:creator": "Marc Mayo,Malik Ouzia and Dan Kilpatrick", - "dc:date": "2023-12-07T22:28:51+00:00", - "content": "

Hammers down Spurs with second-half comeback

", - "contentSnippet": "Hammers down Spurs with second-half comeback", - "guid": "b1125531", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-07T22:28:51.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-12-07T22:09:52+00:00", - "title": "Tottenham 1-2 West Ham: Hammers consign Spurs to all-too familiar comeback defeat", - "link": "https://www.standard.co.uk/sport/football/tottenham-west-ham-premier-league-2023-bowen-ward-prowse-romero-b1125596.html", - "pubDate": "Thu, 07 Dec 2023 22:09:52 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-12-07T22:09:52+00:00", - "content": "

Jarrod Bowen and James Ward-Prowse score in second half

", - "contentSnippet": "Jarrod Bowen and James Ward-Prowse score in second half", - "guid": "b1125596", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-07T22:09:52.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2023-12-07T22:04:10+00:00", - "title": " Tory chief warns right-wing MPs it would be 'insanity' to try to topple Rishi Sunak over Rwanda plan", - "link": "https://www.standard.co.uk/news/politics/robert-jenrick-resigns-rwanda-law-immigration-rishi-sunak-suella-braverman-tories-b1125333.html", - "pubDate": "Thu, 07 Dec 2023 22:04:10 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2023-12-07T22:04:10+00:00", - "content": "

Conservative party chairman calls for unity after Sunak's Government plunged into chaos by Robert Jenrick's resignation

", - "contentSnippet": "Conservative party chairman calls for unity after Sunak's Government plunged into chaos by Robert Jenrick's resignation", - "guid": "b1125333", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-07T22:04:10.000Z" - }, - { - "creator": "Josie Clarke", - "date": "2023-12-07T22:00:00+00:00", - "title": "\u2018Loyalty penalty\u2019 class action claim launched against four largest mobile firms", - "link": "https://www.standard.co.uk/news/tech/citizens-advice-vodafone-competition-and-markets-authority-b1125603.html", - "pubDate": "Thu, 07 Dec 2023 22:00:00 GMT", - "dc:creator": "Josie Clarke", - "dc:date": "2023-12-07T22:00:00+00:00", - "content": "The claim alleges that long-standing customers were overcharged for handsets beyond the end of their contractual term.", - "contentSnippet": "The claim alleges that long-standing customers were overcharged for handsets beyond the end of their contractual term.", - "guid": "b1125603", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-12-07T22:00:00.000Z" - }, - { - "creator": "Lucas Cumiskey", - "date": "2023-12-07T21:45:00+00:00", - "title": "Kate promotes \u2018special\u2019 Christmas Eve carol service", - "link": "https://www.standard.co.uk/news/uk/princess-wales-westminster-abbey-kate-ferdinand-christmas-tree-b1125602.html", - "pubDate": "Thu, 07 Dec 2023 21:45:00 GMT", - "dc:creator": "Lucas Cumiskey", - "dc:date": "2023-12-07T21:45:00+00:00", - "content": "The Princess of Wales will host the event at Westminster Abbey on Friday, which will be broadcast on December 24.", - "contentSnippet": "The Princess of Wales will host the event at Westminster Abbey on Friday, which will be broadcast on December 24.", - "guid": "b1125602", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-07T21:45:00.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2023-12-07T21:40:51+00:00", - "title": "Julia Bradbury shares health update following breast cancer battle", - "link": "https://www.standard.co.uk/showbiz/julia-bradbury-interview-breast-cancer-health-update-homelessness-virgin-media-o2-free-national-databank-b1125542.html", - "pubDate": "Thu, 07 Dec 2023 21:40:51 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2023-12-07T21:40:51+00:00", - "content": "

EXCLUSIVE The former Countryfile star says 'self-care is not selfish' as she reveals steps she's taking to 'reduce risk of reoccurrence'

", - "contentSnippet": "EXCLUSIVE The former Countryfile star says 'self-care is not selfish' as she reveals steps she's taking to 'reduce risk of reoccurrence'", - "guid": "b1125542", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-12-07T21:40:51.000Z" - }, - { - "creator": "Sarah Ward", - "date": "2023-12-07T21:30:00+00:00", - "title": "Winners of National Book Awards announced", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/glasgow-alastair-cook-b1125601.html", - "pubDate": "Thu, 07 Dec 2023 21:30:00 GMT", - "dc:creator": "Sarah Ward", - "dc:date": "2023-12-07T21:30:00+00:00", - "content": "The ceremony took place in Glasgow on Thursday night.", - "contentSnippet": "The ceremony took place in Glasgow on Thursday night.", - "guid": "b1125601", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-12-07T21:30:00.000Z" - }, - { - "creator": "Sarah Ward", - "date": "2023-12-07T21:09:14+00:00", - "title": "Sir Keir Starmer confronted by pro-Palestine activists in Glasgow", - "link": "https://www.standard.co.uk/news/politics/keir-starmer-glasgow-gaza-crowne-plaza-muslim-b1125600.html", - "pubDate": "Thu, 07 Dec 2023 21:09:14 GMT", - "dc:creator": "Sarah Ward", - "dc:date": "2023-12-07T21:09:14+00:00", - "content": "The Labour leader was accused of \u2018facilitating genocide\u2019 by voting against a ceasefire in Gaza.", - "contentSnippet": "The Labour leader was accused of \u2018facilitating genocide\u2019 by voting against a ceasefire in Gaza.", - "guid": "b1125600", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-07T21:09:14.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-12-07T20:57:08+00:00", - "title": "Russell Crowe, Rami Malek and Michael Shannon to lead historical drama Nuremberg", - "link": "https://www.standard.co.uk/culture/film/rami-malek-russell-crowe-michael-shannon-nuremberg-american-b1125598.html", - "pubDate": "Thu, 07 Dec 2023 20:57:08 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-12-07T20:57:08+00:00", - "content": "The film will see Malek as American psychiatrist Douglas Kelley, who is tasked with deciding whether Nazi prisoners are fit to stand trial.", - "contentSnippet": "The film will see Malek as American psychiatrist Douglas Kelley, who is tasked with deciding whether Nazi prisoners are fit to stand trial.", - "guid": "b1125598", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-12-07T20:57:08.000Z" - }, - { - "creator": "Ella Pickover", - "date": "2023-12-07T20:39:42+00:00", - "title": "Junior doctors\u2019 strike to affect patient care, NHS boss warns", - "link": "https://www.standard.co.uk/business/business-news/junior-doctors-strike-to-affect-patient-care-nhs-boss-warns-b1125547.html", - "pubDate": "Thu, 07 Dec 2023 20:39:42 GMT", - "dc:creator": "Ella Pickover", - "dc:date": "2023-12-07T20:39:42+00:00", - "content": "Amanda Pritchard said that the walkouts announced this week were at the top of the health service\u2019s \u2018worry list\u2019.", - "contentSnippet": "Amanda Pritchard said that the walkouts announced this week were at the top of the health service\u2019s \u2018worry list\u2019.", - "guid": "b1125547", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-12-07T20:39:42.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-12-07T20:33:11+00:00", - "title": "Adele says music is her hobby but her \u2018dream job is to be a script reader\u2019 in TV", - "link": "https://www.standard.co.uk/culture/music/adele-people-emmy-british-dua-lipa-b1125597.html", - "pubDate": "Thu, 07 Dec 2023 20:33:11 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-12-07T20:33:11+00:00", - "content": "The singer also said there is only one film she will ever want to star in but the creator is not \u2018mentally ready to write the script for it\u2019 yet.", - "contentSnippet": "The singer also said there is only one film she will ever want to star in but the creator is not \u2018mentally ready to write the script for it\u2019 yet.", - "guid": "b1125597", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-12-07T20:33:11.000Z" - }, - { - "creator": "Harry Stedman", - "date": "2023-12-07T20:14:07+00:00", - "title": "Man arrested after seven-year-old killed in Folkestone crash", - "link": "https://www.standard.co.uk/news/uk/kent-police-folkestone-dymchurch-bbc-b1125594.html", - "pubDate": "Thu, 07 Dec 2023 20:14:07 GMT", - "dc:creator": "Harry Stedman", - "dc:date": "2023-12-07T20:14:07+00:00", - "content": "The two-vehicle collision happened at around 5.35pm on Wednesday.", - "contentSnippet": "The two-vehicle collision happened at around 5.35pm on Wednesday.", - "guid": "b1125594", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-07T20:14:07.000Z" - }, - { - "creator": "Daniel Keane", - "date": "2023-12-07T20:02:37+00:00", - "title": "Man arrested after boy, 7, killed in suspected hit and run in Kent", - "link": "https://www.standard.co.uk/news/crime/manhunt-hit-run-driver-killed-boy-collecting-football-street-b1125527.html", - "pubDate": "Thu, 07 Dec 2023 20:02:37 GMT", - "dc:creator": "Daniel Keane", - "dc:date": "2023-12-07T20:02:37+00:00", - "content": "

William Brown was hit by a vehicle just after 5.30pm on Wednesday in Sandgate Esplanade

", - "contentSnippet": "William Brown was hit by a vehicle just after 5.30pm on Wednesday in Sandgate Esplanade", - "guid": "b1125527", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-07T20:02:37.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-12-07T19:53:43+00:00", - "title": "Adele jokes about being jet-lagged and \u2018ready for a drink\u2019 after receiving award", - "link": "https://www.standard.co.uk/culture/music/adele-dame-helen-mirren-british-americans-dame-b1125592.html", - "pubDate": "Thu, 07 Dec 2023 19:53:43 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-12-07T19:53:43+00:00", - "content": "Dame Helen Mirren presented the British singer-songwriter with the award on Thursday.", - "contentSnippet": "Dame Helen Mirren presented the British singer-songwriter with the award on Thursday.", - "guid": "b1125592", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-12-07T19:53:43.000Z" - }, - { - "creator": "Harry Stedman", - "date": "2023-12-07T19:40:51+00:00", - "title": "US marshal charged with drunken behaviour on flight to London", - "link": "https://www.standard.co.uk/news/uk/london-metropolitan-police-heathrow-airport-new-york-met-b1125591.html", - "pubDate": "Thu, 07 Dec 2023 19:40:51 GMT", - "dc:creator": "Harry Stedman", - "dc:date": "2023-12-07T19:40:51+00:00", - "content": "Michael Brereton was arrested by Metropolitan Police officers at Heathrow Airport on Wednesday morning.", - "contentSnippet": "Michael Brereton was arrested by Metropolitan Police officers at Heathrow Airport on Wednesday morning.", - "guid": "b1125591", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-07T19:40:51.000Z" - }, - { - "creator": "Tony Jones", - "date": "2023-12-07T19:27:13+00:00", - "title": "Santa Claus tells King he is on \u2018very good boy list\u2019", - "link": "https://www.standard.co.uk/news/uk/king-charles-santa-claus-ealing-broadway-the-king-b1125562.html", - "pubDate": "Thu, 07 Dec 2023 19:27:13 GMT", - "dc:creator": "Tony Jones", - "dc:date": "2023-12-07T19:27:13+00:00", - "content": "Ealing Broadway shopping centre was filled with crowds when they realised a famous visitor was perusing food and craft stalls.", - "contentSnippet": "Ealing Broadway shopping centre was filled with crowds when they realised a famous visitor was perusing food and craft stalls.", - "guid": "b1125562", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-07T19:27:13.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2023-12-07T19:00:57+00:00", - "title": "Best dystopian novels of all time that are must-read classics", - "link": "https://www.standard.co.uk/shopping/esbest/books-dvds/best-dystopian-novels-b1124811.html", - "pubDate": "Thu, 07 Dec 2023 19:00:57 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2023-12-07T19:00:57+00:00", - "content": "

Stranger than fiction no longer applies

", - "contentSnippet": "Stranger than fiction no longer applies", - "guid": "b1124811", - "categories": [ - "Books & DVDs", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-12-07T19:00:57.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2023-12-07T19:00:34+00:00", - "title": "Best dried flower bouquets brands to shop for the perfect decorations", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-dried-flower-bouquet-brands-b1124810.html", - "pubDate": "Thu, 07 Dec 2023 19:00:34 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2023-12-07T19:00:34+00:00", - "content": "

For beautiful blooms that will never fade

", - "contentSnippet": "For beautiful blooms that will never fade", - "guid": "b1124810", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-12-07T19:00:34.000Z" - }, - { - "creator": "Abha Shah", - "date": "2023-12-07T19:00:03+00:00", - "title": "Best bug zappers to keep insects at bay, tried and tested", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-bug-zappers-uk-b1118076.html", - "pubDate": "Thu, 07 Dec 2023 19:00:03 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2023-12-07T19:00:03+00:00", - "content": "

Game, set, match

", - "contentSnippet": "Game, set, match", - "guid": "b1118076", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-12-07T19:00:03.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2023-12-07T19:00:02+00:00", - "title": "Best automatic cat feeders for your feline friend, tried and tested", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/pets/best-automatic-cat-feeding-devices-b1125455.html", - "pubDate": "Thu, 07 Dec 2023 19:00:02 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2023-12-07T19:00:02+00:00", - "content": "

Make mealtimes fun for our fussy furry friends

", - "contentSnippet": "Make mealtimes fun for our fussy furry friends", - "guid": "b1125455", - "categories": [ - "Pets", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-12-07T19:00:02.000Z" - }, - { - "creator": "Nilima Marshall", - "date": "2023-12-07T19:00:00+00:00", - "title": "Wild birds \u2018distinguish between calls made by different African tribes\u2019 \u2013 study", - "link": "https://www.standard.co.uk/news/science/humans-african-scientists-university-of-cambridge-university-of-cape-town-b1125590.html", - "pubDate": "Thu, 07 Dec 2023 19:00:00 GMT", - "dc:creator": "Nilima Marshall", - "dc:date": "2023-12-07T19:00:00+00:00", - "content": "Greater honeyguides respond more readily to calls made by certain African tribespeople than those made by a different tribe.", - "contentSnippet": "Greater honeyguides respond more readily to calls made by certain African tribespeople than those made by a different tribe.", - "guid": "b1125590", - "categories": [ - "Science", - "News" - ], - "isoDate": "2023-12-07T19:00:00.000Z" - }, - { - "creator": "Lucas Cumiskey", - "date": "2023-12-07T18:52:28+00:00", - "title": "Kevin Sinfield completes MND fundraising ultra-marathon challenge", - "link": "https://www.standard.co.uk/news/uk/kevin-sinfield-mnd-twickenham-stadium-leeds-england-b1125564.html", - "pubDate": "Thu, 07 Dec 2023 18:52:28 GMT", - "dc:creator": "Lucas Cumiskey", - "dc:date": "2023-12-07T18:52:28+00:00", - "content": "The 43-year-old has finished his gruelling \u20187 in 7 in 7\u2019 ultra-marathon challenge.", - "contentSnippet": "The 43-year-old has finished his gruelling \u20187 in 7 in 7\u2019 ultra-marathon challenge.", - "guid": "b1125564", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-07T18:52:28.000Z" - }, - { - "creator": "Daniel Keane and Matt Watts", - "date": "2023-12-07T18:48:47+00:00", - "title": "Sutton murder: Teenager stabbed to death in south London high street named by police as Ilyas Habibi ", - "link": "https://www.standard.co.uk/news/crime/sutton-murder-teenager-stabbed-high-street-named-picture-student-ilyas-habibi-b1125570.html", - "pubDate": "Thu, 07 Dec 2023 18:48:47 GMT", - "dc:creator": "Daniel Keane and Matt Watts", - "dc:date": "2023-12-07T18:48:47+00:00", - "content": "

Student was fatally stabbed following 'altercation' minutes after leaving Sutton train station on Tuesday

", - "contentSnippet": "Student was fatally stabbed following 'altercation' minutes after leaving Sutton train station on Tuesday", - "guid": "b1125570", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-07T18:48:47.000Z" - }, - { - "creator": "Rod Minchin", - "date": "2023-12-07T18:48:46+00:00", - "title": "Former TV channel boss takes overdose amid bullying allegations", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/welsh-government-sport-secretary-of-state-westminster-b1125589.html", - "pubDate": "Thu, 07 Dec 2023 18:48:46 GMT", - "dc:creator": "Rod Minchin", - "dc:date": "2023-12-07T18:48:46+00:00", - "content": "Sian Doyle, who was in charge of Welsh language channel S4C, was found unresponsive on Thursday morning by her husband.", - "contentSnippet": "Sian Doyle, who was in charge of Welsh language channel S4C, was found unresponsive on Thursday morning by her husband.", - "guid": "b1125589", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-12-07T18:48:46.000Z" - }, - { - "creator": "Brian Farmer", - "date": "2023-12-07T18:36:53+00:00", - "title": "Storage of legal battle \u2018sterile gowns\u2019 costing \u00a33.2m per year, court hears", - "link": "https://www.standard.co.uk/news/politics/justice-department-of-health-and-social-care-michelle-mone-victoria-atkins-government-b1125495.html", - "pubDate": "Thu, 07 Dec 2023 18:36:53 GMT", - "dc:creator": "Brian Farmer", - "dc:date": "2023-12-07T18:36:53+00:00", - "content": "The Government has sued PPE Medpro \u2013 the firm which supplied the gowns \u2013 and Mr Justice Bright on Thursday oversaw a pre-trial hearing.", - "contentSnippet": "The Government has sued PPE Medpro \u2013 the firm which supplied the gowns \u2013 and Mr Justice Bright on Thursday oversaw a pre-trial hearing.", - "guid": "b1125495", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-07T18:36:53.000Z" - }, - { - "creator": "Jacob Phillips and Daniel Keane", - "date": "2023-12-07T18:35:31+00:00", - "title": "Counter terrorism police launch probe after Ulez camera in Sidcup 'blown up with IED'", - "link": "https://www.standard.co.uk/news/london/metropolitan-police-ulez-camera-vandalism-london-destruction-sidcup-b1125391.html", - "pubDate": "Thu, 07 Dec 2023 18:35:31 GMT", - "dc:creator": "Jacob Phillips and Daniel Keane", - "dc:date": "2023-12-07T18:35:31+00:00", - "content": "

Footage filmed at the scene shows a dented van and a chunk taken out of a brick wall

", - "contentSnippet": "Footage filmed at the scene shows a dented van and a chunk taken out of a brick wall", - "guid": "b1125391", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-12-07T18:35:31.000Z" - }, - { - "creator": "Abha Shah", - "date": "2023-12-07T18:21:41+00:00", - "title": "Best living room rugs to give your space an instant re-style", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-living-room-rugs-b1124724.html", - "pubDate": "Thu, 07 Dec 2023 18:21:41 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2023-12-07T18:21:41+00:00", - "content": "

Dressing from the floor up

", - "contentSnippet": "Dressing from the floor up", - "guid": "b1124724", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-12-07T18:21:41.000Z" - }, - { - "creator": "Brian Farmer", - "date": "2023-12-07T18:19:57+00:00", - "title": "Former Pc convicted over sex assaults and misconduct has jail term cut", - "link": "https://www.standard.co.uk/news/crime/greater-manchester-police-lawyers-liverpool-crown-court-court-of-appeal-london-b1125587.html", - "pubDate": "Thu, 07 Dec 2023 18:19:57 GMT", - "dc:creator": "Brian Farmer", - "dc:date": "2023-12-07T18:19:57+00:00", - "content": "Jurors heard that Adnan Ali was serving with Greater Manchester Police when the offences were committed.", - "contentSnippet": "Jurors heard that Adnan Ali was serving with Greater Manchester Police when the offences were committed.", - "guid": "b1125587", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-07T18:19:57.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2023-12-07T18:19:15+00:00", - "title": "Best New Year\u2019s Eve outfits for women to kick off 2024 in style", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-new-years-eve-outfits-b1116820.html", - "pubDate": "Thu, 07 Dec 2023 18:19:15 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2023-12-07T18:19:15+00:00", - "content": "

New year, new look

", - "contentSnippet": "New year, new look", - "guid": "b1116820", - "categories": [ - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-12-07T18:19:15.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-12-15T15:37:36+00:00", - "title": "Bryan Mbeumo: Thomas Frank confirms injured Brentford star will miss Africa Cup of Nations", - "link": "https://www.standard.co.uk/sport/football/mbeumo-injury-confirmed-brentford-afcon-2023-b1127298.html", - "pubDate": "Fri, 15 Dec 2023 15:37:36 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-12-15T15:37:36+00:00", - "content": "

Forward has added to Brentford manager's lengthy absentee list

", - "contentSnippet": "Forward has added to Brentford manager's lengthy absentee list", - "guid": "b1127298", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T15:37:36.000Z" - }, - { - "creator": "Matt Verri", - "date": "2023-12-15T15:34:03+00:00", - "title": "Roy Hodgson calls for Crystal Palace to strengthen in January transfer window to aid 'depleted' squad", - "link": "https://www.standard.co.uk/sport/football/roy-hodgson-crystal-palace-transfer-update-b1127293.html", - "pubDate": "Fri, 15 Dec 2023 15:34:03 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2023-12-15T15:34:03+00:00", - "content": "

The Palace boss is currently without a number of first-team regulars

", - "contentSnippet": "The Palace boss is currently without a number of first-team regulars", - "guid": "b1127293", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T15:34:03.000Z" - }, - { - "creator": "Martyn Landi", - "date": "2023-12-15T15:33:04+00:00", - "title": "Bereaved parents\u2019 anger at \u2018betrayal\u2019 over online safety law amendments", - "link": "https://www.standard.co.uk/news/tech/rishi-sunak-government-ofcom-michelle-donelan-prime-minister-b1127297.html", - "pubDate": "Fri, 15 Dec 2023 15:33:04 GMT", - "dc:creator": "Martyn Landi", - "dc:date": "2023-12-15T15:33:04+00:00", - "content": "Proposed changes to the Data Protection and Digital Information Bill have been called \u2018callous\u2019 and \u2018devastating\u2019 by the group.", - "contentSnippet": "Proposed changes to the Data Protection and Digital Information Bill have been called \u2018callous\u2019 and \u2018devastating\u2019 by the group.", - "guid": "b1127297", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-12-15T15:33:04.000Z" - }, - { - "creator": "Tom Davidson", - "date": "2023-12-15T15:33:00+00:00", - "title": "Piers Morgan fires back at judge and Prince Harry after hacking judgement", - "link": "https://www.standard.co.uk/news/uk/piers-morgan-prince-harry-hacking-mirror-group-newspapers-b1127294.html", - "pubDate": "Fri, 15 Dec 2023 15:33:00 GMT", - "dc:creator": "Tom Davidson", - "dc:date": "2023-12-15T15:33:00+00:00", - "content": "

Former Daily Mirror editor Piers Morgan has again insisted he has \"never hacked a phone or told anyone else to hack a phone\".

", - "contentSnippet": "Former Daily Mirror editor Piers Morgan has again insisted he has \"never hacked a phone or told anyone else to hack a phone\".", - "guid": "b1127294", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T15:33:00.000Z" - }, - { - "creator": "David Ellis,Joanna Taylor,Josh Barrie,Mike Daw,Clare Finney,Ben McCormack and Millie Milliken", - "date": "2023-12-15T15:30:47+00:00", - "title": "What the Going Out team are drinking this Christmas ", - "link": "https://www.standard.co.uk/going-out/foodanddrink/christmas-drinks-b1126475.html", - "pubDate": "Fri, 15 Dec 2023 15:30:47 GMT", - "dc:creator": "David Ellis,Joanna Taylor,Josh Barrie,Mike Daw,Clare Finney,Ben McCormack and Millie Milliken", - "dc:date": "2023-12-15T15:30:47+00:00", - "content": "

From Champagne to martinis, here's what the Standard's booziest desk will be knocking back this year

", - "contentSnippet": "From Champagne to martinis, here's what the Standard's booziest desk will be knocking back this year", - "guid": "b1126475", - "categories": [ - "Food + Drink", - "Going Out" - ], - "isoDate": "2023-12-15T15:30:47.000Z" - }, - { - "creator": "Robbie Smith", - "date": "2023-12-15T15:30:35+00:00", - "title": "OPINION - The End of Enlightenment review: the chaotic and bloody real story of the famous age", - "link": "https://www.standard.co.uk/culture/books/end-of-enlightenment-review-richard-whatmore-chaotic-b1127248.html", - "pubDate": "Fri, 15 Dec 2023 15:30:35 GMT", - "dc:creator": "Robbie Smith", - "dc:date": "2023-12-15T15:30:35+00:00", - "content": "

Some ideas are too successful for their own good. They take flight from their original context and are capacious to a dangerous degree. The Enlightenment, Richard Whatmore contends in this book, is just such an idea. Well yes, since it appears to describe a state of mind rather than, say, a single, big thought (like \u201cfree trade\u201d). We might think of another state-of-mind idea that also entails a very contested set of beliefs \u2014 \u201cwoke\u201d.

", - "contentSnippet": "Some ideas are too successful for their own good. They take flight from their original context and are capacious to a dangerous degree. The Enlightenment, Richard Whatmore contends in this book, is just such an idea. Well yes, since it appears to describe a state of mind rather than, say, a single, big thought (like \u201cfree trade\u201d). We might think of another state-of-mind idea that also entails a very contested set of beliefs \u2014 \u201cwoke\u201d.", - "guid": "b1127248", - "categories": [ - "Books", - "Culture" - ], - "isoDate": "2023-12-15T15:30:35.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2023-12-15T15:28:36+00:00", - "title": "Spotify starts testing AI playlists feature \u2013 how to check if you have it", - "link": "https://www.standard.co.uk/news/tech/spotify-ai-playlists-chatgpt-music-b1127288.html", - "pubDate": "Fri, 15 Dec 2023 15:28:36 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2023-12-15T15:28:36+00:00", - "content": "

Some users are now able to use a bot to generate playlists

", - "contentSnippet": "Some users are now able to use a bot to generate playlists", - "guid": "b1127288", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-12-15T15:28:36.000Z" - }, - { - "creator": "Joe Bromley", - "date": "2023-12-15T15:26:39+00:00", - "title": "Is Jennie Blackpink's most fashionable? From Buckingham Palace with the Princess of Wales to Jacquemus ", - "link": "https://www.standard.co.uk/lifestyle/fashion/jennie-kim-blackpink-fashionable-2023-buckingham-palace-jacquemus-b1127254.html", - "pubDate": "Fri, 15 Dec 2023 15:26:39 GMT", - "dc:creator": "Joe Bromley", - "dc:date": "2023-12-15T15:26:39+00:00", - "content": "

Jennie rubbed shoulders with the Princess of Wales, made her Met Gala debut and is now the face of Jacquemus' Christmas campaign \u2014 has she pipped Blackpink bandmates Jisoo, Ros\u00e9 and Lisa to the post as most fashionable in 2023, asks Joe Bromley

", - "contentSnippet": "Jennie rubbed shoulders with the Princess of Wales, made her Met Gala debut and is now the face of Jacquemus' Christmas campaign \u2014 has she pipped Blackpink bandmates Jisoo, Ros\u00e9 and Lisa to the post as most fashionable in 2023, asks Joe Bromley", - "guid": "b1127254", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2023-12-15T15:26:39.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-12-15T15:25:03+00:00", - "title": "Emmerdale stars hail Steve Halliwell a \u2018soap icon\u2019 after his death aged 77", - "link": "https://www.standard.co.uk/news/uk/itv-kelvin-fletcher-danny-miller-yorkshire-heart-b1127295.html", - "pubDate": "Fri, 15 Dec 2023 15:25:03 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-12-15T15:25:03+00:00", - "content": "The actor died \u2018peacefully with his loved ones around him\u2019, his family said in a statement issued by ITV.", - "contentSnippet": "The actor died \u2018peacefully with his loved ones around him\u2019, his family said in a statement issued by ITV.", - "guid": "b1127295", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T15:25:03.000Z" - }, - { - "creator": "Alex Young", - "date": "2023-12-15T15:20:47+00:00", - "title": "Nottingham Forest vs Tottenham: Prediction, team news, kick-off time, TV, live stream, h2h results, odds today", - "link": "https://www.standard.co.uk/sport/football/nottingham-forest-vs-tottenham-prediction-latest-team-news-kick-off-time-tv-live-stream-h2h-results-odds-premier-league-2023-preview-today-b1126480.html", - "pubDate": "Fri, 15 Dec 2023 15:20:47 GMT", - "dc:creator": "Alex Young", - "dc:date": "2023-12-15T15:20:47+00:00", - "content": "

Spurs kick off the Premier League weekend at the County Ground as they look to build on a big win over Newcastle

", - "contentSnippet": "Spurs kick off the Premier League weekend at the County Ground as they look to build on a big win over Newcastle", - "guid": "b1126480", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T15:20:47.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-12-15T15:15:37+00:00", - "title": "How to watch Nottingham Forest vs Tottenham: TV channel and live stream for Premier League game tonight", - "link": "https://www.standard.co.uk/sport/football/how-to-watch-nottingham-forest-vs-tottenham-tv-channel-live-stream-premier-league-tonight-b1126981.html", - "pubDate": "Fri, 15 Dec 2023 15:15:37 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-12-15T15:15:37+00:00", - "content": "

Spurs travel to the City Ground looking for a valuable away win on Friday Night Football

", - "contentSnippet": "Spurs travel to the City Ground looking for a valuable away win on Friday Night Football", - "guid": "b1126981", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T15:15:37.000Z" - }, - { - "creator": "Emily Pennink", - "date": "2023-12-15T15:12:58+00:00", - "title": "Three men jailed for life after footballer murdered in rival gangs feud", - "link": "https://www.standard.co.uk/news/crime/taylor-london-holloway-old-bailey-met-police-b1127292.html", - "pubDate": "Fri, 15 Dec 2023 15:12:58 GMT", - "dc:creator": "Emily Pennink", - "dc:date": "2023-12-15T15:12:58+00:00", - "content": "Taylor Cox, 19, was shot in an alleyway in north London in June 2021.", - "contentSnippet": "Taylor Cox, 19, was shot in an alleyway in north London in June 2021.", - "guid": "b1127292", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-15T15:12:58.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2023-12-15T15:09:51+00:00", - "title": "Tottenham XI vs Nottingham Forest: Confirmed team news, predicted lineup and injury latest today", - "link": "https://www.standard.co.uk/sport/football/tottenham-xi-vs-nottingham-forest-confirmed-team-news-predicted-lineup-injury-latest-2023-premier-league-today-b1127011.html", - "pubDate": "Fri, 15 Dec 2023 15:09:51 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2023-12-15T15:09:51+00:00", - "content": "

New injury blow could push Ange Postecoglou into naming unchanged side

", - "contentSnippet": "New injury blow could push Ange Postecoglou into naming unchanged side", - "guid": "b1127011", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T15:09:51.000Z" - }, - { - "creator": "Rebecca Black", - "date": "2023-12-15T15:09:05+00:00", - "title": "Eastwood hopes for deal to resurrect Stormont before Christmas", - "link": "https://www.standard.co.uk/news/uk/rishi-sunak-northern-ireland-stormont-dup-government-b1127291.html", - "pubDate": "Fri, 15 Dec 2023 15:09:05 GMT", - "dc:creator": "Rebecca Black", - "dc:date": "2023-12-15T15:09:05+00:00", - "content": "SDLP leader Colum Eastwood said he believes a deal could be done by the end of next week.", - "contentSnippet": "SDLP leader Colum Eastwood said he believes a deal could be done by the end of next week.", - "guid": "b1127291", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T15:09:05.000Z" - }, - { - "creator": "Josh Payne", - "date": "2023-12-15T15:08:15+00:00", - "title": "No evidence of third party involvement after body found in Gaynor Lord search", - "link": "https://www.standard.co.uk/news/uk/norwich-police-lancashire-god-lancashire-constabulary-b1127287.html", - "pubDate": "Fri, 15 Dec 2023 15:08:15 GMT", - "dc:creator": "Josh Payne", - "dc:date": "2023-12-15T15:08:15+00:00", - "content": "A body was recovered from the River Wensum in Norwich on Friday.", - "contentSnippet": "A body was recovered from the River Wensum in Norwich on Friday.", - "guid": "b1127287", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T15:08:15.000Z" - }, - { - "creator": "Simon Peach", - "date": "2023-12-15T15:08:07+00:00", - "title": "Erik ten Hag does not fear for Manchester United future ahead of daunting Liverpool trip", - "link": "https://www.standard.co.uk/sport/football/ten-hag-man-utd-liverpool-fc-latest-news-premier-league-2023-b1127290.html", - "pubDate": "Fri, 15 Dec 2023 15:08:07 GMT", - "dc:creator": "Simon Peach", - "dc:date": "2023-12-15T15:08:07+00:00", - "content": "

Dutchman insists Red Devils still have plenty to play for this season

", - "contentSnippet": "Dutchman insists Red Devils still have plenty to play for this season", - "guid": "b1127290", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T15:08:07.000Z" - }, - { - "creator": "Nick Clark", - "date": "2023-12-15T15:07:57+00:00", - "title": "Godzilla Minus One movie review: a blockbuster monster movie that swallows Hollywood's limp versions whole", - "link": "https://www.standard.co.uk/culture/film/godzilla-minus-one-review-monarch-legacy-of-monsters-b1127241.html", - "pubDate": "Fri, 15 Dec 2023 15:07:57 GMT", - "dc:creator": "Nick Clark", - "dc:date": "2023-12-15T15:07:57+00:00", - "content": "

With Godzilla set to turn 70 next year, this film does justice to one of cinema history's great creatures

", - "contentSnippet": "With Godzilla set to turn 70 next year, this film does justice to one of cinema history's great creatures", - "guid": "b1127241", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-12-15T15:07:57.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2023-12-15T15:06:33+00:00", - "title": "Chelsea: Mauricio Pochettino says critics can call him crazy for predicting Blues success", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-pochettino-boehly-crazy-b1127221.html", - "pubDate": "Fri, 15 Dec 2023 15:06:33 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2023-12-15T15:06:33+00:00", - "content": "

The manager says time and patience will see the Blues improve, in a message to Todd Boehly

", - "contentSnippet": "The manager says time and patience will see the Blues improve, in a message to Todd Boehly", - "guid": "b1127221", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T15:06:33.000Z" - }, - { - "creator": "Noah Vickers and Ross Lydall", - "date": "2023-12-15T15:05:46+00:00", - "title": "Sadiq Khan targets Tory rival Susan Hall with pickpocketing gag at Christmas bash", - "link": "https://www.standard.co.uk/news/london/sadiq-khan-joke-susan-hall-pickpocketing-tory-rival-christmas-party-b1127274.html", - "pubDate": "Fri, 15 Dec 2023 15:05:46 GMT", - "dc:creator": "Noah Vickers and Ross Lydall", - "dc:date": "2023-12-15T15:05:46+00:00", - "content": "

Mayor sees first CCTV cameras on Central line as he insists Tube is 'low crime environment'

", - "contentSnippet": "Mayor sees first CCTV cameras on Central line as he insists Tube is 'low crime environment'", - "guid": "b1127274", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-12-15T15:05:46.000Z" - }, - { - "creator": "Tom Pilgrim", - "date": "2023-12-15T15:03:21+00:00", - "title": "Judge accepts evidence that Piers Morgan knew about phone hacking at The Mirror", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/piers-morgan-omid-scobie-justice-kylie-minogue-high-court-b1127284.html", - "pubDate": "Fri, 15 Dec 2023 15:03:21 GMT", - "dc:creator": "Tom Pilgrim", - "dc:date": "2023-12-15T15:03:21+00:00", - "content": "Mr Morgan was editor of the Daily Mirror between 1995 and 2004.", - "contentSnippet": "Mr Morgan was editor of the Daily Mirror between 1995 and 2004.", - "guid": "b1127284", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-12-15T15:03:21.000Z" - }, - { - "creator": "Tom Davidson and Jacob Phillips", - "date": "2023-12-15T14:56:05+00:00", - "title": "Gaynor Lord: Police searching for missing mother of three find body in river", - "link": "https://www.standard.co.uk/news/uk/gaynor-lord-missing-police-river-norwich-body-b1127239.html", - "pubDate": "Fri, 15 Dec 2023 14:56:05 GMT", - "dc:creator": "Tom Davidson and Jacob Phillips", - "dc:date": "2023-12-15T14:56:05+00:00", - "content": "

Norfolk Police say 'there is no evidence of third party involvement' in her disappearance

", - "contentSnippet": "Norfolk Police say 'there is no evidence of third party involvement' in her disappearance", - "guid": "b1127239", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T14:56:05.000Z" - }, - { - "creator": "Craig Paton", - "date": "2023-12-15T14:54:41+00:00", - "title": "Police warn of falling officer numbers in Scotland without more funding", - "link": "https://www.standard.co.uk/news/politics/police-scotland-police-scotland-uk-government-budget-b1127238.html", - "pubDate": "Fri, 15 Dec 2023 14:54:41 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2023-12-15T14:54:41+00:00", - "content": "The Scottish Police Federation has urged the Deputy First Minister to boost the cash allocation for Police Scotland in next week\u2019s draft Budget.", - "contentSnippet": "The Scottish Police Federation has urged the Deputy First Minister to boost the cash allocation for Police Scotland in next week\u2019s draft Budget.", - "guid": "b1127238", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-15T14:54:41.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-12-15T14:51:37+00:00", - "title": "Arsenal vs Brighton: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/arsenal-fc-vs-brighton-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1126928.html", - "pubDate": "Fri, 15 Dec 2023 14:51:37 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-12-15T14:51:37+00:00", - "content": "

Arsenal can put the pressure on Premier League leaders Liverpool if they beat Brighton on Sunday.

", - "contentSnippet": "Arsenal can put the pressure on Premier League leaders Liverpool if they beat Brighton on Sunday.", - "guid": "b1126928", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:51:37.000Z" - }, - { - "creator": "Standard Sport", - "date": "2023-12-15T14:50:59+00:00", - "title": "Premier League table 2023-24: Latest standings, fixtures and results for matchday 17", - "link": "https://www.standard.co.uk/sport/football/premier-league-table-2023-24-standings-fixtures-results-live-scores-matchday-17-b1126973.html", - "pubDate": "Fri, 15 Dec 2023 14:50:59 GMT", - "dc:creator": "Standard Sport", - "dc:date": "2023-12-15T14:50:59+00:00", - "content": "

Weekend action begins on Friday night

", - "contentSnippet": "Weekend action begins on Friday night", - "guid": "b1126973", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:50:59.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-12-15T14:48:57+00:00", - "title": "How to watch PDC World Darts Championship 2024: TV channel and live stream", - "link": "https://www.standard.co.uk/sport/how-to-watch-pdc-world-darts-championship-2024-tv-channel-live-stream-b1127003.html", - "pubDate": "Fri, 15 Dec 2023 14:48:57 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-12-15T14:48:57+00:00", - "content": "

The festive arrows action begins at Ally Pally on Friday night as Michael Smith defends his title

", - "contentSnippet": "The festive arrows action begins at Ally Pally on Friday night as Michael Smith defends his title", - "guid": "b1127003", - "categories": [ - "Sport" - ], - "isoDate": "2023-12-15T14:48:57.000Z" - }, - { - "creator": "Alex Young", - "date": "2023-12-15T14:48:38+00:00", - "title": "PDC World Darts Championship 2024: Draw, full schedule today, how to watch and latest odds", - "link": "https://www.standard.co.uk/sport/world-darts-championship-2024-results-full-schedule-today-how-to-watch-tv-channel-latest-odds-b1126374.html", - "pubDate": "Fri, 15 Dec 2023 14:48:38 GMT", - "dc:creator": "Alex Young", - "dc:date": "2023-12-15T14:48:38+00:00", - "content": "

Alexandra Palace will entertain thousands across the festive period as the world's best darts players compete to win the sport's biggest prize

", - "contentSnippet": "Alexandra Palace will entertain thousands across the festive period as the world's best darts players compete to win the sport's biggest prize", - "guid": "b1126374", - "categories": [ - "Sport" - ], - "isoDate": "2023-12-15T14:48:38.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2023-12-15T14:48:28+00:00", - "title": "Tory tweet using image of BBC news anchor giving middle finger to attack Labour may have backfired, new study", - "link": "https://www.standard.co.uk/news/politics/tory-tweet-finger-middle-bbc-labour-immigration-attack-backfire-b1127271.html", - "pubDate": "Fri, 15 Dec 2023 14:48:28 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2023-12-15T14:48:28+00:00", - "content": "

The social media move sparked a row among Conservative MPs

", - "contentSnippet": "The social media move sparked a row among Conservative MPs", - "guid": "b1127271", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-15T14:48:28.000Z" - }, - { - "creator": "Matt Verri", - "date": "2023-12-15T14:48:06+00:00", - "title": "Who is Andre August? Jake Paul opponent's professional boxing record and ranking", - "link": "https://www.standard.co.uk/sport/boxing/who-is-andre-august-jake-paul-professional-boxing-record-ranking-age-b1127168.html", - "pubDate": "Fri, 15 Dec 2023 14:48:06 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2023-12-15T14:48:06+00:00", - "content": "

All you need to know about Paul's largely unknown opponent

", - "contentSnippet": "All you need to know about Paul's largely unknown opponent", - "guid": "b1127168", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-12-15T14:48:06.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-12-15T14:47:35+00:00", - "title": "How to watch Jake Paul vs Andre August: TV channel and live stream for boxing tonight", - "link": "https://www.standard.co.uk/sport/boxing/how-to-watch-jake-paul-vs-andre-august-tv-channel-live-stream-b1126976.html", - "pubDate": "Fri, 15 Dec 2023 14:47:35 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-12-15T14:47:35+00:00", - "content": "

'The Problem Child' fights a professional boxer for only the second time on Friday

", - "contentSnippet": "'The Problem Child' fights a professional boxer for only the second time on Friday", - "guid": "b1126976", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-12-15T14:47:35.000Z" - }, - { - "creator": "Matt Verri", - "date": "2023-12-15T14:47:17+00:00", - "title": "Jake Paul vs Andre August: Fight time, undercard, latest odds, prediction, ring walks tonight", - "link": "https://www.standard.co.uk/sport/boxing/jake-paul-vs-andre-august-fight-time-undercard-prediction-latest-odds-tonight-b1126439.html", - "pubDate": "Fri, 15 Dec 2023 14:47:17 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2023-12-15T14:47:17+00:00", - "content": "

Former YouTube star is looking to end a mixed 2023 on a high

", - "contentSnippet": "Former YouTube star is looking to end a mixed 2023 on a high", - "guid": "b1126439", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-12-15T14:47:17.000Z" - }, - { - "creator": "", - "date": "2023-12-15T14:47:11+00:00", - "title": "The Travel Corporation is on a mission to reduce the impact tourism has on the planet", - "link": "https://www.standard.co.uk/lifestyle/travel/sustainable-travel/sustainable-travel-corporation-industry-b1125557.html", - "pubDate": "Fri, 15 Dec 2023 14:47:11 GMT", - "dc:creator": "", - "dc:date": "2023-12-15T14:47:11+00:00", - "content": "

As an increasing number of travellers seek ethical experiences that reduce their carbon footprint, The Travel Corporation is making real-world progress

", - "contentSnippet": "As an increasing number of travellers seek ethical experiences that reduce their carbon footprint, The Travel Corporation is making real-world progress", - "guid": "b1125557", - "categories": [ - "Sustainable Travel", - "Travel", - "Lifestyle" - ], - "isoDate": "2023-12-15T14:47:11.000Z" - }, - { - "creator": "Dom Smith", - "date": "2023-12-15T14:46:43+00:00", - "title": "Arsenal XI vs Brighton: Gabriel Martinelli latest, predicted lineup, confirmed team news, injury update", - "link": "https://www.standard.co.uk/sport/football/arsenal-fc-xi-vs-brighton-gabriel-martinelli-latest-predicted-lineup-confirmed-team-news-injury-update-premier-league-b1127258.html", - "pubDate": "Fri, 15 Dec 2023 14:46:43 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2023-12-15T14:46:43+00:00", - "content": "

The Brazilian missed Arsenal's midweek trip to PSV due to illness

", - "contentSnippet": "The Brazilian missed Arsenal's midweek trip to PSV due to illness", - "guid": "b1127258", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:46:43.000Z" - }, - { - "creator": "Jacob Phillips", - "date": "2023-12-15T14:46:29+00:00", - "title": "Man with facial injuries found dead at park in Greenwich", - "link": "https://www.standard.co.uk/news/crime/greenwich-police-facial-injuries-death-plumstead-shrewsbury-park-b1127280.html", - "pubDate": "Fri, 15 Dec 2023 14:46:29 GMT", - "dc:creator": "Jacob Phillips", - "dc:date": "2023-12-15T14:46:29+00:00", - "content": "

A man was found dead with facial injuries, Met Police said

", - "contentSnippet": "A man was found dead with facial injuries, Met Police said", - "guid": "b1127280", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-15T14:46:29.000Z" - }, - { - "creator": "Victoria Moss", - "date": "2023-12-15T14:44:40+00:00", - "title": "Barbie, fashion daddies and Kylie Jenner's year in style \u2014 how 2023 was your wardrobe? ", - "link": "https://www.standard.co.uk/lifestyle/fashion/fashion-2023-fashion-trends-b1126937.html", - "pubDate": "Fri, 15 Dec 2023 14:44:40 GMT", - "dc:creator": "Victoria Moss", - "dc:date": "2023-12-15T14:44:40+00:00", - "content": "

Barbie, fashion daddies, Kylie Jenner and cowboy Crocs, were you paying attention to 2023's fashion moments?

", - "contentSnippet": "Barbie, fashion daddies, Kylie Jenner and cowboy Crocs, were you paying attention to 2023's fashion moments?", - "guid": "b1126937", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2023-12-15T14:44:40.000Z" - }, - { - "creator": "", - "date": "2023-12-15T14:43:06+00:00", - "title": "Vote now in The 12 Pets of Christmas competition for your chance to win \u00a350 worth of vouchers", - "link": "https://www.standard.co.uk/esrewards/vote-now-in-the-12-pets-of-christmas-competition-b1123041.html", - "pubDate": "Fri, 15 Dec 2023 14:43:06 GMT", - "dc:creator": "", - "dc:date": "2023-12-15T14:43:06+00:00", - "content": "

Voting is now open to find the most joyful cat and dog

", - "contentSnippet": "Voting is now open to find the most joyful cat and dog", - "guid": "b1123041", - "categories": [ - "ES REWARDS" - ], - "isoDate": "2023-12-15T14:43:06.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-12-15T14:37:05+00:00", - "title": "Liverpool vs Manchester United: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/liverpool-fc-vs-man-united-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1127142.html", - "pubDate": "Fri, 15 Dec 2023 14:37:05 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-12-15T14:37:05+00:00", - "content": "

Liverpool welcome bitter rivals Manchester United to Anfield in another huge Premier League clash.

", - "contentSnippet": "Liverpool welcome bitter rivals Manchester United to Anfield in another huge Premier League clash.", - "guid": "b1127142", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:37:05.000Z" - }, - { - "creator": "Neil Lancefield", - "date": "2023-12-15T14:35:00+00:00", - "title": "Workers at airport popular with UK holidaymakers arrested over luggage thefts", - "link": "https://www.standard.co.uk/news/uk/workers-guardia-civil-spanish-screens-ryanair-b1127282.html", - "pubDate": "Fri, 15 Dec 2023 14:35:00 GMT", - "dc:creator": "Neil Lancefield", - "dc:date": "2023-12-15T14:35:00+00:00", - "content": "Airport workers are said to have forced open suitcases, taken out valuables and shut them, leaving no sign of tampering.", - "contentSnippet": "Airport workers are said to have forced open suitcases, taken out valuables and shut them, leaving no sign of tampering.", - "guid": "b1127282", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T14:35:00.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-12-15T14:34:02+00:00", - "title": "Liverpool XI vs Manchester United: Predicted lineup, confirmed team news and injury latest for Premier League", - "link": "https://www.standard.co.uk/sport/football/liverpool-fc-xi-vs-man-united-predicted-lineup-confirmed-team-news-injury-latest-premier-league-2023-b1127151.html", - "pubDate": "Fri, 15 Dec 2023 14:34:02 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-12-15T14:34:02+00:00", - "content": "

Reds to recall big names for huge derby

", - "contentSnippet": "Reds to recall big names for huge derby", - "guid": "b1127151", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:34:02.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-12-15T14:32:44+00:00", - "title": "Man City vs Crystal Palace: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/man-city-vs-crystal-palace-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1126929.html", - "pubDate": "Fri, 15 Dec 2023 14:32:44 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-12-15T14:32:44+00:00", - "content": "

Eagles head north looking for upset on rough run of form

", - "contentSnippet": "Eagles head north looking for upset on rough run of form", - "guid": "b1126929", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:32:44.000Z" - }, - { - "creator": "Dom Smith", - "date": "2023-12-15T14:32:07+00:00", - "title": "Mikel Arteta praises 'really good process' after Arsenal boss escapes touchline ban", - "link": "https://www.standard.co.uk/sport/football/mikel-arteta-arsenal-fc-fa-charge-b1127278.html", - "pubDate": "Fri, 15 Dec 2023 14:32:07 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2023-12-15T14:32:07+00:00", - "content": "

Arteta was cleared of wrongdoing on Thursday and will not face any punishment

", - "contentSnippet": "Arteta was cleared of wrongdoing on Thursday and will not face any punishment", - "guid": "b1127278", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:32:07.000Z" - }, - { - "creator": "Craig Paton", - "date": "2023-12-15T14:29:43+00:00", - "title": "Amber weather warning forecasts heavy rain for north-west Scotland", - "link": "https://www.standard.co.uk/news/environment/met-office-scotland-highlands-police-scotland-b1127281.html", - "pubDate": "Fri, 15 Dec 2023 14:29:43 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2023-12-15T14:29:43+00:00", - "content": "Those travelling in the area were asked to consider if the trip was necessary.", - "contentSnippet": "Those travelling in the area were asked to consider if the trip was necessary.", - "guid": "b1127281", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2023-12-15T14:29:43.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2023-12-15T14:29:32+00:00", - "title": "Chelsea XI vs Sheffield United: Nunku debut, predicted lineup, confirmed team news, injury latest", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-xi-vs-sheffield-united-nkunku-debut-predicted-lineup-confirmed-team-news-injury-latest-2023-premier-league-b1127255.html", - "pubDate": "Fri, 15 Dec 2023 14:29:32 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2023-12-15T14:29:32+00:00", - "content": "

The Blues could be without eight players for the visit of the Premier League's bottom club.

", - "contentSnippet": "The Blues could be without eight players for the visit of the Premier League's bottom club.", - "guid": "b1127255", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:29:32.000Z" - }, - { - "creator": "Alex Young", - "date": "2023-12-15T14:26:55+00:00", - "title": "Chelsea vs Sheffield United: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-vs-sheffield-united-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1126700.html", - "pubDate": "Fri, 15 Dec 2023 14:26:55 GMT", - "dc:creator": "Alex Young", - "dc:date": "2023-12-15T14:26:55+00:00", - "content": "

The Blues and the Blades test their equally miserable recent form against each other at Stamford Bridge

", - "contentSnippet": "The Blues and the Blades test their equally miserable recent form against each other at Stamford Bridge", - "guid": "b1126700", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T14:26:55.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-12-15T14:26:14+00:00", - "title": "Emmerdale star Steve Halliwell dies aged 77", - "link": "https://www.standard.co.uk/showbiz/steve-halliwell-dead-emmerdale-zak-dingle-itv-b1127265.html", - "pubDate": "Fri, 15 Dec 2023 14:26:14 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-12-15T14:26:14+00:00", - "content": "

The actor made his first appearance on the ITV serial drama in October 1994

", - "contentSnippet": "The actor made his first appearance on the ITV serial drama in October 1994", - "guid": "b1127265", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-12-15T14:26:14.000Z" - }, - { - "creator": "Jon Weeks", - "date": "2023-12-15T14:25:17+00:00", - "title": "Baldur's Gate 3 tops Bafta Game Awards nominations - Tech & Science Daily Podcast", - "link": "https://www.standard.co.uk/comment/podcasts/baldurs-gate-3-bafta-game-awards-nominations-b1127242.html", - "pubDate": "Fri, 15 Dec 2023 14:25:17 GMT", - "dc:creator": "Jon Weeks", - "dc:date": "2023-12-15T14:25:17+00:00", - "content": "

All the stories from Friday's episode of the Tech & Science Daily podcast.

", - "contentSnippet": "All the stories from Friday's episode of the Tech & Science Daily podcast.", - "guid": "b1127242", - "categories": [ - "Podcasts", - "Comment" - ], - "isoDate": "2023-12-15T14:25:17.000Z" - }, - { - "creator": "By Grinne N. Aodha", - "date": "2023-12-15T14:23:49+00:00", - "title": "Minister fails to clarify if cut in Ukraine support could make more homeless", - "link": "https://www.standard.co.uk/news/uk/government-ukraine-ambassador-cabinet-european-b1127279.html", - "pubDate": "Fri, 15 Dec 2023 14:23:49 GMT", - "dc:creator": "By Grinne N. Aodha", - "dc:date": "2023-12-15T14:23:49+00:00", - "content": "Darragh O\u2019Brien said that the Government was \u2018working as a collective\u2019 on the issue.", - "contentSnippet": "Darragh O\u2019Brien said that the Government was \u2018working as a collective\u2019 on the issue.", - "guid": "b1127279", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T14:23:49.000Z" - }, - { - "creator": "Neil Lancefield", - "date": "2023-12-15T14:23:00+00:00", - "title": "Breaking down on hard shoulder-free smart motorways is three times more risky", - "link": "https://www.standard.co.uk/news/uk/rishi-sunak-england-ksi-m25-smart-b1127165.html", - "pubDate": "Fri, 15 Dec 2023 14:23:00 GMT", - "dc:creator": "Neil Lancefield", - "dc:date": "2023-12-15T14:23:00+00:00", - "content": "Fourteen of the 80 motorway deaths in England in 2021 happened on sections without a permanent hard shoulder.", - "contentSnippet": "Fourteen of the 80 motorway deaths in England in 2021 happened on sections without a permanent hard shoulder.", - "guid": "b1127165", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T14:23:00.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-12-15T14:22:28+00:00", - "title": "Imelda Staunton on playing the late Queen in The Crown: \u2018It felt very present\u2019", - "link": "https://www.standard.co.uk/showbiz/imelda-staunton-netflix-the-crown-queen-elizabeth-ending-b1127199.html", - "pubDate": "Fri, 15 Dec 2023 14:22:28 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-12-15T14:22:28+00:00", - "content": "The veteran actress portrays the former monarch in the final two series of the hit Netflix royal drama.", - "contentSnippet": "The veteran actress portrays the former monarch in the final two series of the hit Netflix royal drama.", - "guid": "b1127199", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-12-15T14:22:28.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-12-15T14:19:13+00:00", - "title": "England collapse as India build 478-run lead on day two of Mumbai Test", - "link": "https://www.standard.co.uk/sport/cricket/india-vs-england-women-cricket-day-two-b1127276.html", - "pubDate": "Fri, 15 Dec 2023 14:19:13 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-12-15T14:19:13+00:00", - "content": "

Only Nat Sciver-Brunt managed more than 20 with the bat on another tough day in Mumbai

", - "contentSnippet": "Only Nat Sciver-Brunt managed more than 20 with the bat on another tough day in Mumbai", - "guid": "b1127276", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2023-12-15T14:19:13.000Z" - }, - { - "creator": "Ross Lydall", - "date": "2023-12-15T14:13:40+00:00", - "title": "'Boris buses' slammed for poor green credentials to be used on Sadiq Khan's Superloop route", - "link": "https://www.standard.co.uk/news/london/superloop-boris-bus-sadiq-khan-london-routemasters-b1127201.html", - "pubDate": "Fri, 15 Dec 2023 14:13:40 GMT", - "dc:creator": "Ross Lydall", - "dc:date": "2023-12-15T14:13:40+00:00", - "content": "

City Hall said on Friday that all buses on the SL3 would be \"Ulez compliant euro VI hybrid buses\"

", - "contentSnippet": "City Hall said on Friday that all buses on the SL3 would be \"Ulez compliant euro VI hybrid buses\"", - "guid": "b1127201", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-12-15T14:13:40.000Z" - }, - { - "creator": "Vicky Jessop", - "date": "2023-12-15T14:07:42+00:00", - "title": "BAFTA Games Awards 2024 longlist: Baldur's Gate 3 and Alan Wake II lead the pack", - "link": "https://www.standard.co.uk/culture/gaming/bafta-games-awards-2024-baldurs-gate-3-alan-wake-2-b1127051.html", - "pubDate": "Fri, 15 Dec 2023 14:07:42 GMT", - "dc:creator": "Vicky Jessop", - "dc:date": "2023-12-15T14:07:42+00:00", - "content": "

Sixty games have been put forward for what will be BAFTA Games 20th anniversary year

", - "contentSnippet": "Sixty games have been put forward for what will be BAFTA Games 20th anniversary year", - "guid": "b1127051", - "categories": [ - "Gaming", - "Culture" - ], - "isoDate": "2023-12-15T14:07:42.000Z" - }, - { - "creator": "Bill McLoughlin", - "date": "2023-12-15T14:04:30+00:00", - "title": "Denmark widens investigation over Europe terror plot after 'Hamas members' arrested in Germany", - "link": "https://www.standard.co.uk/news/world/hamas-germany-denmark-terrorism-middle-east-b1127256.html", - "pubDate": "Fri, 15 Dec 2023 14:04:30 GMT", - "dc:creator": "Bill McLoughlin", - "dc:date": "2023-12-15T14:04:30+00:00", - "content": "

Two suspects are being held in Denmark and four others are the target of a terror investigation

", - "contentSnippet": "Two suspects are being held in Denmark and four others are the target of a terror investigation", - "guid": "b1127256", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-12-15T14:04:30.000Z" - }, - { - "creator": "Tracey Emin", - "date": "2023-12-15T14:04:00+00:00", - "title": "OPINION - Tracey Emin: 'I was away from home, alone and in unbearable pain. Then I realised I\u2019d shit myself'", - "link": "https://www.standard.co.uk/comment/tracey-emin-pain-lover-relationship-cancer-death-b1127207.html", - "pubDate": "Fri, 15 Dec 2023 14:04:00 GMT", - "dc:creator": "Tracey Emin", - "dc:date": "2023-12-15T14:04:00+00:00", - "content": "

This week I cried a few times. The first time was strangely unexpected. I was talking to the person I love when something in me snapped and I realised I was thousands of miles away. I wanted them to jump through the screen of my phone and hold me.

", - "contentSnippet": "This week I cried a few times. The first time was strangely unexpected. I was talking to the person I love when something in me snapped and I realised I was thousands of miles away. I wanted them to jump through the screen of my phone and hold me.", - "guid": "b1127207", - "categories": [ - "Comment" - ], - "isoDate": "2023-12-15T14:04:00.000Z" - }, - { - "creator": "Max McLean", - "date": "2023-12-15T13:58:16+00:00", - "title": "Christmas comes early for \u00a313m lottery winner", - "link": "https://www.standard.co.uk/news/uk/lotto-b1127269.html", - "pubDate": "Fri, 15 Dec 2023 13:58:16 GMT", - "dc:creator": "Max McLean", - "dc:date": "2023-12-15T13:58:16+00:00", - "content": "\u2018It\u2019s even more magical in the lead-up to Christmas,\u2019 said Andy Carter, senior winners\u2019 advisor at the National Lottery.", - "contentSnippet": "\u2018It\u2019s even more magical in the lead-up to Christmas,\u2019 said Andy Carter, senior winners\u2019 advisor at the National Lottery.", - "guid": "b1127269", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T13:58:16.000Z" - }, - { - "creator": "Tom Wilkinson", - "date": "2023-12-15T13:57:16+00:00", - "title": "Teacher\u2019s death by escaped cow a \u2018salutary lesson\u2019 for farmers, judge says", - "link": "https://www.standard.co.uk/news/crime/newcastle-crown-court-teacher-northumberland-son-ashtonunderlyne-b1127270.html", - "pubDate": "Fri, 15 Dec 2023 13:57:16 GMT", - "dc:creator": "Tom Wilkinson", - "dc:date": "2023-12-15T13:57:16+00:00", - "content": "Marian Clode, 61, was tossed over a gate by a cow which charged her while on a walk in Northumberland in 2016.", - "contentSnippet": "Marian Clode, 61, was tossed over a gate by a cow which charged her while on a walk in Northumberland in 2016.", - "guid": "b1127270", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-15T13:57:16.000Z" - }, - { - "creator": "Carl Markham", - "date": "2023-12-15T13:55:18+00:00", - "title": "Manchester United problems 'not important' to Jurgen Klopp as Liverpool look to inflict more damage", - "link": "https://www.standard.co.uk/sport/football/liverpool-fc-vs-man-united-latest-news-premier-league-2023-b1127268.html", - "pubDate": "Fri, 15 Dec 2023 13:55:18 GMT", - "dc:creator": "Carl Markham", - "dc:date": "2023-12-15T13:55:18+00:00", - "content": "

Red Devils were humbled on their last trip to Anfield

", - "contentSnippet": "Red Devils were humbled on their last trip to Anfield", - "guid": "b1127268", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T13:55:18.000Z" - }, - { - "creator": "Tristan Kirk", - "date": "2023-12-15T13:55:09+00:00", - "title": "Where\u2019s the justice? Heart-rending letters from vulnerable are ignored under 'broken' court system", - "link": "https://www.standard.co.uk/news/uk/single-justice-procedure-letters-ignored-court-system-uk-ministry-of-justice-b1127227.html", - "pubDate": "Fri, 15 Dec 2023 13:55:09 GMT", - "dc:creator": "Tristan Kirk", - "dc:date": "2023-12-15T13:55:09+00:00", - "content": "

Standard investigation reveals appeals from the vulnerable and elderly not routinely looked at by prosecutors under controversial single justice procedure

", - "contentSnippet": "Standard investigation reveals appeals from the vulnerable and elderly not routinely looked at by prosecutors under controversial single justice procedure", - "guid": "b1127227", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T13:55:09.000Z" - }, - { - "creator": "Maryam Kara", - "date": "2023-12-15T13:52:22+00:00", - "title": "What are engineered stone bench tops and why is Australia banning them?", - "link": "https://www.standard.co.uk/news/world/engineered-stone-bench-tops-australia-ban-b1127174.html", - "pubDate": "Fri, 15 Dec 2023 13:52:22 GMT", - "dc:creator": "Maryam Kara", - "dc:date": "2023-12-15T13:52:22+00:00", - "content": "

Breathing in large amounts of silica dust from manufacturing and fitting them can be extremely damaging

", - "contentSnippet": "Breathing in large amounts of silica dust from manufacturing and fitting them can be extremely damaging", - "guid": "b1127174", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-12-15T13:52:22.000Z" - }, - { - "creator": "Callum Parke", - "date": "2023-12-15T13:50:12+00:00", - "title": "Case of double-killer who committed third murder while on licence reviewed", - "link": "https://www.standard.co.uk/news/crime/nottinghamshire-worksop-nottingham-crown-court-b1127267.html", - "pubDate": "Fri, 15 Dec 2023 13:50:12 GMT", - "dc:creator": "Callum Parke", - "dc:date": "2023-12-15T13:50:12+00:00", - "content": "The Probation Service wants to see if lessons can be learned from the case of Lawrence Bierton, who killed Pauline Quinn while on licence.", - "contentSnippet": "The Probation Service wants to see if lessons can be learned from the case of Lawrence Bierton, who killed Pauline Quinn while on licence.", - "guid": "b1127267", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-15T13:50:12.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-12-15T13:48:49+00:00", - "title": "Manchester United XI vs Liverpool: Harry Maguire injury latest, predicted lineup and confirmed team news", - "link": "https://www.standard.co.uk/sport/football/man-utd-xi-vs-liverpool-fc-harry-maguire-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1126889.html", - "pubDate": "Fri, 15 Dec 2023 13:48:49 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-12-15T13:48:49+00:00", - "content": "

Illness and injuries severely restricting Red Devils ahead of derby

", - "contentSnippet": "Illness and injuries severely restricting Red Devils ahead of derby", - "guid": "b1126889", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T13:48:49.000Z" - }, - { - "creator": "Sarah Ward", - "date": "2023-12-15T13:43:55+00:00", - "title": "Students saddle up to learn how to ride on \u2018RoboCob\u2019", - "link": "https://www.standard.co.uk/news/tech/students-west-lothian-b1127264.html", - "pubDate": "Fri, 15 Dec 2023 13:43:55 GMT", - "dc:creator": "Sarah Ward", - "dc:date": "2023-12-15T13:43:55+00:00", - "content": "A \u00a3100,000 horse simulator has been unveiled at Scotland\u2019s Rural College in West Lothian.", - "contentSnippet": "A \u00a3100,000 horse simulator has been unveiled at Scotland\u2019s Rural College in West Lothian.", - "guid": "b1127264", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-12-15T13:43:55.000Z" - }, - { - "creator": "Lydia Chantler-Hicks", - "date": "2023-12-15T13:30:34+00:00", - "title": "Ballistic missile fired from rebel-held Yemen strikes cargo ship in Red Sea", - "link": "https://www.standard.co.uk/news/world/ballistic-missile-yemen-red-sea-cargo-ship-israel-hamas-gaza-war-b1127233.html", - "pubDate": "Fri, 15 Dec 2023 13:30:34 GMT", - "dc:creator": "Lydia Chantler-Hicks", - "dc:date": "2023-12-15T13:30:34+00:00", - "content": "

The incidents further escalate a campaign by Yemen's Iranian-backed Houthi rebels

", - "contentSnippet": "The incidents further escalate a campaign by Yemen's Iranian-backed Houthi rebels", - "guid": "b1127233", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-12-15T13:30:34.000Z" - }, - { - "creator": "Claire Hayhurst", - "date": "2023-12-15T13:27:51+00:00", - "title": "Flowers laid at industrial estate where person died following explosion and fire", - "link": "https://www.standard.co.uk/news/uk/flowers-south-wales-police-emergency-services-cctv-b1127261.html", - "pubDate": "Fri, 15 Dec 2023 13:27:51 GMT", - "dc:creator": "Claire Hayhurst", - "dc:date": "2023-12-15T13:27:51+00:00", - "content": "South Wales Police declared a major incident after the incident at the two-storey building.", - "contentSnippet": "South Wales Police declared a major incident after the incident at the two-storey building.", - "guid": "b1127261", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T13:27:51.000Z" - }, - { - "creator": "Lola Christina Alao", - "date": "2023-12-15T13:24:39+00:00", - "title": "Two rare parrots hatch at Chester zoo in 'pivotal moment' for future of the species", - "link": "https://www.standard.co.uk/news/uk/chester-zoo-rare-parrots-hatch-lorikeets-b1127249.html", - "pubDate": "Fri, 15 Dec 2023 13:24:39 GMT", - "dc:creator": "Lola Christina Alao", - "dc:date": "2023-12-15T13:24:39+00:00", - "content": "

The species is listed as endangered by the IUCN and BirdLife International

", - "contentSnippet": "The species is listed as endangered by the IUCN and BirdLife International", - "guid": "b1127249", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T13:24:39.000Z" - }, - { - "creator": "Jitendra Joshi", - "date": "2023-12-15T13:23:07+00:00", - "title": "Rishi Sunak to talk illegal migration with premiers of Italy and Albania after latest Channel tragedy", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-migrant-channel-death-small-boats-italy-albania-migration-b1127246.html", - "pubDate": "Fri, 15 Dec 2023 13:23:07 GMT", - "dc:creator": "Jitendra Joshi", - "dc:date": "2023-12-15T13:23:07+00:00", - "content": "

The Rome trip comes after a woman died in the Channel as a boat sank on Friday morning

", - "contentSnippet": "The Rome trip comes after a woman died in the Channel as a boat sank on Friday morning", - "guid": "b1127246", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-15T13:23:07.000Z" - }, - { - "creator": "Vicky Jessop", - "date": "2023-12-15T13:22:50+00:00", - "title": "The Society of the Snow: how 16 men survived an Andes plane crash that should have killed them", - "link": "https://www.standard.co.uk/culture/film/society-of-the-snow-andes-plane-crash-netflix-true-story-b1126797.html", - "pubDate": "Fri, 15 Dec 2023 13:22:50 GMT", - "dc:creator": "Vicky Jessop", - "dc:date": "2023-12-15T13:22:50+00:00", - "content": "

They survived for more than two months in the depths of winter. Now their story is being made into a film

", - "contentSnippet": "They survived for more than two months in the depths of winter. Now their story is being made into a film", - "guid": "b1126797", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-12-15T13:22:50.000Z" - }, - { - "creator": "Neil Lancefield", - "date": "2023-12-15T13:22:30+00:00", - "title": "Two people in hospital after jumping from windows to escape e-bike house fire", - "link": "https://www.standard.co.uk/news/london/ebike-fire-hospital-london-fire-brigade-hackney-b1127250.html", - "pubDate": "Fri, 15 Dec 2023 13:22:30 GMT", - "dc:creator": "Neil Lancefield", - "dc:date": "2023-12-15T13:22:30+00:00", - "content": "

Most of the three-storey home in Hackney, east London was destroyed by the blaze, London Fire Brigade (LFB) said

", - "contentSnippet": "Most of the three-storey home in Hackney, east London was destroyed by the blaze, London Fire Brigade (LFB) said", - "guid": "b1127250", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-12-15T13:22:30.000Z" - }, - { - "creator": "Callum Parke", - "date": "2023-12-15T13:14:48+00:00", - "title": "Ex-partner guilty of murdering Sarah Henshaw and dumping her body near lay-by", - "link": "https://www.standard.co.uk/news/crime/derbyshire-chesterfield-phone-data-ilkeston-derby-crown-court-b1127252.html", - "pubDate": "Fri, 15 Dec 2023 13:14:48 GMT", - "dc:creator": "Callum Parke", - "dc:date": "2023-12-15T13:14:48+00:00", - "content": "Jurors took just over three hours to convict Darren Hall of murder.", - "contentSnippet": "Jurors took just over three hours to convict Darren Hall of murder.", - "guid": "b1127252", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-15T13:14:48.000Z" - }, - { - "creator": "Jacob Phillips", - "date": "2023-12-15T13:08:07+00:00", - "title": "Plans to cut over 100 seats from Curzon Mayfair and launch dine-and-watch tipped for approval", - "link": "https://www.standard.co.uk/news/london/westminster-city-council-curzon-mayfair-b1127203.html", - "pubDate": "Fri, 15 Dec 2023 13:08:07 GMT", - "dc:creator": "Jacob Phillips", - "dc:date": "2023-12-15T13:08:07+00:00", - "content": "

Plans to cut over 100 seats from \u201cone of London\u2019s cultural gems\u201d have been recommended by council officers

", - "contentSnippet": "Plans to cut over 100 seats from \u201cone of London\u2019s cultural gems\u201d have been recommended by council officers", - "guid": "b1127203", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-12-15T13:08:07.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2023-12-15T13:05:04+00:00", - "title": "PlayStation Plus games for December include GTA 5", - "link": "https://www.standard.co.uk/culture/gaming/playstation-plus-games-new-list-december-2023-gta-5-b1127245.html", - "pubDate": "Fri, 15 Dec 2023 13:05:04 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2023-12-15T13:05:04+00:00", - "content": "

A Final Fantasy spinoff from last year is also among the newcomers to the gaming service

", - "contentSnippet": "A Final Fantasy spinoff from last year is also among the newcomers to the gaming service", - "guid": "b1127245", - "categories": [ - "Gaming", - "Culture" - ], - "isoDate": "2023-12-15T13:05:04.000Z" - }, - { - "creator": "Tristan Kirk", - "date": "2023-12-15T13:02:19+00:00", - "title": "Prince Harry calls out Piers Morgan and wants fresh phone hacking probe after court victory", - "link": "https://www.standard.co.uk/news/uk/prince-harry-phone-hacking-mirror-piers-morgan-high-court-police-crime-b1127237.html", - "pubDate": "Fri, 15 Dec 2023 13:02:19 GMT", - "dc:creator": "Tristan Kirk", - "dc:date": "2023-12-15T13:02:19+00:00", - "content": "

Prince Harry said he has \"slayed a dragon\" after High Court victory over phone hacking

", - "contentSnippet": "Prince Harry said he has \"slayed a dragon\" after High Court victory over phone hacking", - "guid": "b1127237", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T13:02:19.000Z" - }, - { - "creator": "George Flood", - "date": "2023-12-15T13:00:55+00:00", - "title": "Man City injury update: Erling Haaland, Kevin De Bruyne and Jeremy Doku latest news and return dates", - "link": "https://www.standard.co.uk/sport/football/man-city-injury-update-erling-haaland-de-bruyne-doku-latest-news-return-dates-b1126654.html", - "pubDate": "Fri, 15 Dec 2023 13:00:55 GMT", - "dc:creator": "George Flood", - "dc:date": "2023-12-15T13:00:55+00:00", - "content": "

Erling Haaland could miss another two matches with a foot injury as the Club World Cup looms

", - "contentSnippet": "Erling Haaland could miss another two matches with a foot injury as the Club World Cup looms", - "guid": "b1126654", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T13:00:55.000Z" - }, - { - "creator": "Pa Reporters", - "date": "2023-12-15T12:58:56+00:00", - "title": "Migrant dies and second in critical condition after boat sinks in Channel", - "link": "https://www.standard.co.uk/news/politics/government-french-calais-rishi-sunak-people-b1127251.html", - "pubDate": "Fri, 15 Dec 2023 12:58:56 GMT", - "dc:creator": "Pa Reporters", - "dc:date": "2023-12-15T12:58:56+00:00", - "content": "One person could not be resuscitated and a second was flown by helicopter to a Calais hospital in a life-threatening condition.", - "contentSnippet": "One person could not be resuscitated and a second was flown by helicopter to a Calais hospital in a life-threatening condition.", - "guid": "b1127251", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-15T12:58:56.000Z" - }, - { - "creator": "Juliet Kinsman", - "date": "2023-12-15T12:55:25+00:00", - "title": "OPINION - Despite COP28's climate hypocrisy, it taught us more about sustainable travel", - "link": "https://www.standard.co.uk/comment/cop28-sustainable-travel-marshall-islands-b1127087.html", - "pubDate": "Fri, 15 Dec 2023 12:55:25 GMT", - "dc:creator": "Juliet Kinsman", - "dc:date": "2023-12-15T12:55:25+00:00", - "content": "

Was Dubai\u2019s Sustainability Disneyland a COP out? Not quite: on the fringes, there were voices making persuasive cases for sustainable travel

", - "contentSnippet": "Was Dubai\u2019s Sustainability Disneyland a COP out? Not quite: on the fringes, there were voices making persuasive cases for sustainable travel", - "guid": "b1127087", - "categories": [ - "Comment" - ], - "isoDate": "2023-12-15T12:55:25.000Z" - }, - { - "creator": "Lizzie Edmonds", - "date": "2023-12-15T12:50:06+00:00", - "title": "Ncuti Gatwa says he's getting to know 'passionate' Dr Who fanbase ahead of anticipated Christmas special", - "link": "https://www.standard.co.uk/showbiz/ncuti-gatwa-dr-who-christmas-special-graham-norton-netflix-b1127229.html", - "pubDate": "Fri, 15 Dec 2023 12:50:06 GMT", - "dc:creator": "Lizzie Edmonds", - "dc:date": "2023-12-15T12:50:06+00:00", - "content": "

Gatwa, 31, is the fifteenth Doctor in the popular BBC series

", - "contentSnippet": "Gatwa, 31, is the fifteenth Doctor in the popular BBC series", - "guid": "b1127229", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-12-15T12:50:06.000Z" - }, - { - "creator": "Lauren Gilmour", - "date": "2023-12-15T12:48:37+00:00", - "title": "Evidence on abuse in young offender institutions \u2018harrowing\u2019, inquiry told", - "link": "https://www.standard.co.uk/news/crime/scottish-prison-service-scottish-children-edinburgh-scottish-government-b1127253.html", - "pubDate": "Fri, 15 Dec 2023 12:48:37 GMT", - "dc:creator": "Lauren Gilmour", - "dc:date": "2023-12-15T12:48:37+00:00", - "content": "Theresa Medhurst, chief executive of the Scottish Prison Service, appeared before the Scottish Child Abuse Inquiry on Friday.", - "contentSnippet": "Theresa Medhurst, chief executive of the Scottish Prison Service, appeared before the Scottish Child Abuse Inquiry on Friday.", - "guid": "b1127253", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-15T12:48:37.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-12-15T12:43:08+00:00", - "title": "Man City XI vs Crystal Palace: Erling Haaland injury latest, predicted lineup and confirmed team news", - "link": "https://www.standard.co.uk/sport/football/man-city-xi-vs-crystal-palace-erling-haaland-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1126871.html", - "pubDate": "Fri, 15 Dec 2023 12:43:08 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-12-15T12:43:08+00:00", - "content": "

The star striker continues to battle a foot injury

", - "contentSnippet": "The star striker continues to battle a foot injury", - "guid": "b1126871", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T12:43:08.000Z" - }, - { - "creator": "Patrick Daly", - "date": "2023-12-15T12:38:13+00:00", - "title": "JSO protesters in Christmas carol stunt outside Sir Keir Starmer\u2019s home", - "link": "https://www.standard.co.uk/news/politics/keir-starmer-labour-london-prime-minister-twitter-b1127247.html", - "pubDate": "Fri, 15 Dec 2023 12:38:13 GMT", - "dc:creator": "Patrick Daly", - "dc:date": "2023-12-15T12:38:13+00:00", - "content": "The homes of politicians have traditionally been seen as off-limits as targets for protests.", - "contentSnippet": "The homes of politicians have traditionally been seen as off-limits as targets for protests.", - "guid": "b1127247", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-15T12:38:13.000Z" - }, - { - "creator": "Josh Payne", - "date": "2023-12-15T12:35:06+00:00", - "title": "Body recovered in search for missing mother-of-three Gaynor Lord", - "link": "https://www.standard.co.uk/news/uk/norfolk-police-norwich-b1127243.html", - "pubDate": "Fri, 15 Dec 2023 12:35:06 GMT", - "dc:creator": "Josh Payne", - "dc:date": "2023-12-15T12:35:06+00:00", - "content": "Norfolk Police said Ms Lord\u2019s family have been informed.", - "contentSnippet": "Norfolk Police said Ms Lord\u2019s family have been informed.", - "guid": "b1127243", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T12:35:06.000Z" - }, - { - "creator": "David Smyth", - "date": "2023-12-15T12:31:50+00:00", - "title": "The best (and the worst) Christmas singles of 2023: from Jorja Smith to Jason Derulo ", - "link": "https://www.standard.co.uk/culture/music/best-christmas-songs-2023-singles-jorja-smith-boygenius-b1126805.html", - "pubDate": "Fri, 15 Dec 2023 12:31:50 GMT", - "dc:creator": "David Smyth", - "dc:date": "2023-12-15T12:31:50+00:00", - "content": "

If you fancy a break from Wham! we've got you covered...

", - "contentSnippet": "If you fancy a break from Wham! we've got you covered...", - "guid": "b1126805", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-12-15T12:31:50.000Z" - }, - { - "creator": "Josh Payne", - "date": "2023-12-15T12:28:02+00:00", - "title": "Police divers remove large black bag from river during hunt for Gaynor Lord", - "link": "https://www.standard.co.uk/news/uk/norwich-norfolk-police-cctv-police-bbc-b1127226.html", - "pubDate": "Fri, 15 Dec 2023 12:28:02 GMT", - "dc:creator": "Josh Payne", - "dc:date": "2023-12-15T12:28:02+00:00", - "content": "An orange buoy was placed on a specific spot in the river on Friday.", - "contentSnippet": "An orange buoy was placed on a specific spot in the river on Friday.", - "guid": "b1127226", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T12:28:02.000Z" - }, - { - "creator": "Anna Wise", - "date": "2023-12-15T12:22:43+00:00", - "title": "More than a quarter of people worried about affording Christmas \u2013 ONS", - "link": "https://www.standard.co.uk/business/money/more-than-a-quarter-of-people-worried-about-affording-christmas-ons-b1127240.html", - "pubDate": "Fri, 15 Dec 2023 12:22:43 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2023-12-15T12:22:43+00:00", - "content": "Some 28% reported feeling worried about being able to afford the things they planned to do this Christmas, the Office for National Statistics found.", - "contentSnippet": "Some 28% reported feeling worried about being able to afford the things they planned to do this Christmas, the Office for National Statistics found.", - "guid": "b1127240", - "categories": [ - "Money", - "Business" - ], - "isoDate": "2023-12-15T12:22:43.000Z" - }, - { - "creator": "Pa High Court Staff", - "date": "2023-12-15T12:18:41+00:00", - "title": "Duke of Sussex hails phone hacking ruling as \u2018great day for truth\u2019", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/high-court-duke-of-sussex-justice-nikki-sanderson-people-b1127231.html", - "pubDate": "Fri, 15 Dec 2023 12:18:41 GMT", - "dc:creator": "Pa High Court Staff", - "dc:date": "2023-12-15T12:18:41+00:00", - "content": "Harry sued Mirror Group Newspapers at the High Court.", - "contentSnippet": "Harry sued Mirror Group Newspapers at the High Court.", - "guid": "b1127231", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-12-15T12:18:41.000Z" - }, - { - "creator": "Harry Stedman", - "date": "2023-12-15T12:17:21+00:00", - "title": "Migrant dead and another in a critical condition after boat sinks in Channel", - "link": "https://www.standard.co.uk/news/politics/french-english-channel-people-rishi-sunak-government-b1127146.html", - "pubDate": "Fri, 15 Dec 2023 12:17:21 GMT", - "dc:creator": "Harry Stedman", - "dc:date": "2023-12-15T12:17:21+00:00", - "content": "A small boat carrying more than 60 passengers got into difficulty around five miles off the northern French coast on Thursday night. ", - "contentSnippet": "A small boat carrying more than 60 passengers got into difficulty around five miles off the northern French coast on Thursday night.", - "guid": "b1127146", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-12-15T12:17:21.000Z" - }, - { - "creator": "Peter Allen,Jacob Phillips,Josh Salisbury and John Dunne", - "date": "2023-12-15T12:16:39+00:00", - "title": " British boy Alex Batty found in France after 2017 disappearance to return to UK 'as soon as possible'", - "link": "https://www.standard.co.uk/news/uk/alex-batty-missing-manchester-boy-france-spain-police-investigation-found-marbella-pyrenees-b1127025.html", - "pubDate": "Fri, 15 Dec 2023 12:16:39 GMT", - "dc:creator": "Peter Allen,Jacob Phillips,Josh Salisbury and John Dunne", - "dc:date": "2023-12-15T12:16:39+00:00", - "content": "

Family of teenager picked up by\u00a0lorry driver after 'walking in French mountains for days' say he had been 'brainwashed'

", - "contentSnippet": "Family of teenager picked up by\u00a0lorry driver after 'walking in French mountains for days' say he had been 'brainwashed'", - "guid": "b1127025", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T12:16:39.000Z" - }, - { - "creator": "Tristan Kirk", - "date": "2023-12-15T12:12:21+00:00", - "title": "Prince Harry wins phone hacking claim against Mirror Group Newspapers", - "link": "https://www.standard.co.uk/news/uk/prince-harry-phone-hacking-claim-mirror-group-ruling-b1127136.html", - "pubDate": "Fri, 15 Dec 2023 12:12:21 GMT", - "dc:creator": "Tristan Kirk", - "dc:date": "2023-12-15T12:12:21+00:00", - "content": "

Mr Justice Fancourt ruled phone hacking happened at Mirror Group Newspapers from 1996 to 2011

", - "contentSnippet": "Mr Justice Fancourt ruled phone hacking happened at Mirror Group Newspapers from 1996 to 2011", - "guid": "b1127136", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-12-15T12:12:21.000Z" - }, - { - "creator": "Evening Standard Comment", - "date": "2023-12-15T12:09:35+00:00", - "title": "OPINION - The Standard View: The court system is not serving justice well", - "link": "https://www.standard.co.uk/comment/single-justice-procedure-criminal-system-magistrates-prosecutors-b1127235.html", - "pubDate": "Fri, 15 Dec 2023 12:09:35 GMT", - "dc:creator": "Evening Standard Comment", - "dc:date": "2023-12-15T12:09:35+00:00", - "content": "

If justice delayed is justice denied, what of justice that takes place behind closed doors, with written appeals from vulnerable and elderly people left unread? An Evening Standard investigation has revealed the devastating impact of the single justice procedure (SJP), the fast-track court system used for low-level offences such as TV license prosecutions and not paying car tax.

", - "contentSnippet": "If justice delayed is justice denied, what of justice that takes place behind closed doors, with written appeals from vulnerable and elderly people left unread? An Evening Standard investigation has revealed the devastating impact of the single justice procedure (SJP), the fast-track court system used for low-level offences such as TV license prosecutions and not paying car tax.", - "guid": "b1127235", - "categories": [ - "Comment" - ], - "isoDate": "2023-12-15T12:09:35.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-12-15T12:09:31+00:00", - "title": "Ben Shephard and Cat Deeley to take over as co-hosts of This Morning \u2013 reports", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/phillip-schofield-cat-deeley-ben-shephard-holly-willoughby-patrick-kielty-b1127223.html", - "pubDate": "Fri, 15 Dec 2023 12:09:31 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-12-15T12:09:31+00:00", - "content": "Since Phillip Schofield and Holly Willoughby left, the ITV show has had a rotation of presenters.", - "contentSnippet": "Since Phillip Schofield and Holly Willoughby left, the ITV show has had a rotation of presenters.", - "guid": "b1127223", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-12-15T12:09:31.000Z" - }, - { - "creator": "Lisa McLoughlin ", - "date": "2023-12-15T12:08:26+00:00", - "title": "This Morning eyeing up Cat Deeley and Ben Shephard after Holly Willoughby and Phillip Schofield departures", - "link": "https://www.standard.co.uk/showbiz/this-morning-cat-deeley-ben-shephard-after-holly-willoughby-phillip-schofield-departures-b1127186.html", - "pubDate": "Fri, 15 Dec 2023 12:08:26 GMT", - "dc:creator": "Lisa McLoughlin ", - "dc:date": "2023-12-15T12:08:26+00:00", - "content": "

Schofield quit the show under a severe cloud in May and Willoughby stepped back three months later

", - "contentSnippet": "Schofield quit the show under a severe cloud in May and Willoughby stepped back three months later", - "guid": "b1127186", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-12-15T12:08:26.000Z" - }, - { - "creator": "Sade The Astrology Vixen", - "date": "2023-12-15T12:05:19+00:00", - "title": "Your weekly horoscope by Sade The Astrology Vixen (15 - 21 December) ", - "link": "https://www.standard.co.uk/lifestyle/weekly-horoscope-astrology-15-21-december-b1127230.html", - "pubDate": "Fri, 15 Dec 2023 12:05:19 GMT", - "dc:creator": "Sade The Astrology Vixen", - "dc:date": "2023-12-15T12:05:19+00:00", - "content": "

What lies in store for you this week?

", - "contentSnippet": "What lies in store for you this week?", - "guid": "b1127230", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-12-15T12:05:19.000Z" - }, - { - "creator": "John Dunne", - "date": "2023-12-15T12:05:18+00:00", - "title": "Brixton Academy: Police appeal to identify 13 people at gig crush which killed two on anniversary of tragedy", - "link": "https://www.standard.co.uk/news/crime/brixton-academy-deaths-asake-concert-one-year-anniversary-police-investigation-rebecca-ikumelo-gaby-hutchinson-b1127140.html", - "pubDate": "Fri, 15 Dec 2023 12:05:18 GMT", - "dc:creator": "John Dunne", - "dc:date": "2023-12-15T12:05:18+00:00", - "content": "

Scotland Yard issues pictures of people they want to trace as families of two killed call for justice

", - "contentSnippet": "Scotland Yard issues pictures of people they want to trace as families of two killed call for justice", - "guid": "b1127140", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-12-15T12:05:18.000Z" - }, - { - "creator": "Jacob Phillips", - "date": "2023-12-15T12:03:32+00:00", - "title": "Just Stop Oil protesters threatened with arrests after singing 'climate-criminal' carols outside Keir Starmer\u2019s home", - "link": "https://www.standard.co.uk/news/london/keir-starmer-just-stop-oil-christmas-climate-carols-b1127220.html", - "pubDate": "Fri, 15 Dec 2023 12:03:32 GMT", - "dc:creator": "Jacob Phillips", - "dc:date": "2023-12-15T12:03:32+00:00", - "content": "

Police have arrested Just Stop Oil protesters 670 times since October 30, the climate protest group said

", - "contentSnippet": "Police have arrested Just Stop Oil protesters 670 times since October 30, the climate protest group said", - "guid": "b1127220", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-12-15T12:03:32.000Z" - }, - { - "creator": "Amy Francombe", - "date": "2023-12-15T12:00:52+00:00", - "title": "90s geek chic and the stylish return of Bayonetta glasses", - "link": "https://www.standard.co.uk/lifestyle/fashion/bayonetta-glasses-90s-geek-chic-office-wear-b1126167.html", - "pubDate": "Fri, 15 Dec 2023 12:00:52 GMT", - "dc:creator": "Amy Francombe", - "dc:date": "2023-12-15T12:00:52+00:00", - "content": "

The geeky Y2K silhouette is being reimagined by Gen Z in their new Bayonetta glasses says Amy Francombe

", - "contentSnippet": "The geeky Y2K silhouette is being reimagined by Gen Z in their new Bayonetta glasses says Amy Francombe", - "guid": "b1126167", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2023-12-15T12:00:52.000Z" - }, - { - "creator": "Dom Smith", - "date": "2023-12-15T12:00:28+00:00", - "title": "Marco Silva 'not worried' about Tosin Adarabioyo's future at Fulham despite contract stalemate", - "link": "https://www.standard.co.uk/sport/football/marco-silva-tosin-adarabioyo-fulham-transfer-news-contract-update-b1127225.html", - "pubDate": "Fri, 15 Dec 2023 12:00:28 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2023-12-15T12:00:28+00:00", - "content": "

Monaco were among the clubs pushing to sign the centre-back in the summer

", - "contentSnippet": "Monaco were among the clubs pushing to sign the centre-back in the summer", - "guid": "b1127225", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T12:00:28.000Z" - }, - { - "creator": "Nancy Durrant", - "date": "2023-12-15T12:00:18+00:00", - "title": "OPINION - Indhu Rubasingham: why she's the perfect choice for head of the National Theatre", - "link": "https://www.standard.co.uk/culture/theatre/indhu-rubasingham-director-national-theatre-boss-new-perfect-b1127048.html", - "pubDate": "Fri, 15 Dec 2023 12:00:18 GMT", - "dc:creator": "Nancy Durrant", - "dc:date": "2023-12-15T12:00:18+00:00", - "content": "

The outgoing director of the Kiln inherits a strong artistic legacy but the finances are a lot less fun

", - "contentSnippet": "The outgoing director of the Kiln inherits a strong artistic legacy but the finances are a lot less fun", - "guid": "b1127048", - "categories": [ - "Theatre", - "Culture" - ], - "isoDate": "2023-12-15T12:00:18.000Z" - }, - { - "creator": "Mike Daw", - "date": "2023-12-15T12:00:00+00:00", - "title": "London's best Christmas menus that don't break the bank", - "link": "https://www.standard.co.uk/going-out/restaurants/christmas-cheap-london-menu-b1126273.html", - "pubDate": "Fri, 15 Dec 2023 12:00:00 GMT", - "dc:creator": "Mike Daw", - "dc:date": "2023-12-15T12:00:00+00:00", - "content": "

Celebrating Christmas doesn't have to cost the earth \u2014 sometimes, less really is more, says Mike Daw

", - "contentSnippet": "Celebrating Christmas doesn't have to cost the earth \u2014 sometimes, less really is more, says Mike Daw", - "guid": "b1126273", - "categories": [ - "Restaurants", - "Going Out" - ], - "isoDate": "2023-12-15T12:00:00.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2023-12-15T11:59:16+00:00", - "title": "Tottenham: Ange Postecoglou confirms talks over early January signings", - "link": "https://www.standard.co.uk/sport/football/tottenham-transfer-news-postecoglou-january-signings-b1127224.html", - "pubDate": "Fri, 15 Dec 2023 11:59:16 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2023-12-15T11:59:16+00:00", - "content": "

Spurs are in the market for a new centre-back, and could add another attacker with Heung-min Son set to be missing for weeks

", - "contentSnippet": "Spurs are in the market for a new centre-back, and could add another attacker with Heung-min Son set to be missing for weeks", - "guid": "b1127224", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T11:59:16.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-12-15T11:57:15+00:00", - "title": "Edson Alvarez hails 'magic night' as West Ham star helps seal Europa League passage", - "link": "https://www.standard.co.uk/sport/football/alvarez-west-ham-latest-news-europa-league-2023-b1127206.html", - "pubDate": "Fri, 15 Dec 2023 11:57:15 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-12-15T11:57:15+00:00", - "content": "

Mexican opened account for the Hammers after successful first few months

", - "contentSnippet": "Mexican opened account for the Hammers after successful first few months", - "guid": "b1127206", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-12-15T11:57:15.000Z" - }, - { - "creator": "Es Best", - "date": "2024-01-04T10:56:01+00:00", - "title": "Best tablet deals in the UK for January 2024: From iPads to Samsung Galaxy tablets", - "link": "https://www.standard.co.uk/shopping/esbest/deals/best-tablet-deals-apple-android-b999177.html", - "pubDate": "Thu, 04 Jan 2024 10:56:01 GMT", - "dc:creator": "Es Best", - "dc:date": "2024-01-04T10:56:01+00:00", - "content": "

Shop this month\u2019s best discounts on iPads, Microsoft and Android tablets

", - "contentSnippet": "Shop this month\u2019s best discounts on iPads, Microsoft and Android tablets", - "guid": "b999177", - "categories": [ - "Deals", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T10:56:01.000Z" - }, - { - "creator": "Maddy Mussen", - "date": "2024-01-04T10:56:01+00:00", - "title": "Pamela Anderson's makeup free era sees her become Proenza Schouler muse", - "link": "https://www.standard.co.uk/lifestyle/fashion/pamela-anderson-no-makeup-proenza-schoulder-barefaced-fashion-week-b1130259.html", - "pubDate": "Thu, 04 Jan 2024 10:56:01 GMT", - "dc:creator": "Maddy Mussen", - "dc:date": "2024-01-04T10:56:01+00:00", - "content": "

The barefaced Pam-aissance continues

", - "contentSnippet": "The barefaced Pam-aissance continues", - "guid": "b1130259", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2024-01-04T10:56:01.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-04T10:53:12+00:00", - "title": "Best alcohol deals for January from supermarkets and online shops", - "link": "https://www.standard.co.uk/shopping/esbest/deals/best-supermarket-alcohol-deals-a4431606.html", - "pubDate": "Thu, 04 Jan 2024 10:53:12 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-04T10:53:12+00:00", - "content": "

Your monthly roundup of boozy news, fresh launches and great discounts

", - "contentSnippet": "Your monthly roundup of boozy news, fresh launches and great discounts", - "guid": "a4431606", - "categories": [ - "Deals", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T10:53:12.000Z" - }, - { - "creator": "Tom Herbert and Nuray Bulbul", - "date": "2024-01-04T10:52:37+00:00", - "title": "Spring equinox: When is the first day of spring 2024 and what is the vernal equinox?", - "link": "https://www.standard.co.uk/news/uk/when-is-spring-first-day-vernal-equinox-uk-2024-a4096221.html", - "pubDate": "Thu, 04 Jan 2024 10:52:37 GMT", - "dc:creator": "Tom Herbert and Nuray Bulbul", - "dc:date": "2024-01-04T10:52:37+00:00", - "content": "

During these cold months, many people will be looking forward to the beginning of Spring

", - "contentSnippet": "During these cold months, many people will be looking forward to the beginning of Spring", - "guid": "a4096221", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T10:52:37.000Z" - }, - { - "creator": "Christian Adams", - "date": "2024-01-04T10:52:27+00:00", - "title": "OPINION - The Evening Standard political cartoon by Christian Adams", - "link": "https://www.standard.co.uk/comment/the-evening-standard-political-cartoon-by-christian-adams-a3530851.html", - "pubDate": "Thu, 04 Jan 2024 10:52:27 GMT", - "dc:creator": "Christian Adams", - "dc:date": "2024-01-04T10:52:27+00:00", - "content": "

To order prints or signed copies of any Evening Standard cartoon, call 0191 603 0178 or visit eveningstandard.newsprints.co.uk

", - "contentSnippet": "To order prints or signed copies of any Evening Standard cartoon, call 0191 603 0178 or visit eveningstandard.newsprints.co.uk", - "guid": "a3530851", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-04T10:52:27.000Z" - }, - { - "creator": "John Dunne", - "date": "2024-01-04T10:51:52+00:00", - "title": "Luke Littler: Teenage sensation tipped to win millions after World Darts Championship final heartbreak", - "link": "https://www.standard.co.uk/news/uk/luke-littler-earnings-sponsorship-world-darts-championship-final-luke-humphreys-b1130278.html", - "pubDate": "Thu, 04 Jan 2024 10:51:52 GMT", - "dc:creator": "John Dunne", - "dc:date": "2024-01-04T10:51:52+00:00", - "content": "

The 16-year-old from Warrington captured the imagination of the public with his fairytale run to the final

", - "contentSnippet": "The 16-year-old from Warrington captured the imagination of the public with his fairytale run to the final", - "guid": "b1130278", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T10:51:52.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-04T10:50:06+00:00", - "title": "Tottenham: Richarlison set for huge chance that could define Spurs future", - "link": "https://www.standard.co.uk/sport/football/tottenham-richarlison-heung-min-son-b1130272.html", - "pubDate": "Thu, 04 Jan 2024 10:50:06 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-04T10:50:06+00:00", - "content": "

Stepping up without Heung-min Son could show Ange Postecoglou does not need long-term upgrade

", - "contentSnippet": "Stepping up without Heung-min Son could show Ange Postecoglou does not need long-term upgrade", - "guid": "b1130272", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T10:50:06.000Z" - }, - { - "creator": "Rod Minchin", - "date": "2024-01-04T10:49:54+00:00", - "title": "Man to face trial accused of attempted murder in Aberfan", - "link": "https://www.standard.co.uk/news/crime/aberfan-cardiff-cardiff-crown-court-b1130280.html", - "pubDate": "Thu, 04 Jan 2024 10:49:54 GMT", - "dc:creator": "Rod Minchin", - "dc:date": "2024-01-04T10:49:54+00:00", - "content": "Daniel Mihai Popescu, 29, will go on trial at Merthyr Crown Court on June 3 after a woman was stabbed.", - "contentSnippet": "Daniel Mihai Popescu, 29, will go on trial at Merthyr Crown Court on June 3 after a woman was stabbed.", - "guid": "b1130280", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T10:49:54.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-04T10:49:44+00:00", - "title": "Britain\u2019s service sector ends year with stronger-than-expected growth", - "link": "https://www.standard.co.uk/business/business-news/britain-s-service-sector-ends-year-with-strongerthanexpected-growth-b1130279.html", - "pubDate": "Thu, 04 Jan 2024 10:49:44 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-04T10:49:44+00:00", - "content": "The S&P Global/CIPS UK services PMI survey showed a reading of 53.4 in December, up from 50.9 in November.", - "contentSnippet": "The S&P Global/CIPS UK services PMI survey showed a reading of 53.4 in December, up from 50.9 in November.", - "guid": "b1130279", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T10:49:44.000Z" - }, - { - "creator": "Laura Harding", - "date": "2024-01-04T10:45:49+00:00", - "title": "Return of The Traitors hailed as \u2018genius reality TV\u2019", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/traitors-claudia-winkleman-agatha-christie-bbc-one-bbc-b1130276.html", - "pubDate": "Thu, 04 Jan 2024 10:45:49 GMT", - "dc:creator": "Laura Harding", - "dc:date": "2024-01-04T10:45:49+00:00", - "content": "The show has come back for a second series on BBC One.", - "contentSnippet": "The show has come back for a second series on BBC One.", - "guid": "b1130276", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-04T10:45:49.000Z" - }, - { - "creator": "Vicky Shaw", - "date": "2024-01-04T10:42:26+00:00", - "title": "Consumer credit borrowing increases at fastest annual rate in five years", - "link": "https://www.standard.co.uk/news/politics/money-advice-trust-consumer-credit-bank-of-england-money-quilter-b1130273.html", - "pubDate": "Thu, 04 Jan 2024 10:42:26 GMT", - "dc:creator": "Vicky Shaw", - "dc:date": "2024-01-04T10:42:26+00:00", - "content": "The annual growth rate for consumer credit was 8.6% in November, the highest rate since September 2018, according to the Bank of England.", - "contentSnippet": "The annual growth rate for consumer credit was 8.6% in November, the highest rate since September 2018, according to the Bank of England.", - "guid": "b1130273", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T10:42:26.000Z" - }, - { - "creator": "George Flood", - "date": "2024-01-04T10:39:15+00:00", - "title": "Transfer news LIVE! Arsenal eye triple deal; Chelsea hijack Man Utd for Silva; Dragusin to Spurs latest; Olise", - "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-fc-chelsea-man-utd-tottenham-zubimendi-olise-dragusin-b1130232.html", - "pubDate": "Thu, 04 Jan 2024 10:39:15 GMT", - "dc:creator": "George Flood", - "dc:date": "2024-01-04T10:39:15+00:00", - "content": "

Follow all the latest transfer news, rumours and gossip in January

", - "contentSnippet": "Follow all the latest transfer news, rumours and gossip in January", - "guid": "b1130232", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T10:39:15.000Z" - }, - { - "creator": "Anna White", - "date": "2024-01-04T10:36:37+00:00", - "title": "London property forecast 2024: what will happen to house prices, rents and new homes?", - "link": "https://www.standard.co.uk/homesandproperty/property-news/london-housing-market-forecast-rents-house-prices-2024-should-i-buy-b1130196.html", - "pubDate": "Thu, 04 Jan 2024 10:36:37 GMT", - "dc:creator": "Anna White", - "dc:date": "2024-01-04T10:36:37+00:00", - "content": "

Homes & Property's 11 predictions for how the next year will play out for first-time buyers, renters and home movers

", - "contentSnippet": "Homes & Property's 11 predictions for how the next year will play out for first-time buyers, renters and home movers", - "guid": "b1130196", - "categories": [ - "Property News", - "Homes & Property" - ], - "isoDate": "2024-01-04T10:36:37.000Z" - }, - { - "creator": "Nick Clark", - "date": "2024-01-04T10:32:39+00:00", - "title": "The best theatre to see in London in 2024: from Sarah Jessica Parker in Plaza Suite to The Devil Wears Prada", - "link": "https://www.standard.co.uk/culture/theatre/best-theatre-to-book-2024-matt-smith-sarah-jessica-parker-b1127316.html", - "pubDate": "Thu, 04 Jan 2024 10:32:39 GMT", - "dc:creator": "Nick Clark", - "dc:date": "2024-01-04T10:32:39+00:00", - "content": "

There's a feast of theatrical delights heading this way over the next 12 months

", - "contentSnippet": "There's a feast of theatrical delights heading this way over the next 12 months", - "guid": "b1127316", - "categories": [ - "Theatre", - "Culture" - ], - "isoDate": "2024-01-04T10:32:39.000Z" - }, - { - "creator": "El Hunt", - "date": "2024-01-04T10:31:39+00:00", - "title": "BST Hyde Park 2024: Tickets, line-ups and all you need to know as Robbie Williams and more confirmed", - "link": "https://www.standard.co.uk/culture/music/bst-hyde-park-tickets-line-up-2024-b999732.html", - "pubDate": "Thu, 04 Jan 2024 10:31:39 GMT", - "dc:creator": "El Hunt", - "dc:date": "2024-01-04T10:31:39+00:00", - "content": "

One of London\u2019s biggest concert series is making its heavy-hitting return

", - "contentSnippet": "One of London\u2019s biggest concert series is making its heavy-hitting return", - "guid": "b999732", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2024-01-04T10:31:39.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2024-01-04T10:29:30+00:00", - "title": "Chelsea agree \u00a310m sponsorship deal with cryptocurrency firm BingX", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-bingx-sponsorship-deal-b1130269.html", - "pubDate": "Thu, 04 Jan 2024 10:29:30 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2024-01-04T10:29:30+00:00", - "content": "

18 of the 20 Premier League clubs now have crypto partners

", - "contentSnippet": "18 of the 20 Premier League clubs now have crypto partners", - "guid": "b1130269", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T10:29:30.000Z" - }, - { - "creator": "Rachael Davies", - "date": "2024-01-04T10:28:11+00:00", - "title": "People are claiming that Nostradamus' predictions are coming true in 2024", - "link": "https://www.standard.co.uk/news/world/nostradamus-predictions-coming-true-2024-b1130264.html", - "pubDate": "Thu, 04 Jan 2024 10:28:11 GMT", - "dc:creator": "Rachael Davies", - "dc:date": "2024-01-04T10:28:11+00:00", - "content": "

Just a few days into 2024, people are yet again making connections with current events and Nostradamus' predictions

", - "contentSnippet": "Just a few days into 2024, people are yet again making connections with current events and Nostradamus' predictions", - "guid": "b1130264", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T10:28:11.000Z" - }, - { - "creator": "City Staff", - "date": "2024-01-04T10:20:01+00:00", - "title": "FTSE 100 LIVE: Next shares surge after festive upgrade, JD Sports tumbles on profit warning", - "link": "https://www.standard.co.uk/business/ftse-100-live-jd-sports-cuts-guidance-next-eyes-ps900-million-profits-b1130238.html", - "pubDate": "Thu, 04 Jan 2024 10:20:01 GMT", - "dc:creator": "City Staff", - "dc:date": "2024-01-04T10:20:01+00:00", - "content": "

High street giant Next delighted the City today by revealing a Christmas trading performance well ahead of expectations.

", - "contentSnippet": "High street giant Next delighted the City today by revealing a Christmas trading performance well ahead of expectations.", - "guid": "b1130238", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T10:20:01.000Z" - }, - { - "creator": "Danny Halpin", - "date": "2024-01-04T10:18:03+00:00", - "title": "Farmers to be paid hundreds of pounds per hectare to maintain habitats", - "link": "https://www.standard.co.uk/news/politics/farmers-government-defra-british-wildlife-and-countryside-link-b1130270.html", - "pubDate": "Thu, 04 Jan 2024 10:18:03 GMT", - "dc:creator": "Danny Halpin", - "dc:date": "2024-01-04T10:18:03+00:00", - "content": "They will be able to apply for the new support from the summer of 2024.", - "contentSnippet": "They will be able to apply for the new support from the summer of 2024.", - "guid": "b1130270", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T10:18:03.000Z" - }, - { - "creator": "Andrew Williams", - "date": "2024-01-04T10:17:53+00:00", - "title": "Amazon to start charging for ad-free Prime Video from February", - "link": "https://www.standard.co.uk/news/tech/amazon-charging-ad-free-prime-video-february-2024-b1130254.html", - "pubDate": "Thu, 04 Jan 2024 10:17:53 GMT", - "dc:creator": "Andrew Williams", - "dc:date": "2024-01-04T10:17:53+00:00", - "content": "

You'll soon have to pay \u00a32.99 a month to get Prime Video shows and movies without ads

", - "contentSnippet": "You'll soon have to pay \u00a32.99 a month to get Prime Video shows and movies without ads", - "guid": "b1130254", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2024-01-04T10:17:53.000Z" - }, - { - "creator": "Jordan King", - "date": "2024-01-04T10:16:39+00:00", - "title": "London weather: Rush-hour 'deluge' expected with possible flooding amid Met Office rain warning", - "link": "https://www.standard.co.uk/news/london/weather-rain-met-office-warning-flooding-forecast-b1130249.html", - "pubDate": "Thu, 04 Jan 2024 10:16:39 GMT", - "dc:creator": "Jordan King", - "dc:date": "2024-01-04T10:16:39+00:00", - "content": "

Great Western Rail warns more trains could be cancelled as people across south of England face further flood warnings

", - "contentSnippet": "Great Western Rail warns more trains could be cancelled as people across south of England face further flood warnings", - "guid": "b1130249", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-04T10:16:39.000Z" - }, - { - "creator": "Sarah Ward", - "date": "2024-01-04T10:14:38+00:00", - "title": "African birds of prey face decline with 90% of species threatened, study finds", - "link": "https://www.standard.co.uk/news/uk/african-birds-of-prey-raptors-st-andrews-university-study-b1130267.html", - "pubDate": "Thu, 04 Jan 2024 10:14:38 GMT", - "dc:creator": "Sarah Ward", - "dc:date": "2024-01-04T10:14:38+00:00", - "content": "

Research by the University of St Andrews found that raptors faced multiple threats across the continent

", - "contentSnippet": "Research by the University of St Andrews found that raptors faced multiple threats across the continent", - "guid": "b1130267", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T10:14:38.000Z" - }, - { - "creator": "Lisa McLoughlin ", - "date": "2024-01-04T10:13:18+00:00", - "title": "Sir Rod Stewart leaves \u00a310,000 tip for Scottish hotel staff on New Year's Eve", - "link": "https://www.standard.co.uk/showbiz/rod-stewart-gleneagles-hotel-tip-staff-hogmanay-new-years-eve-b1130258.html", - "pubDate": "Thu, 04 Jan 2024 10:13:18 GMT", - "dc:creator": "Lisa McLoughlin ", - "dc:date": "2024-01-04T10:13:18+00:00", - "content": "

The singer, 78, spent Hogmanay\u00a0at the five-star Gleneagles hotel with his family

", - "contentSnippet": "The singer, 78, spent Hogmanay\u00a0at the five-star Gleneagles hotel with his family", - "guid": "b1130258", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-04T10:13:18.000Z" - }, - { - "creator": "Pol Allingham", - "date": "2024-01-04T10:12:13+00:00", - "title": "More trains could be cancelled as Met Office issues weather warnings", - "link": "https://www.standard.co.uk/news/environment/met-office-england-swindon-bristol-parkway-london-b1130263.html", - "pubDate": "Thu, 04 Jan 2024 10:12:13 GMT", - "dc:creator": "Pol Allingham", - "dc:date": "2024-01-04T10:12:13+00:00", - "content": "The Met Office issued a yellow weather warning across the south of England lasting from 12pm today until 3am on Friday.", - "contentSnippet": "The Met Office issued a yellow weather warning across the south of England lasting from 12pm today until 3am on Friday.", - "guid": "b1130263", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-04T10:12:13.000Z" - }, - { - "creator": "Lydia Chantler-Hicks", - "date": "2024-01-04T10:09:35+00:00", - "title": "Police appeal after boy, 11, goes missing while on bike ride in Wales", - "link": "https://www.standard.co.uk/news/uk/boy-missing-wales-police-carmarthenshire-marley-bike-ride-tumble-b1130265.html", - "pubDate": "Thu, 04 Jan 2024 10:09:35 GMT", - "dc:creator": "Lydia Chantler-Hicks", - "dc:date": "2024-01-04T10:09:35+00:00", - "content": "

Missing Marley was last seen riding a red bike in his home village of Tumble

", - "contentSnippet": "Missing Marley was last seen riding a red bike in his home village of Tumble", - "guid": "b1130265", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T10:09:35.000Z" - }, - { - "creator": "Jon Axworthy", - "date": "2024-01-04T10:08:52+00:00", - "title": "Best winter golf shoes to get you from tee to green in howling wind or freezing cold ", - "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/accessories/best-winter-golf-shoes-b1128153.html", - "pubDate": "Thu, 04 Jan 2024 10:08:52 GMT", - "dc:creator": "Jon Axworthy", - "dc:date": "2024-01-04T10:08:52+00:00", - "content": "

Don\u2019t let the season stop you swinging

", - "contentSnippet": "Don\u2019t let the season stop you swinging", - "guid": "b1128153", - "categories": [ - "Accessories", - "Health & Fitness", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T10:08:52.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2024-01-04T10:03:29+00:00", - "title": "Best vegan chocolate cakes for the perfect sweet treat", - "link": "https://www.standard.co.uk/shopping/esbest/food-drink/best-vegan-chocolate-cake-b1127871.html", - "pubDate": "Thu, 04 Jan 2024 10:03:29 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2024-01-04T10:03:29+00:00", - "content": "

Going vegan doesn't mean going without

", - "contentSnippet": "Going vegan doesn't mean going without", - "guid": "b1127871", - "categories": [ - "Food & Drink", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T10:03:29.000Z" - }, - { - "creator": "Vicky Shaw", - "date": "2024-01-04T10:01:30+00:00", - "title": "First Direct unveils sub-4% mortgage rates", - "link": "https://www.standard.co.uk/business/money/first-direct-unveils-sub4-mortgage-rates-b1130266.html", - "pubDate": "Thu, 04 Jan 2024 10:01:30 GMT", - "dc:creator": "Vicky Shaw", - "dc:date": "2024-01-04T10:01:30+00:00", - "content": "Several lenders have started the new year by making cuts to their rates.", - "contentSnippet": "Several lenders have started the new year by making cuts to their rates.", - "guid": "b1130266", - "categories": [ - "Money", - "Business" - ], - "isoDate": "2024-01-04T10:01:30.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2024-01-04T09:57:19+00:00", - "title": "Arsenal cool Mary Earps interest as PSG lead race for Lionesses goalkeeper", - "link": "https://www.standard.co.uk/sport/football/mary-earps-transfer-arsenal-fc-psg-man-utd-b1130261.html", - "pubDate": "Thu, 04 Jan 2024 09:57:19 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2024-01-04T09:57:19+00:00", - "content": "

Barcelona have also spoken to the England star, who is a free agent in the summer

", - "contentSnippet": "Barcelona have also spoken to the England star, who is a free agent in the summer", - "guid": "b1130261", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T09:57:19.000Z" - }, - { - "creator": "Es Best", - "date": "2024-01-04T09:52:54+00:00", - "title": "Best Nintendo Switch deals in the UK for January 2024", - "link": "https://www.standard.co.uk/shopping/esbest/deals/best-nintendo-switch-deals-b999158.html", - "pubDate": "Thu, 04 Jan 2024 09:52:54 GMT", - "dc:creator": "Es Best", - "dc:date": "2024-01-04T09:52:54+00:00", - "content": "

Game away to your hearts content with these great nintendo switch deals

", - "contentSnippet": "Game away to your hearts content with these great nintendo switch deals", - "guid": "b999158", - "categories": [ - "Deals", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T09:52:54.000Z" - }, - { - "creator": "John Dunne", - "date": "2024-01-04T09:52:36+00:00", - "title": "Harry Pitman: Police hunting teenager's killer continue to question 15-year-old boy ", - "link": "https://www.standard.co.uk/news/crime/harry-pitman-murder-latest-met-police-arrests-primrose-hill-fireworks-b1130262.html", - "pubDate": "Thu, 04 Jan 2024 09:52:36 GMT", - "dc:creator": "John Dunne", - "dc:date": "2024-01-04T09:52:36+00:00", - "content": "

The 15-year-old youth was arrested on Tuesday along with an 18-year-old, who was held on suspicion of affray

", - "contentSnippet": "The 15-year-old youth was arrested on Tuesday along with an 18-year-old, who was held on suspicion of affray", - "guid": "b1130262", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T09:52:36.000Z" - }, - { - "creator": "El Hunt", - "date": "2024-01-04T09:49:35+00:00", - "title": "The Traitors series 2 on BBC One review: the murder mystery is back \u2013 let the carnage commence", - "link": "https://www.standard.co.uk/culture/tvfilm/the-traitors-season-two-episode-one-review-claudia-winkleman-bbc-one-b1129908.html", - "pubDate": "Thu, 04 Jan 2024 09:49:35 GMT", - "dc:creator": "El Hunt", - "dc:date": "2024-01-04T09:49:35+00:00", - "content": "

Mind games? Paranoia? A ruthless batch of contestants who make Wilf Webster look like a total saint? Step this way...

", - "contentSnippet": "Mind games? Paranoia? A ruthless batch of contestants who make Wilf Webster look like a total saint? Step this way...", - "guid": "b1129908", - "categories": [ - "TV", - "Culture" - ], - "isoDate": "2024-01-04T09:49:35.000Z" - }, - { - "creator": "Maryam Kara", - "date": "2024-01-04T09:48:33+00:00", - "title": "Asda recalls drink over contamination concerns", - "link": "https://www.standard.co.uk/news/uk/asda-recalls-juice-drinks-contamination-concerns-b1130141.html", - "pubDate": "Thu, 04 Jan 2024 09:48:33 GMT", - "dc:creator": "Maryam Kara", - "dc:date": "2024-01-04T09:48:33+00:00", - "content": "

Straws on lunchbox staple 'may be contaminated with metal'

", - "contentSnippet": "Straws on lunchbox staple 'may be contaminated with metal'", - "guid": "b1130141", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T09:48:33.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-04T09:47:50+00:00", - "title": "JD Sports hit as wary customers flock to sale prices", - "link": "https://www.standard.co.uk/business/business-news/jd-sports-hit-as-wary-customers-flock-to-sale-prices-b1130241.html", - "pubDate": "Thu, 04 Jan 2024 09:47:50 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-04T09:47:50+00:00", - "content": "The company downgraded its profit forecast by more than \u00a3100 million after a disappointing Christmas.", - "contentSnippet": "The company downgraded its profit forecast by more than \u00a3100 million after a disappointing Christmas.", - "guid": "b1130241", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T09:47:50.000Z" - }, - { - "creator": "Paul Cargill", - "date": "2024-01-04T09:44:38+00:00", - "title": "Scientists turn whisky-making by-product into fuel for the future", - "link": "https://www.standard.co.uk/news/science/scientists-green-scottish-b1130226.html", - "pubDate": "Thu, 04 Jan 2024 09:44:38 GMT", - "dc:creator": "Paul Cargill", - "dc:date": "2024-01-04T09:44:38+00:00", - "content": "A team from Heriot-Watt University have developed materials that can use wastewater from distilleries to produce green hydrogen.", - "contentSnippet": "A team from Heriot-Watt University have developed materials that can use wastewater from distilleries to produce green hydrogen.", - "guid": "b1130226", - "categories": [ - "Science", - "News" - ], - "isoDate": "2024-01-04T09:44:38.000Z" - }, - { - "creator": "Josh Payne", - "date": "2024-01-04T09:43:55+00:00", - "title": "Jeffrey Epstein ready to reward victim\u2019s friends to prove Stephen Hawking orgy claims were false", - "link": "https://www.standard.co.uk/news/uk/jeffrey-epstein-ghislaine-maxwell-stephen-hawking-bill-clinton-donald-trump-b1130229.html", - "pubDate": "Thu, 04 Jan 2024 09:43:55 GMT", - "dc:creator": "Josh Payne", - "dc:date": "2024-01-04T09:43:55+00:00", - "content": "

Email from Epstein to Ghislaine Maxwell showed he was content for her to 'issue a reward' to any of Virginia Giuffre\u2019s friends to counter her claims

", - "contentSnippet": "Email from Epstein to Ghislaine Maxwell showed he was content for her to 'issue a reward' to any of Virginia Giuffre\u2019s friends to counter her claims", - "guid": "b1130229", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T09:43:55.000Z" - }, - { - "creator": "Dom Smith", - "date": "2024-01-04T09:42:56+00:00", - "title": "Crystal Palace pushing for Ronnie Edwards transfer after opening bids rejected", - "link": "https://www.standard.co.uk/sport/football/crystal-palace-ronnie-edwards-transfer-b1130257.html", - "pubDate": "Thu, 04 Jan 2024 09:42:56 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2024-01-04T09:42:56+00:00", - "content": "

Eagles hoping to win the race for highly-rated Peterborough defender this month

", - "contentSnippet": "Eagles hoping to win the race for highly-rated Peterborough defender this month", - "guid": "b1130257", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T09:42:56.000Z" - }, - { - "creator": "Lydia Chantler-Hicks", - "date": "2024-01-04T09:41:23+00:00", - "title": "Tube strikes: TfL warns looming walkout will leave 'little to no service' on London Underground for four days", - "link": "https://www.standard.co.uk/news/transport/tube-strikes-january-london-underground-dates-tfl-trains-b1130055.html", - "pubDate": "Thu, 04 Jan 2024 09:41:23 GMT", - "dc:creator": "Lydia Chantler-Hicks", - "dc:date": "2024-01-04T09:41:23+00:00", - "content": "

RMT members are to walk out from January 5 to January 12 in a row over pay

", - "contentSnippet": "RMT members are to walk out from January 5 to January 12 in a row over pay", - "guid": "b1130055", - "categories": [ - "Transport", - "News" - ], - "isoDate": "2024-01-04T09:41:23.000Z" - }, - { - "creator": "Robert Dex", - "date": "2024-01-04T09:33:41+00:00", - "title": "Arsenal to wear white at home for the first time for its No More Red anti-violence campaign", - "link": "https://www.standard.co.uk/news/london/arsenal-white-kit-no-more-red-fa-cup-declan-rice-leah-williamson-youth-violence-b1130159.html", - "pubDate": "Thu, 04 Jan 2024 09:33:41 GMT", - "dc:creator": "Robert Dex", - "dc:date": "2024-01-04T09:33:41+00:00", - "content": "

The all white kit is worn by the club once a year as part of its campaign against youth violence

", - "contentSnippet": "The all white kit is worn by the club once a year as part of its campaign against youth violence", - "guid": "b1130159", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-04T09:33:41.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2024-01-04T09:23:56+00:00", - "title": "Junior doctors strike: Cabinet minister urges medics to call off 'politically-motivated' walkout ", - "link": "https://www.standard.co.uk/news/politics/junior-doctors-strike-day-2-nhs-pay-row-bma-steve-barclay-victoria-atkins-b1130250.html", - "pubDate": "Thu, 04 Jan 2024 09:23:56 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2024-01-04T09:23:56+00:00", - "content": "

Steve Barclay's intervention comes on the second day of the longest ever strike by junior doctors

", - "contentSnippet": "Steve Barclay's intervention comes on the second day of the longest ever strike by junior doctors", - "guid": "b1130250", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T09:23:56.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2024-01-04T09:22:03+00:00", - "title": "Britain ready for 'necessary and proportionate' military action to stop Red Sea missile attacks on ships", - "link": "https://www.standard.co.uk/news/politics/britain-red-sea-israel-gaza-iran-us-missile-ships-attacks-b1130237.html", - "pubDate": "Thu, 04 Jan 2024 09:22:03 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2024-01-04T09:22:03+00:00", - "content": "

America, the UK and other allies have sent what amounts to a final warning to Iran-backed Houthi rebels to end their attacks on vessels in the Red Sea or face potential targeted military action

", - "contentSnippet": "America, the UK and other allies have sent what amounts to a final warning to Iran-backed Houthi rebels to end their attacks on vessels in the Red Sea or face potential targeted military action", - "guid": "b1130237", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T09:22:03.000Z" - }, - { - "creator": "Ella Pickover", - "date": "2024-01-04T09:17:21+00:00", - "title": "Hospitals call on junior doctors to return to work but BMA wants 'credible' pay offer to call off strikes", - "link": "https://www.standard.co.uk/news/politics/nhs-stephen-powis-bma-junior-doctors-strike-walkout-b1130204.html", - "pubDate": "Thu, 04 Jan 2024 09:17:21 GMT", - "dc:creator": "Ella Pickover", - "dc:date": "2024-01-04T09:17:21+00:00", - "content": "Junior doctors are staging the longest walkout in NHS history.", - "contentSnippet": "Junior doctors are staging the longest walkout in NHS history.", - "guid": "b1130204", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T09:17:21.000Z" - }, - { - "creator": "Holly Williams", - "date": "2024-01-04T09:13:35+00:00", - "title": "Next boss cautions over stock delays from Red Sea attacks", - "link": "https://www.standard.co.uk/business/business-news/next-boss-cautions-over-stock-delays-from-red-sea-attacks-b1130255.html", - "pubDate": "Thu, 04 Jan 2024 09:13:35 GMT", - "dc:creator": "Holly Williams", - "dc:date": "2024-01-04T09:13:35+00:00", - "content": "Chief executive Lord Simon Wolfson said an extra two and a half weeks must be added to stock delivery times for goods and garments from the Far East.", - "contentSnippet": "Chief executive Lord Simon Wolfson said an extra two and a half weeks must be added to stock delivery times for goods and garments from the Far East.", - "guid": "b1130255", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T09:13:35.000Z" - }, - { - "creator": "Lydia Chantler-Hicks", - "date": "2024-01-04T09:11:13+00:00", - "title": "Boris Johnson criticises Met Police investigation into Israel 'war crimes'", - "link": "https://www.standard.co.uk/news/politics/israel-war-crimes-met-police-boris-johnson-hamas-gaza-b1130233.html", - "pubDate": "Thu, 04 Jan 2024 09:11:13 GMT", - "dc:creator": "Lydia Chantler-Hicks", - "dc:date": "2024-01-04T09:11:13+00:00", - "content": "

Counter-terror police have put up posters at British airports urging returning travellers to report any war crimes or crimes against humanity

", - "contentSnippet": "Counter-terror police have put up posters at British airports urging returning travellers to report any war crimes or crimes against humanity", - "guid": "b1130233", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T09:11:13.000Z" - }, - { - "creator": "Laura Harding", - "date": "2024-01-04T09:06:08+00:00", - "title": "Elvis Evolution: Elvis Presley hologram concert experience to open in London", - "link": "https://www.standard.co.uk/news/london/elvis-presley-evolution-hologram-concert-experience-b1130225.html", - "pubDate": "Thu, 04 Jan 2024 09:06:08 GMT", - "dc:creator": "Laura Harding", - "dc:date": "2024-01-04T09:06:08+00:00", - "content": "

The show will use AI to bring the star to life using thousands of his personal photos and home-video footage

", - "contentSnippet": "The show will use AI to bring the star to life using thousands of his personal photos and home-video footage", - "guid": "b1130225", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-04T09:06:08.000Z" - }, - { - "creator": "Matt Majendie", - "date": "2024-01-04T09:03:43+00:00", - "title": "Emma Raducanu gets Australian Open boost despite three-set defeat by Elina Svitolina", - "link": "https://www.standard.co.uk/sport/tennis/emma-raducanu-elina-svitolina-australian-open-b1130251.html", - "pubDate": "Thu, 04 Jan 2024 09:03:43 GMT", - "dc:creator": "Matt Majendie", - "dc:date": "2024-01-04T09:03:43+00:00", - "content": "

Former British No1 should take confidence despite loss as she steps up promising injury comeback

", - "contentSnippet": "Former British No1 should take confidence despite loss as she steps up promising injury comeback", - "guid": "b1130251", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2024-01-04T09:03:43.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-04T09:01:09+00:00", - "title": "Topps Tiles shares slide after cautious consumers hit revenue", - "link": "https://www.standard.co.uk/business/business-news/topps-tiles-shares-slide-after-cautious-consumers-hit-revenue-b1130253.html", - "pubDate": "Thu, 04 Jan 2024 09:01:09 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-04T09:01:09+00:00", - "content": "Revenue was down by 4% in the last three months of 2022, the business said on Thursday.", - "contentSnippet": "Revenue was down by 4% in the last three months of 2022, the business said on Thursday.", - "guid": "b1130253", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T09:01:09.000Z" - }, - { - "creator": "Rosie Fitzmaurice", - "date": "2024-01-04T09:00:03+00:00", - "title": "ZOE diet: could this little device help you live for longer?", - "link": "https://www.standard.co.uk/lifestyle/zoe-app-diet-reviews-uk-cost-nutrition-study-meal-plan-b1084449.html", - "pubDate": "Thu, 04 Jan 2024 09:00:03 GMT", - "dc:creator": "Rosie Fitzmaurice", - "dc:date": "2024-01-04T09:00:03+00:00", - "content": "

Glucose monitors are a status symbol among the fitterati, but do they work? Rosie Fitzmaurice puts one to the test

", - "contentSnippet": "Glucose monitors are a status symbol among the fitterati, but do they work? Rosie Fitzmaurice puts one to the test", - "guid": "b1084449", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:03.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Why this luxe Turkish resort ticks all the boxes for holidaymakers", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-regnum-holiday-luxury-resort-british-airways-holidays-b1118780.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

For five-star relaxation, fun-filled activities, unforgettable food and drink, and more, at Antalya\u2019s five-star Regnum Carya, it's all on the menu

", - "contentSnippet": "For five-star relaxation, fun-filled activities, unforgettable food and drink, and more, at Antalya\u2019s five-star Regnum Carya, it's all on the menu", - "guid": "b1118780", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Discover so much more than sun and sand on holiday in Turkey", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-british-airways-holidays-b1120883.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

Experience a unique blend of history, culture and cuisine at this meeting point of Europe and Asia \u2013 as well as sunshine and great beaches all year round

", - "contentSnippet": "Experience a unique blend of history, culture and cuisine at this meeting point of Europe and Asia \u2013 as well as sunshine and great beaches all year round", - "guid": "b1120883", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Dive into the Mediterranean's Turquoise Coast at Liberty Fabay ", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/liberty-fabay-british-airways-holidays-turkey-b1118794.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

On this sun-blessed stretch of the Turkish Riviera you'll find a truly relaxing holiday to suit both couples and families, with history on your doorstep

", - "contentSnippet": "On this sun-blessed stretch of the Turkish Riviera you'll find a truly relaxing holiday to suit both couples and families, with history on your doorstep", - "guid": "b1118794", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Enjoy Turkey's Aegean coast in style at these luxury resorts", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-anda-barut-bayou-villa-holidays-british-airways-b1119621.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

At Anda Barut Collection and Bayou Villas on the idyllic Turquoise Coast, you can explore the historic surroundings or just relax and soak up year-round sun

", - "contentSnippet": "At Anda Barut Collection and Bayou Villas on the idyllic Turquoise Coast, you can explore the historic surroundings or just relax and soak up year-round sun", - "guid": "b1119621", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Choose an Istanbul hotel that gives you the best of the city and the sea", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/marriott-istanbul-turkey-travel-holiday-b1119517.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

On a British Airways Holidays stay at these Marriott International Luxury Brands Hotels, you can combine the thrills of a bustling centuries-old metropolis with a sunshine break

", - "contentSnippet": "On a British Airways Holidays stay at these Marriott International Luxury Brands Hotels, you can combine the thrills of a bustling centuries-old metropolis with a sunshine break", - "guid": "b1119517", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Get a fresh view of Turkey from the stunning Hillside Beach Club", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-holiday-turquoise-coast-british-airways-b1118651.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

Experience a beautifully unspoilt side of the Mediterranean from this luxurious base on the captivating Turquoise Coast

", - "contentSnippet": "Experience a beautifully unspoilt side of the Mediterranean from this luxurious base on the captivating Turquoise Coast", - "guid": "b1118651", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Why Riga needs to be on your travel bucket list", - "link": "https://www.standard.co.uk/lifestyle/travel/riga-latvia-british-airways-b1124244.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

Off the beaten track but easily accessible with British Airways, a feast of culture, food and fun awaits in this modern European capital

", - "contentSnippet": "Off the beaten track but easily accessible with British Airways, a feast of culture, food and fun awaits in this modern European capital", - "guid": "b1124244", - "categories": [ - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Find the best of Turkey's Turquoise Coast in one sunny seaside resort", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/british-airways-turkey-hilton-sarigerme-b1120173.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

At the Hilton Dalaman Sarigerme Resort and Spa you'll find an idyllic location, a sumptuous choice of great cuisine and so much to see and do

", - "contentSnippet": "At the Hilton Dalaman Sarigerme Resort and Spa you'll find an idyllic location, a sumptuous choice of great cuisine and so much to see and do", - "guid": "b1120173", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Swim, rest or play in style at these luxurious Turkish resorts", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-golf-holiday-belek-british-airways-b1120495.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

Tee off, chill out or make a splash at these three spacious, luxe destinations in Belek on the idyllic Mediterranean coast

", - "contentSnippet": "Tee off, chill out or make a splash at these three spacious, luxe destinations in Belek on the idyllic Mediterranean coast", - "guid": "b1120495", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Take your pick of these stunning escapes on the Turquoise Coast", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-turquoise-coast-hotel-holiday-b1120630.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

Check into Titanic Hotels' sumptuous resorts in Antalya, Turkey to enjoy luxury, relaxation and great beaches... plus plenty of golf

", - "contentSnippet": "Check into Titanic Hotels' sumptuous resorts in Antalya, Turkey to enjoy luxury, relaxation and great beaches... plus plenty of golf", - "guid": "b1120630", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "", - "date": "2024-01-04T09:00:00+00:00", - "title": "Discover the many different sides to Turkey", - "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-holiday-turquoise-coast-bodrum-istanbul-b1116911.html", - "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", - "dc:creator": "", - "dc:date": "2024-01-04T09:00:00+00:00", - "content": "

Whether you're looking for great beaches or centuries of culture and delicious cuisine, you'll find them on a great value holiday with British Airways Holidays

", - "contentSnippet": "Whether you're looking for great beaches or centuries of culture and delicious cuisine, you'll find them on a great value holiday with British Airways Holidays", - "guid": "b1116911", - "categories": [ - "Discover Turkey", - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T09:00:00.000Z" - }, - { - "creator": "Martyn Landi", - "date": "2024-01-04T08:58:56+00:00", - "title": "Microsoft adds dedicated AI assistant button to Windows PC keyboards", - "link": "https://www.standard.co.uk/news/tech/microsoft-google-las-vegas-ces-amazon-b1130243.html", - "pubDate": "Thu, 04 Jan 2024 08:58:56 GMT", - "dc:creator": "Martyn Landi", - "dc:date": "2024-01-04T08:58:56+00:00", - "content": "The addition is the first major design change to Windows computer keyboards in nearly 30 years.", - "contentSnippet": "The addition is the first major design change to Windows computer keyboards in nearly 30 years.", - "guid": "b1130243", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2024-01-04T08:58:56.000Z" - }, - { - "creator": "David Lynch", - "date": "2024-01-04T08:56:17+00:00", - "title": "Labour claims questions remain as company owned by Sunak\u2019s wife is closed", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-labour-government-oliver-dowden-prime-minister-b1130231.html", - "pubDate": "Thu, 04 Jan 2024 08:56:17 GMT", - "dc:creator": "David Lynch", - "dc:date": "2024-01-04T08:56:17+00:00", - "content": "Senior Labour figure Pat McFadden raised questions about Catamaran Ventures UK, the investment company owned by Rishi Sunak\u2019s wife Akshata Murty.", - "contentSnippet": "Senior Labour figure Pat McFadden raised questions about Catamaran Ventures UK, the investment company owned by Rishi Sunak\u2019s wife Akshata Murty.", - "guid": "b1130231", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T08:56:17.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-04T08:51:12+00:00", - "title": "Tottenham: Players paying the price for Ange Postecoglou revolution but history proves it produces results", - "link": "https://www.standard.co.uk/sport/football/tottenham-injuries-postecoglou-sarr-bentancur-ange-ball-b1130034.html", - "pubDate": "Thu, 04 Jan 2024 08:51:12 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-04T08:51:12+00:00", - "content": "

The Australian's high-intensity training and tactics means muscle injuries are inevitable

", - "contentSnippet": "The Australian's high-intensity training and tactics means muscle injuries are inevitable", - "guid": "b1130034", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T08:51:12.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2024-01-04T08:50:46+00:00", - "title": "Manchester United want Michael Olise to become one of the first signings of Sir Jim Ratcliffe era", - "link": "https://www.standard.co.uk/sport/football/man-utd-transfer-news-michael-olise-crystal-palace-b1130029.html", - "pubDate": "Thu, 04 Jan 2024 08:50:46 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2024-01-04T08:50:46+00:00", - "content": "

The Crystal Palace star has been identified as key to vitalising Erik ten Hag's woeful attack

", - "contentSnippet": "The Crystal Palace star has been identified as key to vitalising Erik ten Hag's woeful attack", - "guid": "b1130029", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T08:50:46.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-04T08:50:32+00:00", - "title": "Littler vs Humphries LIVE! World Darts Championship final stream, result and updates", - "link": "https://www.standard.co.uk/sport/littler-vs-humphries-world-darts-championship-final-live-latest-score-updates-2024-b1130144.html", - "pubDate": "Thu, 04 Jan 2024 08:50:32 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-04T08:50:32+00:00", - "content": "

Teenage sensation Luke Littler beaten in thriller at Ally Pally

", - "contentSnippet": "Teenage sensation Luke Littler beaten in thriller at Ally Pally", - "guid": "b1130144", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T08:50:32.000Z" - }, - { - "creator": "Lydia Chantler-Hicks", - "date": "2024-01-04T08:47:23+00:00", - "title": "Family 'terrified' after London Eye capsule lid 'blew open' in Storm Henk", - "link": "https://www.standard.co.uk/news/london/london-eye-closed-storm-henk-weather-winds-rain-b1130101.html", - "pubDate": "Thu, 04 Jan 2024 08:47:23 GMT", - "dc:creator": "Lydia Chantler-Hicks", - "dc:date": "2024-01-04T08:47:23+00:00", - "content": "

David Nock, who visited the capital from Bournemouth, says his children 'found it terrifying'

", - "contentSnippet": "David Nock, who visited the capital from Bournemouth, says his children 'found it terrifying'", - "guid": "b1130101", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-04T08:47:23.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2024-01-04T08:41:27+00:00", - "title": "Labour tax cuts would threaten another 'period of austerity' for public services, warns IFS", - "link": "https://www.standard.co.uk/news/politics/tax-cuts-labour-public-services-austerity-keir-starmer-rishi-sunak-b1130245.html", - "pubDate": "Thu, 04 Jan 2024 08:41:27 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2024-01-04T08:41:27+00:00", - "content": "

Sir Keir Starmer and shadow Chancellor Rachel Reeves are reported to be considering tax cuts in Labour\u2019s election manifesto, possibly to income tax

", - "contentSnippet": "Sir Keir Starmer and shadow Chancellor Rachel Reeves are reported to be considering tax cuts in Labour\u2019s election manifesto, possibly to income tax", - "guid": "b1130245", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T08:41:27.000Z" - }, - { - "creator": "George Flood", - "date": "2024-01-04T08:36:37+00:00", - "title": "Kylian Mbappe offers future update amid latest Liverpool and Real Madrid links", - "link": "https://www.standard.co.uk/sport/football/kylian-mbappe-liverpool-fc-real-madrid-transfer-b1130248.html", - "pubDate": "Thu, 04 Jan 2024 08:36:37 GMT", - "dc:creator": "George Flood", - "dc:date": "2024-01-04T08:36:37+00:00", - "content": "

France superstar is able to agree a pre-contract deal with another club this month

", - "contentSnippet": "France superstar is able to agree a pre-contract deal with another club this month", - "guid": "b1130248", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T08:36:37.000Z" - }, - { - "creator": "Simon Hunt", - "date": "2024-01-04T08:24:57+00:00", - "title": "WeWork's UK subsidiary owes \u00a3730 million after 'weaker than contemplated' demand", - "link": "https://www.standard.co.uk/business/weworks-uk-subsidiary-owes-ps730-million-after-sluggish-covid-recovery-b1130246.html", - "pubDate": "Thu, 04 Jan 2024 08:24:57 GMT", - "dc:creator": "Simon Hunt", - "dc:date": "2024-01-04T08:24:57+00:00", - "content": "

WeWork\u2019s top UK subsidiary posted a loss of \u00a3110 million in 2022 and said it owed nearly three quarters of a billion pounds to its US parent in signs the London office market\u2019s sluggish recovery from the coronavirus pandemic has crippled its finances.\u00a0

", - "contentSnippet": "WeWork\u2019s top UK subsidiary posted a loss of \u00a3110 million in 2022 and said it owed nearly three quarters of a billion pounds to its US parent in signs the London office market\u2019s sluggish recovery from the coronavirus pandemic has crippled its finances.", - "guid": "b1130246", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T08:24:57.000Z" - }, - { - "creator": "Sian Baldwin and Nuray Bulbul", - "date": "2024-01-04T08:24:50+00:00", - "title": "When are the next Tube strikes? TfL strike dates January 2024", - "link": "https://www.standard.co.uk/news/transport/next-tube-tfl-strikes-industrial-action-threat-unions-reject-pay-rise-b1123379.html", - "pubDate": "Thu, 04 Jan 2024 08:24:50 GMT", - "dc:creator": "Sian Baldwin and Nuray Bulbul", - "dc:date": "2024-01-04T08:24:50+00:00", - "content": "

There's more industrial action on the London Underground this week. Here's when and why

", - "contentSnippet": "There's more industrial action on the London Underground this week. Here's when and why", - "guid": "b1123379", - "categories": [ - "Transport", - "News" - ], - "isoDate": "2024-01-04T08:24:50.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2024-01-04T08:24:29+00:00", - "title": "New Jersey imam shot and killed outside mosque as police hunt gunman", - "link": "https://www.standard.co.uk/news/world/new-jersey-imam-shooting-mosque-newark-b1130240.html", - "pubDate": "Thu, 04 Jan 2024 08:24:29 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2024-01-04T08:24:29+00:00", - "content": "

Imam Hassan Sharif was shot multiple times in his car outside a mosque in Newark

", - "contentSnippet": "Imam Hassan Sharif was shot multiple times in his car outside a mosque in Newark", - "guid": "b1130240", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T08:24:29.000Z" - }, - { - "creator": "Sam Blewett", - "date": "2024-01-04T08:20:44+00:00", - "title": "Prosecutors given file on parliamentary researcher accused of spying for China ", - "link": "https://www.standard.co.uk/news/politics/parliamentary-researcher-accused-of-spying-for-china-file-cps-met-police-b1130247.html", - "pubDate": "Thu, 04 Jan 2024 08:20:44 GMT", - "dc:creator": "Sam Blewett", - "dc:date": "2024-01-04T08:20:44+00:00", - "content": "

Police have handed prosecutors a file on their investigation into a parliamentary researcher arrested on suspicion of spying for China.

", - "contentSnippet": "Police have handed prosecutors a file on their investigation into a parliamentary researcher arrested on suspicion of spying for China.", - "guid": "b1130247", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T08:20:44.000Z" - }, - { - "creator": "El Hunt", - "date": "2024-01-04T08:17:08+00:00", - "title": "The Traitors\u2019 Claudia Winkleman: season two's contestants are 'brutal'", - "link": "https://www.standard.co.uk/culture/tvfilm/the-traitors-claudia-winkleman-second-season-brutal-b1128554.html", - "pubDate": "Thu, 04 Jan 2024 08:17:08 GMT", - "dc:creator": "El Hunt", - "dc:date": "2024-01-04T08:17:08+00:00", - "content": "

Later in season two, she wears a truly ridiculous outfit that channels \u201ca sea monster meets Princess Anne\u201d - the look is set to be auctioned off for charity

", - "contentSnippet": "Later in season two, she wears a truly ridiculous outfit that channels \u201ca sea monster meets Princess Anne\u201d - the look is set to be auctioned off for charity", - "guid": "b1128554", - "categories": [ - "TV", - "Culture" - ], - "isoDate": "2024-01-04T08:17:08.000Z" - }, - { - "creator": "Rob Freeman", - "date": "2024-01-04T08:14:29+00:00", - "title": "Man arrested after shots fired at three locations in Liverpool in one night", - "link": "https://www.standard.co.uk/news/uk/liverpool-merseyside-police-police-merseyside-b1130236.html", - "pubDate": "Thu, 04 Jan 2024 08:14:29 GMT", - "dc:creator": "Rob Freeman", - "dc:date": "2024-01-04T08:14:29+00:00", - "content": "The first report of shots was received from a shop, with further incidents outside a cinema and at a nearby property.", - "contentSnippet": "The first report of shots was received from a shop, with further incidents outside a cinema and at a nearby property.", - "guid": "b1130236", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T08:14:29.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-04T08:06:55+00:00", - "title": "TUC condemns \u2018obscene\u2019 pay gap between FTSE 100 bosses and average worker", - "link": "https://www.standard.co.uk/news/politics/tuc-high-pay-centre-government-b1130219.html", - "pubDate": "Thu, 04 Jan 2024 08:06:55 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-04T08:06:55+00:00", - "content": "FTSE 100 bosses will have earned the median full-time worker\u2019s annual wage by 1pm on Thursday, the High Pay Centre said.", - "contentSnippet": "FTSE 100 bosses will have earned the median full-time worker\u2019s annual wage by 1pm on Thursday, the High Pay Centre said.", - "guid": "b1130219", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T08:06:55.000Z" - }, - { - "creator": "El Hunt and Vicky Jessop", - "date": "2024-01-04T08:04:59+00:00", - "title": "The Traitors: we pick the most iconic moments from season one", - "link": "https://www.standard.co.uk/culture/tvfilm/the-traitors-bbc-most-iconic-moments-b1128641.html", - "pubDate": "Thu, 04 Jan 2024 08:04:59 GMT", - "dc:creator": "El Hunt and Vicky Jessop", - "dc:date": "2024-01-04T08:04:59+00:00", - "content": "

Let's look back at the season that started it all, as a new one commences

", - "contentSnippet": "Let's look back at the season that started it all, as a new one commences", - "guid": "b1128641", - "categories": [ - "TV", - "Culture" - ], - "isoDate": "2024-01-04T08:04:59.000Z" - }, - { - "creator": "Mike Daw", - "date": "2024-01-04T08:00:00+00:00", - "title": "Things to do in London this weekend (January 5 \u2013 7) ", - "link": "https://www.standard.co.uk/going-out/attractions/things-to-do-ideas-events-london-weekend-b1129958.html", - "pubDate": "Thu, 04 Jan 2024 08:00:00 GMT", - "dc:creator": "Mike Daw", - "dc:date": "2024-01-04T08:00:00+00:00", - "content": "

Mike Daw returns for the first weekend guide of the new year with everything needed to make it a memorable one

", - "contentSnippet": "Mike Daw returns for the first weekend guide of the new year with everything needed to make it a memorable one", - "guid": "b1129958", - "categories": [ - "Events and Things To Do", - "Going Out" - ], - "isoDate": "2024-01-04T08:00:00.000Z" - }, - { - "creator": "Holly Williams", - "date": "2024-01-04T07:53:29+00:00", - "title": "Next raises profit outlook after better-than-forecast festive trading", - "link": "https://www.standard.co.uk/business/business-news/next-raises-profit-outlook-after-betterthanforecast-festive-trading-b1130242.html", - "pubDate": "Thu, 04 Jan 2024 07:53:29 GMT", - "dc:creator": "Holly Williams", - "dc:date": "2024-01-04T07:53:29+00:00", - "content": "The retail giant saw full-price sales jump 5.7% higher over the nine weeks to December 30.", - "contentSnippet": "The retail giant saw full-price sales jump 5.7% higher over the nine weeks to December 30.", - "guid": "b1130242", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T07:53:29.000Z" - }, - { - "creator": "Matt Watts", - "date": "2024-01-04T07:43:49+00:00", - "title": "Donald Trump asks Supreme Court to overturn Colorado presidential ballot ban", - "link": "https://www.standard.co.uk/news/world/donald-trump-appeal-supreme-court-us-president-election-ballot-colorado-b1130239.html", - "pubDate": "Thu, 04 Jan 2024 07:43:49 GMT", - "dc:creator": "Matt Watts", - "dc:date": "2024-01-04T07:43:49+00:00", - "content": "

A US Supreme Court ruling on the issue of Mr Trump\u2019s eligibility to run again for the White House would be binding nationwide

", - "contentSnippet": "A US Supreme Court ruling on the issue of Mr Trump\u2019s eligibility to run again for the White House would be binding nationwide", - "guid": "b1130239", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T07:43:49.000Z" - }, - { - "creator": "Jacob Phillips", - "date": "2024-01-04T07:30:34+00:00", - "title": "Zara Aleena's killer 'caught having sex with female prison worker in Belmarsh'", - "link": "https://www.standard.co.uk/news/crime/jordan-mcsweeney-zara-aleena-hmp-belmarsh-b1130206.html", - "pubDate": "Thu, 04 Jan 2024 07:30:34 GMT", - "dc:creator": "Jacob Phillips", - "dc:date": "2024-01-04T07:30:34+00:00", - "content": "

A prison worker was allegedly arrested on suspicion of misconduct

", - "contentSnippet": "A prison worker was allegedly arrested on suspicion of misconduct", - "guid": "b1130206", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T07:30:34.000Z" - }, - { - "creator": "Lydia Chantler-Hicks", - "date": "2024-01-04T07:27:39+00:00", - "title": "Liverpool shootings: Man arrested after shots fired at three locations including cinema and corner shop", - "link": "https://www.standard.co.uk/news/crime/man-arrested-shots-fired-liverpool-cinema-merseyside-police-b1130234.html", - "pubDate": "Thu, 04 Jan 2024 07:27:39 GMT", - "dc:creator": "Lydia Chantler-Hicks", - "dc:date": "2024-01-04T07:27:39+00:00", - "content": "

Footage showed a man opening fire inside a newsagents

", - "contentSnippet": "Footage showed a man opening fire inside a newsagents", - "guid": "b1130234", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T07:27:39.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2024-01-04T07:11:43+00:00", - "title": "Watch: Dramatic moment man leaps over US courtroom bench to attack judge in Las Vegas", - "link": "https://www.standard.co.uk/news/world/nevada-courtroom-judge-attack-las-vegas-video-b1130235.html", - "pubDate": "Thu, 04 Jan 2024 07:11:43 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2024-01-04T07:11:43+00:00", - "content": "

Judge left injured but did not need hospital treatment after being attacked by defendant during sentencing

", - "contentSnippet": "Judge left injured but did not need hospital treatment after being attacked by defendant during sentencing", - "guid": "b1130235", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T07:11:43.000Z" - }, - { - "creator": "David Lynch", - "date": "2024-01-04T07:11:33+00:00", - "title": "Starmer urges voters to reject \u2018populism and cynicism\u2019 ahead of next election", - "link": "https://www.standard.co.uk/news/politics/keir-starmer-government-tories-prime-minister-jeremy-corbyn-b1130212.html", - "pubDate": "Thu, 04 Jan 2024 07:11:33 GMT", - "dc:creator": "David Lynch", - "dc:date": "2024-01-04T07:11:33+00:00", - "content": "The Labour leader will claim the Tories have \u2018no practical achievements to point towards\u2019 after nearly 14 years in Government.", - "contentSnippet": "The Labour leader will claim the Tories have \u2018no practical achievements to point towards\u2019 after nearly 14 years in Government.", - "guid": "b1130212", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T07:11:33.000Z" - }, - { - "creator": "Madeleine Spencer", - "date": "2024-01-04T07:00:37+00:00", - "title": "9 cheap ways to hack yourself to better health \u2014 from adding salt to your water and eating flaxseed daily ", - "link": "https://www.standard.co.uk/lifestyle/wellness/health-tips-cheap-free-sleep-diet-nutrition-flaxseed-b1129455.html", - "pubDate": "Thu, 04 Jan 2024 07:00:37 GMT", - "dc:creator": "Madeleine Spencer", - "dc:date": "2024-01-04T07:00:37+00:00", - "content": "

Wellness needn't cause financial ruin. Madeleine Spencer has a list of easy habits that won't cost you more than a few pennies

", - "contentSnippet": "Wellness needn't cause financial ruin. Madeleine Spencer has a list of easy habits that won't cost you more than a few pennies", - "guid": "b1129455", - "categories": [ - "Wellness", - "Lifestyle" - ], - "isoDate": "2024-01-04T07:00:37.000Z" - }, - { - "creator": "Josh Payne", - "date": "2024-01-04T06:53:55+00:00", - "title": "Prince Andrew named in court documents relating to paedophile Jeffrey Epstein", - "link": "https://www.standard.co.uk/news/uk/jeffrey-epstein-documents-prince-andrew-bill-clinton-donald-trump-virginia-giuffre-johanna-sjoberg-b1130228.html", - "pubDate": "Thu, 04 Jan 2024 06:53:55 GMT", - "dc:creator": "Josh Payne", - "dc:date": "2024-01-04T06:53:55+00:00", - "content": "

A US judge ruled documents naming more than 170 people should be made public last month

", - "contentSnippet": "A US judge ruled documents naming more than 170 people should be made public last month", - "guid": "b1130228", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T06:53:55.000Z" - }, - { - "creator": "Jordan King", - "date": "2024-01-04T06:34:08+00:00", - "title": "Iran: At least 95 killed in explosions near general Qasem Soleimani's tomb, says state TV", - "link": "https://www.standard.co.uk/news/world/iran-terrorist-attack-kerman-qassem-soleimani-b1130114.html", - "pubDate": "Thu, 04 Jan 2024 06:34:08 GMT", - "dc:creator": "Jordan King", - "dc:date": "2024-01-04T06:34:08+00:00", - "content": "

The blasts happened at an event to honour the anniversary of when Iranian general Qassem\u00a0Soleimani was killed in a US airstrike

", - "contentSnippet": "The blasts happened at an event to honour the anniversary of when Iranian general Qassem\u00a0Soleimani was killed in a US airstrike", - "guid": "b1130114", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T06:34:08.000Z" - }, - { - "creator": "Shelley von Strunckel", - "date": "2024-01-04T06:00:00+00:00", - "title": "Horoscope today: Your daily guide for Thursday, January 4, 2024", - "link": "https://www.standard.co.uk/lifestyle/horoscope-daily-stars-shelley-von-strunckel-thursday-january-4-2024-b1130093.html", - "pubDate": "Thu, 04 Jan 2024 06:00:00 GMT", - "dc:creator": "Shelley von Strunckel", - "dc:date": "2024-01-04T06:00:00+00:00", - "content": "

Read what the stars mean for you today, from Capricorn to Gemini

", - "contentSnippet": "Read what the stars mean for you today, from Capricorn to Gemini", - "guid": "b1120001", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-04T06:00:00.000Z" - }, - { - "creator": "Elizabeth Gregory", - "date": "2024-01-04T06:00:00+00:00", - "title": "After The Flood: who plays who in ITV's new police drama, from Sophie Rundle to Philip Glenister", - "link": "https://www.standard.co.uk/culture/tvfilm/after-the-flood-cast-who-plays-actors-itv-police-drama-b1129887.html", - "pubDate": "Thu, 04 Jan 2024 06:00:00 GMT", - "dc:creator": "Elizabeth Gregory", - "dc:date": "2024-01-04T06:00:00+00:00", - "content": "

In the upcoming nail-biting mystery, a body is unearthed by a tremendous flood

", - "contentSnippet": "In the upcoming nail-biting mystery, a body is unearthed by a tremendous flood", - "guid": "b1129887", - "categories": [ - "TV", - "Culture" - ], - "isoDate": "2024-01-04T06:00:00.000Z" - }, - { - "creator": "Vicky Jessop", - "date": "2024-01-04T06:00:00+00:00", - "title": "Best games coming out in January: from Tekken 8 to The Last Of Us Part II, here's what to play", - "link": "https://www.standard.co.uk/culture/gaming/best-games-releases-january-2024-play-the-last-of-us-tekken-b1130160.html", - "pubDate": "Thu, 04 Jan 2024 06:00:00 GMT", - "dc:creator": "Vicky Jessop", - "dc:date": "2024-01-04T06:00:00+00:00", - "content": "

Start 2024 in style with these upcoming games

", - "contentSnippet": "Start 2024 in style with these upcoming games", - "guid": "b1130160", - "categories": [ - "Gaming", - "Culture" - ], - "isoDate": "2024-01-04T06:00:00.000Z" - }, - { - "creator": "Pa Reporter", - "date": "2024-01-04T05:32:58+00:00", - "title": "What the papers say \u2013 January 4", - "link": "https://www.standard.co.uk/news/uk/nhs-boris-johnson-conservatives-guardian-prime-minister-b1130230.html", - "pubDate": "Thu, 04 Jan 2024 05:32:58 GMT", - "dc:creator": "Pa Reporter", - "dc:date": "2024-01-04T05:32:58+00:00", - "content": "A wide array of stories fight for attention on the front pages of Thursday\u2019s newspapers.", - "contentSnippet": "A wide array of stories fight for attention on the front pages of Thursday\u2019s newspapers.", - "guid": "b1130230", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T05:32:58.000Z" - }, - { - "creator": "Pa Scotland Reporters", - "date": "2024-01-04T00:01:48+00:00", - "title": "Child abuse ring members who plunged to \u2018depths of depravity\u2019 face sentencing", - "link": "https://www.standard.co.uk/news/crime/glasgow-high-court-scottish-none-police-scotland-b1130223.html", - "pubDate": "Thu, 04 Jan 2024 00:01:48 GMT", - "dc:creator": "Pa Scotland Reporters", - "dc:date": "2024-01-04T00:01:48+00:00", - "content": "Seven people who carried out sexual and physical abuse are to be sentenced at the High Court in Glasgow on Thursday.", - "contentSnippet": "Seven people who carried out sexual and physical abuse are to be sentenced at the High Court in Glasgow on Thursday.", - "guid": "b1130223", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T00:01:48.000Z" - }, - { - "creator": "Ella Pickover", - "date": "2024-01-04T00:01:10+00:00", - "title": "A number of hospitals call for doctors to return to work as strike continues", - "link": "https://www.standard.co.uk/news/politics/england-nhs-stephen-powis-british-medical-association-government-b1130224.html", - "pubDate": "Thu, 04 Jan 2024 00:01:10 GMT", - "dc:creator": "Ella Pickover", - "dc:date": "2024-01-04T00:01:10+00:00", - "content": "Junior doctors in England are staging the longest walkout in NHS history.", - "contentSnippet": "Junior doctors in England are staging the longest walkout in NHS history.", - "guid": "b1130224", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T00:01:10.000Z" - }, - { - "creator": "Neil Lancefield", - "date": "2024-01-04T00:01:00+00:00", - "title": "Electric vehicles to hit one million mark this month", - "link": "https://www.standard.co.uk/business/business-news/electric-vehicles-to-hit-one-million-mark-this-month-b1130221.html", - "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", - "dc:creator": "Neil Lancefield", - "dc:date": "2024-01-04T00:01:00+00:00", - "content": "More than 967,000 battery electric vehicles were licensed as of the end of November, the RAC Foundation said.", - "contentSnippet": "More than 967,000 battery electric vehicles were licensed as of the end of November, the RAC Foundation said.", - "guid": "b1130221", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T00:01:00.000Z" - }, - { - "creator": "Eleanor Busby", - "date": "2024-01-04T00:01:00+00:00", - "title": "Exam board to offer pupils on-screen English GCSEs by next summer", - "link": "https://www.standard.co.uk/news/tech/gcses-english-students-schools-pearson-b1130227.html", - "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", - "dc:creator": "Eleanor Busby", - "dc:date": "2024-01-04T00:01:00+00:00", - "content": "Up to 125,000 UK students will have the option to take Edexcel\u2019s GCSE English language and English literature exams on-screen for the first time.", - "contentSnippet": "Up to 125,000 UK students will have the option to take Edexcel\u2019s GCSE English language and English literature exams on-screen for the first time.", - "guid": "b1130227", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2024-01-04T00:01:00.000Z" - }, - { - "creator": "Vicky Shaw", - "date": "2024-01-04T00:01:00+00:00", - "title": "Record Boxing Day bounce in sellers coming to market, says Rightmove", - "link": "https://www.standard.co.uk/business/money/record-boxing-day-bounce-in-sellers-coming-to-market-says-rightmove-b1130220.html", - "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", - "dc:creator": "Vicky Shaw", - "dc:date": "2024-01-04T00:01:00+00:00", - "content": "The number of buyers contacting estate agents about homes for sale also jumped, the property website said.", - "contentSnippet": "The number of buyers contacting estate agents about homes for sale also jumped, the property website said.", - "guid": "b1130220", - "categories": [ - "Money", - "Business" - ], - "isoDate": "2024-01-04T00:01:00.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-04T00:01:00+00:00", - "title": "Two fifths of UK business owners have parents who are founders \u2013 survey", - "link": "https://www.standard.co.uk/business/money/two-fifths-of-uk-business-owners-have-parents-who-are-founders-survey-b1130217.html", - "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-04T00:01:00+00:00", - "content": "The study also found that just 13% of business owners took out a bank loan to launch their start-up.", - "contentSnippet": "The study also found that just 13% of business owners took out a bank loan to launch their start-up.", - "guid": "b1130217", - "categories": [ - "Money", - "Business" - ], - "isoDate": "2024-01-04T00:01:00.000Z" - }, - { - "creator": "Rebecca Speare-Cole", - "date": "2024-01-04T00:01:00+00:00", - "title": "UK consumption putting enormous pressure on world\u2019s forests, MPs warn", - "link": "https://www.standard.co.uk/business/business-news/uk-consumption-putting-enormous-pressure-on-world-s-forests-mps-warn-b1130222.html", - "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", - "dc:creator": "Rebecca Speare-Cole", - "dc:date": "2024-01-04T00:01:00+00:00", - "content": "The Environmental Audit Committee said the intensity of the UK\u2019s consumption on the world\u2019s forest is higher than that of China.", - "contentSnippet": "The Environmental Audit Committee said the intensity of the UK\u2019s consumption on the world\u2019s forest is higher than that of China.", - "guid": "b1130222", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T00:01:00.000Z" - }, - { - "creator": "Ella Pickover", - "date": "2024-01-04T00:01:00+00:00", - "title": "Sunak faces calls to act on pledge to cut waiting lists as strike action continues", - "link": "https://www.standard.co.uk/business/business-news/sunak-faces-calls-to-act-on-pledge-to-cut-waiting-lists-as-strike-action-continues-b1130218.html", - "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", - "dc:creator": "Ella Pickover", - "dc:date": "2024-01-04T00:01:00+00:00", - "content": "Junior doctors in England have entered their second day of strike action.", - "contentSnippet": "Junior doctors in England have entered their second day of strike action.", - "guid": "b1130218", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T00:01:00.000Z" - }, - { - "creator": "Danny Halpin", - "date": "2024-01-04T00:01:00+00:00", - "title": "Changes to food labelling to encourage buying British", - "link": "https://www.standard.co.uk/business/business-news/changes-to-food-labelling-to-encourage-buying-british-b1130216.html", - "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", - "dc:creator": "Danny Halpin", - "dc:date": "2024-01-04T00:01:00+00:00", - "content": "The Government said it wants to give people more choice and support UK farmers.", - "contentSnippet": "The Government said it wants to give people more choice and support UK farmers.", - "guid": "b1130216", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T00:01:00.000Z" - }, - { - "creator": "Nina Massey", - "date": "2024-01-03T23:30:00+00:00", - "title": "Hearing aids may help people live longer, study suggests", - "link": "https://www.standard.co.uk/news/science/people-research-usa-american-b1130215.html", - "pubDate": "Wed, 03 Jan 2024 23:30:00 GMT", - "dc:creator": "Nina Massey", - "dc:date": "2024-01-03T23:30:00+00:00", - "content": "Past research has suggested that untreated hearing loss can result in a reduced life span.", - "contentSnippet": "Past research has suggested that untreated hearing loss can result in a reduced life span.", - "guid": "b1130215", - "categories": [ - "Science", - "News" - ], - "isoDate": "2024-01-03T23:30:00.000Z" - }, - { - "creator": "William Mata", - "date": "2024-01-04T11:11:38+00:00", - "title": "Junior doctors' strike: How will hospitals be affected and what to do if you have a cancelled appointment", - "link": "https://www.standard.co.uk/news/health/junior-doctor-strike-how-hospitals-affected-appointment-cancelled-b1127960.html", - "pubDate": "Thu, 04 Jan 2024 11:11:38 GMT", - "dc:creator": "William Mata", - "dc:date": "2024-01-04T11:11:38+00:00", - "content": "

How you can prepare when junior doctors walk out this month and next

", - "contentSnippet": "How you can prepare when junior doctors walk out this month and next", - "guid": "b1127960", - "categories": [ - "Health", - "News" - ], - "isoDate": "2024-01-04T11:11:38.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-04T11:10:22+00:00", - "title": "Best air fryer deals: healthier, low-cost meals for the whole family", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/kitchen-appliances/best-air-fryer-deals-b1020314.html", - "pubDate": "Thu, 04 Jan 2024 11:10:22 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-04T11:10:22+00:00", - "content": "

Get \u2018em while they\u2019re hot this January

", - "contentSnippet": "Get \u2018em while they\u2019re hot this January", - "guid": "b1020314", - "categories": [ - "Kitchen Appliances", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T11:10:22.000Z" - }, - { - "creator": "Seren Morris", - "date": "2024-01-04T11:09:07+00:00", - "title": "Universal Credit changes 2024: Benefit migration, cost of living payments, and more", - "link": "https://www.standard.co.uk/news/uk/universal-credit-changes-2024-benefits-moving-payments-dates-b1130151.html", - "pubDate": "Thu, 04 Jan 2024 11:09:07 GMT", - "dc:creator": "Seren Morris", - "dc:date": "2024-01-04T11:09:07+00:00", - "content": "

Find out below what changes are coming up and how they could affect you

", - "contentSnippet": "Find out below what changes are coming up and how they could affect you", - "guid": "b1130151", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T11:09:07.000Z" - }, - { - "creator": "Hannah Cottrell", - "date": "2024-01-04T11:08:09+00:00", - "title": "Luke Littler inspires new darts fans who \u2018loved watching final\u2019", - "link": "https://www.standard.co.uk/news/uk/luke-littler-alexandra-palace-luke-humphries-nottingham-glasgow-b1130285.html", - "pubDate": "Thu, 04 Jan 2024 11:08:09 GMT", - "dc:creator": "Hannah Cottrell", - "dc:date": "2024-01-04T11:08:09+00:00", - "content": "Adam Edwards said his daughters have been \u2018desperate\u2019 to watch the 16-year-old\u2019s matches.", - "contentSnippet": "Adam Edwards said his daughters have been \u2018desperate\u2019 to watch the 16-year-old\u2019s matches.", - "guid": "b1130285", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T11:08:09.000Z" - }, - { - "creator": "Jordan Reynolds", - "date": "2024-01-04T17:06:15+00:00", - "title": "Photo appeal over New Year stabbing death as murder suspect released on bail", - "link": "https://www.standard.co.uk/news/uk/metropolitan-police-people-eve-ange-postecoglou-camden-b1130394.html", - "pubDate": "Thu, 04 Jan 2024 17:06:15 GMT", - "dc:creator": "Jordan Reynolds", - "dc:date": "2024-01-04T17:06:15+00:00", - "content": "Detectives investigating the death of Harry Pitman, 16, have released pictures of two people they want to identify.", - "contentSnippet": "Detectives investigating the death of Harry Pitman, 16, have released pictures of two people they want to identify.", - "guid": "b1130394", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T17:06:15.000Z" - }, - { - "creator": "Simon Collings", - "date": "2024-01-04T17:01:55+00:00", - "title": "Why Tottenham trump Arsenal and Chelsea with January transfer spending power", - "link": "https://www.standard.co.uk/sport/football/tottenham-arsenal-fc-chelsea-transfers-b1130351.html", - "pubDate": "Thu, 04 Jan 2024 17:01:55 GMT", - "dc:creator": "Simon Collings", - "dc:date": "2024-01-04T17:01:55+00:00", - "content": "

Football finance expert Kieran Maguire provides the lowdown on what fans can expect

", - "contentSnippet": "Football finance expert Kieran Maguire provides the lowdown on what fans can expect", - "guid": "b1130351", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T17:01:55.000Z" - }, - { - "creator": "Marc Mayo and Jonathan Gorrie", - "date": "2024-01-04T17:01:35+00:00", - "title": "Transfer news LIVE! Arsenal learn new Toney option, new defender targets; Dragusin to Spurs; Chelsea latest", - "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-fc-tottenham-chelsea-toney-dragusin-mbappe-b1130232.html", - "pubDate": "Thu, 04 Jan 2024 17:01:35 GMT", - "dc:creator": "Marc Mayo and Jonathan Gorrie", - "dc:date": "2024-01-04T17:01:35+00:00", - "content": "

Follow all the latest transfer news, rumours and gossip in January

", - "contentSnippet": "Follow all the latest transfer news, rumours and gossip in January", - "guid": "b1130232", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T17:01:35.000Z" - }, - { - "creator": "Emma Loffhagen", - "date": "2024-01-04T17:00:52+00:00", - "title": "OPINION - The quarter-life crisis is real: I'm low-key dreading turning 25", - "link": "https://www.standard.co.uk/comment/2024-turning-25-birthday-the-notebook-anniversary-b1130338.html", - "pubDate": "Thu, 04 Jan 2024 17:00:52 GMT", - "dc:creator": "Emma Loffhagen", - "dc:date": "2024-01-04T17:00:52+00:00", - "content": "

There are a number of reasons why 2024 is set to be a particularly significant year. It will see a record-breaking number of national elections which will shape the trajectory of the 21st century world, it will be planet-alteringly decisive for action on climate change, it is the 20th anniversary of The Notebook.

", - "contentSnippet": "There are a number of reasons why 2024 is set to be a particularly significant year. It will see a record-breaking number of national elections which will shape the trajectory of the 21st century world, it will be planet-alteringly decisive for action on climate change, it is the 20th anniversary of The Notebook.", - "guid": "b1130338", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-04T17:00:52.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2024-01-04T17:00:17+00:00", - "title": "Sunak declines to back calls for ex-Post Office boss to lose CBE", - "link": "https://www.standard.co.uk/news/politics/keir-starmer-post-office-prime-minister-toby-jones-itv-b1130399.html", - "pubDate": "Thu, 04 Jan 2024 17:00:17 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2024-01-04T17:00:17+00:00", - "content": "Rishi Sunak and Sir Keir Starmer have both resisted backing calls for a former Post Office boss to lose her CBE over the Horizon scandal.", - "contentSnippet": "Rishi Sunak and Sir Keir Starmer have both resisted backing calls for a former Post Office boss to lose her CBE over the Horizon scandal.", - "guid": "b1130399", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T17:00:17.000Z" - }, - { - "creator": "Jacob Phillips", - "date": "2024-01-04T16:57:12+00:00", - "title": "Watch: Heartwarming moment mother elephant cuddles her calf after being separated for days", - "link": "https://www.standard.co.uk/news/world/india-elephant-tamil-nadu-anamalai-tiger-reserve-b1130380.html", - "pubDate": "Thu, 04 Jan 2024 16:57:12 GMT", - "dc:creator": "Jacob Phillips", - "dc:date": "2024-01-04T16:57:12+00:00", - "content": "

The young calf was found roughly 3km from its herd

", - "contentSnippet": "The young calf was found roughly 3km from its herd", - "guid": "b1130380", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T16:57:12.000Z" - }, - { - "creator": "Lydia Chantler-Hicks", - "date": "2024-01-04T16:56:26+00:00", - "title": "Five men arrested after hundreds of stolen mobile phones found in south London police raid", - "link": "https://www.standard.co.uk/news/crime/men-arrested-brockley-stolen-mobile-phones-london-met-police-b1130365.html", - "pubDate": "Thu, 04 Jan 2024 16:56:26 GMT", - "dc:creator": "Lydia Chantler-Hicks", - "dc:date": "2024-01-04T16:56:26+00:00", - "content": "

The raid comes after thefts across Lewisham, Greenwich and Southwark

", - "contentSnippet": "The raid comes after thefts across Lewisham, Greenwich and Southwark", - "guid": "b1130365", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T16:56:26.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2024-01-04T16:56:15+00:00", - "title": "Child Benefit major change: Millions more parents can claim online for the first time", - "link": "https://www.standard.co.uk/news/politics/child-benefit-claim-online-form-b1130105.html", - "pubDate": "Thu, 04 Jan 2024 16:56:15 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2024-01-04T16:56:15+00:00", - "content": "

HM Revenue and Customs is encouraging parents to go digital rather than use the old paper system

", - "contentSnippet": "HM Revenue and Customs is encouraging parents to go digital rather than use the old paper system", - "guid": "b1130105", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T16:56:15.000Z" - }, - { - "creator": "Rachael Davies", - "date": "2024-01-04T16:50:20+00:00", - "title": "Greggs announces return of popular vegan steak bake", - "link": "https://www.standard.co.uk/news/uk/greggs-vegan-steak-bake-available-veganuary-b1130377.html", - "pubDate": "Thu, 04 Jan 2024 16:50:20 GMT", - "dc:creator": "Rachael Davies", - "dc:date": "2024-01-04T16:50:20+00:00", - "content": "

The customer favourite returns just in time for Veganuary

", - "contentSnippet": "The customer favourite returns just in time for Veganuary", - "guid": "b1130377", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T16:50:20.000Z" - }, - { - "creator": "Nick Purewal", - "date": "2024-01-04T16:49:57+00:00", - "title": "England rugby stars to ditch players' union to make future deals with RFU", - "link": "https://www.standard.co.uk/sport/rugby/england-ditch-players-union-deals-rfu-b1130392.html", - "pubDate": "Thu, 04 Jan 2024 16:49:57 GMT", - "dc:creator": "Nick Purewal", - "dc:date": "2024-01-04T16:49:57+00:00", - "content": "

Red Rose players move to gain more control and influence on their own affairs

", - "contentSnippet": "Red Rose players move to gain more control and influence on their own affairs", - "guid": "b1130392", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2024-01-04T16:49:57.000Z" - }, - { - "creator": "Jacob Phillips", - "date": "2024-01-04T16:47:03+00:00", - "title": "Iowa school shooting: President Biden briefed after gunfire kills at least one", - "link": "https://www.standard.co.uk/news/world/iowa-school-shooting-perry-biden-victims-b1130368.html", - "pubDate": "Thu, 04 Jan 2024 16:47:03 GMT", - "dc:creator": "Jacob Phillips", - "dc:date": "2024-01-04T16:47:03+00:00", - "content": "

Police and state troopers with flashing lights were reportedly seen lined up outside the school

", - "contentSnippet": "Police and state troopers with flashing lights were reportedly seen lined up outside the school", - "guid": "b1130368", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T16:47:03.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2024-01-04T16:45:07+00:00", - "title": "Martin Scorsese\u2019s Killers Of The Flower Moon gets AppleTV+ streaming date", - "link": "https://www.standard.co.uk/culture/film/martin-scorsese-bfi-robert-de-niro-apple-leonardo-dicaprio-b1130397.html", - "pubDate": "Thu, 04 Jan 2024 16:45:07 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2024-01-04T16:45:07+00:00", - "content": "The film has been nominated for a slew of awards and topped a BFI poll naming it the best movie of 2023.", - "contentSnippet": "The film has been nominated for a slew of awards and topped a BFI poll naming it the best movie of 2023.", - "guid": "b1130397", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2024-01-04T16:45:07.000Z" - }, - { - "creator": "Pa", - "date": "2024-01-04T16:45:05+00:00", - "title": "In Pictures: Residents braced for evacuation as heavy rainfall causes flooding", - "link": "https://www.standard.co.uk/news/environment/worcester-nottinghamshire-david-davies-met-office-nottingham-b1130395.html", - "pubDate": "Thu, 04 Jan 2024 16:45:05 GMT", - "dc:creator": "Pa", - "dc:date": "2024-01-04T16:45:05+00:00", - "content": "A major incident was declared after heavy rainfall resulted in flooding, bringing widespread disruption across the south.", - "contentSnippet": "A major incident was declared after heavy rainfall resulted in flooding, bringing widespread disruption across the south.", - "guid": "b1130395", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-04T16:45:05.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2024-01-04T16:35:51+00:00", - "title": "Bank of England governor Andrew Bailey to be grilled on interest rate hikes' threat to UK financial stability", - "link": "https://www.standard.co.uk/news/politics/mortgage-interest-rate-bank-of-england-governor-economy-threat-b1130389.html", - "pubDate": "Thu, 04 Jan 2024 16:35:51 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2024-01-04T16:35:51+00:00", - "content": "

He and other members of the bank\u2019s Financial Policy Committee will face questions from the Commons Treasury Committee

", - "contentSnippet": "He and other members of the bank\u2019s Financial Policy Committee will face questions from the Commons Treasury Committee", - "guid": "b1130389", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T16:35:51.000Z" - }, - { - "creator": "Jonathan McCambridge", - "date": "2024-01-04T16:34:33+00:00", - "title": "Loyalist activist reports SDLP leader to parliamentary standards watchdog", - "link": "https://www.standard.co.uk/news/politics/londonderry-police-service-of-northern-ireland-salvation-army-northern-ireland-house-of-commons-b1130324.html", - "pubDate": "Thu, 04 Jan 2024 16:34:33 GMT", - "dc:creator": "Jonathan McCambridge", - "dc:date": "2024-01-04T16:34:33+00:00", - "content": "Jamie Bryson raised a complaint against Colum Eastwood, accusing the Foyle MP of seeking to \u2018place himself above the law\u2019.", - "contentSnippet": "Jamie Bryson raised a complaint against Colum Eastwood, accusing the Foyle MP of seeking to \u2018place himself above the law\u2019.", - "guid": "b1130324", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T16:34:33.000Z" - }, - { - "creator": "Flora Thompson", - "date": "2024-01-04T16:34:16+00:00", - "title": "French report criticising UK efforts to curb Channel crossings \u2018out of date\u2019", - "link": "https://www.standard.co.uk/news/politics/home-office-french-channel-rishi-sunak-france-b1130393.html", - "pubDate": "Thu, 04 Jan 2024 16:34:16 GMT", - "dc:creator": "Flora Thompson", - "dc:date": "2024-01-04T16:34:16+00:00", - "content": "The Court of Accounts\u2019 findings are said to refer in particular to a joint intelligence unit created in 2020.", - "contentSnippet": "The Court of Accounts\u2019 findings are said to refer in particular to a joint intelligence unit created in 2020.", - "guid": "b1130393", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T16:34:16.000Z" - }, - { - "creator": "Robert Dex", - "date": "2024-01-04T16:28:43+00:00", - "title": "Islamic State terror group claim responsibility for Iran attack", - "link": "https://www.standard.co.uk/news/world/islamic-state-terror-group-iran-attack-b1130390.html", - "pubDate": "Thu, 04 Jan 2024 16:28:43 GMT", - "dc:creator": "Robert Dex", - "dc:date": "2024-01-04T16:28:43+00:00", - "content": "

The terror group claimed two suicide bombers were responsible for attacks that killed nearly 100 people

", - "contentSnippet": "The terror group claimed two suicide bombers were responsible for attacks that killed nearly 100 people", - "guid": "b1130390", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T16:28:43.000Z" - }, - { - "creator": "Nina Zietman", - "date": "2024-01-04T16:28:42+00:00", - "title": "Best at-home reformer Pilates machines to help you tone and strengthen muscles", - "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-home-pilates-reformer-machines-b1059987.html", - "pubDate": "Thu, 04 Jan 2024 16:28:42 GMT", - "dc:creator": "Nina Zietman", - "dc:date": "2024-01-04T16:28:42+00:00", - "content": "

Upgrade your workout with the ultimate core-strengthening apparatus

", - "contentSnippet": "Upgrade your workout with the ultimate core-strengthening apparatus", - "guid": "b1059987", - "categories": [ - "Health & Fitness", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T16:28:42.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2024-01-04T16:28:11+00:00", - "title": "ChatGPT 5 release date: what we know about OpenAI\u2019s next chatbot", - "link": "https://www.standard.co.uk/news/tech/chatgpt-5-release-date-details-openai-chatbot-b1130369.html", - "pubDate": "Thu, 04 Jan 2024 16:28:11 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2024-01-04T16:28:11+00:00", - "content": "

The company's most advanced chatbot forms part of its mission to replicate human intelligence

", - "contentSnippet": "The company's most advanced chatbot forms part of its mission to replicate human intelligence", - "guid": "b1130369", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2024-01-04T16:28:11.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2024-01-04T16:24:33+00:00", - "title": "Best anti-allergy bedding: Sheets for your best night\u2019s sleep yet ", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-anti-allergy-bedding-hypoallergenic-sheets-b1076374.html", - "pubDate": "Thu, 04 Jan 2024 16:24:33 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2024-01-04T16:24:33+00:00", - "content": "

Say goodbye to swollen eyes and stuffy noses

", - "contentSnippet": "Say goodbye to swollen eyes and stuffy noses", - "guid": "b1076374", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T16:24:33.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2024-01-04T16:16:24+00:00", - "title": "Rishi Sunak eyes autumn general election as he scotches talk of a May poll", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-election-may-rules-out-starmer-labour-tories-b1130316.html", - "pubDate": "Thu, 04 Jan 2024 16:16:24 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2024-01-04T16:16:24+00:00", - "content": "

Rishi Sunak reveals his 'working assumption' is that he will hold a 'general election in the second half of this year'

", - "contentSnippet": "Rishi Sunak reveals his 'working assumption' is that he will hold a 'general election in the second half of this year'", - "guid": "b1130316", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T16:16:24.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-04T16:15:54+00:00", - "title": "Luke Littler named on 2024 Premier League Darts line-up alongside new world champion Luke Humphries", - "link": "https://www.standard.co.uk/sport/luke-littler-humphries-premier-league-darts-lineup-2024-b1130386.html", - "pubDate": "Thu, 04 Jan 2024 16:15:54 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-04T16:15:54+00:00", - "content": "

Michael van Gerwen will defend title against teen sensation

", - "contentSnippet": "Michael van Gerwen will defend title against teen sensation", - "guid": "b1130386", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T16:15:54.000Z" - }, - { - "creator": "Katie Strick", - "date": "2024-01-04T16:11:31+00:00", - "title": "11 figures named in the Epstein files, from Stephen Hawking to Naomi Campbell \u2014 and what we actually know ", - "link": "https://www.standard.co.uk/lifestyle/celebrity/epstein-files-11-key-figures-named-stephen-hawking-b1130252.html", - "pubDate": "Thu, 04 Jan 2024 16:11:31 GMT", - "dc:creator": "Katie Strick", - "dc:date": "2024-01-04T16:11:31+00:00", - "content": "

Nearly 1,000 pages of court records were revealed last night \u2014 and while being named does not necessarily indicate any wrongdoing, the files do contain striking reminders of the VIPs Epstein chose to surround himself with. Katie Strick reports

", - "contentSnippet": "Nearly 1,000 pages of court records were revealed last night \u2014 and while being named does not necessarily indicate any wrongdoing, the files do contain striking reminders of the VIPs Epstein chose to surround himself with. Katie Strick reports", - "guid": "b1130252", - "categories": [ - "Celebrity", - "Lifestyle" - ], - "isoDate": "2024-01-04T16:11:31.000Z" - }, - { - "creator": "Jon Weeks", - "date": "2024-01-04T16:06:26+00:00", - "title": "Elvis concert brings AI hologram to London - Tech & Science Daily podcast", - "link": "https://www.standard.co.uk/podcasts/elvis-concert-ai-hologram-london-layered-reality-tech-b1130350.html", - "pubDate": "Thu, 04 Jan 2024 16:06:26 GMT", - "dc:creator": "Jon Weeks", - "dc:date": "2024-01-04T16:06:26+00:00", - "content": "

All the stories from Thursday's episode of the Tech & Science Daily podcast.

", - "contentSnippet": "All the stories from Thursday's episode of the Tech & Science Daily podcast.", - "guid": "b1130350", - "categories": [ - "Podcasts" - ], - "isoDate": "2024-01-04T16:06:26.000Z" - }, - { - "creator": "Robert Dex", - "date": "2024-01-04T16:05:36+00:00", - "title": "Tower of London ravens have wings clipped to stop them escaping", - "link": "https://www.standard.co.uk/news/uk/tower-of-london-ravens-wings-clipped-escaping-b1130357.html", - "pubDate": "Thu, 04 Jan 2024 16:05:36 GMT", - "dc:creator": "Robert Dex", - "dc:date": "2024-01-04T16:05:36+00:00", - "content": "

Jubilee and Branwen had been flying to the top of the White Tower

", - "contentSnippet": "Jubilee and Branwen had been flying to the top of the White Tower", - "guid": "b1130357", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T16:05:36.000Z" - }, - { - "creator": "Ellie Davis", - "date": "2024-01-04T16:02:16+00:00", - "title": "Best luxury shower gels to treat yourself in 2024", - "link": "https://www.standard.co.uk/shopping/esbest/beauty/bath-body/best-luxury-shower-gels-b1095144.html", - "pubDate": "Thu, 04 Jan 2024 16:02:16 GMT", - "dc:creator": "Ellie Davis", - "dc:date": "2024-01-04T16:02:16+00:00", - "content": "

Bring decadent formulations to your daily shower rituals

", - "contentSnippet": "Bring decadent formulations to your daily shower rituals", - "guid": "b1095144", - "categories": [ - "Bath and body", - "Beauty", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T16:02:16.000Z" - }, - { - "creator": "Lisa McLoughlin ", - "date": "2024-01-04T16:01:26+00:00", - "title": "Susanna Reid reveals crippling 'hangxiety' motivated her to go alcohol free", - "link": "https://www.standard.co.uk/showbiz/susanna-reid-teetotal-alcohol-free-hangxiety-hangovers-b1130374.html", - "pubDate": "Thu, 04 Jan 2024 16:01:26 GMT", - "dc:creator": "Lisa McLoughlin ", - "dc:date": "2024-01-04T16:01:26+00:00", - "content": "

The GMB star, 53, spoke on Thursday's Lorraine about her lifestyle choice

", - "contentSnippet": "The GMB star, 53, spoke on Thursday's Lorraine about her lifestyle choice", - "guid": "b1130374", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-04T16:01:26.000Z" - }, - { - "creator": "Daniel Keane", - "date": "2024-01-04T16:00:58+00:00", - "title": "Hearing aids could help to prevent or delay dementia, major new study finds", - "link": "https://www.standard.co.uk/news/health/deaf-hearing-aid-dementia-alzheimers-research-university-southern-denmark-b1130373.html", - "pubDate": "Thu, 04 Jan 2024 16:00:58 GMT", - "dc:creator": "Daniel Keane", - "dc:date": "2024-01-04T16:00:58+00:00", - "content": "

Researchers found that hearing loss was associated with a higher risk of dementia compared with people who used a hearing aid

", - "contentSnippet": "Researchers found that hearing loss was associated with a higher risk of dementia compared with people who used a hearing aid", - "guid": "b1130373", - "categories": [ - "Health", - "News" - ], - "isoDate": "2024-01-04T16:00:58.000Z" - }, - { - "creator": "Nina Massey", - "date": "2024-01-04T16:00:00+00:00", - "title": "Study reveals genetic link between anorexia and being an early riser", - "link": "https://www.standard.co.uk/news/science/people-usa-experts-uruguay-university-college-london-b1130387.html", - "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", - "dc:creator": "Nina Massey", - "dc:date": "2024-01-04T16:00:00+00:00", - "content": "People with the eating disorder often wake early and experience insomnia, the researchers found.", - "contentSnippet": "People with the eating disorder often wake early and experience insomnia, the researchers found.", - "guid": "b1130387", - "categories": [ - "Science", - "News" - ], - "isoDate": "2024-01-04T16:00:00.000Z" - }, - { - "creator": "Storm Newton", - "date": "2024-01-04T16:00:00+00:00", - "title": "Hearing aid use linked to lower dementia risk, study suggests", - "link": "https://www.standard.co.uk/news/science/research-hearing-loss-denmark-government-university-college-london-b1130388.html", - "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", - "dc:creator": "Storm Newton", - "dc:date": "2024-01-04T16:00:00+00:00", - "content": "Research was carried out in Denmark from 2003 to 2017 and included more than 500,000 people.", - "contentSnippet": "Research was carried out in Denmark from 2003 to 2017 and included more than 500,000 people.", - "guid": "b1130388", - "categories": [ - "Science", - "News" - ], - "isoDate": "2024-01-04T16:00:00.000Z" - }, - { - "creator": "Ann Martin", - "date": "2024-01-04T15:57:52+00:00", - "title": "Best folding treadmills for home workouts in small spaces", - "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-folding-treadmills-compact-storage-b1044524.html", - "pubDate": "Thu, 04 Jan 2024 15:57:52 GMT", - "dc:creator": "Ann Martin", - "dc:date": "2024-01-04T15:57:52+00:00", - "content": "

Exercise in comfort while keeping your home clutter-free with the best folding treadmills for indoor workouts

", - "contentSnippet": "Exercise in comfort while keeping your home clutter-free with the best folding treadmills for indoor workouts", - "guid": "b1044524", - "categories": [ - "Health & Fitness", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T15:57:52.000Z" - }, - { - "creator": "Sam Hall", - "date": "2024-01-04T15:57:36+00:00", - "title": "Major incident declared amid widespread flooding in England", - "link": "https://www.standard.co.uk/news/environment/nottinghamshire-county-council-england-met-office-loughborough-leicestershire-b1130371.html", - "pubDate": "Thu, 04 Jan 2024 15:57:36 GMT", - "dc:creator": "Sam Hall", - "dc:date": "2024-01-04T15:57:36+00:00", - "content": "Nottinghamshire County Council said the incident was declared \u2018due to rising levels along the river Trent\u2019.", - "contentSnippet": "Nottinghamshire County Council said the incident was declared \u2018due to rising levels along the river Trent\u2019.", - "guid": "b1130371", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-04T15:57:36.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2024-01-04T15:56:15+00:00", - "title": "Tube strikes will cost London's hospitality sector \u00a350million, bosses fear", - "link": "https://www.standard.co.uk/news/london/tube-strikes-london-hospitality-industry-cost-underground-january-tfl-b1130361.html", - "pubDate": "Thu, 04 Jan 2024 15:56:15 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2024-01-04T15:56:15+00:00", - "content": "

Businesses set to be hit as commuters stay at home, hospitality chiefs warn

", - "contentSnippet": "Businesses set to be hit as commuters stay at home, hospitality chiefs warn", - "guid": "b1130361", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-04T15:56:15.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-04T15:55:27+00:00", - "title": "When is FA Cup draw? Date, time, TV channel and ball numbers for fourth-round ties", - "link": "https://www.standard.co.uk/sport/football/fa-cup-draw-2024-time-date-ball-numbers-tv-channel-live-stream-fourth-round-b1130379.html", - "pubDate": "Thu, 04 Jan 2024 15:55:27 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-04T15:55:27+00:00", - "content": "

Start time confirmed for draw after this weekend's cup ties

", - "contentSnippet": "Start time confirmed for draw after this weekend's cup ties", - "guid": "b1130379", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T15:55:27.000Z" - }, - { - "creator": "Rhiannon James", - "date": "2024-01-04T15:54:49+00:00", - "title": "Allegations of antisemitism and transphobia against Rosie Duffield MP dropped", - "link": "https://www.standard.co.uk/news/politics/labour-national-executive-committee-canterbury-sunday-times-the-sunday-times-b1130385.html", - "pubDate": "Thu, 04 Jan 2024 15:54:49 GMT", - "dc:creator": "Rhiannon James", - "dc:date": "2024-01-04T15:54:49+00:00", - "content": "The Labour MP said the party\u2019s National Executive Committee had dismissed the claims against her, adding \u2018there was no case to answer\u2019.", - "contentSnippet": "The Labour MP said the party\u2019s National Executive Committee had dismissed the claims against her, adding \u2018there was no case to answer\u2019.", - "guid": "b1130385", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T15:54:49.000Z" - }, - { - "creator": "Robert Dex", - "date": "2024-01-04T15:52:44+00:00", - "title": "Primrose Hill murder: Police appeal to find two males after fatal stabbing", - "link": "https://www.standard.co.uk/news/crime/primrose-hill-murder-police-appeal-harry-pitman-b1130381.html", - "pubDate": "Thu, 04 Jan 2024 15:52:44 GMT", - "dc:creator": "Robert Dex", - "dc:date": "2024-01-04T15:52:44+00:00", - "content": "

Police issued the images as the investigation continues.

", - "contentSnippet": "Police issued the images as the investigation continues.", - "guid": "b1130381", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T15:52:44.000Z" - }, - { - "creator": "Susannah Streeter", - "date": "2024-01-04T15:44:09+00:00", - "title": "The FTSE 100 is feeling unloved on its 40th birthday but has much to be proud of", - "link": "https://www.standard.co.uk/business/ftse100-stock-market-london-1984-41-rise-b1129931.html", - "pubDate": "Thu, 04 Jan 2024 15:44:09 GMT", - "dc:creator": "Susannah Streeter", - "dc:date": "2024-01-04T15:44:09+00:00", - "content": "

Since its inception in 1984 the FTSE 100 has risen by 673%, outperforming gold and gilts

", - "contentSnippet": "Since its inception in 1984 the FTSE 100 has risen by 673%, outperforming gold and gilts", - "guid": "b1129931", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T15:44:09.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-04T15:44:09+00:00", - "title": "Tottenham XI vs Burnley: Predicted lineup, confirmed team news and injury latest for FA Cup tie", - "link": "https://www.standard.co.uk/sport/football/tottenham-xi-vs-burnley-predicted-lineup-confirmed-team-news-injury-latest-fa-cup-b1130375.html", - "pubDate": "Thu, 04 Jan 2024 15:44:09 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-04T15:44:09+00:00", - "content": "

Spurs could welcome back another key player for third-round clash

", - "contentSnippet": "Spurs could welcome back another key player for third-round clash", - "guid": "b1130375", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T15:44:09.000Z" - }, - { - "creator": "Maryam Kara", - "date": "2024-01-04T15:41:18+00:00", - "title": "A New Year's wish come true: Battersea's longest stay cat becomes last animal of 2023 to be rehomed", - "link": "https://www.standard.co.uk/news/london/london-battersea-longest-stay-cat-rehomed-b1130325.html", - "pubDate": "Thu, 04 Jan 2024 15:41:18 GMT", - "dc:creator": "Maryam Kara", - "dc:date": "2024-01-04T15:41:18+00:00", - "content": "

The charity has cared for more than 250,000 cats since the Victorian era

", - "contentSnippet": "The charity has cared for more than 250,000 cats since the Victorian era", - "guid": "b1130325", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-04T15:41:18.000Z" - }, - { - "creator": "Lucy Cotterill", - "date": "2024-01-04T15:40:16+00:00", - "title": "Best folding exercise bikes to save you space between workouts", - "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-folding-exercise-bikes-b1012990.html", - "pubDate": "Thu, 04 Jan 2024 15:40:16 GMT", - "dc:creator": "Lucy Cotterill", - "dc:date": "2024-01-04T15:40:16+00:00", - "content": "

Want to exercise at home but are short on space? Folding exercise bikes are a great way to add some cardio into your daily routine

", - "contentSnippet": "Want to exercise at home but are short on space? Folding exercise bikes are a great way to add some cardio into your daily routine", - "guid": "b1012990", - "categories": [ - "Health & Fitness", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T15:40:16.000Z" - }, - { - "creator": "Nancy Durrant", - "date": "2024-01-04T15:38:12+00:00", - "title": "The best exhibitions to see in London in 2024, from CUTE at Somerset House to Francis Bacon at the NPG", - "link": "https://www.standard.co.uk/culture/exhibitions/best-exhibitions-to-see-in-london-this-year-b1126356.html", - "pubDate": "Thu, 04 Jan 2024 15:38:12 GMT", - "dc:creator": "Nancy Durrant", - "dc:date": "2024-01-04T15:38:12+00:00", - "content": "

The capital's museums and galleries are a treasure trove of glorious art and ideas \u2013 here's our pick of the year's offerings

", - "contentSnippet": "The capital's museums and galleries are a treasure trove of glorious art and ideas \u2013 here's our pick of the year's offerings", - "guid": "b1126356", - "categories": [ - "Exhibitions", - "Culture" - ], - "isoDate": "2024-01-04T15:38:12.000Z" - }, - { - "creator": "Seren Morris and Lola Christina Alao", - "date": "2024-01-04T15:38:09+00:00", - "title": "What is Universal Credit and who is eligible for it?", - "link": "https://www.standard.co.uk/news/uk/universal-credit-benefit-eligible-claim-changes-budget-b1067106.html", - "pubDate": "Thu, 04 Jan 2024 15:38:09 GMT", - "dc:creator": "Seren Morris and Lola Christina Alao", - "dc:date": "2024-01-04T15:38:09+00:00", - "content": "

The Government is expected to implement new measures to try to get people back to work.

", - "contentSnippet": "The Government is expected to implement new measures to try to get people back to work.", - "guid": "b1067106", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T15:38:09.000Z" - }, - { - "creator": "Lydia Chantler-Hicks", - "date": "2024-01-04T15:37:14+00:00", - "title": "Details of Oscar Pistorius' release from prison kept secret over 'security fears'", - "link": "https://www.standard.co.uk/news/world/oscar-pistorius-prison-release-south-africa-murder-date-b1130339.html", - "pubDate": "Thu, 04 Jan 2024 15:37:14 GMT", - "dc:creator": "Lydia Chantler-Hicks", - "dc:date": "2024-01-04T15:37:14+00:00", - "content": "

He is to be released on parole on Friday, 11 years after murdering girlfriend Reeva Steenkamp

", - "contentSnippet": "He is to be released on parole on Friday, 11 years after murdering girlfriend Reeva Steenkamp", - "guid": "b1130339", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T15:37:14.000Z" - }, - { - "creator": "Emma Loffhagen", - "date": "2024-01-04T15:37:04+00:00", - "title": "All the drama onboard the 9-month cruise going viral on TikTok", - "link": "https://www.standard.co.uk/lifestyle/nine-month-cruise-tiktok-royal-caribbean-ultimate-world-b1130091.html", - "pubDate": "Thu, 04 Jan 2024 15:37:04 GMT", - "dc:creator": "Emma Loffhagen", - "dc:date": "2024-01-04T15:37:04+00:00", - "content": "

Nine months, 65 countries, up to \u00a392,000 \u2014 Royal Caribbean's longest-ever cruise has become an overnight social media sensation. Emma Loffhagen dives into the onboard drama

", - "contentSnippet": "Nine months, 65 countries, up to \u00a392,000 \u2014 Royal Caribbean's longest-ever cruise has become an overnight social media sensation. Emma Loffhagen dives into the onboard drama", - "guid": "b1130091", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-04T15:37:04.000Z" - }, - { - "creator": "Ian Jones", - "date": "2024-01-04T15:36:36+00:00", - "title": "Flu and Covid-19 hospital admissions at highest level so far this winter", - "link": "https://www.standard.co.uk/news/health/flu-covid-hospital-admissions-winter-nhs-england-b1130370.html", - "pubDate": "Thu, 04 Jan 2024 15:36:36 GMT", - "dc:creator": "Ian Jones", - "dc:date": "2024-01-04T15:36:36+00:00", - "content": "

Flu admissions were now classed as having a \u2018medium impact\u2019 on hospitals

", - "contentSnippet": "Flu admissions were now classed as having a \u2018medium impact\u2019 on hospitals", - "guid": "b1130370", - "categories": [ - "Health", - "News" - ], - "isoDate": "2024-01-04T15:36:36.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2024-01-04T15:34:25+00:00", - "title": "Arsenal facing huge triple January transfer dilemma likely to decide title fate", - "link": "https://www.standard.co.uk/sport/football/arsenal-fc-transfer-dilemma-title-fate-b1130366.html", - "pubDate": "Thu, 04 Jan 2024 15:34:25 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2024-01-04T15:34:25+00:00", - "content": "

Stuttering Gunners must decide where best to splash the cash this month in search for spark

", - "contentSnippet": "Stuttering Gunners must decide where best to splash the cash this month in search for spark", - "guid": "b1130366", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T15:34:25.000Z" - }, - { - "creator": "Daniel O'Boyle", - "date": "2024-01-04T15:33:30+00:00", - "title": "These London boroughs had the UK's fastest pay growth in the last decade", - "link": "https://www.standard.co.uk/business/london-boroughs-uk-fastest-pay-growth-wages-salaries-hackney-newham-tower-hamlets-camden-city-b1130372.html", - "pubDate": "Thu, 04 Jan 2024 15:33:30 GMT", - "dc:creator": "Daniel O'Boyle", - "dc:date": "2024-01-04T15:33:30+00:00", - "content": "

London dominated the top of the list, with eight regions in the top 10

", - "contentSnippet": "London dominated the top of the list, with eight regions in the top 10", - "guid": "b1130372", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T15:33:30.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-04T15:26:46+00:00", - "title": "Tottenham: Ange Postecoglou warns FA Cup success should not be 'holy grail'", - "link": "https://www.standard.co.uk/sport/football/tottenham-ange-postecoglou-fa-cup-holy-grail-b1130358.html", - "pubDate": "Thu, 04 Jan 2024 15:26:46 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-04T15:26:46+00:00", - "content": "

Spurs boss insists club should be challenging for major honours every season

", - "contentSnippet": "Spurs boss insists club should be challenging for major honours every season", - "guid": "b1130358", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T15:26:46.000Z" - }, - { - "creator": "Sam Blewett", - "date": "2024-01-04T15:26:12+00:00", - "title": "\u2018Squatter\u2019 Sunak urged to call election after downplaying chance of spring vote", - "link": "https://www.standard.co.uk/news/politics/keir-starmer-labour-prime-minister-conservative-bristol-b1130345.html", - "pubDate": "Thu, 04 Jan 2024 15:26:12 GMT", - "dc:creator": "Sam Blewett", - "dc:date": "2024-01-04T15:26:12+00:00", - "content": "Sir Keir Starmer urged the Prime Minister to stop the \u2018dithering and delaying\u2019 after the Conservative indicated he would wait until later in the year.", - "contentSnippet": "Sir Keir Starmer urged the Prime Minister to stop the \u2018dithering and delaying\u2019 after the Conservative indicated he would wait until later in the year.", - "guid": "b1130345", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T15:26:12.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-04T15:22:46+00:00", - "title": "Artem Dovbyk: Girona chief delivers update on Chelsea transfer rumours", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-transfer-news-artem-dovbyk-girona-b1130356.html", - "pubDate": "Thu, 04 Jan 2024 15:22:46 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-04T15:22:46+00:00", - "content": "

Spanish club insist they don't want to sell their stars in January

", - "contentSnippet": "Spanish club insist they don't want to sell their stars in January", - "guid": "b1130356", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T15:22:46.000Z" - }, - { - "creator": "Matthew Cooper", - "date": "2024-01-04T15:18:57+00:00", - "title": "Family pay tribute to mother and daughter killed in Boxing Day crash", - "link": "https://www.standard.co.uk/news/uk/birmingham-west-midlands-police-green-road-b1130367.html", - "pubDate": "Thu, 04 Jan 2024 15:18:57 GMT", - "dc:creator": "Matthew Cooper", - "dc:date": "2024-01-04T15:18:57+00:00", - "content": "Linda Philips, 72, and Amanda Riley, 49, died after two cars and a quad bike collided in Birmingham.", - "contentSnippet": "Linda Philips, 72, and Amanda Riley, 49, died after two cars and a quad bike collided in Birmingham.", - "guid": "b1130367", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T15:18:57.000Z" - }, - { - "creator": "City Spy", - "date": "2024-01-04T15:16:07+00:00", - "title": "Is Ian Hislop packing his bags at Private Eye?", - "link": "https://www.standard.co.uk/business/cityspy/ian-hislop-private-eye-helen-lewis-b1130364.html", - "pubDate": "Thu, 04 Jan 2024 15:16:07 GMT", - "dc:creator": "City Spy", - "dc:date": "2024-01-04T15:16:07+00:00", - "content": "

That\u2019s enough, Ed.\u00a0

", - "contentSnippet": "That\u2019s enough, Ed.", - "guid": "b1130364", - "categories": [ - "City Spy", - "Business" - ], - "isoDate": "2024-01-04T15:16:07.000Z" - }, - { - "creator": "City Spy", - "date": "2024-01-04T15:15:52+00:00", - "title": "Financial Times could fall behind City AM's print circulation in 2024", - "link": "https://www.standard.co.uk/business/cityspy/financial-times-fall-behind-cityam-print-circulation-in-2024-b1130348.html", - "pubDate": "Thu, 04 Jan 2024 15:15:52 GMT", - "dc:creator": "City Spy", - "dc:date": "2024-01-04T15:15:52+00:00", - "content": "

Red faces at the Pink\u2019un\u00a0

", - "contentSnippet": "Red faces at the Pink\u2019un", - "guid": "b1130348", - "categories": [ - "City Spy", - "Business" - ], - "isoDate": "2024-01-04T15:15:52.000Z" - }, - { - "creator": "Rosalyn Wikeley", - "date": "2024-01-04T15:13:03+00:00", - "title": "The best one-day wellness retreats for busy people ", - "link": "https://www.standard.co.uk/lifestyle/travel/one-day-short-wellness-retreats-breaks-uk-b1125113.html", - "pubDate": "Thu, 04 Jan 2024 15:13:03 GMT", - "dc:creator": "Rosalyn Wikeley", - "dc:date": "2024-01-04T15:13:03+00:00", - "content": "

Who has time to take a two-week trip to a wellness clinic to feel reborn? From an eco escape to horse therapy, Rosalyn Wikeley has the 24-hour solution

", - "contentSnippet": "Who has time to take a two-week trip to a wellness clinic to feel reborn? From an eco escape to horse therapy, Rosalyn Wikeley has the 24-hour solution", - "guid": "b1125113", - "categories": [ - "Travel", - "Lifestyle" - ], - "isoDate": "2024-01-04T15:13:03.000Z" - }, - { - "creator": "Ellie Davis", - "date": "2024-01-04T15:12:56+00:00", - "title": "Best petite winter coats for women that are chic and warm", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-winter-coats-petite-women-b1112207.html", - "pubDate": "Thu, 04 Jan 2024 15:12:56 GMT", - "dc:creator": "Ellie Davis", - "dc:date": "2024-01-04T15:12:56+00:00", - "content": "

Cosy coats for smaller statures

", - "contentSnippet": "Cosy coats for smaller statures", - "guid": "b1112207", - "categories": [ - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T15:12:56.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2024-01-04T15:12:43+00:00", - "title": "Luke Littler\u2019s world championship run inspires darts documentary on Sky", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/sky-alexandra-palace-luke-littler-luke-humphries-london-b1130362.html", - "pubDate": "Thu, 04 Jan 2024 15:12:43 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2024-01-04T15:12:43+00:00", - "content": "The new three-part series which will offer \u2018exclusive access\u2019 into life on the oche and off it.", - "contentSnippet": "The new three-part series which will offer \u2018exclusive access\u2019 into life on the oche and off it.", - "guid": "b1130362", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-04T15:12:43.000Z" - }, - { - "creator": "Anna Davis Education Editor", - "date": "2024-01-04T15:12:00+00:00", - "title": "More than 1.3million free meals given out to families in the capital at Christmas", - "link": "https://www.standard.co.uk/news/london/free-holiday-meals-christmas-mayor-felix-project-b1130360.html", - "pubDate": "Thu, 04 Jan 2024 15:12:00 GMT", - "dc:creator": "Anna Davis Education Editor", - "dc:date": "2024-01-04T15:12:00+00:00", - "content": "

Families across the capital received the free meals at a range of school holiday activities and through charity organisations

", - "contentSnippet": "Families across the capital received the free meals at a range of school holiday activities and through charity organisations", - "guid": "b1130360", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-04T15:12:00.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2024-01-04T15:06:35+00:00", - "title": "Man stranded at sea for 24 hours rescued after using watch to reflect sun in New Zealand", - "link": "https://www.standard.co.uk/news/world/new-zealand-boat-rescue-coromandel-alderman-islands-watch-sun-reflection-b1130333.html", - "pubDate": "Thu, 04 Jan 2024 15:06:35 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2024-01-04T15:06:35+00:00", - "content": "

The fisherman 'was circled by a shark' and was treated for hypothermia

", - "contentSnippet": "The fisherman 'was circled by a shark' and was treated for hypothermia", - "guid": "b1130333", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T15:06:35.000Z" - }, - { - "creator": "Matt Majendie", - "date": "2024-01-04T15:05:24+00:00", - "title": "Luke Humphries: How worthy champion battled through adversity to realise darts world title dream", - "link": "https://www.standard.co.uk/sport/luke-humphries-darts-world-champion-b1130344.html", - "pubDate": "Thu, 04 Jan 2024 15:05:24 GMT", - "dc:creator": "Matt Majendie", - "dc:date": "2024-01-04T15:05:24+00:00", - "content": "

New world No1 almost quit darts amid mental health struggles, but is now thriving on the biggest stage

", - "contentSnippet": "New world No1 almost quit darts amid mental health struggles, but is now thriving on the biggest stage", - "guid": "b1130344", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T15:05:24.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-04T15:02:55+00:00", - "title": "Boots website sees \u2018biggest ever month of sales in November\u2019", - "link": "https://www.standard.co.uk/business/business-news/boots-website-sees-biggest-ever-month-of-sales-in-november-b1130336.html", - "pubDate": "Thu, 04 Jan 2024 15:02:55 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-04T15:02:55+00:00", - "content": "The company said footfall to its shops had also increased in the most recent quarter.", - "contentSnippet": "The company said footfall to its shops had also increased in the most recent quarter.", - "guid": "b1130336", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T15:02:55.000Z" - }, - { - "creator": "Callum Parke", - "date": "2024-01-04T14:57:55+00:00", - "title": "Financially troubled Nottingham City Council has \u2018let down\u2019 residents \u2013 Sunak", - "link": "https://www.standard.co.uk/news/politics/nottinghamshire-county-council-labour-prime-minister-nottinghamshire-nottingham-b1130355.html", - "pubDate": "Thu, 04 Jan 2024 14:57:55 GMT", - "dc:creator": "Callum Parke", - "dc:date": "2024-01-04T14:57:55+00:00", - "content": "The Prime Minister claimed that financial difficulties at Labour-run authorities mirrored how the party would run the national economy.", - "contentSnippet": "The Prime Minister claimed that financial difficulties at Labour-run authorities mirrored how the party would run the national economy.", - "guid": "b1130355", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T14:57:55.000Z" - }, - { - "creator": "Seren Morris,Avinash Bhunjun,Nuray Bulbul,William Mata and Rachael Davies", - "date": "2024-01-04T14:54:49+00:00", - "title": "When is the next UK general election? Sunak suggests second half of 2024", - "link": "https://www.standard.co.uk/news/politics/when-general-election-rishi-sunak-2024-b996692.html", - "pubDate": "Thu, 04 Jan 2024 14:54:49 GMT", - "dc:creator": "Seren Morris,Avinash Bhunjun,Nuray Bulbul,William Mata and Rachael Davies", - "dc:date": "2024-01-04T14:54:49+00:00", - "content": "

Prime Minister Rishi Sunak hints at the likely date on a visit to the West Midlands after previously ruling out 2025

", - "contentSnippet": "Prime Minister Rishi Sunak hints at the likely date on a visit to the West Midlands after previously ruling out 2025", - "guid": "b996692", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T14:54:49.000Z" - }, - { - "creator": "Josh Payne", - "date": "2024-01-04T14:50:41+00:00", - "title": "Epstein files: What do they show and what does it mean for those named?", - "link": "https://www.standard.co.uk/news/world/jeffrey-epstein-stephen-hawking-michael-jackson-donald-trump-bill-clinton-b1130341.html", - "pubDate": "Thu, 04 Jan 2024 14:50:41 GMT", - "dc:creator": "Josh Payne", - "dc:date": "2024-01-04T14:50:41+00:00", - "content": "

The first tranche of documents were released on Wednesday

", - "contentSnippet": "The first tranche of documents were released on Wednesday", - "guid": "b1130341", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T14:50:41.000Z" - }, - { - "creator": "Matt Watts", - "date": "2024-01-04T14:50:10+00:00", - "title": "Jeffrey Epstein files: David Copperfield 'had dinner with alleged victim'", - "link": "https://www.standard.co.uk/news/world/jeffrey-epstein-files-court-documents-unsealed-ghislaine-maxwell-david-copperfield-b1130353.html", - "pubDate": "Thu, 04 Jan 2024 14:50:10 GMT", - "dc:creator": "Matt Watts", - "dc:date": "2024-01-04T14:50:10+00:00", - "content": "

The illusionist is among a string of high profile names in court documents related to sex offender\u00a0Epstein

", - "contentSnippet": "The illusionist is among a string of high profile names in court documents related to sex offender\u00a0Epstein", - "guid": "b1130353", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T14:50:10.000Z" - }, - { - "creator": "Stuart Pritchard", - "date": "2024-01-04T14:46:26+00:00", - "title": "Best portable photo printers to use on the go that are compatible with smart phones", - "link": "https://www.standard.co.uk/shopping/esbest/gadgets-tech/gadgets-accessories/best-portable-photo-printers-b985074.html", - "pubDate": "Thu, 04 Jan 2024 14:46:26 GMT", - "dc:creator": "Stuart Pritchard", - "dc:date": "2024-01-04T14:46:26+00:00", - "content": "

Diva of the digital snap scene, Stuart Pritchard, presents his pick of the best portable printers for photographers on the fly\u2026

", - "contentSnippet": "Diva of the digital snap scene, Stuart Pritchard, presents his pick of the best portable printers for photographers on the fly\u2026", - "guid": "b985074", - "categories": [ - "Gadgets & Accessories", - "Gadgets & Tech", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T14:46:26.000Z" - }, - { - "creator": "Jordan King", - "date": "2024-01-04T14:37:22+00:00", - "title": "Vladimir Putin offers Russian citizenship to foreign nationals who fight for him in Ukraine war", - "link": "https://www.standard.co.uk/news/world/vladimir-putin-russian-citizenship-ukraine-war-b1130343.html", - "pubDate": "Thu, 04 Jan 2024 14:37:22 GMT", - "dc:creator": "Jordan King", - "dc:date": "2024-01-04T14:37:22+00:00", - "content": "

People can apply for passports for themselves and their spouses, children and parents

", - "contentSnippet": "People can apply for passports for themselves and their spouses, children and parents", - "guid": "b1130343", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T14:37:22.000Z" - }, - { - "creator": "Katie Strick and Emma Loffhagen", - "date": "2024-01-04T14:35:56+00:00", - "title": "Frederik, the 'party prince': the down-to-earth next king of Denmark who met his wife in a pub", - "link": "https://www.standard.co.uk/lifestyle/crown-prince-frederik-the-party-prince-next-king-of-denmark-b1129898.html", - "pubDate": "Thu, 04 Jan 2024 14:35:56 GMT", - "dc:creator": "Katie Strick and Emma Loffhagen", - "dc:date": "2024-01-04T14:35:56+00:00", - "content": "

He loves Burning Man, used a fake name at Harvard and met his Australian-Scottish wife in a Sydney bar. As Crown Prince Frederik prepares to ascend the throne, Katie Strick and Emma Loffhagen report on his rebellious past and rumours of a recent affair

", - "contentSnippet": "He loves Burning Man, used a fake name at Harvard and met his Australian-Scottish wife in a Sydney bar. As Crown Prince Frederik prepares to ascend the throne, Katie Strick and Emma Loffhagen report on his rebellious past and rumours of a recent affair", - "guid": "b1129898", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-04T14:35:56.000Z" - }, - { - "creator": "Sarah Ward", - "date": "2024-01-04T14:34:30+00:00", - "title": "Paedophile ring warned they face \u2018very substantial\u2019 prison terms for 'extraordinary depravity'", - "link": "https://www.standard.co.uk/news/crime/glasgow-paedophile-ring-high-court-police-scotland-b1130346.html", - "pubDate": "Thu, 04 Jan 2024 14:34:30 GMT", - "dc:creator": "Sarah Ward", - "dc:date": "2024-01-04T14:34:30+00:00", - "content": "

At the High Court in Glasgow on Thursday, judge Lord Beckett said the group had been convicted of \u2018extraordinary depravity\u2019

", - "contentSnippet": "At the High Court in Glasgow on Thursday, judge Lord Beckett said the group had been convicted of \u2018extraordinary depravity\u2019", - "guid": "b1130346", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T14:34:30.000Z" - }, - { - "creator": "Victoria Moss", - "date": "2024-01-04T14:33:25+00:00", - "title": "11 trends to refresh your style for 2024 \u2014 from cobalt blue to bomber jackets", - "link": "https://www.standard.co.uk/lifestyle/fashion/trends-to-refresh-style-2024-fashion-b1130320.html", - "pubDate": "Thu, 04 Jan 2024 14:33:25 GMT", - "dc:creator": "Victoria Moss", - "dc:date": "2024-01-04T14:33:25+00:00", - "content": "

From Grandpa jackets and sexy cargo pants, to leopard heels and luxe trenches, Victoria Moss has every new look you need \u2014 just don\u2019t call them \u2018cores\u2019

", - "contentSnippet": "From Grandpa jackets and sexy cargo pants, to leopard heels and luxe trenches, Victoria Moss has every new look you need \u2014 just don\u2019t call them \u2018cores\u2019", - "guid": "b1130320", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2024-01-04T14:33:25.000Z" - }, - { - "creator": "Maddy Mussen", - "date": "2024-01-04T14:33:21+00:00", - "title": "Yes chef! Jeremy Allen White strips down for the latest Calvin Klein campaign", - "link": "https://www.standard.co.uk/lifestyle/fashion/jeremy-allen-white-calvin-klein-topless-arms-the-bear-b1130347.html", - "pubDate": "Thu, 04 Jan 2024 14:33:21 GMT", - "dc:creator": "Maddy Mussen", - "dc:date": "2024-01-04T14:33:21+00:00", - "content": "

You know what they say, if you can't stand the heat...

", - "contentSnippet": "You know what they say, if you can't stand the heat...", - "guid": "b1130347", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2024-01-04T14:33:21.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-04T14:32:05+00:00", - "title": "Record 4.8million TV audience tuned in for Luke Littler defeat to Luke Humphries in darts final", - "link": "https://www.standard.co.uk/sport/littler-vs-humphries-tv-audience-world-darts-championship-final-2024-sky-sports-b1130349.html", - "pubDate": "Thu, 04 Jan 2024 14:32:05 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-04T14:32:05+00:00", - "content": "

Largest-ever Sky Sports viewership for a non-football event

", - "contentSnippet": "Largest-ever Sky Sports viewership for a non-football event", - "guid": "b1130349", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T14:32:05.000Z" - }, - { - "creator": "Lisa Burn", - "date": "2024-01-04T14:25:40+00:00", - "title": "Best probiotics for dogs to help support their microbiome - according to pet experts", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/pets/best-probiotics-for-dogs-b1093506.html", - "pubDate": "Thu, 04 Jan 2024 14:25:40 GMT", - "dc:creator": "Lisa Burn", - "dc:date": "2024-01-04T14:25:40+00:00", - "content": "

Keep your dog smelling sweet and their good bacteria in tip-top condition

", - "contentSnippet": "Keep your dog smelling sweet and their good bacteria in tip-top condition", - "guid": "b1093506", - "categories": [ - "Pets", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T14:25:40.000Z" - }, - { - "creator": "Peter Bevan", - "date": "2024-01-04T14:25:34+00:00", - "title": "Best fabric shavers to remove bobbles from your knitwear", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-fabric-shavers-clothes-bobble-removers-b1055929.html", - "pubDate": "Thu, 04 Jan 2024 14:25:34 GMT", - "dc:creator": "Peter Bevan", - "dc:date": "2024-01-04T14:25:34+00:00", - "content": "

Banish the bobbles

", - "contentSnippet": "Banish the bobbles", - "guid": "b1055929", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T14:25:34.000Z" - }, - { - "creator": "Nick Purewal", - "date": "2024-01-04T14:07:42+00:00", - "title": "Kevin Sinfield to leave England coaching role after summer tour", - "link": "https://www.standard.co.uk/sport/rugby/kevin-sinfield-england-andrew-strawbridge-b1130315.html", - "pubDate": "Thu, 04 Jan 2024 14:07:42 GMT", - "dc:creator": "Nick Purewal", - "dc:date": "2024-01-04T14:07:42+00:00", - "content": "

Rugby league great will switch focus for the Six Nations before stepping down after summer trip to Japan and New Zealand

", - "contentSnippet": "Rugby league great will switch focus for the Six Nations before stepping down after summer trip to Japan and New Zealand", - "guid": "b1130315", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2024-01-04T14:07:42.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-04T14:06:35+00:00", - "title": "Wigan vs Manchester United: FA Cup prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/wigan-vs-man-utd-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-fa-cup-2024-preview-b1130295.html", - "pubDate": "Thu, 04 Jan 2024 14:06:35 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-04T14:06:35+00:00", - "content": "

Short trip to League One side is major banana skin tie for Man Utd

", - "contentSnippet": "Short trip to League One side is major banana skin tie for Man Utd", - "guid": "b1130295", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T14:06:35.000Z" - }, - { - "creator": "Tom Wilkinson", - "date": "2024-01-04T14:04:26+00:00", - "title": "Newcastle football fan who made Munich air disaster comments handed three-year ban", - "link": "https://www.standard.co.uk/news/crime/newcastle-fan-munich-air-disaster-banned-james-blake-manchester-united-b1130311.html", - "pubDate": "Thu, 04 Jan 2024 14:04:26 GMT", - "dc:creator": "Tom Wilkinson", - "dc:date": "2024-01-04T14:04:26+00:00", - "content": "

Newcastle United fan James Blake opposed the football banning order imposed after he admitted a public order offence

", - "contentSnippet": "Newcastle United fan James Blake opposed the football banning order imposed after he admitted a public order offence", - "guid": "b1130311", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T14:04:26.000Z" - }, - { - "creator": "Ella Pickover", - "date": "2024-01-04T14:02:36+00:00", - "title": "Sunak backs NHS leaders asking striking doctors to return to work", - "link": "https://www.standard.co.uk/news/politics/nhs-england-prime-minister-british-medical-association-nottinghamshire-b1130327.html", - "pubDate": "Thu, 04 Jan 2024 14:02:36 GMT", - "dc:creator": "Ella Pickover", - "dc:date": "2024-01-04T14:02:36+00:00", - "content": "Junior doctors in England are staging a six day walk out \u2013 the longest strike in NHS history.", - "contentSnippet": "Junior doctors in England are staging a six day walk out \u2013 the longest strike in NHS history.", - "guid": "b1130327", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-04T14:02:36.000Z" - }, - { - "creator": "Ben Judah", - "date": "2024-01-04T14:00:53+00:00", - "title": "OPINION - Israel's strike against Hamas in Lebanon poses big questions for the West", - "link": "https://www.standard.co.uk/comment/israel-gaza-hezbollah-hamas-war-lebanon-b1130322.html", - "pubDate": "Thu, 04 Jan 2024 14:00:53 GMT", - "dc:creator": "Ben Judah", - "dc:date": "2024-01-04T14:00:53+00:00", - "content": "

Across the Middle East, Dahiya, in south Beirut, is seen as not just a suburb. It is a synonym for Hezbollah. This is not only the movement\u2019s stronghold, it is the headquarters of what is in Lebanon a state within a state. That an Israeli drone strike could kill the deputy head of Hamas, Saleh al-Arouri, and several aides at a meeting in the heart of Dahiya has shocked the region and left it asking one question. Is war about to break out between Hezbollah, Iran\u2019s highly-armed proxy, and Israel?

", - "contentSnippet": "Across the Middle East, Dahiya, in south Beirut, is seen as not just a suburb. It is a synonym for Hezbollah. This is not only the movement\u2019s stronghold, it is the headquarters of what is in Lebanon a state within a state. That an Israeli drone strike could kill the deputy head of Hamas, Saleh al-Arouri, and several aides at a meeting in the heart of Dahiya has shocked the region and left it asking one question. Is war about to break out between Hezbollah, Iran\u2019s highly-armed proxy, and Israel?", - "guid": "b1130322", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-04T14:00:53.000Z" - }, - { - "creator": "Danielle Desouza", - "date": "2024-01-04T13:54:57+00:00", - "title": "Family enjoy 'Christmas miracle' as cat missing for nine years returns home", - "link": "https://www.standard.co.uk/news/uk/cat-missing-christmas-plymouth-cats-protection-b1130330.html", - "pubDate": "Thu, 04 Jan 2024 13:54:57 GMT", - "dc:creator": "Danielle Desouza", - "dc:date": "2024-01-04T13:54:57+00:00", - "content": "

Long-haired Strawberry went missing from her home in Plymouth in June 2014

", - "contentSnippet": "Long-haired Strawberry went missing from her home in Plymouth in June 2014", - "guid": "b1130330", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-04T13:54:57.000Z" - }, - { - "creator": "Georgie Darling", - "date": "2024-01-04T13:52:17+00:00", - "title": "Best weight loss supplements to lose weight naturally and sustainably", - "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-weight-loss-supplements-b1061823.html", - "pubDate": "Thu, 04 Jan 2024 13:52:17 GMT", - "dc:creator": "Georgie Darling", - "dc:date": "2024-01-04T13:52:17+00:00", - "content": "

Natural options to safely lose weight

", - "contentSnippet": "Natural options to safely lose weight", - "guid": "b1061823", - "categories": [ - "Health & Fitness", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T13:52:17.000Z" - }, - { - "creator": "Matt Majendie", - "date": "2024-01-04T13:52:15+00:00", - "title": "Luke Littler deserves place among sporting phenomenons as huge future awaits", - "link": "https://www.standard.co.uk/sport/luke-littler-darts-phenomenon-b1130337.html", - "pubDate": "Thu, 04 Jan 2024 13:52:15 GMT", - "dc:creator": "Matt Majendie", - "dc:date": "2024-01-04T13:52:15+00:00", - "content": "

16-year-old has the maturity to ensure new-found fame doesn't detract from his ambitions

", - "contentSnippet": "16-year-old has the maturity to ensure new-found fame doesn't detract from his ambitions", - "guid": "b1130337", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-04T13:52:15.000Z" - }, - { - "creator": "Jonathan Bunn", - "date": "2024-01-04T13:51:13+00:00", - "title": "Doubts remain on first anniversary of Rishi Sunak\u2019s \u2018priorities\u2019 speech", - "link": "https://www.standard.co.uk/business/money/doubts-remain-on-first-anniversary-of-rishi-sunak-s-priorities-speech-b1130342.html", - "pubDate": "Thu, 04 Jan 2024 13:51:13 GMT", - "dc:creator": "Jonathan Bunn", - "dc:date": "2024-01-04T13:51:13+00:00", - "content": "The deadlines for achieving all his five pledges remain vague, but progress is at risk during the run-up to the general election.", - "contentSnippet": "The deadlines for achieving all his five pledges remain vague, but progress is at risk during the run-up to the general election.", - "guid": "b1130342", - "categories": [ - "Money", - "Business" - ], - "isoDate": "2024-01-04T13:51:13.000Z" - }, - { - "creator": "Daniel O'Boyle", - "date": "2024-01-04T13:46:50+00:00", - "title": "\u2018The gloves are off\u2019: More lenders join mortgage rate price war", - "link": "https://www.standard.co.uk/business/mortgage-interest-rate-price-war-bank-of-england-houses-homes-property-loan-borrowing-approvals-hsbc-halifax-b1130340.html", - "pubDate": "Thu, 04 Jan 2024 13:46:50 GMT", - "dc:creator": "Daniel O'Boyle", - "dc:date": "2024-01-04T13:46:50+00:00", - "content": "

First Direct and TSB were among the latest lenders cutting rates

", - "contentSnippet": "First Direct and TSB were among the latest lenders cutting rates", - "guid": "b1130340", - "categories": [ - "Business" - ], - "isoDate": "2024-01-04T13:46:50.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-04T13:45:45+00:00", - "title": "Arsenal vs Liverpool: FA Cup prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/arsenal-fc-vs-liverpool-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-fa-cup-2024-preview-b1130294.html", - "pubDate": "Thu, 04 Jan 2024 13:45:45 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-04T13:45:45+00:00", - "content": "

Two teams with prestigious cup histories headline this weekend's round

", - "contentSnippet": "Two teams with prestigious cup histories headline this weekend's round", - "guid": "b1130294", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T13:45:45.000Z" - }, - { - "creator": "Pat Hurst", - "date": "2024-01-04T17:06:40+00:00", - "title": "Scout Association apologises for death of teenager in 200ft fall, inquest told", - "link": "https://www.standard.co.uk/news/crime/scout-association-greater-manchester-stockport-richmond-marvel-b1130401.html", - "pubDate": "Thu, 04 Jan 2024 17:06:40 GMT", - "dc:creator": "Pat Hurst", - "dc:date": "2024-01-04T17:06:40+00:00", - "content": "Ben Leonard\u2019s mother told a court it was five-and-a-half years too late and the treatment of her family had been \u2018disgusting\u2019.", - "contentSnippet": "Ben Leonard\u2019s mother told a court it was five-and-a-half years too late and the treatment of her family had been \u2018disgusting\u2019.", - "guid": "b1130401", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T17:06:40.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2024-01-04T17:22:36+00:00", - "title": "Manchester United XI vs Wigan: Predicted lineup, confirmed team news and injury latest for FA Cup", - "link": "https://www.standard.co.uk/sport/football/man-united-xi-vs-wigan-predicted-lineup-confirmed-team-news-injury-latest-fa-cup-2024-b1130398.html", - "pubDate": "Thu, 04 Jan 2024 17:22:36 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2024-01-04T17:22:36+00:00", - "content": "

Strong team expected as Erik ten Hag looks to stave off pressure

", - "contentSnippet": "Strong team expected as Erik ten Hag looks to stave off pressure", - "guid": "b1130398", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T17:22:36.000Z" - }, - { - "creator": "Luciana Bellini", - "date": "2024-01-04T17:22:26+00:00", - "title": "Best toddler learning towers for getting little ones involved around the house", - "link": "https://www.standard.co.uk/shopping/esbest/kids/toys-games/best-toddler-learning-towers-b1059342.html", - "pubDate": "Thu, 04 Jan 2024 17:22:26 GMT", - "dc:creator": "Luciana Bellini", - "dc:date": "2024-01-04T17:22:26+00:00", - "content": "

Invest in one of these handy pieces of apparatus to help your toddler develop a new sense of independence at home

", - "contentSnippet": "Invest in one of these handy pieces of apparatus to help your toddler develop a new sense of independence at home", - "guid": "b1059342", - "categories": [ - "Toys and games", - "Kids", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T17:22:26.000Z" - }, - { - "creator": "Ted Hennessey", - "date": "2024-01-04T17:20:28+00:00", - "title": "Woman, 87, dies after car hits tree reported fallen 90 minutes earlier", - "link": "https://www.standard.co.uk/news/environment/oxfordshire-iopc-tooting-london-independent-b1130405.html", - "pubDate": "Thu, 04 Jan 2024 17:20:28 GMT", - "dc:creator": "Ted Hennessey", - "dc:date": "2024-01-04T17:20:28+00:00", - "content": "The incident happened on Tuesday near Crays Pond, Oxfordshire.", - "contentSnippet": "The incident happened on Tuesday near Crays Pond, Oxfordshire.", - "guid": "b1130405", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-04T17:20:28.000Z" - }, - { - "creator": "Josh Payne", - "date": "2024-01-04T17:19:12+00:00", - "title": "Epstein files: What do they show and what does it mean for those named?", - "link": "https://www.standard.co.uk/news/world/jeffrey-epstein-michael-jackson-donald-trump-bill-clinton-manhattan-b1130341.html", - "pubDate": "Thu, 04 Jan 2024 17:19:12 GMT", - "dc:creator": "Josh Payne", - "dc:date": "2024-01-04T17:19:12+00:00", - "content": "

The first tranche of documents were released on Wednesday

", - "contentSnippet": "The first tranche of documents were released on Wednesday", - "guid": "b1130341", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-04T17:19:12.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-04T17:16:51+00:00", - "title": "Liverpool XI vs Arsenal: Predicted lineup, confirmed team news and injury latest for FA Cup tie", - "link": "https://www.standard.co.uk/sport/football/liverpool-xi-vs-arsenal-fc-predicted-lineup-confirmed-team-news-injury-latest-fa-cup-2024-b1130396.html", - "pubDate": "Thu, 04 Jan 2024 17:16:51 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-04T17:16:51+00:00", - "content": "

Dominik Szoboszlai the main concern as Reds prepare to rest stars

", - "contentSnippet": "Dominik Szoboszlai the main concern as Reds prepare to rest stars", - "guid": "b1130396", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-04T17:16:51.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2024-01-04T17:14:16+00:00", - "title": "Best cat carriers, tried and tested for travelling with your pet", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/pets/best-cat-carriers-b1076916.html", - "pubDate": "Thu, 04 Jan 2024 17:14:16 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2024-01-04T17:14:16+00:00", - "content": "

Carry them safe and sound

", - "contentSnippet": "Carry them safe and sound", - "guid": "b1076916", - "categories": [ - "Pets", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-04T17:14:16.000Z" - }, - { - "creator": "Pat Hurst", - "date": "2024-01-04T17:12:12+00:00", - "title": "Scout Association apologises for death of teenager in 200ft fall, inquest told", - "link": "https://www.standard.co.uk/news/crime/scout-association-greater-manchester-stockport-north-wales-richmond-b1130401.html", - "pubDate": "Thu, 04 Jan 2024 17:12:12 GMT", - "dc:creator": "Pat Hurst", - "dc:date": "2024-01-04T17:12:12+00:00", - "content": "Ben Leonard\u2019s mother told a court it was five-and-a-half years too late and the treatment of her family had been \u2018disgusting\u2019.", - "contentSnippet": "Ben Leonard\u2019s mother told a court it was five-and-a-half years too late and the treatment of her family had been \u2018disgusting\u2019.", - "guid": "b1130401", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-04T17:12:12.000Z" - }, - { - "creator": "Sam Hall", - "date": "2024-01-04T17:10:19+00:00", - "title": "Major incident declared amid widespread flooding in England", - "link": "https://www.standard.co.uk/news/environment/nottinghamshire-county-council-england-councils-midlands-leicestershire-b1130371.html", - "pubDate": "Thu, 04 Jan 2024 17:10:19 GMT", - "dc:creator": "Sam Hall", - "dc:date": "2024-01-04T17:10:19+00:00", - "content": "Nottinghamshire County Council said the incident was declared \u2018due to rising levels along the river Trent\u2019.", - "contentSnippet": "Nottinghamshire County Council said the incident was declared \u2018due to rising levels along the river Trent\u2019.", - "guid": "b1130371", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-04T17:10:19.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-04T17:08:42+00:00", - "title": "Red Sea attacks: What has happened and what does it mean for prices?", - "link": "https://www.standard.co.uk/business/business-news/red-sea-attacks-what-has-happened-and-what-does-it-mean-for-prices-b1130403.html", - "pubDate": "Thu, 04 Jan 2024 17:08:42 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-04T17:08:42+00:00", - "content": "Here the PA news agency looks at what has happened and what the knock-on effects could be for people in the UK.", - "contentSnippet": "Here the PA news agency looks at what has happened and what the knock-on effects could be for people in the UK.", - "guid": "b1130403", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-04T17:08:42.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2024-01-05T13:54:41+00:00", - "title": "Flooded areas should be \u2018reassured\u2019 at response, says Sunak", - "link": "https://www.standard.co.uk/news/politics/environment-agency-prime-minister-households-government-england-b1130571.html", - "pubDate": "Fri, 05 Jan 2024 13:54:41 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2024-01-05T13:54:41+00:00", - "content": "Opposition parties accused ministers of failing to take seriously the danger of flooding.", - "contentSnippet": "Opposition parties accused ministers of failing to take seriously the danger of flooding.", - "guid": "b1130571", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-05T13:54:41.000Z" - }, - { - "creator": "Aine Fox", - "date": "2024-01-05T13:53:41+00:00", - "title": "Kate Garraway hailed for shining light on challenges faced by carers", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/kate-garraway-derek-draper-mbe-matt-hancock-sun-b1130580.html", - "pubDate": "Fri, 05 Jan 2024 13:53:41 GMT", - "dc:creator": "Aine Fox", - "dc:date": "2024-01-05T13:53:41+00:00", - "content": "The television presenter has been open about her family\u2019s experience and said she wanted to \u2018speak up\u2019 on behalf of others.", - "contentSnippet": "The television presenter has been open about her family\u2019s experience and said she wanted to \u2018speak up\u2019 on behalf of others.", - "guid": "b1130580", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-05T13:53:41.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-05T13:52:05+00:00", - "title": "Man City XI vs Huddersfield: Erling Haaland injury latest, predicted lineup and FA Cup team news", - "link": "https://www.standard.co.uk/sport/football/man-city-xi-vs-huddersfield-erling-haaland-injury-latest-predicted-lineup-confirmed-team-news-fa-cup-2024-b1130402.html", - "pubDate": "Fri, 05 Jan 2024 13:52:05 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-05T13:52:05+00:00", - "content": "

The striker has returned to training ahead of third-round tie but remains a doubt

", - "contentSnippet": "The striker has returned to training ahead of third-round tie but remains a doubt", - "guid": "b1130402", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T13:52:05.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2024-01-05T13:49:26+00:00", - "title": "GMB stars send support to Kate Garraway after death of husband Derek Draper", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/kate-garraway-derek-draper-susanna-reid-itv-charlotte-hawkins-b1130559.html", - "pubDate": "Fri, 05 Jan 2024 13:49:26 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2024-01-05T13:49:26+00:00", - "content": "The TV presenter, who married Draper in 2005, often provided health updates about her husband on the ITV morning programme.", - "contentSnippet": "The TV presenter, who married Draper in 2005, often provided health updates about her husband on the ITV morning programme.", - "guid": "b1130559", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-05T13:49:26.000Z" - }, - { - "creator": "Jordan King", - "date": "2024-01-05T13:48:27+00:00", - "title": "Man found dead in toilet on Jet2 flight bound for Manchester", - "link": "https://www.standard.co.uk/news/uk/jet2-flight-manchester-man-dead-toilet-tenerife-cork-ireland-b1130552.html", - "pubDate": "Fri, 05 Jan 2024 13:48:27 GMT", - "dc:creator": "Jordan King", - "dc:date": "2024-01-05T13:48:27+00:00", - "content": "

'Everyone on board was very upset,' one passenger said

", - "contentSnippet": "'Everyone on board was very upset,' one passenger said", - "guid": "b1130552", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-05T13:48:27.000Z" - }, - { - "creator": "Lydia Chantler-Hicks", - "date": "2024-01-05T13:47:58+00:00", - "title": "Person killed on Tube tracks at Sloane Square causing severe delays on Underground", - "link": "https://www.standard.co.uk/news/london/district-circle-line-tfl-delays-sloane-square-police-b1130577.html", - "pubDate": "Fri, 05 Jan 2024 13:47:58 GMT", - "dc:creator": "Lydia Chantler-Hicks", - "dc:date": "2024-01-05T13:47:58+00:00", - "content": "

A person has died on the train tracks at Sloane Square London Underground station.

", - "contentSnippet": "A person has died on the train tracks at Sloane Square London Underground station.", - "guid": "b1130577", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-05T13:47:58.000Z" - }, - { - "creator": "Daniel O'Boyle", - "date": "2024-01-05T13:47:04+00:00", - "title": "Average London house price down \u00a312,000 in 2023, but 'crash' predictions proven wrong", - "link": "https://www.standard.co.uk/business/london-house-price-property-sales-mortgage-loan-interest-rates-halifax-b1130578.html", - "pubDate": "Fri, 05 Jan 2024 13:47:04 GMT", - "dc:creator": "Daniel O'Boyle", - "dc:date": "2024-01-05T13:47:04+00:00", - "content": "

Some economists thought London house prices could fall by as much as 10%

", - "contentSnippet": "Some economists thought London house prices could fall by as much as 10%", - "guid": "b1130578", - "categories": [ - "Business" - ], - "isoDate": "2024-01-05T13:47:04.000Z" - }, - { - "creator": "Kim Pilling", - "date": "2024-01-05T13:45:33+00:00", - "title": "Stranger gets suspended sentence for McDonald\u2019s attack on drag star The Vivienne", - "link": "https://www.standard.co.uk/news/crime/the-vivienne-mcdonalds-liverpool-everton-b1130579.html", - "pubDate": "Fri, 05 Jan 2024 13:45:33 GMT", - "dc:creator": "Kim Pilling", - "dc:date": "2024-01-05T13:45:33+00:00", - "content": "In a victim statement, the star said: \u2018I am a lot more conscious that I could be attacked at any moment, simply for living my authentic life\u2019.", - "contentSnippet": "In a victim statement, the star said: \u2018I am a lot more conscious that I could be attacked at any moment, simply for living my authentic life\u2019.", - "guid": "b1130579", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-05T13:45:33.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2024-01-05T13:37:08+00:00", - "title": "Chelsea XI vs Preston: Predicted lineup, confirmed team news, injury latest for FA Cup game", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-xi-vs-preston-predicted-lineup-confirmed-team-news-injury-latest-2024-fa-cup-b1130562.html", - "pubDate": "Fri, 05 Jan 2024 13:37:08 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2024-01-05T13:37:08+00:00", - "content": "

The Blues are left counting the heavy cost of a busy winter fixture list as their FA Cup tilt begins

", - "contentSnippet": "The Blues are left counting the heavy cost of a busy winter fixture list as their FA Cup tilt begins", - "guid": "b1130562", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T13:37:08.000Z" - }, - { - "creator": "City Staff", - "date": "2024-01-05T13:35:46+00:00", - "title": "FTSE 100 Live: Blue-chips down almost 1%, US jobs beat forecasts again in 'soft landing' boost", - "link": "https://www.standard.co.uk/business/ftse-100-live-05-january-halifax-house-price-index-uk-construction-pmi-jd-sports-next-stocks-shares-mortgages-b1130459.html", - "pubDate": "Fri, 05 Jan 2024 13:35:46 GMT", - "dc:creator": "City Staff", - "dc:date": "2024-01-05T13:35:46+00:00", - "content": "

", - "contentSnippet": "", - "guid": "b1130459", - "categories": [ - "Business" - ], - "isoDate": "2024-01-05T13:35:46.000Z" - }, - { - "creator": "Sam Hall", - "date": "2024-01-05T13:34:02+00:00", - "title": "Environment Agency: More than 1,000 properties flooded across England", - "link": "https://www.standard.co.uk/news/environment/england-met-office-environment-agency-oli-claydon-great-western-railway-b1130540.html", - "pubDate": "Fri, 05 Jan 2024 13:34:02 GMT", - "dc:creator": "Sam Hall", - "dc:date": "2024-01-05T13:34:02+00:00", - "content": "Hundreds of flood warnings and alerts remained in place on Friday morning.", - "contentSnippet": "Hundreds of flood warnings and alerts remained in place on Friday morning.", - "guid": "b1130540", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-05T13:34:02.000Z" - }, - { - "creator": "Jane Kirby", - "date": "2024-01-05T13:33:37+00:00", - "title": "Combination of strikes and rise in flu and Covid \u2018a perfect storm for the NHS\u2019", - "link": "https://www.standard.co.uk/business/business-news/combination-of-strikes-and-rise-in-flu-and-covid-a-perfect-storm-for-the-nhs-b1130546.html", - "pubDate": "Fri, 05 Jan 2024 13:33:37 GMT", - "dc:creator": "Jane Kirby", - "dc:date": "2024-01-05T13:33:37+00:00", - "content": "Figures published by NHS England on Friday show the number of flu patients jumped by more than a third over Christmas.", - "contentSnippet": "Figures published by NHS England on Friday show the number of flu patients jumped by more than a third over Christmas.", - "guid": "b1130546", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-05T13:33:37.000Z" - }, - { - "creator": "Charlotte McLaughlin", - "date": "2024-01-05T13:33:09+00:00", - "title": "Kate Garraway announces death of \u2018darling husband\u2019 Derek Draper aged 56", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/derek-draper-kate-garraway-jonathan-reynolds-alastair-campbell-new-labour-b1130536.html", - "pubDate": "Fri, 05 Jan 2024 13:33:09 GMT", - "dc:creator": "Charlotte McLaughlin", - "dc:date": "2024-01-05T13:33:09+00:00", - "content": "Mr Draper was a prominent figure in New Labour during the 1990s and later retrained as a psychotherapist.", - "contentSnippet": "Mr Draper was a prominent figure in New Labour during the 1990s and later retrained as a psychotherapist.", - "guid": "b1130536", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-05T13:33:09.000Z" - }, - { - "creator": "Nuray Bulbul", - "date": "2024-01-05T13:26:13+00:00", - "title": "BBC rejects complaints about transgender character in Doctor Who", - "link": "https://www.standard.co.uk/culture/tvfilm/bbc-doctor-who-rose-yasmin-finney-complaints-transgender-b1130542.html", - "pubDate": "Fri, 05 Jan 2024 13:26:13 GMT", - "dc:creator": "Nuray Bulbul", - "dc:date": "2024-01-05T13:26:13+00:00", - "content": "

Yasmin Finney will return as Rose in the upcoming season, which is scheduled to premiere in May

", - "contentSnippet": "Yasmin Finney will return as Rose in the upcoming season, which is scheduled to premiere in May", - "guid": "b1130542", - "categories": [ - "TV", - "Culture" - ], - "isoDate": "2024-01-05T13:26:13.000Z" - }, - { - "creator": "Matt Majendie", - "date": "2024-01-05T13:25:24+00:00", - "title": "Luke Humphries: Darts' self-confessed 'Mr Boring' is an inspirational and worthy champion", - "link": "https://www.standard.co.uk/sport/luke-humphries-darts-world-champion-luke-littler-b1130574.html", - "pubDate": "Fri, 05 Jan 2024 13:25:24 GMT", - "dc:creator": "Matt Majendie", - "dc:date": "2024-01-05T13:25:24+00:00", - "content": "

He may have stopped Luke Littler's fairytale run, but the former roofer has a remarkable story all of his own

", - "contentSnippet": "He may have stopped Luke Littler's fairytale run, but the former roofer has a remarkable story all of his own", - "guid": "b1130574", - "categories": [ - "Sport" - ], - "isoDate": "2024-01-05T13:25:24.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2024-01-05T13:24:21+00:00", - "title": "Keir Starmer rejects criticism of Labour as light on detailed policy", - "link": "https://www.standard.co.uk/news/politics/keir-starmer-rachel-reeves-tories-british-rishi-sunak-b1130506.html", - "pubDate": "Fri, 05 Jan 2024 13:24:21 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2024-01-05T13:24:21+00:00", - "content": "The Labour leader has promised to meet the Tories \u2018fire with fire\u2019.", - "contentSnippet": "The Labour leader has promised to meet the Tories \u2018fire with fire\u2019.", - "guid": "b1130506", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-05T13:24:21.000Z" - }, - { - "creator": "Michael Howie,Lizzie Edmonds and Lisa McLoughlin ", - "date": "2024-01-05T13:22:53+00:00", - "title": "Derek Draper: Kate Garraway announces death of husband, 56, saying she was \u2018holding his hand when he passed\u2019", - "link": "https://www.standard.co.uk/news/uk/derek-draper-dead-kate-garraway-illness-covid-instagram-b1130534.html", - "pubDate": "Fri, 05 Jan 2024 13:22:53 GMT", - "dc:creator": "Michael Howie,Lizzie Edmonds and Lisa McLoughlin ", - "dc:date": "2024-01-05T13:22:53+00:00", - "content": "

Draper, 56, had struggled with health issues since contracting Covid and being placed in an induced coma in 2020

", - "contentSnippet": "Draper, 56, had struggled with health issues since contracting Covid and being placed in an induced coma in 2020", - "guid": "b1130534", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-05T13:22:53.000Z" - }, - { - "creator": "Carol Vorderman", - "date": "2024-01-05T13:20:41+00:00", - "title": "OPINION - Carol Vorderman: He's a coward. Bully. Misogynist. Why I\u2019m taking on Shaun Bailey and the other men like him ", - "link": "https://www.standard.co.uk/comment/carol-vorderman-shaun-bailey-misogyny-gb-news-b1130544.html", - "pubDate": "Fri, 05 Jan 2024 13:20:41 GMT", - "dc:creator": "Carol Vorderman", - "dc:date": "2024-01-05T13:20:41+00:00", - "content": "

Shaun Bailey is a misogynist.\u00a0 Not only that, he\u2019s a coward. You see \u201cmisogynist\u201d is just a fancy noun for \u201csomeone who bullies women\u201d and all bullies, as we know, are ultimately cowards. Quod Erat Demonstrandum.

", - "contentSnippet": "Shaun Bailey is a misogynist.\u00a0 Not only that, he\u2019s a coward. You see \u201cmisogynist\u201d is just a fancy noun for \u201csomeone who bullies women\u201d and all bullies, as we know, are ultimately cowards. Quod Erat Demonstrandum.", - "guid": "b1130544", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-05T13:20:41.000Z" - }, - { - "creator": "Bloomberg", - "date": "2024-01-05T13:16:14+00:00", - "title": "Thai retailer says it\u2019s received no communication about Selfridges investment", - "link": "https://www.standard.co.uk/business/thai-retailer-says-it-s-received-no-communication-about-selfridges-investment-b1130573.html", - "pubDate": "Fri, 05 Jan 2024 13:16:14 GMT", - "dc:creator": "Bloomberg", - "dc:date": "2024-01-05T13:16:14+00:00", - "content": "

Questions have swirled around the future of the iconic retailer after one of its co-owners filed for insolvency

", - "contentSnippet": "Questions have swirled around the future of the iconic retailer after one of its co-owners filed for insolvency", - "guid": "b1130573", - "categories": [ - "Business" - ], - "isoDate": "2024-01-05T13:16:14.000Z" - }, - { - "creator": "Ayan Omar", - "date": "2024-01-05T13:14:46+00:00", - "title": "McDonald\u2019s chief says Israel-Gaza \u2018misinformation\u2019 is hurting sales", - "link": "https://www.standard.co.uk/news/world/mcdonalds-fast-food-franchise-boycott-israel-gaza-bds-b1130517.html", - "pubDate": "Fri, 05 Jan 2024 13:14:46 GMT", - "dc:creator": "Ayan Omar", - "dc:date": "2024-01-05T13:14:46+00:00", - "content": "

The fast food chain has faced boycotts after its Israeli franchise donated thousands of meals to soldiers fighting in Gaza

", - "contentSnippet": "The fast food chain has faced boycotts after its Israeli franchise donated thousands of meals to soldiers fighting in Gaza", - "guid": "b1130517", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-05T13:14:46.000Z" - }, - { - "creator": "George Flood", - "date": "2024-01-05T13:13:29+00:00", - "title": "Transfer news LIVE! Osimhen 'agrees' Chelsea move; Vlahovic to Arsenal, Toney; Liverpool Mbappe boost; Man Utd", - "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-chelsea-fc-tottenham-man-utd-vlahovic-neto-dybala-mbappe-b1130462.html", - "pubDate": "Fri, 05 Jan 2024 13:13:29 GMT", - "dc:creator": "George Flood", - "dc:date": "2024-01-05T13:13:29+00:00", - "content": "

Follow all the latest January transfer news, rumours and gossip

", - "contentSnippet": "Follow all the latest January transfer news, rumours and gossip", - "guid": "b1130462", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T13:13:29.000Z" - }, - { - "creator": "Lisa McLoughlin ", - "date": "2024-01-05T13:12:45+00:00", - "title": "Derek Draper death: Lorraine Kelly and Susanna Reid lead tributes after sad news of his passing ", - "link": "https://www.standard.co.uk/showbiz/derek-draper-tributes-lorraine-kelly-susanna-reid-kate-garraway-b1130560.html", - "pubDate": "Fri, 05 Jan 2024 13:12:45 GMT", - "dc:creator": "Lisa McLoughlin ", - "dc:date": "2024-01-05T13:12:45+00:00", - "content": "

Lorraine Kelly praises friend Kate Garraway for her strength following husband Derek's lengthy battle with Covid

", - "contentSnippet": "Lorraine Kelly praises friend Kate Garraway for her strength following husband Derek's lengthy battle with Covid", - "guid": "b1130560", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-05T13:12:45.000Z" - }, - { - "creator": "Matt Verri", - "date": "2024-01-05T13:11:32+00:00", - "title": "Kieran Tierney delivers verdict on January return to Arsenal as he reveals love for Real Sociedad ", - "link": "https://www.standard.co.uk/sport/football/kieran-tierney-arsenal-fc-real-sociedad-transfer-update-b1130569.html", - "pubDate": "Fri, 05 Jan 2024 13:11:32 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2024-01-05T13:11:32+00:00", - "content": "

There have been suggestions that the Gunners could recall Tierney from his loan in Spain

", - "contentSnippet": "There have been suggestions that the Gunners could recall Tierney from his loan in Spain", - "guid": "b1130569", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T13:11:32.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-05T13:11:18+00:00", - "title": "Tottenham: Ange Postecoglou challenges Spurs stars to step up without Heung-min Son", - "link": "https://www.standard.co.uk/sport/football/tottenham-postecoglou-son-spurs-b1130564.html", - "pubDate": "Fri, 05 Jan 2024 13:11:18 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-05T13:11:18+00:00", - "content": "

Tottenham dealing with another major absence as captain goes away to the Asian Cup

", - "contentSnippet": "Tottenham dealing with another major absence as captain goes away to the Asian Cup", - "guid": "b1130564", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T13:11:18.000Z" - }, - { - "creator": "Jordan Reynolds", - "date": "2024-01-05T13:05:58+00:00", - "title": "Met Police officer appears in court and denies sexual offence", - "link": "https://www.standard.co.uk/news/crime/police-officer-southwark-crown-court-metropolitan-police-romford-essex-b1130570.html", - "pubDate": "Fri, 05 Jan 2024 13:05:58 GMT", - "dc:creator": "Jordan Reynolds", - "dc:date": "2024-01-05T13:05:58+00:00", - "content": "Sergeant Elliot Butler was conditionally bailed to next appear at Southwark Crown Court on March 4.", - "contentSnippet": "Sergeant Elliot Butler was conditionally bailed to next appear at Southwark Crown Court on March 4.", - "guid": "b1130570", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-05T13:05:58.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2024-01-05T13:05:44+00:00", - "title": "ChatGPT store that lets you make money from custom chatbots to open next week", - "link": "https://www.standard.co.uk/news/tech/openai-custom-chatgpt-bots-ai-marketplace-b1118812.html", - "pubDate": "Fri, 05 Jan 2024 13:05:44 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2024-01-05T13:05:44+00:00", - "content": "

Subscribers can build and share bots with the public and will be able to receive payouts

", - "contentSnippet": "Subscribers can build and share bots with the public and will be able to receive payouts", - "guid": "b1118812", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2024-01-05T13:05:44.000Z" - }, - { - "creator": "India Block", - "date": "2024-01-05T13:05:02+00:00", - "title": "Primrose Hill: from glittering A-list hangout to battleground for public safety?", - "link": "https://www.standard.co.uk/homesandproperty/property-news/primrose-hill-murder-park-security-neighbourhood-crime-b1130352.html", - "pubDate": "Fri, 05 Jan 2024 13:05:02 GMT", - "dc:creator": "India Block", - "dc:date": "2024-01-05T13:05:02+00:00", - "content": "

Primrose Hill exploded in popularity over lockdown. Now the tragic death of a teenager leaves residents searching for answers on how to make their park safe for everyone

", - "contentSnippet": "Primrose Hill exploded in popularity over lockdown. Now the tragic death of a teenager leaves residents searching for answers on how to make their park safe for everyone", - "guid": "b1130352", - "categories": [ - "Property News", - "Homes & Property" - ], - "isoDate": "2024-01-05T13:05:02.000Z" - }, - { - "creator": "Jitendra Joshi", - "date": "2024-01-05T13:01:15+00:00", - "title": "Pressure grows for Prince Andrew police probe after new Jeffrey Epstein files bombshell", - "link": "https://www.standard.co.uk/news/uk/prince-andrew-duke-of-york-police-probe-jeffrey-epstein-court-documents-b1130522.html", - "pubDate": "Fri, 05 Jan 2024 13:01:15 GMT", - "dc:creator": "Jitendra Joshi", - "dc:date": "2024-01-05T13:01:15+00:00", - "content": "

The head of the anti-monarchy group Republic said that he had reported the Duke of York to the Metropolitan Police

", - "contentSnippet": "The head of the anti-monarchy group Republic said that he had reported the Duke of York to the Metropolitan Police", - "guid": "b1130522", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-05T13:01:15.000Z" - }, - { - "creator": "Anthony France", - "date": "2024-01-05T13:01:09+00:00", - "title": "Mum of Wimbledon school crash victim shares last photo of daughter moments before her death", - "link": "https://www.standard.co.uk/news/crime/nuria-sajjad-wimbledon-prep-school-crash-photo-london-b1130523.html", - "pubDate": "Fri, 05 Jan 2024 13:01:09 GMT", - "dc:creator": "Anthony France", - "dc:date": "2024-01-05T13:01:09+00:00", - "content": "

Nuria Sajjad\u2019s family said their days are 'overwhelmingly filled with hollowness' - as they reveal concern about police investigation

", - "contentSnippet": "Nuria Sajjad\u2019s family said their days are 'overwhelmingly filled with hollowness' - as they reveal concern about police investigation", - "guid": "b1130523", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-05T13:01:09.000Z" - }, - { - "creator": "Hamish MacBain", - "date": "2024-01-05T13:00:53+00:00", - "title": "OPINION - There's only one thing worse than people boring on about Dry Jan...", - "link": "https://www.standard.co.uk/comment/dry-january-resolutions-b1130513.html", - "pubDate": "Fri, 05 Jan 2024 13:00:53 GMT", - "dc:creator": "Hamish MacBain", - "dc:date": "2024-01-05T13:00:53+00:00", - "content": "

You know what? I\u2019ve barely even noticed. I don\u2019t miss it all. There\u2019s actually so much stuff to do in the evening and at the weekend that doesn\u2019t revolve around drinking. I went out for a meal and just drank water. I\u2019ve been sleeping so well and getting up so early that I\u2019m never tired and also have all of these extra hours in the day. Those Barry\u2019s classes are just bouncing off me like bullets made of marzipan. The idea of a late-night McDonald\u2019s makes me feel sick. Although not actually sick. Did I mention that I\u2019m not feeling sick, or tired, at all, ever? Or that I just feel great all the time, forever?

", - "contentSnippet": "You know what? I\u2019ve barely even noticed. I don\u2019t miss it all. There\u2019s actually so much stuff to do in the evening and at the weekend that doesn\u2019t revolve around drinking. I went out for a meal and just drank water. I\u2019ve been sleeping so well and getting up so early that I\u2019m never tired and also have all of these extra hours in the day. Those Barry\u2019s classes are just bouncing off me like bullets made of marzipan. The idea of a late-night McDonald\u2019s makes me feel sick. Although not actually sick. Did I mention that I\u2019m not feeling sick, or tired, at all, ever? Or that I just feel great all the time, forever?", - "guid": "b1130513", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-05T13:00:53.000Z" - }, - { - "creator": "Kayleigh Rattle", - "date": "2024-01-05T13:00:35+00:00", - "title": "Best nursing chairs for a comfortable feeding time for mum and baby", - "link": "https://www.standard.co.uk/shopping/esbest/kids/best-nursing-chairs-b950170.html", - "pubDate": "Fri, 05 Jan 2024 13:00:35 GMT", - "dc:creator": "Kayleigh Rattle", - "dc:date": "2024-01-05T13:00:35+00:00", - "content": "

We take a look at the best rocking and nursing chairs for feeding, soothing, reading and relaxing in

", - "contentSnippet": "We take a look at the best rocking and nursing chairs for feeding, soothing, reading and relaxing in", - "guid": "b950170", - "categories": [ - "Kids", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-05T13:00:35.000Z" - }, - { - "creator": "By Grinne N. Aodha", - "date": "2024-01-05T13:00:35+00:00", - "title": "Teenager charged with murder of suspected gunman in Dublin restaurant shooting", - "link": "https://www.standard.co.uk/news/uk/dublin-sherry-b1130550.html", - "pubDate": "Fri, 05 Jan 2024 13:00:35 GMT", - "dc:creator": "By Grinne N. Aodha", - "dc:date": "2024-01-05T13:00:35+00:00", - "content": "David Amah, with an address in Donabate, appeared in court charged with Tristan Sherry\u2019s murder on Christmas Eve.", - "contentSnippet": "David Amah, with an address in Donabate, appeared in court charged with Tristan Sherry\u2019s murder on Christmas Eve.", - "guid": "b1130550", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-05T13:00:35.000Z" - }, - { - "creator": "Lisa McLoughlin ", - "date": "2024-01-05T13:00:15+00:00", - "title": "Game of Thrones actor left stunned after discovering his mother is on The Traitors ", - "link": "https://www.standard.co.uk/showbiz/kerr-logan-game-of-thrones-the-traitors-reality-show-stunned-b1130532.html", - "pubDate": "Fri, 05 Jan 2024 13:00:15 GMT", - "dc:creator": "Lisa McLoughlin ", - "dc:date": "2024-01-05T13:00:15+00:00", - "content": "

Kerr Logan announced on X that his mum Diane was one of the contestants

", - "contentSnippet": "Kerr Logan announced on X that his mum Diane was one of the contestants", - "guid": "b1130532", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-05T13:00:15.000Z" - }, - { - "creator": "Danny Halpin", - "date": "2024-01-05T12:58:57+00:00", - "title": "Farmers looking at \u2018huge losses\u2019 after major incident declared over flooding", - "link": "https://www.standard.co.uk/news/environment/environment-agency-farmers-nottinghamshire-county-council-england-government-b1130568.html", - "pubDate": "Fri, 05 Jan 2024 12:58:57 GMT", - "dc:creator": "Danny Halpin", - "dc:date": "2024-01-05T12:58:57+00:00", - "content": "Almost every river in England is running exceptionally high, according to Environment Agency data.", - "contentSnippet": "Almost every river in England is running exceptionally high, according to Environment Agency data.", - "guid": "b1130568", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-05T12:58:57.000Z" - }, - { - "creator": "David Lynch", - "date": "2024-01-05T12:56:38+00:00", - "title": "No one should grow up poor, Sunak says after Tory MP\u2019s \u2018crap parenting\u2019 remark", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-prime-minister-north-west-david-lynch-mps-b1130566.html", - "pubDate": "Fri, 05 Jan 2024 12:56:38 GMT", - "dc:creator": "David Lynch", - "dc:date": "2024-01-05T12:56:38+00:00", - "content": "Bury North MP James Daly faced criticism over Christmas for suggesting most children who struggle in the town are \u2018products of crap parents\u2019.", - "contentSnippet": "Bury North MP James Daly faced criticism over Christmas for suggesting most children who struggle in the town are \u2018products of crap parents\u2019.", - "guid": "b1130566", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-05T12:56:38.000Z" - }, - { - "creator": "Emily Pennink", - "date": "2024-01-05T12:55:55+00:00", - "title": "Victoria station bus crash driver avoids jail for killing pedestrian Melissa Burr, 32", - "link": "https://www.standard.co.uk/news/crime/victoria-station-bus-crash-driver-melissa-burr-pedestrian-b1130563.html", - "pubDate": "Fri, 05 Jan 2024 12:55:55 GMT", - "dc:creator": "Emily Pennink", - "dc:date": "2024-01-05T12:55:55+00:00", - "content": "

Olusofa Popoola, 61, accidentally accelerated into the back of a stationary bus, shunting it forward into Melissa Burr

", - "contentSnippet": "Olusofa Popoola, 61, accidentally accelerated into the back of a stationary bus, shunting it forward into Melissa Burr", - "guid": "b1130563", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-05T12:55:55.000Z" - }, - { - "creator": "Craig Paton", - "date": "2024-01-05T12:52:44+00:00", - "title": "Yousaf: Israel\u2019s action in Gaza \u2018way beyond legitimate response\u2019 to Hamas attack", - "link": "https://www.standard.co.uk/news/politics/gaza-uk-government-hamas-benjamin-netanyahu-first-minister-b1130557.html", - "pubDate": "Fri, 05 Jan 2024 12:52:44 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2024-01-05T12:52:44+00:00", - "content": "The First Minister has urged the UK Government to make clear Israeli officials will be held responsible if \u2018indiscriminate attacks\u2019 do not cease.", - "contentSnippet": "The First Minister has urged the UK Government to make clear Israeli officials will be held responsible if \u2018indiscriminate attacks\u2019 do not cease.", - "guid": "b1130557", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-05T12:52:44.000Z" - }, - { - "creator": "Lisa McLoughlin ", - "date": "2024-01-05T12:49:29+00:00", - "title": "This Morning's Dermot O'Leary and Alison Hammond hold back tears as they announce Derek Draper's death", - "link": "https://www.standard.co.uk/showbiz/this-morning-dermot-oleary-alison-hammond-announce-derek-drapers-death-b1130545.html", - "pubDate": "Fri, 05 Jan 2024 12:49:29 GMT", - "dc:creator": "Lisa McLoughlin ", - "dc:date": "2024-01-05T12:49:29+00:00", - "content": "

Kate Garraway announced her husband's death on Instagram on Friday

", - "contentSnippet": "Kate Garraway announced her husband's death on Instagram on Friday", - "guid": "b1130545", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-05T12:49:29.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-05T12:49:29+00:00", - "title": "Telegraph bidder vows Abu Dhabi will be \u2018passive investor\u2019", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/abu-dhabi-government-the-daily-telegraph-united-arab-emirates-cnn-b1130561.html", - "pubDate": "Fri, 05 Jan 2024 12:49:29 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-05T12:49:29+00:00", - "content": "Last year the Government got involved in the deal, amid worries the authoritarian Gulf State could get a say over the journalism of the UK paper.", - "contentSnippet": "Last year the Government got involved in the deal, amid worries the authoritarian Gulf State could get a say over the journalism of the UK paper.", - "guid": "b1130561", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-05T12:49:29.000Z" - }, - { - "creator": "Robbie Griffiths", - "date": "2024-01-05T12:48:30+00:00", - "title": "Elvis, his millions and the fraught multi-generational battle for his estate", - "link": "https://www.standard.co.uk/lifestyle/elvis-presley-networth-wealth-priscilla-presley-lisa-marie-riley-keogh-millions-cash-b1130431.html", - "pubDate": "Fri, 05 Jan 2024 12:48:30 GMT", - "dc:creator": "Robbie Griffiths", - "dc:date": "2024-01-05T12:48:30+00:00", - "content": "

As Elvis Presley becomes a hologram, who will make all the money?

", - "contentSnippet": "As Elvis Presley becomes a hologram, who will make all the money?", - "guid": "b1130431", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-05T12:48:30.000Z" - }, - { - "creator": "George Flood", - "date": "2024-01-05T12:46:02+00:00", - "title": "Arsenal: What Jorrel Hato has already said about 'dream' transfer move", - "link": "https://www.standard.co.uk/sport/football/arsenal-fc-jorrel-hato-transfer-b1130556.html", - "pubDate": "Fri, 05 Jan 2024 12:46:02 GMT", - "dc:creator": "George Flood", - "dc:date": "2024-01-05T12:46:02+00:00", - "content": "

The Gunners are expected to make a move for talented Ajax starlet

", - "contentSnippet": "The Gunners are expected to make a move for talented Ajax starlet", - "guid": "b1130556", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T12:46:02.000Z" - }, - { - "creator": "Vicky Shaw", - "date": "2024-01-05T12:42:33+00:00", - "title": "Average UK house price ended last year \u00a34,800 higher than at end of 2022 \u2013 index", - "link": "https://www.standard.co.uk/business/money/average-uk-house-price-ended-last-year-ps4-800-higher-than-at-end-of-2022-index-b1130471.html", - "pubDate": "Fri, 05 Jan 2024 12:42:33 GMT", - "dc:creator": "Vicky Shaw", - "dc:date": "2024-01-05T12:42:33+00:00", - "content": "The typical UK house price in December 2023 was \u00a3287,105, up from \u00a3282,305 in the same month a year earlier, Halifax said.", - "contentSnippet": "The typical UK house price in December 2023 was \u00a3287,105, up from \u00a3282,305 in the same month a year earlier, Halifax said.", - "guid": "b1130471", - "categories": [ - "Money", - "Business" - ], - "isoDate": "2024-01-05T12:42:33.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-05T12:37:00+00:00", - "title": "Major supermarkets to reveal festive sales after bumper Christmas for rivals", - "link": "https://www.standard.co.uk/business/business-news/major-supermarkets-to-reveal-festive-sales-after-bumper-christmas-for-rivals-b1130558.html", - "pubDate": "Fri, 05 Jan 2024 12:37:00 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-05T12:37:00+00:00", - "content": "Sainsbury\u2019s, Tesco and Marks & Spencer will give investors an update on their recent sales.", - "contentSnippet": "Sainsbury\u2019s, Tesco and Marks & Spencer will give investors an update on their recent sales.", - "guid": "b1130558", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-05T12:37:00.000Z" - }, - { - "creator": "Laura Harding", - "date": "2024-01-05T12:26:40+00:00", - "title": "New Labour spin doctor Derek Draper was part of media power couple", - "link": "https://www.standard.co.uk/showbiz/derek-draper-kate-garraway-new-labour-liam-byrne-peter-mandelson-b1130535.html", - "pubDate": "Fri, 05 Jan 2024 12:26:40 GMT", - "dc:creator": "Laura Harding", - "dc:date": "2024-01-05T12:26:40+00:00", - "content": "The former political adviser retrained as a psychotherapist and married TV presenter Kate Garraway.", - "contentSnippet": "The former political adviser retrained as a psychotherapist and married TV presenter Kate Garraway.", - "guid": "b1130535", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-05T12:26:40.000Z" - }, - { - "creator": "Hannah Cottrell", - "date": "2024-01-05T12:24:36+00:00", - "title": "We can\u2019t continue like this, says mother in flooded Shropshire home", - "link": "https://www.standard.co.uk/news/environment/shropshire-shrewsbury-people-nottinghamshire-b1130441.html", - "pubDate": "Fri, 05 Jan 2024 12:24:36 GMT", - "dc:creator": "Hannah Cottrell", - "dc:date": "2024-01-05T12:24:36+00:00", - "content": "Siobhan Connor, from Shrewsbury, said her home has flooded three times in the last year .", - "contentSnippet": "Siobhan Connor, from Shrewsbury, said her home has flooded three times in the last year .", - "guid": "b1130441", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-05T12:24:36.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-05T12:24:10+00:00", - "title": "Best places to buy contact lenses online that are cheap and high quality", - "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-places-to-buy-contact-lenses-online-uk-a4540716.html", - "pubDate": "Fri, 05 Jan 2024 12:24:10 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-05T12:24:10+00:00", - "content": "

Tired of overpaying for contact lenses? Abha Shah has her eyes on the purse-friendly prize

", - "contentSnippet": "Tired of overpaying for contact lenses? Abha Shah has her eyes on the purse-friendly prize", - "guid": "a4540716", - "categories": [ - "Health & Fitness", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-05T12:24:10.000Z" - }, - { - "creator": "Jordan King", - "date": "2024-01-05T12:21:37+00:00", - "title": "North Korea fires artillery rounds near its disputed sea boundary with South", - "link": "https://www.standard.co.uk/news/world/north-korea-south-korea-artillery-rounds-sea-boundary-b1130474.html", - "pubDate": "Fri, 05 Jan 2024 12:21:37 GMT", - "dc:creator": "Jordan King", - "dc:date": "2024-01-05T12:21:37+00:00", - "content": "

It comes amid high tensions between the two neighbouring countries

", - "contentSnippet": "It comes amid high tensions between the two neighbouring countries", - "guid": "b1130474", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-05T12:21:37.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2024-01-05T12:21:17+00:00", - "title": "Chelsea striker David Datro Fofana offered Sevilla escape route from Union Berlin nightmare", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-david-datro-fofana-sevilla-union-berlin-b1130528.html", - "pubDate": "Fri, 05 Jan 2024 12:21:17 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2024-01-05T12:21:17+00:00", - "content": "

Blues loanee could get a change of scenery in January after struggling to impress in the Bundesliga

", - "contentSnippet": "Blues loanee could get a change of scenery in January after struggling to impress in the Bundesliga", - "guid": "b1130528", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T12:21:17.000Z" - }, - { - "creator": "Ross Lydall", - "date": "2024-01-05T12:19:07+00:00", - "title": "Blackwall tunnel to close to southbound traffic for five weekends", - "link": "https://www.standard.co.uk/news/transport/blackwall-tunnel-close-southbound-traffic-five-weekends-tfl-silvertown-b1130543.html", - "pubDate": "Fri, 05 Jan 2024 12:19:07 GMT", - "dc:creator": "Ross Lydall", - "dc:date": "2024-01-05T12:19:07+00:00", - "content": "

The Blackwall tunnel will be part-closed for up to five weekends in January and February, drivers were warned on Friday.

", - "contentSnippet": "The Blackwall tunnel will be part-closed for up to five weekends in January and February, drivers were warned on Friday.", - "guid": "b1130543", - "categories": [ - "Transport", - "News" - ], - "isoDate": "2024-01-05T12:19:07.000Z" - }, - { - "creator": "Dylan Jones", - "date": "2024-01-05T12:18:15+00:00", - "title": "Elvis Presley's 10 greatest songs", - "link": "https://www.standard.co.uk/culture/music/10-greatest-elvis-presley-songs-b1130493.html", - "pubDate": "Fri, 05 Jan 2024 12:18:15 GMT", - "dc:creator": "Dylan Jones", - "dc:date": "2024-01-05T12:18:15+00:00", - "content": "

From Jailhouse Rock to All Shook Up, the icon was responsible for countless rock'n'roll classics, but which ones come out on top?

", - "contentSnippet": "From Jailhouse Rock to All Shook Up, the icon was responsible for countless rock'n'roll classics, but which ones come out on top?", - "guid": "b1130493", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2024-01-05T12:18:15.000Z" - }, - { - "creator": "Lizzie Edmonds", - "date": "2024-01-05T12:15:45+00:00", - "title": "Sandra Bullock scatters ashes of partner Bryan Randall into Snake River in Wyoming ", - "link": "https://www.standard.co.uk/showbiz/sandra-bullock-partner-death-bryan-randall-ashes-scattered-snake-river-wyoming-b1130519.html", - "pubDate": "Fri, 05 Jan 2024 12:15:45 GMT", - "dc:creator": "Lizzie Edmonds", - "dc:date": "2024-01-05T12:15:45+00:00", - "content": "

Randall died in August 2023 following a secret battle with ALS

", - "contentSnippet": "Randall died in August 2023 following a secret battle with ALS", - "guid": "b1130519", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-05T12:15:45.000Z" - }, - { - "creator": "Tristan Kirk", - "date": "2024-01-05T12:15:20+00:00", - "title": "Tory MPs call for review of fast-track justice system 'against British values' after pensioner convicted over bill", - "link": "https://www.standard.co.uk/news/politics/single-justice-procedure-justice-secretary-alex-chalk-andy-street-eddie-hughes-b1130515.html", - "pubDate": "Fri, 05 Jan 2024 12:15:20 GMT", - "dc:creator": "Tristan Kirk", - "dc:date": "2024-01-05T12:15:20+00:00", - "content": "

MPs wrote to Justice Secretary Alex Chalk urging him to review the Single Justice Procedure

", - "contentSnippet": "MPs wrote to Justice Secretary Alex Chalk urging him to review the Single Justice Procedure", - "guid": "b1130515", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-05T12:15:20.000Z" - }, - { - "creator": "Ian Jones", - "date": "2024-01-05T12:15:15+00:00", - "title": "Flu patients up a third over Christmas ahead of junior doctors\u2019 strike", - "link": "https://www.standard.co.uk/news/health/nhs-england-eve-ian-jones-b1130526.html", - "pubDate": "Fri, 05 Jan 2024 12:15:15 GMT", - "dc:creator": "Ian Jones", - "dc:date": "2024-01-05T12:15:15+00:00", - "content": "It is the highest figure so far this winter.", - "contentSnippet": "It is the highest figure so far this winter.", - "guid": "b1130526", - "categories": [ - "Health", - "News" - ], - "isoDate": "2024-01-05T12:15:15.000Z" - }, - { - "creator": "Nicholas Cecil and Michael Howie", - "date": "2024-01-05T12:12:55+00:00", - "title": "\u2018Not that difficult\u2019 to get on property ladder, NatWest chief claims sparking disbelief among young Londoners", - "link": "https://www.standard.co.uk/news/politics/not-that-difficult-to-get-on-property-ladder-natwest-chief-claims-b1130484.html", - "pubDate": "Fri, 05 Jan 2024 12:12:55 GMT", - "dc:creator": "Nicholas Cecil and Michael Howie", - "dc:date": "2024-01-05T12:12:55+00:00", - "content": "

Lib Dem Treasury spokesperson Sarah Olney MP said: \"This is laughable. What planet is he living on?\"

", - "contentSnippet": "Lib Dem Treasury spokesperson Sarah Olney MP said: \"This is laughable. What planet is he living on?\"", - "guid": "b1130484", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-05T12:12:55.000Z" - }, - { - "creator": "Anne McElvoy", - "date": "2024-01-05T12:12:08+00:00", - "title": "How Jeffrey Epstein is still shifting tectonic plates of world\u2019s elite from the grave", - "link": "https://www.standard.co.uk/lifestyle/jeffrey-epstein-files-bill-clinton-donald-trump-prince-andrew-b1130530.html", - "pubDate": "Fri, 05 Jan 2024 12:12:08 GMT", - "dc:creator": "Anne McElvoy", - "dc:date": "2024-01-05T12:12:08+00:00", - "content": "

From New York to the Royal Lodge, yet another toxic dossier about the billionaire is wreaking havoc on power players

", - "contentSnippet": "From New York to the Royal Lodge, yet another toxic dossier about the billionaire is wreaking havoc on power players", - "guid": "b1130530", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-05T12:12:08.000Z" - }, - { - "creator": "Anthony France", - "date": "2024-01-05T12:11:32+00:00", - "title": "Crouch End murder: Police investigating after 23-year-old man stabbed to death in Haringey", - "link": "https://www.standard.co.uk/news/crime/murder-metropolitan-police-man-stabbing-albert-road-crouch-end-haringey-london-b1130548.html", - "pubDate": "Fri, 05 Jan 2024 12:11:32 GMT", - "dc:creator": "Anthony France", - "dc:date": "2024-01-05T12:11:32+00:00", - "content": "

The victim\u2019s family have been informed and are being supported by officers

", - "contentSnippet": "The victim\u2019s family have been informed and are being supported by officers", - "guid": "b1130548", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-05T12:11:32.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2024-01-05T12:06:12+00:00", - "title": "SpaceX launches Starlink mobile phone service satellites", - "link": "https://www.standard.co.uk/news/tech/spacex-starlink-mobile-phone-service-satellites-b1130514.html", - "pubDate": "Fri, 05 Jan 2024 12:06:12 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2024-01-05T12:06:12+00:00", - "content": "

Six satellites that will act as mobile phone towers \"in space\" blasted off on the firm's Falcon 9 rocket

", - "contentSnippet": "Six satellites that will act as mobile phone towers \"in space\" blasted off on the firm's Falcon 9 rocket", - "guid": "b1130514", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2024-01-05T12:06:12.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2024-01-05T12:06:06+00:00", - "title": "David Tennant \u2018delighted\u2019 to be announced as Baftas host", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/david-tennant-royal-festival-hall-tv-baftas-catherine-tate-richard-e-grant-b1130453.html", - "pubDate": "Fri, 05 Jan 2024 12:06:06 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2024-01-05T12:06:06+00:00", - "content": "The awards ceremony will take place in February at the Royal Festival Hall in London.", - "contentSnippet": "The awards ceremony will take place in February at the Royal Festival Hall in London.", - "guid": "b1130453", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-05T12:06:06.000Z" - }, - { - "creator": "Nancy Durrant", - "date": "2024-01-05T12:03:48+00:00", - "title": "OPINION - Women artists are everywhere in 2024 but let's face it, it's about damn time", - "link": "https://www.standard.co.uk/culture/exhibitions/women-artists-exhibitions-2024-london-yoko-ono-angelica-kauffman-tate-b1130354.html", - "pubDate": "Fri, 05 Jan 2024 12:03:48 GMT", - "dc:creator": "Nancy Durrant", - "dc:date": "2024-01-05T12:03:48+00:00", - "content": "

It's a great year of exhibitions but museums need to double down and beef up their collections with the work of female artists

", - "contentSnippet": "It's a great year of exhibitions but museums need to double down and beef up their collections with the work of female artists", - "guid": "b1130354", - "categories": [ - "Exhibitions", - "Culture" - ], - "isoDate": "2024-01-05T12:03:48.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2024-01-05T12:01:37+00:00", - "title": "Sunak urged to act as areas hit by flooding", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-prime-minister-national-audit-office-england-environment-agency-b1130547.html", - "pubDate": "Fri, 05 Jan 2024 12:01:37 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2024-01-05T12:01:37+00:00", - "content": "Opposition parties have urged the Prime Minister to visit the affected areas.", - "contentSnippet": "Opposition parties have urged the Prime Minister to visit the affected areas.", - "guid": "b1130547", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-05T12:01:37.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-05T12:00:52+00:00", - "title": "Tottenham: Ivan Perisic has likely played final game for Spurs, says Ange Postecoglou", - "link": "https://www.standard.co.uk/sport/football/tottenham-perisic-injury-contract-postecoglou-b1130510.html", - "pubDate": "Fri, 05 Jan 2024 12:00:52 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-05T12:00:52+00:00", - "content": "

The 34-year-old, who will become a free agent at the end of the season, is recovering from a serious knee injury

", - "contentSnippet": "The 34-year-old, who will become a free agent at the end of the season, is recovering from a serious knee injury", - "guid": "b1130510", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T12:00:52.000Z" - }, - { - "creator": "Seren Morris and Maryam Kara", - "date": "2024-01-05T12:00:00+00:00", - "title": "No Trousers Tube Ride returns to London for 2024 despite TfL strikes", - "link": "https://www.standard.co.uk/news/london/no-trousers-tube-ride-london-underground-elizabeth-line-b1050725.html", - "pubDate": "Fri, 05 Jan 2024 12:00:00 GMT", - "dc:creator": "Seren Morris and Maryam Kara", - "dc:date": "2024-01-05T12:00:00+00:00", - "content": "

Hundreds of Londoners are expected to head to the underground with their legs exposed as the international stunt returns to the city

", - "contentSnippet": "Hundreds of Londoners are expected to head to the underground with their legs exposed as the international stunt returns to the city", - "guid": "b1050725", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-05T12:00:00.000Z" - }, - { - "creator": "Nuray Bulbul", - "date": "2024-01-05T11:56:31+00:00", - "title": "Storm Henk: Where have flood warnings been issued in London?", - "link": "https://www.standard.co.uk/news/uk/london-storm-henk-flood-warnings-areas-where-b1130518.html", - "pubDate": "Fri, 05 Jan 2024 11:56:31 GMT", - "dc:creator": "Nuray Bulbul", - "dc:date": "2024-01-05T11:56:31+00:00", - "content": "

Intense rain across the capital has led to Tube closures and people being evacuated

", - "contentSnippet": "Intense rain across the capital has led to Tube closures and people being evacuated", - "guid": "b1130518", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-05T11:56:31.000Z" - }, - { - "creator": "William Mata", - "date": "2024-01-05T11:55:58+00:00", - "title": "Hackney Wick residents tell of 'knee-high' flood water as scale of damage emerges", - "link": "https://www.standard.co.uk/news/london/hackney-wick-flood-flooding-canal-river-lee-dace-road-wick-lane-smeed-road-b1130527.html", - "pubDate": "Fri, 05 Jan 2024 11:55:58 GMT", - "dc:creator": "William Mata", - "dc:date": "2024-01-05T11:55:58+00:00", - "content": "

A 'waterfall' gushed from the canal into homes and businesses, residents say

", - "contentSnippet": "A 'waterfall' gushed from the canal into homes and businesses, residents say", - "guid": "b1130527", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-05T11:55:58.000Z" - }, - { - "creator": "Nick Purewal", - "date": "2024-01-05T11:54:08+00:00", - "title": "Six Nations: Fin Baxter emerges as potential England option amid Joe Marler injury", - "link": "https://www.standard.co.uk/sport/rugby/six-nations-england-fin-baxter-harlequins-joe-marler-injury-b1130538.html", - "pubDate": "Fri, 05 Jan 2024 11:54:08 GMT", - "dc:creator": "Nick Purewal", - "dc:date": "2024-01-05T11:54:08+00:00", - "content": "

Steve Borthwick could have a shortage of loosehead props for Italy opener

", - "contentSnippet": "Steve Borthwick could have a shortage of loosehead props for Italy opener", - "guid": "b1130538", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2024-01-05T11:54:08.000Z" - }, - { - "creator": "Nick Purewal", - "date": "2024-01-05T11:46:03+00:00", - "title": "England coaching search continues as Steve Borthwick eyes attacking rebuild", - "link": "https://www.standard.co.uk/sport/rugby/england-steve-borthwick-kevin-sinfield-b1130533.html", - "pubDate": "Fri, 05 Jan 2024 11:46:03 GMT", - "dc:creator": "Nick Purewal", - "dc:date": "2024-01-05T11:46:03+00:00", - "content": "

Kevin Sinfield's summer exit will leave a huge void and his senior presence must be replaced

", - "contentSnippet": "Kevin Sinfield's summer exit will leave a huge void and his senior presence must be replaced", - "guid": "b1130533", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2024-01-05T11:46:03.000Z" - }, - { - "creator": "Simon English", - "date": "2024-01-05T11:34:13+00:00", - "title": "No wonder big companies don't want to list here", - "link": "https://www.standard.co.uk/business/no-wonder-big-companies-don-t-want-to-list-here-b1130531.html", - "pubDate": "Fri, 05 Jan 2024 11:34:13 GMT", - "dc:creator": "Simon English", - "dc:date": "2024-01-05T11:34:13+00:00", - "content": "

City Comment: Perhaps London shouldn\u2019t go chasing every tech float going

", - "contentSnippet": "City Comment: Perhaps London shouldn\u2019t go chasing every tech float going", - "guid": "b1130531", - "categories": [ - "Business" - ], - "isoDate": "2024-01-05T11:34:13.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-05T11:29:54+00:00", - "title": "Tottenham: Ange Postecoglou aware of trophy desire but warns FA Cup is not the 'holy grail'", - "link": "https://www.standard.co.uk/sport/football/tottenham-postecoglou-fa-cup-burnley-preview-b1130525.html", - "pubDate": "Fri, 05 Jan 2024 11:29:54 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-05T11:29:54+00:00", - "content": "

Spurs were once the most successful team in FA Cup history, but have not lifted the trophy - or reached a final - in 33 years

", - "contentSnippet": "Spurs were once the most successful team in FA Cup history, but have not lifted the trophy - or reached a final - in 33 years", - "guid": "b1130525", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:29:54.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2024-01-05T11:29:22+00:00", - "title": "How to watch Tottenham vs Burnley FOR FREE: TV channel and live stream for FA Cup game today", - "link": "https://www.standard.co.uk/sport/football/how-to-watch-tottenham-vs-burnley-free-tv-channel-live-stream-fa-cup-2024-today-b1130427.html", - "pubDate": "Fri, 05 Jan 2024 11:29:22 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2024-01-05T11:29:22+00:00", - "content": "

Spurs begin latest quest to end 16-year trophy drought

", - "contentSnippet": "Spurs begin latest quest to end 16-year trophy drought", - "guid": "b1130427", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:29:22.000Z" - }, - { - "creator": "Michael Howie,Lydia Chantler-Hicks and Will Mata", - "date": "2024-01-05T11:29:12+00:00", - "title": "London party boat sinks in Thames and flood hits Hackney Wick amid heavy rainfall", - "link": "https://www.standard.co.uk/news/environment/london-river-thames-met-office-port-of-london-authority-hm-coastguard-b1130440.html", - "pubDate": "Fri, 05 Jan 2024 11:29:12 GMT", - "dc:creator": "Michael Howie,Lydia Chantler-Hicks and Will Mata", - "dc:date": "2024-01-05T11:29:12+00:00", - "content": "

Firefighters lead 50 people to safety after canal bursts banks in east London

", - "contentSnippet": "Firefighters lead 50 people to safety after canal bursts banks in east London", - "guid": "b1130440", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-05T11:29:12.000Z" - }, - { - "creator": "Matt Verri", - "date": "2024-01-05T11:29:02+00:00", - "title": "Tottenham vs Burnley: FA Cup prediction, kick-off time, TV, live stream, team news, h2h, odds today", - "link": "https://www.standard.co.uk/sport/football/tottenham-vs-burnley-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-fa-cup-2024-preview-today-b1130027.html", - "pubDate": "Fri, 05 Jan 2024 11:29:02 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2024-01-05T11:29:02+00:00", - "content": "

It is 33 years since Spurs last lifted the famous old trophy

", - "contentSnippet": "It is 33 years since Spurs last lifted the famous old trophy", - "guid": "b1130027", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:29:02.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-05T11:28:46+00:00", - "title": "Tottenham XI vs Burnley: Confirmed team news, predicted lineup, injury latest for FA Cup game today", - "link": "https://www.standard.co.uk/sport/football/tottenham-xi-vs-burnley-confirmed-team-news-predicted-lineup-injury-latest-fa-cup-2024-today-b1130375.html", - "pubDate": "Fri, 05 Jan 2024 11:28:46 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-05T11:28:46+00:00", - "content": "

Key Spurs star may make injury return in all-Premier League third-round tie

", - "contentSnippet": "Key Spurs star may make injury return in all-Premier League third-round tie", - "guid": "b1130375", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:28:46.000Z" - }, - { - "creator": "Josh Payne", - "date": "2024-01-05T11:28:10+00:00", - "title": "Met Police not investigating allegations against Andrew in Epstein files", - "link": "https://www.standard.co.uk/news/uk/virginia-giuffre-bill-clinton-met-police-ghislaine-maxwell-stephen-hawking-b1130529.html", - "pubDate": "Fri, 05 Jan 2024 11:28:10 GMT", - "dc:creator": "Josh Payne", - "dc:date": "2024-01-05T11:28:10+00:00", - "content": "Court documents showed that Virginia Giuffre claimed she was sex-trafficked to the Duke of York.", - "contentSnippet": "Court documents showed that Virginia Giuffre claimed she was sex-trafficked to the Duke of York.", - "guid": "b1130529", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-05T11:28:10.000Z" - }, - { - "creator": "Simon Collings", - "date": "2024-01-05T11:25:40+00:00", - "title": "Jurgen Klopp drops Liverpool team news hint vs Arsenal as injured Dominik Szoboszlai ruled out", - "link": "https://www.standard.co.uk/sport/football/liverpool-fc-team-news-arsenal-fa-cup-klopp-szoboszlai-injury-b1130504.html", - "pubDate": "Fri, 05 Jan 2024 11:25:40 GMT", - "dc:creator": "Simon Collings", - "dc:date": "2024-01-05T11:25:40+00:00", - "content": "

The Reds will be without the midfielder, Wataru Endo and star man Mohamed Salah for the FA Cup tie

", - "contentSnippet": "The Reds will be without the midfielder, Wataru Endo and star man Mohamed Salah for the FA Cup tie", - "guid": "b1130504", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:25:40.000Z" - }, - { - "creator": "Alan Jones", - "date": "2024-01-05T11:19:33+00:00", - "title": "Tube strikes: More than 1 in 5 London office workers set to stay at home during new walkouts ", - "link": "https://www.standard.co.uk/news/london/tube-strikes-london-working-from-home-office-survey-impact-b1130498.html", - "pubDate": "Fri, 05 Jan 2024 11:19:33 GMT", - "dc:creator": "Alan Jones", - "dc:date": "2024-01-05T11:19:33+00:00", - "content": "

Survey of 2,000 workers published ahead of a series of strikes by Tube workers set to disrupt services for this weekend

", - "contentSnippet": "Survey of 2,000 workers published ahead of a series of strikes by Tube workers set to disrupt services for this weekend", - "guid": "b1130498", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-05T11:19:33.000Z" - }, - { - "creator": "Charlotte McLaughlin", - "date": "2024-01-05T11:19:32+00:00", - "title": "Sunak and Starmer congratulate Nick Ferrari on 20 years as LBC breakfast host", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/nick-ferrari-ferrari-lbc-gordon-brown-boris-johnson-b1130524.html", - "pubDate": "Fri, 05 Jan 2024 11:19:32 GMT", - "dc:creator": "Charlotte McLaughlin", - "dc:date": "2024-01-05T11:19:32+00:00", - "content": "Ferrari started on LBC in 2001 before launching his show in 2004.", - "contentSnippet": "Ferrari started on LBC in 2001 before launching his show in 2004.", - "guid": "b1130524", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-05T11:19:32.000Z" - }, - { - "creator": "Dom Smith", - "date": "2024-01-05T11:10:02+00:00", - "title": "Crystal Palace: Matheus Franca the only bright spark in drab FA Cup stalemate with Everton", - "link": "https://www.standard.co.uk/sport/football/crystal-palace-everton-fa-cup-matheus-franca-hodgson-b1130516.html", - "pubDate": "Fri, 05 Jan 2024 11:10:02 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2024-01-05T11:10:02+00:00", - "content": "

The Brazilian showed plenty of desire but could not prevent an unwanted FA Cup replay

", - "contentSnippet": "The Brazilian showed plenty of desire but could not prevent an unwanted FA Cup replay", - "guid": "b1130516", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:10:02.000Z" - }, - { - "creator": "Matthew Cooper", - "date": "2024-01-05T11:09:23+00:00", - "title": "April trial date for 12-year-old boys charged with murder after park stabbing", - "link": "https://www.standard.co.uk/news/crime/wolverhampton-crown-court-west-midlands-west-midlands-police-b1130521.html", - "pubDate": "Fri, 05 Jan 2024 11:09:23 GMT", - "dc:creator": "Matthew Cooper", - "dc:date": "2024-01-05T11:09:23+00:00", - "content": "The youths, who cannot be identified, appeared at Wolverhampton Crown Court by video-link.", - "contentSnippet": "The youths, who cannot be identified, appeared at Wolverhampton Crown Court by video-link.", - "guid": "b1130521", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-05T11:09:23.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-05T11:09:08+00:00", - "title": "Liverpool XI vs Arsenal: Predicted lineup, confirmed team news and injury latest for FA Cup game", - "link": "https://www.standard.co.uk/sport/football/liverpool-fc-xi-vs-arsenal-predicted-lineup-confirmed-team-news-injury-latest-fa-cup-2024-b1130396.html", - "pubDate": "Fri, 05 Jan 2024 11:09:08 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-05T11:09:08+00:00", - "content": "

Dominik Szoboszlai misses heavyweight third-round showdown

", - "contentSnippet": "Dominik Szoboszlai misses heavyweight third-round showdown", - "guid": "b1130396", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T11:09:08.000Z" - }, - { - "creator": "Sabrina Russello", - "date": "2024-01-05T11:04:22+00:00", - "title": "Will an American panto first timer enjoy this very British art form? Oh yes she will!", - "link": "https://www.standard.co.uk/culture/pantomime-american-experience-aladdin-jack-and-beanstalk-clive-rowe-b1128777.html", - "pubDate": "Fri, 05 Jan 2024 11:04:22 GMT", - "dc:creator": "Sabrina Russello", - "dc:date": "2024-01-05T11:04:22+00:00", - "content": "

It turns out there really is nothing like a dame

", - "contentSnippet": "It turns out there really is nothing like a dame", - "guid": "b1128777", - "categories": [ - "Culture" - ], - "isoDate": "2024-01-05T11:04:22.000Z" - }, - { - "creator": "Lizzie Edmonds", - "date": "2024-01-05T10:55:06+00:00", - "title": "Shane MacGowan's widow claims singer has contacted her from beyond the grave ", - "link": "https://www.standard.co.uk/showbiz/shane-macgowan-death-widow-claims-singer-contacted-her-b1130496.html", - "pubDate": "Fri, 05 Jan 2024 10:55:06 GMT", - "dc:creator": "Lizzie Edmonds", - "dc:date": "2024-01-05T10:55:06+00:00", - "content": "

Victoria Mary Clark has said The Pogues frontman has encouraged her to pick up a guitar following his passing

", - "contentSnippet": "Victoria Mary Clark has said The Pogues frontman has encouraged her to pick up a guitar following his passing", - "guid": "b1130496", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-05T10:55:06.000Z" - }, - { - "creator": "Neil Lancefield", - "date": "2024-01-05T10:54:29+00:00", - "title": "Quicker London-Sheffield daily train service plans unveiled", - "link": "https://www.standard.co.uk/news/transport/london-sheffield-train-firstgroup-kings-cross-b1130475.html", - "pubDate": "Fri, 05 Jan 2024 10:54:29 GMT", - "dc:creator": "Neil Lancefield", - "dc:date": "2024-01-05T10:54:29+00:00", - "content": "

Transport company FirstGroup plans to run two daily return trips between King\u2019s Cross station and Sheffield

", - "contentSnippet": "Transport company FirstGroup plans to run two daily return trips between King\u2019s Cross station and Sheffield", - "guid": "b1130475", - "categories": [ - "Transport", - "News" - ], - "isoDate": "2024-01-05T10:54:29.000Z" - }, - { - "creator": "Lisa McLoughlin ", - "date": "2024-01-05T10:52:05+00:00", - "title": "Ruth Langsford addresses This Morning return speculation after Holly Willoughby's exit", - "link": "https://www.standard.co.uk/showbiz/ruth-langsford-this-morning-return-speculation-holly-willoughby-exit-b1130500.html", - "pubDate": "Fri, 05 Jan 2024 10:52:05 GMT", - "dc:creator": "Lisa McLoughlin ", - "dc:date": "2024-01-05T10:52:05+00:00", - "content": "

The presenter helmed This Morning on Fridays alongside husband Eamonn Holmes until 2021

", - "contentSnippet": "The presenter helmed This Morning on Fridays alongside husband Eamonn Holmes until 2021", - "guid": "b1130500", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-05T10:52:05.000Z" - }, - { - "creator": "Stephen Hammond and Fleur Anderson", - "date": "2024-01-05T10:49:27+00:00", - "title": "OPINION - Wimbledon's expansion plan is not a 'win-win,' it is bad for Londoners", - "link": "https://www.standard.co.uk/comment/wimbledon-expansion-golf-course-merton-wandsworth-mps-petition-b1130359.html", - "pubDate": "Fri, 05 Jan 2024 10:49:27 GMT", - "dc:creator": "Stephen Hammond and Fleur Anderson", - "dc:date": "2024-01-05T10:49:27+00:00", - "content": "

Our shared view as local MPs is that the project should not go ahead

", - "contentSnippet": "Our shared view as local MPs is that the project should not go ahead", - "guid": "b1130359", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-05T10:49:27.000Z" - }, - { - "creator": "Simon English", - "date": "2024-01-05T10:45:44+00:00", - "title": "London float flops: Investors have lost nearly \u00a310bn in five years", - "link": "https://www.standard.co.uk/business/london-float-flops-investors-have-lost-nearly-ps10bn-in-five-years-b1130512.html", - "pubDate": "Fri, 05 Jan 2024 10:45:44 GMT", - "dc:creator": "Simon English", - "dc:date": "2024-01-05T10:45:44+00:00", - "content": "

The average loss per pound invested was 28p

", - "contentSnippet": "The average loss per pound invested was 28p", - "guid": "b1130512", - "categories": [ - "Business" - ], - "isoDate": "2024-01-05T10:45:44.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2024-01-05T10:44:47+00:00", - "title": "Chelsea hit by Lesley Ugochukwu injury setback as Andrey Santos eyes chance", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-ugochukwu-injury-andrey-santos-b1130508.html", - "pubDate": "Fri, 05 Jan 2024 10:44:47 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2024-01-05T10:44:47+00:00", - "content": "

Mauricio Pochettino's midfield issues could lead to returning loanee staying put this month

", - "contentSnippet": "Mauricio Pochettino's midfield issues could lead to returning loanee staying put this month", - "guid": "b1130508", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T10:44:47.000Z" - }, - { - "creator": "Anthony France and Matt Watts", - "date": "2024-01-05T10:39:57+00:00", - "title": "Met\u2019s probe into possible war crimes in Israel-Hamas conflict draws further criticism", - "link": "https://www.standard.co.uk/news/crime/metropolitan-police-investigation-war-crimes-israel-gaza-boris-johnson-b1130507.html", - "pubDate": "Fri, 05 Jan 2024 10:39:57 GMT", - "dc:creator": "Anthony France and Matt Watts", - "dc:date": "2024-01-05T10:39:57+00:00", - "content": "

Leading figures from the Jewish community criticise the Met as it defends its investigation

", - "contentSnippet": "Leading figures from the Jewish community criticise the Met as it defends its investigation", - "guid": "b1130507", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-05T10:39:57.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-05T10:39:52+00:00", - "title": "Best brands who offer same day delivery", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/best-brands-doing-same-day-delivery-b942432.html", - "pubDate": "Fri, 05 Jan 2024 10:39:52 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-05T10:39:52+00:00", - "content": "

Get what you need delivered to your door in mere hours

", - "contentSnippet": "Get what you need delivered to your door in mere hours", - "guid": "b942432", - "categories": [ - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-05T10:39:52.000Z" - }, - { - "creator": "Ellie Davis", - "date": "2024-01-05T10:37:52+00:00", - "title": "Best corner and L-shaped sofas for comfort and style", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/furniture/best-corner-and-lshaped-sofas-a3942606.html", - "pubDate": "Fri, 05 Jan 2024 10:37:52 GMT", - "dc:creator": "Ellie Davis", - "dc:date": "2024-01-05T10:37:52+00:00", - "content": "

The search for the perfect family sofa starts here

", - "contentSnippet": "The search for the perfect family sofa starts here", - "guid": "a3942606", - "categories": [ - "Furniture", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-05T10:37:52.000Z" - }, - { - "creator": "Anthony France and Lydia Chantler-Hicks", - "date": "2024-01-05T10:37:02+00:00", - "title": "Harry Pitman: Two teenage boys arrested on suspicion of murdering 16-year-old ", - "link": "https://www.standard.co.uk/news/crime/harry-pitman-arrests-met-police-murder-primrose-hill-new-years-eve-b1130490.html", - "pubDate": "Fri, 05 Jan 2024 10:37:02 GMT", - "dc:creator": "Anthony France and Lydia Chantler-Hicks", - "dc:date": "2024-01-05T10:37:02+00:00", - "content": "

Tottenham Hotspur fans are set to pay tribute to the teenager during Friday night\u2019s FA Cup tie against Burnley

", - "contentSnippet": "Tottenham Hotspur fans are set to pay tribute to the teenager during Friday night\u2019s FA Cup tie against Burnley", - "guid": "b1130490", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-05T10:37:02.000Z" - }, - { - "creator": "Kayleigh Rattle", - "date": "2024-01-05T10:36:41+00:00", - "title": "Best bean-to-cup coffee machines to kickstart your day in style", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/kitchen-appliances/best-beantocup-coffee-machines-b995017.html", - "pubDate": "Fri, 05 Jan 2024 10:36:41 GMT", - "dc:creator": "Kayleigh Rattle", - "dc:date": "2024-01-05T10:36:41+00:00", - "content": "

From minimalist one-click models to complex kit, the best bean-to-cup coffee machines on the market for a game-changing cuppa

", - "contentSnippet": "From minimalist one-click models to complex kit, the best bean-to-cup coffee machines on the market for a game-changing cuppa", - "guid": "b995017", - "categories": [ - "Kitchen Appliances", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-05T10:36:41.000Z" - }, - { - "creator": "Nuray Bulbul", - "date": "2024-01-05T10:29:37+00:00", - "title": "People invited to send their names to the moon as part of new mission", - "link": "https://www.standard.co.uk/news/science/nasa-viper-send-names-space-moon-lunar-rover-b1130486.html", - "pubDate": "Fri, 05 Jan 2024 10:29:37 GMT", - "dc:creator": "Nuray Bulbul", - "dc:date": "2024-01-05T10:29:37+00:00", - "content": "

The campaign allows tens of millions of individuals to send their names into space

", - "contentSnippet": "The campaign allows tens of millions of individuals to send their names into space", - "guid": "b1130486", - "categories": [ - "Science", - "News" - ], - "isoDate": "2024-01-05T10:29:37.000Z" - }, - { - "creator": "Rebecca Black", - "date": "2024-01-05T10:29:16+00:00", - "title": "Alliance Party calls for UK Government to step in over Stormont paralysis", - "link": "https://www.standard.co.uk/news/uk/dup-stormont-sinn-fein-chris-heatonharris-northern-ireland-b1130509.html", - "pubDate": "Fri, 05 Jan 2024 10:29:16 GMT", - "dc:creator": "Rebecca Black", - "dc:date": "2024-01-05T10:29:16+00:00", - "content": "DUP leader Sir Jeffrey Donaldson indicated his party\u2019s talks with ministers will restart \u2018within days\u2019.", - "contentSnippet": "DUP leader Sir Jeffrey Donaldson indicated his party\u2019s talks with ministers will restart \u2018within days\u2019.", - "guid": "b1130509", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-05T10:29:16.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2024-01-05T10:26:12+00:00", - "title": "Jadon Sancho: Manchester United and Dortmund aim to finalise loan deal this weekend", - "link": "https://www.standard.co.uk/sport/football/jadon-sancho-man-utd-dortmund-loan-transfer-talks-latest-b1130497.html", - "pubDate": "Fri, 05 Jan 2024 10:26:12 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2024-01-05T10:26:12+00:00", - "content": "

The winger is heading back to the Bundesliga in a deal which will earn Man United around \u00a33.5million

", - "contentSnippet": "The winger is heading back to the Bundesliga in a deal which will earn Man United around \u00a33.5million", - "guid": "b1130497", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-05T10:26:12.000Z" - }, - { - "creator": "Jordan Reynolds", - "date": "2024-01-05T14:01:02+00:00", - "title": "Met Police officer appears in court and denies sexual offence", - "link": "https://www.standard.co.uk/news/crime/elliot-butler-met-police-rape-charge-court-romford-essex-b1130570.html", - "pubDate": "Fri, 05 Jan 2024 14:01:02 GMT", - "dc:creator": "Jordan Reynolds", - "dc:date": "2024-01-05T14:01:02+00:00", - "content": "

Sergeant Elliot Butler was conditionally bailed to next appear at Southwark Crown Court on March 4.

", - "contentSnippet": "Sergeant Elliot Butler was conditionally bailed to next appear at Southwark Crown Court on March 4.", - "guid": "b1130570", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-05T14:01:02.000Z" - }, - { - "creator": "Sam Hall", - "date": "2024-01-05T13:55:43+00:00", - "title": "Environment Agency: More than 1,000 properties flooded across England", - "link": "https://www.standard.co.uk/news/environment/england-environment-agency-oli-claydon-great-western-railway-southampton-b1130540.html", - "pubDate": "Fri, 05 Jan 2024 13:55:43 GMT", - "dc:creator": "Sam Hall", - "dc:date": "2024-01-05T13:55:43+00:00", - "content": "Hundreds of flood warnings and alerts remained in place on Friday morning.", - "contentSnippet": "Hundreds of flood warnings and alerts remained in place on Friday morning.", - "guid": "b1130540", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-05T13:55:43.000Z" - }, - { - "creator": "Saskia Kemsley and Tania Leslau", - "date": "2024-01-05T14:06:47+00:00", - "title": "Best affordable clothing brands for women that won\u2019t leave you with buyer\u2019s remorse ", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/womens/best-affordable-clothing-brands-b1087282.html", - "pubDate": "Fri, 05 Jan 2024 14:06:47 GMT", - "dc:creator": "Saskia Kemsley and Tania Leslau", - "dc:date": "2024-01-05T14:06:47+00:00", - "content": "

Shop \u2018till you drop

", - "contentSnippet": "Shop \u2018till you drop", - "guid": "b1087282", - "categories": [ - "Women's", - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-05T14:06:47.000Z" - }, - { - "creator": "Jordan King", - "date": "2024-01-05T14:03:51+00:00", - "title": "Captain of sunken party boat in Thames 'too upset to speak' after left with 'no income'", - "link": "https://www.standard.co.uk/news/london/thames-party-boat-sink-sunk-london-weather-temple-flooding-b1130572.html", - "pubDate": "Fri, 05 Jan 2024 14:03:51 GMT", - "dc:creator": "Jordan King", - "dc:date": "2024-01-05T14:03:51+00:00", - "content": "

Jorge Gallardo says he will have to find another job to support his daughter

", - "contentSnippet": "Jorge Gallardo says he will have to find another job to support his daughter", - "guid": "b1130572", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-05T14:03:51.000Z" - }, - { - "creator": "Marc Mayo and Matt Verri", - "date": "2024-01-11T21:17:45+00:00", - "title": "Transfer news LIVE! Arsenal want Zirkzee; Chelsea \u00a352m bid rejected; Man Utd fail in swap deal; Spurs latest", - "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-chelsea-fc-tottenham-man-utd-zirkzee-silva-hjulmand-b1131601.html", - "pubDate": "Thu, 11 Jan 2024 21:17:45 GMT", - "dc:creator": "Marc Mayo and Matt Verri", - "dc:date": "2024-01-11T21:17:45+00:00", - "content": "

Latest updates from the transfer window plus rumours and gossip

", - "contentSnippet": "Latest updates from the transfer window plus rumours and gossip", - "guid": "b1131601", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T21:17:45.000Z" - }, - { - "creator": "Gwyn Wright", - "date": "2024-01-11T21:15:46+00:00", - "title": "Red Sea crisis: Which UK ships have been deployed to the area?", - "link": "https://www.standard.co.uk/news/politics/red-sea-grant-shapps-rishi-sunak-ministry-of-defence-iranian-b1131850.html", - "pubDate": "Thu, 11 Jan 2024 21:15:46 GMT", - "dc:creator": "Gwyn Wright", - "dc:date": "2024-01-11T21:15:46+00:00", - "content": "The Government is considering striking land targets in Yemen in a bid to stop attacks by Iranian-backed Houthi rebels on ships.", - "contentSnippet": "The Government is considering striking land targets in Yemen in a bid to stop attacks by Iranian-backed Houthi rebels on ships.", - "guid": "b1131850", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T21:15:46.000Z" - }, - { - "creator": "Matt Verri", - "date": "2024-01-11T20:56:31+00:00", - "title": "Senegal vs Gambia: AFCON prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/senegal-vs-gambia-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-afcon-2024-preview-b1131837.html", - "pubDate": "Thu, 11 Jan 2024 20:56:31 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2024-01-11T20:56:31+00:00", - "content": "

Sadio Mane and his team-mates are expected to make a strong defence of their AFCON title

", - "contentSnippet": "Sadio Mane and his team-mates are expected to make a strong defence of their AFCON title", - "guid": "b1131837", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T20:56:31.000Z" - }, - { - "creator": "Matt Verri", - "date": "2024-01-11T20:56:18+00:00", - "title": "Real Madrid vs Barcelona: Spanish Super Cup final prediction, kick-off time, TV, live stream, team news, h2h", - "link": "https://www.standard.co.uk/sport/football/real-madrid-vs-barcelona-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-spanish-super-cup-final-2024-preview-b1131845.html", - "pubDate": "Thu, 11 Jan 2024 20:56:18 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2024-01-11T20:56:18+00:00", - "content": "

The two Spanish giants meet in a repeat of last season's Spanish Super Cup final

", - "contentSnippet": "The two Spanish giants meet in a repeat of last season's Spanish Super Cup final", - "guid": "b1131845", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T20:56:18.000Z" - }, - { - "creator": "John Dunne", - "date": "2024-01-11T20:52:14+00:00", - "title": "Skin experts warn children as young as 10 demanding anti-ageing products from parents", - "link": "https://www.standard.co.uk/news/health/skin-anti-ageing-skincare-products-children-uk-dermatologist-b1131818.html", - "pubDate": "Thu, 11 Jan 2024 20:52:14 GMT", - "dc:creator": "John Dunne", - "dc:date": "2024-01-11T20:52:14+00:00", - "content": "

Children are demanding skin products from parents with pressure coming from social media, warn dermatologists

", - "contentSnippet": "Children are demanding skin products from parents with pressure coming from social media, warn dermatologists", - "guid": "b1131818", - "categories": [ - "Health", - "News" - ], - "isoDate": "2024-01-11T20:52:14.000Z" - }, - { - "creator": "Charlotte McLaughlin", - "date": "2024-01-11T20:52:05+00:00", - "title": "Sir Elton John putting piano, jumpsuit and platform boots up for auction", - "link": "https://www.standard.co.uk/news/uk/david-furnish-damien-hirst-atlanta-yamaha-julian-schnabel-b1131804.html", - "pubDate": "Thu, 11 Jan 2024 20:52:05 GMT", - "dc:creator": "Charlotte McLaughlin", - "dc:date": "2024-01-11T20:52:05+00:00", - "content": "The musician, 76, is curating the sale of objects from his former Atlanta home with his husband David Furnish.", - "contentSnippet": "The musician, 76, is curating the sale of objects from his former Atlanta home with his husband David Furnish.", - "guid": "b1131804", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-11T20:52:05.000Z" - }, - { - "creator": "Matt Verri", - "date": "2024-01-11T20:51:47+00:00", - "title": "Eric Dier wishes Tottenham 'great success' in emotional farewell after Bayern Munich move confirmed", - "link": "https://www.standard.co.uk/sport/football/eric-dier-tottenham-fans-bayern-munich-b1131848.html", - "pubDate": "Thu, 11 Jan 2024 20:51:47 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2024-01-11T20:51:47+00:00", - "content": "

Dier arrived at Spurs in the summer of 2014 and made 364 appearances for the club

", - "contentSnippet": "Dier arrived at Spurs in the summer of 2014 and made 364 appearances for the club", - "guid": "b1131848", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T20:51:47.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2024-01-11T20:49:37+00:00", - "title": "PM holding full Cabinet call amid speculation of strike over Red Sea attacks", - "link": "https://www.standard.co.uk/news/politics/grant-shapps-red-sea-david-cameron-keir-starmer-john-healey-b1131841.html", - "pubDate": "Thu, 11 Jan 2024 20:49:37 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2024-01-11T20:49:37+00:00", - "content": "It comes after UK and US naval forces destroyed \u2018multiple attack drones\u2019 deployed by Houthi rebels.", - "contentSnippet": "It comes after UK and US naval forces destroyed \u2018multiple attack drones\u2019 deployed by Houthi rebels.", - "guid": "b1131841", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T20:49:37.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2024-01-11T20:44:48+00:00", - "title": "Armie Hammer and girlfriend Marina Gris split up after secret engagement", - "link": "https://www.standard.co.uk/showbiz/armie-hammer-girlfriend-marina-gris-split-secret-engagement-b1131836.html", - "pubDate": "Thu, 11 Jan 2024 20:44:48 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2024-01-11T20:44:48+00:00", - "content": "

Marina Gris said she was 'grateful' for the relationship, 'but now it's a closed chapter'

", - "contentSnippet": "Marina Gris said she was 'grateful' for the relationship, 'but now it's a closed chapter'", - "guid": "b1131836", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-11T20:44:48.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2024-01-11T20:37:06+00:00", - "title": "Air strikes by US and UK on Houthi rebels appear imminent amid emergency Cabinet meeting", - "link": "https://www.standard.co.uk/news/politics/red-sea-missile-drone-britain-us-iran-houthi-rebels-yemen-commercial-ships-b1131612.html", - "pubDate": "Thu, 11 Jan 2024 20:37:06 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2024-01-11T20:37:06+00:00", - "content": "

Rishi Sunak called a Cabinet meeting on Thursday evening as the US confirmed another attack blamed on Houthi rebels

", - "contentSnippet": "Rishi Sunak called a Cabinet meeting on Thursday evening as the US confirmed another attack blamed on Houthi rebels", - "guid": "b1131612", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T20:37:06.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2024-01-11T20:18:20+00:00", - "title": "Kristen Stewart says Twilight is a gay movie that is \u2018all about oppression\u2019", - "link": "https://www.standard.co.uk/culture/film/kristen-stewart-robert-pattinson-american-variety-cannes-b1131847.html", - "pubDate": "Thu, 11 Jan 2024 20:18:20 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2024-01-11T20:18:20+00:00", - "content": "The American actress played Bella Swan in the Twilight film series.", - "contentSnippet": "The American actress played Bella Swan in the Twilight film series.", - "guid": "b1131847", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2024-01-11T20:18:20.000Z" - }, - { - "creator": "Nilima Marshall", - "date": "2024-01-11T20:15:00+00:00", - "title": "Discovery of gargantuan ring structure \u2018challenges understanding of universe\u2019", - "link": "https://www.standard.co.uk/news/science/scientists-university-of-warwick-b1131846.html", - "pubDate": "Thu, 11 Jan 2024 20:15:00 GMT", - "dc:creator": "Nilima Marshall", - "dc:date": "2024-01-11T20:15:00+00:00", - "content": "The Big Ring is about 1.3 billion light-years in diameter.", - "contentSnippet": "The Big Ring is about 1.3 billion light-years in diameter.", - "guid": "b1131846", - "categories": [ - "Science", - "News" - ], - "isoDate": "2024-01-11T20:15:00.000Z" - }, - { - "creator": "Nina Lloyd", - "date": "2024-01-11T20:01:49+00:00", - "title": "Sunak grants Labour permission to start access talks with civil service", - "link": "https://www.standard.co.uk/news/politics/labour-prime-minister-keir-starmer-cabinet-office-simon-case-b1131843.html", - "pubDate": "Thu, 11 Jan 2024 20:01:49 GMT", - "dc:creator": "Nina Lloyd", - "dc:date": "2024-01-11T20:01:49+00:00", - "content": "The Cabinet Office said the Prime Minister had authorised access talks.", - "contentSnippet": "The Cabinet Office said the Prime Minister had authorised access talks.", - "guid": "b1131843", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T20:01:49.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2024-01-11T20:00:00+00:00", - "title": "Toby Aromolaran: Love Island is my dating app apparently", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/love-island-ovie-soko-itv-georgia-steel-steel-b1131844.html", - "pubDate": "Thu, 11 Jan 2024 20:00:00 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2024-01-11T20:00:00+00:00", - "content": "The semi-professional footballer is now trying his hand at Love Island: All-Stars, which will see past contestants return for another chance at love.", - "contentSnippet": "The semi-professional footballer is now trying his hand at Love Island: All-Stars, which will see past contestants return for another chance at love.", - "guid": "b1131844", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-11T20:00:00.000Z" - }, - { - "creator": "City Staff", - "date": "2024-01-11T19:57:01+00:00", - "title": "FTSE 100 Live: UK GDP in focus after index closes down 1% as US inflation setback dampens rate hopes", - "link": "https://www.standard.co.uk/business/ftse-100-live-tesco-m-s-whitbread-results-sec-approves-bitcoinspot-etfs-savills-reach-asos-b1131590.html", - "pubDate": "Thu, 11 Jan 2024 19:57:01 GMT", - "dc:creator": "City Staff", - "dc:date": "2024-01-11T19:57:01+00:00", - "content": "

", - "contentSnippet": "", - "guid": "b1131590", - "categories": [ - "Business" - ], - "isoDate": "2024-01-11T19:57:01.000Z" - }, - { - "creator": "Matt Verri", - "date": "2024-01-11T19:50:32+00:00", - "title": "Tottenham confirm Eric Dier departure as defender completes Bayern Munich move to reunite with Harry Kane ", - "link": "https://www.standard.co.uk/sport/football/tottenham-eric-dier-bayern-munich-transfer-news-harry-kane-b1131801.html", - "pubDate": "Thu, 11 Jan 2024 19:50:32 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2024-01-11T19:50:32+00:00", - "content": "

The defender would have been out of contract at Tottenham at the end of the season

", - "contentSnippet": "The defender would have been out of contract at Tottenham at the end of the season", - "guid": "b1131801", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T19:50:32.000Z" - }, - { - "creator": "Tristan Kirk", - "date": "2024-01-11T19:34:10+00:00", - "title": "Pedestrian hospitalised after masonry falls from historic Old Bailey court entrance ", - "link": "https://www.standard.co.uk/news/london/pedestrian-injured-masonry-falls-entrance-old-bailey-criminal-court-city-corporation-maintenance-b1131816.html", - "pubDate": "Thu, 11 Jan 2024 19:34:10 GMT", - "dc:creator": "Tristan Kirk", - "dc:date": "2024-01-11T19:34:10+00:00", - "content": "

Incident comes amid 'not insignificant\u201d maintenance backlog for historic buildings in the City

", - "contentSnippet": "Incident comes amid 'not insignificant\u201d maintenance backlog for historic buildings in the City", - "guid": "b1131816", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-11T19:34:10.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-11T19:30:10+00:00", - "title": "Radu Dragusin: Why Tottenham signed 'younger Virgil van Dijk' in perfect transfer fit", - "link": "https://www.standard.co.uk/sport/football/radu-dragusin-tottenham-transfer-van-dijk-b1131815.html", - "pubDate": "Thu, 11 Jan 2024 19:30:10 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-11T19:30:10+00:00", - "content": "

Spurs' latest recruit models his game on the Liverpool captain and arrives with true star potential

", - "contentSnippet": "Spurs' latest recruit models his game on the Liverpool captain and arrives with true star potential", - "guid": "b1131815", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T19:30:10.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2024-01-11T19:15:40+00:00", - "title": "Andrew Scott says we should \u2018get rid of the expression openly gay\u2019", - "link": "https://www.standard.co.uk/culture/film/andrew-scott-robert-downey-jr-mark-ruffalo-royal-albert-hall-bbc-b1131842.html", - "pubDate": "Thu, 11 Jan 2024 19:15:40 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2024-01-11T19:15:40+00:00", - "content": "The Irish actor also spoke on the importance of representation in the film industry.", - "contentSnippet": "The Irish actor also spoke on the importance of representation in the film industry.", - "guid": "b1131842", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2024-01-11T19:15:40.000Z" - }, - { - "creator": "Gwyn Wright", - "date": "2024-01-11T19:08:59+00:00", - "title": "Murder charge following discovery of body in east London car park", - "link": "https://www.standard.co.uk/news/uk/london-southampton-stratford-centre-newham-hampshire-police-b1131840.html", - "pubDate": "Thu, 11 Jan 2024 19:08:59 GMT", - "dc:creator": "Gwyn Wright", - "dc:date": "2024-01-11T19:08:59+00:00", - "content": "Vasile Gorghescu, from Southampton, was arrested on Wednesday and charged with murder on Thursday.", - "contentSnippet": "Vasile Gorghescu, from Southampton, was arrested on Wednesday and charged with murder on Thursday.", - "guid": "b1131840", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-11T19:08:59.000Z" - }, - { - "creator": "John Dunne", - "date": "2024-01-11T19:05:35+00:00", - "title": "Man charged with murder after body discovered in car at Stratford shopping centre", - "link": "https://www.standard.co.uk/news/crime/stratford-shopping-centre-murder-charge-car-park-man-killed-b1131838.html", - "pubDate": "Thu, 11 Jan 2024 19:05:35 GMT", - "dc:creator": "John Dunne", - "dc:date": "2024-01-11T19:05:35+00:00", - "content": "

Vasile Gorghescu, 41, has been charged with killing a man whose body was found in a vehicle

", - "contentSnippet": "Vasile Gorghescu, 41, has been charged with killing a man whose body was found in a vehicle", - "guid": "b1131838", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-11T19:05:35.000Z" - }, - { - "creator": "Melanie McDonagh", - "date": "2024-01-11T19:03:21+00:00", - "title": "OPINION - Post Office scandal: cash for convictions is by far the worst revelation yet", - "link": "https://www.standard.co.uk/comment/post-office-scandal-mr-bates-convictions-bonus-b1131729.html", - "pubDate": "Thu, 11 Jan 2024 19:03:21 GMT", - "dc:creator": "Melanie McDonagh", - "dc:date": "2024-01-11T19:03:21+00:00", - "content": "

Query: which element of the great Post Office Horizon scandal is the most outrageous? Your call. Was it the way that the Post Office bosses unquestioningly put their faith in the infallibility of technology over the integrity of some 900 people of previously good character? Was it the way ministers \u2014 Ed Davey, say \u2014 put his trust in the Post Office\u2019s sovereign right to run its own affairs, over the complaints of people like Alan Bates? Was it the way the Post Office was \u2014 who knew? \u2014 effectively authorised to run its own criminal investigation? Was it the implacability of the system in the face of the protests of hundreds of bewildered sub-postmasters and mistresses?

", - "contentSnippet": "Query: which element of the great Post Office Horizon scandal is the most outrageous? Your call. Was it the way that the Post Office bosses unquestioningly put their faith in the infallibility of technology over the integrity of some 900 people of previously good character? Was it the way ministers \u2014 Ed Davey, say \u2014 put his trust in the Post Office\u2019s sovereign right to run its own affairs, over the complaints of people like Alan Bates? Was it the way the Post Office was \u2014 who knew? \u2014 effectively authorised to run its own criminal investigation? Was it the implacability of the system in the face of the protests of hundreds of bewildered sub-postmasters and mistresses?", - "guid": "b1131729", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-11T19:03:21.000Z" - }, - { - "creator": "George Flood", - "date": "2024-01-11T19:01:09+00:00", - "title": "Tottenham confirm Radu Dragusin squad number after transfer completed", - "link": "https://www.standard.co.uk/sport/football/tottenham-radu-dragusin-squad-number-b1131826.html", - "pubDate": "Thu, 11 Jan 2024 19:01:09 GMT", - "dc:creator": "George Flood", - "dc:date": "2024-01-11T19:01:09+00:00", - "content": "

Spurs hand second January signing a jersey vacated in the summer window

", - "contentSnippet": "Spurs hand second January signing a jersey vacated in the summer window", - "guid": "b1131826", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T19:01:09.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2024-01-11T19:00:48+00:00", - "title": "Tottenham sign Radu Dragusin for \u00a326m in huge transfer boost to Ange Postecoglou", - "link": "https://www.standard.co.uk/sport/football/tottenham-sign-radu-dragusin-b1131467.html", - "pubDate": "Thu, 11 Jan 2024 19:00:48 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2024-01-11T19:00:48+00:00", - "content": "

Spurs held off competition from Bayern to get their man

", - "contentSnippet": "Spurs held off competition from Bayern to get their man", - "guid": "b1131467", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T19:00:48.000Z" - }, - { - "creator": "By Grinne N. Aodha", - "date": "2024-01-11T18:57:29+00:00", - "title": "US TV host Conan O\u2019Brien traces Irish roots to Co Limerick village", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/ireland-massachusetts-david-letterman-nbc-b1131839.html", - "pubDate": "Thu, 11 Jan 2024 18:57:29 GMT", - "dc:creator": "By Grinne N. Aodha", - "dc:date": "2024-01-11T18:57:29+00:00", - "content": "The well-known TV personality and comedian has been posting to social media about his travels in Ireland.", - "contentSnippet": "The well-known TV personality and comedian has been posting to social media about his travels in Ireland.", - "guid": "b1131839", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-11T18:57:29.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2024-01-11T18:49:34+00:00", - "title": "Kate Garraway reveals caring advice daughter gave after husband Derek Draper's death", - "link": "https://www.standard.co.uk/showbiz/kate-garraway-update-husband-derek-draker-death-good-morning-britain-b1131832.html", - "pubDate": "Thu, 11 Jan 2024 18:49:34 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2024-01-11T18:49:34+00:00", - "content": "

The Good Morning Britain host also thanked fans for their 'extraordinary' support

", - "contentSnippet": "The Good Morning Britain host also thanked fans for their 'extraordinary' support", - "guid": "b1131832", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-11T18:49:34.000Z" - }, - { - "creator": "Ellie Ng", - "date": "2024-01-11T18:44:06+00:00", - "title": "Subpostmistresses accuse Post Office investigator of ill treatment \u2013 inquiry", - "link": "https://www.standard.co.uk/news/politics/post-office-newcastle-banbury-liverpool-london-b1131834.html", - "pubDate": "Thu, 11 Jan 2024 18:44:06 GMT", - "dc:creator": "Ellie Ng", - "dc:date": "2024-01-11T18:44:06+00:00", - "content": "The investigator in question, Stephen Bradshaw, denied acting in any way but professionally throughout the probes he conducted.", - "contentSnippet": "The investigator in question, Stephen Bradshaw, denied acting in any way but professionally throughout the probes he conducted.", - "guid": "b1131834", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T18:44:06.000Z" - }, - { - "creator": "Noah Vickers", - "date": "2024-01-11T18:40:07+00:00", - "title": "Almost 100 football-related hate crimes in London recorded in a year", - "link": "https://www.standard.co.uk/news/crime/football-hate-crimes-london-discrimination-unmesh-desai-kick-it-out-racism-b1131822.html", - "pubDate": "Thu, 11 Jan 2024 18:40:07 GMT", - "dc:creator": "Noah Vickers", - "dc:date": "2024-01-11T18:40:07+00:00", - "content": "

Hate crimes threaten to 'turn the beautiful game ugly', a London politician has warned

", - "contentSnippet": "Hate crimes threaten to 'turn the beautiful game ugly', a London politician has warned", - "guid": "b1131822", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-11T18:40:07.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-11T18:34:01+00:00", - "title": "Tottenham hope Genoa loan ends \u00a320m Djed Spence nightmare", - "link": "https://www.standard.co.uk/sport/football/djed-spence-tottenham-genoa-loan-transfer-news-b1131428.html", - "pubDate": "Thu, 11 Jan 2024 18:34:01 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-11T18:34:01+00:00", - "content": "

Questions over young defender's professionalism abound as he departs for Italy in deal to sign Radu Dragusin

", - "contentSnippet": "Questions over young defender's professionalism abound as he departs for Italy in deal to sign Radu Dragusin", - "guid": "b1131428", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T18:34:01.000Z" - }, - { - "creator": "Tom Davidson and Matt Watts", - "date": "2024-01-11T18:24:12+00:00", - "title": "Sven-G\u00f6ran Eriksson: Former England manager 'told he was dying from cancer after suffering strokes' ", - "link": "https://www.standard.co.uk/news/world/sven-goran-eriksson-england-manager-cancer-sweden-b1131604.html", - "pubDate": "Thu, 11 Jan 2024 18:24:12 GMT", - "dc:creator": "Tom Davidson and Matt Watts", - "dc:date": "2024-01-11T18:24:12+00:00", - "content": "

Eriksson managed the England national team between 2001 and 2006 after enjoying significant success in Europe

", - "contentSnippet": "Eriksson managed the England national team between 2001 and 2006 after enjoying significant success in Europe", - "guid": "b1131604", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-11T18:24:12.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2024-01-11T18:18:25+00:00", - "title": "Mark Ruffalo reveals he told Poor Things director he was \u2018not right\u2019 for film", - "link": "https://www.standard.co.uk/culture/film/mark-ruffalo-andrew-scott-emma-stone-willem-dafoe-american-b1131835.html", - "pubDate": "Thu, 11 Jan 2024 18:18:25 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2024-01-11T18:18:25+00:00", - "content": "The American actor plays Duncan Wedderburn in the dark comic fantasy, which also stars Emma Stone and Willem Dafoe.", - "contentSnippet": "The American actor plays Duncan Wedderburn in the dark comic fantasy, which also stars Emma Stone and Willem Dafoe.", - "guid": "b1131835", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2024-01-11T18:18:25.000Z" - }, - { - "creator": "Katie Dickinson", - "date": "2024-01-11T18:17:20+00:00", - "title": "Prince of Wales surprises Rob Burrow and Kevin Sinfield with their CBEs", - "link": "https://www.standard.co.uk/news/uk/prince-william-wales-kevin-sinfield-rob-burrow-cbe-rugby-league-motor-neurone-disease-b1131789.html", - "pubDate": "Thu, 11 Jan 2024 18:17:20 GMT", - "dc:creator": "Katie Dickinson", - "dc:date": "2024-01-11T18:17:20+00:00", - "content": "William paid tribute to the pair\u2019s \u2018phenomenal\u2019 efforts in raising funds and awareness for motor neurone disease", - "contentSnippet": "William paid tribute to the pair\u2019s \u2018phenomenal\u2019 efforts in raising funds and awareness for motor neurone disease", - "guid": "b1131789", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-11T18:17:20.000Z" - }, - { - "creator": "Jacob Phillips", - "date": "2024-01-11T18:15:03+00:00", - "title": "More than 370,000 appointments in London cancelled due to NHS strikes", - "link": "https://www.standard.co.uk/news/health/nhs-england-london-strikes-appointments-cancelled-junior-doctors-strike-b1131823.html", - "pubDate": "Thu, 11 Jan 2024 18:15:03 GMT", - "dc:creator": "Jacob Phillips", - "dc:date": "2024-01-11T18:15:03+00:00", - "content": "

Nearly 37,000 appointments were rescheduled in the capital this week following the junior doctors' strike

", - "contentSnippet": "Nearly 37,000 appointments were rescheduled in the capital this week following the junior doctors' strike", - "guid": "b1131823", - "categories": [ - "Health", - "News" - ], - "isoDate": "2024-01-11T18:15:03.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-11T18:03:59+00:00", - "title": "Best thermos flasks of 2024 for keeping your food and drinks hot", - "link": "https://www.standard.co.uk/shopping/esbest/food-drink/tea-coffee/gadgets/best-thermos-insulated-travel-flasks-a4515341.html", - "pubDate": "Thu, 11 Jan 2024 18:03:59 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-11T18:03:59+00:00", - "content": "

Whether you\u2019re camping or want to keep your commute coffee warm, don't head out without this essential

", - "contentSnippet": "Whether you\u2019re camping or want to keep your commute coffee warm, don't head out without this essential", - "guid": "a4515341", - "categories": [ - "Gadgets", - "Tea and coffee", - "Food & Drink", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T18:03:59.000Z" - }, - { - "creator": "Anthony France", - "date": "2024-01-11T18:03:30+00:00", - "title": "Shoplifting epidemic revealed to be costing London \u00a39.2million a month ", - "link": "https://www.standard.co.uk/news/crime/shoplifting-london-shops-crime-cost-met-police-mark-rowley-b1131683.html", - "pubDate": "Thu, 11 Jan 2024 18:03:30 GMT", - "dc:creator": "Anthony France", - "dc:date": "2024-01-11T18:03:30+00:00", - "content": "

New figures show a 48% spike in offences and one Co-op was looted three times in one day

", - "contentSnippet": "New figures show a 48% spike in offences and one Co-op was looted three times in one day", - "guid": "b1131683", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-11T18:03:30.000Z" - }, - { - "creator": "Josh Payne", - "date": "2024-01-11T18:02:59+00:00", - "title": "Investigator challenged lawyers as subpostmistress brought Horizon into question", - "link": "https://www.standard.co.uk/news/politics/horizon-post-office-blake-b1131833.html", - "pubDate": "Thu, 11 Jan 2024 18:02:59 GMT", - "dc:creator": "Josh Payne", - "dc:date": "2024-01-11T18:02:59+00:00", - "content": "Stephen Bradshaw denied he was \u2018proud\u2019 of ensuring no credence was given to the campaign for justice by former subpostmasters.", - "contentSnippet": "Stephen Bradshaw denied he was \u2018proud\u2019 of ensuring no credence was given to the campaign for justice by former subpostmasters.", - "guid": "b1131833", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T18:02:59.000Z" - }, - { - "creator": "Sarah Ward", - "date": "2024-01-11T18:02:08+00:00", - "title": "Emotional prison officer recalls breaking rules for inmate who killed herself", - "link": "https://www.standard.co.uk/news/crime/falkirk-linda-glasgow-university-intel-scottish-prison-service-b1131830.html", - "pubDate": "Thu, 11 Jan 2024 18:02:08 GMT", - "dc:creator": "Sarah Ward", - "dc:date": "2024-01-11T18:02:08+00:00", - "content": "Katie Allan took her own life in a young offenders institution aged 21.", - "contentSnippet": "Katie Allan took her own life in a young offenders institution aged 21.", - "guid": "b1131830", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-11T18:02:08.000Z" - }, - { - "creator": "Martha Gill", - "date": "2024-01-11T18:00:42+00:00", - "title": "OPINION - London's vaccination rates are terrible and measles is on the rise \u2014 it's time to act", - "link": "https://www.standard.co.uk/comment/measles-london-mmr-andrew-wakefield-autism-vaccination-rates-b1131749.html", - "pubDate": "Thu, 11 Jan 2024 18:00:42 GMT", - "dc:creator": "Martha Gill", - "dc:date": "2024-01-11T18:00:42+00:00", - "content": "

Seven years ago the World Health Organisation declared that measles was \u201celiminated\u201d from Britain. This was an approximation, of course \u2014 it meant jumpy public health authorities were able to catch the disease in time when it snuck in at airports or harbours. This seems like a tricky thing to do \u2014 measles is highly contagious \u2014 but it is just about possible when 95 per cent of the population is vaccinated.

", - "contentSnippet": "Seven years ago the World Health Organisation declared that measles was \u201celiminated\u201d from Britain. This was an approximation, of course \u2014 it meant jumpy public health authorities were able to catch the disease in time when it snuck in at airports or harbours. This seems like a tricky thing to do \u2014 measles is highly contagious \u2014 but it is just about possible when 95 per cent of the population is vaccinated.", - "guid": "b1131749", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-11T18:00:42.000Z" - }, - { - "creator": "Gwyn Wright", - "date": "2024-01-11T18:00:24+00:00", - "title": "British lawyer will represent Israel at UN court against genocide claims", - "link": "https://www.standard.co.uk/news/politics/israel-international-court-of-justice-british-the-hague-uk-supreme-court-b1131831.html", - "pubDate": "Thu, 11 Jan 2024 18:00:24 GMT", - "dc:creator": "Gwyn Wright", - "dc:date": "2024-01-11T18:00:24+00:00", - "content": "Professor Malcolm Shaw KC will represent the country in The Hague.", - "contentSnippet": "Professor Malcolm Shaw KC will represent the country in The Hague.", - "guid": "b1131831", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T18:00:24.000Z" - }, - { - "creator": "India Block and India Block", - "date": "2024-01-11T18:00:00+00:00", - "title": "Fantasy fin de si\u00e8cle French B&B in the Belle \u00c9poque style on sale for \u00a31.4 million", - "link": "https://www.standard.co.uk/homesandproperty/luxury/france-villa-1900s-for-sale-loire-valley-b1131039.html", - "pubDate": "Thu, 11 Jan 2024 18:00:00 GMT", - "dc:creator": "India Block and India Block", - "dc:date": "2024-01-11T18:00:00+00:00", - "content": "

This recently renovated villa from the 1900s features a unique mash-up of architectural styles and themed bedrooms

", - "contentSnippet": "This recently renovated villa from the 1900s features a unique mash-up of architectural styles and themed bedrooms", - "guid": "b1131039", - "categories": [ - "Luxury", - "Homes & Property" - ], - "isoDate": "2024-01-11T18:00:00.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2024-01-11T17:59:34+00:00", - "title": "Anger surfaces as US actors' union deal allows for AI voice replicas in games", - "link": "https://www.standard.co.uk/culture/gaming/us-actors-union-deal-ai-voice-replicas-games-b1131795.html", - "pubDate": "Thu, 11 Jan 2024 17:59:34 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2024-01-11T17:59:34+00:00", - "content": "

Video game voice actors are incensed at the move, which they claim puts their jobs at risk

", - "contentSnippet": "Video game voice actors are incensed at the move, which they claim puts their jobs at risk", - "guid": "b1131795", - "categories": [ - "Gaming", - "Culture" - ], - "isoDate": "2024-01-11T17:59:34.000Z" - }, - { - "creator": "Tristan Kirk", - "date": "2024-01-11T17:53:23+00:00", - "title": "Post Office investigator denies acting like 'Mafia gangster' with subpostmaster", - "link": "https://www.standard.co.uk/news/uk/post-office-inquiry-subpostmasters-conviction-horizon-it-fujitsu-b1131665.html", - "pubDate": "Thu, 11 Jan 2024 17:53:23 GMT", - "dc:creator": "Tristan Kirk", - "dc:date": "2024-01-11T17:53:23+00:00", - "content": "

Stephen Bradshaw was involved in the pursuit of nine Post Office branch managers, including Lisa Brennan who was wrongly accused of stealing \u00a33,000 in 2003

", - "contentSnippet": "Stephen Bradshaw was involved in the pursuit of nine Post Office branch managers, including Lisa Brennan who was wrongly accused of stealing \u00a33,000 in 2003", - "guid": "b1131665", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-11T17:53:23.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2024-01-11T17:51:49+00:00", - "title": "Best ski clothing brands to shop for stellar slope style", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-ski-clothing-brands-b1124805.html", - "pubDate": "Thu, 11 Jan 2024 17:51:49 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2024-01-11T17:51:49+00:00", - "content": "

Powder-proof pieces from jackets to fleeces

", - "contentSnippet": "Powder-proof pieces from jackets to fleeces", - "guid": "b1124805", - "categories": [ - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:51:49.000Z" - }, - { - "creator": "Alex Young", - "date": "2024-01-11T17:50:22+00:00", - "title": "FA Cup TV picks confirmed: Tottenham vs Man City on Friday night in fourth round", - "link": "https://www.standard.co.uk/sport/football/fa-cup-tv-picks-confirmed-tottenham-vs-man-city-b1131828.html", - "pubDate": "Thu, 11 Jan 2024 17:50:22 GMT", - "dc:creator": "Alex Young", - "dc:date": "2024-01-11T17:50:22+00:00", - "content": "

It is set to be a busy Friday night in London

", - "contentSnippet": "It is set to be a busy Friday night in London", - "guid": "b1131828", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T17:50:22.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-11T17:48:14+00:00", - "title": "Best electric heaters for large rooms that are efficient and effective", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-electric-heaters-large-rooms-b1118075.html", - "pubDate": "Thu, 11 Jan 2024 17:48:14 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-11T17:48:14+00:00", - "content": "

Can't hear yourself think over the chatter of your teeth? Time to call in a winter warmer

", - "contentSnippet": "Can't hear yourself think over the chatter of your teeth? Time to call in a winter warmer", - "guid": "b1118075", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:48:14.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-11T17:47:25+00:00", - "title": "Best electric heaters: The best electric radiators, fan heaters, convection and halogen lamps in the UK", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/best-electric-heaters-a3916831.html", - "pubDate": "Thu, 11 Jan 2024 17:47:25 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-11T17:47:25+00:00", - "content": "

Stay warm and cosy this winter with a compact personal heater for the home or office

", - "contentSnippet": "Stay warm and cosy this winter with a compact personal heater for the home or office", - "guid": "a3916831", - "categories": [ - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:47:25.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2024-01-11T17:44:32+00:00", - "title": "Best long hot water bottles that promise supremely snug warmth", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-long-hot-water-bottles-b1131634.html", - "pubDate": "Thu, 11 Jan 2024 17:44:32 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2024-01-11T17:44:32+00:00", - "content": "

Enjoy oodles of warmth with a heated noodle

", - "contentSnippet": "Enjoy oodles of warmth with a heated noodle", - "guid": "b1131634", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:44:32.000Z" - }, - { - "creator": "Craig Paton", - "date": "2024-01-11T17:43:38+00:00", - "title": "Lord Advocate to face MSPs over Horizon scandal", - "link": "https://www.standard.co.uk/news/politics/humza-yousaf-douglas-ross-post-office-crown-office-holyrood-b1131787.html", - "pubDate": "Thu, 11 Jan 2024 17:43:38 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2024-01-11T17:43:38+00:00", - "content": "Confirmation came after calls were made for Dorothy Bain KC to clarify when the Crown knew about the flawed Post Office IT system.", - "contentSnippet": "Confirmation came after calls were made for Dorothy Bain KC to clarify when the Crown knew about the flawed Post Office IT system.", - "guid": "b1131787", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T17:43:38.000Z" - }, - { - "creator": "Ben Hatton", - "date": "2024-01-11T17:42:11+00:00", - "title": "Commons backs British Jewish History Month proposal", - "link": "https://www.standard.co.uk/news/politics/british-house-of-commons-jewish-commons-nickie-aiken-b1131827.html", - "pubDate": "Thu, 11 Jan 2024 17:42:11 GMT", - "dc:creator": "Ben Hatton", - "dc:date": "2024-01-11T17:42:11+00:00", - "content": "A minister praised the \u2018brilliant idea\u2019.", - "contentSnippet": "A minister praised the \u2018brilliant idea\u2019.", - "guid": "b1131827", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T17:42:11.000Z" - }, - { - "creator": "Evening Standard Comment", - "date": "2024-01-11T17:41:13+00:00", - "title": "OPINION - The Standard View: The shameful rise in London shoplifting", - "link": "https://www.standard.co.uk/comment/rise-london-shoplifting-numbers-incidents-b1131779.html", - "pubDate": "Thu, 11 Jan 2024 17:41:13 GMT", - "dc:creator": "Evening Standard Comment", - "dc:date": "2024-01-11T17:41:13+00:00", - "content": "

Today this paper reveals that shoplifting offences in London have risen by almost half \u2014 48 per cent \u2014 in the past year. But the alarming reality is that it\u2019s not even the full picture. There were 55,860 shoplifting offences recorded across London last year, nearly double the 25\u2009per cent rise nationally. But the police only bother to investigate offences worth \u00a3200 or more. So, given that 3,462 of the London crimes were solved (just six per cent) we can assume that far more offences were committed with complete impunity.

", - "contentSnippet": "Today this paper reveals that shoplifting offences in London have risen by almost half \u2014 48 per cent \u2014 in the past year. But the alarming reality is that it\u2019s not even the full picture. There were 55,860 shoplifting offences recorded across London last year, nearly double the 25\u2009per cent rise nationally. But the police only bother to investigate offences worth \u00a3200 or more. So, given that 3,462 of the London crimes were solved (just six per cent) we can assume that far more offences were committed with complete impunity.", - "guid": "b1131779", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-11T17:41:13.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2024-01-11T17:41:11+00:00", - "title": "Nicola Roberts hails Giovanni Pernice 'great teacher' amid Amanda Abbington Strictly feud", - "link": "https://www.standard.co.uk/showbiz/nicola-roberts-talks-strictly-come-dancing-giovanni-pernice-experience-amanda-abbington-feud-b1131794.html", - "pubDate": "Thu, 11 Jan 2024 17:41:11 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2024-01-11T17:41:11+00:00", - "content": "

The Girls Aloud singer was paired with the professional dancer for the 2022 Christmas special

", - "contentSnippet": "The Girls Aloud singer was paired with the professional dancer for the 2022 Christmas special", - "guid": "b1131794", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-11T17:41:11.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-11T17:38:55+00:00", - "title": "FTSE closes down as retail and bank stocks struggle", - "link": "https://www.standard.co.uk/business/business-news/ftse-closes-down-as-retail-and-bank-stocks-struggle-b1131825.html", - "pubDate": "Thu, 11 Jan 2024 17:38:55 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-11T17:38:55+00:00", - "content": "The FTSE 100 fell 75.17 points, or 0.98% to end the day at 7576.59.", - "contentSnippet": "The FTSE 100 fell 75.17 points, or 0.98% to end the day at 7576.59.", - "guid": "b1131825", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-11T17:38:55.000Z" - }, - { - "creator": "Sophie Wingate", - "date": "2024-01-11T17:38:50+00:00", - "title": "Government splashes \u00a327,000 on topping up its fine wine cellar during pandemic", - "link": "https://www.standard.co.uk/news/politics/government-bordeaux-andrew-mitchell-emily-thornberry-foreign-office-b1131817.html", - "pubDate": "Thu, 11 Jan 2024 17:38:50 GMT", - "dc:creator": "Sophie Wingate", - "dc:date": "2024-01-11T17:38:50+00:00", - "content": "More than 500 bottles of red Bordeaux wines were bought at the height of the Covid crisis.", - "contentSnippet": "More than 500 bottles of red Bordeaux wines were bought at the height of the Covid crisis.", - "guid": "b1131817", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T17:38:50.000Z" - }, - { - "creator": "Jordan King", - "date": "2024-01-11T17:35:59+00:00", - "title": "Iran claims it seized oil tanker 'over theft of oil by US'", - "link": "https://www.standard.co.uk/news/world/iran-gulf-of-oman-suez-rajan-st-nikolas-b1131790.html", - "pubDate": "Thu, 11 Jan 2024 17:35:59 GMT", - "dc:creator": "Jordan King", - "dc:date": "2024-01-11T17:35:59+00:00", - "content": "

The St Nikolas was previously seized by Washington in a sanctions enforcemnet operation

", - "contentSnippet": "The St Nikolas was previously seized by Washington in a sanctions enforcemnet operation", - "guid": "b1131790", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-11T17:35:59.000Z" - }, - { - "creator": "Tamara Davison", - "date": "2024-01-11T17:34:51+00:00", - "title": "How to restrict Snapchat's AI chatbot", - "link": "https://www.standard.co.uk/news/tech/snapchat-my-ai-chatbot-how-restrict-b1131780.html", - "pubDate": "Thu, 11 Jan 2024 17:34:51 GMT", - "dc:creator": "Tamara Davison", - "dc:date": "2024-01-11T17:34:51+00:00", - "content": "

Parents can now switch off My AI on their teens' Snapchat profile

", - "contentSnippet": "Parents can now switch off My AI on their teens' Snapchat profile", - "guid": "b1131780", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2024-01-11T17:34:51.000Z" - }, - { - "creator": "Rebecca Black", - "date": "2024-01-11T17:34:40+00:00", - "title": "Northern Ireland tourism at risk from electronic travel scheme \u2013 civil servant", - "link": "https://www.standard.co.uk/news/uk/eta-northern-ireland-tourism-ireland-government-home-office-b1131744.html", - "pubDate": "Thu, 11 Jan 2024 17:34:40 GMT", - "dc:creator": "Rebecca Black", - "dc:date": "2024-01-11T17:34:40+00:00", - "content": "Ian Snowden, of Northern Ireland\u2019s Department for the Economy, sounded the warning at a tourism event on Thursday.", - "contentSnippet": "Ian Snowden, of Northern Ireland\u2019s Department for the Economy, sounded the warning at a tourism event on Thursday.", - "guid": "b1131744", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-11T17:34:40.000Z" - }, - { - "creator": "Claire Hayhurst", - "date": "2024-01-11T17:34:10+00:00", - "title": "Teenager was crying after allegedly pushing boy who drowned in river \u2013 inquest", - "link": "https://www.standard.co.uk/news/crime/pontypridd-chris-emergency-services-b1131824.html", - "pubDate": "Thu, 11 Jan 2024 17:34:10 GMT", - "dc:creator": "Claire Hayhurst", - "dc:date": "2024-01-11T17:34:10+00:00", - "content": "Christopher Kapessa began panicking after entering the River Cynon in July 2019.", - "contentSnippet": "Christopher Kapessa began panicking after entering the River Cynon in July 2019.", - "guid": "b1131824", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-11T17:34:10.000Z" - }, - { - "creator": "Cillian Sherlock", - "date": "2024-01-11T17:30:17+00:00", - "title": "Irish lawyer for South Africa accuses Israel of genocide in Gaza at UN court", - "link": "https://www.standard.co.uk/news/politics/israel-south-africa-gaza-international-court-of-justice-the-hague-b1131781.html", - "pubDate": "Thu, 11 Jan 2024 17:30:17 GMT", - "dc:creator": "Cillian Sherlock", - "dc:date": "2024-01-11T17:30:17+00:00", - "content": "Blinne Ni Ghralaigh said that there was a need for urgent provisional measures to order the Israeli military to halt its operations in Gaza.", - "contentSnippet": "Blinne Ni Ghralaigh said that there was a need for urgent provisional measures to order the Israeli military to halt its operations in Gaza.", - "guid": "b1131781", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T17:30:17.000Z" - }, - { - "creator": "John Dunne", - "date": "2024-01-11T17:30:08+00:00", - "title": "Donald Trump in court for civil fraud trial's closing arguments after judge receives 'bomb threat'", - "link": "https://www.standard.co.uk/news/world/donald-trump-court-trial-new-york-fraud-judge-bomb-threat-b1131786.html", - "pubDate": "Thu, 11 Jan 2024 17:30:08 GMT", - "dc:creator": "John Dunne", - "dc:date": "2024-01-11T17:30:08+00:00", - "content": "

The judge had prevented the former president giving his own closing speech

", - "contentSnippet": "The judge had prevented the former president giving his own closing speech", - "guid": "b1131786", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-11T17:30:08.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-11T17:29:23+00:00", - "title": "Best blanket hoodies to keep you warm and cosy this winter", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-blanket-hoodies-oversized-warm-b1039295.html", - "pubDate": "Thu, 11 Jan 2024 17:29:23 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-11T17:29:23+00:00", - "content": "

Welcome to the comfort zone

", - "contentSnippet": "Welcome to the comfort zone", - "guid": "b1039295", - "categories": [ - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:29:23.000Z" - }, - { - "creator": "Dom Smith", - "date": "2024-01-11T17:29:19+00:00", - "title": "Yunus Emre Konak: How Brentford aim to help Turkish wonderkid fulfil huge potential", - "link": "https://www.standard.co.uk/sport/football/brentford-fc-yunus-emre-konak-transfer-b1131819.html", - "pubDate": "Thu, 11 Jan 2024 17:29:19 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2024-01-11T17:29:19+00:00", - "content": "

The 18-year-old was being tracked by a host of European sides and the subject of a failed late bid

", - "contentSnippet": "The 18-year-old was being tracked by a host of European sides and the subject of a failed late bid", - "guid": "b1131819", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T17:29:19.000Z" - }, - { - "creator": "Alex Young", - "date": "2024-01-11T17:28:51+00:00", - "title": "Africa Cup of Nations 2023: Fixtures, schedule, start date, groups, and how to watch Afcon on TV", - "link": "https://www.standard.co.uk/sport/football/africa-cup-of-nations-2023-2024-fixtures-schedule-start-groups-how-to-watch-afcon-live-tv-channel-stream-b1131730.html", - "pubDate": "Thu, 11 Jan 2024 17:28:51 GMT", - "dc:creator": "Alex Young", - "dc:date": "2024-01-11T17:28:51+00:00", - "content": "

The continent's best face off across the Ivory Coast for four weeks

", - "contentSnippet": "The continent's best face off across the Ivory Coast for four weeks", - "guid": "b1131730", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T17:28:51.000Z" - }, - { - "creator": "Rachael Davies", - "date": "2024-01-11T17:28:18+00:00", - "title": "Snack lover finds 'world's longest Hula Hoop' and it's on eBay for \u00a3100,000,000", - "link": "https://www.standard.co.uk/news/uk/world-longest-hula-hoop-ebay-b1131762.html", - "pubDate": "Thu, 11 Jan 2024 17:28:18 GMT", - "dc:creator": "Rachael Davies", - "dc:date": "2024-01-11T17:28:18+00:00", - "content": "

The crisp measures a shocking 4.72 inches and has been deemed the longest in the world

", - "contentSnippet": "The crisp measures a shocking 4.72 inches and has been deemed the longest in the world", - "guid": "b1131762", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-11T17:28:18.000Z" - }, - { - "creator": "Robbie Griffiths", - "date": "2024-01-11T17:26:55+00:00", - "title": "'Totally and utterly bereft' \u2014 the devastating repercussions of the British Library cyber attack", - "link": "https://www.standard.co.uk/lifestyle/british-library-cyber-hack-rhysida-ransomware-tom-holland-b1131623.html", - "pubDate": "Thu, 11 Jan 2024 17:26:55 GMT", - "dc:creator": "Robbie Griffiths", - "dc:date": "2024-01-11T17:26:55+00:00", - "content": "

One of the UK's most vital cultural institutions has been paralysed by a ransomware hack, but what does it mean for the Londoners who rely on it \u2014 and are more government organisations at risk? Robbie Griffiths reports

", - "contentSnippet": "One of the UK's most vital cultural institutions has been paralysed by a ransomware hack, but what does it mean for the Londoners who rely on it \u2014 and are more government organisations at risk? Robbie Griffiths reports", - "guid": "b1131623", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-11T17:26:55.000Z" - }, - { - "creator": "Stuart Pritchard", - "date": "2024-01-11T17:20:09+00:00", - "title": "Best colour laser printers of 2024 for a great home printing setup", - "link": "https://www.standard.co.uk/shopping/esbest/gadgets-tech/best-home-colour-laser-printers-b1065488.html", - "pubDate": "Thu, 11 Jan 2024 17:20:09 GMT", - "dc:creator": "Stuart Pritchard", - "dc:date": "2024-01-11T17:20:09+00:00", - "content": "

Prints Charming himself, Stuart Pritchard, lines-up a parade of the very latest laser printers honed for the home office\u2026

", - "contentSnippet": "Prints Charming himself, Stuart Pritchard, lines-up a parade of the very latest laser printers honed for the home office\u2026", - "guid": "b1065488", - "categories": [ - "Gadgets & Tech", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:20:09.000Z" - }, - { - "creator": "India Block", - "date": "2024-01-11T17:19:51+00:00", - "title": "Low cost home heating tips: keep your home warm during a cold snap for as little as \u00a35", - "link": "https://www.standard.co.uk/homesandproperty/interiors/homes-heating-cold-pipes-radiators-tips-b1131254.html", - "pubDate": "Thu, 11 Jan 2024 17:19:51 GMT", - "dc:creator": "India Block", - "dc:date": "2024-01-11T17:19:51+00:00", - "content": "

Renters and homeowners alike can take these steps to keep their homes toasty for less as temperatures plunge.

", - "contentSnippet": "Renters and homeowners alike can take these steps to keep their homes toasty for less as temperatures plunge.", - "guid": "b1131254", - "categories": [ - "Interiors", - "Homes & Property" - ], - "isoDate": "2024-01-11T17:19:51.000Z" - }, - { - "creator": "Nina Lloyd", - "date": "2024-01-11T17:19:50+00:00", - "title": "Post Office and Fujitsu chief executives face grilling by MPs on Horizon scandal", - "link": "https://www.standard.co.uk/news/politics/post-office-mps-horizon-europe-british-b1131820.html", - "pubDate": "Thu, 11 Jan 2024 17:19:50 GMT", - "dc:creator": "Nina Lloyd", - "dc:date": "2024-01-11T17:19:50+00:00", - "content": "Nick Read, chief executive of the Post Office, and Paul Patterson, head of Europe at Fujitsu, are both due to appear.", - "contentSnippet": "Nick Read, chief executive of the Post Office, and Paul Patterson, head of Europe at Fujitsu, are both due to appear.", - "guid": "b1131820", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T17:19:50.000Z" - }, - { - "creator": "Jacob Phillips", - "date": "2024-01-11T17:15:37+00:00", - "title": "Friends scripts for London wedding season finale up for auction 25 years after thrown in bin", - "link": "https://www.standard.co.uk/showbiz/friends-london-script-auction-the-one-with-ross-wedding-scripts-b1131782.html", - "pubDate": "Thu, 11 Jan 2024 17:15:37 GMT", - "dc:creator": "Jacob Phillips", - "dc:date": "2024-01-11T17:15:37+00:00", - "content": "

The scripts of the show were supposed to be destroyed so the ending wouldn't be leaked

", - "contentSnippet": "The scripts of the show were supposed to be destroyed so the ending wouldn't be leaked", - "guid": "b1131782", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-11T17:15:37.000Z" - }, - { - "creator": "Jen Thomas", - "date": "2024-01-11T17:15:06+00:00", - "title": "Best bathroom extractor fans to deal with humidity and condensation", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/bathroom/best-bathroom-extractor-fans-b1023654.html", - "pubDate": "Thu, 11 Jan 2024 17:15:06 GMT", - "dc:creator": "Jen Thomas", - "dc:date": "2024-01-11T17:15:06+00:00", - "content": "

They may not be the sexiest item to consider when remodelling your bathroom, but they are an essential addition

", - "contentSnippet": "They may not be the sexiest item to consider when remodelling your bathroom, but they are an essential addition", - "guid": "b1023654", - "categories": [ - "Bathroom", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:15:06.000Z" - }, - { - "creator": "Joanna Taylor", - "date": "2024-01-11T17:14:36+00:00", - "title": "What is DineMe? Meet the new food and drink focused dating app", - "link": "https://www.standard.co.uk/going-out/dineme-dating-app-everything-need-to-know-new-food-drink-b1131760.html", - "pubDate": "Thu, 11 Jan 2024 17:14:36 GMT", - "dc:creator": "Joanna Taylor", - "dc:date": "2024-01-11T17:14:36+00:00", - "content": "

Hoping to fall in love with someone who enjoys trying new bars and restaurants as much you do? Joanna Taylor investigates a new app promising to facilitate just that

", - "contentSnippet": "Hoping to fall in love with someone who enjoys trying new bars and restaurants as much you do? Joanna Taylor investigates a new app promising to facilitate just that", - "guid": "b1131760", - "categories": [ - "Going Out" - ], - "isoDate": "2024-01-11T17:14:36.000Z" - }, - { - "creator": "Joanna Taylor", - "date": "2024-01-11T17:13:12+00:00", - "title": "EE Bafta Rising Star nominee Sophie Wilde talks Nicole Kidman, Audrey Hepburn and Australia's film industry ", - "link": "https://www.standard.co.uk/culture/ee-bafta-rising-star-sophie-wilde-interview-nicole-kidman-australia-b1131576.html", - "pubDate": "Thu, 11 Jan 2024 17:13:12 GMT", - "dc:creator": "Joanna Taylor", - "dc:date": "2024-01-11T17:13:12+00:00", - "content": "

The Talk To Me and Everything Now star has been nominated alongside Saltburn's Jacob Elordi and golden globe winner Ayo Edebiri of The Bear

", - "contentSnippet": "The Talk To Me and Everything Now star has been nominated alongside Saltburn's Jacob Elordi and golden globe winner Ayo Edebiri of The Bear", - "guid": "b1131576", - "categories": [ - "Culture" - ], - "isoDate": "2024-01-11T17:13:12.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2024-01-11T17:12:11+00:00", - "title": "Best toenail clippers for easy podiatric maintenance ", - "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-toenail-clippers-b1091176.html", - "pubDate": "Thu, 11 Jan 2024 17:12:11 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2024-01-11T17:12:11+00:00", - "content": "

Wouldn\u2019t you like toe know?

", - "contentSnippet": "Wouldn\u2019t you like toe know?", - "guid": "b1091176", - "categories": [ - "Health & Fitness", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:12:11.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2024-01-11T17:09:40+00:00", - "title": "Best label makers for easy at-home organisation ", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-label-maker-machines-b1076905.html", - "pubDate": "Thu, 11 Jan 2024 17:09:40 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2024-01-11T17:09:40+00:00", - "content": "

Make Marie Kondo proud

", - "contentSnippet": "Make Marie Kondo proud", - "guid": "b1076905", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:09:40.000Z" - }, - { - "creator": "Ian Jones", - "date": "2024-01-11T17:09:28+00:00", - "title": "Covid-19 infection levels dip over Christmas and new year", - "link": "https://www.standard.co.uk/news/health/england-world-health-organisation-scotland-ons-office-for-national-statistics-b1131810.html", - "pubDate": "Thu, 11 Jan 2024 17:09:28 GMT", - "dc:creator": "Ian Jones", - "dc:date": "2024-01-11T17:09:28+00:00", - "content": "Data has been published as part of a new winter Covid-19 infection study.", - "contentSnippet": "Data has been published as part of a new winter Covid-19 infection study.", - "guid": "b1131810", - "categories": [ - "Health", - "News" - ], - "isoDate": "2024-01-11T17:09:28.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2024-01-11T17:06:55+00:00", - "title": "Best diffusers for healthy, curly hair ", - "link": "https://www.standard.co.uk/shopping/esbest/beauty/hair/best-diffusers-for-curly-hair-b1041535.html", - "pubDate": "Thu, 11 Jan 2024 17:06:55 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2024-01-11T17:06:55+00:00", - "content": "

Go ahead let your hair down

", - "contentSnippet": "Go ahead let your hair down", - "guid": "b1041535", - "categories": [ - "Hair", - "Beauty", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:06:55.000Z" - }, - { - "creator": "Matt Verri", - "date": "2024-01-11T17:05:53+00:00", - "title": "Brentford confirm first January arrival after winning race to sign teenager Yunus Emre Konak ", - "link": "https://www.standard.co.uk/sport/football/brentford-fc-yunus-emre-konak-transfer-news-b1131812.html", - "pubDate": "Thu, 11 Jan 2024 17:05:53 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2024-01-11T17:05:53+00:00", - "content": "

The teenager turned 18 this week and is set to join up with the Brentford B team

", - "contentSnippet": "The teenager turned 18 this week and is set to join up with the Brentford B team", - "guid": "b1131812", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T17:05:53.000Z" - }, - { - "creator": "Eleanor Barlow", - "date": "2024-01-11T17:04:34+00:00", - "title": "Labour leader quizzed by NHS staff over plans for health service", - "link": "https://www.standard.co.uk/news/politics/keir-starmer-labour-wes-streeting-nhs-hospital-b1131725.html", - "pubDate": "Thu, 11 Jan 2024 17:04:34 GMT", - "dc:creator": "Eleanor Barlow", - "dc:date": "2024-01-11T17:04:34+00:00", - "content": "Visiting Alder Hey Children\u2019s Hospital in Liverpool on Thursday, Sir Keir Starmer said he wanted to turn around the health of children.", - "contentSnippet": "Visiting Alder Hey Children\u2019s Hospital in Liverpool on Thursday, Sir Keir Starmer said he wanted to turn around the health of children.", - "guid": "b1131725", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T17:04:34.000Z" - }, - { - "creator": "Vicky Jessop", - "date": "2024-01-11T17:02:51+00:00", - "title": "How to become a professional gamer: from healthy living and networking to... lots of practice", - "link": "https://www.standard.co.uk/culture/gaming/become-professional-gamer-esports-b1131247.html", - "pubDate": "Thu, 11 Jan 2024 17:02:51 GMT", - "dc:creator": "Vicky Jessop", - "dc:date": "2024-01-11T17:02:51+00:00", - "content": "

Some of the industry's biggest names on how to play your way to the top (and avoid tilting while doing so)

", - "contentSnippet": "Some of the industry's biggest names on how to play your way to the top (and avoid tilting while doing so)", - "guid": "b1131247", - "categories": [ - "Gaming", - "Culture" - ], - "isoDate": "2024-01-11T17:02:51.000Z" - }, - { - "creator": "Siobhan Grogan", - "date": "2024-01-11T17:02:41+00:00", - "title": "Best paper shredders for home to securely destroy your documents", - "link": "https://www.standard.co.uk/shopping/esbest/gadgets-tech/best-shredders-b945545.html", - "pubDate": "Thu, 11 Jan 2024 17:02:41 GMT", - "dc:creator": "Siobhan Grogan", - "dc:date": "2024-01-11T17:02:41+00:00", - "content": "

Keep sensitive documents safe with these reliable machines

", - "contentSnippet": "Keep sensitive documents safe with these reliable machines", - "guid": "b945545", - "categories": [ - "Gadgets & Tech", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T17:02:41.000Z" - }, - { - "creator": "India Block", - "date": "2024-01-11T17:01:45+00:00", - "title": "Prince of Persia: The Lost Crown review \u2013 a beautiful and addictive new chapter with moments of pure elation", - "link": "https://www.standard.co.uk/culture/gaming/prince-of-persia-the-lost-crown-review-b1131430.html", - "pubDate": "Thu, 11 Jan 2024 17:01:45 GMT", - "dc:creator": "India Block", - "dc:date": "2024-01-11T17:01:45+00:00", - "content": "

It has been 13 years since the last instalment, but it was worth the wait

", - "contentSnippet": "It has been 13 years since the last instalment, but it was worth the wait", - "guid": "b1131430", - "categories": [ - "Gaming", - "Culture" - ], - "isoDate": "2024-01-11T17:01:45.000Z" - }, - { - "creator": "Tony Jones", - "date": "2024-01-11T17:01:44+00:00", - "title": "Anne watches land mine clearance at Sri Lanka\u2019s former civil war front line", - "link": "https://www.standard.co.uk/news/uk/sri-lanka-princess-royal-stephen-hall-b1131755.html", - "pubDate": "Thu, 11 Jan 2024 17:01:44 GMT", - "dc:creator": "Tony Jones", - "dc:date": "2024-01-11T17:01:44+00:00", - "content": "The Princess Royal travelled to the area to learn about efforts to make it habitable.", - "contentSnippet": "The Princess Royal travelled to the area to learn about efforts to make it habitable.", - "guid": "b1131755", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-11T17:01:44.000Z" - }, - { - "creator": "Hayley Spencer", - "date": "2024-01-11T17:00:42+00:00", - "title": "The most divisive ads \u2014 and why fashion can't resist courting controversy", - "link": "https://www.standard.co.uk/lifestyle/fashion/most-controversial-divisive-fashion-adverts-fka-twigs-calvin-klein-b1131727.html", - "pubDate": "Thu, 11 Jan 2024 17:00:42 GMT", - "dc:creator": "Hayley Spencer", - "dc:date": "2024-01-11T17:00:42+00:00", - "content": "

It's no secret that sex sells and a viral moment can equal major sales for brands. As FKA Twigs' denim campaign is the latest to face a ban, Hayley Spencer looks back at the most polarising campaigns

", - "contentSnippet": "It's no secret that sex sells and a viral moment can equal major sales for brands. As FKA Twigs' denim campaign is the latest to face a ban, Hayley Spencer looks back at the most polarising campaigns", - "guid": "b1131727", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2024-01-11T17:00:42.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2024-01-11T17:00:24+00:00", - "title": "Chelsea: Emma Hayes warns fans not to worry amid Sam Kerr and Fran Kirby uncertainty", - "link": "https://www.standard.co.uk/sport/football/emma-hayes-chelsea-fc-women-kerr-kirby-b1131750.html", - "pubDate": "Thu, 11 Jan 2024 17:00:24 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2024-01-11T17:00:24+00:00", - "content": "

The star players are yet to pen contract extensions, while the boss herself is heading to the USA

", - "contentSnippet": "The star players are yet to pen contract extensions, while the boss herself is heading to the USA", - "guid": "b1131750", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T17:00:24.000Z" - }, - { - "creator": "Jodie Keith", - "date": "2024-01-11T16:58:24+00:00", - "title": "Best roller skates for kids: Quad and inline skates for children and toddlers", - "link": "https://www.standard.co.uk/shopping/esbest/kids/best-roller-skates-for-kids-b1009194.html", - "pubDate": "Thu, 11 Jan 2024 16:58:24 GMT", - "dc:creator": "Jodie Keith", - "dc:date": "2024-01-11T16:58:24+00:00", - "content": "

Why walk when you can skate? From beginner training skates to more advanced roller skates for teens, we\u2019ll have your child skating into summer in no time

", - "contentSnippet": "Why walk when you can skate? From beginner training skates to more advanced roller skates for teens, we\u2019ll have your child skating into summer in no time", - "guid": "b1009194", - "categories": [ - "Kids", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T16:58:24.000Z" - }, - { - "creator": "El Hunt", - "date": "2024-01-11T16:56:38+00:00", - "title": "Amapiano: our guide to the music sensation sweeping the world", - "link": "https://www.standard.co.uk/culture/music/amapiano-guide-music-sensation-tyla-b1131657.html", - "pubDate": "Thu, 11 Jan 2024 16:56:38 GMT", - "dc:creator": "El Hunt", - "dc:date": "2024-01-11T16:56:38+00:00", - "content": "

From Tyla's debut album to parties in London dedicated to the genre, amapiano is set to be everywhere this year. Here's what to know

", - "contentSnippet": "From Tyla's debut album to parties in London dedicated to the genre, amapiano is set to be everywhere this year. Here's what to know", - "guid": "b1131657", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2024-01-11T16:56:38.000Z" - }, - { - "creator": "Sami Quadri", - "date": "2024-01-11T16:55:16+00:00", - "title": "Mother of woman who died 'because of some stupid bike' petitions for e-bike battery crackdown", - "link": "https://www.standard.co.uk/news/london/sofia-duarte-ebike-battery-london-fire-death-mother-petition-maria-macarro-b1131800.html", - "pubDate": "Thu, 11 Jan 2024 16:55:16 GMT", - "dc:creator": "Sami Quadri", - "dc:date": "2024-01-11T16:55:16+00:00", - "content": "

Sofia\u00a0Duarte, 21, died on New Year's Day when an e-bike ignited at her boyfriend's flat

", - "contentSnippet": "Sofia\u00a0Duarte, 21, died on New Year's Day when an e-bike ignited at her boyfriend's flat", - "guid": "b1131800", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-11T16:55:16.000Z" - }, - { - "creator": "Lucy Cotterill", - "date": "2024-01-11T16:54:39+00:00", - "title": "Best weighted blankets of 2024: Calming weighted blankets to order in the UK", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/bedroom/best-weighted-blankets-a3912931.html", - "pubDate": "Thu, 11 Jan 2024 16:54:39 GMT", - "dc:creator": "Lucy Cotterill", - "dc:date": "2024-01-11T16:54:39+00:00", - "content": "

Do you struggling to switch off, feel anxious or wake up regularly? This may be just the solution for a good night\u2019s sleep

", - "contentSnippet": "Do you struggling to switch off, feel anxious or wake up regularly? This may be just the solution for a good night\u2019s sleep", - "guid": "a3912931", - "categories": [ - "Bedroom", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T16:54:39.000Z" - }, - { - "creator": "Mark Blunden", - "date": "2024-01-11T16:54:29+00:00", - "title": "London shops deploy facial recognition in theft epidemic - The Standard podcast", - "link": "https://www.standard.co.uk/podcasts/london-shoplifting-facial-recognition-theft-epidemic-b1131809.html", - "pubDate": "Thu, 11 Jan 2024 16:54:29 GMT", - "dc:creator": "Mark Blunden", - "dc:date": "2024-01-11T16:54:29+00:00", - "content": "

Plus, the capital\u2019s violent Rolex robbery gangs

", - "contentSnippet": "Plus, the capital\u2019s violent Rolex robbery gangs", - "guid": "b1131809", - "categories": [ - "Podcasts" - ], - "isoDate": "2024-01-11T16:54:29.000Z" - }, - { - "creator": "George Flood and Dan Kilpatrick", - "date": "2024-01-11T16:50:51+00:00", - "title": "Tottenham handed major Cristian Romero injury boost for Manchester United trip", - "link": "https://www.standard.co.uk/sport/football/tottenham-cristian-romero-injury-boost-man-utd-b1131806.html", - "pubDate": "Thu, 11 Jan 2024 16:50:51 GMT", - "dc:creator": "George Flood and Dan Kilpatrick", - "dc:date": "2024-01-11T16:50:51+00:00", - "content": "

Key Spurs star in contention for Old Trafford trip as two new signings compete for debuts

", - "contentSnippet": "Key Spurs star in contention for Old Trafford trip as two new signings compete for debuts", - "guid": "b1131806", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-11T16:50:51.000Z" - }, - { - "creator": "Anahita Hossein-Pour", - "date": "2024-01-11T16:49:10+00:00", - "title": "Vote on housing development like Hunger Games, says parish council chairman", - "link": "https://www.standard.co.uk/news/environment/sevenoaks-sevenoaks-district-council-westerham-kent-england-b1131813.html", - "pubDate": "Thu, 11 Jan 2024 16:49:10 GMT", - "dc:creator": "Anahita Hossein-Pour", - "dc:date": "2024-01-11T16:49:10+00:00", - "content": "Villagers rejecting the plans in an online poll has given Eynsford Parish Council \u2018a mandate to fight\u2019, their chairman said.", - "contentSnippet": "Villagers rejecting the plans in an online poll has given Eynsford Parish Council \u2018a mandate to fight\u2019, their chairman said.", - "guid": "b1131813", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-11T16:49:10.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2024-01-11T16:41:55+00:00", - "title": "Best electrolyte supplements for replenishing your body\u2019s salts and minerals ", - "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-electrolyte-supplements-b1087890.html", - "pubDate": "Thu, 11 Jan 2024 16:41:55 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2024-01-11T16:41:55+00:00", - "content": "

Electro-lit

", - "contentSnippet": "Electro-lit", - "guid": "b1087890", - "categories": [ - "Health & Fitness", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T16:41:55.000Z" - }, - { - "creator": "Es Best", - "date": "2024-01-11T16:40:57+00:00", - "title": "Best laptop deals in the UK for January 2024", - "link": "https://www.standard.co.uk/shopping/esbest/gadgets-tech/computing/best-laptop-deals-macbooks-chromebooks-b998911.html", - "pubDate": "Thu, 11 Jan 2024 16:40:57 GMT", - "dc:creator": "Es Best", - "dc:date": "2024-01-11T16:40:57+00:00", - "content": "

Shop smart with major discounts

", - "contentSnippet": "Shop smart with major discounts", - "guid": "b998911", - "categories": [ - "Computing", - "Gadgets & Tech", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-11T16:40:57.000Z" - }, - { - "creator": "John Dunne", - "date": "2024-01-11T16:40:00+00:00", - "title": "London fraudster who applied for \u00a380,000 in Covid grants using friends' identities convicted", - "link": "https://www.standard.co.uk/news/crime/covid-grant-fraud-london-business-streatham-high-street-mirza-altaf-ali-baig-lambeth-council-b1131765.html", - "pubDate": "Thu, 11 Jan 2024 16:40:00 GMT", - "dc:creator": "John Dunne", - "dc:date": "2024-01-11T16:40:00+00:00", - "content": "

Mirza Altaf Ali Baig made fraudulent applications using names and identities of associates

", - "contentSnippet": "Mirza Altaf Ali Baig made fraudulent applications using names and identities of associates", - "guid": "b1131765", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-11T16:40:00.000Z" - }, - { - "creator": "Craig Paton", - "date": "2024-01-11T16:38:00+00:00", - "title": "Scottish Government unable to say how many XL bullies moved due to restrictions", - "link": "https://www.standard.co.uk/news/politics/government-uk-government-first-minister-scottish-government-england-b1131764.html", - "pubDate": "Thu, 11 Jan 2024 16:38:00 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2024-01-11T16:38:00+00:00", - "content": "It came after First Minister Humza Yousaf announced his Government will \u2018in essence replicate\u2019 the ban.", - "contentSnippet": "It came after First Minister Humza Yousaf announced his Government will \u2018in essence replicate\u2019 the ban.", - "guid": "b1131764", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-11T16:38:00.000Z" - }, - { - "creator": "Rachael Davies", - "date": "2024-01-11T16:35:08+00:00", - "title": "TikTok becomes first app to exceed $10 billion in user spending", - "link": "https://www.standard.co.uk/news/tech/tiktok-app-10-billion-user-spending-record-breaking-b1131783.html", - "pubDate": "Thu, 11 Jan 2024 16:35:08 GMT", - "dc:creator": "Rachael Davies", - "dc:date": "2024-01-11T16:35:08+00:00", - "content": "

In a year where mobile spending hit new levels, TikTok reached a record-breaking high

", - "contentSnippet": "In a year where mobile spending hit new levels, TikTok reached a record-breaking high", - "guid": "b1131783", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2024-01-11T16:35:08.000Z" - }, - { - "creator": "Rebecca Black", - "date": "2024-01-11T16:33:23+00:00", - "title": "Strike pay issue can be resolved quickly if Heaton-Harris acts now, say unions", - "link": "https://www.standard.co.uk/business/business-news/strike-pay-issue-can-be-resolved-quickly-if-heatonharris-acts-now-say-unions-b1131776.html", - "pubDate": "Thu, 11 Jan 2024 16:33:23 GMT", - "dc:creator": "Rebecca Black", - "dc:date": "2024-01-11T16:33:23+00:00", - "content": "Teachers, nurses, health workers, education support workers, police staff and civil servants are set to take part in a day of action on January 18.", - "contentSnippet": "Teachers, nurses, health workers, education support workers, police staff and civil servants are set to take part in a day of action on January 18.", - "guid": "b1131776", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-11T16:33:23.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-11T16:29:06+00:00", - "title": "Dyson loses appeal in fight for \u00a3150m damages over vacuum cleaner labelling", - "link": "https://www.standard.co.uk/business/business-news/dyson-loses-appeal-in-fight-for-ps150m-damages-over-vacuum-cleaner-labelling-b1131807.html", - "pubDate": "Thu, 11 Jan 2024 16:29:06 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-11T16:29:06+00:00", - "content": "The Court of Justice of the European Union dismissed Dyson\u2019s appeal against the decision not to grant it compensation in 2021.", - "contentSnippet": "The Court of Justice of the European Union dismissed Dyson\u2019s appeal against the decision not to grant it compensation in 2021.", - "guid": "b1131807", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-11T16:29:06.000Z" - }, - { - "creator": "Jordan King", - "date": "2024-01-11T16:28:57+00:00", - "title": "UN court opens hearings for South Africa's allegations that Israel is committing genocide in Gaza", - "link": "https://www.standard.co.uk/news/world/un-hearings-south-africa-israel-genocide-gaza-united-nations-b1131659.html", - "pubDate": "Thu, 11 Jan 2024 16:28:57 GMT", - "dc:creator": "Jordan King", - "dc:date": "2024-01-11T16:28:57+00:00", - "content": "

South Africa has asked judges to impose preliminary orders for Israel to halt its campaign

", - "contentSnippet": "South Africa has asked judges to impose preliminary orders for Israel to halt its campaign", - "guid": "b1131659", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-11T16:28:57.000Z" - }, - { - "creator": "Prudence Ivey", - "date": "2024-01-11T16:25:26+00:00", - "title": "Why I live in Soho: The Devonshire's Oisin Rogers on his intense, surprisingly residential neighbourhood", - "link": "https://www.standard.co.uk/homesandproperty/where-to-live/soho-area-guide-oisin-rogers-the-devonshire-b1131546.html", - "pubDate": "Thu, 11 Jan 2024 16:25:26 GMT", - "dc:creator": "Prudence Ivey", - "dc:date": "2024-01-11T16:25:26+00:00", - "content": "

Oisin Rogers is one of the best-known pub landlords in London. He explains why Soho is a wonderful place to live

", - "contentSnippet": "Oisin Rogers is one of the best-known pub landlords in London. He explains why Soho is a wonderful place to live", - "guid": "b1131546", - "categories": [ - "Where to live", - "Homes & Property" - ], - "isoDate": "2024-01-11T16:25:26.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2024-01-11T16:20:16+00:00", - "title": "Eurovision star Mae Muller announces break from music after industry 'pressure'", - "link": "https://www.standard.co.uk/showbiz/eurovision-mae-muller-music-break-industry-pressure-b1131777.html", - "pubDate": "Thu, 11 Jan 2024 16:20:16 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2024-01-11T16:20:16+00:00", - "content": "

The London-born musician shared a lengthy message with fans detailing her 'intense' experience last year

", - "contentSnippet": "The London-born musician shared a lengthy message with fans detailing her 'intense' experience last year", - "guid": "b1131777", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-11T16:20:16.000Z" - }, - { - "creator": "Flora Thompson", - "date": "2024-01-18T12:25:34+00:00", - "title": "Home Office told to 'consult the professionals' after asylum backlog blunder ", - "link": "https://www.standard.co.uk/news/politics/home-office-asylum-seeker-backlog-cases-uk-statistics-authority-rwanda-b1133213.html", - "pubDate": "Thu, 18 Jan 2024 12:25:34 GMT", - "dc:creator": "Flora Thompson", - "dc:date": "2024-01-18T12:25:34+00:00", - "content": "

Incorrect statistics about clearing the backlog of cases 'may affect public trust', watchdog warns

", - "contentSnippet": "Incorrect statistics about clearing the backlog of cases 'may affect public trust', watchdog warns", - "guid": "b1133213", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T12:25:34.000Z" - }, - { - "creator": "Robert Dex and Arts Correspondent", - "date": "2024-01-18T12:23:09+00:00", - "title": "Oppenheimer dominates nominations at this year's Bafta Awards", - "link": "https://www.standard.co.uk/news/uk/oppenheimer-bafta-awards-nominations-barbie-cillian-murphy-b1133160.html", - "pubDate": "Thu, 18 Jan 2024 12:23:09 GMT", - "dc:creator": "Robert Dex and Arts Correspondent", - "dc:date": "2024-01-18T12:23:09+00:00", - "content": "

Oppenheimer leads the way with 13 nominations at this year's EE Bafta Film Awards

", - "contentSnippet": "Oppenheimer leads the way with 13 nominations at this year's EE Bafta Film Awards", - "guid": "b1133160", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T12:23:09.000Z" - }, - { - "creator": "Andrew Williams", - "date": "2024-01-18T12:22:17+00:00", - "title": "Xbox Game Pass games for January and February announced", - "link": "https://www.standard.co.uk/culture/gaming/xbox-game-pass-games-releases-list-january-february-b1133184.html", - "pubDate": "Thu, 18 Jan 2024 12:22:17 GMT", - "dc:creator": "Andrew Williams", - "dc:date": "2024-01-18T12:22:17+00:00", - "content": "

Xbox Game Pass is releasing 5 new games, and 3 are available now

", - "contentSnippet": "Xbox Game Pass is releasing 5 new games, and 3 are available now", - "guid": "b1133184", - "categories": [ - "Gaming", - "Culture" - ], - "isoDate": "2024-01-18T12:22:17.000Z" - }, - { - "creator": "Laura Harding", - "date": "2024-01-18T12:20:32+00:00", - "title": "Oppenheimer leads Bafta nominations with 13 nods", - "link": "https://www.standard.co.uk/culture/film/barbie-cillian-murphy-oppenheimer-barry-keoghan-margot-robbie-b1133222.html", - "pubDate": "Thu, 18 Jan 2024 12:20:32 GMT", - "dc:creator": "Laura Harding", - "dc:date": "2024-01-18T12:20:32+00:00", - "content": "Irish stars Cillian Murphy and Barry Keoghan will go head to head.", - "contentSnippet": "Irish stars Cillian Murphy and Barry Keoghan will go head to head.", - "guid": "b1133222", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2024-01-18T12:20:32.000Z" - }, - { - "creator": "Robert Dex and Arts Correspondent", - "date": "2024-01-18T12:19:04+00:00", - "title": "EE Bafta Film Awards 2024: Oppenheimer leads nominations as Killers of the Flower Moon struggles", - "link": "https://www.standard.co.uk/news/uk/ee-bafta-film-awards-2024-nominations-live-b1133209.html", - "pubDate": "Thu, 18 Jan 2024 12:19:04 GMT", - "dc:creator": "Robert Dex and Arts Correspondent", - "dc:date": "2024-01-18T12:19:04+00:00", - "content": "

The nominations for this year's EE Bafta Film Awards have been announced

", - "contentSnippet": "The nominations for this year's EE Bafta Film Awards have been announced", - "guid": "b1133209", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T12:19:04.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2024-01-18T12:14:47+00:00", - "title": "West Ham and Crystal Palace in Kalvin Phillips transfer battle as decision looms", - "link": "https://www.standard.co.uk/sport/football/west-ham-crystal-palace-kalvin-phillips-transfer-b1133211.html", - "pubDate": "Thu, 18 Jan 2024 12:14:47 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2024-01-18T12:14:47+00:00", - "content": "

The Hammers look best-placed to strike a deal for the little-used Manchester City midfielder

", - "contentSnippet": "The Hammers look best-placed to strike a deal for the little-used Manchester City midfielder", - "guid": "b1133211", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T12:14:47.000Z" - }, - { - "creator": "Ross Lydall", - "date": "2024-01-18T12:14:39+00:00", - "title": "Paul Scully claims he was 'best candiate' to defeat Sadiq Khan in London mayoral race", - "link": "https://www.standard.co.uk/news/london/london-mayoral-tories-candiate-paul-scully-sadiq-khan-susan-hall-b1133214.html", - "pubDate": "Thu, 18 Jan 2024 12:14:39 GMT", - "dc:creator": "Ross Lydall", - "dc:date": "2024-01-18T12:14:39+00:00", - "content": "

The former Minister for London felt 'frustration' after exclusion from Tory candidate shortlist

", - "contentSnippet": "The former Minister for London felt 'frustration' after exclusion from Tory candidate shortlist", - "guid": "b1133214", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-18T12:14:39.000Z" - }, - { - "creator": "Katrine Bussey", - "date": "2024-01-18T12:14:19+00:00", - "title": "BBC boss quizzed on \u2018really low\u2019 audience numbers for Scotland channel shows", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/scotland-bbc-bbc-radio-scotland-b1133217.html", - "pubDate": "Thu, 18 Jan 2024 12:14:19 GMT", - "dc:creator": "Katrine Bussey", - "dc:date": "2024-01-18T12:14:19+00:00", - "content": "BBC Scotland director Steve Carson was questioned by MSPs on Holyrood\u2019s Culture Committee.", - "contentSnippet": "BBC Scotland director Steve Carson was questioned by MSPs on Holyrood\u2019s Culture Committee.", - "guid": "b1133217", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-18T12:14:19.000Z" - }, - { - "creator": "Tom Pilgrim", - "date": "2024-01-18T12:09:38+00:00", - "title": "Two men jailed on word of corrupt police officer posthumously cleared", - "link": "https://www.standard.co.uk/news/crime/london-british-transport-police-court-of-appeal-british-rail-transport-b1133216.html", - "pubDate": "Thu, 18 Jan 2024 12:09:38 GMT", - "dc:creator": "Tom Pilgrim", - "dc:date": "2024-01-18T12:09:38+00:00", - "content": "Basil Peterkin\u2019s and Saliah Mehmet\u2019s convictions were quashed at the Court of Appeal.", - "contentSnippet": "Basil Peterkin\u2019s and Saliah Mehmet\u2019s convictions were quashed at the Court of Appeal.", - "guid": "b1133216", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-18T12:09:38.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2024-01-18T12:08:07+00:00", - "title": "Peer warns Rwanda Bill marks \u2018step towards totalitarianism\u2019", - "link": "https://www.standard.co.uk/news/politics/rwanda-british-suella-braverman-government-bbc-radio-b1133215.html", - "pubDate": "Thu, 18 Jan 2024 12:08:07 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2024-01-18T12:08:07+00:00", - "content": "The stinging criticism from Lord Carlile is a sign of the depth of opposition the flagship legislation is set to face in the Lords.", - "contentSnippet": "The stinging criticism from Lord Carlile is a sign of the depth of opposition the flagship legislation is set to face in the Lords.", - "guid": "b1133215", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T12:08:07.000Z" - }, - { - "creator": "Evening Standard Comment", - "date": "2024-01-18T12:07:24+00:00", - "title": "OPINION - The Standard View: The Hammersmith Bridge saga has become an international embarrassment", - "link": "https://www.standard.co.uk/comment/hammersmith-bridge-council-transport-for-london-b1133212.html", - "pubDate": "Thu, 18 Jan 2024 12:07:24 GMT", - "dc:creator": "Evening Standard Comment", - "dc:date": "2024-01-18T12:07:24+00:00", - "content": "

Embarrassing, humiliating, a microcosm of why we can\u2019t get anything built in this country. Pick your howl of anguish then treble it: this is the story of Hammersmith Bridge. The crossing was shut in April 2019 by Hammersmith and Fulham council after safety sensors detected \u201cdangerous micro-fractures\u201d in the cast-iron pedestals that hold the suspension system in place. It reopened to cyclists and pedestrians in July 2021, but drivers have had no choice but to divert to Chiswick or Putney.

", - "contentSnippet": "Embarrassing, humiliating, a microcosm of why we can\u2019t get anything built in this country. Pick your howl of anguish then treble it: this is the story of Hammersmith Bridge. The crossing was shut in April 2019 by Hammersmith and Fulham council after safety sensors detected \u201cdangerous micro-fractures\u201d in the cast-iron pedestals that hold the suspension system in place. It reopened to cyclists and pedestrians in July 2021, but drivers have had no choice but to divert to Chiswick or Putney.", - "guid": "b1133212", - "categories": [ - "Comment" - ], - "isoDate": "2024-01-18T12:07:24.000Z" - }, - { - "creator": "Jochan Embley and David Smyth", - "date": "2024-01-18T12:04:07+00:00", - "title": "10 of the best and worst music biopics of all time - where does Priscilla rank? ", - "link": "https://www.standard.co.uk/culture/music/music-biopic-movies-best-worst-b701551.html", - "pubDate": "Thu, 18 Jan 2024 12:04:07 GMT", - "dc:creator": "Jochan Embley and David Smyth", - "dc:date": "2024-01-18T12:04:07+00:00", - "content": "

The good, the bad and the ugly \u2014 from award-winning portrayals to family feuds and facial prosthetics

", - "contentSnippet": "The good, the bad and the ugly \u2014 from award-winning portrayals to family feuds and facial prosthetics", - "guid": "b701551", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2024-01-18T12:04:07.000Z" - }, - { - "creator": "Hamish MacBain", - "date": "2024-01-18T12:01:03+00:00", - "title": "Mica Paris: 'I had everything, the money and the fame and I was like \u2013 is this it?'", - "link": "https://www.standard.co.uk/culture/theatre/mica-paris-rehab-the-musical-neon-my-one-temptation-b1132395.html", - "pubDate": "Thu, 18 Jan 2024 12:01:03 GMT", - "dc:creator": "Hamish MacBain", - "dc:date": "2024-01-18T12:01:03+00:00", - "content": "

The performer on why she turned her back on fame, getting 5am calls from Prince and her dream to put British soul music on the map

", - "contentSnippet": "The performer on why she turned her back on fame, getting 5am calls from Prince and her dream to put British soul music on the map", - "guid": "b1132395", - "categories": [ - "Theatre", - "Culture" - ], - "isoDate": "2024-01-18T12:01:03.000Z" - }, - { - "creator": "Rhiannon James", - "date": "2024-01-18T11:58:03+00:00", - "title": "Penny Mordaunt branded \u2018minister for clickbait\u2019 by SNP", - "link": "https://www.standard.co.uk/news/politics/penny-mordaunt-house-of-commons-scotland-stone-tories-b1133210.html", - "pubDate": "Thu, 18 Jan 2024 11:58:03 GMT", - "dc:creator": "Rhiannon James", - "dc:date": "2024-01-18T11:58:03+00:00", - "content": "SNP MP Deirdre Brock questioned if the Leader of the House was considering a new career as a stand-up comedian.", - "contentSnippet": "SNP MP Deirdre Brock questioned if the Leader of the House was considering a new career as a stand-up comedian.", - "guid": "b1133210", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T11:58:03.000Z" - }, - { - "creator": "Sian Baldwin and Ayan Omar", - "date": "2024-01-18T11:55:56+00:00", - "title": "Is it safe to travel to Ecuador? Prosecutor investigating TV studio attack is murdered", - "link": "https://www.standard.co.uk/news/world/ecuador-safe-travel-foreign-office-gangster-drug-lord-escape-b1131437.html", - "pubDate": "Thu, 18 Jan 2024 11:55:56 GMT", - "dc:creator": "Sian Baldwin and Ayan Omar", - "dc:date": "2024-01-18T11:55:56+00:00", - "content": "

C\u00e9sar Su\u00e1rez was leading the\u00a0investigation of the attack on Ecuadorian TV station\u00a0 led by gang members

", - "contentSnippet": "C\u00e9sar Su\u00e1rez was leading the\u00a0investigation of the attack on Ecuadorian TV station\u00a0 led by gang members", - "guid": "b1131437", - "categories": [ - "World", - "News" - ], - "isoDate": "2024-01-18T11:55:56.000Z" - }, - { - "creator": "George Flood", - "date": "2024-01-18T11:54:53+00:00", - "title": "Transfer news LIVE! Arsenal and Chelsea in Benzema fight; Man Utd learn Vinicius Jr price; Gnonto to West Ham", - "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-fc-chelsea-tottenham-man-utd-benzema-vinicius-ramos-b1132296.html", - "pubDate": "Thu, 18 Jan 2024 11:54:53 GMT", - "dc:creator": "George Flood", - "dc:date": "2024-01-18T11:54:53+00:00", - "content": "

Latest transfer rumours, gossip and signings from the January window

", - "contentSnippet": "Latest transfer rumours, gossip and signings from the January window", - "guid": "b1132296", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T11:54:53.000Z" - }, - { - "creator": "Ben Hatton", - "date": "2024-01-18T11:52:01+00:00", - "title": "Fujitsu vows to compensate victims of Post Office Horizon IT scandal", - "link": "https://www.standard.co.uk/news/politics/horizon-post-office-japanese-b1133206.html", - "pubDate": "Thu, 18 Jan 2024 11:52:01 GMT", - "dc:creator": "Ben Hatton", - "dc:date": "2024-01-18T11:52:01+00:00", - "content": "The Japanese technology firm offered its \u2018deepest apologies\u2019 to subpostmasters and their families in a fresh statement on Thursday.", - "contentSnippet": "The Japanese technology firm offered its \u2018deepest apologies\u2019 to subpostmasters and their families in a fresh statement on Thursday.", - "guid": "b1133206", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T11:52:01.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2024-01-18T11:49:56+00:00", - "title": "Brentford XI vs Nottingham Forest: Ivan Toney latest, injury update, predicted lineup and confirmed team news", - "link": "https://www.standard.co.uk/sport/football/brentford-xi-vs-nottingham-forest-toney-injury-latest-predicted-lineup-confirmed-team-news-premier-league-2024-b1133205.html", - "pubDate": "Thu, 18 Jan 2024 11:49:56 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2024-01-18T11:49:56+00:00", - "content": "

Star striker returns from eight-month ban

", - "contentSnippet": "Star striker returns from eight-month ban", - "guid": "b1133205", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T11:49:56.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2024-01-18T11:49:36+00:00", - "title": "Posters of Clint Eastwood in 1966 western expected to fetch \u00a340,000 at auction", - "link": "https://www.standard.co.uk/culture/film/clint-eastwood-rome-oscars-andrew-matthews-rocky-b1133202.html", - "pubDate": "Thu, 18 Jan 2024 11:49:36 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2024-01-18T11:49:36+00:00", - "content": "A large-scale poster and three character panels from The Good, The Bad And The Ugly are being auctioned.", - "contentSnippet": "A large-scale poster and three character panels from The Good, The Bad And The Ugly are being auctioned.", - "guid": "b1133202", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2024-01-18T11:49:36.000Z" - }, - { - "creator": "Nick Curtis", - "date": "2024-01-18T11:49:13+00:00", - "title": "Cowbois, Royal Court review: this queer subversion of the Wild West is a delight but needs serious reining in", - "link": "https://www.standard.co.uk/culture/theatre/cowbois-royal-court-review-charlie-josephine-b1133031.html", - "pubDate": "Thu, 18 Jan 2024 11:49:13 GMT", - "dc:creator": "Nick Curtis", - "dc:date": "2024-01-18T11:49:13+00:00", - "content": "

Charlie Josephine's play is affirming and charming, but also in need of a bit of 'whoa there' and 'giddy up'

", - "contentSnippet": "Charlie Josephine's play is affirming and charming, but also in need of a bit of 'whoa there' and 'giddy up'", - "guid": "b1133031", - "categories": [ - "Theatre", - "Culture" - ], - "isoDate": "2024-01-18T11:49:13.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2024-01-18T11:47:05+00:00", - "title": "Jordan Henderson flies out for Ajax medical after agreeing Al-Ettifaq exit", - "link": "https://www.standard.co.uk/sport/football/jordan-henderson-ajax-medical-al-ettifaq-b1133168.html", - "pubDate": "Thu, 18 Jan 2024 11:47:05 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2024-01-18T11:47:05+00:00", - "content": "

England midfielder is set to join the Eredivisie giants on a deal until the summer of 2026

", - "contentSnippet": "England midfielder is set to join the Eredivisie giants on a deal until the summer of 2026", - "guid": "b1133168", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T11:47:05.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2024-01-18T11:46:31+00:00", - "title": "Visual artists need better protection from AI, group warns", - "link": "https://www.standard.co.uk/news/uk/government-b1133203.html", - "pubDate": "Thu, 18 Jan 2024 11:46:31 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2024-01-18T11:46:31+00:00", - "content": "The Design And Artists Copyright Society called for Government action after a survey found that respondents wanted greater protection.", - "contentSnippet": "The Design And Artists Copyright Society called for Government action after a survey found that respondents wanted greater protection.", - "guid": "b1133203", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T11:46:31.000Z" - }, - { - "creator": "Sam Russell", - "date": "2024-01-18T11:45:23+00:00", - "title": "Garden accessories firm wins legal fight with luxury fashion house Louis Vuitton", - "link": "https://www.standard.co.uk/news/crime/lawrence-osborne-louis-vuitton-matthew-williams-sandringham-estate-norfolk-b1133204.html", - "pubDate": "Thu, 18 Jan 2024 11:45:23 GMT", - "dc:creator": "Sam Russell", - "dc:date": "2024-01-18T11:45:23+00:00", - "content": "Married couple Lawrence and Victoria Osborne used their initials to found L V Bespoke in 2020.", - "contentSnippet": "Married couple Lawrence and Victoria Osborne used their initials to found L V Bespoke in 2020.", - "guid": "b1133204", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-18T11:45:23.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2024-01-18T11:43:46+00:00", - "title": "Parents need advice on when to send children with mild illnesses to school, say MPs", - "link": "https://www.standard.co.uk/news/education/parents-children-illness-school-absent-off-gp-doctor-mp-b1133199.html", - "pubDate": "Thu, 18 Jan 2024 11:43:46 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2024-01-18T11:43:46+00:00", - "content": "

The chairmen of the Commons Education Committee and Health and Social Care Committee have written to ministers calling for a public awareness campaign

", - "contentSnippet": "The chairmen of the Commons Education Committee and Health and Social Care Committee have written to ministers calling for a public awareness campaign", - "guid": "b1133199", - "categories": [ - "Education", - "News" - ], - "isoDate": "2024-01-18T11:43:46.000Z" - }, - { - "creator": "Laura Hampson,Lowenna Waters and William Mata", - "date": "2024-01-18T11:41:10+00:00", - "title": "How to keep your dogs and cats warm this week", - "link": "https://www.standard.co.uk/lifestyle/london-life/how-keep-dogs-cats-pets-warm-a3776011.html", - "pubDate": "Thu, 18 Jan 2024 11:41:10 GMT", - "dc:creator": "Laura Hampson,Lowenna Waters and William Mata", - "dc:date": "2024-01-18T11:41:10+00:00", - "content": "

The RSPCA has given guidance about what to do with your pets in freezing weather

", - "contentSnippet": "The RSPCA has given guidance about what to do with your pets in freezing weather", - "guid": "a3776011", - "categories": [ - "London Life", - "Lifestyle" - ], - "isoDate": "2024-01-18T11:41:10.000Z" - }, - { - "creator": "Ella Kemp", - "date": "2024-01-18T11:40:23+00:00", - "title": "The End We Start review: Jodie Comer is a beacon of light at the end of the world", - "link": "https://www.standard.co.uk/culture/film/the-end-we-start-from-jodie-comer-end-of-the-world-b1113429.html", - "pubDate": "Thu, 18 Jan 2024 11:40:23 GMT", - "dc:creator": "Ella Kemp", - "dc:date": "2024-01-18T11:40:23+00:00", - "content": "

The actor is the beating heart of a film that looks at the momentous decision to love and raise a life in the face of disaster

", - "contentSnippet": "The actor is the beating heart of a film that looks at the momentous decision to love and raise a life in the face of disaster", - "guid": "b1113429", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2024-01-18T11:40:23.000Z" - }, - { - "creator": "Tamara Davison", - "date": "2024-01-18T11:37:51+00:00", - "title": "Who kidnapped Denise Huskins? Real story behind new Netflix true-crime series American Nightmare", - "link": "https://www.standard.co.uk/culture/tvfilm/who-kidnapped-denise-huskins-american-nightmare-real-story-netflix-b1133152.html", - "pubDate": "Thu, 18 Jan 2024 11:37:51 GMT", - "dc:creator": "Tamara Davison", - "dc:date": "2024-01-18T11:37:51+00:00", - "content": "

Denise Huskins was kidnapped in 2015, but the truth would only be uncovered months later

", - "contentSnippet": "Denise Huskins was kidnapped in 2015, but the truth would only be uncovered months later", - "guid": "b1133152", - "categories": [ - "TV", - "Culture" - ], - "isoDate": "2024-01-18T11:37:51.000Z" - }, - { - "creator": "Dominique Hines", - "date": "2024-01-18T11:36:00+00:00", - "title": "Jane Seymour admits she's having 'more passionate' sex than ever at age 72\u00a0", - "link": "https://www.standard.co.uk/showbiz/jane-seymour-romance-sex-life-passion-older-b1133192.html", - "pubDate": "Thu, 18 Jan 2024 11:36:00 GMT", - "dc:creator": "Dominique Hines", - "dc:date": "2024-01-18T11:36:00+00:00", - "content": "

The actress declared: 'Everyone is looking for something that puts blood into a certain area.'

", - "contentSnippet": "The actress declared: 'Everyone is looking for something that puts blood into a certain area.'", - "guid": "b1133192", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-18T11:36:00.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2024-01-18T11:32:45+00:00", - "title": "Donald Glover spills on chat with Brad Pitt at UK premiere of Mr & Mrs Smith remake", - "link": "https://www.standard.co.uk/showbiz/donald-glover-london-mr-mrs-smith-brad-pitt-amazon-prime-b1133100.html", - "pubDate": "Thu, 18 Jan 2024 11:32:45 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2024-01-18T11:32:45+00:00", - "content": "

Glover visited London with co-star Mary Erskine ahead of the release of Prime Video's spin on the 2005 classic film

", - "contentSnippet": "Glover visited London with co-star Mary Erskine ahead of the release of Prime Video's spin on the 2005 classic film", - "guid": "b1133100", - "categories": [ - "Showbiz" - ], - "isoDate": "2024-01-18T11:32:45.000Z" - }, - { - "creator": "Nilima Marshall", - "date": "2024-01-18T11:32:08+00:00", - "title": "Peregrine Moon lander on course to burn up in Earth\u2019s atmosphere", - "link": "https://www.standard.co.uk/news/uk/earth-open-university-cape-canaveral-florida-nasa-b1133130.html", - "pubDate": "Thu, 18 Jan 2024 11:32:08 GMT", - "dc:creator": "Nilima Marshall", - "dc:date": "2024-01-18T11:32:08+00:00", - "content": "The spacecraft is due to re-enter at 9pm UK time.", - "contentSnippet": "The spacecraft is due to re-enter at 9pm UK time.", - "guid": "b1133130", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T11:32:08.000Z" - }, - { - "creator": "Neil Lancefield", - "date": "2024-01-18T11:31:35+00:00", - "title": "Minister ends safeguarding of land on axed HS2 route", - "link": "https://www.standard.co.uk/news/politics/mark-harper-hs2-west-midlands-rishi-sunak-government-b1133190.html", - "pubDate": "Thu, 18 Jan 2024 11:31:35 GMT", - "dc:creator": "Neil Lancefield", - "dc:date": "2024-01-18T11:31:35+00:00", - "content": "Transport Secretary Mark Harper said the move \u2018provides certainty to people along the former route of HS2\u2019.", - "contentSnippet": "Transport Secretary Mark Harper said the move \u2018provides certainty to people along the former route of HS2\u2019.", - "guid": "b1133190", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T11:31:35.000Z" - }, - { - "creator": "Matt Majendie", - "date": "2024-01-18T11:29:44+00:00", - "title": "Emma Raducanu ousted from Australian Open by Wang Yafan after sickness struggles", - "link": "https://www.standard.co.uk/sport/tennis/emma-raducanu-australian-open-sickness-b1133194.html", - "pubDate": "Thu, 18 Jan 2024 11:29:44 GMT", - "dc:creator": "Matt Majendie", - "dc:date": "2024-01-18T11:29:44+00:00", - "content": "

Hopes of an all-British clash with Katie Boulter ended as both players lose in the second round

", - "contentSnippet": "Hopes of an all-British clash with Katie Boulter ended as both players lose in the second round", - "guid": "b1133194", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2024-01-18T11:29:44.000Z" - }, - { - "creator": "Jordan King", - "date": "2024-01-18T11:27:34+00:00", - "title": "Rwanda bill latest LIVE: Rishi Sunak urges Lords not to 'frustrate will of people' and back deportation flights", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-press-conference-rwanda-bill-downing-street-commons-tory-rebels-b1133155.html", - "pubDate": "Thu, 18 Jan 2024 11:27:34 GMT", - "dc:creator": "Jordan King", - "dc:date": "2024-01-18T11:27:34+00:00", - "content": "

Rishi Sunak appealed for the House of Lords to \u201cdo the right thing\u201d and vote his Rwanda bill through at a press conference on Thursday morning.

", - "contentSnippet": "Rishi Sunak appealed for the House of Lords to \u201cdo the right thing\u201d and vote his Rwanda bill through at a press conference on Thursday morning.", - "guid": "b1133155", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T11:27:34.000Z" - }, - { - "creator": "Jitendra Joshi", - "date": "2024-01-18T11:27:19+00:00", - "title": "Rishi Sunak warns House of Lords 'don't defy will of people' over his Rwanda flights plan", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-downing-street-rwanda-house-of-lords-suella-braverman-b1133116.html", - "pubDate": "Thu, 18 Jan 2024 11:27:19 GMT", - "dc:creator": "Jitendra Joshi", - "dc:date": "2024-01-18T11:27:19+00:00", - "content": "

But Prime Minister reportedly faces letters of no confidence from several Conservative MPs

", - "contentSnippet": "But Prime Minister reportedly faces letters of no confidence from several Conservative MPs", - "guid": "b1133116", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T11:27:19.000Z" - }, - { - "creator": "Nicholas Cecil", - "date": "2024-01-18T11:22:46+00:00", - "title": "Lee Anderson: I didn't vote against Rwanda Bill after Labour MPs 'sniggered and laughed' at me", - "link": "https://www.standard.co.uk/news/politics/lee-anderson-rwanda-vote-commons-tory-rebels-labour-mps-dumb-and-dumber-b1133149.html", - "pubDate": "Thu, 18 Jan 2024 11:22:46 GMT", - "dc:creator": "Nicholas Cecil", - "dc:date": "2024-01-18T11:22:46+00:00", - "content": "

'Who knew Lee Anderson was such a delicate flower?,' jibed Liberal Democrat home affairs spokesperson Alistair Carmichael

", - "contentSnippet": "'Who knew Lee Anderson was such a delicate flower?,' jibed Liberal Democrat home affairs spokesperson Alistair Carmichael", - "guid": "b1133149", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T11:22:46.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2024-01-18T11:22:24+00:00", - "title": "Bournemouth vs Liverpool: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/bournemouth-vs-liverpool-fc-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2024-preview-b1133017.html", - "pubDate": "Thu, 18 Jan 2024 11:22:24 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2024-01-18T11:22:24+00:00", - "content": "

Reds could extend lead at the top of the Premier League

", - "contentSnippet": "Reds could extend lead at the top of the Premier League", - "guid": "b1133017", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T11:22:24.000Z" - }, - { - "creator": "Christopher McKeon", - "date": "2024-01-18T11:22:15+00:00", - "title": "Sunak insists his plan is working despite surprise hike in inflation", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-prime-minister-britain-people-inflation-b1133198.html", - "pubDate": "Thu, 18 Jan 2024 11:22:15 GMT", - "dc:creator": "Christopher McKeon", - "dc:date": "2024-01-18T11:22:15+00:00", - "content": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", - "contentSnippet": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", - "guid": "b1133198", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T11:22:15.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2024-01-18T11:21:31+00:00", - "title": "Liverpool XI vs Bournemouth: Predicted lineup, confirmed team news and injury latest for Premier League", - "link": "https://www.standard.co.uk/sport/football/liverpool-fc-xi-vs-bournemouth-predicted-lineup-confirmed-team-news-injury-latest-premier-league-2024-b1133191.html", - "pubDate": "Thu, 18 Jan 2024 11:21:31 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2024-01-18T11:21:31+00:00", - "content": "

Reds without host of big names to trip to south coast

", - "contentSnippet": "Reds without host of big names to trip to south coast", - "guid": "b1133191", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T11:21:31.000Z" - }, - { - "creator": "Holly Williams", - "date": "2024-01-18T11:20:28+00:00", - "title": "Naked Wines cutting jobs as sales continue to slide", - "link": "https://www.standard.co.uk/business/business-news/naked-wines-cutting-jobs-as-sales-continue-to-slide-b1133186.html", - "pubDate": "Thu, 18 Jan 2024 11:20:28 GMT", - "dc:creator": "Holly Williams", - "dc:date": "2024-01-18T11:20:28+00:00", - "content": "The online wine firm said jobs were being axed across \u2018all levels of the organisation\u2019 under plans to save another \u00a37 million a year.", - "contentSnippet": "The online wine firm said jobs were being axed across \u2018all levels of the organisation\u2019 under plans to save another \u00a37 million a year.", - "guid": "b1133186", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-18T11:20:28.000Z" - }, - { - "creator": "Ben Hatton", - "date": "2024-01-18T11:20:01+00:00", - "title": "Fujitsu will not bid for Government contracts during Horizon inquiry \u2013 minister", - "link": "https://www.standard.co.uk/news/politics/david-davis-japanese-cabinet-office-government-commons-b1133177.html", - "pubDate": "Thu, 18 Jan 2024 11:20:01 GMT", - "dc:creator": "Ben Hatton", - "dc:date": "2024-01-18T11:20:01+00:00", - "content": "Alex Burghart told the Commons the Japanese technology company has voluntarily undertaken not to seek contracts.", - "contentSnippet": "Alex Burghart told the Commons the Japanese technology company has voluntarily undertaken not to seek contracts.", - "guid": "b1133177", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T11:20:01.000Z" - }, - { - "creator": "Charlotte McLaughlin", - "date": "2024-01-18T11:19:31+00:00", - "title": "Inquiry into AI and impartiality in the media launched", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/house-of-lords-government-b1133174.html", - "pubDate": "Thu, 18 Jan 2024 11:19:31 GMT", - "dc:creator": "Charlotte McLaughlin", - "dc:date": "2024-01-18T11:19:31+00:00", - "content": "The deadline to submit evidence is February 12.", - "contentSnippet": "The deadline to submit evidence is February 12.", - "guid": "b1133174", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-18T11:19:31.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-18T11:19:25+00:00", - "title": "Best plus-size lingerie: 14 sexy styles for curvy women ", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/lingerie/best-plus-size-lingerie-online-a3757641.html", - "pubDate": "Thu, 18 Jan 2024 11:19:25 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-18T11:19:25+00:00", - "content": "

From bras to\u00a0babydolls, our edit of the sexiest underwear to have you feeling your foxiest

", - "contentSnippet": "From bras to\u00a0babydolls, our edit of the sexiest underwear to have you feeling your foxiest", - "guid": "a3757641", - "categories": [ - "Lingerie", - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T11:19:25.000Z" - }, - { - "creator": "Jonathan McCambridge", - "date": "2024-01-18T11:18:49+00:00", - "title": "Unions warn of escalating action as thousands strike across Northern Ireland", - "link": "https://www.standard.co.uk/business/business-news/unions-warn-of-escalating-action-as-thousands-strike-across-northern-ireland-b1133197.html", - "pubDate": "Thu, 18 Jan 2024 11:18:49 GMT", - "dc:creator": "Jonathan McCambridge", - "dc:date": "2024-01-18T11:18:49+00:00", - "content": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", - "contentSnippet": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", - "guid": "b1133197", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-18T11:18:49.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-18T11:18:38+00:00", - "title": "Red Sea shipping problems have \u2018limited impact\u2019 on products \u2013 Poundland owner", - "link": "https://www.standard.co.uk/business/business-news/red-sea-shipping-problems-have-limited-impact-on-products-poundland-owner-b1133161.html", - "pubDate": "Thu, 18 Jan 2024 11:18:38 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-18T11:18:38+00:00", - "content": "Global shipping has been forced to revert to its ancient routes as the Houthi group started hitting cargo ships.", - "contentSnippet": "Global shipping has been forced to revert to its ancient routes as the Houthi group started hitting cargo ships.", - "guid": "b1133161", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-18T11:18:38.000Z" - }, - { - "creator": "Rod Minchin", - "date": "2024-01-18T11:18:18+00:00", - "title": "Seal has plastic ring removed from its neck after six years of tracking", - "link": "https://www.standard.co.uk/news/uk/commuter-seal-cornwall-british-british-divers-marine-life-rescue-b1133170.html", - "pubDate": "Thu, 18 Jan 2024 11:18:18 GMT", - "dc:creator": "Rod Minchin", - "dc:date": "2024-01-18T11:18:18+00:00", - "content": "The male grey seal, named Commuter, was spotted off the north coast of Cornwall by wildlife experts.", - "contentSnippet": "The male grey seal, named Commuter, was spotted off the north coast of Cornwall by wildlife experts.", - "guid": "b1133170", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T11:18:18.000Z" - }, - { - "creator": "Ross Lydall", - "date": "2024-01-18T11:15:34+00:00", - "title": "Hammersmith Bridge: Thames crossing repair bill soars to \u00a3250million raising fears it won't ever reopen to traffic ", - "link": "https://www.standard.co.uk/news/london/hammersmith-bridge-repair-cost-when-will-it-reopen-to-traffic-b1133180.html", - "pubDate": "Thu, 18 Jan 2024 11:15:34 GMT", - "dc:creator": "Ross Lydall", - "dc:date": "2024-01-18T11:15:34+00:00", - "content": "

The latest estimate is up about \u00a3100million on previous expectations

", - "contentSnippet": "The latest estimate is up about \u00a3100million on previous expectations", - "guid": "b1133180", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-18T11:15:34.000Z" - }, - { - "creator": "Laura Elston", - "date": "2024-01-18T11:14:52+00:00", - "title": "Princess of Wales wished speedy recovery from surgery as she spends third day in hospital", - "link": "https://www.standard.co.uk/news/uk/kate-middleton-princess-of-wales-surgery-hospital-recovery-b1133182.html", - "pubDate": "Thu, 18 Jan 2024 11:14:52 GMT", - "dc:creator": "Laura Elston", - "dc:date": "2024-01-18T11:14:52+00:00", - "content": "

The princess was admitted on Tuesday and is not expected back on official duties until after Easter

", - "contentSnippet": "The princess was admitted on Tuesday and is not expected back on official duties until after Easter", - "guid": "b1133182", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T11:14:52.000Z" - }, - { - "creator": "Maddy Mussen", - "date": "2024-01-18T11:14:13+00:00", - "title": "Are Gen Z wrong to romanticise working class culture on TikTok? ", - "link": "https://www.standard.co.uk/lifestyle/tiktok-working-class-charvas-gen-z-b1130383.html", - "pubDate": "Thu, 18 Jan 2024 11:14:13 GMT", - "dc:creator": "Maddy Mussen", - "dc:date": "2024-01-18T11:14:13+00:00", - "content": "

The app is packed with trendy young types sinking pints at Wetherspoons, chomping down on fry ups and calling themselves 'charvas' \u2014 is this cosplaying offensive, or the ushering in of a new age? Maddy Mussen investigates

", - "contentSnippet": "The app is packed with trendy young types sinking pints at Wetherspoons, chomping down on fry ups and calling themselves 'charvas' \u2014 is this cosplaying offensive, or the ushering in of a new age? Maddy Mussen investigates", - "guid": "b1130383", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-18T11:14:13.000Z" - }, - { - "creator": "Ian Jones", - "date": "2024-01-18T11:13:34+00:00", - "title": "Flu patient numbers in England fall for first time this winter", - "link": "https://www.standard.co.uk/news/health/england-stephen-powis-nhs-ian-jones-b1133179.html", - "pubDate": "Thu, 18 Jan 2024 11:13:34 GMT", - "dc:creator": "Ian Jones", - "dc:date": "2024-01-18T11:13:34+00:00", - "content": "Health chiefs have warned the current cold snap could see a jump in people needing care.", - "contentSnippet": "Health chiefs have warned the current cold snap could see a jump in people needing care.", - "guid": "b1133179", - "categories": [ - "Health", - "News" - ], - "isoDate": "2024-01-18T11:13:34.000Z" - }, - { - "creator": "Ross Lydall", - "date": "2024-01-18T11:10:34+00:00", - "title": "Sadiq Khan reveals \u00a3500million pre-election spending splurge with more cash for police and Tube toilets ", - "link": "https://www.standard.co.uk/news/london/sadiq-khan-budget-city-hall-met-police-tube-mayoral-election-susan-hall-b1133141.html", - "pubDate": "Thu, 18 Jan 2024 11:10:34 GMT", - "dc:creator": "Ross Lydall", - "dc:date": "2024-01-18T11:10:34+00:00", - "content": "

Liberal Democrats' Caroline Pidgeon says mayor has 'magically' found 'pots of money that only a few weeks ago he was denying existed'

", - "contentSnippet": "Liberal Democrats' Caroline Pidgeon says mayor has 'magically' found 'pots of money that only a few weeks ago he was denying existed'", - "guid": "b1133141", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-18T11:10:34.000Z" - }, - { - "creator": "George Flood", - "date": "2024-01-18T11:09:47+00:00", - "title": "Senegal vs Cameroon: AFCON prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/senegal-vs-cameroon-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-afcon-2024-preview-b1132700.html", - "pubDate": "Thu, 18 Jan 2024 11:09:47 GMT", - "dc:creator": "George Flood", - "dc:date": "2024-01-18T11:09:47+00:00", - "content": "

The defending champions will hope to make it back-to-back victories against the five-time winners

", - "contentSnippet": "The defending champions will hope to make it back-to-back victories against the five-time winners", - "guid": "b1132700", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T11:09:47.000Z" - }, - { - "creator": "Claudia Cockerell and Ethan Croft", - "date": "2024-01-18T11:09:09+00:00", - "title": "From Glasto tickets to designer handbags: All the freebees MPs got last year", - "link": "https://www.standard.co.uk/news/londoners-diary/glastonbury-tickets-madonna-lana-del-rey-blur-billy-joel-freebees-mps-register-of-interests-b1132884.html", - "pubDate": "Thu, 18 Jan 2024 11:09:09 GMT", - "dc:creator": "Claudia Cockerell and Ethan Croft", - "dc:date": "2024-01-18T11:09:09+00:00", - "content": "

Looking to get Lana Del Rey tickets? It's easy, just become an MP

", - "contentSnippet": "Looking to get Lana Del Rey tickets? It's easy, just become an MP", - "guid": "b1132884", - "categories": [ - "Diary", - "News" - ], - "isoDate": "2024-01-18T11:09:09.000Z" - }, - { - "creator": "Jimi Famurewa", - "date": "2024-01-18T11:06:53+00:00", - "title": "Jimi Famurewa reviews Kebhouze: If this were a TV show, it would be Squid Game", - "link": "https://www.standard.co.uk/going-out/restaurants/kebhouze-london-review-oxford-street-b1132932.html", - "pubDate": "Thu, 18 Jan 2024 11:06:53 GMT", - "dc:creator": "Jimi Famurewa", - "dc:date": "2024-01-18T11:06:53+00:00", - "content": "

I left thoroughly depressed, says Jimi Famurewa, about what this place says about the decidedly \u201cthis\u2019ll do\u201d future of mainstream, TikTok-age dining

", - "contentSnippet": "I left thoroughly depressed, says Jimi Famurewa, about what this place says about the decidedly \u201cthis\u2019ll do\u201d future of mainstream, TikTok-age dining", - "guid": "b1132932", - "categories": [ - "Restaurants", - "Going Out" - ], - "isoDate": "2024-01-18T11:06:53.000Z" - }, - { - "creator": "William Mata,Sian Baldwin,Nuray Bulbul and Tamara Davison", - "date": "2024-01-18T11:06:02+00:00", - "title": "London mayoral election 2024: Who are the candidates taking on Sadiq Khan?", - "link": "https://www.standard.co.uk/news/politics/london-mayoral-election-2024-candidates-tory-labour-lib-dem-b1087397.html", - "pubDate": "Thu, 18 Jan 2024 11:06:02 GMT", - "dc:creator": "William Mata,Sian Baldwin,Nuray Bulbul and Tamara Davison", - "dc:date": "2024-01-18T11:06:02+00:00", - "content": "

The election will be held in May 2024, simultaneously with elections to the London Assembly and local elections

", - "contentSnippet": "The election will be held in May 2024, simultaneously with elections to the London Assembly and local elections", - "guid": "b1087397", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T11:06:02.000Z" - }, - { - "creator": "Simon English", - "date": "2024-01-18T11:05:13+00:00", - "title": "Maybe banking is harder than it looks", - "link": "https://www.standard.co.uk/business/banking-supermarkets-sainsburys-tesco-banks-deposits-loans-lending-savings-accounts-b1133181.html", - "pubDate": "Thu, 18 Jan 2024 11:05:13 GMT", - "dc:creator": "Simon English", - "dc:date": "2024-01-18T11:05:13+00:00", - "content": "

City Comment: Supermarkets tried and failed to disrupt the sector

", - "contentSnippet": "City Comment: Supermarkets tried and failed to disrupt the sector", - "guid": "b1133181", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T11:05:13.000Z" - }, - { - "creator": "Katrine Bussey", - "date": "2024-01-18T11:04:54+00:00", - "title": "TV drama on Eljamel could make ministers sit up and listen, campaigner suggests", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/humza-yousaf-scottish-government-post-office-liz-smith-scottish-b1133189.html", - "pubDate": "Thu, 18 Jan 2024 11:04:54 GMT", - "dc:creator": "Katrine Bussey", - "dc:date": "2024-01-18T11:04:54+00:00", - "content": "Jules Rose said the disgraced neurosurgeon\u2019s patients have been approached by production companies with a view to making a programme.", - "contentSnippet": "Jules Rose said the disgraced neurosurgeon\u2019s patients have been approached by production companies with a view to making a programme.", - "guid": "b1133189", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-18T11:04:54.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2024-01-18T11:02:29+00:00", - "title": "Senegal vs Cameroon lineups: Predicted XIs, confirmed team news and injury latest for AFCON game", - "link": "https://www.standard.co.uk/sport/football/senegal-vs-cameroon-lineups-predicted-xi-confirmed-team-news-injury-latest-afcon-2024-b1133183.html", - "pubDate": "Thu, 18 Jan 2024 11:02:29 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2024-01-18T11:02:29+00:00", - "content": "

Clash of the titans in Group C

", - "contentSnippet": "Clash of the titans in Group C", - "guid": "b1133183", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T11:02:29.000Z" - }, - { - "creator": "Nicky Rampley-Clarke", - "date": "2024-01-18T11:02:02+00:00", - "title": "Best men\u2019s shirt brands for 2024: Smart and casual shirts to refresh your wardrobe", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/mens/best-shirt-brands-for-men-formal-casual-b1007115.html", - "pubDate": "Thu, 18 Jan 2024 11:02:02 GMT", - "dc:creator": "Nicky Rampley-Clarke", - "dc:date": "2024-01-18T11:02:02+00:00", - "content": "

The sartorial guide for every man about town

", - "contentSnippet": "The sartorial guide for every man about town", - "guid": "b1007115", - "categories": [ - "Men's", - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T11:02:02.000Z" - }, - { - "creator": "Robbie Griffiths", - "date": "2024-01-18T11:00:46+00:00", - "title": "The Princess of Wales's health history revealed, as she recovers from abdominal surgery", - "link": "https://www.standard.co.uk/lifestyle/princess-of-wales-surgery-health-history-sickness-scar-b1133164.html", - "pubDate": "Thu, 18 Jan 2024 11:00:46 GMT", - "dc:creator": "Robbie Griffiths", - "dc:date": "2024-01-18T11:00:46+00:00", - "content": "

From Kate's debilitating morning sickness to the three-inch scar on her head, Robbie Griffiths runs through the future Queen's medical records

", - "contentSnippet": "From Kate's debilitating morning sickness to the three-inch scar on her head, Robbie Griffiths runs through the future Queen's medical records", - "guid": "b1133164", - "categories": [ - "Lifestyle" - ], - "isoDate": "2024-01-18T11:00:46.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-18T10:59:16+00:00", - "title": "Flutter loses out on US football results, but shares soar", - "link": "https://www.standard.co.uk/business/business-news/flutter-loses-out-on-us-football-results-but-shares-soar-b1133185.html", - "pubDate": "Thu, 18 Jan 2024 10:59:16 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-18T10:59:16+00:00", - "content": "The business said that \u2018customer friendly\u2019 sports results had cost it \u00a3270 million in the US in the fourth quarter.", - "contentSnippet": "The business said that \u2018customer friendly\u2019 sports results had cost it \u00a3270 million in the US in the fourth quarter.", - "guid": "b1133185", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-18T10:59:16.000Z" - }, - { - "creator": "Peter Bevan", - "date": "2024-01-18T10:59:07+00:00", - "title": "Best gifts for dad: Unique presents for your father", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/mens/best-useful-unique-gifts-dad-father-b1125586.html", - "pubDate": "Thu, 18 Jan 2024 10:59:07 GMT", - "dc:creator": "Peter Bevan", - "dc:date": "2024-01-18T10:59:07+00:00", - "content": "

From traditional gents to the modern man, these gifts cover all the bases

", - "contentSnippet": "From traditional gents to the modern man, these gifts cover all the bases", - "guid": "b1125586", - "categories": [ - "Men's", - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T10:59:07.000Z" - }, - { - "creator": "Pa Reporters", - "date": "2024-01-18T10:59:04+00:00", - "title": "In Pictures: Cold snap brings snow and ice to many parts of the UK", - "link": "https://www.standard.co.uk/news/environment/scotland-cambridgeshire-tynemouth-truro-north-yorkshire-b1133187.html", - "pubDate": "Thu, 18 Jan 2024 10:59:04 GMT", - "dc:creator": "Pa Reporters", - "dc:date": "2024-01-18T10:59:04+00:00", - "content": "Wednesday was the UK\u2019s coldest night of the winter so far.", - "contentSnippet": "Wednesday was the UK\u2019s coldest night of the winter so far.", - "guid": "b1133187", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2024-01-18T10:59:04.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2024-01-18T10:57:07+00:00", - "title": "Rishi Sunak urges Lords to \u2018do the right thing\u2019 and back Rwanda plan", - "link": "https://www.standard.co.uk/news/politics/rishi-sunak-house-of-lords-prime-minister-downing-street-supreme-court-b1133171.html", - "pubDate": "Thu, 18 Jan 2024 10:57:07 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2024-01-18T10:57:07+00:00", - "content": "The Prime Minister gave a press conference in Downing Street on Thursday.", - "contentSnippet": "The Prime Minister gave a press conference in Downing Street on Thursday.", - "guid": "b1133171", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T10:57:07.000Z" - }, - { - "creator": "Zo\u00eb Phillimore", - "date": "2024-01-18T10:56:02+00:00", - "title": "Best weighted blankets for kids: How to choose for your child", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-weighted-blankets-for-kids-b1029206.html", - "pubDate": "Thu, 18 Jan 2024 10:56:02 GMT", - "dc:creator": "Zo\u00eb Phillimore", - "dc:date": "2024-01-18T10:56:02+00:00", - "content": "

Snuggly blankets that can help reduce anxiety

", - "contentSnippet": "Snuggly blankets that can help reduce anxiety", - "guid": "b1029206", - "categories": [ - "Home Accessories", - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T10:56:02.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2024-01-18T10:53:49+00:00", - "title": "Best gifts for teenagers 2024: unique, practical and stylish options ", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/accessories/best-christmas-gifts-for-teenagers-b1105538.html", - "pubDate": "Thu, 18 Jan 2024 10:53:49 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2024-01-18T10:53:49+00:00", - "content": "

Impress your teens and tweens with the coolest presents

", - "contentSnippet": "Impress your teens and tweens with the coolest presents", - "guid": "b1105538", - "categories": [ - "Accessories", - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T10:53:49.000Z" - }, - { - "creator": "Sami Quadri", - "date": "2024-01-18T10:53:45+00:00", - "title": "Man pushed onto tracks at Westbourne Park Tube station ", - "link": "https://www.standard.co.uk/news/london/man-pushed-tracks-tube-west-london-westbourne-park-british-transport-police-b1133166.html", - "pubDate": "Thu, 18 Jan 2024 10:53:45 GMT", - "dc:creator": "Sami Quadri", - "dc:date": "2024-01-18T10:53:45+00:00", - "content": "

The man was waiting on an eastbound platform when he was approached

", - "contentSnippet": "The man was waiting on an eastbound platform when he was approached", - "guid": "b1133166", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-18T10:53:45.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2024-01-18T10:52:11+00:00", - "title": "Karim Benzema puts Premier League on alert as Arsenal and Chelsea hunt new striker", - "link": "https://www.standard.co.uk/sport/football/karim-benzema-arsenal-chelsea-fc-transfer-b1133178.html", - "pubDate": "Thu, 18 Jan 2024 10:52:11 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2024-01-18T10:52:11+00:00", - "content": "

Real Madrid icon is unhappy in Saudi Arabia and believes England move is possible this month

", - "contentSnippet": "Real Madrid icon is unhappy in Saudi Arabia and believes England move is possible this month", - "guid": "b1133178", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T10:52:11.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-18T10:46:42+00:00", - "title": "Best letterbox gifts to send to loved ones: Cocktail kits, charcuterie and more", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/best-letterbox-gifts-b1123573.html", - "pubDate": "Thu, 18 Jan 2024 10:46:42 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-18T10:46:42+00:00", - "content": "

It turns out good things really do come in small packages

", - "contentSnippet": "It turns out good things really do come in small packages", - "guid": "b1123573", - "categories": [ - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T10:46:42.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2024-01-18T10:46:27+00:00", - "title": "Best stair runners and carpets to step up your interior decorating game", - "link": "https://www.standard.co.uk/shopping/esbest/home-garden/best-stair-runners-carpet-b1132447.html", - "pubDate": "Thu, 18 Jan 2024 10:46:27 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2024-01-18T10:46:27+00:00", - "content": "

Take your homeware to new heights

", - "contentSnippet": "Take your homeware to new heights", - "guid": "b1132447", - "categories": [ - "Home & Garden", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T10:46:27.000Z" - }, - { - "creator": "William Mata", - "date": "2024-01-18T10:44:17+00:00", - "title": "How to get the cheapest UK train tickets, as research finds machines charge double online price", - "link": "https://www.standard.co.uk/news/transport/how-get-cheapest-uk-train-tickets-machines-app-b1133172.html", - "pubDate": "Thu, 18 Jan 2024 10:44:17 GMT", - "dc:creator": "William Mata", - "dc:date": "2024-01-18T10:44:17+00:00", - "content": "

The 12-week sweet spot for booking train tickets online

", - "contentSnippet": "The 12-week sweet spot for booking train tickets online", - "guid": "b1133172", - "categories": [ - "Transport", - "News" - ], - "isoDate": "2024-01-18T10:44:17.000Z" - }, - { - "creator": "August Graham", - "date": "2024-01-18T10:42:00+00:00", - "title": "Shares plummet by a third as Watches of Switzerland slashes outlook", - "link": "https://www.standard.co.uk/business/business-news/shares-plummet-by-a-third-as-watches-of-switzerland-slashes-outlook-b1133176.html", - "pubDate": "Thu, 18 Jan 2024 10:42:00 GMT", - "dc:creator": "August Graham", - "dc:date": "2024-01-18T10:42:00+00:00", - "content": "Revenue is expected to grow at a quarter of the pace previously guided, the business said after a tough Christmas.", - "contentSnippet": "Revenue is expected to grow at a quarter of the pace previously guided, the business said after a tough Christmas.", - "guid": "b1133176", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-18T10:42:00.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2024-01-18T10:41:29+00:00", - "title": "Best oil for scars to care for your skin after surgery or injury", - "link": "https://www.standard.co.uk/shopping/esbest/beauty/skincare/best-oil-for-scars-b1131932.html", - "pubDate": "Thu, 18 Jan 2024 10:41:29 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2024-01-18T10:41:29+00:00", - "content": "

Nourish your skin and improve its elasticity over time

", - "contentSnippet": "Nourish your skin and improve its elasticity over time", - "guid": "b1131932", - "categories": [ - "Skincare", - "Beauty", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T10:41:29.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-18T10:40:23+00:00", - "title": "Best Valentine\u2019s supermarket meal deals for 2024 from Waitrose, Morrisons and more", - "link": "https://www.standard.co.uk/shopping/esbest/valentines-day/best-valentines-day-supermarket-meal-deals-b1132246.html", - "pubDate": "Thu, 18 Jan 2024 10:40:23 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-18T10:40:23+00:00", - "content": "

A homecooked meal trumps a stuffy restaurant, any day - but especially on February 14

", - "contentSnippet": "A homecooked meal trumps a stuffy restaurant, any day - but especially on February 14", - "guid": "b1132246", - "categories": [ - "Valentine's Day", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T10:40:23.000Z" - }, - { - "creator": "Max McLean", - "date": "2024-01-18T10:40:12+00:00", - "title": "Surrey man, 36, is first with a pacemaker to take on World\u2019s Toughest Row", - "link": "https://www.standard.co.uk/news/uk/surrey-world-crossfit-atlantic-spain-b1133175.html", - "pubDate": "Thu, 18 Jan 2024 10:40:12 GMT", - "dc:creator": "Max McLean", - "dc:date": "2024-01-18T10:40:12+00:00", - "content": "Elliot Awin said he hopes to show people that \u2018you can still do stuff\u2019 after having a pacemaker fitted.", - "contentSnippet": "Elliot Awin said he hopes to show people that \u2018you can still do stuff\u2019 after having a pacemaker fitted.", - "guid": "b1133175", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T10:40:12.000Z" - }, - { - "creator": "Harry Stedman and Sami Quadri", - "date": "2024-01-18T10:39:44+00:00", - "title": "London weather: Temperatures plunge to -6C in capital as forecasters issue weekend storm warning ", - "link": "https://www.standard.co.uk/news/london/weather-forecast-met-office-cold-ice-snow-storm-temperatures-b1133122.html", - "pubDate": "Thu, 18 Jan 2024 10:39:44 GMT", - "dc:creator": "Harry Stedman and Sami Quadri", - "dc:date": "2024-01-18T10:39:44+00:00", - "content": "

Yellow ice warning in place over south-east England until 10am on Thursday

", - "contentSnippet": "Yellow ice warning in place over south-east England until 10am on Thursday", - "guid": "b1133122", - "categories": [ - "London", - "News" - ], - "isoDate": "2024-01-18T10:39:44.000Z" - }, - { - "creator": "Alan Jones", - "date": "2024-01-18T10:39:39+00:00", - "title": "Steel unions meeting Tata for talks over future of company", - "link": "https://www.standard.co.uk/business/business-news/steel-unions-meeting-tata-for-talks-over-future-of-company-b1133104.html", - "pubDate": "Thu, 18 Jan 2024 10:39:39 GMT", - "dc:creator": "Alan Jones", - "dc:date": "2024-01-18T10:39:39+00:00", - "content": "There have been fears of heavy job losses, especially at the plant in Port Talbot.", - "contentSnippet": "There have been fears of heavy job losses, especially at the plant in Port Talbot.", - "guid": "b1133104", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-18T10:39:39.000Z" - }, - { - "creator": "John Dunne", - "date": "2024-01-18T10:38:11+00:00", - "title": "Burglar in \u00a326m raid on Tamara Ecclestone's Kensington mansion 'freed from jail after two years'", - "link": "https://www.standard.co.uk/news/crime/tamara-eccelstone-burglary-kensington-london-alessandro-donati-prison-release-b1133140.html", - "pubDate": "Thu, 18 Jan 2024 10:38:11 GMT", - "dc:creator": "John Dunne", - "dc:date": "2024-01-18T10:38:11+00:00", - "content": "

Alessandro Donati was given an eight-year sentence in November 2021 for ransacking celebrity homes

", - "contentSnippet": "Alessandro Donati was given an eight-year sentence in November 2021 for ransacking celebrity homes", - "guid": "b1133140", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2024-01-18T10:38:11.000Z" - }, - { - "creator": "Matt Majendie", - "date": "2024-01-18T10:38:04+00:00", - "title": "Australian Open: Cameron Norrie survives scare from Italian qualifier to reach third round", - "link": "https://www.standard.co.uk/sport/tennis/cameron-norrie-australian-open-b1133123.html", - "pubDate": "Thu, 18 Jan 2024 10:38:04 GMT", - "dc:creator": "Matt Majendie", - "dc:date": "2024-01-18T10:38:04+00:00", - "content": "

Giulio Zeppieri gives the British No1 a real fright before being defeated in Melbourne

", - "contentSnippet": "Giulio Zeppieri gives the British No1 a real fright before being defeated in Melbourne", - "guid": "b1133123", - "categories": [ - "Tennis", - "Sport" - ], - "isoDate": "2024-01-18T10:38:04.000Z" - }, - { - "creator": "Jonathan McCambridge", - "date": "2024-01-18T10:37:25+00:00", - "title": "Northern Ireland\u2019s public sector strikes \u2013 who is taking action and why", - "link": "https://www.standard.co.uk/news/uk/northern-ireland-chris-heatonharris-stormont-workers-dup-b1133173.html", - "pubDate": "Thu, 18 Jan 2024 10:37:25 GMT", - "dc:creator": "Jonathan McCambridge", - "dc:date": "2024-01-18T10:37:25+00:00", - "content": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", - "contentSnippet": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", - "guid": "b1133173", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T10:37:25.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2024-01-18T10:37:08+00:00", - "title": "Best patchwork jeans for serving hippie Sixties style", - "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-patchwork-jeans-b1127757.html", - "pubDate": "Thu, 18 Jan 2024 10:37:08 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2024-01-18T10:37:08+00:00", - "content": "

Peace, love and patchwork jeans

", - "contentSnippet": "Peace, love and patchwork jeans", - "guid": "b1127757", - "categories": [ - "Fashion", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T10:37:08.000Z" - }, - { - "creator": "Andrew Williams", - "date": "2024-01-18T10:37:08+00:00", - "title": "Google Maps can now stay connected in tunnels thanks to latest update \u2013 here's how to turn on the new setting", - "link": "https://www.standard.co.uk/news/tech/google-maps-stay-connected-tunnels-bluetooth-underground-setting-b1133159.html", - "pubDate": "Thu, 18 Jan 2024 10:37:08 GMT", - "dc:creator": "Andrew Williams", - "dc:date": "2024-01-18T10:37:08+00:00", - "content": "

Google Maps can now interface with Bluetooth beacons in tunnels to retain signal underground

", - "contentSnippet": "Google Maps can now interface with Bluetooth beacons in tunnels to retain signal underground", - "guid": "b1133159", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2024-01-18T10:37:08.000Z" - }, - { - "creator": "Dr Andrew Jenkinson ", - "date": "2024-01-18T10:34:05+00:00", - "title": "How your diet might be messing with the body's weight control centre", - "link": "https://www.standard.co.uk/lifestyle/wellness/leptin-hormone-weight-control-centre-diet-ultra-processed-foods-b1130026.html", - "pubDate": "Thu, 18 Jan 2024 10:34:05 GMT", - "dc:creator": "Dr Andrew Jenkinson ", - "dc:date": "2024-01-18T10:34:05+00:00", - "content": "

Never heard of leptin? Author Dr Andrew Jenkinson explains the vital role of the weight control hormone and the effects that your favourite snacks might be having on it

", - "contentSnippet": "Never heard of leptin? Author Dr Andrew Jenkinson explains the vital role of the weight control hormone and the effects that your favourite snacks might be having on it", - "guid": "b1130026", - "categories": [ - "Wellness", - "Lifestyle" - ], - "isoDate": "2024-01-18T10:34:05.000Z" - }, - { - "creator": "William Mata", - "date": "2024-01-18T10:32:47+00:00", - "title": "Will there be a game called Fifa 24? Gianni Infantino not giving up on project superior to EA Sports", - "link": "https://www.standard.co.uk/culture/gaming/fifa-24-fc-ea-sports-football-gianni-infanino-b1133150.html", - "pubDate": "Thu, 18 Jan 2024 10:32:47 GMT", - "dc:creator": "William Mata", - "dc:date": "2024-01-18T10:32:47+00:00", - "content": "

President of Fifa insists that series is not over \u2013 despite FC 2024 now being gamers' choice

", - "contentSnippet": "President of Fifa insists that series is not over \u2013 despite FC 2024 now being gamers' choice", - "guid": "b1133150", - "categories": [ - "Gaming", - "Culture" - ], - "isoDate": "2024-01-18T10:32:47.000Z" - }, - { - "creator": "City Staff", - "date": "2024-01-18T10:22:18+00:00", - "title": "FTSE 100 Live 18 January: Blue-chips steady after big fall yesterday, Watches of Switzerland profit warning", - "link": "https://www.standard.co.uk/business/ftse-100-live-18-january-sainsburys-bank-hipgnosis-the-works-currys-bonds-gilts-mortgages-interest-rates-inflation-flutter-b1133099.html", - "pubDate": "Thu, 18 Jan 2024 10:22:18 GMT", - "dc:creator": "City Staff", - "dc:date": "2024-01-18T10:22:18+00:00", - "content": "

Shares in Flutter Entertainment and electricals chain Currys today bounced in a session when a profit warning sent Watches of Switzerland sharply lower.

", - "contentSnippet": "Shares in Flutter Entertainment and electricals chain Currys today bounced in a session when a profit warning sent Watches of Switzerland sharply lower.", - "guid": "b1133099", - "categories": [ - "Business" - ], - "isoDate": "2024-01-18T10:22:18.000Z" - }, - { - "creator": "David Smyth", - "date": "2024-01-18T10:22:15+00:00", - "title": "Sleater-Kinney - Little Rope album review: raw, anthemic power", - "link": "https://www.standard.co.uk/culture/music/sleaterkinney-little-rope-carrie-brownstein-corin-tucker-album-review-b1133165.html", - "pubDate": "Thu, 18 Jan 2024 10:22:15 GMT", - "dc:creator": "David Smyth", - "dc:date": "2024-01-18T10:22:15+00:00", - "content": "

These powerful songs capture both fear and menace with a gripping potency

", - "contentSnippet": "These powerful songs capture both fear and menace with a gripping potency", - "guid": "b1133165", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2024-01-18T10:22:15.000Z" - }, - { - "creator": "Jonathan McCambridge", - "date": "2024-01-18T10:16:56+00:00", - "title": "O\u2019Neill says she has not given up on powersharing at Stormont", - "link": "https://www.standard.co.uk/news/uk/dup-stormont-governments-sinn-fein-northern-ireland-b1133169.html", - "pubDate": "Thu, 18 Jan 2024 10:16:56 GMT", - "dc:creator": "Jonathan McCambridge", - "dc:date": "2024-01-18T10:16:56+00:00", - "content": "The Sinn Fein vice president said there had to be a plan B if the powersharing institutions are not restored.", - "contentSnippet": "The Sinn Fein vice president said there had to be a plan B if the powersharing institutions are not restored.", - "guid": "b1133169", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T10:16:56.000Z" - }, - { - "creator": "Vicky Shaw", - "date": "2024-01-18T10:15:41+00:00", - "title": "Mortgage and credit card default rates jumped in run-up to Christmas \u2013 lenders", - "link": "https://www.standard.co.uk/business/money/mortgage-and-credit-card-default-rates-jumped-in-runup-to-christmas-lenders-b1133167.html", - "pubDate": "Thu, 18 Jan 2024 10:15:41 GMT", - "dc:creator": "Vicky Shaw", - "dc:date": "2024-01-18T10:15:41+00:00", - "content": "Default rates on mortgages and other types of lending are expected to increase in early 2024, according to a Bank of England survey of lenders.", - "contentSnippet": "Default rates on mortgages and other types of lending are expected to increase in early 2024, according to a Bank of England survey of lenders.", - "guid": "b1133167", - "categories": [ - "Money", - "Business" - ], - "isoDate": "2024-01-18T10:15:41.000Z" - }, - { - "creator": "Dominic McGrath", - "date": "2024-01-18T10:11:48+00:00", - "title": "Sunak set to hold press conference after winning key Commons vote on Rwanda Bill", - "link": "https://www.standard.co.uk/news/politics/prime-minister-house-of-lords-rwanda-suella-braverman-commons-b1133142.html", - "pubDate": "Thu, 18 Jan 2024 10:11:48 GMT", - "dc:creator": "Dominic McGrath", - "dc:date": "2024-01-18T10:11:48+00:00", - "content": "The Prime Minister now faces a showdown with the House of Lords over his Rwanda plan.", - "contentSnippet": "The Prime Minister now faces a showdown with the House of Lords over his Rwanda plan.", - "guid": "b1133142", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2024-01-18T10:11:48.000Z" - }, - { - "creator": "Dom Smith", - "date": "2024-01-18T10:06:11+00:00", - "title": "Roy Hodgson addresses Crystal Palace fan fury and explains Eberechi Eze decision", - "link": "https://www.standard.co.uk/sport/football/crystal-palace-roy-hodgson-eberechi-eze-b1133157.html", - "pubDate": "Thu, 18 Jan 2024 10:06:11 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2024-01-18T10:06:11+00:00", - "content": "

Eagles supporters were fuming with the second-half substitution in FA Cup loss to Everton

", - "contentSnippet": "Eagles supporters were fuming with the second-half substitution in FA Cup loss to Everton", - "guid": "b1133157", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2024-01-18T10:06:11.000Z" - }, - { - "creator": "Abha Shah", - "date": "2024-01-18T10:02:55+00:00", - "title": "Best Valentine\u2019s Day flower bouquets in the UK to order online for delivery", - "link": "https://www.standard.co.uk/shopping/esbest/valentines-day/best-valentines-day-flowers-b1132248.html", - "pubDate": "Thu, 18 Jan 2024 10:02:55 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2024-01-18T10:02:55+00:00", - "content": "

Blooms to fall for

", - "contentSnippet": "Blooms to fall for", - "guid": "b1132248", - "categories": [ - "Valentine's Day", - "ES Best Home", - "Shopping" - ], - "isoDate": "2024-01-18T10:02:55.000Z" - }, - { - "creator": "Isobel Van Dyke", - "date": "2024-01-18T10:01:10+00:00", - "title": "Rachel Chinouriri: 'Indie-rock was always white boy bands. I would\u2019ve liked to see a Black woman doing it'", - "link": "https://www.standard.co.uk/culture/music/rachel-chinouriri-florence-pugh-debut-album-interview-b1132930.html", - "pubDate": "Thu, 18 Jan 2024 10:01:10 GMT", - "dc:creator": "Isobel Van Dyke", - "dc:date": "2024-01-18T10:01:10+00:00", - "content": "

Rachel Chinouriri loved the white boy band thing, but there wasn\u2019t anyone like her doing it. Now her devastating debut album is about to change all that. Isobel Van Dyke meets a new star about to brighten 2024

", - "contentSnippet": "Rachel Chinouriri loved the white boy band thing, but there wasn\u2019t anyone like her doing it. Now her devastating debut album is about to change all that. Isobel Van Dyke meets a new star about to brighten 2024", - "guid": "b1132930", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2024-01-18T10:01:10.000Z" - }, - { - "creator": "Anna Wise", - "date": "2024-01-18T09:53:22+00:00", - "title": "Currys reveals slow festive sales as consumers remain \u2018hard-pressed\u2019", - "link": "https://www.standard.co.uk/business/business-news/currys-reveals-slow-festive-sales-as-consumers-remain-hardpressed-b1133151.html", - "pubDate": "Thu, 18 Jan 2024 09:53:22 GMT", - "dc:creator": "Anna Wise", - "dc:date": "2024-01-18T09:53:22+00:00", - "content": "But the electricals retailer said its profit for the year is likely to be higher than previously expected despite challenging conditions.", - "contentSnippet": "But the electricals retailer said its profit for the year is likely to be higher than previously expected despite challenging conditions.", - "guid": "b1133151", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-18T09:53:22.000Z" - }, - { - "creator": "Holly Williams", - "date": "2024-01-18T09:52:59+00:00", - "title": "Travis Perkins reveals year-end job losses and signals further staff cuts", - "link": "https://www.standard.co.uk/business/business-news/travis-perkins-reveals-yearend-job-losses-and-signals-further-staff-cuts-b1133148.html", - "pubDate": "Thu, 18 Jan 2024 09:52:59 GMT", - "dc:creator": "Holly Williams", - "dc:date": "2024-01-18T09:52:59+00:00", - "content": "The firm is ramping up cost-cutting efforts to save about \u00a335 million a year amid a construction sector slowdown.", - "contentSnippet": "The firm is ramping up cost-cutting efforts to save about \u00a335 million a year amid a construction sector slowdown.", - "guid": "b1133148", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-18T09:52:59.000Z" - }, - { - "creator": "Patrick Daly", - "date": "2024-01-18T09:51:18+00:00", - "title": "Hunt to tell Davos summit: Britain is on the up and open for business", - "link": "https://www.standard.co.uk/business/business-news/hunt-to-tell-davos-summit-britain-is-on-the-up-and-open-for-business-b1133117.html", - "pubDate": "Thu, 18 Jan 2024 09:51:18 GMT", - "dc:creator": "Patrick Daly", - "dc:date": "2024-01-18T09:51:18+00:00", - "content": "Jeremy Hunt will be the first UK chancellor to attend the World Economic Forum in five years.", - "contentSnippet": "Jeremy Hunt will be the first UK chancellor to attend the World Economic Forum in five years.", - "guid": "b1133117", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2024-01-18T09:51:18.000Z" - }, - { - "creator": "Hannah Roberts", - "date": "2024-01-18T09:50:12+00:00", - "title": "Lesley Lokko to receive top architecture award presented on behalf of the King", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/royal-institute-of-british-architects-charles-scottish-london-obe-b1133115.html", - "pubDate": "Thu, 18 Jan 2024 09:50:12 GMT", - "dc:creator": "Hannah Roberts", - "dc:date": "2024-01-18T09:50:12+00:00", - "content": "The Ghanaian-Scottish architect and educator will be formally presented with the award in London on May 2.", - "contentSnippet": "The Ghanaian-Scottish architect and educator will be formally presented with the award in London on May 2.", - "guid": "b1133115", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2024-01-18T09:50:12.000Z" - }, - { - "creator": "Robert Jobson and Lydia Chantler-Hicks", - "date": "2024-01-18T09:49:05+00:00", - "title": "Princess of Wales 'doing well' in hospital after abdominal surgery as William postpones duties ", - "link": "https://www.standard.co.uk/news/uk/kate-princess-of-wales-hospital-abdominal-surgery-william-kensington-palace-b1132967.html", - "pubDate": "Thu, 18 Jan 2024 09:49:05 GMT", - "dc:creator": "Robert Jobson and Lydia Chantler-Hicks", - "dc:date": "2024-01-18T09:49:05+00:00", - "content": "

Prince of Wales is stepping back from official duties to support wife and children

", - "contentSnippet": "Prince of Wales is stepping back from official duties to support wife and children", - "guid": "b1132967", - "categories": [ - "UK", - "News" - ], - "isoDate": "2024-01-18T09:49:05.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2023-10-27T12:57:33+00:00", - "title": "Apple Watch users warn of overheating and battery drain after software update", - "link": "https://www.standard.co.uk/news/tech/apple-watch-overheating-battery-drain-software-update-b1116398.html", - "pubDate": "Fri, 27 Oct 2023 12:57:33 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2023-10-27T12:57:33+00:00", - "content": "

Some users say their Apple Watches are losing power even while charging

", - "contentSnippet": "Some users say their Apple Watches are losing power even while charging", - "guid": "b1116398", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-10-27T12:57:33.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-10-27T12:52:19+00:00", - "title": "Manchester United XI vs Man City: Casemiro injury latest, predicted lineup and confirmed team news", - "link": "https://www.standard.co.uk/sport/football/man-utd-xi-vs-man-city-casemiro-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1116314.html", - "pubDate": "Fri, 27 Oct 2023 12:52:19 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-10-27T12:52:19+00:00", - "content": "

Red Devils set to include fit-again Brazilian in team for Sunday's derby

", - "contentSnippet": "Red Devils set to include fit-again Brazilian in team for Sunday's derby", - "guid": "b1116314", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T12:52:19.000Z" - }, - { - "creator": "Lola Christina Alao", - "date": "2023-10-27T12:47:56+00:00", - "title": "What is Taylor Swift's net worth? Singer reportedly becomes a billionaire", - "link": "https://www.standard.co.uk/showbiz/taylor-swift-net-worth-earnings-billionaire-b1116405.html", - "pubDate": "Fri, 27 Oct 2023 12:47:56 GMT", - "dc:creator": "Lola Christina Alao", - "dc:date": "2023-10-27T12:47:56+00:00", - "content": "

Taylor Swift's portfolio is forever growing

", - "contentSnippet": "Taylor Swift's portfolio is forever growing", - "guid": "b1116405", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T12:47:56.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2023-10-27T12:45:27+00:00", - "title": "Chelsea XI vs Brentford: Reece James injury latest, predicted lineup and confirmed team news", - "link": "https://www.standard.co.uk/sport/football/chelsea-fc-xi-vs-brentford-reece-james-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1116402.html", - "pubDate": "Fri, 27 Oct 2023 12:45:27 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2023-10-27T12:45:27+00:00", - "content": "

Mauricio Pochettino could name unchanged line-up with seven out

", - "contentSnippet": "Mauricio Pochettino could name unchanged line-up with seven out", - "guid": "b1116402", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T12:45:27.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2023-10-27T12:44:52+00:00", - "title": "Christopher Nkunku 'very close' to Chelsea injury return, Mauricio Pochettino confirms", - "link": "https://www.standard.co.uk/sport/football/christopher-nkunku-chelsea-fc-injury-debut-mauricio-pochettino-b1116427.html", - "pubDate": "Fri, 27 Oct 2023 12:44:52 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2023-10-27T12:44:52+00:00", - "content": "

Potential return date set for \u00a347m signing by Chelsea boss

", - "contentSnippet": "Potential return date set for \u00a347m signing by Chelsea boss", - "guid": "b1116427", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T12:44:52.000Z" - }, - { - "creator": "Ted Hennessey and Lydia Chantler-Hicks", - "date": "2023-10-27T12:44:23+00:00", - "title": "Search for four sailors missing after British cargo ship sank is called off", - "link": "https://www.standard.co.uk/news/uk/verity-cargo-ship-sunk-north-sea-germany-missing-sailors-b1116403.html", - "pubDate": "Fri, 27 Oct 2023 12:44:23 GMT", - "dc:creator": "Ted Hennessey and Lydia Chantler-Hicks", - "dc:date": "2023-10-27T12:44:23+00:00", - "content": "

One man died after British-flagged Verity collided with a larger cargo ship in the North Sea

", - "contentSnippet": "One man died after British-flagged Verity collided with a larger cargo ship in the North Sea", - "guid": "b1116403", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T12:44:23.000Z" - }, - { - "creator": "Stephanie Wareham", - "date": "2023-10-27T12:40:55+00:00", - "title": "\u2018Dangerous\u2019 gang kidnapped and tortured men in return for cash and jewellery", - "link": "https://www.standard.co.uk/news/crime/south-wales-police-cardiff-hemel-hempstead-northwick-park-hospital-rolex-b1116431.html", - "pubDate": "Fri, 27 Oct 2023 12:40:55 GMT", - "dc:creator": "Stephanie Wareham", - "dc:date": "2023-10-27T12:40:55+00:00", - "content": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", - "contentSnippet": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", - "guid": "b1116431", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T12:40:55.000Z" - }, - { - "creator": "Simon Collings", - "date": "2023-10-27T12:39:57+00:00", - "title": "Arsenal hit by major double injury blow as Gabriel Jesus and Thomas Partey face weeks out", - "link": "https://www.standard.co.uk/sport/football/arsenal-fc-injury-news-gabriel-jesus-thomas-partey-b1116426.html", - "pubDate": "Fri, 27 Oct 2023 12:39:57 GMT", - "dc:creator": "Simon Collings", - "dc:date": "2023-10-27T12:39:57+00:00", - "content": "

The Gunners duo have both picked up muscle injuries

", - "contentSnippet": "The Gunners duo have both picked up muscle injuries", - "guid": "b1116426", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T12:39:57.000Z" - }, - { - "creator": "Simon Hunt", - "date": "2023-10-27T12:37:22+00:00", - "title": "Billionaire Issa brothers admit errors in letter to MPs on Asda offshore ownership", - "link": "https://www.standard.co.uk/business/billionaire-issa-brothers-errors-letter-mps-asda-offshore-jersey-b1116429.html", - "pubDate": "Fri, 27 Oct 2023 12:37:22 GMT", - "dc:creator": "Simon Hunt", - "dc:date": "2023-10-27T12:37:22+00:00", - "content": "

The billionaire Issa brothers have admitted submitting error-strewn evidence to MPs about the complex offshore ownership structure known as \u2018Bellis\u2019 that they created for Asda after acquiring the supermarket in 2021.

", - "contentSnippet": "The billionaire Issa brothers have admitted submitting error-strewn evidence to MPs about the complex offshore ownership structure known as \u2018Bellis\u2019 that they created for Asda after acquiring the supermarket in 2021.", - "guid": "b1116429", - "categories": [ - "Business" - ], - "isoDate": "2023-10-27T12:37:22.000Z" - }, - { - "creator": "Simon Collings", - "date": "2023-10-27T12:34:47+00:00", - "title": "Arsenal XI vs Sheffield United: Gabriel Jesus injury latest, predicted lineup and confirmed team news", - "link": "https://www.standard.co.uk/sport/football/arsenal-xi-vs-sheff-utd-gabriel-jesus-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1116312.html", - "pubDate": "Fri, 27 Oct 2023 12:34:47 GMT", - "dc:creator": "Simon Collings", - "dc:date": "2023-10-27T12:34:47+00:00", - "content": "

Arsenal lose injured duo for visit of the Blades

", - "contentSnippet": "Arsenal lose injured duo for visit of the Blades", - "guid": "b1116312", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T12:34:47.000Z" - }, - { - "creator": "Nina Lloyd", - "date": "2023-10-27T12:34:11+00:00", - "title": "UK ministers continue to resist calls for ceasefire in Middle East", - "link": "https://www.standard.co.uk/news/politics/gillian-keegan-government-israel-middle-east-hamas-b1116352.html", - "pubDate": "Fri, 27 Oct 2023 12:34:11 GMT", - "dc:creator": "Nina Lloyd", - "dc:date": "2023-10-27T12:34:11+00:00", - "content": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", - "contentSnippet": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", - "guid": "b1116352", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T12:34:11.000Z" - }, - { - "creator": "Joseph Draper", - "date": "2023-10-27T12:33:38+00:00", - "title": "Children leave teddies outside Foreign Office as part of call for Gaza ceasefire", - "link": "https://www.standard.co.uk/news/politics/gaza-foreign-office-hamas-children-uk-government-b1116411.html", - "pubDate": "Fri, 27 Oct 2023 12:33:38 GMT", - "dc:creator": "Joseph Draper", - "dc:date": "2023-10-27T12:33:38+00:00", - "content": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", - "contentSnippet": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", - "guid": "b1116411", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T12:33:38.000Z" - }, - { - "creator": "Jonathan Kanengoni and El Hunt", - "date": "2023-10-27T12:30:36+00:00", - "title": "Our music recommendations: What we\u2019re listening to this week, from Taylor Swift to Bad Boy Chiller Crew", - "link": "https://www.standard.co.uk/culture/music/music-recommendations-what-were-listening-to-now-b74803.html", - "pubDate": "Fri, 27 Oct 2023 12:30:36 GMT", - "dc:creator": "Jonathan Kanengoni and El Hunt", - "dc:date": "2023-10-27T12:30:36+00:00", - "content": "

These are the tunes you need in your life

", - "contentSnippet": "These are the tunes you need in your life", - "guid": "b74803", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-10-27T12:30:36.000Z" - }, - { - "creator": "Isabelle Aron", - "date": "2023-10-27T12:29:25+00:00", - "title": "20 cosy winter seaside breaks in the UK", - "link": "https://www.standard.co.uk/lifestyle/travel/cosy-winter-seaside-breaks-uk-b1115301.html", - "pubDate": "Fri, 27 Oct 2023 12:29:25 GMT", - "dc:creator": "Isabelle Aron", - "dc:date": "2023-10-27T12:29:25+00:00", - "content": "

Who says you can only go to the seaside in summer? Isabelle Aron rounds up the best spots for a UK winter break by the sea

", - "contentSnippet": "Who says you can only go to the seaside in summer? Isabelle Aron rounds up the best spots for a UK winter break by the sea", - "guid": "b1115301", - "categories": [ - "Travel", - "Lifestyle" - ], - "isoDate": "2023-10-27T12:29:25.000Z" - }, - { - "creator": "Beril Naz Hassan", - "date": "2023-10-27T12:28:53+00:00", - "title": "Which album will Taylor Swift re-record next?\u00a01989 finally arrives", - "link": "https://www.standard.co.uk/culture/music/taylor-swift-next-re-record-release-album-b1116415.html", - "pubDate": "Fri, 27 Oct 2023 12:28:53 GMT", - "dc:creator": "Beril Naz Hassan", - "dc:date": "2023-10-27T12:28:53+00:00", - "content": "

Fans have been counting down to the release of the re-recorded 1989 album for quite some time now

", - "contentSnippet": "Fans have been counting down to the release of the re-recorded 1989 album for quite some time now", - "guid": "b1116415", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-10-27T12:28:53.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-10-27T12:25:39+00:00", - "title": "Liverpool: Jurgen Klopp admits he didn't realise Mohamed Salah had broken another English football record", - "link": "https://www.standard.co.uk/sport/football/mohamed-salah-record-liverpool-fc-jurgen-klopp-b1116424.html", - "pubDate": "Fri, 27 Oct 2023 12:25:39 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-10-27T12:25:39+00:00", - "content": "

Egyptian surpassed Thierry Henry's goal record in European football

", - "contentSnippet": "Egyptian surpassed Thierry Henry's goal record in European football", - "guid": "b1116424", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T12:25:39.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2023-10-27T12:24:51+00:00", - "title": "Al Pacino and Noor Alfallah reach custody, visitation and child support agreement for baby son", - "link": "https://www.standard.co.uk/showbiz/al-pacino-noor-alfallah-reach-custody-visitation-child-support-agreement-baby-son-roman-b1116385.html", - "pubDate": "Fri, 27 Oct 2023 12:24:51 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2023-10-27T12:24:51+00:00", - "content": "

The couple welcomed son Roman together almost five months ago

", - "contentSnippet": "The couple welcomed son Roman together almost five months ago", - "guid": "b1116385", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T12:24:51.000Z" - }, - { - "creator": "Emily Pennink", - "date": "2023-10-27T12:21:46+00:00", - "title": "\u2018Terrorist\u2019 ex-GCHQ worker launched knife attack on US spy, court told", - "link": "https://www.standard.co.uk/news/crime/cheltenham-national-security-agency-old-bailey-cctv-b1116404.html", - "pubDate": "Fri, 27 Oct 2023 12:21:46 GMT", - "dc:creator": "Emily Pennink", - "dc:date": "2023-10-27T12:21:46+00:00", - "content": "Joshua Bowles, 29, described himself as a \u2018terrorist\u2019 to police after the attack in Cheltenham on March 9.", - "contentSnippet": "Joshua Bowles, 29, described himself as a \u2018terrorist\u2019 to police after the attack in Cheltenham on March 9.", - "guid": "b1116404", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T12:21:46.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2023-10-27T12:20:48+00:00", - "title": "Kremlin denies claim that Vladimir Putin died from cancer as 'absurd'", - "link": "https://www.standard.co.uk/news/world/vladimir-putin-cancer-heart-attack-russia-kremlin-b1116309.html", - "pubDate": "Fri, 27 Oct 2023 12:20:48 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2023-10-27T12:20:48+00:00", - "content": "

Kremlin rejects claims of Putin's poor ill-health and even death as 'absurd information'

", - "contentSnippet": "Kremlin rejects claims of Putin's poor ill-health and even death as 'absurd information'", - "guid": "b1116309", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-10-27T12:20:48.000Z" - }, - { - "creator": "Sam Russell", - "date": "2023-10-27T12:15:00+00:00", - "title": "Man denies phone linked to Mark Cavendish robbery is his", - "link": "https://www.standard.co.uk/news/crime/mark-cavendish-peta-cavendish-chelmsford-crown-court-dna-ongar-b1116417.html", - "pubDate": "Fri, 27 Oct 2023 12:15:00 GMT", - "dc:creator": "Sam Russell", - "dc:date": "2023-10-27T12:15:00+00:00", - "content": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", - "contentSnippet": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", - "guid": "b1116417", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T12:15:00.000Z" - }, - { - "creator": "Nicholas Cecil,Jordan King and Bill McLoughlin", - "date": "2023-10-27T12:14:48+00:00", - "title": "Israel launches second overnight raid in Gaza as US strikes military sites in Syria", - "link": "https://www.standard.co.uk/news/world/us-airstrikes-syria-pentagon-biden-iran-israel-hamas-gaza-latest-b1116298.html", - "pubDate": "Fri, 27 Oct 2023 12:14:48 GMT", - "dc:creator": "Nicholas Cecil,Jordan King and Bill McLoughlin", - "dc:date": "2023-10-27T12:14:48+00:00", - "content": "

It comes as US fighter jets struck weapons and ammunition dumps in Syria in retaliation for attacks on America forces by Iranian-backed militia

", - "contentSnippet": "It comes as US fighter jets struck weapons and ammunition dumps in Syria in retaliation for attacks on America forces by Iranian-backed militia", - "guid": "b1116298", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-10-27T12:14:48.000Z" - }, - { - "creator": "Ellie Davis", - "date": "2023-10-27T12:14:04+00:00", - "title": "Best laptop deals to expect for Black Friday 2023 from Dell, HP and more", - "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-laptop-deals-black-friday-sale-b1113871.html", - "pubDate": "Fri, 27 Oct 2023 12:14:04 GMT", - "dc:creator": "Ellie Davis", - "dc:date": "2023-10-27T12:14:04+00:00", - "content": "

Stream, browse and game with fast loading times for less

", - "contentSnippet": "Stream, browse and game with fast loading times for less", - "guid": "b1113871", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-10-27T12:14:04.000Z" - }, - { - "creator": "Lizzie Edmonds", - "date": "2023-10-27T12:10:13+00:00", - "title": "Sir Elton John praises Madonna's AIDS tribute ending decades-long feud", - "link": "https://www.standard.co.uk/showbiz/madonna-sir-elton-john-aids-tribute-feud-b1116367.html", - "pubDate": "Fri, 27 Oct 2023 12:10:13 GMT", - "dc:creator": "Lizzie Edmonds", - "dc:date": "2023-10-27T12:10:13+00:00", - "content": "

Titans of pop Sir Elton and Madonna have been fighting since 2002

", - "contentSnippet": "Titans of pop Sir Elton and Madonna have been fighting since 2002", - "guid": "b1116367", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T12:10:13.000Z" - }, - { - "creator": "Anthony France", - "date": "2023-10-27T12:09:24+00:00", - "title": "London torture gang poured boiling water over kidnap victim ", - "link": "https://www.standard.co.uk/news/crime/london-torture-gang-cardiff-cps-fortune-lawson-b1116409.html", - "pubDate": "Fri, 27 Oct 2023 12:09:24 GMT", - "dc:creator": "Anthony France", - "dc:date": "2023-10-27T12:09:24+00:00", - "content": "

A dangerous attack dog was also used to frighten the man

", - "contentSnippet": "A dangerous attack dog was also used to frighten the man", - "guid": "b1116409", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T12:09:24.000Z" - }, - { - "creator": "Tristan Kirk", - "date": "2023-10-27T12:05:28+00:00", - "title": "US spy stabbed near GCHQ 'in revenge for murky secret services'", - "link": "https://www.standard.co.uk/news/crime/us-spy-gchq-stabbing-unabomber-revenge-secret-services-joshua-bowles-b1116410.html", - "pubDate": "Fri, 27 Oct 2023 12:05:28 GMT", - "dc:creator": "Tristan Kirk", - "dc:date": "2023-10-27T12:05:28+00:00", - "content": "

Former GCHQ worker Joshua Bowles attacked a US spy in revenge for 'murky' intelligence work

", - "contentSnippet": "Former GCHQ worker Joshua Bowles attacked a US spy in revenge for 'murky' intelligence work", - "guid": "b1116410", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T12:05:28.000Z" - }, - { - "creator": "Craig Paton", - "date": "2023-10-27T12:03:50+00:00", - "title": "Musk responds \u2018blatant racist\u2019 to Yousaf speech made after George Floyd murder", - "link": "https://www.standard.co.uk/news/politics/elon-musk-george-floyd-twitter-first-minister-scottish-parliament-b1116420.html", - "pubDate": "Fri, 27 Oct 2023 12:03:50 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2023-10-27T12:03:50+00:00", - "content": "The video to which the X owner replied was posted by a right-wing account.", - "contentSnippet": "The video to which the X owner replied was posted by a right-wing account.", - "guid": "b1116420", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T12:03:50.000Z" - }, - { - "creator": "Dom Smith", - "date": "2023-10-27T11:58:07+00:00", - "title": "Fulham to make late call on Issa Diop's fitness for Brighton clash", - "link": "https://www.standard.co.uk/sport/football/fulham-brighton-issa-diop-injury-b1116418.html", - "pubDate": "Fri, 27 Oct 2023 11:58:07 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2023-10-27T11:58:07+00:00", - "content": "

Cottagers desperate for defensive help after errors in Tottenham loss

", - "contentSnippet": "Cottagers desperate for defensive help after errors in Tottenham loss", - "guid": "b1116418", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T11:58:07.000Z" - }, - { - "creator": "Simon Collings", - "date": "2023-10-27T11:53:40+00:00", - "title": "Fran Kirby's timely return to satisfy Lionesses' need for creative spark", - "link": "https://www.standard.co.uk/sport/football/lionesses-fran-kirby-england-belgium-b1116413.html", - "pubDate": "Fri, 27 Oct 2023 11:53:40 GMT", - "dc:creator": "Simon Collings", - "dc:date": "2023-10-27T11:53:40+00:00", - "content": "

England take on Belgium tonight in Women's Nations League

", - "contentSnippet": "England take on Belgium tonight in Women's Nations League", - "guid": "b1116413", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T11:53:40.000Z" - }, - { - "creator": "Aine Fox", - "date": "2023-10-27T11:49:22+00:00", - "title": "Unions accuse Keegan of \u2018inflaming controversy\u2019 over sex education teaching", - "link": "https://www.standard.co.uk/news/politics/education-secretary-secretary-of-state-government-geoff-barton-association-of-school-and-college-leaders-b1116412.html", - "pubDate": "Fri, 27 Oct 2023 11:49:22 GMT", - "dc:creator": "Aine Fox", - "dc:date": "2023-10-27T11:49:22+00:00", - "content": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", - "contentSnippet": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", - "guid": "b1116412", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T11:49:22.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2023-10-27T11:45:50+00:00", - "title": "Best John Lewis deals to expect for Black Friday 2023: Offers on homeware, furniture and more", - "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-john-lewis-deals-black-friday-b1113881.html", - "pubDate": "Fri, 27 Oct 2023 11:45:50 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2023-10-27T11:45:50+00:00", - "content": "

The annual sales extravaganza has resulted in brilliant discounts at the retailer

", - "contentSnippet": "The annual sales extravaganza has resulted in brilliant discounts at the retailer", - "guid": "b1113881", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-10-27T11:45:50.000Z" - }, - { - "creator": "Saskia Kemsley", - "date": "2023-10-27T11:45:12+00:00", - "title": "Best Currys Black Friday deals to expect 2023: Offers on smartwatches, washing machines and more", - "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-currys-black-friday-deals-b1113851.html", - "pubDate": "Fri, 27 Oct 2023 11:45:12 GMT", - "dc:creator": "Saskia Kemsley", - "dc:date": "2023-10-27T11:45:12+00:00", - "content": "

Shop the best bargains from the UK\u2019s tech retailing giant

", - "contentSnippet": "Shop the best bargains from the UK\u2019s tech retailing giant", - "guid": "b1113851", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-10-27T11:45:12.000Z" - }, - { - "creator": "Nihal Arthanayake", - "date": "2023-10-27T11:42:03+00:00", - "title": "OPINION - Why I'm keeping shtum on Tottenham winning the Premier League", - "link": "https://www.standard.co.uk/sport/football/tottenham-premier-league-comment-nihal-arthanayake-b1116406.html", - "pubDate": "Fri, 27 Oct 2023 11:42:03 GMT", - "dc:creator": "Nihal Arthanayake", - "dc:date": "2023-10-27T11:42:03+00:00", - "content": "

Fans dare to dream what Big Ange and his band of brothers can achieve... but always remember Arsenal

", - "contentSnippet": "Fans dare to dream what Big Ange and his band of brothers can achieve... but always remember Arsenal", - "guid": "b1116406", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T11:42:03.000Z" - }, - { - "creator": "Pa Reporters", - "date": "2023-10-27T11:40:19+00:00", - "title": "First charter flight for Afghan refugees living in Pakistan arrives in London", - "link": "https://www.standard.co.uk/news/politics/pakistan-london-afghanistan-government-taliban-b1116407.html", - "pubDate": "Fri, 27 Oct 2023 11:40:19 GMT", - "dc:creator": "Pa Reporters", - "dc:date": "2023-10-27T11:40:19+00:00", - "content": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", - "contentSnippet": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", - "guid": "b1116407", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T11:40:19.000Z" - }, - { - "creator": "Seren Morris", - "date": "2023-10-27T11:39:37+00:00", - "title": "What are the rules for putting your bins out? Londoner hit with \u00a3400 fine for leaving out on wrong day", - "link": "https://www.standard.co.uk/news/london/bins-days-fly-tipping-rules-fine-waltham-forest-council-rubbish-b1069492.html", - "pubDate": "Fri, 27 Oct 2023 11:39:37 GMT", - "dc:creator": "Seren Morris", - "dc:date": "2023-10-27T11:39:37+00:00", - "content": "

The environment secretary has announced new rules aimed at unifying how waste is collected

", - "contentSnippet": "The environment secretary has announced new rules aimed at unifying how waste is collected", - "guid": "b1069492", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T11:39:37.000Z" - }, - { - "creator": "Craig Paton", - "date": "2023-10-27T11:30:05+00:00", - "title": "Scottish Government deleted most pandemic WhatsApp messages, inquiry believes", - "link": "https://www.standard.co.uk/news/politics/scottish-government-humza-yousaf-scottish-government-first-minister-b1116369.html", - "pubDate": "Fri, 27 Oct 2023 11:30:05 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2023-10-27T11:30:05+00:00", - "content": "First Minister Humza Yousaf has said the matter is being investigated.", - "contentSnippet": "First Minister Humza Yousaf has said the matter is being investigated.", - "guid": "b1116369", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T11:30:05.000Z" - }, - { - "creator": "Lauren Gilmour", - "date": "2023-10-27T11:27:05+00:00", - "title": "Radiographers to stage first strike at Scottish hospital", - "link": "https://www.standard.co.uk/news/health/scottish-b1116401.html", - "pubDate": "Fri, 27 Oct 2023 11:27:05 GMT", - "dc:creator": "Lauren Gilmour", - "dc:date": "2023-10-27T11:27:05+00:00", - "content": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", - "contentSnippet": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", - "guid": "b1116401", - "categories": [ - "Health", - "News" - ], - "isoDate": "2023-10-27T11:27:05.000Z" - }, - { - "creator": "Lizzie Edmonds", - "date": "2023-10-27T11:24:44+00:00", - "title": "Hugh Jackman and Deborra-Lee Furness felt time was 'right' to split", - "link": "https://www.standard.co.uk/showbiz/hugh-jackman-deborra-lee-furness-divorce-shock-split-b1116390.html", - "pubDate": "Fri, 27 Oct 2023 11:24:44 GMT", - "dc:creator": "Lizzie Edmonds", - "dc:date": "2023-10-27T11:24:44+00:00", - "content": "

Reports suggest the couple, who split last month after nearly 30 years together, were on \"different pages.\"

", - "contentSnippet": "Reports suggest the couple, who split last month after nearly 30 years together, were on \"different pages.\"", - "guid": "b1116390", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T11:24:44.000Z" - }, - { - "creator": "Maryam Kara", - "date": "2023-10-27T11:23:44+00:00", - "title": "Londoners can ride vintage buses for free next week in aid of the Royal British Legion Poppy Appeal", - "link": "https://www.standard.co.uk/news/london/vintage-buses-north-london-poppy-appeal-b1116223.html", - "pubDate": "Fri, 27 Oct 2023 11:23:44 GMT", - "dc:creator": "Maryam Kara", - "dc:date": "2023-10-27T11:23:44+00:00", - "content": "

Vintage buses will be running in aid of the Royal British Legion Poppy Appeal

", - "contentSnippet": "Vintage buses will be running in aid of the Royal British Legion Poppy Appeal", - "guid": "b1116223", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T11:23:44.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-10-27T11:21:01+00:00", - "title": "New Zealand vs South Africa: Rugby World Cup final kick-off time, TV channel, team news, lineups, venue, odds", - "link": "https://www.standard.co.uk/sport/rugby/new-zealand-vs-south-africa-rugby-world-cup-final-2023-kick-off-time-tv-channel-live-stream-team-news-lineups-odds-b1115100.html", - "pubDate": "Fri, 27 Oct 2023 11:21:01 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-10-27T11:21:01+00:00", - "content": "

The Springboks and the All Blacks compete for the Webb Ellis Cup in huge Paris showpiece

", - "contentSnippet": "The Springboks and the All Blacks compete for the Webb Ellis Cup in huge Paris showpiece", - "guid": "b1115100", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2023-10-27T11:21:01.000Z" - }, - { - "creator": "Jonathan Gorrie", - "date": "2023-10-27T11:20:42+00:00", - "title": "How to watch Argentina vs England for FREE: TV channel and live stream for Rugby World Cup game today", - "link": "https://www.standard.co.uk/sport/rugby/how-to-watch-argentina-vs-england-rugby-world-cup-2023-tv-channel-live-stream-free-today-b1116279.html", - "pubDate": "Fri, 27 Oct 2023 11:20:42 GMT", - "dc:creator": "Jonathan Gorrie", - "dc:date": "2023-10-27T11:20:42+00:00", - "content": "

How to keep across England's final game in France

", - "contentSnippet": "How to keep across England's final game in France", - "guid": "b1116279", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2023-10-27T11:20:42.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-10-27T11:20:41+00:00", - "title": "Argentina vs England: Rugby World Cup kick-off time, TV channel, team news, lineups, venue, odds today", - "link": "https://www.standard.co.uk/sport/rugby/argentina-vs-england-rugby-world-cup-2023-kick-off-time-tv-channel-live-stream-team-news-lineups-odds-today-b1115139.html", - "pubDate": "Fri, 27 Oct 2023 11:20:41 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-10-27T11:20:41+00:00", - "content": "

England will wrap up their Rugby World Cup campaign tonight with the Bronze Final against Argentina.

", - "contentSnippet": "England will wrap up their Rugby World Cup campaign tonight with the Bronze Final against Argentina.", - "guid": "b1115139", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2023-10-27T11:20:41.000Z" - }, - { - "creator": "Aine Fox", - "date": "2023-10-27T11:16:06+00:00", - "title": "Equalities watchdog expresses concerns for disabled over benefits reforms", - "link": "https://www.standard.co.uk/news/politics/government-parliament-b1116399.html", - "pubDate": "Fri, 27 Oct 2023 11:16:06 GMT", - "dc:creator": "Aine Fox", - "dc:date": "2023-10-27T11:16:06+00:00", - "content": "The Government\u2019s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", - "contentSnippet": "The Government\u2019s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", - "guid": "b1116399", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T11:16:06.000Z" - }, - { - "creator": "Saqib Shah", - "date": "2023-10-27T11:15:50+00:00", - "title": "How to make audio and video calls on X/Twitter", - "link": "https://www.standard.co.uk/news/tech/twitter-x-voice-video-calls-how-to-b1116360.html", - "pubDate": "Fri, 27 Oct 2023 11:15:50 GMT", - "dc:creator": "Saqib Shah", - "dc:date": "2023-10-27T11:15:50+00:00", - "content": "

You can switch off or limit the new feature if you don't want to receive unwanted calls

", - "contentSnippet": "You can switch off or limit the new feature if you don't want to receive unwanted calls", - "guid": "b1116360", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-10-27T11:15:50.000Z" - }, - { - "creator": "Bill McLoughlin", - "date": "2023-10-27T11:15:03+00:00", - "title": "Girl hospitalised for septic shock after ant infestation bite in south west London council home", - "link": "https://www.standard.co.uk/news/london/girl-ant-bite-sceptic-shock-west-london-hospital-wandsworth-b1116310.html", - "pubDate": "Fri, 27 Oct 2023 11:15:03 GMT", - "dc:creator": "Bill McLoughlin", - "dc:date": "2023-10-27T11:15:03+00:00", - "content": "

The 15-year-old is afraid to go home following the infestation

", - "contentSnippet": "The 15-year-old is afraid to go home following the infestation", - "guid": "b1116310", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T11:15:03.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2023-10-27T11:12:05+00:00", - "title": "Greenwich Islamic Centre: Mosque leader accused of hateful sermon over Israel-Hamas conflict", - "link": "https://www.standard.co.uk/news/london/greenwich-islamic-centre-mosque-antisemitism-gaza-israel-b1116253.html", - "pubDate": "Fri, 27 Oct 2023 11:12:05 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2023-10-27T11:12:05+00:00", - "content": "

Imam accused by MP and council of hate remarks in Gaza sermon

", - "contentSnippet": "Imam accused by MP and council of hate remarks in Gaza sermon", - "guid": "b1116253", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T11:12:05.000Z" - }, - { - "creator": "Rachael Burford", - "date": "2023-10-27T11:10:23+00:00", - "title": "Wide eye of the law: Facial recognition deployed at Arsenal v Tottenham Premier League clash", - "link": "https://www.standard.co.uk/news/london/facial-recognition-met-police-football-arsenal-tottenham-b1116370.html", - "pubDate": "Fri, 27 Oct 2023 11:10:23 GMT", - "dc:creator": "Rachael Burford", - "dc:date": "2023-10-27T11:10:23+00:00", - "content": "

Three people were arrested and charged after being caught by surveillance vans at the match

", - "contentSnippet": "Three people were arrested and charged after being caught by surveillance vans at the match", - "guid": "b1116370", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T11:10:23.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-10-27T11:09:52+00:00", - "title": "Pop superstar Taylor Swift praised for \u2018impeccable\u2019 remake of 1989 album", - "link": "https://www.standard.co.uk/culture/music/taylor-swift-shake-it-off-blank-space-the-times-twitter-b1116394.html", - "pubDate": "Fri, 27 Oct 2023 11:09:52 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-10-27T11:09:52+00:00", - "content": "The album was released on the same date it was originally published in 2014.", - "contentSnippet": "The album was released on the same date it was originally published in 2014.", - "guid": "b1116394", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-10-27T11:09:52.000Z" - }, - { - "creator": "By Cillian Sherlock", - "date": "2023-10-27T11:09:27+00:00", - "title": "\u2018Essential not to lose focus\u2019 on war in Ukraine, Varadkar warns", - "link": "https://www.standard.co.uk/news/uk/ukraine-leo-varadkar-russian-israel-palestine-b1116396.html", - "pubDate": "Fri, 27 Oct 2023 11:09:27 GMT", - "dc:creator": "By Cillian Sherlock", - "dc:date": "2023-10-27T11:09:27+00:00", - "content": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", - "contentSnippet": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", - "guid": "b1116396", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T11:09:27.000Z" - }, - { - "creator": "Sam Russell", - "date": "2023-10-27T11:08:08+00:00", - "title": "Husband jailed for life for murder of university lecturer wife in knife attack", - "link": "https://www.standard.co.uk/news/crime/husband-colchester-english-b1116397.html", - "pubDate": "Fri, 27 Oct 2023 11:08:08 GMT", - "dc:creator": "Sam Russell", - "dc:date": "2023-10-27T11:08:08+00:00", - "content": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", - "contentSnippet": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", - "guid": "b1116397", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T11:08:08.000Z" - }, - { - "creator": "Jonathan Kanengoni", - "date": "2023-10-27T11:07:24+00:00", - "title": "Halloween 2023 in London: Our top club nights of the spooky weekend", - "link": "https://www.standard.co.uk/culture/music/halloween-2023-london-events-party-what-to-do-b1115907.html", - "pubDate": "Fri, 27 Oct 2023 11:07:24 GMT", - "dc:creator": "Jonathan Kanengoni", - "dc:date": "2023-10-27T11:07:24+00:00", - "content": "

Guiding you to the best music events the capital has to offer this Halloween

", - "contentSnippet": "Guiding you to the best music events the capital has to offer this Halloween", - "guid": "b1115907", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-10-27T11:07:24.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2023-10-27T11:04:50+00:00", - "title": "Ange Postecoglou rubbishes claim Tottenham now better off without Harry Kane", - "link": "https://www.standard.co.uk/sport/football/tottenham-ange-postecoglou-harry-kane-spurs-b1116387.html", - "pubDate": "Fri, 27 Oct 2023 11:04:50 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2023-10-27T11:04:50+00:00", - "content": "

Spurs boss happy with new 'dynamic' without record goalscorer but would have been able to 'squeeze him in' to league-leading side

", - "contentSnippet": "Spurs boss happy with new 'dynamic' without record goalscorer but would have been able to 'squeeze him in' to league-leading side", - "guid": "b1116387", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T11:04:50.000Z" - }, - { - "creator": "Emily Bratt", - "date": "2023-10-27T11:04:46+00:00", - "title": "'I never set out to be a nomadic pet-sitter but it\u2019s the most exciting, life-changing decision I ever made'", - "link": "https://www.standard.co.uk/lifestyle/pet-sitter-house-prices-cost-of-living-london-rental-crisis-b1116068.html", - "pubDate": "Fri, 27 Oct 2023 11:04:46 GMT", - "dc:creator": "Emily Bratt", - "dc:date": "2023-10-27T11:04:46+00:00", - "content": "

Sick of London house shares and nowhere near getting a foot on the property ladder, Emily Bratt took a radical chance on a whole new life as a full time pet-sitter

", - "contentSnippet": "Sick of London house shares and nowhere near getting a foot on the property ladder, Emily Bratt took a radical chance on a whole new life as a full time pet-sitter", - "guid": "b1116068", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-10-27T11:04:46.000Z" - }, - { - "creator": "Chris Philp and Madeleine Stone", - "date": "2023-10-27T11:03:25+00:00", - "title": "OPINION - Facial recognition vans: the case for and against", - "link": "https://www.standard.co.uk/comment/facial-recognition-technology-london-football-b1116372.html", - "pubDate": "Fri, 27 Oct 2023 11:03:25 GMT", - "dc:creator": "Chris Philp and Madeleine Stone", - "dc:date": "2023-10-27T11:03:25+00:00", - "content": "

A minister and technology advocate go head-to-head over facial recognition technology

", - "contentSnippet": "A minister and technology advocate go head-to-head over facial recognition technology", - "guid": "b1116372", - "categories": [ - "Comment" - ], - "isoDate": "2023-10-27T11:03:25.000Z" - }, - { - "creator": "Ayan Omar", - "date": "2023-10-27T11:03:01+00:00", - "title": "Londoners asked to look out for ghost signs this Halloween for new Historic England map", - "link": "https://www.standard.co.uk/news/london/london-ghost-signs-halloween-historic-england-map-b1115961.html", - "pubDate": "Fri, 27 Oct 2023 11:03:01 GMT", - "dc:creator": "Ayan Omar", - "dc:date": "2023-10-27T11:03:01+00:00", - "content": "

Historic England hopes the map will teach people about the 'cultural significance' of ghost signs

", - "contentSnippet": "Historic England hopes the map will teach people about the 'cultural significance' of ghost signs", - "guid": "b1115961", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T11:03:01.000Z" - }, - { - "creator": "Evening Standard Comment", - "date": "2023-10-27T11:02:29+00:00", - "title": "OPINION - The Standard View: The Met's use of facial recognition technology fights crime and raises hackles", - "link": "https://www.standard.co.uk/comment/metropolitan-police-facial-recognition-technology-arsenal-tottenham-b1116393.html", - "pubDate": "Fri, 27 Oct 2023 11:02:29 GMT", - "dc:creator": "Evening Standard Comment", - "dc:date": "2023-10-27T11:02:29+00:00", - "content": "

Facial recognition technology \u2014 indeed any form of artificial intelligence \u2014 has a habit of raising hackles. Its use by police, even to prevent crime and protect people from harm, is no different. But should it be?

", - "contentSnippet": "Facial recognition technology \u2014 indeed any form of artificial intelligence \u2014 has a habit of raising hackles. Its use by police, even to prevent crime and protect people from harm, is no different. But should it be?", - "guid": "b1116393", - "categories": [ - "Comment" - ], - "isoDate": "2023-10-27T11:02:29.000Z" - }, - { - "creator": "Lara Olszowska", - "date": "2023-10-27T11:02:17+00:00", - "title": "Grotesque? Rory Stewart clashes with portrait painter over 'caricature'", - "link": "https://www.standard.co.uk/news/londoners-diary/rory-stewart-portrait-artist-caricature-b1116377.html", - "pubDate": "Fri, 27 Oct 2023 11:02:17 GMT", - "dc:creator": "Lara Olszowska", - "dc:date": "2023-10-27T11:02:17+00:00", - "content": "

'Maybe he was hoping for something a bit more heroic,' said artist Lorena Levi

", - "contentSnippet": "'Maybe he was hoping for something a bit more heroic,' said artist Lorena Levi", - "guid": "b1116377", - "categories": [ - "Diary", - "News" - ], - "isoDate": "2023-10-27T11:02:17.000Z" - }, - { - "creator": "Lawrence Dallaglio", - "date": "2023-10-27T11:00:52+00:00", - "title": "Lawrence Dallaglio column: England must not settle under Steve Borthwick after setting new benchmark", - "link": "https://www.standard.co.uk/sport/rugby/lawrence-dallaglio-column-england-rugby-world-cup-2023-steve-borthwick-b1116381.html", - "pubDate": "Fri, 27 Oct 2023 11:00:52 GMT", - "dc:creator": "Lawrence Dallaglio", - "dc:date": "2023-10-27T11:00:52+00:00", - "content": "

England need to set the tone for the new era and finish the Rugby World Cup on a high by securing third place

", - "contentSnippet": "England need to set the tone for the new era and finish the Rugby World Cup on a high by securing third place", - "guid": "b1116381", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2023-10-27T11:00:52.000Z" - }, - { - "creator": "Paul Flynn", - "date": "2023-10-27T11:00:29+00:00", - "title": "OPINION - Is there such a thing as a gay job? Actually, it turns out there just might be", - "link": "https://www.standard.co.uk/comment/lgbtq-gay-jobs-careers-census-airlines-farming-b1116365.html", - "pubDate": "Fri, 27 Oct 2023 11:00:29 GMT", - "dc:creator": "Paul Flynn", - "dc:date": "2023-10-27T11:00:29+00:00", - "content": "

My first job was as a cashier in a South Manchester car park, a Saturday post I held between the ages of 14 and 19, the exact ages I was working out how being gay might pan out for me. I worked alongside the Corps of Commissionaires, a rum, witty bunch of pensioner ex-servicemen who\u2019d shine their shoes to perfection in order to chase down local scallies trying to hotwire a tasty, second-hand Volkswagen Polo. They were great, dependable men, many widowers, committed smokers with a plentiful reserve of dirty jokes.

", - "contentSnippet": "My first job was as a cashier in a South Manchester car park, a Saturday post I held between the ages of 14 and 19, the exact ages I was working out how being gay might pan out for me. I worked alongside the Corps of Commissionaires, a rum, witty bunch of pensioner ex-servicemen who\u2019d shine their shoes to perfection in order to chase down local scallies trying to hotwire a tasty, second-hand Volkswagen Polo. They were great, dependable men, many widowers, committed smokers with a plentiful reserve of dirty jokes.", - "guid": "b1116365", - "categories": [ - "Comment" - ], - "isoDate": "2023-10-27T11:00:29.000Z" - }, - { - "creator": "Sade The Astrology Vixen", - "date": "2023-10-27T11:00:00+00:00", - "title": "Your weekly horoscope by Sade The Astrology Vixen (27 October - 2 November) ", - "link": "https://www.standard.co.uk/lifestyle/weekly-horoscope-astrology-october-november-b1116133.html", - "pubDate": "Fri, 27 Oct 2023 11:00:00 GMT", - "dc:creator": "Sade The Astrology Vixen", - "dc:date": "2023-10-27T11:00:00+00:00", - "content": "

ARIES Where are you resisting leadership? Be careful because the temporary float you\u2019ve been holding on to might suddenly deflate, forcing you to realise you need more anchoring to keep grounded and secure.

", - "contentSnippet": "ARIES Where are you resisting leadership? Be careful because the temporary float you\u2019ve been holding on to might suddenly deflate, forcing you to realise you need more anchoring to keep grounded and secure.", - "guid": "b1116133", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-10-27T11:00:00.000Z" - }, - { - "creator": "Tanya Gold", - "date": "2023-10-27T11:00:00+00:00", - "title": "OPINION - The Woman in Me by Britney Spears review: they wanted the body of a child and the cynicism of a woman", - "link": "https://www.standard.co.uk/culture/books/britney-spears-the-woman-in-me-book-review-tanya-gold-b1116380.html", - "pubDate": "Fri, 27 Oct 2023 11:00:00 GMT", - "dc:creator": "Tanya Gold", - "dc:date": "2023-10-27T11:00:00+00:00", - "content": "

Britney Spears's memoir, The Woman in Me, is in two parts: the numb (part one) and the raging (part two). I wish I was surprised by her story, but it\u2019s the story of female stars, particularly child ones. They are archetypes, devoured by expectation.

", - "contentSnippet": "Britney Spears's memoir, The Woman in Me, is in two parts: the numb (part one) and the raging (part two). I wish I was surprised by her story, but it\u2019s the story of female stars, particularly child ones. They are archetypes, devoured by expectation.", - "guid": "b1116380", - "categories": [ - "Books", - "Culture" - ], - "isoDate": "2023-10-27T11:00:00.000Z" - }, - { - "creator": "Hollie Bowden", - "date": "2023-10-27T11:00:00+00:00", - "title": "Eye for interiors: from bulbs to lampshades, Hollie Bowden's seven step guide to perfect lighting at home", - "link": "https://www.standard.co.uk/homesandproperty/interiors/hollie-bowden-guide-home-lighting-bulbs-lamps-spotlights-renovation-b1116250.html", - "pubDate": "Fri, 27 Oct 2023 11:00:00 GMT", - "dc:creator": "Hollie Bowden", - "dc:date": "2023-10-27T11:00:00+00:00", - "content": "

Banish autumn gloom on the long, dark evenings ahead with this foolproof round-the-clock lighting plan that will work for both task lighting and atmosphere

", - "contentSnippet": "Banish autumn gloom on the long, dark evenings ahead with this foolproof round-the-clock lighting plan that will work for both task lighting and atmosphere", - "guid": "b1116250", - "categories": [ - "Interiors", - "Homes & Property" - ], - "isoDate": "2023-10-27T11:00:00.000Z" - }, - { - "creator": "Lola Christina Alao", - "date": "2023-10-27T10:57:56+00:00", - "title": "Halloween 2023: Is there an age limit for doing trick or treat?", - "link": "https://www.standard.co.uk/lifestyle/halloween-2023-age-limit-trick-or-treat-b1116354.html", - "pubDate": "Fri, 27 Oct 2023 10:57:56 GMT", - "dc:creator": "Lola Christina Alao", - "dc:date": "2023-10-27T10:57:56+00:00", - "content": "

Spooky season is upon us, but how old is too old to go trick or treating?

", - "contentSnippet": "Spooky season is upon us, but how old is too old to go trick or treating?", - "guid": "b1116354", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-10-27T10:57:56.000Z" - }, - { - "creator": "Matt Cooper", - "date": "2023-10-27T10:55:52+00:00", - "title": "Cadbury World master chocolatiers make 50kg chocolate Halloween toad", - "link": "https://www.standard.co.uk/news/uk/green-birmingham-b1116391.html", - "pubDate": "Fri, 27 Oct 2023 10:55:52 GMT", - "dc:creator": "Matt Cooper", - "dc:date": "2023-10-27T10:55:52+00:00", - "content": "The toad is designed to be \u2018as whimsical as possible without being too scary\u2019.", - "contentSnippet": "The toad is designed to be \u2018as whimsical as possible without being too scary\u2019.", - "guid": "b1116391", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T10:55:52.000Z" - }, - { - "creator": "Dom Smith", - "date": "2023-10-27T10:46:24+00:00", - "title": "Frank Onyeka backs Brentford to secure European football as he reveals Champions League dream", - "link": "https://www.standard.co.uk/sport/football/frank-onyeka-brentford-champions-league-european-football-b1116383.html", - "pubDate": "Fri, 27 Oct 2023 10:46:24 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2023-10-27T10:46:24+00:00", - "content": "

The Nigerian international is confident the Bees can improve on last season

", - "contentSnippet": "The Nigerian international is confident the Bees can improve on last season", - "guid": "b1116383", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T10:46:24.000Z" - }, - { - "creator": "Abha Shah", - "date": "2023-10-27T10:46:23+00:00", - "title": "Best Black Friday 2023 deals on flights, hotels and holiday packages", - "link": "https://www.standard.co.uk/shopping/esbest/black-friday/flights-hotels-holidays-black-friday-deals-b1113895.html", - "pubDate": "Fri, 27 Oct 2023 10:46:23 GMT", - "dc:creator": "Abha Shah", - "dc:date": "2023-10-27T10:46:23+00:00", - "content": "

Fasten your seatbelts; the deals are about to start flying

", - "contentSnippet": "Fasten your seatbelts; the deals are about to start flying", - "guid": "b1113895", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-10-27T10:46:23.000Z" - }, - { - "creator": "By Grinne N. Aodha", - "date": "2023-10-27T10:44:47+00:00", - "title": "Varadkar cautions against supermajority in any future Irish unity vote", - "link": "https://www.standard.co.uk/news/uk/northern-ireland-leo-varadkar-uk-government-brexit-brussels-b1116388.html", - "pubDate": "Fri, 27 Oct 2023 10:44:47 GMT", - "dc:creator": "By Grinne N. Aodha", - "dc:date": "2023-10-27T10:44:47+00:00", - "content": "The Taoiseach said there is not enough talk to convince people in Northern Ireland \u201cthat a united Ireland would be a warm home for them\u201d.", - "contentSnippet": "The Taoiseach said there is not enough talk to convince people in Northern Ireland \u201cthat a united Ireland would be a warm home for them\u201d.", - "guid": "b1116388", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T10:44:47.000Z" - }, - { - "creator": "Topsy Ojo", - "date": "2023-10-27T10:41:13+00:00", - "title": "Topsy Ojo column: England must play for pride tonight after huge impact of Kevin Sinfield's motivation", - "link": "https://www.standard.co.uk/sport/rugby/topsy-ojo-column-england-argentina-rugby-world-cup-kevin-sinfield-b1116374.html", - "pubDate": "Fri, 27 Oct 2023 10:41:13 GMT", - "dc:creator": "Topsy Ojo", - "dc:date": "2023-10-27T10:41:13+00:00", - "content": "

Third-place finish at Rugby World Cup would be a fine return

", - "contentSnippet": "Third-place finish at Rugby World Cup would be a fine return", - "guid": "b1116374", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2023-10-27T10:41:13.000Z" - }, - { - "creator": "August Graham", - "date": "2023-10-27T10:40:59+00:00", - "title": "NatWest sees customers switch to savings accounts as interest rates rise", - "link": "https://www.standard.co.uk/business/business-news/natwest-sees-customers-switch-to-savings-accounts-as-interest-rates-rise-b1116315.html", - "pubDate": "Fri, 27 Oct 2023 10:40:59 GMT", - "dc:creator": "August Graham", - "dc:date": "2023-10-27T10:40:59+00:00", - "content": "The business\u2019s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", - "contentSnippet": "The business\u2019s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", - "guid": "b1116315", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-10-27T10:40:59.000Z" - }, - { - "creator": "Maryam Kara", - "date": "2023-10-27T10:39:24+00:00", - "title": "Ten historical Black British figures who helped shaped the country", - "link": "https://www.standard.co.uk/news/uk/black-british-history-historical-figures-people-icons-b1116111.html", - "pubDate": "Fri, 27 Oct 2023 10:39:24 GMT", - "dc:creator": "Maryam Kara", - "dc:date": "2023-10-27T10:39:24+00:00", - "content": "

Around 75 per cent of Britons either do not know \"very much\" or simply \"anything\" about Black British history, a survey has revealed

", - "contentSnippet": "Around 75 per cent of Britons either do not know \"very much\" or simply \"anything\" about Black British history, a survey has revealed", - "guid": "b1116111", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T10:39:24.000Z" - }, - { - "creator": "Cat Olley", - "date": "2023-10-27T10:35:59+00:00", - "title": "Blank canvas flat for sale in last surviving Battersea mansion where Nelson's Column architect was born\u00a0", - "link": "https://www.standard.co.uk/homesandproperty/property-news/london-flat-for-sale-the-shrubbery-battersea-grade-ii-listed-manor-house-b1114967.html", - "pubDate": "Fri, 27 Oct 2023 10:35:59 GMT", - "dc:creator": "Cat Olley", - "dc:date": "2023-10-27T10:35:59+00:00", - "content": "

The Shrubbery has also been home to an MP and a pre-Raphaelite painter in its 230-year history

", - "contentSnippet": "The Shrubbery has also been home to an MP and a pre-Raphaelite painter in its 230-year history", - "guid": "b1114967", - "categories": [ - "Property News", - "Homes & Property" - ], - "isoDate": "2023-10-27T10:35:59.000Z" - }, - { - "creator": "Sami Quadri", - "date": "2023-10-27T10:35:23+00:00", - "title": "Passenger horrified after 'spotting mice in British Airways business lounge at Heathrow' ", - "link": "https://www.standard.co.uk/news/london/heathrow-british-airways-mouse-rodents-business-lounge-b1116362.html", - "pubDate": "Fri, 27 Oct 2023 10:35:23 GMT", - "dc:creator": "Sami Quadri", - "dc:date": "2023-10-27T10:35:23+00:00", - "content": "

An anonymous passenger expressed their \"disgust\" after spotting the unexpected guests

", - "contentSnippet": "An anonymous passenger expressed their \"disgust\" after spotting the unexpected guests", - "guid": "b1116362", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T10:35:23.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-10-27T10:33:15+00:00", - "title": "Arnold Schwarzenegger admits rivalry with Stallone \u2018got out of control\u2019", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/arnold-schwarzenegger-sylvester-stallone-rocky-judi-dench-jack-whitehall-b1116382.html", - "pubDate": "Fri, 27 Oct 2023 10:33:15 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-10-27T10:33:15+00:00", - "content": "The Terminator actor and Rocky star would compete against each other in their respective action films and attacked each other in the press.", - "contentSnippet": "The Terminator actor and Rocky star would compete against each other in their respective action films and attacked each other in the press.", - "guid": "b1116382", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-10-27T10:33:15.000Z" - }, - { - "creator": "By Grinne N. Aodha", - "date": "2023-10-27T10:31:50+00:00", - "title": "Irish premier says EU position on Israel-Palestine conflict is evolving", - "link": "https://www.standard.co.uk/news/politics/leo-varadkar-israel-palestine-president-eu-council-b1116379.html", - "pubDate": "Fri, 27 Oct 2023 10:31:50 GMT", - "dc:creator": "By Grinne N. Aodha", - "dc:date": "2023-10-27T10:31:50+00:00", - "content": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", - "contentSnippet": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", - "guid": "b1116379", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T10:31:50.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2023-10-27T10:26:22+00:00", - "title": "Taylor Swift fans go wild as she releases 1989 (Taylor's version)", - "link": "https://www.standard.co.uk/showbiz/taylor-swift-fans-react-1989-taylors-version-b1116358.html", - "pubDate": "Fri, 27 Oct 2023 10:26:22 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2023-10-27T10:26:22+00:00", - "content": "

The US superstar's latest record caused widespread disruption on Apple Music

", - "contentSnippet": "The US superstar's latest record caused widespread disruption on Apple Music", - "guid": "b1116358", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T10:26:22.000Z" - }, - { - "creator": "Rebecca Miles", - "date": "2023-10-27T10:25:44+00:00", - "title": "Snow Show London: The mountains are officially open and season's trends already clear", - "link": "https://www.standard.co.uk/lifestyle/travel/sustainable-travel/snow-show-london-skiing-excel-centre-trends-b1116350.html", - "pubDate": "Fri, 27 Oct 2023 10:25:44 GMT", - "dc:creator": "Rebecca Miles", - "dc:date": "2023-10-27T10:25:44+00:00", - "content": "

If the 10,000 winter sports fans that descended on London\u2019s ExCel exhibition centre last weekend are anything to go by, this ski season promises to be noisy, vibrant and welcoming.

", - "contentSnippet": "If the 10,000 winter sports fans that descended on London\u2019s ExCel exhibition centre last weekend are anything to go by, this ski season promises to be noisy, vibrant and welcoming.", - "guid": "b1116350", - "categories": [ - "Sustainable Travel", - "Travel", - "Lifestyle" - ], - "isoDate": "2023-10-27T10:25:44.000Z" - }, - { - "creator": "Matt Verri", - "date": "2023-10-27T10:24:38+00:00", - "title": "Barcelona vs Real Madrid: El Clasico prediction, kick-off time, TV, live stream, team news, h2h results, odds", - "link": "https://www.standard.co.uk/sport/football/barcelona-vs-real-madrid-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-el-clasico-laliga-2023-preview-b1116355.html", - "pubDate": "Fri, 27 Oct 2023 10:24:38 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2023-10-27T10:24:38+00:00", - "content": "

Everything you need to know as both sides go into the first Clasico of the campaign in fine form

", - "contentSnippet": "Everything you need to know as both sides go into the first Clasico of the campaign in fine form", - "guid": "b1116355", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T10:24:38.000Z" - }, - { - "creator": "Daniel Keane", - "date": "2023-10-27T10:23:08+00:00", - "title": "Urgent warning over counterfeit Ozempic after hospitalisations", - "link": "https://www.standard.co.uk/news/health/fake-weight-loss-pens-wegovy-ozempic-hospitalisations-b1116359.html", - "pubDate": "Fri, 27 Oct 2023 10:23:08 GMT", - "dc:creator": "Daniel Keane", - "dc:date": "2023-10-27T10:23:08+00:00", - "content": "

Medicines regulator seizes 369 potentially fake devices amid surge in demand

", - "contentSnippet": "Medicines regulator seizes 369 potentially fake devices amid surge in demand", - "guid": "b1116359", - "categories": [ - "Health", - "News" - ], - "isoDate": "2023-10-27T10:23:08.000Z" - }, - { - "creator": "Ross Lydall", - "date": "2023-10-27T10:22:05+00:00", - "title": "Tube strikes breakthrough as Aslef bosses back 5% pay offer", - "link": "https://www.standard.co.uk/news/london/tube-strikes-aslef-pay-offer-recommendation-transport-for-london-tfl-b1116376.html", - "pubDate": "Fri, 27 Oct 2023 10:22:05 GMT", - "dc:creator": "Ross Lydall", - "dc:date": "2023-10-27T10:22:05+00:00", - "content": "

Transport for London made the 'full and final' one-year offer to 16,000 London Underground staff last week

", - "contentSnippet": "Transport for London made the 'full and final' one-year offer to 16,000 London Underground staff last week", - "guid": "b1116376", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T10:22:05.000Z" - }, - { - "creator": "Martyn Landi", - "date": "2023-10-27T10:19:50+00:00", - "title": "ChatGPT maker among AI firms to publish safety policies in transparency push", - "link": "https://www.standard.co.uk/news/tech/rishi-sunak-amazon-chatgpt-government-gillian-keegan-b1116375.html", - "pubDate": "Fri, 27 Oct 2023 10:19:50 GMT", - "dc:creator": "Martyn Landi", - "dc:date": "2023-10-27T10:19:50+00:00", - "content": "OpenAI is one of six tech giants to have published their responses to a Government request for AI safety policy details.", - "contentSnippet": "OpenAI is one of six tech giants to have published their responses to a Government request for AI safety policy details.", - "guid": "b1116375", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-10-27T10:19:50.000Z" - }, - { - "creator": "Ross Lydall", - "date": "2023-10-27T10:18:24+00:00", - "title": "'Commuters face decade of disruption if controversial Liverpool St station plans approved'", - "link": "https://www.standard.co.uk/news/transport/liverpool-street-station-plans-pool-hotel-approved-commuter-disruption-b1116373.html", - "pubDate": "Fri, 27 Oct 2023 10:18:24 GMT", - "dc:creator": "Ross Lydall", - "dc:date": "2023-10-27T10:18:24+00:00", - "content": "

Full details of the proposed \u00a31.5bn scheme emerged this week

", - "contentSnippet": "Full details of the proposed \u00a31.5bn scheme emerged this week", - "guid": "b1116373", - "categories": [ - "Transport", - "News" - ], - "isoDate": "2023-10-27T10:18:24.000Z" - }, - { - "creator": "Matt Verri", - "date": "2023-10-27T10:16:50+00:00", - "title": "How to watch Crystal Palace vs Tottenham: TV channel and live stream for Premier League game today", - "link": "https://www.standard.co.uk/sport/football/how-to-watch-crystal-palace-vs-tottenham-tv-channel-live-stream-premier-league-today-b1115697.html", - "pubDate": "Fri, 27 Oct 2023 10:16:50 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2023-10-27T10:16:50+00:00", - "content": "

Tottenham take on Crystal Palace tonight looking to extend their lead atop the Premier League table.

", - "contentSnippet": "Tottenham take on Crystal Palace tonight looking to extend their lead atop the Premier League table.", - "guid": "b1115697", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T10:16:50.000Z" - }, - { - "creator": "Lauren Gilmour", - "date": "2023-10-27T10:16:18+00:00", - "title": "Rail services suspended as weather warning for rain extended", - "link": "https://www.standard.co.uk/news/environment/scotrail-inverness-aberdeen-dundee-met-office-b1116344.html", - "pubDate": "Fri, 27 Oct 2023 10:16:18 GMT", - "dc:creator": "Lauren Gilmour", - "dc:date": "2023-10-27T10:16:18+00:00", - "content": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", - "contentSnippet": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", - "guid": "b1116344", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2023-10-27T10:16:18.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2023-10-27T10:15:33+00:00", - "title": "Tottenham XI vs Crystal Palace: Udogie injury latest, confirmed team news and predicted lineup today", - "link": "https://www.standard.co.uk/sport/football/tottenham-xi-vs-crystal-palace-udogie-injury-latest-confirmed-team-news-predicted-lineup-premier-league-today-b1116183.html", - "pubDate": "Fri, 27 Oct 2023 10:15:33 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2023-10-27T10:15:33+00:00", - "content": "

Spurs boss set to make late call on left-back due to muscle issue

", - "contentSnippet": "Spurs boss set to make late call on left-back due to muscle issue", - "guid": "b1116183", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T10:15:33.000Z" - }, - { - "creator": "Alex Young", - "date": "2023-10-27T10:15:32+00:00", - "title": "Crystal Palace vs Tottenham: Prediction, kick-off time, TV, live stream, team news, h2h results, odds today", - "link": "https://www.standard.co.uk/sport/football/crystal-palace-vs-tottenham-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-today-b1115673.html", - "pubDate": "Fri, 27 Oct 2023 10:15:32 GMT", - "dc:creator": "Alex Young", - "dc:date": "2023-10-27T10:15:32+00:00", - "content": "

Spurs can go five points clear at the top of the Premier League with another London derby victory

", - "contentSnippet": "Spurs can go five points clear at the top of the Premier League with another London derby victory", - "guid": "b1115673", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T10:15:32.000Z" - }, - { - "creator": "Dom Smith", - "date": "2023-10-27T10:15:31+00:00", - "title": "Crystal Palace XI vs Tottenham: Predicted lineup, confirmed team news and injury latest today", - "link": "https://www.standard.co.uk/sport/football/crystal-palace-vs-tottenham-predicted-lineup-confirmed-team-news-injury-latest-premier-league-today-b1116248.html", - "pubDate": "Fri, 27 Oct 2023 10:15:31 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2023-10-27T10:15:31+00:00", - "content": "

Another big injury blow for defender ahead of Spurs clash

", - "contentSnippet": "Another big injury blow for defender ahead of Spurs clash", - "guid": "b1116248", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T10:15:31.000Z" - }, - { - "creator": "Matt Majendie", - "date": "2023-10-27T10:14:37+00:00", - "title": "Blow to Anthony Joshua vs Tyson Fury hopes as Frank Warren issues dour assessment of fight", - "link": "https://www.standard.co.uk/sport/boxing/joshua-vs-fury-fight-warren-b1116371.html", - "pubDate": "Fri, 27 Oct 2023 10:14:37 GMT", - "dc:creator": "Matt Majendie", - "dc:date": "2023-10-27T10:14:37+00:00", - "content": "

Former world champion \"well down the list\" of potential opponents for Gypsy King, who this weekend faces Francis Ngannou

", - "contentSnippet": "Former world champion \"well down the list\" of potential opponents for Gypsy King, who this weekend faces Francis Ngannou", - "guid": "b1116371", - "categories": [ - "Boxing", - "Sport" - ], - "isoDate": "2023-10-27T10:14:37.000Z" - }, - { - "creator": "William Mata", - "date": "2023-10-27T10:10:27+00:00", - "title": "What is Edward Enninful's net worth? Vogue editor named most powerful black person in the UK", - "link": "https://www.standard.co.uk/news/uk/edward-enniful-vogue-editor-net-worth-b1116353.html", - "pubDate": "Fri, 27 Oct 2023 10:10:27 GMT", - "dc:creator": "William Mata", - "dc:date": "2023-10-27T10:10:27+00:00", - "content": "

Powerlist confirms outgoing Vogue editor is most powerful black person in Britain

", - "contentSnippet": "Powerlist confirms outgoing Vogue editor is most powerful black person in Britain", - "guid": "b1116353", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T10:10:27.000Z" - }, - { - "creator": "Lizzie Edmonds", - "date": "2023-10-27T10:08:35+00:00", - "title": "Taylor Swift fans speculating over identity of 'lying traitor' in new track", - "link": "https://www.standard.co.uk/showbiz/taylor-swift-1989-rerelease-lying-traitor-new-track-b1116347.html", - "pubDate": "Fri, 27 Oct 2023 10:08:35 GMT", - "dc:creator": "Lizzie Edmonds", - "dc:date": "2023-10-27T10:08:35+00:00", - "content": "

The rerelease, called 1989 (Taylor's Version), includes five new tracks

", - "contentSnippet": "The rerelease, called 1989 (Taylor's Version), includes five new tracks", - "guid": "b1116347", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T10:08:35.000Z" - }, - { - "creator": "Ellie Ng", - "date": "2023-10-27T10:05:53+00:00", - "title": "Man accused of \u2018terror-motivated\u2019 attacks further charged with assault", - "link": "https://www.standard.co.uk/news/crime/hartlepool-old-bailey-moroccan-b1116368.html", - "pubDate": "Fri, 27 Oct 2023 10:05:53 GMT", - "dc:creator": "Ellie Ng", - "dc:date": "2023-10-27T10:05:53+00:00", - "content": "Ahmed Alid, 44, is accused of murder, attempted murder, and two counts of assaulting emergency workers by beating.", - "contentSnippet": "Ahmed Alid, 44, is accused of murder, attempted murder, and two counts of assaulting emergency workers by beating.", - "guid": "b1116368", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T10:05:53.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-10-27T10:05:50+00:00", - "title": "England legacy intact and Jos Buttler's boys aren't finished yet... but their Cricket World Cup is", - "link": "https://www.standard.co.uk/sport/cricket/england-cricket-world-cup-buttler-legacy-b1116366.html", - "pubDate": "Fri, 27 Oct 2023 10:05:50 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-10-27T10:05:50+00:00", - "content": "

Wider questions over long-term future of ODI cricket and England's place in it must be solved

", - "contentSnippet": "Wider questions over long-term future of ODI cricket and England's place in it must be solved", - "guid": "b1116366", - "categories": [ - "Cricket", - "Sport" - ], - "isoDate": "2023-10-27T10:05:50.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-10-27T10:01:27+00:00", - "title": "Nadine Dorries teases meaning behind title of book on Boris Johnson\u2019s downfall", - "link": "https://www.standard.co.uk/news/politics/nadine-dorries-boris-johnson-keir-starmer-conservative-party-culture-secretary-b1116364.html", - "pubDate": "Fri, 27 Oct 2023 10:01:27 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-10-27T10:01:27+00:00", - "content": "It will be published on November 9.", - "contentSnippet": "It will be published on November 9.", - "guid": "b1116364", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T10:01:27.000Z" - }, - { - "creator": "Henry Saker-Clark", - "date": "2023-10-27T10:01:09+00:00", - "title": "Wilko shops to return to high street by Christmas, says new brand owner", - "link": "https://www.standard.co.uk/business/business-news/wilko-shops-to-return-to-high-street-by-christmas-says-new-brand-owner-b1116363.html", - "pubDate": "Fri, 27 Oct 2023 10:01:09 GMT", - "dc:creator": "Henry Saker-Clark", - "dc:date": "2023-10-27T10:01:09+00:00", - "content": "CDS Superstores said the first two standalone Wilko \u2018concept stores\u2019 will be opened in Plymouth and Exeter.", - "contentSnippet": "CDS Superstores said the first two standalone Wilko \u2018concept stores\u2019 will be opened in Plymouth and Exeter.", - "guid": "b1116363", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-10-27T10:01:09.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2023-10-27T09:57:45+00:00", - "title": "Best Argos deals to expect for Black Friday 2023: Tech, toys, homeware and more ", - "link": "https://www.standard.co.uk/shopping/esbest/black-friday/argos-deals-black-friday-sale-b1113834.html", - "pubDate": "Fri, 27 Oct 2023 09:57:45 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2023-10-27T09:57:45+00:00", - "content": "

Check out these irresistible bargains

", - "contentSnippet": "Check out these irresistible bargains", - "guid": "b1113834", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-10-27T09:57:45.000Z" - }, - { - "creator": "Ellie Davis", - "date": "2023-10-27T09:53:37+00:00", - "title": "Best TV deals to expect for Black Friday 2023 from Samsung to LG and more", - "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-tv-deals-black-friday-sale-b1113872.html", - "pubDate": "Fri, 27 Oct 2023 09:53:37 GMT", - "dc:creator": "Ellie Davis", - "dc:date": "2023-10-27T09:53:37+00:00", - "content": "

The early box deals you need to know about

", - "contentSnippet": "The early box deals you need to know about", - "guid": "b1113872", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-10-27T09:53:37.000Z" - }, - { - "creator": "Lisa McLoughlin ", - "date": "2023-10-27T09:51:38+00:00", - "title": "Amanda Abbington's fianc\u00e9 shares cryptic post after her shock Strictly Come Dancing exit ", - "link": "https://www.standard.co.uk/showbiz/amanda-abbington-fiance-jonathan-goodwin-strictly-come-dancing-exit-b1116335.html", - "pubDate": "Fri, 27 Oct 2023 09:51:38 GMT", - "dc:creator": "Lisa McLoughlin ", - "dc:date": "2023-10-27T09:51:38+00:00", - "content": "

The Sherlock actress confirmed she quit the BBC series on Tuesday for 'personal reasons'

", - "contentSnippet": "The Sherlock actress confirmed she quit the BBC series on Tuesday for 'personal reasons'", - "guid": "b1116335", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T09:51:38.000Z" - }, - { - "creator": "Matt Verri", - "date": "2023-10-27T09:39:39+00:00", - "title": "Manchester United: Alejandro Garnacho risks ban despite support from Andre Onana over controversial post", - "link": "https://www.standard.co.uk/sport/football/alejandro-garnacho-andre-onana-man-utd-post-b1116316.html", - "pubDate": "Fri, 27 Oct 2023 09:39:39 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2023-10-27T09:39:39+00:00", - "content": "

Onana has insisted the teenager should not face punishment but an FA charge remains a possibility

", - "contentSnippet": "Onana has insisted the teenager should not face punishment but an FA charge remains a possibility", - "guid": "b1116316", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T09:39:39.000Z" - }, - { - "creator": "Nizaar Kinsella", - "date": "2023-10-27T09:11:30+00:00", - "title": "Conor Gallagher's remarkable renaissance: From Chelsea cast-off to captain", - "link": "https://www.standard.co.uk/sport/football/conor-gallagher-chelsea-fc-b1116343.html", - "pubDate": "Fri, 27 Oct 2023 09:11:30 GMT", - "dc:creator": "Nizaar Kinsella", - "dc:date": "2023-10-27T09:11:30+00:00", - "content": "

Chelsea were happy to cash in on academy product but he's become a key cog in Mauricio Pochettino's improving Blues

", - "contentSnippet": "Chelsea were happy to cash in on academy product but he's become a key cog in Mauricio Pochettino's improving Blues", - "guid": "b1116343", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T09:11:30.000Z" - }, - { - "creator": "Simon Collings", - "date": "2023-10-27T08:39:40+00:00", - "title": "Pedro Neto responds to Arsenal links as Wolves winger reveals transfer 'hope'", - "link": "https://www.standard.co.uk/sport/football/arsenal-fc-transfer-news-pedro-neto-wolves-b1116334.html", - "pubDate": "Fri, 27 Oct 2023 08:39:40 GMT", - "dc:creator": "Simon Collings", - "dc:date": "2023-10-27T08:39:40+00:00", - "content": "

Arsenal have tracked Portuguese star for some time, but he remains focused on battle to beat the drop at Molineux

", - "contentSnippet": "Arsenal have tracked Portuguese star for some time, but he remains focused on battle to beat the drop at Molineux", - "guid": "b1116334", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T08:39:40.000Z" - }, - { - "creator": "Malik Ouzia", - "date": "2023-10-27T08:28:35+00:00", - "title": "Danny Ings' Greek tragedy underlines West Ham striker issue that won't go away", - "link": "https://www.standard.co.uk/sport/football/west-ham-danny-ings-olympiacos-b1116331.html", - "pubDate": "Fri, 27 Oct 2023 08:28:35 GMT", - "dc:creator": "Malik Ouzia", - "dc:date": "2023-10-27T08:28:35+00:00", - "content": "

Olympiacos defeat put Hammers' transfer decision in spotlight

", - "contentSnippet": "Olympiacos defeat put Hammers' transfer decision in spotlight", - "guid": "b1116331", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T08:28:35.000Z" - }, - { - "creator": "Dan Kilpatrick", - "date": "2023-10-27T07:55:39+00:00", - "title": "Carefree Tottenham must throw off shackles to contend with new expectations", - "link": "https://www.standard.co.uk/sport/football/tottenham-postecoglou-crystal-palace-title-expectations-b1116319.html", - "pubDate": "Fri, 27 Oct 2023 07:55:39 GMT", - "dc:creator": "Dan Kilpatrick", - "dc:date": "2023-10-27T07:55:39+00:00", - "content": "

Spurs face Crystal Palace tonight with the added pressure of unexpectedly leading the Premier League

", - "contentSnippet": "Spurs face Crystal Palace tonight with the added pressure of unexpectedly leading the Premier League", - "guid": "b1116319", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T07:55:39.000Z" - }, - { - "creator": "Beril Naz Hassan", - "date": "2023-10-27T15:55:09+00:00", - "title": "Why is Taylor Swift rerecording her old albums and which does she have left to record?", - "link": "https://www.standard.co.uk/news/world/taylor-swift-which-albums-does-she-own-re-record-b1092880.html", - "pubDate": "Fri, 27 Oct 2023 15:55:09 GMT", - "dc:creator": "Beril Naz Hassan", - "dc:date": "2023-10-27T15:55:09+00:00", - "content": "

Swifties have been showing their support by sticking to Taylor\u2019s new versions of her classic hits

", - "contentSnippet": "Swifties have been showing their support by sticking to Taylor\u2019s new versions of her classic hits", - "guid": "b1092880", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-10-27T15:55:09.000Z" - }, - { - "creator": "Lola Christina Alao", - "date": "2023-10-27T15:49:37+00:00", - "title": "International Stress Awareness Week 2023: what are the signs of stress and how to seek help", - "link": "https://www.standard.co.uk/news/uk/what-is-international-stress-awareness-week-signs-how-to-get-help-b1037393.html", - "pubDate": "Fri, 27 Oct 2023 15:49:37 GMT", - "dc:creator": "Lola Christina Alao", - "dc:date": "2023-10-27T15:49:37+00:00", - "content": "

Stress Awarness Week has taken place since 2018 with the aim of promoting health and wellbeing, and preventing stress

", - "contentSnippet": "Stress Awarness Week has taken place since 2018 with the aim of promoting health and wellbeing, and preventing stress", - "guid": "b1037393", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T15:49:37.000Z" - }, - { - "creator": "Lydia Chantler-Hicks and Miriam Burrell", - "date": "2023-10-27T15:49:22+00:00", - "title": "Maine shootings: Police hunting for gunman search river as thousands told to stay locked down", - "link": "https://www.standard.co.uk/news/world/maine-shootings-latest-search-manhunt-police-bowling-alley-b1116297.html", - "pubDate": "Fri, 27 Oct 2023 15:49:22 GMT", - "dc:creator": "Lydia Chantler-Hicks and Miriam Burrell", - "dc:date": "2023-10-27T15:49:22+00:00", - "content": "

Robert Card is suspected of killing 18 people and wounding 13 more after opening fire at a bowling alley

", - "contentSnippet": "Robert Card is suspected of killing 18 people and wounding 13 more after opening fire at a bowling alley", - "guid": "b1116297", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-10-27T15:49:22.000Z" - }, - { - "creator": "Ellie Iorizzo", - "date": "2023-10-27T15:47:45+00:00", - "title": "Pete Doherty suggests meeting Mark Blanco\u2019s mother to \u2018move on\u2019 from death", - "link": "https://www.standard.co.uk/culture/music/pete-doherty-crown-prosecution-service-london-whitechapel-none-b1116492.html", - "pubDate": "Fri, 27 Oct 2023 15:47:45 GMT", - "dc:creator": "Ellie Iorizzo", - "dc:date": "2023-10-27T15:47:45+00:00", - "content": "The rock star was interviewed by police but never arrested over the death.", - "contentSnippet": "The rock star was interviewed by police but never arrested over the death.", - "guid": "b1116492", - "categories": [ - "Music", - "Culture" - ], - "isoDate": "2023-10-27T15:47:45.000Z" - }, - { - "creator": "Rod Minchin", - "date": "2023-10-27T15:43:59+00:00", - "title": "\u2018Somerset Gimp\u2019 unmasked as gardener convicted of scaring female motorists", - "link": "https://www.standard.co.uk/news/crime/avon-and-somerset-police-police-b1116495.html", - "pubDate": "Fri, 27 Oct 2023 15:43:59 GMT", - "dc:creator": "Rod Minchin", - "dc:date": "2023-10-27T15:43:59+00:00", - "content": "When Joshua Hunt, 32, was arrested in May this year, he told police: \u2018I am not a gimp.\u2019", - "contentSnippet": "When Joshua Hunt, 32, was arrested in May this year, he told police: \u2018I am not a gimp.\u2019", - "guid": "b1116495", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T15:43:59.000Z" - }, - { - "creator": "Sami Quadri", - "date": "2023-10-27T15:42:14+00:00", - "title": "FTX founder Sam Bankman-Fried testifies at his fraud trial", - "link": "https://www.standard.co.uk/news/world/sam-bankman-fried-ftx-fraud-trial-testimony-manhattan-b1116482.html", - "pubDate": "Fri, 27 Oct 2023 15:42:14 GMT", - "dc:creator": "Sami Quadri", - "dc:date": "2023-10-27T15:42:14+00:00", - "content": "

The former cryptocurrency executive is accused of stealing billions of dollars from customers and investors over several years

", - "contentSnippet": "The former cryptocurrency executive is accused of stealing billions of dollars from customers and investors over several years", - "guid": "b1116482", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-10-27T15:42:14.000Z" - }, - { - "creator": "Beril Naz Hassan", - "date": "2023-10-27T15:42:13+00:00", - "title": "What is National Black Cat Day and why are black cats considered bad luck?", - "link": "https://www.standard.co.uk/news/uk/national-black-cat-day-why-bad-luck-superstition-b1116493.html", - "pubDate": "Fri, 27 Oct 2023 15:42:13 GMT", - "dc:creator": "Beril Naz Hassan", - "dc:date": "2023-10-27T15:42:13+00:00", - "content": "

It\u2019s time to put aside our superstitions and celebrate black cats

", - "contentSnippet": "It\u2019s time to put aside our superstitions and celebrate black cats", - "guid": "b1116493", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T15:42:13.000Z" - }, - { - "creator": "City Staff", - "date": "2023-10-27T15:41:43+00:00", - "title": "FTSE 100 Live: NatWest shares plunge after Farage report, blue-chips in two-month low close", - "link": "https://www.standard.co.uk/business/ftse-100-live-27-october-amazon-natwest-iag-pound-dollar-stocks-shares-inflation-interest-rate-bank-of-england-b1116278.html", - "pubDate": "Fri, 27 Oct 2023 15:41:43 GMT", - "dc:creator": "City Staff", - "dc:date": "2023-10-27T15:41:43+00:00", - "content": "

", - "contentSnippet": "", - "guid": "b1116278", - "categories": [ - "Business" - ], - "isoDate": "2023-10-27T15:41:43.000Z" - }, - { - "creator": "Ellie Davis", - "date": "2023-10-27T15:40:26+00:00", - "title": "Best 90s fragrances we love that are back in fashion", - "link": "https://www.standard.co.uk/shopping/esbest/beauty/fragrance/best-90s-fragrances-b1115920.html", - "pubDate": "Fri, 27 Oct 2023 15:40:26 GMT", - "dc:creator": "Ellie Davis", - "dc:date": "2023-10-27T15:40:26+00:00", - "content": "

There has been a resurgence in these nostalgic scents

", - "contentSnippet": "There has been a resurgence in these nostalgic scents", - "guid": "b1115920", - "categories": [ - "Fragrance", - "Beauty", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-10-27T15:40:26.000Z" - }, - { - "creator": "George Flood", - "date": "2023-10-27T15:36:46+00:00", - "title": "Liverpool XI vs Nottingham Forest: Confirmed team news, predicted lineup and injury latest", - "link": "https://www.standard.co.uk/sport/football/liverpool-fc-xi-vs-nottingham-forest-confirmed-team-news-predicted-lineup-injury-latest-premier-league-2023-b1116479.html", - "pubDate": "Fri, 27 Oct 2023 15:36:46 GMT", - "dc:creator": "George Flood", - "dc:date": "2023-10-27T15:36:46+00:00", - "content": "

Darwin Nunez will be pressing to start in Sunday's Premier League clash at Anfield

", - "contentSnippet": "Darwin Nunez will be pressing to start in Sunday's Premier League clash at Anfield", - "guid": "b1116479", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T15:36:46.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2023-10-27T15:28:58+00:00", - "title": "Robert De Niro and Asa Butterfield become friends in new Uber One ad", - "link": "https://www.standard.co.uk/showbiz/robert-de-niro-asa-butterfield-uber-one-advert-b1116459.html", - "pubDate": "Fri, 27 Oct 2023 15:28:58 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2023-10-27T15:28:58+00:00", - "content": "

The unlikely duo bond over their shared love of eating food and going places

", - "contentSnippet": "The unlikely duo bond over their shared love of eating food and going places", - "guid": "b1116459", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T15:28:58.000Z" - }, - { - "creator": "Lauren Gilmour", - "date": "2023-10-27T15:27:36+00:00", - "title": "Rail services suspended as weather warning for rain extended", - "link": "https://www.standard.co.uk/news/environment/aberdeen-inverness-scotrail-perth-dundee-b1116344.html", - "pubDate": "Fri, 27 Oct 2023 15:27:36 GMT", - "dc:creator": "Lauren Gilmour", - "dc:date": "2023-10-27T15:27:36+00:00", - "content": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", - "contentSnippet": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", - "guid": "b1116344", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2023-10-27T15:27:36.000Z" - }, - { - "creator": "Tom Davidson", - "date": "2023-10-27T15:25:15+00:00", - "title": "Thelma Schoonmaker: Cinemas showing Killers of the Flower Moon with intermission 'a violation'", - "link": "https://www.standard.co.uk/culture/film/killers-of-the-flower-moon-intermission-cinemas-thelma-schoonmaker-martin-scorsese-b1116451.html", - "pubDate": "Fri, 27 Oct 2023 15:25:15 GMT", - "dc:creator": "Tom Davidson", - "dc:date": "2023-10-27T15:25:15+00:00", - "content": "

Director Martin Scorsese has defended the length of his latest work, the acclaimed Killers of the Flower Moon

", - "contentSnippet": "Director Martin Scorsese has defended the length of his latest work, the acclaimed Killers of the Flower Moon", - "guid": "b1116451", - "categories": [ - "Film", - "Culture" - ], - "isoDate": "2023-10-27T15:25:15.000Z" - }, - { - "creator": "Sarah Harvey and Rachael Burford", - "date": "2023-10-27T15:20:52+00:00", - "title": "Boris Johnson to join GB News as presenter", - "link": "https://www.standard.co.uk/news/politics/boris-johnson-join-gb-news-presenter-b1116464.html", - "pubDate": "Fri, 27 Oct 2023 15:20:52 GMT", - "dc:creator": "Sarah Harvey and Rachael Burford", - "dc:date": "2023-10-27T15:20:52+00:00", - "content": "

He is the latest Tory politician to take up a presenting role on the channel

", - "contentSnippet": "He is the latest Tory politician to take up a presenting role on the channel", - "guid": "b1116464", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T15:20:52.000Z" - }, - { - "creator": "Rod Minchin", - "date": "2023-10-27T15:17:55+00:00", - "title": "Man dressed in gimp suit who terrified female drivers convicted of public order offences", - "link": "https://www.standard.co.uk/news/crime/gimp-suit-man-motorists-bleadon-bristol-magistrates-court-b1116455.html", - "pubDate": "Fri, 27 Oct 2023 15:17:55 GMT", - "dc:creator": "Rod Minchin", - "dc:date": "2023-10-27T15:17:55+00:00", - "content": "

One woman said 'he was writhing and crawling as if in a military fashion', Bristol Magistrates Court heard

", - "contentSnippet": "One woman said 'he was writhing and crawling as if in a military fashion', Bristol Magistrates Court heard", - "guid": "b1116455", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T15:17:55.000Z" - }, - { - "creator": "Paul Cargill", - "date": "2023-10-27T15:13:25+00:00", - "title": "Hundreds of offshore workers to be balloted in row over rotas and pay", - "link": "https://www.standard.co.uk/news/uk/hundreds-of-offshore-workers-to-be-balloted-in-row-over-rotas-and-pay-b1116487.html", - "pubDate": "Fri, 27 Oct 2023 15:13:25 GMT", - "dc:creator": "Paul Cargill", - "dc:date": "2023-10-27T15:13:25+00:00", - "content": "The dispute centres on a company\u2019s alleged refusal to reform working rotas and provide paid leave.", - "contentSnippet": "The dispute centres on a company\u2019s alleged refusal to reform working rotas and provide paid leave.", - "guid": "b1116487", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T15:13:25.000Z" - }, - { - "creator": "Claudia Cockerell and Ethan Croft", - "date": "2023-10-27T15:12:19+00:00", - "title": "Londoners shocked by \u00a325 per person pub quiz (and 'disappointing' prize)", - "link": "https://www.standard.co.uk/news/londoners-diary/londoners-shocked-twenty-five-pound-per-person-pub-quiz-the-pelican-b1116483.html", - "pubDate": "Fri, 27 Oct 2023 15:12:19 GMT", - "dc:creator": "Claudia Cockerell and Ethan Croft", - "dc:date": "2023-10-27T15:12:19+00:00", - "content": "

A winning team was left disappointed by their prize

", - "contentSnippet": "A winning team was left disappointed by their prize", - "guid": "b1116483", - "categories": [ - "Diary", - "News" - ], - "isoDate": "2023-10-27T15:12:19.000Z" - }, - { - "creator": "Nina Lloyd", - "date": "2023-10-27T15:12:09+00:00", - "title": "UK ministers continue to resist calls for ceasefire in Middle East", - "link": "https://www.standard.co.uk/news/politics/gillian-keegan-israel-middle-east-gaza-hamas-b1116352.html", - "pubDate": "Fri, 27 Oct 2023 15:12:09 GMT", - "dc:creator": "Nina Lloyd", - "dc:date": "2023-10-27T15:12:09+00:00", - "content": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", - "contentSnippet": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", - "guid": "b1116352", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T15:12:09.000Z" - }, - { - "creator": "Tamara Davison,Beril Naz Hassan and Nuray Bulbul", - "date": "2023-10-27T15:11:49+00:00", - "title": "London airports\u2019 cancelled flights list: Luton, Gatwick, Heathrow and more", - "link": "https://www.standard.co.uk/news/uk/london-airport-cancelled-flights-list-gatwick-heathrow-b1111239.html", - "pubDate": "Fri, 27 Oct 2023 15:11:49 GMT", - "dc:creator": "Tamara Davison,Beril Naz Hassan and Nuray Bulbul", - "dc:date": "2023-10-27T15:11:49+00:00", - "content": "

Strikes and staffing challenges have caused chaos at many UK airports

", - "contentSnippet": "Strikes and staffing challenges have caused chaos at many UK airports", - "guid": "b1111239", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T15:11:49.000Z" - }, - { - "creator": "Craig Paton", - "date": "2023-10-27T15:10:07+00:00", - "title": "Yousaf calls on every UK political leader to back Gaza ceasefire", - "link": "https://www.standard.co.uk/news/politics/humza-yousaf-gaza-hamas-rishi-sunak-keir-starmer-b1116484.html", - "pubDate": "Fri, 27 Oct 2023 15:10:07 GMT", - "dc:creator": "Craig Paton", - "dc:date": "2023-10-27T15:10:07+00:00", - "content": "The First Minister has written to the leaders of all parties to warn without action, the situation will become \u2018cataclysmic\u2019.", - "contentSnippet": "The First Minister has written to the leaders of all parties to warn without action, the situation will become \u2018cataclysmic\u2019.", - "guid": "b1116484", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T15:10:07.000Z" - }, - { - "creator": "Jonathan Prynn", - "date": "2023-10-27T15:09:06+00:00", - "title": "NatWest mess is harming the interests of taxpayers", - "link": "https://www.standard.co.uk/business/natwest-mess-nigel-farage-alison-rose-taxpayer-sir-howard-davies-coutts-bank-account-b1116467.html", - "pubDate": "Fri, 27 Oct 2023 15:09:06 GMT", - "dc:creator": "Jonathan Prynn", - "dc:date": "2023-10-27T15:09:06+00:00", - "content": "

City Comment: Chairman Sir Howard Davies has some tough decisions ahead

", - "contentSnippet": "City Comment: Chairman Sir Howard Davies has some tough decisions ahead", - "guid": "b1116467", - "categories": [ - "Business" - ], - "isoDate": "2023-10-27T15:09:06.000Z" - }, - { - "creator": "Sam Hall", - "date": "2023-10-27T15:09:00+00:00", - "title": "Olympic gymnast hopes MBE will inspire others \u2018to be the best that they can\u2019", - "link": "https://www.standard.co.uk/news/uk/great-britain-mbe-los-angeles-buckingham-palace-princess-b1116485.html", - "pubDate": "Fri, 27 Oct 2023 15:09:00 GMT", - "dc:creator": "Sam Hall", - "dc:date": "2023-10-27T15:09:00+00:00", - "content": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", - "contentSnippet": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", - "guid": "b1116485", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T15:09:00.000Z" - }, - { - "creator": "Josh Salisbury", - "date": "2023-10-27T15:07:44+00:00", - "title": "West Ham: Grassroots football club 'homeless' after council gives playing field to premier league team", - "link": "https://www.standard.co.uk/news/london/bealonians-fc-west-ham-redbridge-council-oakfield-playing-fields-b1116439.html", - "pubDate": "Fri, 27 Oct 2023 15:07:44 GMT", - "dc:creator": "Josh Salisbury", - "dc:date": "2023-10-27T15:07:44+00:00", - "content": "

Bealonians FC fears for future after premier league side given lease of playing fields

", - "contentSnippet": "Bealonians FC fears for future after premier league side given lease of playing fields", - "guid": "b1116439", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T15:07:44.000Z" - }, - { - "creator": "Alex Young", - "date": "2023-10-27T15:07:19+00:00", - "title": "Man City XI vs Manchester United: Predicted lineup, confirmed team news, injury latest", - "link": "https://www.standard.co.uk/sport/football/man-city-xi-vs-man-utd-predicted-lineup-confirmed-team-news-injury-latest-2023-premier-league-b1116478.html", - "pubDate": "Fri, 27 Oct 2023 15:07:19 GMT", - "dc:creator": "Alex Young", - "dc:date": "2023-10-27T15:07:19+00:00", - "content": "

The Premier League champions are almost at full strength for the Manchester derby

", - "contentSnippet": "The Premier League champions are almost at full strength for the Manchester derby", - "guid": "b1116478", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T15:07:19.000Z" - }, - { - "creator": "Callum Parke", - "date": "2023-10-27T15:06:10+00:00", - "title": "Thai football team captain who was trapped in cave killed himself, coroner rules", - "link": "https://www.standard.co.uk/news/crime/thai-leicester-city-bbc-b1116480.html", - "pubDate": "Fri, 27 Oct 2023 15:06:10 GMT", - "dc:creator": "Callum Parke", - "dc:date": "2023-10-27T15:06:10+00:00", - "content": "The coroner said Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019.", - "contentSnippet": "The coroner said Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019.", - "guid": "b1116480", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T15:06:10.000Z" - }, - { - "creator": "Miriam Burrell", - "date": "2023-10-27T15:05:06+00:00", - "title": "London teacher who abused boys after grooming them on dating app Grindr jailed", - "link": "https://www.standard.co.uk/news/crime/grindr-sexual-abuse-london-teacher-metropolitan-police-george-watkins-b1116469.html", - "pubDate": "Fri, 27 Oct 2023 15:05:06 GMT", - "dc:creator": "Miriam Burrell", - "dc:date": "2023-10-27T15:05:06+00:00", - "content": "

George Watkins preyed on young teenagers who hadn't come out to their families

", - "contentSnippet": "George Watkins preyed on young teenagers who hadn't come out to their families", - "guid": "b1116469", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T15:05:06.000Z" - }, - { - "creator": "Rod Minchin", - "date": "2023-10-27T15:03:54+00:00", - "title": "Man found guilty of gimp suit offences towards female motorists", - "link": "https://www.standard.co.uk/news/crime/somerset-avon-and-somerset-police-b1116481.html", - "pubDate": "Fri, 27 Oct 2023 15:03:54 GMT", - "dc:creator": "Rod Minchin", - "dc:date": "2023-10-27T15:03:54+00:00", - "content": "He was fined \u00a3100 and ordered to pay \u00a3200 compensation to each of his three victims and \u00a3620 prosecution costs.", - "contentSnippet": "He was fined \u00a3100 and ordered to pay \u00a3200 compensation to each of his three victims and \u00a3620 prosecution costs.", - "guid": "b1116481", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T15:03:54.000Z" - }, - { - "creator": "Noah Vickers", - "date": "2023-10-27T15:02:18+00:00", - "title": "City Hall policing board member slammed for calling Covid 'greatest hustle' and warning against 'climate lockdowns'", - "link": "https://www.standard.co.uk/news/london/sayce-holmes-lewis-sadiq-khan-london-policing-board-social-media-covid-climate-world-economic-forum-b1116259.html", - "pubDate": "Fri, 27 Oct 2023 15:02:18 GMT", - "dc:creator": "Noah Vickers", - "dc:date": "2023-10-27T15:02:18+00:00", - "content": "

Sayce Holmes-Lewis criticised for 'hugely irresponsible comments' - but City Hall says members are expected to have 'a variety of strong opinions and perspectives'

", - "contentSnippet": "Sayce Holmes-Lewis criticised for 'hugely irresponsible comments' - but City Hall says members are expected to have 'a variety of strong opinions and perspectives'", - "guid": "b1116259", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T15:02:18.000Z" - }, - { - "creator": "Maryam Kara", - "date": "2023-10-27T15:00:54+00:00", - "title": "What are Brits' biggest fears? Being ghosted is one of them", - "link": "https://www.standard.co.uk/news/uk/brits-biggest-fears-halloween-phobias-ghosted-b1116423.html", - "pubDate": "Fri, 27 Oct 2023 15:00:54 GMT", - "dc:creator": "Maryam Kara", - "dc:date": "2023-10-27T15:00:54+00:00", - "content": "

New research has revealed the top 20 modern spooks for Brits \u2013 and you may be surprised

", - "contentSnippet": "New research has revealed the top 20 modern spooks for Brits \u2013 and you may be surprised", - "guid": "b1116423", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T15:00:54.000Z" - }, - { - "creator": "Joe Bromley", - "date": "2023-10-27T15:00:36+00:00", - "title": "\u2018Father is fathering\u2019: Travis Kelce is a fashion Mob daddy ", - "link": "https://www.standard.co.uk/lifestyle/fashion/father-is-fathering-travis-kelce-is-a-fashion-mob-daddy-b1116416.html", - "pubDate": "Fri, 27 Oct 2023 15:00:36 GMT", - "dc:creator": "Joe Bromley", - "dc:date": "2023-10-27T15:00:36+00:00", - "content": "

Travis Kelce is the fashion boys' latest recruit \u2014 and he is going gangster

", - "contentSnippet": "Travis Kelce is the fashion boys' latest recruit \u2014 and he is going gangster", - "guid": "b1116416", - "categories": [ - "Fashion", - "Lifestyle" - ], - "isoDate": "2023-10-27T15:00:36.000Z" - }, - { - "creator": "Jack Kessler", - "date": "2023-10-27T14:58:27+00:00", - "title": "OPINION - Why Taylor Swift is bigger than The Beatles (but smaller than the French economy)", - "link": "https://www.standard.co.uk/comment/taylor-swift-1989-version-apple-the-beatles-b1116475.html", - "pubDate": "Fri, 27 Oct 2023 14:58:27 GMT", - "dc:creator": "Jack Kessler", - "dc:date": "2023-10-27T14:58:27+00:00", - "content": "

If you want to annoy an economist, try mixing up stock and flow. This is a mistake commonly made even by business journalists (though not Jonathan Prynn, of course) when attempting to describe the value of large companies.

", - "contentSnippet": "If you want to annoy an economist, try mixing up stock and flow. This is a mistake commonly made even by business journalists (though not Jonathan Prynn, of course) when attempting to describe the value of large companies.", - "guid": "b1116475", - "categories": [ - "Comment" - ], - "isoDate": "2023-10-27T14:58:27.000Z" - }, - { - "creator": "Simon Hunt", - "date": "2023-10-27T14:56:03+00:00", - "title": "London architects unveil plans to convert Enfield golf course into modern housing", - "link": "https://www.standard.co.uk/business/london-architects-plan-enfield-golf-course-housing-rcka-b1116472.html", - "pubDate": "Fri, 27 Oct 2023 14:56:03 GMT", - "dc:creator": "Simon Hunt", - "dc:date": "2023-10-27T14:56:03+00:00", - "content": "

The move could see hundreds of new homes created for Londoners

", - "contentSnippet": "The move could see hundreds of new homes created for Londoners", - "guid": "b1116472", - "categories": [ - "Business" - ], - "isoDate": "2023-10-27T14:56:03.000Z" - }, - { - "creator": "Sam Blewett", - "date": "2023-10-27T14:55:39+00:00", - "title": "Khan, Sarwar and Burnham pile pressure on Starmer by demanding Israel ceasefire", - "link": "https://www.standard.co.uk/news/politics/keir-starmer-israel-sadiq-khan-burnham-andy-burnham-b1116474.html", - "pubDate": "Fri, 27 Oct 2023 14:55:39 GMT", - "dc:creator": "Sam Blewett", - "dc:date": "2023-10-27T14:55:39+00:00", - "content": "The Labour leader is standing by his stance of supporting Israel\u2019s right to self defence despite the Palestinian civilians being killed.", - "contentSnippet": "The Labour leader is standing by his stance of supporting Israel\u2019s right to self defence despite the Palestinian civilians being killed.", - "guid": "b1116474", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T14:55:39.000Z" - }, - { - "creator": "Lauren Gilmour", - "date": "2023-10-27T14:54:38+00:00", - "title": "Scottish Water staff plan weekly strikes over three months amid pay row", - "link": "https://www.standard.co.uk/business/business-news/scottish-water-staff-plan-weekly-strikes-over-three-months-amid-pay-row-b1116473.html", - "pubDate": "Fri, 27 Oct 2023 14:54:38 GMT", - "dc:creator": "Lauren Gilmour", - "dc:date": "2023-10-27T14:54:38+00:00", - "content": "Unions accused the firm of \u2018insatiable greed\u2019.", - "contentSnippet": "Unions accused the firm of \u2018insatiable greed\u2019.", - "guid": "b1116473", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-10-27T14:54:38.000Z" - }, - { - "creator": "Bill McLoughlin", - "date": "2023-10-27T14:45:31+00:00", - "title": "Vulnerable Crayford pensioner suffering from dementia not seen for three days", - "link": "https://www.standard.co.uk/news/london/crayford-pensioner-missing-dementia-appeal-met-police-b1116463.html", - "pubDate": "Fri, 27 Oct 2023 14:45:31 GMT", - "dc:creator": "Bill McLoughlin", - "dc:date": "2023-10-27T14:45:31+00:00", - "content": "

'Concern that Bob is in danger increases every moment that he remains missing', say police

", - "contentSnippet": "'Concern that Bob is in danger increases every moment that he remains missing', say police", - "guid": "b1116463", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T14:45:31.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-10-27T14:43:52+00:00", - "title": "Ken Bruce urges people to listen to autistic community as he is made an MBE", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/murray-scottish-buckingham-palace-princess-royal-b1116471.html", - "pubDate": "Fri, 27 Oct 2023 14:43:52 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-10-27T14:43:52+00:00", - "content": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", - "contentSnippet": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", - "guid": "b1116471", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-10-27T14:43:52.000Z" - }, - { - "creator": "Madeleine Spencer", - "date": "2023-10-27T14:27:05+00:00", - "title": "Meghan Markle's makeup artist on how to keep your makeup fresh all day", - "link": "https://www.standard.co.uk/lifestyle/beauty/daniel-martin-makeup-artist-meghan-markle-fresh-skin-tips-b1115419.html", - "pubDate": "Fri, 27 Oct 2023 14:27:05 GMT", - "dc:creator": "Madeleine Spencer", - "dc:date": "2023-10-27T14:27:05+00:00", - "content": "

Daniel Martin, celebrity MUA for Jessica Biel, Michelle Yeoh and Priyanka Chopra, shares his simple tips for day-to-night makeup, with Madeleine Spencer

", - "contentSnippet": "Daniel Martin, celebrity MUA for Jessica Biel, Michelle Yeoh and Priyanka Chopra, shares his simple tips for day-to-night makeup, with Madeleine Spencer", - "guid": "b1115419", - "categories": [ - "Beauty", - "Lifestyle" - ], - "isoDate": "2023-10-27T14:27:05.000Z" - }, - { - "creator": "Jamel Smith", - "date": "2023-10-27T14:25:53+00:00", - "title": "Son of Hamas hostage says Palestinian protests \u2018celebrated his pain\u2019", - "link": "https://www.standard.co.uk/news/politics/son-north-london-hamas-british-life-b1116462.html", - "pubDate": "Fri, 27 Oct 2023 14:25:53 GMT", - "dc:creator": "Jamel Smith", - "dc:date": "2023-10-27T14:25:53+00:00", - "content": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", - "contentSnippet": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", - "guid": "b1116462", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T14:25:53.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2023-10-27T14:23:23+00:00", - "title": "Nicola Peltz puts Victoria Beckham feud talk behind her as she wears Posh Spice t-shirt", - "link": "https://www.standard.co.uk/showbiz/nicola-peltz-wears-posh-spice-tshirt-victoria-beckham-feud-b1116421.html", - "pubDate": "Fri, 27 Oct 2023 14:23:23 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2023-10-27T14:23:23+00:00", - "content": "

The move got the thumbs up by the Transformers star's pop star-turned-fashion designer mother-in-law

", - "contentSnippet": "The move got the thumbs up by the Transformers star's pop star-turned-fashion designer mother-in-law", - "guid": "b1116421", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T14:23:23.000Z" - }, - { - "creator": "Dom Smith", - "date": "2023-10-27T14:22:01+00:00", - "title": "Marco Silva believes new Fulham contract 'could have happened earlier' as he explains decision", - "link": "https://www.standard.co.uk/sport/football/marco-silva-fulham-manager-new-contract-b1116461.html", - "pubDate": "Fri, 27 Oct 2023 14:22:01 GMT", - "dc:creator": "Dom Smith", - "dc:date": "2023-10-27T14:22:01+00:00", - "content": "

Silva signed a new three-year contract extension at Craven Cottage this week

", - "contentSnippet": "Silva signed a new three-year contract extension at Craven Cottage this week", - "guid": "b1116461", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T14:22:01.000Z" - }, - { - "creator": "Tina Campbell", - "date": "2023-10-27T14:15:40+00:00", - "title": "Lewis Capaldi tops poll of sexiest male musicians in the UK", - "link": "https://www.standard.co.uk/showbiz/lewis-capaldi-tops-poll-sexiest-male-musicians-uk-b1116438.html", - "pubDate": "Fri, 27 Oct 2023 14:15:40 GMT", - "dc:creator": "Tina Campbell", - "dc:date": "2023-10-27T14:15:40+00:00", - "content": "

The Scottish crooner beat out the likes of Harry Styles and Zayn Malik

", - "contentSnippet": "The Scottish crooner beat out the likes of Harry Styles and Zayn Malik", - "guid": "b1116438", - "categories": [ - "Showbiz" - ], - "isoDate": "2023-10-27T14:15:40.000Z" - }, - { - "creator": "Daniel O'Boyle", - "date": "2023-10-27T14:12:54+00:00", - "title": "British Airways owner IAG in record third quarter despite \u00a344 million hit from \u2018higher disruption\u2019", - "link": "https://www.standard.co.uk/business/british-airways-owner-iag-airline-planes-flights-airport-travel-nats-chaos-b1116341.html", - "pubDate": "Fri, 27 Oct 2023 14:12:54 GMT", - "dc:creator": "Daniel O'Boyle", - "dc:date": "2023-10-27T14:12:54+00:00", - "content": "

IAG said that leisure demand was \u201cvery strong\u201d, but business travel has been slower to recover

", - "contentSnippet": "IAG said that leisure demand was \u201cvery strong\u201d, but business travel has been slower to recover", - "guid": "b1116341", - "categories": [ - "Business" - ], - "isoDate": "2023-10-27T14:12:54.000Z" - }, - { - "creator": "Vicky Jessop", - "date": "2023-10-27T14:09:40+00:00", - "title": "The best gaming bars in London, from classic consoles to VR", - "link": "https://www.standard.co.uk/culture/gaming/best-gaming-bars-london-consoles-vr-b1116361.html", - "pubDate": "Fri, 27 Oct 2023 14:09:40 GMT", - "dc:creator": "Vicky Jessop", - "dc:date": "2023-10-27T14:09:40+00:00", - "content": "

From Squid Game competitions to virtual island paradises, here's our pick of the best of the best gaming bars

", - "contentSnippet": "From Squid Game competitions to virtual island paradises, here's our pick of the best of the best gaming bars", - "guid": "b1116361", - "categories": [ - "Gaming", - "Culture" - ], - "isoDate": "2023-10-27T14:09:40.000Z" - }, - { - "creator": "Jon Weeks and Rachelle Abbott", - "date": "2023-10-27T14:07:58+00:00", - "title": "Inside Elon Musk's \u2018damaging\u2019 first year at X - Tech & Science Daily podcast", - "link": "https://www.standard.co.uk/comment/podcasts/inside-elon-musk-first-year-at-x-b1116450.html", - "pubDate": "Fri, 27 Oct 2023 14:07:58 GMT", - "dc:creator": "Jon Weeks and Rachelle Abbott", - "dc:date": "2023-10-27T14:07:58+00:00", - "content": "

", - "contentSnippet": "", - "guid": "b1116450", - "categories": [ - "Podcasts", - "Comment" - ], - "isoDate": "2023-10-27T14:07:58.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-10-27T14:02:00+00:00", - "title": "Barcelona vs Real Madrid lineups: Predicted XIs, confirmed team news and injury latest for El Clasico", - "link": "https://www.standard.co.uk/sport/football/fc-barcelona-vs-real-madrid-lineups-predicted-xi-confirmed-team-news-injury-latest-el-clasico-2023-b1116329.html", - "pubDate": "Fri, 27 Oct 2023 14:02:00 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-10-27T14:02:00+00:00", - "content": "

Robert Lewandowski among major Blaugrana doubts as Los Blancos ponder major midfield question

", - "contentSnippet": "Robert Lewandowski among major Blaugrana doubts as Los Blancos ponder major midfield question", - "guid": "b1116329", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T14:02:00.000Z" - }, - { - "creator": "Jack Kessler", - "date": "2023-10-27T14:00:59+00:00", - "title": "OPINION - The Women Who Made Modern Economics review: Rachel Reeves makes a strong point, if only it weren't so dull", - "link": "https://www.standard.co.uk/culture/books/rachel-reeves-the-women-who-made-modern-economics-book-review-b1116349.html", - "pubDate": "Fri, 27 Oct 2023 14:00:59 GMT", - "dc:creator": "Jack Kessler", - "dc:date": "2023-10-27T14:00:59+00:00", - "content": "

She's bidding to be the next Chancellor, so what can we learn from this book?

", - "contentSnippet": "She's bidding to be the next Chancellor, so what can we learn from this book?", - "guid": "b1116349", - "categories": [ - "Books", - "Culture" - ], - "isoDate": "2023-10-27T14:00:59.000Z" - }, - { - "creator": "Isobel Van Dyke", - "date": "2023-10-27T14:00:39+00:00", - "title": "Your Friday night playlist curated by west London\u2019s p-rallel ", - "link": "https://www.standard.co.uk/culture/prallel-dj-movement-interview-playlist-raye-b1116432.html", - "pubDate": "Fri, 27 Oct 2023 14:00:39 GMT", - "dc:creator": "Isobel Van Dyke", - "dc:date": "2023-10-27T14:00:39+00:00", - "content": "

As he releases his 10-track mixtape, garage DJ and producer p-rallel talks dream collaborations, the best venues in London right now, and five songs to kickstart your Friday night in the city

", - "contentSnippet": "As he releases his 10-track mixtape, garage DJ and producer p-rallel talks dream collaborations, the best venues in London right now, and five songs to kickstart your Friday night in the city", - "guid": "b1116432", - "categories": [ - "Culture" - ], - "isoDate": "2023-10-27T14:00:39.000Z" - }, - { - "creator": "Tony Jones", - "date": "2023-10-27T14:00:05+00:00", - "title": "Leopards feature in latest edition of acclaimed wildlife photobook series", - "link": "https://www.standard.co.uk/news/environment/ricky-gervais-african-russell-crowe-remembering-wildlife-botswana-b1116457.html", - "pubDate": "Fri, 27 Oct 2023 14:00:05 GMT", - "dc:creator": "Tony Jones", - "dc:date": "2023-10-27T14:00:05+00:00", - "content": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", - "contentSnippet": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", - "guid": "b1116457", - "categories": [ - "Environment", - "News" - ], - "isoDate": "2023-10-27T14:00:05.000Z" - }, - { - "creator": "Matt Verri", - "date": "2023-10-27T13:50:13+00:00", - "title": "Mikel Arteta calls for Premier League change as Arsenal's injury problems grow", - "link": "https://www.standard.co.uk/sport/football/mikel-arteta-arsenal-fc-premier-league-rule-change-injuries-b1116449.html", - "pubDate": "Fri, 27 Oct 2023 13:50:13 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2023-10-27T13:50:13+00:00", - "content": "

The Gunners will be without Thomas Partey and Gabriel Jesus for the next few weeks

", - "contentSnippet": "The Gunners will be without Thomas Partey and Gabriel Jesus for the next few weeks", - "guid": "b1116449", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T13:50:13.000Z" - }, - { - "creator": "Sam Blewett", - "date": "2023-10-27T13:48:01+00:00", - "title": "Khan and Sarwar demand Israel-Hamas ceasefire, adding to pressure on Starmer", - "link": "https://www.standard.co.uk/news/politics/keir-starmer-sadiq-khan-israel-gaza-muslim-b1116435.html", - "pubDate": "Fri, 27 Oct 2023 13:48:01 GMT", - "dc:creator": "Sam Blewett", - "dc:date": "2023-10-27T13:48:01+00:00", - "content": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", - "contentSnippet": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", - "guid": "b1116435", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T13:48:01.000Z" - }, - { - "creator": "Ryan McDougall", - "date": "2023-10-27T13:45:36+00:00", - "title": "Partygate was \u2018ultimate insult\u2019 to Covid bereaved, inquiry told", - "link": "https://www.standard.co.uk/news/crime/partygate-scottish-uk-government-government-mps-b1116453.html", - "pubDate": "Fri, 27 Oct 2023 13:45:36 GMT", - "dc:creator": "Ryan McDougall", - "dc:date": "2023-10-27T13:45:36+00:00", - "content": "Jane Morrison, who lost her wife to coronavirus in 2020, addressed the Scottish Covid-19 Inquiry on Friday.", - "contentSnippet": "Jane Morrison, who lost her wife to coronavirus in 2020, addressed the Scottish Covid-19 Inquiry on Friday.", - "guid": "b1116453", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T13:45:36.000Z" - }, - { - "creator": "Tania Leslau", - "date": "2023-10-27T13:44:14+00:00", - "title": "Best fashion deals to expect for Black Friday 2023: ASOS, Weekday and more", - "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-fashion-clothing-deals-black-friday-b1113847.html", - "pubDate": "Fri, 27 Oct 2023 13:44:14 GMT", - "dc:creator": "Tania Leslau", - "dc:date": "2023-10-27T13:44:14+00:00", - "content": "

Style steals for all

", - "contentSnippet": "Style steals for all", - "guid": "b1113847", - "categories": [ - "Black Friday", - "ES Best Home", - "Shopping" - ], - "isoDate": "2023-10-27T13:44:14.000Z" - }, - { - "creator": "Elizabeth Gregory", - "date": "2023-10-27T13:36:46+00:00", - "title": "The five exhibitions to see this week in London, from Claudette Johnson to Maha Ahmed (Oct 27 to Nov 3)", - "link": "https://www.standard.co.uk/culture/exhibitions/the-five-exhibitions-to-see-this-week-in-london-b1102286.html", - "pubDate": "Fri, 27 Oct 2023 13:36:46 GMT", - "dc:creator": "Elizabeth Gregory", - "dc:date": "2023-10-27T13:36:46+00:00", - "content": "

We pick the best art shows to enjoy this week

", - "contentSnippet": "We pick the best art shows to enjoy this week", - "guid": "b1102286", - "categories": [ - "Exhibitions", - "Culture" - ], - "isoDate": "2023-10-27T13:36:46.000Z" - }, - { - "creator": "Nick Purewal", - "date": "2023-10-27T13:35:50+00:00", - "title": "New Zealand vs South Africa: All Blacks look to complete rocky journey back to the top in World Cup final", - "link": "https://www.standard.co.uk/sport/rugby/new-zealand-vs-south-africa-rugby-world-cup-final-2023-all-blacks-b1116419.html", - "pubDate": "Fri, 27 Oct 2023 13:35:50 GMT", - "dc:creator": "Nick Purewal", - "dc:date": "2023-10-27T13:35:50+00:00", - "content": "

The All Blacks were ranked fifth in the world as recently as last summer

", - "contentSnippet": "The All Blacks were ranked fifth in the world as recently as last summer", - "guid": "b1116419", - "categories": [ - "Rugby Union", - "Sport" - ], - "isoDate": "2023-10-27T13:35:50.000Z" - }, - { - "creator": "Beril Naz Hassan and William Mata", - "date": "2023-10-27T13:32:42+00:00", - "title": "These are the five most haunted places in London", - "link": "https://www.standard.co.uk/news/london/most-haunted-places-london-halloween-b1033793.html", - "pubDate": "Fri, 27 Oct 2023 13:32:42 GMT", - "dc:creator": "Beril Naz Hassan and William Mata", - "dc:date": "2023-10-27T13:32:42+00:00", - "content": "

London is brimming with spooky stories about phantoms and supernatural incidents

", - "contentSnippet": "London is brimming with spooky stories about phantoms and supernatural incidents", - "guid": "b1033793", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T13:32:42.000Z" - }, - { - "creator": "Rebecca Black", - "date": "2023-10-27T13:31:30+00:00", - "title": "Not possible to hear Loughgall inquest before legislation cut-off, judge says", - "link": "https://www.standard.co.uk/news/uk/ira-mod-sas-westminster-justice-b1116445.html", - "pubDate": "Fri, 27 Oct 2023 13:31:30 GMT", - "dc:creator": "Rebecca Black", - "dc:date": "2023-10-27T13:31:30+00:00", - "content": "Justice McAlinden said the inquest into the deaths of eight IRA men and a civilian will take six months to hear.", - "contentSnippet": "Justice McAlinden said the inquest into the deaths of eight IRA men and a civilian will take six months to hear.", - "guid": "b1116445", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T13:31:30.000Z" - }, - { - "creator": "Beril Naz Hassan", - "date": "2023-10-27T13:31:21+00:00", - "title": "Italian woman wins court battle to evict her adult sons", - "link": "https://www.standard.co.uk/news/world/italian-woman-court-evict-adult-sons-b1116436.html", - "pubDate": "Fri, 27 Oct 2023 13:31:21 GMT", - "dc:creator": "Beril Naz Hassan", - "dc:date": "2023-10-27T13:31:21+00:00", - "content": "

These birds were adamant they were not leaving the nest

", - "contentSnippet": "These birds were adamant they were not leaving the nest", - "guid": "b1116436", - "categories": [ - "World", - "News" - ], - "isoDate": "2023-10-27T13:31:21.000Z" - }, - { - "creator": "Rachael Burford and Nicholas Cecil", - "date": "2023-10-27T13:30:39+00:00", - "title": "Sadiq Khan calls for Gaza ceasefire amid rising anger over Labour's stance on war", - "link": "https://www.standard.co.uk/news/politics/sadiq-khan-mayor-gaza-israel-ceasefire-labour-london-b1116337.html", - "pubDate": "Fri, 27 Oct 2023 13:30:39 GMT", - "dc:creator": "Rachael Burford and Nicholas Cecil", - "dc:date": "2023-10-27T13:30:39+00:00", - "content": "

Mayor of London calls for a stop to killing and time for 'vital aid supplies to reach those who need it' in Gaza

", - "contentSnippet": "Mayor of London calls for a stop to killing and time for 'vital aid supplies to reach those who need it' in Gaza", - "guid": "b1116337", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T13:30:39.000Z" - }, - { - "creator": "Naomi Clarke", - "date": "2023-10-27T13:30:02+00:00", - "title": "Only Fools And Horses The Musical to tour UK in 2024", - "link": "https://www.standard.co.uk/showbiz/celebrity-news/west-end-paul-whitehouse-theatre-royal-haymarket-bbc-peckham-b1116447.html", - "pubDate": "Fri, 27 Oct 2023 13:30:02 GMT", - "dc:creator": "Naomi Clarke", - "dc:date": "2023-10-27T13:30:02+00:00", - "content": "The show ended its West End run earlier this year after four years and more than 1,000 performances at the Theatre Royal Haymarket.", - "contentSnippet": "The show ended its West End run earlier this year after four years and more than 1,000 performances at the Theatre Royal Haymarket.", - "guid": "b1116447", - "categories": [ - "Celebrity News", - "Showbiz" - ], - "isoDate": "2023-10-27T13:30:02.000Z" - }, - { - "creator": "Seren Morris,Jessica Knibbs,Lola Christina Alao and Nuray Bulbul", - "date": "2023-10-27T13:27:56+00:00", - "title": "Wordle 860: What is the answer for October 27 and what is its meaning?", - "link": "https://www.standard.co.uk/news/tech/wordle-game-today-answer-meaning-b1007895.html", - "pubDate": "Fri, 27 Oct 2023 13:27:56 GMT", - "dc:creator": "Seren Morris,Jessica Knibbs,Lola Christina Alao and Nuray Bulbul", - "dc:date": "2023-10-27T13:27:56+00:00", - "content": "

Another day, another Wordle clue for players of the popular game

", - "contentSnippet": "Another day, another Wordle clue for players of the popular game", - "guid": "b1007895", - "categories": [ - "Tech", - "News" - ], - "isoDate": "2023-10-27T13:27:56.000Z" - }, - { - "creator": "Bill McLoughlin", - "date": "2023-10-27T13:22:42+00:00", - "title": "Children leave teddy bears outside Foreign Office as part of Gaza protest", - "link": "https://www.standard.co.uk/news/london/children-teddy-bears-gaza-ceasefire-foreign-office-palestine-b1116422.html", - "pubDate": "Fri, 27 Oct 2023 13:22:42 GMT", - "dc:creator": "Bill McLoughlin", - "dc:date": "2023-10-27T13:22:42+00:00", - "content": "

The protest in central London was organised by Parents for Palestine

", - "contentSnippet": "The protest in central London was organised by Parents for Palestine", - "guid": "b1116422", - "categories": [ - "London", - "News" - ], - "isoDate": "2023-10-27T13:22:42.000Z" - }, - { - "creator": "Max McLean", - "date": "2023-10-27T13:22:34+00:00", - "title": "Bomb during interview just a glimpse of everyday life, says Briton in Gaza", - "link": "https://www.standard.co.uk/news/politics/gaza-british-briton-hamas-salford-b1116440.html", - "pubDate": "Fri, 27 Oct 2023 13:22:34 GMT", - "dc:creator": "Max McLean", - "dc:date": "2023-10-27T13:22:34+00:00", - "content": "A bomb could be heard approaching and exploding outside the building Zaynab Wandawi was in while she spoke with the PA news agency.", - "contentSnippet": "A bomb could be heard approaching and exploding outside the building Zaynab Wandawi was in while she spoke with the PA news agency.", - "guid": "b1116440", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T13:22:34.000Z" - }, - { - "creator": "Eleanor Barlow", - "date": "2023-10-27T13:18:06+00:00", - "title": "Schoolgirl who died in motorway coach crash remembered at funeral", - "link": "https://www.standard.co.uk/news/uk/cheshire-rebecca-chester-catholic-church-cancer-b1116442.html", - "pubDate": "Fri, 27 Oct 2023 13:18:06 GMT", - "dc:creator": "Eleanor Barlow", - "dc:date": "2023-10-27T13:18:06+00:00", - "content": "West Kirby Grammar School pupil Jessica Baker, 15, and driver Stephen Shrimpton were killed when a school coach overturned on the M53 in September.", - "contentSnippet": "West Kirby Grammar School pupil Jessica Baker, 15, and driver Stephen Shrimpton were killed when a school coach overturned on the M53 in September.", - "guid": "b1116442", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T13:18:06.000Z" - }, - { - "creator": "William Mata", - "date": "2023-10-27T13:15:22+00:00", - "title": "Who is Crispin Blunt? Tory MP arrested on suspicion of rape and possession of 'controlled substances'", - "link": "https://www.standard.co.uk/news/uk/who-crispin-blunt-conservative-mp-drugs-rape-b1116332.html", - "pubDate": "Fri, 27 Oct 2023 13:15:22 GMT", - "dc:creator": "William Mata", - "dc:date": "2023-10-27T13:15:22+00:00", - "content": "

MP for Reigate is now an independent after having Tory whip removed

", - "contentSnippet": "MP for Reigate is now an independent after having Tory whip removed", - "guid": "b1116332", - "categories": [ - "UK", - "News" - ], - "isoDate": "2023-10-27T13:15:22.000Z" - }, - { - "creator": "Katie Strick", - "date": "2023-10-27T13:09:47+00:00", - "title": "Tory MP Crispin Blunt: the outspoken ex-army officer arrested on suspicion of rape and drug offences", - "link": "https://www.standard.co.uk/news/politics/who-is-crispin-blunt-controversial-tory-mp-b1116320.html", - "pubDate": "Fri, 27 Oct 2023 13:09:47 GMT", - "dc:creator": "Katie Strick", - "dc:date": "2023-10-27T13:09:47+00:00", - "content": "

The uncle of Hollywood actress Emily Blunt was arrested by Surrey police this week, saying he will \"co-operate fully\" with the investigation. Katie Strick charts his career so far

", - "contentSnippet": "The uncle of Hollywood actress Emily Blunt was arrested by Surrey police this week, saying he will \"co-operate fully\" with the investigation. Katie Strick charts his career so far", - "guid": "b1116320", - "categories": [ - "Politics", - "News" - ], - "isoDate": "2023-10-27T13:09:47.000Z" - }, - { - "creator": "Marc Mayo", - "date": "2023-10-27T13:09:40+00:00", - "title": "Pep Guardiola speaks out after Man City fan chants mocked death of Sir Bobby Charlton", - "link": "https://www.standard.co.uk/sport/football/pep-guardiola-man-city-man-utd-sir-bobby-charlton-chants-b1116428.html", - "pubDate": "Fri, 27 Oct 2023 13:09:40 GMT", - "dc:creator": "Marc Mayo", - "dc:date": "2023-10-27T13:09:40+00:00", - "content": "

Two minors banned from Manchester City matches ahead of derby

", - "contentSnippet": "Two minors banned from Manchester City matches ahead of derby", - "guid": "b1116428", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T13:09:40.000Z" - }, - { - "creator": "Soraya Gaied Chortane", - "date": "2023-10-27T13:06:52+00:00", - "title": "My London: The Witch of Hackney ", - "link": "https://www.standard.co.uk/lifestyle/witch-of-hackney-wick-london-guide-treadwells-semra-haksever-b1116321.html", - "pubDate": "Fri, 27 Oct 2023 13:06:52 GMT", - "dc:creator": "Soraya Gaied Chortane", - "dc:date": "2023-10-27T13:06:52+00:00", - "content": "

East London\u2019s resident witch Semra Haksever buys her textbooks from Treadwell\u2019s, forages on Hackney Marshes and wants to transform the Edition into a hotel for cats

", - "contentSnippet": "East London\u2019s resident witch Semra Haksever buys her textbooks from Treadwell\u2019s, forages on Hackney Marshes and wants to transform the Edition into a hotel for cats", - "guid": "b1116321", - "categories": [ - "Lifestyle" - ], - "isoDate": "2023-10-27T13:06:52.000Z" - }, - { - "creator": "Anthony France", - "date": "2023-10-27T13:06:28+00:00", - "title": "Police release pictures of women displaying Hamas paraglider images at London rally ", - "link": "https://www.standard.co.uk/news/crime/police-cctv-women-hamas-paragliders-images-london-palestinian-rally-israel-b1116425.html", - "pubDate": "Fri, 27 Oct 2023 13:06:28 GMT", - "dc:creator": "Anthony France", - "dc:date": "2023-10-27T13:06:28+00:00", - "content": "

Two of the women at the London rally were spotted with the paraglider images on their jackets. A third had a similar image on a placard

", - "contentSnippet": "Two of the women at the London rally were spotted with the paraglider images on their jackets. A third had a similar image on a placard", - "guid": "b1116425", - "categories": [ - "Crime", - "News" - ], - "isoDate": "2023-10-27T13:06:28.000Z" - }, - { - "creator": "Matt Verri", - "date": "2023-10-27T13:05:10+00:00", - "title": "Erik ten Hag reveals Manchester United 'are talking' with FA over Alejandro Garnacho social media post", - "link": "https://www.standard.co.uk/sport/football/erik-ten-hag-alejandro-garnacho-man-utd-fa-b1116434.html", - "pubDate": "Fri, 27 Oct 2023 13:05:10 GMT", - "dc:creator": "Matt Verri", - "dc:date": "2023-10-27T13:05:10+00:00", - "content": "

Garnacho could be punished for a controversial post despit ehte

", - "contentSnippet": "Garnacho could be punished for a controversial post despit ehte", - "guid": "b1116434", - "categories": [ - "Football", - "Sport" - ], - "isoDate": "2023-10-27T13:05:10.000Z" - }, - { - "creator": "Henry Saker-Clark", - "date": "2023-10-27T13:01:18+00:00", - "title": "Cost of living in focus as Sainsbury\u2019s set to reveal sales rise", - "link": "https://www.standard.co.uk/business/business-news/cost-of-living-in-focus-as-sainsbury-s-set-to-reveal-sales-rise-b1116433.html", - "pubDate": "Fri, 27 Oct 2023 13:01:18 GMT", - "dc:creator": "Henry Saker-Clark", - "dc:date": "2023-10-27T13:01:18+00:00", - "content": "Sainsbury\u2019s is expected to provide an insight into the continued trajectory of food inflation in the update on November 2.", - "contentSnippet": "Sainsbury\u2019s is expected to provide an insight into the continued trajectory of food inflation in the update on November 2.", - "guid": "b1116433", - "categories": [ - "Business News", - "Business" - ], - "isoDate": "2023-10-27T13:01:18.000Z" - } -] \ No newline at end of file + { + "creator": "Jonathan Gorrie", + "date": "2023-11-30T23:01:11+00:00", + "title": "Liverpool 4-0 LASK: Reds win Europa League group as Mohamed Salah hits 199 goals", + "link": "https://www.standard.co.uk/sport/football/liverpool-fc-vs-lask-europa-league-result-2023-b1124069.html", + "pubDate": "Thu, 30 Nov 2023 23:01:11 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-11-30T23:01:11+00:00", + "content": "

Reds win group with one game to spare

", + "contentSnippet": "Reds win group with one game to spare", + "guid": "b1124069", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T23:01:11.000Z" + }, + { + "creator": "Pa Reporters", + "date": "2023-11-30T22:58:41+00:00", + "title": "Mayor calls for Uefa action after police injured at Aston Villa match", + "link": "https://www.standard.co.uk/news/uk/villa-park-mayor-aston-villa-uefa-west-midlands-police-b1124073.html", + "pubDate": "Thu, 30 Nov 2023 22:58:41 GMT", + "dc:creator": "Pa Reporters", + "dc:date": "2023-11-30T22:58:41+00:00", + "content": "Objects were thrown at police as the visiting fans were held in a coach park near the ground.", + "contentSnippet": "Objects were thrown at police as the visiting fans were held in a coach park near the ground.", + "guid": "b1124073", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T22:58:41.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-11-30T22:58:06+00:00", + "title": "Liverpool vs LASK LIVE! Europa League result, match stream and latest updates today", + "link": "https://www.standard.co.uk/sport/football/liverpool-fc-vs-lask-live-stream-europa-league-2023-latest-score-result-watch-tv-team-news-b1124003.html", + "pubDate": "Thu, 30 Nov 2023 22:58:06 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-11-30T22:58:06+00:00", + "content": "

Reds win group after 4-0 victory

", + "contentSnippet": "Reds win group after 4-0 victory", + "guid": "b1124003", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:58:06.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-11-30T22:54:15+00:00", + "title": "Jurgen Klopp 'did not like' aspects of Liverpool's Europa League win over LASK", + "link": "https://www.standard.co.uk/sport/football/klopp-liverpool-fc-lask-europa-league-2023-b1124077.html", + "pubDate": "Thu, 30 Nov 2023 22:54:15 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-11-30T22:54:15+00:00", + "content": "

Reds seal progress to knockout stages as group winners

", + "contentSnippet": "Reds seal progress to knockout stages as group winners", + "guid": "b1124077", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:54:15.000Z" + }, + { + "creator": "Danielle Desouza", + "date": "2023-11-30T22:44:32+00:00", + "title": "Charlotte Church \u2018couldn\u2019t have been prouder\u2019 of young carers\u2019 choir performance", + "link": "https://www.standard.co.uk/news/uk/charlotte-church-kate-thornton-wales-larry-lamb-emma-thompson-b1124076.html", + "pubDate": "Thu, 30 Nov 2023 22:44:32 GMT", + "dc:creator": "Danielle Desouza", + "dc:date": "2023-11-30T22:44:32+00:00", + "content": "The performance took place on November 30, as part of Action for Children\u2019s Starry Night gala.", + "contentSnippet": "The performance took place on November 30, as part of Action for Children\u2019s Starry Night gala.", + "guid": "b1124076", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T22:44:32.000Z" + }, + { + "creator": "Patrick Daly", + "date": "2023-11-30T22:40:32+00:00", + "title": "A Labour government would consider new powers to prevent \u2018banking deserts\u2019", + "link": "https://www.standard.co.uk/business/money/a-labour-government-would-consider-new-powers-to-prevent-banking-deserts-b1124071.html", + "pubDate": "Thu, 30 Nov 2023 22:40:32 GMT", + "dc:creator": "Patrick Daly", + "dc:date": "2023-11-30T22:40:32+00:00", + "content": "Shadow chancellor Rachel Reeves said her party wants to ensure \u2018every community has access to high street banking services\u2019.", + "contentSnippet": "Shadow chancellor Rachel Reeves said her party wants to ensure \u2018every community has access to high street banking services\u2019.", + "guid": "b1124071", + "categories": ["Money", "Business"], + "isoDate": "2023-11-30T22:40:32.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2023-11-30T22:33:41+00:00", + "title": "I\u2019m A Celeb\u2019s Sam Thompson opens up about ADHD diagnosis and wanting to be a dad", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/sam-thompson-adhd-eyes-josie-gibson-sam-b1124075.html", + "pubDate": "Thu, 30 Nov 2023 22:33:41 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2023-11-30T22:33:41+00:00", + "content": "The former Made In Chelsea star said that he remembers \u2018crying\u2019 into his textbook at school because he could not understand the words.", + "contentSnippet": "The former Made In Chelsea star said that he remembers \u2018crying\u2019 into his textbook at school because he could not understand the words.", + "guid": "b1124075", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-11-30T22:33:41.000Z" + }, + { + "creator": "Martin Robinson", + "date": "2023-11-30T22:32:38+00:00", + "title": "Shane MacGowan obituary: his life reminds us that chaos and fearlessness can create beauty", + "link": "https://www.standard.co.uk/culture/music/shane-macgowan-obituary-died-fairytale-of-new-york-b1124016.html", + "pubDate": "Thu, 30 Nov 2023 22:32:38 GMT", + "dc:creator": "Martin Robinson", + "dc:date": "2023-11-30T22:32:38+00:00", + "content": "

The musician has died at the age of 65

", + "contentSnippet": "The musician has died at the age of 65", + "guid": "b1124016", + "categories": ["Music", "Culture"], + "isoDate": "2023-11-30T22:32:38.000Z" + }, + { + "creator": "Simon Collings", + "date": "2023-11-30T22:32:09+00:00", + "title": "Arsenal confident of adding Ben White to haul of new contracts", + "link": "https://www.standard.co.uk/sport/football/ben-white-contract-arsenal-fc-news-2023-b1124025.html", + "pubDate": "Thu, 30 Nov 2023 22:32:09 GMT", + "dc:creator": "Simon Collings", + "dc:date": "2023-11-30T22:32:09+00:00", + "content": "

Spate of extensions handed out over past year to cement young core of players

", + "contentSnippet": "Spate of extensions handed out over past year to cement young core of players", + "guid": "b1124025", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:32:09.000Z" + }, + { + "creator": "Sophie Wingate", + "date": "2023-11-30T22:30:41+00:00", + "title": "Rishi Sunak calls for \u2018era of action\u2019 at Cop28 climate summit", + "link": "https://www.standard.co.uk/news/politics/cop28-prime-minister-cameron-keir-starmer-labour-b1124074.html", + "pubDate": "Thu, 30 Nov 2023 22:30:41 GMT", + "dc:creator": "Sophie Wingate", + "dc:date": "2023-11-30T22:30:41+00:00", + "content": "The Prime Minister will commit \u00a31.6bn in UK funding for climate projects at the talks in Dubai.", + "contentSnippet": "The Prime Minister will commit \u00a31.6bn in UK funding for climate projects at the talks in Dubai.", + "guid": "b1124074", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T22:30:41.000Z" + }, + { + "creator": "David Hughes", + "date": "2023-11-30T22:30:00+00:00", + "title": "Starmer: Transition to net zero can \u2018turbo-charge growth\u2019", + "link": "https://www.standard.co.uk/business/business-news/starmer-transition-to-net-zero-can-turbocharge-growth-b1124072.html", + "pubDate": "Thu, 30 Nov 2023 22:30:00 GMT", + "dc:creator": "David Hughes", + "dc:date": "2023-11-30T22:30:00+00:00", + "content": "Labour leader Sir Keir Starmer is in Dubai for the Cop28 climate summit.", + "contentSnippet": "Labour leader Sir Keir Starmer is in Dubai for the Cop28 climate summit.", + "guid": "b1124072", + "categories": ["Business News", "Business"], + "isoDate": "2023-11-30T22:30:00.000Z" + }, + { + "creator": "Matt Verri", + "date": "2023-11-30T22:20:24+00:00", + "title": "When is Euro 2024 draw? Date, start time, confirmed pots and qualified teams", + "link": "https://www.standard.co.uk/sport/football/when-is-euro-2024-draw-date-start-time-confirmed-pots-qualified-teams-b1114413.html", + "pubDate": "Thu, 30 Nov 2023 22:20:24 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2023-11-30T22:20:24+00:00", + "content": "

A total of 21 teams have now officially qualified for next summer's action in Germany, with a further three to be confirmed after the March play-offs

", + "contentSnippet": "A total of 21 teams have now officially qualified for next summer's action in Germany, with a further three to be confirmed after the March play-offs", + "guid": "b1114413", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:20:24.000Z" + }, + { + "creator": "Standard Sport", + "date": "2023-11-30T22:19:33+00:00", + "title": "Premier League table 2023-24: Latest standings, fixtures and results for matchday 14", + "link": "https://www.standard.co.uk/sport/football/premier-league-table-2023-24-standings-fixtures-results-live-scores-matchday-14-b1124056.html", + "pubDate": "Thu, 30 Nov 2023 22:19:33 GMT", + "dc:creator": "Standard Sport", + "dc:date": "2023-11-30T22:19:33+00:00", + "content": "

Title rivals all play at home this weekend

", + "contentSnippet": "Title rivals all play at home this weekend", + "guid": "b1124056", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:19:33.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-11-30T22:19:13+00:00", + "title": "Arsenal vs Wolves: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/arsenal-fc-vs-wolves-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1123969.html", + "pubDate": "Thu, 30 Nov 2023 22:19:13 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-11-30T22:19:13+00:00", + "content": "

League leaders out for fifth win in a row over Molineux club

", + "contentSnippet": "League leaders out for fifth win in a row over Molineux club", + "guid": "b1123969", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:19:13.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-11-30T22:18:39+00:00", + "title": "Manchester United XI vs Newcastle: Confirmed team news, predicted lineup and injury latest", + "link": "https://www.standard.co.uk/sport/football/man-united-xi-vs-newcastle-confirmed-team-news-predicted-lineup-injury-latest-premier-league-2023-b1124005.html", + "pubDate": "Thu, 30 Nov 2023 22:18:39 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-11-30T22:18:39+00:00", + "content": "

Marcus Rashford back from suspension for trip to St James' Park

", + "contentSnippet": "Marcus Rashford back from suspension for trip to St James' Park", + "guid": "b1124005", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:18:39.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-11-30T22:18:05+00:00", + "title": "Newcastle vs Manchester United: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/newcastle-vs-man-utd-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1123975.html", + "pubDate": "Thu, 30 Nov 2023 22:18:05 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-11-30T22:18:05+00:00", + "content": "

Sixth plays seventh on Tyneside after disappointing European nights for both

", + "contentSnippet": "Sixth plays seventh on Tyneside after disappointing European nights for both", + "guid": "b1123975", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:18:05.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-11-30T22:17:42+00:00", + "title": "When is Europa League draw? Date, time, teams qualified, play-off seeding and TV channel", + "link": "https://www.standard.co.uk/sport/football/europa-league-draw-2023-date-time-teams-qualified-seeding-tv-channel-live-stream-play-off-last-16-b1123957.html", + "pubDate": "Thu, 30 Nov 2023 22:17:42 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-11-30T22:17:42+00:00", + "content": "

Champions League teams to enter competition for play-off round

", + "contentSnippet": "Champions League teams to enter competition for play-off round", + "guid": "b1123957", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:17:42.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-11-30T22:13:21+00:00", + "title": "Man City XI vs Tottenham: Confirmed team news, predicted lineup and injury latest for Premier League game", + "link": "https://www.standard.co.uk/sport/football/man-city-xi-vs-tottenham-confirmed-team-news-predicted-lineup-injury-latest-premier-league-2023-b1124017.html", + "pubDate": "Thu, 30 Nov 2023 22:13:21 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-11-30T22:13:21+00:00", + "content": "

Pep Guardiola expected to restore big name players for Sunday's clash

", + "contentSnippet": "Pep Guardiola expected to restore big name players for Sunday's clash", + "guid": "b1124017", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:13:21.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-11-30T22:13:01+00:00", + "title": "Man City vs Tottenham: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/man-city-vs-tottenham-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1123999.html", + "pubDate": "Thu, 30 Nov 2023 22:13:01 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-11-30T22:13:01+00:00", + "content": "

Spurs face toughest trip of season amid major downturn in results

", + "contentSnippet": "Spurs face toughest trip of season amid major downturn in results", + "guid": "b1123999", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:13:01.000Z" + }, + { + "creator": "Standard Sport", + "date": "2023-11-30T22:02:43+00:00", + "title": "Europa League tables 2023-24: Group standings, fixture and results for matchday 5 as Liverpool win group", + "link": "https://www.standard.co.uk/sport/football/europa-league-tables-2023-24-standings-fixtures-results-live-scores-matchday-5-b1123940.html", + "pubDate": "Thu, 30 Nov 2023 22:02:43 GMT", + "dc:creator": "Standard Sport", + "dc:date": "2023-11-30T22:02:43+00:00", + "content": "

Penultimate round of games could send multiple teams through

", + "contentSnippet": "Penultimate round of games could send multiple teams through", + "guid": "b1123940", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T22:02:43.000Z" + }, + { + "creator": "Pa Reporter", + "date": "2023-11-30T21:22:56+00:00", + "title": "Three police officers injured ahead of Aston Villa match with Legia Warsaw", + "link": "https://www.standard.co.uk/news/uk/aston-villa-villa-park-legia-warsaw-europa-conference-league-football-b1124062.html", + "pubDate": "Thu, 30 Nov 2023 21:22:56 GMT", + "dc:creator": "Pa Reporter", + "dc:date": "2023-11-30T21:22:56+00:00", + "content": "Objects were thrown at police as the visiting fans were held in the coach park near the ground.", + "contentSnippet": "Objects were thrown at police as the visiting fans were held in the coach park near the ground.", + "guid": "b1124062", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T21:22:56.000Z" + }, + { + "creator": "Robert Dex", + "date": "2023-11-30T21:17:53+00:00", + "title": "More hostages freed by Hamas to return to Israel", + "link": "https://www.standard.co.uk/news/world/hostages-freed-hamas-israel-gaza-b1124068.html", + "pubDate": "Thu, 30 Nov 2023 21:17:53 GMT", + "dc:creator": "Robert Dex", + "dc:date": "2023-11-30T21:17:53+00:00", + "content": "

The latest release follows that of two women freed hours earlier

", + "contentSnippet": "The latest release follows that of two women freed hours earlier", + "guid": "b1124068", + "categories": ["World", "News"], + "isoDate": "2023-11-30T21:17:53.000Z" + }, + { + "creator": "Nina Lloyd", + "date": "2023-11-30T21:02:56+00:00", + "title": "Minister dubs Falklands \u2018an important part of the British family\u2019 ahead of visit", + "link": "https://www.standard.co.uk/news/politics/falklands-british-foreign-office-grant-shapps-buenos-aires-b1124030.html", + "pubDate": "Thu, 30 Nov 2023 21:02:56 GMT", + "dc:creator": "Nina Lloyd", + "dc:date": "2023-11-30T21:02:56+00:00", + "content": "David Rutley is arriving in Stanley later on Thursday, the Foreign Office said.", + "contentSnippet": "David Rutley is arriving in Stanley later on Thursday, the Foreign Office said.", + "guid": "b1124030", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T21:02:56.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2023-11-30T21:00:13+00:00", + "title": "Ncuti Gatwa in new photos of Doctor Who Christmas special with Davina McCall", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/davina-mccall-ncuti-gatwa-big-brother-catherine-tate-barbie-b1124067.html", + "pubDate": "Thu, 30 Nov 2023 21:00:13 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2023-11-30T21:00:13+00:00", + "content": "Former Big Brother host Davina McCall will play herself in the festive episode.", + "contentSnippet": "Former Big Brother host Davina McCall will play herself in the festive episode.", + "guid": "b1124067", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-11-30T21:00:13.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2023-11-30T20:59:45+00:00", + "title": "Ellie Taylor announces arrival of baby as she misses Royal Variety Performance", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/princess-prince-wales-instagram-rick-astley-b1124066.html", + "pubDate": "Thu, 30 Nov 2023 20:59:45 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2023-11-30T20:59:45+00:00", + "content": "The Prince and Princess of Wales were among the guests at the annual charity event.", + "contentSnippet": "The Prince and Princess of Wales were among the guests at the annual charity event.", + "guid": "b1124066", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-11-30T20:59:45.000Z" + }, + { + "creator": "Patrick Daly", + "date": "2023-11-30T20:52:00+00:00", + "title": "Sue Gray\u2019s son selected as Labour candidate to become MP at next election", + "link": "https://www.standard.co.uk/news/politics/sue-gray-keir-starmer-london-penge-mps-b1124064.html", + "pubDate": "Thu, 30 Nov 2023 20:52:00 GMT", + "dc:creator": "Patrick Daly", + "dc:date": "2023-11-30T20:52:00+00:00", + "content": "Liam Conlon will contest the newly created seat of Beckenham and Penge in south-east London.", + "contentSnippet": "Liam Conlon will contest the newly created seat of Beckenham and Penge in south-east London.", + "guid": "b1124064", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T20:52:00.000Z" + }, + { + "creator": "Patrick Daly", + "date": "2023-11-30T20:51:20+00:00", + "title": "Culture Secretary intervenes in Abu Dhabi-backed takeover of Daily Telegraph", + "link": "https://www.standard.co.uk/business/business-news/culture-secretary-intervenes-in-abu-dhabibacked-takeover-of-daily-telegraph-b1124046.html", + "pubDate": "Thu, 30 Nov 2023 20:51:20 GMT", + "dc:creator": "Patrick Daly", + "dc:date": "2023-11-30T20:51:20+00:00", + "content": "Lucy Frazer triggered a Public Interest Intervention Notice that will see the communications watchdog look into the deal\u2019s impact on press freedom.", + "contentSnippet": "Lucy Frazer triggered a Public Interest Intervention Notice that will see the communications watchdog look into the deal\u2019s impact on press freedom.", + "guid": "b1124046", + "categories": ["Business News", "Business"], + "isoDate": "2023-11-30T20:51:20.000Z" + }, + { + "creator": "Tony Jones", + "date": "2023-11-30T20:50:32+00:00", + "title": "The Queen hails key infantry regiment at awards dinner", + "link": "https://www.standard.co.uk/news/uk/queen-british-city-of-london-duchess-europe-b1124065.html", + "pubDate": "Thu, 30 Nov 2023 20:50:32 GMT", + "dc:creator": "Tony Jones", + "dc:date": "2023-11-30T20:50:32+00:00", + "content": "Camilla is Colonel-in-Chief of The Rifles.", + "contentSnippet": "Camilla is Colonel-in-Chief of The Rifles.", + "guid": "b1124065", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T20:50:32.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-11-30T20:38:27+00:00", + "title": "Imelda May thanks the late Shane MacGowan for sharing his \u2018glorious talents\u2019", + "link": "https://www.standard.co.uk/culture/music/hospital-nick-cave-carol-vorderman-billy-bragg-dublin-b1124063.html", + "pubDate": "Thu, 30 Nov 2023 20:38:27 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-11-30T20:38:27+00:00", + "content": "A number of celebrities have paid tribute to the late Irish singer, best known for hit festive song Fairytale Of New York.", + "contentSnippet": "A number of celebrities have paid tribute to the late Irish singer, best known for hit festive song Fairytale Of New York.", + "guid": "b1124063", + "categories": ["Music", "Culture"], + "isoDate": "2023-11-30T20:38:27.000Z" + }, + { + "creator": "Pol Allingham", + "date": "2023-11-30T20:15:01+00:00", + "title": "Prince William and Kate Middleton brush off Omid Scobie drama for Royal Variety Performance", + "link": "https://www.standard.co.uk/news/uk/prince-william-kate-middleton-omid-scobie-royal-variety-performance-b1124060.html", + "pubDate": "Thu, 30 Nov 2023 20:15:01 GMT", + "dc:creator": "Pol Allingham", + "dc:date": "2023-11-30T20:15:01+00:00", + "content": "

The event is taking place amid controversy around Omid Scobie's new book Endgamem

", + "contentSnippet": "The event is taking place amid controversy around Omid Scobie's new book Endgamem", + "guid": "b1124060", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T20:15:01.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-11-30T20:01:56+00:00", + "title": "West Ham players ratings vs Backa Topola: Maxwel Cornet comes good as Ben Johnson and Aaron Cresswell labour", + "link": "https://www.standard.co.uk/sport/football/west-ham-players-ratings-vs-backa-topola-cornet-johnson-cresswell-b1124040.html", + "pubDate": "Thu, 30 Nov 2023 20:01:56 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-11-30T20:01:56+00:00", + "content": "

Last-minute Tomas Soucek winner secures qualification to knockout rounds

", + "contentSnippet": "Last-minute Tomas Soucek winner secures qualification to knockout rounds", + "guid": "b1124040", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T20:01:56.000Z" + }, + { + "creator": "Jordan King", + "date": "2023-11-30T19:54:18+00:00", + "title": "Dutch translator insists Omid Scobie did name two royals 'who asked about Archie's skin colour'", + "link": "https://www.standard.co.uk/news/uk/omid-scobie-endgame-royal-racists-prince-harry-meghan-markle-archie-skin-colour-b1124050.html", + "pubDate": "Thu, 30 Nov 2023 19:54:18 GMT", + "dc:creator": "Jordan King", + "dc:date": "2023-11-30T19:54:18+00:00", + "content": "

'I translate what is in front of me - the names of the royals were there in black and white'

", + "contentSnippet": "'I translate what is in front of me - the names of the royals were there in black and white'", + "guid": "b1124050", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T19:54:18.000Z" + }, + { + "creator": "Ewan Kirk", + "date": "2023-11-30T19:51:25+00:00", + "title": "Why Jeremy Hunt should stop banging on about AI", + "link": "https://www.standard.co.uk/business/jeremy-hunt-should-stop-banging-on-about-ai-b1124059.html", + "pubDate": "Thu, 30 Nov 2023 19:51:25 GMT", + "dc:creator": "Ewan Kirk", + "dc:date": "2023-11-30T19:51:25+00:00", + "content": "

City Voices: The Chancellor should be listening to tech startups, university spinouts, researchers, and graduates from across the tech sector to identify areas where there is a funding shortfall

", + "contentSnippet": "City Voices: The Chancellor should be listening to tech startups, university spinouts, researchers, and graduates from across the tech sector to identify areas where there is a funding shortfall", + "guid": "b1124059", + "categories": ["Business"], + "isoDate": "2023-11-30T19:51:25.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-11-30T19:49:13+00:00", + "title": "Backa Topola 0-1 West Ham: Tomas Soucek delivers another late winner to seal Europa League progress", + "link": "https://www.standard.co.uk/sport/football/backa-topola-west-ham-europa-league-2023-tomas-soucek-b1124057.html", + "pubDate": "Thu, 30 Nov 2023 19:49:13 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-11-30T19:49:13+00:00", + "content": "

Hammers will face Freiburg next month in shootout for first place

", + "contentSnippet": "Hammers will face Freiburg next month in shootout for first place", + "guid": "b1124057", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T19:49:13.000Z" + }, + { + "creator": "Robert Dex", + "date": "2023-11-30T19:47:31+00:00", + "title": "Four migrants die after being forced overboard near Spain", + "link": "https://www.standard.co.uk/news/world/four-migrants-die-forced-overboard-spain-cadiz-north-africa-b1124044.html", + "pubDate": "Thu, 30 Nov 2023 19:47:31 GMT", + "dc:creator": "Robert Dex", + "dc:date": "2023-11-30T19:47:31+00:00", + "content": "

The police chased the boat crew but were unable to catch them

", + "contentSnippet": "The police chased the boat crew but were unable to catch them", + "guid": "b1124044", + "categories": ["World", "News"], + "isoDate": "2023-11-30T19:47:31.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2023-11-30T19:46:11+00:00", + "title": "Bookies slash odds of Pogues\u2019 Christmas number one after Shane MacGowan\u2019s death", + "link": "https://www.standard.co.uk/news/uk/victoria-hospital-dublin-kent-england-b1124058.html", + "pubDate": "Thu, 30 Nov 2023 19:46:11 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2023-11-30T19:46:11+00:00", + "content": "The Pogues\u2019 frontman has died at the age of 65.", + "contentSnippet": "The Pogues\u2019 frontman has died at the age of 65.", + "guid": "b1124058", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T19:46:11.000Z" + }, + { + "creator": "Nick Purewal", + "date": "2023-11-30T19:22:54+00:00", + "title": "Marcus Smith and George Ford to face off in Six Nations audition as Harlequins host league leaders Sale", + "link": "https://www.standard.co.uk/sport/rugby/harlequins-sale-marcus-smith-george-ford-owen-farrell-england-six-nations-b1124048.html", + "pubDate": "Thu, 30 Nov 2023 19:22:54 GMT", + "dc:creator": "Nick Purewal", + "dc:date": "2023-11-30T19:22:54+00:00", + "content": "

Premiership clash could offer fly-half pair chance to stake England claim

", + "contentSnippet": "Premiership clash could offer fly-half pair chance to stake England claim", + "guid": "b1124048", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2023-11-30T19:22:54.000Z" + }, + { + "creator": "Nina Lloyd and Robert Dex", + "date": "2023-11-30T19:20:16+00:00", + "title": "Matt Hancock says earlier first Covid lockdown could have stopped 90% of first wave deaths", + "link": "https://www.standard.co.uk/news/politics/dominic-cummings-lockdown-matt-hancock-covid-inquiry-latest-b1123970.html", + "pubDate": "Thu, 30 Nov 2023 19:20:16 GMT", + "dc:creator": "Nina Lloyd and Robert Dex", + "dc:date": "2023-11-30T19:20:16+00:00", + "content": "

The former minister said the country should have locked down earlier but he understood why it did not happen

", + "contentSnippet": "The former minister said the country should have locked down earlier but he understood why it did not happen", + "guid": "b1123970", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T19:20:16.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2023-11-30T19:14:29+00:00", + "title": "Football agents win landmark legal battle against FIFA to remove new cap on fees", + "link": "https://www.standard.co.uk/sport/football/agents-fees-fifa-ruling-b1124002.html", + "pubDate": "Thu, 30 Nov 2023 19:14:29 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2023-11-30T19:14:29+00:00", + "content": "

Agencies have earned a landmark victory against proposed FIFA regulations

", + "contentSnippet": "Agencies have earned a landmark victory against proposed FIFA regulations", + "guid": "b1124002", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T19:14:29.000Z" + }, + { + "creator": "Lauren Gilmour", + "date": "2023-11-30T19:11:41+00:00", + "title": "\u2018Final\u2019 pay offer put to college staff in long-running dispute", + "link": "https://www.standard.co.uk/business/business-news/final-pay-offer-put-to-college-staff-in-longrunning-dispute-b1124054.html", + "pubDate": "Thu, 30 Nov 2023 19:11:41 GMT", + "dc:creator": "Lauren Gilmour", + "dc:date": "2023-11-30T19:11:41+00:00", + "content": "Those at the start of the national pay scale would benefit from a rise of 14.2%.", + "contentSnippet": "Those at the start of the national pay scale would benefit from a rise of 14.2%.", + "guid": "b1124054", + "categories": ["Business News", "Business"], + "isoDate": "2023-11-30T19:11:41.000Z" + }, + { + "creator": "Katrine Bussey", + "date": "2023-11-30T19:06:49+00:00", + "title": "Alistair Darling\u2019s \u2018calmness in a crisis\u2019 remembered following his death aged 70", + "link": "https://www.standard.co.uk/news/politics/alistair-darling-gordon-brown-alex-salmond-tony-blair-anna-b1123986.html", + "pubDate": "Thu, 30 Nov 2023 19:06:49 GMT", + "dc:creator": "Katrine Bussey", + "dc:date": "2023-11-30T19:06:49+00:00", + "content": "The former chancellor led the UK through the financial crisis of 2008.", + "contentSnippet": "The former chancellor led the UK through the financial crisis of 2008.", + "guid": "b1123986", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T19:06:49.000Z" + }, + { + "creator": "Abha Shah", + "date": "2023-11-30T19:00:32+00:00", + "title": "Best bathroom paints to shop in 2023", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/bathroom/best-bathroom-paints-b1123768.html", + "pubDate": "Thu, 30 Nov 2023 19:00:32 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2023-11-30T19:00:32+00:00", + "content": "

All white? Doesn't have to be

", + "contentSnippet": "All white? Doesn't have to be", + "guid": "b1123768", + "categories": ["Bathroom", "Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T19:00:32.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2023-11-30T19:00:18+00:00", + "title": "Best 3D pens for crafting shapes and designs that jump off the page", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-3d-pens-b1123710.html", + "pubDate": "Thu, 30 Nov 2023 19:00:18 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2023-11-30T19:00:18+00:00", + "content": "

Interdimensional creativity on lock

", + "contentSnippet": "Interdimensional creativity on lock", + "guid": "b1123710", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2023-11-30T19:00:18.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2023-11-30T19:00:07+00:00", + "title": "Best affordable cushions to punctuate your home", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-affordable-cushions-b1123746.html", + "pubDate": "Thu, 30 Nov 2023 19:00:07 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2023-11-30T19:00:07+00:00", + "content": "

Fluff up your shared spaces

", + "contentSnippet": "Fluff up your shared spaces", + "guid": "b1123746", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2023-11-30T19:00:07.000Z" + }, + { + "creator": "Katrine Bussey", + "date": "2023-11-30T19:00:00+00:00", + "title": "Voice of business at heart of Government, insists minister", + "link": "https://www.standard.co.uk/business/business-news/voice-of-business-at-heart-of-government-insists-minister-b1124052.html", + "pubDate": "Thu, 30 Nov 2023 19:00:00 GMT", + "dc:creator": "Katrine Bussey", + "dc:date": "2023-11-30T19:00:00+00:00", + "content": "Wellbeing Economy Secretary Neil Gray made the comments as he addressed the Scottish Chambers of Commerce annual dinner.", + "contentSnippet": "Wellbeing Economy Secretary Neil Gray made the comments as he addressed the Scottish Chambers of Commerce annual dinner.", + "guid": "b1124052", + "categories": ["Business News", "Business"], + "isoDate": "2023-11-30T19:00:00.000Z" + }, + { + "creator": "Nilima Marshall", + "date": "2023-11-30T19:00:00+00:00", + "title": "Planet too big for its sun \u2018is challenging the idea of how solar systems form\u2019", + "link": "https://www.standard.co.uk/news/science/earth-neptune-texas-b1124051.html", + "pubDate": "Thu, 30 Nov 2023 19:00:00 GMT", + "dc:creator": "Nilima Marshall", + "dc:date": "2023-11-30T19:00:00+00:00", + "content": "The team said this is the first time a planet with such a high mass has been spotted orbiting a low-mass star.", + "contentSnippet": "The team said this is the first time a planet with such a high mass has been spotted orbiting a low-mass star.", + "guid": "b1124051", + "categories": ["Science", "News"], + "isoDate": "2023-11-30T19:00:00.000Z" + }, + { + "creator": "Robert Dex", + "date": "2023-11-30T18:48:21+00:00", + "title": "21-year-old French-Israeli one of two women released by Hamas after 55 days captivity", + "link": "https://www.standard.co.uk/news/world/french-israeli-women-released-hamas-captivity-gaza-mia-schem-b1124036.html", + "pubDate": "Thu, 30 Nov 2023 18:48:21 GMT", + "dc:creator": "Robert Dex", + "dc:date": "2023-11-30T18:48:21+00:00", + "content": "

The two women were released as the truce between Israel and Hamas continues to hold

", + "contentSnippet": "The two women were released as the truce between Israel and Hamas continues to hold", + "guid": "b1124036", + "categories": ["World", "News"], + "isoDate": "2023-11-30T18:48:21.000Z" + }, + { + "creator": "Jordan King", + "date": "2023-11-30T18:47:46+00:00", + "title": "Women in Sudan \u2018gang-raped for hours in ethnically-targeted attacks\u2019", + "link": "https://www.standard.co.uk/news/world/women-gangrape-sexual-violence-sudan-masalit-tribe-b1124042.html", + "pubDate": "Thu, 30 Nov 2023 18:47:46 GMT", + "dc:creator": "Jordan King", + "dc:date": "2023-11-30T18:47:46+00:00", + "content": "

A 19-year-old said she was raped repeatedly for three days before being released

", + "contentSnippet": "A 19-year-old said she was raped repeatedly for three days before being released", + "guid": "b1124042", + "categories": ["World", "News"], + "isoDate": "2023-11-30T18:47:46.000Z" + }, + { + "creator": "Sam Hall", + "date": "2023-11-30T18:42:22+00:00", + "title": "Prime Minister switches on Downing Street Christmas tree lights", + "link": "https://www.standard.co.uk/news/politics/downing-street-rishi-sunak-prime-minister-london-british-b1124049.html", + "pubDate": "Thu, 30 Nov 2023 18:42:22 GMT", + "dc:creator": "Sam Hall", + "dc:date": "2023-11-30T18:42:22+00:00", + "content": "Rishi Sunak joined more than 100 guests at a festive market in Downing Street on Thursday afternoon.", + "contentSnippet": "Rishi Sunak joined more than 100 guests at a festive market in Downing Street on Thursday afternoon.", + "guid": "b1124049", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T18:42:22.000Z" + }, + { + "creator": "Sian Baldwin", + "date": "2023-11-30T18:35:31+00:00", + "title": "Ellie Taylor pulls out of Royal Variety Performance after baby comes early", + "link": "https://www.standard.co.uk/showbiz/ellie-taylor-pulls-out-royal-variety-performance-albert-hall-b1124019.html", + "pubDate": "Thu, 30 Nov 2023 18:35:31 GMT", + "dc:creator": "Sian Baldwin", + "dc:date": "2023-11-30T18:35:31+00:00", + "content": "

The former Strictly favourite and stand-up comic was due to join a host of celebrities and performers at the Royal Albert Hall tonight

", + "contentSnippet": "The former Strictly favourite and stand-up comic was due to join a host of celebrities and performers at the Royal Albert Hall tonight", + "guid": "b1124019", + "categories": ["Showbiz"], + "isoDate": "2023-11-30T18:35:31.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2023-11-30T18:32:32+00:00", + "title": "Alexandra Burke and boyfriend sleeping in separate beds following birth of second child", + "link": "https://www.standard.co.uk/showbiz/alexandra-burke-motherhood-sleeping-separate-beds-partner-work-b1124029.html", + "pubDate": "Thu, 30 Nov 2023 18:32:32 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2023-11-30T18:32:32+00:00", + "content": "

The former X Factor winner also got candid about struggling juggling being a mum with her career

", + "contentSnippet": "The former X Factor winner also got candid about struggling juggling being a mum with her career", + "guid": "b1124029", + "categories": ["Showbiz"], + "isoDate": "2023-11-30T18:32:32.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-11-30T18:19:29+00:00", + "title": "Chelsea one step closer to Kendry Paez arrival after 'visa accepted'", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-kendry-paez-b1124045.html", + "pubDate": "Thu, 30 Nov 2023 18:19:29 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-11-30T18:19:29+00:00", + "content": "

Planned visit to Cobham in the works ahead of 2025 transfer

", + "contentSnippet": "Planned visit to Cobham in the works ahead of 2025 transfer", + "guid": "b1124045", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T18:19:29.000Z" + }, + { + "creator": "Abha Shah", + "date": "2023-11-30T18:11:47+00:00", + "title": "Best Christmas gifts for mum 2023: Thoughtful and personalised present ideas for your leading lady", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-gifts-for-mum-b853785.html", + "pubDate": "Thu, 30 Nov 2023 18:11:47 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2023-11-30T18:11:47+00:00", + "content": "

Gift ideas as unique as your mum

", + "contentSnippet": "Gift ideas as unique as your mum", + "guid": "b853785", + "categories": ["Fashion", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T18:11:47.000Z" + }, + { + "creator": "Tamara Davison", + "date": "2023-11-30T18:08:50+00:00", + "title": "The Wetherspoons game is back: What is it and how do you play it?", + "link": "https://www.standard.co.uk/news/uk/wetherspoons-game-app-how-play-pub-facebook-b1123954.html", + "pubDate": "Thu, 30 Nov 2023 18:08:50 GMT", + "dc:creator": "Tamara Davison", + "dc:date": "2023-11-30T18:08:50+00:00", + "content": "

The pub chain's game has exploded in popularity recently

", + "contentSnippet": "The pub chain's game has exploded in popularity recently", + "guid": "b1123954", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T18:08:50.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2023-11-30T18:04:37+00:00", + "title": "Microsoft Paint's AI update adds Dall-E to let you create images using text ", + "link": "https://www.standard.co.uk/news/tech/microsoft-paint-ai-update-dall-e-images-text-b1123968.html", + "pubDate": "Thu, 30 Nov 2023 18:04:37 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2023-11-30T18:04:37+00:00", + "content": "

You can try out the AI 'Cocreator' for free by joining a waitlist

", + "contentSnippet": "You can try out the AI 'Cocreator' for free by joining a waitlist", + "guid": "b1123968", + "categories": ["Tech", "News"], + "isoDate": "2023-11-30T18:04:37.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-11-30T17:59:03+00:00", + "title": "Pogues frontman Shane MacGowan remembered as a \u2018lyrical genius\u2019", + "link": "https://www.standard.co.uk/culture/music/the-pogues-dublin-billy-bragg-hospital-nick-cave-b1124043.html", + "pubDate": "Thu, 30 Nov 2023 17:59:03 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-11-30T17:59:03+00:00", + "content": "MacGowan was discharged last week from St Vincent\u2019s Hospital in Dublin ahead of his 66th birthday on Christmas Day.", + "contentSnippet": "MacGowan was discharged last week from St Vincent\u2019s Hospital in Dublin ahead of his 66th birthday on Christmas Day.", + "guid": "b1124043", + "categories": ["Music", "Culture"], + "isoDate": "2023-11-30T17:59:03.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2023-11-30T17:58:47+00:00", + "title": "Amazon\u2019s new AI chatbot is designed to be your workplace assistant", + "link": "https://www.standard.co.uk/news/tech/amazon-ai-chatbot-workplace-assistant-b1124020.html", + "pubDate": "Thu, 30 Nov 2023 17:58:47 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2023-11-30T17:58:47+00:00", + "content": "

Amazon Q can write emails, summarise documents, visualise data, and more

", + "contentSnippet": "Amazon Q can write emails, summarise documents, visualise data, and more", + "guid": "b1124020", + "categories": ["Tech", "News"], + "isoDate": "2023-11-30T17:58:47.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2023-11-30T17:56:05+00:00", + "title": "Best supermarket Christmas puddings of 2023, taste tested", + "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-christmas-puddings-supermarket-b1120057.html", + "pubDate": "Thu, 30 Nov 2023 17:56:05 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2023-11-30T17:56:05+00:00", + "content": "

From profiterole pyramids to tasty trifles, Christmas puds just keep getting better

", + "contentSnippet": "From profiterole pyramids to tasty trifles, Christmas puds just keep getting better", + "guid": "b1120057", + "categories": ["CHRISTMAS", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T17:56:05.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2023-11-30T17:55:50+00:00", + "title": "Best mince pies for Christmas 2023 taste tested, from Waitrose to DukesHill", + "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-supermarket-mince-pies-b1116777.html", + "pubDate": "Thu, 30 Nov 2023 17:55:50 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2023-11-30T17:55:50+00:00", + "content": "

The latest iterations of our favourite festive snack are finally here

", + "contentSnippet": "The latest iterations of our favourite festive snack are finally here", + "guid": "b1116777", + "categories": ["CHRISTMAS", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T17:55:50.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2023-11-30T17:52:59+00:00", + "title": "Best advent calendars for creative kids", + "link": "https://www.standard.co.uk/shopping/esbest/christmas/kids/best-advent-calendars-for-creative-kids-b1102166.html", + "pubDate": "Thu, 30 Nov 2023 17:52:59 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2023-11-30T17:52:59+00:00", + "content": "

Keep active minds busy in the run up to Christmas

", + "contentSnippet": "Keep active minds busy in the run up to Christmas", + "guid": "b1102166", + "categories": ["Kids", "CHRISTMAS", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T17:52:59.000Z" + }, + { + "creator": "Pa", + "date": "2023-11-30T17:52:55+00:00", + "title": "In Pictures: Turbulent troubadour Shane MacGowan reinvented Irish music", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/london-home-counties-johnny-depp-westminster-school-bob-geldof-b1124041.html", + "pubDate": "Thu, 30 Nov 2023 17:52:55 GMT", + "dc:creator": "Pa", + "dc:date": "2023-11-30T17:52:55+00:00", + "content": "As frontman for the Pogues, a new wave band using Irish traditional instruments, MacGowan embodied classic songs including a festive favourite.", + "contentSnippet": "As frontman for the Pogues, a new wave band using Irish traditional instruments, MacGowan embodied classic songs including a festive favourite.", + "guid": "b1124041", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-11-30T17:52:55.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2023-11-30T17:51:47+00:00", + "title": "Best vegan advent calendars 2023: Delicious daily treats without the dairy", + "link": "https://www.standard.co.uk/shopping/esbest/food-drink/best-vegan-advent-calendars-b1107395.html", + "pubDate": "Thu, 30 Nov 2023 17:51:47 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2023-11-30T17:51:47+00:00", + "content": "

Plant-based treats to mark the Christmas countdown

", + "contentSnippet": "Plant-based treats to mark the Christmas countdown", + "guid": "b1107395", + "categories": ["Food & Drink", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T17:51:47.000Z" + }, + { + "creator": "Tamara Davison and Rachael Davies", + "date": "2023-11-30T17:49:31+00:00", + "title": "Why is Nottingham City Council effectively bankrupt, and what does Section 114 mean?", + "link": "https://www.standard.co.uk/news/politics/why-nottingham-city-council-effectively-bankrupt-b1105266.html", + "pubDate": "Thu, 30 Nov 2023 17:49:31 GMT", + "dc:creator": "Tamara Davison and Rachael Davies", + "dc:date": "2023-11-30T17:49:31+00:00", + "content": "

Nottingham joins a growing list of local councils that have declared effective bankruptcy by raising a Section 114 notice

", + "contentSnippet": "Nottingham joins a growing list of local councils that have declared effective bankruptcy by raising a Section 114 notice", + "guid": "b1105266", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T17:49:31.000Z" + }, + { + "creator": "Maryam Kara", + "date": "2023-11-30T17:49:05+00:00", + "title": "What is encephalitis? The Pogues' frontman Shane MacGowan dies from viral infection", + "link": "https://www.standard.co.uk/news/health/what-encephalitis-the-pogues-shane-macgowan-viral-infection-b1123972.html", + "pubDate": "Thu, 30 Nov 2023 17:49:05 GMT", + "dc:creator": "Maryam Kara", + "dc:date": "2023-11-30T17:49:05+00:00", + "content": "

Encephalitis can be life-threatening and requires urgent treatment in hospital

", + "contentSnippet": "Encephalitis can be life-threatening and requires urgent treatment in hospital", + "guid": "b1123972", + "categories": ["Health", "News"], + "isoDate": "2023-11-30T17:49:05.000Z" + }, + { + "creator": "Ethan Croft", + "date": "2023-11-30T17:44:10+00:00", + "title": "Sacked GB News vicar Calvin Robinson has a new side hustle: Cameo", + "link": "https://www.standard.co.uk/news/londoners-diary/calvin-robinson-gb-news-laurence-fox-cameo-b1123891.html", + "pubDate": "Thu, 30 Nov 2023 17:44:10 GMT", + "dc:creator": "Ethan Croft", + "dc:date": "2023-11-30T17:44:10+00:00", + "content": "

Nigel Farage is under fire for his use of the same site

", + "contentSnippet": "Nigel Farage is under fire for his use of the same site", + "guid": "b1123891", + "categories": ["Diary", "News"], + "isoDate": "2023-11-30T17:44:10.000Z" + }, + { + "creator": "Abha Shah and Peter Bevan", + "date": "2023-11-30T17:43:47+00:00", + "title": "Best Christmas gifts for him 2023: Present inspo for men who have everything", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/mens/best-gifts-for-men-b854279.html", + "pubDate": "Thu, 30 Nov 2023 17:43:47 GMT", + "dc:creator": "Abha Shah and Peter Bevan", + "dc:date": "2023-11-30T17:43:47+00:00", + "content": "

In dire need of gift inspiration? Click this way

", + "contentSnippet": "In dire need of gift inspiration? Click this way", + "guid": "b854279", + "categories": ["Men's", "Fashion", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T17:43:47.000Z" + }, + { + "creator": "Ella Pickover", + "date": "2023-11-30T17:42:34+00:00", + "title": "One in 14 babies \u2018raised by fathers\u2019 \u2013 study", + "link": "https://www.standard.co.uk/news/health/children-babies-english-department-for-education-university-college-london-b1124039.html", + "pubDate": "Thu, 30 Nov 2023 17:42:34 GMT", + "dc:creator": "Ella Pickover", + "dc:date": "2023-11-30T17:42:34+00:00", + "content": "A new study has tracked child development among children from 8,500 families.", + "contentSnippet": "A new study has tracked child development among children from 8,500 families.", + "guid": "b1124039", + "categories": ["Health", "News"], + "isoDate": "2023-11-30T17:42:34.000Z" + }, + { + "creator": "Neil Lancefield", + "date": "2023-11-30T17:41:17+00:00", + "title": "Hundreds of Eurostar passengers stranded on broken down train with no working toilets for eight hours", + "link": "https://www.standard.co.uk/news/uk/eurostar-power-cut-broken-down-train-st-pancras-b1124034.html", + "pubDate": "Thu, 30 Nov 2023 17:41:17 GMT", + "dc:creator": "Neil Lancefield", + "dc:date": "2023-11-30T17:41:17+00:00", + "content": "The Amsterdam-bound service departed London St Pancras as scheduled at 8.16am but broke down around half an hour later.", + "contentSnippet": "The Amsterdam-bound service departed London St Pancras as scheduled at 8.16am but broke down around half an hour later.", + "guid": "b1124034", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T17:41:17.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2023-11-30T17:39:06+00:00", + "title": "Best chocolate advent calendars for a sweet Christmas 2023 ", + "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-chocolate-advent-calendars-b1104778.html", + "pubDate": "Thu, 30 Nov 2023 17:39:06 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2023-11-30T17:39:06+00:00", + "content": "

For your most scrumptious Christmas countdown yet

", + "contentSnippet": "For your most scrumptious Christmas countdown yet", + "guid": "b1104778", + "categories": ["CHRISTMAS", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T17:39:06.000Z" + }, + { + "creator": "Patrick Daly", + "date": "2023-11-30T17:38:54+00:00", + "title": "British Museum to continue talks with Greece over Elgin Marbles despite fallout", + "link": "https://www.standard.co.uk/news/uk/george-osborne-british-museum-talks-greece-elgin-marbles-b1124035.html", + "pubDate": "Thu, 30 Nov 2023 17:38:54 GMT", + "dc:creator": "Patrick Daly", + "dc:date": "2023-11-30T17:38:54+00:00", + "content": "

Museum chairman George Osborne said negotiations over an exchange deal would go on \u2018whether Rishi Sunak meets Greek PM or not\u2019

", + "contentSnippet": "Museum chairman George Osborne said negotiations over an exchange deal would go on \u2018whether Rishi Sunak meets Greek PM or not\u2019", + "guid": "b1124035", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T17:38:54.000Z" + }, + { + "creator": "Aine Fox", + "date": "2023-11-30T17:38:40+00:00", + "title": "Matt Hancock admits protective ring around care homes was not \u2018unbroken circle\u2019", + "link": "https://www.standard.co.uk/news/politics/matt-hancock-downing-street-ppe-jamie-boris-johnson-b1124033.html", + "pubDate": "Thu, 30 Nov 2023 17:38:40 GMT", + "dc:creator": "Aine Fox", + "dc:date": "2023-11-30T17:38:40+00:00", + "content": "The former health secretary was addressing the UK Covid-19 Inquiry.", + "contentSnippet": "The former health secretary was addressing the UK Covid-19 Inquiry.", + "guid": "b1124033", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T17:38:40.000Z" + }, + { + "creator": "Daniel Keane", + "date": "2023-11-30T17:36:59+00:00", + "title": "Denmark and Netherlands report surge in child pneumonia as China battles outbreak", + "link": "https://www.standard.co.uk/news/world/denmark-netherlands-child-pneumonia-mycoplasma-china-outbreak-b1124026.html", + "pubDate": "Thu, 30 Nov 2023 17:36:59 GMT", + "dc:creator": "Daniel Keane", + "dc:date": "2023-11-30T17:36:59+00:00", + "content": "

Danish health experts warn spike in bacteria illness is high enough to be considered epidemic

", + "contentSnippet": "Danish health experts warn spike in bacteria illness is high enough to be considered epidemic", + "guid": "b1124026", + "categories": ["World", "News"], + "isoDate": "2023-11-30T17:36:59.000Z" + }, + { + "creator": "Elizabeth Gregory", + "date": "2023-11-30T17:34:38+00:00", + "title": "The five exhibitions to see this week in London, from Jenny Saville to Alice Instone (Nov 30 to Dec 7)", + "link": "https://www.standard.co.uk/culture/exhibitions/the-five-exhibitions-to-see-this-week-in-london-b1102286.html", + "pubDate": "Thu, 30 Nov 2023 17:34:38 GMT", + "dc:creator": "Elizabeth Gregory", + "dc:date": "2023-11-30T17:34:38+00:00", + "content": "

We pick the best art shows to enjoy this week

", + "contentSnippet": "We pick the best art shows to enjoy this week", + "guid": "b1102286", + "categories": ["Exhibitions", "Culture"], + "isoDate": "2023-11-30T17:34:38.000Z" + }, + { + "creator": "By Grinne N. Aodha", + "date": "2023-11-30T17:30:01+00:00", + "title": "Fair City and other programmes to be hit by 10m euro cuts at RTE", + "link": "https://www.standard.co.uk/news/uk/government-european-paris-b1124037.html", + "pubDate": "Thu, 30 Nov 2023 17:30:01 GMT", + "dc:creator": "By Grinne N. Aodha", + "dc:date": "2023-11-30T17:30:01+00:00", + "content": "There will also be production savings in news and current affairs and sport, the broadcaster said.", + "contentSnippet": "There will also be production savings in news and current affairs and sport, the broadcaster said.", + "guid": "b1124037", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T17:30:01.000Z" + }, + { + "creator": "Tamara Davison,Beril Naz Hassan,Nuray Bulbul,Tamara Davison and William Mata", + "date": "2023-11-30T17:28:25+00:00", + "title": "UK airports\u2019 cancelled flights list: Heathrow, Gatwick, Luton and more", + "link": "https://www.standard.co.uk/news/uk/airport-cancelled-flights-list-gatwick-heathrow-luton-b1111239.html", + "pubDate": "Thu, 30 Nov 2023 17:28:25 GMT", + "dc:creator": "Tamara Davison,Beril Naz Hassan,Nuray Bulbul,Tamara Davison and William Mata", + "dc:date": "2023-11-30T17:28:25+00:00", + "content": "

\u00a0Snow around the country could impact flights in the coming days\u00a0

", + "contentSnippet": "Snow around the country could impact flights in the coming days", + "guid": "b1111239", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T17:28:25.000Z" + }, + { + "creator": "Daniel O'Boyle", + "date": "2023-11-30T17:21:07+00:00", + "title": "Culture Secretary steps in to potentially block UAE-backed Redbird's Telegraph deal on public interest grounds", + "link": "https://www.standard.co.uk/business/culture-secretary-steps-in-to-potentially-block-telegraph-deal-b1124032.html", + "pubDate": "Thu, 30 Nov 2023 17:21:07 GMT", + "dc:creator": "Daniel O'Boyle", + "dc:date": "2023-11-30T17:21:07+00:00", + "content": "

Culture Secretary Lucy Frazer says she \u201cwill be issuing a Public Interest Intervention Notice\u201d on the deal

", + "contentSnippet": "Culture Secretary Lucy Frazer says she \u201cwill be issuing a Public Interest Intervention Notice\u201d on the deal", + "guid": "b1124032", + "categories": ["Business"], + "isoDate": "2023-11-30T17:21:07.000Z" + }, + { + "creator": "Sian Baldwin", + "date": "2023-11-30T17:17:43+00:00", + "title": "Panda diplomacy: How to see Edinburgh Zoo's giant pandas before they return to China", + "link": "https://www.standard.co.uk/news/uk/edinburgh-zoo-giant-pandas-return-china-b1123977.html", + "pubDate": "Thu, 30 Nov 2023 17:17:43 GMT", + "dc:creator": "Sian Baldwin", + "dc:date": "2023-11-30T17:17:43+00:00", + "content": "

Tian Tian and Yang Guang\u00a0arrived in Scotland in 2011 but are due to return to their native land

", + "contentSnippet": "Tian Tian and Yang Guang\u00a0arrived in Scotland in 2011 but are due to return to their native land", + "guid": "b1123977", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T17:17:43.000Z" + }, + { + "creator": "Elizabeth Gregory,Dominique Hines and Nancy Durrant", + "date": "2023-11-30T17:15:27+00:00", + "title": "The best free exhibitions in London \u2013 get your culture fix and keep your money for coffee", + "link": "https://www.standard.co.uk/culture/exhibitions/best-free-exhibitions-in-london-now-b1053240.html", + "pubDate": "Thu, 30 Nov 2023 17:15:27 GMT", + "dc:creator": "Elizabeth Gregory,Dominique Hines and Nancy Durrant", + "dc:date": "2023-11-30T17:15:27+00:00", + "content": "

Want to have a fun day out but also save those pennies? These free London art exhibitions are perfect

", + "contentSnippet": "Want to have a fun day out but also save those pennies? These free London art exhibitions are perfect", + "guid": "b1053240", + "categories": ["Exhibitions", "Culture"], + "isoDate": "2023-11-30T17:15:27.000Z" + }, + { + "creator": "August Graham", + "date": "2023-11-30T17:14:46+00:00", + "title": "London market ends November in the green as financial stocks gain", + "link": "https://www.standard.co.uk/business/business-news/london-market-ends-november-in-the-green-as-financial-stocks-gain-b1124031.html", + "pubDate": "Thu, 30 Nov 2023 17:14:46 GMT", + "dc:creator": "August Graham", + "dc:date": "2023-11-30T17:14:46+00:00", + "content": "The FTSE 100 rose 30.29 points, or 0.41%, to end the day at 7453.75.", + "contentSnippet": "The FTSE 100 rose 30.29 points, or 0.41%, to end the day at 7453.75.", + "guid": "b1124031", + "categories": ["Business News", "Business"], + "isoDate": "2023-11-30T17:14:46.000Z" + }, + { + "creator": "Rachael Davies", + "date": "2023-11-30T17:14:06+00:00", + "title": "World AIDS Day 2023: What is it and how can you get involved?", + "link": "https://www.standard.co.uk/news/world/world-aids-day-how-to-get-involved-b1040942.html", + "pubDate": "Thu, 30 Nov 2023 17:14:06 GMT", + "dc:creator": "Rachael Davies", + "dc:date": "2023-11-30T17:14:06+00:00", + "content": "

World AIDS Day is taking place at the start of December

", + "contentSnippet": "World AIDS Day is taking place at the start of December", + "guid": "b1040942", + "categories": ["World", "News"], + "isoDate": "2023-11-30T17:14:06.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2023-11-30T17:10:18+00:00", + "title": "Best Christmas board games for hours of family fun", + "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-christmas-board-games-for-kids-and-adults-b1027518.html", + "pubDate": "Thu, 30 Nov 2023 17:10:18 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2023-11-30T17:10:18+00:00", + "content": "

Classic and kooky options that won\u2019t (necessarily) start any arguments

", + "contentSnippet": "Classic and kooky options that won\u2019t (necessarily) start any arguments", + "guid": "b1027518", + "categories": ["CHRISTMAS", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T17:10:18.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2023-11-30T17:04:21+00:00", + "title": "British minister flies to the Falklands after Argentina\u2019s president-elect Javier Milei vows to 'get them back'", + "link": "https://www.standard.co.uk/news/politics/falklands-britain-argentina-war-islands-back-minister-b1124014.html", + "pubDate": "Thu, 30 Nov 2023 17:04:21 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2023-11-30T17:04:21+00:00", + "content": "

Foreign Office minister David Rutley stressed the UK strongly backs the islanders\u2019 rights to self-determination as an 'important part of the British family'

", + "contentSnippet": "Foreign Office minister David Rutley stressed the UK strongly backs the islanders\u2019 rights to self-determination as an 'important part of the British family'", + "guid": "b1124014", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T17:04:21.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2023-11-30T17:01:32+00:00", + "title": "Best Christmas gifts for pets 2023: Delightful presents for your furry friend", + "link": "https://www.standard.co.uk/shopping/esbest/christmas/best-christmas-gifts-for-pets-dogs-cats-b1120254.html", + "pubDate": "Thu, 30 Nov 2023 17:01:32 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2023-11-30T17:01:32+00:00", + "content": "

Purr-fect presents for your most precious family member

", + "contentSnippet": "Purr-fect presents for your most precious family member", + "guid": "b1120254", + "categories": ["CHRISTMAS", "ES Best Home", "Shopping"], + "isoDate": "2023-11-30T17:01:32.000Z" + }, + { + "creator": "Ann Martin", + "date": "2023-11-30T17:00:56+00:00", + "title": "Best dehumidifiers to keep your home feeling fresh", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-dehumidifiers-for-home-b1017519.html", + "pubDate": "Thu, 30 Nov 2023 17:00:56 GMT", + "dc:creator": "Ann Martin", + "dc:date": "2023-11-30T17:00:56+00:00", + "content": "

The best dehumidifiers for improving air quality in your home

", + "contentSnippet": "The best dehumidifiers for improving air quality in your home", + "guid": "b1017519", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2023-11-30T17:00:56.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-11-30T16:57:57+00:00", + "title": "Sin bins are making a difference in amateur football but clear issues remain ahead of professional trial ", + "link": "https://www.standard.co.uk/sport/football/sin-bin-trial-ifab-premier-league-b1123885.html", + "pubDate": "Thu, 30 Nov 2023 16:57:57 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-11-30T16:57:57+00:00", + "content": "

The impact at non-league level is clear, though there are obvious pitfalls that need to be addressed

", + "contentSnippet": "The impact at non-league level is clear, though there are obvious pitfalls that need to be addressed", + "guid": "b1123885", + "categories": ["Football", "Sport"], + "isoDate": "2023-11-30T16:57:57.000Z" + }, + { + "creator": "Tristan Kirk", + "date": "2023-11-30T16:56:57+00:00", + "title": "EncroChat drug dealer jailed for plotting to buy 25 Skorpion submachine guns ", + "link": "https://www.standard.co.uk/news/crime/encrochat-drug-dealer-skorpion-guns-russia-cocaine-cannabis-b1123979.html", + "pubDate": "Thu, 30 Nov 2023 16:56:57 GMT", + "dc:creator": "Tristan Kirk", + "dc:date": "2023-11-30T16:56:57+00:00", + "content": "

Drug dealer Kirk Douglas was caught when the EncroChat system was infiltrated by law enforcement in 2020

", + "contentSnippet": "Drug dealer Kirk Douglas was caught when the EncroChat system was infiltrated by law enforcement in 2020", + "guid": "b1123979", + "categories": ["Crime", "News"], + "isoDate": "2023-11-30T16:56:57.000Z" + }, + { + "creator": "Clare Finney", + "date": "2023-11-30T16:54:58+00:00", + "title": "Where to feel like you've gone on holiday, without leaving London", + "link": "https://www.standard.co.uk/going-out/restaurants/restaurants-london-holiday-vibes-b1123721.html", + "pubDate": "Thu, 30 Nov 2023 16:54:58 GMT", + "dc:creator": "Clare Finney", + "dc:date": "2023-11-30T16:54:58+00:00", + "content": "

Clare Finney rounds up the dining rooms offering an escape from the London gloom \u2014 no flight required

", + "contentSnippet": "Clare Finney rounds up the dining rooms offering an escape from the London gloom \u2014 no flight required", + "guid": "b1123721", + "categories": ["Restaurants", "Going Out"], + "isoDate": "2023-11-30T16:54:58.000Z" + }, + { + "creator": "Claire Hayhurst", + "date": "2023-11-30T16:52:51+00:00", + "title": "Yacht builder fined \u00a3600,000 over accident which left worker seriously injured", + "link": "https://www.standard.co.uk/news/crime/hse-plymouth-devon-princess-b1124028.html", + "pubDate": "Thu, 30 Nov 2023 16:52:51 GMT", + "dc:creator": "Claire Hayhurst", + "dc:date": "2023-11-30T16:52:51+00:00", + "content": "Mark Gillen, 54, was crushed and lost an arm when a staging platform toppled over and fell on him in Plymouth, Devon.", + "contentSnippet": "Mark Gillen, 54, was crushed and lost an arm when a staging platform toppled over and fell on him in Plymouth, Devon.", + "guid": "b1124028", + "categories": ["Crime", "News"], + "isoDate": "2023-11-30T16:52:51.000Z" + }, + { + "creator": "City Staff", + "date": "2023-11-30T16:51:10+00:00", + "title": "FTSE 100 Live: FTSE closes up 0.4%, OPEC oil cuts to be voluntary, EU inflation falls to 2.4%", + "link": "https://www.standard.co.uk/business/ftse-100-live-dr-martens-mitchells-butlers-stocks-shares-gdp-inflation-interest-rate-bank-of-england-b1123799.html", + "pubDate": "Thu, 30 Nov 2023 16:51:10 GMT", + "dc:creator": "City Staff", + "dc:date": "2023-11-30T16:51:10+00:00", + "content": "

", + "contentSnippet": "", + "guid": "b1123799", + "categories": ["Business"], + "isoDate": "2023-11-30T16:51:10.000Z" + }, + { + "creator": "Daniel Keane and Jordan King", + "date": "2023-11-30T16:50:51+00:00", + "title": "Hancock didn't know about Eat Out to Help Out until day of announcement, inquiry told", + "link": "https://www.standard.co.uk/news/uk/matt-hancock-covid-inquiry-latest-live-updates-pandemic-nhs-gina-coladangelo-b1123851.html", + "pubDate": "Thu, 30 Nov 2023 16:50:51 GMT", + "dc:creator": "Daniel Keane and Jordan King", + "dc:date": "2023-11-30T16:50:51+00:00", + "content": "

Former health secretary says ministers should have acted more quickly after warnings from scientists

", + "contentSnippet": "Former health secretary says ministers should have acted more quickly after warnings from scientists", + "guid": "b1123851", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T16:50:51.000Z" + }, + { + "creator": "Emily Pennink", + "date": "2023-11-30T16:45:13+00:00", + "title": "People smuggler linked to deaths of 39 men, women and children jailed for seven years", + "link": "https://www.standard.co.uk/news/crime/caolan-gormley-people-smuggling-migrants-deaths-essex-court-b1123985.html", + "pubDate": "Thu, 30 Nov 2023 16:45:13 GMT", + "dc:creator": "Emily Pennink", + "dc:date": "2023-11-30T16:45:13+00:00", + "content": "

Caolan Gormley, 26, from Co Tyrone, had denied being involved, claiming he thought he was helping bring alcohol into the UK illegally.

", + "contentSnippet": "Caolan Gormley, 26, from Co Tyrone, had denied being involved, claiming he thought he was helping bring alcohol into the UK illegally.", + "guid": "b1123985", + "categories": ["Crime", "News"], + "isoDate": "2023-11-30T16:45:13.000Z" + }, + { + "creator": "Emily Pennink", + "date": "2023-11-30T16:43:50+00:00", + "title": "Mehmet Koray Alpergin: Thugs found guilty of kidnap killing of radio DJ near Tottenham Hotspur Stadium", + "link": "https://www.standard.co.uk/news/crime/men-guilty-murder-radio-dj-near-tottenham-hotspur-stadium-white-hart-lane-b1124011.html", + "pubDate": "Thu, 30 Nov 2023 16:43:50 GMT", + "dc:creator": "Emily Pennink", + "dc:date": "2023-11-30T16:43:50+00:00", + "content": "

DJ and his girlfriend were abducted as they returned home from a restaurant in central London last October

", + "contentSnippet": "DJ and his girlfriend were abducted as they returned home from a restaurant in central London last October", + "guid": "b1124011", + "categories": ["Crime", "News"], + "isoDate": "2023-11-30T16:43:50.000Z" + }, + { + "creator": "Anthony France", + "date": "2023-11-30T16:41:36+00:00", + "title": "Met Police officer cleared of gross misconduct after Tasering 10-year-old girl", + "link": "https://www.standard.co.uk/news/crime/metropolitan-police-taser-girl-gross-misconduct-south-london-b1123915.html", + "pubDate": "Thu, 30 Nov 2023 16:41:36 GMT", + "dc:creator": "Anthony France", + "dc:date": "2023-11-30T16:41:36+00:00", + "content": "

PC Jonathan Broadhead fired his weapon at the girl twice within seconds of entering her home

", + "contentSnippet": "PC Jonathan Broadhead fired his weapon at the girl twice within seconds of entering her home", + "guid": "b1123915", + "categories": ["Crime", "News"], + "isoDate": "2023-11-30T16:41:36.000Z" + }, + { + "creator": "August Graham", + "date": "2023-11-30T16:41:12+00:00", + "title": "Frasers pulls out of deal to buy Germany\u2019s SportScheck", + "link": "https://www.standard.co.uk/business/business-news/frasers-pulls-out-of-deal-to-buy-germany-s-sportscheck-b1124023.html", + "pubDate": "Thu, 30 Nov 2023 16:41:12 GMT", + "dc:creator": "August Graham", + "dc:date": "2023-11-30T16:41:12+00:00", + "content": "The retailer said that it would try to buy the business or its assets out of administration.", + "contentSnippet": "The retailer said that it would try to buy the business or its assets out of administration.", + "guid": "b1124023", + "categories": ["Business News", "Business"], + "isoDate": "2023-11-30T16:41:12.000Z" + }, + { + "creator": "Tony Jones", + "date": "2023-11-30T16:39:06+00:00", + "title": "Writer Omid Scobie accused of \u2018stunt to sell books\u2019 over naming of race row royals", + "link": "https://www.standard.co.uk/news/uk/omid-scobie-harry-meghan-piers-morgan-endgame-royals-b1123921.html", + "pubDate": "Thu, 30 Nov 2023 16:39:06 GMT", + "dc:creator": "Tony Jones", + "dc:date": "2023-11-30T16:39:06+00:00", + "content": "

Copies of Omid Scobie\u2019s book were pulled from the shelves in the Netherlands on publication day on Tuesday

", + "contentSnippet": "Copies of Omid Scobie\u2019s book were pulled from the shelves in the Netherlands on publication day on Tuesday", + "guid": "b1123921", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T16:39:06.000Z" + }, + { + "creator": "Nick Howells", + "date": "2023-11-30T16:38:00+00:00", + "title": "Eileen movie review: desire runs riot in this Ottessa Moshfegh adaptation", + "link": "https://www.standard.co.uk/culture/film/eileen-movie-review-ottessa-moshfegh-anne-hathaway-thomasin-mckenzie-b1123011.html", + "pubDate": "Thu, 30 Nov 2023 16:38:00 GMT", + "dc:creator": "Nick Howells", + "dc:date": "2023-11-30T16:38:00+00:00", + "content": "

Eileen is the drabbest of them all... until glamourous new prison psychiatrist Rebecca comes swanning into town, that is

", + "contentSnippet": "Eileen is the drabbest of them all... until glamourous new prison psychiatrist Rebecca comes swanning into town, that is", + "guid": "b1123011", + "categories": ["Film", "Culture"], + "isoDate": "2023-11-30T16:38:00.000Z" + }, + { + "creator": "Storm Newton", + "date": "2023-11-30T16:35:34+00:00", + "title": "Hancock was \u2018frustrated\u2019 by reluctance to use private sector in Covid testing", + "link": "https://www.standard.co.uk/news/politics/matt-hancock-department-of-health-and-social-care-mark-sedwill-china-b1124022.html", + "pubDate": "Thu, 30 Nov 2023 16:35:34 GMT", + "dc:creator": "Storm Newton", + "dc:date": "2023-11-30T16:35:34+00:00", + "content": "The former health secretary gave evidence to the Covid-19 Inquiry on Thursday.", + "contentSnippet": "The former health secretary gave evidence to the Covid-19 Inquiry on Thursday.", + "guid": "b1124022", + "categories": ["Politics", "News"], + "isoDate": "2023-11-30T16:35:34.000Z" + }, + { + "creator": "Anna Wise", + "date": "2023-11-30T16:33:49+00:00", + "title": "Pubs and bars urge Aslef to follow in lead of RMT ahead of rail strikes", + "link": "https://www.standard.co.uk/business/business-news/pubs-and-bars-urge-aslef-to-follow-in-lead-of-rmt-ahead-of-rail-strikes-b1124021.html", + "pubDate": "Thu, 30 Nov 2023 16:33:49 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2023-11-30T16:33:49+00:00", + "content": "Trade body UKHospitality, which represents more than 130,000 venues, said \u201cwe are not out of the woods yet\u201d after RMT agreed to a pay deal.", + "contentSnippet": "Trade body UKHospitality, which represents more than 130,000 venues, said \u201cwe are not out of the woods yet\u201d after RMT agreed to a pay deal.", + "guid": "b1124021", + "categories": ["Business News", "Business"], + "isoDate": "2023-11-30T16:33:49.000Z" + }, + { + "creator": "Lisa McLoughlin ", + "date": "2023-11-30T16:30:04+00:00", + "title": "Billy Porter details \u2018the worst year of his life\u2019 amid bankruptcy plus HIV and diabetes diagnosis", + "link": "https://www.standard.co.uk/showbiz/billy-porter-worst-year-of-his-life-hiv-diagnosis-bankruptcy-diabetes-b1124000.html", + "pubDate": "Thu, 30 Nov 2023 16:30:04 GMT", + "dc:creator": "Lisa McLoughlin ", + "dc:date": "2023-11-30T16:30:04+00:00", + "content": "

The actor first spoke publicly about his HIV diagnosis in 2021, explaining that he kept it secret for over a decade out of fear of harming his career

", + "contentSnippet": "The actor first spoke publicly about his HIV diagnosis in 2021, explaining that he kept it secret for over a decade out of fear of harming his career", + "guid": "b1124000", + "categories": ["Showbiz"], + "isoDate": "2023-11-30T16:30:04.000Z" + }, + { + "creator": "Nick Clark", + "date": "2023-11-30T16:27:30+00:00", + "title": "The best Christmas shows to book: from Dickens and Elf to Gwyneth Paltrow on the slopes (yes, really)", + "link": "https://www.standard.co.uk/culture/theatre/best-christmas-shows-2023-a-christmas-carol-elf-gwyneth-paltrow-b1123991.html", + "pubDate": "Thu, 30 Nov 2023 16:27:30 GMT", + "dc:creator": "Nick Clark", + "dc:date": "2023-11-30T16:27:30+00:00", + "content": "

Fancy a festive night out at the theatre? Of course you do

", + "contentSnippet": "Fancy a festive night out at the theatre? Of course you do", + "guid": "b1123991", + "categories": ["Theatre", "Culture"], + "isoDate": "2023-11-30T16:27:30.000Z" + }, + { + "creator": "Rachel Vickers-Price", + "date": "2023-12-01T01:02:26+00:00", + "title": "What the papers say \u2013 December 1", + "link": "https://www.standard.co.uk/news/uk/cop28-european-union-britain-the-sun-daily-star-b1124089.html", + "pubDate": "Fri, 01 Dec 2023 01:02:26 GMT", + "dc:creator": "Rachel Vickers-Price", + "dc:date": "2023-12-01T01:02:26+00:00", + "content": "Here are Britain\u2019s biggest stories on Friday.", + "contentSnippet": "Here are Britain\u2019s biggest stories on Friday.", + "guid": "b1124089", + "categories": ["UK", "News"], + "isoDate": "2023-12-01T01:02:26.000Z" + }, + { + "creator": "Pol Allingham", + "date": "2023-12-01T00:28:41+00:00", + "title": "Prince and Princess of Wales appear \u2018relaxed\u2019 at Royal Variety Performance", + "link": "https://www.standard.co.uk/news/uk/princess-paloma-faith-prince-william-and-kate-princess-of-wales-b1124088.html", + "pubDate": "Fri, 01 Dec 2023 00:28:41 GMT", + "dc:creator": "Pol Allingham", + "dc:date": "2023-12-01T00:28:41+00:00", + "content": "Paloma Faith said William and Kate seemed calm when they spoke with her after she sang at the Royal Albert Hall.", + "contentSnippet": "Paloma Faith said William and Kate seemed calm when they spoke with her after she sang at the Royal Albert Hall.", + "guid": "b1124088", + "categories": ["UK", "News"], + "isoDate": "2023-12-01T00:28:41.000Z" + }, + { + "creator": "Sophie Wingate", + "date": "2023-12-01T00:03:21+00:00", + "title": "King and Sunak to attend Cop28 as leaders assess bids to tackle climate change", + "link": "https://www.standard.co.uk/news/politics/cop28-king-david-cameron-keir-starmer-charles-b1124087.html", + "pubDate": "Fri, 01 Dec 2023 00:03:21 GMT", + "dc:creator": "Sophie Wingate", + "dc:date": "2023-12-01T00:03:21+00:00", + "content": "Britain will be represented at the climate summit by the Prime Minister, the Foreign Secretary and Charles, who is to make an address.", + "contentSnippet": "Britain will be represented at the climate summit by the Prime Minister, the Foreign Secretary and Charles, who is to make an address.", + "guid": "b1124087", + "categories": ["Politics", "News"], + "isoDate": "2023-12-01T00:03:21.000Z" + }, + { + "creator": "George Lithgow", + "date": "2023-12-01T00:01:47+00:00", + "title": "Wintry showers and sub-zero temperatures set to continue", + "link": "https://www.standard.co.uk/news/environment/met-office-scotland-northern-ireland-east-anglia-yorkshire-b1124080.html", + "pubDate": "Fri, 01 Dec 2023 00:01:47 GMT", + "dc:creator": "George Lithgow", + "dc:date": "2023-12-01T00:01:47+00:00", + "content": "Hilly areas including the North York Moors and parts of Scotland will see more snow on Friday, the Met Office said.", + "contentSnippet": "Hilly areas including the North York Moors and parts of Scotland will see more snow on Friday, the Met Office said.", + "guid": "b1124080", + "categories": ["Environment", "News"], + "isoDate": "2023-12-01T00:01:47.000Z" + }, + { + "creator": "George Lithgow", + "date": "2023-12-01T00:01:00+00:00", + "title": "Review set to scrutinise AI\u2019s impact on porn industry", + "link": "https://www.standard.co.uk/news/politics/michelle-donelan-secretary-of-state-government-b1124081.html", + "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", + "dc:creator": "George Lithgow", + "dc:date": "2023-12-01T00:01:00+00:00", + "content": "The review will look at how viewing pornography impacts users of all ages, including emerging challenges from AI.", + "contentSnippet": "The review will look at how viewing pornography impacts users of all ages, including emerging challenges from AI.", + "guid": "b1124081", + "categories": ["Politics", "News"], + "isoDate": "2023-12-01T00:01:00.000Z" + }, + { + "creator": "Rebecca Black", + "date": "2023-12-01T00:01:00+00:00", + "title": "CCTV footage of murder victim Mark Lovell\u2019s last movements released", + "link": "https://www.standard.co.uk/news/uk/police-mercedes-northern-ireland-dundalk-dublin-b1124084.html", + "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", + "dc:creator": "Rebecca Black", + "dc:date": "2023-12-01T00:01:00+00:00", + "content": "A \u00a320,000 reward has been offered for information leading to the arrest and conviction of those responsible.", + "contentSnippet": "A \u00a320,000 reward has been offered for information leading to the arrest and conviction of those responsible.", + "guid": "b1124084", + "categories": ["UK", "News"], + "isoDate": "2023-12-01T00:01:00.000Z" + }, + { + "creator": "Kim Pilling", + "date": "2023-12-01T00:01:00+00:00", + "title": "Significant improvements by Greater Manchester Police, inspection finds", + "link": "https://www.standard.co.uk/news/uk/greater-manchester-police-andy-burnham-greater-manchester-mayor-gmp-b1124085.html", + "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", + "dc:creator": "Kim Pilling", + "dc:date": "2023-12-01T00:01:00+00:00", + "content": "Stephen Watson replaced Ian Hopkins as the chief constable of GMP in May 2021 after the force was placed in special measures in December 2020.", + "contentSnippet": "Stephen Watson replaced Ian Hopkins as the chief constable of GMP in May 2021 after the force was placed in special measures in December 2020.", + "guid": "b1124085", + "categories": ["UK", "News"], + "isoDate": "2023-12-01T00:01:00.000Z" + }, + { + "creator": "George Lithgow", + "date": "2023-12-01T00:01:00+00:00", + "title": "NHS urges people to book \u2018lifesaving\u2019 Covid and flu vaccines before Christmas", + "link": "https://www.standard.co.uk/news/health/nhs-england-b1124082.html", + "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", + "dc:creator": "George Lithgow", + "dc:date": "2023-12-01T00:01:00+00:00", + "content": "A total of 11,404,669 Covid and 16,190,661 flu vaccinations have been administered by the NHS in England this autumn.", + "contentSnippet": "A total of 11,404,669 Covid and 16,190,661 flu vaccinations have been administered by the NHS in England this autumn.", + "guid": "b1124082", + "categories": ["Health", "News"], + "isoDate": "2023-12-01T00:01:00.000Z" + }, + { + "creator": "Danny Halpin", + "date": "2023-12-01T00:01:00+00:00", + "title": "Government delays mean more plastic waste will go to landfill, say MPs", + "link": "https://www.standard.co.uk/news/politics/public-accounts-committee-mps-government-meg-hillier-england-b1124086.html", + "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", + "dc:creator": "Danny Halpin", + "dc:date": "2023-12-01T00:01:00+00:00", + "content": "A report from the Public Accounts Committee said councils and businesses do not have enough information to prepare for coming changes.", + "contentSnippet": "A report from the Public Accounts Committee said councils and businesses do not have enough information to prepare for coming changes.", + "guid": "b1124086", + "categories": ["Politics", "News"], + "isoDate": "2023-12-01T00:01:00.000Z" + }, + { + "creator": "Alan Jones", + "date": "2023-12-01T00:01:00+00:00", + "title": "Fresh disruption for rail travellers as train drivers strike again", + "link": "https://www.standard.co.uk/business/business-news/fresh-disruption-for-rail-travellers-as-train-drivers-strike-again-b1124079.html", + "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", + "dc:creator": "Alan Jones", + "dc:date": "2023-12-01T00:01:00+00:00", + "content": "Members of Aslef will stage a series of strikes and ban overtime in their long-running pay dispute.", + "contentSnippet": "Members of Aslef will stage a series of strikes and ban overtime in their long-running pay dispute.", + "guid": "b1124079", + "categories": ["Business News", "Business"], + "isoDate": "2023-12-01T00:01:00.000Z" + }, + { + "creator": "Anna Wise", + "date": "2023-12-01T00:01:00+00:00", + "title": "More households turning to debt to pay for essentials, survey shows", + "link": "https://www.standard.co.uk/business/business-news/more-households-turning-to-debt-to-pay-for-essentials-survey-shows-b1124078.html", + "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2023-12-01T00:01:00+00:00", + "content": "Families in serious financial difficulty are increasingly taking on debt to pay for essentials, according to a survey of about 5,600 UK adults.", + "contentSnippet": "Families in serious financial difficulty are increasingly taking on debt to pay for essentials, according to a survey of about 5,600 UK adults.", + "guid": "b1124078", + "categories": ["Business News", "Business"], + "isoDate": "2023-12-01T00:01:00.000Z" + }, + { + "creator": "Callum Parke", + "date": "2023-12-01T00:01:00+00:00", + "title": "King expected to call in opening speech for Cop28 to be \u2018critical turning point\u2019", + "link": "https://www.standard.co.uk/news/environment/king-cop28-charles-cameron-humza-yousaf-b1124083.html", + "pubDate": "Fri, 01 Dec 2023 00:01:00 GMT", + "dc:creator": "Callum Parke", + "dc:date": "2023-12-01T00:01:00+00:00", + "content": "Charles will address world leaders, heads of state and climate delegates in a speech at the summit on Friday.", + "contentSnippet": "Charles will address world leaders, heads of state and climate delegates in a speech at the summit on Friday.", + "guid": "b1124083", + "categories": ["Environment", "News"], + "isoDate": "2023-12-01T00:01:00.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2023-11-30T23:56:54+00:00", + "title": "Ellie Taylor announces arrival of baby as she misses Royal Variety Performance", + "link": "https://www.standard.co.uk/news/uk/princess-prince-wales-instagram-rick-astley-b1124066.html", + "pubDate": "Thu, 30 Nov 2023 23:56:54 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2023-11-30T23:56:54+00:00", + "content": "The Prince and Princess of Wales were among the guests at the annual charity event.", + "contentSnippet": "The Prince and Princess of Wales were among the guests at the annual charity event.", + "guid": "b1124066", + "categories": ["UK", "News"], + "isoDate": "2023-11-30T23:56:54.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-12-01T01:35:42+00:00", + "title": "Warner Bros offer first glimpse at Anya Taylor-Joy in Mad Max prequel", + "link": "https://www.standard.co.uk/culture/film/warner-bros-anya-taylorjoy-mad-max-chris-hemsworth-charlize-theron-b1124090.html", + "pubDate": "Fri, 01 Dec 2023 01:35:42 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-12-01T01:35:42+00:00", + "content": "Furiosa: A Mad Max Saga will be released on May 24 2024.", + "contentSnippet": "Furiosa: A Mad Max Saga will be released on May 24 2024.", + "guid": "b1124090", + "categories": ["Film", "Culture"], + "isoDate": "2023-12-01T01:35:42.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2023-12-08T09:36:15+00:00", + "title": "Off-duty Met officers 'involved in South Bank brawl' with four on restricted duties", + "link": "https://www.standard.co.uk/news/crime/met-police-south-bank-royal-festival-hall-jubilee-bridge-disorder-b1125658.html", + "pubDate": "Fri, 08 Dec 2023 09:36:15 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2023-12-08T09:36:15+00:00", + "content": "

Fights broke out on the Jubilee Bridge and near to the Royal Festival Hall

", + "contentSnippet": "Fights broke out on the Jubilee Bridge and near to the Royal Festival Hall", + "guid": "b1125658", + "categories": ["Crime", "News"], + "isoDate": "2023-12-08T09:36:15.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2023-12-08T09:31:41+00:00", + "title": "Tory minister defends middle finger social media jibe at Labour", + "link": "https://www.standard.co.uk/news/politics/bbc-news-mps-twitter-labour-party-foreign-affairs-committee-b1125652.html", + "pubDate": "Fri, 08 Dec 2023 09:31:41 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2023-12-08T09:31:41+00:00", + "content": "Tory MPs joined criticism of a post attacking Labour with an image of a BBC News presenter giving the middle finger live on air.", + "contentSnippet": "Tory MPs joined criticism of a post attacking Labour with an image of a BBC News presenter giving the middle finger live on air.", + "guid": "b1125652", + "categories": ["Politics", "News"], + "isoDate": "2023-12-08T09:31:41.000Z" + }, + { + "creator": "Abha Shah", + "date": "2023-12-08T09:29:18+00:00", + "title": "Best gifts for your friends: fun and fabulous ideas to spoil your inner circle this Christmas", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-friend-gifts-b918233.html", + "pubDate": "Fri, 08 Dec 2023 09:29:18 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2023-12-08T09:29:18+00:00", + "content": "

Good friends deserve great gifts - especially at Christmas. Here\u2019s our edit of the best

", + "contentSnippet": "Good friends deserve great gifts - especially at Christmas. Here\u2019s our edit of the best", + "guid": "b918233", + "categories": ["Fashion", "ES Best Home", "Shopping"], + "isoDate": "2023-12-08T09:29:18.000Z" + }, + { + "creator": "Jonathan Prynn and Daniel O'Boyle", + "date": "2023-12-08T09:26:58+00:00", + "title": "Average two-year fixed mortgage interest rate drops below 6% for first time in six months", + "link": "https://www.standard.co.uk/business/mortgage-interest-rate-two-year-fix-moneyfacts-prices-property-houses-homes-borrowing-loan-b1125660.html", + "pubDate": "Fri, 08 Dec 2023 09:26:58 GMT", + "dc:creator": "Jonathan Prynn and Daniel O'Boyle", + "dc:date": "2023-12-08T09:26:58+00:00", + "content": "

The average rate soared to as high as 6.81% in July

", + "contentSnippet": "The average rate soared to as high as 6.81% in July", + "guid": "b1125660", + "categories": ["Business"], + "isoDate": "2023-12-08T09:26:58.000Z" + }, + { + "creator": "Bill McLoughlin", + "date": "2023-12-08T09:22:09+00:00", + "title": "President Biden's son Hunter has nine tax charges added to gun indictments\u00a0", + "link": "https://www.standard.co.uk/news/world/hunter-biden-tax-charges-joe-biden-son-gun-b1125653.html", + "pubDate": "Fri, 08 Dec 2023 09:22:09 GMT", + "dc:creator": "Bill McLoughlin", + "dc:date": "2023-12-08T09:22:09+00:00", + "content": "

Scandal-hit Hunter Biden already faces a number of firearms charges

", + "contentSnippet": "Scandal-hit Hunter Biden already faces a number of firearms charges", + "guid": "b1125653", + "categories": ["World", "News"], + "isoDate": "2023-12-08T09:22:09.000Z" + }, + { + "creator": "Sophie Wingate", + "date": "2023-12-08T09:21:49+00:00", + "title": "Minister hints at possible compromises with Tory rebels over Rwanda plan", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-rwanda-mps-prime-minister-government-b1125659.html", + "pubDate": "Fri, 08 Dec 2023 09:21:49 GMT", + "dc:creator": "Sophie Wingate", + "dc:date": "2023-12-08T09:21:49+00:00", + "content": "Tory MPs will vote to back Rishi Sunak\u2019s beleaguered asylum plan next week, new legal migration minister Tom Pursglove said.", + "contentSnippet": "Tory MPs will vote to back Rishi Sunak\u2019s beleaguered asylum plan next week, new legal migration minister Tom Pursglove said.", + "guid": "b1125659", + "categories": ["Politics", "News"], + "isoDate": "2023-12-08T09:21:49.000Z" + }, + { + "creator": "Victoria Moss", + "date": "2023-12-08T09:18:37+00:00", + "title": "Manchester does Chanel: Virginie Viard presents a modish M\u00e9tier d\u2019Arts collection", + "link": "https://www.standard.co.uk/lifestyle/fashion/chanel-metier-d-arts-collection-manchester-2024-b1125647.html", + "pubDate": "Fri, 08 Dec 2023 09:18:37 GMT", + "dc:creator": "Victoria Moss", + "dc:date": "2023-12-08T09:18:37+00:00", + "content": "

Chanel shut down the Northern Quarter to host its first British show since 2012. Victoria Moss got in the spirit with Vimto tasting and a Man U game before joining the Gallagher kids on the front row

", + "contentSnippet": "Chanel shut down the Northern Quarter to host its first British show since 2012. Victoria Moss got in the spirit with Vimto tasting and a Man U game before joining the Gallagher kids on the front row", + "guid": "b1125647", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2023-12-08T09:18:37.000Z" + }, + { + "creator": "Christopher McKeon", + "date": "2023-12-08T09:18:31+00:00", + "title": "What is the Government\u2019s new Rwanda plan and could it trigger an election?", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-rwanda-suella-braverman-supreme-court-government-b1125458.html", + "pubDate": "Fri, 08 Dec 2023 09:18:31 GMT", + "dc:creator": "Christopher McKeon", + "dc:date": "2023-12-08T09:18:31+00:00", + "content": "Rishi Sunak defended his fresh legislation amid questions about his authority over the Conservative Party.", + "contentSnippet": "Rishi Sunak defended his fresh legislation amid questions about his authority over the Conservative Party.", + "guid": "b1125458", + "categories": ["Politics", "News"], + "isoDate": "2023-12-08T09:18:31.000Z" + }, + { + "creator": "Daniel Keane,Matt Watts and Josh Salisbury", + "date": "2023-12-08T09:17:41+00:00", + "title": "Elizabeth Line: Major disruption expected near Paddington all morning after James Blunt and Rachel Riley caught up", + "link": "https://www.standard.co.uk/news/transport/elizabeth-line-trains-travel-delays-suspended-overhead-wire-damage-b1125595.html", + "pubDate": "Fri, 08 Dec 2023 09:17:41 GMT", + "dc:creator": "Daniel Keane,Matt Watts and Josh Salisbury", + "dc:date": "2023-12-08T09:17:41+00:00", + "content": "

Commuters face ongoing severe disruption on Elizabeth Line after passengers left stranded for hours on trains

", + "contentSnippet": "Commuters face ongoing severe disruption on Elizabeth Line after passengers left stranded for hours on trains", + "guid": "b1125595", + "categories": ["Transport", "News"], + "isoDate": "2023-12-08T09:17:41.000Z" + }, + { + "creator": "George Flood", + "date": "2023-12-08T09:17:41+00:00", + "title": "Manchester United handed Amad Diallo injury boost as winger makes training return", + "link": "https://www.standard.co.uk/sport/football/man-utd-injury-news-amad-diallo-b1125648.html", + "pubDate": "Fri, 08 Dec 2023 09:17:41 GMT", + "dc:creator": "George Flood", + "dc:date": "2023-12-08T09:17:41+00:00", + "content": "

Talented Ivorian winger is closing in on a comeback from a knee injury suffered during pre-season

", + "contentSnippet": "Talented Ivorian winger is closing in on a comeback from a knee injury suffered during pre-season", + "guid": "b1125648", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T09:17:41.000Z" + }, + { + "creator": "Dom Smith", + "date": "2023-12-08T09:10:35+00:00", + "title": "Tyrick Mitchell injury: Crystal Palace to discover extent of muscle strain as defender assessed", + "link": "https://www.standard.co.uk/sport/football/tyrick-mitchell-injury-crystal-palace-hodgson-b1125649.html", + "pubDate": "Fri, 08 Dec 2023 09:10:35 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2023-12-08T09:10:35+00:00", + "content": "

The club's only recognised left-back is expected to miss the visit of Liverpool

", + "contentSnippet": "The club's only recognised left-back is expected to miss the visit of Liverpool", + "guid": "b1125649", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T09:10:35.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2023-12-08T09:10:18+00:00", + "title": "Rogue north London HMO landlord ordered to pay back \u00a320,000 to tenants", + "link": "https://www.standard.co.uk/news/london/tottenham-landlord-haringey-hmo-licensing-rent-repayment-b1125646.html", + "pubDate": "Fri, 08 Dec 2023 09:10:18 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2023-12-08T09:10:18+00:00", + "content": "

Landlord who flouted licensing rules ordered to repay one years' rent to tenants

", + "contentSnippet": "Landlord who flouted licensing rules ordered to repay one years' rent to tenants", + "guid": "b1125646", + "categories": ["London", "News"], + "isoDate": "2023-12-08T09:10:18.000Z" + }, + { + "creator": "Jonathan Kanengoni and El Hunt", + "date": "2023-12-08T09:07:37+00:00", + "title": "Our music recommendations: What we\u2019re listening to this week, from IDLES to Adrianne Lenker", + "link": "https://www.standard.co.uk/culture/music/music-recommendations-what-were-listening-to-now-b74803.html", + "pubDate": "Fri, 08 Dec 2023 09:07:37 GMT", + "dc:creator": "Jonathan Kanengoni and El Hunt", + "dc:date": "2023-12-08T09:07:37+00:00", + "content": "

These are the tunes you need in your life

", + "contentSnippet": "These are the tunes you need in your life", + "guid": "b74803", + "categories": ["Music", "Culture"], + "isoDate": "2023-12-08T09:07:37.000Z" + }, + { + "creator": "Nancy Durrant and Vicky Jessop", + "date": "2023-12-08T09:06:45+00:00", + "title": "Our film and TV recommendations this week: from Smothered to Squid Game", + "link": "https://www.standard.co.uk/culture/film/film-tv-streaming-recommendations-what-to-watch-b30220.html", + "pubDate": "Fri, 08 Dec 2023 09:06:45 GMT", + "dc:creator": "Nancy Durrant and Vicky Jessop", + "dc:date": "2023-12-08T09:06:45+00:00", + "content": "

Streaming recommendations from the Standard\u2019s Culture team\u00a0

", + "contentSnippet": "Streaming recommendations from the Standard\u2019s Culture team", + "guid": "b30220", + "categories": ["Film", "Culture"], + "isoDate": "2023-12-08T09:06:45.000Z" + }, + { + "creator": "Henry Saker-Clark", + "date": "2023-12-08T09:02:12+00:00", + "title": "Miner Anglo American reveals production cuts to combat cost rises", + "link": "https://www.standard.co.uk/business/business-news/miner-anglo-american-reveals-production-cuts-to-combat-cost-rises-b1125650.html", + "pubDate": "Fri, 08 Dec 2023 09:02:12 GMT", + "dc:creator": "Henry Saker-Clark", + "dc:date": "2023-12-08T09:02:12+00:00", + "content": "Shares in the FTSE 100 company slumped in early trading after it announced the move, which is set to result in a 4% drop in production next year.", + "contentSnippet": "Shares in the FTSE 100 company slumped in early trading after it announced the move, which is set to result in a 4% drop in production next year.", + "guid": "b1125650", + "categories": ["Business News", "Business"], + "isoDate": "2023-12-08T09:02:12.000Z" + }, + { + "creator": "Nicholas Cecil and Matt Watts", + "date": "2023-12-08T08:58:57+00:00", + "title": "Tory HQ under fire from own MPs after using BBC newsreader's 'middle finger' gaffe to attack Labour ", + "link": "https://www.standard.co.uk/news/politics/tory-mps-criticised-for-labour-immigration-attack-using-bbc-newsreader-maryam-moshiri-middle-finger-post-social-media-b1125583.html", + "pubDate": "Fri, 08 Dec 2023 08:58:57 GMT", + "dc:creator": "Nicholas Cecil and Matt Watts", + "dc:date": "2023-12-08T08:58:57+00:00", + "content": "

MPs criticise social media taunt using BBC news anchor Maryam Moshiri's viral gaffe as 'beneath us'

", + "contentSnippet": "MPs criticise social media taunt using BBC news anchor Maryam Moshiri's viral gaffe as 'beneath us'", + "guid": "b1125583", + "categories": ["Politics", "News"], + "isoDate": "2023-12-08T08:58:57.000Z" + }, + { + "creator": "Jacob Phillips", + "date": "2023-12-08T08:58:56+00:00", + "title": "Two arrested in France over bedbug \"scam\" that tricked pensioners", + "link": "https://www.standard.co.uk/news/world/france-bedbug-infestation-arrests-scam-pensioners-b1125644.html", + "pubDate": "Fri, 08 Dec 2023 08:58:56 GMT", + "dc:creator": "Jacob Phillips", + "dc:date": "2023-12-08T08:58:56+00:00", + "content": "

The pair allegedly called their victims and said there was an infestation in their neighbourhood.

", + "contentSnippet": "The pair allegedly called their victims and said there was an infestation in their neighbourhood.", + "guid": "b1125644", + "categories": ["World", "News"], + "isoDate": "2023-12-08T08:58:56.000Z" + }, + { + "creator": "Adam Turner and Peter Bevan", + "date": "2023-12-08T08:56:11+00:00", + "title": "Best men\u2019s slippers: From UGG to Birkenstock, moccasin to sheepskin ", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/mens/best-mens-slippers-a3970611.html", + "pubDate": "Fri, 08 Dec 2023 08:56:11 GMT", + "dc:creator": "Adam Turner and Peter Bevan", + "dc:date": "2023-12-08T08:56:11+00:00", + "content": "

As the temperatures drop, stay snug with these stylish slippers

", + "contentSnippet": "As the temperatures drop, stay snug with these stylish slippers", + "guid": "a3970611", + "categories": ["Men's", "Fashion", "ES Best Home", "Shopping"], + "isoDate": "2023-12-08T08:56:11.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2023-12-08T08:53:22+00:00", + "title": "Best rechargeable heated gilets for toasty warm outings in cold weather", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-heated-gilets-rechargeable-womens-mens-b1124600.html", + "pubDate": "Fri, 08 Dec 2023 08:53:22 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2023-12-08T08:53:22+00:00", + "content": "

Say yes to the heated vest

", + "contentSnippet": "Say yes to the heated vest", + "guid": "b1124600", + "categories": ["Fashion", "ES Best Home", "Shopping"], + "isoDate": "2023-12-08T08:53:22.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-12-08T08:50:29+00:00", + "title": "Tottenham: Furious Ange Postecoglou sets target for Newcastle clash after West Ham loss", + "link": "https://www.standard.co.uk/sport/football/postecoglou-tottenham-west-ham-newcastle-premier-league-2023-b1125622.html", + "pubDate": "Fri, 08 Dec 2023 08:50:29 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-12-08T08:50:29+00:00", + "content": "

The Spurs boss was very unhappy with lack of conviction in front of goal

", + "contentSnippet": "The Spurs boss was very unhappy with lack of conviction in front of goal", + "guid": "b1125622", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T08:50:29.000Z" + }, + { + "creator": "Barry Millington", + "date": "2023-12-08T08:48:39+00:00", + "title": "Solomon\u2019s Knot at Wigmore Hall review: a first-rate performance from the Baroque collective? Knot half", + "link": "https://www.standard.co.uk/culture/music/solomon-s-knot-wigmore-hall-review-baroque-b1125643.html", + "pubDate": "Fri, 08 Dec 2023 08:48:39 GMT", + "dc:creator": "Barry Millington", + "dc:date": "2023-12-08T08:48:39+00:00", + "content": "

Performed from memory, the excellent collective brought precision, skill and spontaneity to this programme of Bach's works

", + "contentSnippet": "Performed from memory, the excellent collective brought precision, skill and spontaneity to this programme of Bach's works", + "guid": "b1125643", + "categories": ["Music", "Culture"], + "isoDate": "2023-12-08T08:48:39.000Z" + }, + { + "creator": "David Smyth", + "date": "2023-12-08T08:48:23+00:00", + "title": "Nicki Minaj \u2013\u00a0Pink Friday 2 album review: the biggest, brashest queen of rap shows she still has the throne", + "link": "https://www.standard.co.uk/culture/music/nicki-minaj-pink-friday-2-album-review-billie-eilish-rap-sequel-b1125642.html", + "pubDate": "Fri, 08 Dec 2023 08:48:23 GMT", + "dc:creator": "David Smyth", + "dc:date": "2023-12-08T08:48:23+00:00", + "content": "

The rapper enlists guests such as Billie Eilish, Drake and Lil Wayne \u2013\u00a0but the throne is still hers

", + "contentSnippet": "The rapper enlists guests such as Billie Eilish, Drake and Lil Wayne \u2013\u00a0but the throne is still hers", + "guid": "b1125642", + "categories": ["Music", "Culture"], + "isoDate": "2023-12-08T08:48:23.000Z" + }, + { + "creator": "George Flood", + "date": "2023-12-08T08:41:42+00:00", + "title": "Heung-min Son injury: Tottenham captain delivers update after scare in West Ham defeat", + "link": "https://www.standard.co.uk/sport/football/heung-min-son-injury-tottenham-b1125639.html", + "pubDate": "Fri, 08 Dec 2023 08:41:42 GMT", + "dc:creator": "George Flood", + "dc:date": "2023-12-08T08:41:42+00:00", + "content": "

Spurs skipper was forced off late as Ange Postecoglou's depleted side threw away an early lead to lose again

", + "contentSnippet": "Spurs skipper was forced off late as Ange Postecoglou's depleted side threw away an early lead to lose again", + "guid": "b1125639", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T08:41:42.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2023-12-08T08:35:23+00:00", + "title": "Australian man dies after falling into pig-roasting hole at beach and being buried in sand", + "link": "https://www.standard.co.uk/news/world/australia-josh-taylor-queensland-bribie-island-buried-b1125641.html", + "pubDate": "Fri, 08 Dec 2023 08:35:23 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2023-12-08T08:35:23+00:00", + "content": "

Josh Taylor and friends had reportedly dug hole at beach to roast a pig

", + "contentSnippet": "Josh Taylor and friends had reportedly dug hole at beach to roast a pig", + "guid": "b1125641", + "categories": ["World", "News"], + "isoDate": "2023-12-08T08:35:23.000Z" + }, + { + "creator": "By George Lithgow", + "date": "2023-12-08T08:31:54+00:00", + "title": "Sister of Ruth Perry says Ofsted has not apologised for \u2018causing\u2019 her death", + "link": "https://www.standard.co.uk/news/crime/ofsted-reading-andrew-matthews-b1125645.html", + "pubDate": "Fri, 08 Dec 2023 08:31:54 GMT", + "dc:creator": "By George Lithgow", + "dc:date": "2023-12-08T08:31:54+00:00", + "content": "Julia Walters said she has been contacted by countless teachers going through \u2018traumatic inspections\u2019.", + "contentSnippet": "Julia Walters said she has been contacted by countless teachers going through \u2018traumatic inspections\u2019.", + "guid": "b1125645", + "categories": ["Crime", "News"], + "isoDate": "2023-12-08T08:31:54.000Z" + }, + { + "creator": "Dom Smith", + "date": "2023-12-08T08:26:27+00:00", + "title": "Bryan Mbeumo injury: Brentford star in race to be fit for Africa Cup of Nations with Cameroon", + "link": "https://www.standard.co.uk/sport/football/bryan-mbeumo-injury-brentford-africa-cup-on-nations-afcon-cameroon-fpl-b1125640.html", + "pubDate": "Fri, 08 Dec 2023 08:26:27 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2023-12-08T08:26:27+00:00", + "content": "

The forward has been ruled out for \"weeks\" and will hope to link up with Cameroon in a month

", + "contentSnippet": "The forward has been ruled out for \"weeks\" and will hope to link up with Cameroon in a month", + "guid": "b1125640", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T08:26:27.000Z" + }, + { + "creator": "City Staff", + "date": "2023-12-08T08:25:50+00:00", + "title": "FTSE 100 Live 08 December: Housebuilder Berkeley update, blue-chips steady ahead of US jobs figures", + "link": "https://www.standard.co.uk/business/ftse-100-live-berkeley-us-job-figures-pound-dollar-stocks-shares-interest-rate-mortgage-bank-of-england-b1125632.html", + "pubDate": "Fri, 08 Dec 2023 08:25:50 GMT", + "dc:creator": "City Staff", + "dc:date": "2023-12-08T08:25:50+00:00", + "content": "

", + "contentSnippet": "", + "guid": "b1125632", + "categories": ["Business"], + "isoDate": "2023-12-08T08:25:50.000Z" + }, + { + "creator": "Elliot Wagland and Debasish Sarmah", + "date": "2023-12-08T08:24:13+00:00", + "title": "Snap! Evening Standard: Best Photos of the Day from around the world ", + "link": "https://www.standard.co.uk/news/world/best-photos-of-the-day-from-around-the-world-b39639.html", + "pubDate": "Fri, 08 Dec 2023 08:24:13 GMT", + "dc:creator": "Elliot Wagland and Debasish Sarmah", + "dc:date": "2023-12-08T08:24:13+00:00", + "content": "

See the best images of the day from around the world.

", + "contentSnippet": "See the best images of the day from around the world.", + "guid": "b39639", + "categories": ["World", "News"], + "isoDate": "2023-12-08T08:24:13.000Z" + }, + { + "creator": "Neil Lancefield", + "date": "2023-12-08T08:15:21+00:00", + "title": "Train disruption continues after \u2018wartime\u2019 evacuation", + "link": "https://www.standard.co.uk/news/uk/services-paddington-rachel-riley-james-blunt-ladbroke-grove-b1125637.html", + "pubDate": "Fri, 08 Dec 2023 08:15:21 GMT", + "dc:creator": "Neil Lancefield", + "dc:date": "2023-12-08T08:15:21+00:00", + "content": "Friday morning commuters were warned their journeys may be delayed by up to 90 minutes.", + "contentSnippet": "Friday morning commuters were warned their journeys may be delayed by up to 90 minutes.", + "guid": "b1125637", + "categories": ["UK", "News"], + "isoDate": "2023-12-08T08:15:21.000Z" + }, + { + "creator": "Bill McLoughlin", + "date": "2023-12-08T08:12:47+00:00", + "title": "Man sought for sexual assault on Plymouth to Paddington train", + "link": "https://www.standard.co.uk/news/crime/man-sexual-assault-train-plymouth-london-btp-b1125638.html", + "pubDate": "Fri, 08 Dec 2023 08:12:47 GMT", + "dc:creator": "Bill McLoughlin", + "dc:date": "2023-12-08T08:12:47+00:00", + "content": "

Officers at British Transport Police have released an image of a man they wish to speak to

", + "contentSnippet": "Officers at British Transport Police have released an image of a man they wish to speak to", + "guid": "b1125638", + "categories": ["Crime", "News"], + "isoDate": "2023-12-08T08:12:47.000Z" + }, + { + "creator": "City Staff", + "date": "2023-12-08T08:07:42+00:00", + "title": "FTSE 100 Live: Small cap trading resumes again after 'incident' halts shares twice, blue chips unaffected", + "link": "https://www.standard.co.uk/business/ftse-100-live-marstons-ashtead-moonpig-stocks-shares-pound-dollar-inflation-interest-rate-mortgages-bank-b1124710.html", + "pubDate": "Fri, 08 Dec 2023 08:07:42 GMT", + "dc:creator": "City Staff", + "dc:date": "2023-12-08T08:07:42+00:00", + "content": "

London shares have been hit by two separate outages today, though trading has continued as normal for members of the FTSE 100 and FTSE 250.

", + "contentSnippet": "London shares have been hit by two separate outages today, though trading has continued as normal for members of the FTSE 100 and FTSE 250.", + "guid": "b1124710", + "categories": ["Business"], + "isoDate": "2023-12-08T08:07:42.000Z" + }, + { + "creator": "City Staff", + "date": "2023-12-08T08:07:10+00:00", + "title": "FTSE 100 Live: Shares close flat, private equity in \u00a31.3bn swoop, Halifax house prices up", + "link": "https://www.standard.co.uk/business/ftse-100-live-halifax-house-price-index-aj-bell-pound-dollar-stocks-shares-interest-rate-mortgage-b1125314.html", + "pubDate": "Fri, 08 Dec 2023 08:07:10 GMT", + "dc:creator": "City Staff", + "dc:date": "2023-12-08T08:07:10+00:00", + "content": "

The UK house market continues to show signs of resilience after the lender Halifax reported average prices rose for the second month in a row, up 0.5% in November.

", + "contentSnippet": "The UK house market continues to show signs of resilience after the lender Halifax reported average prices rose for the second month in a row, up 0.5% in November.", + "guid": "b1125314", + "categories": ["Business"], + "isoDate": "2023-12-08T08:07:10.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-12-08T08:00:00+00:00", + "title": "Martin Scorsese\u2019s Killers Of The Flower Moon named best film of 2023", + "link": "https://www.standard.co.uk/culture/film/martin-scorsese-robert-de-niro-greta-gerwig-barbie-people-b1125636.html", + "pubDate": "Fri, 08 Dec 2023 08:00:00 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-12-08T08:00:00+00:00", + "content": "Rounding up the top five saw a suitable tie between Greta Gerwig\u2019s Barbie and Oppenheimer from Christopher Nolan.", + "contentSnippet": "Rounding up the top five saw a suitable tie between Greta Gerwig\u2019s Barbie and Oppenheimer from Christopher Nolan.", + "guid": "b1125636", + "categories": ["Film", "Culture"], + "isoDate": "2023-12-08T08:00:00.000Z" + }, + { + "creator": "Daniel O'Boyle", + "date": "2023-12-08T07:58:39+00:00", + "title": "City trading house IG Group picks ex-Betfair boss Corcoran as new CEO", + "link": "https://www.standard.co.uk/business/city-trading-house-ig-group-picks-exbetfair-boss-corcoran-as-new-ceo-b1125635.html", + "pubDate": "Fri, 08 Dec 2023 07:58:39 GMT", + "dc:creator": "Daniel O'Boyle", + "dc:date": "2023-12-08T07:58:39+00:00", + "content": "

He replaces June Felix, who left due to poor health in August

", + "contentSnippet": "He replaces June Felix, who left due to poor health in August", + "guid": "b1125635", + "categories": ["Business"], + "isoDate": "2023-12-08T07:58:39.000Z" + }, + { + "creator": "Henry Saker-Clark", + "date": "2023-12-08T07:56:21+00:00", + "title": "House sales to stay \u2018subdued\u2019, warns Berkeley, as reservations slump", + "link": "https://www.standard.co.uk/business/business-news/house-sales-to-stay-subdued-warns-berkeley-as-reservations-slump-b1125634.html", + "pubDate": "Fri, 08 Dec 2023 07:56:21 GMT", + "dc:creator": "Henry Saker-Clark", + "dc:date": "2023-12-08T07:56:21+00:00", + "content": "The London-listed firm\u2019s profits lifted for the past half-year despite completing fewer homes.", + "contentSnippet": "The London-listed firm\u2019s profits lifted for the past half-year despite completing fewer homes.", + "guid": "b1125634", + "categories": ["Business News", "Business"], + "isoDate": "2023-12-08T07:56:21.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2023-12-08T07:56:07+00:00", + "title": "England supporter at Wembley wanted after police officer left with broken collar bone in assault", + "link": "https://www.standard.co.uk/news/crime/england-german-wembley-stadium-police-assault-appeal-b1125633.html", + "pubDate": "Fri, 08 Dec 2023 07:56:07 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2023-12-08T07:56:07+00:00", + "content": "

Disorder broke out after fans clashed in Wembley ahead of game

", + "contentSnippet": "Disorder broke out after fans clashed in Wembley ahead of game", + "guid": "b1125633", + "categories": ["Crime", "News"], + "isoDate": "2023-12-08T07:56:07.000Z" + }, + { + "creator": "Pat Hurst", + "date": "2023-12-08T07:43:31+00:00", + "title": "\u2018Murder plan\u2019 to kill transgender teenager Brianna Ghey detailed in court", + "link": "https://www.standard.co.uk/news/crime/warrington-harold-shipman-pukka-manchester-crown-court-linear-park-b1125588.html", + "pubDate": "Fri, 08 Dec 2023 07:43:31 GMT", + "dc:creator": "Pat Hurst", + "dc:date": "2023-12-08T07:43:31+00:00", + "content": "Brianna, 16, was stabbed 28 times with a hunting knife during a \u2018frenzied\u2019 attack near Warrington in February.", + "contentSnippet": "Brianna, 16, was stabbed 28 times with a hunting knife during a \u2018frenzied\u2019 attack near Warrington in February.", + "guid": "b1125588", + "categories": ["Crime", "News"], + "isoDate": "2023-12-08T07:43:31.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2023-12-08T07:38:30+00:00", + "title": "Tottenham player ratings vs West Ham: Pedro Porro a livewire but Yves Bissouma needs to be cuter", + "link": "https://www.standard.co.uk/sport/football/tottenham-player-ratings-vs-west-ham-premier-league-2023-b1125605.html", + "pubDate": "Fri, 08 Dec 2023 07:38:30 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2023-12-08T07:38:30+00:00", + "content": "

Spurs see game turned around by big rivals

", + "contentSnippet": "Spurs see game turned around by big rivals", + "guid": "b1125605", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T07:38:30.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-12-08T07:37:40+00:00", + "title": "West Ham player ratings vs Tottenham: James Ward-Prowse phenomenal as Mohammed Kudus shines ", + "link": "https://www.standard.co.uk/sport/football/west-ham-player-ratings-vs-tottenham-premier-league-2023-james-ward-prowse-mohammed-kudus-b1125593.html", + "pubDate": "Fri, 08 Dec 2023 07:37:40 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-12-08T07:37:40+00:00", + "content": "

Hammers grab huge win at London rivals

", + "contentSnippet": "Hammers grab huge win at London rivals", + "guid": "b1125593", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-08T07:37:40.000Z" + }, + { + "creator": "Matt Majendie", + "date": "2023-12-08T07:37:02+00:00", + "title": "Jon Rahm: Masters champion joins LIV Golf in blockbuster \u00a3450m deal after dramatic U-turn", + "link": "https://www.standard.co.uk/sport/golf/jon-rahm-liv-golf-b1125630.html", + "pubDate": "Fri, 08 Dec 2023 07:37:02 GMT", + "dc:creator": "Matt Majendie", + "dc:date": "2023-12-08T07:37:02+00:00", + "content": "

Former world No1 admits his Ryder Cup future is at risk after becoming the Saudi-backed breakaway league's biggest coup yet

", + "contentSnippet": "Former world No1 admits his Ryder Cup future is at risk after becoming the Saudi-backed breakaway league's biggest coup yet", + "guid": "b1125630", + "categories": ["Golf", "Sport"], + "isoDate": "2023-12-08T07:37:02.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2023-12-08T07:23:53+00:00", + "title": "Paddy McGuinness says his 'money has run out' as he discusses return to stand-up comedy", + "link": "https://www.standard.co.uk/showbiz/paddy-mcguinness-stand-up-tour-2024-top-gear-this-morning-b1125578.html", + "pubDate": "Fri, 08 Dec 2023 07:23:53 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2023-12-08T07:23:53+00:00", + "content": "

The comedian will hit the road for a series of dates in 2024/25, including one night at the London Palladium

", + "contentSnippet": "The comedian will hit the road for a series of dates in 2024/25, including one night at the London Palladium", + "guid": "b1125578", + "categories": ["Showbiz"], + "isoDate": "2023-12-08T07:23:53.000Z" + }, + { + "creator": "Prudence Ivey", + "date": "2023-12-08T07:21:17+00:00", + "title": "Buying in London: 'should I base my house hunt around my favourite pub?'", + "link": "https://www.standard.co.uk/homesandproperty/buying-mortgages/buying-in-london-house-hunting-best-neighbourhood-b1125572.html", + "pubDate": "Fri, 08 Dec 2023 07:21:17 GMT", + "dc:creator": "Prudence Ivey", + "dc:date": "2023-12-08T07:21:17+00:00", + "content": "

Finding the right neighbourhood to buy in is tricky when you live in your dream area but can't afford it. Can one colleague's house hunt hack help?

", + "contentSnippet": "Finding the right neighbourhood to buy in is tricky when you live in your dream area but can't afford it. Can one colleague's house hunt hack help?", + "guid": "b1125572", + "categories": ["Buying & Mortgages", "Homes & Property"], + "isoDate": "2023-12-08T07:21:17.000Z" + }, + { + "creator": "Rachel Vickers-Price", + "date": "2023-12-08T07:04:27+00:00", + "title": "Stranded Paddington commuter describes \u2018wartime\u2019 evacuation as \u2018surreal\u2019", + "link": "https://www.standard.co.uk/news/uk/people-paddington-elizabeth-line-national-rail-james-blunt-b1125627.html", + "pubDate": "Fri, 08 Dec 2023 07:04:27 GMT", + "dc:creator": "Rachel Vickers-Price", + "dc:date": "2023-12-08T07:04:27+00:00", + "content": "Hundreds were left stranded on trains between stations in the dark for multiple hours.", + "contentSnippet": "Hundreds were left stranded on trains between stations in the dark for multiple hours.", + "guid": "b1125627", + "categories": ["UK", "News"], + "isoDate": "2023-12-08T07:04:27.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2023-12-08T06:55:31+00:00", + "title": "Boris Johnson denies using \u2018let the bodies pile high\u2019 phrase during pandemic", + "link": "https://www.standard.co.uk/news/politics/boris-johnson-dominic-cummings-london-b1125631.html", + "pubDate": "Fri, 08 Dec 2023 06:55:31 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2023-12-08T06:55:31+00:00", + "content": "Boris Johnson also rejected the suggestion that he considered injecting himself with Covid-19 on TV to show it did not pose a threat.", + "contentSnippet": "Boris Johnson also rejected the suggestion that he considered injecting himself with Covid-19 on TV to show it did not pose a threat.", + "guid": "b1125631", + "categories": ["Politics", "News"], + "isoDate": "2023-12-08T06:55:31.000Z" + }, + { + "creator": "Cillian Sherlock", + "date": "2023-12-08T06:52:25+00:00", + "title": "Public funeral for Shane MacGowan to take place in Ireland", + "link": "https://www.standard.co.uk/news/uk/ireland-dublin-london-mansion-house-kent-b1125625.html", + "pubDate": "Fri, 08 Dec 2023 06:52:25 GMT", + "dc:creator": "Cillian Sherlock", + "dc:date": "2023-12-08T06:52:25+00:00", + "content": "The Pogues frontman was due to celebrate his 66th birthday on Christmas Day.", + "contentSnippet": "The Pogues frontman was due to celebrate his 66th birthday on Christmas Day.", + "guid": "b1125625", + "categories": ["UK", "News"], + "isoDate": "2023-12-08T06:52:25.000Z" + }, + { + "creator": "Pa Reporters and Nicholas Cecil", + "date": "2023-12-08T06:47:07+00:00", + "title": "Rishi Sunak under pressure as \u00a3290 million cost of grounded Rwanda scheme emerges", + "link": "https://www.standard.co.uk/news/politics/rwanda-rishi-sunak-prime-minister-cost-immigration-b1125619.html", + "pubDate": "Fri, 08 Dec 2023 06:47:07 GMT", + "dc:creator": "Pa Reporters and Nicholas Cecil", + "dc:date": "2023-12-08T06:47:07+00:00", + "content": "

The Government spent a further \u00a3100 million in the 2023-24 financial year while flights remained grounded amid a series of legal setbacks

", + "contentSnippet": "The Government spent a further \u00a3100 million in the 2023-24 financial year while flights remained grounded amid a series of legal setbacks", + "guid": "b1125619", + "categories": ["Politics", "News"], + "isoDate": "2023-12-08T06:47:07.000Z" + }, + { + "creator": "Pa Reporters", + "date": "2023-12-08T06:40:26+00:00", + "title": "Lord Cameron denies political interference as he urges US to pass Ukraine aid", + "link": "https://www.standard.co.uk/news/politics/david-cameron-ukraine-foreign-aid-us-political-interference-b1125629.html", + "pubDate": "Fri, 08 Dec 2023 06:40:26 GMT", + "dc:creator": "Pa Reporters", + "dc:date": "2023-12-08T06:40:26+00:00", + "content": "He said he was \u2018making an argument\u2019 in the hope the US will \u2018vote through that money\u2019.", + "contentSnippet": "He said he was \u2018making an argument\u2019 in the hope the US will \u2018vote through that money\u2019.", + "guid": "b1125629", + "categories": ["Politics", "News"], + "isoDate": "2023-12-08T06:40:26.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-12-08T06:11:37+00:00", + "title": "Charlie Hunnam \u2018begged\u2019 to switch roles on Rebel Moon after audition", + "link": "https://www.standard.co.uk/culture/film/charlie-hunnam-ed-skrein-london-british-b1125623.html", + "pubDate": "Fri, 08 Dec 2023 06:11:37 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-12-08T06:11:37+00:00", + "content": "The actor said he had originally auditioned for a different role.", + "contentSnippet": "The actor said he had originally auditioned for a different role.", + "guid": "b1125623", + "categories": ["Film", "Culture"], + "isoDate": "2023-12-08T06:11:37.000Z" + }, + { + "creator": "Greg Pitcher", + "date": "2023-12-08T06:00:00+00:00", + "title": "The one renovation that could double the value of your house (and make an enemy of your neighbours)", + "link": "https://www.standard.co.uk/homesandproperty/interiors/basement-extensions-double-your-house-value-renovations-b1125510.html", + "pubDate": "Fri, 08 Dec 2023 06:00:00 GMT", + "dc:creator": "Greg Pitcher", + "dc:date": "2023-12-08T06:00:00+00:00", + "content": "

Digging down is the best way to send your house price soaring, according to new analysis

", + "contentSnippet": "Digging down is the best way to send your house price soaring, according to new analysis", + "guid": "b1125510", + "categories": ["Interiors", "Homes & Property"], + "isoDate": "2023-12-08T06:00:00.000Z" + }, + { + "creator": "Joanna Taylor", + "date": "2023-12-08T06:00:00+00:00", + "title": "The new London restaurants you need to visit in 2024 ", + "link": "https://www.standard.co.uk/going-out/new-best-london-restaurants-2024-arlington-the-park-b1125408.html", + "pubDate": "Fri, 08 Dec 2023 06:00:00 GMT", + "dc:creator": "Joanna Taylor", + "dc:date": "2023-12-08T06:00:00+00:00", + "content": "

Hungry to know where to eat next year? Joanna Taylor shares the best new openings

", + "contentSnippet": "Hungry to know where to eat next year? Joanna Taylor shares the best new openings", + "guid": "b1125408", + "categories": ["Going Out"], + "isoDate": "2023-12-08T06:00:00.000Z" + }, + { + "creator": "Shelley von Strunckel", + "date": "2023-12-08T06:00:00+00:00", + "title": "Horoscope today: Your daily guide for Friday, December 8, 2023", + "link": "https://www.standard.co.uk/lifestyle/horoscope-daily-stars-shelley-von-strunckel-friday-december-8-2023-b1125156.html", + "pubDate": "Fri, 08 Dec 2023 06:00:00 GMT", + "dc:creator": "Shelley von Strunckel", + "dc:date": "2023-12-08T06:00:00+00:00", + "content": "

Read what the stars mean for you today, from Sagittarius to Gemini

", + "contentSnippet": "Read what the stars mean for you today, from Sagittarius to Gemini", + "guid": "b1120001", + "categories": ["Lifestyle"], + "isoDate": "2023-12-08T06:00:00.000Z" + }, + { + "creator": "Pa Reporter", + "date": "2023-12-08T03:38:51+00:00", + "title": "What the papers say \u2013 December 8", + "link": "https://www.standard.co.uk/news/uk/rwanda-prime-minister-daily-star-the-times-conservative-party-b1125628.html", + "pubDate": "Fri, 08 Dec 2023 03:38:51 GMT", + "dc:creator": "Pa Reporter", + "dc:date": "2023-12-08T03:38:51+00:00", + "content": "Here are the biggest stories making headlines this Friday.", + "contentSnippet": "Here are the biggest stories making headlines this Friday.", + "guid": "b1125628", + "categories": ["UK", "News"], + "isoDate": "2023-12-08T03:38:51.000Z" + }, + { + "creator": "Tom Pilgrim", + "date": "2023-12-08T02:45:05+00:00", + "title": "Ruling due over Harry\u2019s bid to throw out publisher\u2019s defence to libel claim", + "link": "https://www.standard.co.uk/news/crime/home-office-mail-on-sunday-high-court-sandringham-b1125626.html", + "pubDate": "Fri, 08 Dec 2023 02:45:05 GMT", + "dc:creator": "Tom Pilgrim", + "dc:date": "2023-12-08T02:45:05+00:00", + "content": "The Duke of Sussex has sued Associated Newspapers Limited over a February 2022 Mail on Sunday article.", + "contentSnippet": "The Duke of Sussex has sued Associated Newspapers Limited over a February 2022 Mail on Sunday article.", + "guid": "b1125626", + "categories": ["Crime", "News"], + "isoDate": "2023-12-08T02:45:05.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-12-08T02:42:06+00:00", + "title": "Winner of Netflix\u2019s Squid Game uses jackpot to take care of underprivileged", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/netflix-squid-game-korean-b1125624.html", + "pubDate": "Fri, 08 Dec 2023 02:42:06 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-12-08T02:42:06+00:00", + "content": "The winner scooped the 4.56 million US dollar (\u00a33.61 million) reward.", + "contentSnippet": "The winner scooped the 4.56 million US dollar (\u00a33.61 million) reward.", + "guid": "b1125624", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-12-08T02:42:06.000Z" + }, + { + "creator": "August Graham", + "date": "2023-12-08T00:01:00+00:00", + "title": "Promised reforms to City \u2018feel like a damp squib\u2019, says Treasury Committee", + "link": "https://www.standard.co.uk/business/business-news/promised-reforms-to-city-feel-like-a-damp-squib-says-treasury-committee-b1125617.html", + "pubDate": "Fri, 08 Dec 2023 00:01:00 GMT", + "dc:creator": "August Graham", + "dc:date": "2023-12-08T00:01:00+00:00", + "content": "The group of MPs said several of the Chancellor\u2019s reforms were nothing more than publishing a document or welcoming a consultation.", + "contentSnippet": "The group of MPs said several of the Chancellor\u2019s reforms were nothing more than publishing a document or welcoming a consultation.", + "guid": "b1125617", + "categories": ["Business News", "Business"], + "isoDate": "2023-12-08T00:01:00.000Z" + }, + { + "creator": "Danny Halpin", + "date": "2023-12-08T00:01:00+00:00", + "title": "2024 set to be \u2018milestone in climate history\u2019, says Met Office", + "link": "https://www.standard.co.uk/news/environment/met-office-el-nino-countries-pacific-ocean-earth-b1125621.html", + "pubDate": "Fri, 08 Dec 2023 00:01:00 GMT", + "dc:creator": "Danny Halpin", + "dc:date": "2023-12-08T00:01:00+00:00", + "content": "Greenhouse gas emissions, buoyed by El Nino, are likely to make next year even hotter than 2023.", + "contentSnippet": "Greenhouse gas emissions, buoyed by El Nino, are likely to make next year even hotter than 2023.", + "guid": "b1125621", + "categories": ["Environment", "News"], + "isoDate": "2023-12-08T00:01:00.000Z" + }, + { + "creator": "Sam Russell", + "date": "2023-12-08T00:01:00+00:00", + "title": "Section of sea wall removed to help protect saltmarsh habitat", + "link": "https://www.standard.co.uk/news/environment/essex-work-blackwater-estuary-b1125620.html", + "pubDate": "Fri, 08 Dec 2023 00:01:00 GMT", + "dc:creator": "Sam Russell", + "dc:date": "2023-12-08T00:01:00+00:00", + "content": "The work at Northey Island in Essex has opened up more space for seawater to come through and help slow a phenomenon called coastal squeeze.", + "contentSnippet": "The work at Northey Island in Essex has opened up more space for seawater to come through and help slow a phenomenon called coastal squeeze.", + "guid": "b1125620", + "categories": ["Environment", "News"], + "isoDate": "2023-12-08T00:01:00.000Z" + }, + { + "creator": "Alan Jones", + "date": "2023-12-08T00:01:00+00:00", + "title": "Fresh disruption to rail services as drivers\u2019 strikes continue", + "link": "https://www.standard.co.uk/business/business-news/fresh-disruption-to-rail-services-as-drivers-strikes-continue-b1125618.html", + "pubDate": "Fri, 08 Dec 2023 00:01:00 GMT", + "dc:creator": "Alan Jones", + "dc:date": "2023-12-08T00:01:00+00:00", + "content": "Services across northern England are the latest to be affected by industrial action.", + "contentSnippet": "Services across northern England are the latest to be affected by industrial action.", + "guid": "b1125618", + "categories": ["Business News", "Business"], + "isoDate": "2023-12-08T00:01:00.000Z" + }, + { + "creator": "Ted Hennessey", + "date": "2023-12-07T23:43:46+00:00", + "title": "Culture Secretary says \u2018morally indefensible\u2019 TV fee prosecutions to be reviewed", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/bbc-culture-secretary-commons-people-government-b1125616.html", + "pubDate": "Thu, 07 Dec 2023 23:43:46 GMT", + "dc:creator": "Ted Hennessey", + "dc:date": "2023-12-07T23:43:46+00:00", + "content": "Lucy Frazer on Thursday announced a \u00a310.50 rise in the annual fee, lower than the BBC expected.", + "contentSnippet": "Lucy Frazer on Thursday announced a \u00a310.50 rise in the annual fee, lower than the BBC expected.", + "guid": "b1125616", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-12-07T23:43:46.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-12-07T23:40:24+00:00", + "title": "David Moyes confident 'big' win over Tottenham can be a turning point for West Ham", + "link": "https://www.standard.co.uk/sport/football/moyes-west-ham-tottenham-premier-league-2023-b1125614.html", + "pubDate": "Thu, 07 Dec 2023 23:40:24 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-12-07T23:40:24+00:00", + "content": "

Hammers come from behind to beat rivals

", + "contentSnippet": "Hammers come from behind to beat rivals", + "guid": "b1125614", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-07T23:40:24.000Z" + }, + { + "creator": "Harry Stedman", + "date": "2023-12-07T23:38:08+00:00", + "title": "Passengers stuck for hours on cold, dark trains following overhead cables fault", + "link": "https://www.standard.co.uk/news/uk/rachel-riley-london-james-blunt-celebrities-network-rail-b1125615.html", + "pubDate": "Thu, 07 Dec 2023 23:38:08 GMT", + "dc:creator": "Harry Stedman", + "dc:date": "2023-12-07T23:38:08+00:00", + "content": "Some passengers reported on social media being stuck for more than three hours while receiving no information from rail operators.", + "contentSnippet": "Some passengers reported on social media being stuck for more than three hours while receiving no information from rail operators.", + "guid": "b1125615", + "categories": ["UK", "News"], + "isoDate": "2023-12-07T23:38:08.000Z" + }, + { + "creator": "Rebecca Black", + "date": "2023-12-07T23:34:44+00:00", + "title": "31-year-old man charged with murder of nursing assistant Odhran Kelly", + "link": "https://www.standard.co.uk/news/uk/people-b1125613.html", + "pubDate": "Thu, 07 Dec 2023 23:34:44 GMT", + "dc:creator": "Rebecca Black", + "dc:date": "2023-12-07T23:34:44+00:00", + "content": "A second 31-year-old man arrested as part of the investigation remains in police custody at this time.", + "contentSnippet": "A second 31-year-old man arrested as part of the investigation remains in police custody at this time.", + "guid": "b1125613", + "categories": ["UK", "News"], + "isoDate": "2023-12-07T23:34:44.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-12-07T23:28:03+00:00", + "title": "Heung-min Son hits out at 'soft' Tottenham after 'unacceptable' defeat to West Ham", + "link": "https://www.standard.co.uk/sport/football/heung-min-son-tottenham-west-ham-b1125612.html", + "pubDate": "Thu, 07 Dec 2023 23:28:03 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-12-07T23:28:03+00:00", + "content": "

Spurs once again beaten despite taking lead

", + "contentSnippet": "Spurs once again beaten despite taking lead", + "guid": "b1125612", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-07T23:28:03.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-12-07T22:49:14+00:00", + "title": "Danielle Harold becomes latest contestant to be eliminated from I\u2019m A Celebrity", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/sam-thompson-tony-bellew-nella-rose-frankie-dettori-fred-sirieix-b1125606.html", + "pubDate": "Thu, 07 Dec 2023 22:49:14 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-12-07T22:49:14+00:00", + "content": "In the episode she spoke about how she got into acting.", + "contentSnippet": "In the episode she spoke about how she got into acting.", + "guid": "b1125606", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-12-07T22:49:14.000Z" + }, + { + "creator": "Sarah Ping", + "date": "2023-12-07T22:49:14+00:00", + "title": "William surprises mother on charity walk in memory of daughter", + "link": "https://www.standard.co.uk/news/uk/london-wales-monmouthshire-prince-of-wales-facebook-b1125611.html", + "pubDate": "Thu, 07 Dec 2023 22:49:14 GMT", + "dc:creator": "Sarah Ping", + "dc:date": "2023-12-07T22:49:14+00:00", + "content": "Emma Webb is walking from Wales to London to raise awareness of suicide prevention in memory of her daughter, Brodie.", + "contentSnippet": "Emma Webb is walking from Wales to London to raise awareness of suicide prevention in memory of her daughter, Brodie.", + "guid": "b1125611", + "categories": ["UK", "News"], + "isoDate": "2023-12-07T22:49:14.000Z" + }, + { + "creator": "Standard Sport", + "date": "2023-12-07T22:41:18+00:00", + "title": "Premier League table 2023-24: Latest standings, fixtures and results for matchday 15", + "link": "https://www.standard.co.uk/sport/football/premier-league-table-2023-24-standings-fixtures-results-live-scores-matchday-15-b1124753.html", + "pubDate": "Thu, 07 Dec 2023 22:41:18 GMT", + "dc:creator": "Standard Sport", + "dc:date": "2023-12-07T22:41:18+00:00", + "content": "

Festive midweek action continues tonight

", + "contentSnippet": "Festive midweek action continues tonight", + "guid": "b1124753", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-07T22:41:18.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-12-07T22:40:10+00:00", + "title": "David Moyes' gamble pays off as West Ham hold their nerve to spring surprise on Tottenham", + "link": "https://www.standard.co.uk/sport/football/west-ham-tottenham-david-moyes-premier-league-b1125608.html", + "pubDate": "Thu, 07 Dec 2023 22:40:10 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-12-07T22:40:10+00:00", + "content": "

Dreadful start put to bed with stirring comeback - aided by just a little bit of luck to win London derby

", + "contentSnippet": "Dreadful start put to bed with stirring comeback - aided by just a little bit of luck to win London derby", + "guid": "b1125608", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-07T22:40:10.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2023-12-07T22:38:40+00:00", + "title": "Tottenham developing alarming habit after West Ham defeat extends winless run", + "link": "https://www.standard.co.uk/sport/football/tottenham-vs-west-ham-analysis-result-premier-league-2023-b1125609.html", + "pubDate": "Thu, 07 Dec 2023 22:38:40 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2023-12-07T22:38:40+00:00", + "content": "

Spurs squander another lead in frustrating defeat

", + "contentSnippet": "Spurs squander another lead in frustrating defeat", + "guid": "b1125609", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-07T22:38:40.000Z" + }, + { + "creator": "Harry Stedman", + "date": "2023-12-07T22:38:31+00:00", + "title": "Passengers stranded on trains in west London after fault with overhead cables", + "link": "https://www.standard.co.uk/news/uk/london-paddington-london-great-western-railway-reading-mark-harper-b1125604.html", + "pubDate": "Thu, 07 Dec 2023 22:38:31 GMT", + "dc:creator": "Harry Stedman", + "dc:date": "2023-12-07T22:38:31+00:00", + "content": "Great Western Railway said disruption was expected on the London Paddington to Reading line until the end of the day.", + "contentSnippet": "Great Western Railway said disruption was expected on the London Paddington to Reading line until the end of the day.", + "guid": "b1125604", + "categories": ["UK", "News"], + "isoDate": "2023-12-07T22:38:31.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-12-07T22:36:10+00:00", + "title": "Hugh Grant and Tilda Swinton lead star-studded Chanel Metiers d\u2019Art show", + "link": "https://www.standard.co.uk/culture/film/hugh-grant-tilda-swinton-manchester-gene-gallagher-kristen-stewart-b1125610.html", + "pubDate": "Thu, 07 Dec 2023 22:36:10 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-12-07T22:36:10+00:00", + "content": "Thomas Street in Manchester was transformed into a catwalk for one of the fashion world\u2019s most prestigious events.", + "contentSnippet": "Thomas Street in Manchester was transformed into a catwalk for one of the fashion world\u2019s most prestigious events.", + "guid": "b1125610", + "categories": ["Film", "Culture"], + "isoDate": "2023-12-07T22:36:10.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2023-12-07T22:31:54+00:00", + "title": "Rose Leslie and Keeley Hawes to star in BBC adaptation of Miss Austen", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/rose-leslie-keeley-hawes-bbc-jessica-hynes-alfred-enoch-b1125607.html", + "pubDate": "Thu, 07 Dec 2023 22:31:54 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2023-12-07T22:31:54+00:00", + "content": "The corporation has released first-look images.", + "contentSnippet": "The corporation has released first-look images.", + "guid": "b1125607", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-12-07T22:31:54.000Z" + }, + { + "creator": "Marc Mayo,Malik Ouzia and Dan Kilpatrick", + "date": "2023-12-07T22:28:51+00:00", + "title": "Tottenham vs West Ham LIVE! Premier League result, match stream and latest updates today", + "link": "https://www.standard.co.uk/sport/football/tottenham-vs-west-ham-live-stream-premier-league-2023-latest-score-result-watch-tv-team-news-b1125531.html", + "pubDate": "Thu, 07 Dec 2023 22:28:51 GMT", + "dc:creator": "Marc Mayo,Malik Ouzia and Dan Kilpatrick", + "dc:date": "2023-12-07T22:28:51+00:00", + "content": "

Hammers down Spurs with second-half comeback

", + "contentSnippet": "Hammers down Spurs with second-half comeback", + "guid": "b1125531", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-07T22:28:51.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-12-07T22:09:52+00:00", + "title": "Tottenham 1-2 West Ham: Hammers consign Spurs to all-too familiar comeback defeat", + "link": "https://www.standard.co.uk/sport/football/tottenham-west-ham-premier-league-2023-bowen-ward-prowse-romero-b1125596.html", + "pubDate": "Thu, 07 Dec 2023 22:09:52 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-12-07T22:09:52+00:00", + "content": "

Jarrod Bowen and James Ward-Prowse score in second half

", + "contentSnippet": "Jarrod Bowen and James Ward-Prowse score in second half", + "guid": "b1125596", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-07T22:09:52.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2023-12-07T22:04:10+00:00", + "title": " Tory chief warns right-wing MPs it would be 'insanity' to try to topple Rishi Sunak over Rwanda plan", + "link": "https://www.standard.co.uk/news/politics/robert-jenrick-resigns-rwanda-law-immigration-rishi-sunak-suella-braverman-tories-b1125333.html", + "pubDate": "Thu, 07 Dec 2023 22:04:10 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2023-12-07T22:04:10+00:00", + "content": "

Conservative party chairman calls for unity after Sunak's Government plunged into chaos by Robert Jenrick's resignation

", + "contentSnippet": "Conservative party chairman calls for unity after Sunak's Government plunged into chaos by Robert Jenrick's resignation", + "guid": "b1125333", + "categories": ["Politics", "News"], + "isoDate": "2023-12-07T22:04:10.000Z" + }, + { + "creator": "Josie Clarke", + "date": "2023-12-07T22:00:00+00:00", + "title": "\u2018Loyalty penalty\u2019 class action claim launched against four largest mobile firms", + "link": "https://www.standard.co.uk/news/tech/citizens-advice-vodafone-competition-and-markets-authority-b1125603.html", + "pubDate": "Thu, 07 Dec 2023 22:00:00 GMT", + "dc:creator": "Josie Clarke", + "dc:date": "2023-12-07T22:00:00+00:00", + "content": "The claim alleges that long-standing customers were overcharged for handsets beyond the end of their contractual term.", + "contentSnippet": "The claim alleges that long-standing customers were overcharged for handsets beyond the end of their contractual term.", + "guid": "b1125603", + "categories": ["Tech", "News"], + "isoDate": "2023-12-07T22:00:00.000Z" + }, + { + "creator": "Lucas Cumiskey", + "date": "2023-12-07T21:45:00+00:00", + "title": "Kate promotes \u2018special\u2019 Christmas Eve carol service", + "link": "https://www.standard.co.uk/news/uk/princess-wales-westminster-abbey-kate-ferdinand-christmas-tree-b1125602.html", + "pubDate": "Thu, 07 Dec 2023 21:45:00 GMT", + "dc:creator": "Lucas Cumiskey", + "dc:date": "2023-12-07T21:45:00+00:00", + "content": "The Princess of Wales will host the event at Westminster Abbey on Friday, which will be broadcast on December 24.", + "contentSnippet": "The Princess of Wales will host the event at Westminster Abbey on Friday, which will be broadcast on December 24.", + "guid": "b1125602", + "categories": ["UK", "News"], + "isoDate": "2023-12-07T21:45:00.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2023-12-07T21:40:51+00:00", + "title": "Julia Bradbury shares health update following breast cancer battle", + "link": "https://www.standard.co.uk/showbiz/julia-bradbury-interview-breast-cancer-health-update-homelessness-virgin-media-o2-free-national-databank-b1125542.html", + "pubDate": "Thu, 07 Dec 2023 21:40:51 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2023-12-07T21:40:51+00:00", + "content": "

EXCLUSIVE The former Countryfile star says 'self-care is not selfish' as she reveals steps she's taking to 'reduce risk of reoccurrence'

", + "contentSnippet": "EXCLUSIVE The former Countryfile star says 'self-care is not selfish' as she reveals steps she's taking to 'reduce risk of reoccurrence'", + "guid": "b1125542", + "categories": ["Showbiz"], + "isoDate": "2023-12-07T21:40:51.000Z" + }, + { + "creator": "Sarah Ward", + "date": "2023-12-07T21:30:00+00:00", + "title": "Winners of National Book Awards announced", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/glasgow-alastair-cook-b1125601.html", + "pubDate": "Thu, 07 Dec 2023 21:30:00 GMT", + "dc:creator": "Sarah Ward", + "dc:date": "2023-12-07T21:30:00+00:00", + "content": "The ceremony took place in Glasgow on Thursday night.", + "contentSnippet": "The ceremony took place in Glasgow on Thursday night.", + "guid": "b1125601", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-12-07T21:30:00.000Z" + }, + { + "creator": "Sarah Ward", + "date": "2023-12-07T21:09:14+00:00", + "title": "Sir Keir Starmer confronted by pro-Palestine activists in Glasgow", + "link": "https://www.standard.co.uk/news/politics/keir-starmer-glasgow-gaza-crowne-plaza-muslim-b1125600.html", + "pubDate": "Thu, 07 Dec 2023 21:09:14 GMT", + "dc:creator": "Sarah Ward", + "dc:date": "2023-12-07T21:09:14+00:00", + "content": "The Labour leader was accused of \u2018facilitating genocide\u2019 by voting against a ceasefire in Gaza.", + "contentSnippet": "The Labour leader was accused of \u2018facilitating genocide\u2019 by voting against a ceasefire in Gaza.", + "guid": "b1125600", + "categories": ["Politics", "News"], + "isoDate": "2023-12-07T21:09:14.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-12-07T20:57:08+00:00", + "title": "Russell Crowe, Rami Malek and Michael Shannon to lead historical drama Nuremberg", + "link": "https://www.standard.co.uk/culture/film/rami-malek-russell-crowe-michael-shannon-nuremberg-american-b1125598.html", + "pubDate": "Thu, 07 Dec 2023 20:57:08 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-12-07T20:57:08+00:00", + "content": "The film will see Malek as American psychiatrist Douglas Kelley, who is tasked with deciding whether Nazi prisoners are fit to stand trial.", + "contentSnippet": "The film will see Malek as American psychiatrist Douglas Kelley, who is tasked with deciding whether Nazi prisoners are fit to stand trial.", + "guid": "b1125598", + "categories": ["Film", "Culture"], + "isoDate": "2023-12-07T20:57:08.000Z" + }, + { + "creator": "Ella Pickover", + "date": "2023-12-07T20:39:42+00:00", + "title": "Junior doctors\u2019 strike to affect patient care, NHS boss warns", + "link": "https://www.standard.co.uk/business/business-news/junior-doctors-strike-to-affect-patient-care-nhs-boss-warns-b1125547.html", + "pubDate": "Thu, 07 Dec 2023 20:39:42 GMT", + "dc:creator": "Ella Pickover", + "dc:date": "2023-12-07T20:39:42+00:00", + "content": "Amanda Pritchard said that the walkouts announced this week were at the top of the health service\u2019s \u2018worry list\u2019.", + "contentSnippet": "Amanda Pritchard said that the walkouts announced this week were at the top of the health service\u2019s \u2018worry list\u2019.", + "guid": "b1125547", + "categories": ["Business News", "Business"], + "isoDate": "2023-12-07T20:39:42.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-12-07T20:33:11+00:00", + "title": "Adele says music is her hobby but her \u2018dream job is to be a script reader\u2019 in TV", + "link": "https://www.standard.co.uk/culture/music/adele-people-emmy-british-dua-lipa-b1125597.html", + "pubDate": "Thu, 07 Dec 2023 20:33:11 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-12-07T20:33:11+00:00", + "content": "The singer also said there is only one film she will ever want to star in but the creator is not \u2018mentally ready to write the script for it\u2019 yet.", + "contentSnippet": "The singer also said there is only one film she will ever want to star in but the creator is not \u2018mentally ready to write the script for it\u2019 yet.", + "guid": "b1125597", + "categories": ["Music", "Culture"], + "isoDate": "2023-12-07T20:33:11.000Z" + }, + { + "creator": "Harry Stedman", + "date": "2023-12-07T20:14:07+00:00", + "title": "Man arrested after seven-year-old killed in Folkestone crash", + "link": "https://www.standard.co.uk/news/uk/kent-police-folkestone-dymchurch-bbc-b1125594.html", + "pubDate": "Thu, 07 Dec 2023 20:14:07 GMT", + "dc:creator": "Harry Stedman", + "dc:date": "2023-12-07T20:14:07+00:00", + "content": "The two-vehicle collision happened at around 5.35pm on Wednesday.", + "contentSnippet": "The two-vehicle collision happened at around 5.35pm on Wednesday.", + "guid": "b1125594", + "categories": ["UK", "News"], + "isoDate": "2023-12-07T20:14:07.000Z" + }, + { + "creator": "Daniel Keane", + "date": "2023-12-07T20:02:37+00:00", + "title": "Man arrested after boy, 7, killed in suspected hit and run in Kent", + "link": "https://www.standard.co.uk/news/crime/manhunt-hit-run-driver-killed-boy-collecting-football-street-b1125527.html", + "pubDate": "Thu, 07 Dec 2023 20:02:37 GMT", + "dc:creator": "Daniel Keane", + "dc:date": "2023-12-07T20:02:37+00:00", + "content": "

William Brown was hit by a vehicle just after 5.30pm on Wednesday in Sandgate Esplanade

", + "contentSnippet": "William Brown was hit by a vehicle just after 5.30pm on Wednesday in Sandgate Esplanade", + "guid": "b1125527", + "categories": ["Crime", "News"], + "isoDate": "2023-12-07T20:02:37.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-12-07T19:53:43+00:00", + "title": "Adele jokes about being jet-lagged and \u2018ready for a drink\u2019 after receiving award", + "link": "https://www.standard.co.uk/culture/music/adele-dame-helen-mirren-british-americans-dame-b1125592.html", + "pubDate": "Thu, 07 Dec 2023 19:53:43 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-12-07T19:53:43+00:00", + "content": "Dame Helen Mirren presented the British singer-songwriter with the award on Thursday.", + "contentSnippet": "Dame Helen Mirren presented the British singer-songwriter with the award on Thursday.", + "guid": "b1125592", + "categories": ["Music", "Culture"], + "isoDate": "2023-12-07T19:53:43.000Z" + }, + { + "creator": "Harry Stedman", + "date": "2023-12-07T19:40:51+00:00", + "title": "US marshal charged with drunken behaviour on flight to London", + "link": "https://www.standard.co.uk/news/uk/london-metropolitan-police-heathrow-airport-new-york-met-b1125591.html", + "pubDate": "Thu, 07 Dec 2023 19:40:51 GMT", + "dc:creator": "Harry Stedman", + "dc:date": "2023-12-07T19:40:51+00:00", + "content": "Michael Brereton was arrested by Metropolitan Police officers at Heathrow Airport on Wednesday morning.", + "contentSnippet": "Michael Brereton was arrested by Metropolitan Police officers at Heathrow Airport on Wednesday morning.", + "guid": "b1125591", + "categories": ["UK", "News"], + "isoDate": "2023-12-07T19:40:51.000Z" + }, + { + "creator": "Tony Jones", + "date": "2023-12-07T19:27:13+00:00", + "title": "Santa Claus tells King he is on \u2018very good boy list\u2019", + "link": "https://www.standard.co.uk/news/uk/king-charles-santa-claus-ealing-broadway-the-king-b1125562.html", + "pubDate": "Thu, 07 Dec 2023 19:27:13 GMT", + "dc:creator": "Tony Jones", + "dc:date": "2023-12-07T19:27:13+00:00", + "content": "Ealing Broadway shopping centre was filled with crowds when they realised a famous visitor was perusing food and craft stalls.", + "contentSnippet": "Ealing Broadway shopping centre was filled with crowds when they realised a famous visitor was perusing food and craft stalls.", + "guid": "b1125562", + "categories": ["UK", "News"], + "isoDate": "2023-12-07T19:27:13.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2023-12-07T19:00:57+00:00", + "title": "Best dystopian novels of all time that are must-read classics", + "link": "https://www.standard.co.uk/shopping/esbest/books-dvds/best-dystopian-novels-b1124811.html", + "pubDate": "Thu, 07 Dec 2023 19:00:57 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2023-12-07T19:00:57+00:00", + "content": "

Stranger than fiction no longer applies

", + "contentSnippet": "Stranger than fiction no longer applies", + "guid": "b1124811", + "categories": ["Books & DVDs", "ES Best Home", "Shopping"], + "isoDate": "2023-12-07T19:00:57.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2023-12-07T19:00:34+00:00", + "title": "Best dried flower bouquets brands to shop for the perfect decorations", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-dried-flower-bouquet-brands-b1124810.html", + "pubDate": "Thu, 07 Dec 2023 19:00:34 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2023-12-07T19:00:34+00:00", + "content": "

For beautiful blooms that will never fade

", + "contentSnippet": "For beautiful blooms that will never fade", + "guid": "b1124810", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2023-12-07T19:00:34.000Z" + }, + { + "creator": "Abha Shah", + "date": "2023-12-07T19:00:03+00:00", + "title": "Best bug zappers to keep insects at bay, tried and tested", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-bug-zappers-uk-b1118076.html", + "pubDate": "Thu, 07 Dec 2023 19:00:03 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2023-12-07T19:00:03+00:00", + "content": "

Game, set, match

", + "contentSnippet": "Game, set, match", + "guid": "b1118076", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2023-12-07T19:00:03.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2023-12-07T19:00:02+00:00", + "title": "Best automatic cat feeders for your feline friend, tried and tested", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/pets/best-automatic-cat-feeding-devices-b1125455.html", + "pubDate": "Thu, 07 Dec 2023 19:00:02 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2023-12-07T19:00:02+00:00", + "content": "

Make mealtimes fun for our fussy furry friends

", + "contentSnippet": "Make mealtimes fun for our fussy furry friends", + "guid": "b1125455", + "categories": ["Pets", "Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2023-12-07T19:00:02.000Z" + }, + { + "creator": "Nilima Marshall", + "date": "2023-12-07T19:00:00+00:00", + "title": "Wild birds \u2018distinguish between calls made by different African tribes\u2019 \u2013 study", + "link": "https://www.standard.co.uk/news/science/humans-african-scientists-university-of-cambridge-university-of-cape-town-b1125590.html", + "pubDate": "Thu, 07 Dec 2023 19:00:00 GMT", + "dc:creator": "Nilima Marshall", + "dc:date": "2023-12-07T19:00:00+00:00", + "content": "Greater honeyguides respond more readily to calls made by certain African tribespeople than those made by a different tribe.", + "contentSnippet": "Greater honeyguides respond more readily to calls made by certain African tribespeople than those made by a different tribe.", + "guid": "b1125590", + "categories": ["Science", "News"], + "isoDate": "2023-12-07T19:00:00.000Z" + }, + { + "creator": "Lucas Cumiskey", + "date": "2023-12-07T18:52:28+00:00", + "title": "Kevin Sinfield completes MND fundraising ultra-marathon challenge", + "link": "https://www.standard.co.uk/news/uk/kevin-sinfield-mnd-twickenham-stadium-leeds-england-b1125564.html", + "pubDate": "Thu, 07 Dec 2023 18:52:28 GMT", + "dc:creator": "Lucas Cumiskey", + "dc:date": "2023-12-07T18:52:28+00:00", + "content": "The 43-year-old has finished his gruelling \u20187 in 7 in 7\u2019 ultra-marathon challenge.", + "contentSnippet": "The 43-year-old has finished his gruelling \u20187 in 7 in 7\u2019 ultra-marathon challenge.", + "guid": "b1125564", + "categories": ["UK", "News"], + "isoDate": "2023-12-07T18:52:28.000Z" + }, + { + "creator": "Daniel Keane and Matt Watts", + "date": "2023-12-07T18:48:47+00:00", + "title": "Sutton murder: Teenager stabbed to death in south London high street named by police as Ilyas Habibi ", + "link": "https://www.standard.co.uk/news/crime/sutton-murder-teenager-stabbed-high-street-named-picture-student-ilyas-habibi-b1125570.html", + "pubDate": "Thu, 07 Dec 2023 18:48:47 GMT", + "dc:creator": "Daniel Keane and Matt Watts", + "dc:date": "2023-12-07T18:48:47+00:00", + "content": "

Student was fatally stabbed following 'altercation' minutes after leaving Sutton train station on Tuesday

", + "contentSnippet": "Student was fatally stabbed following 'altercation' minutes after leaving Sutton train station on Tuesday", + "guid": "b1125570", + "categories": ["Crime", "News"], + "isoDate": "2023-12-07T18:48:47.000Z" + }, + { + "creator": "Rod Minchin", + "date": "2023-12-07T18:48:46+00:00", + "title": "Former TV channel boss takes overdose amid bullying allegations", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/welsh-government-sport-secretary-of-state-westminster-b1125589.html", + "pubDate": "Thu, 07 Dec 2023 18:48:46 GMT", + "dc:creator": "Rod Minchin", + "dc:date": "2023-12-07T18:48:46+00:00", + "content": "Sian Doyle, who was in charge of Welsh language channel S4C, was found unresponsive on Thursday morning by her husband.", + "contentSnippet": "Sian Doyle, who was in charge of Welsh language channel S4C, was found unresponsive on Thursday morning by her husband.", + "guid": "b1125589", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-12-07T18:48:46.000Z" + }, + { + "creator": "Brian Farmer", + "date": "2023-12-07T18:36:53+00:00", + "title": "Storage of legal battle \u2018sterile gowns\u2019 costing \u00a33.2m per year, court hears", + "link": "https://www.standard.co.uk/news/politics/justice-department-of-health-and-social-care-michelle-mone-victoria-atkins-government-b1125495.html", + "pubDate": "Thu, 07 Dec 2023 18:36:53 GMT", + "dc:creator": "Brian Farmer", + "dc:date": "2023-12-07T18:36:53+00:00", + "content": "The Government has sued PPE Medpro \u2013 the firm which supplied the gowns \u2013 and Mr Justice Bright on Thursday oversaw a pre-trial hearing.", + "contentSnippet": "The Government has sued PPE Medpro \u2013 the firm which supplied the gowns \u2013 and Mr Justice Bright on Thursday oversaw a pre-trial hearing.", + "guid": "b1125495", + "categories": ["Politics", "News"], + "isoDate": "2023-12-07T18:36:53.000Z" + }, + { + "creator": "Jacob Phillips and Daniel Keane", + "date": "2023-12-07T18:35:31+00:00", + "title": "Counter terrorism police launch probe after Ulez camera in Sidcup 'blown up with IED'", + "link": "https://www.standard.co.uk/news/london/metropolitan-police-ulez-camera-vandalism-london-destruction-sidcup-b1125391.html", + "pubDate": "Thu, 07 Dec 2023 18:35:31 GMT", + "dc:creator": "Jacob Phillips and Daniel Keane", + "dc:date": "2023-12-07T18:35:31+00:00", + "content": "

Footage filmed at the scene shows a dented van and a chunk taken out of a brick wall

", + "contentSnippet": "Footage filmed at the scene shows a dented van and a chunk taken out of a brick wall", + "guid": "b1125391", + "categories": ["London", "News"], + "isoDate": "2023-12-07T18:35:31.000Z" + }, + { + "creator": "Abha Shah", + "date": "2023-12-07T18:21:41+00:00", + "title": "Best living room rugs to give your space an instant re-style", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-living-room-rugs-b1124724.html", + "pubDate": "Thu, 07 Dec 2023 18:21:41 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2023-12-07T18:21:41+00:00", + "content": "

Dressing from the floor up

", + "contentSnippet": "Dressing from the floor up", + "guid": "b1124724", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2023-12-07T18:21:41.000Z" + }, + { + "creator": "Brian Farmer", + "date": "2023-12-07T18:19:57+00:00", + "title": "Former Pc convicted over sex assaults and misconduct has jail term cut", + "link": "https://www.standard.co.uk/news/crime/greater-manchester-police-lawyers-liverpool-crown-court-court-of-appeal-london-b1125587.html", + "pubDate": "Thu, 07 Dec 2023 18:19:57 GMT", + "dc:creator": "Brian Farmer", + "dc:date": "2023-12-07T18:19:57+00:00", + "content": "Jurors heard that Adnan Ali was serving with Greater Manchester Police when the offences were committed.", + "contentSnippet": "Jurors heard that Adnan Ali was serving with Greater Manchester Police when the offences were committed.", + "guid": "b1125587", + "categories": ["Crime", "News"], + "isoDate": "2023-12-07T18:19:57.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2023-12-07T18:19:15+00:00", + "title": "Best New Year\u2019s Eve outfits for women to kick off 2024 in style", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-new-years-eve-outfits-b1116820.html", + "pubDate": "Thu, 07 Dec 2023 18:19:15 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2023-12-07T18:19:15+00:00", + "content": "

New year, new look

", + "contentSnippet": "New year, new look", + "guid": "b1116820", + "categories": ["Fashion", "ES Best Home", "Shopping"], + "isoDate": "2023-12-07T18:19:15.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-12-15T15:37:36+00:00", + "title": "Bryan Mbeumo: Thomas Frank confirms injured Brentford star will miss Africa Cup of Nations", + "link": "https://www.standard.co.uk/sport/football/mbeumo-injury-confirmed-brentford-afcon-2023-b1127298.html", + "pubDate": "Fri, 15 Dec 2023 15:37:36 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-12-15T15:37:36+00:00", + "content": "

Forward has added to Brentford manager's lengthy absentee list

", + "contentSnippet": "Forward has added to Brentford manager's lengthy absentee list", + "guid": "b1127298", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T15:37:36.000Z" + }, + { + "creator": "Matt Verri", + "date": "2023-12-15T15:34:03+00:00", + "title": "Roy Hodgson calls for Crystal Palace to strengthen in January transfer window to aid 'depleted' squad", + "link": "https://www.standard.co.uk/sport/football/roy-hodgson-crystal-palace-transfer-update-b1127293.html", + "pubDate": "Fri, 15 Dec 2023 15:34:03 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2023-12-15T15:34:03+00:00", + "content": "

The Palace boss is currently without a number of first-team regulars

", + "contentSnippet": "The Palace boss is currently without a number of first-team regulars", + "guid": "b1127293", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T15:34:03.000Z" + }, + { + "creator": "Martyn Landi", + "date": "2023-12-15T15:33:04+00:00", + "title": "Bereaved parents\u2019 anger at \u2018betrayal\u2019 over online safety law amendments", + "link": "https://www.standard.co.uk/news/tech/rishi-sunak-government-ofcom-michelle-donelan-prime-minister-b1127297.html", + "pubDate": "Fri, 15 Dec 2023 15:33:04 GMT", + "dc:creator": "Martyn Landi", + "dc:date": "2023-12-15T15:33:04+00:00", + "content": "Proposed changes to the Data Protection and Digital Information Bill have been called \u2018callous\u2019 and \u2018devastating\u2019 by the group.", + "contentSnippet": "Proposed changes to the Data Protection and Digital Information Bill have been called \u2018callous\u2019 and \u2018devastating\u2019 by the group.", + "guid": "b1127297", + "categories": ["Tech", "News"], + "isoDate": "2023-12-15T15:33:04.000Z" + }, + { + "creator": "Tom Davidson", + "date": "2023-12-15T15:33:00+00:00", + "title": "Piers Morgan fires back at judge and Prince Harry after hacking judgement", + "link": "https://www.standard.co.uk/news/uk/piers-morgan-prince-harry-hacking-mirror-group-newspapers-b1127294.html", + "pubDate": "Fri, 15 Dec 2023 15:33:00 GMT", + "dc:creator": "Tom Davidson", + "dc:date": "2023-12-15T15:33:00+00:00", + "content": "

Former Daily Mirror editor Piers Morgan has again insisted he has \"never hacked a phone or told anyone else to hack a phone\".

", + "contentSnippet": "Former Daily Mirror editor Piers Morgan has again insisted he has \"never hacked a phone or told anyone else to hack a phone\".", + "guid": "b1127294", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T15:33:00.000Z" + }, + { + "creator": "David Ellis,Joanna Taylor,Josh Barrie,Mike Daw,Clare Finney,Ben McCormack and Millie Milliken", + "date": "2023-12-15T15:30:47+00:00", + "title": "What the Going Out team are drinking this Christmas ", + "link": "https://www.standard.co.uk/going-out/foodanddrink/christmas-drinks-b1126475.html", + "pubDate": "Fri, 15 Dec 2023 15:30:47 GMT", + "dc:creator": "David Ellis,Joanna Taylor,Josh Barrie,Mike Daw,Clare Finney,Ben McCormack and Millie Milliken", + "dc:date": "2023-12-15T15:30:47+00:00", + "content": "

From Champagne to martinis, here's what the Standard's booziest desk will be knocking back this year

", + "contentSnippet": "From Champagne to martinis, here's what the Standard's booziest desk will be knocking back this year", + "guid": "b1126475", + "categories": ["Food + Drink", "Going Out"], + "isoDate": "2023-12-15T15:30:47.000Z" + }, + { + "creator": "Robbie Smith", + "date": "2023-12-15T15:30:35+00:00", + "title": "OPINION - The End of Enlightenment review: the chaotic and bloody real story of the famous age", + "link": "https://www.standard.co.uk/culture/books/end-of-enlightenment-review-richard-whatmore-chaotic-b1127248.html", + "pubDate": "Fri, 15 Dec 2023 15:30:35 GMT", + "dc:creator": "Robbie Smith", + "dc:date": "2023-12-15T15:30:35+00:00", + "content": "

Some ideas are too successful for their own good. They take flight from their original context and are capacious to a dangerous degree. The Enlightenment, Richard Whatmore contends in this book, is just such an idea. Well yes, since it appears to describe a state of mind rather than, say, a single, big thought (like \u201cfree trade\u201d). We might think of another state-of-mind idea that also entails a very contested set of beliefs \u2014 \u201cwoke\u201d.

", + "contentSnippet": "Some ideas are too successful for their own good. They take flight from their original context and are capacious to a dangerous degree. The Enlightenment, Richard Whatmore contends in this book, is just such an idea. Well yes, since it appears to describe a state of mind rather than, say, a single, big thought (like \u201cfree trade\u201d). We might think of another state-of-mind idea that also entails a very contested set of beliefs \u2014 \u201cwoke\u201d.", + "guid": "b1127248", + "categories": ["Books", "Culture"], + "isoDate": "2023-12-15T15:30:35.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2023-12-15T15:28:36+00:00", + "title": "Spotify starts testing AI playlists feature \u2013 how to check if you have it", + "link": "https://www.standard.co.uk/news/tech/spotify-ai-playlists-chatgpt-music-b1127288.html", + "pubDate": "Fri, 15 Dec 2023 15:28:36 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2023-12-15T15:28:36+00:00", + "content": "

Some users are now able to use a bot to generate playlists

", + "contentSnippet": "Some users are now able to use a bot to generate playlists", + "guid": "b1127288", + "categories": ["Tech", "News"], + "isoDate": "2023-12-15T15:28:36.000Z" + }, + { + "creator": "Joe Bromley", + "date": "2023-12-15T15:26:39+00:00", + "title": "Is Jennie Blackpink's most fashionable? From Buckingham Palace with the Princess of Wales to Jacquemus ", + "link": "https://www.standard.co.uk/lifestyle/fashion/jennie-kim-blackpink-fashionable-2023-buckingham-palace-jacquemus-b1127254.html", + "pubDate": "Fri, 15 Dec 2023 15:26:39 GMT", + "dc:creator": "Joe Bromley", + "dc:date": "2023-12-15T15:26:39+00:00", + "content": "

Jennie rubbed shoulders with the Princess of Wales, made her Met Gala debut and is now the face of Jacquemus' Christmas campaign \u2014 has she pipped Blackpink bandmates Jisoo, Ros\u00e9 and Lisa to the post as most fashionable in 2023, asks Joe Bromley

", + "contentSnippet": "Jennie rubbed shoulders with the Princess of Wales, made her Met Gala debut and is now the face of Jacquemus' Christmas campaign \u2014 has she pipped Blackpink bandmates Jisoo, Ros\u00e9 and Lisa to the post as most fashionable in 2023, asks Joe Bromley", + "guid": "b1127254", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2023-12-15T15:26:39.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-12-15T15:25:03+00:00", + "title": "Emmerdale stars hail Steve Halliwell a \u2018soap icon\u2019 after his death aged 77", + "link": "https://www.standard.co.uk/news/uk/itv-kelvin-fletcher-danny-miller-yorkshire-heart-b1127295.html", + "pubDate": "Fri, 15 Dec 2023 15:25:03 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-12-15T15:25:03+00:00", + "content": "The actor died \u2018peacefully with his loved ones around him\u2019, his family said in a statement issued by ITV.", + "contentSnippet": "The actor died \u2018peacefully with his loved ones around him\u2019, his family said in a statement issued by ITV.", + "guid": "b1127295", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T15:25:03.000Z" + }, + { + "creator": "Alex Young", + "date": "2023-12-15T15:20:47+00:00", + "title": "Nottingham Forest vs Tottenham: Prediction, team news, kick-off time, TV, live stream, h2h results, odds today", + "link": "https://www.standard.co.uk/sport/football/nottingham-forest-vs-tottenham-prediction-latest-team-news-kick-off-time-tv-live-stream-h2h-results-odds-premier-league-2023-preview-today-b1126480.html", + "pubDate": "Fri, 15 Dec 2023 15:20:47 GMT", + "dc:creator": "Alex Young", + "dc:date": "2023-12-15T15:20:47+00:00", + "content": "

Spurs kick off the Premier League weekend at the County Ground as they look to build on a big win over Newcastle

", + "contentSnippet": "Spurs kick off the Premier League weekend at the County Ground as they look to build on a big win over Newcastle", + "guid": "b1126480", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T15:20:47.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-12-15T15:15:37+00:00", + "title": "How to watch Nottingham Forest vs Tottenham: TV channel and live stream for Premier League game tonight", + "link": "https://www.standard.co.uk/sport/football/how-to-watch-nottingham-forest-vs-tottenham-tv-channel-live-stream-premier-league-tonight-b1126981.html", + "pubDate": "Fri, 15 Dec 2023 15:15:37 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-12-15T15:15:37+00:00", + "content": "

Spurs travel to the City Ground looking for a valuable away win on Friday Night Football

", + "contentSnippet": "Spurs travel to the City Ground looking for a valuable away win on Friday Night Football", + "guid": "b1126981", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T15:15:37.000Z" + }, + { + "creator": "Emily Pennink", + "date": "2023-12-15T15:12:58+00:00", + "title": "Three men jailed for life after footballer murdered in rival gangs feud", + "link": "https://www.standard.co.uk/news/crime/taylor-london-holloway-old-bailey-met-police-b1127292.html", + "pubDate": "Fri, 15 Dec 2023 15:12:58 GMT", + "dc:creator": "Emily Pennink", + "dc:date": "2023-12-15T15:12:58+00:00", + "content": "Taylor Cox, 19, was shot in an alleyway in north London in June 2021.", + "contentSnippet": "Taylor Cox, 19, was shot in an alleyway in north London in June 2021.", + "guid": "b1127292", + "categories": ["Crime", "News"], + "isoDate": "2023-12-15T15:12:58.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2023-12-15T15:09:51+00:00", + "title": "Tottenham XI vs Nottingham Forest: Confirmed team news, predicted lineup and injury latest today", + "link": "https://www.standard.co.uk/sport/football/tottenham-xi-vs-nottingham-forest-confirmed-team-news-predicted-lineup-injury-latest-2023-premier-league-today-b1127011.html", + "pubDate": "Fri, 15 Dec 2023 15:09:51 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2023-12-15T15:09:51+00:00", + "content": "

New injury blow could push Ange Postecoglou into naming unchanged side

", + "contentSnippet": "New injury blow could push Ange Postecoglou into naming unchanged side", + "guid": "b1127011", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T15:09:51.000Z" + }, + { + "creator": "Rebecca Black", + "date": "2023-12-15T15:09:05+00:00", + "title": "Eastwood hopes for deal to resurrect Stormont before Christmas", + "link": "https://www.standard.co.uk/news/uk/rishi-sunak-northern-ireland-stormont-dup-government-b1127291.html", + "pubDate": "Fri, 15 Dec 2023 15:09:05 GMT", + "dc:creator": "Rebecca Black", + "dc:date": "2023-12-15T15:09:05+00:00", + "content": "SDLP leader Colum Eastwood said he believes a deal could be done by the end of next week.", + "contentSnippet": "SDLP leader Colum Eastwood said he believes a deal could be done by the end of next week.", + "guid": "b1127291", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T15:09:05.000Z" + }, + { + "creator": "Josh Payne", + "date": "2023-12-15T15:08:15+00:00", + "title": "No evidence of third party involvement after body found in Gaynor Lord search", + "link": "https://www.standard.co.uk/news/uk/norwich-police-lancashire-god-lancashire-constabulary-b1127287.html", + "pubDate": "Fri, 15 Dec 2023 15:08:15 GMT", + "dc:creator": "Josh Payne", + "dc:date": "2023-12-15T15:08:15+00:00", + "content": "A body was recovered from the River Wensum in Norwich on Friday.", + "contentSnippet": "A body was recovered from the River Wensum in Norwich on Friday.", + "guid": "b1127287", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T15:08:15.000Z" + }, + { + "creator": "Simon Peach", + "date": "2023-12-15T15:08:07+00:00", + "title": "Erik ten Hag does not fear for Manchester United future ahead of daunting Liverpool trip", + "link": "https://www.standard.co.uk/sport/football/ten-hag-man-utd-liverpool-fc-latest-news-premier-league-2023-b1127290.html", + "pubDate": "Fri, 15 Dec 2023 15:08:07 GMT", + "dc:creator": "Simon Peach", + "dc:date": "2023-12-15T15:08:07+00:00", + "content": "

Dutchman insists Red Devils still have plenty to play for this season

", + "contentSnippet": "Dutchman insists Red Devils still have plenty to play for this season", + "guid": "b1127290", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T15:08:07.000Z" + }, + { + "creator": "Nick Clark", + "date": "2023-12-15T15:07:57+00:00", + "title": "Godzilla Minus One movie review: a blockbuster monster movie that swallows Hollywood's limp versions whole", + "link": "https://www.standard.co.uk/culture/film/godzilla-minus-one-review-monarch-legacy-of-monsters-b1127241.html", + "pubDate": "Fri, 15 Dec 2023 15:07:57 GMT", + "dc:creator": "Nick Clark", + "dc:date": "2023-12-15T15:07:57+00:00", + "content": "

With Godzilla set to turn 70 next year, this film does justice to one of cinema history's great creatures

", + "contentSnippet": "With Godzilla set to turn 70 next year, this film does justice to one of cinema history's great creatures", + "guid": "b1127241", + "categories": ["Film", "Culture"], + "isoDate": "2023-12-15T15:07:57.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2023-12-15T15:06:33+00:00", + "title": "Chelsea: Mauricio Pochettino says critics can call him crazy for predicting Blues success", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-pochettino-boehly-crazy-b1127221.html", + "pubDate": "Fri, 15 Dec 2023 15:06:33 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2023-12-15T15:06:33+00:00", + "content": "

The manager says time and patience will see the Blues improve, in a message to Todd Boehly

", + "contentSnippet": "The manager says time and patience will see the Blues improve, in a message to Todd Boehly", + "guid": "b1127221", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T15:06:33.000Z" + }, + { + "creator": "Noah Vickers and Ross Lydall", + "date": "2023-12-15T15:05:46+00:00", + "title": "Sadiq Khan targets Tory rival Susan Hall with pickpocketing gag at Christmas bash", + "link": "https://www.standard.co.uk/news/london/sadiq-khan-joke-susan-hall-pickpocketing-tory-rival-christmas-party-b1127274.html", + "pubDate": "Fri, 15 Dec 2023 15:05:46 GMT", + "dc:creator": "Noah Vickers and Ross Lydall", + "dc:date": "2023-12-15T15:05:46+00:00", + "content": "

Mayor sees first CCTV cameras on Central line as he insists Tube is 'low crime environment'

", + "contentSnippet": "Mayor sees first CCTV cameras on Central line as he insists Tube is 'low crime environment'", + "guid": "b1127274", + "categories": ["London", "News"], + "isoDate": "2023-12-15T15:05:46.000Z" + }, + { + "creator": "Tom Pilgrim", + "date": "2023-12-15T15:03:21+00:00", + "title": "Judge accepts evidence that Piers Morgan knew about phone hacking at The Mirror", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/piers-morgan-omid-scobie-justice-kylie-minogue-high-court-b1127284.html", + "pubDate": "Fri, 15 Dec 2023 15:03:21 GMT", + "dc:creator": "Tom Pilgrim", + "dc:date": "2023-12-15T15:03:21+00:00", + "content": "Mr Morgan was editor of the Daily Mirror between 1995 and 2004.", + "contentSnippet": "Mr Morgan was editor of the Daily Mirror between 1995 and 2004.", + "guid": "b1127284", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-12-15T15:03:21.000Z" + }, + { + "creator": "Tom Davidson and Jacob Phillips", + "date": "2023-12-15T14:56:05+00:00", + "title": "Gaynor Lord: Police searching for missing mother of three find body in river", + "link": "https://www.standard.co.uk/news/uk/gaynor-lord-missing-police-river-norwich-body-b1127239.html", + "pubDate": "Fri, 15 Dec 2023 14:56:05 GMT", + "dc:creator": "Tom Davidson and Jacob Phillips", + "dc:date": "2023-12-15T14:56:05+00:00", + "content": "

Norfolk Police say 'there is no evidence of third party involvement' in her disappearance

", + "contentSnippet": "Norfolk Police say 'there is no evidence of third party involvement' in her disappearance", + "guid": "b1127239", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T14:56:05.000Z" + }, + { + "creator": "Craig Paton", + "date": "2023-12-15T14:54:41+00:00", + "title": "Police warn of falling officer numbers in Scotland without more funding", + "link": "https://www.standard.co.uk/news/politics/police-scotland-police-scotland-uk-government-budget-b1127238.html", + "pubDate": "Fri, 15 Dec 2023 14:54:41 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2023-12-15T14:54:41+00:00", + "content": "The Scottish Police Federation has urged the Deputy First Minister to boost the cash allocation for Police Scotland in next week\u2019s draft Budget.", + "contentSnippet": "The Scottish Police Federation has urged the Deputy First Minister to boost the cash allocation for Police Scotland in next week\u2019s draft Budget.", + "guid": "b1127238", + "categories": ["Politics", "News"], + "isoDate": "2023-12-15T14:54:41.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-12-15T14:51:37+00:00", + "title": "Arsenal vs Brighton: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/arsenal-fc-vs-brighton-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1126928.html", + "pubDate": "Fri, 15 Dec 2023 14:51:37 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-12-15T14:51:37+00:00", + "content": "

Arsenal can put the pressure on Premier League leaders Liverpool if they beat Brighton on Sunday.

", + "contentSnippet": "Arsenal can put the pressure on Premier League leaders Liverpool if they beat Brighton on Sunday.", + "guid": "b1126928", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:51:37.000Z" + }, + { + "creator": "Standard Sport", + "date": "2023-12-15T14:50:59+00:00", + "title": "Premier League table 2023-24: Latest standings, fixtures and results for matchday 17", + "link": "https://www.standard.co.uk/sport/football/premier-league-table-2023-24-standings-fixtures-results-live-scores-matchday-17-b1126973.html", + "pubDate": "Fri, 15 Dec 2023 14:50:59 GMT", + "dc:creator": "Standard Sport", + "dc:date": "2023-12-15T14:50:59+00:00", + "content": "

Weekend action begins on Friday night

", + "contentSnippet": "Weekend action begins on Friday night", + "guid": "b1126973", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:50:59.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-12-15T14:48:57+00:00", + "title": "How to watch PDC World Darts Championship 2024: TV channel and live stream", + "link": "https://www.standard.co.uk/sport/how-to-watch-pdc-world-darts-championship-2024-tv-channel-live-stream-b1127003.html", + "pubDate": "Fri, 15 Dec 2023 14:48:57 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-12-15T14:48:57+00:00", + "content": "

The festive arrows action begins at Ally Pally on Friday night as Michael Smith defends his title

", + "contentSnippet": "The festive arrows action begins at Ally Pally on Friday night as Michael Smith defends his title", + "guid": "b1127003", + "categories": ["Sport"], + "isoDate": "2023-12-15T14:48:57.000Z" + }, + { + "creator": "Alex Young", + "date": "2023-12-15T14:48:38+00:00", + "title": "PDC World Darts Championship 2024: Draw, full schedule today, how to watch and latest odds", + "link": "https://www.standard.co.uk/sport/world-darts-championship-2024-results-full-schedule-today-how-to-watch-tv-channel-latest-odds-b1126374.html", + "pubDate": "Fri, 15 Dec 2023 14:48:38 GMT", + "dc:creator": "Alex Young", + "dc:date": "2023-12-15T14:48:38+00:00", + "content": "

Alexandra Palace will entertain thousands across the festive period as the world's best darts players compete to win the sport's biggest prize

", + "contentSnippet": "Alexandra Palace will entertain thousands across the festive period as the world's best darts players compete to win the sport's biggest prize", + "guid": "b1126374", + "categories": ["Sport"], + "isoDate": "2023-12-15T14:48:38.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2023-12-15T14:48:28+00:00", + "title": "Tory tweet using image of BBC news anchor giving middle finger to attack Labour may have backfired, new study", + "link": "https://www.standard.co.uk/news/politics/tory-tweet-finger-middle-bbc-labour-immigration-attack-backfire-b1127271.html", + "pubDate": "Fri, 15 Dec 2023 14:48:28 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2023-12-15T14:48:28+00:00", + "content": "

The social media move sparked a row among Conservative MPs

", + "contentSnippet": "The social media move sparked a row among Conservative MPs", + "guid": "b1127271", + "categories": ["Politics", "News"], + "isoDate": "2023-12-15T14:48:28.000Z" + }, + { + "creator": "Matt Verri", + "date": "2023-12-15T14:48:06+00:00", + "title": "Who is Andre August? Jake Paul opponent's professional boxing record and ranking", + "link": "https://www.standard.co.uk/sport/boxing/who-is-andre-august-jake-paul-professional-boxing-record-ranking-age-b1127168.html", + "pubDate": "Fri, 15 Dec 2023 14:48:06 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2023-12-15T14:48:06+00:00", + "content": "

All you need to know about Paul's largely unknown opponent

", + "contentSnippet": "All you need to know about Paul's largely unknown opponent", + "guid": "b1127168", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-12-15T14:48:06.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-12-15T14:47:35+00:00", + "title": "How to watch Jake Paul vs Andre August: TV channel and live stream for boxing tonight", + "link": "https://www.standard.co.uk/sport/boxing/how-to-watch-jake-paul-vs-andre-august-tv-channel-live-stream-b1126976.html", + "pubDate": "Fri, 15 Dec 2023 14:47:35 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-12-15T14:47:35+00:00", + "content": "

'The Problem Child' fights a professional boxer for only the second time on Friday

", + "contentSnippet": "'The Problem Child' fights a professional boxer for only the second time on Friday", + "guid": "b1126976", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-12-15T14:47:35.000Z" + }, + { + "creator": "Matt Verri", + "date": "2023-12-15T14:47:17+00:00", + "title": "Jake Paul vs Andre August: Fight time, undercard, latest odds, prediction, ring walks tonight", + "link": "https://www.standard.co.uk/sport/boxing/jake-paul-vs-andre-august-fight-time-undercard-prediction-latest-odds-tonight-b1126439.html", + "pubDate": "Fri, 15 Dec 2023 14:47:17 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2023-12-15T14:47:17+00:00", + "content": "

Former YouTube star is looking to end a mixed 2023 on a high

", + "contentSnippet": "Former YouTube star is looking to end a mixed 2023 on a high", + "guid": "b1126439", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-12-15T14:47:17.000Z" + }, + { + "creator": "", + "date": "2023-12-15T14:47:11+00:00", + "title": "The Travel Corporation is on a mission to reduce the impact tourism has on the planet", + "link": "https://www.standard.co.uk/lifestyle/travel/sustainable-travel/sustainable-travel-corporation-industry-b1125557.html", + "pubDate": "Fri, 15 Dec 2023 14:47:11 GMT", + "dc:creator": "", + "dc:date": "2023-12-15T14:47:11+00:00", + "content": "

As an increasing number of travellers seek ethical experiences that reduce their carbon footprint, The Travel Corporation is making real-world progress

", + "contentSnippet": "As an increasing number of travellers seek ethical experiences that reduce their carbon footprint, The Travel Corporation is making real-world progress", + "guid": "b1125557", + "categories": ["Sustainable Travel", "Travel", "Lifestyle"], + "isoDate": "2023-12-15T14:47:11.000Z" + }, + { + "creator": "Dom Smith", + "date": "2023-12-15T14:46:43+00:00", + "title": "Arsenal XI vs Brighton: Gabriel Martinelli latest, predicted lineup, confirmed team news, injury update", + "link": "https://www.standard.co.uk/sport/football/arsenal-fc-xi-vs-brighton-gabriel-martinelli-latest-predicted-lineup-confirmed-team-news-injury-update-premier-league-b1127258.html", + "pubDate": "Fri, 15 Dec 2023 14:46:43 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2023-12-15T14:46:43+00:00", + "content": "

The Brazilian missed Arsenal's midweek trip to PSV due to illness

", + "contentSnippet": "The Brazilian missed Arsenal's midweek trip to PSV due to illness", + "guid": "b1127258", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:46:43.000Z" + }, + { + "creator": "Jacob Phillips", + "date": "2023-12-15T14:46:29+00:00", + "title": "Man with facial injuries found dead at park in Greenwich", + "link": "https://www.standard.co.uk/news/crime/greenwich-police-facial-injuries-death-plumstead-shrewsbury-park-b1127280.html", + "pubDate": "Fri, 15 Dec 2023 14:46:29 GMT", + "dc:creator": "Jacob Phillips", + "dc:date": "2023-12-15T14:46:29+00:00", + "content": "

A man was found dead with facial injuries, Met Police said

", + "contentSnippet": "A man was found dead with facial injuries, Met Police said", + "guid": "b1127280", + "categories": ["Crime", "News"], + "isoDate": "2023-12-15T14:46:29.000Z" + }, + { + "creator": "Victoria Moss", + "date": "2023-12-15T14:44:40+00:00", + "title": "Barbie, fashion daddies and Kylie Jenner's year in style \u2014 how 2023 was your wardrobe? ", + "link": "https://www.standard.co.uk/lifestyle/fashion/fashion-2023-fashion-trends-b1126937.html", + "pubDate": "Fri, 15 Dec 2023 14:44:40 GMT", + "dc:creator": "Victoria Moss", + "dc:date": "2023-12-15T14:44:40+00:00", + "content": "

Barbie, fashion daddies, Kylie Jenner and cowboy Crocs, were you paying attention to 2023's fashion moments?

", + "contentSnippet": "Barbie, fashion daddies, Kylie Jenner and cowboy Crocs, were you paying attention to 2023's fashion moments?", + "guid": "b1126937", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2023-12-15T14:44:40.000Z" + }, + { + "creator": "", + "date": "2023-12-15T14:43:06+00:00", + "title": "Vote now in The 12 Pets of Christmas competition for your chance to win \u00a350 worth of vouchers", + "link": "https://www.standard.co.uk/esrewards/vote-now-in-the-12-pets-of-christmas-competition-b1123041.html", + "pubDate": "Fri, 15 Dec 2023 14:43:06 GMT", + "dc:creator": "", + "dc:date": "2023-12-15T14:43:06+00:00", + "content": "

Voting is now open to find the most joyful cat and dog

", + "contentSnippet": "Voting is now open to find the most joyful cat and dog", + "guid": "b1123041", + "categories": ["ES REWARDS"], + "isoDate": "2023-12-15T14:43:06.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-12-15T14:37:05+00:00", + "title": "Liverpool vs Manchester United: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/liverpool-fc-vs-man-united-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1127142.html", + "pubDate": "Fri, 15 Dec 2023 14:37:05 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-12-15T14:37:05+00:00", + "content": "

Liverpool welcome bitter rivals Manchester United to Anfield in another huge Premier League clash.

", + "contentSnippet": "Liverpool welcome bitter rivals Manchester United to Anfield in another huge Premier League clash.", + "guid": "b1127142", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:37:05.000Z" + }, + { + "creator": "Neil Lancefield", + "date": "2023-12-15T14:35:00+00:00", + "title": "Workers at airport popular with UK holidaymakers arrested over luggage thefts", + "link": "https://www.standard.co.uk/news/uk/workers-guardia-civil-spanish-screens-ryanair-b1127282.html", + "pubDate": "Fri, 15 Dec 2023 14:35:00 GMT", + "dc:creator": "Neil Lancefield", + "dc:date": "2023-12-15T14:35:00+00:00", + "content": "Airport workers are said to have forced open suitcases, taken out valuables and shut them, leaving no sign of tampering.", + "contentSnippet": "Airport workers are said to have forced open suitcases, taken out valuables and shut them, leaving no sign of tampering.", + "guid": "b1127282", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T14:35:00.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-12-15T14:34:02+00:00", + "title": "Liverpool XI vs Manchester United: Predicted lineup, confirmed team news and injury latest for Premier League", + "link": "https://www.standard.co.uk/sport/football/liverpool-fc-xi-vs-man-united-predicted-lineup-confirmed-team-news-injury-latest-premier-league-2023-b1127151.html", + "pubDate": "Fri, 15 Dec 2023 14:34:02 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-12-15T14:34:02+00:00", + "content": "

Reds to recall big names for huge derby

", + "contentSnippet": "Reds to recall big names for huge derby", + "guid": "b1127151", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:34:02.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-12-15T14:32:44+00:00", + "title": "Man City vs Crystal Palace: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/man-city-vs-crystal-palace-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1126929.html", + "pubDate": "Fri, 15 Dec 2023 14:32:44 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-12-15T14:32:44+00:00", + "content": "

Eagles head north looking for upset on rough run of form

", + "contentSnippet": "Eagles head north looking for upset on rough run of form", + "guid": "b1126929", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:32:44.000Z" + }, + { + "creator": "Dom Smith", + "date": "2023-12-15T14:32:07+00:00", + "title": "Mikel Arteta praises 'really good process' after Arsenal boss escapes touchline ban", + "link": "https://www.standard.co.uk/sport/football/mikel-arteta-arsenal-fc-fa-charge-b1127278.html", + "pubDate": "Fri, 15 Dec 2023 14:32:07 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2023-12-15T14:32:07+00:00", + "content": "

Arteta was cleared of wrongdoing on Thursday and will not face any punishment

", + "contentSnippet": "Arteta was cleared of wrongdoing on Thursday and will not face any punishment", + "guid": "b1127278", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:32:07.000Z" + }, + { + "creator": "Craig Paton", + "date": "2023-12-15T14:29:43+00:00", + "title": "Amber weather warning forecasts heavy rain for north-west Scotland", + "link": "https://www.standard.co.uk/news/environment/met-office-scotland-highlands-police-scotland-b1127281.html", + "pubDate": "Fri, 15 Dec 2023 14:29:43 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2023-12-15T14:29:43+00:00", + "content": "Those travelling in the area were asked to consider if the trip was necessary.", + "contentSnippet": "Those travelling in the area were asked to consider if the trip was necessary.", + "guid": "b1127281", + "categories": ["Environment", "News"], + "isoDate": "2023-12-15T14:29:43.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2023-12-15T14:29:32+00:00", + "title": "Chelsea XI vs Sheffield United: Nunku debut, predicted lineup, confirmed team news, injury latest", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-xi-vs-sheffield-united-nkunku-debut-predicted-lineup-confirmed-team-news-injury-latest-2023-premier-league-b1127255.html", + "pubDate": "Fri, 15 Dec 2023 14:29:32 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2023-12-15T14:29:32+00:00", + "content": "

The Blues could be without eight players for the visit of the Premier League's bottom club.

", + "contentSnippet": "The Blues could be without eight players for the visit of the Premier League's bottom club.", + "guid": "b1127255", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:29:32.000Z" + }, + { + "creator": "Alex Young", + "date": "2023-12-15T14:26:55+00:00", + "title": "Chelsea vs Sheffield United: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-vs-sheffield-united-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-b1126700.html", + "pubDate": "Fri, 15 Dec 2023 14:26:55 GMT", + "dc:creator": "Alex Young", + "dc:date": "2023-12-15T14:26:55+00:00", + "content": "

The Blues and the Blades test their equally miserable recent form against each other at Stamford Bridge

", + "contentSnippet": "The Blues and the Blades test their equally miserable recent form against each other at Stamford Bridge", + "guid": "b1126700", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T14:26:55.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-12-15T14:26:14+00:00", + "title": "Emmerdale star Steve Halliwell dies aged 77", + "link": "https://www.standard.co.uk/showbiz/steve-halliwell-dead-emmerdale-zak-dingle-itv-b1127265.html", + "pubDate": "Fri, 15 Dec 2023 14:26:14 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-12-15T14:26:14+00:00", + "content": "

The actor made his first appearance on the ITV serial drama in October 1994

", + "contentSnippet": "The actor made his first appearance on the ITV serial drama in October 1994", + "guid": "b1127265", + "categories": ["Showbiz"], + "isoDate": "2023-12-15T14:26:14.000Z" + }, + { + "creator": "Jon Weeks", + "date": "2023-12-15T14:25:17+00:00", + "title": "Baldur's Gate 3 tops Bafta Game Awards nominations - Tech & Science Daily Podcast", + "link": "https://www.standard.co.uk/comment/podcasts/baldurs-gate-3-bafta-game-awards-nominations-b1127242.html", + "pubDate": "Fri, 15 Dec 2023 14:25:17 GMT", + "dc:creator": "Jon Weeks", + "dc:date": "2023-12-15T14:25:17+00:00", + "content": "

All the stories from Friday's episode of the Tech & Science Daily podcast.

", + "contentSnippet": "All the stories from Friday's episode of the Tech & Science Daily podcast.", + "guid": "b1127242", + "categories": ["Podcasts", "Comment"], + "isoDate": "2023-12-15T14:25:17.000Z" + }, + { + "creator": "By Grinne N. Aodha", + "date": "2023-12-15T14:23:49+00:00", + "title": "Minister fails to clarify if cut in Ukraine support could make more homeless", + "link": "https://www.standard.co.uk/news/uk/government-ukraine-ambassador-cabinet-european-b1127279.html", + "pubDate": "Fri, 15 Dec 2023 14:23:49 GMT", + "dc:creator": "By Grinne N. Aodha", + "dc:date": "2023-12-15T14:23:49+00:00", + "content": "Darragh O\u2019Brien said that the Government was \u2018working as a collective\u2019 on the issue.", + "contentSnippet": "Darragh O\u2019Brien said that the Government was \u2018working as a collective\u2019 on the issue.", + "guid": "b1127279", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T14:23:49.000Z" + }, + { + "creator": "Neil Lancefield", + "date": "2023-12-15T14:23:00+00:00", + "title": "Breaking down on hard shoulder-free smart motorways is three times more risky", + "link": "https://www.standard.co.uk/news/uk/rishi-sunak-england-ksi-m25-smart-b1127165.html", + "pubDate": "Fri, 15 Dec 2023 14:23:00 GMT", + "dc:creator": "Neil Lancefield", + "dc:date": "2023-12-15T14:23:00+00:00", + "content": "Fourteen of the 80 motorway deaths in England in 2021 happened on sections without a permanent hard shoulder.", + "contentSnippet": "Fourteen of the 80 motorway deaths in England in 2021 happened on sections without a permanent hard shoulder.", + "guid": "b1127165", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T14:23:00.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-12-15T14:22:28+00:00", + "title": "Imelda Staunton on playing the late Queen in The Crown: \u2018It felt very present\u2019", + "link": "https://www.standard.co.uk/showbiz/imelda-staunton-netflix-the-crown-queen-elizabeth-ending-b1127199.html", + "pubDate": "Fri, 15 Dec 2023 14:22:28 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-12-15T14:22:28+00:00", + "content": "The veteran actress portrays the former monarch in the final two series of the hit Netflix royal drama.", + "contentSnippet": "The veteran actress portrays the former monarch in the final two series of the hit Netflix royal drama.", + "guid": "b1127199", + "categories": ["Showbiz"], + "isoDate": "2023-12-15T14:22:28.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-12-15T14:19:13+00:00", + "title": "England collapse as India build 478-run lead on day two of Mumbai Test", + "link": "https://www.standard.co.uk/sport/cricket/india-vs-england-women-cricket-day-two-b1127276.html", + "pubDate": "Fri, 15 Dec 2023 14:19:13 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-12-15T14:19:13+00:00", + "content": "

Only Nat Sciver-Brunt managed more than 20 with the bat on another tough day in Mumbai

", + "contentSnippet": "Only Nat Sciver-Brunt managed more than 20 with the bat on another tough day in Mumbai", + "guid": "b1127276", + "categories": ["Cricket", "Sport"], + "isoDate": "2023-12-15T14:19:13.000Z" + }, + { + "creator": "Ross Lydall", + "date": "2023-12-15T14:13:40+00:00", + "title": "'Boris buses' slammed for poor green credentials to be used on Sadiq Khan's Superloop route", + "link": "https://www.standard.co.uk/news/london/superloop-boris-bus-sadiq-khan-london-routemasters-b1127201.html", + "pubDate": "Fri, 15 Dec 2023 14:13:40 GMT", + "dc:creator": "Ross Lydall", + "dc:date": "2023-12-15T14:13:40+00:00", + "content": "

City Hall said on Friday that all buses on the SL3 would be \"Ulez compliant euro VI hybrid buses\"

", + "contentSnippet": "City Hall said on Friday that all buses on the SL3 would be \"Ulez compliant euro VI hybrid buses\"", + "guid": "b1127201", + "categories": ["London", "News"], + "isoDate": "2023-12-15T14:13:40.000Z" + }, + { + "creator": "Vicky Jessop", + "date": "2023-12-15T14:07:42+00:00", + "title": "BAFTA Games Awards 2024 longlist: Baldur's Gate 3 and Alan Wake II lead the pack", + "link": "https://www.standard.co.uk/culture/gaming/bafta-games-awards-2024-baldurs-gate-3-alan-wake-2-b1127051.html", + "pubDate": "Fri, 15 Dec 2023 14:07:42 GMT", + "dc:creator": "Vicky Jessop", + "dc:date": "2023-12-15T14:07:42+00:00", + "content": "

Sixty games have been put forward for what will be BAFTA Games 20th anniversary year

", + "contentSnippet": "Sixty games have been put forward for what will be BAFTA Games 20th anniversary year", + "guid": "b1127051", + "categories": ["Gaming", "Culture"], + "isoDate": "2023-12-15T14:07:42.000Z" + }, + { + "creator": "Bill McLoughlin", + "date": "2023-12-15T14:04:30+00:00", + "title": "Denmark widens investigation over Europe terror plot after 'Hamas members' arrested in Germany", + "link": "https://www.standard.co.uk/news/world/hamas-germany-denmark-terrorism-middle-east-b1127256.html", + "pubDate": "Fri, 15 Dec 2023 14:04:30 GMT", + "dc:creator": "Bill McLoughlin", + "dc:date": "2023-12-15T14:04:30+00:00", + "content": "

Two suspects are being held in Denmark and four others are the target of a terror investigation

", + "contentSnippet": "Two suspects are being held in Denmark and four others are the target of a terror investigation", + "guid": "b1127256", + "categories": ["World", "News"], + "isoDate": "2023-12-15T14:04:30.000Z" + }, + { + "creator": "Tracey Emin", + "date": "2023-12-15T14:04:00+00:00", + "title": "OPINION - Tracey Emin: 'I was away from home, alone and in unbearable pain. Then I realised I\u2019d shit myself'", + "link": "https://www.standard.co.uk/comment/tracey-emin-pain-lover-relationship-cancer-death-b1127207.html", + "pubDate": "Fri, 15 Dec 2023 14:04:00 GMT", + "dc:creator": "Tracey Emin", + "dc:date": "2023-12-15T14:04:00+00:00", + "content": "

This week I cried a few times. The first time was strangely unexpected. I was talking to the person I love when something in me snapped and I realised I was thousands of miles away. I wanted them to jump through the screen of my phone and hold me.

", + "contentSnippet": "This week I cried a few times. The first time was strangely unexpected. I was talking to the person I love when something in me snapped and I realised I was thousands of miles away. I wanted them to jump through the screen of my phone and hold me.", + "guid": "b1127207", + "categories": ["Comment"], + "isoDate": "2023-12-15T14:04:00.000Z" + }, + { + "creator": "Max McLean", + "date": "2023-12-15T13:58:16+00:00", + "title": "Christmas comes early for \u00a313m lottery winner", + "link": "https://www.standard.co.uk/news/uk/lotto-b1127269.html", + "pubDate": "Fri, 15 Dec 2023 13:58:16 GMT", + "dc:creator": "Max McLean", + "dc:date": "2023-12-15T13:58:16+00:00", + "content": "\u2018It\u2019s even more magical in the lead-up to Christmas,\u2019 said Andy Carter, senior winners\u2019 advisor at the National Lottery.", + "contentSnippet": "\u2018It\u2019s even more magical in the lead-up to Christmas,\u2019 said Andy Carter, senior winners\u2019 advisor at the National Lottery.", + "guid": "b1127269", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T13:58:16.000Z" + }, + { + "creator": "Tom Wilkinson", + "date": "2023-12-15T13:57:16+00:00", + "title": "Teacher\u2019s death by escaped cow a \u2018salutary lesson\u2019 for farmers, judge says", + "link": "https://www.standard.co.uk/news/crime/newcastle-crown-court-teacher-northumberland-son-ashtonunderlyne-b1127270.html", + "pubDate": "Fri, 15 Dec 2023 13:57:16 GMT", + "dc:creator": "Tom Wilkinson", + "dc:date": "2023-12-15T13:57:16+00:00", + "content": "Marian Clode, 61, was tossed over a gate by a cow which charged her while on a walk in Northumberland in 2016.", + "contentSnippet": "Marian Clode, 61, was tossed over a gate by a cow which charged her while on a walk in Northumberland in 2016.", + "guid": "b1127270", + "categories": ["Crime", "News"], + "isoDate": "2023-12-15T13:57:16.000Z" + }, + { + "creator": "Carl Markham", + "date": "2023-12-15T13:55:18+00:00", + "title": "Manchester United problems 'not important' to Jurgen Klopp as Liverpool look to inflict more damage", + "link": "https://www.standard.co.uk/sport/football/liverpool-fc-vs-man-united-latest-news-premier-league-2023-b1127268.html", + "pubDate": "Fri, 15 Dec 2023 13:55:18 GMT", + "dc:creator": "Carl Markham", + "dc:date": "2023-12-15T13:55:18+00:00", + "content": "

Red Devils were humbled on their last trip to Anfield

", + "contentSnippet": "Red Devils were humbled on their last trip to Anfield", + "guid": "b1127268", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T13:55:18.000Z" + }, + { + "creator": "Tristan Kirk", + "date": "2023-12-15T13:55:09+00:00", + "title": "Where\u2019s the justice? Heart-rending letters from vulnerable are ignored under 'broken' court system", + "link": "https://www.standard.co.uk/news/uk/single-justice-procedure-letters-ignored-court-system-uk-ministry-of-justice-b1127227.html", + "pubDate": "Fri, 15 Dec 2023 13:55:09 GMT", + "dc:creator": "Tristan Kirk", + "dc:date": "2023-12-15T13:55:09+00:00", + "content": "

Standard investigation reveals appeals from the vulnerable and elderly not routinely looked at by prosecutors under controversial single justice procedure

", + "contentSnippet": "Standard investigation reveals appeals from the vulnerable and elderly not routinely looked at by prosecutors under controversial single justice procedure", + "guid": "b1127227", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T13:55:09.000Z" + }, + { + "creator": "Maryam Kara", + "date": "2023-12-15T13:52:22+00:00", + "title": "What are engineered stone bench tops and why is Australia banning them?", + "link": "https://www.standard.co.uk/news/world/engineered-stone-bench-tops-australia-ban-b1127174.html", + "pubDate": "Fri, 15 Dec 2023 13:52:22 GMT", + "dc:creator": "Maryam Kara", + "dc:date": "2023-12-15T13:52:22+00:00", + "content": "

Breathing in large amounts of silica dust from manufacturing and fitting them can be extremely damaging

", + "contentSnippet": "Breathing in large amounts of silica dust from manufacturing and fitting them can be extremely damaging", + "guid": "b1127174", + "categories": ["World", "News"], + "isoDate": "2023-12-15T13:52:22.000Z" + }, + { + "creator": "Callum Parke", + "date": "2023-12-15T13:50:12+00:00", + "title": "Case of double-killer who committed third murder while on licence reviewed", + "link": "https://www.standard.co.uk/news/crime/nottinghamshire-worksop-nottingham-crown-court-b1127267.html", + "pubDate": "Fri, 15 Dec 2023 13:50:12 GMT", + "dc:creator": "Callum Parke", + "dc:date": "2023-12-15T13:50:12+00:00", + "content": "The Probation Service wants to see if lessons can be learned from the case of Lawrence Bierton, who killed Pauline Quinn while on licence.", + "contentSnippet": "The Probation Service wants to see if lessons can be learned from the case of Lawrence Bierton, who killed Pauline Quinn while on licence.", + "guid": "b1127267", + "categories": ["Crime", "News"], + "isoDate": "2023-12-15T13:50:12.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-12-15T13:48:49+00:00", + "title": "Manchester United XI vs Liverpool: Harry Maguire injury latest, predicted lineup and confirmed team news", + "link": "https://www.standard.co.uk/sport/football/man-utd-xi-vs-liverpool-fc-harry-maguire-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1126889.html", + "pubDate": "Fri, 15 Dec 2023 13:48:49 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-12-15T13:48:49+00:00", + "content": "

Illness and injuries severely restricting Red Devils ahead of derby

", + "contentSnippet": "Illness and injuries severely restricting Red Devils ahead of derby", + "guid": "b1126889", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T13:48:49.000Z" + }, + { + "creator": "Sarah Ward", + "date": "2023-12-15T13:43:55+00:00", + "title": "Students saddle up to learn how to ride on \u2018RoboCob\u2019", + "link": "https://www.standard.co.uk/news/tech/students-west-lothian-b1127264.html", + "pubDate": "Fri, 15 Dec 2023 13:43:55 GMT", + "dc:creator": "Sarah Ward", + "dc:date": "2023-12-15T13:43:55+00:00", + "content": "A \u00a3100,000 horse simulator has been unveiled at Scotland\u2019s Rural College in West Lothian.", + "contentSnippet": "A \u00a3100,000 horse simulator has been unveiled at Scotland\u2019s Rural College in West Lothian.", + "guid": "b1127264", + "categories": ["Tech", "News"], + "isoDate": "2023-12-15T13:43:55.000Z" + }, + { + "creator": "Lydia Chantler-Hicks", + "date": "2023-12-15T13:30:34+00:00", + "title": "Ballistic missile fired from rebel-held Yemen strikes cargo ship in Red Sea", + "link": "https://www.standard.co.uk/news/world/ballistic-missile-yemen-red-sea-cargo-ship-israel-hamas-gaza-war-b1127233.html", + "pubDate": "Fri, 15 Dec 2023 13:30:34 GMT", + "dc:creator": "Lydia Chantler-Hicks", + "dc:date": "2023-12-15T13:30:34+00:00", + "content": "

The incidents further escalate a campaign by Yemen's Iranian-backed Houthi rebels

", + "contentSnippet": "The incidents further escalate a campaign by Yemen's Iranian-backed Houthi rebels", + "guid": "b1127233", + "categories": ["World", "News"], + "isoDate": "2023-12-15T13:30:34.000Z" + }, + { + "creator": "Claire Hayhurst", + "date": "2023-12-15T13:27:51+00:00", + "title": "Flowers laid at industrial estate where person died following explosion and fire", + "link": "https://www.standard.co.uk/news/uk/flowers-south-wales-police-emergency-services-cctv-b1127261.html", + "pubDate": "Fri, 15 Dec 2023 13:27:51 GMT", + "dc:creator": "Claire Hayhurst", + "dc:date": "2023-12-15T13:27:51+00:00", + "content": "South Wales Police declared a major incident after the incident at the two-storey building.", + "contentSnippet": "South Wales Police declared a major incident after the incident at the two-storey building.", + "guid": "b1127261", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T13:27:51.000Z" + }, + { + "creator": "Lola Christina Alao", + "date": "2023-12-15T13:24:39+00:00", + "title": "Two rare parrots hatch at Chester zoo in 'pivotal moment' for future of the species", + "link": "https://www.standard.co.uk/news/uk/chester-zoo-rare-parrots-hatch-lorikeets-b1127249.html", + "pubDate": "Fri, 15 Dec 2023 13:24:39 GMT", + "dc:creator": "Lola Christina Alao", + "dc:date": "2023-12-15T13:24:39+00:00", + "content": "

The species is listed as endangered by the IUCN and BirdLife International

", + "contentSnippet": "The species is listed as endangered by the IUCN and BirdLife International", + "guid": "b1127249", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T13:24:39.000Z" + }, + { + "creator": "Jitendra Joshi", + "date": "2023-12-15T13:23:07+00:00", + "title": "Rishi Sunak to talk illegal migration with premiers of Italy and Albania after latest Channel tragedy", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-migrant-channel-death-small-boats-italy-albania-migration-b1127246.html", + "pubDate": "Fri, 15 Dec 2023 13:23:07 GMT", + "dc:creator": "Jitendra Joshi", + "dc:date": "2023-12-15T13:23:07+00:00", + "content": "

The Rome trip comes after a woman died in the Channel as a boat sank on Friday morning

", + "contentSnippet": "The Rome trip comes after a woman died in the Channel as a boat sank on Friday morning", + "guid": "b1127246", + "categories": ["Politics", "News"], + "isoDate": "2023-12-15T13:23:07.000Z" + }, + { + "creator": "Vicky Jessop", + "date": "2023-12-15T13:22:50+00:00", + "title": "The Society of the Snow: how 16 men survived an Andes plane crash that should have killed them", + "link": "https://www.standard.co.uk/culture/film/society-of-the-snow-andes-plane-crash-netflix-true-story-b1126797.html", + "pubDate": "Fri, 15 Dec 2023 13:22:50 GMT", + "dc:creator": "Vicky Jessop", + "dc:date": "2023-12-15T13:22:50+00:00", + "content": "

They survived for more than two months in the depths of winter. Now their story is being made into a film

", + "contentSnippet": "They survived for more than two months in the depths of winter. Now their story is being made into a film", + "guid": "b1126797", + "categories": ["Film", "Culture"], + "isoDate": "2023-12-15T13:22:50.000Z" + }, + { + "creator": "Neil Lancefield", + "date": "2023-12-15T13:22:30+00:00", + "title": "Two people in hospital after jumping from windows to escape e-bike house fire", + "link": "https://www.standard.co.uk/news/london/ebike-fire-hospital-london-fire-brigade-hackney-b1127250.html", + "pubDate": "Fri, 15 Dec 2023 13:22:30 GMT", + "dc:creator": "Neil Lancefield", + "dc:date": "2023-12-15T13:22:30+00:00", + "content": "

Most of the three-storey home in Hackney, east London was destroyed by the blaze, London Fire Brigade (LFB) said

", + "contentSnippet": "Most of the three-storey home in Hackney, east London was destroyed by the blaze, London Fire Brigade (LFB) said", + "guid": "b1127250", + "categories": ["London", "News"], + "isoDate": "2023-12-15T13:22:30.000Z" + }, + { + "creator": "Callum Parke", + "date": "2023-12-15T13:14:48+00:00", + "title": "Ex-partner guilty of murdering Sarah Henshaw and dumping her body near lay-by", + "link": "https://www.standard.co.uk/news/crime/derbyshire-chesterfield-phone-data-ilkeston-derby-crown-court-b1127252.html", + "pubDate": "Fri, 15 Dec 2023 13:14:48 GMT", + "dc:creator": "Callum Parke", + "dc:date": "2023-12-15T13:14:48+00:00", + "content": "Jurors took just over three hours to convict Darren Hall of murder.", + "contentSnippet": "Jurors took just over three hours to convict Darren Hall of murder.", + "guid": "b1127252", + "categories": ["Crime", "News"], + "isoDate": "2023-12-15T13:14:48.000Z" + }, + { + "creator": "Jacob Phillips", + "date": "2023-12-15T13:08:07+00:00", + "title": "Plans to cut over 100 seats from Curzon Mayfair and launch dine-and-watch tipped for approval", + "link": "https://www.standard.co.uk/news/london/westminster-city-council-curzon-mayfair-b1127203.html", + "pubDate": "Fri, 15 Dec 2023 13:08:07 GMT", + "dc:creator": "Jacob Phillips", + "dc:date": "2023-12-15T13:08:07+00:00", + "content": "

Plans to cut over 100 seats from \u201cone of London\u2019s cultural gems\u201d have been recommended by council officers

", + "contentSnippet": "Plans to cut over 100 seats from \u201cone of London\u2019s cultural gems\u201d have been recommended by council officers", + "guid": "b1127203", + "categories": ["London", "News"], + "isoDate": "2023-12-15T13:08:07.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2023-12-15T13:05:04+00:00", + "title": "PlayStation Plus games for December include GTA 5", + "link": "https://www.standard.co.uk/culture/gaming/playstation-plus-games-new-list-december-2023-gta-5-b1127245.html", + "pubDate": "Fri, 15 Dec 2023 13:05:04 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2023-12-15T13:05:04+00:00", + "content": "

A Final Fantasy spinoff from last year is also among the newcomers to the gaming service

", + "contentSnippet": "A Final Fantasy spinoff from last year is also among the newcomers to the gaming service", + "guid": "b1127245", + "categories": ["Gaming", "Culture"], + "isoDate": "2023-12-15T13:05:04.000Z" + }, + { + "creator": "Tristan Kirk", + "date": "2023-12-15T13:02:19+00:00", + "title": "Prince Harry calls out Piers Morgan and wants fresh phone hacking probe after court victory", + "link": "https://www.standard.co.uk/news/uk/prince-harry-phone-hacking-mirror-piers-morgan-high-court-police-crime-b1127237.html", + "pubDate": "Fri, 15 Dec 2023 13:02:19 GMT", + "dc:creator": "Tristan Kirk", + "dc:date": "2023-12-15T13:02:19+00:00", + "content": "

Prince Harry said he has \"slayed a dragon\" after High Court victory over phone hacking

", + "contentSnippet": "Prince Harry said he has \"slayed a dragon\" after High Court victory over phone hacking", + "guid": "b1127237", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T13:02:19.000Z" + }, + { + "creator": "George Flood", + "date": "2023-12-15T13:00:55+00:00", + "title": "Man City injury update: Erling Haaland, Kevin De Bruyne and Jeremy Doku latest news and return dates", + "link": "https://www.standard.co.uk/sport/football/man-city-injury-update-erling-haaland-de-bruyne-doku-latest-news-return-dates-b1126654.html", + "pubDate": "Fri, 15 Dec 2023 13:00:55 GMT", + "dc:creator": "George Flood", + "dc:date": "2023-12-15T13:00:55+00:00", + "content": "

Erling Haaland could miss another two matches with a foot injury as the Club World Cup looms

", + "contentSnippet": "Erling Haaland could miss another two matches with a foot injury as the Club World Cup looms", + "guid": "b1126654", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T13:00:55.000Z" + }, + { + "creator": "Pa Reporters", + "date": "2023-12-15T12:58:56+00:00", + "title": "Migrant dies and second in critical condition after boat sinks in Channel", + "link": "https://www.standard.co.uk/news/politics/government-french-calais-rishi-sunak-people-b1127251.html", + "pubDate": "Fri, 15 Dec 2023 12:58:56 GMT", + "dc:creator": "Pa Reporters", + "dc:date": "2023-12-15T12:58:56+00:00", + "content": "One person could not be resuscitated and a second was flown by helicopter to a Calais hospital in a life-threatening condition.", + "contentSnippet": "One person could not be resuscitated and a second was flown by helicopter to a Calais hospital in a life-threatening condition.", + "guid": "b1127251", + "categories": ["Politics", "News"], + "isoDate": "2023-12-15T12:58:56.000Z" + }, + { + "creator": "Juliet Kinsman", + "date": "2023-12-15T12:55:25+00:00", + "title": "OPINION - Despite COP28's climate hypocrisy, it taught us more about sustainable travel", + "link": "https://www.standard.co.uk/comment/cop28-sustainable-travel-marshall-islands-b1127087.html", + "pubDate": "Fri, 15 Dec 2023 12:55:25 GMT", + "dc:creator": "Juliet Kinsman", + "dc:date": "2023-12-15T12:55:25+00:00", + "content": "

Was Dubai\u2019s Sustainability Disneyland a COP out? Not quite: on the fringes, there were voices making persuasive cases for sustainable travel

", + "contentSnippet": "Was Dubai\u2019s Sustainability Disneyland a COP out? Not quite: on the fringes, there were voices making persuasive cases for sustainable travel", + "guid": "b1127087", + "categories": ["Comment"], + "isoDate": "2023-12-15T12:55:25.000Z" + }, + { + "creator": "Lizzie Edmonds", + "date": "2023-12-15T12:50:06+00:00", + "title": "Ncuti Gatwa says he's getting to know 'passionate' Dr Who fanbase ahead of anticipated Christmas special", + "link": "https://www.standard.co.uk/showbiz/ncuti-gatwa-dr-who-christmas-special-graham-norton-netflix-b1127229.html", + "pubDate": "Fri, 15 Dec 2023 12:50:06 GMT", + "dc:creator": "Lizzie Edmonds", + "dc:date": "2023-12-15T12:50:06+00:00", + "content": "

Gatwa, 31, is the fifteenth Doctor in the popular BBC series

", + "contentSnippet": "Gatwa, 31, is the fifteenth Doctor in the popular BBC series", + "guid": "b1127229", + "categories": ["Showbiz"], + "isoDate": "2023-12-15T12:50:06.000Z" + }, + { + "creator": "Lauren Gilmour", + "date": "2023-12-15T12:48:37+00:00", + "title": "Evidence on abuse in young offender institutions \u2018harrowing\u2019, inquiry told", + "link": "https://www.standard.co.uk/news/crime/scottish-prison-service-scottish-children-edinburgh-scottish-government-b1127253.html", + "pubDate": "Fri, 15 Dec 2023 12:48:37 GMT", + "dc:creator": "Lauren Gilmour", + "dc:date": "2023-12-15T12:48:37+00:00", + "content": "Theresa Medhurst, chief executive of the Scottish Prison Service, appeared before the Scottish Child Abuse Inquiry on Friday.", + "contentSnippet": "Theresa Medhurst, chief executive of the Scottish Prison Service, appeared before the Scottish Child Abuse Inquiry on Friday.", + "guid": "b1127253", + "categories": ["Crime", "News"], + "isoDate": "2023-12-15T12:48:37.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-12-15T12:43:08+00:00", + "title": "Man City XI vs Crystal Palace: Erling Haaland injury latest, predicted lineup and confirmed team news", + "link": "https://www.standard.co.uk/sport/football/man-city-xi-vs-crystal-palace-erling-haaland-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1126871.html", + "pubDate": "Fri, 15 Dec 2023 12:43:08 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-12-15T12:43:08+00:00", + "content": "

The star striker continues to battle a foot injury

", + "contentSnippet": "The star striker continues to battle a foot injury", + "guid": "b1126871", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T12:43:08.000Z" + }, + { + "creator": "Patrick Daly", + "date": "2023-12-15T12:38:13+00:00", + "title": "JSO protesters in Christmas carol stunt outside Sir Keir Starmer\u2019s home", + "link": "https://www.standard.co.uk/news/politics/keir-starmer-labour-london-prime-minister-twitter-b1127247.html", + "pubDate": "Fri, 15 Dec 2023 12:38:13 GMT", + "dc:creator": "Patrick Daly", + "dc:date": "2023-12-15T12:38:13+00:00", + "content": "The homes of politicians have traditionally been seen as off-limits as targets for protests.", + "contentSnippet": "The homes of politicians have traditionally been seen as off-limits as targets for protests.", + "guid": "b1127247", + "categories": ["Politics", "News"], + "isoDate": "2023-12-15T12:38:13.000Z" + }, + { + "creator": "Josh Payne", + "date": "2023-12-15T12:35:06+00:00", + "title": "Body recovered in search for missing mother-of-three Gaynor Lord", + "link": "https://www.standard.co.uk/news/uk/norfolk-police-norwich-b1127243.html", + "pubDate": "Fri, 15 Dec 2023 12:35:06 GMT", + "dc:creator": "Josh Payne", + "dc:date": "2023-12-15T12:35:06+00:00", + "content": "Norfolk Police said Ms Lord\u2019s family have been informed.", + "contentSnippet": "Norfolk Police said Ms Lord\u2019s family have been informed.", + "guid": "b1127243", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T12:35:06.000Z" + }, + { + "creator": "David Smyth", + "date": "2023-12-15T12:31:50+00:00", + "title": "The best (and the worst) Christmas singles of 2023: from Jorja Smith to Jason Derulo ", + "link": "https://www.standard.co.uk/culture/music/best-christmas-songs-2023-singles-jorja-smith-boygenius-b1126805.html", + "pubDate": "Fri, 15 Dec 2023 12:31:50 GMT", + "dc:creator": "David Smyth", + "dc:date": "2023-12-15T12:31:50+00:00", + "content": "

If you fancy a break from Wham! we've got you covered...

", + "contentSnippet": "If you fancy a break from Wham! we've got you covered...", + "guid": "b1126805", + "categories": ["Music", "Culture"], + "isoDate": "2023-12-15T12:31:50.000Z" + }, + { + "creator": "Josh Payne", + "date": "2023-12-15T12:28:02+00:00", + "title": "Police divers remove large black bag from river during hunt for Gaynor Lord", + "link": "https://www.standard.co.uk/news/uk/norwich-norfolk-police-cctv-police-bbc-b1127226.html", + "pubDate": "Fri, 15 Dec 2023 12:28:02 GMT", + "dc:creator": "Josh Payne", + "dc:date": "2023-12-15T12:28:02+00:00", + "content": "An orange buoy was placed on a specific spot in the river on Friday.", + "contentSnippet": "An orange buoy was placed on a specific spot in the river on Friday.", + "guid": "b1127226", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T12:28:02.000Z" + }, + { + "creator": "Anna Wise", + "date": "2023-12-15T12:22:43+00:00", + "title": "More than a quarter of people worried about affording Christmas \u2013 ONS", + "link": "https://www.standard.co.uk/business/money/more-than-a-quarter-of-people-worried-about-affording-christmas-ons-b1127240.html", + "pubDate": "Fri, 15 Dec 2023 12:22:43 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2023-12-15T12:22:43+00:00", + "content": "Some 28% reported feeling worried about being able to afford the things they planned to do this Christmas, the Office for National Statistics found.", + "contentSnippet": "Some 28% reported feeling worried about being able to afford the things they planned to do this Christmas, the Office for National Statistics found.", + "guid": "b1127240", + "categories": ["Money", "Business"], + "isoDate": "2023-12-15T12:22:43.000Z" + }, + { + "creator": "Pa High Court Staff", + "date": "2023-12-15T12:18:41+00:00", + "title": "Duke of Sussex hails phone hacking ruling as \u2018great day for truth\u2019", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/high-court-duke-of-sussex-justice-nikki-sanderson-people-b1127231.html", + "pubDate": "Fri, 15 Dec 2023 12:18:41 GMT", + "dc:creator": "Pa High Court Staff", + "dc:date": "2023-12-15T12:18:41+00:00", + "content": "Harry sued Mirror Group Newspapers at the High Court.", + "contentSnippet": "Harry sued Mirror Group Newspapers at the High Court.", + "guid": "b1127231", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-12-15T12:18:41.000Z" + }, + { + "creator": "Harry Stedman", + "date": "2023-12-15T12:17:21+00:00", + "title": "Migrant dead and another in a critical condition after boat sinks in Channel", + "link": "https://www.standard.co.uk/news/politics/french-english-channel-people-rishi-sunak-government-b1127146.html", + "pubDate": "Fri, 15 Dec 2023 12:17:21 GMT", + "dc:creator": "Harry Stedman", + "dc:date": "2023-12-15T12:17:21+00:00", + "content": "A small boat carrying more than 60 passengers got into difficulty around five miles off the northern French coast on Thursday night. ", + "contentSnippet": "A small boat carrying more than 60 passengers got into difficulty around five miles off the northern French coast on Thursday night.", + "guid": "b1127146", + "categories": ["Politics", "News"], + "isoDate": "2023-12-15T12:17:21.000Z" + }, + { + "creator": "Peter Allen,Jacob Phillips,Josh Salisbury and John Dunne", + "date": "2023-12-15T12:16:39+00:00", + "title": " British boy Alex Batty found in France after 2017 disappearance to return to UK 'as soon as possible'", + "link": "https://www.standard.co.uk/news/uk/alex-batty-missing-manchester-boy-france-spain-police-investigation-found-marbella-pyrenees-b1127025.html", + "pubDate": "Fri, 15 Dec 2023 12:16:39 GMT", + "dc:creator": "Peter Allen,Jacob Phillips,Josh Salisbury and John Dunne", + "dc:date": "2023-12-15T12:16:39+00:00", + "content": "

Family of teenager picked up by\u00a0lorry driver after 'walking in French mountains for days' say he had been 'brainwashed'

", + "contentSnippet": "Family of teenager picked up by\u00a0lorry driver after 'walking in French mountains for days' say he had been 'brainwashed'", + "guid": "b1127025", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T12:16:39.000Z" + }, + { + "creator": "Tristan Kirk", + "date": "2023-12-15T12:12:21+00:00", + "title": "Prince Harry wins phone hacking claim against Mirror Group Newspapers", + "link": "https://www.standard.co.uk/news/uk/prince-harry-phone-hacking-claim-mirror-group-ruling-b1127136.html", + "pubDate": "Fri, 15 Dec 2023 12:12:21 GMT", + "dc:creator": "Tristan Kirk", + "dc:date": "2023-12-15T12:12:21+00:00", + "content": "

Mr Justice Fancourt ruled phone hacking happened at Mirror Group Newspapers from 1996 to 2011

", + "contentSnippet": "Mr Justice Fancourt ruled phone hacking happened at Mirror Group Newspapers from 1996 to 2011", + "guid": "b1127136", + "categories": ["UK", "News"], + "isoDate": "2023-12-15T12:12:21.000Z" + }, + { + "creator": "Evening Standard Comment", + "date": "2023-12-15T12:09:35+00:00", + "title": "OPINION - The Standard View: The court system is not serving justice well", + "link": "https://www.standard.co.uk/comment/single-justice-procedure-criminal-system-magistrates-prosecutors-b1127235.html", + "pubDate": "Fri, 15 Dec 2023 12:09:35 GMT", + "dc:creator": "Evening Standard Comment", + "dc:date": "2023-12-15T12:09:35+00:00", + "content": "

If justice delayed is justice denied, what of justice that takes place behind closed doors, with written appeals from vulnerable and elderly people left unread? An Evening Standard investigation has revealed the devastating impact of the single justice procedure (SJP), the fast-track court system used for low-level offences such as TV license prosecutions and not paying car tax.

", + "contentSnippet": "If justice delayed is justice denied, what of justice that takes place behind closed doors, with written appeals from vulnerable and elderly people left unread? An Evening Standard investigation has revealed the devastating impact of the single justice procedure (SJP), the fast-track court system used for low-level offences such as TV license prosecutions and not paying car tax.", + "guid": "b1127235", + "categories": ["Comment"], + "isoDate": "2023-12-15T12:09:35.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-12-15T12:09:31+00:00", + "title": "Ben Shephard and Cat Deeley to take over as co-hosts of This Morning \u2013 reports", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/phillip-schofield-cat-deeley-ben-shephard-holly-willoughby-patrick-kielty-b1127223.html", + "pubDate": "Fri, 15 Dec 2023 12:09:31 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-12-15T12:09:31+00:00", + "content": "Since Phillip Schofield and Holly Willoughby left, the ITV show has had a rotation of presenters.", + "contentSnippet": "Since Phillip Schofield and Holly Willoughby left, the ITV show has had a rotation of presenters.", + "guid": "b1127223", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-12-15T12:09:31.000Z" + }, + { + "creator": "Lisa McLoughlin ", + "date": "2023-12-15T12:08:26+00:00", + "title": "This Morning eyeing up Cat Deeley and Ben Shephard after Holly Willoughby and Phillip Schofield departures", + "link": "https://www.standard.co.uk/showbiz/this-morning-cat-deeley-ben-shephard-after-holly-willoughby-phillip-schofield-departures-b1127186.html", + "pubDate": "Fri, 15 Dec 2023 12:08:26 GMT", + "dc:creator": "Lisa McLoughlin ", + "dc:date": "2023-12-15T12:08:26+00:00", + "content": "

Schofield quit the show under a severe cloud in May and Willoughby stepped back three months later

", + "contentSnippet": "Schofield quit the show under a severe cloud in May and Willoughby stepped back three months later", + "guid": "b1127186", + "categories": ["Showbiz"], + "isoDate": "2023-12-15T12:08:26.000Z" + }, + { + "creator": "Sade The Astrology Vixen", + "date": "2023-12-15T12:05:19+00:00", + "title": "Your weekly horoscope by Sade The Astrology Vixen (15 - 21 December) ", + "link": "https://www.standard.co.uk/lifestyle/weekly-horoscope-astrology-15-21-december-b1127230.html", + "pubDate": "Fri, 15 Dec 2023 12:05:19 GMT", + "dc:creator": "Sade The Astrology Vixen", + "dc:date": "2023-12-15T12:05:19+00:00", + "content": "

What lies in store for you this week?

", + "contentSnippet": "What lies in store for you this week?", + "guid": "b1127230", + "categories": ["Lifestyle"], + "isoDate": "2023-12-15T12:05:19.000Z" + }, + { + "creator": "John Dunne", + "date": "2023-12-15T12:05:18+00:00", + "title": "Brixton Academy: Police appeal to identify 13 people at gig crush which killed two on anniversary of tragedy", + "link": "https://www.standard.co.uk/news/crime/brixton-academy-deaths-asake-concert-one-year-anniversary-police-investigation-rebecca-ikumelo-gaby-hutchinson-b1127140.html", + "pubDate": "Fri, 15 Dec 2023 12:05:18 GMT", + "dc:creator": "John Dunne", + "dc:date": "2023-12-15T12:05:18+00:00", + "content": "

Scotland Yard issues pictures of people they want to trace as families of two killed call for justice

", + "contentSnippet": "Scotland Yard issues pictures of people they want to trace as families of two killed call for justice", + "guid": "b1127140", + "categories": ["Crime", "News"], + "isoDate": "2023-12-15T12:05:18.000Z" + }, + { + "creator": "Jacob Phillips", + "date": "2023-12-15T12:03:32+00:00", + "title": "Just Stop Oil protesters threatened with arrests after singing 'climate-criminal' carols outside Keir Starmer\u2019s home", + "link": "https://www.standard.co.uk/news/london/keir-starmer-just-stop-oil-christmas-climate-carols-b1127220.html", + "pubDate": "Fri, 15 Dec 2023 12:03:32 GMT", + "dc:creator": "Jacob Phillips", + "dc:date": "2023-12-15T12:03:32+00:00", + "content": "

Police have arrested Just Stop Oil protesters 670 times since October 30, the climate protest group said

", + "contentSnippet": "Police have arrested Just Stop Oil protesters 670 times since October 30, the climate protest group said", + "guid": "b1127220", + "categories": ["London", "News"], + "isoDate": "2023-12-15T12:03:32.000Z" + }, + { + "creator": "Amy Francombe", + "date": "2023-12-15T12:00:52+00:00", + "title": "90s geek chic and the stylish return of Bayonetta glasses", + "link": "https://www.standard.co.uk/lifestyle/fashion/bayonetta-glasses-90s-geek-chic-office-wear-b1126167.html", + "pubDate": "Fri, 15 Dec 2023 12:00:52 GMT", + "dc:creator": "Amy Francombe", + "dc:date": "2023-12-15T12:00:52+00:00", + "content": "

The geeky Y2K silhouette is being reimagined by Gen Z in their new Bayonetta glasses says Amy Francombe

", + "contentSnippet": "The geeky Y2K silhouette is being reimagined by Gen Z in their new Bayonetta glasses says Amy Francombe", + "guid": "b1126167", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2023-12-15T12:00:52.000Z" + }, + { + "creator": "Dom Smith", + "date": "2023-12-15T12:00:28+00:00", + "title": "Marco Silva 'not worried' about Tosin Adarabioyo's future at Fulham despite contract stalemate", + "link": "https://www.standard.co.uk/sport/football/marco-silva-tosin-adarabioyo-fulham-transfer-news-contract-update-b1127225.html", + "pubDate": "Fri, 15 Dec 2023 12:00:28 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2023-12-15T12:00:28+00:00", + "content": "

Monaco were among the clubs pushing to sign the centre-back in the summer

", + "contentSnippet": "Monaco were among the clubs pushing to sign the centre-back in the summer", + "guid": "b1127225", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T12:00:28.000Z" + }, + { + "creator": "Nancy Durrant", + "date": "2023-12-15T12:00:18+00:00", + "title": "OPINION - Indhu Rubasingham: why she's the perfect choice for head of the National Theatre", + "link": "https://www.standard.co.uk/culture/theatre/indhu-rubasingham-director-national-theatre-boss-new-perfect-b1127048.html", + "pubDate": "Fri, 15 Dec 2023 12:00:18 GMT", + "dc:creator": "Nancy Durrant", + "dc:date": "2023-12-15T12:00:18+00:00", + "content": "

The outgoing director of the Kiln inherits a strong artistic legacy but the finances are a lot less fun

", + "contentSnippet": "The outgoing director of the Kiln inherits a strong artistic legacy but the finances are a lot less fun", + "guid": "b1127048", + "categories": ["Theatre", "Culture"], + "isoDate": "2023-12-15T12:00:18.000Z" + }, + { + "creator": "Mike Daw", + "date": "2023-12-15T12:00:00+00:00", + "title": "London's best Christmas menus that don't break the bank", + "link": "https://www.standard.co.uk/going-out/restaurants/christmas-cheap-london-menu-b1126273.html", + "pubDate": "Fri, 15 Dec 2023 12:00:00 GMT", + "dc:creator": "Mike Daw", + "dc:date": "2023-12-15T12:00:00+00:00", + "content": "

Celebrating Christmas doesn't have to cost the earth \u2014 sometimes, less really is more, says Mike Daw

", + "contentSnippet": "Celebrating Christmas doesn't have to cost the earth \u2014 sometimes, less really is more, says Mike Daw", + "guid": "b1126273", + "categories": ["Restaurants", "Going Out"], + "isoDate": "2023-12-15T12:00:00.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2023-12-15T11:59:16+00:00", + "title": "Tottenham: Ange Postecoglou confirms talks over early January signings", + "link": "https://www.standard.co.uk/sport/football/tottenham-transfer-news-postecoglou-january-signings-b1127224.html", + "pubDate": "Fri, 15 Dec 2023 11:59:16 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2023-12-15T11:59:16+00:00", + "content": "

Spurs are in the market for a new centre-back, and could add another attacker with Heung-min Son set to be missing for weeks

", + "contentSnippet": "Spurs are in the market for a new centre-back, and could add another attacker with Heung-min Son set to be missing for weeks", + "guid": "b1127224", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T11:59:16.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-12-15T11:57:15+00:00", + "title": "Edson Alvarez hails 'magic night' as West Ham star helps seal Europa League passage", + "link": "https://www.standard.co.uk/sport/football/alvarez-west-ham-latest-news-europa-league-2023-b1127206.html", + "pubDate": "Fri, 15 Dec 2023 11:57:15 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-12-15T11:57:15+00:00", + "content": "

Mexican opened account for the Hammers after successful first few months

", + "contentSnippet": "Mexican opened account for the Hammers after successful first few months", + "guid": "b1127206", + "categories": ["Football", "Sport"], + "isoDate": "2023-12-15T11:57:15.000Z" + }, + { + "creator": "Es Best", + "date": "2024-01-04T10:56:01+00:00", + "title": "Best tablet deals in the UK for January 2024: From iPads to Samsung Galaxy tablets", + "link": "https://www.standard.co.uk/shopping/esbest/deals/best-tablet-deals-apple-android-b999177.html", + "pubDate": "Thu, 04 Jan 2024 10:56:01 GMT", + "dc:creator": "Es Best", + "dc:date": "2024-01-04T10:56:01+00:00", + "content": "

Shop this month\u2019s best discounts on iPads, Microsoft and Android tablets

", + "contentSnippet": "Shop this month\u2019s best discounts on iPads, Microsoft and Android tablets", + "guid": "b999177", + "categories": ["Deals", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T10:56:01.000Z" + }, + { + "creator": "Maddy Mussen", + "date": "2024-01-04T10:56:01+00:00", + "title": "Pamela Anderson's makeup free era sees her become Proenza Schouler muse", + "link": "https://www.standard.co.uk/lifestyle/fashion/pamela-anderson-no-makeup-proenza-schoulder-barefaced-fashion-week-b1130259.html", + "pubDate": "Thu, 04 Jan 2024 10:56:01 GMT", + "dc:creator": "Maddy Mussen", + "dc:date": "2024-01-04T10:56:01+00:00", + "content": "

The barefaced Pam-aissance continues

", + "contentSnippet": "The barefaced Pam-aissance continues", + "guid": "b1130259", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2024-01-04T10:56:01.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-04T10:53:12+00:00", + "title": "Best alcohol deals for January from supermarkets and online shops", + "link": "https://www.standard.co.uk/shopping/esbest/deals/best-supermarket-alcohol-deals-a4431606.html", + "pubDate": "Thu, 04 Jan 2024 10:53:12 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-04T10:53:12+00:00", + "content": "

Your monthly roundup of boozy news, fresh launches and great discounts

", + "contentSnippet": "Your monthly roundup of boozy news, fresh launches and great discounts", + "guid": "a4431606", + "categories": ["Deals", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T10:53:12.000Z" + }, + { + "creator": "Tom Herbert and Nuray Bulbul", + "date": "2024-01-04T10:52:37+00:00", + "title": "Spring equinox: When is the first day of spring 2024 and what is the vernal equinox?", + "link": "https://www.standard.co.uk/news/uk/when-is-spring-first-day-vernal-equinox-uk-2024-a4096221.html", + "pubDate": "Thu, 04 Jan 2024 10:52:37 GMT", + "dc:creator": "Tom Herbert and Nuray Bulbul", + "dc:date": "2024-01-04T10:52:37+00:00", + "content": "

During these cold months, many people will be looking forward to the beginning of Spring

", + "contentSnippet": "During these cold months, many people will be looking forward to the beginning of Spring", + "guid": "a4096221", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T10:52:37.000Z" + }, + { + "creator": "Christian Adams", + "date": "2024-01-04T10:52:27+00:00", + "title": "OPINION - The Evening Standard political cartoon by Christian Adams", + "link": "https://www.standard.co.uk/comment/the-evening-standard-political-cartoon-by-christian-adams-a3530851.html", + "pubDate": "Thu, 04 Jan 2024 10:52:27 GMT", + "dc:creator": "Christian Adams", + "dc:date": "2024-01-04T10:52:27+00:00", + "content": "

To order prints or signed copies of any Evening Standard cartoon, call 0191 603 0178 or visit eveningstandard.newsprints.co.uk

", + "contentSnippet": "To order prints or signed copies of any Evening Standard cartoon, call 0191 603 0178 or visit eveningstandard.newsprints.co.uk", + "guid": "a3530851", + "categories": ["Comment"], + "isoDate": "2024-01-04T10:52:27.000Z" + }, + { + "creator": "John Dunne", + "date": "2024-01-04T10:51:52+00:00", + "title": "Luke Littler: Teenage sensation tipped to win millions after World Darts Championship final heartbreak", + "link": "https://www.standard.co.uk/news/uk/luke-littler-earnings-sponsorship-world-darts-championship-final-luke-humphreys-b1130278.html", + "pubDate": "Thu, 04 Jan 2024 10:51:52 GMT", + "dc:creator": "John Dunne", + "dc:date": "2024-01-04T10:51:52+00:00", + "content": "

The 16-year-old from Warrington captured the imagination of the public with his fairytale run to the final

", + "contentSnippet": "The 16-year-old from Warrington captured the imagination of the public with his fairytale run to the final", + "guid": "b1130278", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T10:51:52.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-04T10:50:06+00:00", + "title": "Tottenham: Richarlison set for huge chance that could define Spurs future", + "link": "https://www.standard.co.uk/sport/football/tottenham-richarlison-heung-min-son-b1130272.html", + "pubDate": "Thu, 04 Jan 2024 10:50:06 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-04T10:50:06+00:00", + "content": "

Stepping up without Heung-min Son could show Ange Postecoglou does not need long-term upgrade

", + "contentSnippet": "Stepping up without Heung-min Son could show Ange Postecoglou does not need long-term upgrade", + "guid": "b1130272", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T10:50:06.000Z" + }, + { + "creator": "Rod Minchin", + "date": "2024-01-04T10:49:54+00:00", + "title": "Man to face trial accused of attempted murder in Aberfan", + "link": "https://www.standard.co.uk/news/crime/aberfan-cardiff-cardiff-crown-court-b1130280.html", + "pubDate": "Thu, 04 Jan 2024 10:49:54 GMT", + "dc:creator": "Rod Minchin", + "dc:date": "2024-01-04T10:49:54+00:00", + "content": "Daniel Mihai Popescu, 29, will go on trial at Merthyr Crown Court on June 3 after a woman was stabbed.", + "contentSnippet": "Daniel Mihai Popescu, 29, will go on trial at Merthyr Crown Court on June 3 after a woman was stabbed.", + "guid": "b1130280", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T10:49:54.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-04T10:49:44+00:00", + "title": "Britain\u2019s service sector ends year with stronger-than-expected growth", + "link": "https://www.standard.co.uk/business/business-news/britain-s-service-sector-ends-year-with-strongerthanexpected-growth-b1130279.html", + "pubDate": "Thu, 04 Jan 2024 10:49:44 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-04T10:49:44+00:00", + "content": "The S&P Global/CIPS UK services PMI survey showed a reading of 53.4 in December, up from 50.9 in November.", + "contentSnippet": "The S&P Global/CIPS UK services PMI survey showed a reading of 53.4 in December, up from 50.9 in November.", + "guid": "b1130279", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T10:49:44.000Z" + }, + { + "creator": "Laura Harding", + "date": "2024-01-04T10:45:49+00:00", + "title": "Return of The Traitors hailed as \u2018genius reality TV\u2019", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/traitors-claudia-winkleman-agatha-christie-bbc-one-bbc-b1130276.html", + "pubDate": "Thu, 04 Jan 2024 10:45:49 GMT", + "dc:creator": "Laura Harding", + "dc:date": "2024-01-04T10:45:49+00:00", + "content": "The show has come back for a second series on BBC One.", + "contentSnippet": "The show has come back for a second series on BBC One.", + "guid": "b1130276", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-04T10:45:49.000Z" + }, + { + "creator": "Vicky Shaw", + "date": "2024-01-04T10:42:26+00:00", + "title": "Consumer credit borrowing increases at fastest annual rate in five years", + "link": "https://www.standard.co.uk/news/politics/money-advice-trust-consumer-credit-bank-of-england-money-quilter-b1130273.html", + "pubDate": "Thu, 04 Jan 2024 10:42:26 GMT", + "dc:creator": "Vicky Shaw", + "dc:date": "2024-01-04T10:42:26+00:00", + "content": "The annual growth rate for consumer credit was 8.6% in November, the highest rate since September 2018, according to the Bank of England.", + "contentSnippet": "The annual growth rate for consumer credit was 8.6% in November, the highest rate since September 2018, according to the Bank of England.", + "guid": "b1130273", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T10:42:26.000Z" + }, + { + "creator": "George Flood", + "date": "2024-01-04T10:39:15+00:00", + "title": "Transfer news LIVE! Arsenal eye triple deal; Chelsea hijack Man Utd for Silva; Dragusin to Spurs latest; Olise", + "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-fc-chelsea-man-utd-tottenham-zubimendi-olise-dragusin-b1130232.html", + "pubDate": "Thu, 04 Jan 2024 10:39:15 GMT", + "dc:creator": "George Flood", + "dc:date": "2024-01-04T10:39:15+00:00", + "content": "

Follow all the latest transfer news, rumours and gossip in January

", + "contentSnippet": "Follow all the latest transfer news, rumours and gossip in January", + "guid": "b1130232", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T10:39:15.000Z" + }, + { + "creator": "Anna White", + "date": "2024-01-04T10:36:37+00:00", + "title": "London property forecast 2024: what will happen to house prices, rents and new homes?", + "link": "https://www.standard.co.uk/homesandproperty/property-news/london-housing-market-forecast-rents-house-prices-2024-should-i-buy-b1130196.html", + "pubDate": "Thu, 04 Jan 2024 10:36:37 GMT", + "dc:creator": "Anna White", + "dc:date": "2024-01-04T10:36:37+00:00", + "content": "

Homes & Property's 11 predictions for how the next year will play out for first-time buyers, renters and home movers

", + "contentSnippet": "Homes & Property's 11 predictions for how the next year will play out for first-time buyers, renters and home movers", + "guid": "b1130196", + "categories": ["Property News", "Homes & Property"], + "isoDate": "2024-01-04T10:36:37.000Z" + }, + { + "creator": "Nick Clark", + "date": "2024-01-04T10:32:39+00:00", + "title": "The best theatre to see in London in 2024: from Sarah Jessica Parker in Plaza Suite to The Devil Wears Prada", + "link": "https://www.standard.co.uk/culture/theatre/best-theatre-to-book-2024-matt-smith-sarah-jessica-parker-b1127316.html", + "pubDate": "Thu, 04 Jan 2024 10:32:39 GMT", + "dc:creator": "Nick Clark", + "dc:date": "2024-01-04T10:32:39+00:00", + "content": "

There's a feast of theatrical delights heading this way over the next 12 months

", + "contentSnippet": "There's a feast of theatrical delights heading this way over the next 12 months", + "guid": "b1127316", + "categories": ["Theatre", "Culture"], + "isoDate": "2024-01-04T10:32:39.000Z" + }, + { + "creator": "El Hunt", + "date": "2024-01-04T10:31:39+00:00", + "title": "BST Hyde Park 2024: Tickets, line-ups and all you need to know as Robbie Williams and more confirmed", + "link": "https://www.standard.co.uk/culture/music/bst-hyde-park-tickets-line-up-2024-b999732.html", + "pubDate": "Thu, 04 Jan 2024 10:31:39 GMT", + "dc:creator": "El Hunt", + "dc:date": "2024-01-04T10:31:39+00:00", + "content": "

One of London\u2019s biggest concert series is making its heavy-hitting return

", + "contentSnippet": "One of London\u2019s biggest concert series is making its heavy-hitting return", + "guid": "b999732", + "categories": ["Music", "Culture"], + "isoDate": "2024-01-04T10:31:39.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2024-01-04T10:29:30+00:00", + "title": "Chelsea agree \u00a310m sponsorship deal with cryptocurrency firm BingX", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-bingx-sponsorship-deal-b1130269.html", + "pubDate": "Thu, 04 Jan 2024 10:29:30 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2024-01-04T10:29:30+00:00", + "content": "

18 of the 20 Premier League clubs now have crypto partners

", + "contentSnippet": "18 of the 20 Premier League clubs now have crypto partners", + "guid": "b1130269", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T10:29:30.000Z" + }, + { + "creator": "Rachael Davies", + "date": "2024-01-04T10:28:11+00:00", + "title": "People are claiming that Nostradamus' predictions are coming true in 2024", + "link": "https://www.standard.co.uk/news/world/nostradamus-predictions-coming-true-2024-b1130264.html", + "pubDate": "Thu, 04 Jan 2024 10:28:11 GMT", + "dc:creator": "Rachael Davies", + "dc:date": "2024-01-04T10:28:11+00:00", + "content": "

Just a few days into 2024, people are yet again making connections with current events and Nostradamus' predictions

", + "contentSnippet": "Just a few days into 2024, people are yet again making connections with current events and Nostradamus' predictions", + "guid": "b1130264", + "categories": ["World", "News"], + "isoDate": "2024-01-04T10:28:11.000Z" + }, + { + "creator": "City Staff", + "date": "2024-01-04T10:20:01+00:00", + "title": "FTSE 100 LIVE: Next shares surge after festive upgrade, JD Sports tumbles on profit warning", + "link": "https://www.standard.co.uk/business/ftse-100-live-jd-sports-cuts-guidance-next-eyes-ps900-million-profits-b1130238.html", + "pubDate": "Thu, 04 Jan 2024 10:20:01 GMT", + "dc:creator": "City Staff", + "dc:date": "2024-01-04T10:20:01+00:00", + "content": "

High street giant Next delighted the City today by revealing a Christmas trading performance well ahead of expectations.

", + "contentSnippet": "High street giant Next delighted the City today by revealing a Christmas trading performance well ahead of expectations.", + "guid": "b1130238", + "categories": ["Business"], + "isoDate": "2024-01-04T10:20:01.000Z" + }, + { + "creator": "Danny Halpin", + "date": "2024-01-04T10:18:03+00:00", + "title": "Farmers to be paid hundreds of pounds per hectare to maintain habitats", + "link": "https://www.standard.co.uk/news/politics/farmers-government-defra-british-wildlife-and-countryside-link-b1130270.html", + "pubDate": "Thu, 04 Jan 2024 10:18:03 GMT", + "dc:creator": "Danny Halpin", + "dc:date": "2024-01-04T10:18:03+00:00", + "content": "They will be able to apply for the new support from the summer of 2024.", + "contentSnippet": "They will be able to apply for the new support from the summer of 2024.", + "guid": "b1130270", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T10:18:03.000Z" + }, + { + "creator": "Andrew Williams", + "date": "2024-01-04T10:17:53+00:00", + "title": "Amazon to start charging for ad-free Prime Video from February", + "link": "https://www.standard.co.uk/news/tech/amazon-charging-ad-free-prime-video-february-2024-b1130254.html", + "pubDate": "Thu, 04 Jan 2024 10:17:53 GMT", + "dc:creator": "Andrew Williams", + "dc:date": "2024-01-04T10:17:53+00:00", + "content": "

You'll soon have to pay \u00a32.99 a month to get Prime Video shows and movies without ads

", + "contentSnippet": "You'll soon have to pay \u00a32.99 a month to get Prime Video shows and movies without ads", + "guid": "b1130254", + "categories": ["Tech", "News"], + "isoDate": "2024-01-04T10:17:53.000Z" + }, + { + "creator": "Jordan King", + "date": "2024-01-04T10:16:39+00:00", + "title": "London weather: Rush-hour 'deluge' expected with possible flooding amid Met Office rain warning", + "link": "https://www.standard.co.uk/news/london/weather-rain-met-office-warning-flooding-forecast-b1130249.html", + "pubDate": "Thu, 04 Jan 2024 10:16:39 GMT", + "dc:creator": "Jordan King", + "dc:date": "2024-01-04T10:16:39+00:00", + "content": "

Great Western Rail warns more trains could be cancelled as people across south of England face further flood warnings

", + "contentSnippet": "Great Western Rail warns more trains could be cancelled as people across south of England face further flood warnings", + "guid": "b1130249", + "categories": ["London", "News"], + "isoDate": "2024-01-04T10:16:39.000Z" + }, + { + "creator": "Sarah Ward", + "date": "2024-01-04T10:14:38+00:00", + "title": "African birds of prey face decline with 90% of species threatened, study finds", + "link": "https://www.standard.co.uk/news/uk/african-birds-of-prey-raptors-st-andrews-university-study-b1130267.html", + "pubDate": "Thu, 04 Jan 2024 10:14:38 GMT", + "dc:creator": "Sarah Ward", + "dc:date": "2024-01-04T10:14:38+00:00", + "content": "

Research by the University of St Andrews found that raptors faced multiple threats across the continent

", + "contentSnippet": "Research by the University of St Andrews found that raptors faced multiple threats across the continent", + "guid": "b1130267", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T10:14:38.000Z" + }, + { + "creator": "Lisa McLoughlin ", + "date": "2024-01-04T10:13:18+00:00", + "title": "Sir Rod Stewart leaves \u00a310,000 tip for Scottish hotel staff on New Year's Eve", + "link": "https://www.standard.co.uk/showbiz/rod-stewart-gleneagles-hotel-tip-staff-hogmanay-new-years-eve-b1130258.html", + "pubDate": "Thu, 04 Jan 2024 10:13:18 GMT", + "dc:creator": "Lisa McLoughlin ", + "dc:date": "2024-01-04T10:13:18+00:00", + "content": "

The singer, 78, spent Hogmanay\u00a0at the five-star Gleneagles hotel with his family

", + "contentSnippet": "The singer, 78, spent Hogmanay\u00a0at the five-star Gleneagles hotel with his family", + "guid": "b1130258", + "categories": ["Showbiz"], + "isoDate": "2024-01-04T10:13:18.000Z" + }, + { + "creator": "Pol Allingham", + "date": "2024-01-04T10:12:13+00:00", + "title": "More trains could be cancelled as Met Office issues weather warnings", + "link": "https://www.standard.co.uk/news/environment/met-office-england-swindon-bristol-parkway-london-b1130263.html", + "pubDate": "Thu, 04 Jan 2024 10:12:13 GMT", + "dc:creator": "Pol Allingham", + "dc:date": "2024-01-04T10:12:13+00:00", + "content": "The Met Office issued a yellow weather warning across the south of England lasting from 12pm today until 3am on Friday.", + "contentSnippet": "The Met Office issued a yellow weather warning across the south of England lasting from 12pm today until 3am on Friday.", + "guid": "b1130263", + "categories": ["Environment", "News"], + "isoDate": "2024-01-04T10:12:13.000Z" + }, + { + "creator": "Lydia Chantler-Hicks", + "date": "2024-01-04T10:09:35+00:00", + "title": "Police appeal after boy, 11, goes missing while on bike ride in Wales", + "link": "https://www.standard.co.uk/news/uk/boy-missing-wales-police-carmarthenshire-marley-bike-ride-tumble-b1130265.html", + "pubDate": "Thu, 04 Jan 2024 10:09:35 GMT", + "dc:creator": "Lydia Chantler-Hicks", + "dc:date": "2024-01-04T10:09:35+00:00", + "content": "

Missing Marley was last seen riding a red bike in his home village of Tumble

", + "contentSnippet": "Missing Marley was last seen riding a red bike in his home village of Tumble", + "guid": "b1130265", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T10:09:35.000Z" + }, + { + "creator": "Jon Axworthy", + "date": "2024-01-04T10:08:52+00:00", + "title": "Best winter golf shoes to get you from tee to green in howling wind or freezing cold ", + "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/accessories/best-winter-golf-shoes-b1128153.html", + "pubDate": "Thu, 04 Jan 2024 10:08:52 GMT", + "dc:creator": "Jon Axworthy", + "dc:date": "2024-01-04T10:08:52+00:00", + "content": "

Don\u2019t let the season stop you swinging

", + "contentSnippet": "Don\u2019t let the season stop you swinging", + "guid": "b1128153", + "categories": [ + "Accessories", + "Health & Fitness", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-04T10:08:52.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2024-01-04T10:03:29+00:00", + "title": "Best vegan chocolate cakes for the perfect sweet treat", + "link": "https://www.standard.co.uk/shopping/esbest/food-drink/best-vegan-chocolate-cake-b1127871.html", + "pubDate": "Thu, 04 Jan 2024 10:03:29 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2024-01-04T10:03:29+00:00", + "content": "

Going vegan doesn't mean going without

", + "contentSnippet": "Going vegan doesn't mean going without", + "guid": "b1127871", + "categories": ["Food & Drink", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T10:03:29.000Z" + }, + { + "creator": "Vicky Shaw", + "date": "2024-01-04T10:01:30+00:00", + "title": "First Direct unveils sub-4% mortgage rates", + "link": "https://www.standard.co.uk/business/money/first-direct-unveils-sub4-mortgage-rates-b1130266.html", + "pubDate": "Thu, 04 Jan 2024 10:01:30 GMT", + "dc:creator": "Vicky Shaw", + "dc:date": "2024-01-04T10:01:30+00:00", + "content": "Several lenders have started the new year by making cuts to their rates.", + "contentSnippet": "Several lenders have started the new year by making cuts to their rates.", + "guid": "b1130266", + "categories": ["Money", "Business"], + "isoDate": "2024-01-04T10:01:30.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2024-01-04T09:57:19+00:00", + "title": "Arsenal cool Mary Earps interest as PSG lead race for Lionesses goalkeeper", + "link": "https://www.standard.co.uk/sport/football/mary-earps-transfer-arsenal-fc-psg-man-utd-b1130261.html", + "pubDate": "Thu, 04 Jan 2024 09:57:19 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2024-01-04T09:57:19+00:00", + "content": "

Barcelona have also spoken to the England star, who is a free agent in the summer

", + "contentSnippet": "Barcelona have also spoken to the England star, who is a free agent in the summer", + "guid": "b1130261", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T09:57:19.000Z" + }, + { + "creator": "Es Best", + "date": "2024-01-04T09:52:54+00:00", + "title": "Best Nintendo Switch deals in the UK for January 2024", + "link": "https://www.standard.co.uk/shopping/esbest/deals/best-nintendo-switch-deals-b999158.html", + "pubDate": "Thu, 04 Jan 2024 09:52:54 GMT", + "dc:creator": "Es Best", + "dc:date": "2024-01-04T09:52:54+00:00", + "content": "

Game away to your hearts content with these great nintendo switch deals

", + "contentSnippet": "Game away to your hearts content with these great nintendo switch deals", + "guid": "b999158", + "categories": ["Deals", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T09:52:54.000Z" + }, + { + "creator": "John Dunne", + "date": "2024-01-04T09:52:36+00:00", + "title": "Harry Pitman: Police hunting teenager's killer continue to question 15-year-old boy ", + "link": "https://www.standard.co.uk/news/crime/harry-pitman-murder-latest-met-police-arrests-primrose-hill-fireworks-b1130262.html", + "pubDate": "Thu, 04 Jan 2024 09:52:36 GMT", + "dc:creator": "John Dunne", + "dc:date": "2024-01-04T09:52:36+00:00", + "content": "

The 15-year-old youth was arrested on Tuesday along with an 18-year-old, who was held on suspicion of affray

", + "contentSnippet": "The 15-year-old youth was arrested on Tuesday along with an 18-year-old, who was held on suspicion of affray", + "guid": "b1130262", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T09:52:36.000Z" + }, + { + "creator": "El Hunt", + "date": "2024-01-04T09:49:35+00:00", + "title": "The Traitors series 2 on BBC One review: the murder mystery is back \u2013 let the carnage commence", + "link": "https://www.standard.co.uk/culture/tvfilm/the-traitors-season-two-episode-one-review-claudia-winkleman-bbc-one-b1129908.html", + "pubDate": "Thu, 04 Jan 2024 09:49:35 GMT", + "dc:creator": "El Hunt", + "dc:date": "2024-01-04T09:49:35+00:00", + "content": "

Mind games? Paranoia? A ruthless batch of contestants who make Wilf Webster look like a total saint? Step this way...

", + "contentSnippet": "Mind games? Paranoia? A ruthless batch of contestants who make Wilf Webster look like a total saint? Step this way...", + "guid": "b1129908", + "categories": ["TV", "Culture"], + "isoDate": "2024-01-04T09:49:35.000Z" + }, + { + "creator": "Maryam Kara", + "date": "2024-01-04T09:48:33+00:00", + "title": "Asda recalls drink over contamination concerns", + "link": "https://www.standard.co.uk/news/uk/asda-recalls-juice-drinks-contamination-concerns-b1130141.html", + "pubDate": "Thu, 04 Jan 2024 09:48:33 GMT", + "dc:creator": "Maryam Kara", + "dc:date": "2024-01-04T09:48:33+00:00", + "content": "

Straws on lunchbox staple 'may be contaminated with metal'

", + "contentSnippet": "Straws on lunchbox staple 'may be contaminated with metal'", + "guid": "b1130141", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T09:48:33.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-04T09:47:50+00:00", + "title": "JD Sports hit as wary customers flock to sale prices", + "link": "https://www.standard.co.uk/business/business-news/jd-sports-hit-as-wary-customers-flock-to-sale-prices-b1130241.html", + "pubDate": "Thu, 04 Jan 2024 09:47:50 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-04T09:47:50+00:00", + "content": "The company downgraded its profit forecast by more than \u00a3100 million after a disappointing Christmas.", + "contentSnippet": "The company downgraded its profit forecast by more than \u00a3100 million after a disappointing Christmas.", + "guid": "b1130241", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T09:47:50.000Z" + }, + { + "creator": "Paul Cargill", + "date": "2024-01-04T09:44:38+00:00", + "title": "Scientists turn whisky-making by-product into fuel for the future", + "link": "https://www.standard.co.uk/news/science/scientists-green-scottish-b1130226.html", + "pubDate": "Thu, 04 Jan 2024 09:44:38 GMT", + "dc:creator": "Paul Cargill", + "dc:date": "2024-01-04T09:44:38+00:00", + "content": "A team from Heriot-Watt University have developed materials that can use wastewater from distilleries to produce green hydrogen.", + "contentSnippet": "A team from Heriot-Watt University have developed materials that can use wastewater from distilleries to produce green hydrogen.", + "guid": "b1130226", + "categories": ["Science", "News"], + "isoDate": "2024-01-04T09:44:38.000Z" + }, + { + "creator": "Josh Payne", + "date": "2024-01-04T09:43:55+00:00", + "title": "Jeffrey Epstein ready to reward victim\u2019s friends to prove Stephen Hawking orgy claims were false", + "link": "https://www.standard.co.uk/news/uk/jeffrey-epstein-ghislaine-maxwell-stephen-hawking-bill-clinton-donald-trump-b1130229.html", + "pubDate": "Thu, 04 Jan 2024 09:43:55 GMT", + "dc:creator": "Josh Payne", + "dc:date": "2024-01-04T09:43:55+00:00", + "content": "

Email from Epstein to Ghislaine Maxwell showed he was content for her to 'issue a reward' to any of Virginia Giuffre\u2019s friends to counter her claims

", + "contentSnippet": "Email from Epstein to Ghislaine Maxwell showed he was content for her to 'issue a reward' to any of Virginia Giuffre\u2019s friends to counter her claims", + "guid": "b1130229", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T09:43:55.000Z" + }, + { + "creator": "Dom Smith", + "date": "2024-01-04T09:42:56+00:00", + "title": "Crystal Palace pushing for Ronnie Edwards transfer after opening bids rejected", + "link": "https://www.standard.co.uk/sport/football/crystal-palace-ronnie-edwards-transfer-b1130257.html", + "pubDate": "Thu, 04 Jan 2024 09:42:56 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2024-01-04T09:42:56+00:00", + "content": "

Eagles hoping to win the race for highly-rated Peterborough defender this month

", + "contentSnippet": "Eagles hoping to win the race for highly-rated Peterborough defender this month", + "guid": "b1130257", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T09:42:56.000Z" + }, + { + "creator": "Lydia Chantler-Hicks", + "date": "2024-01-04T09:41:23+00:00", + "title": "Tube strikes: TfL warns looming walkout will leave 'little to no service' on London Underground for four days", + "link": "https://www.standard.co.uk/news/transport/tube-strikes-january-london-underground-dates-tfl-trains-b1130055.html", + "pubDate": "Thu, 04 Jan 2024 09:41:23 GMT", + "dc:creator": "Lydia Chantler-Hicks", + "dc:date": "2024-01-04T09:41:23+00:00", + "content": "

RMT members are to walk out from January 5 to January 12 in a row over pay

", + "contentSnippet": "RMT members are to walk out from January 5 to January 12 in a row over pay", + "guid": "b1130055", + "categories": ["Transport", "News"], + "isoDate": "2024-01-04T09:41:23.000Z" + }, + { + "creator": "Robert Dex", + "date": "2024-01-04T09:33:41+00:00", + "title": "Arsenal to wear white at home for the first time for its No More Red anti-violence campaign", + "link": "https://www.standard.co.uk/news/london/arsenal-white-kit-no-more-red-fa-cup-declan-rice-leah-williamson-youth-violence-b1130159.html", + "pubDate": "Thu, 04 Jan 2024 09:33:41 GMT", + "dc:creator": "Robert Dex", + "dc:date": "2024-01-04T09:33:41+00:00", + "content": "

The all white kit is worn by the club once a year as part of its campaign against youth violence

", + "contentSnippet": "The all white kit is worn by the club once a year as part of its campaign against youth violence", + "guid": "b1130159", + "categories": ["London", "News"], + "isoDate": "2024-01-04T09:33:41.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2024-01-04T09:23:56+00:00", + "title": "Junior doctors strike: Cabinet minister urges medics to call off 'politically-motivated' walkout ", + "link": "https://www.standard.co.uk/news/politics/junior-doctors-strike-day-2-nhs-pay-row-bma-steve-barclay-victoria-atkins-b1130250.html", + "pubDate": "Thu, 04 Jan 2024 09:23:56 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2024-01-04T09:23:56+00:00", + "content": "

Steve Barclay's intervention comes on the second day of the longest ever strike by junior doctors

", + "contentSnippet": "Steve Barclay's intervention comes on the second day of the longest ever strike by junior doctors", + "guid": "b1130250", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T09:23:56.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2024-01-04T09:22:03+00:00", + "title": "Britain ready for 'necessary and proportionate' military action to stop Red Sea missile attacks on ships", + "link": "https://www.standard.co.uk/news/politics/britain-red-sea-israel-gaza-iran-us-missile-ships-attacks-b1130237.html", + "pubDate": "Thu, 04 Jan 2024 09:22:03 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2024-01-04T09:22:03+00:00", + "content": "

America, the UK and other allies have sent what amounts to a final warning to Iran-backed Houthi rebels to end their attacks on vessels in the Red Sea or face potential targeted military action

", + "contentSnippet": "America, the UK and other allies have sent what amounts to a final warning to Iran-backed Houthi rebels to end their attacks on vessels in the Red Sea or face potential targeted military action", + "guid": "b1130237", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T09:22:03.000Z" + }, + { + "creator": "Ella Pickover", + "date": "2024-01-04T09:17:21+00:00", + "title": "Hospitals call on junior doctors to return to work but BMA wants 'credible' pay offer to call off strikes", + "link": "https://www.standard.co.uk/news/politics/nhs-stephen-powis-bma-junior-doctors-strike-walkout-b1130204.html", + "pubDate": "Thu, 04 Jan 2024 09:17:21 GMT", + "dc:creator": "Ella Pickover", + "dc:date": "2024-01-04T09:17:21+00:00", + "content": "Junior doctors are staging the longest walkout in NHS history.", + "contentSnippet": "Junior doctors are staging the longest walkout in NHS history.", + "guid": "b1130204", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T09:17:21.000Z" + }, + { + "creator": "Holly Williams", + "date": "2024-01-04T09:13:35+00:00", + "title": "Next boss cautions over stock delays from Red Sea attacks", + "link": "https://www.standard.co.uk/business/business-news/next-boss-cautions-over-stock-delays-from-red-sea-attacks-b1130255.html", + "pubDate": "Thu, 04 Jan 2024 09:13:35 GMT", + "dc:creator": "Holly Williams", + "dc:date": "2024-01-04T09:13:35+00:00", + "content": "Chief executive Lord Simon Wolfson said an extra two and a half weeks must be added to stock delivery times for goods and garments from the Far East.", + "contentSnippet": "Chief executive Lord Simon Wolfson said an extra two and a half weeks must be added to stock delivery times for goods and garments from the Far East.", + "guid": "b1130255", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T09:13:35.000Z" + }, + { + "creator": "Lydia Chantler-Hicks", + "date": "2024-01-04T09:11:13+00:00", + "title": "Boris Johnson criticises Met Police investigation into Israel 'war crimes'", + "link": "https://www.standard.co.uk/news/politics/israel-war-crimes-met-police-boris-johnson-hamas-gaza-b1130233.html", + "pubDate": "Thu, 04 Jan 2024 09:11:13 GMT", + "dc:creator": "Lydia Chantler-Hicks", + "dc:date": "2024-01-04T09:11:13+00:00", + "content": "

Counter-terror police have put up posters at British airports urging returning travellers to report any war crimes or crimes against humanity

", + "contentSnippet": "Counter-terror police have put up posters at British airports urging returning travellers to report any war crimes or crimes against humanity", + "guid": "b1130233", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T09:11:13.000Z" + }, + { + "creator": "Laura Harding", + "date": "2024-01-04T09:06:08+00:00", + "title": "Elvis Evolution: Elvis Presley hologram concert experience to open in London", + "link": "https://www.standard.co.uk/news/london/elvis-presley-evolution-hologram-concert-experience-b1130225.html", + "pubDate": "Thu, 04 Jan 2024 09:06:08 GMT", + "dc:creator": "Laura Harding", + "dc:date": "2024-01-04T09:06:08+00:00", + "content": "

The show will use AI to bring the star to life using thousands of his personal photos and home-video footage

", + "contentSnippet": "The show will use AI to bring the star to life using thousands of his personal photos and home-video footage", + "guid": "b1130225", + "categories": ["London", "News"], + "isoDate": "2024-01-04T09:06:08.000Z" + }, + { + "creator": "Matt Majendie", + "date": "2024-01-04T09:03:43+00:00", + "title": "Emma Raducanu gets Australian Open boost despite three-set defeat by Elina Svitolina", + "link": "https://www.standard.co.uk/sport/tennis/emma-raducanu-elina-svitolina-australian-open-b1130251.html", + "pubDate": "Thu, 04 Jan 2024 09:03:43 GMT", + "dc:creator": "Matt Majendie", + "dc:date": "2024-01-04T09:03:43+00:00", + "content": "

Former British No1 should take confidence despite loss as she steps up promising injury comeback

", + "contentSnippet": "Former British No1 should take confidence despite loss as she steps up promising injury comeback", + "guid": "b1130251", + "categories": ["Tennis", "Sport"], + "isoDate": "2024-01-04T09:03:43.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-04T09:01:09+00:00", + "title": "Topps Tiles shares slide after cautious consumers hit revenue", + "link": "https://www.standard.co.uk/business/business-news/topps-tiles-shares-slide-after-cautious-consumers-hit-revenue-b1130253.html", + "pubDate": "Thu, 04 Jan 2024 09:01:09 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-04T09:01:09+00:00", + "content": "Revenue was down by 4% in the last three months of 2022, the business said on Thursday.", + "contentSnippet": "Revenue was down by 4% in the last three months of 2022, the business said on Thursday.", + "guid": "b1130253", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T09:01:09.000Z" + }, + { + "creator": "Rosie Fitzmaurice", + "date": "2024-01-04T09:00:03+00:00", + "title": "ZOE diet: could this little device help you live for longer?", + "link": "https://www.standard.co.uk/lifestyle/zoe-app-diet-reviews-uk-cost-nutrition-study-meal-plan-b1084449.html", + "pubDate": "Thu, 04 Jan 2024 09:00:03 GMT", + "dc:creator": "Rosie Fitzmaurice", + "dc:date": "2024-01-04T09:00:03+00:00", + "content": "

Glucose monitors are a status symbol among the fitterati, but do they work? Rosie Fitzmaurice puts one to the test

", + "contentSnippet": "Glucose monitors are a status symbol among the fitterati, but do they work? Rosie Fitzmaurice puts one to the test", + "guid": "b1084449", + "categories": ["Lifestyle"], + "isoDate": "2024-01-04T09:00:03.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Why this luxe Turkish resort ticks all the boxes for holidaymakers", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-regnum-holiday-luxury-resort-british-airways-holidays-b1118780.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

For five-star relaxation, fun-filled activities, unforgettable food and drink, and more, at Antalya\u2019s five-star Regnum Carya, it's all on the menu

", + "contentSnippet": "For five-star relaxation, fun-filled activities, unforgettable food and drink, and more, at Antalya\u2019s five-star Regnum Carya, it's all on the menu", + "guid": "b1118780", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Discover so much more than sun and sand on holiday in Turkey", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-british-airways-holidays-b1120883.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

Experience a unique blend of history, culture and cuisine at this meeting point of Europe and Asia \u2013 as well as sunshine and great beaches all year round

", + "contentSnippet": "Experience a unique blend of history, culture and cuisine at this meeting point of Europe and Asia \u2013 as well as sunshine and great beaches all year round", + "guid": "b1120883", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Dive into the Mediterranean's Turquoise Coast at Liberty Fabay ", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/liberty-fabay-british-airways-holidays-turkey-b1118794.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

On this sun-blessed stretch of the Turkish Riviera you'll find a truly relaxing holiday to suit both couples and families, with history on your doorstep

", + "contentSnippet": "On this sun-blessed stretch of the Turkish Riviera you'll find a truly relaxing holiday to suit both couples and families, with history on your doorstep", + "guid": "b1118794", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Enjoy Turkey's Aegean coast in style at these luxury resorts", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-anda-barut-bayou-villa-holidays-british-airways-b1119621.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

At Anda Barut Collection and Bayou Villas on the idyllic Turquoise Coast, you can explore the historic surroundings or just relax and soak up year-round sun

", + "contentSnippet": "At Anda Barut Collection and Bayou Villas on the idyllic Turquoise Coast, you can explore the historic surroundings or just relax and soak up year-round sun", + "guid": "b1119621", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Choose an Istanbul hotel that gives you the best of the city and the sea", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/marriott-istanbul-turkey-travel-holiday-b1119517.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

On a British Airways Holidays stay at these Marriott International Luxury Brands Hotels, you can combine the thrills of a bustling centuries-old metropolis with a sunshine break

", + "contentSnippet": "On a British Airways Holidays stay at these Marriott International Luxury Brands Hotels, you can combine the thrills of a bustling centuries-old metropolis with a sunshine break", + "guid": "b1119517", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Get a fresh view of Turkey from the stunning Hillside Beach Club", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-holiday-turquoise-coast-british-airways-b1118651.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

Experience a beautifully unspoilt side of the Mediterranean from this luxurious base on the captivating Turquoise Coast

", + "contentSnippet": "Experience a beautifully unspoilt side of the Mediterranean from this luxurious base on the captivating Turquoise Coast", + "guid": "b1118651", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Why Riga needs to be on your travel bucket list", + "link": "https://www.standard.co.uk/lifestyle/travel/riga-latvia-british-airways-b1124244.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

Off the beaten track but easily accessible with British Airways, a feast of culture, food and fun awaits in this modern European capital

", + "contentSnippet": "Off the beaten track but easily accessible with British Airways, a feast of culture, food and fun awaits in this modern European capital", + "guid": "b1124244", + "categories": ["Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Find the best of Turkey's Turquoise Coast in one sunny seaside resort", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/british-airways-turkey-hilton-sarigerme-b1120173.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

At the Hilton Dalaman Sarigerme Resort and Spa you'll find an idyllic location, a sumptuous choice of great cuisine and so much to see and do

", + "contentSnippet": "At the Hilton Dalaman Sarigerme Resort and Spa you'll find an idyllic location, a sumptuous choice of great cuisine and so much to see and do", + "guid": "b1120173", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Swim, rest or play in style at these luxurious Turkish resorts", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-golf-holiday-belek-british-airways-b1120495.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

Tee off, chill out or make a splash at these three spacious, luxe destinations in Belek on the idyllic Mediterranean coast

", + "contentSnippet": "Tee off, chill out or make a splash at these three spacious, luxe destinations in Belek on the idyllic Mediterranean coast", + "guid": "b1120495", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Take your pick of these stunning escapes on the Turquoise Coast", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-turquoise-coast-hotel-holiday-b1120630.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

Check into Titanic Hotels' sumptuous resorts in Antalya, Turkey to enjoy luxury, relaxation and great beaches... plus plenty of golf

", + "contentSnippet": "Check into Titanic Hotels' sumptuous resorts in Antalya, Turkey to enjoy luxury, relaxation and great beaches... plus plenty of golf", + "guid": "b1120630", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "", + "date": "2024-01-04T09:00:00+00:00", + "title": "Discover the many different sides to Turkey", + "link": "https://www.standard.co.uk/lifestyle/travel/discover-turkey/turkey-holiday-turquoise-coast-bodrum-istanbul-b1116911.html", + "pubDate": "Thu, 04 Jan 2024 09:00:00 GMT", + "dc:creator": "", + "dc:date": "2024-01-04T09:00:00+00:00", + "content": "

Whether you're looking for great beaches or centuries of culture and delicious cuisine, you'll find them on a great value holiday with British Airways Holidays

", + "contentSnippet": "Whether you're looking for great beaches or centuries of culture and delicious cuisine, you'll find them on a great value holiday with British Airways Holidays", + "guid": "b1116911", + "categories": ["Discover Turkey", "Travel", "Lifestyle"], + "isoDate": "2024-01-04T09:00:00.000Z" + }, + { + "creator": "Martyn Landi", + "date": "2024-01-04T08:58:56+00:00", + "title": "Microsoft adds dedicated AI assistant button to Windows PC keyboards", + "link": "https://www.standard.co.uk/news/tech/microsoft-google-las-vegas-ces-amazon-b1130243.html", + "pubDate": "Thu, 04 Jan 2024 08:58:56 GMT", + "dc:creator": "Martyn Landi", + "dc:date": "2024-01-04T08:58:56+00:00", + "content": "The addition is the first major design change to Windows computer keyboards in nearly 30 years.", + "contentSnippet": "The addition is the first major design change to Windows computer keyboards in nearly 30 years.", + "guid": "b1130243", + "categories": ["Tech", "News"], + "isoDate": "2024-01-04T08:58:56.000Z" + }, + { + "creator": "David Lynch", + "date": "2024-01-04T08:56:17+00:00", + "title": "Labour claims questions remain as company owned by Sunak\u2019s wife is closed", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-labour-government-oliver-dowden-prime-minister-b1130231.html", + "pubDate": "Thu, 04 Jan 2024 08:56:17 GMT", + "dc:creator": "David Lynch", + "dc:date": "2024-01-04T08:56:17+00:00", + "content": "Senior Labour figure Pat McFadden raised questions about Catamaran Ventures UK, the investment company owned by Rishi Sunak\u2019s wife Akshata Murty.", + "contentSnippet": "Senior Labour figure Pat McFadden raised questions about Catamaran Ventures UK, the investment company owned by Rishi Sunak\u2019s wife Akshata Murty.", + "guid": "b1130231", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T08:56:17.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-04T08:51:12+00:00", + "title": "Tottenham: Players paying the price for Ange Postecoglou revolution but history proves it produces results", + "link": "https://www.standard.co.uk/sport/football/tottenham-injuries-postecoglou-sarr-bentancur-ange-ball-b1130034.html", + "pubDate": "Thu, 04 Jan 2024 08:51:12 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-04T08:51:12+00:00", + "content": "

The Australian's high-intensity training and tactics means muscle injuries are inevitable

", + "contentSnippet": "The Australian's high-intensity training and tactics means muscle injuries are inevitable", + "guid": "b1130034", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T08:51:12.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2024-01-04T08:50:46+00:00", + "title": "Manchester United want Michael Olise to become one of the first signings of Sir Jim Ratcliffe era", + "link": "https://www.standard.co.uk/sport/football/man-utd-transfer-news-michael-olise-crystal-palace-b1130029.html", + "pubDate": "Thu, 04 Jan 2024 08:50:46 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2024-01-04T08:50:46+00:00", + "content": "

The Crystal Palace star has been identified as key to vitalising Erik ten Hag's woeful attack

", + "contentSnippet": "The Crystal Palace star has been identified as key to vitalising Erik ten Hag's woeful attack", + "guid": "b1130029", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T08:50:46.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-04T08:50:32+00:00", + "title": "Littler vs Humphries LIVE! World Darts Championship final stream, result and updates", + "link": "https://www.standard.co.uk/sport/littler-vs-humphries-world-darts-championship-final-live-latest-score-updates-2024-b1130144.html", + "pubDate": "Thu, 04 Jan 2024 08:50:32 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-04T08:50:32+00:00", + "content": "

Teenage sensation Luke Littler beaten in thriller at Ally Pally

", + "contentSnippet": "Teenage sensation Luke Littler beaten in thriller at Ally Pally", + "guid": "b1130144", + "categories": ["Sport"], + "isoDate": "2024-01-04T08:50:32.000Z" + }, + { + "creator": "Lydia Chantler-Hicks", + "date": "2024-01-04T08:47:23+00:00", + "title": "Family 'terrified' after London Eye capsule lid 'blew open' in Storm Henk", + "link": "https://www.standard.co.uk/news/london/london-eye-closed-storm-henk-weather-winds-rain-b1130101.html", + "pubDate": "Thu, 04 Jan 2024 08:47:23 GMT", + "dc:creator": "Lydia Chantler-Hicks", + "dc:date": "2024-01-04T08:47:23+00:00", + "content": "

David Nock, who visited the capital from Bournemouth, says his children 'found it terrifying'

", + "contentSnippet": "David Nock, who visited the capital from Bournemouth, says his children 'found it terrifying'", + "guid": "b1130101", + "categories": ["London", "News"], + "isoDate": "2024-01-04T08:47:23.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2024-01-04T08:41:27+00:00", + "title": "Labour tax cuts would threaten another 'period of austerity' for public services, warns IFS", + "link": "https://www.standard.co.uk/news/politics/tax-cuts-labour-public-services-austerity-keir-starmer-rishi-sunak-b1130245.html", + "pubDate": "Thu, 04 Jan 2024 08:41:27 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2024-01-04T08:41:27+00:00", + "content": "

Sir Keir Starmer and shadow Chancellor Rachel Reeves are reported to be considering tax cuts in Labour\u2019s election manifesto, possibly to income tax

", + "contentSnippet": "Sir Keir Starmer and shadow Chancellor Rachel Reeves are reported to be considering tax cuts in Labour\u2019s election manifesto, possibly to income tax", + "guid": "b1130245", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T08:41:27.000Z" + }, + { + "creator": "George Flood", + "date": "2024-01-04T08:36:37+00:00", + "title": "Kylian Mbappe offers future update amid latest Liverpool and Real Madrid links", + "link": "https://www.standard.co.uk/sport/football/kylian-mbappe-liverpool-fc-real-madrid-transfer-b1130248.html", + "pubDate": "Thu, 04 Jan 2024 08:36:37 GMT", + "dc:creator": "George Flood", + "dc:date": "2024-01-04T08:36:37+00:00", + "content": "

France superstar is able to agree a pre-contract deal with another club this month

", + "contentSnippet": "France superstar is able to agree a pre-contract deal with another club this month", + "guid": "b1130248", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T08:36:37.000Z" + }, + { + "creator": "Simon Hunt", + "date": "2024-01-04T08:24:57+00:00", + "title": "WeWork's UK subsidiary owes \u00a3730 million after 'weaker than contemplated' demand", + "link": "https://www.standard.co.uk/business/weworks-uk-subsidiary-owes-ps730-million-after-sluggish-covid-recovery-b1130246.html", + "pubDate": "Thu, 04 Jan 2024 08:24:57 GMT", + "dc:creator": "Simon Hunt", + "dc:date": "2024-01-04T08:24:57+00:00", + "content": "

WeWork\u2019s top UK subsidiary posted a loss of \u00a3110 million in 2022 and said it owed nearly three quarters of a billion pounds to its US parent in signs the London office market\u2019s sluggish recovery from the coronavirus pandemic has crippled its finances.\u00a0

", + "contentSnippet": "WeWork\u2019s top UK subsidiary posted a loss of \u00a3110 million in 2022 and said it owed nearly three quarters of a billion pounds to its US parent in signs the London office market\u2019s sluggish recovery from the coronavirus pandemic has crippled its finances.", + "guid": "b1130246", + "categories": ["Business"], + "isoDate": "2024-01-04T08:24:57.000Z" + }, + { + "creator": "Sian Baldwin and Nuray Bulbul", + "date": "2024-01-04T08:24:50+00:00", + "title": "When are the next Tube strikes? TfL strike dates January 2024", + "link": "https://www.standard.co.uk/news/transport/next-tube-tfl-strikes-industrial-action-threat-unions-reject-pay-rise-b1123379.html", + "pubDate": "Thu, 04 Jan 2024 08:24:50 GMT", + "dc:creator": "Sian Baldwin and Nuray Bulbul", + "dc:date": "2024-01-04T08:24:50+00:00", + "content": "

There's more industrial action on the London Underground this week. Here's when and why

", + "contentSnippet": "There's more industrial action on the London Underground this week. Here's when and why", + "guid": "b1123379", + "categories": ["Transport", "News"], + "isoDate": "2024-01-04T08:24:50.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2024-01-04T08:24:29+00:00", + "title": "New Jersey imam shot and killed outside mosque as police hunt gunman", + "link": "https://www.standard.co.uk/news/world/new-jersey-imam-shooting-mosque-newark-b1130240.html", + "pubDate": "Thu, 04 Jan 2024 08:24:29 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2024-01-04T08:24:29+00:00", + "content": "

Imam Hassan Sharif was shot multiple times in his car outside a mosque in Newark

", + "contentSnippet": "Imam Hassan Sharif was shot multiple times in his car outside a mosque in Newark", + "guid": "b1130240", + "categories": ["World", "News"], + "isoDate": "2024-01-04T08:24:29.000Z" + }, + { + "creator": "Sam Blewett", + "date": "2024-01-04T08:20:44+00:00", + "title": "Prosecutors given file on parliamentary researcher accused of spying for China ", + "link": "https://www.standard.co.uk/news/politics/parliamentary-researcher-accused-of-spying-for-china-file-cps-met-police-b1130247.html", + "pubDate": "Thu, 04 Jan 2024 08:20:44 GMT", + "dc:creator": "Sam Blewett", + "dc:date": "2024-01-04T08:20:44+00:00", + "content": "

Police have handed prosecutors a file on their investigation into a parliamentary researcher arrested on suspicion of spying for China.

", + "contentSnippet": "Police have handed prosecutors a file on their investigation into a parliamentary researcher arrested on suspicion of spying for China.", + "guid": "b1130247", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T08:20:44.000Z" + }, + { + "creator": "El Hunt", + "date": "2024-01-04T08:17:08+00:00", + "title": "The Traitors\u2019 Claudia Winkleman: season two's contestants are 'brutal'", + "link": "https://www.standard.co.uk/culture/tvfilm/the-traitors-claudia-winkleman-second-season-brutal-b1128554.html", + "pubDate": "Thu, 04 Jan 2024 08:17:08 GMT", + "dc:creator": "El Hunt", + "dc:date": "2024-01-04T08:17:08+00:00", + "content": "

Later in season two, she wears a truly ridiculous outfit that channels \u201ca sea monster meets Princess Anne\u201d - the look is set to be auctioned off for charity

", + "contentSnippet": "Later in season two, she wears a truly ridiculous outfit that channels \u201ca sea monster meets Princess Anne\u201d - the look is set to be auctioned off for charity", + "guid": "b1128554", + "categories": ["TV", "Culture"], + "isoDate": "2024-01-04T08:17:08.000Z" + }, + { + "creator": "Rob Freeman", + "date": "2024-01-04T08:14:29+00:00", + "title": "Man arrested after shots fired at three locations in Liverpool in one night", + "link": "https://www.standard.co.uk/news/uk/liverpool-merseyside-police-police-merseyside-b1130236.html", + "pubDate": "Thu, 04 Jan 2024 08:14:29 GMT", + "dc:creator": "Rob Freeman", + "dc:date": "2024-01-04T08:14:29+00:00", + "content": "The first report of shots was received from a shop, with further incidents outside a cinema and at a nearby property.", + "contentSnippet": "The first report of shots was received from a shop, with further incidents outside a cinema and at a nearby property.", + "guid": "b1130236", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T08:14:29.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-04T08:06:55+00:00", + "title": "TUC condemns \u2018obscene\u2019 pay gap between FTSE 100 bosses and average worker", + "link": "https://www.standard.co.uk/news/politics/tuc-high-pay-centre-government-b1130219.html", + "pubDate": "Thu, 04 Jan 2024 08:06:55 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-04T08:06:55+00:00", + "content": "FTSE 100 bosses will have earned the median full-time worker\u2019s annual wage by 1pm on Thursday, the High Pay Centre said.", + "contentSnippet": "FTSE 100 bosses will have earned the median full-time worker\u2019s annual wage by 1pm on Thursday, the High Pay Centre said.", + "guid": "b1130219", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T08:06:55.000Z" + }, + { + "creator": "El Hunt and Vicky Jessop", + "date": "2024-01-04T08:04:59+00:00", + "title": "The Traitors: we pick the most iconic moments from season one", + "link": "https://www.standard.co.uk/culture/tvfilm/the-traitors-bbc-most-iconic-moments-b1128641.html", + "pubDate": "Thu, 04 Jan 2024 08:04:59 GMT", + "dc:creator": "El Hunt and Vicky Jessop", + "dc:date": "2024-01-04T08:04:59+00:00", + "content": "

Let's look back at the season that started it all, as a new one commences

", + "contentSnippet": "Let's look back at the season that started it all, as a new one commences", + "guid": "b1128641", + "categories": ["TV", "Culture"], + "isoDate": "2024-01-04T08:04:59.000Z" + }, + { + "creator": "Mike Daw", + "date": "2024-01-04T08:00:00+00:00", + "title": "Things to do in London this weekend (January 5 \u2013 7) ", + "link": "https://www.standard.co.uk/going-out/attractions/things-to-do-ideas-events-london-weekend-b1129958.html", + "pubDate": "Thu, 04 Jan 2024 08:00:00 GMT", + "dc:creator": "Mike Daw", + "dc:date": "2024-01-04T08:00:00+00:00", + "content": "

Mike Daw returns for the first weekend guide of the new year with everything needed to make it a memorable one

", + "contentSnippet": "Mike Daw returns for the first weekend guide of the new year with everything needed to make it a memorable one", + "guid": "b1129958", + "categories": ["Events and Things To Do", "Going Out"], + "isoDate": "2024-01-04T08:00:00.000Z" + }, + { + "creator": "Holly Williams", + "date": "2024-01-04T07:53:29+00:00", + "title": "Next raises profit outlook after better-than-forecast festive trading", + "link": "https://www.standard.co.uk/business/business-news/next-raises-profit-outlook-after-betterthanforecast-festive-trading-b1130242.html", + "pubDate": "Thu, 04 Jan 2024 07:53:29 GMT", + "dc:creator": "Holly Williams", + "dc:date": "2024-01-04T07:53:29+00:00", + "content": "The retail giant saw full-price sales jump 5.7% higher over the nine weeks to December 30.", + "contentSnippet": "The retail giant saw full-price sales jump 5.7% higher over the nine weeks to December 30.", + "guid": "b1130242", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T07:53:29.000Z" + }, + { + "creator": "Matt Watts", + "date": "2024-01-04T07:43:49+00:00", + "title": "Donald Trump asks Supreme Court to overturn Colorado presidential ballot ban", + "link": "https://www.standard.co.uk/news/world/donald-trump-appeal-supreme-court-us-president-election-ballot-colorado-b1130239.html", + "pubDate": "Thu, 04 Jan 2024 07:43:49 GMT", + "dc:creator": "Matt Watts", + "dc:date": "2024-01-04T07:43:49+00:00", + "content": "

A US Supreme Court ruling on the issue of Mr Trump\u2019s eligibility to run again for the White House would be binding nationwide

", + "contentSnippet": "A US Supreme Court ruling on the issue of Mr Trump\u2019s eligibility to run again for the White House would be binding nationwide", + "guid": "b1130239", + "categories": ["World", "News"], + "isoDate": "2024-01-04T07:43:49.000Z" + }, + { + "creator": "Jacob Phillips", + "date": "2024-01-04T07:30:34+00:00", + "title": "Zara Aleena's killer 'caught having sex with female prison worker in Belmarsh'", + "link": "https://www.standard.co.uk/news/crime/jordan-mcsweeney-zara-aleena-hmp-belmarsh-b1130206.html", + "pubDate": "Thu, 04 Jan 2024 07:30:34 GMT", + "dc:creator": "Jacob Phillips", + "dc:date": "2024-01-04T07:30:34+00:00", + "content": "

A prison worker was allegedly arrested on suspicion of misconduct

", + "contentSnippet": "A prison worker was allegedly arrested on suspicion of misconduct", + "guid": "b1130206", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T07:30:34.000Z" + }, + { + "creator": "Lydia Chantler-Hicks", + "date": "2024-01-04T07:27:39+00:00", + "title": "Liverpool shootings: Man arrested after shots fired at three locations including cinema and corner shop", + "link": "https://www.standard.co.uk/news/crime/man-arrested-shots-fired-liverpool-cinema-merseyside-police-b1130234.html", + "pubDate": "Thu, 04 Jan 2024 07:27:39 GMT", + "dc:creator": "Lydia Chantler-Hicks", + "dc:date": "2024-01-04T07:27:39+00:00", + "content": "

Footage showed a man opening fire inside a newsagents

", + "contentSnippet": "Footage showed a man opening fire inside a newsagents", + "guid": "b1130234", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T07:27:39.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2024-01-04T07:11:43+00:00", + "title": "Watch: Dramatic moment man leaps over US courtroom bench to attack judge in Las Vegas", + "link": "https://www.standard.co.uk/news/world/nevada-courtroom-judge-attack-las-vegas-video-b1130235.html", + "pubDate": "Thu, 04 Jan 2024 07:11:43 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2024-01-04T07:11:43+00:00", + "content": "

Judge left injured but did not need hospital treatment after being attacked by defendant during sentencing

", + "contentSnippet": "Judge left injured but did not need hospital treatment after being attacked by defendant during sentencing", + "guid": "b1130235", + "categories": ["World", "News"], + "isoDate": "2024-01-04T07:11:43.000Z" + }, + { + "creator": "David Lynch", + "date": "2024-01-04T07:11:33+00:00", + "title": "Starmer urges voters to reject \u2018populism and cynicism\u2019 ahead of next election", + "link": "https://www.standard.co.uk/news/politics/keir-starmer-government-tories-prime-minister-jeremy-corbyn-b1130212.html", + "pubDate": "Thu, 04 Jan 2024 07:11:33 GMT", + "dc:creator": "David Lynch", + "dc:date": "2024-01-04T07:11:33+00:00", + "content": "The Labour leader will claim the Tories have \u2018no practical achievements to point towards\u2019 after nearly 14 years in Government.", + "contentSnippet": "The Labour leader will claim the Tories have \u2018no practical achievements to point towards\u2019 after nearly 14 years in Government.", + "guid": "b1130212", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T07:11:33.000Z" + }, + { + "creator": "Madeleine Spencer", + "date": "2024-01-04T07:00:37+00:00", + "title": "9 cheap ways to hack yourself to better health \u2014 from adding salt to your water and eating flaxseed daily ", + "link": "https://www.standard.co.uk/lifestyle/wellness/health-tips-cheap-free-sleep-diet-nutrition-flaxseed-b1129455.html", + "pubDate": "Thu, 04 Jan 2024 07:00:37 GMT", + "dc:creator": "Madeleine Spencer", + "dc:date": "2024-01-04T07:00:37+00:00", + "content": "

Wellness needn't cause financial ruin. Madeleine Spencer has a list of easy habits that won't cost you more than a few pennies

", + "contentSnippet": "Wellness needn't cause financial ruin. Madeleine Spencer has a list of easy habits that won't cost you more than a few pennies", + "guid": "b1129455", + "categories": ["Wellness", "Lifestyle"], + "isoDate": "2024-01-04T07:00:37.000Z" + }, + { + "creator": "Josh Payne", + "date": "2024-01-04T06:53:55+00:00", + "title": "Prince Andrew named in court documents relating to paedophile Jeffrey Epstein", + "link": "https://www.standard.co.uk/news/uk/jeffrey-epstein-documents-prince-andrew-bill-clinton-donald-trump-virginia-giuffre-johanna-sjoberg-b1130228.html", + "pubDate": "Thu, 04 Jan 2024 06:53:55 GMT", + "dc:creator": "Josh Payne", + "dc:date": "2024-01-04T06:53:55+00:00", + "content": "

A US judge ruled documents naming more than 170 people should be made public last month

", + "contentSnippet": "A US judge ruled documents naming more than 170 people should be made public last month", + "guid": "b1130228", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T06:53:55.000Z" + }, + { + "creator": "Jordan King", + "date": "2024-01-04T06:34:08+00:00", + "title": "Iran: At least 95 killed in explosions near general Qasem Soleimani's tomb, says state TV", + "link": "https://www.standard.co.uk/news/world/iran-terrorist-attack-kerman-qassem-soleimani-b1130114.html", + "pubDate": "Thu, 04 Jan 2024 06:34:08 GMT", + "dc:creator": "Jordan King", + "dc:date": "2024-01-04T06:34:08+00:00", + "content": "

The blasts happened at an event to honour the anniversary of when Iranian general Qassem\u00a0Soleimani was killed in a US airstrike

", + "contentSnippet": "The blasts happened at an event to honour the anniversary of when Iranian general Qassem\u00a0Soleimani was killed in a US airstrike", + "guid": "b1130114", + "categories": ["World", "News"], + "isoDate": "2024-01-04T06:34:08.000Z" + }, + { + "creator": "Shelley von Strunckel", + "date": "2024-01-04T06:00:00+00:00", + "title": "Horoscope today: Your daily guide for Thursday, January 4, 2024", + "link": "https://www.standard.co.uk/lifestyle/horoscope-daily-stars-shelley-von-strunckel-thursday-january-4-2024-b1130093.html", + "pubDate": "Thu, 04 Jan 2024 06:00:00 GMT", + "dc:creator": "Shelley von Strunckel", + "dc:date": "2024-01-04T06:00:00+00:00", + "content": "

Read what the stars mean for you today, from Capricorn to Gemini

", + "contentSnippet": "Read what the stars mean for you today, from Capricorn to Gemini", + "guid": "b1120001", + "categories": ["Lifestyle"], + "isoDate": "2024-01-04T06:00:00.000Z" + }, + { + "creator": "Elizabeth Gregory", + "date": "2024-01-04T06:00:00+00:00", + "title": "After The Flood: who plays who in ITV's new police drama, from Sophie Rundle to Philip Glenister", + "link": "https://www.standard.co.uk/culture/tvfilm/after-the-flood-cast-who-plays-actors-itv-police-drama-b1129887.html", + "pubDate": "Thu, 04 Jan 2024 06:00:00 GMT", + "dc:creator": "Elizabeth Gregory", + "dc:date": "2024-01-04T06:00:00+00:00", + "content": "

In the upcoming nail-biting mystery, a body is unearthed by a tremendous flood

", + "contentSnippet": "In the upcoming nail-biting mystery, a body is unearthed by a tremendous flood", + "guid": "b1129887", + "categories": ["TV", "Culture"], + "isoDate": "2024-01-04T06:00:00.000Z" + }, + { + "creator": "Vicky Jessop", + "date": "2024-01-04T06:00:00+00:00", + "title": "Best games coming out in January: from Tekken 8 to The Last Of Us Part II, here's what to play", + "link": "https://www.standard.co.uk/culture/gaming/best-games-releases-january-2024-play-the-last-of-us-tekken-b1130160.html", + "pubDate": "Thu, 04 Jan 2024 06:00:00 GMT", + "dc:creator": "Vicky Jessop", + "dc:date": "2024-01-04T06:00:00+00:00", + "content": "

Start 2024 in style with these upcoming games

", + "contentSnippet": "Start 2024 in style with these upcoming games", + "guid": "b1130160", + "categories": ["Gaming", "Culture"], + "isoDate": "2024-01-04T06:00:00.000Z" + }, + { + "creator": "Pa Reporter", + "date": "2024-01-04T05:32:58+00:00", + "title": "What the papers say \u2013 January 4", + "link": "https://www.standard.co.uk/news/uk/nhs-boris-johnson-conservatives-guardian-prime-minister-b1130230.html", + "pubDate": "Thu, 04 Jan 2024 05:32:58 GMT", + "dc:creator": "Pa Reporter", + "dc:date": "2024-01-04T05:32:58+00:00", + "content": "A wide array of stories fight for attention on the front pages of Thursday\u2019s newspapers.", + "contentSnippet": "A wide array of stories fight for attention on the front pages of Thursday\u2019s newspapers.", + "guid": "b1130230", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T05:32:58.000Z" + }, + { + "creator": "Pa Scotland Reporters", + "date": "2024-01-04T00:01:48+00:00", + "title": "Child abuse ring members who plunged to \u2018depths of depravity\u2019 face sentencing", + "link": "https://www.standard.co.uk/news/crime/glasgow-high-court-scottish-none-police-scotland-b1130223.html", + "pubDate": "Thu, 04 Jan 2024 00:01:48 GMT", + "dc:creator": "Pa Scotland Reporters", + "dc:date": "2024-01-04T00:01:48+00:00", + "content": "Seven people who carried out sexual and physical abuse are to be sentenced at the High Court in Glasgow on Thursday.", + "contentSnippet": "Seven people who carried out sexual and physical abuse are to be sentenced at the High Court in Glasgow on Thursday.", + "guid": "b1130223", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T00:01:48.000Z" + }, + { + "creator": "Ella Pickover", + "date": "2024-01-04T00:01:10+00:00", + "title": "A number of hospitals call for doctors to return to work as strike continues", + "link": "https://www.standard.co.uk/news/politics/england-nhs-stephen-powis-british-medical-association-government-b1130224.html", + "pubDate": "Thu, 04 Jan 2024 00:01:10 GMT", + "dc:creator": "Ella Pickover", + "dc:date": "2024-01-04T00:01:10+00:00", + "content": "Junior doctors in England are staging the longest walkout in NHS history.", + "contentSnippet": "Junior doctors in England are staging the longest walkout in NHS history.", + "guid": "b1130224", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T00:01:10.000Z" + }, + { + "creator": "Neil Lancefield", + "date": "2024-01-04T00:01:00+00:00", + "title": "Electric vehicles to hit one million mark this month", + "link": "https://www.standard.co.uk/business/business-news/electric-vehicles-to-hit-one-million-mark-this-month-b1130221.html", + "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", + "dc:creator": "Neil Lancefield", + "dc:date": "2024-01-04T00:01:00+00:00", + "content": "More than 967,000 battery electric vehicles were licensed as of the end of November, the RAC Foundation said.", + "contentSnippet": "More than 967,000 battery electric vehicles were licensed as of the end of November, the RAC Foundation said.", + "guid": "b1130221", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T00:01:00.000Z" + }, + { + "creator": "Eleanor Busby", + "date": "2024-01-04T00:01:00+00:00", + "title": "Exam board to offer pupils on-screen English GCSEs by next summer", + "link": "https://www.standard.co.uk/news/tech/gcses-english-students-schools-pearson-b1130227.html", + "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", + "dc:creator": "Eleanor Busby", + "dc:date": "2024-01-04T00:01:00+00:00", + "content": "Up to 125,000 UK students will have the option to take Edexcel\u2019s GCSE English language and English literature exams on-screen for the first time.", + "contentSnippet": "Up to 125,000 UK students will have the option to take Edexcel\u2019s GCSE English language and English literature exams on-screen for the first time.", + "guid": "b1130227", + "categories": ["Tech", "News"], + "isoDate": "2024-01-04T00:01:00.000Z" + }, + { + "creator": "Vicky Shaw", + "date": "2024-01-04T00:01:00+00:00", + "title": "Record Boxing Day bounce in sellers coming to market, says Rightmove", + "link": "https://www.standard.co.uk/business/money/record-boxing-day-bounce-in-sellers-coming-to-market-says-rightmove-b1130220.html", + "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", + "dc:creator": "Vicky Shaw", + "dc:date": "2024-01-04T00:01:00+00:00", + "content": "The number of buyers contacting estate agents about homes for sale also jumped, the property website said.", + "contentSnippet": "The number of buyers contacting estate agents about homes for sale also jumped, the property website said.", + "guid": "b1130220", + "categories": ["Money", "Business"], + "isoDate": "2024-01-04T00:01:00.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-04T00:01:00+00:00", + "title": "Two fifths of UK business owners have parents who are founders \u2013 survey", + "link": "https://www.standard.co.uk/business/money/two-fifths-of-uk-business-owners-have-parents-who-are-founders-survey-b1130217.html", + "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-04T00:01:00+00:00", + "content": "The study also found that just 13% of business owners took out a bank loan to launch their start-up.", + "contentSnippet": "The study also found that just 13% of business owners took out a bank loan to launch their start-up.", + "guid": "b1130217", + "categories": ["Money", "Business"], + "isoDate": "2024-01-04T00:01:00.000Z" + }, + { + "creator": "Rebecca Speare-Cole", + "date": "2024-01-04T00:01:00+00:00", + "title": "UK consumption putting enormous pressure on world\u2019s forests, MPs warn", + "link": "https://www.standard.co.uk/business/business-news/uk-consumption-putting-enormous-pressure-on-world-s-forests-mps-warn-b1130222.html", + "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", + "dc:creator": "Rebecca Speare-Cole", + "dc:date": "2024-01-04T00:01:00+00:00", + "content": "The Environmental Audit Committee said the intensity of the UK\u2019s consumption on the world\u2019s forest is higher than that of China.", + "contentSnippet": "The Environmental Audit Committee said the intensity of the UK\u2019s consumption on the world\u2019s forest is higher than that of China.", + "guid": "b1130222", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T00:01:00.000Z" + }, + { + "creator": "Ella Pickover", + "date": "2024-01-04T00:01:00+00:00", + "title": "Sunak faces calls to act on pledge to cut waiting lists as strike action continues", + "link": "https://www.standard.co.uk/business/business-news/sunak-faces-calls-to-act-on-pledge-to-cut-waiting-lists-as-strike-action-continues-b1130218.html", + "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", + "dc:creator": "Ella Pickover", + "dc:date": "2024-01-04T00:01:00+00:00", + "content": "Junior doctors in England have entered their second day of strike action.", + "contentSnippet": "Junior doctors in England have entered their second day of strike action.", + "guid": "b1130218", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T00:01:00.000Z" + }, + { + "creator": "Danny Halpin", + "date": "2024-01-04T00:01:00+00:00", + "title": "Changes to food labelling to encourage buying British", + "link": "https://www.standard.co.uk/business/business-news/changes-to-food-labelling-to-encourage-buying-british-b1130216.html", + "pubDate": "Thu, 04 Jan 2024 00:01:00 GMT", + "dc:creator": "Danny Halpin", + "dc:date": "2024-01-04T00:01:00+00:00", + "content": "The Government said it wants to give people more choice and support UK farmers.", + "contentSnippet": "The Government said it wants to give people more choice and support UK farmers.", + "guid": "b1130216", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T00:01:00.000Z" + }, + { + "creator": "Nina Massey", + "date": "2024-01-03T23:30:00+00:00", + "title": "Hearing aids may help people live longer, study suggests", + "link": "https://www.standard.co.uk/news/science/people-research-usa-american-b1130215.html", + "pubDate": "Wed, 03 Jan 2024 23:30:00 GMT", + "dc:creator": "Nina Massey", + "dc:date": "2024-01-03T23:30:00+00:00", + "content": "Past research has suggested that untreated hearing loss can result in a reduced life span.", + "contentSnippet": "Past research has suggested that untreated hearing loss can result in a reduced life span.", + "guid": "b1130215", + "categories": ["Science", "News"], + "isoDate": "2024-01-03T23:30:00.000Z" + }, + { + "creator": "William Mata", + "date": "2024-01-04T11:11:38+00:00", + "title": "Junior doctors' strike: How will hospitals be affected and what to do if you have a cancelled appointment", + "link": "https://www.standard.co.uk/news/health/junior-doctor-strike-how-hospitals-affected-appointment-cancelled-b1127960.html", + "pubDate": "Thu, 04 Jan 2024 11:11:38 GMT", + "dc:creator": "William Mata", + "dc:date": "2024-01-04T11:11:38+00:00", + "content": "

How you can prepare when junior doctors walk out this month and next

", + "contentSnippet": "How you can prepare when junior doctors walk out this month and next", + "guid": "b1127960", + "categories": ["Health", "News"], + "isoDate": "2024-01-04T11:11:38.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-04T11:10:22+00:00", + "title": "Best air fryer deals: healthier, low-cost meals for the whole family", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/kitchen-appliances/best-air-fryer-deals-b1020314.html", + "pubDate": "Thu, 04 Jan 2024 11:10:22 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-04T11:10:22+00:00", + "content": "

Get \u2018em while they\u2019re hot this January

", + "contentSnippet": "Get \u2018em while they\u2019re hot this January", + "guid": "b1020314", + "categories": [ + "Kitchen Appliances", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-04T11:10:22.000Z" + }, + { + "creator": "Seren Morris", + "date": "2024-01-04T11:09:07+00:00", + "title": "Universal Credit changes 2024: Benefit migration, cost of living payments, and more", + "link": "https://www.standard.co.uk/news/uk/universal-credit-changes-2024-benefits-moving-payments-dates-b1130151.html", + "pubDate": "Thu, 04 Jan 2024 11:09:07 GMT", + "dc:creator": "Seren Morris", + "dc:date": "2024-01-04T11:09:07+00:00", + "content": "

Find out below what changes are coming up and how they could affect you

", + "contentSnippet": "Find out below what changes are coming up and how they could affect you", + "guid": "b1130151", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T11:09:07.000Z" + }, + { + "creator": "Hannah Cottrell", + "date": "2024-01-04T11:08:09+00:00", + "title": "Luke Littler inspires new darts fans who \u2018loved watching final\u2019", + "link": "https://www.standard.co.uk/news/uk/luke-littler-alexandra-palace-luke-humphries-nottingham-glasgow-b1130285.html", + "pubDate": "Thu, 04 Jan 2024 11:08:09 GMT", + "dc:creator": "Hannah Cottrell", + "dc:date": "2024-01-04T11:08:09+00:00", + "content": "Adam Edwards said his daughters have been \u2018desperate\u2019 to watch the 16-year-old\u2019s matches.", + "contentSnippet": "Adam Edwards said his daughters have been \u2018desperate\u2019 to watch the 16-year-old\u2019s matches.", + "guid": "b1130285", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T11:08:09.000Z" + }, + { + "creator": "Jordan Reynolds", + "date": "2024-01-04T17:06:15+00:00", + "title": "Photo appeal over New Year stabbing death as murder suspect released on bail", + "link": "https://www.standard.co.uk/news/uk/metropolitan-police-people-eve-ange-postecoglou-camden-b1130394.html", + "pubDate": "Thu, 04 Jan 2024 17:06:15 GMT", + "dc:creator": "Jordan Reynolds", + "dc:date": "2024-01-04T17:06:15+00:00", + "content": "Detectives investigating the death of Harry Pitman, 16, have released pictures of two people they want to identify.", + "contentSnippet": "Detectives investigating the death of Harry Pitman, 16, have released pictures of two people they want to identify.", + "guid": "b1130394", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T17:06:15.000Z" + }, + { + "creator": "Simon Collings", + "date": "2024-01-04T17:01:55+00:00", + "title": "Why Tottenham trump Arsenal and Chelsea with January transfer spending power", + "link": "https://www.standard.co.uk/sport/football/tottenham-arsenal-fc-chelsea-transfers-b1130351.html", + "pubDate": "Thu, 04 Jan 2024 17:01:55 GMT", + "dc:creator": "Simon Collings", + "dc:date": "2024-01-04T17:01:55+00:00", + "content": "

Football finance expert Kieran Maguire provides the lowdown on what fans can expect

", + "contentSnippet": "Football finance expert Kieran Maguire provides the lowdown on what fans can expect", + "guid": "b1130351", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T17:01:55.000Z" + }, + { + "creator": "Marc Mayo and Jonathan Gorrie", + "date": "2024-01-04T17:01:35+00:00", + "title": "Transfer news LIVE! Arsenal learn new Toney option, new defender targets; Dragusin to Spurs; Chelsea latest", + "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-fc-tottenham-chelsea-toney-dragusin-mbappe-b1130232.html", + "pubDate": "Thu, 04 Jan 2024 17:01:35 GMT", + "dc:creator": "Marc Mayo and Jonathan Gorrie", + "dc:date": "2024-01-04T17:01:35+00:00", + "content": "

Follow all the latest transfer news, rumours and gossip in January

", + "contentSnippet": "Follow all the latest transfer news, rumours and gossip in January", + "guid": "b1130232", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T17:01:35.000Z" + }, + { + "creator": "Emma Loffhagen", + "date": "2024-01-04T17:00:52+00:00", + "title": "OPINION - The quarter-life crisis is real: I'm low-key dreading turning 25", + "link": "https://www.standard.co.uk/comment/2024-turning-25-birthday-the-notebook-anniversary-b1130338.html", + "pubDate": "Thu, 04 Jan 2024 17:00:52 GMT", + "dc:creator": "Emma Loffhagen", + "dc:date": "2024-01-04T17:00:52+00:00", + "content": "

There are a number of reasons why 2024 is set to be a particularly significant year. It will see a record-breaking number of national elections which will shape the trajectory of the 21st century world, it will be planet-alteringly decisive for action on climate change, it is the 20th anniversary of The Notebook.

", + "contentSnippet": "There are a number of reasons why 2024 is set to be a particularly significant year. It will see a record-breaking number of national elections which will shape the trajectory of the 21st century world, it will be planet-alteringly decisive for action on climate change, it is the 20th anniversary of The Notebook.", + "guid": "b1130338", + "categories": ["Comment"], + "isoDate": "2024-01-04T17:00:52.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2024-01-04T17:00:17+00:00", + "title": "Sunak declines to back calls for ex-Post Office boss to lose CBE", + "link": "https://www.standard.co.uk/news/politics/keir-starmer-post-office-prime-minister-toby-jones-itv-b1130399.html", + "pubDate": "Thu, 04 Jan 2024 17:00:17 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2024-01-04T17:00:17+00:00", + "content": "Rishi Sunak and Sir Keir Starmer have both resisted backing calls for a former Post Office boss to lose her CBE over the Horizon scandal.", + "contentSnippet": "Rishi Sunak and Sir Keir Starmer have both resisted backing calls for a former Post Office boss to lose her CBE over the Horizon scandal.", + "guid": "b1130399", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T17:00:17.000Z" + }, + { + "creator": "Jacob Phillips", + "date": "2024-01-04T16:57:12+00:00", + "title": "Watch: Heartwarming moment mother elephant cuddles her calf after being separated for days", + "link": "https://www.standard.co.uk/news/world/india-elephant-tamil-nadu-anamalai-tiger-reserve-b1130380.html", + "pubDate": "Thu, 04 Jan 2024 16:57:12 GMT", + "dc:creator": "Jacob Phillips", + "dc:date": "2024-01-04T16:57:12+00:00", + "content": "

The young calf was found roughly 3km from its herd

", + "contentSnippet": "The young calf was found roughly 3km from its herd", + "guid": "b1130380", + "categories": ["World", "News"], + "isoDate": "2024-01-04T16:57:12.000Z" + }, + { + "creator": "Lydia Chantler-Hicks", + "date": "2024-01-04T16:56:26+00:00", + "title": "Five men arrested after hundreds of stolen mobile phones found in south London police raid", + "link": "https://www.standard.co.uk/news/crime/men-arrested-brockley-stolen-mobile-phones-london-met-police-b1130365.html", + "pubDate": "Thu, 04 Jan 2024 16:56:26 GMT", + "dc:creator": "Lydia Chantler-Hicks", + "dc:date": "2024-01-04T16:56:26+00:00", + "content": "

The raid comes after thefts across Lewisham, Greenwich and Southwark

", + "contentSnippet": "The raid comes after thefts across Lewisham, Greenwich and Southwark", + "guid": "b1130365", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T16:56:26.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2024-01-04T16:56:15+00:00", + "title": "Child Benefit major change: Millions more parents can claim online for the first time", + "link": "https://www.standard.co.uk/news/politics/child-benefit-claim-online-form-b1130105.html", + "pubDate": "Thu, 04 Jan 2024 16:56:15 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2024-01-04T16:56:15+00:00", + "content": "

HM Revenue and Customs is encouraging parents to go digital rather than use the old paper system

", + "contentSnippet": "HM Revenue and Customs is encouraging parents to go digital rather than use the old paper system", + "guid": "b1130105", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T16:56:15.000Z" + }, + { + "creator": "Rachael Davies", + "date": "2024-01-04T16:50:20+00:00", + "title": "Greggs announces return of popular vegan steak bake", + "link": "https://www.standard.co.uk/news/uk/greggs-vegan-steak-bake-available-veganuary-b1130377.html", + "pubDate": "Thu, 04 Jan 2024 16:50:20 GMT", + "dc:creator": "Rachael Davies", + "dc:date": "2024-01-04T16:50:20+00:00", + "content": "

The customer favourite returns just in time for Veganuary

", + "contentSnippet": "The customer favourite returns just in time for Veganuary", + "guid": "b1130377", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T16:50:20.000Z" + }, + { + "creator": "Nick Purewal", + "date": "2024-01-04T16:49:57+00:00", + "title": "England rugby stars to ditch players' union to make future deals with RFU", + "link": "https://www.standard.co.uk/sport/rugby/england-ditch-players-union-deals-rfu-b1130392.html", + "pubDate": "Thu, 04 Jan 2024 16:49:57 GMT", + "dc:creator": "Nick Purewal", + "dc:date": "2024-01-04T16:49:57+00:00", + "content": "

Red Rose players move to gain more control and influence on their own affairs

", + "contentSnippet": "Red Rose players move to gain more control and influence on their own affairs", + "guid": "b1130392", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2024-01-04T16:49:57.000Z" + }, + { + "creator": "Jacob Phillips", + "date": "2024-01-04T16:47:03+00:00", + "title": "Iowa school shooting: President Biden briefed after gunfire kills at least one", + "link": "https://www.standard.co.uk/news/world/iowa-school-shooting-perry-biden-victims-b1130368.html", + "pubDate": "Thu, 04 Jan 2024 16:47:03 GMT", + "dc:creator": "Jacob Phillips", + "dc:date": "2024-01-04T16:47:03+00:00", + "content": "

Police and state troopers with flashing lights were reportedly seen lined up outside the school

", + "contentSnippet": "Police and state troopers with flashing lights were reportedly seen lined up outside the school", + "guid": "b1130368", + "categories": ["World", "News"], + "isoDate": "2024-01-04T16:47:03.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2024-01-04T16:45:07+00:00", + "title": "Martin Scorsese\u2019s Killers Of The Flower Moon gets AppleTV+ streaming date", + "link": "https://www.standard.co.uk/culture/film/martin-scorsese-bfi-robert-de-niro-apple-leonardo-dicaprio-b1130397.html", + "pubDate": "Thu, 04 Jan 2024 16:45:07 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2024-01-04T16:45:07+00:00", + "content": "The film has been nominated for a slew of awards and topped a BFI poll naming it the best movie of 2023.", + "contentSnippet": "The film has been nominated for a slew of awards and topped a BFI poll naming it the best movie of 2023.", + "guid": "b1130397", + "categories": ["Film", "Culture"], + "isoDate": "2024-01-04T16:45:07.000Z" + }, + { + "creator": "Pa", + "date": "2024-01-04T16:45:05+00:00", + "title": "In Pictures: Residents braced for evacuation as heavy rainfall causes flooding", + "link": "https://www.standard.co.uk/news/environment/worcester-nottinghamshire-david-davies-met-office-nottingham-b1130395.html", + "pubDate": "Thu, 04 Jan 2024 16:45:05 GMT", + "dc:creator": "Pa", + "dc:date": "2024-01-04T16:45:05+00:00", + "content": "A major incident was declared after heavy rainfall resulted in flooding, bringing widespread disruption across the south.", + "contentSnippet": "A major incident was declared after heavy rainfall resulted in flooding, bringing widespread disruption across the south.", + "guid": "b1130395", + "categories": ["Environment", "News"], + "isoDate": "2024-01-04T16:45:05.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2024-01-04T16:35:51+00:00", + "title": "Bank of England governor Andrew Bailey to be grilled on interest rate hikes' threat to UK financial stability", + "link": "https://www.standard.co.uk/news/politics/mortgage-interest-rate-bank-of-england-governor-economy-threat-b1130389.html", + "pubDate": "Thu, 04 Jan 2024 16:35:51 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2024-01-04T16:35:51+00:00", + "content": "

He and other members of the bank\u2019s Financial Policy Committee will face questions from the Commons Treasury Committee

", + "contentSnippet": "He and other members of the bank\u2019s Financial Policy Committee will face questions from the Commons Treasury Committee", + "guid": "b1130389", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T16:35:51.000Z" + }, + { + "creator": "Jonathan McCambridge", + "date": "2024-01-04T16:34:33+00:00", + "title": "Loyalist activist reports SDLP leader to parliamentary standards watchdog", + "link": "https://www.standard.co.uk/news/politics/londonderry-police-service-of-northern-ireland-salvation-army-northern-ireland-house-of-commons-b1130324.html", + "pubDate": "Thu, 04 Jan 2024 16:34:33 GMT", + "dc:creator": "Jonathan McCambridge", + "dc:date": "2024-01-04T16:34:33+00:00", + "content": "Jamie Bryson raised a complaint against Colum Eastwood, accusing the Foyle MP of seeking to \u2018place himself above the law\u2019.", + "contentSnippet": "Jamie Bryson raised a complaint against Colum Eastwood, accusing the Foyle MP of seeking to \u2018place himself above the law\u2019.", + "guid": "b1130324", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T16:34:33.000Z" + }, + { + "creator": "Flora Thompson", + "date": "2024-01-04T16:34:16+00:00", + "title": "French report criticising UK efforts to curb Channel crossings \u2018out of date\u2019", + "link": "https://www.standard.co.uk/news/politics/home-office-french-channel-rishi-sunak-france-b1130393.html", + "pubDate": "Thu, 04 Jan 2024 16:34:16 GMT", + "dc:creator": "Flora Thompson", + "dc:date": "2024-01-04T16:34:16+00:00", + "content": "The Court of Accounts\u2019 findings are said to refer in particular to a joint intelligence unit created in 2020.", + "contentSnippet": "The Court of Accounts\u2019 findings are said to refer in particular to a joint intelligence unit created in 2020.", + "guid": "b1130393", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T16:34:16.000Z" + }, + { + "creator": "Robert Dex", + "date": "2024-01-04T16:28:43+00:00", + "title": "Islamic State terror group claim responsibility for Iran attack", + "link": "https://www.standard.co.uk/news/world/islamic-state-terror-group-iran-attack-b1130390.html", + "pubDate": "Thu, 04 Jan 2024 16:28:43 GMT", + "dc:creator": "Robert Dex", + "dc:date": "2024-01-04T16:28:43+00:00", + "content": "

The terror group claimed two suicide bombers were responsible for attacks that killed nearly 100 people

", + "contentSnippet": "The terror group claimed two suicide bombers were responsible for attacks that killed nearly 100 people", + "guid": "b1130390", + "categories": ["World", "News"], + "isoDate": "2024-01-04T16:28:43.000Z" + }, + { + "creator": "Nina Zietman", + "date": "2024-01-04T16:28:42+00:00", + "title": "Best at-home reformer Pilates machines to help you tone and strengthen muscles", + "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-home-pilates-reformer-machines-b1059987.html", + "pubDate": "Thu, 04 Jan 2024 16:28:42 GMT", + "dc:creator": "Nina Zietman", + "dc:date": "2024-01-04T16:28:42+00:00", + "content": "

Upgrade your workout with the ultimate core-strengthening apparatus

", + "contentSnippet": "Upgrade your workout with the ultimate core-strengthening apparatus", + "guid": "b1059987", + "categories": ["Health & Fitness", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T16:28:42.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2024-01-04T16:28:11+00:00", + "title": "ChatGPT 5 release date: what we know about OpenAI\u2019s next chatbot", + "link": "https://www.standard.co.uk/news/tech/chatgpt-5-release-date-details-openai-chatbot-b1130369.html", + "pubDate": "Thu, 04 Jan 2024 16:28:11 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2024-01-04T16:28:11+00:00", + "content": "

The company's most advanced chatbot forms part of its mission to replicate human intelligence

", + "contentSnippet": "The company's most advanced chatbot forms part of its mission to replicate human intelligence", + "guid": "b1130369", + "categories": ["Tech", "News"], + "isoDate": "2024-01-04T16:28:11.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2024-01-04T16:24:33+00:00", + "title": "Best anti-allergy bedding: Sheets for your best night\u2019s sleep yet ", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-anti-allergy-bedding-hypoallergenic-sheets-b1076374.html", + "pubDate": "Thu, 04 Jan 2024 16:24:33 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2024-01-04T16:24:33+00:00", + "content": "

Say goodbye to swollen eyes and stuffy noses

", + "contentSnippet": "Say goodbye to swollen eyes and stuffy noses", + "guid": "b1076374", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-04T16:24:33.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2024-01-04T16:16:24+00:00", + "title": "Rishi Sunak eyes autumn general election as he scotches talk of a May poll", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-election-may-rules-out-starmer-labour-tories-b1130316.html", + "pubDate": "Thu, 04 Jan 2024 16:16:24 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2024-01-04T16:16:24+00:00", + "content": "

Rishi Sunak reveals his 'working assumption' is that he will hold a 'general election in the second half of this year'

", + "contentSnippet": "Rishi Sunak reveals his 'working assumption' is that he will hold a 'general election in the second half of this year'", + "guid": "b1130316", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T16:16:24.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-04T16:15:54+00:00", + "title": "Luke Littler named on 2024 Premier League Darts line-up alongside new world champion Luke Humphries", + "link": "https://www.standard.co.uk/sport/luke-littler-humphries-premier-league-darts-lineup-2024-b1130386.html", + "pubDate": "Thu, 04 Jan 2024 16:15:54 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-04T16:15:54+00:00", + "content": "

Michael van Gerwen will defend title against teen sensation

", + "contentSnippet": "Michael van Gerwen will defend title against teen sensation", + "guid": "b1130386", + "categories": ["Sport"], + "isoDate": "2024-01-04T16:15:54.000Z" + }, + { + "creator": "Katie Strick", + "date": "2024-01-04T16:11:31+00:00", + "title": "11 figures named in the Epstein files, from Stephen Hawking to Naomi Campbell \u2014 and what we actually know ", + "link": "https://www.standard.co.uk/lifestyle/celebrity/epstein-files-11-key-figures-named-stephen-hawking-b1130252.html", + "pubDate": "Thu, 04 Jan 2024 16:11:31 GMT", + "dc:creator": "Katie Strick", + "dc:date": "2024-01-04T16:11:31+00:00", + "content": "

Nearly 1,000 pages of court records were revealed last night \u2014 and while being named does not necessarily indicate any wrongdoing, the files do contain striking reminders of the VIPs Epstein chose to surround himself with. Katie Strick reports

", + "contentSnippet": "Nearly 1,000 pages of court records were revealed last night \u2014 and while being named does not necessarily indicate any wrongdoing, the files do contain striking reminders of the VIPs Epstein chose to surround himself with. Katie Strick reports", + "guid": "b1130252", + "categories": ["Celebrity", "Lifestyle"], + "isoDate": "2024-01-04T16:11:31.000Z" + }, + { + "creator": "Jon Weeks", + "date": "2024-01-04T16:06:26+00:00", + "title": "Elvis concert brings AI hologram to London - Tech & Science Daily podcast", + "link": "https://www.standard.co.uk/podcasts/elvis-concert-ai-hologram-london-layered-reality-tech-b1130350.html", + "pubDate": "Thu, 04 Jan 2024 16:06:26 GMT", + "dc:creator": "Jon Weeks", + "dc:date": "2024-01-04T16:06:26+00:00", + "content": "

All the stories from Thursday's episode of the Tech & Science Daily podcast.

", + "contentSnippet": "All the stories from Thursday's episode of the Tech & Science Daily podcast.", + "guid": "b1130350", + "categories": ["Podcasts"], + "isoDate": "2024-01-04T16:06:26.000Z" + }, + { + "creator": "Robert Dex", + "date": "2024-01-04T16:05:36+00:00", + "title": "Tower of London ravens have wings clipped to stop them escaping", + "link": "https://www.standard.co.uk/news/uk/tower-of-london-ravens-wings-clipped-escaping-b1130357.html", + "pubDate": "Thu, 04 Jan 2024 16:05:36 GMT", + "dc:creator": "Robert Dex", + "dc:date": "2024-01-04T16:05:36+00:00", + "content": "

Jubilee and Branwen had been flying to the top of the White Tower

", + "contentSnippet": "Jubilee and Branwen had been flying to the top of the White Tower", + "guid": "b1130357", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T16:05:36.000Z" + }, + { + "creator": "Ellie Davis", + "date": "2024-01-04T16:02:16+00:00", + "title": "Best luxury shower gels to treat yourself in 2024", + "link": "https://www.standard.co.uk/shopping/esbest/beauty/bath-body/best-luxury-shower-gels-b1095144.html", + "pubDate": "Thu, 04 Jan 2024 16:02:16 GMT", + "dc:creator": "Ellie Davis", + "dc:date": "2024-01-04T16:02:16+00:00", + "content": "

Bring decadent formulations to your daily shower rituals

", + "contentSnippet": "Bring decadent formulations to your daily shower rituals", + "guid": "b1095144", + "categories": ["Bath and body", "Beauty", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T16:02:16.000Z" + }, + { + "creator": "Lisa McLoughlin ", + "date": "2024-01-04T16:01:26+00:00", + "title": "Susanna Reid reveals crippling 'hangxiety' motivated her to go alcohol free", + "link": "https://www.standard.co.uk/showbiz/susanna-reid-teetotal-alcohol-free-hangxiety-hangovers-b1130374.html", + "pubDate": "Thu, 04 Jan 2024 16:01:26 GMT", + "dc:creator": "Lisa McLoughlin ", + "dc:date": "2024-01-04T16:01:26+00:00", + "content": "

The GMB star, 53, spoke on Thursday's Lorraine about her lifestyle choice

", + "contentSnippet": "The GMB star, 53, spoke on Thursday's Lorraine about her lifestyle choice", + "guid": "b1130374", + "categories": ["Showbiz"], + "isoDate": "2024-01-04T16:01:26.000Z" + }, + { + "creator": "Daniel Keane", + "date": "2024-01-04T16:00:58+00:00", + "title": "Hearing aids could help to prevent or delay dementia, major new study finds", + "link": "https://www.standard.co.uk/news/health/deaf-hearing-aid-dementia-alzheimers-research-university-southern-denmark-b1130373.html", + "pubDate": "Thu, 04 Jan 2024 16:00:58 GMT", + "dc:creator": "Daniel Keane", + "dc:date": "2024-01-04T16:00:58+00:00", + "content": "

Researchers found that hearing loss was associated with a higher risk of dementia compared with people who used a hearing aid

", + "contentSnippet": "Researchers found that hearing loss was associated with a higher risk of dementia compared with people who used a hearing aid", + "guid": "b1130373", + "categories": ["Health", "News"], + "isoDate": "2024-01-04T16:00:58.000Z" + }, + { + "creator": "Nina Massey", + "date": "2024-01-04T16:00:00+00:00", + "title": "Study reveals genetic link between anorexia and being an early riser", + "link": "https://www.standard.co.uk/news/science/people-usa-experts-uruguay-university-college-london-b1130387.html", + "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", + "dc:creator": "Nina Massey", + "dc:date": "2024-01-04T16:00:00+00:00", + "content": "People with the eating disorder often wake early and experience insomnia, the researchers found.", + "contentSnippet": "People with the eating disorder often wake early and experience insomnia, the researchers found.", + "guid": "b1130387", + "categories": ["Science", "News"], + "isoDate": "2024-01-04T16:00:00.000Z" + }, + { + "creator": "Storm Newton", + "date": "2024-01-04T16:00:00+00:00", + "title": "Hearing aid use linked to lower dementia risk, study suggests", + "link": "https://www.standard.co.uk/news/science/research-hearing-loss-denmark-government-university-college-london-b1130388.html", + "pubDate": "Thu, 04 Jan 2024 16:00:00 GMT", + "dc:creator": "Storm Newton", + "dc:date": "2024-01-04T16:00:00+00:00", + "content": "Research was carried out in Denmark from 2003 to 2017 and included more than 500,000 people.", + "contentSnippet": "Research was carried out in Denmark from 2003 to 2017 and included more than 500,000 people.", + "guid": "b1130388", + "categories": ["Science", "News"], + "isoDate": "2024-01-04T16:00:00.000Z" + }, + { + "creator": "Ann Martin", + "date": "2024-01-04T15:57:52+00:00", + "title": "Best folding treadmills for home workouts in small spaces", + "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-folding-treadmills-compact-storage-b1044524.html", + "pubDate": "Thu, 04 Jan 2024 15:57:52 GMT", + "dc:creator": "Ann Martin", + "dc:date": "2024-01-04T15:57:52+00:00", + "content": "

Exercise in comfort while keeping your home clutter-free with the best folding treadmills for indoor workouts

", + "contentSnippet": "Exercise in comfort while keeping your home clutter-free with the best folding treadmills for indoor workouts", + "guid": "b1044524", + "categories": ["Health & Fitness", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T15:57:52.000Z" + }, + { + "creator": "Sam Hall", + "date": "2024-01-04T15:57:36+00:00", + "title": "Major incident declared amid widespread flooding in England", + "link": "https://www.standard.co.uk/news/environment/nottinghamshire-county-council-england-met-office-loughborough-leicestershire-b1130371.html", + "pubDate": "Thu, 04 Jan 2024 15:57:36 GMT", + "dc:creator": "Sam Hall", + "dc:date": "2024-01-04T15:57:36+00:00", + "content": "Nottinghamshire County Council said the incident was declared \u2018due to rising levels along the river Trent\u2019.", + "contentSnippet": "Nottinghamshire County Council said the incident was declared \u2018due to rising levels along the river Trent\u2019.", + "guid": "b1130371", + "categories": ["Environment", "News"], + "isoDate": "2024-01-04T15:57:36.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2024-01-04T15:56:15+00:00", + "title": "Tube strikes will cost London's hospitality sector \u00a350million, bosses fear", + "link": "https://www.standard.co.uk/news/london/tube-strikes-london-hospitality-industry-cost-underground-january-tfl-b1130361.html", + "pubDate": "Thu, 04 Jan 2024 15:56:15 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2024-01-04T15:56:15+00:00", + "content": "

Businesses set to be hit as commuters stay at home, hospitality chiefs warn

", + "contentSnippet": "Businesses set to be hit as commuters stay at home, hospitality chiefs warn", + "guid": "b1130361", + "categories": ["London", "News"], + "isoDate": "2024-01-04T15:56:15.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-04T15:55:27+00:00", + "title": "When is FA Cup draw? Date, time, TV channel and ball numbers for fourth-round ties", + "link": "https://www.standard.co.uk/sport/football/fa-cup-draw-2024-time-date-ball-numbers-tv-channel-live-stream-fourth-round-b1130379.html", + "pubDate": "Thu, 04 Jan 2024 15:55:27 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-04T15:55:27+00:00", + "content": "

Start time confirmed for draw after this weekend's cup ties

", + "contentSnippet": "Start time confirmed for draw after this weekend's cup ties", + "guid": "b1130379", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T15:55:27.000Z" + }, + { + "creator": "Rhiannon James", + "date": "2024-01-04T15:54:49+00:00", + "title": "Allegations of antisemitism and transphobia against Rosie Duffield MP dropped", + "link": "https://www.standard.co.uk/news/politics/labour-national-executive-committee-canterbury-sunday-times-the-sunday-times-b1130385.html", + "pubDate": "Thu, 04 Jan 2024 15:54:49 GMT", + "dc:creator": "Rhiannon James", + "dc:date": "2024-01-04T15:54:49+00:00", + "content": "The Labour MP said the party\u2019s National Executive Committee had dismissed the claims against her, adding \u2018there was no case to answer\u2019.", + "contentSnippet": "The Labour MP said the party\u2019s National Executive Committee had dismissed the claims against her, adding \u2018there was no case to answer\u2019.", + "guid": "b1130385", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T15:54:49.000Z" + }, + { + "creator": "Robert Dex", + "date": "2024-01-04T15:52:44+00:00", + "title": "Primrose Hill murder: Police appeal to find two males after fatal stabbing", + "link": "https://www.standard.co.uk/news/crime/primrose-hill-murder-police-appeal-harry-pitman-b1130381.html", + "pubDate": "Thu, 04 Jan 2024 15:52:44 GMT", + "dc:creator": "Robert Dex", + "dc:date": "2024-01-04T15:52:44+00:00", + "content": "

Police issued the images as the investigation continues.

", + "contentSnippet": "Police issued the images as the investigation continues.", + "guid": "b1130381", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T15:52:44.000Z" + }, + { + "creator": "Susannah Streeter", + "date": "2024-01-04T15:44:09+00:00", + "title": "The FTSE 100 is feeling unloved on its 40th birthday but has much to be proud of", + "link": "https://www.standard.co.uk/business/ftse100-stock-market-london-1984-41-rise-b1129931.html", + "pubDate": "Thu, 04 Jan 2024 15:44:09 GMT", + "dc:creator": "Susannah Streeter", + "dc:date": "2024-01-04T15:44:09+00:00", + "content": "

Since its inception in 1984 the FTSE 100 has risen by 673%, outperforming gold and gilts

", + "contentSnippet": "Since its inception in 1984 the FTSE 100 has risen by 673%, outperforming gold and gilts", + "guid": "b1129931", + "categories": ["Business"], + "isoDate": "2024-01-04T15:44:09.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-04T15:44:09+00:00", + "title": "Tottenham XI vs Burnley: Predicted lineup, confirmed team news and injury latest for FA Cup tie", + "link": "https://www.standard.co.uk/sport/football/tottenham-xi-vs-burnley-predicted-lineup-confirmed-team-news-injury-latest-fa-cup-b1130375.html", + "pubDate": "Thu, 04 Jan 2024 15:44:09 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-04T15:44:09+00:00", + "content": "

Spurs could welcome back another key player for third-round clash

", + "contentSnippet": "Spurs could welcome back another key player for third-round clash", + "guid": "b1130375", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T15:44:09.000Z" + }, + { + "creator": "Maryam Kara", + "date": "2024-01-04T15:41:18+00:00", + "title": "A New Year's wish come true: Battersea's longest stay cat becomes last animal of 2023 to be rehomed", + "link": "https://www.standard.co.uk/news/london/london-battersea-longest-stay-cat-rehomed-b1130325.html", + "pubDate": "Thu, 04 Jan 2024 15:41:18 GMT", + "dc:creator": "Maryam Kara", + "dc:date": "2024-01-04T15:41:18+00:00", + "content": "

The charity has cared for more than 250,000 cats since the Victorian era

", + "contentSnippet": "The charity has cared for more than 250,000 cats since the Victorian era", + "guid": "b1130325", + "categories": ["London", "News"], + "isoDate": "2024-01-04T15:41:18.000Z" + }, + { + "creator": "Lucy Cotterill", + "date": "2024-01-04T15:40:16+00:00", + "title": "Best folding exercise bikes to save you space between workouts", + "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-folding-exercise-bikes-b1012990.html", + "pubDate": "Thu, 04 Jan 2024 15:40:16 GMT", + "dc:creator": "Lucy Cotterill", + "dc:date": "2024-01-04T15:40:16+00:00", + "content": "

Want to exercise at home but are short on space? Folding exercise bikes are a great way to add some cardio into your daily routine

", + "contentSnippet": "Want to exercise at home but are short on space? Folding exercise bikes are a great way to add some cardio into your daily routine", + "guid": "b1012990", + "categories": ["Health & Fitness", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T15:40:16.000Z" + }, + { + "creator": "Nancy Durrant", + "date": "2024-01-04T15:38:12+00:00", + "title": "The best exhibitions to see in London in 2024, from CUTE at Somerset House to Francis Bacon at the NPG", + "link": "https://www.standard.co.uk/culture/exhibitions/best-exhibitions-to-see-in-london-this-year-b1126356.html", + "pubDate": "Thu, 04 Jan 2024 15:38:12 GMT", + "dc:creator": "Nancy Durrant", + "dc:date": "2024-01-04T15:38:12+00:00", + "content": "

The capital's museums and galleries are a treasure trove of glorious art and ideas \u2013 here's our pick of the year's offerings

", + "contentSnippet": "The capital's museums and galleries are a treasure trove of glorious art and ideas \u2013 here's our pick of the year's offerings", + "guid": "b1126356", + "categories": ["Exhibitions", "Culture"], + "isoDate": "2024-01-04T15:38:12.000Z" + }, + { + "creator": "Seren Morris and Lola Christina Alao", + "date": "2024-01-04T15:38:09+00:00", + "title": "What is Universal Credit and who is eligible for it?", + "link": "https://www.standard.co.uk/news/uk/universal-credit-benefit-eligible-claim-changes-budget-b1067106.html", + "pubDate": "Thu, 04 Jan 2024 15:38:09 GMT", + "dc:creator": "Seren Morris and Lola Christina Alao", + "dc:date": "2024-01-04T15:38:09+00:00", + "content": "

The Government is expected to implement new measures to try to get people back to work.

", + "contentSnippet": "The Government is expected to implement new measures to try to get people back to work.", + "guid": "b1067106", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T15:38:09.000Z" + }, + { + "creator": "Lydia Chantler-Hicks", + "date": "2024-01-04T15:37:14+00:00", + "title": "Details of Oscar Pistorius' release from prison kept secret over 'security fears'", + "link": "https://www.standard.co.uk/news/world/oscar-pistorius-prison-release-south-africa-murder-date-b1130339.html", + "pubDate": "Thu, 04 Jan 2024 15:37:14 GMT", + "dc:creator": "Lydia Chantler-Hicks", + "dc:date": "2024-01-04T15:37:14+00:00", + "content": "

He is to be released on parole on Friday, 11 years after murdering girlfriend Reeva Steenkamp

", + "contentSnippet": "He is to be released on parole on Friday, 11 years after murdering girlfriend Reeva Steenkamp", + "guid": "b1130339", + "categories": ["World", "News"], + "isoDate": "2024-01-04T15:37:14.000Z" + }, + { + "creator": "Emma Loffhagen", + "date": "2024-01-04T15:37:04+00:00", + "title": "All the drama onboard the 9-month cruise going viral on TikTok", + "link": "https://www.standard.co.uk/lifestyle/nine-month-cruise-tiktok-royal-caribbean-ultimate-world-b1130091.html", + "pubDate": "Thu, 04 Jan 2024 15:37:04 GMT", + "dc:creator": "Emma Loffhagen", + "dc:date": "2024-01-04T15:37:04+00:00", + "content": "

Nine months, 65 countries, up to \u00a392,000 \u2014 Royal Caribbean's longest-ever cruise has become an overnight social media sensation. Emma Loffhagen dives into the onboard drama

", + "contentSnippet": "Nine months, 65 countries, up to \u00a392,000 \u2014 Royal Caribbean's longest-ever cruise has become an overnight social media sensation. Emma Loffhagen dives into the onboard drama", + "guid": "b1130091", + "categories": ["Lifestyle"], + "isoDate": "2024-01-04T15:37:04.000Z" + }, + { + "creator": "Ian Jones", + "date": "2024-01-04T15:36:36+00:00", + "title": "Flu and Covid-19 hospital admissions at highest level so far this winter", + "link": "https://www.standard.co.uk/news/health/flu-covid-hospital-admissions-winter-nhs-england-b1130370.html", + "pubDate": "Thu, 04 Jan 2024 15:36:36 GMT", + "dc:creator": "Ian Jones", + "dc:date": "2024-01-04T15:36:36+00:00", + "content": "

Flu admissions were now classed as having a \u2018medium impact\u2019 on hospitals

", + "contentSnippet": "Flu admissions were now classed as having a \u2018medium impact\u2019 on hospitals", + "guid": "b1130370", + "categories": ["Health", "News"], + "isoDate": "2024-01-04T15:36:36.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2024-01-04T15:34:25+00:00", + "title": "Arsenal facing huge triple January transfer dilemma likely to decide title fate", + "link": "https://www.standard.co.uk/sport/football/arsenal-fc-transfer-dilemma-title-fate-b1130366.html", + "pubDate": "Thu, 04 Jan 2024 15:34:25 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2024-01-04T15:34:25+00:00", + "content": "

Stuttering Gunners must decide where best to splash the cash this month in search for spark

", + "contentSnippet": "Stuttering Gunners must decide where best to splash the cash this month in search for spark", + "guid": "b1130366", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T15:34:25.000Z" + }, + { + "creator": "Daniel O'Boyle", + "date": "2024-01-04T15:33:30+00:00", + "title": "These London boroughs had the UK's fastest pay growth in the last decade", + "link": "https://www.standard.co.uk/business/london-boroughs-uk-fastest-pay-growth-wages-salaries-hackney-newham-tower-hamlets-camden-city-b1130372.html", + "pubDate": "Thu, 04 Jan 2024 15:33:30 GMT", + "dc:creator": "Daniel O'Boyle", + "dc:date": "2024-01-04T15:33:30+00:00", + "content": "

London dominated the top of the list, with eight regions in the top 10

", + "contentSnippet": "London dominated the top of the list, with eight regions in the top 10", + "guid": "b1130372", + "categories": ["Business"], + "isoDate": "2024-01-04T15:33:30.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-04T15:26:46+00:00", + "title": "Tottenham: Ange Postecoglou warns FA Cup success should not be 'holy grail'", + "link": "https://www.standard.co.uk/sport/football/tottenham-ange-postecoglou-fa-cup-holy-grail-b1130358.html", + "pubDate": "Thu, 04 Jan 2024 15:26:46 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-04T15:26:46+00:00", + "content": "

Spurs boss insists club should be challenging for major honours every season

", + "contentSnippet": "Spurs boss insists club should be challenging for major honours every season", + "guid": "b1130358", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T15:26:46.000Z" + }, + { + "creator": "Sam Blewett", + "date": "2024-01-04T15:26:12+00:00", + "title": "\u2018Squatter\u2019 Sunak urged to call election after downplaying chance of spring vote", + "link": "https://www.standard.co.uk/news/politics/keir-starmer-labour-prime-minister-conservative-bristol-b1130345.html", + "pubDate": "Thu, 04 Jan 2024 15:26:12 GMT", + "dc:creator": "Sam Blewett", + "dc:date": "2024-01-04T15:26:12+00:00", + "content": "Sir Keir Starmer urged the Prime Minister to stop the \u2018dithering and delaying\u2019 after the Conservative indicated he would wait until later in the year.", + "contentSnippet": "Sir Keir Starmer urged the Prime Minister to stop the \u2018dithering and delaying\u2019 after the Conservative indicated he would wait until later in the year.", + "guid": "b1130345", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T15:26:12.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-04T15:22:46+00:00", + "title": "Artem Dovbyk: Girona chief delivers update on Chelsea transfer rumours", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-transfer-news-artem-dovbyk-girona-b1130356.html", + "pubDate": "Thu, 04 Jan 2024 15:22:46 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-04T15:22:46+00:00", + "content": "

Spanish club insist they don't want to sell their stars in January

", + "contentSnippet": "Spanish club insist they don't want to sell their stars in January", + "guid": "b1130356", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T15:22:46.000Z" + }, + { + "creator": "Matthew Cooper", + "date": "2024-01-04T15:18:57+00:00", + "title": "Family pay tribute to mother and daughter killed in Boxing Day crash", + "link": "https://www.standard.co.uk/news/uk/birmingham-west-midlands-police-green-road-b1130367.html", + "pubDate": "Thu, 04 Jan 2024 15:18:57 GMT", + "dc:creator": "Matthew Cooper", + "dc:date": "2024-01-04T15:18:57+00:00", + "content": "Linda Philips, 72, and Amanda Riley, 49, died after two cars and a quad bike collided in Birmingham.", + "contentSnippet": "Linda Philips, 72, and Amanda Riley, 49, died after two cars and a quad bike collided in Birmingham.", + "guid": "b1130367", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T15:18:57.000Z" + }, + { + "creator": "City Spy", + "date": "2024-01-04T15:16:07+00:00", + "title": "Is Ian Hislop packing his bags at Private Eye?", + "link": "https://www.standard.co.uk/business/cityspy/ian-hislop-private-eye-helen-lewis-b1130364.html", + "pubDate": "Thu, 04 Jan 2024 15:16:07 GMT", + "dc:creator": "City Spy", + "dc:date": "2024-01-04T15:16:07+00:00", + "content": "

That\u2019s enough, Ed.\u00a0

", + "contentSnippet": "That\u2019s enough, Ed.", + "guid": "b1130364", + "categories": ["City Spy", "Business"], + "isoDate": "2024-01-04T15:16:07.000Z" + }, + { + "creator": "City Spy", + "date": "2024-01-04T15:15:52+00:00", + "title": "Financial Times could fall behind City AM's print circulation in 2024", + "link": "https://www.standard.co.uk/business/cityspy/financial-times-fall-behind-cityam-print-circulation-in-2024-b1130348.html", + "pubDate": "Thu, 04 Jan 2024 15:15:52 GMT", + "dc:creator": "City Spy", + "dc:date": "2024-01-04T15:15:52+00:00", + "content": "

Red faces at the Pink\u2019un\u00a0

", + "contentSnippet": "Red faces at the Pink\u2019un", + "guid": "b1130348", + "categories": ["City Spy", "Business"], + "isoDate": "2024-01-04T15:15:52.000Z" + }, + { + "creator": "Rosalyn Wikeley", + "date": "2024-01-04T15:13:03+00:00", + "title": "The best one-day wellness retreats for busy people ", + "link": "https://www.standard.co.uk/lifestyle/travel/one-day-short-wellness-retreats-breaks-uk-b1125113.html", + "pubDate": "Thu, 04 Jan 2024 15:13:03 GMT", + "dc:creator": "Rosalyn Wikeley", + "dc:date": "2024-01-04T15:13:03+00:00", + "content": "

Who has time to take a two-week trip to a wellness clinic to feel reborn? From an eco escape to horse therapy, Rosalyn Wikeley has the 24-hour solution

", + "contentSnippet": "Who has time to take a two-week trip to a wellness clinic to feel reborn? From an eco escape to horse therapy, Rosalyn Wikeley has the 24-hour solution", + "guid": "b1125113", + "categories": ["Travel", "Lifestyle"], + "isoDate": "2024-01-04T15:13:03.000Z" + }, + { + "creator": "Ellie Davis", + "date": "2024-01-04T15:12:56+00:00", + "title": "Best petite winter coats for women that are chic and warm", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-winter-coats-petite-women-b1112207.html", + "pubDate": "Thu, 04 Jan 2024 15:12:56 GMT", + "dc:creator": "Ellie Davis", + "dc:date": "2024-01-04T15:12:56+00:00", + "content": "

Cosy coats for smaller statures

", + "contentSnippet": "Cosy coats for smaller statures", + "guid": "b1112207", + "categories": ["Fashion", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T15:12:56.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2024-01-04T15:12:43+00:00", + "title": "Luke Littler\u2019s world championship run inspires darts documentary on Sky", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/sky-alexandra-palace-luke-littler-luke-humphries-london-b1130362.html", + "pubDate": "Thu, 04 Jan 2024 15:12:43 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2024-01-04T15:12:43+00:00", + "content": "The new three-part series which will offer \u2018exclusive access\u2019 into life on the oche and off it.", + "contentSnippet": "The new three-part series which will offer \u2018exclusive access\u2019 into life on the oche and off it.", + "guid": "b1130362", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-04T15:12:43.000Z" + }, + { + "creator": "Anna Davis Education Editor", + "date": "2024-01-04T15:12:00+00:00", + "title": "More than 1.3million free meals given out to families in the capital at Christmas", + "link": "https://www.standard.co.uk/news/london/free-holiday-meals-christmas-mayor-felix-project-b1130360.html", + "pubDate": "Thu, 04 Jan 2024 15:12:00 GMT", + "dc:creator": "Anna Davis Education Editor", + "dc:date": "2024-01-04T15:12:00+00:00", + "content": "

Families across the capital received the free meals at a range of school holiday activities and through charity organisations

", + "contentSnippet": "Families across the capital received the free meals at a range of school holiday activities and through charity organisations", + "guid": "b1130360", + "categories": ["London", "News"], + "isoDate": "2024-01-04T15:12:00.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2024-01-04T15:06:35+00:00", + "title": "Man stranded at sea for 24 hours rescued after using watch to reflect sun in New Zealand", + "link": "https://www.standard.co.uk/news/world/new-zealand-boat-rescue-coromandel-alderman-islands-watch-sun-reflection-b1130333.html", + "pubDate": "Thu, 04 Jan 2024 15:06:35 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2024-01-04T15:06:35+00:00", + "content": "

The fisherman 'was circled by a shark' and was treated for hypothermia

", + "contentSnippet": "The fisherman 'was circled by a shark' and was treated for hypothermia", + "guid": "b1130333", + "categories": ["World", "News"], + "isoDate": "2024-01-04T15:06:35.000Z" + }, + { + "creator": "Matt Majendie", + "date": "2024-01-04T15:05:24+00:00", + "title": "Luke Humphries: How worthy champion battled through adversity to realise darts world title dream", + "link": "https://www.standard.co.uk/sport/luke-humphries-darts-world-champion-b1130344.html", + "pubDate": "Thu, 04 Jan 2024 15:05:24 GMT", + "dc:creator": "Matt Majendie", + "dc:date": "2024-01-04T15:05:24+00:00", + "content": "

New world No1 almost quit darts amid mental health struggles, but is now thriving on the biggest stage

", + "contentSnippet": "New world No1 almost quit darts amid mental health struggles, but is now thriving on the biggest stage", + "guid": "b1130344", + "categories": ["Sport"], + "isoDate": "2024-01-04T15:05:24.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-04T15:02:55+00:00", + "title": "Boots website sees \u2018biggest ever month of sales in November\u2019", + "link": "https://www.standard.co.uk/business/business-news/boots-website-sees-biggest-ever-month-of-sales-in-november-b1130336.html", + "pubDate": "Thu, 04 Jan 2024 15:02:55 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-04T15:02:55+00:00", + "content": "The company said footfall to its shops had also increased in the most recent quarter.", + "contentSnippet": "The company said footfall to its shops had also increased in the most recent quarter.", + "guid": "b1130336", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T15:02:55.000Z" + }, + { + "creator": "Callum Parke", + "date": "2024-01-04T14:57:55+00:00", + "title": "Financially troubled Nottingham City Council has \u2018let down\u2019 residents \u2013 Sunak", + "link": "https://www.standard.co.uk/news/politics/nottinghamshire-county-council-labour-prime-minister-nottinghamshire-nottingham-b1130355.html", + "pubDate": "Thu, 04 Jan 2024 14:57:55 GMT", + "dc:creator": "Callum Parke", + "dc:date": "2024-01-04T14:57:55+00:00", + "content": "The Prime Minister claimed that financial difficulties at Labour-run authorities mirrored how the party would run the national economy.", + "contentSnippet": "The Prime Minister claimed that financial difficulties at Labour-run authorities mirrored how the party would run the national economy.", + "guid": "b1130355", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T14:57:55.000Z" + }, + { + "creator": "Seren Morris,Avinash Bhunjun,Nuray Bulbul,William Mata and Rachael Davies", + "date": "2024-01-04T14:54:49+00:00", + "title": "When is the next UK general election? Sunak suggests second half of 2024", + "link": "https://www.standard.co.uk/news/politics/when-general-election-rishi-sunak-2024-b996692.html", + "pubDate": "Thu, 04 Jan 2024 14:54:49 GMT", + "dc:creator": "Seren Morris,Avinash Bhunjun,Nuray Bulbul,William Mata and Rachael Davies", + "dc:date": "2024-01-04T14:54:49+00:00", + "content": "

Prime Minister Rishi Sunak hints at the likely date on a visit to the West Midlands after previously ruling out 2025

", + "contentSnippet": "Prime Minister Rishi Sunak hints at the likely date on a visit to the West Midlands after previously ruling out 2025", + "guid": "b996692", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T14:54:49.000Z" + }, + { + "creator": "Josh Payne", + "date": "2024-01-04T14:50:41+00:00", + "title": "Epstein files: What do they show and what does it mean for those named?", + "link": "https://www.standard.co.uk/news/world/jeffrey-epstein-stephen-hawking-michael-jackson-donald-trump-bill-clinton-b1130341.html", + "pubDate": "Thu, 04 Jan 2024 14:50:41 GMT", + "dc:creator": "Josh Payne", + "dc:date": "2024-01-04T14:50:41+00:00", + "content": "

The first tranche of documents were released on Wednesday

", + "contentSnippet": "The first tranche of documents were released on Wednesday", + "guid": "b1130341", + "categories": ["World", "News"], + "isoDate": "2024-01-04T14:50:41.000Z" + }, + { + "creator": "Matt Watts", + "date": "2024-01-04T14:50:10+00:00", + "title": "Jeffrey Epstein files: David Copperfield 'had dinner with alleged victim'", + "link": "https://www.standard.co.uk/news/world/jeffrey-epstein-files-court-documents-unsealed-ghislaine-maxwell-david-copperfield-b1130353.html", + "pubDate": "Thu, 04 Jan 2024 14:50:10 GMT", + "dc:creator": "Matt Watts", + "dc:date": "2024-01-04T14:50:10+00:00", + "content": "

The illusionist is among a string of high profile names in court documents related to sex offender\u00a0Epstein

", + "contentSnippet": "The illusionist is among a string of high profile names in court documents related to sex offender\u00a0Epstein", + "guid": "b1130353", + "categories": ["World", "News"], + "isoDate": "2024-01-04T14:50:10.000Z" + }, + { + "creator": "Stuart Pritchard", + "date": "2024-01-04T14:46:26+00:00", + "title": "Best portable photo printers to use on the go that are compatible with smart phones", + "link": "https://www.standard.co.uk/shopping/esbest/gadgets-tech/gadgets-accessories/best-portable-photo-printers-b985074.html", + "pubDate": "Thu, 04 Jan 2024 14:46:26 GMT", + "dc:creator": "Stuart Pritchard", + "dc:date": "2024-01-04T14:46:26+00:00", + "content": "

Diva of the digital snap scene, Stuart Pritchard, presents his pick of the best portable printers for photographers on the fly\u2026

", + "contentSnippet": "Diva of the digital snap scene, Stuart Pritchard, presents his pick of the best portable printers for photographers on the fly\u2026", + "guid": "b985074", + "categories": [ + "Gadgets & Accessories", + "Gadgets & Tech", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-04T14:46:26.000Z" + }, + { + "creator": "Jordan King", + "date": "2024-01-04T14:37:22+00:00", + "title": "Vladimir Putin offers Russian citizenship to foreign nationals who fight for him in Ukraine war", + "link": "https://www.standard.co.uk/news/world/vladimir-putin-russian-citizenship-ukraine-war-b1130343.html", + "pubDate": "Thu, 04 Jan 2024 14:37:22 GMT", + "dc:creator": "Jordan King", + "dc:date": "2024-01-04T14:37:22+00:00", + "content": "

People can apply for passports for themselves and their spouses, children and parents

", + "contentSnippet": "People can apply for passports for themselves and their spouses, children and parents", + "guid": "b1130343", + "categories": ["World", "News"], + "isoDate": "2024-01-04T14:37:22.000Z" + }, + { + "creator": "Katie Strick and Emma Loffhagen", + "date": "2024-01-04T14:35:56+00:00", + "title": "Frederik, the 'party prince': the down-to-earth next king of Denmark who met his wife in a pub", + "link": "https://www.standard.co.uk/lifestyle/crown-prince-frederik-the-party-prince-next-king-of-denmark-b1129898.html", + "pubDate": "Thu, 04 Jan 2024 14:35:56 GMT", + "dc:creator": "Katie Strick and Emma Loffhagen", + "dc:date": "2024-01-04T14:35:56+00:00", + "content": "

He loves Burning Man, used a fake name at Harvard and met his Australian-Scottish wife in a Sydney bar. As Crown Prince Frederik prepares to ascend the throne, Katie Strick and Emma Loffhagen report on his rebellious past and rumours of a recent affair

", + "contentSnippet": "He loves Burning Man, used a fake name at Harvard and met his Australian-Scottish wife in a Sydney bar. As Crown Prince Frederik prepares to ascend the throne, Katie Strick and Emma Loffhagen report on his rebellious past and rumours of a recent affair", + "guid": "b1129898", + "categories": ["Lifestyle"], + "isoDate": "2024-01-04T14:35:56.000Z" + }, + { + "creator": "Sarah Ward", + "date": "2024-01-04T14:34:30+00:00", + "title": "Paedophile ring warned they face \u2018very substantial\u2019 prison terms for 'extraordinary depravity'", + "link": "https://www.standard.co.uk/news/crime/glasgow-paedophile-ring-high-court-police-scotland-b1130346.html", + "pubDate": "Thu, 04 Jan 2024 14:34:30 GMT", + "dc:creator": "Sarah Ward", + "dc:date": "2024-01-04T14:34:30+00:00", + "content": "

At the High Court in Glasgow on Thursday, judge Lord Beckett said the group had been convicted of \u2018extraordinary depravity\u2019

", + "contentSnippet": "At the High Court in Glasgow on Thursday, judge Lord Beckett said the group had been convicted of \u2018extraordinary depravity\u2019", + "guid": "b1130346", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T14:34:30.000Z" + }, + { + "creator": "Victoria Moss", + "date": "2024-01-04T14:33:25+00:00", + "title": "11 trends to refresh your style for 2024 \u2014 from cobalt blue to bomber jackets", + "link": "https://www.standard.co.uk/lifestyle/fashion/trends-to-refresh-style-2024-fashion-b1130320.html", + "pubDate": "Thu, 04 Jan 2024 14:33:25 GMT", + "dc:creator": "Victoria Moss", + "dc:date": "2024-01-04T14:33:25+00:00", + "content": "

From Grandpa jackets and sexy cargo pants, to leopard heels and luxe trenches, Victoria Moss has every new look you need \u2014 just don\u2019t call them \u2018cores\u2019

", + "contentSnippet": "From Grandpa jackets and sexy cargo pants, to leopard heels and luxe trenches, Victoria Moss has every new look you need \u2014 just don\u2019t call them \u2018cores\u2019", + "guid": "b1130320", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2024-01-04T14:33:25.000Z" + }, + { + "creator": "Maddy Mussen", + "date": "2024-01-04T14:33:21+00:00", + "title": "Yes chef! Jeremy Allen White strips down for the latest Calvin Klein campaign", + "link": "https://www.standard.co.uk/lifestyle/fashion/jeremy-allen-white-calvin-klein-topless-arms-the-bear-b1130347.html", + "pubDate": "Thu, 04 Jan 2024 14:33:21 GMT", + "dc:creator": "Maddy Mussen", + "dc:date": "2024-01-04T14:33:21+00:00", + "content": "

You know what they say, if you can't stand the heat...

", + "contentSnippet": "You know what they say, if you can't stand the heat...", + "guid": "b1130347", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2024-01-04T14:33:21.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-04T14:32:05+00:00", + "title": "Record 4.8million TV audience tuned in for Luke Littler defeat to Luke Humphries in darts final", + "link": "https://www.standard.co.uk/sport/littler-vs-humphries-tv-audience-world-darts-championship-final-2024-sky-sports-b1130349.html", + "pubDate": "Thu, 04 Jan 2024 14:32:05 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-04T14:32:05+00:00", + "content": "

Largest-ever Sky Sports viewership for a non-football event

", + "contentSnippet": "Largest-ever Sky Sports viewership for a non-football event", + "guid": "b1130349", + "categories": ["Sport"], + "isoDate": "2024-01-04T14:32:05.000Z" + }, + { + "creator": "Lisa Burn", + "date": "2024-01-04T14:25:40+00:00", + "title": "Best probiotics for dogs to help support their microbiome - according to pet experts", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/pets/best-probiotics-for-dogs-b1093506.html", + "pubDate": "Thu, 04 Jan 2024 14:25:40 GMT", + "dc:creator": "Lisa Burn", + "dc:date": "2024-01-04T14:25:40+00:00", + "content": "

Keep your dog smelling sweet and their good bacteria in tip-top condition

", + "contentSnippet": "Keep your dog smelling sweet and their good bacteria in tip-top condition", + "guid": "b1093506", + "categories": ["Pets", "Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T14:25:40.000Z" + }, + { + "creator": "Peter Bevan", + "date": "2024-01-04T14:25:34+00:00", + "title": "Best fabric shavers to remove bobbles from your knitwear", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-fabric-shavers-clothes-bobble-removers-b1055929.html", + "pubDate": "Thu, 04 Jan 2024 14:25:34 GMT", + "dc:creator": "Peter Bevan", + "dc:date": "2024-01-04T14:25:34+00:00", + "content": "

Banish the bobbles

", + "contentSnippet": "Banish the bobbles", + "guid": "b1055929", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-04T14:25:34.000Z" + }, + { + "creator": "Nick Purewal", + "date": "2024-01-04T14:07:42+00:00", + "title": "Kevin Sinfield to leave England coaching role after summer tour", + "link": "https://www.standard.co.uk/sport/rugby/kevin-sinfield-england-andrew-strawbridge-b1130315.html", + "pubDate": "Thu, 04 Jan 2024 14:07:42 GMT", + "dc:creator": "Nick Purewal", + "dc:date": "2024-01-04T14:07:42+00:00", + "content": "

Rugby league great will switch focus for the Six Nations before stepping down after summer trip to Japan and New Zealand

", + "contentSnippet": "Rugby league great will switch focus for the Six Nations before stepping down after summer trip to Japan and New Zealand", + "guid": "b1130315", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2024-01-04T14:07:42.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-04T14:06:35+00:00", + "title": "Wigan vs Manchester United: FA Cup prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/wigan-vs-man-utd-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-fa-cup-2024-preview-b1130295.html", + "pubDate": "Thu, 04 Jan 2024 14:06:35 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-04T14:06:35+00:00", + "content": "

Short trip to League One side is major banana skin tie for Man Utd

", + "contentSnippet": "Short trip to League One side is major banana skin tie for Man Utd", + "guid": "b1130295", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T14:06:35.000Z" + }, + { + "creator": "Tom Wilkinson", + "date": "2024-01-04T14:04:26+00:00", + "title": "Newcastle football fan who made Munich air disaster comments handed three-year ban", + "link": "https://www.standard.co.uk/news/crime/newcastle-fan-munich-air-disaster-banned-james-blake-manchester-united-b1130311.html", + "pubDate": "Thu, 04 Jan 2024 14:04:26 GMT", + "dc:creator": "Tom Wilkinson", + "dc:date": "2024-01-04T14:04:26+00:00", + "content": "

Newcastle United fan James Blake opposed the football banning order imposed after he admitted a public order offence

", + "contentSnippet": "Newcastle United fan James Blake opposed the football banning order imposed after he admitted a public order offence", + "guid": "b1130311", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T14:04:26.000Z" + }, + { + "creator": "Ella Pickover", + "date": "2024-01-04T14:02:36+00:00", + "title": "Sunak backs NHS leaders asking striking doctors to return to work", + "link": "https://www.standard.co.uk/news/politics/nhs-england-prime-minister-british-medical-association-nottinghamshire-b1130327.html", + "pubDate": "Thu, 04 Jan 2024 14:02:36 GMT", + "dc:creator": "Ella Pickover", + "dc:date": "2024-01-04T14:02:36+00:00", + "content": "Junior doctors in England are staging a six day walk out \u2013 the longest strike in NHS history.", + "contentSnippet": "Junior doctors in England are staging a six day walk out \u2013 the longest strike in NHS history.", + "guid": "b1130327", + "categories": ["Politics", "News"], + "isoDate": "2024-01-04T14:02:36.000Z" + }, + { + "creator": "Ben Judah", + "date": "2024-01-04T14:00:53+00:00", + "title": "OPINION - Israel's strike against Hamas in Lebanon poses big questions for the West", + "link": "https://www.standard.co.uk/comment/israel-gaza-hezbollah-hamas-war-lebanon-b1130322.html", + "pubDate": "Thu, 04 Jan 2024 14:00:53 GMT", + "dc:creator": "Ben Judah", + "dc:date": "2024-01-04T14:00:53+00:00", + "content": "

Across the Middle East, Dahiya, in south Beirut, is seen as not just a suburb. It is a synonym for Hezbollah. This is not only the movement\u2019s stronghold, it is the headquarters of what is in Lebanon a state within a state. That an Israeli drone strike could kill the deputy head of Hamas, Saleh al-Arouri, and several aides at a meeting in the heart of Dahiya has shocked the region and left it asking one question. Is war about to break out between Hezbollah, Iran\u2019s highly-armed proxy, and Israel?

", + "contentSnippet": "Across the Middle East, Dahiya, in south Beirut, is seen as not just a suburb. It is a synonym for Hezbollah. This is not only the movement\u2019s stronghold, it is the headquarters of what is in Lebanon a state within a state. That an Israeli drone strike could kill the deputy head of Hamas, Saleh al-Arouri, and several aides at a meeting in the heart of Dahiya has shocked the region and left it asking one question. Is war about to break out between Hezbollah, Iran\u2019s highly-armed proxy, and Israel?", + "guid": "b1130322", + "categories": ["Comment"], + "isoDate": "2024-01-04T14:00:53.000Z" + }, + { + "creator": "Danielle Desouza", + "date": "2024-01-04T13:54:57+00:00", + "title": "Family enjoy 'Christmas miracle' as cat missing for nine years returns home", + "link": "https://www.standard.co.uk/news/uk/cat-missing-christmas-plymouth-cats-protection-b1130330.html", + "pubDate": "Thu, 04 Jan 2024 13:54:57 GMT", + "dc:creator": "Danielle Desouza", + "dc:date": "2024-01-04T13:54:57+00:00", + "content": "

Long-haired Strawberry went missing from her home in Plymouth in June 2014

", + "contentSnippet": "Long-haired Strawberry went missing from her home in Plymouth in June 2014", + "guid": "b1130330", + "categories": ["UK", "News"], + "isoDate": "2024-01-04T13:54:57.000Z" + }, + { + "creator": "Georgie Darling", + "date": "2024-01-04T13:52:17+00:00", + "title": "Best weight loss supplements to lose weight naturally and sustainably", + "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-weight-loss-supplements-b1061823.html", + "pubDate": "Thu, 04 Jan 2024 13:52:17 GMT", + "dc:creator": "Georgie Darling", + "dc:date": "2024-01-04T13:52:17+00:00", + "content": "

Natural options to safely lose weight

", + "contentSnippet": "Natural options to safely lose weight", + "guid": "b1061823", + "categories": ["Health & Fitness", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T13:52:17.000Z" + }, + { + "creator": "Matt Majendie", + "date": "2024-01-04T13:52:15+00:00", + "title": "Luke Littler deserves place among sporting phenomenons as huge future awaits", + "link": "https://www.standard.co.uk/sport/luke-littler-darts-phenomenon-b1130337.html", + "pubDate": "Thu, 04 Jan 2024 13:52:15 GMT", + "dc:creator": "Matt Majendie", + "dc:date": "2024-01-04T13:52:15+00:00", + "content": "

16-year-old has the maturity to ensure new-found fame doesn't detract from his ambitions

", + "contentSnippet": "16-year-old has the maturity to ensure new-found fame doesn't detract from his ambitions", + "guid": "b1130337", + "categories": ["Sport"], + "isoDate": "2024-01-04T13:52:15.000Z" + }, + { + "creator": "Jonathan Bunn", + "date": "2024-01-04T13:51:13+00:00", + "title": "Doubts remain on first anniversary of Rishi Sunak\u2019s \u2018priorities\u2019 speech", + "link": "https://www.standard.co.uk/business/money/doubts-remain-on-first-anniversary-of-rishi-sunak-s-priorities-speech-b1130342.html", + "pubDate": "Thu, 04 Jan 2024 13:51:13 GMT", + "dc:creator": "Jonathan Bunn", + "dc:date": "2024-01-04T13:51:13+00:00", + "content": "The deadlines for achieving all his five pledges remain vague, but progress is at risk during the run-up to the general election.", + "contentSnippet": "The deadlines for achieving all his five pledges remain vague, but progress is at risk during the run-up to the general election.", + "guid": "b1130342", + "categories": ["Money", "Business"], + "isoDate": "2024-01-04T13:51:13.000Z" + }, + { + "creator": "Daniel O'Boyle", + "date": "2024-01-04T13:46:50+00:00", + "title": "\u2018The gloves are off\u2019: More lenders join mortgage rate price war", + "link": "https://www.standard.co.uk/business/mortgage-interest-rate-price-war-bank-of-england-houses-homes-property-loan-borrowing-approvals-hsbc-halifax-b1130340.html", + "pubDate": "Thu, 04 Jan 2024 13:46:50 GMT", + "dc:creator": "Daniel O'Boyle", + "dc:date": "2024-01-04T13:46:50+00:00", + "content": "

First Direct and TSB were among the latest lenders cutting rates

", + "contentSnippet": "First Direct and TSB were among the latest lenders cutting rates", + "guid": "b1130340", + "categories": ["Business"], + "isoDate": "2024-01-04T13:46:50.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-04T13:45:45+00:00", + "title": "Arsenal vs Liverpool: FA Cup prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/arsenal-fc-vs-liverpool-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-fa-cup-2024-preview-b1130294.html", + "pubDate": "Thu, 04 Jan 2024 13:45:45 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-04T13:45:45+00:00", + "content": "

Two teams with prestigious cup histories headline this weekend's round

", + "contentSnippet": "Two teams with prestigious cup histories headline this weekend's round", + "guid": "b1130294", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T13:45:45.000Z" + }, + { + "creator": "Pat Hurst", + "date": "2024-01-04T17:06:40+00:00", + "title": "Scout Association apologises for death of teenager in 200ft fall, inquest told", + "link": "https://www.standard.co.uk/news/crime/scout-association-greater-manchester-stockport-richmond-marvel-b1130401.html", + "pubDate": "Thu, 04 Jan 2024 17:06:40 GMT", + "dc:creator": "Pat Hurst", + "dc:date": "2024-01-04T17:06:40+00:00", + "content": "Ben Leonard\u2019s mother told a court it was five-and-a-half years too late and the treatment of her family had been \u2018disgusting\u2019.", + "contentSnippet": "Ben Leonard\u2019s mother told a court it was five-and-a-half years too late and the treatment of her family had been \u2018disgusting\u2019.", + "guid": "b1130401", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T17:06:40.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2024-01-04T17:22:36+00:00", + "title": "Manchester United XI vs Wigan: Predicted lineup, confirmed team news and injury latest for FA Cup", + "link": "https://www.standard.co.uk/sport/football/man-united-xi-vs-wigan-predicted-lineup-confirmed-team-news-injury-latest-fa-cup-2024-b1130398.html", + "pubDate": "Thu, 04 Jan 2024 17:22:36 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2024-01-04T17:22:36+00:00", + "content": "

Strong team expected as Erik ten Hag looks to stave off pressure

", + "contentSnippet": "Strong team expected as Erik ten Hag looks to stave off pressure", + "guid": "b1130398", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T17:22:36.000Z" + }, + { + "creator": "Luciana Bellini", + "date": "2024-01-04T17:22:26+00:00", + "title": "Best toddler learning towers for getting little ones involved around the house", + "link": "https://www.standard.co.uk/shopping/esbest/kids/toys-games/best-toddler-learning-towers-b1059342.html", + "pubDate": "Thu, 04 Jan 2024 17:22:26 GMT", + "dc:creator": "Luciana Bellini", + "dc:date": "2024-01-04T17:22:26+00:00", + "content": "

Invest in one of these handy pieces of apparatus to help your toddler develop a new sense of independence at home

", + "contentSnippet": "Invest in one of these handy pieces of apparatus to help your toddler develop a new sense of independence at home", + "guid": "b1059342", + "categories": ["Toys and games", "Kids", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T17:22:26.000Z" + }, + { + "creator": "Ted Hennessey", + "date": "2024-01-04T17:20:28+00:00", + "title": "Woman, 87, dies after car hits tree reported fallen 90 minutes earlier", + "link": "https://www.standard.co.uk/news/environment/oxfordshire-iopc-tooting-london-independent-b1130405.html", + "pubDate": "Thu, 04 Jan 2024 17:20:28 GMT", + "dc:creator": "Ted Hennessey", + "dc:date": "2024-01-04T17:20:28+00:00", + "content": "The incident happened on Tuesday near Crays Pond, Oxfordshire.", + "contentSnippet": "The incident happened on Tuesday near Crays Pond, Oxfordshire.", + "guid": "b1130405", + "categories": ["Environment", "News"], + "isoDate": "2024-01-04T17:20:28.000Z" + }, + { + "creator": "Josh Payne", + "date": "2024-01-04T17:19:12+00:00", + "title": "Epstein files: What do they show and what does it mean for those named?", + "link": "https://www.standard.co.uk/news/world/jeffrey-epstein-michael-jackson-donald-trump-bill-clinton-manhattan-b1130341.html", + "pubDate": "Thu, 04 Jan 2024 17:19:12 GMT", + "dc:creator": "Josh Payne", + "dc:date": "2024-01-04T17:19:12+00:00", + "content": "

The first tranche of documents were released on Wednesday

", + "contentSnippet": "The first tranche of documents were released on Wednesday", + "guid": "b1130341", + "categories": ["World", "News"], + "isoDate": "2024-01-04T17:19:12.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-04T17:16:51+00:00", + "title": "Liverpool XI vs Arsenal: Predicted lineup, confirmed team news and injury latest for FA Cup tie", + "link": "https://www.standard.co.uk/sport/football/liverpool-xi-vs-arsenal-fc-predicted-lineup-confirmed-team-news-injury-latest-fa-cup-2024-b1130396.html", + "pubDate": "Thu, 04 Jan 2024 17:16:51 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-04T17:16:51+00:00", + "content": "

Dominik Szoboszlai the main concern as Reds prepare to rest stars

", + "contentSnippet": "Dominik Szoboszlai the main concern as Reds prepare to rest stars", + "guid": "b1130396", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-04T17:16:51.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2024-01-04T17:14:16+00:00", + "title": "Best cat carriers, tried and tested for travelling with your pet", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/pets/best-cat-carriers-b1076916.html", + "pubDate": "Thu, 04 Jan 2024 17:14:16 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2024-01-04T17:14:16+00:00", + "content": "

Carry them safe and sound

", + "contentSnippet": "Carry them safe and sound", + "guid": "b1076916", + "categories": ["Pets", "Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2024-01-04T17:14:16.000Z" + }, + { + "creator": "Pat Hurst", + "date": "2024-01-04T17:12:12+00:00", + "title": "Scout Association apologises for death of teenager in 200ft fall, inquest told", + "link": "https://www.standard.co.uk/news/crime/scout-association-greater-manchester-stockport-north-wales-richmond-b1130401.html", + "pubDate": "Thu, 04 Jan 2024 17:12:12 GMT", + "dc:creator": "Pat Hurst", + "dc:date": "2024-01-04T17:12:12+00:00", + "content": "Ben Leonard\u2019s mother told a court it was five-and-a-half years too late and the treatment of her family had been \u2018disgusting\u2019.", + "contentSnippet": "Ben Leonard\u2019s mother told a court it was five-and-a-half years too late and the treatment of her family had been \u2018disgusting\u2019.", + "guid": "b1130401", + "categories": ["Crime", "News"], + "isoDate": "2024-01-04T17:12:12.000Z" + }, + { + "creator": "Sam Hall", + "date": "2024-01-04T17:10:19+00:00", + "title": "Major incident declared amid widespread flooding in England", + "link": "https://www.standard.co.uk/news/environment/nottinghamshire-county-council-england-councils-midlands-leicestershire-b1130371.html", + "pubDate": "Thu, 04 Jan 2024 17:10:19 GMT", + "dc:creator": "Sam Hall", + "dc:date": "2024-01-04T17:10:19+00:00", + "content": "Nottinghamshire County Council said the incident was declared \u2018due to rising levels along the river Trent\u2019.", + "contentSnippet": "Nottinghamshire County Council said the incident was declared \u2018due to rising levels along the river Trent\u2019.", + "guid": "b1130371", + "categories": ["Environment", "News"], + "isoDate": "2024-01-04T17:10:19.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-04T17:08:42+00:00", + "title": "Red Sea attacks: What has happened and what does it mean for prices?", + "link": "https://www.standard.co.uk/business/business-news/red-sea-attacks-what-has-happened-and-what-does-it-mean-for-prices-b1130403.html", + "pubDate": "Thu, 04 Jan 2024 17:08:42 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-04T17:08:42+00:00", + "content": "Here the PA news agency looks at what has happened and what the knock-on effects could be for people in the UK.", + "contentSnippet": "Here the PA news agency looks at what has happened and what the knock-on effects could be for people in the UK.", + "guid": "b1130403", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-04T17:08:42.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2024-01-05T13:54:41+00:00", + "title": "Flooded areas should be \u2018reassured\u2019 at response, says Sunak", + "link": "https://www.standard.co.uk/news/politics/environment-agency-prime-minister-households-government-england-b1130571.html", + "pubDate": "Fri, 05 Jan 2024 13:54:41 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2024-01-05T13:54:41+00:00", + "content": "Opposition parties accused ministers of failing to take seriously the danger of flooding.", + "contentSnippet": "Opposition parties accused ministers of failing to take seriously the danger of flooding.", + "guid": "b1130571", + "categories": ["Politics", "News"], + "isoDate": "2024-01-05T13:54:41.000Z" + }, + { + "creator": "Aine Fox", + "date": "2024-01-05T13:53:41+00:00", + "title": "Kate Garraway hailed for shining light on challenges faced by carers", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/kate-garraway-derek-draper-mbe-matt-hancock-sun-b1130580.html", + "pubDate": "Fri, 05 Jan 2024 13:53:41 GMT", + "dc:creator": "Aine Fox", + "dc:date": "2024-01-05T13:53:41+00:00", + "content": "The television presenter has been open about her family\u2019s experience and said she wanted to \u2018speak up\u2019 on behalf of others.", + "contentSnippet": "The television presenter has been open about her family\u2019s experience and said she wanted to \u2018speak up\u2019 on behalf of others.", + "guid": "b1130580", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-05T13:53:41.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-05T13:52:05+00:00", + "title": "Man City XI vs Huddersfield: Erling Haaland injury latest, predicted lineup and FA Cup team news", + "link": "https://www.standard.co.uk/sport/football/man-city-xi-vs-huddersfield-erling-haaland-injury-latest-predicted-lineup-confirmed-team-news-fa-cup-2024-b1130402.html", + "pubDate": "Fri, 05 Jan 2024 13:52:05 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-05T13:52:05+00:00", + "content": "

The striker has returned to training ahead of third-round tie but remains a doubt

", + "contentSnippet": "The striker has returned to training ahead of third-round tie but remains a doubt", + "guid": "b1130402", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T13:52:05.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2024-01-05T13:49:26+00:00", + "title": "GMB stars send support to Kate Garraway after death of husband Derek Draper", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/kate-garraway-derek-draper-susanna-reid-itv-charlotte-hawkins-b1130559.html", + "pubDate": "Fri, 05 Jan 2024 13:49:26 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2024-01-05T13:49:26+00:00", + "content": "The TV presenter, who married Draper in 2005, often provided health updates about her husband on the ITV morning programme.", + "contentSnippet": "The TV presenter, who married Draper in 2005, often provided health updates about her husband on the ITV morning programme.", + "guid": "b1130559", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-05T13:49:26.000Z" + }, + { + "creator": "Jordan King", + "date": "2024-01-05T13:48:27+00:00", + "title": "Man found dead in toilet on Jet2 flight bound for Manchester", + "link": "https://www.standard.co.uk/news/uk/jet2-flight-manchester-man-dead-toilet-tenerife-cork-ireland-b1130552.html", + "pubDate": "Fri, 05 Jan 2024 13:48:27 GMT", + "dc:creator": "Jordan King", + "dc:date": "2024-01-05T13:48:27+00:00", + "content": "

'Everyone on board was very upset,' one passenger said

", + "contentSnippet": "'Everyone on board was very upset,' one passenger said", + "guid": "b1130552", + "categories": ["UK", "News"], + "isoDate": "2024-01-05T13:48:27.000Z" + }, + { + "creator": "Lydia Chantler-Hicks", + "date": "2024-01-05T13:47:58+00:00", + "title": "Person killed on Tube tracks at Sloane Square causing severe delays on Underground", + "link": "https://www.standard.co.uk/news/london/district-circle-line-tfl-delays-sloane-square-police-b1130577.html", + "pubDate": "Fri, 05 Jan 2024 13:47:58 GMT", + "dc:creator": "Lydia Chantler-Hicks", + "dc:date": "2024-01-05T13:47:58+00:00", + "content": "

A person has died on the train tracks at Sloane Square London Underground station.

", + "contentSnippet": "A person has died on the train tracks at Sloane Square London Underground station.", + "guid": "b1130577", + "categories": ["London", "News"], + "isoDate": "2024-01-05T13:47:58.000Z" + }, + { + "creator": "Daniel O'Boyle", + "date": "2024-01-05T13:47:04+00:00", + "title": "Average London house price down \u00a312,000 in 2023, but 'crash' predictions proven wrong", + "link": "https://www.standard.co.uk/business/london-house-price-property-sales-mortgage-loan-interest-rates-halifax-b1130578.html", + "pubDate": "Fri, 05 Jan 2024 13:47:04 GMT", + "dc:creator": "Daniel O'Boyle", + "dc:date": "2024-01-05T13:47:04+00:00", + "content": "

Some economists thought London house prices could fall by as much as 10%

", + "contentSnippet": "Some economists thought London house prices could fall by as much as 10%", + "guid": "b1130578", + "categories": ["Business"], + "isoDate": "2024-01-05T13:47:04.000Z" + }, + { + "creator": "Kim Pilling", + "date": "2024-01-05T13:45:33+00:00", + "title": "Stranger gets suspended sentence for McDonald\u2019s attack on drag star The Vivienne", + "link": "https://www.standard.co.uk/news/crime/the-vivienne-mcdonalds-liverpool-everton-b1130579.html", + "pubDate": "Fri, 05 Jan 2024 13:45:33 GMT", + "dc:creator": "Kim Pilling", + "dc:date": "2024-01-05T13:45:33+00:00", + "content": "In a victim statement, the star said: \u2018I am a lot more conscious that I could be attacked at any moment, simply for living my authentic life\u2019.", + "contentSnippet": "In a victim statement, the star said: \u2018I am a lot more conscious that I could be attacked at any moment, simply for living my authentic life\u2019.", + "guid": "b1130579", + "categories": ["Crime", "News"], + "isoDate": "2024-01-05T13:45:33.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2024-01-05T13:37:08+00:00", + "title": "Chelsea XI vs Preston: Predicted lineup, confirmed team news, injury latest for FA Cup game", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-xi-vs-preston-predicted-lineup-confirmed-team-news-injury-latest-2024-fa-cup-b1130562.html", + "pubDate": "Fri, 05 Jan 2024 13:37:08 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2024-01-05T13:37:08+00:00", + "content": "

The Blues are left counting the heavy cost of a busy winter fixture list as their FA Cup tilt begins

", + "contentSnippet": "The Blues are left counting the heavy cost of a busy winter fixture list as their FA Cup tilt begins", + "guid": "b1130562", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T13:37:08.000Z" + }, + { + "creator": "City Staff", + "date": "2024-01-05T13:35:46+00:00", + "title": "FTSE 100 Live: Blue-chips down almost 1%, US jobs beat forecasts again in 'soft landing' boost", + "link": "https://www.standard.co.uk/business/ftse-100-live-05-january-halifax-house-price-index-uk-construction-pmi-jd-sports-next-stocks-shares-mortgages-b1130459.html", + "pubDate": "Fri, 05 Jan 2024 13:35:46 GMT", + "dc:creator": "City Staff", + "dc:date": "2024-01-05T13:35:46+00:00", + "content": "

", + "contentSnippet": "", + "guid": "b1130459", + "categories": ["Business"], + "isoDate": "2024-01-05T13:35:46.000Z" + }, + { + "creator": "Sam Hall", + "date": "2024-01-05T13:34:02+00:00", + "title": "Environment Agency: More than 1,000 properties flooded across England", + "link": "https://www.standard.co.uk/news/environment/england-met-office-environment-agency-oli-claydon-great-western-railway-b1130540.html", + "pubDate": "Fri, 05 Jan 2024 13:34:02 GMT", + "dc:creator": "Sam Hall", + "dc:date": "2024-01-05T13:34:02+00:00", + "content": "Hundreds of flood warnings and alerts remained in place on Friday morning.", + "contentSnippet": "Hundreds of flood warnings and alerts remained in place on Friday morning.", + "guid": "b1130540", + "categories": ["Environment", "News"], + "isoDate": "2024-01-05T13:34:02.000Z" + }, + { + "creator": "Jane Kirby", + "date": "2024-01-05T13:33:37+00:00", + "title": "Combination of strikes and rise in flu and Covid \u2018a perfect storm for the NHS\u2019", + "link": "https://www.standard.co.uk/business/business-news/combination-of-strikes-and-rise-in-flu-and-covid-a-perfect-storm-for-the-nhs-b1130546.html", + "pubDate": "Fri, 05 Jan 2024 13:33:37 GMT", + "dc:creator": "Jane Kirby", + "dc:date": "2024-01-05T13:33:37+00:00", + "content": "Figures published by NHS England on Friday show the number of flu patients jumped by more than a third over Christmas.", + "contentSnippet": "Figures published by NHS England on Friday show the number of flu patients jumped by more than a third over Christmas.", + "guid": "b1130546", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-05T13:33:37.000Z" + }, + { + "creator": "Charlotte McLaughlin", + "date": "2024-01-05T13:33:09+00:00", + "title": "Kate Garraway announces death of \u2018darling husband\u2019 Derek Draper aged 56", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/derek-draper-kate-garraway-jonathan-reynolds-alastair-campbell-new-labour-b1130536.html", + "pubDate": "Fri, 05 Jan 2024 13:33:09 GMT", + "dc:creator": "Charlotte McLaughlin", + "dc:date": "2024-01-05T13:33:09+00:00", + "content": "Mr Draper was a prominent figure in New Labour during the 1990s and later retrained as a psychotherapist.", + "contentSnippet": "Mr Draper was a prominent figure in New Labour during the 1990s and later retrained as a psychotherapist.", + "guid": "b1130536", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-05T13:33:09.000Z" + }, + { + "creator": "Nuray Bulbul", + "date": "2024-01-05T13:26:13+00:00", + "title": "BBC rejects complaints about transgender character in Doctor Who", + "link": "https://www.standard.co.uk/culture/tvfilm/bbc-doctor-who-rose-yasmin-finney-complaints-transgender-b1130542.html", + "pubDate": "Fri, 05 Jan 2024 13:26:13 GMT", + "dc:creator": "Nuray Bulbul", + "dc:date": "2024-01-05T13:26:13+00:00", + "content": "

Yasmin Finney will return as Rose in the upcoming season, which is scheduled to premiere in May

", + "contentSnippet": "Yasmin Finney will return as Rose in the upcoming season, which is scheduled to premiere in May", + "guid": "b1130542", + "categories": ["TV", "Culture"], + "isoDate": "2024-01-05T13:26:13.000Z" + }, + { + "creator": "Matt Majendie", + "date": "2024-01-05T13:25:24+00:00", + "title": "Luke Humphries: Darts' self-confessed 'Mr Boring' is an inspirational and worthy champion", + "link": "https://www.standard.co.uk/sport/luke-humphries-darts-world-champion-luke-littler-b1130574.html", + "pubDate": "Fri, 05 Jan 2024 13:25:24 GMT", + "dc:creator": "Matt Majendie", + "dc:date": "2024-01-05T13:25:24+00:00", + "content": "

He may have stopped Luke Littler's fairytale run, but the former roofer has a remarkable story all of his own

", + "contentSnippet": "He may have stopped Luke Littler's fairytale run, but the former roofer has a remarkable story all of his own", + "guid": "b1130574", + "categories": ["Sport"], + "isoDate": "2024-01-05T13:25:24.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2024-01-05T13:24:21+00:00", + "title": "Keir Starmer rejects criticism of Labour as light on detailed policy", + "link": "https://www.standard.co.uk/news/politics/keir-starmer-rachel-reeves-tories-british-rishi-sunak-b1130506.html", + "pubDate": "Fri, 05 Jan 2024 13:24:21 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2024-01-05T13:24:21+00:00", + "content": "The Labour leader has promised to meet the Tories \u2018fire with fire\u2019.", + "contentSnippet": "The Labour leader has promised to meet the Tories \u2018fire with fire\u2019.", + "guid": "b1130506", + "categories": ["Politics", "News"], + "isoDate": "2024-01-05T13:24:21.000Z" + }, + { + "creator": "Michael Howie,Lizzie Edmonds and Lisa McLoughlin ", + "date": "2024-01-05T13:22:53+00:00", + "title": "Derek Draper: Kate Garraway announces death of husband, 56, saying she was \u2018holding his hand when he passed\u2019", + "link": "https://www.standard.co.uk/news/uk/derek-draper-dead-kate-garraway-illness-covid-instagram-b1130534.html", + "pubDate": "Fri, 05 Jan 2024 13:22:53 GMT", + "dc:creator": "Michael Howie,Lizzie Edmonds and Lisa McLoughlin ", + "dc:date": "2024-01-05T13:22:53+00:00", + "content": "

Draper, 56, had struggled with health issues since contracting Covid and being placed in an induced coma in 2020

", + "contentSnippet": "Draper, 56, had struggled with health issues since contracting Covid and being placed in an induced coma in 2020", + "guid": "b1130534", + "categories": ["UK", "News"], + "isoDate": "2024-01-05T13:22:53.000Z" + }, + { + "creator": "Carol Vorderman", + "date": "2024-01-05T13:20:41+00:00", + "title": "OPINION - Carol Vorderman: He's a coward. Bully. Misogynist. Why I\u2019m taking on Shaun Bailey and the other men like him ", + "link": "https://www.standard.co.uk/comment/carol-vorderman-shaun-bailey-misogyny-gb-news-b1130544.html", + "pubDate": "Fri, 05 Jan 2024 13:20:41 GMT", + "dc:creator": "Carol Vorderman", + "dc:date": "2024-01-05T13:20:41+00:00", + "content": "

Shaun Bailey is a misogynist.\u00a0 Not only that, he\u2019s a coward. You see \u201cmisogynist\u201d is just a fancy noun for \u201csomeone who bullies women\u201d and all bullies, as we know, are ultimately cowards. Quod Erat Demonstrandum.

", + "contentSnippet": "Shaun Bailey is a misogynist.\u00a0 Not only that, he\u2019s a coward. You see \u201cmisogynist\u201d is just a fancy noun for \u201csomeone who bullies women\u201d and all bullies, as we know, are ultimately cowards. Quod Erat Demonstrandum.", + "guid": "b1130544", + "categories": ["Comment"], + "isoDate": "2024-01-05T13:20:41.000Z" + }, + { + "creator": "Bloomberg", + "date": "2024-01-05T13:16:14+00:00", + "title": "Thai retailer says it\u2019s received no communication about Selfridges investment", + "link": "https://www.standard.co.uk/business/thai-retailer-says-it-s-received-no-communication-about-selfridges-investment-b1130573.html", + "pubDate": "Fri, 05 Jan 2024 13:16:14 GMT", + "dc:creator": "Bloomberg", + "dc:date": "2024-01-05T13:16:14+00:00", + "content": "

Questions have swirled around the future of the iconic retailer after one of its co-owners filed for insolvency

", + "contentSnippet": "Questions have swirled around the future of the iconic retailer after one of its co-owners filed for insolvency", + "guid": "b1130573", + "categories": ["Business"], + "isoDate": "2024-01-05T13:16:14.000Z" + }, + { + "creator": "Ayan Omar", + "date": "2024-01-05T13:14:46+00:00", + "title": "McDonald\u2019s chief says Israel-Gaza \u2018misinformation\u2019 is hurting sales", + "link": "https://www.standard.co.uk/news/world/mcdonalds-fast-food-franchise-boycott-israel-gaza-bds-b1130517.html", + "pubDate": "Fri, 05 Jan 2024 13:14:46 GMT", + "dc:creator": "Ayan Omar", + "dc:date": "2024-01-05T13:14:46+00:00", + "content": "

The fast food chain has faced boycotts after its Israeli franchise donated thousands of meals to soldiers fighting in Gaza

", + "contentSnippet": "The fast food chain has faced boycotts after its Israeli franchise donated thousands of meals to soldiers fighting in Gaza", + "guid": "b1130517", + "categories": ["World", "News"], + "isoDate": "2024-01-05T13:14:46.000Z" + }, + { + "creator": "George Flood", + "date": "2024-01-05T13:13:29+00:00", + "title": "Transfer news LIVE! Osimhen 'agrees' Chelsea move; Vlahovic to Arsenal, Toney; Liverpool Mbappe boost; Man Utd", + "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-chelsea-fc-tottenham-man-utd-vlahovic-neto-dybala-mbappe-b1130462.html", + "pubDate": "Fri, 05 Jan 2024 13:13:29 GMT", + "dc:creator": "George Flood", + "dc:date": "2024-01-05T13:13:29+00:00", + "content": "

Follow all the latest January transfer news, rumours and gossip

", + "contentSnippet": "Follow all the latest January transfer news, rumours and gossip", + "guid": "b1130462", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T13:13:29.000Z" + }, + { + "creator": "Lisa McLoughlin ", + "date": "2024-01-05T13:12:45+00:00", + "title": "Derek Draper death: Lorraine Kelly and Susanna Reid lead tributes after sad news of his passing ", + "link": "https://www.standard.co.uk/showbiz/derek-draper-tributes-lorraine-kelly-susanna-reid-kate-garraway-b1130560.html", + "pubDate": "Fri, 05 Jan 2024 13:12:45 GMT", + "dc:creator": "Lisa McLoughlin ", + "dc:date": "2024-01-05T13:12:45+00:00", + "content": "

Lorraine Kelly praises friend Kate Garraway for her strength following husband Derek's lengthy battle with Covid

", + "contentSnippet": "Lorraine Kelly praises friend Kate Garraway for her strength following husband Derek's lengthy battle with Covid", + "guid": "b1130560", + "categories": ["Showbiz"], + "isoDate": "2024-01-05T13:12:45.000Z" + }, + { + "creator": "Matt Verri", + "date": "2024-01-05T13:11:32+00:00", + "title": "Kieran Tierney delivers verdict on January return to Arsenal as he reveals love for Real Sociedad ", + "link": "https://www.standard.co.uk/sport/football/kieran-tierney-arsenal-fc-real-sociedad-transfer-update-b1130569.html", + "pubDate": "Fri, 05 Jan 2024 13:11:32 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2024-01-05T13:11:32+00:00", + "content": "

There have been suggestions that the Gunners could recall Tierney from his loan in Spain

", + "contentSnippet": "There have been suggestions that the Gunners could recall Tierney from his loan in Spain", + "guid": "b1130569", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T13:11:32.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-05T13:11:18+00:00", + "title": "Tottenham: Ange Postecoglou challenges Spurs stars to step up without Heung-min Son", + "link": "https://www.standard.co.uk/sport/football/tottenham-postecoglou-son-spurs-b1130564.html", + "pubDate": "Fri, 05 Jan 2024 13:11:18 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-05T13:11:18+00:00", + "content": "

Tottenham dealing with another major absence as captain goes away to the Asian Cup

", + "contentSnippet": "Tottenham dealing with another major absence as captain goes away to the Asian Cup", + "guid": "b1130564", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T13:11:18.000Z" + }, + { + "creator": "Jordan Reynolds", + "date": "2024-01-05T13:05:58+00:00", + "title": "Met Police officer appears in court and denies sexual offence", + "link": "https://www.standard.co.uk/news/crime/police-officer-southwark-crown-court-metropolitan-police-romford-essex-b1130570.html", + "pubDate": "Fri, 05 Jan 2024 13:05:58 GMT", + "dc:creator": "Jordan Reynolds", + "dc:date": "2024-01-05T13:05:58+00:00", + "content": "Sergeant Elliot Butler was conditionally bailed to next appear at Southwark Crown Court on March 4.", + "contentSnippet": "Sergeant Elliot Butler was conditionally bailed to next appear at Southwark Crown Court on March 4.", + "guid": "b1130570", + "categories": ["Crime", "News"], + "isoDate": "2024-01-05T13:05:58.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2024-01-05T13:05:44+00:00", + "title": "ChatGPT store that lets you make money from custom chatbots to open next week", + "link": "https://www.standard.co.uk/news/tech/openai-custom-chatgpt-bots-ai-marketplace-b1118812.html", + "pubDate": "Fri, 05 Jan 2024 13:05:44 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2024-01-05T13:05:44+00:00", + "content": "

Subscribers can build and share bots with the public and will be able to receive payouts

", + "contentSnippet": "Subscribers can build and share bots with the public and will be able to receive payouts", + "guid": "b1118812", + "categories": ["Tech", "News"], + "isoDate": "2024-01-05T13:05:44.000Z" + }, + { + "creator": "India Block", + "date": "2024-01-05T13:05:02+00:00", + "title": "Primrose Hill: from glittering A-list hangout to battleground for public safety?", + "link": "https://www.standard.co.uk/homesandproperty/property-news/primrose-hill-murder-park-security-neighbourhood-crime-b1130352.html", + "pubDate": "Fri, 05 Jan 2024 13:05:02 GMT", + "dc:creator": "India Block", + "dc:date": "2024-01-05T13:05:02+00:00", + "content": "

Primrose Hill exploded in popularity over lockdown. Now the tragic death of a teenager leaves residents searching for answers on how to make their park safe for everyone

", + "contentSnippet": "Primrose Hill exploded in popularity over lockdown. Now the tragic death of a teenager leaves residents searching for answers on how to make their park safe for everyone", + "guid": "b1130352", + "categories": ["Property News", "Homes & Property"], + "isoDate": "2024-01-05T13:05:02.000Z" + }, + { + "creator": "Jitendra Joshi", + "date": "2024-01-05T13:01:15+00:00", + "title": "Pressure grows for Prince Andrew police probe after new Jeffrey Epstein files bombshell", + "link": "https://www.standard.co.uk/news/uk/prince-andrew-duke-of-york-police-probe-jeffrey-epstein-court-documents-b1130522.html", + "pubDate": "Fri, 05 Jan 2024 13:01:15 GMT", + "dc:creator": "Jitendra Joshi", + "dc:date": "2024-01-05T13:01:15+00:00", + "content": "

The head of the anti-monarchy group Republic said that he had reported the Duke of York to the Metropolitan Police

", + "contentSnippet": "The head of the anti-monarchy group Republic said that he had reported the Duke of York to the Metropolitan Police", + "guid": "b1130522", + "categories": ["UK", "News"], + "isoDate": "2024-01-05T13:01:15.000Z" + }, + { + "creator": "Anthony France", + "date": "2024-01-05T13:01:09+00:00", + "title": "Mum of Wimbledon school crash victim shares last photo of daughter moments before her death", + "link": "https://www.standard.co.uk/news/crime/nuria-sajjad-wimbledon-prep-school-crash-photo-london-b1130523.html", + "pubDate": "Fri, 05 Jan 2024 13:01:09 GMT", + "dc:creator": "Anthony France", + "dc:date": "2024-01-05T13:01:09+00:00", + "content": "

Nuria Sajjad\u2019s family said their days are 'overwhelmingly filled with hollowness' - as they reveal concern about police investigation

", + "contentSnippet": "Nuria Sajjad\u2019s family said their days are 'overwhelmingly filled with hollowness' - as they reveal concern about police investigation", + "guid": "b1130523", + "categories": ["Crime", "News"], + "isoDate": "2024-01-05T13:01:09.000Z" + }, + { + "creator": "Hamish MacBain", + "date": "2024-01-05T13:00:53+00:00", + "title": "OPINION - There's only one thing worse than people boring on about Dry Jan...", + "link": "https://www.standard.co.uk/comment/dry-january-resolutions-b1130513.html", + "pubDate": "Fri, 05 Jan 2024 13:00:53 GMT", + "dc:creator": "Hamish MacBain", + "dc:date": "2024-01-05T13:00:53+00:00", + "content": "

You know what? I\u2019ve barely even noticed. I don\u2019t miss it all. There\u2019s actually so much stuff to do in the evening and at the weekend that doesn\u2019t revolve around drinking. I went out for a meal and just drank water. I\u2019ve been sleeping so well and getting up so early that I\u2019m never tired and also have all of these extra hours in the day. Those Barry\u2019s classes are just bouncing off me like bullets made of marzipan. The idea of a late-night McDonald\u2019s makes me feel sick. Although not actually sick. Did I mention that I\u2019m not feeling sick, or tired, at all, ever? Or that I just feel great all the time, forever?

", + "contentSnippet": "You know what? I\u2019ve barely even noticed. I don\u2019t miss it all. There\u2019s actually so much stuff to do in the evening and at the weekend that doesn\u2019t revolve around drinking. I went out for a meal and just drank water. I\u2019ve been sleeping so well and getting up so early that I\u2019m never tired and also have all of these extra hours in the day. Those Barry\u2019s classes are just bouncing off me like bullets made of marzipan. The idea of a late-night McDonald\u2019s makes me feel sick. Although not actually sick. Did I mention that I\u2019m not feeling sick, or tired, at all, ever? Or that I just feel great all the time, forever?", + "guid": "b1130513", + "categories": ["Comment"], + "isoDate": "2024-01-05T13:00:53.000Z" + }, + { + "creator": "Kayleigh Rattle", + "date": "2024-01-05T13:00:35+00:00", + "title": "Best nursing chairs for a comfortable feeding time for mum and baby", + "link": "https://www.standard.co.uk/shopping/esbest/kids/best-nursing-chairs-b950170.html", + "pubDate": "Fri, 05 Jan 2024 13:00:35 GMT", + "dc:creator": "Kayleigh Rattle", + "dc:date": "2024-01-05T13:00:35+00:00", + "content": "

We take a look at the best rocking and nursing chairs for feeding, soothing, reading and relaxing in

", + "contentSnippet": "We take a look at the best rocking and nursing chairs for feeding, soothing, reading and relaxing in", + "guid": "b950170", + "categories": ["Kids", "ES Best Home", "Shopping"], + "isoDate": "2024-01-05T13:00:35.000Z" + }, + { + "creator": "By Grinne N. Aodha", + "date": "2024-01-05T13:00:35+00:00", + "title": "Teenager charged with murder of suspected gunman in Dublin restaurant shooting", + "link": "https://www.standard.co.uk/news/uk/dublin-sherry-b1130550.html", + "pubDate": "Fri, 05 Jan 2024 13:00:35 GMT", + "dc:creator": "By Grinne N. Aodha", + "dc:date": "2024-01-05T13:00:35+00:00", + "content": "David Amah, with an address in Donabate, appeared in court charged with Tristan Sherry\u2019s murder on Christmas Eve.", + "contentSnippet": "David Amah, with an address in Donabate, appeared in court charged with Tristan Sherry\u2019s murder on Christmas Eve.", + "guid": "b1130550", + "categories": ["UK", "News"], + "isoDate": "2024-01-05T13:00:35.000Z" + }, + { + "creator": "Lisa McLoughlin ", + "date": "2024-01-05T13:00:15+00:00", + "title": "Game of Thrones actor left stunned after discovering his mother is on The Traitors ", + "link": "https://www.standard.co.uk/showbiz/kerr-logan-game-of-thrones-the-traitors-reality-show-stunned-b1130532.html", + "pubDate": "Fri, 05 Jan 2024 13:00:15 GMT", + "dc:creator": "Lisa McLoughlin ", + "dc:date": "2024-01-05T13:00:15+00:00", + "content": "

Kerr Logan announced on X that his mum Diane was one of the contestants

", + "contentSnippet": "Kerr Logan announced on X that his mum Diane was one of the contestants", + "guid": "b1130532", + "categories": ["Showbiz"], + "isoDate": "2024-01-05T13:00:15.000Z" + }, + { + "creator": "Danny Halpin", + "date": "2024-01-05T12:58:57+00:00", + "title": "Farmers looking at \u2018huge losses\u2019 after major incident declared over flooding", + "link": "https://www.standard.co.uk/news/environment/environment-agency-farmers-nottinghamshire-county-council-england-government-b1130568.html", + "pubDate": "Fri, 05 Jan 2024 12:58:57 GMT", + "dc:creator": "Danny Halpin", + "dc:date": "2024-01-05T12:58:57+00:00", + "content": "Almost every river in England is running exceptionally high, according to Environment Agency data.", + "contentSnippet": "Almost every river in England is running exceptionally high, according to Environment Agency data.", + "guid": "b1130568", + "categories": ["Environment", "News"], + "isoDate": "2024-01-05T12:58:57.000Z" + }, + { + "creator": "David Lynch", + "date": "2024-01-05T12:56:38+00:00", + "title": "No one should grow up poor, Sunak says after Tory MP\u2019s \u2018crap parenting\u2019 remark", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-prime-minister-north-west-david-lynch-mps-b1130566.html", + "pubDate": "Fri, 05 Jan 2024 12:56:38 GMT", + "dc:creator": "David Lynch", + "dc:date": "2024-01-05T12:56:38+00:00", + "content": "Bury North MP James Daly faced criticism over Christmas for suggesting most children who struggle in the town are \u2018products of crap parents\u2019.", + "contentSnippet": "Bury North MP James Daly faced criticism over Christmas for suggesting most children who struggle in the town are \u2018products of crap parents\u2019.", + "guid": "b1130566", + "categories": ["Politics", "News"], + "isoDate": "2024-01-05T12:56:38.000Z" + }, + { + "creator": "Emily Pennink", + "date": "2024-01-05T12:55:55+00:00", + "title": "Victoria station bus crash driver avoids jail for killing pedestrian Melissa Burr, 32", + "link": "https://www.standard.co.uk/news/crime/victoria-station-bus-crash-driver-melissa-burr-pedestrian-b1130563.html", + "pubDate": "Fri, 05 Jan 2024 12:55:55 GMT", + "dc:creator": "Emily Pennink", + "dc:date": "2024-01-05T12:55:55+00:00", + "content": "

Olusofa Popoola, 61, accidentally accelerated into the back of a stationary bus, shunting it forward into Melissa Burr

", + "contentSnippet": "Olusofa Popoola, 61, accidentally accelerated into the back of a stationary bus, shunting it forward into Melissa Burr", + "guid": "b1130563", + "categories": ["Crime", "News"], + "isoDate": "2024-01-05T12:55:55.000Z" + }, + { + "creator": "Craig Paton", + "date": "2024-01-05T12:52:44+00:00", + "title": "Yousaf: Israel\u2019s action in Gaza \u2018way beyond legitimate response\u2019 to Hamas attack", + "link": "https://www.standard.co.uk/news/politics/gaza-uk-government-hamas-benjamin-netanyahu-first-minister-b1130557.html", + "pubDate": "Fri, 05 Jan 2024 12:52:44 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2024-01-05T12:52:44+00:00", + "content": "The First Minister has urged the UK Government to make clear Israeli officials will be held responsible if \u2018indiscriminate attacks\u2019 do not cease.", + "contentSnippet": "The First Minister has urged the UK Government to make clear Israeli officials will be held responsible if \u2018indiscriminate attacks\u2019 do not cease.", + "guid": "b1130557", + "categories": ["Politics", "News"], + "isoDate": "2024-01-05T12:52:44.000Z" + }, + { + "creator": "Lisa McLoughlin ", + "date": "2024-01-05T12:49:29+00:00", + "title": "This Morning's Dermot O'Leary and Alison Hammond hold back tears as they announce Derek Draper's death", + "link": "https://www.standard.co.uk/showbiz/this-morning-dermot-oleary-alison-hammond-announce-derek-drapers-death-b1130545.html", + "pubDate": "Fri, 05 Jan 2024 12:49:29 GMT", + "dc:creator": "Lisa McLoughlin ", + "dc:date": "2024-01-05T12:49:29+00:00", + "content": "

Kate Garraway announced her husband's death on Instagram on Friday

", + "contentSnippet": "Kate Garraway announced her husband's death on Instagram on Friday", + "guid": "b1130545", + "categories": ["Showbiz"], + "isoDate": "2024-01-05T12:49:29.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-05T12:49:29+00:00", + "title": "Telegraph bidder vows Abu Dhabi will be \u2018passive investor\u2019", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/abu-dhabi-government-the-daily-telegraph-united-arab-emirates-cnn-b1130561.html", + "pubDate": "Fri, 05 Jan 2024 12:49:29 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-05T12:49:29+00:00", + "content": "Last year the Government got involved in the deal, amid worries the authoritarian Gulf State could get a say over the journalism of the UK paper.", + "contentSnippet": "Last year the Government got involved in the deal, amid worries the authoritarian Gulf State could get a say over the journalism of the UK paper.", + "guid": "b1130561", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-05T12:49:29.000Z" + }, + { + "creator": "Robbie Griffiths", + "date": "2024-01-05T12:48:30+00:00", + "title": "Elvis, his millions and the fraught multi-generational battle for his estate", + "link": "https://www.standard.co.uk/lifestyle/elvis-presley-networth-wealth-priscilla-presley-lisa-marie-riley-keogh-millions-cash-b1130431.html", + "pubDate": "Fri, 05 Jan 2024 12:48:30 GMT", + "dc:creator": "Robbie Griffiths", + "dc:date": "2024-01-05T12:48:30+00:00", + "content": "

As Elvis Presley becomes a hologram, who will make all the money?

", + "contentSnippet": "As Elvis Presley becomes a hologram, who will make all the money?", + "guid": "b1130431", + "categories": ["Lifestyle"], + "isoDate": "2024-01-05T12:48:30.000Z" + }, + { + "creator": "George Flood", + "date": "2024-01-05T12:46:02+00:00", + "title": "Arsenal: What Jorrel Hato has already said about 'dream' transfer move", + "link": "https://www.standard.co.uk/sport/football/arsenal-fc-jorrel-hato-transfer-b1130556.html", + "pubDate": "Fri, 05 Jan 2024 12:46:02 GMT", + "dc:creator": "George Flood", + "dc:date": "2024-01-05T12:46:02+00:00", + "content": "

The Gunners are expected to make a move for talented Ajax starlet

", + "contentSnippet": "The Gunners are expected to make a move for talented Ajax starlet", + "guid": "b1130556", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T12:46:02.000Z" + }, + { + "creator": "Vicky Shaw", + "date": "2024-01-05T12:42:33+00:00", + "title": "Average UK house price ended last year \u00a34,800 higher than at end of 2022 \u2013 index", + "link": "https://www.standard.co.uk/business/money/average-uk-house-price-ended-last-year-ps4-800-higher-than-at-end-of-2022-index-b1130471.html", + "pubDate": "Fri, 05 Jan 2024 12:42:33 GMT", + "dc:creator": "Vicky Shaw", + "dc:date": "2024-01-05T12:42:33+00:00", + "content": "The typical UK house price in December 2023 was \u00a3287,105, up from \u00a3282,305 in the same month a year earlier, Halifax said.", + "contentSnippet": "The typical UK house price in December 2023 was \u00a3287,105, up from \u00a3282,305 in the same month a year earlier, Halifax said.", + "guid": "b1130471", + "categories": ["Money", "Business"], + "isoDate": "2024-01-05T12:42:33.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-05T12:37:00+00:00", + "title": "Major supermarkets to reveal festive sales after bumper Christmas for rivals", + "link": "https://www.standard.co.uk/business/business-news/major-supermarkets-to-reveal-festive-sales-after-bumper-christmas-for-rivals-b1130558.html", + "pubDate": "Fri, 05 Jan 2024 12:37:00 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-05T12:37:00+00:00", + "content": "Sainsbury\u2019s, Tesco and Marks & Spencer will give investors an update on their recent sales.", + "contentSnippet": "Sainsbury\u2019s, Tesco and Marks & Spencer will give investors an update on their recent sales.", + "guid": "b1130558", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-05T12:37:00.000Z" + }, + { + "creator": "Laura Harding", + "date": "2024-01-05T12:26:40+00:00", + "title": "New Labour spin doctor Derek Draper was part of media power couple", + "link": "https://www.standard.co.uk/showbiz/derek-draper-kate-garraway-new-labour-liam-byrne-peter-mandelson-b1130535.html", + "pubDate": "Fri, 05 Jan 2024 12:26:40 GMT", + "dc:creator": "Laura Harding", + "dc:date": "2024-01-05T12:26:40+00:00", + "content": "The former political adviser retrained as a psychotherapist and married TV presenter Kate Garraway.", + "contentSnippet": "The former political adviser retrained as a psychotherapist and married TV presenter Kate Garraway.", + "guid": "b1130535", + "categories": ["Showbiz"], + "isoDate": "2024-01-05T12:26:40.000Z" + }, + { + "creator": "Hannah Cottrell", + "date": "2024-01-05T12:24:36+00:00", + "title": "We can\u2019t continue like this, says mother in flooded Shropshire home", + "link": "https://www.standard.co.uk/news/environment/shropshire-shrewsbury-people-nottinghamshire-b1130441.html", + "pubDate": "Fri, 05 Jan 2024 12:24:36 GMT", + "dc:creator": "Hannah Cottrell", + "dc:date": "2024-01-05T12:24:36+00:00", + "content": "Siobhan Connor, from Shrewsbury, said her home has flooded three times in the last year .", + "contentSnippet": "Siobhan Connor, from Shrewsbury, said her home has flooded three times in the last year .", + "guid": "b1130441", + "categories": ["Environment", "News"], + "isoDate": "2024-01-05T12:24:36.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-05T12:24:10+00:00", + "title": "Best places to buy contact lenses online that are cheap and high quality", + "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-places-to-buy-contact-lenses-online-uk-a4540716.html", + "pubDate": "Fri, 05 Jan 2024 12:24:10 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-05T12:24:10+00:00", + "content": "

Tired of overpaying for contact lenses? Abha Shah has her eyes on the purse-friendly prize

", + "contentSnippet": "Tired of overpaying for contact lenses? Abha Shah has her eyes on the purse-friendly prize", + "guid": "a4540716", + "categories": ["Health & Fitness", "ES Best Home", "Shopping"], + "isoDate": "2024-01-05T12:24:10.000Z" + }, + { + "creator": "Jordan King", + "date": "2024-01-05T12:21:37+00:00", + "title": "North Korea fires artillery rounds near its disputed sea boundary with South", + "link": "https://www.standard.co.uk/news/world/north-korea-south-korea-artillery-rounds-sea-boundary-b1130474.html", + "pubDate": "Fri, 05 Jan 2024 12:21:37 GMT", + "dc:creator": "Jordan King", + "dc:date": "2024-01-05T12:21:37+00:00", + "content": "

It comes amid high tensions between the two neighbouring countries

", + "contentSnippet": "It comes amid high tensions between the two neighbouring countries", + "guid": "b1130474", + "categories": ["World", "News"], + "isoDate": "2024-01-05T12:21:37.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2024-01-05T12:21:17+00:00", + "title": "Chelsea striker David Datro Fofana offered Sevilla escape route from Union Berlin nightmare", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-david-datro-fofana-sevilla-union-berlin-b1130528.html", + "pubDate": "Fri, 05 Jan 2024 12:21:17 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2024-01-05T12:21:17+00:00", + "content": "

Blues loanee could get a change of scenery in January after struggling to impress in the Bundesliga

", + "contentSnippet": "Blues loanee could get a change of scenery in January after struggling to impress in the Bundesliga", + "guid": "b1130528", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T12:21:17.000Z" + }, + { + "creator": "Ross Lydall", + "date": "2024-01-05T12:19:07+00:00", + "title": "Blackwall tunnel to close to southbound traffic for five weekends", + "link": "https://www.standard.co.uk/news/transport/blackwall-tunnel-close-southbound-traffic-five-weekends-tfl-silvertown-b1130543.html", + "pubDate": "Fri, 05 Jan 2024 12:19:07 GMT", + "dc:creator": "Ross Lydall", + "dc:date": "2024-01-05T12:19:07+00:00", + "content": "

The Blackwall tunnel will be part-closed for up to five weekends in January and February, drivers were warned on Friday.

", + "contentSnippet": "The Blackwall tunnel will be part-closed for up to five weekends in January and February, drivers were warned on Friday.", + "guid": "b1130543", + "categories": ["Transport", "News"], + "isoDate": "2024-01-05T12:19:07.000Z" + }, + { + "creator": "Dylan Jones", + "date": "2024-01-05T12:18:15+00:00", + "title": "Elvis Presley's 10 greatest songs", + "link": "https://www.standard.co.uk/culture/music/10-greatest-elvis-presley-songs-b1130493.html", + "pubDate": "Fri, 05 Jan 2024 12:18:15 GMT", + "dc:creator": "Dylan Jones", + "dc:date": "2024-01-05T12:18:15+00:00", + "content": "

From Jailhouse Rock to All Shook Up, the icon was responsible for countless rock'n'roll classics, but which ones come out on top?

", + "contentSnippet": "From Jailhouse Rock to All Shook Up, the icon was responsible for countless rock'n'roll classics, but which ones come out on top?", + "guid": "b1130493", + "categories": ["Music", "Culture"], + "isoDate": "2024-01-05T12:18:15.000Z" + }, + { + "creator": "Lizzie Edmonds", + "date": "2024-01-05T12:15:45+00:00", + "title": "Sandra Bullock scatters ashes of partner Bryan Randall into Snake River in Wyoming ", + "link": "https://www.standard.co.uk/showbiz/sandra-bullock-partner-death-bryan-randall-ashes-scattered-snake-river-wyoming-b1130519.html", + "pubDate": "Fri, 05 Jan 2024 12:15:45 GMT", + "dc:creator": "Lizzie Edmonds", + "dc:date": "2024-01-05T12:15:45+00:00", + "content": "

Randall died in August 2023 following a secret battle with ALS

", + "contentSnippet": "Randall died in August 2023 following a secret battle with ALS", + "guid": "b1130519", + "categories": ["Showbiz"], + "isoDate": "2024-01-05T12:15:45.000Z" + }, + { + "creator": "Tristan Kirk", + "date": "2024-01-05T12:15:20+00:00", + "title": "Tory MPs call for review of fast-track justice system 'against British values' after pensioner convicted over bill", + "link": "https://www.standard.co.uk/news/politics/single-justice-procedure-justice-secretary-alex-chalk-andy-street-eddie-hughes-b1130515.html", + "pubDate": "Fri, 05 Jan 2024 12:15:20 GMT", + "dc:creator": "Tristan Kirk", + "dc:date": "2024-01-05T12:15:20+00:00", + "content": "

MPs wrote to Justice Secretary Alex Chalk urging him to review the Single Justice Procedure

", + "contentSnippet": "MPs wrote to Justice Secretary Alex Chalk urging him to review the Single Justice Procedure", + "guid": "b1130515", + "categories": ["Politics", "News"], + "isoDate": "2024-01-05T12:15:20.000Z" + }, + { + "creator": "Ian Jones", + "date": "2024-01-05T12:15:15+00:00", + "title": "Flu patients up a third over Christmas ahead of junior doctors\u2019 strike", + "link": "https://www.standard.co.uk/news/health/nhs-england-eve-ian-jones-b1130526.html", + "pubDate": "Fri, 05 Jan 2024 12:15:15 GMT", + "dc:creator": "Ian Jones", + "dc:date": "2024-01-05T12:15:15+00:00", + "content": "It is the highest figure so far this winter.", + "contentSnippet": "It is the highest figure so far this winter.", + "guid": "b1130526", + "categories": ["Health", "News"], + "isoDate": "2024-01-05T12:15:15.000Z" + }, + { + "creator": "Nicholas Cecil and Michael Howie", + "date": "2024-01-05T12:12:55+00:00", + "title": "\u2018Not that difficult\u2019 to get on property ladder, NatWest chief claims sparking disbelief among young Londoners", + "link": "https://www.standard.co.uk/news/politics/not-that-difficult-to-get-on-property-ladder-natwest-chief-claims-b1130484.html", + "pubDate": "Fri, 05 Jan 2024 12:12:55 GMT", + "dc:creator": "Nicholas Cecil and Michael Howie", + "dc:date": "2024-01-05T12:12:55+00:00", + "content": "

Lib Dem Treasury spokesperson Sarah Olney MP said: \"This is laughable. What planet is he living on?\"

", + "contentSnippet": "Lib Dem Treasury spokesperson Sarah Olney MP said: \"This is laughable. What planet is he living on?\"", + "guid": "b1130484", + "categories": ["Politics", "News"], + "isoDate": "2024-01-05T12:12:55.000Z" + }, + { + "creator": "Anne McElvoy", + "date": "2024-01-05T12:12:08+00:00", + "title": "How Jeffrey Epstein is still shifting tectonic plates of world\u2019s elite from the grave", + "link": "https://www.standard.co.uk/lifestyle/jeffrey-epstein-files-bill-clinton-donald-trump-prince-andrew-b1130530.html", + "pubDate": "Fri, 05 Jan 2024 12:12:08 GMT", + "dc:creator": "Anne McElvoy", + "dc:date": "2024-01-05T12:12:08+00:00", + "content": "

From New York to the Royal Lodge, yet another toxic dossier about the billionaire is wreaking havoc on power players

", + "contentSnippet": "From New York to the Royal Lodge, yet another toxic dossier about the billionaire is wreaking havoc on power players", + "guid": "b1130530", + "categories": ["Lifestyle"], + "isoDate": "2024-01-05T12:12:08.000Z" + }, + { + "creator": "Anthony France", + "date": "2024-01-05T12:11:32+00:00", + "title": "Crouch End murder: Police investigating after 23-year-old man stabbed to death in Haringey", + "link": "https://www.standard.co.uk/news/crime/murder-metropolitan-police-man-stabbing-albert-road-crouch-end-haringey-london-b1130548.html", + "pubDate": "Fri, 05 Jan 2024 12:11:32 GMT", + "dc:creator": "Anthony France", + "dc:date": "2024-01-05T12:11:32+00:00", + "content": "

The victim\u2019s family have been informed and are being supported by officers

", + "contentSnippet": "The victim\u2019s family have been informed and are being supported by officers", + "guid": "b1130548", + "categories": ["Crime", "News"], + "isoDate": "2024-01-05T12:11:32.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2024-01-05T12:06:12+00:00", + "title": "SpaceX launches Starlink mobile phone service satellites", + "link": "https://www.standard.co.uk/news/tech/spacex-starlink-mobile-phone-service-satellites-b1130514.html", + "pubDate": "Fri, 05 Jan 2024 12:06:12 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2024-01-05T12:06:12+00:00", + "content": "

Six satellites that will act as mobile phone towers \"in space\" blasted off on the firm's Falcon 9 rocket

", + "contentSnippet": "Six satellites that will act as mobile phone towers \"in space\" blasted off on the firm's Falcon 9 rocket", + "guid": "b1130514", + "categories": ["Tech", "News"], + "isoDate": "2024-01-05T12:06:12.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2024-01-05T12:06:06+00:00", + "title": "David Tennant \u2018delighted\u2019 to be announced as Baftas host", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/david-tennant-royal-festival-hall-tv-baftas-catherine-tate-richard-e-grant-b1130453.html", + "pubDate": "Fri, 05 Jan 2024 12:06:06 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2024-01-05T12:06:06+00:00", + "content": "The awards ceremony will take place in February at the Royal Festival Hall in London.", + "contentSnippet": "The awards ceremony will take place in February at the Royal Festival Hall in London.", + "guid": "b1130453", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-05T12:06:06.000Z" + }, + { + "creator": "Nancy Durrant", + "date": "2024-01-05T12:03:48+00:00", + "title": "OPINION - Women artists are everywhere in 2024 but let's face it, it's about damn time", + "link": "https://www.standard.co.uk/culture/exhibitions/women-artists-exhibitions-2024-london-yoko-ono-angelica-kauffman-tate-b1130354.html", + "pubDate": "Fri, 05 Jan 2024 12:03:48 GMT", + "dc:creator": "Nancy Durrant", + "dc:date": "2024-01-05T12:03:48+00:00", + "content": "

It's a great year of exhibitions but museums need to double down and beef up their collections with the work of female artists

", + "contentSnippet": "It's a great year of exhibitions but museums need to double down and beef up their collections with the work of female artists", + "guid": "b1130354", + "categories": ["Exhibitions", "Culture"], + "isoDate": "2024-01-05T12:03:48.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2024-01-05T12:01:37+00:00", + "title": "Sunak urged to act as areas hit by flooding", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-prime-minister-national-audit-office-england-environment-agency-b1130547.html", + "pubDate": "Fri, 05 Jan 2024 12:01:37 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2024-01-05T12:01:37+00:00", + "content": "Opposition parties have urged the Prime Minister to visit the affected areas.", + "contentSnippet": "Opposition parties have urged the Prime Minister to visit the affected areas.", + "guid": "b1130547", + "categories": ["Politics", "News"], + "isoDate": "2024-01-05T12:01:37.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-05T12:00:52+00:00", + "title": "Tottenham: Ivan Perisic has likely played final game for Spurs, says Ange Postecoglou", + "link": "https://www.standard.co.uk/sport/football/tottenham-perisic-injury-contract-postecoglou-b1130510.html", + "pubDate": "Fri, 05 Jan 2024 12:00:52 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-05T12:00:52+00:00", + "content": "

The 34-year-old, who will become a free agent at the end of the season, is recovering from a serious knee injury

", + "contentSnippet": "The 34-year-old, who will become a free agent at the end of the season, is recovering from a serious knee injury", + "guid": "b1130510", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T12:00:52.000Z" + }, + { + "creator": "Seren Morris and Maryam Kara", + "date": "2024-01-05T12:00:00+00:00", + "title": "No Trousers Tube Ride returns to London for 2024 despite TfL strikes", + "link": "https://www.standard.co.uk/news/london/no-trousers-tube-ride-london-underground-elizabeth-line-b1050725.html", + "pubDate": "Fri, 05 Jan 2024 12:00:00 GMT", + "dc:creator": "Seren Morris and Maryam Kara", + "dc:date": "2024-01-05T12:00:00+00:00", + "content": "

Hundreds of Londoners are expected to head to the underground with their legs exposed as the international stunt returns to the city

", + "contentSnippet": "Hundreds of Londoners are expected to head to the underground with their legs exposed as the international stunt returns to the city", + "guid": "b1050725", + "categories": ["London", "News"], + "isoDate": "2024-01-05T12:00:00.000Z" + }, + { + "creator": "Nuray Bulbul", + "date": "2024-01-05T11:56:31+00:00", + "title": "Storm Henk: Where have flood warnings been issued in London?", + "link": "https://www.standard.co.uk/news/uk/london-storm-henk-flood-warnings-areas-where-b1130518.html", + "pubDate": "Fri, 05 Jan 2024 11:56:31 GMT", + "dc:creator": "Nuray Bulbul", + "dc:date": "2024-01-05T11:56:31+00:00", + "content": "

Intense rain across the capital has led to Tube closures and people being evacuated

", + "contentSnippet": "Intense rain across the capital has led to Tube closures and people being evacuated", + "guid": "b1130518", + "categories": ["UK", "News"], + "isoDate": "2024-01-05T11:56:31.000Z" + }, + { + "creator": "William Mata", + "date": "2024-01-05T11:55:58+00:00", + "title": "Hackney Wick residents tell of 'knee-high' flood water as scale of damage emerges", + "link": "https://www.standard.co.uk/news/london/hackney-wick-flood-flooding-canal-river-lee-dace-road-wick-lane-smeed-road-b1130527.html", + "pubDate": "Fri, 05 Jan 2024 11:55:58 GMT", + "dc:creator": "William Mata", + "dc:date": "2024-01-05T11:55:58+00:00", + "content": "

A 'waterfall' gushed from the canal into homes and businesses, residents say

", + "contentSnippet": "A 'waterfall' gushed from the canal into homes and businesses, residents say", + "guid": "b1130527", + "categories": ["London", "News"], + "isoDate": "2024-01-05T11:55:58.000Z" + }, + { + "creator": "Nick Purewal", + "date": "2024-01-05T11:54:08+00:00", + "title": "Six Nations: Fin Baxter emerges as potential England option amid Joe Marler injury", + "link": "https://www.standard.co.uk/sport/rugby/six-nations-england-fin-baxter-harlequins-joe-marler-injury-b1130538.html", + "pubDate": "Fri, 05 Jan 2024 11:54:08 GMT", + "dc:creator": "Nick Purewal", + "dc:date": "2024-01-05T11:54:08+00:00", + "content": "

Steve Borthwick could have a shortage of loosehead props for Italy opener

", + "contentSnippet": "Steve Borthwick could have a shortage of loosehead props for Italy opener", + "guid": "b1130538", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2024-01-05T11:54:08.000Z" + }, + { + "creator": "Nick Purewal", + "date": "2024-01-05T11:46:03+00:00", + "title": "England coaching search continues as Steve Borthwick eyes attacking rebuild", + "link": "https://www.standard.co.uk/sport/rugby/england-steve-borthwick-kevin-sinfield-b1130533.html", + "pubDate": "Fri, 05 Jan 2024 11:46:03 GMT", + "dc:creator": "Nick Purewal", + "dc:date": "2024-01-05T11:46:03+00:00", + "content": "

Kevin Sinfield's summer exit will leave a huge void and his senior presence must be replaced

", + "contentSnippet": "Kevin Sinfield's summer exit will leave a huge void and his senior presence must be replaced", + "guid": "b1130533", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2024-01-05T11:46:03.000Z" + }, + { + "creator": "Simon English", + "date": "2024-01-05T11:34:13+00:00", + "title": "No wonder big companies don't want to list here", + "link": "https://www.standard.co.uk/business/no-wonder-big-companies-don-t-want-to-list-here-b1130531.html", + "pubDate": "Fri, 05 Jan 2024 11:34:13 GMT", + "dc:creator": "Simon English", + "dc:date": "2024-01-05T11:34:13+00:00", + "content": "

City Comment: Perhaps London shouldn\u2019t go chasing every tech float going

", + "contentSnippet": "City Comment: Perhaps London shouldn\u2019t go chasing every tech float going", + "guid": "b1130531", + "categories": ["Business"], + "isoDate": "2024-01-05T11:34:13.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-05T11:29:54+00:00", + "title": "Tottenham: Ange Postecoglou aware of trophy desire but warns FA Cup is not the 'holy grail'", + "link": "https://www.standard.co.uk/sport/football/tottenham-postecoglou-fa-cup-burnley-preview-b1130525.html", + "pubDate": "Fri, 05 Jan 2024 11:29:54 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-05T11:29:54+00:00", + "content": "

Spurs were once the most successful team in FA Cup history, but have not lifted the trophy - or reached a final - in 33 years

", + "contentSnippet": "Spurs were once the most successful team in FA Cup history, but have not lifted the trophy - or reached a final - in 33 years", + "guid": "b1130525", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:29:54.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2024-01-05T11:29:22+00:00", + "title": "How to watch Tottenham vs Burnley FOR FREE: TV channel and live stream for FA Cup game today", + "link": "https://www.standard.co.uk/sport/football/how-to-watch-tottenham-vs-burnley-free-tv-channel-live-stream-fa-cup-2024-today-b1130427.html", + "pubDate": "Fri, 05 Jan 2024 11:29:22 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2024-01-05T11:29:22+00:00", + "content": "

Spurs begin latest quest to end 16-year trophy drought

", + "contentSnippet": "Spurs begin latest quest to end 16-year trophy drought", + "guid": "b1130427", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:29:22.000Z" + }, + { + "creator": "Michael Howie,Lydia Chantler-Hicks and Will Mata", + "date": "2024-01-05T11:29:12+00:00", + "title": "London party boat sinks in Thames and flood hits Hackney Wick amid heavy rainfall", + "link": "https://www.standard.co.uk/news/environment/london-river-thames-met-office-port-of-london-authority-hm-coastguard-b1130440.html", + "pubDate": "Fri, 05 Jan 2024 11:29:12 GMT", + "dc:creator": "Michael Howie,Lydia Chantler-Hicks and Will Mata", + "dc:date": "2024-01-05T11:29:12+00:00", + "content": "

Firefighters lead 50 people to safety after canal bursts banks in east London

", + "contentSnippet": "Firefighters lead 50 people to safety after canal bursts banks in east London", + "guid": "b1130440", + "categories": ["Environment", "News"], + "isoDate": "2024-01-05T11:29:12.000Z" + }, + { + "creator": "Matt Verri", + "date": "2024-01-05T11:29:02+00:00", + "title": "Tottenham vs Burnley: FA Cup prediction, kick-off time, TV, live stream, team news, h2h, odds today", + "link": "https://www.standard.co.uk/sport/football/tottenham-vs-burnley-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-fa-cup-2024-preview-today-b1130027.html", + "pubDate": "Fri, 05 Jan 2024 11:29:02 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2024-01-05T11:29:02+00:00", + "content": "

It is 33 years since Spurs last lifted the famous old trophy

", + "contentSnippet": "It is 33 years since Spurs last lifted the famous old trophy", + "guid": "b1130027", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:29:02.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-05T11:28:46+00:00", + "title": "Tottenham XI vs Burnley: Confirmed team news, predicted lineup, injury latest for FA Cup game today", + "link": "https://www.standard.co.uk/sport/football/tottenham-xi-vs-burnley-confirmed-team-news-predicted-lineup-injury-latest-fa-cup-2024-today-b1130375.html", + "pubDate": "Fri, 05 Jan 2024 11:28:46 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-05T11:28:46+00:00", + "content": "

Key Spurs star may make injury return in all-Premier League third-round tie

", + "contentSnippet": "Key Spurs star may make injury return in all-Premier League third-round tie", + "guid": "b1130375", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:28:46.000Z" + }, + { + "creator": "Josh Payne", + "date": "2024-01-05T11:28:10+00:00", + "title": "Met Police not investigating allegations against Andrew in Epstein files", + "link": "https://www.standard.co.uk/news/uk/virginia-giuffre-bill-clinton-met-police-ghislaine-maxwell-stephen-hawking-b1130529.html", + "pubDate": "Fri, 05 Jan 2024 11:28:10 GMT", + "dc:creator": "Josh Payne", + "dc:date": "2024-01-05T11:28:10+00:00", + "content": "Court documents showed that Virginia Giuffre claimed she was sex-trafficked to the Duke of York.", + "contentSnippet": "Court documents showed that Virginia Giuffre claimed she was sex-trafficked to the Duke of York.", + "guid": "b1130529", + "categories": ["UK", "News"], + "isoDate": "2024-01-05T11:28:10.000Z" + }, + { + "creator": "Simon Collings", + "date": "2024-01-05T11:25:40+00:00", + "title": "Jurgen Klopp drops Liverpool team news hint vs Arsenal as injured Dominik Szoboszlai ruled out", + "link": "https://www.standard.co.uk/sport/football/liverpool-fc-team-news-arsenal-fa-cup-klopp-szoboszlai-injury-b1130504.html", + "pubDate": "Fri, 05 Jan 2024 11:25:40 GMT", + "dc:creator": "Simon Collings", + "dc:date": "2024-01-05T11:25:40+00:00", + "content": "

The Reds will be without the midfielder, Wataru Endo and star man Mohamed Salah for the FA Cup tie

", + "contentSnippet": "The Reds will be without the midfielder, Wataru Endo and star man Mohamed Salah for the FA Cup tie", + "guid": "b1130504", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:25:40.000Z" + }, + { + "creator": "Alan Jones", + "date": "2024-01-05T11:19:33+00:00", + "title": "Tube strikes: More than 1 in 5 London office workers set to stay at home during new walkouts ", + "link": "https://www.standard.co.uk/news/london/tube-strikes-london-working-from-home-office-survey-impact-b1130498.html", + "pubDate": "Fri, 05 Jan 2024 11:19:33 GMT", + "dc:creator": "Alan Jones", + "dc:date": "2024-01-05T11:19:33+00:00", + "content": "

Survey of 2,000 workers published ahead of a series of strikes by Tube workers set to disrupt services for this weekend

", + "contentSnippet": "Survey of 2,000 workers published ahead of a series of strikes by Tube workers set to disrupt services for this weekend", + "guid": "b1130498", + "categories": ["London", "News"], + "isoDate": "2024-01-05T11:19:33.000Z" + }, + { + "creator": "Charlotte McLaughlin", + "date": "2024-01-05T11:19:32+00:00", + "title": "Sunak and Starmer congratulate Nick Ferrari on 20 years as LBC breakfast host", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/nick-ferrari-ferrari-lbc-gordon-brown-boris-johnson-b1130524.html", + "pubDate": "Fri, 05 Jan 2024 11:19:32 GMT", + "dc:creator": "Charlotte McLaughlin", + "dc:date": "2024-01-05T11:19:32+00:00", + "content": "Ferrari started on LBC in 2001 before launching his show in 2004.", + "contentSnippet": "Ferrari started on LBC in 2001 before launching his show in 2004.", + "guid": "b1130524", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-05T11:19:32.000Z" + }, + { + "creator": "Dom Smith", + "date": "2024-01-05T11:10:02+00:00", + "title": "Crystal Palace: Matheus Franca the only bright spark in drab FA Cup stalemate with Everton", + "link": "https://www.standard.co.uk/sport/football/crystal-palace-everton-fa-cup-matheus-franca-hodgson-b1130516.html", + "pubDate": "Fri, 05 Jan 2024 11:10:02 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2024-01-05T11:10:02+00:00", + "content": "

The Brazilian showed plenty of desire but could not prevent an unwanted FA Cup replay

", + "contentSnippet": "The Brazilian showed plenty of desire but could not prevent an unwanted FA Cup replay", + "guid": "b1130516", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:10:02.000Z" + }, + { + "creator": "Matthew Cooper", + "date": "2024-01-05T11:09:23+00:00", + "title": "April trial date for 12-year-old boys charged with murder after park stabbing", + "link": "https://www.standard.co.uk/news/crime/wolverhampton-crown-court-west-midlands-west-midlands-police-b1130521.html", + "pubDate": "Fri, 05 Jan 2024 11:09:23 GMT", + "dc:creator": "Matthew Cooper", + "dc:date": "2024-01-05T11:09:23+00:00", + "content": "The youths, who cannot be identified, appeared at Wolverhampton Crown Court by video-link.", + "contentSnippet": "The youths, who cannot be identified, appeared at Wolverhampton Crown Court by video-link.", + "guid": "b1130521", + "categories": ["Crime", "News"], + "isoDate": "2024-01-05T11:09:23.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-05T11:09:08+00:00", + "title": "Liverpool XI vs Arsenal: Predicted lineup, confirmed team news and injury latest for FA Cup game", + "link": "https://www.standard.co.uk/sport/football/liverpool-fc-xi-vs-arsenal-predicted-lineup-confirmed-team-news-injury-latest-fa-cup-2024-b1130396.html", + "pubDate": "Fri, 05 Jan 2024 11:09:08 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-05T11:09:08+00:00", + "content": "

Dominik Szoboszlai misses heavyweight third-round showdown

", + "contentSnippet": "Dominik Szoboszlai misses heavyweight third-round showdown", + "guid": "b1130396", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T11:09:08.000Z" + }, + { + "creator": "Sabrina Russello", + "date": "2024-01-05T11:04:22+00:00", + "title": "Will an American panto first timer enjoy this very British art form? Oh yes she will!", + "link": "https://www.standard.co.uk/culture/pantomime-american-experience-aladdin-jack-and-beanstalk-clive-rowe-b1128777.html", + "pubDate": "Fri, 05 Jan 2024 11:04:22 GMT", + "dc:creator": "Sabrina Russello", + "dc:date": "2024-01-05T11:04:22+00:00", + "content": "

It turns out there really is nothing like a dame

", + "contentSnippet": "It turns out there really is nothing like a dame", + "guid": "b1128777", + "categories": ["Culture"], + "isoDate": "2024-01-05T11:04:22.000Z" + }, + { + "creator": "Lizzie Edmonds", + "date": "2024-01-05T10:55:06+00:00", + "title": "Shane MacGowan's widow claims singer has contacted her from beyond the grave ", + "link": "https://www.standard.co.uk/showbiz/shane-macgowan-death-widow-claims-singer-contacted-her-b1130496.html", + "pubDate": "Fri, 05 Jan 2024 10:55:06 GMT", + "dc:creator": "Lizzie Edmonds", + "dc:date": "2024-01-05T10:55:06+00:00", + "content": "

Victoria Mary Clark has said The Pogues frontman has encouraged her to pick up a guitar following his passing

", + "contentSnippet": "Victoria Mary Clark has said The Pogues frontman has encouraged her to pick up a guitar following his passing", + "guid": "b1130496", + "categories": ["Showbiz"], + "isoDate": "2024-01-05T10:55:06.000Z" + }, + { + "creator": "Neil Lancefield", + "date": "2024-01-05T10:54:29+00:00", + "title": "Quicker London-Sheffield daily train service plans unveiled", + "link": "https://www.standard.co.uk/news/transport/london-sheffield-train-firstgroup-kings-cross-b1130475.html", + "pubDate": "Fri, 05 Jan 2024 10:54:29 GMT", + "dc:creator": "Neil Lancefield", + "dc:date": "2024-01-05T10:54:29+00:00", + "content": "

Transport company FirstGroup plans to run two daily return trips between King\u2019s Cross station and Sheffield

", + "contentSnippet": "Transport company FirstGroup plans to run two daily return trips between King\u2019s Cross station and Sheffield", + "guid": "b1130475", + "categories": ["Transport", "News"], + "isoDate": "2024-01-05T10:54:29.000Z" + }, + { + "creator": "Lisa McLoughlin ", + "date": "2024-01-05T10:52:05+00:00", + "title": "Ruth Langsford addresses This Morning return speculation after Holly Willoughby's exit", + "link": "https://www.standard.co.uk/showbiz/ruth-langsford-this-morning-return-speculation-holly-willoughby-exit-b1130500.html", + "pubDate": "Fri, 05 Jan 2024 10:52:05 GMT", + "dc:creator": "Lisa McLoughlin ", + "dc:date": "2024-01-05T10:52:05+00:00", + "content": "

The presenter helmed This Morning on Fridays alongside husband Eamonn Holmes until 2021

", + "contentSnippet": "The presenter helmed This Morning on Fridays alongside husband Eamonn Holmes until 2021", + "guid": "b1130500", + "categories": ["Showbiz"], + "isoDate": "2024-01-05T10:52:05.000Z" + }, + { + "creator": "Stephen Hammond and Fleur Anderson", + "date": "2024-01-05T10:49:27+00:00", + "title": "OPINION - Wimbledon's expansion plan is not a 'win-win,' it is bad for Londoners", + "link": "https://www.standard.co.uk/comment/wimbledon-expansion-golf-course-merton-wandsworth-mps-petition-b1130359.html", + "pubDate": "Fri, 05 Jan 2024 10:49:27 GMT", + "dc:creator": "Stephen Hammond and Fleur Anderson", + "dc:date": "2024-01-05T10:49:27+00:00", + "content": "

Our shared view as local MPs is that the project should not go ahead

", + "contentSnippet": "Our shared view as local MPs is that the project should not go ahead", + "guid": "b1130359", + "categories": ["Comment"], + "isoDate": "2024-01-05T10:49:27.000Z" + }, + { + "creator": "Simon English", + "date": "2024-01-05T10:45:44+00:00", + "title": "London float flops: Investors have lost nearly \u00a310bn in five years", + "link": "https://www.standard.co.uk/business/london-float-flops-investors-have-lost-nearly-ps10bn-in-five-years-b1130512.html", + "pubDate": "Fri, 05 Jan 2024 10:45:44 GMT", + "dc:creator": "Simon English", + "dc:date": "2024-01-05T10:45:44+00:00", + "content": "

The average loss per pound invested was 28p

", + "contentSnippet": "The average loss per pound invested was 28p", + "guid": "b1130512", + "categories": ["Business"], + "isoDate": "2024-01-05T10:45:44.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2024-01-05T10:44:47+00:00", + "title": "Chelsea hit by Lesley Ugochukwu injury setback as Andrey Santos eyes chance", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-ugochukwu-injury-andrey-santos-b1130508.html", + "pubDate": "Fri, 05 Jan 2024 10:44:47 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2024-01-05T10:44:47+00:00", + "content": "

Mauricio Pochettino's midfield issues could lead to returning loanee staying put this month

", + "contentSnippet": "Mauricio Pochettino's midfield issues could lead to returning loanee staying put this month", + "guid": "b1130508", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T10:44:47.000Z" + }, + { + "creator": "Anthony France and Matt Watts", + "date": "2024-01-05T10:39:57+00:00", + "title": "Met\u2019s probe into possible war crimes in Israel-Hamas conflict draws further criticism", + "link": "https://www.standard.co.uk/news/crime/metropolitan-police-investigation-war-crimes-israel-gaza-boris-johnson-b1130507.html", + "pubDate": "Fri, 05 Jan 2024 10:39:57 GMT", + "dc:creator": "Anthony France and Matt Watts", + "dc:date": "2024-01-05T10:39:57+00:00", + "content": "

Leading figures from the Jewish community criticise the Met as it defends its investigation

", + "contentSnippet": "Leading figures from the Jewish community criticise the Met as it defends its investigation", + "guid": "b1130507", + "categories": ["Crime", "News"], + "isoDate": "2024-01-05T10:39:57.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-05T10:39:52+00:00", + "title": "Best brands who offer same day delivery", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/best-brands-doing-same-day-delivery-b942432.html", + "pubDate": "Fri, 05 Jan 2024 10:39:52 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-05T10:39:52+00:00", + "content": "

Get what you need delivered to your door in mere hours

", + "contentSnippet": "Get what you need delivered to your door in mere hours", + "guid": "b942432", + "categories": ["Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2024-01-05T10:39:52.000Z" + }, + { + "creator": "Ellie Davis", + "date": "2024-01-05T10:37:52+00:00", + "title": "Best corner and L-shaped sofas for comfort and style", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/furniture/best-corner-and-lshaped-sofas-a3942606.html", + "pubDate": "Fri, 05 Jan 2024 10:37:52 GMT", + "dc:creator": "Ellie Davis", + "dc:date": "2024-01-05T10:37:52+00:00", + "content": "

The search for the perfect family sofa starts here

", + "contentSnippet": "The search for the perfect family sofa starts here", + "guid": "a3942606", + "categories": [ + "Furniture", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-05T10:37:52.000Z" + }, + { + "creator": "Anthony France and Lydia Chantler-Hicks", + "date": "2024-01-05T10:37:02+00:00", + "title": "Harry Pitman: Two teenage boys arrested on suspicion of murdering 16-year-old ", + "link": "https://www.standard.co.uk/news/crime/harry-pitman-arrests-met-police-murder-primrose-hill-new-years-eve-b1130490.html", + "pubDate": "Fri, 05 Jan 2024 10:37:02 GMT", + "dc:creator": "Anthony France and Lydia Chantler-Hicks", + "dc:date": "2024-01-05T10:37:02+00:00", + "content": "

Tottenham Hotspur fans are set to pay tribute to the teenager during Friday night\u2019s FA Cup tie against Burnley

", + "contentSnippet": "Tottenham Hotspur fans are set to pay tribute to the teenager during Friday night\u2019s FA Cup tie against Burnley", + "guid": "b1130490", + "categories": ["Crime", "News"], + "isoDate": "2024-01-05T10:37:02.000Z" + }, + { + "creator": "Kayleigh Rattle", + "date": "2024-01-05T10:36:41+00:00", + "title": "Best bean-to-cup coffee machines to kickstart your day in style", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/kitchen-appliances/best-beantocup-coffee-machines-b995017.html", + "pubDate": "Fri, 05 Jan 2024 10:36:41 GMT", + "dc:creator": "Kayleigh Rattle", + "dc:date": "2024-01-05T10:36:41+00:00", + "content": "

From minimalist one-click models to complex kit, the best bean-to-cup coffee machines on the market for a game-changing cuppa

", + "contentSnippet": "From minimalist one-click models to complex kit, the best bean-to-cup coffee machines on the market for a game-changing cuppa", + "guid": "b995017", + "categories": [ + "Kitchen Appliances", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-05T10:36:41.000Z" + }, + { + "creator": "Nuray Bulbul", + "date": "2024-01-05T10:29:37+00:00", + "title": "People invited to send their names to the moon as part of new mission", + "link": "https://www.standard.co.uk/news/science/nasa-viper-send-names-space-moon-lunar-rover-b1130486.html", + "pubDate": "Fri, 05 Jan 2024 10:29:37 GMT", + "dc:creator": "Nuray Bulbul", + "dc:date": "2024-01-05T10:29:37+00:00", + "content": "

The campaign allows tens of millions of individuals to send their names into space

", + "contentSnippet": "The campaign allows tens of millions of individuals to send their names into space", + "guid": "b1130486", + "categories": ["Science", "News"], + "isoDate": "2024-01-05T10:29:37.000Z" + }, + { + "creator": "Rebecca Black", + "date": "2024-01-05T10:29:16+00:00", + "title": "Alliance Party calls for UK Government to step in over Stormont paralysis", + "link": "https://www.standard.co.uk/news/uk/dup-stormont-sinn-fein-chris-heatonharris-northern-ireland-b1130509.html", + "pubDate": "Fri, 05 Jan 2024 10:29:16 GMT", + "dc:creator": "Rebecca Black", + "dc:date": "2024-01-05T10:29:16+00:00", + "content": "DUP leader Sir Jeffrey Donaldson indicated his party\u2019s talks with ministers will restart \u2018within days\u2019.", + "contentSnippet": "DUP leader Sir Jeffrey Donaldson indicated his party\u2019s talks with ministers will restart \u2018within days\u2019.", + "guid": "b1130509", + "categories": ["UK", "News"], + "isoDate": "2024-01-05T10:29:16.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2024-01-05T10:26:12+00:00", + "title": "Jadon Sancho: Manchester United and Dortmund aim to finalise loan deal this weekend", + "link": "https://www.standard.co.uk/sport/football/jadon-sancho-man-utd-dortmund-loan-transfer-talks-latest-b1130497.html", + "pubDate": "Fri, 05 Jan 2024 10:26:12 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2024-01-05T10:26:12+00:00", + "content": "

The winger is heading back to the Bundesliga in a deal which will earn Man United around \u00a33.5million

", + "contentSnippet": "The winger is heading back to the Bundesliga in a deal which will earn Man United around \u00a33.5million", + "guid": "b1130497", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-05T10:26:12.000Z" + }, + { + "creator": "Jordan Reynolds", + "date": "2024-01-05T14:01:02+00:00", + "title": "Met Police officer appears in court and denies sexual offence", + "link": "https://www.standard.co.uk/news/crime/elliot-butler-met-police-rape-charge-court-romford-essex-b1130570.html", + "pubDate": "Fri, 05 Jan 2024 14:01:02 GMT", + "dc:creator": "Jordan Reynolds", + "dc:date": "2024-01-05T14:01:02+00:00", + "content": "

Sergeant Elliot Butler was conditionally bailed to next appear at Southwark Crown Court on March 4.

", + "contentSnippet": "Sergeant Elliot Butler was conditionally bailed to next appear at Southwark Crown Court on March 4.", + "guid": "b1130570", + "categories": ["Crime", "News"], + "isoDate": "2024-01-05T14:01:02.000Z" + }, + { + "creator": "Sam Hall", + "date": "2024-01-05T13:55:43+00:00", + "title": "Environment Agency: More than 1,000 properties flooded across England", + "link": "https://www.standard.co.uk/news/environment/england-environment-agency-oli-claydon-great-western-railway-southampton-b1130540.html", + "pubDate": "Fri, 05 Jan 2024 13:55:43 GMT", + "dc:creator": "Sam Hall", + "dc:date": "2024-01-05T13:55:43+00:00", + "content": "Hundreds of flood warnings and alerts remained in place on Friday morning.", + "contentSnippet": "Hundreds of flood warnings and alerts remained in place on Friday morning.", + "guid": "b1130540", + "categories": ["Environment", "News"], + "isoDate": "2024-01-05T13:55:43.000Z" + }, + { + "creator": "Saskia Kemsley and Tania Leslau", + "date": "2024-01-05T14:06:47+00:00", + "title": "Best affordable clothing brands for women that won\u2019t leave you with buyer\u2019s remorse ", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/womens/best-affordable-clothing-brands-b1087282.html", + "pubDate": "Fri, 05 Jan 2024 14:06:47 GMT", + "dc:creator": "Saskia Kemsley and Tania Leslau", + "dc:date": "2024-01-05T14:06:47+00:00", + "content": "

Shop \u2018till you drop

", + "contentSnippet": "Shop \u2018till you drop", + "guid": "b1087282", + "categories": ["Women's", "Fashion", "ES Best Home", "Shopping"], + "isoDate": "2024-01-05T14:06:47.000Z" + }, + { + "creator": "Jordan King", + "date": "2024-01-05T14:03:51+00:00", + "title": "Captain of sunken party boat in Thames 'too upset to speak' after left with 'no income'", + "link": "https://www.standard.co.uk/news/london/thames-party-boat-sink-sunk-london-weather-temple-flooding-b1130572.html", + "pubDate": "Fri, 05 Jan 2024 14:03:51 GMT", + "dc:creator": "Jordan King", + "dc:date": "2024-01-05T14:03:51+00:00", + "content": "

Jorge Gallardo says he will have to find another job to support his daughter

", + "contentSnippet": "Jorge Gallardo says he will have to find another job to support his daughter", + "guid": "b1130572", + "categories": ["London", "News"], + "isoDate": "2024-01-05T14:03:51.000Z" + }, + { + "creator": "Marc Mayo and Matt Verri", + "date": "2024-01-11T21:17:45+00:00", + "title": "Transfer news LIVE! Arsenal want Zirkzee; Chelsea \u00a352m bid rejected; Man Utd fail in swap deal; Spurs latest", + "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-chelsea-fc-tottenham-man-utd-zirkzee-silva-hjulmand-b1131601.html", + "pubDate": "Thu, 11 Jan 2024 21:17:45 GMT", + "dc:creator": "Marc Mayo and Matt Verri", + "dc:date": "2024-01-11T21:17:45+00:00", + "content": "

Latest updates from the transfer window plus rumours and gossip

", + "contentSnippet": "Latest updates from the transfer window plus rumours and gossip", + "guid": "b1131601", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T21:17:45.000Z" + }, + { + "creator": "Gwyn Wright", + "date": "2024-01-11T21:15:46+00:00", + "title": "Red Sea crisis: Which UK ships have been deployed to the area?", + "link": "https://www.standard.co.uk/news/politics/red-sea-grant-shapps-rishi-sunak-ministry-of-defence-iranian-b1131850.html", + "pubDate": "Thu, 11 Jan 2024 21:15:46 GMT", + "dc:creator": "Gwyn Wright", + "dc:date": "2024-01-11T21:15:46+00:00", + "content": "The Government is considering striking land targets in Yemen in a bid to stop attacks by Iranian-backed Houthi rebels on ships.", + "contentSnippet": "The Government is considering striking land targets in Yemen in a bid to stop attacks by Iranian-backed Houthi rebels on ships.", + "guid": "b1131850", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T21:15:46.000Z" + }, + { + "creator": "Matt Verri", + "date": "2024-01-11T20:56:31+00:00", + "title": "Senegal vs Gambia: AFCON prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/senegal-vs-gambia-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-afcon-2024-preview-b1131837.html", + "pubDate": "Thu, 11 Jan 2024 20:56:31 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2024-01-11T20:56:31+00:00", + "content": "

Sadio Mane and his team-mates are expected to make a strong defence of their AFCON title

", + "contentSnippet": "Sadio Mane and his team-mates are expected to make a strong defence of their AFCON title", + "guid": "b1131837", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T20:56:31.000Z" + }, + { + "creator": "Matt Verri", + "date": "2024-01-11T20:56:18+00:00", + "title": "Real Madrid vs Barcelona: Spanish Super Cup final prediction, kick-off time, TV, live stream, team news, h2h", + "link": "https://www.standard.co.uk/sport/football/real-madrid-vs-barcelona-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-spanish-super-cup-final-2024-preview-b1131845.html", + "pubDate": "Thu, 11 Jan 2024 20:56:18 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2024-01-11T20:56:18+00:00", + "content": "

The two Spanish giants meet in a repeat of last season's Spanish Super Cup final

", + "contentSnippet": "The two Spanish giants meet in a repeat of last season's Spanish Super Cup final", + "guid": "b1131845", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T20:56:18.000Z" + }, + { + "creator": "John Dunne", + "date": "2024-01-11T20:52:14+00:00", + "title": "Skin experts warn children as young as 10 demanding anti-ageing products from parents", + "link": "https://www.standard.co.uk/news/health/skin-anti-ageing-skincare-products-children-uk-dermatologist-b1131818.html", + "pubDate": "Thu, 11 Jan 2024 20:52:14 GMT", + "dc:creator": "John Dunne", + "dc:date": "2024-01-11T20:52:14+00:00", + "content": "

Children are demanding skin products from parents with pressure coming from social media, warn dermatologists

", + "contentSnippet": "Children are demanding skin products from parents with pressure coming from social media, warn dermatologists", + "guid": "b1131818", + "categories": ["Health", "News"], + "isoDate": "2024-01-11T20:52:14.000Z" + }, + { + "creator": "Charlotte McLaughlin", + "date": "2024-01-11T20:52:05+00:00", + "title": "Sir Elton John putting piano, jumpsuit and platform boots up for auction", + "link": "https://www.standard.co.uk/news/uk/david-furnish-damien-hirst-atlanta-yamaha-julian-schnabel-b1131804.html", + "pubDate": "Thu, 11 Jan 2024 20:52:05 GMT", + "dc:creator": "Charlotte McLaughlin", + "dc:date": "2024-01-11T20:52:05+00:00", + "content": "The musician, 76, is curating the sale of objects from his former Atlanta home with his husband David Furnish.", + "contentSnippet": "The musician, 76, is curating the sale of objects from his former Atlanta home with his husband David Furnish.", + "guid": "b1131804", + "categories": ["UK", "News"], + "isoDate": "2024-01-11T20:52:05.000Z" + }, + { + "creator": "Matt Verri", + "date": "2024-01-11T20:51:47+00:00", + "title": "Eric Dier wishes Tottenham 'great success' in emotional farewell after Bayern Munich move confirmed", + "link": "https://www.standard.co.uk/sport/football/eric-dier-tottenham-fans-bayern-munich-b1131848.html", + "pubDate": "Thu, 11 Jan 2024 20:51:47 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2024-01-11T20:51:47+00:00", + "content": "

Dier arrived at Spurs in the summer of 2014 and made 364 appearances for the club

", + "contentSnippet": "Dier arrived at Spurs in the summer of 2014 and made 364 appearances for the club", + "guid": "b1131848", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T20:51:47.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2024-01-11T20:49:37+00:00", + "title": "PM holding full Cabinet call amid speculation of strike over Red Sea attacks", + "link": "https://www.standard.co.uk/news/politics/grant-shapps-red-sea-david-cameron-keir-starmer-john-healey-b1131841.html", + "pubDate": "Thu, 11 Jan 2024 20:49:37 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2024-01-11T20:49:37+00:00", + "content": "It comes after UK and US naval forces destroyed \u2018multiple attack drones\u2019 deployed by Houthi rebels.", + "contentSnippet": "It comes after UK and US naval forces destroyed \u2018multiple attack drones\u2019 deployed by Houthi rebels.", + "guid": "b1131841", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T20:49:37.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2024-01-11T20:44:48+00:00", + "title": "Armie Hammer and girlfriend Marina Gris split up after secret engagement", + "link": "https://www.standard.co.uk/showbiz/armie-hammer-girlfriend-marina-gris-split-secret-engagement-b1131836.html", + "pubDate": "Thu, 11 Jan 2024 20:44:48 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2024-01-11T20:44:48+00:00", + "content": "

Marina Gris said she was 'grateful' for the relationship, 'but now it's a closed chapter'

", + "contentSnippet": "Marina Gris said she was 'grateful' for the relationship, 'but now it's a closed chapter'", + "guid": "b1131836", + "categories": ["Showbiz"], + "isoDate": "2024-01-11T20:44:48.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2024-01-11T20:37:06+00:00", + "title": "Air strikes by US and UK on Houthi rebels appear imminent amid emergency Cabinet meeting", + "link": "https://www.standard.co.uk/news/politics/red-sea-missile-drone-britain-us-iran-houthi-rebels-yemen-commercial-ships-b1131612.html", + "pubDate": "Thu, 11 Jan 2024 20:37:06 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2024-01-11T20:37:06+00:00", + "content": "

Rishi Sunak called a Cabinet meeting on Thursday evening as the US confirmed another attack blamed on Houthi rebels

", + "contentSnippet": "Rishi Sunak called a Cabinet meeting on Thursday evening as the US confirmed another attack blamed on Houthi rebels", + "guid": "b1131612", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T20:37:06.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2024-01-11T20:18:20+00:00", + "title": "Kristen Stewart says Twilight is a gay movie that is \u2018all about oppression\u2019", + "link": "https://www.standard.co.uk/culture/film/kristen-stewart-robert-pattinson-american-variety-cannes-b1131847.html", + "pubDate": "Thu, 11 Jan 2024 20:18:20 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2024-01-11T20:18:20+00:00", + "content": "The American actress played Bella Swan in the Twilight film series.", + "contentSnippet": "The American actress played Bella Swan in the Twilight film series.", + "guid": "b1131847", + "categories": ["Film", "Culture"], + "isoDate": "2024-01-11T20:18:20.000Z" + }, + { + "creator": "Nilima Marshall", + "date": "2024-01-11T20:15:00+00:00", + "title": "Discovery of gargantuan ring structure \u2018challenges understanding of universe\u2019", + "link": "https://www.standard.co.uk/news/science/scientists-university-of-warwick-b1131846.html", + "pubDate": "Thu, 11 Jan 2024 20:15:00 GMT", + "dc:creator": "Nilima Marshall", + "dc:date": "2024-01-11T20:15:00+00:00", + "content": "The Big Ring is about 1.3 billion light-years in diameter.", + "contentSnippet": "The Big Ring is about 1.3 billion light-years in diameter.", + "guid": "b1131846", + "categories": ["Science", "News"], + "isoDate": "2024-01-11T20:15:00.000Z" + }, + { + "creator": "Nina Lloyd", + "date": "2024-01-11T20:01:49+00:00", + "title": "Sunak grants Labour permission to start access talks with civil service", + "link": "https://www.standard.co.uk/news/politics/labour-prime-minister-keir-starmer-cabinet-office-simon-case-b1131843.html", + "pubDate": "Thu, 11 Jan 2024 20:01:49 GMT", + "dc:creator": "Nina Lloyd", + "dc:date": "2024-01-11T20:01:49+00:00", + "content": "The Cabinet Office said the Prime Minister had authorised access talks.", + "contentSnippet": "The Cabinet Office said the Prime Minister had authorised access talks.", + "guid": "b1131843", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T20:01:49.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2024-01-11T20:00:00+00:00", + "title": "Toby Aromolaran: Love Island is my dating app apparently", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/love-island-ovie-soko-itv-georgia-steel-steel-b1131844.html", + "pubDate": "Thu, 11 Jan 2024 20:00:00 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2024-01-11T20:00:00+00:00", + "content": "The semi-professional footballer is now trying his hand at Love Island: All-Stars, which will see past contestants return for another chance at love.", + "contentSnippet": "The semi-professional footballer is now trying his hand at Love Island: All-Stars, which will see past contestants return for another chance at love.", + "guid": "b1131844", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-11T20:00:00.000Z" + }, + { + "creator": "City Staff", + "date": "2024-01-11T19:57:01+00:00", + "title": "FTSE 100 Live: UK GDP in focus after index closes down 1% as US inflation setback dampens rate hopes", + "link": "https://www.standard.co.uk/business/ftse-100-live-tesco-m-s-whitbread-results-sec-approves-bitcoinspot-etfs-savills-reach-asos-b1131590.html", + "pubDate": "Thu, 11 Jan 2024 19:57:01 GMT", + "dc:creator": "City Staff", + "dc:date": "2024-01-11T19:57:01+00:00", + "content": "

", + "contentSnippet": "", + "guid": "b1131590", + "categories": ["Business"], + "isoDate": "2024-01-11T19:57:01.000Z" + }, + { + "creator": "Matt Verri", + "date": "2024-01-11T19:50:32+00:00", + "title": "Tottenham confirm Eric Dier departure as defender completes Bayern Munich move to reunite with Harry Kane ", + "link": "https://www.standard.co.uk/sport/football/tottenham-eric-dier-bayern-munich-transfer-news-harry-kane-b1131801.html", + "pubDate": "Thu, 11 Jan 2024 19:50:32 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2024-01-11T19:50:32+00:00", + "content": "

The defender would have been out of contract at Tottenham at the end of the season

", + "contentSnippet": "The defender would have been out of contract at Tottenham at the end of the season", + "guid": "b1131801", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T19:50:32.000Z" + }, + { + "creator": "Tristan Kirk", + "date": "2024-01-11T19:34:10+00:00", + "title": "Pedestrian hospitalised after masonry falls from historic Old Bailey court entrance ", + "link": "https://www.standard.co.uk/news/london/pedestrian-injured-masonry-falls-entrance-old-bailey-criminal-court-city-corporation-maintenance-b1131816.html", + "pubDate": "Thu, 11 Jan 2024 19:34:10 GMT", + "dc:creator": "Tristan Kirk", + "dc:date": "2024-01-11T19:34:10+00:00", + "content": "

Incident comes amid 'not insignificant\u201d maintenance backlog for historic buildings in the City

", + "contentSnippet": "Incident comes amid 'not insignificant\u201d maintenance backlog for historic buildings in the City", + "guid": "b1131816", + "categories": ["London", "News"], + "isoDate": "2024-01-11T19:34:10.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-11T19:30:10+00:00", + "title": "Radu Dragusin: Why Tottenham signed 'younger Virgil van Dijk' in perfect transfer fit", + "link": "https://www.standard.co.uk/sport/football/radu-dragusin-tottenham-transfer-van-dijk-b1131815.html", + "pubDate": "Thu, 11 Jan 2024 19:30:10 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-11T19:30:10+00:00", + "content": "

Spurs' latest recruit models his game on the Liverpool captain and arrives with true star potential

", + "contentSnippet": "Spurs' latest recruit models his game on the Liverpool captain and arrives with true star potential", + "guid": "b1131815", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T19:30:10.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2024-01-11T19:15:40+00:00", + "title": "Andrew Scott says we should \u2018get rid of the expression openly gay\u2019", + "link": "https://www.standard.co.uk/culture/film/andrew-scott-robert-downey-jr-mark-ruffalo-royal-albert-hall-bbc-b1131842.html", + "pubDate": "Thu, 11 Jan 2024 19:15:40 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2024-01-11T19:15:40+00:00", + "content": "The Irish actor also spoke on the importance of representation in the film industry.", + "contentSnippet": "The Irish actor also spoke on the importance of representation in the film industry.", + "guid": "b1131842", + "categories": ["Film", "Culture"], + "isoDate": "2024-01-11T19:15:40.000Z" + }, + { + "creator": "Gwyn Wright", + "date": "2024-01-11T19:08:59+00:00", + "title": "Murder charge following discovery of body in east London car park", + "link": "https://www.standard.co.uk/news/uk/london-southampton-stratford-centre-newham-hampshire-police-b1131840.html", + "pubDate": "Thu, 11 Jan 2024 19:08:59 GMT", + "dc:creator": "Gwyn Wright", + "dc:date": "2024-01-11T19:08:59+00:00", + "content": "Vasile Gorghescu, from Southampton, was arrested on Wednesday and charged with murder on Thursday.", + "contentSnippet": "Vasile Gorghescu, from Southampton, was arrested on Wednesday and charged with murder on Thursday.", + "guid": "b1131840", + "categories": ["UK", "News"], + "isoDate": "2024-01-11T19:08:59.000Z" + }, + { + "creator": "John Dunne", + "date": "2024-01-11T19:05:35+00:00", + "title": "Man charged with murder after body discovered in car at Stratford shopping centre", + "link": "https://www.standard.co.uk/news/crime/stratford-shopping-centre-murder-charge-car-park-man-killed-b1131838.html", + "pubDate": "Thu, 11 Jan 2024 19:05:35 GMT", + "dc:creator": "John Dunne", + "dc:date": "2024-01-11T19:05:35+00:00", + "content": "

Vasile Gorghescu, 41, has been charged with killing a man whose body was found in a vehicle

", + "contentSnippet": "Vasile Gorghescu, 41, has been charged with killing a man whose body was found in a vehicle", + "guid": "b1131838", + "categories": ["Crime", "News"], + "isoDate": "2024-01-11T19:05:35.000Z" + }, + { + "creator": "Melanie McDonagh", + "date": "2024-01-11T19:03:21+00:00", + "title": "OPINION - Post Office scandal: cash for convictions is by far the worst revelation yet", + "link": "https://www.standard.co.uk/comment/post-office-scandal-mr-bates-convictions-bonus-b1131729.html", + "pubDate": "Thu, 11 Jan 2024 19:03:21 GMT", + "dc:creator": "Melanie McDonagh", + "dc:date": "2024-01-11T19:03:21+00:00", + "content": "

Query: which element of the great Post Office Horizon scandal is the most outrageous? Your call. Was it the way that the Post Office bosses unquestioningly put their faith in the infallibility of technology over the integrity of some 900 people of previously good character? Was it the way ministers \u2014 Ed Davey, say \u2014 put his trust in the Post Office\u2019s sovereign right to run its own affairs, over the complaints of people like Alan Bates? Was it the way the Post Office was \u2014 who knew? \u2014 effectively authorised to run its own criminal investigation? Was it the implacability of the system in the face of the protests of hundreds of bewildered sub-postmasters and mistresses?

", + "contentSnippet": "Query: which element of the great Post Office Horizon scandal is the most outrageous? Your call. Was it the way that the Post Office bosses unquestioningly put their faith in the infallibility of technology over the integrity of some 900 people of previously good character? Was it the way ministers \u2014 Ed Davey, say \u2014 put his trust in the Post Office\u2019s sovereign right to run its own affairs, over the complaints of people like Alan Bates? Was it the way the Post Office was \u2014 who knew? \u2014 effectively authorised to run its own criminal investigation? Was it the implacability of the system in the face of the protests of hundreds of bewildered sub-postmasters and mistresses?", + "guid": "b1131729", + "categories": ["Comment"], + "isoDate": "2024-01-11T19:03:21.000Z" + }, + { + "creator": "George Flood", + "date": "2024-01-11T19:01:09+00:00", + "title": "Tottenham confirm Radu Dragusin squad number after transfer completed", + "link": "https://www.standard.co.uk/sport/football/tottenham-radu-dragusin-squad-number-b1131826.html", + "pubDate": "Thu, 11 Jan 2024 19:01:09 GMT", + "dc:creator": "George Flood", + "dc:date": "2024-01-11T19:01:09+00:00", + "content": "

Spurs hand second January signing a jersey vacated in the summer window

", + "contentSnippet": "Spurs hand second January signing a jersey vacated in the summer window", + "guid": "b1131826", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T19:01:09.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2024-01-11T19:00:48+00:00", + "title": "Tottenham sign Radu Dragusin for \u00a326m in huge transfer boost to Ange Postecoglou", + "link": "https://www.standard.co.uk/sport/football/tottenham-sign-radu-dragusin-b1131467.html", + "pubDate": "Thu, 11 Jan 2024 19:00:48 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2024-01-11T19:00:48+00:00", + "content": "

Spurs held off competition from Bayern to get their man

", + "contentSnippet": "Spurs held off competition from Bayern to get their man", + "guid": "b1131467", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T19:00:48.000Z" + }, + { + "creator": "By Grinne N. Aodha", + "date": "2024-01-11T18:57:29+00:00", + "title": "US TV host Conan O\u2019Brien traces Irish roots to Co Limerick village", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/ireland-massachusetts-david-letterman-nbc-b1131839.html", + "pubDate": "Thu, 11 Jan 2024 18:57:29 GMT", + "dc:creator": "By Grinne N. Aodha", + "dc:date": "2024-01-11T18:57:29+00:00", + "content": "The well-known TV personality and comedian has been posting to social media about his travels in Ireland.", + "contentSnippet": "The well-known TV personality and comedian has been posting to social media about his travels in Ireland.", + "guid": "b1131839", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-11T18:57:29.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2024-01-11T18:49:34+00:00", + "title": "Kate Garraway reveals caring advice daughter gave after husband Derek Draper's death", + "link": "https://www.standard.co.uk/showbiz/kate-garraway-update-husband-derek-draker-death-good-morning-britain-b1131832.html", + "pubDate": "Thu, 11 Jan 2024 18:49:34 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2024-01-11T18:49:34+00:00", + "content": "

The Good Morning Britain host also thanked fans for their 'extraordinary' support

", + "contentSnippet": "The Good Morning Britain host also thanked fans for their 'extraordinary' support", + "guid": "b1131832", + "categories": ["Showbiz"], + "isoDate": "2024-01-11T18:49:34.000Z" + }, + { + "creator": "Ellie Ng", + "date": "2024-01-11T18:44:06+00:00", + "title": "Subpostmistresses accuse Post Office investigator of ill treatment \u2013 inquiry", + "link": "https://www.standard.co.uk/news/politics/post-office-newcastle-banbury-liverpool-london-b1131834.html", + "pubDate": "Thu, 11 Jan 2024 18:44:06 GMT", + "dc:creator": "Ellie Ng", + "dc:date": "2024-01-11T18:44:06+00:00", + "content": "The investigator in question, Stephen Bradshaw, denied acting in any way but professionally throughout the probes he conducted.", + "contentSnippet": "The investigator in question, Stephen Bradshaw, denied acting in any way but professionally throughout the probes he conducted.", + "guid": "b1131834", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T18:44:06.000Z" + }, + { + "creator": "Noah Vickers", + "date": "2024-01-11T18:40:07+00:00", + "title": "Almost 100 football-related hate crimes in London recorded in a year", + "link": "https://www.standard.co.uk/news/crime/football-hate-crimes-london-discrimination-unmesh-desai-kick-it-out-racism-b1131822.html", + "pubDate": "Thu, 11 Jan 2024 18:40:07 GMT", + "dc:creator": "Noah Vickers", + "dc:date": "2024-01-11T18:40:07+00:00", + "content": "

Hate crimes threaten to 'turn the beautiful game ugly', a London politician has warned

", + "contentSnippet": "Hate crimes threaten to 'turn the beautiful game ugly', a London politician has warned", + "guid": "b1131822", + "categories": ["Crime", "News"], + "isoDate": "2024-01-11T18:40:07.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-11T18:34:01+00:00", + "title": "Tottenham hope Genoa loan ends \u00a320m Djed Spence nightmare", + "link": "https://www.standard.co.uk/sport/football/djed-spence-tottenham-genoa-loan-transfer-news-b1131428.html", + "pubDate": "Thu, 11 Jan 2024 18:34:01 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-11T18:34:01+00:00", + "content": "

Questions over young defender's professionalism abound as he departs for Italy in deal to sign Radu Dragusin

", + "contentSnippet": "Questions over young defender's professionalism abound as he departs for Italy in deal to sign Radu Dragusin", + "guid": "b1131428", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T18:34:01.000Z" + }, + { + "creator": "Tom Davidson and Matt Watts", + "date": "2024-01-11T18:24:12+00:00", + "title": "Sven-G\u00f6ran Eriksson: Former England manager 'told he was dying from cancer after suffering strokes' ", + "link": "https://www.standard.co.uk/news/world/sven-goran-eriksson-england-manager-cancer-sweden-b1131604.html", + "pubDate": "Thu, 11 Jan 2024 18:24:12 GMT", + "dc:creator": "Tom Davidson and Matt Watts", + "dc:date": "2024-01-11T18:24:12+00:00", + "content": "

Eriksson managed the England national team between 2001 and 2006 after enjoying significant success in Europe

", + "contentSnippet": "Eriksson managed the England national team between 2001 and 2006 after enjoying significant success in Europe", + "guid": "b1131604", + "categories": ["World", "News"], + "isoDate": "2024-01-11T18:24:12.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2024-01-11T18:18:25+00:00", + "title": "Mark Ruffalo reveals he told Poor Things director he was \u2018not right\u2019 for film", + "link": "https://www.standard.co.uk/culture/film/mark-ruffalo-andrew-scott-emma-stone-willem-dafoe-american-b1131835.html", + "pubDate": "Thu, 11 Jan 2024 18:18:25 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2024-01-11T18:18:25+00:00", + "content": "The American actor plays Duncan Wedderburn in the dark comic fantasy, which also stars Emma Stone and Willem Dafoe.", + "contentSnippet": "The American actor plays Duncan Wedderburn in the dark comic fantasy, which also stars Emma Stone and Willem Dafoe.", + "guid": "b1131835", + "categories": ["Film", "Culture"], + "isoDate": "2024-01-11T18:18:25.000Z" + }, + { + "creator": "Katie Dickinson", + "date": "2024-01-11T18:17:20+00:00", + "title": "Prince of Wales surprises Rob Burrow and Kevin Sinfield with their CBEs", + "link": "https://www.standard.co.uk/news/uk/prince-william-wales-kevin-sinfield-rob-burrow-cbe-rugby-league-motor-neurone-disease-b1131789.html", + "pubDate": "Thu, 11 Jan 2024 18:17:20 GMT", + "dc:creator": "Katie Dickinson", + "dc:date": "2024-01-11T18:17:20+00:00", + "content": "William paid tribute to the pair\u2019s \u2018phenomenal\u2019 efforts in raising funds and awareness for motor neurone disease", + "contentSnippet": "William paid tribute to the pair\u2019s \u2018phenomenal\u2019 efforts in raising funds and awareness for motor neurone disease", + "guid": "b1131789", + "categories": ["UK", "News"], + "isoDate": "2024-01-11T18:17:20.000Z" + }, + { + "creator": "Jacob Phillips", + "date": "2024-01-11T18:15:03+00:00", + "title": "More than 370,000 appointments in London cancelled due to NHS strikes", + "link": "https://www.standard.co.uk/news/health/nhs-england-london-strikes-appointments-cancelled-junior-doctors-strike-b1131823.html", + "pubDate": "Thu, 11 Jan 2024 18:15:03 GMT", + "dc:creator": "Jacob Phillips", + "dc:date": "2024-01-11T18:15:03+00:00", + "content": "

Nearly 37,000 appointments were rescheduled in the capital this week following the junior doctors' strike

", + "contentSnippet": "Nearly 37,000 appointments were rescheduled in the capital this week following the junior doctors' strike", + "guid": "b1131823", + "categories": ["Health", "News"], + "isoDate": "2024-01-11T18:15:03.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-11T18:03:59+00:00", + "title": "Best thermos flasks of 2024 for keeping your food and drinks hot", + "link": "https://www.standard.co.uk/shopping/esbest/food-drink/tea-coffee/gadgets/best-thermos-insulated-travel-flasks-a4515341.html", + "pubDate": "Thu, 11 Jan 2024 18:03:59 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-11T18:03:59+00:00", + "content": "

Whether you\u2019re camping or want to keep your commute coffee warm, don't head out without this essential

", + "contentSnippet": "Whether you\u2019re camping or want to keep your commute coffee warm, don't head out without this essential", + "guid": "a4515341", + "categories": [ + "Gadgets", + "Tea and coffee", + "Food & Drink", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-11T18:03:59.000Z" + }, + { + "creator": "Anthony France", + "date": "2024-01-11T18:03:30+00:00", + "title": "Shoplifting epidemic revealed to be costing London \u00a39.2million a month ", + "link": "https://www.standard.co.uk/news/crime/shoplifting-london-shops-crime-cost-met-police-mark-rowley-b1131683.html", + "pubDate": "Thu, 11 Jan 2024 18:03:30 GMT", + "dc:creator": "Anthony France", + "dc:date": "2024-01-11T18:03:30+00:00", + "content": "

New figures show a 48% spike in offences and one Co-op was looted three times in one day

", + "contentSnippet": "New figures show a 48% spike in offences and one Co-op was looted three times in one day", + "guid": "b1131683", + "categories": ["Crime", "News"], + "isoDate": "2024-01-11T18:03:30.000Z" + }, + { + "creator": "Josh Payne", + "date": "2024-01-11T18:02:59+00:00", + "title": "Investigator challenged lawyers as subpostmistress brought Horizon into question", + "link": "https://www.standard.co.uk/news/politics/horizon-post-office-blake-b1131833.html", + "pubDate": "Thu, 11 Jan 2024 18:02:59 GMT", + "dc:creator": "Josh Payne", + "dc:date": "2024-01-11T18:02:59+00:00", + "content": "Stephen Bradshaw denied he was \u2018proud\u2019 of ensuring no credence was given to the campaign for justice by former subpostmasters.", + "contentSnippet": "Stephen Bradshaw denied he was \u2018proud\u2019 of ensuring no credence was given to the campaign for justice by former subpostmasters.", + "guid": "b1131833", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T18:02:59.000Z" + }, + { + "creator": "Sarah Ward", + "date": "2024-01-11T18:02:08+00:00", + "title": "Emotional prison officer recalls breaking rules for inmate who killed herself", + "link": "https://www.standard.co.uk/news/crime/falkirk-linda-glasgow-university-intel-scottish-prison-service-b1131830.html", + "pubDate": "Thu, 11 Jan 2024 18:02:08 GMT", + "dc:creator": "Sarah Ward", + "dc:date": "2024-01-11T18:02:08+00:00", + "content": "Katie Allan took her own life in a young offenders institution aged 21.", + "contentSnippet": "Katie Allan took her own life in a young offenders institution aged 21.", + "guid": "b1131830", + "categories": ["Crime", "News"], + "isoDate": "2024-01-11T18:02:08.000Z" + }, + { + "creator": "Martha Gill", + "date": "2024-01-11T18:00:42+00:00", + "title": "OPINION - London's vaccination rates are terrible and measles is on the rise \u2014 it's time to act", + "link": "https://www.standard.co.uk/comment/measles-london-mmr-andrew-wakefield-autism-vaccination-rates-b1131749.html", + "pubDate": "Thu, 11 Jan 2024 18:00:42 GMT", + "dc:creator": "Martha Gill", + "dc:date": "2024-01-11T18:00:42+00:00", + "content": "

Seven years ago the World Health Organisation declared that measles was \u201celiminated\u201d from Britain. This was an approximation, of course \u2014 it meant jumpy public health authorities were able to catch the disease in time when it snuck in at airports or harbours. This seems like a tricky thing to do \u2014 measles is highly contagious \u2014 but it is just about possible when 95 per cent of the population is vaccinated.

", + "contentSnippet": "Seven years ago the World Health Organisation declared that measles was \u201celiminated\u201d from Britain. This was an approximation, of course \u2014 it meant jumpy public health authorities were able to catch the disease in time when it snuck in at airports or harbours. This seems like a tricky thing to do \u2014 measles is highly contagious \u2014 but it is just about possible when 95 per cent of the population is vaccinated.", + "guid": "b1131749", + "categories": ["Comment"], + "isoDate": "2024-01-11T18:00:42.000Z" + }, + { + "creator": "Gwyn Wright", + "date": "2024-01-11T18:00:24+00:00", + "title": "British lawyer will represent Israel at UN court against genocide claims", + "link": "https://www.standard.co.uk/news/politics/israel-international-court-of-justice-british-the-hague-uk-supreme-court-b1131831.html", + "pubDate": "Thu, 11 Jan 2024 18:00:24 GMT", + "dc:creator": "Gwyn Wright", + "dc:date": "2024-01-11T18:00:24+00:00", + "content": "Professor Malcolm Shaw KC will represent the country in The Hague.", + "contentSnippet": "Professor Malcolm Shaw KC will represent the country in The Hague.", + "guid": "b1131831", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T18:00:24.000Z" + }, + { + "creator": "India Block and India Block", + "date": "2024-01-11T18:00:00+00:00", + "title": "Fantasy fin de si\u00e8cle French B&B in the Belle \u00c9poque style on sale for \u00a31.4 million", + "link": "https://www.standard.co.uk/homesandproperty/luxury/france-villa-1900s-for-sale-loire-valley-b1131039.html", + "pubDate": "Thu, 11 Jan 2024 18:00:00 GMT", + "dc:creator": "India Block and India Block", + "dc:date": "2024-01-11T18:00:00+00:00", + "content": "

This recently renovated villa from the 1900s features a unique mash-up of architectural styles and themed bedrooms

", + "contentSnippet": "This recently renovated villa from the 1900s features a unique mash-up of architectural styles and themed bedrooms", + "guid": "b1131039", + "categories": ["Luxury", "Homes & Property"], + "isoDate": "2024-01-11T18:00:00.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2024-01-11T17:59:34+00:00", + "title": "Anger surfaces as US actors' union deal allows for AI voice replicas in games", + "link": "https://www.standard.co.uk/culture/gaming/us-actors-union-deal-ai-voice-replicas-games-b1131795.html", + "pubDate": "Thu, 11 Jan 2024 17:59:34 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2024-01-11T17:59:34+00:00", + "content": "

Video game voice actors are incensed at the move, which they claim puts their jobs at risk

", + "contentSnippet": "Video game voice actors are incensed at the move, which they claim puts their jobs at risk", + "guid": "b1131795", + "categories": ["Gaming", "Culture"], + "isoDate": "2024-01-11T17:59:34.000Z" + }, + { + "creator": "Tristan Kirk", + "date": "2024-01-11T17:53:23+00:00", + "title": "Post Office investigator denies acting like 'Mafia gangster' with subpostmaster", + "link": "https://www.standard.co.uk/news/uk/post-office-inquiry-subpostmasters-conviction-horizon-it-fujitsu-b1131665.html", + "pubDate": "Thu, 11 Jan 2024 17:53:23 GMT", + "dc:creator": "Tristan Kirk", + "dc:date": "2024-01-11T17:53:23+00:00", + "content": "

Stephen Bradshaw was involved in the pursuit of nine Post Office branch managers, including Lisa Brennan who was wrongly accused of stealing \u00a33,000 in 2003

", + "contentSnippet": "Stephen Bradshaw was involved in the pursuit of nine Post Office branch managers, including Lisa Brennan who was wrongly accused of stealing \u00a33,000 in 2003", + "guid": "b1131665", + "categories": ["UK", "News"], + "isoDate": "2024-01-11T17:53:23.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2024-01-11T17:51:49+00:00", + "title": "Best ski clothing brands to shop for stellar slope style", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-ski-clothing-brands-b1124805.html", + "pubDate": "Thu, 11 Jan 2024 17:51:49 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2024-01-11T17:51:49+00:00", + "content": "

Powder-proof pieces from jackets to fleeces

", + "contentSnippet": "Powder-proof pieces from jackets to fleeces", + "guid": "b1124805", + "categories": ["Fashion", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T17:51:49.000Z" + }, + { + "creator": "Alex Young", + "date": "2024-01-11T17:50:22+00:00", + "title": "FA Cup TV picks confirmed: Tottenham vs Man City on Friday night in fourth round", + "link": "https://www.standard.co.uk/sport/football/fa-cup-tv-picks-confirmed-tottenham-vs-man-city-b1131828.html", + "pubDate": "Thu, 11 Jan 2024 17:50:22 GMT", + "dc:creator": "Alex Young", + "dc:date": "2024-01-11T17:50:22+00:00", + "content": "

It is set to be a busy Friday night in London

", + "contentSnippet": "It is set to be a busy Friday night in London", + "guid": "b1131828", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T17:50:22.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-11T17:48:14+00:00", + "title": "Best electric heaters for large rooms that are efficient and effective", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-electric-heaters-large-rooms-b1118075.html", + "pubDate": "Thu, 11 Jan 2024 17:48:14 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-11T17:48:14+00:00", + "content": "

Can't hear yourself think over the chatter of your teeth? Time to call in a winter warmer

", + "contentSnippet": "Can't hear yourself think over the chatter of your teeth? Time to call in a winter warmer", + "guid": "b1118075", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-11T17:48:14.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-11T17:47:25+00:00", + "title": "Best electric heaters: The best electric radiators, fan heaters, convection and halogen lamps in the UK", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/best-electric-heaters-a3916831.html", + "pubDate": "Thu, 11 Jan 2024 17:47:25 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-11T17:47:25+00:00", + "content": "

Stay warm and cosy this winter with a compact personal heater for the home or office

", + "contentSnippet": "Stay warm and cosy this winter with a compact personal heater for the home or office", + "guid": "a3916831", + "categories": ["Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T17:47:25.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2024-01-11T17:44:32+00:00", + "title": "Best long hot water bottles that promise supremely snug warmth", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-long-hot-water-bottles-b1131634.html", + "pubDate": "Thu, 11 Jan 2024 17:44:32 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2024-01-11T17:44:32+00:00", + "content": "

Enjoy oodles of warmth with a heated noodle

", + "contentSnippet": "Enjoy oodles of warmth with a heated noodle", + "guid": "b1131634", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-11T17:44:32.000Z" + }, + { + "creator": "Craig Paton", + "date": "2024-01-11T17:43:38+00:00", + "title": "Lord Advocate to face MSPs over Horizon scandal", + "link": "https://www.standard.co.uk/news/politics/humza-yousaf-douglas-ross-post-office-crown-office-holyrood-b1131787.html", + "pubDate": "Thu, 11 Jan 2024 17:43:38 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2024-01-11T17:43:38+00:00", + "content": "Confirmation came after calls were made for Dorothy Bain KC to clarify when the Crown knew about the flawed Post Office IT system.", + "contentSnippet": "Confirmation came after calls were made for Dorothy Bain KC to clarify when the Crown knew about the flawed Post Office IT system.", + "guid": "b1131787", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T17:43:38.000Z" + }, + { + "creator": "Ben Hatton", + "date": "2024-01-11T17:42:11+00:00", + "title": "Commons backs British Jewish History Month proposal", + "link": "https://www.standard.co.uk/news/politics/british-house-of-commons-jewish-commons-nickie-aiken-b1131827.html", + "pubDate": "Thu, 11 Jan 2024 17:42:11 GMT", + "dc:creator": "Ben Hatton", + "dc:date": "2024-01-11T17:42:11+00:00", + "content": "A minister praised the \u2018brilliant idea\u2019.", + "contentSnippet": "A minister praised the \u2018brilliant idea\u2019.", + "guid": "b1131827", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T17:42:11.000Z" + }, + { + "creator": "Evening Standard Comment", + "date": "2024-01-11T17:41:13+00:00", + "title": "OPINION - The Standard View: The shameful rise in London shoplifting", + "link": "https://www.standard.co.uk/comment/rise-london-shoplifting-numbers-incidents-b1131779.html", + "pubDate": "Thu, 11 Jan 2024 17:41:13 GMT", + "dc:creator": "Evening Standard Comment", + "dc:date": "2024-01-11T17:41:13+00:00", + "content": "

Today this paper reveals that shoplifting offences in London have risen by almost half \u2014 48 per cent \u2014 in the past year. But the alarming reality is that it\u2019s not even the full picture. There were 55,860 shoplifting offences recorded across London last year, nearly double the 25\u2009per cent rise nationally. But the police only bother to investigate offences worth \u00a3200 or more. So, given that 3,462 of the London crimes were solved (just six per cent) we can assume that far more offences were committed with complete impunity.

", + "contentSnippet": "Today this paper reveals that shoplifting offences in London have risen by almost half \u2014 48 per cent \u2014 in the past year. But the alarming reality is that it\u2019s not even the full picture. There were 55,860 shoplifting offences recorded across London last year, nearly double the 25\u2009per cent rise nationally. But the police only bother to investigate offences worth \u00a3200 or more. So, given that 3,462 of the London crimes were solved (just six per cent) we can assume that far more offences were committed with complete impunity.", + "guid": "b1131779", + "categories": ["Comment"], + "isoDate": "2024-01-11T17:41:13.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2024-01-11T17:41:11+00:00", + "title": "Nicola Roberts hails Giovanni Pernice 'great teacher' amid Amanda Abbington Strictly feud", + "link": "https://www.standard.co.uk/showbiz/nicola-roberts-talks-strictly-come-dancing-giovanni-pernice-experience-amanda-abbington-feud-b1131794.html", + "pubDate": "Thu, 11 Jan 2024 17:41:11 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2024-01-11T17:41:11+00:00", + "content": "

The Girls Aloud singer was paired with the professional dancer for the 2022 Christmas special

", + "contentSnippet": "The Girls Aloud singer was paired with the professional dancer for the 2022 Christmas special", + "guid": "b1131794", + "categories": ["Showbiz"], + "isoDate": "2024-01-11T17:41:11.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-11T17:38:55+00:00", + "title": "FTSE closes down as retail and bank stocks struggle", + "link": "https://www.standard.co.uk/business/business-news/ftse-closes-down-as-retail-and-bank-stocks-struggle-b1131825.html", + "pubDate": "Thu, 11 Jan 2024 17:38:55 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-11T17:38:55+00:00", + "content": "The FTSE 100 fell 75.17 points, or 0.98% to end the day at 7576.59.", + "contentSnippet": "The FTSE 100 fell 75.17 points, or 0.98% to end the day at 7576.59.", + "guid": "b1131825", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-11T17:38:55.000Z" + }, + { + "creator": "Sophie Wingate", + "date": "2024-01-11T17:38:50+00:00", + "title": "Government splashes \u00a327,000 on topping up its fine wine cellar during pandemic", + "link": "https://www.standard.co.uk/news/politics/government-bordeaux-andrew-mitchell-emily-thornberry-foreign-office-b1131817.html", + "pubDate": "Thu, 11 Jan 2024 17:38:50 GMT", + "dc:creator": "Sophie Wingate", + "dc:date": "2024-01-11T17:38:50+00:00", + "content": "More than 500 bottles of red Bordeaux wines were bought at the height of the Covid crisis.", + "contentSnippet": "More than 500 bottles of red Bordeaux wines were bought at the height of the Covid crisis.", + "guid": "b1131817", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T17:38:50.000Z" + }, + { + "creator": "Jordan King", + "date": "2024-01-11T17:35:59+00:00", + "title": "Iran claims it seized oil tanker 'over theft of oil by US'", + "link": "https://www.standard.co.uk/news/world/iran-gulf-of-oman-suez-rajan-st-nikolas-b1131790.html", + "pubDate": "Thu, 11 Jan 2024 17:35:59 GMT", + "dc:creator": "Jordan King", + "dc:date": "2024-01-11T17:35:59+00:00", + "content": "

The St Nikolas was previously seized by Washington in a sanctions enforcemnet operation

", + "contentSnippet": "The St Nikolas was previously seized by Washington in a sanctions enforcemnet operation", + "guid": "b1131790", + "categories": ["World", "News"], + "isoDate": "2024-01-11T17:35:59.000Z" + }, + { + "creator": "Tamara Davison", + "date": "2024-01-11T17:34:51+00:00", + "title": "How to restrict Snapchat's AI chatbot", + "link": "https://www.standard.co.uk/news/tech/snapchat-my-ai-chatbot-how-restrict-b1131780.html", + "pubDate": "Thu, 11 Jan 2024 17:34:51 GMT", + "dc:creator": "Tamara Davison", + "dc:date": "2024-01-11T17:34:51+00:00", + "content": "

Parents can now switch off My AI on their teens' Snapchat profile

", + "contentSnippet": "Parents can now switch off My AI on their teens' Snapchat profile", + "guid": "b1131780", + "categories": ["Tech", "News"], + "isoDate": "2024-01-11T17:34:51.000Z" + }, + { + "creator": "Rebecca Black", + "date": "2024-01-11T17:34:40+00:00", + "title": "Northern Ireland tourism at risk from electronic travel scheme \u2013 civil servant", + "link": "https://www.standard.co.uk/news/uk/eta-northern-ireland-tourism-ireland-government-home-office-b1131744.html", + "pubDate": "Thu, 11 Jan 2024 17:34:40 GMT", + "dc:creator": "Rebecca Black", + "dc:date": "2024-01-11T17:34:40+00:00", + "content": "Ian Snowden, of Northern Ireland\u2019s Department for the Economy, sounded the warning at a tourism event on Thursday.", + "contentSnippet": "Ian Snowden, of Northern Ireland\u2019s Department for the Economy, sounded the warning at a tourism event on Thursday.", + "guid": "b1131744", + "categories": ["UK", "News"], + "isoDate": "2024-01-11T17:34:40.000Z" + }, + { + "creator": "Claire Hayhurst", + "date": "2024-01-11T17:34:10+00:00", + "title": "Teenager was crying after allegedly pushing boy who drowned in river \u2013 inquest", + "link": "https://www.standard.co.uk/news/crime/pontypridd-chris-emergency-services-b1131824.html", + "pubDate": "Thu, 11 Jan 2024 17:34:10 GMT", + "dc:creator": "Claire Hayhurst", + "dc:date": "2024-01-11T17:34:10+00:00", + "content": "Christopher Kapessa began panicking after entering the River Cynon in July 2019.", + "contentSnippet": "Christopher Kapessa began panicking after entering the River Cynon in July 2019.", + "guid": "b1131824", + "categories": ["Crime", "News"], + "isoDate": "2024-01-11T17:34:10.000Z" + }, + { + "creator": "Cillian Sherlock", + "date": "2024-01-11T17:30:17+00:00", + "title": "Irish lawyer for South Africa accuses Israel of genocide in Gaza at UN court", + "link": "https://www.standard.co.uk/news/politics/israel-south-africa-gaza-international-court-of-justice-the-hague-b1131781.html", + "pubDate": "Thu, 11 Jan 2024 17:30:17 GMT", + "dc:creator": "Cillian Sherlock", + "dc:date": "2024-01-11T17:30:17+00:00", + "content": "Blinne Ni Ghralaigh said that there was a need for urgent provisional measures to order the Israeli military to halt its operations in Gaza.", + "contentSnippet": "Blinne Ni Ghralaigh said that there was a need for urgent provisional measures to order the Israeli military to halt its operations in Gaza.", + "guid": "b1131781", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T17:30:17.000Z" + }, + { + "creator": "John Dunne", + "date": "2024-01-11T17:30:08+00:00", + "title": "Donald Trump in court for civil fraud trial's closing arguments after judge receives 'bomb threat'", + "link": "https://www.standard.co.uk/news/world/donald-trump-court-trial-new-york-fraud-judge-bomb-threat-b1131786.html", + "pubDate": "Thu, 11 Jan 2024 17:30:08 GMT", + "dc:creator": "John Dunne", + "dc:date": "2024-01-11T17:30:08+00:00", + "content": "

The judge had prevented the former president giving his own closing speech

", + "contentSnippet": "The judge had prevented the former president giving his own closing speech", + "guid": "b1131786", + "categories": ["World", "News"], + "isoDate": "2024-01-11T17:30:08.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-11T17:29:23+00:00", + "title": "Best blanket hoodies to keep you warm and cosy this winter", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-blanket-hoodies-oversized-warm-b1039295.html", + "pubDate": "Thu, 11 Jan 2024 17:29:23 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-11T17:29:23+00:00", + "content": "

Welcome to the comfort zone

", + "contentSnippet": "Welcome to the comfort zone", + "guid": "b1039295", + "categories": ["Fashion", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T17:29:23.000Z" + }, + { + "creator": "Dom Smith", + "date": "2024-01-11T17:29:19+00:00", + "title": "Yunus Emre Konak: How Brentford aim to help Turkish wonderkid fulfil huge potential", + "link": "https://www.standard.co.uk/sport/football/brentford-fc-yunus-emre-konak-transfer-b1131819.html", + "pubDate": "Thu, 11 Jan 2024 17:29:19 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2024-01-11T17:29:19+00:00", + "content": "

The 18-year-old was being tracked by a host of European sides and the subject of a failed late bid

", + "contentSnippet": "The 18-year-old was being tracked by a host of European sides and the subject of a failed late bid", + "guid": "b1131819", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T17:29:19.000Z" + }, + { + "creator": "Alex Young", + "date": "2024-01-11T17:28:51+00:00", + "title": "Africa Cup of Nations 2023: Fixtures, schedule, start date, groups, and how to watch Afcon on TV", + "link": "https://www.standard.co.uk/sport/football/africa-cup-of-nations-2023-2024-fixtures-schedule-start-groups-how-to-watch-afcon-live-tv-channel-stream-b1131730.html", + "pubDate": "Thu, 11 Jan 2024 17:28:51 GMT", + "dc:creator": "Alex Young", + "dc:date": "2024-01-11T17:28:51+00:00", + "content": "

The continent's best face off across the Ivory Coast for four weeks

", + "contentSnippet": "The continent's best face off across the Ivory Coast for four weeks", + "guid": "b1131730", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T17:28:51.000Z" + }, + { + "creator": "Rachael Davies", + "date": "2024-01-11T17:28:18+00:00", + "title": "Snack lover finds 'world's longest Hula Hoop' and it's on eBay for \u00a3100,000,000", + "link": "https://www.standard.co.uk/news/uk/world-longest-hula-hoop-ebay-b1131762.html", + "pubDate": "Thu, 11 Jan 2024 17:28:18 GMT", + "dc:creator": "Rachael Davies", + "dc:date": "2024-01-11T17:28:18+00:00", + "content": "

The crisp measures a shocking 4.72 inches and has been deemed the longest in the world

", + "contentSnippet": "The crisp measures a shocking 4.72 inches and has been deemed the longest in the world", + "guid": "b1131762", + "categories": ["UK", "News"], + "isoDate": "2024-01-11T17:28:18.000Z" + }, + { + "creator": "Robbie Griffiths", + "date": "2024-01-11T17:26:55+00:00", + "title": "'Totally and utterly bereft' \u2014 the devastating repercussions of the British Library cyber attack", + "link": "https://www.standard.co.uk/lifestyle/british-library-cyber-hack-rhysida-ransomware-tom-holland-b1131623.html", + "pubDate": "Thu, 11 Jan 2024 17:26:55 GMT", + "dc:creator": "Robbie Griffiths", + "dc:date": "2024-01-11T17:26:55+00:00", + "content": "

One of the UK's most vital cultural institutions has been paralysed by a ransomware hack, but what does it mean for the Londoners who rely on it \u2014 and are more government organisations at risk? Robbie Griffiths reports

", + "contentSnippet": "One of the UK's most vital cultural institutions has been paralysed by a ransomware hack, but what does it mean for the Londoners who rely on it \u2014 and are more government organisations at risk? Robbie Griffiths reports", + "guid": "b1131623", + "categories": ["Lifestyle"], + "isoDate": "2024-01-11T17:26:55.000Z" + }, + { + "creator": "Stuart Pritchard", + "date": "2024-01-11T17:20:09+00:00", + "title": "Best colour laser printers of 2024 for a great home printing setup", + "link": "https://www.standard.co.uk/shopping/esbest/gadgets-tech/best-home-colour-laser-printers-b1065488.html", + "pubDate": "Thu, 11 Jan 2024 17:20:09 GMT", + "dc:creator": "Stuart Pritchard", + "dc:date": "2024-01-11T17:20:09+00:00", + "content": "

Prints Charming himself, Stuart Pritchard, lines-up a parade of the very latest laser printers honed for the home office\u2026

", + "contentSnippet": "Prints Charming himself, Stuart Pritchard, lines-up a parade of the very latest laser printers honed for the home office\u2026", + "guid": "b1065488", + "categories": ["Gadgets & Tech", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T17:20:09.000Z" + }, + { + "creator": "India Block", + "date": "2024-01-11T17:19:51+00:00", + "title": "Low cost home heating tips: keep your home warm during a cold snap for as little as \u00a35", + "link": "https://www.standard.co.uk/homesandproperty/interiors/homes-heating-cold-pipes-radiators-tips-b1131254.html", + "pubDate": "Thu, 11 Jan 2024 17:19:51 GMT", + "dc:creator": "India Block", + "dc:date": "2024-01-11T17:19:51+00:00", + "content": "

Renters and homeowners alike can take these steps to keep their homes toasty for less as temperatures plunge.

", + "contentSnippet": "Renters and homeowners alike can take these steps to keep their homes toasty for less as temperatures plunge.", + "guid": "b1131254", + "categories": ["Interiors", "Homes & Property"], + "isoDate": "2024-01-11T17:19:51.000Z" + }, + { + "creator": "Nina Lloyd", + "date": "2024-01-11T17:19:50+00:00", + "title": "Post Office and Fujitsu chief executives face grilling by MPs on Horizon scandal", + "link": "https://www.standard.co.uk/news/politics/post-office-mps-horizon-europe-british-b1131820.html", + "pubDate": "Thu, 11 Jan 2024 17:19:50 GMT", + "dc:creator": "Nina Lloyd", + "dc:date": "2024-01-11T17:19:50+00:00", + "content": "Nick Read, chief executive of the Post Office, and Paul Patterson, head of Europe at Fujitsu, are both due to appear.", + "contentSnippet": "Nick Read, chief executive of the Post Office, and Paul Patterson, head of Europe at Fujitsu, are both due to appear.", + "guid": "b1131820", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T17:19:50.000Z" + }, + { + "creator": "Jacob Phillips", + "date": "2024-01-11T17:15:37+00:00", + "title": "Friends scripts for London wedding season finale up for auction 25 years after thrown in bin", + "link": "https://www.standard.co.uk/showbiz/friends-london-script-auction-the-one-with-ross-wedding-scripts-b1131782.html", + "pubDate": "Thu, 11 Jan 2024 17:15:37 GMT", + "dc:creator": "Jacob Phillips", + "dc:date": "2024-01-11T17:15:37+00:00", + "content": "

The scripts of the show were supposed to be destroyed so the ending wouldn't be leaked

", + "contentSnippet": "The scripts of the show were supposed to be destroyed so the ending wouldn't be leaked", + "guid": "b1131782", + "categories": ["Showbiz"], + "isoDate": "2024-01-11T17:15:37.000Z" + }, + { + "creator": "Jen Thomas", + "date": "2024-01-11T17:15:06+00:00", + "title": "Best bathroom extractor fans to deal with humidity and condensation", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/bathroom/best-bathroom-extractor-fans-b1023654.html", + "pubDate": "Thu, 11 Jan 2024 17:15:06 GMT", + "dc:creator": "Jen Thomas", + "dc:date": "2024-01-11T17:15:06+00:00", + "content": "

They may not be the sexiest item to consider when remodelling your bathroom, but they are an essential addition

", + "contentSnippet": "They may not be the sexiest item to consider when remodelling your bathroom, but they are an essential addition", + "guid": "b1023654", + "categories": ["Bathroom", "Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T17:15:06.000Z" + }, + { + "creator": "Joanna Taylor", + "date": "2024-01-11T17:14:36+00:00", + "title": "What is DineMe? Meet the new food and drink focused dating app", + "link": "https://www.standard.co.uk/going-out/dineme-dating-app-everything-need-to-know-new-food-drink-b1131760.html", + "pubDate": "Thu, 11 Jan 2024 17:14:36 GMT", + "dc:creator": "Joanna Taylor", + "dc:date": "2024-01-11T17:14:36+00:00", + "content": "

Hoping to fall in love with someone who enjoys trying new bars and restaurants as much you do? Joanna Taylor investigates a new app promising to facilitate just that

", + "contentSnippet": "Hoping to fall in love with someone who enjoys trying new bars and restaurants as much you do? Joanna Taylor investigates a new app promising to facilitate just that", + "guid": "b1131760", + "categories": ["Going Out"], + "isoDate": "2024-01-11T17:14:36.000Z" + }, + { + "creator": "Joanna Taylor", + "date": "2024-01-11T17:13:12+00:00", + "title": "EE Bafta Rising Star nominee Sophie Wilde talks Nicole Kidman, Audrey Hepburn and Australia's film industry ", + "link": "https://www.standard.co.uk/culture/ee-bafta-rising-star-sophie-wilde-interview-nicole-kidman-australia-b1131576.html", + "pubDate": "Thu, 11 Jan 2024 17:13:12 GMT", + "dc:creator": "Joanna Taylor", + "dc:date": "2024-01-11T17:13:12+00:00", + "content": "

The Talk To Me and Everything Now star has been nominated alongside Saltburn's Jacob Elordi and golden globe winner Ayo Edebiri of The Bear

", + "contentSnippet": "The Talk To Me and Everything Now star has been nominated alongside Saltburn's Jacob Elordi and golden globe winner Ayo Edebiri of The Bear", + "guid": "b1131576", + "categories": ["Culture"], + "isoDate": "2024-01-11T17:13:12.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2024-01-11T17:12:11+00:00", + "title": "Best toenail clippers for easy podiatric maintenance ", + "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-toenail-clippers-b1091176.html", + "pubDate": "Thu, 11 Jan 2024 17:12:11 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2024-01-11T17:12:11+00:00", + "content": "

Wouldn\u2019t you like toe know?

", + "contentSnippet": "Wouldn\u2019t you like toe know?", + "guid": "b1091176", + "categories": ["Health & Fitness", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T17:12:11.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2024-01-11T17:09:40+00:00", + "title": "Best label makers for easy at-home organisation ", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-label-maker-machines-b1076905.html", + "pubDate": "Thu, 11 Jan 2024 17:09:40 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2024-01-11T17:09:40+00:00", + "content": "

Make Marie Kondo proud

", + "contentSnippet": "Make Marie Kondo proud", + "guid": "b1076905", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-11T17:09:40.000Z" + }, + { + "creator": "Ian Jones", + "date": "2024-01-11T17:09:28+00:00", + "title": "Covid-19 infection levels dip over Christmas and new year", + "link": "https://www.standard.co.uk/news/health/england-world-health-organisation-scotland-ons-office-for-national-statistics-b1131810.html", + "pubDate": "Thu, 11 Jan 2024 17:09:28 GMT", + "dc:creator": "Ian Jones", + "dc:date": "2024-01-11T17:09:28+00:00", + "content": "Data has been published as part of a new winter Covid-19 infection study.", + "contentSnippet": "Data has been published as part of a new winter Covid-19 infection study.", + "guid": "b1131810", + "categories": ["Health", "News"], + "isoDate": "2024-01-11T17:09:28.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2024-01-11T17:06:55+00:00", + "title": "Best diffusers for healthy, curly hair ", + "link": "https://www.standard.co.uk/shopping/esbest/beauty/hair/best-diffusers-for-curly-hair-b1041535.html", + "pubDate": "Thu, 11 Jan 2024 17:06:55 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2024-01-11T17:06:55+00:00", + "content": "

Go ahead let your hair down

", + "contentSnippet": "Go ahead let your hair down", + "guid": "b1041535", + "categories": ["Hair", "Beauty", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T17:06:55.000Z" + }, + { + "creator": "Matt Verri", + "date": "2024-01-11T17:05:53+00:00", + "title": "Brentford confirm first January arrival after winning race to sign teenager Yunus Emre Konak ", + "link": "https://www.standard.co.uk/sport/football/brentford-fc-yunus-emre-konak-transfer-news-b1131812.html", + "pubDate": "Thu, 11 Jan 2024 17:05:53 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2024-01-11T17:05:53+00:00", + "content": "

The teenager turned 18 this week and is set to join up with the Brentford B team

", + "contentSnippet": "The teenager turned 18 this week and is set to join up with the Brentford B team", + "guid": "b1131812", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T17:05:53.000Z" + }, + { + "creator": "Eleanor Barlow", + "date": "2024-01-11T17:04:34+00:00", + "title": "Labour leader quizzed by NHS staff over plans for health service", + "link": "https://www.standard.co.uk/news/politics/keir-starmer-labour-wes-streeting-nhs-hospital-b1131725.html", + "pubDate": "Thu, 11 Jan 2024 17:04:34 GMT", + "dc:creator": "Eleanor Barlow", + "dc:date": "2024-01-11T17:04:34+00:00", + "content": "Visiting Alder Hey Children\u2019s Hospital in Liverpool on Thursday, Sir Keir Starmer said he wanted to turn around the health of children.", + "contentSnippet": "Visiting Alder Hey Children\u2019s Hospital in Liverpool on Thursday, Sir Keir Starmer said he wanted to turn around the health of children.", + "guid": "b1131725", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T17:04:34.000Z" + }, + { + "creator": "Vicky Jessop", + "date": "2024-01-11T17:02:51+00:00", + "title": "How to become a professional gamer: from healthy living and networking to... lots of practice", + "link": "https://www.standard.co.uk/culture/gaming/become-professional-gamer-esports-b1131247.html", + "pubDate": "Thu, 11 Jan 2024 17:02:51 GMT", + "dc:creator": "Vicky Jessop", + "dc:date": "2024-01-11T17:02:51+00:00", + "content": "

Some of the industry's biggest names on how to play your way to the top (and avoid tilting while doing so)

", + "contentSnippet": "Some of the industry's biggest names on how to play your way to the top (and avoid tilting while doing so)", + "guid": "b1131247", + "categories": ["Gaming", "Culture"], + "isoDate": "2024-01-11T17:02:51.000Z" + }, + { + "creator": "Siobhan Grogan", + "date": "2024-01-11T17:02:41+00:00", + "title": "Best paper shredders for home to securely destroy your documents", + "link": "https://www.standard.co.uk/shopping/esbest/gadgets-tech/best-shredders-b945545.html", + "pubDate": "Thu, 11 Jan 2024 17:02:41 GMT", + "dc:creator": "Siobhan Grogan", + "dc:date": "2024-01-11T17:02:41+00:00", + "content": "

Keep sensitive documents safe with these reliable machines

", + "contentSnippet": "Keep sensitive documents safe with these reliable machines", + "guid": "b945545", + "categories": ["Gadgets & Tech", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T17:02:41.000Z" + }, + { + "creator": "India Block", + "date": "2024-01-11T17:01:45+00:00", + "title": "Prince of Persia: The Lost Crown review \u2013 a beautiful and addictive new chapter with moments of pure elation", + "link": "https://www.standard.co.uk/culture/gaming/prince-of-persia-the-lost-crown-review-b1131430.html", + "pubDate": "Thu, 11 Jan 2024 17:01:45 GMT", + "dc:creator": "India Block", + "dc:date": "2024-01-11T17:01:45+00:00", + "content": "

It has been 13 years since the last instalment, but it was worth the wait

", + "contentSnippet": "It has been 13 years since the last instalment, but it was worth the wait", + "guid": "b1131430", + "categories": ["Gaming", "Culture"], + "isoDate": "2024-01-11T17:01:45.000Z" + }, + { + "creator": "Tony Jones", + "date": "2024-01-11T17:01:44+00:00", + "title": "Anne watches land mine clearance at Sri Lanka\u2019s former civil war front line", + "link": "https://www.standard.co.uk/news/uk/sri-lanka-princess-royal-stephen-hall-b1131755.html", + "pubDate": "Thu, 11 Jan 2024 17:01:44 GMT", + "dc:creator": "Tony Jones", + "dc:date": "2024-01-11T17:01:44+00:00", + "content": "The Princess Royal travelled to the area to learn about efforts to make it habitable.", + "contentSnippet": "The Princess Royal travelled to the area to learn about efforts to make it habitable.", + "guid": "b1131755", + "categories": ["UK", "News"], + "isoDate": "2024-01-11T17:01:44.000Z" + }, + { + "creator": "Hayley Spencer", + "date": "2024-01-11T17:00:42+00:00", + "title": "The most divisive ads \u2014 and why fashion can't resist courting controversy", + "link": "https://www.standard.co.uk/lifestyle/fashion/most-controversial-divisive-fashion-adverts-fka-twigs-calvin-klein-b1131727.html", + "pubDate": "Thu, 11 Jan 2024 17:00:42 GMT", + "dc:creator": "Hayley Spencer", + "dc:date": "2024-01-11T17:00:42+00:00", + "content": "

It's no secret that sex sells and a viral moment can equal major sales for brands. As FKA Twigs' denim campaign is the latest to face a ban, Hayley Spencer looks back at the most polarising campaigns

", + "contentSnippet": "It's no secret that sex sells and a viral moment can equal major sales for brands. As FKA Twigs' denim campaign is the latest to face a ban, Hayley Spencer looks back at the most polarising campaigns", + "guid": "b1131727", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2024-01-11T17:00:42.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2024-01-11T17:00:24+00:00", + "title": "Chelsea: Emma Hayes warns fans not to worry amid Sam Kerr and Fran Kirby uncertainty", + "link": "https://www.standard.co.uk/sport/football/emma-hayes-chelsea-fc-women-kerr-kirby-b1131750.html", + "pubDate": "Thu, 11 Jan 2024 17:00:24 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2024-01-11T17:00:24+00:00", + "content": "

The star players are yet to pen contract extensions, while the boss herself is heading to the USA

", + "contentSnippet": "The star players are yet to pen contract extensions, while the boss herself is heading to the USA", + "guid": "b1131750", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T17:00:24.000Z" + }, + { + "creator": "Jodie Keith", + "date": "2024-01-11T16:58:24+00:00", + "title": "Best roller skates for kids: Quad and inline skates for children and toddlers", + "link": "https://www.standard.co.uk/shopping/esbest/kids/best-roller-skates-for-kids-b1009194.html", + "pubDate": "Thu, 11 Jan 2024 16:58:24 GMT", + "dc:creator": "Jodie Keith", + "dc:date": "2024-01-11T16:58:24+00:00", + "content": "

Why walk when you can skate? From beginner training skates to more advanced roller skates for teens, we\u2019ll have your child skating into summer in no time

", + "contentSnippet": "Why walk when you can skate? From beginner training skates to more advanced roller skates for teens, we\u2019ll have your child skating into summer in no time", + "guid": "b1009194", + "categories": ["Kids", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T16:58:24.000Z" + }, + { + "creator": "El Hunt", + "date": "2024-01-11T16:56:38+00:00", + "title": "Amapiano: our guide to the music sensation sweeping the world", + "link": "https://www.standard.co.uk/culture/music/amapiano-guide-music-sensation-tyla-b1131657.html", + "pubDate": "Thu, 11 Jan 2024 16:56:38 GMT", + "dc:creator": "El Hunt", + "dc:date": "2024-01-11T16:56:38+00:00", + "content": "

From Tyla's debut album to parties in London dedicated to the genre, amapiano is set to be everywhere this year. Here's what to know

", + "contentSnippet": "From Tyla's debut album to parties in London dedicated to the genre, amapiano is set to be everywhere this year. Here's what to know", + "guid": "b1131657", + "categories": ["Music", "Culture"], + "isoDate": "2024-01-11T16:56:38.000Z" + }, + { + "creator": "Sami Quadri", + "date": "2024-01-11T16:55:16+00:00", + "title": "Mother of woman who died 'because of some stupid bike' petitions for e-bike battery crackdown", + "link": "https://www.standard.co.uk/news/london/sofia-duarte-ebike-battery-london-fire-death-mother-petition-maria-macarro-b1131800.html", + "pubDate": "Thu, 11 Jan 2024 16:55:16 GMT", + "dc:creator": "Sami Quadri", + "dc:date": "2024-01-11T16:55:16+00:00", + "content": "

Sofia\u00a0Duarte, 21, died on New Year's Day when an e-bike ignited at her boyfriend's flat

", + "contentSnippet": "Sofia\u00a0Duarte, 21, died on New Year's Day when an e-bike ignited at her boyfriend's flat", + "guid": "b1131800", + "categories": ["London", "News"], + "isoDate": "2024-01-11T16:55:16.000Z" + }, + { + "creator": "Lucy Cotterill", + "date": "2024-01-11T16:54:39+00:00", + "title": "Best weighted blankets of 2024: Calming weighted blankets to order in the UK", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/bedroom/best-weighted-blankets-a3912931.html", + "pubDate": "Thu, 11 Jan 2024 16:54:39 GMT", + "dc:creator": "Lucy Cotterill", + "dc:date": "2024-01-11T16:54:39+00:00", + "content": "

Do you struggling to switch off, feel anxious or wake up regularly? This may be just the solution for a good night\u2019s sleep

", + "contentSnippet": "Do you struggling to switch off, feel anxious or wake up regularly? This may be just the solution for a good night\u2019s sleep", + "guid": "a3912931", + "categories": ["Bedroom", "Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T16:54:39.000Z" + }, + { + "creator": "Mark Blunden", + "date": "2024-01-11T16:54:29+00:00", + "title": "London shops deploy facial recognition in theft epidemic - The Standard podcast", + "link": "https://www.standard.co.uk/podcasts/london-shoplifting-facial-recognition-theft-epidemic-b1131809.html", + "pubDate": "Thu, 11 Jan 2024 16:54:29 GMT", + "dc:creator": "Mark Blunden", + "dc:date": "2024-01-11T16:54:29+00:00", + "content": "

Plus, the capital\u2019s violent Rolex robbery gangs

", + "contentSnippet": "Plus, the capital\u2019s violent Rolex robbery gangs", + "guid": "b1131809", + "categories": ["Podcasts"], + "isoDate": "2024-01-11T16:54:29.000Z" + }, + { + "creator": "George Flood and Dan Kilpatrick", + "date": "2024-01-11T16:50:51+00:00", + "title": "Tottenham handed major Cristian Romero injury boost for Manchester United trip", + "link": "https://www.standard.co.uk/sport/football/tottenham-cristian-romero-injury-boost-man-utd-b1131806.html", + "pubDate": "Thu, 11 Jan 2024 16:50:51 GMT", + "dc:creator": "George Flood and Dan Kilpatrick", + "dc:date": "2024-01-11T16:50:51+00:00", + "content": "

Key Spurs star in contention for Old Trafford trip as two new signings compete for debuts

", + "contentSnippet": "Key Spurs star in contention for Old Trafford trip as two new signings compete for debuts", + "guid": "b1131806", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-11T16:50:51.000Z" + }, + { + "creator": "Anahita Hossein-Pour", + "date": "2024-01-11T16:49:10+00:00", + "title": "Vote on housing development like Hunger Games, says parish council chairman", + "link": "https://www.standard.co.uk/news/environment/sevenoaks-sevenoaks-district-council-westerham-kent-england-b1131813.html", + "pubDate": "Thu, 11 Jan 2024 16:49:10 GMT", + "dc:creator": "Anahita Hossein-Pour", + "dc:date": "2024-01-11T16:49:10+00:00", + "content": "Villagers rejecting the plans in an online poll has given Eynsford Parish Council \u2018a mandate to fight\u2019, their chairman said.", + "contentSnippet": "Villagers rejecting the plans in an online poll has given Eynsford Parish Council \u2018a mandate to fight\u2019, their chairman said.", + "guid": "b1131813", + "categories": ["Environment", "News"], + "isoDate": "2024-01-11T16:49:10.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2024-01-11T16:41:55+00:00", + "title": "Best electrolyte supplements for replenishing your body\u2019s salts and minerals ", + "link": "https://www.standard.co.uk/shopping/esbest/health-fitness/best-electrolyte-supplements-b1087890.html", + "pubDate": "Thu, 11 Jan 2024 16:41:55 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2024-01-11T16:41:55+00:00", + "content": "

Electro-lit

", + "contentSnippet": "Electro-lit", + "guid": "b1087890", + "categories": ["Health & Fitness", "ES Best Home", "Shopping"], + "isoDate": "2024-01-11T16:41:55.000Z" + }, + { + "creator": "Es Best", + "date": "2024-01-11T16:40:57+00:00", + "title": "Best laptop deals in the UK for January 2024", + "link": "https://www.standard.co.uk/shopping/esbest/gadgets-tech/computing/best-laptop-deals-macbooks-chromebooks-b998911.html", + "pubDate": "Thu, 11 Jan 2024 16:40:57 GMT", + "dc:creator": "Es Best", + "dc:date": "2024-01-11T16:40:57+00:00", + "content": "

Shop smart with major discounts

", + "contentSnippet": "Shop smart with major discounts", + "guid": "b998911", + "categories": [ + "Computing", + "Gadgets & Tech", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-11T16:40:57.000Z" + }, + { + "creator": "John Dunne", + "date": "2024-01-11T16:40:00+00:00", + "title": "London fraudster who applied for \u00a380,000 in Covid grants using friends' identities convicted", + "link": "https://www.standard.co.uk/news/crime/covid-grant-fraud-london-business-streatham-high-street-mirza-altaf-ali-baig-lambeth-council-b1131765.html", + "pubDate": "Thu, 11 Jan 2024 16:40:00 GMT", + "dc:creator": "John Dunne", + "dc:date": "2024-01-11T16:40:00+00:00", + "content": "

Mirza Altaf Ali Baig made fraudulent applications using names and identities of associates

", + "contentSnippet": "Mirza Altaf Ali Baig made fraudulent applications using names and identities of associates", + "guid": "b1131765", + "categories": ["Crime", "News"], + "isoDate": "2024-01-11T16:40:00.000Z" + }, + { + "creator": "Craig Paton", + "date": "2024-01-11T16:38:00+00:00", + "title": "Scottish Government unable to say how many XL bullies moved due to restrictions", + "link": "https://www.standard.co.uk/news/politics/government-uk-government-first-minister-scottish-government-england-b1131764.html", + "pubDate": "Thu, 11 Jan 2024 16:38:00 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2024-01-11T16:38:00+00:00", + "content": "It came after First Minister Humza Yousaf announced his Government will \u2018in essence replicate\u2019 the ban.", + "contentSnippet": "It came after First Minister Humza Yousaf announced his Government will \u2018in essence replicate\u2019 the ban.", + "guid": "b1131764", + "categories": ["Politics", "News"], + "isoDate": "2024-01-11T16:38:00.000Z" + }, + { + "creator": "Rachael Davies", + "date": "2024-01-11T16:35:08+00:00", + "title": "TikTok becomes first app to exceed $10 billion in user spending", + "link": "https://www.standard.co.uk/news/tech/tiktok-app-10-billion-user-spending-record-breaking-b1131783.html", + "pubDate": "Thu, 11 Jan 2024 16:35:08 GMT", + "dc:creator": "Rachael Davies", + "dc:date": "2024-01-11T16:35:08+00:00", + "content": "

In a year where mobile spending hit new levels, TikTok reached a record-breaking high

", + "contentSnippet": "In a year where mobile spending hit new levels, TikTok reached a record-breaking high", + "guid": "b1131783", + "categories": ["Tech", "News"], + "isoDate": "2024-01-11T16:35:08.000Z" + }, + { + "creator": "Rebecca Black", + "date": "2024-01-11T16:33:23+00:00", + "title": "Strike pay issue can be resolved quickly if Heaton-Harris acts now, say unions", + "link": "https://www.standard.co.uk/business/business-news/strike-pay-issue-can-be-resolved-quickly-if-heatonharris-acts-now-say-unions-b1131776.html", + "pubDate": "Thu, 11 Jan 2024 16:33:23 GMT", + "dc:creator": "Rebecca Black", + "dc:date": "2024-01-11T16:33:23+00:00", + "content": "Teachers, nurses, health workers, education support workers, police staff and civil servants are set to take part in a day of action on January 18.", + "contentSnippet": "Teachers, nurses, health workers, education support workers, police staff and civil servants are set to take part in a day of action on January 18.", + "guid": "b1131776", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-11T16:33:23.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-11T16:29:06+00:00", + "title": "Dyson loses appeal in fight for \u00a3150m damages over vacuum cleaner labelling", + "link": "https://www.standard.co.uk/business/business-news/dyson-loses-appeal-in-fight-for-ps150m-damages-over-vacuum-cleaner-labelling-b1131807.html", + "pubDate": "Thu, 11 Jan 2024 16:29:06 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-11T16:29:06+00:00", + "content": "The Court of Justice of the European Union dismissed Dyson\u2019s appeal against the decision not to grant it compensation in 2021.", + "contentSnippet": "The Court of Justice of the European Union dismissed Dyson\u2019s appeal against the decision not to grant it compensation in 2021.", + "guid": "b1131807", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-11T16:29:06.000Z" + }, + { + "creator": "Jordan King", + "date": "2024-01-11T16:28:57+00:00", + "title": "UN court opens hearings for South Africa's allegations that Israel is committing genocide in Gaza", + "link": "https://www.standard.co.uk/news/world/un-hearings-south-africa-israel-genocide-gaza-united-nations-b1131659.html", + "pubDate": "Thu, 11 Jan 2024 16:28:57 GMT", + "dc:creator": "Jordan King", + "dc:date": "2024-01-11T16:28:57+00:00", + "content": "

South Africa has asked judges to impose preliminary orders for Israel to halt its campaign

", + "contentSnippet": "South Africa has asked judges to impose preliminary orders for Israel to halt its campaign", + "guid": "b1131659", + "categories": ["World", "News"], + "isoDate": "2024-01-11T16:28:57.000Z" + }, + { + "creator": "Prudence Ivey", + "date": "2024-01-11T16:25:26+00:00", + "title": "Why I live in Soho: The Devonshire's Oisin Rogers on his intense, surprisingly residential neighbourhood", + "link": "https://www.standard.co.uk/homesandproperty/where-to-live/soho-area-guide-oisin-rogers-the-devonshire-b1131546.html", + "pubDate": "Thu, 11 Jan 2024 16:25:26 GMT", + "dc:creator": "Prudence Ivey", + "dc:date": "2024-01-11T16:25:26+00:00", + "content": "

Oisin Rogers is one of the best-known pub landlords in London. He explains why Soho is a wonderful place to live

", + "contentSnippet": "Oisin Rogers is one of the best-known pub landlords in London. He explains why Soho is a wonderful place to live", + "guid": "b1131546", + "categories": ["Where to live", "Homes & Property"], + "isoDate": "2024-01-11T16:25:26.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2024-01-11T16:20:16+00:00", + "title": "Eurovision star Mae Muller announces break from music after industry 'pressure'", + "link": "https://www.standard.co.uk/showbiz/eurovision-mae-muller-music-break-industry-pressure-b1131777.html", + "pubDate": "Thu, 11 Jan 2024 16:20:16 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2024-01-11T16:20:16+00:00", + "content": "

The London-born musician shared a lengthy message with fans detailing her 'intense' experience last year

", + "contentSnippet": "The London-born musician shared a lengthy message with fans detailing her 'intense' experience last year", + "guid": "b1131777", + "categories": ["Showbiz"], + "isoDate": "2024-01-11T16:20:16.000Z" + }, + { + "creator": "Flora Thompson", + "date": "2024-01-18T12:25:34+00:00", + "title": "Home Office told to 'consult the professionals' after asylum backlog blunder ", + "link": "https://www.standard.co.uk/news/politics/home-office-asylum-seeker-backlog-cases-uk-statistics-authority-rwanda-b1133213.html", + "pubDate": "Thu, 18 Jan 2024 12:25:34 GMT", + "dc:creator": "Flora Thompson", + "dc:date": "2024-01-18T12:25:34+00:00", + "content": "

Incorrect statistics about clearing the backlog of cases 'may affect public trust', watchdog warns

", + "contentSnippet": "Incorrect statistics about clearing the backlog of cases 'may affect public trust', watchdog warns", + "guid": "b1133213", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T12:25:34.000Z" + }, + { + "creator": "Robert Dex and Arts Correspondent", + "date": "2024-01-18T12:23:09+00:00", + "title": "Oppenheimer dominates nominations at this year's Bafta Awards", + "link": "https://www.standard.co.uk/news/uk/oppenheimer-bafta-awards-nominations-barbie-cillian-murphy-b1133160.html", + "pubDate": "Thu, 18 Jan 2024 12:23:09 GMT", + "dc:creator": "Robert Dex and Arts Correspondent", + "dc:date": "2024-01-18T12:23:09+00:00", + "content": "

Oppenheimer leads the way with 13 nominations at this year's EE Bafta Film Awards

", + "contentSnippet": "Oppenheimer leads the way with 13 nominations at this year's EE Bafta Film Awards", + "guid": "b1133160", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T12:23:09.000Z" + }, + { + "creator": "Andrew Williams", + "date": "2024-01-18T12:22:17+00:00", + "title": "Xbox Game Pass games for January and February announced", + "link": "https://www.standard.co.uk/culture/gaming/xbox-game-pass-games-releases-list-january-february-b1133184.html", + "pubDate": "Thu, 18 Jan 2024 12:22:17 GMT", + "dc:creator": "Andrew Williams", + "dc:date": "2024-01-18T12:22:17+00:00", + "content": "

Xbox Game Pass is releasing 5 new games, and 3 are available now

", + "contentSnippet": "Xbox Game Pass is releasing 5 new games, and 3 are available now", + "guid": "b1133184", + "categories": ["Gaming", "Culture"], + "isoDate": "2024-01-18T12:22:17.000Z" + }, + { + "creator": "Laura Harding", + "date": "2024-01-18T12:20:32+00:00", + "title": "Oppenheimer leads Bafta nominations with 13 nods", + "link": "https://www.standard.co.uk/culture/film/barbie-cillian-murphy-oppenheimer-barry-keoghan-margot-robbie-b1133222.html", + "pubDate": "Thu, 18 Jan 2024 12:20:32 GMT", + "dc:creator": "Laura Harding", + "dc:date": "2024-01-18T12:20:32+00:00", + "content": "Irish stars Cillian Murphy and Barry Keoghan will go head to head.", + "contentSnippet": "Irish stars Cillian Murphy and Barry Keoghan will go head to head.", + "guid": "b1133222", + "categories": ["Film", "Culture"], + "isoDate": "2024-01-18T12:20:32.000Z" + }, + { + "creator": "Robert Dex and Arts Correspondent", + "date": "2024-01-18T12:19:04+00:00", + "title": "EE Bafta Film Awards 2024: Oppenheimer leads nominations as Killers of the Flower Moon struggles", + "link": "https://www.standard.co.uk/news/uk/ee-bafta-film-awards-2024-nominations-live-b1133209.html", + "pubDate": "Thu, 18 Jan 2024 12:19:04 GMT", + "dc:creator": "Robert Dex and Arts Correspondent", + "dc:date": "2024-01-18T12:19:04+00:00", + "content": "

The nominations for this year's EE Bafta Film Awards have been announced

", + "contentSnippet": "The nominations for this year's EE Bafta Film Awards have been announced", + "guid": "b1133209", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T12:19:04.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2024-01-18T12:14:47+00:00", + "title": "West Ham and Crystal Palace in Kalvin Phillips transfer battle as decision looms", + "link": "https://www.standard.co.uk/sport/football/west-ham-crystal-palace-kalvin-phillips-transfer-b1133211.html", + "pubDate": "Thu, 18 Jan 2024 12:14:47 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2024-01-18T12:14:47+00:00", + "content": "

The Hammers look best-placed to strike a deal for the little-used Manchester City midfielder

", + "contentSnippet": "The Hammers look best-placed to strike a deal for the little-used Manchester City midfielder", + "guid": "b1133211", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T12:14:47.000Z" + }, + { + "creator": "Ross Lydall", + "date": "2024-01-18T12:14:39+00:00", + "title": "Paul Scully claims he was 'best candiate' to defeat Sadiq Khan in London mayoral race", + "link": "https://www.standard.co.uk/news/london/london-mayoral-tories-candiate-paul-scully-sadiq-khan-susan-hall-b1133214.html", + "pubDate": "Thu, 18 Jan 2024 12:14:39 GMT", + "dc:creator": "Ross Lydall", + "dc:date": "2024-01-18T12:14:39+00:00", + "content": "

The former Minister for London felt 'frustration' after exclusion from Tory candidate shortlist

", + "contentSnippet": "The former Minister for London felt 'frustration' after exclusion from Tory candidate shortlist", + "guid": "b1133214", + "categories": ["London", "News"], + "isoDate": "2024-01-18T12:14:39.000Z" + }, + { + "creator": "Katrine Bussey", + "date": "2024-01-18T12:14:19+00:00", + "title": "BBC boss quizzed on \u2018really low\u2019 audience numbers for Scotland channel shows", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/scotland-bbc-bbc-radio-scotland-b1133217.html", + "pubDate": "Thu, 18 Jan 2024 12:14:19 GMT", + "dc:creator": "Katrine Bussey", + "dc:date": "2024-01-18T12:14:19+00:00", + "content": "BBC Scotland director Steve Carson was questioned by MSPs on Holyrood\u2019s Culture Committee.", + "contentSnippet": "BBC Scotland director Steve Carson was questioned by MSPs on Holyrood\u2019s Culture Committee.", + "guid": "b1133217", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-18T12:14:19.000Z" + }, + { + "creator": "Tom Pilgrim", + "date": "2024-01-18T12:09:38+00:00", + "title": "Two men jailed on word of corrupt police officer posthumously cleared", + "link": "https://www.standard.co.uk/news/crime/london-british-transport-police-court-of-appeal-british-rail-transport-b1133216.html", + "pubDate": "Thu, 18 Jan 2024 12:09:38 GMT", + "dc:creator": "Tom Pilgrim", + "dc:date": "2024-01-18T12:09:38+00:00", + "content": "Basil Peterkin\u2019s and Saliah Mehmet\u2019s convictions were quashed at the Court of Appeal.", + "contentSnippet": "Basil Peterkin\u2019s and Saliah Mehmet\u2019s convictions were quashed at the Court of Appeal.", + "guid": "b1133216", + "categories": ["Crime", "News"], + "isoDate": "2024-01-18T12:09:38.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2024-01-18T12:08:07+00:00", + "title": "Peer warns Rwanda Bill marks \u2018step towards totalitarianism\u2019", + "link": "https://www.standard.co.uk/news/politics/rwanda-british-suella-braverman-government-bbc-radio-b1133215.html", + "pubDate": "Thu, 18 Jan 2024 12:08:07 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2024-01-18T12:08:07+00:00", + "content": "The stinging criticism from Lord Carlile is a sign of the depth of opposition the flagship legislation is set to face in the Lords.", + "contentSnippet": "The stinging criticism from Lord Carlile is a sign of the depth of opposition the flagship legislation is set to face in the Lords.", + "guid": "b1133215", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T12:08:07.000Z" + }, + { + "creator": "Evening Standard Comment", + "date": "2024-01-18T12:07:24+00:00", + "title": "OPINION - The Standard View: The Hammersmith Bridge saga has become an international embarrassment", + "link": "https://www.standard.co.uk/comment/hammersmith-bridge-council-transport-for-london-b1133212.html", + "pubDate": "Thu, 18 Jan 2024 12:07:24 GMT", + "dc:creator": "Evening Standard Comment", + "dc:date": "2024-01-18T12:07:24+00:00", + "content": "

Embarrassing, humiliating, a microcosm of why we can\u2019t get anything built in this country. Pick your howl of anguish then treble it: this is the story of Hammersmith Bridge. The crossing was shut in April 2019 by Hammersmith and Fulham council after safety sensors detected \u201cdangerous micro-fractures\u201d in the cast-iron pedestals that hold the suspension system in place. It reopened to cyclists and pedestrians in July 2021, but drivers have had no choice but to divert to Chiswick or Putney.

", + "contentSnippet": "Embarrassing, humiliating, a microcosm of why we can\u2019t get anything built in this country. Pick your howl of anguish then treble it: this is the story of Hammersmith Bridge. The crossing was shut in April 2019 by Hammersmith and Fulham council after safety sensors detected \u201cdangerous micro-fractures\u201d in the cast-iron pedestals that hold the suspension system in place. It reopened to cyclists and pedestrians in July 2021, but drivers have had no choice but to divert to Chiswick or Putney.", + "guid": "b1133212", + "categories": ["Comment"], + "isoDate": "2024-01-18T12:07:24.000Z" + }, + { + "creator": "Jochan Embley and David Smyth", + "date": "2024-01-18T12:04:07+00:00", + "title": "10 of the best and worst music biopics of all time - where does Priscilla rank? ", + "link": "https://www.standard.co.uk/culture/music/music-biopic-movies-best-worst-b701551.html", + "pubDate": "Thu, 18 Jan 2024 12:04:07 GMT", + "dc:creator": "Jochan Embley and David Smyth", + "dc:date": "2024-01-18T12:04:07+00:00", + "content": "

The good, the bad and the ugly \u2014 from award-winning portrayals to family feuds and facial prosthetics

", + "contentSnippet": "The good, the bad and the ugly \u2014 from award-winning portrayals to family feuds and facial prosthetics", + "guid": "b701551", + "categories": ["Music", "Culture"], + "isoDate": "2024-01-18T12:04:07.000Z" + }, + { + "creator": "Hamish MacBain", + "date": "2024-01-18T12:01:03+00:00", + "title": "Mica Paris: 'I had everything, the money and the fame and I was like \u2013 is this it?'", + "link": "https://www.standard.co.uk/culture/theatre/mica-paris-rehab-the-musical-neon-my-one-temptation-b1132395.html", + "pubDate": "Thu, 18 Jan 2024 12:01:03 GMT", + "dc:creator": "Hamish MacBain", + "dc:date": "2024-01-18T12:01:03+00:00", + "content": "

The performer on why she turned her back on fame, getting 5am calls from Prince and her dream to put British soul music on the map

", + "contentSnippet": "The performer on why she turned her back on fame, getting 5am calls from Prince and her dream to put British soul music on the map", + "guid": "b1132395", + "categories": ["Theatre", "Culture"], + "isoDate": "2024-01-18T12:01:03.000Z" + }, + { + "creator": "Rhiannon James", + "date": "2024-01-18T11:58:03+00:00", + "title": "Penny Mordaunt branded \u2018minister for clickbait\u2019 by SNP", + "link": "https://www.standard.co.uk/news/politics/penny-mordaunt-house-of-commons-scotland-stone-tories-b1133210.html", + "pubDate": "Thu, 18 Jan 2024 11:58:03 GMT", + "dc:creator": "Rhiannon James", + "dc:date": "2024-01-18T11:58:03+00:00", + "content": "SNP MP Deirdre Brock questioned if the Leader of the House was considering a new career as a stand-up comedian.", + "contentSnippet": "SNP MP Deirdre Brock questioned if the Leader of the House was considering a new career as a stand-up comedian.", + "guid": "b1133210", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T11:58:03.000Z" + }, + { + "creator": "Sian Baldwin and Ayan Omar", + "date": "2024-01-18T11:55:56+00:00", + "title": "Is it safe to travel to Ecuador? Prosecutor investigating TV studio attack is murdered", + "link": "https://www.standard.co.uk/news/world/ecuador-safe-travel-foreign-office-gangster-drug-lord-escape-b1131437.html", + "pubDate": "Thu, 18 Jan 2024 11:55:56 GMT", + "dc:creator": "Sian Baldwin and Ayan Omar", + "dc:date": "2024-01-18T11:55:56+00:00", + "content": "

C\u00e9sar Su\u00e1rez was leading the\u00a0investigation of the attack on Ecuadorian TV station\u00a0 led by gang members

", + "contentSnippet": "C\u00e9sar Su\u00e1rez was leading the\u00a0investigation of the attack on Ecuadorian TV station\u00a0 led by gang members", + "guid": "b1131437", + "categories": ["World", "News"], + "isoDate": "2024-01-18T11:55:56.000Z" + }, + { + "creator": "George Flood", + "date": "2024-01-18T11:54:53+00:00", + "title": "Transfer news LIVE! Arsenal and Chelsea in Benzema fight; Man Utd learn Vinicius Jr price; Gnonto to West Ham", + "link": "https://www.standard.co.uk/sport/football/transfer-news-live-arsenal-fc-chelsea-tottenham-man-utd-benzema-vinicius-ramos-b1132296.html", + "pubDate": "Thu, 18 Jan 2024 11:54:53 GMT", + "dc:creator": "George Flood", + "dc:date": "2024-01-18T11:54:53+00:00", + "content": "

Latest transfer rumours, gossip and signings from the January window

", + "contentSnippet": "Latest transfer rumours, gossip and signings from the January window", + "guid": "b1132296", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T11:54:53.000Z" + }, + { + "creator": "Ben Hatton", + "date": "2024-01-18T11:52:01+00:00", + "title": "Fujitsu vows to compensate victims of Post Office Horizon IT scandal", + "link": "https://www.standard.co.uk/news/politics/horizon-post-office-japanese-b1133206.html", + "pubDate": "Thu, 18 Jan 2024 11:52:01 GMT", + "dc:creator": "Ben Hatton", + "dc:date": "2024-01-18T11:52:01+00:00", + "content": "The Japanese technology firm offered its \u2018deepest apologies\u2019 to subpostmasters and their families in a fresh statement on Thursday.", + "contentSnippet": "The Japanese technology firm offered its \u2018deepest apologies\u2019 to subpostmasters and their families in a fresh statement on Thursday.", + "guid": "b1133206", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T11:52:01.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2024-01-18T11:49:56+00:00", + "title": "Brentford XI vs Nottingham Forest: Ivan Toney latest, injury update, predicted lineup and confirmed team news", + "link": "https://www.standard.co.uk/sport/football/brentford-xi-vs-nottingham-forest-toney-injury-latest-predicted-lineup-confirmed-team-news-premier-league-2024-b1133205.html", + "pubDate": "Thu, 18 Jan 2024 11:49:56 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2024-01-18T11:49:56+00:00", + "content": "

Star striker returns from eight-month ban

", + "contentSnippet": "Star striker returns from eight-month ban", + "guid": "b1133205", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T11:49:56.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2024-01-18T11:49:36+00:00", + "title": "Posters of Clint Eastwood in 1966 western expected to fetch \u00a340,000 at auction", + "link": "https://www.standard.co.uk/culture/film/clint-eastwood-rome-oscars-andrew-matthews-rocky-b1133202.html", + "pubDate": "Thu, 18 Jan 2024 11:49:36 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2024-01-18T11:49:36+00:00", + "content": "A large-scale poster and three character panels from The Good, The Bad And The Ugly are being auctioned.", + "contentSnippet": "A large-scale poster and three character panels from The Good, The Bad And The Ugly are being auctioned.", + "guid": "b1133202", + "categories": ["Film", "Culture"], + "isoDate": "2024-01-18T11:49:36.000Z" + }, + { + "creator": "Nick Curtis", + "date": "2024-01-18T11:49:13+00:00", + "title": "Cowbois, Royal Court review: this queer subversion of the Wild West is a delight but needs serious reining in", + "link": "https://www.standard.co.uk/culture/theatre/cowbois-royal-court-review-charlie-josephine-b1133031.html", + "pubDate": "Thu, 18 Jan 2024 11:49:13 GMT", + "dc:creator": "Nick Curtis", + "dc:date": "2024-01-18T11:49:13+00:00", + "content": "

Charlie Josephine's play is affirming and charming, but also in need of a bit of 'whoa there' and 'giddy up'

", + "contentSnippet": "Charlie Josephine's play is affirming and charming, but also in need of a bit of 'whoa there' and 'giddy up'", + "guid": "b1133031", + "categories": ["Theatre", "Culture"], + "isoDate": "2024-01-18T11:49:13.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2024-01-18T11:47:05+00:00", + "title": "Jordan Henderson flies out for Ajax medical after agreeing Al-Ettifaq exit", + "link": "https://www.standard.co.uk/sport/football/jordan-henderson-ajax-medical-al-ettifaq-b1133168.html", + "pubDate": "Thu, 18 Jan 2024 11:47:05 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2024-01-18T11:47:05+00:00", + "content": "

England midfielder is set to join the Eredivisie giants on a deal until the summer of 2026

", + "contentSnippet": "England midfielder is set to join the Eredivisie giants on a deal until the summer of 2026", + "guid": "b1133168", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T11:47:05.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2024-01-18T11:46:31+00:00", + "title": "Visual artists need better protection from AI, group warns", + "link": "https://www.standard.co.uk/news/uk/government-b1133203.html", + "pubDate": "Thu, 18 Jan 2024 11:46:31 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2024-01-18T11:46:31+00:00", + "content": "The Design And Artists Copyright Society called for Government action after a survey found that respondents wanted greater protection.", + "contentSnippet": "The Design And Artists Copyright Society called for Government action after a survey found that respondents wanted greater protection.", + "guid": "b1133203", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T11:46:31.000Z" + }, + { + "creator": "Sam Russell", + "date": "2024-01-18T11:45:23+00:00", + "title": "Garden accessories firm wins legal fight with luxury fashion house Louis Vuitton", + "link": "https://www.standard.co.uk/news/crime/lawrence-osborne-louis-vuitton-matthew-williams-sandringham-estate-norfolk-b1133204.html", + "pubDate": "Thu, 18 Jan 2024 11:45:23 GMT", + "dc:creator": "Sam Russell", + "dc:date": "2024-01-18T11:45:23+00:00", + "content": "Married couple Lawrence and Victoria Osborne used their initials to found L V Bespoke in 2020.", + "contentSnippet": "Married couple Lawrence and Victoria Osborne used their initials to found L V Bespoke in 2020.", + "guid": "b1133204", + "categories": ["Crime", "News"], + "isoDate": "2024-01-18T11:45:23.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2024-01-18T11:43:46+00:00", + "title": "Parents need advice on when to send children with mild illnesses to school, say MPs", + "link": "https://www.standard.co.uk/news/education/parents-children-illness-school-absent-off-gp-doctor-mp-b1133199.html", + "pubDate": "Thu, 18 Jan 2024 11:43:46 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2024-01-18T11:43:46+00:00", + "content": "

The chairmen of the Commons Education Committee and Health and Social Care Committee have written to ministers calling for a public awareness campaign

", + "contentSnippet": "The chairmen of the Commons Education Committee and Health and Social Care Committee have written to ministers calling for a public awareness campaign", + "guid": "b1133199", + "categories": ["Education", "News"], + "isoDate": "2024-01-18T11:43:46.000Z" + }, + { + "creator": "Laura Hampson,Lowenna Waters and William Mata", + "date": "2024-01-18T11:41:10+00:00", + "title": "How to keep your dogs and cats warm this week", + "link": "https://www.standard.co.uk/lifestyle/london-life/how-keep-dogs-cats-pets-warm-a3776011.html", + "pubDate": "Thu, 18 Jan 2024 11:41:10 GMT", + "dc:creator": "Laura Hampson,Lowenna Waters and William Mata", + "dc:date": "2024-01-18T11:41:10+00:00", + "content": "

The RSPCA has given guidance about what to do with your pets in freezing weather

", + "contentSnippet": "The RSPCA has given guidance about what to do with your pets in freezing weather", + "guid": "a3776011", + "categories": ["London Life", "Lifestyle"], + "isoDate": "2024-01-18T11:41:10.000Z" + }, + { + "creator": "Ella Kemp", + "date": "2024-01-18T11:40:23+00:00", + "title": "The End We Start review: Jodie Comer is a beacon of light at the end of the world", + "link": "https://www.standard.co.uk/culture/film/the-end-we-start-from-jodie-comer-end-of-the-world-b1113429.html", + "pubDate": "Thu, 18 Jan 2024 11:40:23 GMT", + "dc:creator": "Ella Kemp", + "dc:date": "2024-01-18T11:40:23+00:00", + "content": "

The actor is the beating heart of a film that looks at the momentous decision to love and raise a life in the face of disaster

", + "contentSnippet": "The actor is the beating heart of a film that looks at the momentous decision to love and raise a life in the face of disaster", + "guid": "b1113429", + "categories": ["Film", "Culture"], + "isoDate": "2024-01-18T11:40:23.000Z" + }, + { + "creator": "Tamara Davison", + "date": "2024-01-18T11:37:51+00:00", + "title": "Who kidnapped Denise Huskins? Real story behind new Netflix true-crime series American Nightmare", + "link": "https://www.standard.co.uk/culture/tvfilm/who-kidnapped-denise-huskins-american-nightmare-real-story-netflix-b1133152.html", + "pubDate": "Thu, 18 Jan 2024 11:37:51 GMT", + "dc:creator": "Tamara Davison", + "dc:date": "2024-01-18T11:37:51+00:00", + "content": "

Denise Huskins was kidnapped in 2015, but the truth would only be uncovered months later

", + "contentSnippet": "Denise Huskins was kidnapped in 2015, but the truth would only be uncovered months later", + "guid": "b1133152", + "categories": ["TV", "Culture"], + "isoDate": "2024-01-18T11:37:51.000Z" + }, + { + "creator": "Dominique Hines", + "date": "2024-01-18T11:36:00+00:00", + "title": "Jane Seymour admits she's having 'more passionate' sex than ever at age 72\u00a0", + "link": "https://www.standard.co.uk/showbiz/jane-seymour-romance-sex-life-passion-older-b1133192.html", + "pubDate": "Thu, 18 Jan 2024 11:36:00 GMT", + "dc:creator": "Dominique Hines", + "dc:date": "2024-01-18T11:36:00+00:00", + "content": "

The actress declared: 'Everyone is looking for something that puts blood into a certain area.'

", + "contentSnippet": "The actress declared: 'Everyone is looking for something that puts blood into a certain area.'", + "guid": "b1133192", + "categories": ["Showbiz"], + "isoDate": "2024-01-18T11:36:00.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2024-01-18T11:32:45+00:00", + "title": "Donald Glover spills on chat with Brad Pitt at UK premiere of Mr & Mrs Smith remake", + "link": "https://www.standard.co.uk/showbiz/donald-glover-london-mr-mrs-smith-brad-pitt-amazon-prime-b1133100.html", + "pubDate": "Thu, 18 Jan 2024 11:32:45 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2024-01-18T11:32:45+00:00", + "content": "

Glover visited London with co-star Mary Erskine ahead of the release of Prime Video's spin on the 2005 classic film

", + "contentSnippet": "Glover visited London with co-star Mary Erskine ahead of the release of Prime Video's spin on the 2005 classic film", + "guid": "b1133100", + "categories": ["Showbiz"], + "isoDate": "2024-01-18T11:32:45.000Z" + }, + { + "creator": "Nilima Marshall", + "date": "2024-01-18T11:32:08+00:00", + "title": "Peregrine Moon lander on course to burn up in Earth\u2019s atmosphere", + "link": "https://www.standard.co.uk/news/uk/earth-open-university-cape-canaveral-florida-nasa-b1133130.html", + "pubDate": "Thu, 18 Jan 2024 11:32:08 GMT", + "dc:creator": "Nilima Marshall", + "dc:date": "2024-01-18T11:32:08+00:00", + "content": "The spacecraft is due to re-enter at 9pm UK time.", + "contentSnippet": "The spacecraft is due to re-enter at 9pm UK time.", + "guid": "b1133130", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T11:32:08.000Z" + }, + { + "creator": "Neil Lancefield", + "date": "2024-01-18T11:31:35+00:00", + "title": "Minister ends safeguarding of land on axed HS2 route", + "link": "https://www.standard.co.uk/news/politics/mark-harper-hs2-west-midlands-rishi-sunak-government-b1133190.html", + "pubDate": "Thu, 18 Jan 2024 11:31:35 GMT", + "dc:creator": "Neil Lancefield", + "dc:date": "2024-01-18T11:31:35+00:00", + "content": "Transport Secretary Mark Harper said the move \u2018provides certainty to people along the former route of HS2\u2019.", + "contentSnippet": "Transport Secretary Mark Harper said the move \u2018provides certainty to people along the former route of HS2\u2019.", + "guid": "b1133190", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T11:31:35.000Z" + }, + { + "creator": "Matt Majendie", + "date": "2024-01-18T11:29:44+00:00", + "title": "Emma Raducanu ousted from Australian Open by Wang Yafan after sickness struggles", + "link": "https://www.standard.co.uk/sport/tennis/emma-raducanu-australian-open-sickness-b1133194.html", + "pubDate": "Thu, 18 Jan 2024 11:29:44 GMT", + "dc:creator": "Matt Majendie", + "dc:date": "2024-01-18T11:29:44+00:00", + "content": "

Hopes of an all-British clash with Katie Boulter ended as both players lose in the second round

", + "contentSnippet": "Hopes of an all-British clash with Katie Boulter ended as both players lose in the second round", + "guid": "b1133194", + "categories": ["Tennis", "Sport"], + "isoDate": "2024-01-18T11:29:44.000Z" + }, + { + "creator": "Jordan King", + "date": "2024-01-18T11:27:34+00:00", + "title": "Rwanda bill latest LIVE: Rishi Sunak urges Lords not to 'frustrate will of people' and back deportation flights", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-press-conference-rwanda-bill-downing-street-commons-tory-rebels-b1133155.html", + "pubDate": "Thu, 18 Jan 2024 11:27:34 GMT", + "dc:creator": "Jordan King", + "dc:date": "2024-01-18T11:27:34+00:00", + "content": "

Rishi Sunak appealed for the House of Lords to \u201cdo the right thing\u201d and vote his Rwanda bill through at a press conference on Thursday morning.

", + "contentSnippet": "Rishi Sunak appealed for the House of Lords to \u201cdo the right thing\u201d and vote his Rwanda bill through at a press conference on Thursday morning.", + "guid": "b1133155", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T11:27:34.000Z" + }, + { + "creator": "Jitendra Joshi", + "date": "2024-01-18T11:27:19+00:00", + "title": "Rishi Sunak warns House of Lords 'don't defy will of people' over his Rwanda flights plan", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-downing-street-rwanda-house-of-lords-suella-braverman-b1133116.html", + "pubDate": "Thu, 18 Jan 2024 11:27:19 GMT", + "dc:creator": "Jitendra Joshi", + "dc:date": "2024-01-18T11:27:19+00:00", + "content": "

But Prime Minister reportedly faces letters of no confidence from several Conservative MPs

", + "contentSnippet": "But Prime Minister reportedly faces letters of no confidence from several Conservative MPs", + "guid": "b1133116", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T11:27:19.000Z" + }, + { + "creator": "Nicholas Cecil", + "date": "2024-01-18T11:22:46+00:00", + "title": "Lee Anderson: I didn't vote against Rwanda Bill after Labour MPs 'sniggered and laughed' at me", + "link": "https://www.standard.co.uk/news/politics/lee-anderson-rwanda-vote-commons-tory-rebels-labour-mps-dumb-and-dumber-b1133149.html", + "pubDate": "Thu, 18 Jan 2024 11:22:46 GMT", + "dc:creator": "Nicholas Cecil", + "dc:date": "2024-01-18T11:22:46+00:00", + "content": "

'Who knew Lee Anderson was such a delicate flower?,' jibed Liberal Democrat home affairs spokesperson Alistair Carmichael

", + "contentSnippet": "'Who knew Lee Anderson was such a delicate flower?,' jibed Liberal Democrat home affairs spokesperson Alistair Carmichael", + "guid": "b1133149", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T11:22:46.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2024-01-18T11:22:24+00:00", + "title": "Bournemouth vs Liverpool: Prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/bournemouth-vs-liverpool-fc-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2024-preview-b1133017.html", + "pubDate": "Thu, 18 Jan 2024 11:22:24 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2024-01-18T11:22:24+00:00", + "content": "

Reds could extend lead at the top of the Premier League

", + "contentSnippet": "Reds could extend lead at the top of the Premier League", + "guid": "b1133017", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T11:22:24.000Z" + }, + { + "creator": "Christopher McKeon", + "date": "2024-01-18T11:22:15+00:00", + "title": "Sunak insists his plan is working despite surprise hike in inflation", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-prime-minister-britain-people-inflation-b1133198.html", + "pubDate": "Thu, 18 Jan 2024 11:22:15 GMT", + "dc:creator": "Christopher McKeon", + "dc:date": "2024-01-18T11:22:15+00:00", + "content": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", + "contentSnippet": "The Prime Minister said his priority would be cutting taxes \u2018when it\u2019s responsible to do so\u2019.", + "guid": "b1133198", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T11:22:15.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2024-01-18T11:21:31+00:00", + "title": "Liverpool XI vs Bournemouth: Predicted lineup, confirmed team news and injury latest for Premier League", + "link": "https://www.standard.co.uk/sport/football/liverpool-fc-xi-vs-bournemouth-predicted-lineup-confirmed-team-news-injury-latest-premier-league-2024-b1133191.html", + "pubDate": "Thu, 18 Jan 2024 11:21:31 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2024-01-18T11:21:31+00:00", + "content": "

Reds without host of big names to trip to south coast

", + "contentSnippet": "Reds without host of big names to trip to south coast", + "guid": "b1133191", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T11:21:31.000Z" + }, + { + "creator": "Holly Williams", + "date": "2024-01-18T11:20:28+00:00", + "title": "Naked Wines cutting jobs as sales continue to slide", + "link": "https://www.standard.co.uk/business/business-news/naked-wines-cutting-jobs-as-sales-continue-to-slide-b1133186.html", + "pubDate": "Thu, 18 Jan 2024 11:20:28 GMT", + "dc:creator": "Holly Williams", + "dc:date": "2024-01-18T11:20:28+00:00", + "content": "The online wine firm said jobs were being axed across \u2018all levels of the organisation\u2019 under plans to save another \u00a37 million a year.", + "contentSnippet": "The online wine firm said jobs were being axed across \u2018all levels of the organisation\u2019 under plans to save another \u00a37 million a year.", + "guid": "b1133186", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-18T11:20:28.000Z" + }, + { + "creator": "Ben Hatton", + "date": "2024-01-18T11:20:01+00:00", + "title": "Fujitsu will not bid for Government contracts during Horizon inquiry \u2013 minister", + "link": "https://www.standard.co.uk/news/politics/david-davis-japanese-cabinet-office-government-commons-b1133177.html", + "pubDate": "Thu, 18 Jan 2024 11:20:01 GMT", + "dc:creator": "Ben Hatton", + "dc:date": "2024-01-18T11:20:01+00:00", + "content": "Alex Burghart told the Commons the Japanese technology company has voluntarily undertaken not to seek contracts.", + "contentSnippet": "Alex Burghart told the Commons the Japanese technology company has voluntarily undertaken not to seek contracts.", + "guid": "b1133177", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T11:20:01.000Z" + }, + { + "creator": "Charlotte McLaughlin", + "date": "2024-01-18T11:19:31+00:00", + "title": "Inquiry into AI and impartiality in the media launched", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/house-of-lords-government-b1133174.html", + "pubDate": "Thu, 18 Jan 2024 11:19:31 GMT", + "dc:creator": "Charlotte McLaughlin", + "dc:date": "2024-01-18T11:19:31+00:00", + "content": "The deadline to submit evidence is February 12.", + "contentSnippet": "The deadline to submit evidence is February 12.", + "guid": "b1133174", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-18T11:19:31.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-18T11:19:25+00:00", + "title": "Best plus-size lingerie: 14 sexy styles for curvy women ", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/lingerie/best-plus-size-lingerie-online-a3757641.html", + "pubDate": "Thu, 18 Jan 2024 11:19:25 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-18T11:19:25+00:00", + "content": "

From bras to\u00a0babydolls, our edit of the sexiest underwear to have you feeling your foxiest

", + "contentSnippet": "From bras to\u00a0babydolls, our edit of the sexiest underwear to have you feeling your foxiest", + "guid": "a3757641", + "categories": ["Lingerie", "Fashion", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T11:19:25.000Z" + }, + { + "creator": "Jonathan McCambridge", + "date": "2024-01-18T11:18:49+00:00", + "title": "Unions warn of escalating action as thousands strike across Northern Ireland", + "link": "https://www.standard.co.uk/business/business-news/unions-warn-of-escalating-action-as-thousands-strike-across-northern-ireland-b1133197.html", + "pubDate": "Thu, 18 Jan 2024 11:18:49 GMT", + "dc:creator": "Jonathan McCambridge", + "dc:date": "2024-01-18T11:18:49+00:00", + "content": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", + "contentSnippet": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", + "guid": "b1133197", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-18T11:18:49.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-18T11:18:38+00:00", + "title": "Red Sea shipping problems have \u2018limited impact\u2019 on products \u2013 Poundland owner", + "link": "https://www.standard.co.uk/business/business-news/red-sea-shipping-problems-have-limited-impact-on-products-poundland-owner-b1133161.html", + "pubDate": "Thu, 18 Jan 2024 11:18:38 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-18T11:18:38+00:00", + "content": "Global shipping has been forced to revert to its ancient routes as the Houthi group started hitting cargo ships.", + "contentSnippet": "Global shipping has been forced to revert to its ancient routes as the Houthi group started hitting cargo ships.", + "guid": "b1133161", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-18T11:18:38.000Z" + }, + { + "creator": "Rod Minchin", + "date": "2024-01-18T11:18:18+00:00", + "title": "Seal has plastic ring removed from its neck after six years of tracking", + "link": "https://www.standard.co.uk/news/uk/commuter-seal-cornwall-british-british-divers-marine-life-rescue-b1133170.html", + "pubDate": "Thu, 18 Jan 2024 11:18:18 GMT", + "dc:creator": "Rod Minchin", + "dc:date": "2024-01-18T11:18:18+00:00", + "content": "The male grey seal, named Commuter, was spotted off the north coast of Cornwall by wildlife experts.", + "contentSnippet": "The male grey seal, named Commuter, was spotted off the north coast of Cornwall by wildlife experts.", + "guid": "b1133170", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T11:18:18.000Z" + }, + { + "creator": "Ross Lydall", + "date": "2024-01-18T11:15:34+00:00", + "title": "Hammersmith Bridge: Thames crossing repair bill soars to \u00a3250million raising fears it won't ever reopen to traffic ", + "link": "https://www.standard.co.uk/news/london/hammersmith-bridge-repair-cost-when-will-it-reopen-to-traffic-b1133180.html", + "pubDate": "Thu, 18 Jan 2024 11:15:34 GMT", + "dc:creator": "Ross Lydall", + "dc:date": "2024-01-18T11:15:34+00:00", + "content": "

The latest estimate is up about \u00a3100million on previous expectations

", + "contentSnippet": "The latest estimate is up about \u00a3100million on previous expectations", + "guid": "b1133180", + "categories": ["London", "News"], + "isoDate": "2024-01-18T11:15:34.000Z" + }, + { + "creator": "Laura Elston", + "date": "2024-01-18T11:14:52+00:00", + "title": "Princess of Wales wished speedy recovery from surgery as she spends third day in hospital", + "link": "https://www.standard.co.uk/news/uk/kate-middleton-princess-of-wales-surgery-hospital-recovery-b1133182.html", + "pubDate": "Thu, 18 Jan 2024 11:14:52 GMT", + "dc:creator": "Laura Elston", + "dc:date": "2024-01-18T11:14:52+00:00", + "content": "

The princess was admitted on Tuesday and is not expected back on official duties until after Easter

", + "contentSnippet": "The princess was admitted on Tuesday and is not expected back on official duties until after Easter", + "guid": "b1133182", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T11:14:52.000Z" + }, + { + "creator": "Maddy Mussen", + "date": "2024-01-18T11:14:13+00:00", + "title": "Are Gen Z wrong to romanticise working class culture on TikTok? ", + "link": "https://www.standard.co.uk/lifestyle/tiktok-working-class-charvas-gen-z-b1130383.html", + "pubDate": "Thu, 18 Jan 2024 11:14:13 GMT", + "dc:creator": "Maddy Mussen", + "dc:date": "2024-01-18T11:14:13+00:00", + "content": "

The app is packed with trendy young types sinking pints at Wetherspoons, chomping down on fry ups and calling themselves 'charvas' \u2014 is this cosplaying offensive, or the ushering in of a new age? Maddy Mussen investigates

", + "contentSnippet": "The app is packed with trendy young types sinking pints at Wetherspoons, chomping down on fry ups and calling themselves 'charvas' \u2014 is this cosplaying offensive, or the ushering in of a new age? Maddy Mussen investigates", + "guid": "b1130383", + "categories": ["Lifestyle"], + "isoDate": "2024-01-18T11:14:13.000Z" + }, + { + "creator": "Ian Jones", + "date": "2024-01-18T11:13:34+00:00", + "title": "Flu patient numbers in England fall for first time this winter", + "link": "https://www.standard.co.uk/news/health/england-stephen-powis-nhs-ian-jones-b1133179.html", + "pubDate": "Thu, 18 Jan 2024 11:13:34 GMT", + "dc:creator": "Ian Jones", + "dc:date": "2024-01-18T11:13:34+00:00", + "content": "Health chiefs have warned the current cold snap could see a jump in people needing care.", + "contentSnippet": "Health chiefs have warned the current cold snap could see a jump in people needing care.", + "guid": "b1133179", + "categories": ["Health", "News"], + "isoDate": "2024-01-18T11:13:34.000Z" + }, + { + "creator": "Ross Lydall", + "date": "2024-01-18T11:10:34+00:00", + "title": "Sadiq Khan reveals \u00a3500million pre-election spending splurge with more cash for police and Tube toilets ", + "link": "https://www.standard.co.uk/news/london/sadiq-khan-budget-city-hall-met-police-tube-mayoral-election-susan-hall-b1133141.html", + "pubDate": "Thu, 18 Jan 2024 11:10:34 GMT", + "dc:creator": "Ross Lydall", + "dc:date": "2024-01-18T11:10:34+00:00", + "content": "

Liberal Democrats' Caroline Pidgeon says mayor has 'magically' found 'pots of money that only a few weeks ago he was denying existed'

", + "contentSnippet": "Liberal Democrats' Caroline Pidgeon says mayor has 'magically' found 'pots of money that only a few weeks ago he was denying existed'", + "guid": "b1133141", + "categories": ["London", "News"], + "isoDate": "2024-01-18T11:10:34.000Z" + }, + { + "creator": "George Flood", + "date": "2024-01-18T11:09:47+00:00", + "title": "Senegal vs Cameroon: AFCON prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/senegal-vs-cameroon-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-afcon-2024-preview-b1132700.html", + "pubDate": "Thu, 18 Jan 2024 11:09:47 GMT", + "dc:creator": "George Flood", + "dc:date": "2024-01-18T11:09:47+00:00", + "content": "

The defending champions will hope to make it back-to-back victories against the five-time winners

", + "contentSnippet": "The defending champions will hope to make it back-to-back victories against the five-time winners", + "guid": "b1132700", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T11:09:47.000Z" + }, + { + "creator": "Claudia Cockerell and Ethan Croft", + "date": "2024-01-18T11:09:09+00:00", + "title": "From Glasto tickets to designer handbags: All the freebees MPs got last year", + "link": "https://www.standard.co.uk/news/londoners-diary/glastonbury-tickets-madonna-lana-del-rey-blur-billy-joel-freebees-mps-register-of-interests-b1132884.html", + "pubDate": "Thu, 18 Jan 2024 11:09:09 GMT", + "dc:creator": "Claudia Cockerell and Ethan Croft", + "dc:date": "2024-01-18T11:09:09+00:00", + "content": "

Looking to get Lana Del Rey tickets? It's easy, just become an MP

", + "contentSnippet": "Looking to get Lana Del Rey tickets? It's easy, just become an MP", + "guid": "b1132884", + "categories": ["Diary", "News"], + "isoDate": "2024-01-18T11:09:09.000Z" + }, + { + "creator": "Jimi Famurewa", + "date": "2024-01-18T11:06:53+00:00", + "title": "Jimi Famurewa reviews Kebhouze: If this were a TV show, it would be Squid Game", + "link": "https://www.standard.co.uk/going-out/restaurants/kebhouze-london-review-oxford-street-b1132932.html", + "pubDate": "Thu, 18 Jan 2024 11:06:53 GMT", + "dc:creator": "Jimi Famurewa", + "dc:date": "2024-01-18T11:06:53+00:00", + "content": "

I left thoroughly depressed, says Jimi Famurewa, about what this place says about the decidedly \u201cthis\u2019ll do\u201d future of mainstream, TikTok-age dining

", + "contentSnippet": "I left thoroughly depressed, says Jimi Famurewa, about what this place says about the decidedly \u201cthis\u2019ll do\u201d future of mainstream, TikTok-age dining", + "guid": "b1132932", + "categories": ["Restaurants", "Going Out"], + "isoDate": "2024-01-18T11:06:53.000Z" + }, + { + "creator": "William Mata,Sian Baldwin,Nuray Bulbul and Tamara Davison", + "date": "2024-01-18T11:06:02+00:00", + "title": "London mayoral election 2024: Who are the candidates taking on Sadiq Khan?", + "link": "https://www.standard.co.uk/news/politics/london-mayoral-election-2024-candidates-tory-labour-lib-dem-b1087397.html", + "pubDate": "Thu, 18 Jan 2024 11:06:02 GMT", + "dc:creator": "William Mata,Sian Baldwin,Nuray Bulbul and Tamara Davison", + "dc:date": "2024-01-18T11:06:02+00:00", + "content": "

The election will be held in May 2024, simultaneously with elections to the London Assembly and local elections

", + "contentSnippet": "The election will be held in May 2024, simultaneously with elections to the London Assembly and local elections", + "guid": "b1087397", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T11:06:02.000Z" + }, + { + "creator": "Simon English", + "date": "2024-01-18T11:05:13+00:00", + "title": "Maybe banking is harder than it looks", + "link": "https://www.standard.co.uk/business/banking-supermarkets-sainsburys-tesco-banks-deposits-loans-lending-savings-accounts-b1133181.html", + "pubDate": "Thu, 18 Jan 2024 11:05:13 GMT", + "dc:creator": "Simon English", + "dc:date": "2024-01-18T11:05:13+00:00", + "content": "

City Comment: Supermarkets tried and failed to disrupt the sector

", + "contentSnippet": "City Comment: Supermarkets tried and failed to disrupt the sector", + "guid": "b1133181", + "categories": ["Business"], + "isoDate": "2024-01-18T11:05:13.000Z" + }, + { + "creator": "Katrine Bussey", + "date": "2024-01-18T11:04:54+00:00", + "title": "TV drama on Eljamel could make ministers sit up and listen, campaigner suggests", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/humza-yousaf-scottish-government-post-office-liz-smith-scottish-b1133189.html", + "pubDate": "Thu, 18 Jan 2024 11:04:54 GMT", + "dc:creator": "Katrine Bussey", + "dc:date": "2024-01-18T11:04:54+00:00", + "content": "Jules Rose said the disgraced neurosurgeon\u2019s patients have been approached by production companies with a view to making a programme.", + "contentSnippet": "Jules Rose said the disgraced neurosurgeon\u2019s patients have been approached by production companies with a view to making a programme.", + "guid": "b1133189", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-18T11:04:54.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2024-01-18T11:02:29+00:00", + "title": "Senegal vs Cameroon lineups: Predicted XIs, confirmed team news and injury latest for AFCON game", + "link": "https://www.standard.co.uk/sport/football/senegal-vs-cameroon-lineups-predicted-xi-confirmed-team-news-injury-latest-afcon-2024-b1133183.html", + "pubDate": "Thu, 18 Jan 2024 11:02:29 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2024-01-18T11:02:29+00:00", + "content": "

Clash of the titans in Group C

", + "contentSnippet": "Clash of the titans in Group C", + "guid": "b1133183", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T11:02:29.000Z" + }, + { + "creator": "Nicky Rampley-Clarke", + "date": "2024-01-18T11:02:02+00:00", + "title": "Best men\u2019s shirt brands for 2024: Smart and casual shirts to refresh your wardrobe", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/mens/best-shirt-brands-for-men-formal-casual-b1007115.html", + "pubDate": "Thu, 18 Jan 2024 11:02:02 GMT", + "dc:creator": "Nicky Rampley-Clarke", + "dc:date": "2024-01-18T11:02:02+00:00", + "content": "

The sartorial guide for every man about town

", + "contentSnippet": "The sartorial guide for every man about town", + "guid": "b1007115", + "categories": ["Men's", "Fashion", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T11:02:02.000Z" + }, + { + "creator": "Robbie Griffiths", + "date": "2024-01-18T11:00:46+00:00", + "title": "The Princess of Wales's health history revealed, as she recovers from abdominal surgery", + "link": "https://www.standard.co.uk/lifestyle/princess-of-wales-surgery-health-history-sickness-scar-b1133164.html", + "pubDate": "Thu, 18 Jan 2024 11:00:46 GMT", + "dc:creator": "Robbie Griffiths", + "dc:date": "2024-01-18T11:00:46+00:00", + "content": "

From Kate's debilitating morning sickness to the three-inch scar on her head, Robbie Griffiths runs through the future Queen's medical records

", + "contentSnippet": "From Kate's debilitating morning sickness to the three-inch scar on her head, Robbie Griffiths runs through the future Queen's medical records", + "guid": "b1133164", + "categories": ["Lifestyle"], + "isoDate": "2024-01-18T11:00:46.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-18T10:59:16+00:00", + "title": "Flutter loses out on US football results, but shares soar", + "link": "https://www.standard.co.uk/business/business-news/flutter-loses-out-on-us-football-results-but-shares-soar-b1133185.html", + "pubDate": "Thu, 18 Jan 2024 10:59:16 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-18T10:59:16+00:00", + "content": "The business said that \u2018customer friendly\u2019 sports results had cost it \u00a3270 million in the US in the fourth quarter.", + "contentSnippet": "The business said that \u2018customer friendly\u2019 sports results had cost it \u00a3270 million in the US in the fourth quarter.", + "guid": "b1133185", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-18T10:59:16.000Z" + }, + { + "creator": "Peter Bevan", + "date": "2024-01-18T10:59:07+00:00", + "title": "Best gifts for dad: Unique presents for your father", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/mens/best-useful-unique-gifts-dad-father-b1125586.html", + "pubDate": "Thu, 18 Jan 2024 10:59:07 GMT", + "dc:creator": "Peter Bevan", + "dc:date": "2024-01-18T10:59:07+00:00", + "content": "

From traditional gents to the modern man, these gifts cover all the bases

", + "contentSnippet": "From traditional gents to the modern man, these gifts cover all the bases", + "guid": "b1125586", + "categories": ["Men's", "Fashion", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T10:59:07.000Z" + }, + { + "creator": "Pa Reporters", + "date": "2024-01-18T10:59:04+00:00", + "title": "In Pictures: Cold snap brings snow and ice to many parts of the UK", + "link": "https://www.standard.co.uk/news/environment/scotland-cambridgeshire-tynemouth-truro-north-yorkshire-b1133187.html", + "pubDate": "Thu, 18 Jan 2024 10:59:04 GMT", + "dc:creator": "Pa Reporters", + "dc:date": "2024-01-18T10:59:04+00:00", + "content": "Wednesday was the UK\u2019s coldest night of the winter so far.", + "contentSnippet": "Wednesday was the UK\u2019s coldest night of the winter so far.", + "guid": "b1133187", + "categories": ["Environment", "News"], + "isoDate": "2024-01-18T10:59:04.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2024-01-18T10:57:07+00:00", + "title": "Rishi Sunak urges Lords to \u2018do the right thing\u2019 and back Rwanda plan", + "link": "https://www.standard.co.uk/news/politics/rishi-sunak-house-of-lords-prime-minister-downing-street-supreme-court-b1133171.html", + "pubDate": "Thu, 18 Jan 2024 10:57:07 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2024-01-18T10:57:07+00:00", + "content": "The Prime Minister gave a press conference in Downing Street on Thursday.", + "contentSnippet": "The Prime Minister gave a press conference in Downing Street on Thursday.", + "guid": "b1133171", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T10:57:07.000Z" + }, + { + "creator": "Zo\u00eb Phillimore", + "date": "2024-01-18T10:56:02+00:00", + "title": "Best weighted blankets for kids: How to choose for your child", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/home-accessories/best-weighted-blankets-for-kids-b1029206.html", + "pubDate": "Thu, 18 Jan 2024 10:56:02 GMT", + "dc:creator": "Zo\u00eb Phillimore", + "dc:date": "2024-01-18T10:56:02+00:00", + "content": "

Snuggly blankets that can help reduce anxiety

", + "contentSnippet": "Snuggly blankets that can help reduce anxiety", + "guid": "b1029206", + "categories": [ + "Home Accessories", + "Home & Garden", + "ES Best Home", + "Shopping" + ], + "isoDate": "2024-01-18T10:56:02.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2024-01-18T10:53:49+00:00", + "title": "Best gifts for teenagers 2024: unique, practical and stylish options ", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/accessories/best-christmas-gifts-for-teenagers-b1105538.html", + "pubDate": "Thu, 18 Jan 2024 10:53:49 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2024-01-18T10:53:49+00:00", + "content": "

Impress your teens and tweens with the coolest presents

", + "contentSnippet": "Impress your teens and tweens with the coolest presents", + "guid": "b1105538", + "categories": ["Accessories", "Fashion", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T10:53:49.000Z" + }, + { + "creator": "Sami Quadri", + "date": "2024-01-18T10:53:45+00:00", + "title": "Man pushed onto tracks at Westbourne Park Tube station ", + "link": "https://www.standard.co.uk/news/london/man-pushed-tracks-tube-west-london-westbourne-park-british-transport-police-b1133166.html", + "pubDate": "Thu, 18 Jan 2024 10:53:45 GMT", + "dc:creator": "Sami Quadri", + "dc:date": "2024-01-18T10:53:45+00:00", + "content": "

The man was waiting on an eastbound platform when he was approached

", + "contentSnippet": "The man was waiting on an eastbound platform when he was approached", + "guid": "b1133166", + "categories": ["London", "News"], + "isoDate": "2024-01-18T10:53:45.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2024-01-18T10:52:11+00:00", + "title": "Karim Benzema puts Premier League on alert as Arsenal and Chelsea hunt new striker", + "link": "https://www.standard.co.uk/sport/football/karim-benzema-arsenal-chelsea-fc-transfer-b1133178.html", + "pubDate": "Thu, 18 Jan 2024 10:52:11 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2024-01-18T10:52:11+00:00", + "content": "

Real Madrid icon is unhappy in Saudi Arabia and believes England move is possible this month

", + "contentSnippet": "Real Madrid icon is unhappy in Saudi Arabia and believes England move is possible this month", + "guid": "b1133178", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T10:52:11.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-18T10:46:42+00:00", + "title": "Best letterbox gifts to send to loved ones: Cocktail kits, charcuterie and more", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/best-letterbox-gifts-b1123573.html", + "pubDate": "Thu, 18 Jan 2024 10:46:42 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-18T10:46:42+00:00", + "content": "

It turns out good things really do come in small packages

", + "contentSnippet": "It turns out good things really do come in small packages", + "guid": "b1123573", + "categories": ["Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T10:46:42.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2024-01-18T10:46:27+00:00", + "title": "Best stair runners and carpets to step up your interior decorating game", + "link": "https://www.standard.co.uk/shopping/esbest/home-garden/best-stair-runners-carpet-b1132447.html", + "pubDate": "Thu, 18 Jan 2024 10:46:27 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2024-01-18T10:46:27+00:00", + "content": "

Take your homeware to new heights

", + "contentSnippet": "Take your homeware to new heights", + "guid": "b1132447", + "categories": ["Home & Garden", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T10:46:27.000Z" + }, + { + "creator": "William Mata", + "date": "2024-01-18T10:44:17+00:00", + "title": "How to get the cheapest UK train tickets, as research finds machines charge double online price", + "link": "https://www.standard.co.uk/news/transport/how-get-cheapest-uk-train-tickets-machines-app-b1133172.html", + "pubDate": "Thu, 18 Jan 2024 10:44:17 GMT", + "dc:creator": "William Mata", + "dc:date": "2024-01-18T10:44:17+00:00", + "content": "

The 12-week sweet spot for booking train tickets online

", + "contentSnippet": "The 12-week sweet spot for booking train tickets online", + "guid": "b1133172", + "categories": ["Transport", "News"], + "isoDate": "2024-01-18T10:44:17.000Z" + }, + { + "creator": "August Graham", + "date": "2024-01-18T10:42:00+00:00", + "title": "Shares plummet by a third as Watches of Switzerland slashes outlook", + "link": "https://www.standard.co.uk/business/business-news/shares-plummet-by-a-third-as-watches-of-switzerland-slashes-outlook-b1133176.html", + "pubDate": "Thu, 18 Jan 2024 10:42:00 GMT", + "dc:creator": "August Graham", + "dc:date": "2024-01-18T10:42:00+00:00", + "content": "Revenue is expected to grow at a quarter of the pace previously guided, the business said after a tough Christmas.", + "contentSnippet": "Revenue is expected to grow at a quarter of the pace previously guided, the business said after a tough Christmas.", + "guid": "b1133176", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-18T10:42:00.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2024-01-18T10:41:29+00:00", + "title": "Best oil for scars to care for your skin after surgery or injury", + "link": "https://www.standard.co.uk/shopping/esbest/beauty/skincare/best-oil-for-scars-b1131932.html", + "pubDate": "Thu, 18 Jan 2024 10:41:29 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2024-01-18T10:41:29+00:00", + "content": "

Nourish your skin and improve its elasticity over time

", + "contentSnippet": "Nourish your skin and improve its elasticity over time", + "guid": "b1131932", + "categories": ["Skincare", "Beauty", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T10:41:29.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-18T10:40:23+00:00", + "title": "Best Valentine\u2019s supermarket meal deals for 2024 from Waitrose, Morrisons and more", + "link": "https://www.standard.co.uk/shopping/esbest/valentines-day/best-valentines-day-supermarket-meal-deals-b1132246.html", + "pubDate": "Thu, 18 Jan 2024 10:40:23 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-18T10:40:23+00:00", + "content": "

A homecooked meal trumps a stuffy restaurant, any day - but especially on February 14

", + "contentSnippet": "A homecooked meal trumps a stuffy restaurant, any day - but especially on February 14", + "guid": "b1132246", + "categories": ["Valentine's Day", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T10:40:23.000Z" + }, + { + "creator": "Max McLean", + "date": "2024-01-18T10:40:12+00:00", + "title": "Surrey man, 36, is first with a pacemaker to take on World\u2019s Toughest Row", + "link": "https://www.standard.co.uk/news/uk/surrey-world-crossfit-atlantic-spain-b1133175.html", + "pubDate": "Thu, 18 Jan 2024 10:40:12 GMT", + "dc:creator": "Max McLean", + "dc:date": "2024-01-18T10:40:12+00:00", + "content": "Elliot Awin said he hopes to show people that \u2018you can still do stuff\u2019 after having a pacemaker fitted.", + "contentSnippet": "Elliot Awin said he hopes to show people that \u2018you can still do stuff\u2019 after having a pacemaker fitted.", + "guid": "b1133175", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T10:40:12.000Z" + }, + { + "creator": "Harry Stedman and Sami Quadri", + "date": "2024-01-18T10:39:44+00:00", + "title": "London weather: Temperatures plunge to -6C in capital as forecasters issue weekend storm warning ", + "link": "https://www.standard.co.uk/news/london/weather-forecast-met-office-cold-ice-snow-storm-temperatures-b1133122.html", + "pubDate": "Thu, 18 Jan 2024 10:39:44 GMT", + "dc:creator": "Harry Stedman and Sami Quadri", + "dc:date": "2024-01-18T10:39:44+00:00", + "content": "

Yellow ice warning in place over south-east England until 10am on Thursday

", + "contentSnippet": "Yellow ice warning in place over south-east England until 10am on Thursday", + "guid": "b1133122", + "categories": ["London", "News"], + "isoDate": "2024-01-18T10:39:44.000Z" + }, + { + "creator": "Alan Jones", + "date": "2024-01-18T10:39:39+00:00", + "title": "Steel unions meeting Tata for talks over future of company", + "link": "https://www.standard.co.uk/business/business-news/steel-unions-meeting-tata-for-talks-over-future-of-company-b1133104.html", + "pubDate": "Thu, 18 Jan 2024 10:39:39 GMT", + "dc:creator": "Alan Jones", + "dc:date": "2024-01-18T10:39:39+00:00", + "content": "There have been fears of heavy job losses, especially at the plant in Port Talbot.", + "contentSnippet": "There have been fears of heavy job losses, especially at the plant in Port Talbot.", + "guid": "b1133104", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-18T10:39:39.000Z" + }, + { + "creator": "John Dunne", + "date": "2024-01-18T10:38:11+00:00", + "title": "Burglar in \u00a326m raid on Tamara Ecclestone's Kensington mansion 'freed from jail after two years'", + "link": "https://www.standard.co.uk/news/crime/tamara-eccelstone-burglary-kensington-london-alessandro-donati-prison-release-b1133140.html", + "pubDate": "Thu, 18 Jan 2024 10:38:11 GMT", + "dc:creator": "John Dunne", + "dc:date": "2024-01-18T10:38:11+00:00", + "content": "

Alessandro Donati was given an eight-year sentence in November 2021 for ransacking celebrity homes

", + "contentSnippet": "Alessandro Donati was given an eight-year sentence in November 2021 for ransacking celebrity homes", + "guid": "b1133140", + "categories": ["Crime", "News"], + "isoDate": "2024-01-18T10:38:11.000Z" + }, + { + "creator": "Matt Majendie", + "date": "2024-01-18T10:38:04+00:00", + "title": "Australian Open: Cameron Norrie survives scare from Italian qualifier to reach third round", + "link": "https://www.standard.co.uk/sport/tennis/cameron-norrie-australian-open-b1133123.html", + "pubDate": "Thu, 18 Jan 2024 10:38:04 GMT", + "dc:creator": "Matt Majendie", + "dc:date": "2024-01-18T10:38:04+00:00", + "content": "

Giulio Zeppieri gives the British No1 a real fright before being defeated in Melbourne

", + "contentSnippet": "Giulio Zeppieri gives the British No1 a real fright before being defeated in Melbourne", + "guid": "b1133123", + "categories": ["Tennis", "Sport"], + "isoDate": "2024-01-18T10:38:04.000Z" + }, + { + "creator": "Jonathan McCambridge", + "date": "2024-01-18T10:37:25+00:00", + "title": "Northern Ireland\u2019s public sector strikes \u2013 who is taking action and why", + "link": "https://www.standard.co.uk/news/uk/northern-ireland-chris-heatonharris-stormont-workers-dup-b1133173.html", + "pubDate": "Thu, 18 Jan 2024 10:37:25 GMT", + "dc:creator": "Jonathan McCambridge", + "dc:date": "2024-01-18T10:37:25+00:00", + "content": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", + "contentSnippet": "An estimated 150,000 public sector workers are taking part in the walkouts over pay.", + "guid": "b1133173", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T10:37:25.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2024-01-18T10:37:08+00:00", + "title": "Best patchwork jeans for serving hippie Sixties style", + "link": "https://www.standard.co.uk/shopping/esbest/fashion/best-patchwork-jeans-b1127757.html", + "pubDate": "Thu, 18 Jan 2024 10:37:08 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2024-01-18T10:37:08+00:00", + "content": "

Peace, love and patchwork jeans

", + "contentSnippet": "Peace, love and patchwork jeans", + "guid": "b1127757", + "categories": ["Fashion", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T10:37:08.000Z" + }, + { + "creator": "Andrew Williams", + "date": "2024-01-18T10:37:08+00:00", + "title": "Google Maps can now stay connected in tunnels thanks to latest update \u2013 here's how to turn on the new setting", + "link": "https://www.standard.co.uk/news/tech/google-maps-stay-connected-tunnels-bluetooth-underground-setting-b1133159.html", + "pubDate": "Thu, 18 Jan 2024 10:37:08 GMT", + "dc:creator": "Andrew Williams", + "dc:date": "2024-01-18T10:37:08+00:00", + "content": "

Google Maps can now interface with Bluetooth beacons in tunnels to retain signal underground

", + "contentSnippet": "Google Maps can now interface with Bluetooth beacons in tunnels to retain signal underground", + "guid": "b1133159", + "categories": ["Tech", "News"], + "isoDate": "2024-01-18T10:37:08.000Z" + }, + { + "creator": "Dr Andrew Jenkinson ", + "date": "2024-01-18T10:34:05+00:00", + "title": "How your diet might be messing with the body's weight control centre", + "link": "https://www.standard.co.uk/lifestyle/wellness/leptin-hormone-weight-control-centre-diet-ultra-processed-foods-b1130026.html", + "pubDate": "Thu, 18 Jan 2024 10:34:05 GMT", + "dc:creator": "Dr Andrew Jenkinson ", + "dc:date": "2024-01-18T10:34:05+00:00", + "content": "

Never heard of leptin? Author Dr Andrew Jenkinson explains the vital role of the weight control hormone and the effects that your favourite snacks might be having on it

", + "contentSnippet": "Never heard of leptin? Author Dr Andrew Jenkinson explains the vital role of the weight control hormone and the effects that your favourite snacks might be having on it", + "guid": "b1130026", + "categories": ["Wellness", "Lifestyle"], + "isoDate": "2024-01-18T10:34:05.000Z" + }, + { + "creator": "William Mata", + "date": "2024-01-18T10:32:47+00:00", + "title": "Will there be a game called Fifa 24? Gianni Infantino not giving up on project superior to EA Sports", + "link": "https://www.standard.co.uk/culture/gaming/fifa-24-fc-ea-sports-football-gianni-infanino-b1133150.html", + "pubDate": "Thu, 18 Jan 2024 10:32:47 GMT", + "dc:creator": "William Mata", + "dc:date": "2024-01-18T10:32:47+00:00", + "content": "

President of Fifa insists that series is not over \u2013 despite FC 2024 now being gamers' choice

", + "contentSnippet": "President of Fifa insists that series is not over \u2013 despite FC 2024 now being gamers' choice", + "guid": "b1133150", + "categories": ["Gaming", "Culture"], + "isoDate": "2024-01-18T10:32:47.000Z" + }, + { + "creator": "City Staff", + "date": "2024-01-18T10:22:18+00:00", + "title": "FTSE 100 Live 18 January: Blue-chips steady after big fall yesterday, Watches of Switzerland profit warning", + "link": "https://www.standard.co.uk/business/ftse-100-live-18-january-sainsburys-bank-hipgnosis-the-works-currys-bonds-gilts-mortgages-interest-rates-inflation-flutter-b1133099.html", + "pubDate": "Thu, 18 Jan 2024 10:22:18 GMT", + "dc:creator": "City Staff", + "dc:date": "2024-01-18T10:22:18+00:00", + "content": "

Shares in Flutter Entertainment and electricals chain Currys today bounced in a session when a profit warning sent Watches of Switzerland sharply lower.

", + "contentSnippet": "Shares in Flutter Entertainment and electricals chain Currys today bounced in a session when a profit warning sent Watches of Switzerland sharply lower.", + "guid": "b1133099", + "categories": ["Business"], + "isoDate": "2024-01-18T10:22:18.000Z" + }, + { + "creator": "David Smyth", + "date": "2024-01-18T10:22:15+00:00", + "title": "Sleater-Kinney - Little Rope album review: raw, anthemic power", + "link": "https://www.standard.co.uk/culture/music/sleaterkinney-little-rope-carrie-brownstein-corin-tucker-album-review-b1133165.html", + "pubDate": "Thu, 18 Jan 2024 10:22:15 GMT", + "dc:creator": "David Smyth", + "dc:date": "2024-01-18T10:22:15+00:00", + "content": "

These powerful songs capture both fear and menace with a gripping potency

", + "contentSnippet": "These powerful songs capture both fear and menace with a gripping potency", + "guid": "b1133165", + "categories": ["Music", "Culture"], + "isoDate": "2024-01-18T10:22:15.000Z" + }, + { + "creator": "Jonathan McCambridge", + "date": "2024-01-18T10:16:56+00:00", + "title": "O\u2019Neill says she has not given up on powersharing at Stormont", + "link": "https://www.standard.co.uk/news/uk/dup-stormont-governments-sinn-fein-northern-ireland-b1133169.html", + "pubDate": "Thu, 18 Jan 2024 10:16:56 GMT", + "dc:creator": "Jonathan McCambridge", + "dc:date": "2024-01-18T10:16:56+00:00", + "content": "The Sinn Fein vice president said there had to be a plan B if the powersharing institutions are not restored.", + "contentSnippet": "The Sinn Fein vice president said there had to be a plan B if the powersharing institutions are not restored.", + "guid": "b1133169", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T10:16:56.000Z" + }, + { + "creator": "Vicky Shaw", + "date": "2024-01-18T10:15:41+00:00", + "title": "Mortgage and credit card default rates jumped in run-up to Christmas \u2013 lenders", + "link": "https://www.standard.co.uk/business/money/mortgage-and-credit-card-default-rates-jumped-in-runup-to-christmas-lenders-b1133167.html", + "pubDate": "Thu, 18 Jan 2024 10:15:41 GMT", + "dc:creator": "Vicky Shaw", + "dc:date": "2024-01-18T10:15:41+00:00", + "content": "Default rates on mortgages and other types of lending are expected to increase in early 2024, according to a Bank of England survey of lenders.", + "contentSnippet": "Default rates on mortgages and other types of lending are expected to increase in early 2024, according to a Bank of England survey of lenders.", + "guid": "b1133167", + "categories": ["Money", "Business"], + "isoDate": "2024-01-18T10:15:41.000Z" + }, + { + "creator": "Dominic McGrath", + "date": "2024-01-18T10:11:48+00:00", + "title": "Sunak set to hold press conference after winning key Commons vote on Rwanda Bill", + "link": "https://www.standard.co.uk/news/politics/prime-minister-house-of-lords-rwanda-suella-braverman-commons-b1133142.html", + "pubDate": "Thu, 18 Jan 2024 10:11:48 GMT", + "dc:creator": "Dominic McGrath", + "dc:date": "2024-01-18T10:11:48+00:00", + "content": "The Prime Minister now faces a showdown with the House of Lords over his Rwanda plan.", + "contentSnippet": "The Prime Minister now faces a showdown with the House of Lords over his Rwanda plan.", + "guid": "b1133142", + "categories": ["Politics", "News"], + "isoDate": "2024-01-18T10:11:48.000Z" + }, + { + "creator": "Dom Smith", + "date": "2024-01-18T10:06:11+00:00", + "title": "Roy Hodgson addresses Crystal Palace fan fury and explains Eberechi Eze decision", + "link": "https://www.standard.co.uk/sport/football/crystal-palace-roy-hodgson-eberechi-eze-b1133157.html", + "pubDate": "Thu, 18 Jan 2024 10:06:11 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2024-01-18T10:06:11+00:00", + "content": "

Eagles supporters were fuming with the second-half substitution in FA Cup loss to Everton

", + "contentSnippet": "Eagles supporters were fuming with the second-half substitution in FA Cup loss to Everton", + "guid": "b1133157", + "categories": ["Football", "Sport"], + "isoDate": "2024-01-18T10:06:11.000Z" + }, + { + "creator": "Abha Shah", + "date": "2024-01-18T10:02:55+00:00", + "title": "Best Valentine\u2019s Day flower bouquets in the UK to order online for delivery", + "link": "https://www.standard.co.uk/shopping/esbest/valentines-day/best-valentines-day-flowers-b1132248.html", + "pubDate": "Thu, 18 Jan 2024 10:02:55 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2024-01-18T10:02:55+00:00", + "content": "

Blooms to fall for

", + "contentSnippet": "Blooms to fall for", + "guid": "b1132248", + "categories": ["Valentine's Day", "ES Best Home", "Shopping"], + "isoDate": "2024-01-18T10:02:55.000Z" + }, + { + "creator": "Isobel Van Dyke", + "date": "2024-01-18T10:01:10+00:00", + "title": "Rachel Chinouriri: 'Indie-rock was always white boy bands. I would\u2019ve liked to see a Black woman doing it'", + "link": "https://www.standard.co.uk/culture/music/rachel-chinouriri-florence-pugh-debut-album-interview-b1132930.html", + "pubDate": "Thu, 18 Jan 2024 10:01:10 GMT", + "dc:creator": "Isobel Van Dyke", + "dc:date": "2024-01-18T10:01:10+00:00", + "content": "

Rachel Chinouriri loved the white boy band thing, but there wasn\u2019t anyone like her doing it. Now her devastating debut album is about to change all that. Isobel Van Dyke meets a new star about to brighten 2024

", + "contentSnippet": "Rachel Chinouriri loved the white boy band thing, but there wasn\u2019t anyone like her doing it. Now her devastating debut album is about to change all that. Isobel Van Dyke meets a new star about to brighten 2024", + "guid": "b1132930", + "categories": ["Music", "Culture"], + "isoDate": "2024-01-18T10:01:10.000Z" + }, + { + "creator": "Anna Wise", + "date": "2024-01-18T09:53:22+00:00", + "title": "Currys reveals slow festive sales as consumers remain \u2018hard-pressed\u2019", + "link": "https://www.standard.co.uk/business/business-news/currys-reveals-slow-festive-sales-as-consumers-remain-hardpressed-b1133151.html", + "pubDate": "Thu, 18 Jan 2024 09:53:22 GMT", + "dc:creator": "Anna Wise", + "dc:date": "2024-01-18T09:53:22+00:00", + "content": "But the electricals retailer said its profit for the year is likely to be higher than previously expected despite challenging conditions.", + "contentSnippet": "But the electricals retailer said its profit for the year is likely to be higher than previously expected despite challenging conditions.", + "guid": "b1133151", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-18T09:53:22.000Z" + }, + { + "creator": "Holly Williams", + "date": "2024-01-18T09:52:59+00:00", + "title": "Travis Perkins reveals year-end job losses and signals further staff cuts", + "link": "https://www.standard.co.uk/business/business-news/travis-perkins-reveals-yearend-job-losses-and-signals-further-staff-cuts-b1133148.html", + "pubDate": "Thu, 18 Jan 2024 09:52:59 GMT", + "dc:creator": "Holly Williams", + "dc:date": "2024-01-18T09:52:59+00:00", + "content": "The firm is ramping up cost-cutting efforts to save about \u00a335 million a year amid a construction sector slowdown.", + "contentSnippet": "The firm is ramping up cost-cutting efforts to save about \u00a335 million a year amid a construction sector slowdown.", + "guid": "b1133148", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-18T09:52:59.000Z" + }, + { + "creator": "Patrick Daly", + "date": "2024-01-18T09:51:18+00:00", + "title": "Hunt to tell Davos summit: Britain is on the up and open for business", + "link": "https://www.standard.co.uk/business/business-news/hunt-to-tell-davos-summit-britain-is-on-the-up-and-open-for-business-b1133117.html", + "pubDate": "Thu, 18 Jan 2024 09:51:18 GMT", + "dc:creator": "Patrick Daly", + "dc:date": "2024-01-18T09:51:18+00:00", + "content": "Jeremy Hunt will be the first UK chancellor to attend the World Economic Forum in five years.", + "contentSnippet": "Jeremy Hunt will be the first UK chancellor to attend the World Economic Forum in five years.", + "guid": "b1133117", + "categories": ["Business News", "Business"], + "isoDate": "2024-01-18T09:51:18.000Z" + }, + { + "creator": "Hannah Roberts", + "date": "2024-01-18T09:50:12+00:00", + "title": "Lesley Lokko to receive top architecture award presented on behalf of the King", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/royal-institute-of-british-architects-charles-scottish-london-obe-b1133115.html", + "pubDate": "Thu, 18 Jan 2024 09:50:12 GMT", + "dc:creator": "Hannah Roberts", + "dc:date": "2024-01-18T09:50:12+00:00", + "content": "The Ghanaian-Scottish architect and educator will be formally presented with the award in London on May 2.", + "contentSnippet": "The Ghanaian-Scottish architect and educator will be formally presented with the award in London on May 2.", + "guid": "b1133115", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2024-01-18T09:50:12.000Z" + }, + { + "creator": "Robert Jobson and Lydia Chantler-Hicks", + "date": "2024-01-18T09:49:05+00:00", + "title": "Princess of Wales 'doing well' in hospital after abdominal surgery as William postpones duties ", + "link": "https://www.standard.co.uk/news/uk/kate-princess-of-wales-hospital-abdominal-surgery-william-kensington-palace-b1132967.html", + "pubDate": "Thu, 18 Jan 2024 09:49:05 GMT", + "dc:creator": "Robert Jobson and Lydia Chantler-Hicks", + "dc:date": "2024-01-18T09:49:05+00:00", + "content": "

Prince of Wales is stepping back from official duties to support wife and children

", + "contentSnippet": "Prince of Wales is stepping back from official duties to support wife and children", + "guid": "b1132967", + "categories": ["UK", "News"], + "isoDate": "2024-01-18T09:49:05.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2023-10-27T12:57:33+00:00", + "title": "Apple Watch users warn of overheating and battery drain after software update", + "link": "https://www.standard.co.uk/news/tech/apple-watch-overheating-battery-drain-software-update-b1116398.html", + "pubDate": "Fri, 27 Oct 2023 12:57:33 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2023-10-27T12:57:33+00:00", + "content": "

Some users say their Apple Watches are losing power even while charging

", + "contentSnippet": "Some users say their Apple Watches are losing power even while charging", + "guid": "b1116398", + "categories": ["Tech", "News"], + "isoDate": "2023-10-27T12:57:33.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-10-27T12:52:19+00:00", + "title": "Manchester United XI vs Man City: Casemiro injury latest, predicted lineup and confirmed team news", + "link": "https://www.standard.co.uk/sport/football/man-utd-xi-vs-man-city-casemiro-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1116314.html", + "pubDate": "Fri, 27 Oct 2023 12:52:19 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-10-27T12:52:19+00:00", + "content": "

Red Devils set to include fit-again Brazilian in team for Sunday's derby

", + "contentSnippet": "Red Devils set to include fit-again Brazilian in team for Sunday's derby", + "guid": "b1116314", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T12:52:19.000Z" + }, + { + "creator": "Lola Christina Alao", + "date": "2023-10-27T12:47:56+00:00", + "title": "What is Taylor Swift's net worth? Singer reportedly becomes a billionaire", + "link": "https://www.standard.co.uk/showbiz/taylor-swift-net-worth-earnings-billionaire-b1116405.html", + "pubDate": "Fri, 27 Oct 2023 12:47:56 GMT", + "dc:creator": "Lola Christina Alao", + "dc:date": "2023-10-27T12:47:56+00:00", + "content": "

Taylor Swift's portfolio is forever growing

", + "contentSnippet": "Taylor Swift's portfolio is forever growing", + "guid": "b1116405", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T12:47:56.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2023-10-27T12:45:27+00:00", + "title": "Chelsea XI vs Brentford: Reece James injury latest, predicted lineup and confirmed team news", + "link": "https://www.standard.co.uk/sport/football/chelsea-fc-xi-vs-brentford-reece-james-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1116402.html", + "pubDate": "Fri, 27 Oct 2023 12:45:27 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2023-10-27T12:45:27+00:00", + "content": "

Mauricio Pochettino could name unchanged line-up with seven out

", + "contentSnippet": "Mauricio Pochettino could name unchanged line-up with seven out", + "guid": "b1116402", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T12:45:27.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2023-10-27T12:44:52+00:00", + "title": "Christopher Nkunku 'very close' to Chelsea injury return, Mauricio Pochettino confirms", + "link": "https://www.standard.co.uk/sport/football/christopher-nkunku-chelsea-fc-injury-debut-mauricio-pochettino-b1116427.html", + "pubDate": "Fri, 27 Oct 2023 12:44:52 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2023-10-27T12:44:52+00:00", + "content": "

Potential return date set for \u00a347m signing by Chelsea boss

", + "contentSnippet": "Potential return date set for \u00a347m signing by Chelsea boss", + "guid": "b1116427", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T12:44:52.000Z" + }, + { + "creator": "Ted Hennessey and Lydia Chantler-Hicks", + "date": "2023-10-27T12:44:23+00:00", + "title": "Search for four sailors missing after British cargo ship sank is called off", + "link": "https://www.standard.co.uk/news/uk/verity-cargo-ship-sunk-north-sea-germany-missing-sailors-b1116403.html", + "pubDate": "Fri, 27 Oct 2023 12:44:23 GMT", + "dc:creator": "Ted Hennessey and Lydia Chantler-Hicks", + "dc:date": "2023-10-27T12:44:23+00:00", + "content": "

One man died after British-flagged Verity collided with a larger cargo ship in the North Sea

", + "contentSnippet": "One man died after British-flagged Verity collided with a larger cargo ship in the North Sea", + "guid": "b1116403", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T12:44:23.000Z" + }, + { + "creator": "Stephanie Wareham", + "date": "2023-10-27T12:40:55+00:00", + "title": "\u2018Dangerous\u2019 gang kidnapped and tortured men in return for cash and jewellery", + "link": "https://www.standard.co.uk/news/crime/south-wales-police-cardiff-hemel-hempstead-northwick-park-hospital-rolex-b1116431.html", + "pubDate": "Fri, 27 Oct 2023 12:40:55 GMT", + "dc:creator": "Stephanie Wareham", + "dc:date": "2023-10-27T12:40:55+00:00", + "content": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", + "contentSnippet": "Ringleader Fortune Lawson targeted men who trusted him and subjected them to horrific abuse.", + "guid": "b1116431", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T12:40:55.000Z" + }, + { + "creator": "Simon Collings", + "date": "2023-10-27T12:39:57+00:00", + "title": "Arsenal hit by major double injury blow as Gabriel Jesus and Thomas Partey face weeks out", + "link": "https://www.standard.co.uk/sport/football/arsenal-fc-injury-news-gabriel-jesus-thomas-partey-b1116426.html", + "pubDate": "Fri, 27 Oct 2023 12:39:57 GMT", + "dc:creator": "Simon Collings", + "dc:date": "2023-10-27T12:39:57+00:00", + "content": "

The Gunners duo have both picked up muscle injuries

", + "contentSnippet": "The Gunners duo have both picked up muscle injuries", + "guid": "b1116426", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T12:39:57.000Z" + }, + { + "creator": "Simon Hunt", + "date": "2023-10-27T12:37:22+00:00", + "title": "Billionaire Issa brothers admit errors in letter to MPs on Asda offshore ownership", + "link": "https://www.standard.co.uk/business/billionaire-issa-brothers-errors-letter-mps-asda-offshore-jersey-b1116429.html", + "pubDate": "Fri, 27 Oct 2023 12:37:22 GMT", + "dc:creator": "Simon Hunt", + "dc:date": "2023-10-27T12:37:22+00:00", + "content": "

The billionaire Issa brothers have admitted submitting error-strewn evidence to MPs about the complex offshore ownership structure known as \u2018Bellis\u2019 that they created for Asda after acquiring the supermarket in 2021.

", + "contentSnippet": "The billionaire Issa brothers have admitted submitting error-strewn evidence to MPs about the complex offshore ownership structure known as \u2018Bellis\u2019 that they created for Asda after acquiring the supermarket in 2021.", + "guid": "b1116429", + "categories": ["Business"], + "isoDate": "2023-10-27T12:37:22.000Z" + }, + { + "creator": "Simon Collings", + "date": "2023-10-27T12:34:47+00:00", + "title": "Arsenal XI vs Sheffield United: Gabriel Jesus injury latest, predicted lineup and confirmed team news", + "link": "https://www.standard.co.uk/sport/football/arsenal-xi-vs-sheff-utd-gabriel-jesus-injury-latest-predicted-lineup-confirmed-team-news-premier-league-b1116312.html", + "pubDate": "Fri, 27 Oct 2023 12:34:47 GMT", + "dc:creator": "Simon Collings", + "dc:date": "2023-10-27T12:34:47+00:00", + "content": "

Arsenal lose injured duo for visit of the Blades

", + "contentSnippet": "Arsenal lose injured duo for visit of the Blades", + "guid": "b1116312", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T12:34:47.000Z" + }, + { + "creator": "Nina Lloyd", + "date": "2023-10-27T12:34:11+00:00", + "title": "UK ministers continue to resist calls for ceasefire in Middle East", + "link": "https://www.standard.co.uk/news/politics/gillian-keegan-government-israel-middle-east-hamas-b1116352.html", + "pubDate": "Fri, 27 Oct 2023 12:34:11 GMT", + "dc:creator": "Nina Lloyd", + "dc:date": "2023-10-27T12:34:11+00:00", + "content": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", + "contentSnippet": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", + "guid": "b1116352", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T12:34:11.000Z" + }, + { + "creator": "Joseph Draper", + "date": "2023-10-27T12:33:38+00:00", + "title": "Children leave teddies outside Foreign Office as part of call for Gaza ceasefire", + "link": "https://www.standard.co.uk/news/politics/gaza-foreign-office-hamas-children-uk-government-b1116411.html", + "pubDate": "Fri, 27 Oct 2023 12:33:38 GMT", + "dc:creator": "Joseph Draper", + "dc:date": "2023-10-27T12:33:38+00:00", + "content": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", + "contentSnippet": "Dozens of youngsters pinned cuddly toys to the doors of the Government department in London.", + "guid": "b1116411", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T12:33:38.000Z" + }, + { + "creator": "Jonathan Kanengoni and El Hunt", + "date": "2023-10-27T12:30:36+00:00", + "title": "Our music recommendations: What we\u2019re listening to this week, from Taylor Swift to Bad Boy Chiller Crew", + "link": "https://www.standard.co.uk/culture/music/music-recommendations-what-were-listening-to-now-b74803.html", + "pubDate": "Fri, 27 Oct 2023 12:30:36 GMT", + "dc:creator": "Jonathan Kanengoni and El Hunt", + "dc:date": "2023-10-27T12:30:36+00:00", + "content": "

These are the tunes you need in your life

", + "contentSnippet": "These are the tunes you need in your life", + "guid": "b74803", + "categories": ["Music", "Culture"], + "isoDate": "2023-10-27T12:30:36.000Z" + }, + { + "creator": "Isabelle Aron", + "date": "2023-10-27T12:29:25+00:00", + "title": "20 cosy winter seaside breaks in the UK", + "link": "https://www.standard.co.uk/lifestyle/travel/cosy-winter-seaside-breaks-uk-b1115301.html", + "pubDate": "Fri, 27 Oct 2023 12:29:25 GMT", + "dc:creator": "Isabelle Aron", + "dc:date": "2023-10-27T12:29:25+00:00", + "content": "

Who says you can only go to the seaside in summer? Isabelle Aron rounds up the best spots for a UK winter break by the sea

", + "contentSnippet": "Who says you can only go to the seaside in summer? Isabelle Aron rounds up the best spots for a UK winter break by the sea", + "guid": "b1115301", + "categories": ["Travel", "Lifestyle"], + "isoDate": "2023-10-27T12:29:25.000Z" + }, + { + "creator": "Beril Naz Hassan", + "date": "2023-10-27T12:28:53+00:00", + "title": "Which album will Taylor Swift re-record next?\u00a01989 finally arrives", + "link": "https://www.standard.co.uk/culture/music/taylor-swift-next-re-record-release-album-b1116415.html", + "pubDate": "Fri, 27 Oct 2023 12:28:53 GMT", + "dc:creator": "Beril Naz Hassan", + "dc:date": "2023-10-27T12:28:53+00:00", + "content": "

Fans have been counting down to the release of the re-recorded 1989 album for quite some time now

", + "contentSnippet": "Fans have been counting down to the release of the re-recorded 1989 album for quite some time now", + "guid": "b1116415", + "categories": ["Music", "Culture"], + "isoDate": "2023-10-27T12:28:53.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-10-27T12:25:39+00:00", + "title": "Liverpool: Jurgen Klopp admits he didn't realise Mohamed Salah had broken another English football record", + "link": "https://www.standard.co.uk/sport/football/mohamed-salah-record-liverpool-fc-jurgen-klopp-b1116424.html", + "pubDate": "Fri, 27 Oct 2023 12:25:39 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-10-27T12:25:39+00:00", + "content": "

Egyptian surpassed Thierry Henry's goal record in European football

", + "contentSnippet": "Egyptian surpassed Thierry Henry's goal record in European football", + "guid": "b1116424", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T12:25:39.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2023-10-27T12:24:51+00:00", + "title": "Al Pacino and Noor Alfallah reach custody, visitation and child support agreement for baby son", + "link": "https://www.standard.co.uk/showbiz/al-pacino-noor-alfallah-reach-custody-visitation-child-support-agreement-baby-son-roman-b1116385.html", + "pubDate": "Fri, 27 Oct 2023 12:24:51 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2023-10-27T12:24:51+00:00", + "content": "

The couple welcomed son Roman together almost five months ago

", + "contentSnippet": "The couple welcomed son Roman together almost five months ago", + "guid": "b1116385", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T12:24:51.000Z" + }, + { + "creator": "Emily Pennink", + "date": "2023-10-27T12:21:46+00:00", + "title": "\u2018Terrorist\u2019 ex-GCHQ worker launched knife attack on US spy, court told", + "link": "https://www.standard.co.uk/news/crime/cheltenham-national-security-agency-old-bailey-cctv-b1116404.html", + "pubDate": "Fri, 27 Oct 2023 12:21:46 GMT", + "dc:creator": "Emily Pennink", + "dc:date": "2023-10-27T12:21:46+00:00", + "content": "Joshua Bowles, 29, described himself as a \u2018terrorist\u2019 to police after the attack in Cheltenham on March 9.", + "contentSnippet": "Joshua Bowles, 29, described himself as a \u2018terrorist\u2019 to police after the attack in Cheltenham on March 9.", + "guid": "b1116404", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T12:21:46.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2023-10-27T12:20:48+00:00", + "title": "Kremlin denies claim that Vladimir Putin died from cancer as 'absurd'", + "link": "https://www.standard.co.uk/news/world/vladimir-putin-cancer-heart-attack-russia-kremlin-b1116309.html", + "pubDate": "Fri, 27 Oct 2023 12:20:48 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2023-10-27T12:20:48+00:00", + "content": "

Kremlin rejects claims of Putin's poor ill-health and even death as 'absurd information'

", + "contentSnippet": "Kremlin rejects claims of Putin's poor ill-health and even death as 'absurd information'", + "guid": "b1116309", + "categories": ["World", "News"], + "isoDate": "2023-10-27T12:20:48.000Z" + }, + { + "creator": "Sam Russell", + "date": "2023-10-27T12:15:00+00:00", + "title": "Man denies phone linked to Mark Cavendish robbery is his", + "link": "https://www.standard.co.uk/news/crime/mark-cavendish-peta-cavendish-chelmsford-crown-court-dna-ongar-b1116417.html", + "pubDate": "Fri, 27 Oct 2023 12:15:00 GMT", + "dc:creator": "Sam Russell", + "dc:date": "2023-10-27T12:15:00+00:00", + "content": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", + "contentSnippet": "Jo Jobson, 27, denies two counts of robbery and is on trial at Chelmsford Crown Court.", + "guid": "b1116417", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T12:15:00.000Z" + }, + { + "creator": "Nicholas Cecil,Jordan King and Bill McLoughlin", + "date": "2023-10-27T12:14:48+00:00", + "title": "Israel launches second overnight raid in Gaza as US strikes military sites in Syria", + "link": "https://www.standard.co.uk/news/world/us-airstrikes-syria-pentagon-biden-iran-israel-hamas-gaza-latest-b1116298.html", + "pubDate": "Fri, 27 Oct 2023 12:14:48 GMT", + "dc:creator": "Nicholas Cecil,Jordan King and Bill McLoughlin", + "dc:date": "2023-10-27T12:14:48+00:00", + "content": "

It comes as US fighter jets struck weapons and ammunition dumps in Syria in retaliation for attacks on America forces by Iranian-backed militia

", + "contentSnippet": "It comes as US fighter jets struck weapons and ammunition dumps in Syria in retaliation for attacks on America forces by Iranian-backed militia", + "guid": "b1116298", + "categories": ["World", "News"], + "isoDate": "2023-10-27T12:14:48.000Z" + }, + { + "creator": "Ellie Davis", + "date": "2023-10-27T12:14:04+00:00", + "title": "Best laptop deals to expect for Black Friday 2023 from Dell, HP and more", + "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-laptop-deals-black-friday-sale-b1113871.html", + "pubDate": "Fri, 27 Oct 2023 12:14:04 GMT", + "dc:creator": "Ellie Davis", + "dc:date": "2023-10-27T12:14:04+00:00", + "content": "

Stream, browse and game with fast loading times for less

", + "contentSnippet": "Stream, browse and game with fast loading times for less", + "guid": "b1113871", + "categories": ["Black Friday", "ES Best Home", "Shopping"], + "isoDate": "2023-10-27T12:14:04.000Z" + }, + { + "creator": "Lizzie Edmonds", + "date": "2023-10-27T12:10:13+00:00", + "title": "Sir Elton John praises Madonna's AIDS tribute ending decades-long feud", + "link": "https://www.standard.co.uk/showbiz/madonna-sir-elton-john-aids-tribute-feud-b1116367.html", + "pubDate": "Fri, 27 Oct 2023 12:10:13 GMT", + "dc:creator": "Lizzie Edmonds", + "dc:date": "2023-10-27T12:10:13+00:00", + "content": "

Titans of pop Sir Elton and Madonna have been fighting since 2002

", + "contentSnippet": "Titans of pop Sir Elton and Madonna have been fighting since 2002", + "guid": "b1116367", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T12:10:13.000Z" + }, + { + "creator": "Anthony France", + "date": "2023-10-27T12:09:24+00:00", + "title": "London torture gang poured boiling water over kidnap victim ", + "link": "https://www.standard.co.uk/news/crime/london-torture-gang-cardiff-cps-fortune-lawson-b1116409.html", + "pubDate": "Fri, 27 Oct 2023 12:09:24 GMT", + "dc:creator": "Anthony France", + "dc:date": "2023-10-27T12:09:24+00:00", + "content": "

A dangerous attack dog was also used to frighten the man

", + "contentSnippet": "A dangerous attack dog was also used to frighten the man", + "guid": "b1116409", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T12:09:24.000Z" + }, + { + "creator": "Tristan Kirk", + "date": "2023-10-27T12:05:28+00:00", + "title": "US spy stabbed near GCHQ 'in revenge for murky secret services'", + "link": "https://www.standard.co.uk/news/crime/us-spy-gchq-stabbing-unabomber-revenge-secret-services-joshua-bowles-b1116410.html", + "pubDate": "Fri, 27 Oct 2023 12:05:28 GMT", + "dc:creator": "Tristan Kirk", + "dc:date": "2023-10-27T12:05:28+00:00", + "content": "

Former GCHQ worker Joshua Bowles attacked a US spy in revenge for 'murky' intelligence work

", + "contentSnippet": "Former GCHQ worker Joshua Bowles attacked a US spy in revenge for 'murky' intelligence work", + "guid": "b1116410", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T12:05:28.000Z" + }, + { + "creator": "Craig Paton", + "date": "2023-10-27T12:03:50+00:00", + "title": "Musk responds \u2018blatant racist\u2019 to Yousaf speech made after George Floyd murder", + "link": "https://www.standard.co.uk/news/politics/elon-musk-george-floyd-twitter-first-minister-scottish-parliament-b1116420.html", + "pubDate": "Fri, 27 Oct 2023 12:03:50 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2023-10-27T12:03:50+00:00", + "content": "The video to which the X owner replied was posted by a right-wing account.", + "contentSnippet": "The video to which the X owner replied was posted by a right-wing account.", + "guid": "b1116420", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T12:03:50.000Z" + }, + { + "creator": "Dom Smith", + "date": "2023-10-27T11:58:07+00:00", + "title": "Fulham to make late call on Issa Diop's fitness for Brighton clash", + "link": "https://www.standard.co.uk/sport/football/fulham-brighton-issa-diop-injury-b1116418.html", + "pubDate": "Fri, 27 Oct 2023 11:58:07 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2023-10-27T11:58:07+00:00", + "content": "

Cottagers desperate for defensive help after errors in Tottenham loss

", + "contentSnippet": "Cottagers desperate for defensive help after errors in Tottenham loss", + "guid": "b1116418", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T11:58:07.000Z" + }, + { + "creator": "Simon Collings", + "date": "2023-10-27T11:53:40+00:00", + "title": "Fran Kirby's timely return to satisfy Lionesses' need for creative spark", + "link": "https://www.standard.co.uk/sport/football/lionesses-fran-kirby-england-belgium-b1116413.html", + "pubDate": "Fri, 27 Oct 2023 11:53:40 GMT", + "dc:creator": "Simon Collings", + "dc:date": "2023-10-27T11:53:40+00:00", + "content": "

England take on Belgium tonight in Women's Nations League

", + "contentSnippet": "England take on Belgium tonight in Women's Nations League", + "guid": "b1116413", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T11:53:40.000Z" + }, + { + "creator": "Aine Fox", + "date": "2023-10-27T11:49:22+00:00", + "title": "Unions accuse Keegan of \u2018inflaming controversy\u2019 over sex education teaching", + "link": "https://www.standard.co.uk/news/politics/education-secretary-secretary-of-state-government-geoff-barton-association-of-school-and-college-leaders-b1116412.html", + "pubDate": "Fri, 27 Oct 2023 11:49:22 GMT", + "dc:creator": "Aine Fox", + "dc:date": "2023-10-27T11:49:22+00:00", + "content": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", + "contentSnippet": "The organisations said Education Secretary Gillian Keegan had chosen to denigrate schools instead of standing up for them.", + "guid": "b1116412", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T11:49:22.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2023-10-27T11:45:50+00:00", + "title": "Best John Lewis deals to expect for Black Friday 2023: Offers on homeware, furniture and more", + "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-john-lewis-deals-black-friday-b1113881.html", + "pubDate": "Fri, 27 Oct 2023 11:45:50 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2023-10-27T11:45:50+00:00", + "content": "

The annual sales extravaganza has resulted in brilliant discounts at the retailer

", + "contentSnippet": "The annual sales extravaganza has resulted in brilliant discounts at the retailer", + "guid": "b1113881", + "categories": ["Black Friday", "ES Best Home", "Shopping"], + "isoDate": "2023-10-27T11:45:50.000Z" + }, + { + "creator": "Saskia Kemsley", + "date": "2023-10-27T11:45:12+00:00", + "title": "Best Currys Black Friday deals to expect 2023: Offers on smartwatches, washing machines and more", + "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-currys-black-friday-deals-b1113851.html", + "pubDate": "Fri, 27 Oct 2023 11:45:12 GMT", + "dc:creator": "Saskia Kemsley", + "dc:date": "2023-10-27T11:45:12+00:00", + "content": "

Shop the best bargains from the UK\u2019s tech retailing giant

", + "contentSnippet": "Shop the best bargains from the UK\u2019s tech retailing giant", + "guid": "b1113851", + "categories": ["Black Friday", "ES Best Home", "Shopping"], + "isoDate": "2023-10-27T11:45:12.000Z" + }, + { + "creator": "Nihal Arthanayake", + "date": "2023-10-27T11:42:03+00:00", + "title": "OPINION - Why I'm keeping shtum on Tottenham winning the Premier League", + "link": "https://www.standard.co.uk/sport/football/tottenham-premier-league-comment-nihal-arthanayake-b1116406.html", + "pubDate": "Fri, 27 Oct 2023 11:42:03 GMT", + "dc:creator": "Nihal Arthanayake", + "dc:date": "2023-10-27T11:42:03+00:00", + "content": "

Fans dare to dream what Big Ange and his band of brothers can achieve... but always remember Arsenal

", + "contentSnippet": "Fans dare to dream what Big Ange and his band of brothers can achieve... but always remember Arsenal", + "guid": "b1116406", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T11:42:03.000Z" + }, + { + "creator": "Pa Reporters", + "date": "2023-10-27T11:40:19+00:00", + "title": "First charter flight for Afghan refugees living in Pakistan arrives in London", + "link": "https://www.standard.co.uk/news/politics/pakistan-london-afghanistan-government-taliban-b1116407.html", + "pubDate": "Fri, 27 Oct 2023 11:40:19 GMT", + "dc:creator": "Pa Reporters", + "dc:date": "2023-10-27T11:40:19+00:00", + "content": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", + "contentSnippet": "The Pakistan Civil Aviation Authority confirmed that the first flight, carrying 132 Afghans, left the country for the UK on Thursday.", + "guid": "b1116407", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T11:40:19.000Z" + }, + { + "creator": "Seren Morris", + "date": "2023-10-27T11:39:37+00:00", + "title": "What are the rules for putting your bins out? Londoner hit with \u00a3400 fine for leaving out on wrong day", + "link": "https://www.standard.co.uk/news/london/bins-days-fly-tipping-rules-fine-waltham-forest-council-rubbish-b1069492.html", + "pubDate": "Fri, 27 Oct 2023 11:39:37 GMT", + "dc:creator": "Seren Morris", + "dc:date": "2023-10-27T11:39:37+00:00", + "content": "

The environment secretary has announced new rules aimed at unifying how waste is collected

", + "contentSnippet": "The environment secretary has announced new rules aimed at unifying how waste is collected", + "guid": "b1069492", + "categories": ["London", "News"], + "isoDate": "2023-10-27T11:39:37.000Z" + }, + { + "creator": "Craig Paton", + "date": "2023-10-27T11:30:05+00:00", + "title": "Scottish Government deleted most pandemic WhatsApp messages, inquiry believes", + "link": "https://www.standard.co.uk/news/politics/scottish-government-humza-yousaf-scottish-government-first-minister-b1116369.html", + "pubDate": "Fri, 27 Oct 2023 11:30:05 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2023-10-27T11:30:05+00:00", + "content": "First Minister Humza Yousaf has said the matter is being investigated.", + "contentSnippet": "First Minister Humza Yousaf has said the matter is being investigated.", + "guid": "b1116369", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T11:30:05.000Z" + }, + { + "creator": "Lauren Gilmour", + "date": "2023-10-27T11:27:05+00:00", + "title": "Radiographers to stage first strike at Scottish hospital", + "link": "https://www.standard.co.uk/news/health/scottish-b1116401.html", + "pubDate": "Fri, 27 Oct 2023 11:27:05 GMT", + "dc:creator": "Lauren Gilmour", + "dc:date": "2023-10-27T11:27:05+00:00", + "content": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", + "contentSnippet": "The staff at Hairmyres Hospital in East Kilbride are taking action over rota changes they claim risk patient safety.", + "guid": "b1116401", + "categories": ["Health", "News"], + "isoDate": "2023-10-27T11:27:05.000Z" + }, + { + "creator": "Lizzie Edmonds", + "date": "2023-10-27T11:24:44+00:00", + "title": "Hugh Jackman and Deborra-Lee Furness felt time was 'right' to split", + "link": "https://www.standard.co.uk/showbiz/hugh-jackman-deborra-lee-furness-divorce-shock-split-b1116390.html", + "pubDate": "Fri, 27 Oct 2023 11:24:44 GMT", + "dc:creator": "Lizzie Edmonds", + "dc:date": "2023-10-27T11:24:44+00:00", + "content": "

Reports suggest the couple, who split last month after nearly 30 years together, were on \"different pages.\"

", + "contentSnippet": "Reports suggest the couple, who split last month after nearly 30 years together, were on \"different pages.\"", + "guid": "b1116390", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T11:24:44.000Z" + }, + { + "creator": "Maryam Kara", + "date": "2023-10-27T11:23:44+00:00", + "title": "Londoners can ride vintage buses for free next week in aid of the Royal British Legion Poppy Appeal", + "link": "https://www.standard.co.uk/news/london/vintage-buses-north-london-poppy-appeal-b1116223.html", + "pubDate": "Fri, 27 Oct 2023 11:23:44 GMT", + "dc:creator": "Maryam Kara", + "dc:date": "2023-10-27T11:23:44+00:00", + "content": "

Vintage buses will be running in aid of the Royal British Legion Poppy Appeal

", + "contentSnippet": "Vintage buses will be running in aid of the Royal British Legion Poppy Appeal", + "guid": "b1116223", + "categories": ["London", "News"], + "isoDate": "2023-10-27T11:23:44.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-10-27T11:21:01+00:00", + "title": "New Zealand vs South Africa: Rugby World Cup final kick-off time, TV channel, team news, lineups, venue, odds", + "link": "https://www.standard.co.uk/sport/rugby/new-zealand-vs-south-africa-rugby-world-cup-final-2023-kick-off-time-tv-channel-live-stream-team-news-lineups-odds-b1115100.html", + "pubDate": "Fri, 27 Oct 2023 11:21:01 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-10-27T11:21:01+00:00", + "content": "

The Springboks and the All Blacks compete for the Webb Ellis Cup in huge Paris showpiece

", + "contentSnippet": "The Springboks and the All Blacks compete for the Webb Ellis Cup in huge Paris showpiece", + "guid": "b1115100", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2023-10-27T11:21:01.000Z" + }, + { + "creator": "Jonathan Gorrie", + "date": "2023-10-27T11:20:42+00:00", + "title": "How to watch Argentina vs England for FREE: TV channel and live stream for Rugby World Cup game today", + "link": "https://www.standard.co.uk/sport/rugby/how-to-watch-argentina-vs-england-rugby-world-cup-2023-tv-channel-live-stream-free-today-b1116279.html", + "pubDate": "Fri, 27 Oct 2023 11:20:42 GMT", + "dc:creator": "Jonathan Gorrie", + "dc:date": "2023-10-27T11:20:42+00:00", + "content": "

How to keep across England's final game in France

", + "contentSnippet": "How to keep across England's final game in France", + "guid": "b1116279", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2023-10-27T11:20:42.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-10-27T11:20:41+00:00", + "title": "Argentina vs England: Rugby World Cup kick-off time, TV channel, team news, lineups, venue, odds today", + "link": "https://www.standard.co.uk/sport/rugby/argentina-vs-england-rugby-world-cup-2023-kick-off-time-tv-channel-live-stream-team-news-lineups-odds-today-b1115139.html", + "pubDate": "Fri, 27 Oct 2023 11:20:41 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-10-27T11:20:41+00:00", + "content": "

England will wrap up their Rugby World Cup campaign tonight with the Bronze Final against Argentina.

", + "contentSnippet": "England will wrap up their Rugby World Cup campaign tonight with the Bronze Final against Argentina.", + "guid": "b1115139", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2023-10-27T11:20:41.000Z" + }, + { + "creator": "Aine Fox", + "date": "2023-10-27T11:16:06+00:00", + "title": "Equalities watchdog expresses concerns for disabled over benefits reforms", + "link": "https://www.standard.co.uk/news/politics/government-parliament-b1116399.html", + "pubDate": "Fri, 27 Oct 2023 11:16:06 GMT", + "dc:creator": "Aine Fox", + "dc:date": "2023-10-27T11:16:06+00:00", + "content": "The Government\u2019s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", + "contentSnippet": "The Government\u2019s proposals are part of a post-pandemic drive to encourage more people with long-term conditions and disabilities into the workplace.", + "guid": "b1116399", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T11:16:06.000Z" + }, + { + "creator": "Saqib Shah", + "date": "2023-10-27T11:15:50+00:00", + "title": "How to make audio and video calls on X/Twitter", + "link": "https://www.standard.co.uk/news/tech/twitter-x-voice-video-calls-how-to-b1116360.html", + "pubDate": "Fri, 27 Oct 2023 11:15:50 GMT", + "dc:creator": "Saqib Shah", + "dc:date": "2023-10-27T11:15:50+00:00", + "content": "

You can switch off or limit the new feature if you don't want to receive unwanted calls

", + "contentSnippet": "You can switch off or limit the new feature if you don't want to receive unwanted calls", + "guid": "b1116360", + "categories": ["Tech", "News"], + "isoDate": "2023-10-27T11:15:50.000Z" + }, + { + "creator": "Bill McLoughlin", + "date": "2023-10-27T11:15:03+00:00", + "title": "Girl hospitalised for septic shock after ant infestation bite in south west London council home", + "link": "https://www.standard.co.uk/news/london/girl-ant-bite-sceptic-shock-west-london-hospital-wandsworth-b1116310.html", + "pubDate": "Fri, 27 Oct 2023 11:15:03 GMT", + "dc:creator": "Bill McLoughlin", + "dc:date": "2023-10-27T11:15:03+00:00", + "content": "

The 15-year-old is afraid to go home following the infestation

", + "contentSnippet": "The 15-year-old is afraid to go home following the infestation", + "guid": "b1116310", + "categories": ["London", "News"], + "isoDate": "2023-10-27T11:15:03.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2023-10-27T11:12:05+00:00", + "title": "Greenwich Islamic Centre: Mosque leader accused of hateful sermon over Israel-Hamas conflict", + "link": "https://www.standard.co.uk/news/london/greenwich-islamic-centre-mosque-antisemitism-gaza-israel-b1116253.html", + "pubDate": "Fri, 27 Oct 2023 11:12:05 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2023-10-27T11:12:05+00:00", + "content": "

Imam accused by MP and council of hate remarks in Gaza sermon

", + "contentSnippet": "Imam accused by MP and council of hate remarks in Gaza sermon", + "guid": "b1116253", + "categories": ["London", "News"], + "isoDate": "2023-10-27T11:12:05.000Z" + }, + { + "creator": "Rachael Burford", + "date": "2023-10-27T11:10:23+00:00", + "title": "Wide eye of the law: Facial recognition deployed at Arsenal v Tottenham Premier League clash", + "link": "https://www.standard.co.uk/news/london/facial-recognition-met-police-football-arsenal-tottenham-b1116370.html", + "pubDate": "Fri, 27 Oct 2023 11:10:23 GMT", + "dc:creator": "Rachael Burford", + "dc:date": "2023-10-27T11:10:23+00:00", + "content": "

Three people were arrested and charged after being caught by surveillance vans at the match

", + "contentSnippet": "Three people were arrested and charged after being caught by surveillance vans at the match", + "guid": "b1116370", + "categories": ["London", "News"], + "isoDate": "2023-10-27T11:10:23.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-10-27T11:09:52+00:00", + "title": "Pop superstar Taylor Swift praised for \u2018impeccable\u2019 remake of 1989 album", + "link": "https://www.standard.co.uk/culture/music/taylor-swift-shake-it-off-blank-space-the-times-twitter-b1116394.html", + "pubDate": "Fri, 27 Oct 2023 11:09:52 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-10-27T11:09:52+00:00", + "content": "The album was released on the same date it was originally published in 2014.", + "contentSnippet": "The album was released on the same date it was originally published in 2014.", + "guid": "b1116394", + "categories": ["Music", "Culture"], + "isoDate": "2023-10-27T11:09:52.000Z" + }, + { + "creator": "By Cillian Sherlock", + "date": "2023-10-27T11:09:27+00:00", + "title": "\u2018Essential not to lose focus\u2019 on war in Ukraine, Varadkar warns", + "link": "https://www.standard.co.uk/news/uk/ukraine-leo-varadkar-russian-israel-palestine-b1116396.html", + "pubDate": "Fri, 27 Oct 2023 11:09:27 GMT", + "dc:creator": "By Cillian Sherlock", + "dc:date": "2023-10-27T11:09:27+00:00", + "content": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", + "contentSnippet": "The Taoiseach said there was a need to \u2018double down on\u2019 political, military and financial support for Ukraine.", + "guid": "b1116396", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T11:09:27.000Z" + }, + { + "creator": "Sam Russell", + "date": "2023-10-27T11:08:08+00:00", + "title": "Husband jailed for life for murder of university lecturer wife in knife attack", + "link": "https://www.standard.co.uk/news/crime/husband-colchester-english-b1116397.html", + "pubDate": "Fri, 27 Oct 2023 11:08:08 GMT", + "dc:creator": "Sam Russell", + "dc:date": "2023-10-27T11:08:08+00:00", + "content": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", + "contentSnippet": "Ertan Ersoy has been sentenced to life in prison with a minimum term of 25 years.", + "guid": "b1116397", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T11:08:08.000Z" + }, + { + "creator": "Jonathan Kanengoni", + "date": "2023-10-27T11:07:24+00:00", + "title": "Halloween 2023 in London: Our top club nights of the spooky weekend", + "link": "https://www.standard.co.uk/culture/music/halloween-2023-london-events-party-what-to-do-b1115907.html", + "pubDate": "Fri, 27 Oct 2023 11:07:24 GMT", + "dc:creator": "Jonathan Kanengoni", + "dc:date": "2023-10-27T11:07:24+00:00", + "content": "

Guiding you to the best music events the capital has to offer this Halloween

", + "contentSnippet": "Guiding you to the best music events the capital has to offer this Halloween", + "guid": "b1115907", + "categories": ["Music", "Culture"], + "isoDate": "2023-10-27T11:07:24.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2023-10-27T11:04:50+00:00", + "title": "Ange Postecoglou rubbishes claim Tottenham now better off without Harry Kane", + "link": "https://www.standard.co.uk/sport/football/tottenham-ange-postecoglou-harry-kane-spurs-b1116387.html", + "pubDate": "Fri, 27 Oct 2023 11:04:50 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2023-10-27T11:04:50+00:00", + "content": "

Spurs boss happy with new 'dynamic' without record goalscorer but would have been able to 'squeeze him in' to league-leading side

", + "contentSnippet": "Spurs boss happy with new 'dynamic' without record goalscorer but would have been able to 'squeeze him in' to league-leading side", + "guid": "b1116387", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T11:04:50.000Z" + }, + { + "creator": "Emily Bratt", + "date": "2023-10-27T11:04:46+00:00", + "title": "'I never set out to be a nomadic pet-sitter but it\u2019s the most exciting, life-changing decision I ever made'", + "link": "https://www.standard.co.uk/lifestyle/pet-sitter-house-prices-cost-of-living-london-rental-crisis-b1116068.html", + "pubDate": "Fri, 27 Oct 2023 11:04:46 GMT", + "dc:creator": "Emily Bratt", + "dc:date": "2023-10-27T11:04:46+00:00", + "content": "

Sick of London house shares and nowhere near getting a foot on the property ladder, Emily Bratt took a radical chance on a whole new life as a full time pet-sitter

", + "contentSnippet": "Sick of London house shares and nowhere near getting a foot on the property ladder, Emily Bratt took a radical chance on a whole new life as a full time pet-sitter", + "guid": "b1116068", + "categories": ["Lifestyle"], + "isoDate": "2023-10-27T11:04:46.000Z" + }, + { + "creator": "Chris Philp and Madeleine Stone", + "date": "2023-10-27T11:03:25+00:00", + "title": "OPINION - Facial recognition vans: the case for and against", + "link": "https://www.standard.co.uk/comment/facial-recognition-technology-london-football-b1116372.html", + "pubDate": "Fri, 27 Oct 2023 11:03:25 GMT", + "dc:creator": "Chris Philp and Madeleine Stone", + "dc:date": "2023-10-27T11:03:25+00:00", + "content": "

A minister and technology advocate go head-to-head over facial recognition technology

", + "contentSnippet": "A minister and technology advocate go head-to-head over facial recognition technology", + "guid": "b1116372", + "categories": ["Comment"], + "isoDate": "2023-10-27T11:03:25.000Z" + }, + { + "creator": "Ayan Omar", + "date": "2023-10-27T11:03:01+00:00", + "title": "Londoners asked to look out for ghost signs this Halloween for new Historic England map", + "link": "https://www.standard.co.uk/news/london/london-ghost-signs-halloween-historic-england-map-b1115961.html", + "pubDate": "Fri, 27 Oct 2023 11:03:01 GMT", + "dc:creator": "Ayan Omar", + "dc:date": "2023-10-27T11:03:01+00:00", + "content": "

Historic England hopes the map will teach people about the 'cultural significance' of ghost signs

", + "contentSnippet": "Historic England hopes the map will teach people about the 'cultural significance' of ghost signs", + "guid": "b1115961", + "categories": ["London", "News"], + "isoDate": "2023-10-27T11:03:01.000Z" + }, + { + "creator": "Evening Standard Comment", + "date": "2023-10-27T11:02:29+00:00", + "title": "OPINION - The Standard View: The Met's use of facial recognition technology fights crime and raises hackles", + "link": "https://www.standard.co.uk/comment/metropolitan-police-facial-recognition-technology-arsenal-tottenham-b1116393.html", + "pubDate": "Fri, 27 Oct 2023 11:02:29 GMT", + "dc:creator": "Evening Standard Comment", + "dc:date": "2023-10-27T11:02:29+00:00", + "content": "

Facial recognition technology \u2014 indeed any form of artificial intelligence \u2014 has a habit of raising hackles. Its use by police, even to prevent crime and protect people from harm, is no different. But should it be?

", + "contentSnippet": "Facial recognition technology \u2014 indeed any form of artificial intelligence \u2014 has a habit of raising hackles. Its use by police, even to prevent crime and protect people from harm, is no different. But should it be?", + "guid": "b1116393", + "categories": ["Comment"], + "isoDate": "2023-10-27T11:02:29.000Z" + }, + { + "creator": "Lara Olszowska", + "date": "2023-10-27T11:02:17+00:00", + "title": "Grotesque? Rory Stewart clashes with portrait painter over 'caricature'", + "link": "https://www.standard.co.uk/news/londoners-diary/rory-stewart-portrait-artist-caricature-b1116377.html", + "pubDate": "Fri, 27 Oct 2023 11:02:17 GMT", + "dc:creator": "Lara Olszowska", + "dc:date": "2023-10-27T11:02:17+00:00", + "content": "

'Maybe he was hoping for something a bit more heroic,' said artist Lorena Levi

", + "contentSnippet": "'Maybe he was hoping for something a bit more heroic,' said artist Lorena Levi", + "guid": "b1116377", + "categories": ["Diary", "News"], + "isoDate": "2023-10-27T11:02:17.000Z" + }, + { + "creator": "Lawrence Dallaglio", + "date": "2023-10-27T11:00:52+00:00", + "title": "Lawrence Dallaglio column: England must not settle under Steve Borthwick after setting new benchmark", + "link": "https://www.standard.co.uk/sport/rugby/lawrence-dallaglio-column-england-rugby-world-cup-2023-steve-borthwick-b1116381.html", + "pubDate": "Fri, 27 Oct 2023 11:00:52 GMT", + "dc:creator": "Lawrence Dallaglio", + "dc:date": "2023-10-27T11:00:52+00:00", + "content": "

England need to set the tone for the new era and finish the Rugby World Cup on a high by securing third place

", + "contentSnippet": "England need to set the tone for the new era and finish the Rugby World Cup on a high by securing third place", + "guid": "b1116381", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2023-10-27T11:00:52.000Z" + }, + { + "creator": "Paul Flynn", + "date": "2023-10-27T11:00:29+00:00", + "title": "OPINION - Is there such a thing as a gay job? Actually, it turns out there just might be", + "link": "https://www.standard.co.uk/comment/lgbtq-gay-jobs-careers-census-airlines-farming-b1116365.html", + "pubDate": "Fri, 27 Oct 2023 11:00:29 GMT", + "dc:creator": "Paul Flynn", + "dc:date": "2023-10-27T11:00:29+00:00", + "content": "

My first job was as a cashier in a South Manchester car park, a Saturday post I held between the ages of 14 and 19, the exact ages I was working out how being gay might pan out for me. I worked alongside the Corps of Commissionaires, a rum, witty bunch of pensioner ex-servicemen who\u2019d shine their shoes to perfection in order to chase down local scallies trying to hotwire a tasty, second-hand Volkswagen Polo. They were great, dependable men, many widowers, committed smokers with a plentiful reserve of dirty jokes.

", + "contentSnippet": "My first job was as a cashier in a South Manchester car park, a Saturday post I held between the ages of 14 and 19, the exact ages I was working out how being gay might pan out for me. I worked alongside the Corps of Commissionaires, a rum, witty bunch of pensioner ex-servicemen who\u2019d shine their shoes to perfection in order to chase down local scallies trying to hotwire a tasty, second-hand Volkswagen Polo. They were great, dependable men, many widowers, committed smokers with a plentiful reserve of dirty jokes.", + "guid": "b1116365", + "categories": ["Comment"], + "isoDate": "2023-10-27T11:00:29.000Z" + }, + { + "creator": "Sade The Astrology Vixen", + "date": "2023-10-27T11:00:00+00:00", + "title": "Your weekly horoscope by Sade The Astrology Vixen (27 October - 2 November) ", + "link": "https://www.standard.co.uk/lifestyle/weekly-horoscope-astrology-october-november-b1116133.html", + "pubDate": "Fri, 27 Oct 2023 11:00:00 GMT", + "dc:creator": "Sade The Astrology Vixen", + "dc:date": "2023-10-27T11:00:00+00:00", + "content": "

ARIES Where are you resisting leadership? Be careful because the temporary float you\u2019ve been holding on to might suddenly deflate, forcing you to realise you need more anchoring to keep grounded and secure.

", + "contentSnippet": "ARIES Where are you resisting leadership? Be careful because the temporary float you\u2019ve been holding on to might suddenly deflate, forcing you to realise you need more anchoring to keep grounded and secure.", + "guid": "b1116133", + "categories": ["Lifestyle"], + "isoDate": "2023-10-27T11:00:00.000Z" + }, + { + "creator": "Tanya Gold", + "date": "2023-10-27T11:00:00+00:00", + "title": "OPINION - The Woman in Me by Britney Spears review: they wanted the body of a child and the cynicism of a woman", + "link": "https://www.standard.co.uk/culture/books/britney-spears-the-woman-in-me-book-review-tanya-gold-b1116380.html", + "pubDate": "Fri, 27 Oct 2023 11:00:00 GMT", + "dc:creator": "Tanya Gold", + "dc:date": "2023-10-27T11:00:00+00:00", + "content": "

Britney Spears's memoir, The Woman in Me, is in two parts: the numb (part one) and the raging (part two). I wish I was surprised by her story, but it\u2019s the story of female stars, particularly child ones. They are archetypes, devoured by expectation.

", + "contentSnippet": "Britney Spears's memoir, The Woman in Me, is in two parts: the numb (part one) and the raging (part two). I wish I was surprised by her story, but it\u2019s the story of female stars, particularly child ones. They are archetypes, devoured by expectation.", + "guid": "b1116380", + "categories": ["Books", "Culture"], + "isoDate": "2023-10-27T11:00:00.000Z" + }, + { + "creator": "Hollie Bowden", + "date": "2023-10-27T11:00:00+00:00", + "title": "Eye for interiors: from bulbs to lampshades, Hollie Bowden's seven step guide to perfect lighting at home", + "link": "https://www.standard.co.uk/homesandproperty/interiors/hollie-bowden-guide-home-lighting-bulbs-lamps-spotlights-renovation-b1116250.html", + "pubDate": "Fri, 27 Oct 2023 11:00:00 GMT", + "dc:creator": "Hollie Bowden", + "dc:date": "2023-10-27T11:00:00+00:00", + "content": "

Banish autumn gloom on the long, dark evenings ahead with this foolproof round-the-clock lighting plan that will work for both task lighting and atmosphere

", + "contentSnippet": "Banish autumn gloom on the long, dark evenings ahead with this foolproof round-the-clock lighting plan that will work for both task lighting and atmosphere", + "guid": "b1116250", + "categories": ["Interiors", "Homes & Property"], + "isoDate": "2023-10-27T11:00:00.000Z" + }, + { + "creator": "Lola Christina Alao", + "date": "2023-10-27T10:57:56+00:00", + "title": "Halloween 2023: Is there an age limit for doing trick or treat?", + "link": "https://www.standard.co.uk/lifestyle/halloween-2023-age-limit-trick-or-treat-b1116354.html", + "pubDate": "Fri, 27 Oct 2023 10:57:56 GMT", + "dc:creator": "Lola Christina Alao", + "dc:date": "2023-10-27T10:57:56+00:00", + "content": "

Spooky season is upon us, but how old is too old to go trick or treating?

", + "contentSnippet": "Spooky season is upon us, but how old is too old to go trick or treating?", + "guid": "b1116354", + "categories": ["Lifestyle"], + "isoDate": "2023-10-27T10:57:56.000Z" + }, + { + "creator": "Matt Cooper", + "date": "2023-10-27T10:55:52+00:00", + "title": "Cadbury World master chocolatiers make 50kg chocolate Halloween toad", + "link": "https://www.standard.co.uk/news/uk/green-birmingham-b1116391.html", + "pubDate": "Fri, 27 Oct 2023 10:55:52 GMT", + "dc:creator": "Matt Cooper", + "dc:date": "2023-10-27T10:55:52+00:00", + "content": "The toad is designed to be \u2018as whimsical as possible without being too scary\u2019.", + "contentSnippet": "The toad is designed to be \u2018as whimsical as possible without being too scary\u2019.", + "guid": "b1116391", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T10:55:52.000Z" + }, + { + "creator": "Dom Smith", + "date": "2023-10-27T10:46:24+00:00", + "title": "Frank Onyeka backs Brentford to secure European football as he reveals Champions League dream", + "link": "https://www.standard.co.uk/sport/football/frank-onyeka-brentford-champions-league-european-football-b1116383.html", + "pubDate": "Fri, 27 Oct 2023 10:46:24 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2023-10-27T10:46:24+00:00", + "content": "

The Nigerian international is confident the Bees can improve on last season

", + "contentSnippet": "The Nigerian international is confident the Bees can improve on last season", + "guid": "b1116383", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T10:46:24.000Z" + }, + { + "creator": "Abha Shah", + "date": "2023-10-27T10:46:23+00:00", + "title": "Best Black Friday 2023 deals on flights, hotels and holiday packages", + "link": "https://www.standard.co.uk/shopping/esbest/black-friday/flights-hotels-holidays-black-friday-deals-b1113895.html", + "pubDate": "Fri, 27 Oct 2023 10:46:23 GMT", + "dc:creator": "Abha Shah", + "dc:date": "2023-10-27T10:46:23+00:00", + "content": "

Fasten your seatbelts; the deals are about to start flying

", + "contentSnippet": "Fasten your seatbelts; the deals are about to start flying", + "guid": "b1113895", + "categories": ["Black Friday", "ES Best Home", "Shopping"], + "isoDate": "2023-10-27T10:46:23.000Z" + }, + { + "creator": "By Grinne N. Aodha", + "date": "2023-10-27T10:44:47+00:00", + "title": "Varadkar cautions against supermajority in any future Irish unity vote", + "link": "https://www.standard.co.uk/news/uk/northern-ireland-leo-varadkar-uk-government-brexit-brussels-b1116388.html", + "pubDate": "Fri, 27 Oct 2023 10:44:47 GMT", + "dc:creator": "By Grinne N. Aodha", + "dc:date": "2023-10-27T10:44:47+00:00", + "content": "The Taoiseach said there is not enough talk to convince people in Northern Ireland \u201cthat a united Ireland would be a warm home for them\u201d.", + "contentSnippet": "The Taoiseach said there is not enough talk to convince people in Northern Ireland \u201cthat a united Ireland would be a warm home for them\u201d.", + "guid": "b1116388", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T10:44:47.000Z" + }, + { + "creator": "Topsy Ojo", + "date": "2023-10-27T10:41:13+00:00", + "title": "Topsy Ojo column: England must play for pride tonight after huge impact of Kevin Sinfield's motivation", + "link": "https://www.standard.co.uk/sport/rugby/topsy-ojo-column-england-argentina-rugby-world-cup-kevin-sinfield-b1116374.html", + "pubDate": "Fri, 27 Oct 2023 10:41:13 GMT", + "dc:creator": "Topsy Ojo", + "dc:date": "2023-10-27T10:41:13+00:00", + "content": "

Third-place finish at Rugby World Cup would be a fine return

", + "contentSnippet": "Third-place finish at Rugby World Cup would be a fine return", + "guid": "b1116374", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2023-10-27T10:41:13.000Z" + }, + { + "creator": "August Graham", + "date": "2023-10-27T10:40:59+00:00", + "title": "NatWest sees customers switch to savings accounts as interest rates rise", + "link": "https://www.standard.co.uk/business/business-news/natwest-sees-customers-switch-to-savings-accounts-as-interest-rates-rise-b1116315.html", + "pubDate": "Fri, 27 Oct 2023 10:40:59 GMT", + "dc:creator": "August Graham", + "dc:date": "2023-10-27T10:40:59+00:00", + "content": "The business\u2019s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", + "contentSnippet": "The business\u2019s pre-tax profit fell slightly short of expectations in the three months to the end of September and it downgraded its outlook.", + "guid": "b1116315", + "categories": ["Business News", "Business"], + "isoDate": "2023-10-27T10:40:59.000Z" + }, + { + "creator": "Maryam Kara", + "date": "2023-10-27T10:39:24+00:00", + "title": "Ten historical Black British figures who helped shaped the country", + "link": "https://www.standard.co.uk/news/uk/black-british-history-historical-figures-people-icons-b1116111.html", + "pubDate": "Fri, 27 Oct 2023 10:39:24 GMT", + "dc:creator": "Maryam Kara", + "dc:date": "2023-10-27T10:39:24+00:00", + "content": "

Around 75 per cent of Britons either do not know \"very much\" or simply \"anything\" about Black British history, a survey has revealed

", + "contentSnippet": "Around 75 per cent of Britons either do not know \"very much\" or simply \"anything\" about Black British history, a survey has revealed", + "guid": "b1116111", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T10:39:24.000Z" + }, + { + "creator": "Cat Olley", + "date": "2023-10-27T10:35:59+00:00", + "title": "Blank canvas flat for sale in last surviving Battersea mansion where Nelson's Column architect was born\u00a0", + "link": "https://www.standard.co.uk/homesandproperty/property-news/london-flat-for-sale-the-shrubbery-battersea-grade-ii-listed-manor-house-b1114967.html", + "pubDate": "Fri, 27 Oct 2023 10:35:59 GMT", + "dc:creator": "Cat Olley", + "dc:date": "2023-10-27T10:35:59+00:00", + "content": "

The Shrubbery has also been home to an MP and a pre-Raphaelite painter in its 230-year history

", + "contentSnippet": "The Shrubbery has also been home to an MP and a pre-Raphaelite painter in its 230-year history", + "guid": "b1114967", + "categories": ["Property News", "Homes & Property"], + "isoDate": "2023-10-27T10:35:59.000Z" + }, + { + "creator": "Sami Quadri", + "date": "2023-10-27T10:35:23+00:00", + "title": "Passenger horrified after 'spotting mice in British Airways business lounge at Heathrow' ", + "link": "https://www.standard.co.uk/news/london/heathrow-british-airways-mouse-rodents-business-lounge-b1116362.html", + "pubDate": "Fri, 27 Oct 2023 10:35:23 GMT", + "dc:creator": "Sami Quadri", + "dc:date": "2023-10-27T10:35:23+00:00", + "content": "

An anonymous passenger expressed their \"disgust\" after spotting the unexpected guests

", + "contentSnippet": "An anonymous passenger expressed their \"disgust\" after spotting the unexpected guests", + "guid": "b1116362", + "categories": ["London", "News"], + "isoDate": "2023-10-27T10:35:23.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-10-27T10:33:15+00:00", + "title": "Arnold Schwarzenegger admits rivalry with Stallone \u2018got out of control\u2019", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/arnold-schwarzenegger-sylvester-stallone-rocky-judi-dench-jack-whitehall-b1116382.html", + "pubDate": "Fri, 27 Oct 2023 10:33:15 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-10-27T10:33:15+00:00", + "content": "The Terminator actor and Rocky star would compete against each other in their respective action films and attacked each other in the press.", + "contentSnippet": "The Terminator actor and Rocky star would compete against each other in their respective action films and attacked each other in the press.", + "guid": "b1116382", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-10-27T10:33:15.000Z" + }, + { + "creator": "By Grinne N. Aodha", + "date": "2023-10-27T10:31:50+00:00", + "title": "Irish premier says EU position on Israel-Palestine conflict is evolving", + "link": "https://www.standard.co.uk/news/politics/leo-varadkar-israel-palestine-president-eu-council-b1116379.html", + "pubDate": "Fri, 27 Oct 2023 10:31:50 GMT", + "dc:creator": "By Grinne N. Aodha", + "dc:date": "2023-10-27T10:31:50+00:00", + "content": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", + "contentSnippet": "Leo Varadkar said he was satisfied with the language of an agreed statement from 27 EU leaders issued on Thursday.", + "guid": "b1116379", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T10:31:50.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2023-10-27T10:26:22+00:00", + "title": "Taylor Swift fans go wild as she releases 1989 (Taylor's version)", + "link": "https://www.standard.co.uk/showbiz/taylor-swift-fans-react-1989-taylors-version-b1116358.html", + "pubDate": "Fri, 27 Oct 2023 10:26:22 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2023-10-27T10:26:22+00:00", + "content": "

The US superstar's latest record caused widespread disruption on Apple Music

", + "contentSnippet": "The US superstar's latest record caused widespread disruption on Apple Music", + "guid": "b1116358", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T10:26:22.000Z" + }, + { + "creator": "Rebecca Miles", + "date": "2023-10-27T10:25:44+00:00", + "title": "Snow Show London: The mountains are officially open and season's trends already clear", + "link": "https://www.standard.co.uk/lifestyle/travel/sustainable-travel/snow-show-london-skiing-excel-centre-trends-b1116350.html", + "pubDate": "Fri, 27 Oct 2023 10:25:44 GMT", + "dc:creator": "Rebecca Miles", + "dc:date": "2023-10-27T10:25:44+00:00", + "content": "

If the 10,000 winter sports fans that descended on London\u2019s ExCel exhibition centre last weekend are anything to go by, this ski season promises to be noisy, vibrant and welcoming.

", + "contentSnippet": "If the 10,000 winter sports fans that descended on London\u2019s ExCel exhibition centre last weekend are anything to go by, this ski season promises to be noisy, vibrant and welcoming.", + "guid": "b1116350", + "categories": ["Sustainable Travel", "Travel", "Lifestyle"], + "isoDate": "2023-10-27T10:25:44.000Z" + }, + { + "creator": "Matt Verri", + "date": "2023-10-27T10:24:38+00:00", + "title": "Barcelona vs Real Madrid: El Clasico prediction, kick-off time, TV, live stream, team news, h2h results, odds", + "link": "https://www.standard.co.uk/sport/football/barcelona-vs-real-madrid-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-el-clasico-laliga-2023-preview-b1116355.html", + "pubDate": "Fri, 27 Oct 2023 10:24:38 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2023-10-27T10:24:38+00:00", + "content": "

Everything you need to know as both sides go into the first Clasico of the campaign in fine form

", + "contentSnippet": "Everything you need to know as both sides go into the first Clasico of the campaign in fine form", + "guid": "b1116355", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T10:24:38.000Z" + }, + { + "creator": "Daniel Keane", + "date": "2023-10-27T10:23:08+00:00", + "title": "Urgent warning over counterfeit Ozempic after hospitalisations", + "link": "https://www.standard.co.uk/news/health/fake-weight-loss-pens-wegovy-ozempic-hospitalisations-b1116359.html", + "pubDate": "Fri, 27 Oct 2023 10:23:08 GMT", + "dc:creator": "Daniel Keane", + "dc:date": "2023-10-27T10:23:08+00:00", + "content": "

Medicines regulator seizes 369 potentially fake devices amid surge in demand

", + "contentSnippet": "Medicines regulator seizes 369 potentially fake devices amid surge in demand", + "guid": "b1116359", + "categories": ["Health", "News"], + "isoDate": "2023-10-27T10:23:08.000Z" + }, + { + "creator": "Ross Lydall", + "date": "2023-10-27T10:22:05+00:00", + "title": "Tube strikes breakthrough as Aslef bosses back 5% pay offer", + "link": "https://www.standard.co.uk/news/london/tube-strikes-aslef-pay-offer-recommendation-transport-for-london-tfl-b1116376.html", + "pubDate": "Fri, 27 Oct 2023 10:22:05 GMT", + "dc:creator": "Ross Lydall", + "dc:date": "2023-10-27T10:22:05+00:00", + "content": "

Transport for London made the 'full and final' one-year offer to 16,000 London Underground staff last week

", + "contentSnippet": "Transport for London made the 'full and final' one-year offer to 16,000 London Underground staff last week", + "guid": "b1116376", + "categories": ["London", "News"], + "isoDate": "2023-10-27T10:22:05.000Z" + }, + { + "creator": "Martyn Landi", + "date": "2023-10-27T10:19:50+00:00", + "title": "ChatGPT maker among AI firms to publish safety policies in transparency push", + "link": "https://www.standard.co.uk/news/tech/rishi-sunak-amazon-chatgpt-government-gillian-keegan-b1116375.html", + "pubDate": "Fri, 27 Oct 2023 10:19:50 GMT", + "dc:creator": "Martyn Landi", + "dc:date": "2023-10-27T10:19:50+00:00", + "content": "OpenAI is one of six tech giants to have published their responses to a Government request for AI safety policy details.", + "contentSnippet": "OpenAI is one of six tech giants to have published their responses to a Government request for AI safety policy details.", + "guid": "b1116375", + "categories": ["Tech", "News"], + "isoDate": "2023-10-27T10:19:50.000Z" + }, + { + "creator": "Ross Lydall", + "date": "2023-10-27T10:18:24+00:00", + "title": "'Commuters face decade of disruption if controversial Liverpool St station plans approved'", + "link": "https://www.standard.co.uk/news/transport/liverpool-street-station-plans-pool-hotel-approved-commuter-disruption-b1116373.html", + "pubDate": "Fri, 27 Oct 2023 10:18:24 GMT", + "dc:creator": "Ross Lydall", + "dc:date": "2023-10-27T10:18:24+00:00", + "content": "

Full details of the proposed \u00a31.5bn scheme emerged this week

", + "contentSnippet": "Full details of the proposed \u00a31.5bn scheme emerged this week", + "guid": "b1116373", + "categories": ["Transport", "News"], + "isoDate": "2023-10-27T10:18:24.000Z" + }, + { + "creator": "Matt Verri", + "date": "2023-10-27T10:16:50+00:00", + "title": "How to watch Crystal Palace vs Tottenham: TV channel and live stream for Premier League game today", + "link": "https://www.standard.co.uk/sport/football/how-to-watch-crystal-palace-vs-tottenham-tv-channel-live-stream-premier-league-today-b1115697.html", + "pubDate": "Fri, 27 Oct 2023 10:16:50 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2023-10-27T10:16:50+00:00", + "content": "

Tottenham take on Crystal Palace tonight looking to extend their lead atop the Premier League table.

", + "contentSnippet": "Tottenham take on Crystal Palace tonight looking to extend their lead atop the Premier League table.", + "guid": "b1115697", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T10:16:50.000Z" + }, + { + "creator": "Lauren Gilmour", + "date": "2023-10-27T10:16:18+00:00", + "title": "Rail services suspended as weather warning for rain extended", + "link": "https://www.standard.co.uk/news/environment/scotrail-inverness-aberdeen-dundee-met-office-b1116344.html", + "pubDate": "Fri, 27 Oct 2023 10:16:18 GMT", + "dc:creator": "Lauren Gilmour", + "dc:date": "2023-10-27T10:16:18+00:00", + "content": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", + "contentSnippet": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", + "guid": "b1116344", + "categories": ["Environment", "News"], + "isoDate": "2023-10-27T10:16:18.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2023-10-27T10:15:33+00:00", + "title": "Tottenham XI vs Crystal Palace: Udogie injury latest, confirmed team news and predicted lineup today", + "link": "https://www.standard.co.uk/sport/football/tottenham-xi-vs-crystal-palace-udogie-injury-latest-confirmed-team-news-predicted-lineup-premier-league-today-b1116183.html", + "pubDate": "Fri, 27 Oct 2023 10:15:33 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2023-10-27T10:15:33+00:00", + "content": "

Spurs boss set to make late call on left-back due to muscle issue

", + "contentSnippet": "Spurs boss set to make late call on left-back due to muscle issue", + "guid": "b1116183", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T10:15:33.000Z" + }, + { + "creator": "Alex Young", + "date": "2023-10-27T10:15:32+00:00", + "title": "Crystal Palace vs Tottenham: Prediction, kick-off time, TV, live stream, team news, h2h results, odds today", + "link": "https://www.standard.co.uk/sport/football/crystal-palace-vs-tottenham-prediction-kick-off-time-tv-live-stream-team-news-latest-h2h-results-odds-premier-league-2023-preview-today-b1115673.html", + "pubDate": "Fri, 27 Oct 2023 10:15:32 GMT", + "dc:creator": "Alex Young", + "dc:date": "2023-10-27T10:15:32+00:00", + "content": "

Spurs can go five points clear at the top of the Premier League with another London derby victory

", + "contentSnippet": "Spurs can go five points clear at the top of the Premier League with another London derby victory", + "guid": "b1115673", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T10:15:32.000Z" + }, + { + "creator": "Dom Smith", + "date": "2023-10-27T10:15:31+00:00", + "title": "Crystal Palace XI vs Tottenham: Predicted lineup, confirmed team news and injury latest today", + "link": "https://www.standard.co.uk/sport/football/crystal-palace-vs-tottenham-predicted-lineup-confirmed-team-news-injury-latest-premier-league-today-b1116248.html", + "pubDate": "Fri, 27 Oct 2023 10:15:31 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2023-10-27T10:15:31+00:00", + "content": "

Another big injury blow for defender ahead of Spurs clash

", + "contentSnippet": "Another big injury blow for defender ahead of Spurs clash", + "guid": "b1116248", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T10:15:31.000Z" + }, + { + "creator": "Matt Majendie", + "date": "2023-10-27T10:14:37+00:00", + "title": "Blow to Anthony Joshua vs Tyson Fury hopes as Frank Warren issues dour assessment of fight", + "link": "https://www.standard.co.uk/sport/boxing/joshua-vs-fury-fight-warren-b1116371.html", + "pubDate": "Fri, 27 Oct 2023 10:14:37 GMT", + "dc:creator": "Matt Majendie", + "dc:date": "2023-10-27T10:14:37+00:00", + "content": "

Former world champion \"well down the list\" of potential opponents for Gypsy King, who this weekend faces Francis Ngannou

", + "contentSnippet": "Former world champion \"well down the list\" of potential opponents for Gypsy King, who this weekend faces Francis Ngannou", + "guid": "b1116371", + "categories": ["Boxing", "Sport"], + "isoDate": "2023-10-27T10:14:37.000Z" + }, + { + "creator": "William Mata", + "date": "2023-10-27T10:10:27+00:00", + "title": "What is Edward Enninful's net worth? Vogue editor named most powerful black person in the UK", + "link": "https://www.standard.co.uk/news/uk/edward-enniful-vogue-editor-net-worth-b1116353.html", + "pubDate": "Fri, 27 Oct 2023 10:10:27 GMT", + "dc:creator": "William Mata", + "dc:date": "2023-10-27T10:10:27+00:00", + "content": "

Powerlist confirms outgoing Vogue editor is most powerful black person in Britain

", + "contentSnippet": "Powerlist confirms outgoing Vogue editor is most powerful black person in Britain", + "guid": "b1116353", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T10:10:27.000Z" + }, + { + "creator": "Lizzie Edmonds", + "date": "2023-10-27T10:08:35+00:00", + "title": "Taylor Swift fans speculating over identity of 'lying traitor' in new track", + "link": "https://www.standard.co.uk/showbiz/taylor-swift-1989-rerelease-lying-traitor-new-track-b1116347.html", + "pubDate": "Fri, 27 Oct 2023 10:08:35 GMT", + "dc:creator": "Lizzie Edmonds", + "dc:date": "2023-10-27T10:08:35+00:00", + "content": "

The rerelease, called 1989 (Taylor's Version), includes five new tracks

", + "contentSnippet": "The rerelease, called 1989 (Taylor's Version), includes five new tracks", + "guid": "b1116347", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T10:08:35.000Z" + }, + { + "creator": "Ellie Ng", + "date": "2023-10-27T10:05:53+00:00", + "title": "Man accused of \u2018terror-motivated\u2019 attacks further charged with assault", + "link": "https://www.standard.co.uk/news/crime/hartlepool-old-bailey-moroccan-b1116368.html", + "pubDate": "Fri, 27 Oct 2023 10:05:53 GMT", + "dc:creator": "Ellie Ng", + "dc:date": "2023-10-27T10:05:53+00:00", + "content": "Ahmed Alid, 44, is accused of murder, attempted murder, and two counts of assaulting emergency workers by beating.", + "contentSnippet": "Ahmed Alid, 44, is accused of murder, attempted murder, and two counts of assaulting emergency workers by beating.", + "guid": "b1116368", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T10:05:53.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-10-27T10:05:50+00:00", + "title": "England legacy intact and Jos Buttler's boys aren't finished yet... but their Cricket World Cup is", + "link": "https://www.standard.co.uk/sport/cricket/england-cricket-world-cup-buttler-legacy-b1116366.html", + "pubDate": "Fri, 27 Oct 2023 10:05:50 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-10-27T10:05:50+00:00", + "content": "

Wider questions over long-term future of ODI cricket and England's place in it must be solved

", + "contentSnippet": "Wider questions over long-term future of ODI cricket and England's place in it must be solved", + "guid": "b1116366", + "categories": ["Cricket", "Sport"], + "isoDate": "2023-10-27T10:05:50.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-10-27T10:01:27+00:00", + "title": "Nadine Dorries teases meaning behind title of book on Boris Johnson\u2019s downfall", + "link": "https://www.standard.co.uk/news/politics/nadine-dorries-boris-johnson-keir-starmer-conservative-party-culture-secretary-b1116364.html", + "pubDate": "Fri, 27 Oct 2023 10:01:27 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-10-27T10:01:27+00:00", + "content": "It will be published on November 9.", + "contentSnippet": "It will be published on November 9.", + "guid": "b1116364", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T10:01:27.000Z" + }, + { + "creator": "Henry Saker-Clark", + "date": "2023-10-27T10:01:09+00:00", + "title": "Wilko shops to return to high street by Christmas, says new brand owner", + "link": "https://www.standard.co.uk/business/business-news/wilko-shops-to-return-to-high-street-by-christmas-says-new-brand-owner-b1116363.html", + "pubDate": "Fri, 27 Oct 2023 10:01:09 GMT", + "dc:creator": "Henry Saker-Clark", + "dc:date": "2023-10-27T10:01:09+00:00", + "content": "CDS Superstores said the first two standalone Wilko \u2018concept stores\u2019 will be opened in Plymouth and Exeter.", + "contentSnippet": "CDS Superstores said the first two standalone Wilko \u2018concept stores\u2019 will be opened in Plymouth and Exeter.", + "guid": "b1116363", + "categories": ["Business News", "Business"], + "isoDate": "2023-10-27T10:01:09.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2023-10-27T09:57:45+00:00", + "title": "Best Argos deals to expect for Black Friday 2023: Tech, toys, homeware and more ", + "link": "https://www.standard.co.uk/shopping/esbest/black-friday/argos-deals-black-friday-sale-b1113834.html", + "pubDate": "Fri, 27 Oct 2023 09:57:45 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2023-10-27T09:57:45+00:00", + "content": "

Check out these irresistible bargains

", + "contentSnippet": "Check out these irresistible bargains", + "guid": "b1113834", + "categories": ["Black Friday", "ES Best Home", "Shopping"], + "isoDate": "2023-10-27T09:57:45.000Z" + }, + { + "creator": "Ellie Davis", + "date": "2023-10-27T09:53:37+00:00", + "title": "Best TV deals to expect for Black Friday 2023 from Samsung to LG and more", + "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-tv-deals-black-friday-sale-b1113872.html", + "pubDate": "Fri, 27 Oct 2023 09:53:37 GMT", + "dc:creator": "Ellie Davis", + "dc:date": "2023-10-27T09:53:37+00:00", + "content": "

The early box deals you need to know about

", + "contentSnippet": "The early box deals you need to know about", + "guid": "b1113872", + "categories": ["Black Friday", "ES Best Home", "Shopping"], + "isoDate": "2023-10-27T09:53:37.000Z" + }, + { + "creator": "Lisa McLoughlin ", + "date": "2023-10-27T09:51:38+00:00", + "title": "Amanda Abbington's fianc\u00e9 shares cryptic post after her shock Strictly Come Dancing exit ", + "link": "https://www.standard.co.uk/showbiz/amanda-abbington-fiance-jonathan-goodwin-strictly-come-dancing-exit-b1116335.html", + "pubDate": "Fri, 27 Oct 2023 09:51:38 GMT", + "dc:creator": "Lisa McLoughlin ", + "dc:date": "2023-10-27T09:51:38+00:00", + "content": "

The Sherlock actress confirmed she quit the BBC series on Tuesday for 'personal reasons'

", + "contentSnippet": "The Sherlock actress confirmed she quit the BBC series on Tuesday for 'personal reasons'", + "guid": "b1116335", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T09:51:38.000Z" + }, + { + "creator": "Matt Verri", + "date": "2023-10-27T09:39:39+00:00", + "title": "Manchester United: Alejandro Garnacho risks ban despite support from Andre Onana over controversial post", + "link": "https://www.standard.co.uk/sport/football/alejandro-garnacho-andre-onana-man-utd-post-b1116316.html", + "pubDate": "Fri, 27 Oct 2023 09:39:39 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2023-10-27T09:39:39+00:00", + "content": "

Onana has insisted the teenager should not face punishment but an FA charge remains a possibility

", + "contentSnippet": "Onana has insisted the teenager should not face punishment but an FA charge remains a possibility", + "guid": "b1116316", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T09:39:39.000Z" + }, + { + "creator": "Nizaar Kinsella", + "date": "2023-10-27T09:11:30+00:00", + "title": "Conor Gallagher's remarkable renaissance: From Chelsea cast-off to captain", + "link": "https://www.standard.co.uk/sport/football/conor-gallagher-chelsea-fc-b1116343.html", + "pubDate": "Fri, 27 Oct 2023 09:11:30 GMT", + "dc:creator": "Nizaar Kinsella", + "dc:date": "2023-10-27T09:11:30+00:00", + "content": "

Chelsea were happy to cash in on academy product but he's become a key cog in Mauricio Pochettino's improving Blues

", + "contentSnippet": "Chelsea were happy to cash in on academy product but he's become a key cog in Mauricio Pochettino's improving Blues", + "guid": "b1116343", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T09:11:30.000Z" + }, + { + "creator": "Simon Collings", + "date": "2023-10-27T08:39:40+00:00", + "title": "Pedro Neto responds to Arsenal links as Wolves winger reveals transfer 'hope'", + "link": "https://www.standard.co.uk/sport/football/arsenal-fc-transfer-news-pedro-neto-wolves-b1116334.html", + "pubDate": "Fri, 27 Oct 2023 08:39:40 GMT", + "dc:creator": "Simon Collings", + "dc:date": "2023-10-27T08:39:40+00:00", + "content": "

Arsenal have tracked Portuguese star for some time, but he remains focused on battle to beat the drop at Molineux

", + "contentSnippet": "Arsenal have tracked Portuguese star for some time, but he remains focused on battle to beat the drop at Molineux", + "guid": "b1116334", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T08:39:40.000Z" + }, + { + "creator": "Malik Ouzia", + "date": "2023-10-27T08:28:35+00:00", + "title": "Danny Ings' Greek tragedy underlines West Ham striker issue that won't go away", + "link": "https://www.standard.co.uk/sport/football/west-ham-danny-ings-olympiacos-b1116331.html", + "pubDate": "Fri, 27 Oct 2023 08:28:35 GMT", + "dc:creator": "Malik Ouzia", + "dc:date": "2023-10-27T08:28:35+00:00", + "content": "

Olympiacos defeat put Hammers' transfer decision in spotlight

", + "contentSnippet": "Olympiacos defeat put Hammers' transfer decision in spotlight", + "guid": "b1116331", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T08:28:35.000Z" + }, + { + "creator": "Dan Kilpatrick", + "date": "2023-10-27T07:55:39+00:00", + "title": "Carefree Tottenham must throw off shackles to contend with new expectations", + "link": "https://www.standard.co.uk/sport/football/tottenham-postecoglou-crystal-palace-title-expectations-b1116319.html", + "pubDate": "Fri, 27 Oct 2023 07:55:39 GMT", + "dc:creator": "Dan Kilpatrick", + "dc:date": "2023-10-27T07:55:39+00:00", + "content": "

Spurs face Crystal Palace tonight with the added pressure of unexpectedly leading the Premier League

", + "contentSnippet": "Spurs face Crystal Palace tonight with the added pressure of unexpectedly leading the Premier League", + "guid": "b1116319", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T07:55:39.000Z" + }, + { + "creator": "Beril Naz Hassan", + "date": "2023-10-27T15:55:09+00:00", + "title": "Why is Taylor Swift rerecording her old albums and which does she have left to record?", + "link": "https://www.standard.co.uk/news/world/taylor-swift-which-albums-does-she-own-re-record-b1092880.html", + "pubDate": "Fri, 27 Oct 2023 15:55:09 GMT", + "dc:creator": "Beril Naz Hassan", + "dc:date": "2023-10-27T15:55:09+00:00", + "content": "

Swifties have been showing their support by sticking to Taylor\u2019s new versions of her classic hits

", + "contentSnippet": "Swifties have been showing their support by sticking to Taylor\u2019s new versions of her classic hits", + "guid": "b1092880", + "categories": ["World", "News"], + "isoDate": "2023-10-27T15:55:09.000Z" + }, + { + "creator": "Lola Christina Alao", + "date": "2023-10-27T15:49:37+00:00", + "title": "International Stress Awareness Week 2023: what are the signs of stress and how to seek help", + "link": "https://www.standard.co.uk/news/uk/what-is-international-stress-awareness-week-signs-how-to-get-help-b1037393.html", + "pubDate": "Fri, 27 Oct 2023 15:49:37 GMT", + "dc:creator": "Lola Christina Alao", + "dc:date": "2023-10-27T15:49:37+00:00", + "content": "

Stress Awarness Week has taken place since 2018 with the aim of promoting health and wellbeing, and preventing stress

", + "contentSnippet": "Stress Awarness Week has taken place since 2018 with the aim of promoting health and wellbeing, and preventing stress", + "guid": "b1037393", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T15:49:37.000Z" + }, + { + "creator": "Lydia Chantler-Hicks and Miriam Burrell", + "date": "2023-10-27T15:49:22+00:00", + "title": "Maine shootings: Police hunting for gunman search river as thousands told to stay locked down", + "link": "https://www.standard.co.uk/news/world/maine-shootings-latest-search-manhunt-police-bowling-alley-b1116297.html", + "pubDate": "Fri, 27 Oct 2023 15:49:22 GMT", + "dc:creator": "Lydia Chantler-Hicks and Miriam Burrell", + "dc:date": "2023-10-27T15:49:22+00:00", + "content": "

Robert Card is suspected of killing 18 people and wounding 13 more after opening fire at a bowling alley

", + "contentSnippet": "Robert Card is suspected of killing 18 people and wounding 13 more after opening fire at a bowling alley", + "guid": "b1116297", + "categories": ["World", "News"], + "isoDate": "2023-10-27T15:49:22.000Z" + }, + { + "creator": "Ellie Iorizzo", + "date": "2023-10-27T15:47:45+00:00", + "title": "Pete Doherty suggests meeting Mark Blanco\u2019s mother to \u2018move on\u2019 from death", + "link": "https://www.standard.co.uk/culture/music/pete-doherty-crown-prosecution-service-london-whitechapel-none-b1116492.html", + "pubDate": "Fri, 27 Oct 2023 15:47:45 GMT", + "dc:creator": "Ellie Iorizzo", + "dc:date": "2023-10-27T15:47:45+00:00", + "content": "The rock star was interviewed by police but never arrested over the death.", + "contentSnippet": "The rock star was interviewed by police but never arrested over the death.", + "guid": "b1116492", + "categories": ["Music", "Culture"], + "isoDate": "2023-10-27T15:47:45.000Z" + }, + { + "creator": "Rod Minchin", + "date": "2023-10-27T15:43:59+00:00", + "title": "\u2018Somerset Gimp\u2019 unmasked as gardener convicted of scaring female motorists", + "link": "https://www.standard.co.uk/news/crime/avon-and-somerset-police-police-b1116495.html", + "pubDate": "Fri, 27 Oct 2023 15:43:59 GMT", + "dc:creator": "Rod Minchin", + "dc:date": "2023-10-27T15:43:59+00:00", + "content": "When Joshua Hunt, 32, was arrested in May this year, he told police: \u2018I am not a gimp.\u2019", + "contentSnippet": "When Joshua Hunt, 32, was arrested in May this year, he told police: \u2018I am not a gimp.\u2019", + "guid": "b1116495", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T15:43:59.000Z" + }, + { + "creator": "Sami Quadri", + "date": "2023-10-27T15:42:14+00:00", + "title": "FTX founder Sam Bankman-Fried testifies at his fraud trial", + "link": "https://www.standard.co.uk/news/world/sam-bankman-fried-ftx-fraud-trial-testimony-manhattan-b1116482.html", + "pubDate": "Fri, 27 Oct 2023 15:42:14 GMT", + "dc:creator": "Sami Quadri", + "dc:date": "2023-10-27T15:42:14+00:00", + "content": "

The former cryptocurrency executive is accused of stealing billions of dollars from customers and investors over several years

", + "contentSnippet": "The former cryptocurrency executive is accused of stealing billions of dollars from customers and investors over several years", + "guid": "b1116482", + "categories": ["World", "News"], + "isoDate": "2023-10-27T15:42:14.000Z" + }, + { + "creator": "Beril Naz Hassan", + "date": "2023-10-27T15:42:13+00:00", + "title": "What is National Black Cat Day and why are black cats considered bad luck?", + "link": "https://www.standard.co.uk/news/uk/national-black-cat-day-why-bad-luck-superstition-b1116493.html", + "pubDate": "Fri, 27 Oct 2023 15:42:13 GMT", + "dc:creator": "Beril Naz Hassan", + "dc:date": "2023-10-27T15:42:13+00:00", + "content": "

It\u2019s time to put aside our superstitions and celebrate black cats

", + "contentSnippet": "It\u2019s time to put aside our superstitions and celebrate black cats", + "guid": "b1116493", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T15:42:13.000Z" + }, + { + "creator": "City Staff", + "date": "2023-10-27T15:41:43+00:00", + "title": "FTSE 100 Live: NatWest shares plunge after Farage report, blue-chips in two-month low close", + "link": "https://www.standard.co.uk/business/ftse-100-live-27-october-amazon-natwest-iag-pound-dollar-stocks-shares-inflation-interest-rate-bank-of-england-b1116278.html", + "pubDate": "Fri, 27 Oct 2023 15:41:43 GMT", + "dc:creator": "City Staff", + "dc:date": "2023-10-27T15:41:43+00:00", + "content": "

", + "contentSnippet": "", + "guid": "b1116278", + "categories": ["Business"], + "isoDate": "2023-10-27T15:41:43.000Z" + }, + { + "creator": "Ellie Davis", + "date": "2023-10-27T15:40:26+00:00", + "title": "Best 90s fragrances we love that are back in fashion", + "link": "https://www.standard.co.uk/shopping/esbest/beauty/fragrance/best-90s-fragrances-b1115920.html", + "pubDate": "Fri, 27 Oct 2023 15:40:26 GMT", + "dc:creator": "Ellie Davis", + "dc:date": "2023-10-27T15:40:26+00:00", + "content": "

There has been a resurgence in these nostalgic scents

", + "contentSnippet": "There has been a resurgence in these nostalgic scents", + "guid": "b1115920", + "categories": ["Fragrance", "Beauty", "ES Best Home", "Shopping"], + "isoDate": "2023-10-27T15:40:26.000Z" + }, + { + "creator": "George Flood", + "date": "2023-10-27T15:36:46+00:00", + "title": "Liverpool XI vs Nottingham Forest: Confirmed team news, predicted lineup and injury latest", + "link": "https://www.standard.co.uk/sport/football/liverpool-fc-xi-vs-nottingham-forest-confirmed-team-news-predicted-lineup-injury-latest-premier-league-2023-b1116479.html", + "pubDate": "Fri, 27 Oct 2023 15:36:46 GMT", + "dc:creator": "George Flood", + "dc:date": "2023-10-27T15:36:46+00:00", + "content": "

Darwin Nunez will be pressing to start in Sunday's Premier League clash at Anfield

", + "contentSnippet": "Darwin Nunez will be pressing to start in Sunday's Premier League clash at Anfield", + "guid": "b1116479", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T15:36:46.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2023-10-27T15:28:58+00:00", + "title": "Robert De Niro and Asa Butterfield become friends in new Uber One ad", + "link": "https://www.standard.co.uk/showbiz/robert-de-niro-asa-butterfield-uber-one-advert-b1116459.html", + "pubDate": "Fri, 27 Oct 2023 15:28:58 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2023-10-27T15:28:58+00:00", + "content": "

The unlikely duo bond over their shared love of eating food and going places

", + "contentSnippet": "The unlikely duo bond over their shared love of eating food and going places", + "guid": "b1116459", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T15:28:58.000Z" + }, + { + "creator": "Lauren Gilmour", + "date": "2023-10-27T15:27:36+00:00", + "title": "Rail services suspended as weather warning for rain extended", + "link": "https://www.standard.co.uk/news/environment/aberdeen-inverness-scotrail-perth-dundee-b1116344.html", + "pubDate": "Fri, 27 Oct 2023 15:27:36 GMT", + "dc:creator": "Lauren Gilmour", + "dc:date": "2023-10-27T15:27:36+00:00", + "content": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", + "contentSnippet": "No direct ScotRail trains between the central belt and Aberdeen and Inverness will operate until Sunday.", + "guid": "b1116344", + "categories": ["Environment", "News"], + "isoDate": "2023-10-27T15:27:36.000Z" + }, + { + "creator": "Tom Davidson", + "date": "2023-10-27T15:25:15+00:00", + "title": "Thelma Schoonmaker: Cinemas showing Killers of the Flower Moon with intermission 'a violation'", + "link": "https://www.standard.co.uk/culture/film/killers-of-the-flower-moon-intermission-cinemas-thelma-schoonmaker-martin-scorsese-b1116451.html", + "pubDate": "Fri, 27 Oct 2023 15:25:15 GMT", + "dc:creator": "Tom Davidson", + "dc:date": "2023-10-27T15:25:15+00:00", + "content": "

Director Martin Scorsese has defended the length of his latest work, the acclaimed Killers of the Flower Moon

", + "contentSnippet": "Director Martin Scorsese has defended the length of his latest work, the acclaimed Killers of the Flower Moon", + "guid": "b1116451", + "categories": ["Film", "Culture"], + "isoDate": "2023-10-27T15:25:15.000Z" + }, + { + "creator": "Sarah Harvey and Rachael Burford", + "date": "2023-10-27T15:20:52+00:00", + "title": "Boris Johnson to join GB News as presenter", + "link": "https://www.standard.co.uk/news/politics/boris-johnson-join-gb-news-presenter-b1116464.html", + "pubDate": "Fri, 27 Oct 2023 15:20:52 GMT", + "dc:creator": "Sarah Harvey and Rachael Burford", + "dc:date": "2023-10-27T15:20:52+00:00", + "content": "

He is the latest Tory politician to take up a presenting role on the channel

", + "contentSnippet": "He is the latest Tory politician to take up a presenting role on the channel", + "guid": "b1116464", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T15:20:52.000Z" + }, + { + "creator": "Rod Minchin", + "date": "2023-10-27T15:17:55+00:00", + "title": "Man dressed in gimp suit who terrified female drivers convicted of public order offences", + "link": "https://www.standard.co.uk/news/crime/gimp-suit-man-motorists-bleadon-bristol-magistrates-court-b1116455.html", + "pubDate": "Fri, 27 Oct 2023 15:17:55 GMT", + "dc:creator": "Rod Minchin", + "dc:date": "2023-10-27T15:17:55+00:00", + "content": "

One woman said 'he was writhing and crawling as if in a military fashion', Bristol Magistrates Court heard

", + "contentSnippet": "One woman said 'he was writhing and crawling as if in a military fashion', Bristol Magistrates Court heard", + "guid": "b1116455", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T15:17:55.000Z" + }, + { + "creator": "Paul Cargill", + "date": "2023-10-27T15:13:25+00:00", + "title": "Hundreds of offshore workers to be balloted in row over rotas and pay", + "link": "https://www.standard.co.uk/news/uk/hundreds-of-offshore-workers-to-be-balloted-in-row-over-rotas-and-pay-b1116487.html", + "pubDate": "Fri, 27 Oct 2023 15:13:25 GMT", + "dc:creator": "Paul Cargill", + "dc:date": "2023-10-27T15:13:25+00:00", + "content": "The dispute centres on a company\u2019s alleged refusal to reform working rotas and provide paid leave.", + "contentSnippet": "The dispute centres on a company\u2019s alleged refusal to reform working rotas and provide paid leave.", + "guid": "b1116487", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T15:13:25.000Z" + }, + { + "creator": "Claudia Cockerell and Ethan Croft", + "date": "2023-10-27T15:12:19+00:00", + "title": "Londoners shocked by \u00a325 per person pub quiz (and 'disappointing' prize)", + "link": "https://www.standard.co.uk/news/londoners-diary/londoners-shocked-twenty-five-pound-per-person-pub-quiz-the-pelican-b1116483.html", + "pubDate": "Fri, 27 Oct 2023 15:12:19 GMT", + "dc:creator": "Claudia Cockerell and Ethan Croft", + "dc:date": "2023-10-27T15:12:19+00:00", + "content": "

A winning team was left disappointed by their prize

", + "contentSnippet": "A winning team was left disappointed by their prize", + "guid": "b1116483", + "categories": ["Diary", "News"], + "isoDate": "2023-10-27T15:12:19.000Z" + }, + { + "creator": "Nina Lloyd", + "date": "2023-10-27T15:12:09+00:00", + "title": "UK ministers continue to resist calls for ceasefire in Middle East", + "link": "https://www.standard.co.uk/news/politics/gillian-keegan-israel-middle-east-gaza-hamas-b1116352.html", + "pubDate": "Fri, 27 Oct 2023 15:12:09 GMT", + "dc:creator": "Nina Lloyd", + "dc:date": "2023-10-27T15:12:09+00:00", + "content": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", + "contentSnippet": "Minister Gillian Keegan said the Government would not want to \u2018cross that line of telling Israel it has anything but the right to defend itself\u2019.", + "guid": "b1116352", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T15:12:09.000Z" + }, + { + "creator": "Tamara Davison,Beril Naz Hassan and Nuray Bulbul", + "date": "2023-10-27T15:11:49+00:00", + "title": "London airports\u2019 cancelled flights list: Luton, Gatwick, Heathrow and more", + "link": "https://www.standard.co.uk/news/uk/london-airport-cancelled-flights-list-gatwick-heathrow-b1111239.html", + "pubDate": "Fri, 27 Oct 2023 15:11:49 GMT", + "dc:creator": "Tamara Davison,Beril Naz Hassan and Nuray Bulbul", + "dc:date": "2023-10-27T15:11:49+00:00", + "content": "

Strikes and staffing challenges have caused chaos at many UK airports

", + "contentSnippet": "Strikes and staffing challenges have caused chaos at many UK airports", + "guid": "b1111239", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T15:11:49.000Z" + }, + { + "creator": "Craig Paton", + "date": "2023-10-27T15:10:07+00:00", + "title": "Yousaf calls on every UK political leader to back Gaza ceasefire", + "link": "https://www.standard.co.uk/news/politics/humza-yousaf-gaza-hamas-rishi-sunak-keir-starmer-b1116484.html", + "pubDate": "Fri, 27 Oct 2023 15:10:07 GMT", + "dc:creator": "Craig Paton", + "dc:date": "2023-10-27T15:10:07+00:00", + "content": "The First Minister has written to the leaders of all parties to warn without action, the situation will become \u2018cataclysmic\u2019.", + "contentSnippet": "The First Minister has written to the leaders of all parties to warn without action, the situation will become \u2018cataclysmic\u2019.", + "guid": "b1116484", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T15:10:07.000Z" + }, + { + "creator": "Jonathan Prynn", + "date": "2023-10-27T15:09:06+00:00", + "title": "NatWest mess is harming the interests of taxpayers", + "link": "https://www.standard.co.uk/business/natwest-mess-nigel-farage-alison-rose-taxpayer-sir-howard-davies-coutts-bank-account-b1116467.html", + "pubDate": "Fri, 27 Oct 2023 15:09:06 GMT", + "dc:creator": "Jonathan Prynn", + "dc:date": "2023-10-27T15:09:06+00:00", + "content": "

City Comment: Chairman Sir Howard Davies has some tough decisions ahead

", + "contentSnippet": "City Comment: Chairman Sir Howard Davies has some tough decisions ahead", + "guid": "b1116467", + "categories": ["Business"], + "isoDate": "2023-10-27T15:09:06.000Z" + }, + { + "creator": "Sam Hall", + "date": "2023-10-27T15:09:00+00:00", + "title": "Olympic gymnast hopes MBE will inspire others \u2018to be the best that they can\u2019", + "link": "https://www.standard.co.uk/news/uk/great-britain-mbe-los-angeles-buckingham-palace-princess-b1116485.html", + "pubDate": "Fri, 27 Oct 2023 15:09:00 GMT", + "dc:creator": "Sam Hall", + "dc:date": "2023-10-27T15:09:00+00:00", + "content": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", + "contentSnippet": "Kathy Williams was the black gymnast to represent Britain at the Olympic Games.", + "guid": "b1116485", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T15:09:00.000Z" + }, + { + "creator": "Josh Salisbury", + "date": "2023-10-27T15:07:44+00:00", + "title": "West Ham: Grassroots football club 'homeless' after council gives playing field to premier league team", + "link": "https://www.standard.co.uk/news/london/bealonians-fc-west-ham-redbridge-council-oakfield-playing-fields-b1116439.html", + "pubDate": "Fri, 27 Oct 2023 15:07:44 GMT", + "dc:creator": "Josh Salisbury", + "dc:date": "2023-10-27T15:07:44+00:00", + "content": "

Bealonians FC fears for future after premier league side given lease of playing fields

", + "contentSnippet": "Bealonians FC fears for future after premier league side given lease of playing fields", + "guid": "b1116439", + "categories": ["London", "News"], + "isoDate": "2023-10-27T15:07:44.000Z" + }, + { + "creator": "Alex Young", + "date": "2023-10-27T15:07:19+00:00", + "title": "Man City XI vs Manchester United: Predicted lineup, confirmed team news, injury latest", + "link": "https://www.standard.co.uk/sport/football/man-city-xi-vs-man-utd-predicted-lineup-confirmed-team-news-injury-latest-2023-premier-league-b1116478.html", + "pubDate": "Fri, 27 Oct 2023 15:07:19 GMT", + "dc:creator": "Alex Young", + "dc:date": "2023-10-27T15:07:19+00:00", + "content": "

The Premier League champions are almost at full strength for the Manchester derby

", + "contentSnippet": "The Premier League champions are almost at full strength for the Manchester derby", + "guid": "b1116478", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T15:07:19.000Z" + }, + { + "creator": "Callum Parke", + "date": "2023-10-27T15:06:10+00:00", + "title": "Thai football team captain who was trapped in cave killed himself, coroner rules", + "link": "https://www.standard.co.uk/news/crime/thai-leicester-city-bbc-b1116480.html", + "pubDate": "Fri, 27 Oct 2023 15:06:10 GMT", + "dc:creator": "Callum Parke", + "dc:date": "2023-10-27T15:06:10+00:00", + "content": "The coroner said Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019.", + "contentSnippet": "The coroner said Duangphet Phromthep\u2019s death \u2018could not have been foreseen or prevented\u2019.", + "guid": "b1116480", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T15:06:10.000Z" + }, + { + "creator": "Miriam Burrell", + "date": "2023-10-27T15:05:06+00:00", + "title": "London teacher who abused boys after grooming them on dating app Grindr jailed", + "link": "https://www.standard.co.uk/news/crime/grindr-sexual-abuse-london-teacher-metropolitan-police-george-watkins-b1116469.html", + "pubDate": "Fri, 27 Oct 2023 15:05:06 GMT", + "dc:creator": "Miriam Burrell", + "dc:date": "2023-10-27T15:05:06+00:00", + "content": "

George Watkins preyed on young teenagers who hadn't come out to their families

", + "contentSnippet": "George Watkins preyed on young teenagers who hadn't come out to their families", + "guid": "b1116469", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T15:05:06.000Z" + }, + { + "creator": "Rod Minchin", + "date": "2023-10-27T15:03:54+00:00", + "title": "Man found guilty of gimp suit offences towards female motorists", + "link": "https://www.standard.co.uk/news/crime/somerset-avon-and-somerset-police-b1116481.html", + "pubDate": "Fri, 27 Oct 2023 15:03:54 GMT", + "dc:creator": "Rod Minchin", + "dc:date": "2023-10-27T15:03:54+00:00", + "content": "He was fined \u00a3100 and ordered to pay \u00a3200 compensation to each of his three victims and \u00a3620 prosecution costs.", + "contentSnippet": "He was fined \u00a3100 and ordered to pay \u00a3200 compensation to each of his three victims and \u00a3620 prosecution costs.", + "guid": "b1116481", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T15:03:54.000Z" + }, + { + "creator": "Noah Vickers", + "date": "2023-10-27T15:02:18+00:00", + "title": "City Hall policing board member slammed for calling Covid 'greatest hustle' and warning against 'climate lockdowns'", + "link": "https://www.standard.co.uk/news/london/sayce-holmes-lewis-sadiq-khan-london-policing-board-social-media-covid-climate-world-economic-forum-b1116259.html", + "pubDate": "Fri, 27 Oct 2023 15:02:18 GMT", + "dc:creator": "Noah Vickers", + "dc:date": "2023-10-27T15:02:18+00:00", + "content": "

Sayce Holmes-Lewis criticised for 'hugely irresponsible comments' - but City Hall says members are expected to have 'a variety of strong opinions and perspectives'

", + "contentSnippet": "Sayce Holmes-Lewis criticised for 'hugely irresponsible comments' - but City Hall says members are expected to have 'a variety of strong opinions and perspectives'", + "guid": "b1116259", + "categories": ["London", "News"], + "isoDate": "2023-10-27T15:02:18.000Z" + }, + { + "creator": "Maryam Kara", + "date": "2023-10-27T15:00:54+00:00", + "title": "What are Brits' biggest fears? Being ghosted is one of them", + "link": "https://www.standard.co.uk/news/uk/brits-biggest-fears-halloween-phobias-ghosted-b1116423.html", + "pubDate": "Fri, 27 Oct 2023 15:00:54 GMT", + "dc:creator": "Maryam Kara", + "dc:date": "2023-10-27T15:00:54+00:00", + "content": "

New research has revealed the top 20 modern spooks for Brits \u2013 and you may be surprised

", + "contentSnippet": "New research has revealed the top 20 modern spooks for Brits \u2013 and you may be surprised", + "guid": "b1116423", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T15:00:54.000Z" + }, + { + "creator": "Joe Bromley", + "date": "2023-10-27T15:00:36+00:00", + "title": "\u2018Father is fathering\u2019: Travis Kelce is a fashion Mob daddy ", + "link": "https://www.standard.co.uk/lifestyle/fashion/father-is-fathering-travis-kelce-is-a-fashion-mob-daddy-b1116416.html", + "pubDate": "Fri, 27 Oct 2023 15:00:36 GMT", + "dc:creator": "Joe Bromley", + "dc:date": "2023-10-27T15:00:36+00:00", + "content": "

Travis Kelce is the fashion boys' latest recruit \u2014 and he is going gangster

", + "contentSnippet": "Travis Kelce is the fashion boys' latest recruit \u2014 and he is going gangster", + "guid": "b1116416", + "categories": ["Fashion", "Lifestyle"], + "isoDate": "2023-10-27T15:00:36.000Z" + }, + { + "creator": "Jack Kessler", + "date": "2023-10-27T14:58:27+00:00", + "title": "OPINION - Why Taylor Swift is bigger than The Beatles (but smaller than the French economy)", + "link": "https://www.standard.co.uk/comment/taylor-swift-1989-version-apple-the-beatles-b1116475.html", + "pubDate": "Fri, 27 Oct 2023 14:58:27 GMT", + "dc:creator": "Jack Kessler", + "dc:date": "2023-10-27T14:58:27+00:00", + "content": "

If you want to annoy an economist, try mixing up stock and flow. This is a mistake commonly made even by business journalists (though not Jonathan Prynn, of course) when attempting to describe the value of large companies.

", + "contentSnippet": "If you want to annoy an economist, try mixing up stock and flow. This is a mistake commonly made even by business journalists (though not Jonathan Prynn, of course) when attempting to describe the value of large companies.", + "guid": "b1116475", + "categories": ["Comment"], + "isoDate": "2023-10-27T14:58:27.000Z" + }, + { + "creator": "Simon Hunt", + "date": "2023-10-27T14:56:03+00:00", + "title": "London architects unveil plans to convert Enfield golf course into modern housing", + "link": "https://www.standard.co.uk/business/london-architects-plan-enfield-golf-course-housing-rcka-b1116472.html", + "pubDate": "Fri, 27 Oct 2023 14:56:03 GMT", + "dc:creator": "Simon Hunt", + "dc:date": "2023-10-27T14:56:03+00:00", + "content": "

The move could see hundreds of new homes created for Londoners

", + "contentSnippet": "The move could see hundreds of new homes created for Londoners", + "guid": "b1116472", + "categories": ["Business"], + "isoDate": "2023-10-27T14:56:03.000Z" + }, + { + "creator": "Sam Blewett", + "date": "2023-10-27T14:55:39+00:00", + "title": "Khan, Sarwar and Burnham pile pressure on Starmer by demanding Israel ceasefire", + "link": "https://www.standard.co.uk/news/politics/keir-starmer-israel-sadiq-khan-burnham-andy-burnham-b1116474.html", + "pubDate": "Fri, 27 Oct 2023 14:55:39 GMT", + "dc:creator": "Sam Blewett", + "dc:date": "2023-10-27T14:55:39+00:00", + "content": "The Labour leader is standing by his stance of supporting Israel\u2019s right to self defence despite the Palestinian civilians being killed.", + "contentSnippet": "The Labour leader is standing by his stance of supporting Israel\u2019s right to self defence despite the Palestinian civilians being killed.", + "guid": "b1116474", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T14:55:39.000Z" + }, + { + "creator": "Lauren Gilmour", + "date": "2023-10-27T14:54:38+00:00", + "title": "Scottish Water staff plan weekly strikes over three months amid pay row", + "link": "https://www.standard.co.uk/business/business-news/scottish-water-staff-plan-weekly-strikes-over-three-months-amid-pay-row-b1116473.html", + "pubDate": "Fri, 27 Oct 2023 14:54:38 GMT", + "dc:creator": "Lauren Gilmour", + "dc:date": "2023-10-27T14:54:38+00:00", + "content": "Unions accused the firm of \u2018insatiable greed\u2019.", + "contentSnippet": "Unions accused the firm of \u2018insatiable greed\u2019.", + "guid": "b1116473", + "categories": ["Business News", "Business"], + "isoDate": "2023-10-27T14:54:38.000Z" + }, + { + "creator": "Bill McLoughlin", + "date": "2023-10-27T14:45:31+00:00", + "title": "Vulnerable Crayford pensioner suffering from dementia not seen for three days", + "link": "https://www.standard.co.uk/news/london/crayford-pensioner-missing-dementia-appeal-met-police-b1116463.html", + "pubDate": "Fri, 27 Oct 2023 14:45:31 GMT", + "dc:creator": "Bill McLoughlin", + "dc:date": "2023-10-27T14:45:31+00:00", + "content": "

'Concern that Bob is in danger increases every moment that he remains missing', say police

", + "contentSnippet": "'Concern that Bob is in danger increases every moment that he remains missing', say police", + "guid": "b1116463", + "categories": ["London", "News"], + "isoDate": "2023-10-27T14:45:31.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-10-27T14:43:52+00:00", + "title": "Ken Bruce urges people to listen to autistic community as he is made an MBE", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/murray-scottish-buckingham-palace-princess-royal-b1116471.html", + "pubDate": "Fri, 27 Oct 2023 14:43:52 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-10-27T14:43:52+00:00", + "content": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", + "contentSnippet": "The Scottish radio presenter, who has an autistic son Murray, was recognised for his contribution to radio.", + "guid": "b1116471", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-10-27T14:43:52.000Z" + }, + { + "creator": "Madeleine Spencer", + "date": "2023-10-27T14:27:05+00:00", + "title": "Meghan Markle's makeup artist on how to keep your makeup fresh all day", + "link": "https://www.standard.co.uk/lifestyle/beauty/daniel-martin-makeup-artist-meghan-markle-fresh-skin-tips-b1115419.html", + "pubDate": "Fri, 27 Oct 2023 14:27:05 GMT", + "dc:creator": "Madeleine Spencer", + "dc:date": "2023-10-27T14:27:05+00:00", + "content": "

Daniel Martin, celebrity MUA for Jessica Biel, Michelle Yeoh and Priyanka Chopra, shares his simple tips for day-to-night makeup, with Madeleine Spencer

", + "contentSnippet": "Daniel Martin, celebrity MUA for Jessica Biel, Michelle Yeoh and Priyanka Chopra, shares his simple tips for day-to-night makeup, with Madeleine Spencer", + "guid": "b1115419", + "categories": ["Beauty", "Lifestyle"], + "isoDate": "2023-10-27T14:27:05.000Z" + }, + { + "creator": "Jamel Smith", + "date": "2023-10-27T14:25:53+00:00", + "title": "Son of Hamas hostage says Palestinian protests \u2018celebrated his pain\u2019", + "link": "https://www.standard.co.uk/news/politics/son-north-london-hamas-british-life-b1116462.html", + "pubDate": "Fri, 27 Oct 2023 14:25:53 GMT", + "dc:creator": "Jamel Smith", + "dc:date": "2023-10-27T14:25:53+00:00", + "content": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", + "contentSnippet": "Noam Sagi, 51, from London said his mother Ada Sagi was kidnapped by Hamas militants from her home in Kibbutz Nir Oz.", + "guid": "b1116462", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T14:25:53.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2023-10-27T14:23:23+00:00", + "title": "Nicola Peltz puts Victoria Beckham feud talk behind her as she wears Posh Spice t-shirt", + "link": "https://www.standard.co.uk/showbiz/nicola-peltz-wears-posh-spice-tshirt-victoria-beckham-feud-b1116421.html", + "pubDate": "Fri, 27 Oct 2023 14:23:23 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2023-10-27T14:23:23+00:00", + "content": "

The move got the thumbs up by the Transformers star's pop star-turned-fashion designer mother-in-law

", + "contentSnippet": "The move got the thumbs up by the Transformers star's pop star-turned-fashion designer mother-in-law", + "guid": "b1116421", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T14:23:23.000Z" + }, + { + "creator": "Dom Smith", + "date": "2023-10-27T14:22:01+00:00", + "title": "Marco Silva believes new Fulham contract 'could have happened earlier' as he explains decision", + "link": "https://www.standard.co.uk/sport/football/marco-silva-fulham-manager-new-contract-b1116461.html", + "pubDate": "Fri, 27 Oct 2023 14:22:01 GMT", + "dc:creator": "Dom Smith", + "dc:date": "2023-10-27T14:22:01+00:00", + "content": "

Silva signed a new three-year contract extension at Craven Cottage this week

", + "contentSnippet": "Silva signed a new three-year contract extension at Craven Cottage this week", + "guid": "b1116461", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T14:22:01.000Z" + }, + { + "creator": "Tina Campbell", + "date": "2023-10-27T14:15:40+00:00", + "title": "Lewis Capaldi tops poll of sexiest male musicians in the UK", + "link": "https://www.standard.co.uk/showbiz/lewis-capaldi-tops-poll-sexiest-male-musicians-uk-b1116438.html", + "pubDate": "Fri, 27 Oct 2023 14:15:40 GMT", + "dc:creator": "Tina Campbell", + "dc:date": "2023-10-27T14:15:40+00:00", + "content": "

The Scottish crooner beat out the likes of Harry Styles and Zayn Malik

", + "contentSnippet": "The Scottish crooner beat out the likes of Harry Styles and Zayn Malik", + "guid": "b1116438", + "categories": ["Showbiz"], + "isoDate": "2023-10-27T14:15:40.000Z" + }, + { + "creator": "Daniel O'Boyle", + "date": "2023-10-27T14:12:54+00:00", + "title": "British Airways owner IAG in record third quarter despite \u00a344 million hit from \u2018higher disruption\u2019", + "link": "https://www.standard.co.uk/business/british-airways-owner-iag-airline-planes-flights-airport-travel-nats-chaos-b1116341.html", + "pubDate": "Fri, 27 Oct 2023 14:12:54 GMT", + "dc:creator": "Daniel O'Boyle", + "dc:date": "2023-10-27T14:12:54+00:00", + "content": "

IAG said that leisure demand was \u201cvery strong\u201d, but business travel has been slower to recover

", + "contentSnippet": "IAG said that leisure demand was \u201cvery strong\u201d, but business travel has been slower to recover", + "guid": "b1116341", + "categories": ["Business"], + "isoDate": "2023-10-27T14:12:54.000Z" + }, + { + "creator": "Vicky Jessop", + "date": "2023-10-27T14:09:40+00:00", + "title": "The best gaming bars in London, from classic consoles to VR", + "link": "https://www.standard.co.uk/culture/gaming/best-gaming-bars-london-consoles-vr-b1116361.html", + "pubDate": "Fri, 27 Oct 2023 14:09:40 GMT", + "dc:creator": "Vicky Jessop", + "dc:date": "2023-10-27T14:09:40+00:00", + "content": "

From Squid Game competitions to virtual island paradises, here's our pick of the best of the best gaming bars

", + "contentSnippet": "From Squid Game competitions to virtual island paradises, here's our pick of the best of the best gaming bars", + "guid": "b1116361", + "categories": ["Gaming", "Culture"], + "isoDate": "2023-10-27T14:09:40.000Z" + }, + { + "creator": "Jon Weeks and Rachelle Abbott", + "date": "2023-10-27T14:07:58+00:00", + "title": "Inside Elon Musk's \u2018damaging\u2019 first year at X - Tech & Science Daily podcast", + "link": "https://www.standard.co.uk/comment/podcasts/inside-elon-musk-first-year-at-x-b1116450.html", + "pubDate": "Fri, 27 Oct 2023 14:07:58 GMT", + "dc:creator": "Jon Weeks and Rachelle Abbott", + "dc:date": "2023-10-27T14:07:58+00:00", + "content": "

", + "contentSnippet": "", + "guid": "b1116450", + "categories": ["Podcasts", "Comment"], + "isoDate": "2023-10-27T14:07:58.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-10-27T14:02:00+00:00", + "title": "Barcelona vs Real Madrid lineups: Predicted XIs, confirmed team news and injury latest for El Clasico", + "link": "https://www.standard.co.uk/sport/football/fc-barcelona-vs-real-madrid-lineups-predicted-xi-confirmed-team-news-injury-latest-el-clasico-2023-b1116329.html", + "pubDate": "Fri, 27 Oct 2023 14:02:00 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-10-27T14:02:00+00:00", + "content": "

Robert Lewandowski among major Blaugrana doubts as Los Blancos ponder major midfield question

", + "contentSnippet": "Robert Lewandowski among major Blaugrana doubts as Los Blancos ponder major midfield question", + "guid": "b1116329", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T14:02:00.000Z" + }, + { + "creator": "Jack Kessler", + "date": "2023-10-27T14:00:59+00:00", + "title": "OPINION - The Women Who Made Modern Economics review: Rachel Reeves makes a strong point, if only it weren't so dull", + "link": "https://www.standard.co.uk/culture/books/rachel-reeves-the-women-who-made-modern-economics-book-review-b1116349.html", + "pubDate": "Fri, 27 Oct 2023 14:00:59 GMT", + "dc:creator": "Jack Kessler", + "dc:date": "2023-10-27T14:00:59+00:00", + "content": "

She's bidding to be the next Chancellor, so what can we learn from this book?

", + "contentSnippet": "She's bidding to be the next Chancellor, so what can we learn from this book?", + "guid": "b1116349", + "categories": ["Books", "Culture"], + "isoDate": "2023-10-27T14:00:59.000Z" + }, + { + "creator": "Isobel Van Dyke", + "date": "2023-10-27T14:00:39+00:00", + "title": "Your Friday night playlist curated by west London\u2019s p-rallel ", + "link": "https://www.standard.co.uk/culture/prallel-dj-movement-interview-playlist-raye-b1116432.html", + "pubDate": "Fri, 27 Oct 2023 14:00:39 GMT", + "dc:creator": "Isobel Van Dyke", + "dc:date": "2023-10-27T14:00:39+00:00", + "content": "

As he releases his 10-track mixtape, garage DJ and producer p-rallel talks dream collaborations, the best venues in London right now, and five songs to kickstart your Friday night in the city

", + "contentSnippet": "As he releases his 10-track mixtape, garage DJ and producer p-rallel talks dream collaborations, the best venues in London right now, and five songs to kickstart your Friday night in the city", + "guid": "b1116432", + "categories": ["Culture"], + "isoDate": "2023-10-27T14:00:39.000Z" + }, + { + "creator": "Tony Jones", + "date": "2023-10-27T14:00:05+00:00", + "title": "Leopards feature in latest edition of acclaimed wildlife photobook series", + "link": "https://www.standard.co.uk/news/environment/ricky-gervais-african-russell-crowe-remembering-wildlife-botswana-b1116457.html", + "pubDate": "Fri, 27 Oct 2023 14:00:05 GMT", + "dc:creator": "Tony Jones", + "dc:date": "2023-10-27T14:00:05+00:00", + "content": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", + "contentSnippet": "The Remembering Wildlife photobooks to protect endangered species have attracted famous supporters such as Russell Crowe and Ricky Gervais.", + "guid": "b1116457", + "categories": ["Environment", "News"], + "isoDate": "2023-10-27T14:00:05.000Z" + }, + { + "creator": "Matt Verri", + "date": "2023-10-27T13:50:13+00:00", + "title": "Mikel Arteta calls for Premier League change as Arsenal's injury problems grow", + "link": "https://www.standard.co.uk/sport/football/mikel-arteta-arsenal-fc-premier-league-rule-change-injuries-b1116449.html", + "pubDate": "Fri, 27 Oct 2023 13:50:13 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2023-10-27T13:50:13+00:00", + "content": "

The Gunners will be without Thomas Partey and Gabriel Jesus for the next few weeks

", + "contentSnippet": "The Gunners will be without Thomas Partey and Gabriel Jesus for the next few weeks", + "guid": "b1116449", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T13:50:13.000Z" + }, + { + "creator": "Sam Blewett", + "date": "2023-10-27T13:48:01+00:00", + "title": "Khan and Sarwar demand Israel-Hamas ceasefire, adding to pressure on Starmer", + "link": "https://www.standard.co.uk/news/politics/keir-starmer-sadiq-khan-israel-gaza-muslim-b1116435.html", + "pubDate": "Fri, 27 Oct 2023 13:48:01 GMT", + "dc:creator": "Sam Blewett", + "dc:date": "2023-10-27T13:48:01+00:00", + "content": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", + "contentSnippet": "The London Mayor was joined by the Scottish Labour leader in demanding an end to the conflict.", + "guid": "b1116435", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T13:48:01.000Z" + }, + { + "creator": "Ryan McDougall", + "date": "2023-10-27T13:45:36+00:00", + "title": "Partygate was \u2018ultimate insult\u2019 to Covid bereaved, inquiry told", + "link": "https://www.standard.co.uk/news/crime/partygate-scottish-uk-government-government-mps-b1116453.html", + "pubDate": "Fri, 27 Oct 2023 13:45:36 GMT", + "dc:creator": "Ryan McDougall", + "dc:date": "2023-10-27T13:45:36+00:00", + "content": "Jane Morrison, who lost her wife to coronavirus in 2020, addressed the Scottish Covid-19 Inquiry on Friday.", + "contentSnippet": "Jane Morrison, who lost her wife to coronavirus in 2020, addressed the Scottish Covid-19 Inquiry on Friday.", + "guid": "b1116453", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T13:45:36.000Z" + }, + { + "creator": "Tania Leslau", + "date": "2023-10-27T13:44:14+00:00", + "title": "Best fashion deals to expect for Black Friday 2023: ASOS, Weekday and more", + "link": "https://www.standard.co.uk/shopping/esbest/black-friday/best-fashion-clothing-deals-black-friday-b1113847.html", + "pubDate": "Fri, 27 Oct 2023 13:44:14 GMT", + "dc:creator": "Tania Leslau", + "dc:date": "2023-10-27T13:44:14+00:00", + "content": "

Style steals for all

", + "contentSnippet": "Style steals for all", + "guid": "b1113847", + "categories": ["Black Friday", "ES Best Home", "Shopping"], + "isoDate": "2023-10-27T13:44:14.000Z" + }, + { + "creator": "Elizabeth Gregory", + "date": "2023-10-27T13:36:46+00:00", + "title": "The five exhibitions to see this week in London, from Claudette Johnson to Maha Ahmed (Oct 27 to Nov 3)", + "link": "https://www.standard.co.uk/culture/exhibitions/the-five-exhibitions-to-see-this-week-in-london-b1102286.html", + "pubDate": "Fri, 27 Oct 2023 13:36:46 GMT", + "dc:creator": "Elizabeth Gregory", + "dc:date": "2023-10-27T13:36:46+00:00", + "content": "

We pick the best art shows to enjoy this week

", + "contentSnippet": "We pick the best art shows to enjoy this week", + "guid": "b1102286", + "categories": ["Exhibitions", "Culture"], + "isoDate": "2023-10-27T13:36:46.000Z" + }, + { + "creator": "Nick Purewal", + "date": "2023-10-27T13:35:50+00:00", + "title": "New Zealand vs South Africa: All Blacks look to complete rocky journey back to the top in World Cup final", + "link": "https://www.standard.co.uk/sport/rugby/new-zealand-vs-south-africa-rugby-world-cup-final-2023-all-blacks-b1116419.html", + "pubDate": "Fri, 27 Oct 2023 13:35:50 GMT", + "dc:creator": "Nick Purewal", + "dc:date": "2023-10-27T13:35:50+00:00", + "content": "

The All Blacks were ranked fifth in the world as recently as last summer

", + "contentSnippet": "The All Blacks were ranked fifth in the world as recently as last summer", + "guid": "b1116419", + "categories": ["Rugby Union", "Sport"], + "isoDate": "2023-10-27T13:35:50.000Z" + }, + { + "creator": "Beril Naz Hassan and William Mata", + "date": "2023-10-27T13:32:42+00:00", + "title": "These are the five most haunted places in London", + "link": "https://www.standard.co.uk/news/london/most-haunted-places-london-halloween-b1033793.html", + "pubDate": "Fri, 27 Oct 2023 13:32:42 GMT", + "dc:creator": "Beril Naz Hassan and William Mata", + "dc:date": "2023-10-27T13:32:42+00:00", + "content": "

London is brimming with spooky stories about phantoms and supernatural incidents

", + "contentSnippet": "London is brimming with spooky stories about phantoms and supernatural incidents", + "guid": "b1033793", + "categories": ["London", "News"], + "isoDate": "2023-10-27T13:32:42.000Z" + }, + { + "creator": "Rebecca Black", + "date": "2023-10-27T13:31:30+00:00", + "title": "Not possible to hear Loughgall inquest before legislation cut-off, judge says", + "link": "https://www.standard.co.uk/news/uk/ira-mod-sas-westminster-justice-b1116445.html", + "pubDate": "Fri, 27 Oct 2023 13:31:30 GMT", + "dc:creator": "Rebecca Black", + "dc:date": "2023-10-27T13:31:30+00:00", + "content": "Justice McAlinden said the inquest into the deaths of eight IRA men and a civilian will take six months to hear.", + "contentSnippet": "Justice McAlinden said the inquest into the deaths of eight IRA men and a civilian will take six months to hear.", + "guid": "b1116445", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T13:31:30.000Z" + }, + { + "creator": "Beril Naz Hassan", + "date": "2023-10-27T13:31:21+00:00", + "title": "Italian woman wins court battle to evict her adult sons", + "link": "https://www.standard.co.uk/news/world/italian-woman-court-evict-adult-sons-b1116436.html", + "pubDate": "Fri, 27 Oct 2023 13:31:21 GMT", + "dc:creator": "Beril Naz Hassan", + "dc:date": "2023-10-27T13:31:21+00:00", + "content": "

These birds were adamant they were not leaving the nest

", + "contentSnippet": "These birds were adamant they were not leaving the nest", + "guid": "b1116436", + "categories": ["World", "News"], + "isoDate": "2023-10-27T13:31:21.000Z" + }, + { + "creator": "Rachael Burford and Nicholas Cecil", + "date": "2023-10-27T13:30:39+00:00", + "title": "Sadiq Khan calls for Gaza ceasefire amid rising anger over Labour's stance on war", + "link": "https://www.standard.co.uk/news/politics/sadiq-khan-mayor-gaza-israel-ceasefire-labour-london-b1116337.html", + "pubDate": "Fri, 27 Oct 2023 13:30:39 GMT", + "dc:creator": "Rachael Burford and Nicholas Cecil", + "dc:date": "2023-10-27T13:30:39+00:00", + "content": "

Mayor of London calls for a stop to killing and time for 'vital aid supplies to reach those who need it' in Gaza

", + "contentSnippet": "Mayor of London calls for a stop to killing and time for 'vital aid supplies to reach those who need it' in Gaza", + "guid": "b1116337", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T13:30:39.000Z" + }, + { + "creator": "Naomi Clarke", + "date": "2023-10-27T13:30:02+00:00", + "title": "Only Fools And Horses The Musical to tour UK in 2024", + "link": "https://www.standard.co.uk/showbiz/celebrity-news/west-end-paul-whitehouse-theatre-royal-haymarket-bbc-peckham-b1116447.html", + "pubDate": "Fri, 27 Oct 2023 13:30:02 GMT", + "dc:creator": "Naomi Clarke", + "dc:date": "2023-10-27T13:30:02+00:00", + "content": "The show ended its West End run earlier this year after four years and more than 1,000 performances at the Theatre Royal Haymarket.", + "contentSnippet": "The show ended its West End run earlier this year after four years and more than 1,000 performances at the Theatre Royal Haymarket.", + "guid": "b1116447", + "categories": ["Celebrity News", "Showbiz"], + "isoDate": "2023-10-27T13:30:02.000Z" + }, + { + "creator": "Seren Morris,Jessica Knibbs,Lola Christina Alao and Nuray Bulbul", + "date": "2023-10-27T13:27:56+00:00", + "title": "Wordle 860: What is the answer for October 27 and what is its meaning?", + "link": "https://www.standard.co.uk/news/tech/wordle-game-today-answer-meaning-b1007895.html", + "pubDate": "Fri, 27 Oct 2023 13:27:56 GMT", + "dc:creator": "Seren Morris,Jessica Knibbs,Lola Christina Alao and Nuray Bulbul", + "dc:date": "2023-10-27T13:27:56+00:00", + "content": "

Another day, another Wordle clue for players of the popular game

", + "contentSnippet": "Another day, another Wordle clue for players of the popular game", + "guid": "b1007895", + "categories": ["Tech", "News"], + "isoDate": "2023-10-27T13:27:56.000Z" + }, + { + "creator": "Bill McLoughlin", + "date": "2023-10-27T13:22:42+00:00", + "title": "Children leave teddy bears outside Foreign Office as part of Gaza protest", + "link": "https://www.standard.co.uk/news/london/children-teddy-bears-gaza-ceasefire-foreign-office-palestine-b1116422.html", + "pubDate": "Fri, 27 Oct 2023 13:22:42 GMT", + "dc:creator": "Bill McLoughlin", + "dc:date": "2023-10-27T13:22:42+00:00", + "content": "

The protest in central London was organised by Parents for Palestine

", + "contentSnippet": "The protest in central London was organised by Parents for Palestine", + "guid": "b1116422", + "categories": ["London", "News"], + "isoDate": "2023-10-27T13:22:42.000Z" + }, + { + "creator": "Max McLean", + "date": "2023-10-27T13:22:34+00:00", + "title": "Bomb during interview just a glimpse of everyday life, says Briton in Gaza", + "link": "https://www.standard.co.uk/news/politics/gaza-british-briton-hamas-salford-b1116440.html", + "pubDate": "Fri, 27 Oct 2023 13:22:34 GMT", + "dc:creator": "Max McLean", + "dc:date": "2023-10-27T13:22:34+00:00", + "content": "A bomb could be heard approaching and exploding outside the building Zaynab Wandawi was in while she spoke with the PA news agency.", + "contentSnippet": "A bomb could be heard approaching and exploding outside the building Zaynab Wandawi was in while she spoke with the PA news agency.", + "guid": "b1116440", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T13:22:34.000Z" + }, + { + "creator": "Eleanor Barlow", + "date": "2023-10-27T13:18:06+00:00", + "title": "Schoolgirl who died in motorway coach crash remembered at funeral", + "link": "https://www.standard.co.uk/news/uk/cheshire-rebecca-chester-catholic-church-cancer-b1116442.html", + "pubDate": "Fri, 27 Oct 2023 13:18:06 GMT", + "dc:creator": "Eleanor Barlow", + "dc:date": "2023-10-27T13:18:06+00:00", + "content": "West Kirby Grammar School pupil Jessica Baker, 15, and driver Stephen Shrimpton were killed when a school coach overturned on the M53 in September.", + "contentSnippet": "West Kirby Grammar School pupil Jessica Baker, 15, and driver Stephen Shrimpton were killed when a school coach overturned on the M53 in September.", + "guid": "b1116442", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T13:18:06.000Z" + }, + { + "creator": "William Mata", + "date": "2023-10-27T13:15:22+00:00", + "title": "Who is Crispin Blunt? Tory MP arrested on suspicion of rape and possession of 'controlled substances'", + "link": "https://www.standard.co.uk/news/uk/who-crispin-blunt-conservative-mp-drugs-rape-b1116332.html", + "pubDate": "Fri, 27 Oct 2023 13:15:22 GMT", + "dc:creator": "William Mata", + "dc:date": "2023-10-27T13:15:22+00:00", + "content": "

MP for Reigate is now an independent after having Tory whip removed

", + "contentSnippet": "MP for Reigate is now an independent after having Tory whip removed", + "guid": "b1116332", + "categories": ["UK", "News"], + "isoDate": "2023-10-27T13:15:22.000Z" + }, + { + "creator": "Katie Strick", + "date": "2023-10-27T13:09:47+00:00", + "title": "Tory MP Crispin Blunt: the outspoken ex-army officer arrested on suspicion of rape and drug offences", + "link": "https://www.standard.co.uk/news/politics/who-is-crispin-blunt-controversial-tory-mp-b1116320.html", + "pubDate": "Fri, 27 Oct 2023 13:09:47 GMT", + "dc:creator": "Katie Strick", + "dc:date": "2023-10-27T13:09:47+00:00", + "content": "

The uncle of Hollywood actress Emily Blunt was arrested by Surrey police this week, saying he will \"co-operate fully\" with the investigation. Katie Strick charts his career so far

", + "contentSnippet": "The uncle of Hollywood actress Emily Blunt was arrested by Surrey police this week, saying he will \"co-operate fully\" with the investigation. Katie Strick charts his career so far", + "guid": "b1116320", + "categories": ["Politics", "News"], + "isoDate": "2023-10-27T13:09:47.000Z" + }, + { + "creator": "Marc Mayo", + "date": "2023-10-27T13:09:40+00:00", + "title": "Pep Guardiola speaks out after Man City fan chants mocked death of Sir Bobby Charlton", + "link": "https://www.standard.co.uk/sport/football/pep-guardiola-man-city-man-utd-sir-bobby-charlton-chants-b1116428.html", + "pubDate": "Fri, 27 Oct 2023 13:09:40 GMT", + "dc:creator": "Marc Mayo", + "dc:date": "2023-10-27T13:09:40+00:00", + "content": "

Two minors banned from Manchester City matches ahead of derby

", + "contentSnippet": "Two minors banned from Manchester City matches ahead of derby", + "guid": "b1116428", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T13:09:40.000Z" + }, + { + "creator": "Soraya Gaied Chortane", + "date": "2023-10-27T13:06:52+00:00", + "title": "My London: The Witch of Hackney ", + "link": "https://www.standard.co.uk/lifestyle/witch-of-hackney-wick-london-guide-treadwells-semra-haksever-b1116321.html", + "pubDate": "Fri, 27 Oct 2023 13:06:52 GMT", + "dc:creator": "Soraya Gaied Chortane", + "dc:date": "2023-10-27T13:06:52+00:00", + "content": "

East London\u2019s resident witch Semra Haksever buys her textbooks from Treadwell\u2019s, forages on Hackney Marshes and wants to transform the Edition into a hotel for cats

", + "contentSnippet": "East London\u2019s resident witch Semra Haksever buys her textbooks from Treadwell\u2019s, forages on Hackney Marshes and wants to transform the Edition into a hotel for cats", + "guid": "b1116321", + "categories": ["Lifestyle"], + "isoDate": "2023-10-27T13:06:52.000Z" + }, + { + "creator": "Anthony France", + "date": "2023-10-27T13:06:28+00:00", + "title": "Police release pictures of women displaying Hamas paraglider images at London rally ", + "link": "https://www.standard.co.uk/news/crime/police-cctv-women-hamas-paragliders-images-london-palestinian-rally-israel-b1116425.html", + "pubDate": "Fri, 27 Oct 2023 13:06:28 GMT", + "dc:creator": "Anthony France", + "dc:date": "2023-10-27T13:06:28+00:00", + "content": "

Two of the women at the London rally were spotted with the paraglider images on their jackets. A third had a similar image on a placard

", + "contentSnippet": "Two of the women at the London rally were spotted with the paraglider images on their jackets. A third had a similar image on a placard", + "guid": "b1116425", + "categories": ["Crime", "News"], + "isoDate": "2023-10-27T13:06:28.000Z" + }, + { + "creator": "Matt Verri", + "date": "2023-10-27T13:05:10+00:00", + "title": "Erik ten Hag reveals Manchester United 'are talking' with FA over Alejandro Garnacho social media post", + "link": "https://www.standard.co.uk/sport/football/erik-ten-hag-alejandro-garnacho-man-utd-fa-b1116434.html", + "pubDate": "Fri, 27 Oct 2023 13:05:10 GMT", + "dc:creator": "Matt Verri", + "dc:date": "2023-10-27T13:05:10+00:00", + "content": "

Garnacho could be punished for a controversial post despit ehte

", + "contentSnippet": "Garnacho could be punished for a controversial post despit ehte", + "guid": "b1116434", + "categories": ["Football", "Sport"], + "isoDate": "2023-10-27T13:05:10.000Z" + }, + { + "creator": "Henry Saker-Clark", + "date": "2023-10-27T13:01:18+00:00", + "title": "Cost of living in focus as Sainsbury\u2019s set to reveal sales rise", + "link": "https://www.standard.co.uk/business/business-news/cost-of-living-in-focus-as-sainsbury-s-set-to-reveal-sales-rise-b1116433.html", + "pubDate": "Fri, 27 Oct 2023 13:01:18 GMT", + "dc:creator": "Henry Saker-Clark", + "dc:date": "2023-10-27T13:01:18+00:00", + "content": "Sainsbury\u2019s is expected to provide an insight into the continued trajectory of food inflation in the update on November 2.", + "contentSnippet": "Sainsbury\u2019s is expected to provide an insight into the continued trajectory of food inflation in the update on November 2.", + "guid": "b1116433", + "categories": ["Business News", "Business"], + "isoDate": "2023-10-27T13:01:18.000Z" + } +] diff --git a/intro to react/newData/oldNews/f9c17f360c71def1876c05f997d131741e4e00446986b5f4e44eb49e500ef723.json b/intro to react/newData/oldNews/f9c17f360c71def1876c05f997d131741e4e00446986b5f4e44eb49e500ef723.json index db43cff..b1526b7 100644 --- a/intro to react/newData/oldNews/f9c17f360c71def1876c05f997d131741e4e00446986b5f4e44eb49e500ef723.json +++ b/intro to react/newData/oldNews/f9c17f360c71def1876c05f997d131741e4e00446986b5f4e44eb49e500ef723.json @@ -1,2858 +1,2382 @@ [ - { - "title": " What to know about the Sikh independence movement following US accusation that activist was targeted", - "link": "https://abcnews.go.com/International/wireStory/sikh-independence-movement-us-accusation-activist-targeted-105281280", - "pubDate": "Thu, 30 Nov 2023 17:54:23 -0500", - "content": "The U.S. has charged an Indian national in what prosecutors allege was a failed plot to assassinate a Sikh separatist at the behest of an unnamed Indian government official", - "contentSnippet": "The U.S. has charged an Indian national in what prosecutors allege was a failed plot to assassinate a Sikh separatist at the behest of an unnamed Indian government official", - "guid": "https://abcnews.go.com/International/wireStory/sikh-independence-movement-us-accusation-activist-targeted-105281280", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T22:54:23.000Z" - }, - { - "title": " Some OPEC+ members will cut the oil that they send to the world to try to boost prices", - "link": "https://abcnews.go.com/International/wireStory/opec-suppliers-struggle-agree-cuts-oil-production-prices-105264109", - "pubDate": "Thu, 30 Nov 2023 15:46:20 -0500", - "content": "The OPEC oil cartel and allied producers have made another big swipe at propping up lagging crude prices", - "contentSnippet": "The OPEC oil cartel and allied producers have made another big swipe at propping up lagging crude prices", - "guid": "https://abcnews.go.com/International/wireStory/opec-suppliers-struggle-agree-cuts-oil-production-prices-105264109", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T20:46:20.000Z" - }, - { - "title": " Japan suspends its Osprey flights after the fatal crash of a US Air Force aircraft", - "link": "https://abcnews.go.com/International/wireStory/japan-plans-suspend-osprey-flights-after-fatal-us-105260732", - "pubDate": "Thu, 30 Nov 2023 15:38:40 -0500", - "content": "Japan has suspended flights of its Osprey aircraft after a U.S. Air Force Osprey based in Japan crashed into the sea during a training mission", - "contentSnippet": "Japan has suspended flights of its Osprey aircraft after a U.S. Air Force Osprey based in Japan crashed into the sea during a training mission", - "guid": "https://abcnews.go.com/International/wireStory/japan-plans-suspend-osprey-flights-after-fatal-us-105260732", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T20:38:40.000Z" - }, - { - "title": " 4 migrants who were pushed out of a boat die just yards from Spain's southern coast", - "link": "https://abcnews.go.com/International/wireStory/migrants-pushed-boat-die-yards-spains-southern-coast-105267075", - "pubDate": "Thu, 30 Nov 2023 12:10:26 -0500", - "content": "Four migrants have died yards from shore in southern Spain after being forced out of the boat they were traveling in", - "contentSnippet": "Four migrants have died yards from shore in southern Spain after being forced out of the boat they were traveling in", - "guid": "https://abcnews.go.com/International/wireStory/migrants-pushed-boat-die-yards-spains-southern-coast-105267075", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T17:10:26.000Z" - }, - { - "title": " Russian missile strikes in eastern Ukraine tear through buildings and bury families", - "link": "https://abcnews.go.com/International/wireStory/russian-missile-strikes-eastern-ukraine-tear-buildings-bury-105266364", - "pubDate": "Thu, 30 Nov 2023 11:06:19 -0500", - "content": "Ukrainian officials say Russian missiles tore through apartments in Donetsk.", - "contentSnippet": "Ukrainian officials say Russian missiles tore through apartments in Donetsk.", - "guid": "https://abcnews.go.com/International/wireStory/russian-missile-strikes-eastern-ukraine-tear-buildings-bury-105266364", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T16:06:19.000Z" - }, - { - "title": " Russia\u2019s Supreme Court effectively outlaws LGBTQ+ activism in the country in a broad crackdown on beleaguered community", - "link": "https://abcnews.go.com/International/wireStory/russias-supreme-court-effectively-outlaws-lgbtq-activism-country-105267078", - "pubDate": "Thu, 30 Nov 2023 08:29:52 -0500", - "content": "Russia’s Supreme Court effectively outlaws LGBTQ+ activism in the country in a broad crackdown on beleaguered community", - "contentSnippet": "Russia\u2019s Supreme Court effectively outlaws LGBTQ+ activism in the country in a broad crackdown on beleaguered community", - "guid": "https://abcnews.go.com/International/wireStory/russias-supreme-court-effectively-outlaws-lgbtq-activism-country-105267078", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T13:29:52.000Z" - }, - { - "title": " Somali maritime police intensify patrols as fears grow of resurgence of piracy in the Gulf of Aden", - "link": "https://abcnews.go.com/International/wireStory/somali-maritime-police-intensify-patrols-fears-grow-resurgence-105265260", - "pubDate": "Thu, 30 Nov 2023 07:54:20 -0500", - "content": "Somalia’s maritime police force has intensified patrols in the Gulf of Aden following a failed pirate hijacking of a ship earlier this week", - "contentSnippet": "Somalia\u2019s maritime police force has intensified patrols in the Gulf of Aden following a failed pirate hijacking of a ship earlier this week", - "guid": "https://abcnews.go.com/International/wireStory/somali-maritime-police-intensify-patrols-fears-grow-resurgence-105265260", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T12:54:20.000Z" - }, - { - "title": " Pope says he has acute bronchitis, doctors recommended against travel to avoid change in temperature", - "link": "https://abcnews.go.com/International/wireStory/pope-acute-bronchitis-doctors-recommended-travel-avoid-change-105267975", - "pubDate": "Thu, 30 Nov 2023 07:46:40 -0500", - "content": "Pope Francis says he is suffering from acute and infectious bronchitis", - "contentSnippet": "Pope Francis says he is suffering from acute and infectious bronchitis", - "guid": "https://abcnews.go.com/International/wireStory/pope-acute-bronchitis-doctors-recommended-travel-avoid-change-105267975", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T12:46:40.000Z" - }, - { - "title": " South African company to start making vaginal rings that protect against HIV", - "link": "https://abcnews.go.com/International/wireStory/south-african-company-start-making-vaginal-rings-protect-105260203", - "pubDate": "Wed, 29 Nov 2023 21:22:24 -0500", - "content": "A South African company will make vaginal rings that protect against HIV, which AIDS experts say should eventually make them cheaper and more readily available", - "contentSnippet": "A South African company will make vaginal rings that protect against HIV, which AIDS experts say should eventually make them cheaper and more readily available", - "guid": "https://abcnews.go.com/International/wireStory/south-african-company-start-making-vaginal-rings-protect-105260203", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T02:22:24.000Z" - }, - { - "title": " UK's Sunak ramps up criticism of Greek leader in Parthenon Marbles spat", - "link": "https://abcnews.go.com/International/wireStory/uks-sunak-ramps-criticism-greek-leader-parthenon-marbles-105237550", - "pubDate": "Wed, 29 Nov 2023 19:54:32 -0500", - "content": "British Prime Minister Rishi Sunak has escalated his war of words with the leader of Greece", - "contentSnippet": "British Prime Minister Rishi Sunak has escalated his war of words with the leader of Greece", - "guid": "https://abcnews.go.com/International/wireStory/uks-sunak-ramps-criticism-greek-leader-parthenon-marbles-105237550", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T00:54:32.000Z" - }, - { - "title": " Nigeria's leader presents a $34 billion spending plan that prioritizes the economy and security", - "link": "https://abcnews.go.com/International/wireStory/nigerias-leader-presents-34-billion-spending-plan-2024-105242271", - "pubDate": "Wed, 29 Nov 2023 14:34:19 -0500", - "content": "Nigeria’s leader has presented a $34.8 billion spending plan for 2024 to federal lawmakers with a focus on stabilizing Africa’s largest but ailing economy and tackling a deadly security crisis", - "contentSnippet": "Nigeria\u2019s leader has presented a $34.8 billion spending plan for 2024 to federal lawmakers with a focus on stabilizing Africa\u2019s largest but ailing economy and tackling a deadly security crisis", - "guid": "https://abcnews.go.com/International/wireStory/nigerias-leader-presents-34-billion-spending-plan-2024-105242271", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T19:34:19.000Z" - }, - { - "title": " Venezuela's planned vote over territory dispute leaves Guyana residents on edge", - "link": "https://abcnews.go.com/International/wireStory/venezuelas-planned-vote-territory-dispute-leaves-guyana-residents-105238454", - "pubDate": "Wed, 29 Nov 2023 13:14:06 -0500", - "content": "Congregants of an Anglican church in a sparsely populated rainforest village in Guyana are asking for peace for their community amid what they see as an existential threat", - "contentSnippet": "Congregants of an Anglican church in a sparsely populated rainforest village in Guyana are asking for peace for their community amid what they see as an existential threat", - "guid": "https://abcnews.go.com/International/wireStory/venezuelas-planned-vote-territory-dispute-leaves-guyana-residents-105238454", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T18:14:06.000Z" - }, - { - "title": " German authorities arrest a 15-year-old on suspicion of planning an attack", - "link": "https://abcnews.go.com/International/wireStory/german-authorities-arrest-15-year-suspicion-planning-attack-105241479", - "pubDate": "Wed, 29 Nov 2023 12:01:55 -0500", - "content": "German authorities arrested a boy, 15, on suspicion of planning a terror attack.", - "contentSnippet": "German authorities arrested a boy, 15, on suspicion of planning a terror attack.", - "guid": "https://abcnews.go.com/International/wireStory/german-authorities-arrest-15-year-suspicion-planning-attack-105241479", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T17:01:55.000Z" - }, - { - "title": " Three teenagers injured in knife attack at a high school in Poland", - "link": "https://abcnews.go.com/International/wireStory/teenagers-injured-knife-attack-high-school-poland-105240000", - "pubDate": "Wed, 29 Nov 2023 10:26:58 -0500", - "content": "The 18-year-old attacker has been apprehended.", - "contentSnippet": "The 18-year-old attacker has been apprehended.", - "guid": "https://abcnews.go.com/International/wireStory/teenagers-injured-knife-attack-high-school-poland-105240000", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T15:26:58.000Z" - }, - { - "title": " Opposition protesters in Kosovo use flares and tear gas to protest against a war crimes court", - "link": "https://abcnews.go.com/International/wireStory/opposition-protesters-kosovo-flares-tear-gas-protest-war-105239977", - "pubDate": "Wed, 29 Nov 2023 10:26:05 -0500", - "content": "Opposition protesters in Kosovo have used flares and tear gas to protest against a senior war crimes court official in the capital", - "contentSnippet": "Opposition protesters in Kosovo have used flares and tear gas to protest against a senior war crimes court official in the capital", - "guid": "https://abcnews.go.com/International/wireStory/opposition-protesters-kosovo-flares-tear-gas-protest-war-105239977", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T15:26:05.000Z" - }, - { - "title": " South Africa march demands a permanent Gaza cease-fire on day of solidarity with Palestinians", - "link": "https://abcnews.go.com/International/wireStory/south-africa-march-demands-permanent-gaza-cease-fire-105239611", - "pubDate": "Wed, 29 Nov 2023 10:10:37 -0500", - "content": "Members of South African political parties, civil society organisations and other supporters have marched through the streets of Johannesburg demanding a permanent cease-fire in Gaza as they marked the International Day of Solidarity with the Palestini...", - "contentSnippet": "Members of South African political parties, civil society organisations and other supporters have marched through the streets of Johannesburg demanding a permanent cease-fire in Gaza as they marked the International Day of Solidarity with the Palestini...", - "guid": "https://abcnews.go.com/International/wireStory/south-africa-march-demands-permanent-gaza-cease-fire-105239611", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T15:10:37.000Z" - }, - { - "title": " Mali's government will probe Tuareg rebel leaders as crucial 2015 peace deal appears to crumble", - "link": "https://abcnews.go.com/International/wireStory/malis-governmnet-probe-ethnic-rebel-leaders-suggesting-collapse-105237002", - "pubDate": "Wed, 29 Nov 2023 09:46:20 -0500", - "content": "Mali’s military government has announced an investigation into the Tuareg rebel leaders who signed a peace agreement in 2015 and now accuse the government of failing to comply with it", - "contentSnippet": "Mali\u2019s military government has announced an investigation into the Tuareg rebel leaders who signed a peace agreement in 2015 and now accuse the government of failing to comply with it", - "guid": "https://abcnews.go.com/International/wireStory/malis-governmnet-probe-ethnic-rebel-leaders-suggesting-collapse-105237002", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T14:46:20.000Z" - }, - { - "title": " A special court has cleared France\u2019s justice minister in an unprecedented conflict of interest case", - "link": "https://abcnews.go.com/International/wireStory/special-court-cleared-frances-justice-minister-unprecedented-conflict-105238457", - "pubDate": "Wed, 29 Nov 2023 09:38:08 -0500", - "content": "A special court has cleared France’s justice minister in an unprecedented conflict of interest case", - "contentSnippet": "A special court has cleared France\u2019s justice minister in an unprecedented conflict of interest case", - "guid": "https://abcnews.go.com/International/wireStory/special-court-cleared-frances-justice-minister-unprecedented-conflict-105238457", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T14:38:08.000Z" - }, - { - "title": " At least 40 civilians killed by al-Qaida-linked rebels in a Burkina Faso town: UN", - "link": "https://abcnews.go.com/International/wireStory/40-civilians-killed-al-qaida-linked-rebels-burkina-105235689", - "pubDate": "Wed, 29 Nov 2023 09:18:54 -0500", - "content": "The United Nations' rights office says at least 40 civilians were killed last weekend by al-Qaida-linked rebels trying to take control of a besieged town in Burkina Faso’s hard-hit northern region", - "contentSnippet": "The United Nations' rights office says at least 40 civilians were killed last weekend by al-Qaida-linked rebels trying to take control of a besieged town in Burkina Faso\u2019s hard-hit northern region", - "guid": "https://abcnews.go.com/International/wireStory/40-civilians-killed-al-qaida-linked-rebels-burkina-105235689", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T14:18:54.000Z" - }, - { - "title": " Pakistan acquits ex-Premier Nawaz Sharif in a graft case", - "link": "https://abcnews.go.com/International/wireStory/pakistan-acquits-premier-nawaz-sharif-graft-case-now-105237548", - "pubDate": "Wed, 29 Nov 2023 09:02:04 -0500", - "content": "A Pakistani court has acquitted former Prime Minister Nawaz Sharif in a graft case, removing a major obstacle for him to run in parliamentary elections in February", - "contentSnippet": "A Pakistani court has acquitted former Prime Minister Nawaz Sharif in a graft case, removing a major obstacle for him to run in parliamentary elections in February", - "guid": "https://abcnews.go.com/International/wireStory/pakistan-acquits-premier-nawaz-sharif-graft-case-now-105237548", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T14:02:04.000Z" - }, - { - "title": " Sweden's economy shrinks in the third quarter to signal that a recession may have hit the country", - "link": "https://abcnews.go.com/International/wireStory/swedens-economy-shrinks-quarter-signal-recession-hit-country-105234439", - "pubDate": "Wed, 29 Nov 2023 05:46:34 -0500", - "content": "Sweden’s economy shrank in the third quarter of 2023 to mark the second time of contraction and signal that a recession may have hit the country", - "contentSnippet": "Sweden\u2019s economy shrank in the third quarter of 2023 to mark the second time of contraction and signal that a recession may have hit the country", - "guid": "https://abcnews.go.com/International/wireStory/swedens-economy-shrinks-quarter-signal-recession-hit-country-105234439", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T10:46:34.000Z" - }, - { - "title": " Australia proposes new laws to detain potentially dangerous migrants", - "link": "https://abcnews.go.com/International/wireStory/australia-proposes-new-laws-detain-potentially-dangerous-migrants-105233224", - "pubDate": "Wed, 29 Nov 2023 04:06:05 -0500", - "content": "The Australian government has proposed new laws that would place behind bars some of the 141 migrants who have been set free in the three weeks since the High Court ruled their indefinite detention was unconstitutional", - "contentSnippet": "The Australian government has proposed new laws that would place behind bars some of the 141 migrants who have been set free in the three weeks since the High Court ruled their indefinite detention was unconstitutional", - "guid": "https://abcnews.go.com/International/wireStory/australia-proposes-new-laws-detain-potentially-dangerous-migrants-105233224", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T09:06:05.000Z" - }, - { - "title": " Myanmar and China conduct naval drills together as fighting surges in border area", - "link": "https://abcnews.go.com/International/wireStory/myanmar-china-conduct-naval-drills-fighting-surges-border-105233316", - "pubDate": "Wed, 29 Nov 2023 04:04:30 -0500", - "content": "Myanmar and China are conducting naval drills together as the military government in the Southeast Asian nation loses ground in the northeast to a coalition of armed ethnic militias that also has strong ties to Beijing", - "contentSnippet": "Myanmar and China are conducting naval drills together as the military government in the Southeast Asian nation loses ground in the northeast to a coalition of armed ethnic militias that also has strong ties to Beijing", - "guid": "https://abcnews.go.com/International/wireStory/myanmar-china-conduct-naval-drills-fighting-surges-border-105233316", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T09:04:30.000Z" - }, - { - "title": " Coal power, traffic, waste burning a toxic smog cocktail in Indonesia's Jakarta", - "link": "https://abcnews.go.com/International/wireStory/coal-power-traffic-waste-burning-toxic-smog-cocktail-105230189", - "pubDate": "Tue, 28 Nov 2023 23:46:24 -0500", - "content": "Pollution is causing respiratory illnesses and deaths to rise in Indonesia's island of Java, including the capital, Jakarta", - "contentSnippet": "Pollution is causing respiratory illnesses and deaths to rise in Indonesia's island of Java, including the capital, Jakarta", - "guid": "https://abcnews.go.com/International/wireStory/coal-power-traffic-waste-burning-toxic-smog-cocktail-105230189", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T04:46:24.000Z" - }, - { - "title": " Australia apologizes for thalidomide tragedy as some survivors listen in the Parliament gallery", - "link": "https://abcnews.go.com/International/wireStory/australia-apologizes-thalidomide-tragedy-survivors-listen-parliament-gallery-105229914", - "pubDate": "Tue, 28 Nov 2023 22:02:21 -0500", - "content": "Survivors of the harmful morning sickness drug thalidomide were in the public gallery when Australia’s Parliament made a national apology for what was described as one of the darkest chapters in Australia’s medical history", - "contentSnippet": "Survivors of the harmful morning sickness drug thalidomide were in the public gallery when Australia\u2019s Parliament made a national apology for what was described as one of the darkest chapters in Australia\u2019s medical history", - "guid": "https://abcnews.go.com/International/wireStory/australia-apologizes-thalidomide-tragedy-survivors-listen-parliament-gallery-105229914", - "categories": [ - "International" - ], - "isoDate": "2023-11-29T03:02:21.000Z" - }, - { - "title": " Still alive! Golden mole not seen for 80 years and presumed extinct is found again in South Africa", - "link": "https://abcnews.go.com/International/wireStory/alive-golden-mole-80-years-presumed-extinct-found-105267972", - "pubDate": "Thu, 30 Nov 2023 20:34:29 -0500", - "content": "Researchers in South Africa say they have rediscovered a mole species that has an iridescent golden coat and the ability to “swim” through sand dunes after it hadn't been seen for more than 80 years and was thought to be extinct", - "contentSnippet": "Researchers in South Africa say they have rediscovered a mole species that has an iridescent golden coat and the ability to \u201cswim\u201d through sand dunes after it hadn't been seen for more than 80 years and was thought to be extinct", - "guid": "https://abcnews.go.com/International/wireStory/alive-golden-mole-80-years-presumed-extinct-found-105267972", - "categories": [ - "International" - ], - "isoDate": "2023-12-01T01:34:29.000Z" - }, - { - "title": " Live updates | Live updates | Eight Israeli hostages are released during extended truce", - "link": "https://abcnews.go.com/International/wireStory/live-updates-live-updates-israeli-hostages-released-extended-105293255", - "pubDate": "Thu, 30 Nov 2023 20:18:29 -0500", - "content": "The Israeli military says a total of eight Israeli hostages have been released from captivity in the Gaza Strip", - "contentSnippet": "The Israeli military says a total of eight Israeli hostages have been released from captivity in the Gaza Strip", - "guid": "https://abcnews.go.com/International/wireStory/live-updates-live-updates-israeli-hostages-released-extended-105293255", - "categories": [ - "International" - ], - "isoDate": "2023-12-01T01:18:29.000Z" - }, - { - "title": " Live updates | Two Israeli hostages are released after Hamas and Israel extend their cease-fire", - "link": "https://abcnews.go.com/International/wireStory/live-updates-israel-hamas-agree-extend-cease-fire-105264642", - "pubDate": "Thu, 30 Nov 2023 14:58:22 -0500", - "content": "A temporary cease-fire in the Israel-Hamas war has been extended another day", - "contentSnippet": "A temporary cease-fire in the Israel-Hamas war has been extended another day", - "guid": "https://abcnews.go.com/International/wireStory/live-updates-israel-hamas-agree-extend-cease-fire-105264642", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T19:58:22.000Z" - }, - { - "title": " Paraguay official resigns after signing agreement with fictional country", - "link": "https://abcnews.go.com/International/wireStory/paraguay-official-resigns-after-signing-agreement-fictional-country-105281655", - "pubDate": "Thu, 30 Nov 2023 14:34:05 -0500", - "content": "A Paraguayan government official has been replaced after it was revealed that he signed a memorandum of understanding with representatives of a fugitive Indian guru’s fictional country, who also appear to have duped several local officials in the South...", - "contentSnippet": "A Paraguayan government official has been replaced after it was revealed that he signed a memorandum of understanding with representatives of a fugitive Indian guru\u2019s fictional country, who also appear to have duped several local officials in the South...", - "guid": "https://abcnews.go.com/International/wireStory/paraguay-official-resigns-after-signing-agreement-fictional-country-105281655", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T19:34:05.000Z" - }, - { - "title": " Ex-UK Treasury chief Alistair Darling, who steered nation through credit crunch, dies", - "link": "https://abcnews.go.com/International/wireStory/former-uk-treasury-chief-alistair-darling-steered-nation-105271278", - "pubDate": "Thu, 30 Nov 2023 13:14:19 -0500", - "content": "British ex-Treasury chief Alistair Darling has died at age 70", - "contentSnippet": "British ex-Treasury chief Alistair Darling has died at age 70", - "guid": "https://abcnews.go.com/International/wireStory/former-uk-treasury-chief-alistair-darling-steered-nation-105271278", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T18:14:19.000Z" - }, - { - "title": " Greek author Vassilis Vassilikos, whose political novel inspired film 'Z,' dies at 89", - "link": "https://abcnews.go.com/International/wireStory/greek-author-vassilis-vassilikos-political-inspired-award-winning-105276637", - "pubDate": "Thu, 30 Nov 2023 12:13:35 -0500", - "content": "Greek novelist Vassilis Vassilikos, whose political book “Z” inspired the Academy Award-winning film of the same name, has died in Athens at age 89", - "contentSnippet": "Greek novelist Vassilis Vassilikos, whose political book \u201cZ\u201d inspired the Academy Award-winning film of the same name, has died in Athens at age 89", - "guid": "https://abcnews.go.com/International/wireStory/greek-author-vassilis-vassilikos-political-inspired-award-winning-105276637", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T17:13:35.000Z" - }, - { - "title": " Rights of Dane convicted of murdering a journalist on sub were not violated in prison, court rules", - "link": "https://abcnews.go.com/International/wireStory/human-rights-danish-killer-violated-prison-banned-letters-105271652", - "pubDate": "Thu, 30 Nov 2023 10:42:20 -0500", - "content": "A Danish court has ruled that the human rights of a Danish man who was convicted of murdering a Swedish journalist on his homemade submarine were not violated as he had claimed", - "contentSnippet": "A Danish court has ruled that the human rights of a Danish man who was convicted of murdering a Swedish journalist on his homemade submarine were not violated as he had claimed", - "guid": "https://abcnews.go.com/International/wireStory/human-rights-danish-killer-violated-prison-banned-letters-105271652", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T15:42:20.000Z" - }, - { - "title": " The Israeli military says two more Israeli hostages have been released from captivity in the Gaza Strip", - "link": "https://abcnews.go.com/International/wireStory/israeli-military-israeli-hostages-released-captivity-gaza-strip-105272244", - "pubDate": "Thu, 30 Nov 2023 10:42:04 -0500", - "content": "The Israeli military says two more Israeli hostages have been released from captivity in the Gaza Strip", - "contentSnippet": "The Israeli military says two more Israeli hostages have been released from captivity in the Gaza Strip", - "guid": "https://abcnews.go.com/International/wireStory/israeli-military-israeli-hostages-released-captivity-gaza-strip-105272244", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T15:42:04.000Z" - }, - { - "title": " Hungary will not agree to starting EU membership talks with Ukraine, minister says", - "link": "https://abcnews.go.com/International/wireStory/hungary-agree-starting-eu-membership-talks-ukraine-minister-105270654", - "pubDate": "Thu, 30 Nov 2023 09:14:28 -0500", - "content": "The chief of staff to Hungarian Prime Minister Viktor Orbán says Hungary will not support any European Union proposal to begin talks on making Ukraine a member of the bloc", - "contentSnippet": "The chief of staff to Hungarian Prime Minister Viktor Orb\u00e1n says Hungary will not support any European Union proposal to begin talks on making Ukraine a member of the bloc", - "guid": "https://abcnews.go.com/International/wireStory/hungary-agree-starting-eu-membership-talks-ukraine-minister-105270654", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T14:14:28.000Z" - }, - { - "title": " Four arrested in death of Pakistani woman after a photo with her boyfriend went viral", - "link": "https://abcnews.go.com/International/wireStory/pakistan-police-arrest-4-men-death-woman-after-105269126", - "pubDate": "Thu, 30 Nov 2023 08:42:03 -0500", - "content": "Police in Pakistan have arrested four people who allegedly killed an 18-year-old woman in the purported name of honor after a picture of her sitting with a boyfriend went viral on social media", - "contentSnippet": "Police in Pakistan have arrested four people who allegedly killed an 18-year-old woman in the purported name of honor after a picture of her sitting with a boyfriend went viral on social media", - "guid": "https://abcnews.go.com/International/wireStory/pakistan-police-arrest-4-men-death-woman-after-105269126", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T13:42:03.000Z" - }, - { - "title": " A Pakistani province aims to deport 10,000 Afghans a day", - "link": "https://abcnews.go.com/International/wireStory/pakistani-province-aims-deport-10000-afghans-day-105266816", - "pubDate": "Thu, 30 Nov 2023 08:10:34 -0500", - "content": "Authorities in a Pakistani province are setting targets for police to arrest and deport hundreds of thousands of Afghans they say are in the country illegally", - "contentSnippet": "Authorities in a Pakistani province are setting targets for police to arrest and deport hundreds of thousands of Afghans they say are in the country illegally", - "guid": "https://abcnews.go.com/International/wireStory/pakistani-province-aims-deport-10000-afghans-day-105266816", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T13:10:34.000Z" - }, - { - "title": " South Korean farmers rally to protest proposed anti-dog meat legislation", - "link": "https://abcnews.go.com/International/wireStory/south-korean-farmers-rally-presidential-office-protest-proposed-105266617", - "pubDate": "Thu, 30 Nov 2023 08:02:38 -0500", - "content": "Dozens of South Korean dog farmers have scuffled with police during a rally.", - "contentSnippet": "Dozens of South Korean dog farmers have scuffled with police during a rally.", - "guid": "https://abcnews.go.com/International/wireStory/south-korean-farmers-rally-presidential-office-protest-proposed-105266617", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T13:02:38.000Z" - }, - { - "title": " Germany arrests French woman who allegedly committed war crimes after joining IS in Syria", - "link": "https://abcnews.go.com/International/wireStory/germany-arrests-french-woman-allegedly-committed-war-crimes-105266724", - "pubDate": "Thu, 30 Nov 2023 07:53:54 -0500", - "content": "German authorities say they have arrested a French woman who allegedly committed war crimes in Syria after joining the Islamic State extremist group", - "contentSnippet": "German authorities say they have arrested a French woman who allegedly committed war crimes in Syria after joining the Islamic State extremist group", - "guid": "https://abcnews.go.com/International/wireStory/germany-arrests-french-woman-allegedly-committed-war-crimes-105266724", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T12:53:54.000Z" - }, - { - "title": " China says US arms sales to Taiwan are turning the island into a 'powder keg'", - "link": "https://abcnews.go.com/International/wireStory/china-us-arms-sales-taiwan-turning-island-powder-105266909", - "pubDate": "Thu, 30 Nov 2023 07:38:28 -0500", - "content": "The Chinese defense ministry's top spokesperson has said that the U.S. should stop interfering in both Taiwan and the South China Sea", - "contentSnippet": "The Chinese defense ministry's top spokesperson has said that the U.S. should stop interfering in both Taiwan and the South China Sea", - "guid": "https://abcnews.go.com/International/wireStory/china-us-arms-sales-taiwan-turning-island-powder-105266909", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T12:38:28.000Z" - }, - { - "title": " Inflation falls to 2.4% in November in the 20 countries using the euro currency, offering some relief to Europeans", - "link": "https://abcnews.go.com/International/wireStory/inflation-falls-24-november-20-countries-euro-currency-105266185", - "pubDate": "Thu, 30 Nov 2023 05:54:04 -0500", - "content": "Inflation falls to 2.4% in November in the 20 countries using the euro currency, offering some relief to Europeans", - "contentSnippet": "Inflation falls to 2.4% in November in the 20 countries using the euro currency, offering some relief to Europeans", - "guid": "https://abcnews.go.com/International/wireStory/inflation-falls-24-november-20-countries-euro-currency-105266185", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T10:54:04.000Z" - }, - { - "title": " Colombian judge orders prison for 2 suspects in the kidnapping of parents of Liverpool soccer player", - "link": "https://abcnews.go.com/International/wireStory/colombian-judge-orders-prison-2-suspects-kidnapping-parents-105262797", - "pubDate": "Wed, 29 Nov 2023 22:34:28 -0500", - "content": "Two suspects in the kidnapping of the parents of Liverpool soccer player Luis Díaz were ordered sent to prison by a judge, according to Colombia’s Prosecutor’s Office, which accused one of the men of being the link to a person close to the family who p...", - "contentSnippet": "Two suspects in the kidnapping of the parents of Liverpool soccer player Luis D\u00edaz were ordered sent to prison by a judge, according to Colombia\u2019s Prosecutor\u2019s Office, which accused one of the men of being the link to a person close to the family who p...", - "guid": "https://abcnews.go.com/International/wireStory/colombian-judge-orders-prison-2-suspects-kidnapping-parents-105262797", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T03:34:28.000Z" - }, - { - "title": " Reports say Japan will suspend its own Osprey flights after the crash of a U.S. military aircraft", - "link": "https://abcnews.go.com/International/wireStory/reports-japan-suspend-osprey-flights-after-crash-us-105260544", - "pubDate": "Wed, 29 Nov 2023 21:38:09 -0500", - "content": "Reports say Japan will suspend its own Osprey flights after the crash of a U.S. military aircraft", - "contentSnippet": "Reports say Japan will suspend its own Osprey flights after the crash of a U.S. military aircraft", - "guid": "https://abcnews.go.com/International/wireStory/reports-japan-suspend-osprey-flights-after-crash-us-105260544", - "categories": [ - "International" - ], - "isoDate": "2023-11-30T02:38:09.000Z" - }, - { - "title": " Palestinians crowd into ever-shrinking areas in Gaza as Israel's war against Hamas enters 3rd month", - "link": "https://abcnews.go.com/International/wireStory/palestinians-crowd-shrinking-areas-gaza-israels-war-hamas-105489144", - "pubDate": "Fri, 08 Dec 2023 04:34:31 -0500", - "content": "Desperate Palestinians fleeing Israel’s expanding ground offensive crowded into an ever-shrinking area of the Gaza Strip as the Israel-Hamas war entered its third month Friday", - "contentSnippet": "Desperate Palestinians fleeing Israel\u2019s expanding ground offensive crowded into an ever-shrinking area of the Gaza Strip as the Israel-Hamas war entered its third month Friday", - "guid": "https://abcnews.go.com/International/wireStory/palestinians-crowd-shrinking-areas-gaza-israels-war-hamas-105489144", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T09:34:31.000Z" - }, - { - "title": " Chinese military surveillance balloon is spotted in Taiwan Strait", - "link": "https://abcnews.go.com/International/wireStory/chinese-military-surveillance-balloon-spotted-taiwan-strait-islands-105487719", - "pubDate": "Fri, 08 Dec 2023 04:34:28 -0500", - "content": "Taiwan's Defense Ministry says it has spotted a Chinese surveillance balloon in the Taiwan Strait along with a large-scale movement of military aircraft and ships", - "contentSnippet": "Taiwan's Defense Ministry says it has spotted a Chinese surveillance balloon in the Taiwan Strait along with a large-scale movement of military aircraft and ships", - "guid": "https://abcnews.go.com/International/wireStory/chinese-military-surveillance-balloon-spotted-taiwan-strait-islands-105487719", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T09:34:28.000Z" - }, - { - "title": " A rocket attack targets US embassy in Baghdad, causing minor damage, no casualties", - "link": "https://abcnews.go.com/International/wireStory/rocket-attack-targets-us-embassy-baghdad-causing-minor-105488905", - "pubDate": "Fri, 08 Dec 2023 04:34:09 -0500", - "content": "U.S. and Iraqi officials say a rocket attack at the sprawling U.S. embassy in Baghdad has caused minor material damage but no casualties", - "contentSnippet": "U.S. and Iraqi officials say a rocket attack at the sprawling U.S. embassy in Baghdad has caused minor material damage but no casualties", - "guid": "https://abcnews.go.com/International/wireStory/rocket-attack-targets-us-embassy-baghdad-causing-minor-105488905", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T09:34:09.000Z" - }, - { - "title": " Seychelles declares an emergency after deadly flooding and a blast at an explosives depot", - "link": "https://abcnews.go.com/International/wireStory/seychelles-declares-state-emergency-after-explosion-amid-destructive-105450278", - "pubDate": "Thu, 07 Dec 2023 21:38:27 -0500", - "content": "The president of Seychelles has declared an emergency after a huge blast at an explosives depot that followed deadly flooding on the country’s main island", - "contentSnippet": "The president of Seychelles has declared an emergency after a huge blast at an explosives depot that followed deadly flooding on the country\u2019s main island", - "guid": "https://abcnews.go.com/International/wireStory/seychelles-declares-state-emergency-after-explosion-amid-destructive-105450278", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T02:38:27.000Z" - }, - { - "title": " Advocates say a Mexican startup is illegally selling a health drink from an endangered fish", - "link": "https://abcnews.go.com/International/wireStory/advocates-mexican-startup-illegally-selling-health-drink-endangered-105477956", - "pubDate": "Thu, 07 Dec 2023 21:22:18 -0500", - "content": "Environmental watchdogs have accused a Mexico-based startup of violating international trade law that protects the endangered totoaba fish", - "contentSnippet": "Environmental watchdogs have accused a Mexico-based startup of violating international trade law that protects the endangered totoaba fish", - "guid": "https://abcnews.go.com/International/wireStory/advocates-mexican-startup-illegally-selling-health-drink-endangered-105477956", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T02:22:18.000Z" - }, - { - "title": " Chinese navy ships are first to dock at new pier at Cambodian naval base", - "link": "https://abcnews.go.com/International/wireStory/chinese-navy-ships-dock-new-pier-cambodian-naval-105449899", - "pubDate": "Thu, 07 Dec 2023 20:18:17 -0500", - "content": "Chinese naval vessels have become the first ships to dock at a new pier at a Cambodian naval base that the United States and some international security experts say is destined to serve as a strategic outpost for Beijing’s navy", - "contentSnippet": "Chinese naval vessels have become the first ships to dock at a new pier at a Cambodian naval base that the United States and some international security experts say is destined to serve as a strategic outpost for Beijing\u2019s navy", - "guid": "https://abcnews.go.com/International/wireStory/chinese-navy-ships-dock-new-pier-cambodian-naval-105449899", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T01:18:17.000Z" - }, - { - "title": " Armenia and Azerbaijan announce deal to exchange POWs and work toward peace treaty", - "link": "https://abcnews.go.com/International/wireStory/armenia-azerbaijan-announce-deal-exchange-pows-work-peace-105477766", - "pubDate": "Thu, 07 Dec 2023 19:54:23 -0500", - "content": "Armenia and Azerbaijan have agreed to exchange prisoners of war and work toward signing a peace treaty in what the European Union is hailing as a major step toward peace in the long-troubled region", - "contentSnippet": "Armenia and Azerbaijan have agreed to exchange prisoners of war and work toward signing a peace treaty in what the European Union is hailing as a major step toward peace in the long-troubled region", - "guid": "https://abcnews.go.com/International/wireStory/armenia-azerbaijan-announce-deal-exchange-pows-work-peace-105477766", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T00:54:23.000Z" - }, - { - "title": " British poet and political activist Benjamin Zephaniah dies at age 65", - "link": "https://abcnews.go.com/International/wireStory/british-poet-political-activist-benjamin-zephaniah-dies-age-105451024", - "pubDate": "Thu, 07 Dec 2023 16:18:29 -0500", - "content": "British poet, political activist, musician and actor Benjamin Zephaniah has died at age 65", - "contentSnippet": "British poet, political activist, musician and actor Benjamin Zephaniah has died at age 65", - "guid": "https://abcnews.go.com/International/wireStory/british-poet-political-activist-benjamin-zephaniah-dies-age-105451024", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T21:18:29.000Z" - }, - { - "title": " United Nations bemoans struggles to fund peacekeeping as nations demand withdrawal of missions", - "link": "https://abcnews.go.com/International/wireStory/united-nations-bemoans-struggles-fund-peacekeeping-nations-demand-105453325", - "pubDate": "Thu, 07 Dec 2023 15:46:36 -0500", - "content": "The United Nations’ top peacekeeping official has defended its missions worldwide even as many countries where peacekeepers operate are demanding their withdrawal", - "contentSnippet": "The United Nations\u2019 top peacekeeping official has defended its missions worldwide even as many countries where peacekeepers operate are demanding their withdrawal", - "guid": "https://abcnews.go.com/International/wireStory/united-nations-bemoans-struggles-fund-peacekeeping-nations-demand-105453325", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T20:46:36.000Z" - }, - { - "title": " Mexico City rattled by moderate 5.8 magnitude earthquake", - "link": "https://abcnews.go.com/International/wireStory/mexico-city-rattled-moderate-58-magnitude-earthquake-105475957", - "pubDate": "Thu, 07 Dec 2023 15:46:06 -0500", - "content": "Mexico City residents regaining composure after the capital was rattled by a moderate magnitude earthquake", - "contentSnippet": "Mexico City residents regaining composure after the capital was rattled by a moderate magnitude earthquake", - "guid": "https://abcnews.go.com/International/wireStory/mexico-city-rattled-moderate-58-magnitude-earthquake-105475957", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T20:46:06.000Z" - }, - { - "title": " Israel and US are at odds over conflicting visions for postwar Gaza", - "link": "https://abcnews.go.com/International/wireStory/israel-us-odds-conflicting-visions-postwar-gaza-105452909", - "pubDate": "Thu, 07 Dec 2023 15:22:27 -0500", - "content": "The United States strongly supports Israel in its war against Hamas, but is increasingly at odds with its Middle East ally over what will happen to the Gaza Strip once the war winds down", - "contentSnippet": "The United States strongly supports Israel in its war against Hamas, but is increasingly at odds with its Middle East ally over what will happen to the Gaza Strip once the war winds down", - "guid": "https://abcnews.go.com/International/wireStory/israel-us-odds-conflicting-visions-postwar-gaza-105452909", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T20:22:27.000Z" - }, - { - "title": " UN says Africa faces unprecedented food crisis, with 3 in 4 people unable to afford a healthy diet", - "link": "https://abcnews.go.com/International/wireStory/africa-faces-unprecedented-food-crisis-3-4-people-105471793", - "pubDate": "Thu, 07 Dec 2023 15:06:21 -0500", - "content": "The United Nations says at least three of every four Africans can’t afford a healthy diet because of an “unprecedented food crisis.”", - "contentSnippet": "The United Nations says at least three of every four Africans can\u2019t afford a healthy diet because of an \u201cunprecedented food crisis.\u201d", - "guid": "https://abcnews.go.com/International/wireStory/africa-faces-unprecedented-food-crisis-3-4-people-105471793", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T20:06:21.000Z" - }, - { - "title": " Kremlin foe Navalny's lawyers to remain in detention at least through mid-March, Russian court rules", - "link": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalnys-lawyers-remain-detention-mid-march-105472867", - "pubDate": "Thu, 07 Dec 2023 14:50:40 -0500", - "content": "A Moscow court has extended the pre-trial detention of three lawyers who once represented imprisoned opposition leader Alexei Navalny", - "contentSnippet": "A Moscow court has extended the pre-trial detention of three lawyers who once represented imprisoned opposition leader Alexei Navalny", - "guid": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalnys-lawyers-remain-detention-mid-march-105472867", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T19:50:40.000Z" - }, - { - "title": " Scientists: Climate change intensified the rains devastating East Africa", - "link": "https://abcnews.go.com/International/wireStory/scientists-climate-change-intensified-rains-devastating-east-africa-105463225", - "pubDate": "Thu, 07 Dec 2023 12:02:36 -0500", - "content": "An international team of climate scientists says the ongoing catastrophic rains in East Africa have been made worse by human-induced climate change", - "contentSnippet": "An international team of climate scientists says the ongoing catastrophic rains in East Africa have been made worse by human-induced climate change", - "guid": "https://abcnews.go.com/International/wireStory/scientists-climate-change-intensified-rains-devastating-east-africa-105463225", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T17:02:36.000Z" - }, - { - "title": " A China, EU summit exposes divisions over Ukraine, trade and subsidies", - "link": "https://abcnews.go.com/International/wireStory/divides-trade-ukraine-focus-eu-chinas-leaders-meet-105447062", - "pubDate": "Thu, 07 Dec 2023 10:50:30 -0500", - "content": "The leaders of China and the European Union have held wide-ranging talks that included their disputes over trade and a deep divide over the war in Ukraine", - "contentSnippet": "The leaders of China and the European Union have held wide-ranging talks that included their disputes over trade and a deep divide over the war in Ukraine", - "guid": "https://abcnews.go.com/International/wireStory/divides-trade-ukraine-focus-eu-chinas-leaders-meet-105447062", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T15:50:30.000Z" - }, - { - "title": " Azerbaijan to hold snap presidential election, shortly before Russia's vote", - "link": "https://abcnews.go.com/International/wireStory/azerbaijan-hold-snap-presidential-election-february-7-shortly-105449807", - "pubDate": "Thu, 07 Dec 2023 10:50:27 -0500", - "content": "President Ilham Aliyev has ordered Azerbaijan's Central Election Commission to prepare for an early presidential election on Feb. 7, shortly ahead of Russia's presidential election on March 17", - "contentSnippet": "President Ilham Aliyev has ordered Azerbaijan's Central Election Commission to prepare for an early presidential election on Feb. 7, shortly ahead of Russia's presidential election on March 17", - "guid": "https://abcnews.go.com/International/wireStory/azerbaijan-hold-snap-presidential-election-february-7-shortly-105449807", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T15:50:27.000Z" - }, - { - "title": " West Africa court refuses to recognize Niger\u2019s junta, rejects request to lift coup sanctions", - "link": "https://abcnews.go.com/International/wireStory/west-africa-court-refuses-recognize-nigers-junta-rejects-105457072", - "pubDate": "Thu, 07 Dec 2023 10:42:30 -0500", - "content": "West Africa’s top court has rejected a request by Niger’s junta for a lifting of coup-related sanctions imposed by its neighbors", - "contentSnippet": "West Africa\u2019s top court has rejected a request by Niger\u2019s junta for a lifting of coup-related sanctions imposed by its neighbors", - "guid": "https://abcnews.go.com/International/wireStory/west-africa-court-refuses-recognize-nigers-junta-rejects-105457072", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T15:42:30.000Z" - }, - { - "title": " Lithuania's President Gitanas Nauseda says he'll seek reelection in 2024 for another 5-year term", - "link": "https://abcnews.go.com/International/wireStory/lithuanias-president-gitanas-nauseda-hell-seek-reelection-2024-105458426", - "pubDate": "Thu, 07 Dec 2023 10:26:31 -0500", - "content": "Lithuania’s president says he will seek reelection for another five-year term as the leader of the Baltic nation that's a member of the European Union and NATO", - "contentSnippet": "Lithuania\u2019s president says he will seek reelection for another five-year term as the leader of the Baltic nation that's a member of the European Union and NATO", - "guid": "https://abcnews.go.com/International/wireStory/lithuanias-president-gitanas-nauseda-hell-seek-reelection-2024-105458426", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T15:26:31.000Z" - }, - { - "title": " Mexico focuses on looking for people falsely listed as missing, ignores thousands of disappeared", - "link": "https://abcnews.go.com/International/wireStory/mexico-focuses-people-falsely-listed-missing-ignores-thousands-105457527", - "pubDate": "Thu, 07 Dec 2023 10:18:21 -0500", - "content": "Mexico’s government is pouring resources into detecting what it suggests are “fake” missing people", - "contentSnippet": "Mexico\u2019s government is pouring resources into detecting what it suggests are \u201cfake\u201d missing people", - "guid": "https://abcnews.go.com/International/wireStory/mexico-focuses-people-falsely-listed-missing-ignores-thousands-105457527", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T15:18:21.000Z" - }, - { - "title": " A Danish court orders a British financier to remain in pre-trial custody on tax fraud", - "link": "https://abcnews.go.com/International/wireStory/danish-court-orders-british-financier-remain-jail-january-105455295", - "pubDate": "Thu, 07 Dec 2023 09:54:26 -0500", - "content": "A British hedge fund trader extradited from the United Arab Emirates to Denmark where he was wanted for allegedly orchestrating a more than 9 billion kroner ($1.3 billion) tax fraud has been ordered to remain in custody until his Jan. 3 trial", - "contentSnippet": "A British hedge fund trader extradited from the United Arab Emirates to Denmark where he was wanted for allegedly orchestrating a more than 9 billion kroner ($1.3 billion) tax fraud has been ordered to remain in custody until his Jan. 3 trial", - "guid": "https://abcnews.go.com/International/wireStory/danish-court-orders-british-financier-remain-jail-january-105455295", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T14:54:26.000Z" - }, - { - "title": " Japan pledges $4.5B more in aid for Ukraine, including $1B in humanitarian funds", - "link": "https://abcnews.go.com/International/wireStory/japan-pledges-45b-aid-ukraine-including-1b-humanitarian-105455306", - "pubDate": "Thu, 07 Dec 2023 09:46:30 -0500", - "content": "Japan’s Prime Minister Fumio Kishida has pledged $4.5 billion to Ukraine, including $1 billion in humanitarian aid to help support the war-torn country’s recovery efforts", - "contentSnippet": "Japan\u2019s Prime Minister Fumio Kishida has pledged $4.5 billion to Ukraine, including $1 billion in humanitarian aid to help support the war-torn country\u2019s recovery efforts", - "guid": "https://abcnews.go.com/International/wireStory/japan-pledges-45b-aid-ukraine-including-1b-humanitarian-105455306", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T14:46:30.000Z" - }, - { - "title": " Europe's talks on world-leading AI rules paused after 22 hours and will start again Friday", - "link": "https://abcnews.go.com/International/wireStory/europes-talks-world-leading-ai-rules-paused-after-105454201", - "pubDate": "Thu, 07 Dec 2023 09:30:17 -0500", - "content": "European Union talks on comprehensive artificial intelligence regulations were paused after 22 straight hours", - "contentSnippet": "European Union talks on comprehensive artificial intelligence regulations were paused after 22 straight hours", - "guid": "https://abcnews.go.com/International/wireStory/europes-talks-world-leading-ai-rules-paused-after-105454201", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T14:30:17.000Z" - }, - { - "title": " Australia pushes against China's Pacific influence through a security pact", - "link": "https://abcnews.go.com/International/wireStory/australia-pushes-chinas-pacific-influence-security-pact-papua-105448800", - "pubDate": "Thu, 07 Dec 2023 02:26:18 -0500", - "content": "The Australian government has signed a security pact with its nearest neighbor Papua New Guinea that strengthens Australia’s place as the preferred security partner in a region where China’s influence is growing", - "contentSnippet": "The Australian government has signed a security pact with its nearest neighbor Papua New Guinea that strengthens Australia\u2019s place as the preferred security partner in a region where China\u2019s influence is growing", - "guid": "https://abcnews.go.com/International/wireStory/australia-pushes-chinas-pacific-influence-security-pact-papua-105448800", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T07:26:18.000Z" - }, - { - "title": " China's exports in November edged higher for the first time in 7 months, while imports fell", - "link": "https://abcnews.go.com/International/wireStory/chinas-exports-november-edged-higher-time-7-months-105446334", - "pubDate": "Thu, 07 Dec 2023 01:06:30 -0500", - "content": "Customs data show that China’s exports rose in November, indicating that demand may be picking up following months of decline", - "contentSnippet": "Customs data show that China\u2019s exports rose in November, indicating that demand may be picking up following months of decline", - "guid": "https://abcnews.go.com/International/wireStory/chinas-exports-november-edged-higher-time-7-months-105446334", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T06:06:30.000Z" - }, - { - "title": " National security advisers of US, South Korea and Japan will meet to discuss North Korean threat", - "link": "https://abcnews.go.com/International/wireStory/national-security-advisers-us-south-korea-japan-meet-105446234", - "pubDate": "Wed, 06 Dec 2023 23:14:32 -0500", - "content": "The national security advisers of the United States, South Korea and Japan will meet in Seoul this week to discuss North Korea’s military threat and other issues as they continue to promote trilateral cooperation in Asia", - "contentSnippet": "The national security advisers of the United States, South Korea and Japan will meet in Seoul this week to discuss North Korea\u2019s military threat and other issues as they continue to promote trilateral cooperation in Asia", - "guid": "https://abcnews.go.com/International/wireStory/national-security-advisers-us-south-korea-japan-meet-105446234", - "categories": [ - "International" - ], - "isoDate": "2023-12-07T04:14:32.000Z" - }, - { - "title": " Putin will seek another presidential term in Russia, extending his rule of over two decades", - "link": "https://abcnews.go.com/International/wireStory/putin-seek-presidential-term-russia-extending-rule-decades-105490641", - "pubDate": "Fri, 08 Dec 2023 06:42:50 -0500", - "content": "Vladimir Putin has moved to prolong his repressive and unyielding grip on Russia for another six years", - "contentSnippet": "Vladimir Putin has moved to prolong his repressive and unyielding grip on Russia for another six years", - "guid": "https://abcnews.go.com/International/wireStory/putin-seek-presidential-term-russia-extending-rule-decades-105490641", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T11:42:50.000Z" - }, - { - "title": " The UK says it has paid Rwanda $300 million for a blocked asylum deal. No flights have taken off", - "link": "https://abcnews.go.com/International/wireStory/uk-paid-rwanda-300-million-blocked-asylum-deal-105490534", - "pubDate": "Fri, 08 Dec 2023 06:42:29 -0500", - "content": "Prime Minister Rishi Sunak is under pressure to explain why Britain has paid Rwanda 240 million pounds ($300 million) as part of a blocked asylum plan", - "contentSnippet": "Prime Minister Rishi Sunak is under pressure to explain why Britain has paid Rwanda 240 million pounds ($300 million) as part of a blocked asylum plan", - "guid": "https://abcnews.go.com/International/wireStory/uk-paid-rwanda-300-million-blocked-asylum-deal-105490534", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T11:42:29.000Z" - }, - { - "title": " Nintendo cancels its Live 2024 Tokyo event after persistent threats to workers and customers", - "link": "https://abcnews.go.com/International/wireStory/nintendo-cancels-live-2024-tokyo-event-after-persistent-105490535", - "pubDate": "Fri, 08 Dec 2023 06:42:28 -0500", - "content": "Nintendo has canceled an upcoming video game event and postponed several others because of persistent threats to the company, its workers and players", - "contentSnippet": "Nintendo has canceled an upcoming video game event and postponed several others because of persistent threats to the company, its workers and players", - "guid": "https://abcnews.go.com/International/wireStory/nintendo-cancels-live-2024-tokyo-event-after-persistent-105490535", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T11:42:28.000Z" - }, - { - "title": " Putin to seek another presidential term in Russia, extending his rule of over two decades, state media say", - "link": "https://abcnews.go.com/International/wireStory/putin-seek-presidential-term-russia-extending-rule-decades-105490541", - "pubDate": "Fri, 08 Dec 2023 06:42:03 -0500", - "content": "Putin to seek another presidential term in Russia, extending his rule of over two decades, state media say", - "contentSnippet": "Putin to seek another presidential term in Russia, extending his rule of over two decades, state media say", - "guid": "https://abcnews.go.com/International/wireStory/putin-seek-presidential-term-russia-extending-rule-decades-105490541", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T11:42:03.000Z" - }, - { - "title": " South Korea's defense chief vows retaliatory strikes on 'heart and head' of North Korea if provoked", - "link": "https://abcnews.go.com/International/wireStory/south-koreas-defense-chief-vows-retaliatory-strikes-heart-105489967", - "pubDate": "Fri, 08 Dec 2023 06:02:30 -0500", - "content": "South Korea’s defense minister has vowed massive retaliatory missile strikes on “the heart and head” of North Korea in the event of provocation, as the rivals escalate their rhetoric over their respective spy satellite launches in recent days", - "contentSnippet": "South Korea\u2019s defense minister has vowed massive retaliatory missile strikes on \u201cthe heart and head\u201d of North Korea in the event of provocation, as the rivals escalate their rhetoric over their respective spy satellite launches in recent days", - "guid": "https://abcnews.go.com/International/wireStory/south-koreas-defense-chief-vows-retaliatory-strikes-heart-105489967", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T11:02:30.000Z" - }, - { - "title": " Judge rules against Prince Harry in early stage of libel case against Daily Mail publisher", - "link": "https://abcnews.go.com/International/wireStory/judge-rules-prince-harry-early-stage-libel-case-105490155", - "pubDate": "Fri, 08 Dec 2023 06:02:19 -0500", - "content": "Prince Harry has lost a preliminary round in his libel case against the publisher of the Daily Mail tabloid for a story that said he tried to hide his efforts to retain publicly funded protection in the U.K. after giving up his status as a working memb...", - "contentSnippet": "Prince Harry has lost a preliminary round in his libel case against the publisher of the Daily Mail tabloid for a story that said he tried to hide his efforts to retain publicly funded protection in the U.K. after giving up his status as a working memb...", - "guid": "https://abcnews.go.com/International/wireStory/judge-rules-prince-harry-early-stage-libel-case-105490155", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T11:02:19.000Z" - }, - { - "title": " German rail workers begin 24-hour strike as pay talks stall", - "link": "https://abcnews.go.com/International/wireStory/german-rail-workers-begin-24-hour-strike-pay-105489966", - "pubDate": "Fri, 08 Dec 2023 05:54:29 -0500", - "content": "A union representing Germany’s train drivers began a 24-hour strike Thursday night, causing widespread rail cancellations and travel disruptions across the country", - "contentSnippet": "A union representing Germany\u2019s train drivers began a 24-hour strike Thursday night, causing widespread rail cancellations and travel disruptions across the country", - "guid": "https://abcnews.go.com/International/wireStory/german-rail-workers-begin-24-hour-strike-pay-105489966", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T10:54:29.000Z" - }, - { - "title": " Six Palestinians are killed in the Israeli military's latest West Bank raid, health officials say", - "link": "https://abcnews.go.com/International/wireStory/palestinians-killed-israeli-militarys-latest-west-bank-raid-105489787", - "pubDate": "Fri, 08 Dec 2023 05:54:18 -0500", - "content": "Palestinian health officials say Israeli forces stormed into a refugee camp in the occupied West Bank to arrest Palestinian militants and unleashed fighting with local gunmen in which six Palestinians were killed", - "contentSnippet": "Palestinian health officials say Israeli forces stormed into a refugee camp in the occupied West Bank to arrest Palestinian militants and unleashed fighting with local gunmen in which six Palestinians were killed", - "guid": "https://abcnews.go.com/International/wireStory/palestinians-killed-israeli-militarys-latest-west-bank-raid-105489787", - "categories": [ - "International" - ], - "isoDate": "2023-12-08T10:54:18.000Z" - }, - { - "title": " Moldova and Georgia celebrate as their aspirations for EU membership take crucial steps forward", - "link": "https://abcnews.go.com/International/wireStory/moldova-georgia-celebrate-aspirations-eu-membership-crucial-steps-105688900", - "pubDate": "Fri, 15 Dec 2023 10:34:38 -0500", - "content": "Moldova and Georgia celebrated after European Union leaders buoyed their aspirations to join the 27 member nation bloc by removing key hurdles on their long path toward membership", - "contentSnippet": "Moldova and Georgia celebrated after European Union leaders buoyed their aspirations to join the 27 member nation bloc by removing key hurdles on their long path toward membership", - "guid": "https://abcnews.go.com/International/wireStory/moldova-georgia-celebrate-aspirations-eu-membership-crucial-steps-105688900", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T15:34:38.000Z" - }, - { - "title": " Hague court rejects bid to ban transfer to Israel of F-35 fighter jet parts from Dutch warehouse", - "link": "https://abcnews.go.com/International/wireStory/hague-court-rejects-bid-ban-transfer-israel-35-105683697", - "pubDate": "Fri, 15 Dec 2023 10:18:23 -0500", - "content": "A Dutch court has rejected a request by a group of human rights organizations to order a halt to the transfer to Israel of parts for F-35 fighter jets", - "contentSnippet": "A Dutch court has rejected a request by a group of human rights organizations to order a halt to the transfer to Israel of parts for F-35 fighter jets", - "guid": "https://abcnews.go.com/International/wireStory/hague-court-rejects-bid-ban-transfer-israel-35-105683697", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T15:18:23.000Z" - }, - { - "title": " Finland reports a rush of migrant crossings hours before the reclosure of 2 border posts with Russia", - "link": "https://abcnews.go.com/International/wireStory/finland-reports-rush-migrant-crossings-hours-reclosure-2-105687414", - "pubDate": "Fri, 15 Dec 2023 09:38:29 -0500", - "content": "Dozens of migrants have crossed into Finland hours before the reclosure of two southern crossing points on the border with Russia as the Nordic country experiences an influx of asylum-seekers", - "contentSnippet": "Dozens of migrants have crossed into Finland hours before the reclosure of two southern crossing points on the border with Russia as the Nordic country experiences an influx of asylum-seekers", - "guid": "https://abcnews.go.com/International/wireStory/finland-reports-rush-migrant-crossings-hours-reclosure-2-105687414", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T14:38:29.000Z" - }, - { - "title": " US and Israel discuss when to scale back Gaza combat but agree fight will take months, envoy says", - "link": "https://abcnews.go.com/International/wireStory/biden-envoy-meet-abbas-us-floats-palestinian-security-105682627", - "pubDate": "Fri, 15 Dec 2023 09:38:23 -0500", - "content": "A top American envoy says the U.S. and Israel have discussed a timetable for scaling back intense combat operations in the war against Hamas, even though they agree the overall fight will take months", - "contentSnippet": "A top American envoy says the U.S. and Israel have discussed a timetable for scaling back intense combat operations in the war against Hamas, even though they agree the overall fight will take months", - "guid": "https://abcnews.go.com/International/wireStory/biden-envoy-meet-abbas-us-floats-palestinian-security-105682627", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T14:38:23.000Z" - }, - { - "title": " Navalny's allies say he has been moved but they still don't know where", - "link": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalny-allies-moved-105682991", - "pubDate": "Fri, 15 Dec 2023 09:06:23 -0500", - "content": "Officials said that he was moved from the region where he was serving time.", - "contentSnippet": "Officials said that he was moved from the region where he was serving time.", - "guid": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalny-allies-moved-105682991", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T14:06:23.000Z" - }, - { - "title": " US national security adviser says a negotiated outcome is the best way to end Lebanon-Israel tension", - "link": "https://abcnews.go.com/International/wireStory/us-national-security-adviser-negotiated-outcome-best-end-105686131", - "pubDate": "Fri, 15 Dec 2023 08:26:32 -0500", - "content": "U.S. National Security Adviser Jake Sullivan says he has discussed with Israeli officials the volatile situation along the Lebanon-Israel border", - "contentSnippet": "U.S. National Security Adviser Jake Sullivan says he has discussed with Israeli officials the volatile situation along the Lebanon-Israel border", - "guid": "https://abcnews.go.com/International/wireStory/us-national-security-adviser-negotiated-outcome-best-end-105686131", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T13:26:32.000Z" - }, - { - "title": " 515 injured in a Beijing rail collision as heavy snow hits the Chinese capital", - "link": "https://abcnews.go.com/International/wireStory/515-injured-beijing-rail-collision-heavy-snow-hits-105682437", - "pubDate": "Fri, 15 Dec 2023 07:46:31 -0500", - "content": "Two subway trains collided in heavy snow in Beijing.", - "contentSnippet": "Two subway trains collided in heavy snow in Beijing.", - "guid": "https://abcnews.go.com/International/wireStory/515-injured-beijing-rail-collision-heavy-snow-hits-105682437", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T12:46:31.000Z" - }, - { - "title": " China defends bounties offered for Hong Kong dissidents abroad", - "link": "https://abcnews.go.com/International/wireStory/china-defends-bounties-offered-hong-kong-dissidents-abroad-105683259", - "pubDate": "Fri, 15 Dec 2023 06:58:17 -0500", - "content": "China has defended controversial cash bounties offered for Hong Kong dissidents who have fled abroad that have been heavily criticized by foreign governments and human rights groups", - "contentSnippet": "China has defended controversial cash bounties offered for Hong Kong dissidents who have fled abroad that have been heavily criticized by foreign governments and human rights groups", - "guid": "https://abcnews.go.com/International/wireStory/china-defends-bounties-offered-hong-kong-dissidents-abroad-105683259", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T11:58:17.000Z" - }, - { - "title": " Serbia's Vucic seeks to reassert populist dominance in elections this weekend", - "link": "https://abcnews.go.com/International/wireStory/serbias-vucic-seeks-reassert-populist-dominance-elections-weekend-105680976", - "pubDate": "Fri, 15 Dec 2023 04:58:28 -0500", - "content": "Serbian President Aleksandar Vucic is pushing to reassert his populist party’s dominance in this weekend's parliamentary and local election in the troubled eastern European country following a turbulent year that has shaken the government’s popularity", - "contentSnippet": "Serbian President Aleksandar Vucic is pushing to reassert his populist party\u2019s dominance in this weekend's parliamentary and local election in the troubled eastern European country following a turbulent year that has shaken the government\u2019s popularity", - "guid": "https://abcnews.go.com/International/wireStory/serbias-vucic-seeks-reassert-populist-dominance-elections-weekend-105680976", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T09:58:28.000Z" - }, - { - "title": " AP Week in Pictures: Europe and Africa", - "link": "https://abcnews.go.com/International/wireStory/ap-week-pictures-europe-africa-105682432", - "pubDate": "Fri, 15 Dec 2023 02:26:33 -0500", - "content": "\nDec. 8-14, 2023\n\nKenyans celebrated their Independence Day in Nairobi, people participated in the annual Christmas run in Vilinus, and Donald Tusk was installed as the new prime minister of Poland in Warsaw. In the world of sports, athletes competed in the Biathlon World Cup in Hochfilzen, Austria.\n\nThis gallery highlights some of the most compelling images made or published in the past week by Associated Press photographers in Europe and Africa.\n\nThe selection was curated by photographer Andreea Alexandru in Bucharest.\n\n____\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on Twitter: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", - "contentSnippet": "Dec. 8-14, 2023\n\nKenyans celebrated their Independence Day in Nairobi, people participated in the annual Christmas run in Vilinus, and Donald Tusk was installed as the new prime minister of Poland in Warsaw. In the world of sports, athletes competed in the Biathlon World Cup in Hochfilzen, Austria.\n\nThis gallery highlights some of the most compelling images made or published in the past week by Associated Press photographers in Europe and Africa.\n\nThe selection was curated by photographer Andreea Alexandru in Bucharest.\n\n____\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on Twitter: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", - "guid": "https://abcnews.go.com/International/wireStory/ap-week-pictures-europe-africa-105682432", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T07:26:33.000Z" - }, - { - "title": " EU leaders fail to agree on \u20ac50 billion aid package for Ukraine and on renegotiation of EU budget, EU official says", - "link": "https://abcnews.go.com/International/wireStory/eu-leaders-fail-agree-50-billion-aid-package-105678856", - "pubDate": "Thu, 14 Dec 2023 21:45:58 -0500", - "content": "EU leaders fail to agree on €50 billion aid package for Ukraine and on renegotiation of EU budget, EU official says", - "contentSnippet": "EU leaders fail to agree on \u20ac50 billion aid package for Ukraine and on renegotiation of EU budget, EU official says", - "guid": "https://abcnews.go.com/International/wireStory/eu-leaders-fail-agree-50-billion-aid-package-105678856", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T02:45:58.000Z" - }, - { - "title": " Pope calls for binding treaty to regulate artificial intelligence", - "link": "https://abcnews.go.com/International/wireStory/pope-victim-ai-generated-imagery-calls-treaty-regulate-105650622", - "pubDate": "Thu, 14 Dec 2023 17:22:33 -0500", - "content": "Pope Francis is calling for an international treaty to ensure artificial intelligence is developed and used ethically", - "contentSnippet": "Pope Francis is calling for an international treaty to ensure artificial intelligence is developed and used ethically", - "guid": "https://abcnews.go.com/International/wireStory/pope-victim-ai-generated-imagery-calls-treaty-regulate-105650622", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T22:22:33.000Z" - }, - { - "title": " Court voids fine given to Russian activist for criticizing war and sends case back to prosecutors", - "link": "https://abcnews.go.com/International/wireStory/court-voids-fine-russian-activist-criticizing-war-sends-105665913", - "pubDate": "Thu, 14 Dec 2023 14:26:39 -0500", - "content": "A court in Russia has overturned a fine handed to a veteran human rights advocate for speaking out against the war in Ukraine", - "contentSnippet": "A court in Russia has overturned a fine handed to a veteran human rights advocate for speaking out against the war in Ukraine", - "guid": "https://abcnews.go.com/International/wireStory/court-voids-fine-russian-activist-criticizing-war-sends-105665913", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T19:26:39.000Z" - }, - { - "title": " British teenager who went missing 6 years ago in Spain is found in France: reports", - "link": "https://abcnews.go.com/International/wireStory/british-teenager-missing-6-years-ago-spain-found-105666045", - "pubDate": "Thu, 14 Dec 2023 13:46:59 -0500", - "content": "French media say that a British teenager who went missing six years ago on a family holiday in Spain has been found in southwestern France", - "contentSnippet": "French media say that a British teenager who went missing six years ago on a family holiday in Spain has been found in southwestern France", - "guid": "https://abcnews.go.com/International/wireStory/british-teenager-missing-6-years-ago-spain-found-105666045", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T18:46:59.000Z" - }, - { - "title": " Finland to close again entire border with Russia as reopening of 2 crossing points lures migrants", - "link": "https://abcnews.go.com/International/wireStory/finland-close-entire-border-russia-reopening-2-crossing-105665074", - "pubDate": "Thu, 14 Dec 2023 13:14:22 -0500", - "content": "Finland’s government has decided to seal again, effective Friday, the Nordic country’s entire eastern frontier due to a continuing influx of migrants at the two crossing points on the border with Russia that were reopened on a temporary basis early Thu...", - "contentSnippet": "Finland\u2019s government has decided to seal again, effective Friday, the Nordic country\u2019s entire eastern frontier due to a continuing influx of migrants at the two crossing points on the border with Russia that were reopened on a temporary basis early Thu...", - "guid": "https://abcnews.go.com/International/wireStory/finland-close-entire-border-russia-reopening-2-crossing-105665074", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T18:14:22.000Z" - }, - { - "title": " Rights groups say Greece has failed to properly investigate claims it mishandled migrant tragedy", - "link": "https://abcnews.go.com/International/wireStory/groups-greece-failed-properly-investigate-claims-mishandled-migrant-105644253", - "pubDate": "Thu, 14 Dec 2023 12:02:30 -0500", - "content": "Two leading international human rights groups are accusing Greek authorities of failing to properly investigate the circumstances around a migrant boat sinking six months ago that killed hundreds", - "contentSnippet": "Two leading international human rights groups are accusing Greek authorities of failing to properly investigate the circumstances around a migrant boat sinking six months ago that killed hundreds", - "guid": "https://abcnews.go.com/International/wireStory/groups-greece-failed-properly-investigate-claims-mishandled-migrant-105644253", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T17:02:30.000Z" - }, - { - "title": " Germany and Turkey agree to train imams who serve Germany's Turkish immigrant community in Germany", - "link": "https://abcnews.go.com/International/wireStory/germany-turkey-agree-train-imams-serve-germanys-turkish-105656453", - "pubDate": "Thu, 14 Dec 2023 09:30:28 -0500", - "content": "Germany and Turkey have agreed to gradually end the deployment of Turkish state-employed imams to Germany and instead train imams in Germany to serve the country’s large Turkish immigrant community", - "contentSnippet": "Germany and Turkey have agreed to gradually end the deployment of Turkish state-employed imams to Germany and instead train imams in Germany to serve the country\u2019s large Turkish immigrant community", - "guid": "https://abcnews.go.com/International/wireStory/germany-turkey-agree-train-imams-serve-germanys-turkish-105656453", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T14:30:28.000Z" - }, - { - "title": " Father, stepmom, uncle of 10-year-old girl found dead in UK home deny murder charges", - "link": "https://abcnews.go.com/International/wireStory/father-stepmother-uncle-10-year-girl-found-dead-105650905", - "pubDate": "Thu, 14 Dec 2023 09:22:28 -0500", - "content": "The father, stepmother and uncle of a 10-year-old girl found dead in her home in southern England have pleaded not guilty to murder charges", - "contentSnippet": "The father, stepmother and uncle of a 10-year-old girl found dead in her home in southern England have pleaded not guilty to murder charges", - "guid": "https://abcnews.go.com/International/wireStory/father-stepmother-uncle-10-year-girl-found-dead-105650905", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T14:22:28.000Z" - }, - { - "title": " Lawmaker's suspension means a possible special election and more trouble for U.K. Conservatives", - "link": "https://abcnews.go.com/International/wireStory/lawmakers-suspension-means-special-election-trouble-uk-conservatives-105651975", - "pubDate": "Thu, 14 Dec 2023 07:54:26 -0500", - "content": "A political standards watchdog says a U.K. Conservative lawmaker who offered to lobby on behalf of gambling interests should be suspended from Parliament for 35 days", - "contentSnippet": "A political standards watchdog says a U.K. Conservative lawmaker who offered to lobby on behalf of gambling interests should be suspended from Parliament for 35 days", - "guid": "https://abcnews.go.com/International/wireStory/lawmakers-suspension-means-special-election-trouble-uk-conservatives-105651975", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T12:54:26.000Z" - }, - { - "title": " Austrian court acquits Blackwater founder and 4 others over export of modified crop-spraying planes", - "link": "https://abcnews.go.com/International/wireStory/austrian-court-acquits-blackwater-founder-4-export-modified-105652359", - "pubDate": "Thu, 14 Dec 2023 07:54:02 -0500", - "content": "An Austrian court has acquitted five people, including the founder of the Blackwater security firm, who were accused of exporting two crop-spraying aircraft that were allegedly refitted for military purposes without the necessary permits", - "contentSnippet": "An Austrian court has acquitted five people, including the founder of the Blackwater security firm, who were accused of exporting two crop-spraying aircraft that were allegedly refitted for military purposes without the necessary permits", - "guid": "https://abcnews.go.com/International/wireStory/austrian-court-acquits-blackwater-founder-4-export-modified-105652359", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T12:54:02.000Z" - }, - { - "title": " Bank of England keeps its main interest rate at a 15-year high despite mounting worries about the British economy", - "link": "https://abcnews.go.com/International/wireStory/bank-england-main-interest-rate-15-year-high-105651772", - "pubDate": "Thu, 14 Dec 2023 07:37:55 -0500", - "content": "Bank of England keeps its main interest rate at a 15-year high despite mounting worries about the British economy", - "contentSnippet": "Bank of England keeps its main interest rate at a 15-year high despite mounting worries about the British economy", - "guid": "https://abcnews.go.com/International/wireStory/bank-england-main-interest-rate-15-year-high-105651772", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T12:37:55.000Z" - }, - { - "title": " Turkish minister says Somalia president's son will return to face trial over fatal highway crash", - "link": "https://abcnews.go.com/International/wireStory/turkish-minister-somalia-presidents-son-return-face-trial-105650531", - "pubDate": "Thu, 14 Dec 2023 06:09:53 -0500", - "content": "Turkey's justice minister says the son of the president of Somalia will return to Turkey in the coming days to face trial over a fatal highway crash in Istanbul", - "contentSnippet": "Turkey's justice minister says the son of the president of Somalia will return to Turkey in the coming days to face trial over a fatal highway crash in Istanbul", - "guid": "https://abcnews.go.com/International/wireStory/turkish-minister-somalia-presidents-son-return-face-trial-105650531", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T11:09:53.000Z" - }, - { - "title": " Barbie director Greta Gerwig heads jury of 2024 Cannes Festival, 1st American woman director in job", - "link": "https://abcnews.go.com/International/wireStory/barbie-director-greta-gerwig-heads-jury-2024-cannes-105650527", - "pubDate": "Thu, 14 Dec 2023 05:54:29 -0500", - "content": "Greta Gerwig, actor, writer and film director, notably for the blockbuster “Barbie,” will preside over the jury of the 77th Cannes Festival in May, the first American female film director to be named jury president, the festival announced Thursday", - "contentSnippet": "Greta Gerwig, actor, writer and film director, notably for the blockbuster \u201cBarbie,\u201d will preside over the jury of the 77th Cannes Festival in May, the first American female film director to be named jury president, the festival announced Thursday", - "guid": "https://abcnews.go.com/International/wireStory/barbie-director-greta-gerwig-heads-jury-2024-cannes-105650527", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T10:54:29.000Z" - }, - { - "title": " An Australian court overturns a woman's 2-decade-old convictions in the deaths of her 4 children", - "link": "https://abcnews.go.com/International/wireStory/australian-court-overturns-womans-2-decade-convictions-deaths-105642390", - "pubDate": "Thu, 14 Dec 2023 04:34:20 -0500", - "content": "An Australian appeals court has overturned all convictions against a woman 20 years after a jury found her guilty of killing her four children", - "contentSnippet": "An Australian appeals court has overturned all convictions against a woman 20 years after a jury found her guilty of killing her four children", - "guid": "https://abcnews.go.com/International/wireStory/australian-court-overturns-womans-2-decade-convictions-deaths-105642390", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T09:34:20.000Z" - }, - { - "title": " Dismayed by Moscow's war, Russian volunteers are joining Ukrainian ranks ", - "link": "https://abcnews.go.com/International/wireStory/dismayed-moscows-war-russian-volunteers-joining-ukrainian-ranks-105648729", - "pubDate": "Thu, 14 Dec 2023 02:58:23 -0500", - "content": "The Siberian Battalion is unique in many ways", - "contentSnippet": "The Siberian Battalion is unique in many ways", - "guid": "https://abcnews.go.com/International/wireStory/dismayed-moscows-war-russian-volunteers-joining-ukrainian-ranks-105648729", - "categories": [ - "International" - ], - "isoDate": "2023-12-14T07:58:23.000Z" - }, - { - "title": " A Thai senator linked to a Myanmar tycoon is indicted for drug trafficking and money laundering", - "link": "https://abcnews.go.com/International/wireStory/thai-senator-linked-myanmar-tycoon-indicted-drug-trafficking-105690345", - "pubDate": "Fri, 15 Dec 2023 11:14:02 -0500", - "content": "Prosecutors in Thailand have indicted a member of the country’s Senate on six charges involving narcotics trafficking, money laundering and association with a transnational criminal organization", - "contentSnippet": "Prosecutors in Thailand have indicted a member of the country\u2019s Senate on six charges involving narcotics trafficking, money laundering and association with a transnational criminal organization", - "guid": "https://abcnews.go.com/International/wireStory/thai-senator-linked-myanmar-tycoon-indicted-drug-trafficking-105690345", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T16:14:02.000Z" - }, - { - "title": " Gunmen kill 11 people in an attack on a police station in Iran, state TV says", - "link": "https://abcnews.go.com/International/wireStory/gunmen-kill-11-people-injure-attack-police-station-105682341", - "pubDate": "Fri, 15 Dec 2023 05:53:53 -0500", - "content": "Iranian state TV says suspected members of a separatist group have killed 11 people and injured several others in a nighttime attack on a police station in southeastern Iran", - "contentSnippet": "Iranian state TV says suspected members of a separatist group have killed 11 people and injured several others in a nighttime attack on a police station in southeastern Iran", - "guid": "https://abcnews.go.com/International/wireStory/gunmen-kill-11-people-injure-attack-police-station-105682341", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T10:53:53.000Z" - }, - { - "title": " Nigeria's Supreme Court reinstates terrorism charges against separatist leader", - "link": "https://abcnews.go.com/International/wireStory/nigerias-supreme-court-reinstates-terrorism-charges-separatist-leader-105693605", - "pubDate": "Fri, 15 Dec 2023 12:34:26 -0500", - "content": "Nigeria’s Supreme Court has overturned a lower court ruling dismissing terrorism charges against a popular separatist leader whose trial has been blamed for an outbreak of violence in the country’s southeast region", - "contentSnippet": "Nigeria\u2019s Supreme Court has overturned a lower court ruling dismissing terrorism charges against a popular separatist leader whose trial has been blamed for an outbreak of violence in the country\u2019s southeast region", - "guid": "https://abcnews.go.com/International/wireStory/nigerias-supreme-court-reinstates-terrorism-charges-separatist-leader-105693605", - "categories": [ - "International" - ], - "isoDate": "2023-12-15T17:34:26.000Z" - }, - { - "title": " Germany's CO2 emissions are at their lowest in 7 decades, study shows", - "link": "https://abcnews.go.com/International/wireStory/germanys-co2-emissions-lowest-7-decades-study-shows-106095531", - "pubDate": "Thu, 04 Jan 2024 05:54:29 -0500", - "content": "A study shows that carbon dioxide emissions in Germany, Europe’s biggest economy, dropped to their lowest level in seven decades", - "contentSnippet": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", - "guid": "https://abcnews.go.com/International/wireStory/germanys-co2-emissions-lowest-7-decades-study-shows-106095531", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T10:54:29.000Z" - }, - { - "title": " Scenes of loss play out across Japan's western coastline after quake kills 84, dozens still missing", - "link": "https://abcnews.go.com/International/wireStory/scenes-loss-play-japans-western-coastline-after-quake-106094356", - "pubDate": "Thu, 04 Jan 2024 05:46:29 -0500", - "content": "Rescue workers are braving the cold to save people still trapped under collapsed buildings in western Japan", - "contentSnippet": "Rescue workers are braving the cold to save people still trapped under collapsed buildings in western Japan", - "guid": "https://abcnews.go.com/International/wireStory/scenes-loss-play-japans-western-coastline-after-quake-106094356", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T10:46:29.000Z" - }, - { - "title": " South Korean opposition leader is recovering well from surgery after stabbing attack, doctor says", - "link": "https://abcnews.go.com/International/wireStory/south-korean-opposition-leader-recovering-surgery-after-stabbing-106093705", - "pubDate": "Thu, 04 Jan 2024 05:30:20 -0500", - "content": "A South Korean hospital says the country's main opposition leader is recovering well from surgery after being stabbed in the neck earlier this week", - "contentSnippet": "A South Korean hospital says the country's main opposition leader is recovering well from surgery after being stabbed in the neck earlier this week", - "guid": "https://abcnews.go.com/International/wireStory/south-korean-opposition-leader-recovering-surgery-after-stabbing-106093705", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T10:30:20.000Z" - }, - { - "title": " Israel's Supreme Court delays activation of law that makes it harder to remove Netanyahu from office", - "link": "https://abcnews.go.com/International/wireStory/israels-supreme-court-delays-activation-law-makes-harder-106075989", - "pubDate": "Thu, 04 Jan 2024 04:10:29 -0500", - "content": "Israel’s Supreme Court has ruled that a law that could make it harder to remove Prime Minister Benjamin Netanyahu from office must go into effect only after the next elections", - "contentSnippet": "Israel\u2019s Supreme Court has ruled that a law that could make it harder to remove Prime Minister Benjamin Netanyahu from office must go into effect only after the next elections", - "guid": "https://abcnews.go.com/International/wireStory/israels-supreme-court-delays-activation-law-makes-harder-106075989", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T09:10:29.000Z" - }, - { - "title": " Young voters in Bangladesh dream of a future free from political chaos as the nation votes Sunday", - "link": "https://abcnews.go.com/International/wireStory/young-voters-bangladesh-dream-future-free-political-chaos-106092094", - "pubDate": "Wed, 03 Jan 2024 23:54:21 -0500", - "content": "For decades, political battles in Bangladesh have been fought on the streets by parties led by two powerful women", - "contentSnippet": "For decades, political battles in Bangladesh have been fought on the streets by parties led by two powerful women", - "guid": "https://abcnews.go.com/International/wireStory/young-voters-bangladesh-dream-future-free-political-chaos-106092094", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T04:54:21.000Z" - }, - { - "title": " Extreme cold grips the Nordics, breaking record in Sweden for coldest January night", - "link": "https://abcnews.go.com/International/wireStory/extreme-cold-grips-nordics-breaking-25-year-record-106066642", - "pubDate": "Wed, 03 Jan 2024 23:06:31 -0500", - "content": "Temperatures have fallen below minus 40 degrees Celsius in the Nordic region for a second day in a row, with the coldest January temperature recorded in Swedish Lapland in 25 years", - "contentSnippet": "Temperatures have fallen below minus 40 degrees Celsius in the Nordic region for a second day in a row, with the coldest January temperature recorded in Swedish Lapland in 25 years", - "guid": "https://abcnews.go.com/International/wireStory/extreme-cold-grips-nordics-breaking-25-year-record-106066642", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T04:06:31.000Z" - }, - { - "title": " AP Photos: Search presses on for earthquake survivors as Japan grieves the lives lost", - "link": "https://abcnews.go.com/International/wireStory/ap-photos-search-presses-earthquake-survivors-japan-grieves-106082480", - "pubDate": "Wed, 03 Jan 2024 21:22:33 -0500", - "content": "\nRescuers searched the rubble of collapsed homes in western Japan on Wednesday in the hopes of finding survivors of this week's earthquake, which killed dozens of people.\n\nThe magnitude 7.6 temblor Monday, which has had many aftershocks, rocked the Ishikawa prefecture and the surrounding area, toppling thousands of buildings, sparking fires and setting off tsunami warnings. The quake killed at least 73 people, and 15 were listed Wednesday as officially missing.\n\nIn Suzu, a coastal city of about 15,000 that was also hit by landslides, a man wept Wednesday as a family member's body was pulled from a collapsed home. Residents gathered at an evacuation center in the city to rest, warm up and get fed.\n\nFirefighters and members of the Japanese Self Defense Force sifted through toppled homes and other buildings in the hopes of finding anyone still trapped, with the window for survival getting smaller.\n\nIn Anamizu, a town about 40 kilometers (25 miles) southwest of Suzu, drivers slowly...", - "contentSnippet": "Rescuers searched the rubble of collapsed homes in western Japan on Wednesday in the hopes of finding survivors of this week's earthquake, which killed dozens of people.\n\nThe magnitude 7.6 temblor Monday, which has had many aftershocks, rocked the Ishikawa prefecture and the surrounding area, toppling thousands of buildings, sparking fires and setting off tsunami warnings. The quake killed at least 73 people, and 15 were listed Wednesday as officially missing.\n\nIn Suzu, a coastal city of about 15,000 that was also hit by landslides, a man wept Wednesday as a family member's body was pulled from a collapsed home. Residents gathered at an evacuation center in the city to rest, warm up and get fed.\n\nFirefighters and members of the Japanese Self Defense Force sifted through toppled homes and other buildings in the hopes of finding anyone still trapped, with the window for survival getting smaller.\n\nIn Anamizu, a town about 40 kilometers (25 miles) southwest of Suzu, drivers slowly...", - "guid": "https://abcnews.go.com/International/wireStory/ap-photos-search-presses-earthquake-survivors-japan-grieves-106082480", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T02:22:33.000Z" - }, - { - "title": " Ukraine trains its sights on Russian border region, seeking to stir up discontent", - "link": "https://abcnews.go.com/International/wireStory/ukraine-trains-sights-russian-border-region-seeking-stir-106066263", - "pubDate": "Wed, 03 Jan 2024 18:26:26 -0500", - "content": "Russia and Ukraine have exchanged hundreds of prisoners of war in the biggest single release of captives since Russia’s full-scale invasion in February 2022", - "contentSnippet": "Russia and Ukraine have exchanged hundreds of prisoners of war in the biggest single release of captives since Russia\u2019s full-scale invasion in February 2022", - "guid": "https://abcnews.go.com/International/wireStory/ukraine-trains-sights-russian-border-region-seeking-stir-106066263", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T23:26:26.000Z" - }, - { - "title": " Live updates | Fighting rages in southern Gaza and fears grow the war may spread in the region", - "link": "https://abcnews.go.com/International/wireStory/live-updates-fighting-rages-southern-gaza-fears-grow-106066917", - "pubDate": "Wed, 03 Jan 2024 18:10:19 -0500", - "content": "Heavy fighting is raging in central and southern Gaza as fears mount of a regional escalation following a strike in Beirut that killed one of the top Hamas leaders", - "contentSnippet": "Heavy fighting is raging in central and southern Gaza as fears mount of a regional escalation following a strike in Beirut that killed one of the top Hamas leaders", - "guid": "https://abcnews.go.com/International/wireStory/live-updates-fighting-rages-southern-gaza-fears-grow-106066917", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T23:10:19.000Z" - }, - { - "title": " Argentina arrests three men suspected of belonging to a terror cell", - "link": "https://abcnews.go.com/International/wireStory/argentina-arrests-men-suspected-belonging-terror-cell-106082870", - "pubDate": "Wed, 03 Jan 2024 18:10:00 -0500", - "content": "Argentina has arrested three men under suspicion of belonging to a terror cell as the country hosts a major Jewish sporting event", - "contentSnippet": "Argentina has arrested three men under suspicion of belonging to a terror cell as the country hosts a major Jewish sporting event", - "guid": "https://abcnews.go.com/International/wireStory/argentina-arrests-men-suspected-belonging-terror-cell-106082870", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T23:10:00.000Z" - }, - { - "title": " Mexican authorities search for 31 migrants abducted near the Texas border", - "link": "https://abcnews.go.com/International/wireStory/mexican-authorities-search-31-migrants-abducted-texas-border-106077719", - "pubDate": "Wed, 03 Jan 2024 16:18:08 -0500", - "content": "Mexican authorities say they have rescued 31 migrants who were abducted by armed men over the weekend near the border with Texas", - "contentSnippet": "Mexican authorities say they have rescued 31 migrants who were abducted by armed men over the weekend near the border with Texas", - "guid": "https://abcnews.go.com/International/wireStory/mexican-authorities-search-31-migrants-abducted-texas-border-106077719", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T21:18:08.000Z" - }, - { - "title": " What\u2019s known so far about the deadly explosions in Iran", - "link": "https://abcnews.go.com/International/wireStory/whats-remains-unclear-deadly-explosions-iran-106077632", - "pubDate": "Wed, 03 Jan 2024 16:10:26 -0500", - "content": "Iranian officials said that at least 95 people were killed Wednesday after back-to-back explosions at an event commemorating the 2020 slaying of a prominent general by the United States", - "contentSnippet": "Iranian officials said that at least 95 people were killed Wednesday after back-to-back explosions at an event commemorating the 2020 slaying of a prominent general by the United States", - "guid": "https://abcnews.go.com/International/wireStory/whats-remains-unclear-deadly-explosions-iran-106077632", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T21:10:26.000Z" - }, - { - "title": " Sierra Leone\u2019s former president charged with treason for alleged involvement in failed coup attempt", - "link": "https://abcnews.go.com/International/wireStory/sierra-leones-former-president-charged-treason-alleged-involvement-106077896", - "pubDate": "Wed, 03 Jan 2024 12:58:30 -0500", - "content": "Sierra Leone’s government says former President Ernest Bai Koroma has been charged with treason for his alleged involvement in a failed coup attempt in November", - "contentSnippet": "Sierra Leone\u2019s government says former President Ernest Bai Koroma has been charged with treason for his alleged involvement in a failed coup attempt in November", - "guid": "https://abcnews.go.com/International/wireStory/sierra-leones-former-president-charged-treason-alleged-involvement-106077896", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T17:58:30.000Z" - }, - { - "title": " Russia and Ukraine have exchanged prisoners of war under a deal sponsored by the United Arab Emirates.", - "link": "https://abcnews.go.com/International/wireStory/russia-ukraine-exchanged-prisoners-war-deal-sponsored-united-106075171", - "pubDate": "Wed, 03 Jan 2024 12:09:57 -0500", - "content": "Russia and Ukraine have exchanged prisoners of war under a deal sponsored by the United Arab Emirates.", - "contentSnippet": "Russia and Ukraine have exchanged prisoners of war under a deal sponsored by the United Arab Emirates.", - "guid": "https://abcnews.go.com/International/wireStory/russia-ukraine-exchanged-prisoners-war-deal-sponsored-united-106075171", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T17:09:57.000Z" - }, - { - "title": " Japan police arrest a knife-wielding woman inside train after 4 reported injured", - "link": "https://abcnews.go.com/International/wireStory/japan-police-arrest-knife-wielding-woman-inside-train-106074635", - "pubDate": "Wed, 03 Jan 2024 12:01:46 -0500", - "content": "Police in Japan have arrested a woman who wielded a knife and injured four passengers inside a train that stopped at Tokyo’s electronic town of Akihabara", - "contentSnippet": "Police in Japan have arrested a woman who wielded a knife and injured four passengers inside a train that stopped at Tokyo\u2019s electronic town of Akihabara", - "guid": "https://abcnews.go.com/International/wireStory/japan-police-arrest-knife-wielding-woman-inside-train-106074635", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T17:01:46.000Z" - }, - { - "title": " NATO to help buy 1,000 Patriot missiles to defend allies", - "link": "https://abcnews.go.com/International/wireStory/nato-buy-1000-patriot-missiles-defend-allies-russia-106070132", - "pubDate": "Wed, 03 Jan 2024 10:43:28 -0500", - "content": "NATO says it will help buy up to 1,000 Patriot missiles so allies can better protect their territory as Russia ramps up its air assault on Ukraine", - "contentSnippet": "NATO says it will help buy up to 1,000 Patriot missiles so allies can better protect their territory as Russia ramps up its air assault on Ukraine", - "guid": "https://abcnews.go.com/International/wireStory/nato-buy-1000-patriot-missiles-defend-allies-russia-106070132", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T15:43:28.000Z" - }, - { - "title": " Prosecutors allege democracy publisher Jimmy Lai urged protests, sanctions", - "link": "https://abcnews.go.com/International/wireStory/hong-kong-prosecutors-allege-democracy-publisher-jimmy-lai-106066453", - "pubDate": "Wed, 03 Jan 2024 09:22:31 -0500", - "content": "Prosecutors have alleged that Hong Kong activist and publisher Jimmy Lai had encouraged the city’s residents to protest and urged the U.S. to take action against the Chinese authorities in Beijing", - "contentSnippet": "Prosecutors have alleged that Hong Kong activist and publisher Jimmy Lai had encouraged the city\u2019s residents to protest and urged the U.S. to take action against the Chinese authorities in Beijing", - "guid": "https://abcnews.go.com/International/wireStory/hong-kong-prosecutors-allege-democracy-publisher-jimmy-lai-106066453", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T14:22:31.000Z" - }, - { - "title": " Taiwan reports China sent 4 suspected spy balloons over the island", - "link": "https://abcnews.go.com/International/wireStory/taiwan-reports-china-4-suspected-spy-balloons-island-106069654", - "pubDate": "Wed, 03 Jan 2024 09:14:33 -0500", - "content": "Taiwan’s Defense Ministry says China sent four balloons over the island, three of which passed near to a key air force base", - "contentSnippet": "Taiwan\u2019s Defense Ministry says China sent four balloons over the island, three of which passed near to a key air force base", - "guid": "https://abcnews.go.com/International/wireStory/taiwan-reports-china-4-suspected-spy-balloons-island-106069654", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T14:14:33.000Z" - }, - { - "title": " Iranian deputy governor calls explosions that killed over 20 people at ceremony for slain general a 'terroristic' attack", - "link": "https://abcnews.go.com/International/wireStory/iranian-deputy-governor-calls-explosions-killed-20-people-106069025", - "pubDate": "Wed, 03 Jan 2024 08:34:12 -0500", - "content": "Iranian deputy governor calls explosions that killed over 20 people at ceremony for slain general a 'terroristic' attack", - "contentSnippet": "Iranian deputy governor calls explosions that killed over 20 people at ceremony for slain general a 'terroristic' attack", - "guid": "https://abcnews.go.com/International/wireStory/iranian-deputy-governor-calls-explosions-killed-20-people-106069025", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T13:34:12.000Z" - }, - { - "title": " Ex-Pakistani Prime Minister Khan indicted for allegedly insulting election officials", - "link": "https://abcnews.go.com/International/wireStory/pakistani-court-indicted-former-leader-imran-khan-allegedly-106069116", - "pubDate": "Wed, 03 Jan 2024 08:28:21 -0500", - "content": "A lawyer says a Pakistani court has indicted former Prime Minister Imran Khan in a contempt case for allegedly insulting election officials", - "contentSnippet": "A lawyer says a Pakistani court has indicted former Prime Minister Imran Khan in a contempt case for allegedly insulting election officials", - "guid": "https://abcnews.go.com/International/wireStory/pakistani-court-indicted-former-leader-imran-khan-allegedly-106069116", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T13:28:21.000Z" - }, - { - "title": " At least 20 people killed in blasts at ceremony honoring slain Iranian general, state-run news agency says", - "link": "https://abcnews.go.com/International/wireStory/20-people-killed-blasts-ceremony-honoring-slain-iranian-106068540", - "pubDate": "Wed, 03 Jan 2024 07:54:04 -0500", - "content": "At least 20 people killed in blasts at ceremony honoring slain Iranian general, state-run news agency says", - "contentSnippet": "At least 20 people killed in blasts at ceremony honoring slain Iranian general, state-run news agency says", - "guid": "https://abcnews.go.com/International/wireStory/20-people-killed-blasts-ceremony-honoring-slain-iranian-106068540", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T12:54:04.000Z" - }, - { - "title": " Sheikh Hasina once fought for democracy in Bangladesh. Her critics say she now threatens it", - "link": "https://abcnews.go.com/International/wireStory/sheikh-hasina-fought-democracy-bangladesh-critics-now-threatens-106063543", - "pubDate": "Wed, 03 Jan 2024 07:38:21 -0500", - "content": "The elections in Bangladesh are all about one person: Prime Minister Sheikh Hasina", - "contentSnippet": "The elections in Bangladesh are all about one person: Prime Minister Sheikh Hasina", - "guid": "https://abcnews.go.com/International/wireStory/sheikh-hasina-fought-democracy-bangladesh-critics-now-threatens-106063543", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T12:38:21.000Z" - }, - { - "title": " New Year\u2019s Day quake in Japan revives the trauma of 2011 triple disasters", - "link": "https://abcnews.go.com/International/wireStory/new-years-day-quake-japan-revives-trauma-2011-106065854", - "pubDate": "Wed, 03 Jan 2024 06:34:33 -0500", - "content": "The powerful earthquake that shattered the peace of New Year’s Day in central Japan did not spur the kind of tsunamis that scoured the northeastern Pacific coast in 2011", - "contentSnippet": "The powerful earthquake that shattered the peace of New Year\u2019s Day in central Japan did not spur the kind of tsunamis that scoured the northeastern Pacific coast in 2011", - "guid": "https://abcnews.go.com/International/wireStory/new-years-day-quake-japan-revives-trauma-2011-106065854", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T11:34:33.000Z" - }, - { - "title": " EU targets world's biggest diamond miner as part of Russia war sanctions", - "link": "https://abcnews.go.com/International/wireStory/eu-targets-worlds-biggest-diamond-miner-part-russia-106066915", - "pubDate": "Wed, 03 Jan 2024 06:02:35 -0500", - "content": "The European Union has imposed sanctions on the world’s biggest diamond mining company and its chief executive officer as part of what it says is its “unwavering commitment” to Ukraine in the war against Russia", - "contentSnippet": "The European Union has imposed sanctions on the world\u2019s biggest diamond mining company and its chief executive officer as part of what it says is its \u201cunwavering commitment\u201d to Ukraine in the war against Russia", - "guid": "https://abcnews.go.com/International/wireStory/eu-targets-worlds-biggest-diamond-miner-part-russia-106066915", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T11:02:35.000Z" - }, - { - "title": " Australia launches inquiry into why Cabinet documents relating to Iraq war remain secret", - "link": "https://abcnews.go.com/International/wireStory/australia-launches-inquiry-cabinet-documents-relating-iraq-war-106061481", - "pubDate": "Tue, 02 Jan 2024 22:18:33 -0500", - "content": "Prime Minister Anthony Albanese has ordered an inquiry into why 20-year-old Cabinet documents relating to Australia joining the United States-led Iraq invasion remain secret, saying Australians have a right to know why their country went to war in 2003", - "contentSnippet": "Prime Minister Anthony Albanese has ordered an inquiry into why 20-year-old Cabinet documents relating to Australia joining the United States-led Iraq invasion remain secret, saying Australians have a right to know why their country went to war in 2003", - "guid": "https://abcnews.go.com/International/wireStory/australia-launches-inquiry-cabinet-documents-relating-iraq-war-106061481", - "categories": [ - "International" - ], - "isoDate": "2024-01-03T03:18:33.000Z" - }, - { - "title": " Strike kills 12 people, mostly children, in Gaza area declared safe zone by Israel", - "link": "https://abcnews.go.com/International/wireStory/strike-kills-12-people-children-gaza-area-declared-106106354", - "pubDate": "Thu, 04 Jan 2024 12:10:27 -0500", - "content": "Palestinian hospital officials say an Israeli strike hit a home in an area of southern Gaza that the military had declared a safe zone, killing at least 12 people, almost all children", - "contentSnippet": "Palestinian hospital officials say an Israeli strike hit a home in an area of southern Gaza that the military had declared a safe zone, killing at least 12 people, almost all children", - "guid": "https://abcnews.go.com/International/wireStory/strike-kills-12-people-children-gaza-area-declared-106106354", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T17:10:27.000Z" - }, - { - "title": " Russia and Ukraine exchange long-range attacks as their front-line forces remain bogged down", - "link": "https://abcnews.go.com/International/wireStory/russia-ukraine-exchange-long-range-attacks-front-line-106105489", - "pubDate": "Thu, 04 Jan 2024 11:54:37 -0500", - "content": "Russia’s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", - "contentSnippet": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", - "guid": "https://abcnews.go.com/International/wireStory/russia-ukraine-exchange-long-range-attacks-front-line-106105489", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T16:54:37.000Z" - }, - { - "title": " Italian Premier Meloni says curbing migrant arrivals from Africa is about investment, not charity", - "link": "https://abcnews.go.com/International/wireStory/italian-premier-meloni-curbing-migrant-arrivals-africa-investment-106099808", - "pubDate": "Thu, 04 Jan 2024 11:54:33 -0500", - "content": "Italian Premier Giorgia Meloni has told her European Union partners that curbing migration flows from African countries has less to do with offers of charity than strong partnerships coupled with strategic investments in those nations", - "contentSnippet": "Italian Premier Giorgia Meloni has told her European Union partners that curbing migration flows from African countries has less to do with offers of charity than strong partnerships coupled with strategic investments in those nations", - "guid": "https://abcnews.go.com/International/wireStory/italian-premier-meloni-curbing-migrant-arrivals-africa-investment-106099808", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T16:54:33.000Z" - }, - { - "title": " The key question about fiery crash at Tokyo airport: Did one or both planes have OK to use runway?", - "link": "https://abcnews.go.com/International/wireStory/key-question-fiery-crash-tokyo-airport-planes-runway-106102926", - "pubDate": "Thu, 04 Jan 2024 11:54:22 -0500", - "content": "Passengers on Japan Airlines Flight 516 were buckled up as their pilot made a final approach to Tokyo’s Haneda Airport", - "contentSnippet": "Passengers on Japan Airlines Flight 516 were buckled up as their pilot made a final approach to Tokyo\u2019s Haneda Airport", - "guid": "https://abcnews.go.com/International/wireStory/key-question-fiery-crash-tokyo-airport-planes-runway-106102926", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T16:54:22.000Z" - }, - { - "title": " Live updates | Hamas loses a leader in Lebanon but holds on in Gaza", - "link": "https://abcnews.go.com/International/wireStory/live-updates-hamas-loses-leader-lebanon-holds-gaza-106104237", - "pubDate": "Thu, 04 Jan 2024 11:30:22 -0500", - "content": "Israel appears far from achieving its goals of crushing Hamas and freeing an estimated 129 hostages still held in Gaza nearly three months after the group’s surprise cross-border attack and the Israeli government’s declaration of war", - "contentSnippet": "Israel appears far from achieving its goals of crushing Hamas and freeing an estimated 129 hostages still held in Gaza nearly three months after the group\u2019s surprise cross-border attack and the Israeli government\u2019s declaration of war", - "guid": "https://abcnews.go.com/International/wireStory/live-updates-hamas-loses-leader-lebanon-holds-gaza-106104237", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T16:30:22.000Z" - }, - { - "title": " Vatican: No heresy in allowing blessings for same-sex couples after bishops push back", - "link": "https://abcnews.go.com/International/wireStory/vatican-heresy-allowing-blessings-same-sex-couples-after-106099131", - "pubDate": "Thu, 04 Jan 2024 10:57:54 -0500", - "content": "The Vatican is insisting there is nothing heretical in the recent move by Pope Francis to allow priests to bless same-sex couples", - "contentSnippet": "The Vatican is insisting there is nothing heretical in the recent move by Pope Francis to allow priests to bless same-sex couples", - "guid": "https://abcnews.go.com/International/wireStory/vatican-heresy-allowing-blessings-same-sex-couples-after-106099131", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T15:57:54.000Z" - }, - { - "title": " Thousands of opposition activists languish in prison as Bangladesh gears up for national election", - "link": "https://abcnews.go.com/International/wireStory/thousands-opposition-activists-languish-prison-bangladesh-gears-national-106128472", - "pubDate": "Fri, 05 Jan 2024 08:58:30 -0500", - "content": "In the months leading to Bangladesh’s national election on Sunday, thousands of opposition supporters and politicians have been arrested", - "contentSnippet": "In the months leading to Bangladesh\u2019s national election on Sunday, thousands of opposition supporters and politicians have been arrested", - "guid": "https://abcnews.go.com/International/wireStory/thousands-opposition-activists-languish-prison-bangladesh-gears-national-106128472", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T13:58:30.000Z" - }, - { - "title": " AP Week in Pictures: Latin America and Caribbean", - "link": "https://abcnews.go.com/International/wireStory/ap-week-pictures-latin-america-caribbean-106122159", - "pubDate": "Fri, 05 Jan 2024 08:58:28 -0500", - "content": "\nDec. 29 - Jan. 3, 2024\n\nThis photo gallery highlights some of the most compelling images made or published by Associated Press photographers in Latin America and the Caribbean.\n\nVenezuelans celebrated New Year's Eve outdoors in public squares. Brazilians watched fireworks glistening over the bay in Rio de Janeiro and Ecuadorians dressed up in devil costumes to dance out the old year and bring in 2024. The Brazilian city of Sao Paulo hosted its annual, 15-kilometer New Year's Eve race.\n\nFrench highliner Nathan Paulin wowed spectators with his tightrope performance in Santiago, kicking off Chile's largest performing arts festival. In Mexico, the president inaugurated a “mega-pharmacy" to help end a medicine supply issue for hospitals, and the Zapatista National Liberation Army (EZLN) marked the 30th anniversary of their uprising.\n\nThe selection was curated by Senior Photo Editor Leslie Mazoch in Mexico City.\n\n___\n\nFollow AP visual journalism:\n\nAP Images blog:...", - "contentSnippet": "Dec. 29 - Jan. 3, 2024\n\nThis photo gallery highlights some of the most compelling images made or published by Associated Press photographers in Latin America and the Caribbean.\n\nVenezuelans celebrated New Year's Eve outdoors in public squares. Brazilians watched fireworks glistening over the bay in Rio de Janeiro and Ecuadorians dressed up in devil costumes to dance out the old year and bring in 2024. The Brazilian city of Sao Paulo hosted its annual, 15-kilometer New Year's Eve race.\n\nFrench highliner Nathan Paulin wowed spectators with his tightrope performance in Santiago, kicking off Chile's largest performing arts festival. In Mexico, the president inaugurated a \u201cmega-pharmacy\" to help end a medicine supply issue for hospitals, and the Zapatista National Liberation Army (EZLN) marked the 30th anniversary of their uprising.\n\nThe selection was curated by Senior Photo Editor Leslie Mazoch in Mexico City.\n\n___\n\nFollow AP visual journalism:\n\nAP Images blog:...", - "guid": "https://abcnews.go.com/International/wireStory/ap-week-pictures-latin-america-caribbean-106122159", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T13:58:28.000Z" - }, - { - "title": " Ukraine unleashes more drones and missiles at Russian areas", - "link": "https://abcnews.go.com/International/wireStory/ukraine-unleashes-drones-missiles-russian-areas-part-new-106126514", - "pubDate": "Fri, 05 Jan 2024 08:58:18 -0500", - "content": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine’s borders", - "contentSnippet": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", - "guid": "https://abcnews.go.com/International/wireStory/ukraine-unleashes-drones-missiles-russian-areas-part-new-106126514", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T13:58:18.000Z" - }, - { - "title": " Live updates | 6 killed overnight in an apparent Israeli airstrike on a home in southern Gaza", - "link": "https://abcnews.go.com/International/wireStory/live-updates-hostage-held-gaza-dies-captivity-southern-106124918", - "pubDate": "Fri, 05 Jan 2024 08:42:36 -0500", - "content": "At least six people have been killed in an apparent Israeli airstrike on a home in the southern Gaza city of Rafah overnight", - "contentSnippet": "At least six people have been killed in an apparent Israeli airstrike on a home in the southern Gaza city of Rafah overnight", - "guid": "https://abcnews.go.com/International/wireStory/live-updates-hostage-held-gaza-dies-captivity-southern-106124918", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T13:42:36.000Z" - }, - { - "title": " PepsiCo products are being pulled from some Carrefour grocery stores in Europe over price hikes", - "link": "https://abcnews.go.com/International/wireStory/pepsico-products-pulled-carrefour-grocery-stores-europe-price-106125530", - "pubDate": "Fri, 05 Jan 2024 08:34:21 -0500", - "content": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay’s potato chips, Quaker Oats, Lipton tea and its namesake soda", - "contentSnippet": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", - "guid": "https://abcnews.go.com/International/wireStory/pepsico-products-pulled-carrefour-grocery-stores-europe-price-106125530", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T13:34:21.000Z" - }, - { - "title": " 4 patients die after a fire breaks out at a hospital in northern Germany", - "link": "https://abcnews.go.com/International/wireStory/4-patients-die-after-fire-breaks-hospital-northern-106124736", - "pubDate": "Fri, 05 Jan 2024 08:31:32 -0500", - "content": "Police say four people have died after a fire broke out at a hospital in northern Germany and spread to several patients’ rooms", - "contentSnippet": "Police say four people have died after a fire broke out at a hospital in northern Germany and spread to several patients\u2019 rooms", - "guid": "https://abcnews.go.com/International/wireStory/4-patients-die-after-fire-breaks-hospital-northern-106124736", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T13:31:32.000Z" - }, - { - "title": " Europe's inflation is up after months of decline. Could it delay interest rate cuts?", - "link": "https://abcnews.go.com/International/wireStory/europes-inflation-after-months-decline-longer-wait-interest-106124825", - "pubDate": "Fri, 05 Jan 2024 08:30:17 -0500", - "content": "Inflation is on the rebound in Europe", - "contentSnippet": "Inflation is on the rebound in Europe", - "guid": "https://abcnews.go.com/International/wireStory/europes-inflation-after-months-decline-longer-wait-interest-106124825", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T13:30:17.000Z" - }, - { - "title": " Nepal bars citizens from going to Russia or Ukraine for work", - "link": "https://abcnews.go.com/International/wireStory/nepal-bars-citizens-russia-ukraine-work-recruited-fighters-106124536", - "pubDate": "Fri, 05 Jan 2024 08:18:03 -0500", - "content": "Nepal’s government has banned citizens from going to Russia and Ukraine for employment, saying many have been recruited by the Russian army to fight in the conflict there", - "contentSnippet": "Nepal\u2019s government has banned citizens from going to Russia and Ukraine for employment, saying many have been recruited by the Russian army to fight in the conflict there", - "guid": "https://abcnews.go.com/International/wireStory/nepal-bars-citizens-russia-ukraine-work-recruited-fighters-106124536", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T13:18:03.000Z" - }, - { - "title": " A competition Chinese chess player says he's going to court after losing his title over a defecation", - "link": "https://abcnews.go.com/International/wireStory/competition-chinese-chess-player-court-after-losing-title-106125112", - "pubDate": "Fri, 05 Jan 2024 08:10:10 -0500", - "content": "A competitor in Chinese chess says he has sued the national association in China for mental distress after he was stripped of a title for drinking alcohol and defecating in the bathtub of his hotel room at a recent competition", - "contentSnippet": "A competitor in Chinese chess says he has sued the national association in China for mental distress after he was stripped of a title for drinking alcohol and defecating in the bathtub of his hotel room at a recent competition", - "guid": "https://abcnews.go.com/International/wireStory/competition-chinese-chess-player-court-after-losing-title-106125112", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T13:10:10.000Z" - }, - { - "title": " Russia approves 2 candidates for ballot against Putin in March election", - "link": "https://abcnews.go.com/International/wireStory/russia-approves-2-candidates-ballot-putin-march-election-106124962", - "pubDate": "Fri, 05 Jan 2024 07:56:18 -0500", - "content": "Russia’s national elections commission on Friday registered the first two candidates who will compete with President Vladimir Putin in the March election that Putin is all but certain to win", - "contentSnippet": "Russia\u2019s national elections commission on Friday registered the first two candidates who will compete with President Vladimir Putin in the March election that Putin is all but certain to win", - "guid": "https://abcnews.go.com/International/wireStory/russia-approves-2-candidates-ballot-putin-march-election-106124962", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T12:56:18.000Z" - }, - { - "title": " Sri Lanka declares moratorium on research ships for a year amid Indian concerns over Chinese vessels", - "link": "https://abcnews.go.com/International/wireStory/sri-lanka-declares-moratorium-research-ships-year-amid-106125629", - "pubDate": "Fri, 05 Jan 2024 07:21:55 -0500", - "content": "Sri Lanka has declared a moratorium on foreign research ships entering its waters for a year amid concerns from India over Chinese research vessels docking in its neighborhood", - "contentSnippet": "Sri Lanka has declared a moratorium on foreign research ships entering its waters for a year amid concerns from India over Chinese research vessels docking in its neighborhood", - "guid": "https://abcnews.go.com/International/wireStory/sri-lanka-declares-moratorium-research-ships-year-amid-106125629", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T12:21:55.000Z" - }, - { - "title": " Japanese air safety experts search for voice data from plane debris", - "link": "https://abcnews.go.com/International/wireStory/japanese-air-safety-experts-search-voice-data-plane-106124328", - "pubDate": "Fri, 05 Jan 2024 06:58:18 -0500", - "content": "Transport safety officials are searching for the voice recorder from a Japan Airlines airliner that caught fire after a collision with a coast guard plane", - "contentSnippet": "Transport safety officials are searching for the voice recorder from a Japan Airlines airliner that caught fire after a collision with a coast guard plane", - "guid": "https://abcnews.go.com/International/wireStory/japanese-air-safety-experts-search-voice-data-plane-106124328", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T11:58:18.000Z" - }, - { - "title": " AP Week in Pictures: Asia", - "link": "https://abcnews.go.com/International/wireStory/ap-week-pictures-asia-106121709", - "pubDate": "Thu, 04 Jan 2024 23:38:29 -0500", - "content": "\nDec. 29, 2023-Jan. 4, 2024\n\nThis photo gallery highlights some of the most compelling images in the Asia-Pacific region made or published by The Associated Press in the past week.\n\nA series of powerful earthquakes hit western Japan, damaging thousands of buildings, vehicles and boats. A Japan Airlines plane catches fire on the runway of Haneda airport after colliding with a Japanese coast guard aircraft. New Year's celebrations are held in various countries in Asia.\n\nThe selection was curated by AP photo editor Masayo Yoshida in Tokyo.\n\n___\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on X: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", - "contentSnippet": "Dec. 29, 2023-Jan. 4, 2024\n\nThis photo gallery highlights some of the most compelling images in the Asia-Pacific region made or published by The Associated Press in the past week.\n\nA series of powerful earthquakes hit western Japan, damaging thousands of buildings, vehicles and boats. A Japan Airlines plane catches fire on the runway of Haneda airport after colliding with a Japanese coast guard aircraft. New Year's celebrations are held in various countries in Asia.\n\nThe selection was curated by AP photo editor Masayo Yoshida in Tokyo.\n\n___\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on X: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", - "guid": "https://abcnews.go.com/International/wireStory/ap-week-pictures-asia-106121709", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T04:38:29.000Z" - }, - { - "title": " Sudan paramilitary leader says he's committed to cease-fire, but no progress on proposed peace talks", - "link": "https://abcnews.go.com/International/wireStory/sudan-paramilitary-leader-committed-cease-fire-progress-proposed-106115130", - "pubDate": "Thu, 04 Jan 2024 23:06:43 -0500", - "content": "Sudanese paramilitary leader Gen. Mohammed Hamdan Dagalo says he is committed to a cease-fire to end the devastating war that has wrecked his country", - "contentSnippet": "Sudanese paramilitary leader Gen. Mohammed Hamdan Dagalo says he is committed to a cease-fire to end the devastating war that has wrecked his country", - "guid": "https://abcnews.go.com/International/wireStory/sudan-paramilitary-leader-committed-cease-fire-progress-proposed-106115130", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T04:06:43.000Z" - }, - { - "title": " Former Guatemalan president released on bond; leaves prison for first time since 2015", - "link": "https://abcnews.go.com/International/wireStory/guatemalas-former-president-released-bond-leaves-prison-time-106116508", - "pubDate": "Thu, 04 Jan 2024 21:38:29 -0500", - "content": "Former Guatemalan President Otto Pérez Molina was released from prison after posting bond of more than $10.3 million quetzales ($1.3 million), according to his lawyer", - "contentSnippet": "Former Guatemalan President Otto P\u00e9rez Molina was released from prison after posting bond of more than $10.3 million quetzales ($1.3 million), according to his lawyer", - "guid": "https://abcnews.go.com/International/wireStory/guatemalas-former-president-released-bond-leaves-prison-time-106116508", - "categories": [ - "International" - ], - "isoDate": "2024-01-05T02:38:29.000Z" - }, - { - "title": " Putin speeds up a citizenship path for foreigners who enlist in the Russian military", - "link": "https://abcnews.go.com/International/wireStory/putin-speeds-citizenship-path-foreigners-enlist-russian-military-106107967", - "pubDate": "Thu, 04 Jan 2024 13:30:23 -0500", - "content": "President Vladimir Putin has signed a decree that speeds up a path to Russian citizenship for foreigners who enlist in the country’s military amid the 22-month-old war in Ukraine", - "contentSnippet": "President Vladimir Putin has signed a decree that speeds up a path to Russian citizenship for foreigners who enlist in the country\u2019s military amid the 22-month-old war in Ukraine", - "guid": "https://abcnews.go.com/International/wireStory/putin-speeds-citizenship-path-foreigners-enlist-russian-military-106107967", - "categories": [ - "International" - ], - "isoDate": "2024-01-04T18:30:23.000Z" - }, - { - "title": " Serbia says it is disappointed with possible US sale of anti-tank missiles to Kosovo", - "link": "https://abcnews.go.com/International/wireStory/serbia-disappointed-kosovos-request-buy-anti-tank-missiles-106299194", - "pubDate": "Thu, 11 Jan 2024 16:10:35 -0500", - "content": "The U.S. ambassador to Serbia says the United States has received Kosovo’s request for the purchase of Javelin anti-tank missiles", - "contentSnippet": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", - "guid": "https://abcnews.go.com/International/wireStory/serbia-disappointed-kosovos-request-buy-anti-tank-missiles-106299194", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T21:10:35.000Z" - }, - { - "title": " Nicaragua opponent exiled in Costa Rica wounded in shooting", - "link": "https://abcnews.go.com/International/wireStory/nicaragua-opponent-exiled-costa-rica-wounded-shooting-106304846", - "pubDate": "Thu, 11 Jan 2024 16:09:51 -0500", - "content": "Costa Rican officials say that a member of the Nicaraguan opposition has been shot seven times and is in serious condition in Costa Rica", - "contentSnippet": "Costa Rican officials say that a member of the Nicaraguan opposition has been shot seven times and is in serious condition in Costa Rica", - "guid": "https://abcnews.go.com/International/wireStory/nicaragua-opponent-exiled-costa-rica-wounded-shooting-106304846", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T21:09:51.000Z" - }, - { - "title": " France's new government announced with only one major change at the foreign ministry", - "link": "https://abcnews.go.com/International/wireStory/frances-new-government-announced-major-change-foreign-ministry-106302458", - "pubDate": "Thu, 11 Jan 2024 16:02:22 -0500", - "content": "The new government of French Prime Minister Gabriel Attal has been announced with only one major change at the foreign ministry, while most high-profile Cabinet members remained unchanged", - "contentSnippet": "The new government of French Prime Minister Gabriel Attal has been announced with only one major change at the foreign ministry, while most high-profile Cabinet members remained unchanged", - "guid": "https://abcnews.go.com/International/wireStory/frances-new-government-announced-major-change-foreign-ministry-106302458", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T21:02:22.000Z" - }, - { - "title": " UN court opens hearings on South Africa's allegation that Israel committing genocide", - "link": "https://abcnews.go.com/International/wireStory/top-court-opens-hearings-south-africas-allegation-israel-106282816", - "pubDate": "Thu, 11 Jan 2024 15:22:37 -0500", - "content": "In a case that strikes at the heart of Israel’s national identity, South Africa has formally accused the country of committing genocide against Palestinians and pleaded with the United Nations’ top court to order a halt to Israeli military operations i...", - "contentSnippet": "In a case that strikes at the heart of Israel\u2019s national identity, South Africa has formally accused the country of committing genocide against Palestinians and pleaded with the United Nations\u2019 top court to order a halt to Israeli military operations i...", - "guid": "https://abcnews.go.com/International/wireStory/top-court-opens-hearings-south-africas-allegation-israel-106282816", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T20:22:37.000Z" - }, - { - "title": " Rome opens new archaeological park and museum in shadow of Colosseum", - "link": "https://abcnews.go.com/International/wireStory/rome-opens-new-archaeological-park-museum-shadow-colosseum-106302096", - "pubDate": "Thu, 11 Jan 2024 14:50:31 -0500", - "content": "Rome authorities have inaugurated a new archaeological park and museum in the shadow of the Colosseum that features an original marble map of Ancient Rome that visitors can literally walk over", - "contentSnippet": "Rome authorities have inaugurated a new archaeological park and museum in the shadow of the Colosseum that features an original marble map of Ancient Rome that visitors can literally walk over", - "guid": "https://abcnews.go.com/International/wireStory/rome-opens-new-archaeological-park-museum-shadow-colosseum-106302096", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T19:50:31.000Z" - }, - { - "title": " Live updates | UN top court hears genocide allegation as Israel focuses fighting in central Gaza", - "link": "https://abcnews.go.com/International/wireStory/live-updates-top-court-hear-genocide-allegation-israel-106285071", - "pubDate": "Thu, 11 Jan 2024 13:30:30 -0500", - "content": "The United Nations' top court has started hearings over allegations that Israel's war with Hamas amounts to genocide, which Israel strongly denies", - "contentSnippet": "The United Nations' top court has started hearings over allegations that Israel's war with Hamas amounts to genocide, which Israel strongly denies", - "guid": "https://abcnews.go.com/International/wireStory/live-updates-top-court-hear-genocide-allegation-israel-106285071", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T18:30:30.000Z" - }, - { - "title": " Tons of trash clogs a river in Bosnia. It's a seasonal problem that activists want an end to", - "link": "https://abcnews.go.com/International/wireStory/tons-trash-clogs-river-bosnia-seasonal-problem-activists-106291299", - "pubDate": "Thu, 11 Jan 2024 10:26:31 -0500", - "content": "Tons of garbage floats down a river at least twice a year and ends up near the eastern Bosnian town of Visegrad behind a barrier installed by a local hydroelectric plant", - "contentSnippet": "Tons of garbage floats down a river at least twice a year and ends up near the eastern Bosnian town of Visegrad behind a barrier installed by a local hydroelectric plant", - "guid": "https://abcnews.go.com/International/wireStory/tons-trash-clogs-river-bosnia-seasonal-problem-activists-106291299", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T15:26:31.000Z" - }, - { - "title": " Grenade explosion in Afghanistan's capital kills 2 people and wounds 12 in Shiite neighborhood", - "link": "https://abcnews.go.com/International/wireStory/grenade-explosion-afghanistans-capital-kills-2-people-wounds-106291041", - "pubDate": "Thu, 11 Jan 2024 09:58:45 -0500", - "content": "Police say a grenade explosion in Afghanistan’s capital has killed two people and wounded 12 in a Shiite neighborhood of Kabul", - "contentSnippet": "Police say a grenade explosion in Afghanistan\u2019s capital has killed two people and wounded 12 in a Shiite neighborhood of Kabul", - "guid": "https://abcnews.go.com/International/wireStory/grenade-explosion-afghanistans-capital-kills-2-people-wounds-106291041", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T14:58:45.000Z" - }, - { - "title": " Iran confirms its navy seized the oil tanker in the Gulf of Oman that was reported to have been boarded by armed men", - "link": "https://abcnews.go.com/International/wireStory/iran-confirms-navy-seized-oil-tanker-gulf-oman-106288386", - "pubDate": "Thu, 11 Jan 2024 08:26:03 -0500", - "content": "Iran confirms its navy seized the oil tanker in the Gulf of Oman that was reported to have been boarded by armed men", - "contentSnippet": "Iran confirms its navy seized the oil tanker in the Gulf of Oman that was reported to have been boarded by armed men", - "guid": "https://abcnews.go.com/International/wireStory/iran-confirms-navy-seized-oil-tanker-gulf-oman-106288386", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T13:26:03.000Z" - }, - { - "title": " Magnitude 6.4 earthquake shakes parts of Pakistan, Afghanistan; no damage reported", - "link": "https://abcnews.go.com/International/wireStory/magnitude-64-earthquake-rattles-pakistan-parts-afghanistan-damage-106286085", - "pubDate": "Thu, 11 Jan 2024 08:22:12 -0500", - "content": "Officials say a magnitude 6.4 earthquake has shaken parts of Pakistan and neighboring Afghanistan", - "contentSnippet": "Officials say a magnitude 6.4 earthquake has shaken parts of Pakistan and neighboring Afghanistan", - "guid": "https://abcnews.go.com/International/wireStory/magnitude-64-earthquake-rattles-pakistan-parts-afghanistan-damage-106286085", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T13:22:12.000Z" - }, - { - "title": " Turkey, Bulgaria and Romania sign a deal to tackle Black Sea mines", - "link": "https://abcnews.go.com/International/wireStory/turkey-bulgaria-romania-sign-deal-tackle-black-sea-106285982", - "pubDate": "Thu, 11 Jan 2024 06:42:31 -0500", - "content": "Turkey, Bulgaria and Romania have signed an agreement to jointly tackle drifting sea mines that have threatened Black Sea shipping since the start of the Ukraine war", - "contentSnippet": "Turkey, Bulgaria and Romania have signed an agreement to jointly tackle drifting sea mines that have threatened Black Sea shipping since the start of the Ukraine war", - "guid": "https://abcnews.go.com/International/wireStory/turkey-bulgaria-romania-sign-deal-tackle-black-sea-106285982", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T11:42:31.000Z" - }, - { - "title": " Germany's Scholz condemns alleged plot by far-right groups to deport millions if they take power", - "link": "https://abcnews.go.com/International/wireStory/germanys-scholz-condemns-alleged-plot-groups-deport-millions-106285983", - "pubDate": "Thu, 11 Jan 2024 06:10:33 -0500", - "content": "German Chancellor Olaf Scholz has sharply condemned alleged plans by members of far-right groups who supposedly met recently at a mansion outside Berlin to devise a plot to deport millions of immigrants, even those with German citizenship, if the group...", - "contentSnippet": "German Chancellor Olaf Scholz has sharply condemned alleged plans by members of far-right groups who supposedly met recently at a mansion outside Berlin to devise a plot to deport millions of immigrants, even those with German citizenship, if the group...", - "guid": "https://abcnews.go.com/International/wireStory/germanys-scholz-condemns-alleged-plot-groups-deport-millions-106285983", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T11:10:33.000Z" - }, - { - "title": " Nepal cricket star sentenced to 8 years in prison for rape and ordered to pay fine", - "link": "https://abcnews.go.com/International/wireStory/nepals-star-cricket-player-sentenced-8-years-prison-106252047", - "pubDate": "Thu, 11 Jan 2024 03:14:32 -0500", - "content": "Nepal’s star cricket player and former captain of the national team has been sentenced to eight years in prison for rape and ordered to pay a fine", - "contentSnippet": "Nepal\u2019s star cricket player and former captain of the national team has been sentenced to eight years in prison for rape and ordered to pay a fine", - "guid": "https://abcnews.go.com/International/wireStory/nepals-star-cricket-player-sentenced-8-years-prison-106252047", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T08:14:32.000Z" - }, - { - "title": " Taiwan's election is shaped by economic realities, not just Beijing's threats to use force", - "link": "https://abcnews.go.com/International/wireStory/taiwans-election-shaped-economic-realities-beijings-threats-force-106283847", - "pubDate": "Thu, 11 Jan 2024 01:14:31 -0500", - "content": "Beijing's threat to use force to claim the self-governed island of Taiwan isn't just about missiles and warships", - "contentSnippet": "Beijing's threat to use force to claim the self-governed island of Taiwan isn't just about missiles and warships", - "guid": "https://abcnews.go.com/International/wireStory/taiwans-election-shaped-economic-realities-beijings-threats-force-106283847", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T06:14:31.000Z" - }, - { - "title": " Nearly 10,000 died from COVID-19 last month, fueled by holiday gatherings and new variant, WHO says", - "link": "https://abcnews.go.com/International/wireStory/holiday-gatherings-new-variant-driven-covid-cases-globally-106262660", - "pubDate": "Wed, 10 Jan 2024 21:22:22 -0500", - "content": "The head of the U.N. health agency says holiday gatherings and the spread of the most prominent variant globally led to increased transmission of COVID-19 last month", - "contentSnippet": "The head of the U.N. health agency says holiday gatherings and the spread of the most prominent variant globally led to increased transmission of COVID-19 last month", - "guid": "https://abcnews.go.com/International/wireStory/holiday-gatherings-new-variant-driven-covid-cases-globally-106262660", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T02:22:22.000Z" - }, - { - "title": " Ecuador hunkers down for a government war on drug gangs after attack during live TV newscast", - "link": "https://abcnews.go.com/International/wireStory/air-masked-gunmen-storm-tv-studio-ecuador-gang-106247009", - "pubDate": "Wed, 10 Jan 2024 18:50:24 -0500", - "content": "Schools and stores are shuttered, many people stayed home and soldiers are roaming the streets of Ecuador’s biggest cities after armed gang members invaded a television station live afternoon newscast", - "contentSnippet": "Schools and stores are shuttered, many people stayed home and soldiers are roaming the streets of Ecuador\u2019s biggest cities after armed gang members invaded a television station live afternoon newscast", - "guid": "https://abcnews.go.com/International/wireStory/air-masked-gunmen-storm-tv-studio-ecuador-gang-106247009", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T23:50:24.000Z" - }, - { - "title": " Kremlin foe Navalny, smiling and joking, appears in court via video link from an Arctic prison", - "link": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalny-smiling-joking-appears-court-video-106260640", - "pubDate": "Wed, 10 Jan 2024 11:46:30 -0500", - "content": "A smiling and joking Alexei Navalny has appeared in court via video link from the Arctic penal colony where he is serving a 19-year sentence", - "contentSnippet": "A smiling and joking Alexei Navalny has appeared in court via video link from the Arctic penal colony where he is serving a 19-year sentence", - "guid": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalny-smiling-joking-appears-court-video-106260640", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T16:46:30.000Z" - }, - { - "title": " Armed attack during live broadcast at Ecuadorian TV station. What's behind the spiraling violence?", - "link": "https://abcnews.go.com/International/wireStory/armed-attack-live-broadcast-ecuadorian-tv-station-spiraling-106246551", - "pubDate": "Wed, 10 Jan 2024 10:58:31 -0500", - "content": "A group of armed, masked men in Ecuador launched an audacious attack on a television station during a live broadcast and so revealed the country’s spiraling violence in the wake of an apparent recent prison escape", - "contentSnippet": "A group of armed, masked men in Ecuador launched an audacious attack on a television station during a live broadcast and so revealed the country\u2019s spiraling violence in the wake of an apparent recent prison escape", - "guid": "https://abcnews.go.com/International/wireStory/armed-attack-live-broadcast-ecuadorian-tv-station-spiraling-106246551", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T15:58:31.000Z" - }, - { - "title": " Cesarean deliveries surge in Puerto Rico, reaching a record rate in the US territory, report says", - "link": "https://abcnews.go.com/International/wireStory/cesarean-deliveries-surge-puerto-rico-reaching-record-rate-106247734", - "pubDate": "Wed, 10 Jan 2024 08:18:33 -0500", - "content": "Cesareans are surging in the U.S. territory of Puerto Rico, which has one of the world’s highest rates", - "contentSnippet": "Cesareans are surging in the U.S. territory of Puerto Rico, which has one of the world\u2019s highest rates", - "guid": "https://abcnews.go.com/International/wireStory/cesarean-deliveries-surge-puerto-rico-reaching-record-rate-106247734", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T13:18:33.000Z" - }, - { - "title": " Hong Kong man jailed 3 months for sedition for wearing T-shirt with protest slogan", - "link": "https://abcnews.go.com/International/wireStory/hong-kong-man-jailed-3-months-sedition-wearing-106251036", - "pubDate": "Wed, 10 Jan 2024 08:17:57 -0500", - "content": "A Hong Kong man has been sentenced to three months in prison on sedition charges for wearing a T-shirt with a slogan printed on it", - "contentSnippet": "A Hong Kong man has been sentenced to three months in prison on sedition charges for wearing a T-shirt with a slogan printed on it", - "guid": "https://abcnews.go.com/International/wireStory/hong-kong-man-jailed-3-months-sedition-wearing-106251036", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T13:17:57.000Z" - }, - { - "title": " South Korean opposition leader released from hospital a week after being stabbed", - "link": "https://abcnews.go.com/International/wireStory/south-korean-opposition-leader-released-hospital-week-after-106246095", - "pubDate": "Wed, 10 Jan 2024 07:30:32 -0500", - "content": "South Korean police say the man accused of stabbing South Korean opposition leader Lee Jae-myung in the neck told investigators that he wanted to kill him to prevent him from becoming the country’s president", - "contentSnippet": "South Korean police say the man accused of stabbing South Korean opposition leader Lee Jae-myung in the neck told investigators that he wanted to kill him to prevent him from becoming the country\u2019s president", - "guid": "https://abcnews.go.com/International/wireStory/south-korean-opposition-leader-released-hospital-week-after-106246095", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T12:30:32.000Z" - }, - { - "title": " Japan resumes landfill work at new US military site on Okinawa despite local opposition", - "link": "https://abcnews.go.com/International/wireStory/japan-resumes-landfill-work-new-us-military-site-106249533", - "pubDate": "Wed, 10 Jan 2024 05:46:24 -0500", - "content": "Japanese authorities have resumed landfill work at the planned new site of the U.S. military base on Okinawa despite protests by island residents that it tramples on their rights", - "contentSnippet": "Japanese authorities have resumed landfill work at the planned new site of the U.S. military base on Okinawa despite protests by island residents that it tramples on their rights", - "guid": "https://abcnews.go.com/International/wireStory/japan-resumes-landfill-work-new-us-military-site-106249533", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T10:46:24.000Z" - }, - { - "title": " Kim calls South Korea a principal enemy as his rhetoric sharpens in a US election year", - "link": "https://abcnews.go.com/International/wireStory/kim-calls-south-korea-principal-enemy-rhetoric-sharpens-106242198", - "pubDate": "Wed, 10 Jan 2024 04:58:26 -0500", - "content": "North Korean leader Kim Jong Un has called South Korea “our principal enemy” and threatened to annihilate it if provoked", - "contentSnippet": "North Korean leader Kim Jong Un has called South Korea \u201cour principal enemy\u201d and threatened to annihilate it if provoked", - "guid": "https://abcnews.go.com/International/wireStory/kim-calls-south-korea-principal-enemy-rhetoric-sharpens-106242198", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T09:58:26.000Z" - }, - { - "title": " With threats, pressure and financial lures, China seen as aiming to influence Taiwan's elections", - "link": "https://abcnews.go.com/International/wireStory/threats-pressure-financial-lures-china-aiming-influence-taiwans-106248386", - "pubDate": "Wed, 10 Jan 2024 02:34:36 -0500", - "content": "China is being accused of using military threats, diplomatic pressure and fake news in a broad strategy to influence voters in Taiwan’s elections to pick candidates who favor unification", - "contentSnippet": "China is being accused of using military threats, diplomatic pressure and fake news in a broad strategy to influence voters in Taiwan\u2019s elections to pick candidates who favor unification", - "guid": "https://abcnews.go.com/International/wireStory/threats-pressure-financial-lures-china-aiming-influence-taiwans-106248386", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T07:34:36.000Z" - }, - { - "title": " China says it will launch its next lunar explorer in the first half of this year", - "link": "https://abcnews.go.com/International/wireStory/china-launch-lunar-explorer-half-year-106248295", - "pubDate": "Wed, 10 Jan 2024 01:22:29 -0500", - "content": "China’s space agency says its latest lunar explorer has arrived at the launch site in preparation for a mission to the moon in the first half of this year", - "contentSnippet": "China\u2019s space agency says its latest lunar explorer has arrived at the launch site in preparation for a mission to the moon in the first half of this year", - "guid": "https://abcnews.go.com/International/wireStory/china-launch-lunar-explorer-half-year-106248295", - "categories": [ - "International" - ], - "isoDate": "2024-01-10T06:22:29.000Z" - }, - { - "title": " Live updates | In Day 2 of hearings, Israel rejects South Africa's allegation of genocide", - "link": "https://abcnews.go.com/International/wireStory/live-updates-israel-defend-day-2-top-courts-106317374", - "pubDate": "Fri, 12 Jan 2024 06:02:31 -0500", - "content": "Israel is rejecting allegations levied by South Africa that its campaign against Hamas amounts to genocide against the Palestinian people", - "contentSnippet": "Israel is rejecting allegations levied by South Africa that its campaign against Hamas amounts to genocide against the Palestinian people", - "guid": "https://abcnews.go.com/International/wireStory/live-updates-israel-defend-day-2-top-courts-106317374", - "categories": [ - "International" - ], - "isoDate": "2024-01-12T11:02:31.000Z" - }, - { - "title": " Tesla puts German factory production on hold as Red Sea attacks disrupt supply chains", - "link": "https://abcnews.go.com/International/wireStory/tesla-puts-german-factory-production-hold-red-sea-106317653", - "pubDate": "Fri, 12 Jan 2024 06:02:29 -0500", - "content": "Tesla says it’s temporarily halting most of production at its German factory because of attacks in the Red Sea, a vital global shipping corridor", - "contentSnippet": "Tesla says it\u2019s temporarily halting most of production at its German factory because of attacks in the Red Sea, a vital global shipping corridor", - "guid": "https://abcnews.go.com/International/wireStory/tesla-puts-german-factory-production-hold-red-sea-106317653", - "categories": [ - "International" - ], - "isoDate": "2024-01-12T11:02:29.000Z" - }, - { - "title": " The Myanmar military says it and ethnic guerrilla groups have agreed to an immediate cease-fire", - "link": "https://abcnews.go.com/International/wireStory/china-myanmar-military-ethnic-guerrilla-groups-agreed-immediate-106317284", - "pubDate": "Fri, 12 Jan 2024 06:02:25 -0500", - "content": "Myanmar’s military said it has reached a cease-fire agreement with an alliance of three ethnic minority guerrilla groups that it has been battling in the north", - "contentSnippet": "Myanmar\u2019s military said it has reached a cease-fire agreement with an alliance of three ethnic minority guerrilla groups that it has been battling in the north", - "guid": "https://abcnews.go.com/International/wireStory/china-myanmar-military-ethnic-guerrilla-groups-agreed-immediate-106317284", - "categories": [ - "International" - ], - "isoDate": "2024-01-12T11:02:25.000Z" - }, - { - "title": " Japan successfully launches an intelligence-gathering satellite to watch for North Korean missiles", - "link": "https://abcnews.go.com/International/wireStory/japan-launches-intelligence-gathering-satellite-watch-north-korean-106316386", - "pubDate": "Fri, 12 Jan 2024 06:02:18 -0500", - "content": "Japan has successfully launched a rocket carrying a government intelligence-gathering satellite on a mission to watch movements at military sites in North Korea and improve natural disaster response", - "contentSnippet": "Japan has successfully launched a rocket carrying a government intelligence-gathering satellite on a mission to watch movements at military sites in North Korea and improve natural disaster response", - "guid": "https://abcnews.go.com/International/wireStory/japan-launches-intelligence-gathering-satellite-watch-north-korean-106316386", - "categories": [ - "International" - ], - "isoDate": "2024-01-12T11:02:18.000Z" - }, - { - "title": " The UK prime minister is in Kyiv to announce a new support package for Ukraine", - "link": "https://abcnews.go.com/International/wireStory/uk-prime-minister-kyiv-announce-new-support-package-106316964", - "pubDate": "Fri, 12 Jan 2024 06:02:17 -0500", - "content": "U.K. Prime Minister Rishi Sunak is visiting Kyiv to announce a new package of support for Ukraine, including an increase in military funding for its war with Russia, a statement from his office said", - "contentSnippet": "U.K. Prime Minister Rishi Sunak is visiting Kyiv to announce a new package of support for Ukraine, including an increase in military funding for its war with Russia, a statement from his office said", - "guid": "https://abcnews.go.com/International/wireStory/uk-prime-minister-kyiv-announce-new-support-package-106316964", - "categories": [ - "International" - ], - "isoDate": "2024-01-12T11:02:17.000Z" - }, - { - "title": " Houthi rebels say US-led strikes in Yemen killed 5 people and wounded 6, raising Mideast tensions", - "link": "https://abcnews.go.com/International/wireStory/us-led-strikes-yemeni-rebels-draw-attention-back-106314237", - "pubDate": "Fri, 12 Jan 2024 05:14:22 -0500", - "content": "U.S.-led airstrikes on Yemen’s Houthi rebels in response to their attacks on shipping in the Red Sea have pulled the world’s focus back on the yearslong war raging in the Arab world’s poorest nation", - "contentSnippet": "U.S.-led airstrikes on Yemen\u2019s Houthi rebels in response to their attacks on shipping in the Red Sea have pulled the world\u2019s focus back on the yearslong war raging in the Arab world\u2019s poorest nation", - "guid": "https://abcnews.go.com/International/wireStory/us-led-strikes-yemeni-rebels-draw-attention-back-106314237", - "categories": [ - "International" - ], - "isoDate": "2024-01-12T10:14:22.000Z" - }, - { - "title": " In Taiwan's election Saturday, who are the 3 candidates trying to become president?", - "link": "https://abcnews.go.com/International/wireStory/taiwans-election-saturday-3-candidates-become-president-106316780", - "pubDate": "Fri, 12 Jan 2024 04:02:29 -0500", - "content": "Three candidates are vying for Taiwan’s presidency in elections Saturday that are closely watched internationally", - "contentSnippet": "Three candidates are vying for Taiwan\u2019s presidency in elections Saturday that are closely watched internationally", - "guid": "https://abcnews.go.com/International/wireStory/taiwans-election-saturday-3-candidates-become-president-106316780", - "categories": [ - "International" - ], - "isoDate": "2024-01-12T09:02:29.000Z" - }, - { - "title": " UK Prime Minister Rishi Sunak arrives in Kyiv to announce new support package for Ukraine with more military funding", - "link": "https://abcnews.go.com/International/wireStory/uk-prime-minister-rishi-sunak-arrives-kyiv-announce-106316784", - "pubDate": "Fri, 12 Jan 2024 03:46:11 -0500", - "content": "UK Prime Minister Rishi Sunak arrives in Kyiv to announce new support package for Ukraine with more military funding", - "contentSnippet": "UK Prime Minister Rishi Sunak arrives in Kyiv to announce new support package for Ukraine with more military funding", - "guid": "https://abcnews.go.com/International/wireStory/uk-prime-minister-rishi-sunak-arrives-kyiv-announce-106316784", - "categories": [ - "International" - ], - "isoDate": "2024-01-12T08:46:11.000Z" - }, - { - "title": " AP Week in Pictures: Asia", - "link": "https://abcnews.go.com/International/wireStory/ap-week-pictures-asia-106313429", - "pubDate": "Thu, 11 Jan 2024 22:02:29 -0500", - "content": "\nJan. 4-11, 2024\n\nThis photo gallery highlights some of the most compelling images in the Asia-Pacific region made or published by The Associated Press in the past week.\n\nDevotees crowd during the annual Black Nazarene procession in Manila, Philippines, supporters of the Democratic Progressive Party candidate cheer during a rally in Taipei, Taiwan, ahead of Saturday's presidential election, and a man reads a Bangladeshi newspaper that has the news of Prime Minister Sheikh Hasina’s election victory in Dhaka.\n\nThe selection was curated by AP photo editor Masayo Yoshida in Tokyo.\n\n___\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on X: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", - "contentSnippet": "Jan. 4-11, 2024\n\nThis photo gallery highlights some of the most compelling images in the Asia-Pacific region made or published by The Associated Press in the past week.\n\nDevotees crowd during the annual Black Nazarene procession in Manila, Philippines, supporters of the Democratic Progressive Party candidate cheer during a rally in Taipei, Taiwan, ahead of Saturday's presidential election, and a man reads a Bangladeshi newspaper that has the news of Prime Minister Sheikh Hasina\u2019s election victory in Dhaka.\n\nThe selection was curated by AP photo editor Masayo Yoshida in Tokyo.\n\n___\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on X: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", - "guid": "https://abcnews.go.com/International/wireStory/ap-week-pictures-asia-106313429", - "categories": [ - "International" - ], - "isoDate": "2024-01-12T03:02:29.000Z" - }, - { - "title": " Finland extends closure of Russian border for another month, fearing a migrant influx", - "link": "https://abcnews.go.com/International/wireStory/finland-extends-closure-russian-border-month-fearing-migrant-106292770", - "pubDate": "Thu, 11 Jan 2024 11:01:46 -0500", - "content": "Finland says it will extend the closure of its border with Russia for another month because it suspects that Moscow is trying to undermine the Nordic country’s security by sending undocumented migrants across the frontier", - "contentSnippet": "Finland says it will extend the closure of its border with Russia for another month because it suspects that Moscow is trying to undermine the Nordic country\u2019s security by sending undocumented migrants across the frontier", - "guid": "https://abcnews.go.com/International/wireStory/finland-extends-closure-russian-border-month-fearing-migrant-106292770", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T16:01:46.000Z" - }, - { - "title": " Blinken sees a path to Gaza peace, reconstruction and regional security after his Mideast tour", - "link": "https://abcnews.go.com/International/wireStory/blinken-sees-path-gaza-peace-reconstruction-regional-security-106291724", - "pubDate": "Thu, 11 Jan 2024 10:50:43 -0500", - "content": "U.S. Secretary of State Antony Blinken has wrapped up his latest urgent Mideast tour in talks with Egyptian President Abdel Fattah el-Sissi", - "contentSnippet": "U.S. Secretary of State Antony Blinken has wrapped up his latest urgent Mideast tour in talks with Egyptian President Abdel Fattah el-Sissi", - "guid": "https://abcnews.go.com/International/wireStory/blinken-sees-path-gaza-peace-reconstruction-regional-security-106291724", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T15:50:43.000Z" - }, - { - "title": " Renewables grew rapidly in 2023, but must grow faster still to meet climate change target, IEA says", - "link": "https://abcnews.go.com/International/wireStory/renewables-grew-rapidly-2023-grow-faster-meet-climate-106284220", - "pubDate": "Thu, 11 Jan 2024 02:26:19 -0500", - "content": "The amount of renewable energy installed around the world last year grew at its fastest rate in the past 25 years", - "contentSnippet": "The amount of renewable energy installed around the world last year grew at its fastest rate in the past 25 years", - "guid": "https://abcnews.go.com/International/wireStory/renewables-grew-rapidly-2023-grow-faster-meet-climate-106284220", - "categories": [ - "International" - ], - "isoDate": "2024-01-11T07:26:19.000Z" - }, - { - "title": " An airstrike on southern Syria, likely carried out by Jordan's air force, kills 9", - "link": "https://abcnews.go.com/International/wireStory/airstrike-southern-syria-carried-jordans-air-force-kills-106473498", - "pubDate": "Thu, 18 Jan 2024 07:22:19 -0500", - "content": "Syrian opposition activists say an airstrike that was likely carried out by Jordan’s air force on southern Syria has killed at least nine people in the latest of strikes in recent months", - "contentSnippet": "Syrian opposition activists say an airstrike that was likely carried out by Jordan\u2019s air force on southern Syria has killed at least nine people in the latest of strikes in recent months", - "guid": "https://abcnews.go.com/International/wireStory/airstrike-southern-syria-carried-jordans-air-force-kills-106473498", - "categories": [ - "International" - ], - "isoDate": "2024-01-18T12:22:19.000Z" - }, - { - "title": " The drop in Panama Canal traffic due to a severe drought could cost up to $700 million", - "link": "https://abcnews.go.com/International/wireStory/drought-forced-authorities-slash-traffic-panama-canal-disrupting-106468171", - "pubDate": "Thu, 18 Jan 2024 07:14:28 -0500", - "content": "A severe drought that began last year has forced authorities to slash ship crossings by 36% in the Panama Canal, one of the world’s most important trade routes", - "contentSnippet": "A severe drought that began last year has forced authorities to slash ship crossings by 36% in the Panama Canal, one of the world\u2019s most important trade routes", - "guid": "https://abcnews.go.com/International/wireStory/drought-forced-authorities-slash-traffic-panama-canal-disrupting-106468171", - "categories": [ - "International" - ], - "isoDate": "2024-01-18T12:14:28.000Z" - }, - { - "title": " Israeli strike kills 16 in southern Gaza; no word on whether medicines reached hostages", - "link": "https://abcnews.go.com/International/wireStory/israeli-strike-kills-16-southern-gaza-word-medicines-106472858", - "pubDate": "Thu, 18 Jan 2024 06:26:34 -0500", - "content": "Palestinian medics say an Israeli airstrike on a home killed 16 people, half of them children, in the southern Gaza town of Rafah", - "contentSnippet": "Palestinian medics say an Israeli airstrike on a home killed 16 people, half of them children, in the southern Gaza town of Rafah", - "guid": "https://abcnews.go.com/International/wireStory/israeli-strike-kills-16-southern-gaza-word-medicines-106472858", - "categories": [ - "International" - ], - "isoDate": "2024-01-18T11:26:34.000Z" - }, - { - "title": " France ramps up weapons production for Ukraine and says Russia is scrutinizing the West's mettle", - "link": "https://abcnews.go.com/International/wireStory/france-ramps-weapons-production-ukraine-russia-scrutinizing-wests-106472952", - "pubDate": "Thu, 18 Jan 2024 06:10:31 -0500", - "content": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", - "contentSnippet": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", - "guid": "https://abcnews.go.com/International/wireStory/france-ramps-weapons-production-ukraine-russia-scrutinizing-wests-106472952", - "categories": [ - "International" - ], - "isoDate": "2024-01-18T11:10:31.000Z" - }, - { - "title": " Pakistani airstrikes on Iran killed 4 children and 3 women, a local official tells Iranian state television", - "link": "https://abcnews.go.com/International/wireStory/pakistani-airstrikes-iran-killed-4-children-3-women-106470740", - "pubDate": "Thu, 18 Jan 2024 00:10:14 -0500", - "content": "Pakistani airstrikes on Iran killed 4 children and 3 women, a local official tells Iranian state television", - "contentSnippet": "Pakistani airstrikes on Iran killed 4 children and 3 women, a local official tells Iranian state television", - "guid": "https://abcnews.go.com/International/wireStory/pakistani-airstrikes-iran-killed-4-children-3-women-106470740", - "categories": [ - "International" - ], - "isoDate": "2024-01-18T05:10:14.000Z" - }, - { - "title": " Two Malaysian filmmakers are charged with offending the religious feelings of others in banned film", - "link": "https://abcnews.go.com/International/wireStory/malaysian-filmmakers-charged-offending-religious-feelings-banned-film-106437099", - "pubDate": "Wed, 17 Jan 2024 21:54:21 -0500", - "content": "Two Malaysian filmmakers have been charged with offending the religious feelings of others in a rare criminal prosecution that has been slammed by critics as an attack on freedom of expression", - "contentSnippet": "Two Malaysian filmmakers have been charged with offending the religious feelings of others in a rare criminal prosecution that has been slammed by critics as an attack on freedom of expression", - "guid": "https://abcnews.go.com/International/wireStory/malaysian-filmmakers-charged-offending-religious-feelings-banned-film-106437099", - "categories": [ - "International" - ], - "isoDate": "2024-01-18T02:54:21.000Z" - }, - { - "title": " Kenya doomsday cult leader, 30 others face charges of murdering 191 children", - "link": "https://abcnews.go.com/International/wireStory/kenya-doomsday-cult-leader-30-face-charges-murdering-106439996", - "pubDate": "Wed, 17 Jan 2024 21:30:28 -0500", - "content": "A doomsday cult leader and 30 of his followers have been presented in a Kenyan court to face charges of murdering 191 children", - "contentSnippet": "A doomsday cult leader and 30 of his followers have been presented in a Kenyan court to face charges of murdering 191 children", - "guid": "https://abcnews.go.com/International/wireStory/kenya-doomsday-cult-leader-30-face-charges-murdering-106439996", - "categories": [ - "International" - ], - "isoDate": "2024-01-18T02:30:28.000Z" - }, - { - "title": " UK lawmakers pass a bill to send migrants to Rwanda. But hurdles remain before any flights take off", - "link": "https://abcnews.go.com/International/wireStory/uk-leader-rishi-sunak-quell-conservative-revolt-rwanda-106437279", - "pubDate": "Wed, 17 Jan 2024 21:06:37 -0500", - "content": "U.K. Prime Minister Rishi Sunak has quelled a Conservative Party rebellion and got his stalled plan to send some asylum-seekers on a one-way trip to Rwanda through the House of Commons", - "contentSnippet": "U.K. Prime Minister Rishi Sunak has quelled a Conservative Party rebellion and got his stalled plan to send some asylum-seekers on a one-way trip to Rwanda through the House of Commons", - "guid": "https://abcnews.go.com/International/wireStory/uk-leader-rishi-sunak-quell-conservative-revolt-rwanda-106437279", - "categories": [ - "International" - ], - "isoDate": "2024-01-18T02:06:37.000Z" - }, - { - "title": " US bars ex-Guatemala President Alejandro Giammattei from entry 3 days after he left office", - "link": "https://abcnews.go.com/International/wireStory/us-bars-guatemala-president-alejandro-giammattei-entry-3-106466152", - "pubDate": "Wed, 17 Jan 2024 20:26:21 -0500", - "content": "The U.S. State Department has barred former Guatemalan President Alejandro Giammattei from entering the United States, accusing him “significant corruption” just- three days after he left office", - "contentSnippet": "The U.S. State Department has barred former Guatemalan President Alejandro Giammattei from entering the United States, accusing him \u201csignificant corruption\u201d just- three days after he left office", - "guid": "https://abcnews.go.com/International/wireStory/us-bars-guatemala-president-alejandro-giammattei-entry-3-106466152", - "categories": [ - "International" - ], - "isoDate": "2024-01-18T01:26:21.000Z" - }, - { - "title": " Why is the Guatemala attorney general going after the new president?", - "link": "https://abcnews.go.com/International/wireStory/guatemala-attorney-general-after-new-president-106461496", - "pubDate": "Wed, 17 Jan 2024 18:58:33 -0500", - "content": "Despite having the support of millions of Guatemalans, newly installed President Bernardo Arévalo has a clear obstacle — the attorney general’s office and its leader, Consuelo Porras", - "contentSnippet": "Despite having the support of millions of Guatemalans, newly installed President Bernardo Ar\u00e9valo has a clear obstacle \u2014 the attorney general\u2019s office and its leader, Consuelo Porras", - "guid": "https://abcnews.go.com/International/wireStory/guatemala-attorney-general-after-new-president-106461496", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T23:58:33.000Z" - }, - { - "title": " Official in Poland's former conservative government charged in cash-for-visas investigation", - "link": "https://abcnews.go.com/International/wireStory/official-polands-former-conservative-government-charged-cash-visas-106457464", - "pubDate": "Wed, 17 Jan 2024 16:02:06 -0500", - "content": "Poland's anti-corruption authorities say a deputy foreign minister in the previous right-wing government has appeared before prosecutors to hear charges in the alleged sale of visas and work permits to migrant for thousands of dollars", - "contentSnippet": "Poland's anti-corruption authorities say a deputy foreign minister in the previous right-wing government has appeared before prosecutors to hear charges in the alleged sale of visas and work permits to migrant for thousands of dollars", - "guid": "https://abcnews.go.com/International/wireStory/official-polands-former-conservative-government-charged-cash-visas-106457464", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T21:02:06.000Z" - }, - { - "title": " Turkmenistan's president fires chief prosecutor for failure to fulfill his duties, state media say", - "link": "https://abcnews.go.com/International/wireStory/turkmenistans-president-fires-chief-prosecutor-failure-fulfill-duties-106456119", - "pubDate": "Wed, 17 Jan 2024 14:58:05 -0500", - "content": "Turkmenistan’s president has fired the country’s chief prosecutor for failing to properly fulfill his duties", - "contentSnippet": "Turkmenistan\u2019s president has fired the country\u2019s chief prosecutor for failing to properly fulfill his duties", - "guid": "https://abcnews.go.com/International/wireStory/turkmenistans-president-fires-chief-prosecutor-failure-fulfill-duties-106456119", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T19:58:05.000Z" - }, - { - "title": " Hundreds protest and clash with police in a Russian region after an activist is sentenced to prison", - "link": "https://abcnews.go.com/International/wireStory/hundreds-protest-clash-police-russian-region-after-activist-106447342", - "pubDate": "Wed, 17 Jan 2024 11:38:09 -0500", - "content": "Media reports and rights groups say hundreds of protesters clashed with police in the Russian region of Bashkortostan in a rare display of public outrage after a court convicted a local activist and sentenced him to prison", - "contentSnippet": "Media reports and rights groups say hundreds of protesters clashed with police in the Russian region of Bashkortostan in a rare display of public outrage after a court convicted a local activist and sentenced him to prison", - "guid": "https://abcnews.go.com/International/wireStory/hundreds-protest-clash-police-russian-region-after-activist-106447342", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T16:38:09.000Z" - }, - { - "title": " Ethnic Serbs in Kosovo hold a petition drive in hopes of ousting 4 ethnic Albanian mayors", - "link": "https://abcnews.go.com/International/wireStory/ethnic-serbs-kosovo-hold-petition-drive-hopes-ousting-106446731", - "pubDate": "Wed, 17 Jan 2024 11:22:03 -0500", - "content": "Ethnic Serbs in northern Kosovo are holding a signature drive in hopes of securing enough to oust four ethnic Albanian mayors whose elections last year sent tensions between Serbia and Kosovo soaring", - "contentSnippet": "Ethnic Serbs in northern Kosovo are holding a signature drive in hopes of securing enough to oust four ethnic Albanian mayors whose elections last year sent tensions between Serbia and Kosovo soaring", - "guid": "https://abcnews.go.com/International/wireStory/ethnic-serbs-kosovo-hold-petition-drive-hopes-ousting-106446731", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T16:22:03.000Z" - }, - { - "title": " Kate, the Princess of Wales, has been admitted to a London hospital for up to 2 weeks following abdominal surgery", - "link": "https://abcnews.go.com/International/wireStory/kate-princess-wales-admitted-london-hospital-2-weeks-106442053", - "pubDate": "Wed, 17 Jan 2024 10:18:07 -0500", - "content": "Kate, the Princess of Wales, has been admitted to a London hospital for up to 2 weeks following abdominal surgery", - "contentSnippet": "Kate, the Princess of Wales, has been admitted to a London hospital for up to 2 weeks following abdominal surgery", - "guid": "https://abcnews.go.com/International/wireStory/kate-princess-wales-admitted-london-hospital-2-weeks-106442053", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T15:18:07.000Z" - }, - { - "title": " Cutting interest rates too soon in Europe risks progress against inflation, central bank chief says", - "link": "https://abcnews.go.com/International/wireStory/cutting-interest-rates-europe-risks-progress-inflation-central-106441544", - "pubDate": "Wed, 17 Jan 2024 09:22:31 -0500", - "content": "European Central Bank head Christine Lagarde says cutting interest rates too soon could threaten Europe’s progress in battling the inflation that has ravaged the economy", - "contentSnippet": "European Central Bank head Christine Lagarde says cutting interest rates too soon could threaten Europe\u2019s progress in battling the inflation that has ravaged the economy", - "guid": "https://abcnews.go.com/International/wireStory/cutting-interest-rates-europe-risks-progress-inflation-central-106441544", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T14:22:31.000Z" - }, - { - "title": " US, South Korea and Japan conduct naval drills as tensions deepen with North Korea", - "link": "https://abcnews.go.com/International/wireStory/us-south-korea-japan-conduct-naval-drills-tensions-106434423", - "pubDate": "Wed, 17 Jan 2024 09:14:18 -0500", - "content": "The United States, South Korea and Japan conducted combined naval exercises involving an American aircraft carrier in their latest show of strength against nuclear-armed North Korea", - "contentSnippet": "The United States, South Korea and Japan conducted combined naval exercises involving an American aircraft carrier in their latest show of strength against nuclear-armed North Korea", - "guid": "https://abcnews.go.com/International/wireStory/us-south-korea-japan-conduct-naval-drills-tensions-106434423", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T14:14:18.000Z" - }, - { - "title": " China's population falls for a 2nd straight year as births drop even after end of one-child policy", - "link": "https://abcnews.go.com/International/wireStory/chinas-population-drops-straight-year-deaths-jump-106432517", - "pubDate": "Wed, 17 Jan 2024 09:06:28 -0500", - "content": "China’s population fell by 2 million people in 2023 in the second straight annual decrease as births dropped and deaths jumped", - "contentSnippet": "China\u2019s population fell by 2 million people in 2023 in the second straight annual decrease as births dropped and deaths jumped", - "guid": "https://abcnews.go.com/International/wireStory/chinas-population-drops-straight-year-deaths-jump-106432517", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T14:06:28.000Z" - }, - { - "title": " Immigration issue challenges delicate talks to form new Dutch government", - "link": "https://abcnews.go.com/International/wireStory/immigration-issue-challenges-delicate-talks-form-new-dutch-106439997", - "pubDate": "Wed, 17 Jan 2024 08:34:26 -0500", - "content": "Delicate talks to create a new Dutch government around anti-Islam firebrand Geert Wilders suffered a setback when a lingering immigration issue divided the parties involved in brokering a coalition", - "contentSnippet": "Delicate talks to create a new Dutch government around anti-Islam firebrand Geert Wilders suffered a setback when a lingering immigration issue divided the parties involved in brokering a coalition", - "guid": "https://abcnews.go.com/International/wireStory/immigration-issue-challenges-delicate-talks-form-new-dutch-106439997", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T13:34:26.000Z" - }, - { - "title": " BP names current interim boss as permanent CEO to replace predecessor who quit over personal conduct", - "link": "https://abcnews.go.com/International/wireStory/bp-names-current-interim-boss-permanent-ceo-replace-106439731", - "pubDate": "Wed, 17 Jan 2024 08:25:56 -0500", - "content": "British oil giant BP says its interim chief executive, Murray Auchincloss, will be given the job on a permanent basis to replace Bernard Looney", - "contentSnippet": "British oil giant BP says its interim chief executive, Murray Auchincloss, will be given the job on a permanent basis to replace Bernard Looney", - "guid": "https://abcnews.go.com/International/wireStory/bp-names-current-interim-boss-permanent-ceo-replace-106439731", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T13:25:56.000Z" - }, - { - "title": " Belgian customs seized record amount of cocaine as EU faces rise in drug-related violence", - "link": "https://abcnews.go.com/International/wireStory/belgian-customs-seized-record-amount-cocaine-eu-faces-106437745", - "pubDate": "Wed, 17 Jan 2024 07:22:34 -0500", - "content": "Customs seized 116 tons of cocaine in the port of Antwerp in 2023, setting a record for the second year in a row, Belgian authorities said on Wednesday", - "contentSnippet": "Customs seized 116 tons of cocaine in the port of Antwerp in 2023, setting a record for the second year in a row, Belgian authorities said on Wednesday", - "guid": "https://abcnews.go.com/International/wireStory/belgian-customs-seized-record-amount-cocaine-eu-faces-106437745", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T12:22:34.000Z" - }, - { - "title": " New Zealand's first refugee lawmaker charged after resigning over claims of shoplifting", - "link": "https://abcnews.go.com/International/wireStory/new-zealands-refugee-lawmaker-resigns-after-claims-shoplifting-106434694", - "pubDate": "Wed, 17 Jan 2024 04:17:53 -0500", - "content": "New Zealand’s first refugee lawmaker was charged by police a day after resigning amid allegations she had shoplifted several times at local high-end boutiques", - "contentSnippet": "New Zealand\u2019s first refugee lawmaker was charged by police a day after resigning amid allegations she had shoplifted several times at local high-end boutiques", - "guid": "https://abcnews.go.com/International/wireStory/new-zealands-refugee-lawmaker-resigns-after-claims-shoplifting-106434694", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T09:17:53.000Z" - }, - { - "title": " Top Chinese diplomat says support of Pacific nations with policing should not alarm Australia", - "link": "https://abcnews.go.com/International/wireStory/top-chinese-diplomat-support-pacific-nations-policing-alarm-106436348", - "pubDate": "Wed, 17 Jan 2024 03:14:34 -0500", - "content": "China’s ambassador sought to reassure Australia that China’s increased involvement in the Pacific, particularly in policing efforts, should not be a cause of alarm", - "contentSnippet": "China\u2019s ambassador sought to reassure Australia that China\u2019s increased involvement in the Pacific, particularly in policing efforts, should not be a cause of alarm", - "guid": "https://abcnews.go.com/International/wireStory/top-chinese-diplomat-support-pacific-nations-policing-alarm-106436348", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T08:14:34.000Z" - }, - { - "title": " Modi's promised Ram temple is set to open and resonate with Hindus ahead of India's election", - "link": "https://abcnews.go.com/International/wireStory/modis-promised-ram-temple-set-open-resonate-hindus-106435511", - "pubDate": "Wed, 17 Jan 2024 01:30:21 -0500", - "content": "Preparations are underway in India’s northern Ayodhya city to mark the opening of a grand temple for Lord Ram, Hinduism’s most revered deity", - "contentSnippet": "Preparations are underway in India\u2019s northern Ayodhya city to mark the opening of a grand temple for Lord Ram, Hinduism\u2019s most revered deity", - "guid": "https://abcnews.go.com/International/wireStory/modis-promised-ram-temple-set-open-resonate-hindus-106435511", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T06:30:21.000Z" - }, - { - "title": " Ukraine needs money from the US and Europe to keep its economy running. Will the aid come?", - "link": "https://abcnews.go.com/International/wireStory/ukraine-money-us-europe-economy-running-aid-106435603", - "pubDate": "Wed, 17 Jan 2024 00:34:31 -0500", - "content": "Ukraine has won praise for stabilizing its economy under dire circumstances", - "contentSnippet": "Ukraine has won praise for stabilizing its economy under dire circumstances", - "guid": "https://abcnews.go.com/International/wireStory/ukraine-money-us-europe-economy-running-aid-106435603", - "categories": [ - "International" - ], - "isoDate": "2024-01-17T05:34:31.000Z" - }, - { - "title": " About 30 children were taken hostage by Hamas militants. Their families wait in agony", - "link": "https://abcnews.go.com/International/wireStory/30-children-hostage-hamas-militants-families-wait-agony-104424146", - "pubDate": "Fri, 27 Oct 2023 08:46:26 -0400", - "content": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", - "contentSnippet": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", - "guid": "https://abcnews.go.com/International/wireStory/30-children-hostage-hamas-militants-families-wait-agony-104424146", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T12:46:26.000Z" - }, - { - "title": " Pope orders Vatican to reopen case of priest ousted after claims of adult abuse", - "link": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-priest-ousted-jesuits-104422352", - "pubDate": "Fri, 27 Oct 2023 08:38:16 -0400", - "content": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", - "contentSnippet": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", - "guid": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-priest-ousted-jesuits-104422352", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T12:38:16.000Z" - }, - { - "title": " Israel says the vast network of Hamas tunnels will make a ground offensive long and difficult", - "link": "https://abcnews.go.com/International/wireStory/israel-strikes-outskirts-gaza-city-ground-raid-days-104419675", - "pubDate": "Fri, 27 Oct 2023 08:30:23 -0400", - "content": "Israel’s defense minister says it expects to launch a ground offensive into Gaza soon that will be long and difficult, and aim to destroy hundreds of kilometers or miles of tunnels used by the territory’s militant Hamas rulers", - "contentSnippet": "Israel\u2019s defense minister says it expects to launch a ground offensive into Gaza soon that will be long and difficult, and aim to destroy hundreds of kilometers or miles of tunnels used by the territory\u2019s militant Hamas rulers", - "guid": "https://abcnews.go.com/International/wireStory/israel-strikes-outskirts-gaza-city-ground-raid-days-104419675", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T12:30:23.000Z" - }, - { - "title": " Seeing no military answer to Israel-Palestinian tensions, the EU plans for a more peaceful future", - "link": "https://abcnews.go.com/International/wireStory/military-answer-israel-palestinian-tensions-eu-plans-peaceful-104422128", - "pubDate": "Fri, 27 Oct 2023 08:06:35 -0400", - "content": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", - "contentSnippet": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", - "guid": "https://abcnews.go.com/International/wireStory/military-answer-israel-palestinian-tensions-eu-plans-peaceful-104422128", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T12:06:35.000Z" - }, - { - "title": " Pope orders Vatican to reopen case of ousted Jesuit accused of abusing women, waives statute of limitations", - "link": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-ousted-jesuit-accused-104421946", - "pubDate": "Fri, 27 Oct 2023 08:06:00 -0400", - "content": "Pope orders Vatican to reopen case of ousted Jesuit accused of abusing women, waives statute of limitations", - "contentSnippet": "Pope orders Vatican to reopen case of ousted Jesuit accused of abusing women, waives statute of limitations", - "guid": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-ousted-jesuit-accused-104421946", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T12:06:00.000Z" - }, - { - "title": " Wu Zunyou, China\u2019s top infectious diseases expert who played a key role in the zero-COVID strategy, has died", - "link": "https://abcnews.go.com/International/wireStory/wu-zunyou-chinas-top-infectious-diseases-expert-played-104421166", - "pubDate": "Fri, 27 Oct 2023 07:26:06 -0400", - "content": "Wu Zunyou, China’s top infectious diseases expert who played a key role in the zero-COVID strategy, has died", - "contentSnippet": "Wu Zunyou, China\u2019s top infectious diseases expert who played a key role in the zero-COVID strategy, has died", - "guid": "https://abcnews.go.com/International/wireStory/wu-zunyou-chinas-top-infectious-diseases-expert-played-104421166", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T11:26:06.000Z" - }, - { - "title": " Iran's deputy FM met Hamas representatives in Moscow, Russian state media says", - "link": "https://abcnews.go.com/International/wireStory/irans-deputy-foreign-minister-met-hamas-representatives-moscow-104420906", - "pubDate": "Fri, 27 Oct 2023 07:17:53 -0400", - "content": "Russian state news agency Tass says Iran’s deputy foreign minister met Hamas representatives in Moscow", - "contentSnippet": "Russian state news agency Tass says Iran\u2019s deputy foreign minister met Hamas representatives in Moscow", - "guid": "https://abcnews.go.com/International/wireStory/irans-deputy-foreign-minister-met-hamas-representatives-moscow-104420906", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T11:17:53.000Z" - }, - { - "title": " Huawei reports its revenue inched higher in January-September despite US sanctions", - "link": "https://abcnews.go.com/International/wireStory/huawei-reports-revenue-inched-higher-january-september-despite-104420185", - "pubDate": "Fri, 27 Oct 2023 06:30:31 -0400", - "content": "Chinese telecoms equipment maker Huawei Technologies has reported its profit inched higher in the first three quarters of this year despite persisting U.S. sanctions that have hindered both its sales and its purchases of advanced technology", - "contentSnippet": "Chinese telecoms equipment maker Huawei Technologies has reported its profit inched higher in the first three quarters of this year despite persisting U.S. sanctions that have hindered both its sales and its purchases of advanced technology", - "guid": "https://abcnews.go.com/International/wireStory/huawei-reports-revenue-inched-higher-january-september-despite-104420185", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T10:30:31.000Z" - }, - { - "title": " South Korean and US forces stage drills for 'Hamas-style' attack by North Korea", - "link": "https://abcnews.go.com/International/wireStory/south-korean-us-forces-stage-drills-reaction-hamas-104418929", - "pubDate": "Fri, 27 Oct 2023 02:50:00 -0400", - "content": "South Korean and U.S. troops have been conducting live-fire exercises to hone their ability to respond to potential “Hamas-style surprise artillery attacks” by North Korea", - "contentSnippet": "South Korean and U.S. troops have been conducting live-fire exercises to hone their ability to respond to potential \u201cHamas-style surprise artillery attacks\u201d by North Korea", - "guid": "https://abcnews.go.com/International/wireStory/south-korean-us-forces-stage-drills-reaction-hamas-104418929", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T06:50:00.000Z" - }, - { - "title": " Survivors of deadly Hurricane Otis grow desperate for food and aid amid slow government response", - "link": "https://abcnews.go.com/International/wireStory/survivors-deadly-hurricane-otis-grow-desperate-food-aid-104418657", - "pubDate": "Fri, 27 Oct 2023 01:10:21 -0400", - "content": "Survivors of the Category 5 storm that killed at least 27 people and devastated Mexico’s resort city of Acapulco are getting desperate amid a slow government assistance response", - "contentSnippet": "Survivors of the Category 5 storm that killed at least 27 people and devastated Mexico\u2019s resort city of Acapulco are getting desperate amid a slow government assistance response", - "guid": "https://abcnews.go.com/International/wireStory/survivors-deadly-hurricane-otis-grow-desperate-food-aid-104418657", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T05:10:21.000Z" - }, - { - "title": " Former Albanian prime minister accused of corruption told to report to prosecutors, stay in country", - "link": "https://abcnews.go.com/International/wireStory/former-albanian-prime-minister-accused-corruption-told-report-104389464", - "pubDate": "Thu, 26 Oct 2023 18:14:19 -0400", - "content": "An Albanian court has ruled that former prime minister Sali Berisha, who is accused of corruption, must report to prosecutors and not leave the country while his case is under investigation", - "contentSnippet": "An Albanian court has ruled that former prime minister Sali Berisha, who is accused of corruption, must report to prosecutors and not leave the country while his case is under investigation", - "guid": "https://abcnews.go.com/International/wireStory/former-albanian-prime-minister-accused-corruption-told-report-104389464", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T22:14:19.000Z" - }, - { - "title": " Serbia and Kosovo leaders break off talks without result despite EU pressure", - "link": "https://abcnews.go.com/International/wireStory/european-union-press-leaders-serbia-kosovo-set-decades-104344351", - "pubDate": "Thu, 26 Oct 2023 18:06:22 -0400", - "content": "The leaders of Serbia and Kosovo broke off talks Thursday without result, despite European Union pressure to persuade them to normalize their relations", - "contentSnippet": "The leaders of Serbia and Kosovo broke off talks Thursday without result, despite European Union pressure to persuade them to normalize their relations", - "guid": "https://abcnews.go.com/International/wireStory/european-union-press-leaders-serbia-kosovo-set-decades-104344351", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T22:06:22.000Z" - }, - { - "title": " Greenpeace urges Greece to scrap offshore gas drilling project because of impact on whales, dolphins", - "link": "https://abcnews.go.com/International/wireStory/greenpeace-urges-greece-scrap-offshore-gas-drilling-project-104385625", - "pubDate": "Thu, 26 Oct 2023 17:09:55 -0400", - "content": "Greenpeace is stepping up its appeal for Greece to abandon a deep-sea gas exploration project in the Mediterranean", - "contentSnippet": "Greenpeace is stepping up its appeal for Greece to abandon a deep-sea gas exploration project in the Mediterranean", - "guid": "https://abcnews.go.com/International/wireStory/greenpeace-urges-greece-scrap-offshore-gas-drilling-project-104385625", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T21:09:55.000Z" - }, - { - "title": " Mar\u00eda Corina Machado is winner of Venezuela opposition primary that the government has denounced", - "link": "https://abcnews.go.com/International/wireStory/maria-corina-machado-winner-venezuela-opposition-primary-government-104351778", - "pubDate": "Thu, 26 Oct 2023 16:30:23 -0400", - "content": "Venezuelan government critic María Corina Machado has been declared the winner of an opposition-organized primary to choose a presidential candidate in polling last weekend that has been denounced by the socialist government as illegitimate", - "contentSnippet": "Venezuelan government critic Mar\u00eda Corina Machado has been declared the winner of an opposition-organized primary to choose a presidential candidate in polling last weekend that has been denounced by the socialist government as illegitimate", - "guid": "https://abcnews.go.com/International/wireStory/maria-corina-machado-winner-venezuela-opposition-primary-government-104351778", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T20:30:23.000Z" - }, - { - "title": " Many Israelis are furious at their government's chaotic recovery efforts after Hamas attack", - "link": "https://abcnews.go.com/International/wireStory/israelis-furious-governments-chaotic-recovery-efforts-after-hamas-104356154", - "pubDate": "Thu, 26 Oct 2023 16:06:37 -0400", - "content": "More than two weeks after Hamas' attack, many Israelis are furious at Prime Minister Benjamin Netanyahu’s government, not just for failing to prevent the initial attack, but for failing to come to their aid afterward", - "contentSnippet": "More than two weeks after Hamas' attack, many Israelis are furious at Prime Minister Benjamin Netanyahu\u2019s government, not just for failing to prevent the initial attack, but for failing to come to their aid afterward", - "guid": "https://abcnews.go.com/International/wireStory/israelis-furious-governments-chaotic-recovery-efforts-after-hamas-104356154", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T20:06:37.000Z" - }, - { - "title": " Son of federal judge in Puerto Rico pleads guilty to killing wife after winning new trial", - "link": "https://abcnews.go.com/International/wireStory/son-federal-judge-puerto-rico-pleads-guilty-killing-104367600", - "pubDate": "Thu, 26 Oct 2023 13:57:53 -0400", - "content": "The son of a federal judge who was convicted of killing his wife more than a decade ago has pleaded guilty to second-degree murder in a retrial", - "contentSnippet": "The son of a federal judge who was convicted of killing his wife more than a decade ago has pleaded guilty to second-degree murder in a retrial", - "guid": "https://abcnews.go.com/International/wireStory/son-federal-judge-puerto-rico-pleads-guilty-killing-104367600", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T17:57:53.000Z" - }, - { - "title": " Spain considers using military barracks to house migrants amid uptick in arrivals by boat", - "link": "https://abcnews.go.com/International/wireStory/spain-considers-military-barracks-house-migrants-amid-uptick-104362506", - "pubDate": "Thu, 26 Oct 2023 13:02:03 -0400", - "content": "Spanish authorities are planning to convert unused military barracks and installations into temporary shelters for migrants to deal with the increased arrival of thousands of people by boat to the Canary islands", - "contentSnippet": "Spanish authorities are planning to convert unused military barracks and installations into temporary shelters for migrants to deal with the increased arrival of thousands of people by boat to the Canary islands", - "guid": "https://abcnews.go.com/International/wireStory/spain-considers-military-barracks-house-migrants-amid-uptick-104362506", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T17:02:03.000Z" - }, - { - "title": " Priest kicked out of Jesuits for alleged abuse of women welcomed into Slovenia diocese", - "link": "https://abcnews.go.com/International/wireStory/priest-kicked-jesuits-alleged-abuse-women-welcomed-slovenia-104347121", - "pubDate": "Thu, 26 Oct 2023 12:54:22 -0400", - "content": "A famous priest-artist who was thrown out of the Jesuits after being accused of sexual, spiritual and psychological abuse of women has been accepted into a diocese in his native Slovenia", - "contentSnippet": "A famous priest-artist who was thrown out of the Jesuits after being accused of sexual, spiritual and psychological abuse of women has been accepted into a diocese in his native Slovenia", - "guid": "https://abcnews.go.com/International/wireStory/priest-kicked-jesuits-alleged-abuse-women-welcomed-slovenia-104347121", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T16:54:22.000Z" - }, - { - "title": " Taliban free Afghan activist arrested after campaigning for girls\u2019 education", - "link": "https://abcnews.go.com/International/wireStory/taliban-free-afghan-activist-arrested-7-months-ago-104347074", - "pubDate": "Thu, 26 Oct 2023 12:06:30 -0400", - "content": "A nonprofit organization in Afghanistan says the Taliban have freed an activist who campaigned for the education of girls", - "contentSnippet": "A nonprofit organization in Afghanistan says the Taliban have freed an activist who campaigned for the education of girls", - "guid": "https://abcnews.go.com/International/wireStory/taliban-free-afghan-activist-arrested-7-months-ago-104347074", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T16:06:30.000Z" - }, - { - "title": " Pakistan\u2019s ex-leader Nawaz Sharif regains right to appeal convictions, opening a path to election", - "link": "https://abcnews.go.com/International/wireStory/pakistans-leader-nawaz-sharif-regains-appeal-convictions-opening-104351760", - "pubDate": "Thu, 26 Oct 2023 10:46:40 -0400", - "content": "A federal court in Pakistan’s capital has restored the appeals of the country’s former Prime Minister Nawaz Sharif against his 2018 convictions in graft cases", - "contentSnippet": "A federal court in Pakistan\u2019s capital has restored the appeals of the country\u2019s former Prime Minister Nawaz Sharif against his 2018 convictions in graft cases", - "guid": "https://abcnews.go.com/International/wireStory/pakistans-leader-nawaz-sharif-regains-appeal-convictions-opening-104351760", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T14:46:40.000Z" - }, - { - "title": " Palestinian activist is expelled by Israeli forces from his home in a volatile West Bank city", - "link": "https://abcnews.go.com/International/wireStory/palestinian-activist-expelled-israeli-forces-home-volatile-west-104351229", - "pubDate": "Thu, 26 Oct 2023 10:38:46 -0400", - "content": "Israel has expelled a prominent Palestinian activist from his home in a West Bank city at the heart of the Israeli-Palestinian conflict after he hosted a foreign journalist and a prominent Israeli activist", - "contentSnippet": "Israel has expelled a prominent Palestinian activist from his home in a West Bank city at the heart of the Israeli-Palestinian conflict after he hosted a foreign journalist and a prominent Israeli activist", - "guid": "https://abcnews.go.com/International/wireStory/palestinian-activist-expelled-israeli-forces-home-volatile-west-104351229", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T14:38:46.000Z" - }, - { - "title": " Greek army destroys World War II bomb found during excavation for luxury development near Athens", - "link": "https://abcnews.go.com/International/wireStory/greek-army-destroys-world-war-ii-bomb-found-104348783", - "pubDate": "Thu, 26 Oct 2023 09:42:09 -0400", - "content": "Greek army specialists have destroyed an unexploded World War II bomb discovered during work on a massive urban development project at a coastal area south of Athens", - "contentSnippet": "Greek army specialists have destroyed an unexploded World War II bomb discovered during work on a massive urban development project at a coastal area south of Athens", - "guid": "https://abcnews.go.com/International/wireStory/greek-army-destroys-world-war-ii-bomb-found-104348783", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T13:42:09.000Z" - }, - { - "title": " Swedish court acquits Russian-born businessman of spying for Moscow", - "link": "https://abcnews.go.com/International/wireStory/swedish-court-acquits-russian-born-businessman-spying-moscow-104344012", - "pubDate": "Thu, 26 Oct 2023 09:05:20 -0400", - "content": "A Russian-born Swedish businessman has been acquitted of collecting information for Russia's military intelligence service, the GRU, for almost a decade", - "contentSnippet": "A Russian-born Swedish businessman has been acquitted of collecting information for Russia's military intelligence service, the GRU, for almost a decade", - "guid": "https://abcnews.go.com/International/wireStory/swedish-court-acquits-russian-born-businessman-spying-moscow-104344012", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T13:05:20.000Z" - }, - { - "title": " American indicted on murder charges over attack on 2 US tourists near German castle", - "link": "https://abcnews.go.com/International/wireStory/american-man-indicted-murder-charges-attack-2-us-104343911", - "pubDate": "Thu, 26 Oct 2023 08:48:35 -0400", - "content": "Prosecutors say an American man has been charged with murder and other offenses for attacking two women from the U.S. near Neuschwanstein castle in Germany in June and pushing them into a ravine", - "contentSnippet": "Prosecutors say an American man has been charged with murder and other offenses for attacking two women from the U.S. near Neuschwanstein castle in Germany in June and pushing them into a ravine", - "guid": "https://abcnews.go.com/International/wireStory/american-man-indicted-murder-charges-attack-2-us-104343911", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T12:48:35.000Z" - }, - { - "title": " Business owners in a Ukrainian front-line city adapt even as 'a missile can come at any moment'", - "link": "https://abcnews.go.com/International/wireStory/business-owners-ukrainian-front-line-city-adapt-missile-104338295", - "pubDate": "Thu, 26 Oct 2023 00:22:21 -0400", - "content": "Russia's deadly attack on a beloved pizzeria in eastern Ukraine in June was painful for residents", - "contentSnippet": "Russia's deadly attack on a beloved pizzeria in eastern Ukraine in June was painful for residents", - "guid": "https://abcnews.go.com/International/wireStory/business-owners-ukrainian-front-line-city-adapt-missile-104338295", - "categories": [ - "International" - ], - "isoDate": "2023-10-26T04:22:21.000Z" - }, - { - "title": " EU summit turns its eyes away from Ukraine despite a commitment to stay the course with Zelenskyy", - "link": "https://abcnews.go.com/International/wireStory/eu-summit-turns-eyes-ukraine-despite-commitment-stay-104428486", - "pubDate": "Fri, 27 Oct 2023 11:42:22 -0400", - "content": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", - "contentSnippet": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", - "guid": "https://abcnews.go.com/International/wireStory/eu-summit-turns-eyes-ukraine-despite-commitment-stay-104428486", - "categories": [ - "International" - ], - "isoDate": "2023-10-27T15:42:22.000Z" - } -] \ No newline at end of file + { + "title": " What to know about the Sikh independence movement following US accusation that activist was targeted", + "link": "https://abcnews.go.com/International/wireStory/sikh-independence-movement-us-accusation-activist-targeted-105281280", + "pubDate": "Thu, 30 Nov 2023 17:54:23 -0500", + "content": "The U.S. has charged an Indian national in what prosecutors allege was a failed plot to assassinate a Sikh separatist at the behest of an unnamed Indian government official", + "contentSnippet": "The U.S. has charged an Indian national in what prosecutors allege was a failed plot to assassinate a Sikh separatist at the behest of an unnamed Indian government official", + "guid": "https://abcnews.go.com/International/wireStory/sikh-independence-movement-us-accusation-activist-targeted-105281280", + "categories": ["International"], + "isoDate": "2023-11-30T22:54:23.000Z" + }, + { + "title": " Some OPEC+ members will cut the oil that they send to the world to try to boost prices", + "link": "https://abcnews.go.com/International/wireStory/opec-suppliers-struggle-agree-cuts-oil-production-prices-105264109", + "pubDate": "Thu, 30 Nov 2023 15:46:20 -0500", + "content": "The OPEC oil cartel and allied producers have made another big swipe at propping up lagging crude prices", + "contentSnippet": "The OPEC oil cartel and allied producers have made another big swipe at propping up lagging crude prices", + "guid": "https://abcnews.go.com/International/wireStory/opec-suppliers-struggle-agree-cuts-oil-production-prices-105264109", + "categories": ["International"], + "isoDate": "2023-11-30T20:46:20.000Z" + }, + { + "title": " Japan suspends its Osprey flights after the fatal crash of a US Air Force aircraft", + "link": "https://abcnews.go.com/International/wireStory/japan-plans-suspend-osprey-flights-after-fatal-us-105260732", + "pubDate": "Thu, 30 Nov 2023 15:38:40 -0500", + "content": "Japan has suspended flights of its Osprey aircraft after a U.S. Air Force Osprey based in Japan crashed into the sea during a training mission", + "contentSnippet": "Japan has suspended flights of its Osprey aircraft after a U.S. Air Force Osprey based in Japan crashed into the sea during a training mission", + "guid": "https://abcnews.go.com/International/wireStory/japan-plans-suspend-osprey-flights-after-fatal-us-105260732", + "categories": ["International"], + "isoDate": "2023-11-30T20:38:40.000Z" + }, + { + "title": " 4 migrants who were pushed out of a boat die just yards from Spain's southern coast", + "link": "https://abcnews.go.com/International/wireStory/migrants-pushed-boat-die-yards-spains-southern-coast-105267075", + "pubDate": "Thu, 30 Nov 2023 12:10:26 -0500", + "content": "Four migrants have died yards from shore in southern Spain after being forced out of the boat they were traveling in", + "contentSnippet": "Four migrants have died yards from shore in southern Spain after being forced out of the boat they were traveling in", + "guid": "https://abcnews.go.com/International/wireStory/migrants-pushed-boat-die-yards-spains-southern-coast-105267075", + "categories": ["International"], + "isoDate": "2023-11-30T17:10:26.000Z" + }, + { + "title": " Russian missile strikes in eastern Ukraine tear through buildings and bury families", + "link": "https://abcnews.go.com/International/wireStory/russian-missile-strikes-eastern-ukraine-tear-buildings-bury-105266364", + "pubDate": "Thu, 30 Nov 2023 11:06:19 -0500", + "content": "Ukrainian officials say Russian missiles tore through apartments in Donetsk.", + "contentSnippet": "Ukrainian officials say Russian missiles tore through apartments in Donetsk.", + "guid": "https://abcnews.go.com/International/wireStory/russian-missile-strikes-eastern-ukraine-tear-buildings-bury-105266364", + "categories": ["International"], + "isoDate": "2023-11-30T16:06:19.000Z" + }, + { + "title": " Russia\u2019s Supreme Court effectively outlaws LGBTQ+ activism in the country in a broad crackdown on beleaguered community", + "link": "https://abcnews.go.com/International/wireStory/russias-supreme-court-effectively-outlaws-lgbtq-activism-country-105267078", + "pubDate": "Thu, 30 Nov 2023 08:29:52 -0500", + "content": "Russia’s Supreme Court effectively outlaws LGBTQ+ activism in the country in a broad crackdown on beleaguered community", + "contentSnippet": "Russia\u2019s Supreme Court effectively outlaws LGBTQ+ activism in the country in a broad crackdown on beleaguered community", + "guid": "https://abcnews.go.com/International/wireStory/russias-supreme-court-effectively-outlaws-lgbtq-activism-country-105267078", + "categories": ["International"], + "isoDate": "2023-11-30T13:29:52.000Z" + }, + { + "title": " Somali maritime police intensify patrols as fears grow of resurgence of piracy in the Gulf of Aden", + "link": "https://abcnews.go.com/International/wireStory/somali-maritime-police-intensify-patrols-fears-grow-resurgence-105265260", + "pubDate": "Thu, 30 Nov 2023 07:54:20 -0500", + "content": "Somalia’s maritime police force has intensified patrols in the Gulf of Aden following a failed pirate hijacking of a ship earlier this week", + "contentSnippet": "Somalia\u2019s maritime police force has intensified patrols in the Gulf of Aden following a failed pirate hijacking of a ship earlier this week", + "guid": "https://abcnews.go.com/International/wireStory/somali-maritime-police-intensify-patrols-fears-grow-resurgence-105265260", + "categories": ["International"], + "isoDate": "2023-11-30T12:54:20.000Z" + }, + { + "title": " Pope says he has acute bronchitis, doctors recommended against travel to avoid change in temperature", + "link": "https://abcnews.go.com/International/wireStory/pope-acute-bronchitis-doctors-recommended-travel-avoid-change-105267975", + "pubDate": "Thu, 30 Nov 2023 07:46:40 -0500", + "content": "Pope Francis says he is suffering from acute and infectious bronchitis", + "contentSnippet": "Pope Francis says he is suffering from acute and infectious bronchitis", + "guid": "https://abcnews.go.com/International/wireStory/pope-acute-bronchitis-doctors-recommended-travel-avoid-change-105267975", + "categories": ["International"], + "isoDate": "2023-11-30T12:46:40.000Z" + }, + { + "title": " South African company to start making vaginal rings that protect against HIV", + "link": "https://abcnews.go.com/International/wireStory/south-african-company-start-making-vaginal-rings-protect-105260203", + "pubDate": "Wed, 29 Nov 2023 21:22:24 -0500", + "content": "A South African company will make vaginal rings that protect against HIV, which AIDS experts say should eventually make them cheaper and more readily available", + "contentSnippet": "A South African company will make vaginal rings that protect against HIV, which AIDS experts say should eventually make them cheaper and more readily available", + "guid": "https://abcnews.go.com/International/wireStory/south-african-company-start-making-vaginal-rings-protect-105260203", + "categories": ["International"], + "isoDate": "2023-11-30T02:22:24.000Z" + }, + { + "title": " UK's Sunak ramps up criticism of Greek leader in Parthenon Marbles spat", + "link": "https://abcnews.go.com/International/wireStory/uks-sunak-ramps-criticism-greek-leader-parthenon-marbles-105237550", + "pubDate": "Wed, 29 Nov 2023 19:54:32 -0500", + "content": "British Prime Minister Rishi Sunak has escalated his war of words with the leader of Greece", + "contentSnippet": "British Prime Minister Rishi Sunak has escalated his war of words with the leader of Greece", + "guid": "https://abcnews.go.com/International/wireStory/uks-sunak-ramps-criticism-greek-leader-parthenon-marbles-105237550", + "categories": ["International"], + "isoDate": "2023-11-30T00:54:32.000Z" + }, + { + "title": " Nigeria's leader presents a $34 billion spending plan that prioritizes the economy and security", + "link": "https://abcnews.go.com/International/wireStory/nigerias-leader-presents-34-billion-spending-plan-2024-105242271", + "pubDate": "Wed, 29 Nov 2023 14:34:19 -0500", + "content": "Nigeria’s leader has presented a $34.8 billion spending plan for 2024 to federal lawmakers with a focus on stabilizing Africa’s largest but ailing economy and tackling a deadly security crisis", + "contentSnippet": "Nigeria\u2019s leader has presented a $34.8 billion spending plan for 2024 to federal lawmakers with a focus on stabilizing Africa\u2019s largest but ailing economy and tackling a deadly security crisis", + "guid": "https://abcnews.go.com/International/wireStory/nigerias-leader-presents-34-billion-spending-plan-2024-105242271", + "categories": ["International"], + "isoDate": "2023-11-29T19:34:19.000Z" + }, + { + "title": " Venezuela's planned vote over territory dispute leaves Guyana residents on edge", + "link": "https://abcnews.go.com/International/wireStory/venezuelas-planned-vote-territory-dispute-leaves-guyana-residents-105238454", + "pubDate": "Wed, 29 Nov 2023 13:14:06 -0500", + "content": "Congregants of an Anglican church in a sparsely populated rainforest village in Guyana are asking for peace for their community amid what they see as an existential threat", + "contentSnippet": "Congregants of an Anglican church in a sparsely populated rainforest village in Guyana are asking for peace for their community amid what they see as an existential threat", + "guid": "https://abcnews.go.com/International/wireStory/venezuelas-planned-vote-territory-dispute-leaves-guyana-residents-105238454", + "categories": ["International"], + "isoDate": "2023-11-29T18:14:06.000Z" + }, + { + "title": " German authorities arrest a 15-year-old on suspicion of planning an attack", + "link": "https://abcnews.go.com/International/wireStory/german-authorities-arrest-15-year-suspicion-planning-attack-105241479", + "pubDate": "Wed, 29 Nov 2023 12:01:55 -0500", + "content": "German authorities arrested a boy, 15, on suspicion of planning a terror attack.", + "contentSnippet": "German authorities arrested a boy, 15, on suspicion of planning a terror attack.", + "guid": "https://abcnews.go.com/International/wireStory/german-authorities-arrest-15-year-suspicion-planning-attack-105241479", + "categories": ["International"], + "isoDate": "2023-11-29T17:01:55.000Z" + }, + { + "title": " Three teenagers injured in knife attack at a high school in Poland", + "link": "https://abcnews.go.com/International/wireStory/teenagers-injured-knife-attack-high-school-poland-105240000", + "pubDate": "Wed, 29 Nov 2023 10:26:58 -0500", + "content": "The 18-year-old attacker has been apprehended.", + "contentSnippet": "The 18-year-old attacker has been apprehended.", + "guid": "https://abcnews.go.com/International/wireStory/teenagers-injured-knife-attack-high-school-poland-105240000", + "categories": ["International"], + "isoDate": "2023-11-29T15:26:58.000Z" + }, + { + "title": " Opposition protesters in Kosovo use flares and tear gas to protest against a war crimes court", + "link": "https://abcnews.go.com/International/wireStory/opposition-protesters-kosovo-flares-tear-gas-protest-war-105239977", + "pubDate": "Wed, 29 Nov 2023 10:26:05 -0500", + "content": "Opposition protesters in Kosovo have used flares and tear gas to protest against a senior war crimes court official in the capital", + "contentSnippet": "Opposition protesters in Kosovo have used flares and tear gas to protest against a senior war crimes court official in the capital", + "guid": "https://abcnews.go.com/International/wireStory/opposition-protesters-kosovo-flares-tear-gas-protest-war-105239977", + "categories": ["International"], + "isoDate": "2023-11-29T15:26:05.000Z" + }, + { + "title": " South Africa march demands a permanent Gaza cease-fire on day of solidarity with Palestinians", + "link": "https://abcnews.go.com/International/wireStory/south-africa-march-demands-permanent-gaza-cease-fire-105239611", + "pubDate": "Wed, 29 Nov 2023 10:10:37 -0500", + "content": "Members of South African political parties, civil society organisations and other supporters have marched through the streets of Johannesburg demanding a permanent cease-fire in Gaza as they marked the International Day of Solidarity with the Palestini...", + "contentSnippet": "Members of South African political parties, civil society organisations and other supporters have marched through the streets of Johannesburg demanding a permanent cease-fire in Gaza as they marked the International Day of Solidarity with the Palestini...", + "guid": "https://abcnews.go.com/International/wireStory/south-africa-march-demands-permanent-gaza-cease-fire-105239611", + "categories": ["International"], + "isoDate": "2023-11-29T15:10:37.000Z" + }, + { + "title": " Mali's government will probe Tuareg rebel leaders as crucial 2015 peace deal appears to crumble", + "link": "https://abcnews.go.com/International/wireStory/malis-governmnet-probe-ethnic-rebel-leaders-suggesting-collapse-105237002", + "pubDate": "Wed, 29 Nov 2023 09:46:20 -0500", + "content": "Mali’s military government has announced an investigation into the Tuareg rebel leaders who signed a peace agreement in 2015 and now accuse the government of failing to comply with it", + "contentSnippet": "Mali\u2019s military government has announced an investigation into the Tuareg rebel leaders who signed a peace agreement in 2015 and now accuse the government of failing to comply with it", + "guid": "https://abcnews.go.com/International/wireStory/malis-governmnet-probe-ethnic-rebel-leaders-suggesting-collapse-105237002", + "categories": ["International"], + "isoDate": "2023-11-29T14:46:20.000Z" + }, + { + "title": " A special court has cleared France\u2019s justice minister in an unprecedented conflict of interest case", + "link": "https://abcnews.go.com/International/wireStory/special-court-cleared-frances-justice-minister-unprecedented-conflict-105238457", + "pubDate": "Wed, 29 Nov 2023 09:38:08 -0500", + "content": "A special court has cleared France’s justice minister in an unprecedented conflict of interest case", + "contentSnippet": "A special court has cleared France\u2019s justice minister in an unprecedented conflict of interest case", + "guid": "https://abcnews.go.com/International/wireStory/special-court-cleared-frances-justice-minister-unprecedented-conflict-105238457", + "categories": ["International"], + "isoDate": "2023-11-29T14:38:08.000Z" + }, + { + "title": " At least 40 civilians killed by al-Qaida-linked rebels in a Burkina Faso town: UN", + "link": "https://abcnews.go.com/International/wireStory/40-civilians-killed-al-qaida-linked-rebels-burkina-105235689", + "pubDate": "Wed, 29 Nov 2023 09:18:54 -0500", + "content": "The United Nations' rights office says at least 40 civilians were killed last weekend by al-Qaida-linked rebels trying to take control of a besieged town in Burkina Faso’s hard-hit northern region", + "contentSnippet": "The United Nations' rights office says at least 40 civilians were killed last weekend by al-Qaida-linked rebels trying to take control of a besieged town in Burkina Faso\u2019s hard-hit northern region", + "guid": "https://abcnews.go.com/International/wireStory/40-civilians-killed-al-qaida-linked-rebels-burkina-105235689", + "categories": ["International"], + "isoDate": "2023-11-29T14:18:54.000Z" + }, + { + "title": " Pakistan acquits ex-Premier Nawaz Sharif in a graft case", + "link": "https://abcnews.go.com/International/wireStory/pakistan-acquits-premier-nawaz-sharif-graft-case-now-105237548", + "pubDate": "Wed, 29 Nov 2023 09:02:04 -0500", + "content": "A Pakistani court has acquitted former Prime Minister Nawaz Sharif in a graft case, removing a major obstacle for him to run in parliamentary elections in February", + "contentSnippet": "A Pakistani court has acquitted former Prime Minister Nawaz Sharif in a graft case, removing a major obstacle for him to run in parliamentary elections in February", + "guid": "https://abcnews.go.com/International/wireStory/pakistan-acquits-premier-nawaz-sharif-graft-case-now-105237548", + "categories": ["International"], + "isoDate": "2023-11-29T14:02:04.000Z" + }, + { + "title": " Sweden's economy shrinks in the third quarter to signal that a recession may have hit the country", + "link": "https://abcnews.go.com/International/wireStory/swedens-economy-shrinks-quarter-signal-recession-hit-country-105234439", + "pubDate": "Wed, 29 Nov 2023 05:46:34 -0500", + "content": "Sweden’s economy shrank in the third quarter of 2023 to mark the second time of contraction and signal that a recession may have hit the country", + "contentSnippet": "Sweden\u2019s economy shrank in the third quarter of 2023 to mark the second time of contraction and signal that a recession may have hit the country", + "guid": "https://abcnews.go.com/International/wireStory/swedens-economy-shrinks-quarter-signal-recession-hit-country-105234439", + "categories": ["International"], + "isoDate": "2023-11-29T10:46:34.000Z" + }, + { + "title": " Australia proposes new laws to detain potentially dangerous migrants", + "link": "https://abcnews.go.com/International/wireStory/australia-proposes-new-laws-detain-potentially-dangerous-migrants-105233224", + "pubDate": "Wed, 29 Nov 2023 04:06:05 -0500", + "content": "The Australian government has proposed new laws that would place behind bars some of the 141 migrants who have been set free in the three weeks since the High Court ruled their indefinite detention was unconstitutional", + "contentSnippet": "The Australian government has proposed new laws that would place behind bars some of the 141 migrants who have been set free in the three weeks since the High Court ruled their indefinite detention was unconstitutional", + "guid": "https://abcnews.go.com/International/wireStory/australia-proposes-new-laws-detain-potentially-dangerous-migrants-105233224", + "categories": ["International"], + "isoDate": "2023-11-29T09:06:05.000Z" + }, + { + "title": " Myanmar and China conduct naval drills together as fighting surges in border area", + "link": "https://abcnews.go.com/International/wireStory/myanmar-china-conduct-naval-drills-fighting-surges-border-105233316", + "pubDate": "Wed, 29 Nov 2023 04:04:30 -0500", + "content": "Myanmar and China are conducting naval drills together as the military government in the Southeast Asian nation loses ground in the northeast to a coalition of armed ethnic militias that also has strong ties to Beijing", + "contentSnippet": "Myanmar and China are conducting naval drills together as the military government in the Southeast Asian nation loses ground in the northeast to a coalition of armed ethnic militias that also has strong ties to Beijing", + "guid": "https://abcnews.go.com/International/wireStory/myanmar-china-conduct-naval-drills-fighting-surges-border-105233316", + "categories": ["International"], + "isoDate": "2023-11-29T09:04:30.000Z" + }, + { + "title": " Coal power, traffic, waste burning a toxic smog cocktail in Indonesia's Jakarta", + "link": "https://abcnews.go.com/International/wireStory/coal-power-traffic-waste-burning-toxic-smog-cocktail-105230189", + "pubDate": "Tue, 28 Nov 2023 23:46:24 -0500", + "content": "Pollution is causing respiratory illnesses and deaths to rise in Indonesia's island of Java, including the capital, Jakarta", + "contentSnippet": "Pollution is causing respiratory illnesses and deaths to rise in Indonesia's island of Java, including the capital, Jakarta", + "guid": "https://abcnews.go.com/International/wireStory/coal-power-traffic-waste-burning-toxic-smog-cocktail-105230189", + "categories": ["International"], + "isoDate": "2023-11-29T04:46:24.000Z" + }, + { + "title": " Australia apologizes for thalidomide tragedy as some survivors listen in the Parliament gallery", + "link": "https://abcnews.go.com/International/wireStory/australia-apologizes-thalidomide-tragedy-survivors-listen-parliament-gallery-105229914", + "pubDate": "Tue, 28 Nov 2023 22:02:21 -0500", + "content": "Survivors of the harmful morning sickness drug thalidomide were in the public gallery when Australia’s Parliament made a national apology for what was described as one of the darkest chapters in Australia’s medical history", + "contentSnippet": "Survivors of the harmful morning sickness drug thalidomide were in the public gallery when Australia\u2019s Parliament made a national apology for what was described as one of the darkest chapters in Australia\u2019s medical history", + "guid": "https://abcnews.go.com/International/wireStory/australia-apologizes-thalidomide-tragedy-survivors-listen-parliament-gallery-105229914", + "categories": ["International"], + "isoDate": "2023-11-29T03:02:21.000Z" + }, + { + "title": " Still alive! Golden mole not seen for 80 years and presumed extinct is found again in South Africa", + "link": "https://abcnews.go.com/International/wireStory/alive-golden-mole-80-years-presumed-extinct-found-105267972", + "pubDate": "Thu, 30 Nov 2023 20:34:29 -0500", + "content": "Researchers in South Africa say they have rediscovered a mole species that has an iridescent golden coat and the ability to “swim” through sand dunes after it hadn't been seen for more than 80 years and was thought to be extinct", + "contentSnippet": "Researchers in South Africa say they have rediscovered a mole species that has an iridescent golden coat and the ability to \u201cswim\u201d through sand dunes after it hadn't been seen for more than 80 years and was thought to be extinct", + "guid": "https://abcnews.go.com/International/wireStory/alive-golden-mole-80-years-presumed-extinct-found-105267972", + "categories": ["International"], + "isoDate": "2023-12-01T01:34:29.000Z" + }, + { + "title": " Live updates | Live updates | Eight Israeli hostages are released during extended truce", + "link": "https://abcnews.go.com/International/wireStory/live-updates-live-updates-israeli-hostages-released-extended-105293255", + "pubDate": "Thu, 30 Nov 2023 20:18:29 -0500", + "content": "The Israeli military says a total of eight Israeli hostages have been released from captivity in the Gaza Strip", + "contentSnippet": "The Israeli military says a total of eight Israeli hostages have been released from captivity in the Gaza Strip", + "guid": "https://abcnews.go.com/International/wireStory/live-updates-live-updates-israeli-hostages-released-extended-105293255", + "categories": ["International"], + "isoDate": "2023-12-01T01:18:29.000Z" + }, + { + "title": " Live updates | Two Israeli hostages are released after Hamas and Israel extend their cease-fire", + "link": "https://abcnews.go.com/International/wireStory/live-updates-israel-hamas-agree-extend-cease-fire-105264642", + "pubDate": "Thu, 30 Nov 2023 14:58:22 -0500", + "content": "A temporary cease-fire in the Israel-Hamas war has been extended another day", + "contentSnippet": "A temporary cease-fire in the Israel-Hamas war has been extended another day", + "guid": "https://abcnews.go.com/International/wireStory/live-updates-israel-hamas-agree-extend-cease-fire-105264642", + "categories": ["International"], + "isoDate": "2023-11-30T19:58:22.000Z" + }, + { + "title": " Paraguay official resigns after signing agreement with fictional country", + "link": "https://abcnews.go.com/International/wireStory/paraguay-official-resigns-after-signing-agreement-fictional-country-105281655", + "pubDate": "Thu, 30 Nov 2023 14:34:05 -0500", + "content": "A Paraguayan government official has been replaced after it was revealed that he signed a memorandum of understanding with representatives of a fugitive Indian guru’s fictional country, who also appear to have duped several local officials in the South...", + "contentSnippet": "A Paraguayan government official has been replaced after it was revealed that he signed a memorandum of understanding with representatives of a fugitive Indian guru\u2019s fictional country, who also appear to have duped several local officials in the South...", + "guid": "https://abcnews.go.com/International/wireStory/paraguay-official-resigns-after-signing-agreement-fictional-country-105281655", + "categories": ["International"], + "isoDate": "2023-11-30T19:34:05.000Z" + }, + { + "title": " Ex-UK Treasury chief Alistair Darling, who steered nation through credit crunch, dies", + "link": "https://abcnews.go.com/International/wireStory/former-uk-treasury-chief-alistair-darling-steered-nation-105271278", + "pubDate": "Thu, 30 Nov 2023 13:14:19 -0500", + "content": "British ex-Treasury chief Alistair Darling has died at age 70", + "contentSnippet": "British ex-Treasury chief Alistair Darling has died at age 70", + "guid": "https://abcnews.go.com/International/wireStory/former-uk-treasury-chief-alistair-darling-steered-nation-105271278", + "categories": ["International"], + "isoDate": "2023-11-30T18:14:19.000Z" + }, + { + "title": " Greek author Vassilis Vassilikos, whose political novel inspired film 'Z,' dies at 89", + "link": "https://abcnews.go.com/International/wireStory/greek-author-vassilis-vassilikos-political-inspired-award-winning-105276637", + "pubDate": "Thu, 30 Nov 2023 12:13:35 -0500", + "content": "Greek novelist Vassilis Vassilikos, whose political book “Z” inspired the Academy Award-winning film of the same name, has died in Athens at age 89", + "contentSnippet": "Greek novelist Vassilis Vassilikos, whose political book \u201cZ\u201d inspired the Academy Award-winning film of the same name, has died in Athens at age 89", + "guid": "https://abcnews.go.com/International/wireStory/greek-author-vassilis-vassilikos-political-inspired-award-winning-105276637", + "categories": ["International"], + "isoDate": "2023-11-30T17:13:35.000Z" + }, + { + "title": " Rights of Dane convicted of murdering a journalist on sub were not violated in prison, court rules", + "link": "https://abcnews.go.com/International/wireStory/human-rights-danish-killer-violated-prison-banned-letters-105271652", + "pubDate": "Thu, 30 Nov 2023 10:42:20 -0500", + "content": "A Danish court has ruled that the human rights of a Danish man who was convicted of murdering a Swedish journalist on his homemade submarine were not violated as he had claimed", + "contentSnippet": "A Danish court has ruled that the human rights of a Danish man who was convicted of murdering a Swedish journalist on his homemade submarine were not violated as he had claimed", + "guid": "https://abcnews.go.com/International/wireStory/human-rights-danish-killer-violated-prison-banned-letters-105271652", + "categories": ["International"], + "isoDate": "2023-11-30T15:42:20.000Z" + }, + { + "title": " The Israeli military says two more Israeli hostages have been released from captivity in the Gaza Strip", + "link": "https://abcnews.go.com/International/wireStory/israeli-military-israeli-hostages-released-captivity-gaza-strip-105272244", + "pubDate": "Thu, 30 Nov 2023 10:42:04 -0500", + "content": "The Israeli military says two more Israeli hostages have been released from captivity in the Gaza Strip", + "contentSnippet": "The Israeli military says two more Israeli hostages have been released from captivity in the Gaza Strip", + "guid": "https://abcnews.go.com/International/wireStory/israeli-military-israeli-hostages-released-captivity-gaza-strip-105272244", + "categories": ["International"], + "isoDate": "2023-11-30T15:42:04.000Z" + }, + { + "title": " Hungary will not agree to starting EU membership talks with Ukraine, minister says", + "link": "https://abcnews.go.com/International/wireStory/hungary-agree-starting-eu-membership-talks-ukraine-minister-105270654", + "pubDate": "Thu, 30 Nov 2023 09:14:28 -0500", + "content": "The chief of staff to Hungarian Prime Minister Viktor Orbán says Hungary will not support any European Union proposal to begin talks on making Ukraine a member of the bloc", + "contentSnippet": "The chief of staff to Hungarian Prime Minister Viktor Orb\u00e1n says Hungary will not support any European Union proposal to begin talks on making Ukraine a member of the bloc", + "guid": "https://abcnews.go.com/International/wireStory/hungary-agree-starting-eu-membership-talks-ukraine-minister-105270654", + "categories": ["International"], + "isoDate": "2023-11-30T14:14:28.000Z" + }, + { + "title": " Four arrested in death of Pakistani woman after a photo with her boyfriend went viral", + "link": "https://abcnews.go.com/International/wireStory/pakistan-police-arrest-4-men-death-woman-after-105269126", + "pubDate": "Thu, 30 Nov 2023 08:42:03 -0500", + "content": "Police in Pakistan have arrested four people who allegedly killed an 18-year-old woman in the purported name of honor after a picture of her sitting with a boyfriend went viral on social media", + "contentSnippet": "Police in Pakistan have arrested four people who allegedly killed an 18-year-old woman in the purported name of honor after a picture of her sitting with a boyfriend went viral on social media", + "guid": "https://abcnews.go.com/International/wireStory/pakistan-police-arrest-4-men-death-woman-after-105269126", + "categories": ["International"], + "isoDate": "2023-11-30T13:42:03.000Z" + }, + { + "title": " A Pakistani province aims to deport 10,000 Afghans a day", + "link": "https://abcnews.go.com/International/wireStory/pakistani-province-aims-deport-10000-afghans-day-105266816", + "pubDate": "Thu, 30 Nov 2023 08:10:34 -0500", + "content": "Authorities in a Pakistani province are setting targets for police to arrest and deport hundreds of thousands of Afghans they say are in the country illegally", + "contentSnippet": "Authorities in a Pakistani province are setting targets for police to arrest and deport hundreds of thousands of Afghans they say are in the country illegally", + "guid": "https://abcnews.go.com/International/wireStory/pakistani-province-aims-deport-10000-afghans-day-105266816", + "categories": ["International"], + "isoDate": "2023-11-30T13:10:34.000Z" + }, + { + "title": " South Korean farmers rally to protest proposed anti-dog meat legislation", + "link": "https://abcnews.go.com/International/wireStory/south-korean-farmers-rally-presidential-office-protest-proposed-105266617", + "pubDate": "Thu, 30 Nov 2023 08:02:38 -0500", + "content": "Dozens of South Korean dog farmers have scuffled with police during a rally.", + "contentSnippet": "Dozens of South Korean dog farmers have scuffled with police during a rally.", + "guid": "https://abcnews.go.com/International/wireStory/south-korean-farmers-rally-presidential-office-protest-proposed-105266617", + "categories": ["International"], + "isoDate": "2023-11-30T13:02:38.000Z" + }, + { + "title": " Germany arrests French woman who allegedly committed war crimes after joining IS in Syria", + "link": "https://abcnews.go.com/International/wireStory/germany-arrests-french-woman-allegedly-committed-war-crimes-105266724", + "pubDate": "Thu, 30 Nov 2023 07:53:54 -0500", + "content": "German authorities say they have arrested a French woman who allegedly committed war crimes in Syria after joining the Islamic State extremist group", + "contentSnippet": "German authorities say they have arrested a French woman who allegedly committed war crimes in Syria after joining the Islamic State extremist group", + "guid": "https://abcnews.go.com/International/wireStory/germany-arrests-french-woman-allegedly-committed-war-crimes-105266724", + "categories": ["International"], + "isoDate": "2023-11-30T12:53:54.000Z" + }, + { + "title": " China says US arms sales to Taiwan are turning the island into a 'powder keg'", + "link": "https://abcnews.go.com/International/wireStory/china-us-arms-sales-taiwan-turning-island-powder-105266909", + "pubDate": "Thu, 30 Nov 2023 07:38:28 -0500", + "content": "The Chinese defense ministry's top spokesperson has said that the U.S. should stop interfering in both Taiwan and the South China Sea", + "contentSnippet": "The Chinese defense ministry's top spokesperson has said that the U.S. should stop interfering in both Taiwan and the South China Sea", + "guid": "https://abcnews.go.com/International/wireStory/china-us-arms-sales-taiwan-turning-island-powder-105266909", + "categories": ["International"], + "isoDate": "2023-11-30T12:38:28.000Z" + }, + { + "title": " Inflation falls to 2.4% in November in the 20 countries using the euro currency, offering some relief to Europeans", + "link": "https://abcnews.go.com/International/wireStory/inflation-falls-24-november-20-countries-euro-currency-105266185", + "pubDate": "Thu, 30 Nov 2023 05:54:04 -0500", + "content": "Inflation falls to 2.4% in November in the 20 countries using the euro currency, offering some relief to Europeans", + "contentSnippet": "Inflation falls to 2.4% in November in the 20 countries using the euro currency, offering some relief to Europeans", + "guid": "https://abcnews.go.com/International/wireStory/inflation-falls-24-november-20-countries-euro-currency-105266185", + "categories": ["International"], + "isoDate": "2023-11-30T10:54:04.000Z" + }, + { + "title": " Colombian judge orders prison for 2 suspects in the kidnapping of parents of Liverpool soccer player", + "link": "https://abcnews.go.com/International/wireStory/colombian-judge-orders-prison-2-suspects-kidnapping-parents-105262797", + "pubDate": "Wed, 29 Nov 2023 22:34:28 -0500", + "content": "Two suspects in the kidnapping of the parents of Liverpool soccer player Luis Díaz were ordered sent to prison by a judge, according to Colombia’s Prosecutor’s Office, which accused one of the men of being the link to a person close to the family who p...", + "contentSnippet": "Two suspects in the kidnapping of the parents of Liverpool soccer player Luis D\u00edaz were ordered sent to prison by a judge, according to Colombia\u2019s Prosecutor\u2019s Office, which accused one of the men of being the link to a person close to the family who p...", + "guid": "https://abcnews.go.com/International/wireStory/colombian-judge-orders-prison-2-suspects-kidnapping-parents-105262797", + "categories": ["International"], + "isoDate": "2023-11-30T03:34:28.000Z" + }, + { + "title": " Reports say Japan will suspend its own Osprey flights after the crash of a U.S. military aircraft", + "link": "https://abcnews.go.com/International/wireStory/reports-japan-suspend-osprey-flights-after-crash-us-105260544", + "pubDate": "Wed, 29 Nov 2023 21:38:09 -0500", + "content": "Reports say Japan will suspend its own Osprey flights after the crash of a U.S. military aircraft", + "contentSnippet": "Reports say Japan will suspend its own Osprey flights after the crash of a U.S. military aircraft", + "guid": "https://abcnews.go.com/International/wireStory/reports-japan-suspend-osprey-flights-after-crash-us-105260544", + "categories": ["International"], + "isoDate": "2023-11-30T02:38:09.000Z" + }, + { + "title": " Palestinians crowd into ever-shrinking areas in Gaza as Israel's war against Hamas enters 3rd month", + "link": "https://abcnews.go.com/International/wireStory/palestinians-crowd-shrinking-areas-gaza-israels-war-hamas-105489144", + "pubDate": "Fri, 08 Dec 2023 04:34:31 -0500", + "content": "Desperate Palestinians fleeing Israel’s expanding ground offensive crowded into an ever-shrinking area of the Gaza Strip as the Israel-Hamas war entered its third month Friday", + "contentSnippet": "Desperate Palestinians fleeing Israel\u2019s expanding ground offensive crowded into an ever-shrinking area of the Gaza Strip as the Israel-Hamas war entered its third month Friday", + "guid": "https://abcnews.go.com/International/wireStory/palestinians-crowd-shrinking-areas-gaza-israels-war-hamas-105489144", + "categories": ["International"], + "isoDate": "2023-12-08T09:34:31.000Z" + }, + { + "title": " Chinese military surveillance balloon is spotted in Taiwan Strait", + "link": "https://abcnews.go.com/International/wireStory/chinese-military-surveillance-balloon-spotted-taiwan-strait-islands-105487719", + "pubDate": "Fri, 08 Dec 2023 04:34:28 -0500", + "content": "Taiwan's Defense Ministry says it has spotted a Chinese surveillance balloon in the Taiwan Strait along with a large-scale movement of military aircraft and ships", + "contentSnippet": "Taiwan's Defense Ministry says it has spotted a Chinese surveillance balloon in the Taiwan Strait along with a large-scale movement of military aircraft and ships", + "guid": "https://abcnews.go.com/International/wireStory/chinese-military-surveillance-balloon-spotted-taiwan-strait-islands-105487719", + "categories": ["International"], + "isoDate": "2023-12-08T09:34:28.000Z" + }, + { + "title": " A rocket attack targets US embassy in Baghdad, causing minor damage, no casualties", + "link": "https://abcnews.go.com/International/wireStory/rocket-attack-targets-us-embassy-baghdad-causing-minor-105488905", + "pubDate": "Fri, 08 Dec 2023 04:34:09 -0500", + "content": "U.S. and Iraqi officials say a rocket attack at the sprawling U.S. embassy in Baghdad has caused minor material damage but no casualties", + "contentSnippet": "U.S. and Iraqi officials say a rocket attack at the sprawling U.S. embassy in Baghdad has caused minor material damage but no casualties", + "guid": "https://abcnews.go.com/International/wireStory/rocket-attack-targets-us-embassy-baghdad-causing-minor-105488905", + "categories": ["International"], + "isoDate": "2023-12-08T09:34:09.000Z" + }, + { + "title": " Seychelles declares an emergency after deadly flooding and a blast at an explosives depot", + "link": "https://abcnews.go.com/International/wireStory/seychelles-declares-state-emergency-after-explosion-amid-destructive-105450278", + "pubDate": "Thu, 07 Dec 2023 21:38:27 -0500", + "content": "The president of Seychelles has declared an emergency after a huge blast at an explosives depot that followed deadly flooding on the country’s main island", + "contentSnippet": "The president of Seychelles has declared an emergency after a huge blast at an explosives depot that followed deadly flooding on the country\u2019s main island", + "guid": "https://abcnews.go.com/International/wireStory/seychelles-declares-state-emergency-after-explosion-amid-destructive-105450278", + "categories": ["International"], + "isoDate": "2023-12-08T02:38:27.000Z" + }, + { + "title": " Advocates say a Mexican startup is illegally selling a health drink from an endangered fish", + "link": "https://abcnews.go.com/International/wireStory/advocates-mexican-startup-illegally-selling-health-drink-endangered-105477956", + "pubDate": "Thu, 07 Dec 2023 21:22:18 -0500", + "content": "Environmental watchdogs have accused a Mexico-based startup of violating international trade law that protects the endangered totoaba fish", + "contentSnippet": "Environmental watchdogs have accused a Mexico-based startup of violating international trade law that protects the endangered totoaba fish", + "guid": "https://abcnews.go.com/International/wireStory/advocates-mexican-startup-illegally-selling-health-drink-endangered-105477956", + "categories": ["International"], + "isoDate": "2023-12-08T02:22:18.000Z" + }, + { + "title": " Chinese navy ships are first to dock at new pier at Cambodian naval base", + "link": "https://abcnews.go.com/International/wireStory/chinese-navy-ships-dock-new-pier-cambodian-naval-105449899", + "pubDate": "Thu, 07 Dec 2023 20:18:17 -0500", + "content": "Chinese naval vessels have become the first ships to dock at a new pier at a Cambodian naval base that the United States and some international security experts say is destined to serve as a strategic outpost for Beijing’s navy", + "contentSnippet": "Chinese naval vessels have become the first ships to dock at a new pier at a Cambodian naval base that the United States and some international security experts say is destined to serve as a strategic outpost for Beijing\u2019s navy", + "guid": "https://abcnews.go.com/International/wireStory/chinese-navy-ships-dock-new-pier-cambodian-naval-105449899", + "categories": ["International"], + "isoDate": "2023-12-08T01:18:17.000Z" + }, + { + "title": " Armenia and Azerbaijan announce deal to exchange POWs and work toward peace treaty", + "link": "https://abcnews.go.com/International/wireStory/armenia-azerbaijan-announce-deal-exchange-pows-work-peace-105477766", + "pubDate": "Thu, 07 Dec 2023 19:54:23 -0500", + "content": "Armenia and Azerbaijan have agreed to exchange prisoners of war and work toward signing a peace treaty in what the European Union is hailing as a major step toward peace in the long-troubled region", + "contentSnippet": "Armenia and Azerbaijan have agreed to exchange prisoners of war and work toward signing a peace treaty in what the European Union is hailing as a major step toward peace in the long-troubled region", + "guid": "https://abcnews.go.com/International/wireStory/armenia-azerbaijan-announce-deal-exchange-pows-work-peace-105477766", + "categories": ["International"], + "isoDate": "2023-12-08T00:54:23.000Z" + }, + { + "title": " British poet and political activist Benjamin Zephaniah dies at age 65", + "link": "https://abcnews.go.com/International/wireStory/british-poet-political-activist-benjamin-zephaniah-dies-age-105451024", + "pubDate": "Thu, 07 Dec 2023 16:18:29 -0500", + "content": "British poet, political activist, musician and actor Benjamin Zephaniah has died at age 65", + "contentSnippet": "British poet, political activist, musician and actor Benjamin Zephaniah has died at age 65", + "guid": "https://abcnews.go.com/International/wireStory/british-poet-political-activist-benjamin-zephaniah-dies-age-105451024", + "categories": ["International"], + "isoDate": "2023-12-07T21:18:29.000Z" + }, + { + "title": " United Nations bemoans struggles to fund peacekeeping as nations demand withdrawal of missions", + "link": "https://abcnews.go.com/International/wireStory/united-nations-bemoans-struggles-fund-peacekeeping-nations-demand-105453325", + "pubDate": "Thu, 07 Dec 2023 15:46:36 -0500", + "content": "The United Nations’ top peacekeeping official has defended its missions worldwide even as many countries where peacekeepers operate are demanding their withdrawal", + "contentSnippet": "The United Nations\u2019 top peacekeeping official has defended its missions worldwide even as many countries where peacekeepers operate are demanding their withdrawal", + "guid": "https://abcnews.go.com/International/wireStory/united-nations-bemoans-struggles-fund-peacekeeping-nations-demand-105453325", + "categories": ["International"], + "isoDate": "2023-12-07T20:46:36.000Z" + }, + { + "title": " Mexico City rattled by moderate 5.8 magnitude earthquake", + "link": "https://abcnews.go.com/International/wireStory/mexico-city-rattled-moderate-58-magnitude-earthquake-105475957", + "pubDate": "Thu, 07 Dec 2023 15:46:06 -0500", + "content": "Mexico City residents regaining composure after the capital was rattled by a moderate magnitude earthquake", + "contentSnippet": "Mexico City residents regaining composure after the capital was rattled by a moderate magnitude earthquake", + "guid": "https://abcnews.go.com/International/wireStory/mexico-city-rattled-moderate-58-magnitude-earthquake-105475957", + "categories": ["International"], + "isoDate": "2023-12-07T20:46:06.000Z" + }, + { + "title": " Israel and US are at odds over conflicting visions for postwar Gaza", + "link": "https://abcnews.go.com/International/wireStory/israel-us-odds-conflicting-visions-postwar-gaza-105452909", + "pubDate": "Thu, 07 Dec 2023 15:22:27 -0500", + "content": "The United States strongly supports Israel in its war against Hamas, but is increasingly at odds with its Middle East ally over what will happen to the Gaza Strip once the war winds down", + "contentSnippet": "The United States strongly supports Israel in its war against Hamas, but is increasingly at odds with its Middle East ally over what will happen to the Gaza Strip once the war winds down", + "guid": "https://abcnews.go.com/International/wireStory/israel-us-odds-conflicting-visions-postwar-gaza-105452909", + "categories": ["International"], + "isoDate": "2023-12-07T20:22:27.000Z" + }, + { + "title": " UN says Africa faces unprecedented food crisis, with 3 in 4 people unable to afford a healthy diet", + "link": "https://abcnews.go.com/International/wireStory/africa-faces-unprecedented-food-crisis-3-4-people-105471793", + "pubDate": "Thu, 07 Dec 2023 15:06:21 -0500", + "content": "The United Nations says at least three of every four Africans can’t afford a healthy diet because of an “unprecedented food crisis.”", + "contentSnippet": "The United Nations says at least three of every four Africans can\u2019t afford a healthy diet because of an \u201cunprecedented food crisis.\u201d", + "guid": "https://abcnews.go.com/International/wireStory/africa-faces-unprecedented-food-crisis-3-4-people-105471793", + "categories": ["International"], + "isoDate": "2023-12-07T20:06:21.000Z" + }, + { + "title": " Kremlin foe Navalny's lawyers to remain in detention at least through mid-March, Russian court rules", + "link": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalnys-lawyers-remain-detention-mid-march-105472867", + "pubDate": "Thu, 07 Dec 2023 14:50:40 -0500", + "content": "A Moscow court has extended the pre-trial detention of three lawyers who once represented imprisoned opposition leader Alexei Navalny", + "contentSnippet": "A Moscow court has extended the pre-trial detention of three lawyers who once represented imprisoned opposition leader Alexei Navalny", + "guid": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalnys-lawyers-remain-detention-mid-march-105472867", + "categories": ["International"], + "isoDate": "2023-12-07T19:50:40.000Z" + }, + { + "title": " Scientists: Climate change intensified the rains devastating East Africa", + "link": "https://abcnews.go.com/International/wireStory/scientists-climate-change-intensified-rains-devastating-east-africa-105463225", + "pubDate": "Thu, 07 Dec 2023 12:02:36 -0500", + "content": "An international team of climate scientists says the ongoing catastrophic rains in East Africa have been made worse by human-induced climate change", + "contentSnippet": "An international team of climate scientists says the ongoing catastrophic rains in East Africa have been made worse by human-induced climate change", + "guid": "https://abcnews.go.com/International/wireStory/scientists-climate-change-intensified-rains-devastating-east-africa-105463225", + "categories": ["International"], + "isoDate": "2023-12-07T17:02:36.000Z" + }, + { + "title": " A China, EU summit exposes divisions over Ukraine, trade and subsidies", + "link": "https://abcnews.go.com/International/wireStory/divides-trade-ukraine-focus-eu-chinas-leaders-meet-105447062", + "pubDate": "Thu, 07 Dec 2023 10:50:30 -0500", + "content": "The leaders of China and the European Union have held wide-ranging talks that included their disputes over trade and a deep divide over the war in Ukraine", + "contentSnippet": "The leaders of China and the European Union have held wide-ranging talks that included their disputes over trade and a deep divide over the war in Ukraine", + "guid": "https://abcnews.go.com/International/wireStory/divides-trade-ukraine-focus-eu-chinas-leaders-meet-105447062", + "categories": ["International"], + "isoDate": "2023-12-07T15:50:30.000Z" + }, + { + "title": " Azerbaijan to hold snap presidential election, shortly before Russia's vote", + "link": "https://abcnews.go.com/International/wireStory/azerbaijan-hold-snap-presidential-election-february-7-shortly-105449807", + "pubDate": "Thu, 07 Dec 2023 10:50:27 -0500", + "content": "President Ilham Aliyev has ordered Azerbaijan's Central Election Commission to prepare for an early presidential election on Feb. 7, shortly ahead of Russia's presidential election on March 17", + "contentSnippet": "President Ilham Aliyev has ordered Azerbaijan's Central Election Commission to prepare for an early presidential election on Feb. 7, shortly ahead of Russia's presidential election on March 17", + "guid": "https://abcnews.go.com/International/wireStory/azerbaijan-hold-snap-presidential-election-february-7-shortly-105449807", + "categories": ["International"], + "isoDate": "2023-12-07T15:50:27.000Z" + }, + { + "title": " West Africa court refuses to recognize Niger\u2019s junta, rejects request to lift coup sanctions", + "link": "https://abcnews.go.com/International/wireStory/west-africa-court-refuses-recognize-nigers-junta-rejects-105457072", + "pubDate": "Thu, 07 Dec 2023 10:42:30 -0500", + "content": "West Africa’s top court has rejected a request by Niger’s junta for a lifting of coup-related sanctions imposed by its neighbors", + "contentSnippet": "West Africa\u2019s top court has rejected a request by Niger\u2019s junta for a lifting of coup-related sanctions imposed by its neighbors", + "guid": "https://abcnews.go.com/International/wireStory/west-africa-court-refuses-recognize-nigers-junta-rejects-105457072", + "categories": ["International"], + "isoDate": "2023-12-07T15:42:30.000Z" + }, + { + "title": " Lithuania's President Gitanas Nauseda says he'll seek reelection in 2024 for another 5-year term", + "link": "https://abcnews.go.com/International/wireStory/lithuanias-president-gitanas-nauseda-hell-seek-reelection-2024-105458426", + "pubDate": "Thu, 07 Dec 2023 10:26:31 -0500", + "content": "Lithuania’s president says he will seek reelection for another five-year term as the leader of the Baltic nation that's a member of the European Union and NATO", + "contentSnippet": "Lithuania\u2019s president says he will seek reelection for another five-year term as the leader of the Baltic nation that's a member of the European Union and NATO", + "guid": "https://abcnews.go.com/International/wireStory/lithuanias-president-gitanas-nauseda-hell-seek-reelection-2024-105458426", + "categories": ["International"], + "isoDate": "2023-12-07T15:26:31.000Z" + }, + { + "title": " Mexico focuses on looking for people falsely listed as missing, ignores thousands of disappeared", + "link": "https://abcnews.go.com/International/wireStory/mexico-focuses-people-falsely-listed-missing-ignores-thousands-105457527", + "pubDate": "Thu, 07 Dec 2023 10:18:21 -0500", + "content": "Mexico’s government is pouring resources into detecting what it suggests are “fake” missing people", + "contentSnippet": "Mexico\u2019s government is pouring resources into detecting what it suggests are \u201cfake\u201d missing people", + "guid": "https://abcnews.go.com/International/wireStory/mexico-focuses-people-falsely-listed-missing-ignores-thousands-105457527", + "categories": ["International"], + "isoDate": "2023-12-07T15:18:21.000Z" + }, + { + "title": " A Danish court orders a British financier to remain in pre-trial custody on tax fraud", + "link": "https://abcnews.go.com/International/wireStory/danish-court-orders-british-financier-remain-jail-january-105455295", + "pubDate": "Thu, 07 Dec 2023 09:54:26 -0500", + "content": "A British hedge fund trader extradited from the United Arab Emirates to Denmark where he was wanted for allegedly orchestrating a more than 9 billion kroner ($1.3 billion) tax fraud has been ordered to remain in custody until his Jan. 3 trial", + "contentSnippet": "A British hedge fund trader extradited from the United Arab Emirates to Denmark where he was wanted for allegedly orchestrating a more than 9 billion kroner ($1.3 billion) tax fraud has been ordered to remain in custody until his Jan. 3 trial", + "guid": "https://abcnews.go.com/International/wireStory/danish-court-orders-british-financier-remain-jail-january-105455295", + "categories": ["International"], + "isoDate": "2023-12-07T14:54:26.000Z" + }, + { + "title": " Japan pledges $4.5B more in aid for Ukraine, including $1B in humanitarian funds", + "link": "https://abcnews.go.com/International/wireStory/japan-pledges-45b-aid-ukraine-including-1b-humanitarian-105455306", + "pubDate": "Thu, 07 Dec 2023 09:46:30 -0500", + "content": "Japan’s Prime Minister Fumio Kishida has pledged $4.5 billion to Ukraine, including $1 billion in humanitarian aid to help support the war-torn country’s recovery efforts", + "contentSnippet": "Japan\u2019s Prime Minister Fumio Kishida has pledged $4.5 billion to Ukraine, including $1 billion in humanitarian aid to help support the war-torn country\u2019s recovery efforts", + "guid": "https://abcnews.go.com/International/wireStory/japan-pledges-45b-aid-ukraine-including-1b-humanitarian-105455306", + "categories": ["International"], + "isoDate": "2023-12-07T14:46:30.000Z" + }, + { + "title": " Europe's talks on world-leading AI rules paused after 22 hours and will start again Friday", + "link": "https://abcnews.go.com/International/wireStory/europes-talks-world-leading-ai-rules-paused-after-105454201", + "pubDate": "Thu, 07 Dec 2023 09:30:17 -0500", + "content": "European Union talks on comprehensive artificial intelligence regulations were paused after 22 straight hours", + "contentSnippet": "European Union talks on comprehensive artificial intelligence regulations were paused after 22 straight hours", + "guid": "https://abcnews.go.com/International/wireStory/europes-talks-world-leading-ai-rules-paused-after-105454201", + "categories": ["International"], + "isoDate": "2023-12-07T14:30:17.000Z" + }, + { + "title": " Australia pushes against China's Pacific influence through a security pact", + "link": "https://abcnews.go.com/International/wireStory/australia-pushes-chinas-pacific-influence-security-pact-papua-105448800", + "pubDate": "Thu, 07 Dec 2023 02:26:18 -0500", + "content": "The Australian government has signed a security pact with its nearest neighbor Papua New Guinea that strengthens Australia’s place as the preferred security partner in a region where China’s influence is growing", + "contentSnippet": "The Australian government has signed a security pact with its nearest neighbor Papua New Guinea that strengthens Australia\u2019s place as the preferred security partner in a region where China\u2019s influence is growing", + "guid": "https://abcnews.go.com/International/wireStory/australia-pushes-chinas-pacific-influence-security-pact-papua-105448800", + "categories": ["International"], + "isoDate": "2023-12-07T07:26:18.000Z" + }, + { + "title": " China's exports in November edged higher for the first time in 7 months, while imports fell", + "link": "https://abcnews.go.com/International/wireStory/chinas-exports-november-edged-higher-time-7-months-105446334", + "pubDate": "Thu, 07 Dec 2023 01:06:30 -0500", + "content": "Customs data show that China’s exports rose in November, indicating that demand may be picking up following months of decline", + "contentSnippet": "Customs data show that China\u2019s exports rose in November, indicating that demand may be picking up following months of decline", + "guid": "https://abcnews.go.com/International/wireStory/chinas-exports-november-edged-higher-time-7-months-105446334", + "categories": ["International"], + "isoDate": "2023-12-07T06:06:30.000Z" + }, + { + "title": " National security advisers of US, South Korea and Japan will meet to discuss North Korean threat", + "link": "https://abcnews.go.com/International/wireStory/national-security-advisers-us-south-korea-japan-meet-105446234", + "pubDate": "Wed, 06 Dec 2023 23:14:32 -0500", + "content": "The national security advisers of the United States, South Korea and Japan will meet in Seoul this week to discuss North Korea’s military threat and other issues as they continue to promote trilateral cooperation in Asia", + "contentSnippet": "The national security advisers of the United States, South Korea and Japan will meet in Seoul this week to discuss North Korea\u2019s military threat and other issues as they continue to promote trilateral cooperation in Asia", + "guid": "https://abcnews.go.com/International/wireStory/national-security-advisers-us-south-korea-japan-meet-105446234", + "categories": ["International"], + "isoDate": "2023-12-07T04:14:32.000Z" + }, + { + "title": " Putin will seek another presidential term in Russia, extending his rule of over two decades", + "link": "https://abcnews.go.com/International/wireStory/putin-seek-presidential-term-russia-extending-rule-decades-105490641", + "pubDate": "Fri, 08 Dec 2023 06:42:50 -0500", + "content": "Vladimir Putin has moved to prolong his repressive and unyielding grip on Russia for another six years", + "contentSnippet": "Vladimir Putin has moved to prolong his repressive and unyielding grip on Russia for another six years", + "guid": "https://abcnews.go.com/International/wireStory/putin-seek-presidential-term-russia-extending-rule-decades-105490641", + "categories": ["International"], + "isoDate": "2023-12-08T11:42:50.000Z" + }, + { + "title": " The UK says it has paid Rwanda $300 million for a blocked asylum deal. No flights have taken off", + "link": "https://abcnews.go.com/International/wireStory/uk-paid-rwanda-300-million-blocked-asylum-deal-105490534", + "pubDate": "Fri, 08 Dec 2023 06:42:29 -0500", + "content": "Prime Minister Rishi Sunak is under pressure to explain why Britain has paid Rwanda 240 million pounds ($300 million) as part of a blocked asylum plan", + "contentSnippet": "Prime Minister Rishi Sunak is under pressure to explain why Britain has paid Rwanda 240 million pounds ($300 million) as part of a blocked asylum plan", + "guid": "https://abcnews.go.com/International/wireStory/uk-paid-rwanda-300-million-blocked-asylum-deal-105490534", + "categories": ["International"], + "isoDate": "2023-12-08T11:42:29.000Z" + }, + { + "title": " Nintendo cancels its Live 2024 Tokyo event after persistent threats to workers and customers", + "link": "https://abcnews.go.com/International/wireStory/nintendo-cancels-live-2024-tokyo-event-after-persistent-105490535", + "pubDate": "Fri, 08 Dec 2023 06:42:28 -0500", + "content": "Nintendo has canceled an upcoming video game event and postponed several others because of persistent threats to the company, its workers and players", + "contentSnippet": "Nintendo has canceled an upcoming video game event and postponed several others because of persistent threats to the company, its workers and players", + "guid": "https://abcnews.go.com/International/wireStory/nintendo-cancels-live-2024-tokyo-event-after-persistent-105490535", + "categories": ["International"], + "isoDate": "2023-12-08T11:42:28.000Z" + }, + { + "title": " Putin to seek another presidential term in Russia, extending his rule of over two decades, state media say", + "link": "https://abcnews.go.com/International/wireStory/putin-seek-presidential-term-russia-extending-rule-decades-105490541", + "pubDate": "Fri, 08 Dec 2023 06:42:03 -0500", + "content": "Putin to seek another presidential term in Russia, extending his rule of over two decades, state media say", + "contentSnippet": "Putin to seek another presidential term in Russia, extending his rule of over two decades, state media say", + "guid": "https://abcnews.go.com/International/wireStory/putin-seek-presidential-term-russia-extending-rule-decades-105490541", + "categories": ["International"], + "isoDate": "2023-12-08T11:42:03.000Z" + }, + { + "title": " South Korea's defense chief vows retaliatory strikes on 'heart and head' of North Korea if provoked", + "link": "https://abcnews.go.com/International/wireStory/south-koreas-defense-chief-vows-retaliatory-strikes-heart-105489967", + "pubDate": "Fri, 08 Dec 2023 06:02:30 -0500", + "content": "South Korea’s defense minister has vowed massive retaliatory missile strikes on “the heart and head” of North Korea in the event of provocation, as the rivals escalate their rhetoric over their respective spy satellite launches in recent days", + "contentSnippet": "South Korea\u2019s defense minister has vowed massive retaliatory missile strikes on \u201cthe heart and head\u201d of North Korea in the event of provocation, as the rivals escalate their rhetoric over their respective spy satellite launches in recent days", + "guid": "https://abcnews.go.com/International/wireStory/south-koreas-defense-chief-vows-retaliatory-strikes-heart-105489967", + "categories": ["International"], + "isoDate": "2023-12-08T11:02:30.000Z" + }, + { + "title": " Judge rules against Prince Harry in early stage of libel case against Daily Mail publisher", + "link": "https://abcnews.go.com/International/wireStory/judge-rules-prince-harry-early-stage-libel-case-105490155", + "pubDate": "Fri, 08 Dec 2023 06:02:19 -0500", + "content": "Prince Harry has lost a preliminary round in his libel case against the publisher of the Daily Mail tabloid for a story that said he tried to hide his efforts to retain publicly funded protection in the U.K. after giving up his status as a working memb...", + "contentSnippet": "Prince Harry has lost a preliminary round in his libel case against the publisher of the Daily Mail tabloid for a story that said he tried to hide his efforts to retain publicly funded protection in the U.K. after giving up his status as a working memb...", + "guid": "https://abcnews.go.com/International/wireStory/judge-rules-prince-harry-early-stage-libel-case-105490155", + "categories": ["International"], + "isoDate": "2023-12-08T11:02:19.000Z" + }, + { + "title": " German rail workers begin 24-hour strike as pay talks stall", + "link": "https://abcnews.go.com/International/wireStory/german-rail-workers-begin-24-hour-strike-pay-105489966", + "pubDate": "Fri, 08 Dec 2023 05:54:29 -0500", + "content": "A union representing Germany’s train drivers began a 24-hour strike Thursday night, causing widespread rail cancellations and travel disruptions across the country", + "contentSnippet": "A union representing Germany\u2019s train drivers began a 24-hour strike Thursday night, causing widespread rail cancellations and travel disruptions across the country", + "guid": "https://abcnews.go.com/International/wireStory/german-rail-workers-begin-24-hour-strike-pay-105489966", + "categories": ["International"], + "isoDate": "2023-12-08T10:54:29.000Z" + }, + { + "title": " Six Palestinians are killed in the Israeli military's latest West Bank raid, health officials say", + "link": "https://abcnews.go.com/International/wireStory/palestinians-killed-israeli-militarys-latest-west-bank-raid-105489787", + "pubDate": "Fri, 08 Dec 2023 05:54:18 -0500", + "content": "Palestinian health officials say Israeli forces stormed into a refugee camp in the occupied West Bank to arrest Palestinian militants and unleashed fighting with local gunmen in which six Palestinians were killed", + "contentSnippet": "Palestinian health officials say Israeli forces stormed into a refugee camp in the occupied West Bank to arrest Palestinian militants and unleashed fighting with local gunmen in which six Palestinians were killed", + "guid": "https://abcnews.go.com/International/wireStory/palestinians-killed-israeli-militarys-latest-west-bank-raid-105489787", + "categories": ["International"], + "isoDate": "2023-12-08T10:54:18.000Z" + }, + { + "title": " Moldova and Georgia celebrate as their aspirations for EU membership take crucial steps forward", + "link": "https://abcnews.go.com/International/wireStory/moldova-georgia-celebrate-aspirations-eu-membership-crucial-steps-105688900", + "pubDate": "Fri, 15 Dec 2023 10:34:38 -0500", + "content": "Moldova and Georgia celebrated after European Union leaders buoyed their aspirations to join the 27 member nation bloc by removing key hurdles on their long path toward membership", + "contentSnippet": "Moldova and Georgia celebrated after European Union leaders buoyed their aspirations to join the 27 member nation bloc by removing key hurdles on their long path toward membership", + "guid": "https://abcnews.go.com/International/wireStory/moldova-georgia-celebrate-aspirations-eu-membership-crucial-steps-105688900", + "categories": ["International"], + "isoDate": "2023-12-15T15:34:38.000Z" + }, + { + "title": " Hague court rejects bid to ban transfer to Israel of F-35 fighter jet parts from Dutch warehouse", + "link": "https://abcnews.go.com/International/wireStory/hague-court-rejects-bid-ban-transfer-israel-35-105683697", + "pubDate": "Fri, 15 Dec 2023 10:18:23 -0500", + "content": "A Dutch court has rejected a request by a group of human rights organizations to order a halt to the transfer to Israel of parts for F-35 fighter jets", + "contentSnippet": "A Dutch court has rejected a request by a group of human rights organizations to order a halt to the transfer to Israel of parts for F-35 fighter jets", + "guid": "https://abcnews.go.com/International/wireStory/hague-court-rejects-bid-ban-transfer-israel-35-105683697", + "categories": ["International"], + "isoDate": "2023-12-15T15:18:23.000Z" + }, + { + "title": " Finland reports a rush of migrant crossings hours before the reclosure of 2 border posts with Russia", + "link": "https://abcnews.go.com/International/wireStory/finland-reports-rush-migrant-crossings-hours-reclosure-2-105687414", + "pubDate": "Fri, 15 Dec 2023 09:38:29 -0500", + "content": "Dozens of migrants have crossed into Finland hours before the reclosure of two southern crossing points on the border with Russia as the Nordic country experiences an influx of asylum-seekers", + "contentSnippet": "Dozens of migrants have crossed into Finland hours before the reclosure of two southern crossing points on the border with Russia as the Nordic country experiences an influx of asylum-seekers", + "guid": "https://abcnews.go.com/International/wireStory/finland-reports-rush-migrant-crossings-hours-reclosure-2-105687414", + "categories": ["International"], + "isoDate": "2023-12-15T14:38:29.000Z" + }, + { + "title": " US and Israel discuss when to scale back Gaza combat but agree fight will take months, envoy says", + "link": "https://abcnews.go.com/International/wireStory/biden-envoy-meet-abbas-us-floats-palestinian-security-105682627", + "pubDate": "Fri, 15 Dec 2023 09:38:23 -0500", + "content": "A top American envoy says the U.S. and Israel have discussed a timetable for scaling back intense combat operations in the war against Hamas, even though they agree the overall fight will take months", + "contentSnippet": "A top American envoy says the U.S. and Israel have discussed a timetable for scaling back intense combat operations in the war against Hamas, even though they agree the overall fight will take months", + "guid": "https://abcnews.go.com/International/wireStory/biden-envoy-meet-abbas-us-floats-palestinian-security-105682627", + "categories": ["International"], + "isoDate": "2023-12-15T14:38:23.000Z" + }, + { + "title": " Navalny's allies say he has been moved but they still don't know where", + "link": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalny-allies-moved-105682991", + "pubDate": "Fri, 15 Dec 2023 09:06:23 -0500", + "content": "Officials said that he was moved from the region where he was serving time.", + "contentSnippet": "Officials said that he was moved from the region where he was serving time.", + "guid": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalny-allies-moved-105682991", + "categories": ["International"], + "isoDate": "2023-12-15T14:06:23.000Z" + }, + { + "title": " US national security adviser says a negotiated outcome is the best way to end Lebanon-Israel tension", + "link": "https://abcnews.go.com/International/wireStory/us-national-security-adviser-negotiated-outcome-best-end-105686131", + "pubDate": "Fri, 15 Dec 2023 08:26:32 -0500", + "content": "U.S. National Security Adviser Jake Sullivan says he has discussed with Israeli officials the volatile situation along the Lebanon-Israel border", + "contentSnippet": "U.S. National Security Adviser Jake Sullivan says he has discussed with Israeli officials the volatile situation along the Lebanon-Israel border", + "guid": "https://abcnews.go.com/International/wireStory/us-national-security-adviser-negotiated-outcome-best-end-105686131", + "categories": ["International"], + "isoDate": "2023-12-15T13:26:32.000Z" + }, + { + "title": " 515 injured in a Beijing rail collision as heavy snow hits the Chinese capital", + "link": "https://abcnews.go.com/International/wireStory/515-injured-beijing-rail-collision-heavy-snow-hits-105682437", + "pubDate": "Fri, 15 Dec 2023 07:46:31 -0500", + "content": "Two subway trains collided in heavy snow in Beijing.", + "contentSnippet": "Two subway trains collided in heavy snow in Beijing.", + "guid": "https://abcnews.go.com/International/wireStory/515-injured-beijing-rail-collision-heavy-snow-hits-105682437", + "categories": ["International"], + "isoDate": "2023-12-15T12:46:31.000Z" + }, + { + "title": " China defends bounties offered for Hong Kong dissidents abroad", + "link": "https://abcnews.go.com/International/wireStory/china-defends-bounties-offered-hong-kong-dissidents-abroad-105683259", + "pubDate": "Fri, 15 Dec 2023 06:58:17 -0500", + "content": "China has defended controversial cash bounties offered for Hong Kong dissidents who have fled abroad that have been heavily criticized by foreign governments and human rights groups", + "contentSnippet": "China has defended controversial cash bounties offered for Hong Kong dissidents who have fled abroad that have been heavily criticized by foreign governments and human rights groups", + "guid": "https://abcnews.go.com/International/wireStory/china-defends-bounties-offered-hong-kong-dissidents-abroad-105683259", + "categories": ["International"], + "isoDate": "2023-12-15T11:58:17.000Z" + }, + { + "title": " Serbia's Vucic seeks to reassert populist dominance in elections this weekend", + "link": "https://abcnews.go.com/International/wireStory/serbias-vucic-seeks-reassert-populist-dominance-elections-weekend-105680976", + "pubDate": "Fri, 15 Dec 2023 04:58:28 -0500", + "content": "Serbian President Aleksandar Vucic is pushing to reassert his populist party’s dominance in this weekend's parliamentary and local election in the troubled eastern European country following a turbulent year that has shaken the government’s popularity", + "contentSnippet": "Serbian President Aleksandar Vucic is pushing to reassert his populist party\u2019s dominance in this weekend's parliamentary and local election in the troubled eastern European country following a turbulent year that has shaken the government\u2019s popularity", + "guid": "https://abcnews.go.com/International/wireStory/serbias-vucic-seeks-reassert-populist-dominance-elections-weekend-105680976", + "categories": ["International"], + "isoDate": "2023-12-15T09:58:28.000Z" + }, + { + "title": " AP Week in Pictures: Europe and Africa", + "link": "https://abcnews.go.com/International/wireStory/ap-week-pictures-europe-africa-105682432", + "pubDate": "Fri, 15 Dec 2023 02:26:33 -0500", + "content": "\nDec. 8-14, 2023\n\nKenyans celebrated their Independence Day in Nairobi, people participated in the annual Christmas run in Vilinus, and Donald Tusk was installed as the new prime minister of Poland in Warsaw. In the world of sports, athletes competed in the Biathlon World Cup in Hochfilzen, Austria.\n\nThis gallery highlights some of the most compelling images made or published in the past week by Associated Press photographers in Europe and Africa.\n\nThe selection was curated by photographer Andreea Alexandru in Bucharest.\n\n____\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on Twitter: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", + "contentSnippet": "Dec. 8-14, 2023\n\nKenyans celebrated their Independence Day in Nairobi, people participated in the annual Christmas run in Vilinus, and Donald Tusk was installed as the new prime minister of Poland in Warsaw. In the world of sports, athletes competed in the Biathlon World Cup in Hochfilzen, Austria.\n\nThis gallery highlights some of the most compelling images made or published in the past week by Associated Press photographers in Europe and Africa.\n\nThe selection was curated by photographer Andreea Alexandru in Bucharest.\n\n____\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on Twitter: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", + "guid": "https://abcnews.go.com/International/wireStory/ap-week-pictures-europe-africa-105682432", + "categories": ["International"], + "isoDate": "2023-12-15T07:26:33.000Z" + }, + { + "title": " EU leaders fail to agree on \u20ac50 billion aid package for Ukraine and on renegotiation of EU budget, EU official says", + "link": "https://abcnews.go.com/International/wireStory/eu-leaders-fail-agree-50-billion-aid-package-105678856", + "pubDate": "Thu, 14 Dec 2023 21:45:58 -0500", + "content": "EU leaders fail to agree on €50 billion aid package for Ukraine and on renegotiation of EU budget, EU official says", + "contentSnippet": "EU leaders fail to agree on \u20ac50 billion aid package for Ukraine and on renegotiation of EU budget, EU official says", + "guid": "https://abcnews.go.com/International/wireStory/eu-leaders-fail-agree-50-billion-aid-package-105678856", + "categories": ["International"], + "isoDate": "2023-12-15T02:45:58.000Z" + }, + { + "title": " Pope calls for binding treaty to regulate artificial intelligence", + "link": "https://abcnews.go.com/International/wireStory/pope-victim-ai-generated-imagery-calls-treaty-regulate-105650622", + "pubDate": "Thu, 14 Dec 2023 17:22:33 -0500", + "content": "Pope Francis is calling for an international treaty to ensure artificial intelligence is developed and used ethically", + "contentSnippet": "Pope Francis is calling for an international treaty to ensure artificial intelligence is developed and used ethically", + "guid": "https://abcnews.go.com/International/wireStory/pope-victim-ai-generated-imagery-calls-treaty-regulate-105650622", + "categories": ["International"], + "isoDate": "2023-12-14T22:22:33.000Z" + }, + { + "title": " Court voids fine given to Russian activist for criticizing war and sends case back to prosecutors", + "link": "https://abcnews.go.com/International/wireStory/court-voids-fine-russian-activist-criticizing-war-sends-105665913", + "pubDate": "Thu, 14 Dec 2023 14:26:39 -0500", + "content": "A court in Russia has overturned a fine handed to a veteran human rights advocate for speaking out against the war in Ukraine", + "contentSnippet": "A court in Russia has overturned a fine handed to a veteran human rights advocate for speaking out against the war in Ukraine", + "guid": "https://abcnews.go.com/International/wireStory/court-voids-fine-russian-activist-criticizing-war-sends-105665913", + "categories": ["International"], + "isoDate": "2023-12-14T19:26:39.000Z" + }, + { + "title": " British teenager who went missing 6 years ago in Spain is found in France: reports", + "link": "https://abcnews.go.com/International/wireStory/british-teenager-missing-6-years-ago-spain-found-105666045", + "pubDate": "Thu, 14 Dec 2023 13:46:59 -0500", + "content": "French media say that a British teenager who went missing six years ago on a family holiday in Spain has been found in southwestern France", + "contentSnippet": "French media say that a British teenager who went missing six years ago on a family holiday in Spain has been found in southwestern France", + "guid": "https://abcnews.go.com/International/wireStory/british-teenager-missing-6-years-ago-spain-found-105666045", + "categories": ["International"], + "isoDate": "2023-12-14T18:46:59.000Z" + }, + { + "title": " Finland to close again entire border with Russia as reopening of 2 crossing points lures migrants", + "link": "https://abcnews.go.com/International/wireStory/finland-close-entire-border-russia-reopening-2-crossing-105665074", + "pubDate": "Thu, 14 Dec 2023 13:14:22 -0500", + "content": "Finland’s government has decided to seal again, effective Friday, the Nordic country’s entire eastern frontier due to a continuing influx of migrants at the two crossing points on the border with Russia that were reopened on a temporary basis early Thu...", + "contentSnippet": "Finland\u2019s government has decided to seal again, effective Friday, the Nordic country\u2019s entire eastern frontier due to a continuing influx of migrants at the two crossing points on the border with Russia that were reopened on a temporary basis early Thu...", + "guid": "https://abcnews.go.com/International/wireStory/finland-close-entire-border-russia-reopening-2-crossing-105665074", + "categories": ["International"], + "isoDate": "2023-12-14T18:14:22.000Z" + }, + { + "title": " Rights groups say Greece has failed to properly investigate claims it mishandled migrant tragedy", + "link": "https://abcnews.go.com/International/wireStory/groups-greece-failed-properly-investigate-claims-mishandled-migrant-105644253", + "pubDate": "Thu, 14 Dec 2023 12:02:30 -0500", + "content": "Two leading international human rights groups are accusing Greek authorities of failing to properly investigate the circumstances around a migrant boat sinking six months ago that killed hundreds", + "contentSnippet": "Two leading international human rights groups are accusing Greek authorities of failing to properly investigate the circumstances around a migrant boat sinking six months ago that killed hundreds", + "guid": "https://abcnews.go.com/International/wireStory/groups-greece-failed-properly-investigate-claims-mishandled-migrant-105644253", + "categories": ["International"], + "isoDate": "2023-12-14T17:02:30.000Z" + }, + { + "title": " Germany and Turkey agree to train imams who serve Germany's Turkish immigrant community in Germany", + "link": "https://abcnews.go.com/International/wireStory/germany-turkey-agree-train-imams-serve-germanys-turkish-105656453", + "pubDate": "Thu, 14 Dec 2023 09:30:28 -0500", + "content": "Germany and Turkey have agreed to gradually end the deployment of Turkish state-employed imams to Germany and instead train imams in Germany to serve the country’s large Turkish immigrant community", + "contentSnippet": "Germany and Turkey have agreed to gradually end the deployment of Turkish state-employed imams to Germany and instead train imams in Germany to serve the country\u2019s large Turkish immigrant community", + "guid": "https://abcnews.go.com/International/wireStory/germany-turkey-agree-train-imams-serve-germanys-turkish-105656453", + "categories": ["International"], + "isoDate": "2023-12-14T14:30:28.000Z" + }, + { + "title": " Father, stepmom, uncle of 10-year-old girl found dead in UK home deny murder charges", + "link": "https://abcnews.go.com/International/wireStory/father-stepmother-uncle-10-year-girl-found-dead-105650905", + "pubDate": "Thu, 14 Dec 2023 09:22:28 -0500", + "content": "The father, stepmother and uncle of a 10-year-old girl found dead in her home in southern England have pleaded not guilty to murder charges", + "contentSnippet": "The father, stepmother and uncle of a 10-year-old girl found dead in her home in southern England have pleaded not guilty to murder charges", + "guid": "https://abcnews.go.com/International/wireStory/father-stepmother-uncle-10-year-girl-found-dead-105650905", + "categories": ["International"], + "isoDate": "2023-12-14T14:22:28.000Z" + }, + { + "title": " Lawmaker's suspension means a possible special election and more trouble for U.K. Conservatives", + "link": "https://abcnews.go.com/International/wireStory/lawmakers-suspension-means-special-election-trouble-uk-conservatives-105651975", + "pubDate": "Thu, 14 Dec 2023 07:54:26 -0500", + "content": "A political standards watchdog says a U.K. Conservative lawmaker who offered to lobby on behalf of gambling interests should be suspended from Parliament for 35 days", + "contentSnippet": "A political standards watchdog says a U.K. Conservative lawmaker who offered to lobby on behalf of gambling interests should be suspended from Parliament for 35 days", + "guid": "https://abcnews.go.com/International/wireStory/lawmakers-suspension-means-special-election-trouble-uk-conservatives-105651975", + "categories": ["International"], + "isoDate": "2023-12-14T12:54:26.000Z" + }, + { + "title": " Austrian court acquits Blackwater founder and 4 others over export of modified crop-spraying planes", + "link": "https://abcnews.go.com/International/wireStory/austrian-court-acquits-blackwater-founder-4-export-modified-105652359", + "pubDate": "Thu, 14 Dec 2023 07:54:02 -0500", + "content": "An Austrian court has acquitted five people, including the founder of the Blackwater security firm, who were accused of exporting two crop-spraying aircraft that were allegedly refitted for military purposes without the necessary permits", + "contentSnippet": "An Austrian court has acquitted five people, including the founder of the Blackwater security firm, who were accused of exporting two crop-spraying aircraft that were allegedly refitted for military purposes without the necessary permits", + "guid": "https://abcnews.go.com/International/wireStory/austrian-court-acquits-blackwater-founder-4-export-modified-105652359", + "categories": ["International"], + "isoDate": "2023-12-14T12:54:02.000Z" + }, + { + "title": " Bank of England keeps its main interest rate at a 15-year high despite mounting worries about the British economy", + "link": "https://abcnews.go.com/International/wireStory/bank-england-main-interest-rate-15-year-high-105651772", + "pubDate": "Thu, 14 Dec 2023 07:37:55 -0500", + "content": "Bank of England keeps its main interest rate at a 15-year high despite mounting worries about the British economy", + "contentSnippet": "Bank of England keeps its main interest rate at a 15-year high despite mounting worries about the British economy", + "guid": "https://abcnews.go.com/International/wireStory/bank-england-main-interest-rate-15-year-high-105651772", + "categories": ["International"], + "isoDate": "2023-12-14T12:37:55.000Z" + }, + { + "title": " Turkish minister says Somalia president's son will return to face trial over fatal highway crash", + "link": "https://abcnews.go.com/International/wireStory/turkish-minister-somalia-presidents-son-return-face-trial-105650531", + "pubDate": "Thu, 14 Dec 2023 06:09:53 -0500", + "content": "Turkey's justice minister says the son of the president of Somalia will return to Turkey in the coming days to face trial over a fatal highway crash in Istanbul", + "contentSnippet": "Turkey's justice minister says the son of the president of Somalia will return to Turkey in the coming days to face trial over a fatal highway crash in Istanbul", + "guid": "https://abcnews.go.com/International/wireStory/turkish-minister-somalia-presidents-son-return-face-trial-105650531", + "categories": ["International"], + "isoDate": "2023-12-14T11:09:53.000Z" + }, + { + "title": " Barbie director Greta Gerwig heads jury of 2024 Cannes Festival, 1st American woman director in job", + "link": "https://abcnews.go.com/International/wireStory/barbie-director-greta-gerwig-heads-jury-2024-cannes-105650527", + "pubDate": "Thu, 14 Dec 2023 05:54:29 -0500", + "content": "Greta Gerwig, actor, writer and film director, notably for the blockbuster “Barbie,” will preside over the jury of the 77th Cannes Festival in May, the first American female film director to be named jury president, the festival announced Thursday", + "contentSnippet": "Greta Gerwig, actor, writer and film director, notably for the blockbuster \u201cBarbie,\u201d will preside over the jury of the 77th Cannes Festival in May, the first American female film director to be named jury president, the festival announced Thursday", + "guid": "https://abcnews.go.com/International/wireStory/barbie-director-greta-gerwig-heads-jury-2024-cannes-105650527", + "categories": ["International"], + "isoDate": "2023-12-14T10:54:29.000Z" + }, + { + "title": " An Australian court overturns a woman's 2-decade-old convictions in the deaths of her 4 children", + "link": "https://abcnews.go.com/International/wireStory/australian-court-overturns-womans-2-decade-convictions-deaths-105642390", + "pubDate": "Thu, 14 Dec 2023 04:34:20 -0500", + "content": "An Australian appeals court has overturned all convictions against a woman 20 years after a jury found her guilty of killing her four children", + "contentSnippet": "An Australian appeals court has overturned all convictions against a woman 20 years after a jury found her guilty of killing her four children", + "guid": "https://abcnews.go.com/International/wireStory/australian-court-overturns-womans-2-decade-convictions-deaths-105642390", + "categories": ["International"], + "isoDate": "2023-12-14T09:34:20.000Z" + }, + { + "title": " Dismayed by Moscow's war, Russian volunteers are joining Ukrainian ranks ", + "link": "https://abcnews.go.com/International/wireStory/dismayed-moscows-war-russian-volunteers-joining-ukrainian-ranks-105648729", + "pubDate": "Thu, 14 Dec 2023 02:58:23 -0500", + "content": "The Siberian Battalion is unique in many ways", + "contentSnippet": "The Siberian Battalion is unique in many ways", + "guid": "https://abcnews.go.com/International/wireStory/dismayed-moscows-war-russian-volunteers-joining-ukrainian-ranks-105648729", + "categories": ["International"], + "isoDate": "2023-12-14T07:58:23.000Z" + }, + { + "title": " A Thai senator linked to a Myanmar tycoon is indicted for drug trafficking and money laundering", + "link": "https://abcnews.go.com/International/wireStory/thai-senator-linked-myanmar-tycoon-indicted-drug-trafficking-105690345", + "pubDate": "Fri, 15 Dec 2023 11:14:02 -0500", + "content": "Prosecutors in Thailand have indicted a member of the country’s Senate on six charges involving narcotics trafficking, money laundering and association with a transnational criminal organization", + "contentSnippet": "Prosecutors in Thailand have indicted a member of the country\u2019s Senate on six charges involving narcotics trafficking, money laundering and association with a transnational criminal organization", + "guid": "https://abcnews.go.com/International/wireStory/thai-senator-linked-myanmar-tycoon-indicted-drug-trafficking-105690345", + "categories": ["International"], + "isoDate": "2023-12-15T16:14:02.000Z" + }, + { + "title": " Gunmen kill 11 people in an attack on a police station in Iran, state TV says", + "link": "https://abcnews.go.com/International/wireStory/gunmen-kill-11-people-injure-attack-police-station-105682341", + "pubDate": "Fri, 15 Dec 2023 05:53:53 -0500", + "content": "Iranian state TV says suspected members of a separatist group have killed 11 people and injured several others in a nighttime attack on a police station in southeastern Iran", + "contentSnippet": "Iranian state TV says suspected members of a separatist group have killed 11 people and injured several others in a nighttime attack on a police station in southeastern Iran", + "guid": "https://abcnews.go.com/International/wireStory/gunmen-kill-11-people-injure-attack-police-station-105682341", + "categories": ["International"], + "isoDate": "2023-12-15T10:53:53.000Z" + }, + { + "title": " Nigeria's Supreme Court reinstates terrorism charges against separatist leader", + "link": "https://abcnews.go.com/International/wireStory/nigerias-supreme-court-reinstates-terrorism-charges-separatist-leader-105693605", + "pubDate": "Fri, 15 Dec 2023 12:34:26 -0500", + "content": "Nigeria’s Supreme Court has overturned a lower court ruling dismissing terrorism charges against a popular separatist leader whose trial has been blamed for an outbreak of violence in the country’s southeast region", + "contentSnippet": "Nigeria\u2019s Supreme Court has overturned a lower court ruling dismissing terrorism charges against a popular separatist leader whose trial has been blamed for an outbreak of violence in the country\u2019s southeast region", + "guid": "https://abcnews.go.com/International/wireStory/nigerias-supreme-court-reinstates-terrorism-charges-separatist-leader-105693605", + "categories": ["International"], + "isoDate": "2023-12-15T17:34:26.000Z" + }, + { + "title": " Germany's CO2 emissions are at their lowest in 7 decades, study shows", + "link": "https://abcnews.go.com/International/wireStory/germanys-co2-emissions-lowest-7-decades-study-shows-106095531", + "pubDate": "Thu, 04 Jan 2024 05:54:29 -0500", + "content": "A study shows that carbon dioxide emissions in Germany, Europe’s biggest economy, dropped to their lowest level in seven decades", + "contentSnippet": "A study shows that carbon dioxide emissions in Germany, Europe\u2019s biggest economy, dropped to their lowest level in seven decades", + "guid": "https://abcnews.go.com/International/wireStory/germanys-co2-emissions-lowest-7-decades-study-shows-106095531", + "categories": ["International"], + "isoDate": "2024-01-04T10:54:29.000Z" + }, + { + "title": " Scenes of loss play out across Japan's western coastline after quake kills 84, dozens still missing", + "link": "https://abcnews.go.com/International/wireStory/scenes-loss-play-japans-western-coastline-after-quake-106094356", + "pubDate": "Thu, 04 Jan 2024 05:46:29 -0500", + "content": "Rescue workers are braving the cold to save people still trapped under collapsed buildings in western Japan", + "contentSnippet": "Rescue workers are braving the cold to save people still trapped under collapsed buildings in western Japan", + "guid": "https://abcnews.go.com/International/wireStory/scenes-loss-play-japans-western-coastline-after-quake-106094356", + "categories": ["International"], + "isoDate": "2024-01-04T10:46:29.000Z" + }, + { + "title": " South Korean opposition leader is recovering well from surgery after stabbing attack, doctor says", + "link": "https://abcnews.go.com/International/wireStory/south-korean-opposition-leader-recovering-surgery-after-stabbing-106093705", + "pubDate": "Thu, 04 Jan 2024 05:30:20 -0500", + "content": "A South Korean hospital says the country's main opposition leader is recovering well from surgery after being stabbed in the neck earlier this week", + "contentSnippet": "A South Korean hospital says the country's main opposition leader is recovering well from surgery after being stabbed in the neck earlier this week", + "guid": "https://abcnews.go.com/International/wireStory/south-korean-opposition-leader-recovering-surgery-after-stabbing-106093705", + "categories": ["International"], + "isoDate": "2024-01-04T10:30:20.000Z" + }, + { + "title": " Israel's Supreme Court delays activation of law that makes it harder to remove Netanyahu from office", + "link": "https://abcnews.go.com/International/wireStory/israels-supreme-court-delays-activation-law-makes-harder-106075989", + "pubDate": "Thu, 04 Jan 2024 04:10:29 -0500", + "content": "Israel’s Supreme Court has ruled that a law that could make it harder to remove Prime Minister Benjamin Netanyahu from office must go into effect only after the next elections", + "contentSnippet": "Israel\u2019s Supreme Court has ruled that a law that could make it harder to remove Prime Minister Benjamin Netanyahu from office must go into effect only after the next elections", + "guid": "https://abcnews.go.com/International/wireStory/israels-supreme-court-delays-activation-law-makes-harder-106075989", + "categories": ["International"], + "isoDate": "2024-01-04T09:10:29.000Z" + }, + { + "title": " Young voters in Bangladesh dream of a future free from political chaos as the nation votes Sunday", + "link": "https://abcnews.go.com/International/wireStory/young-voters-bangladesh-dream-future-free-political-chaos-106092094", + "pubDate": "Wed, 03 Jan 2024 23:54:21 -0500", + "content": "For decades, political battles in Bangladesh have been fought on the streets by parties led by two powerful women", + "contentSnippet": "For decades, political battles in Bangladesh have been fought on the streets by parties led by two powerful women", + "guid": "https://abcnews.go.com/International/wireStory/young-voters-bangladesh-dream-future-free-political-chaos-106092094", + "categories": ["International"], + "isoDate": "2024-01-04T04:54:21.000Z" + }, + { + "title": " Extreme cold grips the Nordics, breaking record in Sweden for coldest January night", + "link": "https://abcnews.go.com/International/wireStory/extreme-cold-grips-nordics-breaking-25-year-record-106066642", + "pubDate": "Wed, 03 Jan 2024 23:06:31 -0500", + "content": "Temperatures have fallen below minus 40 degrees Celsius in the Nordic region for a second day in a row, with the coldest January temperature recorded in Swedish Lapland in 25 years", + "contentSnippet": "Temperatures have fallen below minus 40 degrees Celsius in the Nordic region for a second day in a row, with the coldest January temperature recorded in Swedish Lapland in 25 years", + "guid": "https://abcnews.go.com/International/wireStory/extreme-cold-grips-nordics-breaking-25-year-record-106066642", + "categories": ["International"], + "isoDate": "2024-01-04T04:06:31.000Z" + }, + { + "title": " AP Photos: Search presses on for earthquake survivors as Japan grieves the lives lost", + "link": "https://abcnews.go.com/International/wireStory/ap-photos-search-presses-earthquake-survivors-japan-grieves-106082480", + "pubDate": "Wed, 03 Jan 2024 21:22:33 -0500", + "content": "\nRescuers searched the rubble of collapsed homes in western Japan on Wednesday in the hopes of finding survivors of this week's earthquake, which killed dozens of people.\n\nThe magnitude 7.6 temblor Monday, which has had many aftershocks, rocked the Ishikawa prefecture and the surrounding area, toppling thousands of buildings, sparking fires and setting off tsunami warnings. The quake killed at least 73 people, and 15 were listed Wednesday as officially missing.\n\nIn Suzu, a coastal city of about 15,000 that was also hit by landslides, a man wept Wednesday as a family member's body was pulled from a collapsed home. Residents gathered at an evacuation center in the city to rest, warm up and get fed.\n\nFirefighters and members of the Japanese Self Defense Force sifted through toppled homes and other buildings in the hopes of finding anyone still trapped, with the window for survival getting smaller.\n\nIn Anamizu, a town about 40 kilometers (25 miles) southwest of Suzu, drivers slowly...", + "contentSnippet": "Rescuers searched the rubble of collapsed homes in western Japan on Wednesday in the hopes of finding survivors of this week's earthquake, which killed dozens of people.\n\nThe magnitude 7.6 temblor Monday, which has had many aftershocks, rocked the Ishikawa prefecture and the surrounding area, toppling thousands of buildings, sparking fires and setting off tsunami warnings. The quake killed at least 73 people, and 15 were listed Wednesday as officially missing.\n\nIn Suzu, a coastal city of about 15,000 that was also hit by landslides, a man wept Wednesday as a family member's body was pulled from a collapsed home. Residents gathered at an evacuation center in the city to rest, warm up and get fed.\n\nFirefighters and members of the Japanese Self Defense Force sifted through toppled homes and other buildings in the hopes of finding anyone still trapped, with the window for survival getting smaller.\n\nIn Anamizu, a town about 40 kilometers (25 miles) southwest of Suzu, drivers slowly...", + "guid": "https://abcnews.go.com/International/wireStory/ap-photos-search-presses-earthquake-survivors-japan-grieves-106082480", + "categories": ["International"], + "isoDate": "2024-01-04T02:22:33.000Z" + }, + { + "title": " Ukraine trains its sights on Russian border region, seeking to stir up discontent", + "link": "https://abcnews.go.com/International/wireStory/ukraine-trains-sights-russian-border-region-seeking-stir-106066263", + "pubDate": "Wed, 03 Jan 2024 18:26:26 -0500", + "content": "Russia and Ukraine have exchanged hundreds of prisoners of war in the biggest single release of captives since Russia’s full-scale invasion in February 2022", + "contentSnippet": "Russia and Ukraine have exchanged hundreds of prisoners of war in the biggest single release of captives since Russia\u2019s full-scale invasion in February 2022", + "guid": "https://abcnews.go.com/International/wireStory/ukraine-trains-sights-russian-border-region-seeking-stir-106066263", + "categories": ["International"], + "isoDate": "2024-01-03T23:26:26.000Z" + }, + { + "title": " Live updates | Fighting rages in southern Gaza and fears grow the war may spread in the region", + "link": "https://abcnews.go.com/International/wireStory/live-updates-fighting-rages-southern-gaza-fears-grow-106066917", + "pubDate": "Wed, 03 Jan 2024 18:10:19 -0500", + "content": "Heavy fighting is raging in central and southern Gaza as fears mount of a regional escalation following a strike in Beirut that killed one of the top Hamas leaders", + "contentSnippet": "Heavy fighting is raging in central and southern Gaza as fears mount of a regional escalation following a strike in Beirut that killed one of the top Hamas leaders", + "guid": "https://abcnews.go.com/International/wireStory/live-updates-fighting-rages-southern-gaza-fears-grow-106066917", + "categories": ["International"], + "isoDate": "2024-01-03T23:10:19.000Z" + }, + { + "title": " Argentina arrests three men suspected of belonging to a terror cell", + "link": "https://abcnews.go.com/International/wireStory/argentina-arrests-men-suspected-belonging-terror-cell-106082870", + "pubDate": "Wed, 03 Jan 2024 18:10:00 -0500", + "content": "Argentina has arrested three men under suspicion of belonging to a terror cell as the country hosts a major Jewish sporting event", + "contentSnippet": "Argentina has arrested three men under suspicion of belonging to a terror cell as the country hosts a major Jewish sporting event", + "guid": "https://abcnews.go.com/International/wireStory/argentina-arrests-men-suspected-belonging-terror-cell-106082870", + "categories": ["International"], + "isoDate": "2024-01-03T23:10:00.000Z" + }, + { + "title": " Mexican authorities search for 31 migrants abducted near the Texas border", + "link": "https://abcnews.go.com/International/wireStory/mexican-authorities-search-31-migrants-abducted-texas-border-106077719", + "pubDate": "Wed, 03 Jan 2024 16:18:08 -0500", + "content": "Mexican authorities say they have rescued 31 migrants who were abducted by armed men over the weekend near the border with Texas", + "contentSnippet": "Mexican authorities say they have rescued 31 migrants who were abducted by armed men over the weekend near the border with Texas", + "guid": "https://abcnews.go.com/International/wireStory/mexican-authorities-search-31-migrants-abducted-texas-border-106077719", + "categories": ["International"], + "isoDate": "2024-01-03T21:18:08.000Z" + }, + { + "title": " What\u2019s known so far about the deadly explosions in Iran", + "link": "https://abcnews.go.com/International/wireStory/whats-remains-unclear-deadly-explosions-iran-106077632", + "pubDate": "Wed, 03 Jan 2024 16:10:26 -0500", + "content": "Iranian officials said that at least 95 people were killed Wednesday after back-to-back explosions at an event commemorating the 2020 slaying of a prominent general by the United States", + "contentSnippet": "Iranian officials said that at least 95 people were killed Wednesday after back-to-back explosions at an event commemorating the 2020 slaying of a prominent general by the United States", + "guid": "https://abcnews.go.com/International/wireStory/whats-remains-unclear-deadly-explosions-iran-106077632", + "categories": ["International"], + "isoDate": "2024-01-03T21:10:26.000Z" + }, + { + "title": " Sierra Leone\u2019s former president charged with treason for alleged involvement in failed coup attempt", + "link": "https://abcnews.go.com/International/wireStory/sierra-leones-former-president-charged-treason-alleged-involvement-106077896", + "pubDate": "Wed, 03 Jan 2024 12:58:30 -0500", + "content": "Sierra Leone’s government says former President Ernest Bai Koroma has been charged with treason for his alleged involvement in a failed coup attempt in November", + "contentSnippet": "Sierra Leone\u2019s government says former President Ernest Bai Koroma has been charged with treason for his alleged involvement in a failed coup attempt in November", + "guid": "https://abcnews.go.com/International/wireStory/sierra-leones-former-president-charged-treason-alleged-involvement-106077896", + "categories": ["International"], + "isoDate": "2024-01-03T17:58:30.000Z" + }, + { + "title": " Russia and Ukraine have exchanged prisoners of war under a deal sponsored by the United Arab Emirates.", + "link": "https://abcnews.go.com/International/wireStory/russia-ukraine-exchanged-prisoners-war-deal-sponsored-united-106075171", + "pubDate": "Wed, 03 Jan 2024 12:09:57 -0500", + "content": "Russia and Ukraine have exchanged prisoners of war under a deal sponsored by the United Arab Emirates.", + "contentSnippet": "Russia and Ukraine have exchanged prisoners of war under a deal sponsored by the United Arab Emirates.", + "guid": "https://abcnews.go.com/International/wireStory/russia-ukraine-exchanged-prisoners-war-deal-sponsored-united-106075171", + "categories": ["International"], + "isoDate": "2024-01-03T17:09:57.000Z" + }, + { + "title": " Japan police arrest a knife-wielding woman inside train after 4 reported injured", + "link": "https://abcnews.go.com/International/wireStory/japan-police-arrest-knife-wielding-woman-inside-train-106074635", + "pubDate": "Wed, 03 Jan 2024 12:01:46 -0500", + "content": "Police in Japan have arrested a woman who wielded a knife and injured four passengers inside a train that stopped at Tokyo’s electronic town of Akihabara", + "contentSnippet": "Police in Japan have arrested a woman who wielded a knife and injured four passengers inside a train that stopped at Tokyo\u2019s electronic town of Akihabara", + "guid": "https://abcnews.go.com/International/wireStory/japan-police-arrest-knife-wielding-woman-inside-train-106074635", + "categories": ["International"], + "isoDate": "2024-01-03T17:01:46.000Z" + }, + { + "title": " NATO to help buy 1,000 Patriot missiles to defend allies", + "link": "https://abcnews.go.com/International/wireStory/nato-buy-1000-patriot-missiles-defend-allies-russia-106070132", + "pubDate": "Wed, 03 Jan 2024 10:43:28 -0500", + "content": "NATO says it will help buy up to 1,000 Patriot missiles so allies can better protect their territory as Russia ramps up its air assault on Ukraine", + "contentSnippet": "NATO says it will help buy up to 1,000 Patriot missiles so allies can better protect their territory as Russia ramps up its air assault on Ukraine", + "guid": "https://abcnews.go.com/International/wireStory/nato-buy-1000-patriot-missiles-defend-allies-russia-106070132", + "categories": ["International"], + "isoDate": "2024-01-03T15:43:28.000Z" + }, + { + "title": " Prosecutors allege democracy publisher Jimmy Lai urged protests, sanctions", + "link": "https://abcnews.go.com/International/wireStory/hong-kong-prosecutors-allege-democracy-publisher-jimmy-lai-106066453", + "pubDate": "Wed, 03 Jan 2024 09:22:31 -0500", + "content": "Prosecutors have alleged that Hong Kong activist and publisher Jimmy Lai had encouraged the city’s residents to protest and urged the U.S. to take action against the Chinese authorities in Beijing", + "contentSnippet": "Prosecutors have alleged that Hong Kong activist and publisher Jimmy Lai had encouraged the city\u2019s residents to protest and urged the U.S. to take action against the Chinese authorities in Beijing", + "guid": "https://abcnews.go.com/International/wireStory/hong-kong-prosecutors-allege-democracy-publisher-jimmy-lai-106066453", + "categories": ["International"], + "isoDate": "2024-01-03T14:22:31.000Z" + }, + { + "title": " Taiwan reports China sent 4 suspected spy balloons over the island", + "link": "https://abcnews.go.com/International/wireStory/taiwan-reports-china-4-suspected-spy-balloons-island-106069654", + "pubDate": "Wed, 03 Jan 2024 09:14:33 -0500", + "content": "Taiwan’s Defense Ministry says China sent four balloons over the island, three of which passed near to a key air force base", + "contentSnippet": "Taiwan\u2019s Defense Ministry says China sent four balloons over the island, three of which passed near to a key air force base", + "guid": "https://abcnews.go.com/International/wireStory/taiwan-reports-china-4-suspected-spy-balloons-island-106069654", + "categories": ["International"], + "isoDate": "2024-01-03T14:14:33.000Z" + }, + { + "title": " Iranian deputy governor calls explosions that killed over 20 people at ceremony for slain general a 'terroristic' attack", + "link": "https://abcnews.go.com/International/wireStory/iranian-deputy-governor-calls-explosions-killed-20-people-106069025", + "pubDate": "Wed, 03 Jan 2024 08:34:12 -0500", + "content": "Iranian deputy governor calls explosions that killed over 20 people at ceremony for slain general a 'terroristic' attack", + "contentSnippet": "Iranian deputy governor calls explosions that killed over 20 people at ceremony for slain general a 'terroristic' attack", + "guid": "https://abcnews.go.com/International/wireStory/iranian-deputy-governor-calls-explosions-killed-20-people-106069025", + "categories": ["International"], + "isoDate": "2024-01-03T13:34:12.000Z" + }, + { + "title": " Ex-Pakistani Prime Minister Khan indicted for allegedly insulting election officials", + "link": "https://abcnews.go.com/International/wireStory/pakistani-court-indicted-former-leader-imran-khan-allegedly-106069116", + "pubDate": "Wed, 03 Jan 2024 08:28:21 -0500", + "content": "A lawyer says a Pakistani court has indicted former Prime Minister Imran Khan in a contempt case for allegedly insulting election officials", + "contentSnippet": "A lawyer says a Pakistani court has indicted former Prime Minister Imran Khan in a contempt case for allegedly insulting election officials", + "guid": "https://abcnews.go.com/International/wireStory/pakistani-court-indicted-former-leader-imran-khan-allegedly-106069116", + "categories": ["International"], + "isoDate": "2024-01-03T13:28:21.000Z" + }, + { + "title": " At least 20 people killed in blasts at ceremony honoring slain Iranian general, state-run news agency says", + "link": "https://abcnews.go.com/International/wireStory/20-people-killed-blasts-ceremony-honoring-slain-iranian-106068540", + "pubDate": "Wed, 03 Jan 2024 07:54:04 -0500", + "content": "At least 20 people killed in blasts at ceremony honoring slain Iranian general, state-run news agency says", + "contentSnippet": "At least 20 people killed in blasts at ceremony honoring slain Iranian general, state-run news agency says", + "guid": "https://abcnews.go.com/International/wireStory/20-people-killed-blasts-ceremony-honoring-slain-iranian-106068540", + "categories": ["International"], + "isoDate": "2024-01-03T12:54:04.000Z" + }, + { + "title": " Sheikh Hasina once fought for democracy in Bangladesh. Her critics say she now threatens it", + "link": "https://abcnews.go.com/International/wireStory/sheikh-hasina-fought-democracy-bangladesh-critics-now-threatens-106063543", + "pubDate": "Wed, 03 Jan 2024 07:38:21 -0500", + "content": "The elections in Bangladesh are all about one person: Prime Minister Sheikh Hasina", + "contentSnippet": "The elections in Bangladesh are all about one person: Prime Minister Sheikh Hasina", + "guid": "https://abcnews.go.com/International/wireStory/sheikh-hasina-fought-democracy-bangladesh-critics-now-threatens-106063543", + "categories": ["International"], + "isoDate": "2024-01-03T12:38:21.000Z" + }, + { + "title": " New Year\u2019s Day quake in Japan revives the trauma of 2011 triple disasters", + "link": "https://abcnews.go.com/International/wireStory/new-years-day-quake-japan-revives-trauma-2011-106065854", + "pubDate": "Wed, 03 Jan 2024 06:34:33 -0500", + "content": "The powerful earthquake that shattered the peace of New Year’s Day in central Japan did not spur the kind of tsunamis that scoured the northeastern Pacific coast in 2011", + "contentSnippet": "The powerful earthquake that shattered the peace of New Year\u2019s Day in central Japan did not spur the kind of tsunamis that scoured the northeastern Pacific coast in 2011", + "guid": "https://abcnews.go.com/International/wireStory/new-years-day-quake-japan-revives-trauma-2011-106065854", + "categories": ["International"], + "isoDate": "2024-01-03T11:34:33.000Z" + }, + { + "title": " EU targets world's biggest diamond miner as part of Russia war sanctions", + "link": "https://abcnews.go.com/International/wireStory/eu-targets-worlds-biggest-diamond-miner-part-russia-106066915", + "pubDate": "Wed, 03 Jan 2024 06:02:35 -0500", + "content": "The European Union has imposed sanctions on the world’s biggest diamond mining company and its chief executive officer as part of what it says is its “unwavering commitment” to Ukraine in the war against Russia", + "contentSnippet": "The European Union has imposed sanctions on the world\u2019s biggest diamond mining company and its chief executive officer as part of what it says is its \u201cunwavering commitment\u201d to Ukraine in the war against Russia", + "guid": "https://abcnews.go.com/International/wireStory/eu-targets-worlds-biggest-diamond-miner-part-russia-106066915", + "categories": ["International"], + "isoDate": "2024-01-03T11:02:35.000Z" + }, + { + "title": " Australia launches inquiry into why Cabinet documents relating to Iraq war remain secret", + "link": "https://abcnews.go.com/International/wireStory/australia-launches-inquiry-cabinet-documents-relating-iraq-war-106061481", + "pubDate": "Tue, 02 Jan 2024 22:18:33 -0500", + "content": "Prime Minister Anthony Albanese has ordered an inquiry into why 20-year-old Cabinet documents relating to Australia joining the United States-led Iraq invasion remain secret, saying Australians have a right to know why their country went to war in 2003", + "contentSnippet": "Prime Minister Anthony Albanese has ordered an inquiry into why 20-year-old Cabinet documents relating to Australia joining the United States-led Iraq invasion remain secret, saying Australians have a right to know why their country went to war in 2003", + "guid": "https://abcnews.go.com/International/wireStory/australia-launches-inquiry-cabinet-documents-relating-iraq-war-106061481", + "categories": ["International"], + "isoDate": "2024-01-03T03:18:33.000Z" + }, + { + "title": " Strike kills 12 people, mostly children, in Gaza area declared safe zone by Israel", + "link": "https://abcnews.go.com/International/wireStory/strike-kills-12-people-children-gaza-area-declared-106106354", + "pubDate": "Thu, 04 Jan 2024 12:10:27 -0500", + "content": "Palestinian hospital officials say an Israeli strike hit a home in an area of southern Gaza that the military had declared a safe zone, killing at least 12 people, almost all children", + "contentSnippet": "Palestinian hospital officials say an Israeli strike hit a home in an area of southern Gaza that the military had declared a safe zone, killing at least 12 people, almost all children", + "guid": "https://abcnews.go.com/International/wireStory/strike-kills-12-people-children-gaza-area-declared-106106354", + "categories": ["International"], + "isoDate": "2024-01-04T17:10:27.000Z" + }, + { + "title": " Russia and Ukraine exchange long-range attacks as their front-line forces remain bogged down", + "link": "https://abcnews.go.com/International/wireStory/russia-ukraine-exchange-long-range-attacks-front-line-106105489", + "pubDate": "Thu, 04 Jan 2024 11:54:37 -0500", + "content": "Russia’s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", + "contentSnippet": "Russia\u2019s Defense Ministry says air defenses shot down 10 Ukrainian air-launched missiles over the Moscow-annexed Crimean Peninsula", + "guid": "https://abcnews.go.com/International/wireStory/russia-ukraine-exchange-long-range-attacks-front-line-106105489", + "categories": ["International"], + "isoDate": "2024-01-04T16:54:37.000Z" + }, + { + "title": " Italian Premier Meloni says curbing migrant arrivals from Africa is about investment, not charity", + "link": "https://abcnews.go.com/International/wireStory/italian-premier-meloni-curbing-migrant-arrivals-africa-investment-106099808", + "pubDate": "Thu, 04 Jan 2024 11:54:33 -0500", + "content": "Italian Premier Giorgia Meloni has told her European Union partners that curbing migration flows from African countries has less to do with offers of charity than strong partnerships coupled with strategic investments in those nations", + "contentSnippet": "Italian Premier Giorgia Meloni has told her European Union partners that curbing migration flows from African countries has less to do with offers of charity than strong partnerships coupled with strategic investments in those nations", + "guid": "https://abcnews.go.com/International/wireStory/italian-premier-meloni-curbing-migrant-arrivals-africa-investment-106099808", + "categories": ["International"], + "isoDate": "2024-01-04T16:54:33.000Z" + }, + { + "title": " The key question about fiery crash at Tokyo airport: Did one or both planes have OK to use runway?", + "link": "https://abcnews.go.com/International/wireStory/key-question-fiery-crash-tokyo-airport-planes-runway-106102926", + "pubDate": "Thu, 04 Jan 2024 11:54:22 -0500", + "content": "Passengers on Japan Airlines Flight 516 were buckled up as their pilot made a final approach to Tokyo’s Haneda Airport", + "contentSnippet": "Passengers on Japan Airlines Flight 516 were buckled up as their pilot made a final approach to Tokyo\u2019s Haneda Airport", + "guid": "https://abcnews.go.com/International/wireStory/key-question-fiery-crash-tokyo-airport-planes-runway-106102926", + "categories": ["International"], + "isoDate": "2024-01-04T16:54:22.000Z" + }, + { + "title": " Live updates | Hamas loses a leader in Lebanon but holds on in Gaza", + "link": "https://abcnews.go.com/International/wireStory/live-updates-hamas-loses-leader-lebanon-holds-gaza-106104237", + "pubDate": "Thu, 04 Jan 2024 11:30:22 -0500", + "content": "Israel appears far from achieving its goals of crushing Hamas and freeing an estimated 129 hostages still held in Gaza nearly three months after the group’s surprise cross-border attack and the Israeli government’s declaration of war", + "contentSnippet": "Israel appears far from achieving its goals of crushing Hamas and freeing an estimated 129 hostages still held in Gaza nearly three months after the group\u2019s surprise cross-border attack and the Israeli government\u2019s declaration of war", + "guid": "https://abcnews.go.com/International/wireStory/live-updates-hamas-loses-leader-lebanon-holds-gaza-106104237", + "categories": ["International"], + "isoDate": "2024-01-04T16:30:22.000Z" + }, + { + "title": " Vatican: No heresy in allowing blessings for same-sex couples after bishops push back", + "link": "https://abcnews.go.com/International/wireStory/vatican-heresy-allowing-blessings-same-sex-couples-after-106099131", + "pubDate": "Thu, 04 Jan 2024 10:57:54 -0500", + "content": "The Vatican is insisting there is nothing heretical in the recent move by Pope Francis to allow priests to bless same-sex couples", + "contentSnippet": "The Vatican is insisting there is nothing heretical in the recent move by Pope Francis to allow priests to bless same-sex couples", + "guid": "https://abcnews.go.com/International/wireStory/vatican-heresy-allowing-blessings-same-sex-couples-after-106099131", + "categories": ["International"], + "isoDate": "2024-01-04T15:57:54.000Z" + }, + { + "title": " Thousands of opposition activists languish in prison as Bangladesh gears up for national election", + "link": "https://abcnews.go.com/International/wireStory/thousands-opposition-activists-languish-prison-bangladesh-gears-national-106128472", + "pubDate": "Fri, 05 Jan 2024 08:58:30 -0500", + "content": "In the months leading to Bangladesh’s national election on Sunday, thousands of opposition supporters and politicians have been arrested", + "contentSnippet": "In the months leading to Bangladesh\u2019s national election on Sunday, thousands of opposition supporters and politicians have been arrested", + "guid": "https://abcnews.go.com/International/wireStory/thousands-opposition-activists-languish-prison-bangladesh-gears-national-106128472", + "categories": ["International"], + "isoDate": "2024-01-05T13:58:30.000Z" + }, + { + "title": " AP Week in Pictures: Latin America and Caribbean", + "link": "https://abcnews.go.com/International/wireStory/ap-week-pictures-latin-america-caribbean-106122159", + "pubDate": "Fri, 05 Jan 2024 08:58:28 -0500", + "content": "\nDec. 29 - Jan. 3, 2024\n\nThis photo gallery highlights some of the most compelling images made or published by Associated Press photographers in Latin America and the Caribbean.\n\nVenezuelans celebrated New Year's Eve outdoors in public squares. Brazilians watched fireworks glistening over the bay in Rio de Janeiro and Ecuadorians dressed up in devil costumes to dance out the old year and bring in 2024. The Brazilian city of Sao Paulo hosted its annual, 15-kilometer New Year's Eve race.\n\nFrench highliner Nathan Paulin wowed spectators with his tightrope performance in Santiago, kicking off Chile's largest performing arts festival. In Mexico, the president inaugurated a “mega-pharmacy" to help end a medicine supply issue for hospitals, and the Zapatista National Liberation Army (EZLN) marked the 30th anniversary of their uprising.\n\nThe selection was curated by Senior Photo Editor Leslie Mazoch in Mexico City.\n\n___\n\nFollow AP visual journalism:\n\nAP Images blog:...", + "contentSnippet": "Dec. 29 - Jan. 3, 2024\n\nThis photo gallery highlights some of the most compelling images made or published by Associated Press photographers in Latin America and the Caribbean.\n\nVenezuelans celebrated New Year's Eve outdoors in public squares. Brazilians watched fireworks glistening over the bay in Rio de Janeiro and Ecuadorians dressed up in devil costumes to dance out the old year and bring in 2024. The Brazilian city of Sao Paulo hosted its annual, 15-kilometer New Year's Eve race.\n\nFrench highliner Nathan Paulin wowed spectators with his tightrope performance in Santiago, kicking off Chile's largest performing arts festival. In Mexico, the president inaugurated a \u201cmega-pharmacy\" to help end a medicine supply issue for hospitals, and the Zapatista National Liberation Army (EZLN) marked the 30th anniversary of their uprising.\n\nThe selection was curated by Senior Photo Editor Leslie Mazoch in Mexico City.\n\n___\n\nFollow AP visual journalism:\n\nAP Images blog:...", + "guid": "https://abcnews.go.com/International/wireStory/ap-week-pictures-latin-america-caribbean-106122159", + "categories": ["International"], + "isoDate": "2024-01-05T13:58:28.000Z" + }, + { + "title": " Ukraine unleashes more drones and missiles at Russian areas", + "link": "https://abcnews.go.com/International/wireStory/ukraine-unleashes-drones-missiles-russian-areas-part-new-106126514", + "pubDate": "Fri, 05 Jan 2024 08:58:18 -0500", + "content": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine’s borders", + "contentSnippet": "Russia says its air defenses downed dozens of Ukrainian drones in occupied Crimea and southern Russia as Kyiv pressed its strategy of targeting the Moscow-annexed peninsula and taking the 22-month war well beyond Ukraine\u2019s borders", + "guid": "https://abcnews.go.com/International/wireStory/ukraine-unleashes-drones-missiles-russian-areas-part-new-106126514", + "categories": ["International"], + "isoDate": "2024-01-05T13:58:18.000Z" + }, + { + "title": " Live updates | 6 killed overnight in an apparent Israeli airstrike on a home in southern Gaza", + "link": "https://abcnews.go.com/International/wireStory/live-updates-hostage-held-gaza-dies-captivity-southern-106124918", + "pubDate": "Fri, 05 Jan 2024 08:42:36 -0500", + "content": "At least six people have been killed in an apparent Israeli airstrike on a home in the southern Gaza city of Rafah overnight", + "contentSnippet": "At least six people have been killed in an apparent Israeli airstrike on a home in the southern Gaza city of Rafah overnight", + "guid": "https://abcnews.go.com/International/wireStory/live-updates-hostage-held-gaza-dies-captivity-southern-106124918", + "categories": ["International"], + "isoDate": "2024-01-05T13:42:36.000Z" + }, + { + "title": " PepsiCo products are being pulled from some Carrefour grocery stores in Europe over price hikes", + "link": "https://abcnews.go.com/International/wireStory/pepsico-products-pulled-carrefour-grocery-stores-europe-price-106125530", + "pubDate": "Fri, 05 Jan 2024 08:34:21 -0500", + "content": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay’s potato chips, Quaker Oats, Lipton tea and its namesake soda", + "contentSnippet": "Global supermarket chain Carrefour will stop selling PepsiCo products in its stores in France, Belgium, Spain and Italy over price increases for popular items like Lay\u2019s potato chips, Quaker Oats, Lipton tea and its namesake soda", + "guid": "https://abcnews.go.com/International/wireStory/pepsico-products-pulled-carrefour-grocery-stores-europe-price-106125530", + "categories": ["International"], + "isoDate": "2024-01-05T13:34:21.000Z" + }, + { + "title": " 4 patients die after a fire breaks out at a hospital in northern Germany", + "link": "https://abcnews.go.com/International/wireStory/4-patients-die-after-fire-breaks-hospital-northern-106124736", + "pubDate": "Fri, 05 Jan 2024 08:31:32 -0500", + "content": "Police say four people have died after a fire broke out at a hospital in northern Germany and spread to several patients’ rooms", + "contentSnippet": "Police say four people have died after a fire broke out at a hospital in northern Germany and spread to several patients\u2019 rooms", + "guid": "https://abcnews.go.com/International/wireStory/4-patients-die-after-fire-breaks-hospital-northern-106124736", + "categories": ["International"], + "isoDate": "2024-01-05T13:31:32.000Z" + }, + { + "title": " Europe's inflation is up after months of decline. Could it delay interest rate cuts?", + "link": "https://abcnews.go.com/International/wireStory/europes-inflation-after-months-decline-longer-wait-interest-106124825", + "pubDate": "Fri, 05 Jan 2024 08:30:17 -0500", + "content": "Inflation is on the rebound in Europe", + "contentSnippet": "Inflation is on the rebound in Europe", + "guid": "https://abcnews.go.com/International/wireStory/europes-inflation-after-months-decline-longer-wait-interest-106124825", + "categories": ["International"], + "isoDate": "2024-01-05T13:30:17.000Z" + }, + { + "title": " Nepal bars citizens from going to Russia or Ukraine for work", + "link": "https://abcnews.go.com/International/wireStory/nepal-bars-citizens-russia-ukraine-work-recruited-fighters-106124536", + "pubDate": "Fri, 05 Jan 2024 08:18:03 -0500", + "content": "Nepal’s government has banned citizens from going to Russia and Ukraine for employment, saying many have been recruited by the Russian army to fight in the conflict there", + "contentSnippet": "Nepal\u2019s government has banned citizens from going to Russia and Ukraine for employment, saying many have been recruited by the Russian army to fight in the conflict there", + "guid": "https://abcnews.go.com/International/wireStory/nepal-bars-citizens-russia-ukraine-work-recruited-fighters-106124536", + "categories": ["International"], + "isoDate": "2024-01-05T13:18:03.000Z" + }, + { + "title": " A competition Chinese chess player says he's going to court after losing his title over a defecation", + "link": "https://abcnews.go.com/International/wireStory/competition-chinese-chess-player-court-after-losing-title-106125112", + "pubDate": "Fri, 05 Jan 2024 08:10:10 -0500", + "content": "A competitor in Chinese chess says he has sued the national association in China for mental distress after he was stripped of a title for drinking alcohol and defecating in the bathtub of his hotel room at a recent competition", + "contentSnippet": "A competitor in Chinese chess says he has sued the national association in China for mental distress after he was stripped of a title for drinking alcohol and defecating in the bathtub of his hotel room at a recent competition", + "guid": "https://abcnews.go.com/International/wireStory/competition-chinese-chess-player-court-after-losing-title-106125112", + "categories": ["International"], + "isoDate": "2024-01-05T13:10:10.000Z" + }, + { + "title": " Russia approves 2 candidates for ballot against Putin in March election", + "link": "https://abcnews.go.com/International/wireStory/russia-approves-2-candidates-ballot-putin-march-election-106124962", + "pubDate": "Fri, 05 Jan 2024 07:56:18 -0500", + "content": "Russia’s national elections commission on Friday registered the first two candidates who will compete with President Vladimir Putin in the March election that Putin is all but certain to win", + "contentSnippet": "Russia\u2019s national elections commission on Friday registered the first two candidates who will compete with President Vladimir Putin in the March election that Putin is all but certain to win", + "guid": "https://abcnews.go.com/International/wireStory/russia-approves-2-candidates-ballot-putin-march-election-106124962", + "categories": ["International"], + "isoDate": "2024-01-05T12:56:18.000Z" + }, + { + "title": " Sri Lanka declares moratorium on research ships for a year amid Indian concerns over Chinese vessels", + "link": "https://abcnews.go.com/International/wireStory/sri-lanka-declares-moratorium-research-ships-year-amid-106125629", + "pubDate": "Fri, 05 Jan 2024 07:21:55 -0500", + "content": "Sri Lanka has declared a moratorium on foreign research ships entering its waters for a year amid concerns from India over Chinese research vessels docking in its neighborhood", + "contentSnippet": "Sri Lanka has declared a moratorium on foreign research ships entering its waters for a year amid concerns from India over Chinese research vessels docking in its neighborhood", + "guid": "https://abcnews.go.com/International/wireStory/sri-lanka-declares-moratorium-research-ships-year-amid-106125629", + "categories": ["International"], + "isoDate": "2024-01-05T12:21:55.000Z" + }, + { + "title": " Japanese air safety experts search for voice data from plane debris", + "link": "https://abcnews.go.com/International/wireStory/japanese-air-safety-experts-search-voice-data-plane-106124328", + "pubDate": "Fri, 05 Jan 2024 06:58:18 -0500", + "content": "Transport safety officials are searching for the voice recorder from a Japan Airlines airliner that caught fire after a collision with a coast guard plane", + "contentSnippet": "Transport safety officials are searching for the voice recorder from a Japan Airlines airliner that caught fire after a collision with a coast guard plane", + "guid": "https://abcnews.go.com/International/wireStory/japanese-air-safety-experts-search-voice-data-plane-106124328", + "categories": ["International"], + "isoDate": "2024-01-05T11:58:18.000Z" + }, + { + "title": " AP Week in Pictures: Asia", + "link": "https://abcnews.go.com/International/wireStory/ap-week-pictures-asia-106121709", + "pubDate": "Thu, 04 Jan 2024 23:38:29 -0500", + "content": "\nDec. 29, 2023-Jan. 4, 2024\n\nThis photo gallery highlights some of the most compelling images in the Asia-Pacific region made or published by The Associated Press in the past week.\n\nA series of powerful earthquakes hit western Japan, damaging thousands of buildings, vehicles and boats. A Japan Airlines plane catches fire on the runway of Haneda airport after colliding with a Japanese coast guard aircraft. New Year's celebrations are held in various countries in Asia.\n\nThe selection was curated by AP photo editor Masayo Yoshida in Tokyo.\n\n___\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on X: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", + "contentSnippet": "Dec. 29, 2023-Jan. 4, 2024\n\nThis photo gallery highlights some of the most compelling images in the Asia-Pacific region made or published by The Associated Press in the past week.\n\nA series of powerful earthquakes hit western Japan, damaging thousands of buildings, vehicles and boats. A Japan Airlines plane catches fire on the runway of Haneda airport after colliding with a Japanese coast guard aircraft. New Year's celebrations are held in various countries in Asia.\n\nThe selection was curated by AP photo editor Masayo Yoshida in Tokyo.\n\n___\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on X: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", + "guid": "https://abcnews.go.com/International/wireStory/ap-week-pictures-asia-106121709", + "categories": ["International"], + "isoDate": "2024-01-05T04:38:29.000Z" + }, + { + "title": " Sudan paramilitary leader says he's committed to cease-fire, but no progress on proposed peace talks", + "link": "https://abcnews.go.com/International/wireStory/sudan-paramilitary-leader-committed-cease-fire-progress-proposed-106115130", + "pubDate": "Thu, 04 Jan 2024 23:06:43 -0500", + "content": "Sudanese paramilitary leader Gen. Mohammed Hamdan Dagalo says he is committed to a cease-fire to end the devastating war that has wrecked his country", + "contentSnippet": "Sudanese paramilitary leader Gen. Mohammed Hamdan Dagalo says he is committed to a cease-fire to end the devastating war that has wrecked his country", + "guid": "https://abcnews.go.com/International/wireStory/sudan-paramilitary-leader-committed-cease-fire-progress-proposed-106115130", + "categories": ["International"], + "isoDate": "2024-01-05T04:06:43.000Z" + }, + { + "title": " Former Guatemalan president released on bond; leaves prison for first time since 2015", + "link": "https://abcnews.go.com/International/wireStory/guatemalas-former-president-released-bond-leaves-prison-time-106116508", + "pubDate": "Thu, 04 Jan 2024 21:38:29 -0500", + "content": "Former Guatemalan President Otto Pérez Molina was released from prison after posting bond of more than $10.3 million quetzales ($1.3 million), according to his lawyer", + "contentSnippet": "Former Guatemalan President Otto P\u00e9rez Molina was released from prison after posting bond of more than $10.3 million quetzales ($1.3 million), according to his lawyer", + "guid": "https://abcnews.go.com/International/wireStory/guatemalas-former-president-released-bond-leaves-prison-time-106116508", + "categories": ["International"], + "isoDate": "2024-01-05T02:38:29.000Z" + }, + { + "title": " Putin speeds up a citizenship path for foreigners who enlist in the Russian military", + "link": "https://abcnews.go.com/International/wireStory/putin-speeds-citizenship-path-foreigners-enlist-russian-military-106107967", + "pubDate": "Thu, 04 Jan 2024 13:30:23 -0500", + "content": "President Vladimir Putin has signed a decree that speeds up a path to Russian citizenship for foreigners who enlist in the country’s military amid the 22-month-old war in Ukraine", + "contentSnippet": "President Vladimir Putin has signed a decree that speeds up a path to Russian citizenship for foreigners who enlist in the country\u2019s military amid the 22-month-old war in Ukraine", + "guid": "https://abcnews.go.com/International/wireStory/putin-speeds-citizenship-path-foreigners-enlist-russian-military-106107967", + "categories": ["International"], + "isoDate": "2024-01-04T18:30:23.000Z" + }, + { + "title": " Serbia says it is disappointed with possible US sale of anti-tank missiles to Kosovo", + "link": "https://abcnews.go.com/International/wireStory/serbia-disappointed-kosovos-request-buy-anti-tank-missiles-106299194", + "pubDate": "Thu, 11 Jan 2024 16:10:35 -0500", + "content": "The U.S. ambassador to Serbia says the United States has received Kosovo’s request for the purchase of Javelin anti-tank missiles", + "contentSnippet": "The U.S. ambassador to Serbia says the United States has received Kosovo\u2019s request for the purchase of Javelin anti-tank missiles", + "guid": "https://abcnews.go.com/International/wireStory/serbia-disappointed-kosovos-request-buy-anti-tank-missiles-106299194", + "categories": ["International"], + "isoDate": "2024-01-11T21:10:35.000Z" + }, + { + "title": " Nicaragua opponent exiled in Costa Rica wounded in shooting", + "link": "https://abcnews.go.com/International/wireStory/nicaragua-opponent-exiled-costa-rica-wounded-shooting-106304846", + "pubDate": "Thu, 11 Jan 2024 16:09:51 -0500", + "content": "Costa Rican officials say that a member of the Nicaraguan opposition has been shot seven times and is in serious condition in Costa Rica", + "contentSnippet": "Costa Rican officials say that a member of the Nicaraguan opposition has been shot seven times and is in serious condition in Costa Rica", + "guid": "https://abcnews.go.com/International/wireStory/nicaragua-opponent-exiled-costa-rica-wounded-shooting-106304846", + "categories": ["International"], + "isoDate": "2024-01-11T21:09:51.000Z" + }, + { + "title": " France's new government announced with only one major change at the foreign ministry", + "link": "https://abcnews.go.com/International/wireStory/frances-new-government-announced-major-change-foreign-ministry-106302458", + "pubDate": "Thu, 11 Jan 2024 16:02:22 -0500", + "content": "The new government of French Prime Minister Gabriel Attal has been announced with only one major change at the foreign ministry, while most high-profile Cabinet members remained unchanged", + "contentSnippet": "The new government of French Prime Minister Gabriel Attal has been announced with only one major change at the foreign ministry, while most high-profile Cabinet members remained unchanged", + "guid": "https://abcnews.go.com/International/wireStory/frances-new-government-announced-major-change-foreign-ministry-106302458", + "categories": ["International"], + "isoDate": "2024-01-11T21:02:22.000Z" + }, + { + "title": " UN court opens hearings on South Africa's allegation that Israel committing genocide", + "link": "https://abcnews.go.com/International/wireStory/top-court-opens-hearings-south-africas-allegation-israel-106282816", + "pubDate": "Thu, 11 Jan 2024 15:22:37 -0500", + "content": "In a case that strikes at the heart of Israel’s national identity, South Africa has formally accused the country of committing genocide against Palestinians and pleaded with the United Nations’ top court to order a halt to Israeli military operations i...", + "contentSnippet": "In a case that strikes at the heart of Israel\u2019s national identity, South Africa has formally accused the country of committing genocide against Palestinians and pleaded with the United Nations\u2019 top court to order a halt to Israeli military operations i...", + "guid": "https://abcnews.go.com/International/wireStory/top-court-opens-hearings-south-africas-allegation-israel-106282816", + "categories": ["International"], + "isoDate": "2024-01-11T20:22:37.000Z" + }, + { + "title": " Rome opens new archaeological park and museum in shadow of Colosseum", + "link": "https://abcnews.go.com/International/wireStory/rome-opens-new-archaeological-park-museum-shadow-colosseum-106302096", + "pubDate": "Thu, 11 Jan 2024 14:50:31 -0500", + "content": "Rome authorities have inaugurated a new archaeological park and museum in the shadow of the Colosseum that features an original marble map of Ancient Rome that visitors can literally walk over", + "contentSnippet": "Rome authorities have inaugurated a new archaeological park and museum in the shadow of the Colosseum that features an original marble map of Ancient Rome that visitors can literally walk over", + "guid": "https://abcnews.go.com/International/wireStory/rome-opens-new-archaeological-park-museum-shadow-colosseum-106302096", + "categories": ["International"], + "isoDate": "2024-01-11T19:50:31.000Z" + }, + { + "title": " Live updates | UN top court hears genocide allegation as Israel focuses fighting in central Gaza", + "link": "https://abcnews.go.com/International/wireStory/live-updates-top-court-hear-genocide-allegation-israel-106285071", + "pubDate": "Thu, 11 Jan 2024 13:30:30 -0500", + "content": "The United Nations' top court has started hearings over allegations that Israel's war with Hamas amounts to genocide, which Israel strongly denies", + "contentSnippet": "The United Nations' top court has started hearings over allegations that Israel's war with Hamas amounts to genocide, which Israel strongly denies", + "guid": "https://abcnews.go.com/International/wireStory/live-updates-top-court-hear-genocide-allegation-israel-106285071", + "categories": ["International"], + "isoDate": "2024-01-11T18:30:30.000Z" + }, + { + "title": " Tons of trash clogs a river in Bosnia. It's a seasonal problem that activists want an end to", + "link": "https://abcnews.go.com/International/wireStory/tons-trash-clogs-river-bosnia-seasonal-problem-activists-106291299", + "pubDate": "Thu, 11 Jan 2024 10:26:31 -0500", + "content": "Tons of garbage floats down a river at least twice a year and ends up near the eastern Bosnian town of Visegrad behind a barrier installed by a local hydroelectric plant", + "contentSnippet": "Tons of garbage floats down a river at least twice a year and ends up near the eastern Bosnian town of Visegrad behind a barrier installed by a local hydroelectric plant", + "guid": "https://abcnews.go.com/International/wireStory/tons-trash-clogs-river-bosnia-seasonal-problem-activists-106291299", + "categories": ["International"], + "isoDate": "2024-01-11T15:26:31.000Z" + }, + { + "title": " Grenade explosion in Afghanistan's capital kills 2 people and wounds 12 in Shiite neighborhood", + "link": "https://abcnews.go.com/International/wireStory/grenade-explosion-afghanistans-capital-kills-2-people-wounds-106291041", + "pubDate": "Thu, 11 Jan 2024 09:58:45 -0500", + "content": "Police say a grenade explosion in Afghanistan’s capital has killed two people and wounded 12 in a Shiite neighborhood of Kabul", + "contentSnippet": "Police say a grenade explosion in Afghanistan\u2019s capital has killed two people and wounded 12 in a Shiite neighborhood of Kabul", + "guid": "https://abcnews.go.com/International/wireStory/grenade-explosion-afghanistans-capital-kills-2-people-wounds-106291041", + "categories": ["International"], + "isoDate": "2024-01-11T14:58:45.000Z" + }, + { + "title": " Iran confirms its navy seized the oil tanker in the Gulf of Oman that was reported to have been boarded by armed men", + "link": "https://abcnews.go.com/International/wireStory/iran-confirms-navy-seized-oil-tanker-gulf-oman-106288386", + "pubDate": "Thu, 11 Jan 2024 08:26:03 -0500", + "content": "Iran confirms its navy seized the oil tanker in the Gulf of Oman that was reported to have been boarded by armed men", + "contentSnippet": "Iran confirms its navy seized the oil tanker in the Gulf of Oman that was reported to have been boarded by armed men", + "guid": "https://abcnews.go.com/International/wireStory/iran-confirms-navy-seized-oil-tanker-gulf-oman-106288386", + "categories": ["International"], + "isoDate": "2024-01-11T13:26:03.000Z" + }, + { + "title": " Magnitude 6.4 earthquake shakes parts of Pakistan, Afghanistan; no damage reported", + "link": "https://abcnews.go.com/International/wireStory/magnitude-64-earthquake-rattles-pakistan-parts-afghanistan-damage-106286085", + "pubDate": "Thu, 11 Jan 2024 08:22:12 -0500", + "content": "Officials say a magnitude 6.4 earthquake has shaken parts of Pakistan and neighboring Afghanistan", + "contentSnippet": "Officials say a magnitude 6.4 earthquake has shaken parts of Pakistan and neighboring Afghanistan", + "guid": "https://abcnews.go.com/International/wireStory/magnitude-64-earthquake-rattles-pakistan-parts-afghanistan-damage-106286085", + "categories": ["International"], + "isoDate": "2024-01-11T13:22:12.000Z" + }, + { + "title": " Turkey, Bulgaria and Romania sign a deal to tackle Black Sea mines", + "link": "https://abcnews.go.com/International/wireStory/turkey-bulgaria-romania-sign-deal-tackle-black-sea-106285982", + "pubDate": "Thu, 11 Jan 2024 06:42:31 -0500", + "content": "Turkey, Bulgaria and Romania have signed an agreement to jointly tackle drifting sea mines that have threatened Black Sea shipping since the start of the Ukraine war", + "contentSnippet": "Turkey, Bulgaria and Romania have signed an agreement to jointly tackle drifting sea mines that have threatened Black Sea shipping since the start of the Ukraine war", + "guid": "https://abcnews.go.com/International/wireStory/turkey-bulgaria-romania-sign-deal-tackle-black-sea-106285982", + "categories": ["International"], + "isoDate": "2024-01-11T11:42:31.000Z" + }, + { + "title": " Germany's Scholz condemns alleged plot by far-right groups to deport millions if they take power", + "link": "https://abcnews.go.com/International/wireStory/germanys-scholz-condemns-alleged-plot-groups-deport-millions-106285983", + "pubDate": "Thu, 11 Jan 2024 06:10:33 -0500", + "content": "German Chancellor Olaf Scholz has sharply condemned alleged plans by members of far-right groups who supposedly met recently at a mansion outside Berlin to devise a plot to deport millions of immigrants, even those with German citizenship, if the group...", + "contentSnippet": "German Chancellor Olaf Scholz has sharply condemned alleged plans by members of far-right groups who supposedly met recently at a mansion outside Berlin to devise a plot to deport millions of immigrants, even those with German citizenship, if the group...", + "guid": "https://abcnews.go.com/International/wireStory/germanys-scholz-condemns-alleged-plot-groups-deport-millions-106285983", + "categories": ["International"], + "isoDate": "2024-01-11T11:10:33.000Z" + }, + { + "title": " Nepal cricket star sentenced to 8 years in prison for rape and ordered to pay fine", + "link": "https://abcnews.go.com/International/wireStory/nepals-star-cricket-player-sentenced-8-years-prison-106252047", + "pubDate": "Thu, 11 Jan 2024 03:14:32 -0500", + "content": "Nepal’s star cricket player and former captain of the national team has been sentenced to eight years in prison for rape and ordered to pay a fine", + "contentSnippet": "Nepal\u2019s star cricket player and former captain of the national team has been sentenced to eight years in prison for rape and ordered to pay a fine", + "guid": "https://abcnews.go.com/International/wireStory/nepals-star-cricket-player-sentenced-8-years-prison-106252047", + "categories": ["International"], + "isoDate": "2024-01-11T08:14:32.000Z" + }, + { + "title": " Taiwan's election is shaped by economic realities, not just Beijing's threats to use force", + "link": "https://abcnews.go.com/International/wireStory/taiwans-election-shaped-economic-realities-beijings-threats-force-106283847", + "pubDate": "Thu, 11 Jan 2024 01:14:31 -0500", + "content": "Beijing's threat to use force to claim the self-governed island of Taiwan isn't just about missiles and warships", + "contentSnippet": "Beijing's threat to use force to claim the self-governed island of Taiwan isn't just about missiles and warships", + "guid": "https://abcnews.go.com/International/wireStory/taiwans-election-shaped-economic-realities-beijings-threats-force-106283847", + "categories": ["International"], + "isoDate": "2024-01-11T06:14:31.000Z" + }, + { + "title": " Nearly 10,000 died from COVID-19 last month, fueled by holiday gatherings and new variant, WHO says", + "link": "https://abcnews.go.com/International/wireStory/holiday-gatherings-new-variant-driven-covid-cases-globally-106262660", + "pubDate": "Wed, 10 Jan 2024 21:22:22 -0500", + "content": "The head of the U.N. health agency says holiday gatherings and the spread of the most prominent variant globally led to increased transmission of COVID-19 last month", + "contentSnippet": "The head of the U.N. health agency says holiday gatherings and the spread of the most prominent variant globally led to increased transmission of COVID-19 last month", + "guid": "https://abcnews.go.com/International/wireStory/holiday-gatherings-new-variant-driven-covid-cases-globally-106262660", + "categories": ["International"], + "isoDate": "2024-01-11T02:22:22.000Z" + }, + { + "title": " Ecuador hunkers down for a government war on drug gangs after attack during live TV newscast", + "link": "https://abcnews.go.com/International/wireStory/air-masked-gunmen-storm-tv-studio-ecuador-gang-106247009", + "pubDate": "Wed, 10 Jan 2024 18:50:24 -0500", + "content": "Schools and stores are shuttered, many people stayed home and soldiers are roaming the streets of Ecuador’s biggest cities after armed gang members invaded a television station live afternoon newscast", + "contentSnippet": "Schools and stores are shuttered, many people stayed home and soldiers are roaming the streets of Ecuador\u2019s biggest cities after armed gang members invaded a television station live afternoon newscast", + "guid": "https://abcnews.go.com/International/wireStory/air-masked-gunmen-storm-tv-studio-ecuador-gang-106247009", + "categories": ["International"], + "isoDate": "2024-01-10T23:50:24.000Z" + }, + { + "title": " Kremlin foe Navalny, smiling and joking, appears in court via video link from an Arctic prison", + "link": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalny-smiling-joking-appears-court-video-106260640", + "pubDate": "Wed, 10 Jan 2024 11:46:30 -0500", + "content": "A smiling and joking Alexei Navalny has appeared in court via video link from the Arctic penal colony where he is serving a 19-year sentence", + "contentSnippet": "A smiling and joking Alexei Navalny has appeared in court via video link from the Arctic penal colony where he is serving a 19-year sentence", + "guid": "https://abcnews.go.com/International/wireStory/kremlin-foe-navalny-smiling-joking-appears-court-video-106260640", + "categories": ["International"], + "isoDate": "2024-01-10T16:46:30.000Z" + }, + { + "title": " Armed attack during live broadcast at Ecuadorian TV station. What's behind the spiraling violence?", + "link": "https://abcnews.go.com/International/wireStory/armed-attack-live-broadcast-ecuadorian-tv-station-spiraling-106246551", + "pubDate": "Wed, 10 Jan 2024 10:58:31 -0500", + "content": "A group of armed, masked men in Ecuador launched an audacious attack on a television station during a live broadcast and so revealed the country’s spiraling violence in the wake of an apparent recent prison escape", + "contentSnippet": "A group of armed, masked men in Ecuador launched an audacious attack on a television station during a live broadcast and so revealed the country\u2019s spiraling violence in the wake of an apparent recent prison escape", + "guid": "https://abcnews.go.com/International/wireStory/armed-attack-live-broadcast-ecuadorian-tv-station-spiraling-106246551", + "categories": ["International"], + "isoDate": "2024-01-10T15:58:31.000Z" + }, + { + "title": " Cesarean deliveries surge in Puerto Rico, reaching a record rate in the US territory, report says", + "link": "https://abcnews.go.com/International/wireStory/cesarean-deliveries-surge-puerto-rico-reaching-record-rate-106247734", + "pubDate": "Wed, 10 Jan 2024 08:18:33 -0500", + "content": "Cesareans are surging in the U.S. territory of Puerto Rico, which has one of the world’s highest rates", + "contentSnippet": "Cesareans are surging in the U.S. territory of Puerto Rico, which has one of the world\u2019s highest rates", + "guid": "https://abcnews.go.com/International/wireStory/cesarean-deliveries-surge-puerto-rico-reaching-record-rate-106247734", + "categories": ["International"], + "isoDate": "2024-01-10T13:18:33.000Z" + }, + { + "title": " Hong Kong man jailed 3 months for sedition for wearing T-shirt with protest slogan", + "link": "https://abcnews.go.com/International/wireStory/hong-kong-man-jailed-3-months-sedition-wearing-106251036", + "pubDate": "Wed, 10 Jan 2024 08:17:57 -0500", + "content": "A Hong Kong man has been sentenced to three months in prison on sedition charges for wearing a T-shirt with a slogan printed on it", + "contentSnippet": "A Hong Kong man has been sentenced to three months in prison on sedition charges for wearing a T-shirt with a slogan printed on it", + "guid": "https://abcnews.go.com/International/wireStory/hong-kong-man-jailed-3-months-sedition-wearing-106251036", + "categories": ["International"], + "isoDate": "2024-01-10T13:17:57.000Z" + }, + { + "title": " South Korean opposition leader released from hospital a week after being stabbed", + "link": "https://abcnews.go.com/International/wireStory/south-korean-opposition-leader-released-hospital-week-after-106246095", + "pubDate": "Wed, 10 Jan 2024 07:30:32 -0500", + "content": "South Korean police say the man accused of stabbing South Korean opposition leader Lee Jae-myung in the neck told investigators that he wanted to kill him to prevent him from becoming the country’s president", + "contentSnippet": "South Korean police say the man accused of stabbing South Korean opposition leader Lee Jae-myung in the neck told investigators that he wanted to kill him to prevent him from becoming the country\u2019s president", + "guid": "https://abcnews.go.com/International/wireStory/south-korean-opposition-leader-released-hospital-week-after-106246095", + "categories": ["International"], + "isoDate": "2024-01-10T12:30:32.000Z" + }, + { + "title": " Japan resumes landfill work at new US military site on Okinawa despite local opposition", + "link": "https://abcnews.go.com/International/wireStory/japan-resumes-landfill-work-new-us-military-site-106249533", + "pubDate": "Wed, 10 Jan 2024 05:46:24 -0500", + "content": "Japanese authorities have resumed landfill work at the planned new site of the U.S. military base on Okinawa despite protests by island residents that it tramples on their rights", + "contentSnippet": "Japanese authorities have resumed landfill work at the planned new site of the U.S. military base on Okinawa despite protests by island residents that it tramples on their rights", + "guid": "https://abcnews.go.com/International/wireStory/japan-resumes-landfill-work-new-us-military-site-106249533", + "categories": ["International"], + "isoDate": "2024-01-10T10:46:24.000Z" + }, + { + "title": " Kim calls South Korea a principal enemy as his rhetoric sharpens in a US election year", + "link": "https://abcnews.go.com/International/wireStory/kim-calls-south-korea-principal-enemy-rhetoric-sharpens-106242198", + "pubDate": "Wed, 10 Jan 2024 04:58:26 -0500", + "content": "North Korean leader Kim Jong Un has called South Korea “our principal enemy” and threatened to annihilate it if provoked", + "contentSnippet": "North Korean leader Kim Jong Un has called South Korea \u201cour principal enemy\u201d and threatened to annihilate it if provoked", + "guid": "https://abcnews.go.com/International/wireStory/kim-calls-south-korea-principal-enemy-rhetoric-sharpens-106242198", + "categories": ["International"], + "isoDate": "2024-01-10T09:58:26.000Z" + }, + { + "title": " With threats, pressure and financial lures, China seen as aiming to influence Taiwan's elections", + "link": "https://abcnews.go.com/International/wireStory/threats-pressure-financial-lures-china-aiming-influence-taiwans-106248386", + "pubDate": "Wed, 10 Jan 2024 02:34:36 -0500", + "content": "China is being accused of using military threats, diplomatic pressure and fake news in a broad strategy to influence voters in Taiwan’s elections to pick candidates who favor unification", + "contentSnippet": "China is being accused of using military threats, diplomatic pressure and fake news in a broad strategy to influence voters in Taiwan\u2019s elections to pick candidates who favor unification", + "guid": "https://abcnews.go.com/International/wireStory/threats-pressure-financial-lures-china-aiming-influence-taiwans-106248386", + "categories": ["International"], + "isoDate": "2024-01-10T07:34:36.000Z" + }, + { + "title": " China says it will launch its next lunar explorer in the first half of this year", + "link": "https://abcnews.go.com/International/wireStory/china-launch-lunar-explorer-half-year-106248295", + "pubDate": "Wed, 10 Jan 2024 01:22:29 -0500", + "content": "China’s space agency says its latest lunar explorer has arrived at the launch site in preparation for a mission to the moon in the first half of this year", + "contentSnippet": "China\u2019s space agency says its latest lunar explorer has arrived at the launch site in preparation for a mission to the moon in the first half of this year", + "guid": "https://abcnews.go.com/International/wireStory/china-launch-lunar-explorer-half-year-106248295", + "categories": ["International"], + "isoDate": "2024-01-10T06:22:29.000Z" + }, + { + "title": " Live updates | In Day 2 of hearings, Israel rejects South Africa's allegation of genocide", + "link": "https://abcnews.go.com/International/wireStory/live-updates-israel-defend-day-2-top-courts-106317374", + "pubDate": "Fri, 12 Jan 2024 06:02:31 -0500", + "content": "Israel is rejecting allegations levied by South Africa that its campaign against Hamas amounts to genocide against the Palestinian people", + "contentSnippet": "Israel is rejecting allegations levied by South Africa that its campaign against Hamas amounts to genocide against the Palestinian people", + "guid": "https://abcnews.go.com/International/wireStory/live-updates-israel-defend-day-2-top-courts-106317374", + "categories": ["International"], + "isoDate": "2024-01-12T11:02:31.000Z" + }, + { + "title": " Tesla puts German factory production on hold as Red Sea attacks disrupt supply chains", + "link": "https://abcnews.go.com/International/wireStory/tesla-puts-german-factory-production-hold-red-sea-106317653", + "pubDate": "Fri, 12 Jan 2024 06:02:29 -0500", + "content": "Tesla says it’s temporarily halting most of production at its German factory because of attacks in the Red Sea, a vital global shipping corridor", + "contentSnippet": "Tesla says it\u2019s temporarily halting most of production at its German factory because of attacks in the Red Sea, a vital global shipping corridor", + "guid": "https://abcnews.go.com/International/wireStory/tesla-puts-german-factory-production-hold-red-sea-106317653", + "categories": ["International"], + "isoDate": "2024-01-12T11:02:29.000Z" + }, + { + "title": " The Myanmar military says it and ethnic guerrilla groups have agreed to an immediate cease-fire", + "link": "https://abcnews.go.com/International/wireStory/china-myanmar-military-ethnic-guerrilla-groups-agreed-immediate-106317284", + "pubDate": "Fri, 12 Jan 2024 06:02:25 -0500", + "content": "Myanmar’s military said it has reached a cease-fire agreement with an alliance of three ethnic minority guerrilla groups that it has been battling in the north", + "contentSnippet": "Myanmar\u2019s military said it has reached a cease-fire agreement with an alliance of three ethnic minority guerrilla groups that it has been battling in the north", + "guid": "https://abcnews.go.com/International/wireStory/china-myanmar-military-ethnic-guerrilla-groups-agreed-immediate-106317284", + "categories": ["International"], + "isoDate": "2024-01-12T11:02:25.000Z" + }, + { + "title": " Japan successfully launches an intelligence-gathering satellite to watch for North Korean missiles", + "link": "https://abcnews.go.com/International/wireStory/japan-launches-intelligence-gathering-satellite-watch-north-korean-106316386", + "pubDate": "Fri, 12 Jan 2024 06:02:18 -0500", + "content": "Japan has successfully launched a rocket carrying a government intelligence-gathering satellite on a mission to watch movements at military sites in North Korea and improve natural disaster response", + "contentSnippet": "Japan has successfully launched a rocket carrying a government intelligence-gathering satellite on a mission to watch movements at military sites in North Korea and improve natural disaster response", + "guid": "https://abcnews.go.com/International/wireStory/japan-launches-intelligence-gathering-satellite-watch-north-korean-106316386", + "categories": ["International"], + "isoDate": "2024-01-12T11:02:18.000Z" + }, + { + "title": " The UK prime minister is in Kyiv to announce a new support package for Ukraine", + "link": "https://abcnews.go.com/International/wireStory/uk-prime-minister-kyiv-announce-new-support-package-106316964", + "pubDate": "Fri, 12 Jan 2024 06:02:17 -0500", + "content": "U.K. Prime Minister Rishi Sunak is visiting Kyiv to announce a new package of support for Ukraine, including an increase in military funding for its war with Russia, a statement from his office said", + "contentSnippet": "U.K. Prime Minister Rishi Sunak is visiting Kyiv to announce a new package of support for Ukraine, including an increase in military funding for its war with Russia, a statement from his office said", + "guid": "https://abcnews.go.com/International/wireStory/uk-prime-minister-kyiv-announce-new-support-package-106316964", + "categories": ["International"], + "isoDate": "2024-01-12T11:02:17.000Z" + }, + { + "title": " Houthi rebels say US-led strikes in Yemen killed 5 people and wounded 6, raising Mideast tensions", + "link": "https://abcnews.go.com/International/wireStory/us-led-strikes-yemeni-rebels-draw-attention-back-106314237", + "pubDate": "Fri, 12 Jan 2024 05:14:22 -0500", + "content": "U.S.-led airstrikes on Yemen’s Houthi rebels in response to their attacks on shipping in the Red Sea have pulled the world’s focus back on the yearslong war raging in the Arab world’s poorest nation", + "contentSnippet": "U.S.-led airstrikes on Yemen\u2019s Houthi rebels in response to their attacks on shipping in the Red Sea have pulled the world\u2019s focus back on the yearslong war raging in the Arab world\u2019s poorest nation", + "guid": "https://abcnews.go.com/International/wireStory/us-led-strikes-yemeni-rebels-draw-attention-back-106314237", + "categories": ["International"], + "isoDate": "2024-01-12T10:14:22.000Z" + }, + { + "title": " In Taiwan's election Saturday, who are the 3 candidates trying to become president?", + "link": "https://abcnews.go.com/International/wireStory/taiwans-election-saturday-3-candidates-become-president-106316780", + "pubDate": "Fri, 12 Jan 2024 04:02:29 -0500", + "content": "Three candidates are vying for Taiwan’s presidency in elections Saturday that are closely watched internationally", + "contentSnippet": "Three candidates are vying for Taiwan\u2019s presidency in elections Saturday that are closely watched internationally", + "guid": "https://abcnews.go.com/International/wireStory/taiwans-election-saturday-3-candidates-become-president-106316780", + "categories": ["International"], + "isoDate": "2024-01-12T09:02:29.000Z" + }, + { + "title": " UK Prime Minister Rishi Sunak arrives in Kyiv to announce new support package for Ukraine with more military funding", + "link": "https://abcnews.go.com/International/wireStory/uk-prime-minister-rishi-sunak-arrives-kyiv-announce-106316784", + "pubDate": "Fri, 12 Jan 2024 03:46:11 -0500", + "content": "UK Prime Minister Rishi Sunak arrives in Kyiv to announce new support package for Ukraine with more military funding", + "contentSnippet": "UK Prime Minister Rishi Sunak arrives in Kyiv to announce new support package for Ukraine with more military funding", + "guid": "https://abcnews.go.com/International/wireStory/uk-prime-minister-rishi-sunak-arrives-kyiv-announce-106316784", + "categories": ["International"], + "isoDate": "2024-01-12T08:46:11.000Z" + }, + { + "title": " AP Week in Pictures: Asia", + "link": "https://abcnews.go.com/International/wireStory/ap-week-pictures-asia-106313429", + "pubDate": "Thu, 11 Jan 2024 22:02:29 -0500", + "content": "\nJan. 4-11, 2024\n\nThis photo gallery highlights some of the most compelling images in the Asia-Pacific region made or published by The Associated Press in the past week.\n\nDevotees crowd during the annual Black Nazarene procession in Manila, Philippines, supporters of the Democratic Progressive Party candidate cheer during a rally in Taipei, Taiwan, ahead of Saturday's presidential election, and a man reads a Bangladeshi newspaper that has the news of Prime Minister Sheikh Hasina’s election victory in Dhaka.\n\nThe selection was curated by AP photo editor Masayo Yoshida in Tokyo.\n\n___\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on X: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", + "contentSnippet": "Jan. 4-11, 2024\n\nThis photo gallery highlights some of the most compelling images in the Asia-Pacific region made or published by The Associated Press in the past week.\n\nDevotees crowd during the annual Black Nazarene procession in Manila, Philippines, supporters of the Democratic Progressive Party candidate cheer during a rally in Taipei, Taiwan, ahead of Saturday's presidential election, and a man reads a Bangladeshi newspaper that has the news of Prime Minister Sheikh Hasina\u2019s election victory in Dhaka.\n\nThe selection was curated by AP photo editor Masayo Yoshida in Tokyo.\n\n___\n\nFollow AP visual journalism:\n\nInstagram: https://www.instagram.com/apnews\n\nAP Images on X: http://twitter.com/AP_Images\n\nAP Images blog: http://apimagesblog.com", + "guid": "https://abcnews.go.com/International/wireStory/ap-week-pictures-asia-106313429", + "categories": ["International"], + "isoDate": "2024-01-12T03:02:29.000Z" + }, + { + "title": " Finland extends closure of Russian border for another month, fearing a migrant influx", + "link": "https://abcnews.go.com/International/wireStory/finland-extends-closure-russian-border-month-fearing-migrant-106292770", + "pubDate": "Thu, 11 Jan 2024 11:01:46 -0500", + "content": "Finland says it will extend the closure of its border with Russia for another month because it suspects that Moscow is trying to undermine the Nordic country’s security by sending undocumented migrants across the frontier", + "contentSnippet": "Finland says it will extend the closure of its border with Russia for another month because it suspects that Moscow is trying to undermine the Nordic country\u2019s security by sending undocumented migrants across the frontier", + "guid": "https://abcnews.go.com/International/wireStory/finland-extends-closure-russian-border-month-fearing-migrant-106292770", + "categories": ["International"], + "isoDate": "2024-01-11T16:01:46.000Z" + }, + { + "title": " Blinken sees a path to Gaza peace, reconstruction and regional security after his Mideast tour", + "link": "https://abcnews.go.com/International/wireStory/blinken-sees-path-gaza-peace-reconstruction-regional-security-106291724", + "pubDate": "Thu, 11 Jan 2024 10:50:43 -0500", + "content": "U.S. Secretary of State Antony Blinken has wrapped up his latest urgent Mideast tour in talks with Egyptian President Abdel Fattah el-Sissi", + "contentSnippet": "U.S. Secretary of State Antony Blinken has wrapped up his latest urgent Mideast tour in talks with Egyptian President Abdel Fattah el-Sissi", + "guid": "https://abcnews.go.com/International/wireStory/blinken-sees-path-gaza-peace-reconstruction-regional-security-106291724", + "categories": ["International"], + "isoDate": "2024-01-11T15:50:43.000Z" + }, + { + "title": " Renewables grew rapidly in 2023, but must grow faster still to meet climate change target, IEA says", + "link": "https://abcnews.go.com/International/wireStory/renewables-grew-rapidly-2023-grow-faster-meet-climate-106284220", + "pubDate": "Thu, 11 Jan 2024 02:26:19 -0500", + "content": "The amount of renewable energy installed around the world last year grew at its fastest rate in the past 25 years", + "contentSnippet": "The amount of renewable energy installed around the world last year grew at its fastest rate in the past 25 years", + "guid": "https://abcnews.go.com/International/wireStory/renewables-grew-rapidly-2023-grow-faster-meet-climate-106284220", + "categories": ["International"], + "isoDate": "2024-01-11T07:26:19.000Z" + }, + { + "title": " An airstrike on southern Syria, likely carried out by Jordan's air force, kills 9", + "link": "https://abcnews.go.com/International/wireStory/airstrike-southern-syria-carried-jordans-air-force-kills-106473498", + "pubDate": "Thu, 18 Jan 2024 07:22:19 -0500", + "content": "Syrian opposition activists say an airstrike that was likely carried out by Jordan’s air force on southern Syria has killed at least nine people in the latest of strikes in recent months", + "contentSnippet": "Syrian opposition activists say an airstrike that was likely carried out by Jordan\u2019s air force on southern Syria has killed at least nine people in the latest of strikes in recent months", + "guid": "https://abcnews.go.com/International/wireStory/airstrike-southern-syria-carried-jordans-air-force-kills-106473498", + "categories": ["International"], + "isoDate": "2024-01-18T12:22:19.000Z" + }, + { + "title": " The drop in Panama Canal traffic due to a severe drought could cost up to $700 million", + "link": "https://abcnews.go.com/International/wireStory/drought-forced-authorities-slash-traffic-panama-canal-disrupting-106468171", + "pubDate": "Thu, 18 Jan 2024 07:14:28 -0500", + "content": "A severe drought that began last year has forced authorities to slash ship crossings by 36% in the Panama Canal, one of the world’s most important trade routes", + "contentSnippet": "A severe drought that began last year has forced authorities to slash ship crossings by 36% in the Panama Canal, one of the world\u2019s most important trade routes", + "guid": "https://abcnews.go.com/International/wireStory/drought-forced-authorities-slash-traffic-panama-canal-disrupting-106468171", + "categories": ["International"], + "isoDate": "2024-01-18T12:14:28.000Z" + }, + { + "title": " Israeli strike kills 16 in southern Gaza; no word on whether medicines reached hostages", + "link": "https://abcnews.go.com/International/wireStory/israeli-strike-kills-16-southern-gaza-word-medicines-106472858", + "pubDate": "Thu, 18 Jan 2024 06:26:34 -0500", + "content": "Palestinian medics say an Israeli airstrike on a home killed 16 people, half of them children, in the southern Gaza town of Rafah", + "contentSnippet": "Palestinian medics say an Israeli airstrike on a home killed 16 people, half of them children, in the southern Gaza town of Rafah", + "guid": "https://abcnews.go.com/International/wireStory/israeli-strike-kills-16-southern-gaza-word-medicines-106472858", + "categories": ["International"], + "isoDate": "2024-01-18T11:26:34.000Z" + }, + { + "title": " France ramps up weapons production for Ukraine and says Russia is scrutinizing the West's mettle", + "link": "https://abcnews.go.com/International/wireStory/france-ramps-weapons-production-ukraine-russia-scrutinizing-wests-106472952", + "pubDate": "Thu, 18 Jan 2024 06:10:31 -0500", + "content": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", + "contentSnippet": "France's defense minister says French manufacturers have reduced manufacturing times for some of the weapons systems they supply to Ukraine by half or more", + "guid": "https://abcnews.go.com/International/wireStory/france-ramps-weapons-production-ukraine-russia-scrutinizing-wests-106472952", + "categories": ["International"], + "isoDate": "2024-01-18T11:10:31.000Z" + }, + { + "title": " Pakistani airstrikes on Iran killed 4 children and 3 women, a local official tells Iranian state television", + "link": "https://abcnews.go.com/International/wireStory/pakistani-airstrikes-iran-killed-4-children-3-women-106470740", + "pubDate": "Thu, 18 Jan 2024 00:10:14 -0500", + "content": "Pakistani airstrikes on Iran killed 4 children and 3 women, a local official tells Iranian state television", + "contentSnippet": "Pakistani airstrikes on Iran killed 4 children and 3 women, a local official tells Iranian state television", + "guid": "https://abcnews.go.com/International/wireStory/pakistani-airstrikes-iran-killed-4-children-3-women-106470740", + "categories": ["International"], + "isoDate": "2024-01-18T05:10:14.000Z" + }, + { + "title": " Two Malaysian filmmakers are charged with offending the religious feelings of others in banned film", + "link": "https://abcnews.go.com/International/wireStory/malaysian-filmmakers-charged-offending-religious-feelings-banned-film-106437099", + "pubDate": "Wed, 17 Jan 2024 21:54:21 -0500", + "content": "Two Malaysian filmmakers have been charged with offending the religious feelings of others in a rare criminal prosecution that has been slammed by critics as an attack on freedom of expression", + "contentSnippet": "Two Malaysian filmmakers have been charged with offending the religious feelings of others in a rare criminal prosecution that has been slammed by critics as an attack on freedom of expression", + "guid": "https://abcnews.go.com/International/wireStory/malaysian-filmmakers-charged-offending-religious-feelings-banned-film-106437099", + "categories": ["International"], + "isoDate": "2024-01-18T02:54:21.000Z" + }, + { + "title": " Kenya doomsday cult leader, 30 others face charges of murdering 191 children", + "link": "https://abcnews.go.com/International/wireStory/kenya-doomsday-cult-leader-30-face-charges-murdering-106439996", + "pubDate": "Wed, 17 Jan 2024 21:30:28 -0500", + "content": "A doomsday cult leader and 30 of his followers have been presented in a Kenyan court to face charges of murdering 191 children", + "contentSnippet": "A doomsday cult leader and 30 of his followers have been presented in a Kenyan court to face charges of murdering 191 children", + "guid": "https://abcnews.go.com/International/wireStory/kenya-doomsday-cult-leader-30-face-charges-murdering-106439996", + "categories": ["International"], + "isoDate": "2024-01-18T02:30:28.000Z" + }, + { + "title": " UK lawmakers pass a bill to send migrants to Rwanda. But hurdles remain before any flights take off", + "link": "https://abcnews.go.com/International/wireStory/uk-leader-rishi-sunak-quell-conservative-revolt-rwanda-106437279", + "pubDate": "Wed, 17 Jan 2024 21:06:37 -0500", + "content": "U.K. Prime Minister Rishi Sunak has quelled a Conservative Party rebellion and got his stalled plan to send some asylum-seekers on a one-way trip to Rwanda through the House of Commons", + "contentSnippet": "U.K. Prime Minister Rishi Sunak has quelled a Conservative Party rebellion and got his stalled plan to send some asylum-seekers on a one-way trip to Rwanda through the House of Commons", + "guid": "https://abcnews.go.com/International/wireStory/uk-leader-rishi-sunak-quell-conservative-revolt-rwanda-106437279", + "categories": ["International"], + "isoDate": "2024-01-18T02:06:37.000Z" + }, + { + "title": " US bars ex-Guatemala President Alejandro Giammattei from entry 3 days after he left office", + "link": "https://abcnews.go.com/International/wireStory/us-bars-guatemala-president-alejandro-giammattei-entry-3-106466152", + "pubDate": "Wed, 17 Jan 2024 20:26:21 -0500", + "content": "The U.S. State Department has barred former Guatemalan President Alejandro Giammattei from entering the United States, accusing him “significant corruption” just- three days after he left office", + "contentSnippet": "The U.S. State Department has barred former Guatemalan President Alejandro Giammattei from entering the United States, accusing him \u201csignificant corruption\u201d just- three days after he left office", + "guid": "https://abcnews.go.com/International/wireStory/us-bars-guatemala-president-alejandro-giammattei-entry-3-106466152", + "categories": ["International"], + "isoDate": "2024-01-18T01:26:21.000Z" + }, + { + "title": " Why is the Guatemala attorney general going after the new president?", + "link": "https://abcnews.go.com/International/wireStory/guatemala-attorney-general-after-new-president-106461496", + "pubDate": "Wed, 17 Jan 2024 18:58:33 -0500", + "content": "Despite having the support of millions of Guatemalans, newly installed President Bernardo Arévalo has a clear obstacle — the attorney general’s office and its leader, Consuelo Porras", + "contentSnippet": "Despite having the support of millions of Guatemalans, newly installed President Bernardo Ar\u00e9valo has a clear obstacle \u2014 the attorney general\u2019s office and its leader, Consuelo Porras", + "guid": "https://abcnews.go.com/International/wireStory/guatemala-attorney-general-after-new-president-106461496", + "categories": ["International"], + "isoDate": "2024-01-17T23:58:33.000Z" + }, + { + "title": " Official in Poland's former conservative government charged in cash-for-visas investigation", + "link": "https://abcnews.go.com/International/wireStory/official-polands-former-conservative-government-charged-cash-visas-106457464", + "pubDate": "Wed, 17 Jan 2024 16:02:06 -0500", + "content": "Poland's anti-corruption authorities say a deputy foreign minister in the previous right-wing government has appeared before prosecutors to hear charges in the alleged sale of visas and work permits to migrant for thousands of dollars", + "contentSnippet": "Poland's anti-corruption authorities say a deputy foreign minister in the previous right-wing government has appeared before prosecutors to hear charges in the alleged sale of visas and work permits to migrant for thousands of dollars", + "guid": "https://abcnews.go.com/International/wireStory/official-polands-former-conservative-government-charged-cash-visas-106457464", + "categories": ["International"], + "isoDate": "2024-01-17T21:02:06.000Z" + }, + { + "title": " Turkmenistan's president fires chief prosecutor for failure to fulfill his duties, state media say", + "link": "https://abcnews.go.com/International/wireStory/turkmenistans-president-fires-chief-prosecutor-failure-fulfill-duties-106456119", + "pubDate": "Wed, 17 Jan 2024 14:58:05 -0500", + "content": "Turkmenistan’s president has fired the country’s chief prosecutor for failing to properly fulfill his duties", + "contentSnippet": "Turkmenistan\u2019s president has fired the country\u2019s chief prosecutor for failing to properly fulfill his duties", + "guid": "https://abcnews.go.com/International/wireStory/turkmenistans-president-fires-chief-prosecutor-failure-fulfill-duties-106456119", + "categories": ["International"], + "isoDate": "2024-01-17T19:58:05.000Z" + }, + { + "title": " Hundreds protest and clash with police in a Russian region after an activist is sentenced to prison", + "link": "https://abcnews.go.com/International/wireStory/hundreds-protest-clash-police-russian-region-after-activist-106447342", + "pubDate": "Wed, 17 Jan 2024 11:38:09 -0500", + "content": "Media reports and rights groups say hundreds of protesters clashed with police in the Russian region of Bashkortostan in a rare display of public outrage after a court convicted a local activist and sentenced him to prison", + "contentSnippet": "Media reports and rights groups say hundreds of protesters clashed with police in the Russian region of Bashkortostan in a rare display of public outrage after a court convicted a local activist and sentenced him to prison", + "guid": "https://abcnews.go.com/International/wireStory/hundreds-protest-clash-police-russian-region-after-activist-106447342", + "categories": ["International"], + "isoDate": "2024-01-17T16:38:09.000Z" + }, + { + "title": " Ethnic Serbs in Kosovo hold a petition drive in hopes of ousting 4 ethnic Albanian mayors", + "link": "https://abcnews.go.com/International/wireStory/ethnic-serbs-kosovo-hold-petition-drive-hopes-ousting-106446731", + "pubDate": "Wed, 17 Jan 2024 11:22:03 -0500", + "content": "Ethnic Serbs in northern Kosovo are holding a signature drive in hopes of securing enough to oust four ethnic Albanian mayors whose elections last year sent tensions between Serbia and Kosovo soaring", + "contentSnippet": "Ethnic Serbs in northern Kosovo are holding a signature drive in hopes of securing enough to oust four ethnic Albanian mayors whose elections last year sent tensions between Serbia and Kosovo soaring", + "guid": "https://abcnews.go.com/International/wireStory/ethnic-serbs-kosovo-hold-petition-drive-hopes-ousting-106446731", + "categories": ["International"], + "isoDate": "2024-01-17T16:22:03.000Z" + }, + { + "title": " Kate, the Princess of Wales, has been admitted to a London hospital for up to 2 weeks following abdominal surgery", + "link": "https://abcnews.go.com/International/wireStory/kate-princess-wales-admitted-london-hospital-2-weeks-106442053", + "pubDate": "Wed, 17 Jan 2024 10:18:07 -0500", + "content": "Kate, the Princess of Wales, has been admitted to a London hospital for up to 2 weeks following abdominal surgery", + "contentSnippet": "Kate, the Princess of Wales, has been admitted to a London hospital for up to 2 weeks following abdominal surgery", + "guid": "https://abcnews.go.com/International/wireStory/kate-princess-wales-admitted-london-hospital-2-weeks-106442053", + "categories": ["International"], + "isoDate": "2024-01-17T15:18:07.000Z" + }, + { + "title": " Cutting interest rates too soon in Europe risks progress against inflation, central bank chief says", + "link": "https://abcnews.go.com/International/wireStory/cutting-interest-rates-europe-risks-progress-inflation-central-106441544", + "pubDate": "Wed, 17 Jan 2024 09:22:31 -0500", + "content": "European Central Bank head Christine Lagarde says cutting interest rates too soon could threaten Europe’s progress in battling the inflation that has ravaged the economy", + "contentSnippet": "European Central Bank head Christine Lagarde says cutting interest rates too soon could threaten Europe\u2019s progress in battling the inflation that has ravaged the economy", + "guid": "https://abcnews.go.com/International/wireStory/cutting-interest-rates-europe-risks-progress-inflation-central-106441544", + "categories": ["International"], + "isoDate": "2024-01-17T14:22:31.000Z" + }, + { + "title": " US, South Korea and Japan conduct naval drills as tensions deepen with North Korea", + "link": "https://abcnews.go.com/International/wireStory/us-south-korea-japan-conduct-naval-drills-tensions-106434423", + "pubDate": "Wed, 17 Jan 2024 09:14:18 -0500", + "content": "The United States, South Korea and Japan conducted combined naval exercises involving an American aircraft carrier in their latest show of strength against nuclear-armed North Korea", + "contentSnippet": "The United States, South Korea and Japan conducted combined naval exercises involving an American aircraft carrier in their latest show of strength against nuclear-armed North Korea", + "guid": "https://abcnews.go.com/International/wireStory/us-south-korea-japan-conduct-naval-drills-tensions-106434423", + "categories": ["International"], + "isoDate": "2024-01-17T14:14:18.000Z" + }, + { + "title": " China's population falls for a 2nd straight year as births drop even after end of one-child policy", + "link": "https://abcnews.go.com/International/wireStory/chinas-population-drops-straight-year-deaths-jump-106432517", + "pubDate": "Wed, 17 Jan 2024 09:06:28 -0500", + "content": "China’s population fell by 2 million people in 2023 in the second straight annual decrease as births dropped and deaths jumped", + "contentSnippet": "China\u2019s population fell by 2 million people in 2023 in the second straight annual decrease as births dropped and deaths jumped", + "guid": "https://abcnews.go.com/International/wireStory/chinas-population-drops-straight-year-deaths-jump-106432517", + "categories": ["International"], + "isoDate": "2024-01-17T14:06:28.000Z" + }, + { + "title": " Immigration issue challenges delicate talks to form new Dutch government", + "link": "https://abcnews.go.com/International/wireStory/immigration-issue-challenges-delicate-talks-form-new-dutch-106439997", + "pubDate": "Wed, 17 Jan 2024 08:34:26 -0500", + "content": "Delicate talks to create a new Dutch government around anti-Islam firebrand Geert Wilders suffered a setback when a lingering immigration issue divided the parties involved in brokering a coalition", + "contentSnippet": "Delicate talks to create a new Dutch government around anti-Islam firebrand Geert Wilders suffered a setback when a lingering immigration issue divided the parties involved in brokering a coalition", + "guid": "https://abcnews.go.com/International/wireStory/immigration-issue-challenges-delicate-talks-form-new-dutch-106439997", + "categories": ["International"], + "isoDate": "2024-01-17T13:34:26.000Z" + }, + { + "title": " BP names current interim boss as permanent CEO to replace predecessor who quit over personal conduct", + "link": "https://abcnews.go.com/International/wireStory/bp-names-current-interim-boss-permanent-ceo-replace-106439731", + "pubDate": "Wed, 17 Jan 2024 08:25:56 -0500", + "content": "British oil giant BP says its interim chief executive, Murray Auchincloss, will be given the job on a permanent basis to replace Bernard Looney", + "contentSnippet": "British oil giant BP says its interim chief executive, Murray Auchincloss, will be given the job on a permanent basis to replace Bernard Looney", + "guid": "https://abcnews.go.com/International/wireStory/bp-names-current-interim-boss-permanent-ceo-replace-106439731", + "categories": ["International"], + "isoDate": "2024-01-17T13:25:56.000Z" + }, + { + "title": " Belgian customs seized record amount of cocaine as EU faces rise in drug-related violence", + "link": "https://abcnews.go.com/International/wireStory/belgian-customs-seized-record-amount-cocaine-eu-faces-106437745", + "pubDate": "Wed, 17 Jan 2024 07:22:34 -0500", + "content": "Customs seized 116 tons of cocaine in the port of Antwerp in 2023, setting a record for the second year in a row, Belgian authorities said on Wednesday", + "contentSnippet": "Customs seized 116 tons of cocaine in the port of Antwerp in 2023, setting a record for the second year in a row, Belgian authorities said on Wednesday", + "guid": "https://abcnews.go.com/International/wireStory/belgian-customs-seized-record-amount-cocaine-eu-faces-106437745", + "categories": ["International"], + "isoDate": "2024-01-17T12:22:34.000Z" + }, + { + "title": " New Zealand's first refugee lawmaker charged after resigning over claims of shoplifting", + "link": "https://abcnews.go.com/International/wireStory/new-zealands-refugee-lawmaker-resigns-after-claims-shoplifting-106434694", + "pubDate": "Wed, 17 Jan 2024 04:17:53 -0500", + "content": "New Zealand’s first refugee lawmaker was charged by police a day after resigning amid allegations she had shoplifted several times at local high-end boutiques", + "contentSnippet": "New Zealand\u2019s first refugee lawmaker was charged by police a day after resigning amid allegations she had shoplifted several times at local high-end boutiques", + "guid": "https://abcnews.go.com/International/wireStory/new-zealands-refugee-lawmaker-resigns-after-claims-shoplifting-106434694", + "categories": ["International"], + "isoDate": "2024-01-17T09:17:53.000Z" + }, + { + "title": " Top Chinese diplomat says support of Pacific nations with policing should not alarm Australia", + "link": "https://abcnews.go.com/International/wireStory/top-chinese-diplomat-support-pacific-nations-policing-alarm-106436348", + "pubDate": "Wed, 17 Jan 2024 03:14:34 -0500", + "content": "China’s ambassador sought to reassure Australia that China’s increased involvement in the Pacific, particularly in policing efforts, should not be a cause of alarm", + "contentSnippet": "China\u2019s ambassador sought to reassure Australia that China\u2019s increased involvement in the Pacific, particularly in policing efforts, should not be a cause of alarm", + "guid": "https://abcnews.go.com/International/wireStory/top-chinese-diplomat-support-pacific-nations-policing-alarm-106436348", + "categories": ["International"], + "isoDate": "2024-01-17T08:14:34.000Z" + }, + { + "title": " Modi's promised Ram temple is set to open and resonate with Hindus ahead of India's election", + "link": "https://abcnews.go.com/International/wireStory/modis-promised-ram-temple-set-open-resonate-hindus-106435511", + "pubDate": "Wed, 17 Jan 2024 01:30:21 -0500", + "content": "Preparations are underway in India’s northern Ayodhya city to mark the opening of a grand temple for Lord Ram, Hinduism’s most revered deity", + "contentSnippet": "Preparations are underway in India\u2019s northern Ayodhya city to mark the opening of a grand temple for Lord Ram, Hinduism\u2019s most revered deity", + "guid": "https://abcnews.go.com/International/wireStory/modis-promised-ram-temple-set-open-resonate-hindus-106435511", + "categories": ["International"], + "isoDate": "2024-01-17T06:30:21.000Z" + }, + { + "title": " Ukraine needs money from the US and Europe to keep its economy running. Will the aid come?", + "link": "https://abcnews.go.com/International/wireStory/ukraine-money-us-europe-economy-running-aid-106435603", + "pubDate": "Wed, 17 Jan 2024 00:34:31 -0500", + "content": "Ukraine has won praise for stabilizing its economy under dire circumstances", + "contentSnippet": "Ukraine has won praise for stabilizing its economy under dire circumstances", + "guid": "https://abcnews.go.com/International/wireStory/ukraine-money-us-europe-economy-running-aid-106435603", + "categories": ["International"], + "isoDate": "2024-01-17T05:34:31.000Z" + }, + { + "title": " About 30 children were taken hostage by Hamas militants. Their families wait in agony", + "link": "https://abcnews.go.com/International/wireStory/30-children-hostage-hamas-militants-families-wait-agony-104424146", + "pubDate": "Fri, 27 Oct 2023 08:46:26 -0400", + "content": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", + "contentSnippet": "The families of children held captive by Hamas say they are adrift in a unique agony among the tragedies of Israel's bloodiest day", + "guid": "https://abcnews.go.com/International/wireStory/30-children-hostage-hamas-militants-families-wait-agony-104424146", + "categories": ["International"], + "isoDate": "2023-10-27T12:46:26.000Z" + }, + { + "title": " Pope orders Vatican to reopen case of priest ousted after claims of adult abuse", + "link": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-priest-ousted-jesuits-104422352", + "pubDate": "Fri, 27 Oct 2023 08:38:16 -0400", + "content": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", + "contentSnippet": "Pope Francis has ordered the Vatican to reopen the case of a well-known priest-artist accused of sexually, psychologically and spiritually abusing adult women", + "guid": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-priest-ousted-jesuits-104422352", + "categories": ["International"], + "isoDate": "2023-10-27T12:38:16.000Z" + }, + { + "title": " Israel says the vast network of Hamas tunnels will make a ground offensive long and difficult", + "link": "https://abcnews.go.com/International/wireStory/israel-strikes-outskirts-gaza-city-ground-raid-days-104419675", + "pubDate": "Fri, 27 Oct 2023 08:30:23 -0400", + "content": "Israel’s defense minister says it expects to launch a ground offensive into Gaza soon that will be long and difficult, and aim to destroy hundreds of kilometers or miles of tunnels used by the territory’s militant Hamas rulers", + "contentSnippet": "Israel\u2019s defense minister says it expects to launch a ground offensive into Gaza soon that will be long and difficult, and aim to destroy hundreds of kilometers or miles of tunnels used by the territory\u2019s militant Hamas rulers", + "guid": "https://abcnews.go.com/International/wireStory/israel-strikes-outskirts-gaza-city-ground-raid-days-104419675", + "categories": ["International"], + "isoDate": "2023-10-27T12:30:23.000Z" + }, + { + "title": " Seeing no military answer to Israel-Palestinian tensions, the EU plans for a more peaceful future", + "link": "https://abcnews.go.com/International/wireStory/military-answer-israel-palestinian-tensions-eu-plans-peaceful-104422128", + "pubDate": "Fri, 27 Oct 2023 08:06:35 -0400", + "content": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", + "contentSnippet": "European Union leaders believe it's time to lay the foundations for a future relationship between Israel and the Palestinians where the militant group Hamas does not control Gaza", + "guid": "https://abcnews.go.com/International/wireStory/military-answer-israel-palestinian-tensions-eu-plans-peaceful-104422128", + "categories": ["International"], + "isoDate": "2023-10-27T12:06:35.000Z" + }, + { + "title": " Pope orders Vatican to reopen case of ousted Jesuit accused of abusing women, waives statute of limitations", + "link": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-ousted-jesuit-accused-104421946", + "pubDate": "Fri, 27 Oct 2023 08:06:00 -0400", + "content": "Pope orders Vatican to reopen case of ousted Jesuit accused of abusing women, waives statute of limitations", + "contentSnippet": "Pope orders Vatican to reopen case of ousted Jesuit accused of abusing women, waives statute of limitations", + "guid": "https://abcnews.go.com/International/wireStory/pope-orders-vatican-reopen-case-ousted-jesuit-accused-104421946", + "categories": ["International"], + "isoDate": "2023-10-27T12:06:00.000Z" + }, + { + "title": " Wu Zunyou, China\u2019s top infectious diseases expert who played a key role in the zero-COVID strategy, has died", + "link": "https://abcnews.go.com/International/wireStory/wu-zunyou-chinas-top-infectious-diseases-expert-played-104421166", + "pubDate": "Fri, 27 Oct 2023 07:26:06 -0400", + "content": "Wu Zunyou, China’s top infectious diseases expert who played a key role in the zero-COVID strategy, has died", + "contentSnippet": "Wu Zunyou, China\u2019s top infectious diseases expert who played a key role in the zero-COVID strategy, has died", + "guid": "https://abcnews.go.com/International/wireStory/wu-zunyou-chinas-top-infectious-diseases-expert-played-104421166", + "categories": ["International"], + "isoDate": "2023-10-27T11:26:06.000Z" + }, + { + "title": " Iran's deputy FM met Hamas representatives in Moscow, Russian state media says", + "link": "https://abcnews.go.com/International/wireStory/irans-deputy-foreign-minister-met-hamas-representatives-moscow-104420906", + "pubDate": "Fri, 27 Oct 2023 07:17:53 -0400", + "content": "Russian state news agency Tass says Iran’s deputy foreign minister met Hamas representatives in Moscow", + "contentSnippet": "Russian state news agency Tass says Iran\u2019s deputy foreign minister met Hamas representatives in Moscow", + "guid": "https://abcnews.go.com/International/wireStory/irans-deputy-foreign-minister-met-hamas-representatives-moscow-104420906", + "categories": ["International"], + "isoDate": "2023-10-27T11:17:53.000Z" + }, + { + "title": " Huawei reports its revenue inched higher in January-September despite US sanctions", + "link": "https://abcnews.go.com/International/wireStory/huawei-reports-revenue-inched-higher-january-september-despite-104420185", + "pubDate": "Fri, 27 Oct 2023 06:30:31 -0400", + "content": "Chinese telecoms equipment maker Huawei Technologies has reported its profit inched higher in the first three quarters of this year despite persisting U.S. sanctions that have hindered both its sales and its purchases of advanced technology", + "contentSnippet": "Chinese telecoms equipment maker Huawei Technologies has reported its profit inched higher in the first three quarters of this year despite persisting U.S. sanctions that have hindered both its sales and its purchases of advanced technology", + "guid": "https://abcnews.go.com/International/wireStory/huawei-reports-revenue-inched-higher-january-september-despite-104420185", + "categories": ["International"], + "isoDate": "2023-10-27T10:30:31.000Z" + }, + { + "title": " South Korean and US forces stage drills for 'Hamas-style' attack by North Korea", + "link": "https://abcnews.go.com/International/wireStory/south-korean-us-forces-stage-drills-reaction-hamas-104418929", + "pubDate": "Fri, 27 Oct 2023 02:50:00 -0400", + "content": "South Korean and U.S. troops have been conducting live-fire exercises to hone their ability to respond to potential “Hamas-style surprise artillery attacks” by North Korea", + "contentSnippet": "South Korean and U.S. troops have been conducting live-fire exercises to hone their ability to respond to potential \u201cHamas-style surprise artillery attacks\u201d by North Korea", + "guid": "https://abcnews.go.com/International/wireStory/south-korean-us-forces-stage-drills-reaction-hamas-104418929", + "categories": ["International"], + "isoDate": "2023-10-27T06:50:00.000Z" + }, + { + "title": " Survivors of deadly Hurricane Otis grow desperate for food and aid amid slow government response", + "link": "https://abcnews.go.com/International/wireStory/survivors-deadly-hurricane-otis-grow-desperate-food-aid-104418657", + "pubDate": "Fri, 27 Oct 2023 01:10:21 -0400", + "content": "Survivors of the Category 5 storm that killed at least 27 people and devastated Mexico’s resort city of Acapulco are getting desperate amid a slow government assistance response", + "contentSnippet": "Survivors of the Category 5 storm that killed at least 27 people and devastated Mexico\u2019s resort city of Acapulco are getting desperate amid a slow government assistance response", + "guid": "https://abcnews.go.com/International/wireStory/survivors-deadly-hurricane-otis-grow-desperate-food-aid-104418657", + "categories": ["International"], + "isoDate": "2023-10-27T05:10:21.000Z" + }, + { + "title": " Former Albanian prime minister accused of corruption told to report to prosecutors, stay in country", + "link": "https://abcnews.go.com/International/wireStory/former-albanian-prime-minister-accused-corruption-told-report-104389464", + "pubDate": "Thu, 26 Oct 2023 18:14:19 -0400", + "content": "An Albanian court has ruled that former prime minister Sali Berisha, who is accused of corruption, must report to prosecutors and not leave the country while his case is under investigation", + "contentSnippet": "An Albanian court has ruled that former prime minister Sali Berisha, who is accused of corruption, must report to prosecutors and not leave the country while his case is under investigation", + "guid": "https://abcnews.go.com/International/wireStory/former-albanian-prime-minister-accused-corruption-told-report-104389464", + "categories": ["International"], + "isoDate": "2023-10-26T22:14:19.000Z" + }, + { + "title": " Serbia and Kosovo leaders break off talks without result despite EU pressure", + "link": "https://abcnews.go.com/International/wireStory/european-union-press-leaders-serbia-kosovo-set-decades-104344351", + "pubDate": "Thu, 26 Oct 2023 18:06:22 -0400", + "content": "The leaders of Serbia and Kosovo broke off talks Thursday without result, despite European Union pressure to persuade them to normalize their relations", + "contentSnippet": "The leaders of Serbia and Kosovo broke off talks Thursday without result, despite European Union pressure to persuade them to normalize their relations", + "guid": "https://abcnews.go.com/International/wireStory/european-union-press-leaders-serbia-kosovo-set-decades-104344351", + "categories": ["International"], + "isoDate": "2023-10-26T22:06:22.000Z" + }, + { + "title": " Greenpeace urges Greece to scrap offshore gas drilling project because of impact on whales, dolphins", + "link": "https://abcnews.go.com/International/wireStory/greenpeace-urges-greece-scrap-offshore-gas-drilling-project-104385625", + "pubDate": "Thu, 26 Oct 2023 17:09:55 -0400", + "content": "Greenpeace is stepping up its appeal for Greece to abandon a deep-sea gas exploration project in the Mediterranean", + "contentSnippet": "Greenpeace is stepping up its appeal for Greece to abandon a deep-sea gas exploration project in the Mediterranean", + "guid": "https://abcnews.go.com/International/wireStory/greenpeace-urges-greece-scrap-offshore-gas-drilling-project-104385625", + "categories": ["International"], + "isoDate": "2023-10-26T21:09:55.000Z" + }, + { + "title": " Mar\u00eda Corina Machado is winner of Venezuela opposition primary that the government has denounced", + "link": "https://abcnews.go.com/International/wireStory/maria-corina-machado-winner-venezuela-opposition-primary-government-104351778", + "pubDate": "Thu, 26 Oct 2023 16:30:23 -0400", + "content": "Venezuelan government critic María Corina Machado has been declared the winner of an opposition-organized primary to choose a presidential candidate in polling last weekend that has been denounced by the socialist government as illegitimate", + "contentSnippet": "Venezuelan government critic Mar\u00eda Corina Machado has been declared the winner of an opposition-organized primary to choose a presidential candidate in polling last weekend that has been denounced by the socialist government as illegitimate", + "guid": "https://abcnews.go.com/International/wireStory/maria-corina-machado-winner-venezuela-opposition-primary-government-104351778", + "categories": ["International"], + "isoDate": "2023-10-26T20:30:23.000Z" + }, + { + "title": " Many Israelis are furious at their government's chaotic recovery efforts after Hamas attack", + "link": "https://abcnews.go.com/International/wireStory/israelis-furious-governments-chaotic-recovery-efforts-after-hamas-104356154", + "pubDate": "Thu, 26 Oct 2023 16:06:37 -0400", + "content": "More than two weeks after Hamas' attack, many Israelis are furious at Prime Minister Benjamin Netanyahu’s government, not just for failing to prevent the initial attack, but for failing to come to their aid afterward", + "contentSnippet": "More than two weeks after Hamas' attack, many Israelis are furious at Prime Minister Benjamin Netanyahu\u2019s government, not just for failing to prevent the initial attack, but for failing to come to their aid afterward", + "guid": "https://abcnews.go.com/International/wireStory/israelis-furious-governments-chaotic-recovery-efforts-after-hamas-104356154", + "categories": ["International"], + "isoDate": "2023-10-26T20:06:37.000Z" + }, + { + "title": " Son of federal judge in Puerto Rico pleads guilty to killing wife after winning new trial", + "link": "https://abcnews.go.com/International/wireStory/son-federal-judge-puerto-rico-pleads-guilty-killing-104367600", + "pubDate": "Thu, 26 Oct 2023 13:57:53 -0400", + "content": "The son of a federal judge who was convicted of killing his wife more than a decade ago has pleaded guilty to second-degree murder in a retrial", + "contentSnippet": "The son of a federal judge who was convicted of killing his wife more than a decade ago has pleaded guilty to second-degree murder in a retrial", + "guid": "https://abcnews.go.com/International/wireStory/son-federal-judge-puerto-rico-pleads-guilty-killing-104367600", + "categories": ["International"], + "isoDate": "2023-10-26T17:57:53.000Z" + }, + { + "title": " Spain considers using military barracks to house migrants amid uptick in arrivals by boat", + "link": "https://abcnews.go.com/International/wireStory/spain-considers-military-barracks-house-migrants-amid-uptick-104362506", + "pubDate": "Thu, 26 Oct 2023 13:02:03 -0400", + "content": "Spanish authorities are planning to convert unused military barracks and installations into temporary shelters for migrants to deal with the increased arrival of thousands of people by boat to the Canary islands", + "contentSnippet": "Spanish authorities are planning to convert unused military barracks and installations into temporary shelters for migrants to deal with the increased arrival of thousands of people by boat to the Canary islands", + "guid": "https://abcnews.go.com/International/wireStory/spain-considers-military-barracks-house-migrants-amid-uptick-104362506", + "categories": ["International"], + "isoDate": "2023-10-26T17:02:03.000Z" + }, + { + "title": " Priest kicked out of Jesuits for alleged abuse of women welcomed into Slovenia diocese", + "link": "https://abcnews.go.com/International/wireStory/priest-kicked-jesuits-alleged-abuse-women-welcomed-slovenia-104347121", + "pubDate": "Thu, 26 Oct 2023 12:54:22 -0400", + "content": "A famous priest-artist who was thrown out of the Jesuits after being accused of sexual, spiritual and psychological abuse of women has been accepted into a diocese in his native Slovenia", + "contentSnippet": "A famous priest-artist who was thrown out of the Jesuits after being accused of sexual, spiritual and psychological abuse of women has been accepted into a diocese in his native Slovenia", + "guid": "https://abcnews.go.com/International/wireStory/priest-kicked-jesuits-alleged-abuse-women-welcomed-slovenia-104347121", + "categories": ["International"], + "isoDate": "2023-10-26T16:54:22.000Z" + }, + { + "title": " Taliban free Afghan activist arrested after campaigning for girls\u2019 education", + "link": "https://abcnews.go.com/International/wireStory/taliban-free-afghan-activist-arrested-7-months-ago-104347074", + "pubDate": "Thu, 26 Oct 2023 12:06:30 -0400", + "content": "A nonprofit organization in Afghanistan says the Taliban have freed an activist who campaigned for the education of girls", + "contentSnippet": "A nonprofit organization in Afghanistan says the Taliban have freed an activist who campaigned for the education of girls", + "guid": "https://abcnews.go.com/International/wireStory/taliban-free-afghan-activist-arrested-7-months-ago-104347074", + "categories": ["International"], + "isoDate": "2023-10-26T16:06:30.000Z" + }, + { + "title": " Pakistan\u2019s ex-leader Nawaz Sharif regains right to appeal convictions, opening a path to election", + "link": "https://abcnews.go.com/International/wireStory/pakistans-leader-nawaz-sharif-regains-appeal-convictions-opening-104351760", + "pubDate": "Thu, 26 Oct 2023 10:46:40 -0400", + "content": "A federal court in Pakistan’s capital has restored the appeals of the country’s former Prime Minister Nawaz Sharif against his 2018 convictions in graft cases", + "contentSnippet": "A federal court in Pakistan\u2019s capital has restored the appeals of the country\u2019s former Prime Minister Nawaz Sharif against his 2018 convictions in graft cases", + "guid": "https://abcnews.go.com/International/wireStory/pakistans-leader-nawaz-sharif-regains-appeal-convictions-opening-104351760", + "categories": ["International"], + "isoDate": "2023-10-26T14:46:40.000Z" + }, + { + "title": " Palestinian activist is expelled by Israeli forces from his home in a volatile West Bank city", + "link": "https://abcnews.go.com/International/wireStory/palestinian-activist-expelled-israeli-forces-home-volatile-west-104351229", + "pubDate": "Thu, 26 Oct 2023 10:38:46 -0400", + "content": "Israel has expelled a prominent Palestinian activist from his home in a West Bank city at the heart of the Israeli-Palestinian conflict after he hosted a foreign journalist and a prominent Israeli activist", + "contentSnippet": "Israel has expelled a prominent Palestinian activist from his home in a West Bank city at the heart of the Israeli-Palestinian conflict after he hosted a foreign journalist and a prominent Israeli activist", + "guid": "https://abcnews.go.com/International/wireStory/palestinian-activist-expelled-israeli-forces-home-volatile-west-104351229", + "categories": ["International"], + "isoDate": "2023-10-26T14:38:46.000Z" + }, + { + "title": " Greek army destroys World War II bomb found during excavation for luxury development near Athens", + "link": "https://abcnews.go.com/International/wireStory/greek-army-destroys-world-war-ii-bomb-found-104348783", + "pubDate": "Thu, 26 Oct 2023 09:42:09 -0400", + "content": "Greek army specialists have destroyed an unexploded World War II bomb discovered during work on a massive urban development project at a coastal area south of Athens", + "contentSnippet": "Greek army specialists have destroyed an unexploded World War II bomb discovered during work on a massive urban development project at a coastal area south of Athens", + "guid": "https://abcnews.go.com/International/wireStory/greek-army-destroys-world-war-ii-bomb-found-104348783", + "categories": ["International"], + "isoDate": "2023-10-26T13:42:09.000Z" + }, + { + "title": " Swedish court acquits Russian-born businessman of spying for Moscow", + "link": "https://abcnews.go.com/International/wireStory/swedish-court-acquits-russian-born-businessman-spying-moscow-104344012", + "pubDate": "Thu, 26 Oct 2023 09:05:20 -0400", + "content": "A Russian-born Swedish businessman has been acquitted of collecting information for Russia's military intelligence service, the GRU, for almost a decade", + "contentSnippet": "A Russian-born Swedish businessman has been acquitted of collecting information for Russia's military intelligence service, the GRU, for almost a decade", + "guid": "https://abcnews.go.com/International/wireStory/swedish-court-acquits-russian-born-businessman-spying-moscow-104344012", + "categories": ["International"], + "isoDate": "2023-10-26T13:05:20.000Z" + }, + { + "title": " American indicted on murder charges over attack on 2 US tourists near German castle", + "link": "https://abcnews.go.com/International/wireStory/american-man-indicted-murder-charges-attack-2-us-104343911", + "pubDate": "Thu, 26 Oct 2023 08:48:35 -0400", + "content": "Prosecutors say an American man has been charged with murder and other offenses for attacking two women from the U.S. near Neuschwanstein castle in Germany in June and pushing them into a ravine", + "contentSnippet": "Prosecutors say an American man has been charged with murder and other offenses for attacking two women from the U.S. near Neuschwanstein castle in Germany in June and pushing them into a ravine", + "guid": "https://abcnews.go.com/International/wireStory/american-man-indicted-murder-charges-attack-2-us-104343911", + "categories": ["International"], + "isoDate": "2023-10-26T12:48:35.000Z" + }, + { + "title": " Business owners in a Ukrainian front-line city adapt even as 'a missile can come at any moment'", + "link": "https://abcnews.go.com/International/wireStory/business-owners-ukrainian-front-line-city-adapt-missile-104338295", + "pubDate": "Thu, 26 Oct 2023 00:22:21 -0400", + "content": "Russia's deadly attack on a beloved pizzeria in eastern Ukraine in June was painful for residents", + "contentSnippet": "Russia's deadly attack on a beloved pizzeria in eastern Ukraine in June was painful for residents", + "guid": "https://abcnews.go.com/International/wireStory/business-owners-ukrainian-front-line-city-adapt-missile-104338295", + "categories": ["International"], + "isoDate": "2023-10-26T04:22:21.000Z" + }, + { + "title": " EU summit turns its eyes away from Ukraine despite a commitment to stay the course with Zelenskyy", + "link": "https://abcnews.go.com/International/wireStory/eu-summit-turns-eyes-ukraine-despite-commitment-stay-104428486", + "pubDate": "Fri, 27 Oct 2023 11:42:22 -0400", + "content": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", + "contentSnippet": "The European Union summit showed that Ukraine will be facing tougher times to get all the attention and political, economic and military aid that it wants", + "guid": "https://abcnews.go.com/International/wireStory/eu-summit-turns-eyes-ukraine-despite-commitment-stay-104428486", + "categories": ["International"], + "isoDate": "2023-10-27T15:42:22.000Z" + } +] diff --git a/intro to react/newData/oldNews/fa080031bb9f0725b354d2657f84d5bc3ace72cbd9ead6fe1e34884650fa30c3.json b/intro to react/newData/oldNews/fa080031bb9f0725b354d2657f84d5bc3ace72cbd9ead6fe1e34884650fa30c3.json index 981486a..e9672ac 100644 --- a/intro to react/newData/oldNews/fa080031bb9f0725b354d2657f84d5bc3ace72cbd9ead6fe1e34884650fa30c3.json +++ b/intro to react/newData/oldNews/fa080031bb9f0725b354d2657f84d5bc3ace72cbd9ead6fe1e34884650fa30c3.json @@ -1,2786 +1,2322 @@ [ - { - "title": "Panama celebrates court order to cancel mine even as business is hit", - "link": "https://www.aljazeera.com/economy/2023/11/30/panama-celebrates-court-order-to-cancel-mine-even-as-business-is-hit?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 22:25:53 +0000", - "content": "For weeks, Panama was shaken by its largest protest movement in decades as residents decried a mining contract.", - "contentSnippet": "For weeks, Panama was shaken by its largest protest movement in decades as residents decried a mining contract.", - "guid": "https://www.aljazeera.com/?t=1701371975", - "categories": [ - "Features" - ], - "isoDate": "2023-11-30T22:25:53.000Z" - }, - { - "title": "Israel has lost the war of public opinion", - "link": "https://www.aljazeera.com/opinions/2023/11/30/israel-has-lost-the-war-of-public-opinion?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 21:23:31 +0000", - "content": "In the age of social media, Israel is no longer able to conceal the truth about its conduct in Palestine.", - "contentSnippet": "In the age of social media, Israel is no longer able to conceal the truth about its conduct in Palestine.", - "guid": "https://www.aljazeera.com/?t=1701376437", - "categories": [ - "Opinions" - ], - "isoDate": "2023-11-30T21:23:31.000Z" - }, - { - "title": "COP28: Israel should not be allowed to greenwash its war on Gaza", - "link": "https://www.aljazeera.com/opinions/2023/11/30/cop28-israel-should-not-be-allowed-to-greenwash-its-war-on-gaza?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 20:17:48 +0000", - "content": "Israel's participation at COP28 amid its war on Gaza casts a shadow over the world's top climate summit.", - "contentSnippet": "Israel's participation at COP28 amid its war on Gaza casts a shadow over the world's top climate summit.", - "guid": "https://www.aljazeera.com/?t=1701264412", - "categories": [ - "Opinions" - ], - "isoDate": "2023-11-30T20:17:48.000Z" - }, - { - "title": "Blinken urges Israel to protect civilians amid tough Gaza truce talks", - "link": "https://www.aljazeera.com/news/2023/11/30/blinken-pledges-support-for-israel-as-gaza-truce-extend-for-third-time?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 20:15:10 +0000", - "content": "Mediators Qatar and Egypt push for further extension to pause in hostilities as deal holds for a week.", - "contentSnippet": "Mediators Qatar and Egypt push for further extension to pause in hostilities as deal holds for a week.", - "guid": "https://www.aljazeera.com/?t=1701366806", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T20:15:10.000Z" - }, - { - "title": "Musk\u2019s crude message to advertisers", - "link": "https://www.aljazeera.com/program/newsfeed/2023/11/30/musks-crude-message-to-advertisers?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 20:13:25 +0000", - "content": "X Owner Elon Musk had a crude message for companies pulling advertising from the platform", - "contentSnippet": "X Owner Elon Musk had a crude message for companies pulling advertising from the platform", - "guid": "https://www.aljazeera.com/?t=1701374852", - "categories": [ - "Show Types" - ], - "isoDate": "2023-11-30T20:13:25.000Z" - }, - { - "title": "Palestine advocates decry MSNBC\u2019s cancellation of Mehdi Hasan news show", - "link": "https://www.aljazeera.com/news/2023/11/30/palestine-advocates-decry-msnbcs-cancellation-of-mehdi-hasan-news-show?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 19:55:03 +0000", - "content": "Channel president says change aims to put network in 'better position' for the 2024 US elections, The Hill reports.", - "contentSnippet": "Channel president says change aims to put network in 'better position' for the 2024 US elections, The Hill reports.", - "guid": "https://www.aljazeera.com/?t=1701370778", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T19:55:03.000Z" - }, - { - "title": "OPEC+ agrees voluntary oil production cuts", - "link": "https://www.aljazeera.com/news/2023/11/30/opec-agrees-voluntary-oil-production-cuts?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 19:41:18 +0000", - "content": "Saudi Arabia, Russia and other members of OPEC+ agreed to voluntary output cuts for th first quarter of 2024.", - "contentSnippet": "Saudi Arabia, Russia and other members of OPEC+ agreed to voluntary output cuts for th first quarter of 2024.", - "guid": "https://www.aljazeera.com/?t=1701359217", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T19:41:18.000Z" - }, - { - "title": "Why have so many Palestinian children been killed by Israel?", - "link": "https://www.aljazeera.com/program/inside-story/2023/11/30/why-have-so-many-palestinian-children-been-killed-by-israel?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 19:05:43 +0000", - "content": "Thousands of children have been killed, maimed, injured or arrested by Israeli forces.", - "contentSnippet": "Thousands of children have been killed, maimed, injured or arrested by Israeli forces.", - "guid": "https://www.aljazeera.com/?t=1701368338", - "categories": [ - "TV Shows" - ], - "isoDate": "2023-11-30T19:05:43.000Z" - }, - { - "title": "\u2018Country of promises\u2019: Brazil\u2019s struggle to lead climate policy at COP28", - "link": "https://www.aljazeera.com/news/2023/11/30/country-of-promises-brazils-struggle-to-lead-climate-policy-at-cop28?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 18:53:18 +0000", - "content": "President Luiz In\u00e1cio Lula da Silva is slated to helm Brazil\u2019s largest-ever delegation, but he faces criticism at home.", - "contentSnippet": "President Luiz In\u00e1cio Lula da Silva is slated to helm Brazil\u2019s largest-ever delegation, but he faces criticism at home.", - "guid": "https://www.aljazeera.com/?t=1701308555", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T18:53:18.000Z" - }, - { - "title": "Call to prayer amidst the ruins", - "link": "https://www.aljazeera.com/program/newsfeed/2023/11/30/call-to-prayer-amidst-the-ruins?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 18:21:19 +0000", - "content": "A call to prayer is made from a destroyed mosque as a drone shot shows the ruins of the building and surroundings in Kh", - "contentSnippet": "A call to prayer is made from a destroyed mosque as a drone shot shows the ruins of the building and surroundings in Kh", - "guid": "https://www.aljazeera.com/?t=1701368186", - "categories": [ - "Show Types" - ], - "isoDate": "2023-11-30T18:21:19.000Z" - }, - { - "title": "Relief as Thai hostages return home amid fears for those still held in Gaza", - "link": "https://www.aljazeera.com/news/2023/11/30/relief-as-thai-hostages-return-home-amid-fears-for-those-still-held-in-gaza?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 18:15:17 +0000", - "content": "Group of 17 Thai nationals return from a total of 23 who have been released by Hamas, with nine still captive in Gaza.", - "contentSnippet": "Group of 17 Thai nationals return from a total of 23 who have been released by Hamas, with nine still captive in Gaza.", - "guid": "https://www.aljazeera.com/?t=1701360348", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T18:15:17.000Z" - }, - { - "title": "India\u2019s Rohit and Kohli skip white-ball leg of South Africa cricket tour", - "link": "https://www.aljazeera.com/sports/2023/11/30/indias-rohit-and-kohli-skip-white-ball-leg-of-south-africa-cricket-tour?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 17:32:24 +0000", - "content": "BCCI says Rohit Sharma and Virat Kohli asked for a break from the white-ball leg of the eight-match, multiformat tour.", - "contentSnippet": "BCCI says Rohit Sharma and Virat Kohli asked for a break from the white-ball leg of the eight-match, multiformat tour.", - "guid": "https://www.aljazeera.com/?t=1701364774", - "categories": [ - "Sports" - ], - "isoDate": "2023-11-30T17:32:24.000Z" - }, - { - "title": "Iran rapper Toomaj Salehi rearrested days after release on bail", - "link": "https://www.aljazeera.com/news/2023/11/30/iran-rearrests-rapper-less-than-two-weeks-after-his-release-on-bail?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 17:19:47 +0000", - "content": "Salehi was first arrested after publicly backing anti-government protests over Mahsa Amini's death in police custody.", - "contentSnippet": "Salehi was first arrested after publicly backing anti-government protests over Mahsa Amini's death in police custody.", - "guid": "https://www.aljazeera.com/?t=1701361218", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T17:19:47.000Z" - }, - { - "title": "What does silencing of supporters of Palestine mean for freedom of speech?", - "link": "https://www.aljazeera.com/program/the-stream/2023/11/30/war-on-words-freedom-of-speech?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 16:30:27 +0000", - "content": "The stifling of voices around the globe supporting Palestinians is putting the principles of free speech to the test.", - "contentSnippet": "The stifling of voices around the globe supporting Palestinians is putting the principles of free speech to the test.", - "guid": "https://www.aljazeera.com/?t=1701356488", - "categories": [ - "TV Shows" - ], - "isoDate": "2023-11-30T16:30:27.000Z" - }, - { - "title": "Shane MacGowan, poetic, hard-charging frontman of The Pogues, dies at 65", - "link": "https://www.aljazeera.com/news/2023/11/30/shane-macgowan-poetic-hard-charging-frontman-of-the-pogues-dead-at-65?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 15:24:23 +0000", - "content": "MacGowan won fame for incorporating traditional Irish ballads into Britain's punk scene in the 1980s and 90s. ", - "contentSnippet": "MacGowan won fame for incorporating traditional Irish ballads into Britain's punk scene in the 1980s and 90s.", - "guid": "https://www.aljazeera.com/?t=1701350765", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T15:24:23.000Z" - }, - { - "title": "Russian court bans \u2018LGBT movement\u2019 as \u2018extremist\u2019", - "link": "https://www.aljazeera.com/news/2023/11/30/russian-court-bans-lgbtq-movement-as-extremist?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 15:17:58 +0000", - "content": "Russia's Supreme Court has issued a ban on the activities of the 'international LGBT movement' in the latest crackdown.", - "contentSnippet": "Russia's Supreme Court has issued a ban on the activities of the 'international LGBT movement' in the latest crackdown.", - "guid": "https://www.aljazeera.com/?t=1701353061", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T15:17:58.000Z" - }, - { - "title": "High-profile murders inspire calls for justice at Mexico\u2019s \u2018muxe\u2019 festival", - "link": "https://www.aljazeera.com/news/2023/11/30/high-profile-murders-inspire-calls-for-justice-at-mexicos-muxe-festival?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 15:16:26 +0000", - "content": "Members of Mexico\u2019s third-gender community used their annual celebration to push for answers after two prominent deaths.", - "contentSnippet": "Members of Mexico\u2019s third-gender community used their annual celebration to push for answers after two prominent deaths.", - "guid": "https://www.aljazeera.com/?t=1701197636", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T15:16:26.000Z" - }, - { - "title": "Pakistani girl killed after photos with boy\u2019s arm around her go viral", - "link": "https://www.aljazeera.com/news/2023/11/30/pakistani-girl-killed-after-photos-with-boys-arm-around-her-go-viral?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 15:04:27 +0000", - "content": "The murder is the latest in a spate of more than 5,000 incidents since 2012 in which women have been killed.", - "contentSnippet": "The murder is the latest in a spate of more than 5,000 incidents since 2012 in which women have been killed.", - "guid": "https://www.aljazeera.com/?t=1701352227", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T15:04:27.000Z" - }, - { - "title": "Climate disaster fund approved at UN\u2019s COP28 climate summit", - "link": "https://www.aljazeera.com/news/2023/11/30/climate-disaster-fund-approved-at-uns-cop28-climate-summit?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 14:21:49 +0000", - "content": "UAE's Sultan Al Jaber calls to 'proactively engage' fossil fuel companies as part of the solution to climate challenges.", - "contentSnippet": "UAE's Sultan Al Jaber calls to 'proactively engage' fossil fuel companies as part of the solution to climate challenges.", - "guid": "https://www.aljazeera.com/?t=1701344615", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T14:21:49.000Z" - }, - { - "title": "Henry Kissinger: 10 conflicts, countries that define a blood-stained legacy", - "link": "https://www.aljazeera.com/news/2023/11/30/henry-kissinger-10-conflicts-countries-that-define-a-blood-stained-legacy?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 14:13:10 +0000", - "content": "The master of cold realpolitik left a legacy of destruction that is still playing out across the world. ", - "contentSnippet": "The master of cold realpolitik left a legacy of destruction that is still playing out across the world.", - "guid": "https://www.aljazeera.com/?t=1701342262", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T14:13:10.000Z" - }, - { - "title": "Israel-Palestine war: \u2018Ceasefire\u2019 or \u2018pause\u2019, what have world leaders said?", - "link": "https://www.aljazeera.com/news/longform/2023/11/30/israel-palestine-war-ceasefire-or-pause-what-have-world-leaders-said?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 13:18:11 +0000", - "content": "Al Jazeera analysed hundreds of world leaders' speeches to see how language is shaping the conflict and its resolution.", - "contentSnippet": "Al Jazeera analysed hundreds of world leaders' speeches to see how language is shaping the conflict and its resolution.", - "guid": "https://www.aljazeera.com/?t=1700029395", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T13:18:11.000Z" - }, - { - "title": "COP28 Dubai: What were the gains of past five UN climate summits?", - "link": "https://www.aljazeera.com/news/2023/11/30/cop28-dubai-what-were-the-gains-of-past-five-un-climate-summits?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 13:01:49 +0000", - "content": "As COP28 commences in Dubai, here is a look at the major outcomes of the UN's last five COPs and where they stand. ", - "contentSnippet": "As COP28 commences in Dubai, here is a look at the major outcomes of the UN's last five COPs and where they stand.", - "guid": "https://www.aljazeera.com/?t=1701237615", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T13:01:49.000Z" - }, - { - "title": "The UN must not abandon Sudan amid war and atrocities", - "link": "https://www.aljazeera.com/opinions/2023/11/30/the-un-must-not-abandon-sudan-amid-war-and-atrocities?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 12:42:39 +0000", - "content": "The end of the UN's political mission in the country comes at a time when civilians are in dire need of protection.", - "contentSnippet": "The end of the UN's political mission in the country comes at a time when civilians are in dire need of protection.", - "guid": "https://www.aljazeera.com/?t=1701289139", - "categories": [ - "Opinions" - ], - "isoDate": "2023-11-30T12:42:39.000Z" - }, - { - "title": "A hard, bloody winter awaits Ukrainian and Russian soldiers, say experts", - "link": "https://www.aljazeera.com/news/2023/11/30/a-hard-bloody-winter-awaits-ukrainian-and-russian-soldiers-say-experts?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 12:39:56 +0000", - "content": "Neither side is ready to give up, and neither can win in the medium term, but negotiations could come next year.", - "contentSnippet": "Neither side is ready to give up, and neither can win in the medium term, but negotiations could come next year.", - "guid": "https://www.aljazeera.com/?t=1701248549", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T12:39:56.000Z" - }, - { - "title": "\u2018We\u2019re not here to beg\u2019: Gaza residents\u2019 anger over steep rise in prices", - "link": "https://www.aljazeera.com/news/2023/11/30/were-not-here-to-beg-gaza-residents-anger-over-steep-rise-in-prices?traffic_source=rss", - "pubDate": "Thu, 30 Nov 2023 12:22:36 +0000", - "content": "People hoping to buy essentials like food, warm clothes during the pause in Israel's bombing frustrated by price hikes.", - "contentSnippet": "People hoping to buy essentials like food, warm clothes during the pause in Israel's bombing frustrated by price hikes.", - "guid": "https://www.aljazeera.com/?t=1701183452", - "categories": [ - "News" - ], - "isoDate": "2023-11-30T12:22:36.000Z" - }, - { - "title": "Meta shuts 4,800 accounts over alleged China-based influence operation", - "link": "https://www.aljazeera.com/news/2023/12/1/meta-shuts-4800-accounts-over-alleged-china-based-influence-operation?traffic_source=rss", - "pubDate": "Fri, 01 Dec 2023 01:31:35 +0000", - "content": "Tech giant says it has dismantled five China-based networks of fake accounts so far this year.", - "contentSnippet": "Tech giant says it has dismantled five China-based networks of fake accounts so far this year.", - "guid": "https://www.aljazeera.com/?t=1701389415", - "categories": [ - "News" - ], - "isoDate": "2023-12-01T01:31:35.000Z" - }, - { - "title": "Jon Rahm jumps ship to LIV Golf in a stunning blow to the PGA Tour", - "link": "https://www.aljazeera.com/sports/2023/12/8/jon-rahm-jumps-ship-to-liv-golf-in-a-stunning-blow-to-the-pga-tour?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 09:16:20 +0000", - "content": "Big money move by the 29-year-old Masters champion to Saudi-backed LIV Golf sends another shockwave through the sport.", - "contentSnippet": "Big money move by the 29-year-old Masters champion to Saudi-backed LIV Golf sends another shockwave through the sport.", - "guid": "https://www.aljazeera.com/?t=1702025932", - "categories": [ - "Sports" - ], - "isoDate": "2023-12-08T09:16:20.000Z" - }, - { - "title": "The newsroom has become a battleground in Israel\u2019s war on Gaza", - "link": "https://www.aljazeera.com/opinions/2023/12/8/the-newsroom-has-become-a-battleground-in-israels-war-on-gaza?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 09:16:15 +0000", - "content": "More than 60 journalists and media workers have been killed in and around the Gaza Strip since October 7. ", - "contentSnippet": "More than 60 journalists and media workers have been killed in and around the Gaza Strip since October 7.", - "guid": "https://www.aljazeera.com/?t=1701939489", - "categories": [ - "Opinions" - ], - "isoDate": "2023-12-08T09:16:15.000Z" - }, - { - "title": "Hunter Biden indicted for evading $1.4m in tax: What we know and what next?", - "link": "https://www.aljazeera.com/news/2023/12/8/hunter-biden-indicted-for-evading-1-4m-in-tax-what-we-know-and-what-next?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 08:42:55 +0000", - "content": "US President Joe Biden's son has been charged for the second time this year amid heated presidential election campaign.", - "contentSnippet": "US President Joe Biden's son has been charged for the second time this year amid heated presidential election campaign.", - "guid": "https://www.aljazeera.com/?t=1702020746", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T08:42:55.000Z" - }, - { - "title": "Netanyahu warns Hezbollah after cross-border attack kills Israeli civilian", - "link": "https://www.aljazeera.com/news/2023/12/8/netanyahu-threatens-hezbollah-after-cross-border-attack-kills-civilian?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 08:33:01 +0000", - "content": "Israeli PM says Hezbollah will turn Beirut, southern Lebanon into Gaza if group's attacks on Israel continue.", - "contentSnippet": "Israeli PM says Hezbollah will turn Beirut, southern Lebanon into Gaza if group's attacks on Israel continue.", - "guid": "https://www.aljazeera.com/?t=1702018464", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T08:33:01.000Z" - }, - { - "title": "Occupied West Bank faces growing Israeli aggression amid Gaza war", - "link": "https://www.aljazeera.com/gallery/2023/12/8/photos-two-months-of-gaza-warwest-bank-faces-onslaught-of-israeli?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 08:23:35 +0000", - "content": "Hundreds of Palestinians have been killed and thousands injured and detained in occupied West Bank since October 7.", - "contentSnippet": "Hundreds of Palestinians have been killed and thousands injured and detained in occupied West Bank since October 7.", - "guid": "https://www.aljazeera.com/?t=1702011642", - "categories": [ - "Gallery" - ], - "isoDate": "2023-12-08T08:23:35.000Z" - }, - { - "title": "Taiwan detects Chinese balloon, fighter jets crossing median line", - "link": "https://www.aljazeera.com/news/2023/12/8/taiwan-detects-chinese-balloon-fighter-jets-crossing-median-line?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 08:21:15 +0000", - "content": "Activity along Taiwan Strait comes as Taipei is on high alert for Chinese interference ahead of elections next month.", - "contentSnippet": "Activity along Taiwan Strait comes as Taipei is on high alert for Chinese interference ahead of elections next month.", - "guid": "https://www.aljazeera.com/?t=1702018055", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T08:21:15.000Z" - }, - { - "title": "Playing with friends, shot dead by Israel: A Jenin boy\u2019s final moments", - "link": "https://www.aljazeera.com/features/2023/12/8/playing-with-friends-shot-dead-by-israel-a-jenin-boys-final-moments?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 07:47:24 +0000", - "content": "Basil Abu al-Waf's father, a doctor, raced to the spot near Jenin refugee camp. It was too late. ", - "contentSnippet": "Basil Abu al-Waf's father, a doctor, raced to the spot near Jenin refugee camp. It was too late.", - "guid": "https://www.aljazeera.com/?t=1702019590", - "categories": [ - "Features" - ], - "isoDate": "2023-12-08T07:47:24.000Z" - }, - { - "title": "Tech firms failing to \u2018walk the walk\u2019 on ethical AI, report says", - "link": "https://www.aljazeera.com/news/2023/12/8/tech-firms-failing-to-walk-the-walk-on-ethical-ai-report-says?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 07:29:09 +0000", - "content": "Stanford University researchers say AI ethics practitioners report lacking institutional support at their companies. ", - "contentSnippet": "Stanford University researchers say AI ethics practitioners report lacking institutional support at their companies.", - "guid": "https://www.aljazeera.com/?t=1702014598", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T07:29:09.000Z" - }, - { - "title": "No end in sight as death toll rises in Gaza and Israel escalates attacks", - "link": "https://www.aljazeera.com/gallery/2023/12/8/photos-death-toll-continues-to-rise-in-gaza-amid-widening-israeli-attacks?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 07:15:27 +0000", - "content": "Humanitarian aid is trickling into southern Gaza but UN says it\u2019s 'erratic, undependable' and not 'sustainable'.", - "contentSnippet": "Humanitarian aid is trickling into southern Gaza but UN says it\u2019s 'erratic, undependable' and not 'sustainable'.", - "guid": "https://www.aljazeera.com/?t=1701997474", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T07:15:27.000Z" - }, - { - "title": "Rockets reportedly fired towards US embassy in Iraq\u2019s capital Green Zone", - "link": "https://www.aljazeera.com/news/2023/12/8/alarm-sirens-explosions-heard-near-us-embassy-in-baghdad?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 06:54:30 +0000", - "content": "US troops and installations have come under regular attacks due to Washington's support of Israel's bombardment of Gaza.", - "contentSnippet": "US troops and installations have come under regular attacks due to Washington's support of Israel's bombardment of Gaza.", - "guid": "https://www.aljazeera.com/?t=1702013494", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T06:54:30.000Z" - }, - { - "title": "The first Intifada against Israel", - "link": "https://www.aljazeera.com/gallery/2023/12/8/history-illustrated-the-first-intifada-against-israel?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 06:44:12 +0000", - "content": "A years-long uprising by Palestinians would end with a deal that some considered an outright surrender.", - "contentSnippet": "A years-long uprising by Palestinians would end with a deal that some considered an outright surrender.", - "guid": "https://www.aljazeera.com/?t=1702015925", - "categories": [ - "Gallery" - ], - "isoDate": "2023-12-08T06:44:12.000Z" - }, - { - "title": "Will Netanyahu risk a tunnel conflict to \u2018eradicate Hamas\u2019, stay in power?", - "link": "https://www.aljazeera.com/news/2023/12/8/will-netanyahu-risk-a-tunnel-conflict-to-eradicate-hamas-stay-in-power?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 05:42:51 +0000", - "content": "Israeli forces may risk a fight under Gaza as a politically embattled Netanyahu looks for a total defeat of Hamas.", - "contentSnippet": "Israeli forces may risk a fight under Gaza as a politically embattled Netanyahu looks for a total defeat of Hamas.", - "guid": "https://www.aljazeera.com/?t=1701673050", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T05:42:51.000Z" - }, - { - "title": "Social media platform X added 10 million new users in December, CEO says", - "link": "https://www.aljazeera.com/economy/2023/12/8/social-media-platform-x-added-10-million-new-users-in-december-ceo-says?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 04:47:37 +0000", - "content": "Linda Yaccarino makes announcement amid exodus of advertisers from the platform.\r\n", - "contentSnippet": "Linda Yaccarino makes announcement amid exodus of advertisers from the platform.", - "guid": "https://www.aljazeera.com/?t=1702007733", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T04:47:37.000Z" - }, - { - "title": "Armenia, Azerbaijan agree to take steps towards normalisation", - "link": "https://www.aljazeera.com/news/2023/12/8/armenia-azerbaijan-agree-to-take-steps-towards-normalisation?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 04:09:27 +0000", - "content": "EU, US welcome statement in which two sides agree to exchange prisoners of war and Armenia backs Azerbaijan COP29 bid.", - "contentSnippet": "EU, US welcome statement in which two sides agree to exchange prisoners of war and Armenia backs Azerbaijan COP29 bid.", - "guid": "https://www.aljazeera.com/?t=1702004294", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T04:09:27.000Z" - }, - { - "title": "Blinken urges Israel to finish probe into killing of journalist in Lebanon", - "link": "https://www.aljazeera.com/news/2023/12/8/blinken-urges-israel-to-finish-probe-into-killing-of-journalist-in-lebanon?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 02:36:56 +0000", - "content": "Blinken's comments come after rights groups say Israel should be investigated over possible war crime.", - "contentSnippet": "Blinken's comments come after rights groups say Israel should be investigated over possible war crime.", - "guid": "https://www.aljazeera.com/?t=1701993490", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T02:36:56.000Z" - }, - { - "title": "Russia-Ukraine war: List of key events, day 653", - "link": "https://www.aljazeera.com/news/2023/12/8/russia-ukraine-war-list-of-key-events-day-653?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 01:34:49 +0000", - "content": "As the war enters its 653rd day, these are the main developments.", - "contentSnippet": "As the war enters its 653rd day, these are the main developments.", - "guid": "https://www.aljazeera.com/?t=1701994017", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T01:34:49.000Z" - }, - { - "title": "Hunter Biden charged over alleged scheme to avoid $1.4m tax bill", - "link": "https://www.aljazeera.com/news/2023/12/8/us-prosecutors-file-new-charges-against-hunter-biden-cnn-says?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 00:25:39 +0000", - "content": "Indictment comes after President Joe Biden\u2019s son last month pleaded not guilty to three firearms-related charges.", - "contentSnippet": "Indictment comes after President Joe Biden\u2019s son last month pleaded not guilty to three firearms-related charges.", - "guid": "https://www.aljazeera.com/?t=1701994289", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T00:25:39.000Z" - }, - { - "title": "Q&A: \u2018I need to be vindicated\u2019: Leila de Lima on Duterte and the drug war", - "link": "https://www.aljazeera.com/news/2023/12/8/qa-i-need-to-be-vindicated-leila-de-lima-on-duterte-and-the-drug-war?traffic_source=rss", - "pubDate": "Fri, 08 Dec 2023 00:02:54 +0000", - "content": "Freed after six years, the former Philippines senator spoke to Al Jazeera about her ordeal and her hopes for the future.", - "contentSnippet": "Freed after six years, the former Philippines senator spoke to Al Jazeera about her ordeal and her hopes for the future.", - "guid": "https://www.aljazeera.com/?t=1701926984", - "categories": [ - "News" - ], - "isoDate": "2023-12-08T00:02:54.000Z" - }, - { - "title": "Spain expels two US embassy staff for allegedly bribing intelligence agents", - "link": "https://www.aljazeera.com/news/2023/12/7/spain-expels-two-us-embassy-staff-for-allegedly-bribing-intelligence-agents?traffic_source=rss", - "pubDate": "Thu, 07 Dec 2023 21:10:08 +0000", - "content": "The Spanish paper El Pais reports that the US quietly withdrew two staff workers at the request of Spain's government. ", - "contentSnippet": "The Spanish paper El Pais reports that the US quietly withdrew two staff workers at the request of Spain's government.", - "guid": "https://www.aljazeera.com/?t=1701973727", - "categories": [ - "News" - ], - "isoDate": "2023-12-07T21:10:08.000Z" - }, - { - "title": "US to conduct Guyana flights as tensions mount over Venezuela dispute", - "link": "https://www.aljazeera.com/news/2023/12/7/us-to-conduct-guyana-flights-as-tensions-mount-over-venezuela-dispute?traffic_source=rss", - "pubDate": "Thu, 07 Dec 2023 20:57:31 +0000", - "content": "US announces flight drills, stresses 'unwavering support' for Guyana's sovereignty amid growing border tensions.", - "contentSnippet": "US announces flight drills, stresses 'unwavering support' for Guyana's sovereignty amid growing border tensions.", - "guid": "https://www.aljazeera.com/?t=1701978813", - "categories": [ - "News" - ], - "isoDate": "2023-12-07T20:57:31.000Z" - }, - { - "title": "UNICEF: Lack of basic necessities threatening lives of thousands in Gaza", - "link": "https://www.aljazeera.com/program/newsfeed/2023/12/7/unicef-lack-of-basic-necessities-threatening-lives-of-thousands-in-gaza?traffic_source=rss", - "pubDate": "Thu, 07 Dec 2023 19:57:25 +0000", - "content": "UNICEF tells Al Jazeera that the lack of basic necessities is threatening lives of thousands in Gaza. ", - "contentSnippet": "UNICEF tells Al Jazeera that the lack of basic necessities is threatening lives of thousands in Gaza.", - "guid": "https://www.aljazeera.com/?t=1701978815", - "categories": [ - "Show Types" - ], - "isoDate": "2023-12-07T19:57:25.000Z" - }, - { - "title": "Is Israel\u2019s Gaza War the most destructive yet with conventional weapons?", - "link": "https://www.aljazeera.com/program/inside-story/2023/12/7/is-israels-gaza-war-the-most-destructive-yet-with-conventional-weapons?traffic_source=rss", - "pubDate": "Thu, 07 Dec 2023 19:39:55 +0000", - "content": "Some military analysts have compared the Israeli bombardment of Gaza with bombing campaigns from World War II.", - "contentSnippet": "Some military analysts have compared the Israeli bombardment of Gaza with bombing campaigns from World War II.", - "guid": "https://www.aljazeera.com/?t=1701976655", - "categories": [ - "TV Shows" - ], - "isoDate": "2023-12-07T19:39:55.000Z" - }, - { - "title": "Ex-PM Boris Johnson denies in inquiry he wanted to let COVID \u2018rip\u2019", - "link": "https://www.aljazeera.com/news/2023/12/7/former-uk-pm-boris-johnson-denies-he-wanted-to-let-covid-rip?traffic_source=rss", - "pubDate": "Thu, 07 Dec 2023 19:36:00 +0000", - "content": "Johnson says at public inquiry that perceptions of the 'Partygate' scandal were 'a million miles from reality'.", - "contentSnippet": "Johnson says at public inquiry that perceptions of the 'Partygate' scandal were 'a million miles from reality'.", - "guid": "https://www.aljazeera.com/?t=1701972818", - "categories": [ - "News" - ], - "isoDate": "2023-12-07T19:36:00.000Z" - }, - { - "title": "US targets Houthi funding network following attacks on commercial ships", - "link": "https://www.aljazeera.com/news/2023/12/7/us-targets-houthi-funding-network-following-attacks-on-commercial-ships?traffic_source=rss", - "pubDate": "Thu, 07 Dec 2023 19:10:55 +0000", - "content": "US slaps sanctions on 13 people and entities allegedly involved in efforts to direct funds to the Iran-backed group. ", - "contentSnippet": "US slaps sanctions on 13 people and entities allegedly involved in efforts to direct funds to the Iran-backed group.", - "guid": "https://www.aljazeera.com/?t=1701970469", - "categories": [ - "News" - ], - "isoDate": "2023-12-07T19:10:55.000Z" - }, - { - "title": "UN aid chief sees \u2018promising signs\u2019 on opening of new crossing to Gaza", - "link": "https://www.aljazeera.com/news/2023/12/7/un-aid-chief-sees-promising-signs-on-opening-of-new-crossing-to-gaza?traffic_source=rss", - "pubDate": "Thu, 07 Dec 2023 18:39:47 +0000", - "content": "Martin Griffiths says the Kerem Shalom crossing may be opening 'soon' to facilitate aid deliveries to Gaza. ", - "contentSnippet": "Martin Griffiths says the Kerem Shalom crossing may be opening 'soon' to facilitate aid deliveries to Gaza.", - "guid": "https://www.aljazeera.com/?t=1701967580", - "categories": [ - "News" - ], - "isoDate": "2023-12-07T18:39:47.000Z" - }, - { - "title": "Indigenous advocates reject Chile\u2019s new draft constitution ahead of vote", - "link": "https://www.aljazeera.com/news/2023/12/15/indigenous-advocates-reject-chiles-new-draft-constitution-ahead-of-vote?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 15:22:13 +0000", - "content": "Sunday\u2019s referendum will be the second time in as many years that Chileans have voted for a revised constitution.", - "contentSnippet": "Sunday\u2019s referendum will be the second time in as many years that Chileans have voted for a revised constitution.", - "guid": "https://www.aljazeera.com/?t=1702510259", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T15:22:13.000Z" - }, - { - "title": "Africa must challenge the West\u2019s colonial game plan for Palestine", - "link": "https://www.aljazeera.com/opinions/2023/12/15/africa-must-challenge-the-wests-colonial-game-plan-for?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 15:16:17 +0000", - "content": "Africans, who know this story well, should not let the West put Gaza under an Israel-friendly puppet government.", - "contentSnippet": "Africans, who know this story well, should not let the West put Gaza under an Israel-friendly puppet government.", - "guid": "https://www.aljazeera.com/?t=1702638913", - "categories": [ - "Opinions" - ], - "isoDate": "2023-12-15T15:16:17.000Z" - }, - { - "title": "Israel-Gaza: Does Islamophobia play a part in US foreign policy?", - "link": "https://www.aljazeera.com/program/upfront/2023/12/15/israel-gaza-does-islamophobia-play-a-part-in-us-foreign-policy?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 14:45:39 +0000", - "content": "Marc Lamont Hill speaks with scholars of Islamophobia and anti-Semitism.\r\n", - "contentSnippet": "Marc Lamont Hill speaks with scholars of Islamophobia and anti-Semitism.", - "guid": "https://www.aljazeera.com/?t=1702616201", - "categories": [ - "TV Shows" - ], - "isoDate": "2023-12-15T14:45:39.000Z" - }, - { - "title": "\u2018War is stupid and I want it to end\u2019: Injured Palestinian children speak", - "link": "https://www.aljazeera.com/news/2023/12/15/war-is-stupid-and-i-want-it-to-end-injured-palestinian-children-say?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 14:37:50 +0000", - "content": "Israel's relentless bombardment of Gaza has killed or injured about 28,000 Palestinian children in the past two months.", - "contentSnippet": "Israel's relentless bombardment of Gaza has killed or injured about 28,000 Palestinian children in the past two months.", - "guid": "https://www.aljazeera.com/?t=1702470225", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T14:37:50.000Z" - }, - { - "title": "Israel continues Gaza onslaught despite US envoy\u2019s \u2018new phase of war\u2019", - "link": "https://www.aljazeera.com/news/2023/12/15/israel-to-transition-to-more-precise-targeted-warfare-in-gaza-us-adviser?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 13:59:36 +0000", - "content": "US National Security Adviser Jake Sullivan to meet Palestine's Mahmud Abbas after talks with Israeli officials.", - "contentSnippet": "US National Security Adviser Jake Sullivan to meet Palestine's Mahmud Abbas after talks with Israeli officials.", - "guid": "https://www.aljazeera.com/?t=1702639707", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T13:59:36.000Z" - }, - { - "title": "\u2018We barely make ends meet\u2019: In Italy, some women are postponing motherhood", - "link": "https://www.aljazeera.com/features/2023/12/15/127?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 13:22:55 +0000", - "content": "Women say that low salaries, precarious employment and poor childcare options hold them back from starting families.", - "contentSnippet": "Women say that low salaries, precarious employment and poor childcare options hold them back from starting families.", - "guid": "https://www.aljazeera.com/?t=1702628179", - "categories": [ - "Features" - ], - "isoDate": "2023-12-15T13:22:55.000Z" - }, - { - "title": "Attack launched from Houthi-held Yemen hits cargo ship in Red Sea", - "link": "https://www.aljazeera.com/news/2023/12/15/yemen-rebels-hit-cargo-ship-in-latest-red-sea-attack?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 13:17:44 +0000", - "content": "Liberia-flagged vessel caught fire in Red Sea after being hit by a projectile from Yemen, US sources say.", - "contentSnippet": "Liberia-flagged vessel caught fire in Red Sea after being hit by a projectile from Yemen, US sources say.", - "guid": "https://www.aljazeera.com/?t=1702637709", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T13:17:44.000Z" - }, - { - "title": "Denmark stepping up terror probe amid suspicion of Hamas links", - "link": "https://www.aljazeera.com/news/2023/12/15/denmark-detains-two-people-amid-terror-investigation?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 13:08:35 +0000", - "content": "Arrests in Denmark coincide with detentions in the Netherlands and Germany allegedly linked to Hamas.", - "contentSnippet": "Arrests in Denmark coincide with detentions in the Netherlands and Germany allegedly linked to Hamas.", - "guid": "https://www.aljazeera.com/?t=1702639278", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T13:08:35.000Z" - }, - { - "title": "Israel-Gaza war: Is the US administration divorced from reality?", - "link": "https://www.aljazeera.com/program/upfront/2023/12/15/israel-gaza-war-is-the-us-administration-divorced-from-reality?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 13:00:22 +0000", - "content": "Hanan Ashrawi talks to Marc Lamont Hill about the situation in the occupied Palestinian territories and the US position.", - "contentSnippet": "Hanan Ashrawi talks to Marc Lamont Hill about the situation in the occupied Palestinian territories and the US position.", - "guid": "https://www.aljazeera.com/?t=1702616010", - "categories": [ - "TV Shows" - ], - "isoDate": "2023-12-15T13:00:22.000Z" - }, - { - "title": "ECOWAS court orders reinstatement of Niger\u2019s ousted Bazoum", - "link": "https://www.aljazeera.com/news/2023/12/15/ecowas-court-orders-reinstatement-of-nigers-ousted-bazoum?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 12:02:31 +0000", - "content": "Mohamed Bazoum was overthrown by presidential guard members on July 26 and has been detained with his family since then.", - "contentSnippet": "Mohamed Bazoum was overthrown by presidential guard members on July 26 and has been detained with his family since then.", - "guid": "https://www.aljazeera.com/?t=1702640359", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T12:02:31.000Z" - }, - { - "title": "Dutch court dismisses war crimes case against military supplies to Israel", - "link": "https://www.aljazeera.com/news/2023/12/15/dutch-court-dismisses-case-against-delivery-of-f-35-parts-to-israel?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 12:01:25 +0000", - "content": "Rights groups said the exporting of F-35 jet parts to Israel from the Netherlands makes it complicit in Gaza war crimes.", - "contentSnippet": "Rights groups said the exporting of F-35 jet parts to Israel from the Netherlands makes it complicit in Gaza war crimes.", - "guid": "https://www.aljazeera.com/?t=1702637154", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T12:01:25.000Z" - }, - { - "title": "UN Humanitarian Chief: \u2018Gaza is special, not in a good way\u2019", - "link": "https://www.aljazeera.com/program/talk-to-al-jazeera/2023/12/15/un-humanitarian-chief-gaza-is-special-not-in-a-good-way?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 11:45:12 +0000", - "content": "Martin Griffiths on Gaza\u2019s dire conditions for aid operations and the voices that should be heard on Palestine\u2019s future.", - "contentSnippet": "Martin Griffiths on Gaza\u2019s dire conditions for aid operations and the voices that should be heard on Palestine\u2019s future.", - "guid": "https://www.aljazeera.com/?t=1702566365", - "categories": [ - "TV Shows" - ], - "isoDate": "2023-12-15T11:45:12.000Z" - }, - { - "title": "Kremlin has \u2018no information\u2019 on missing Putin critic Alexey Navalny", - "link": "https://www.aljazeera.com/news/2023/12/15/lawyers-have-not-seen-kremlin-critic-navalny-since-december-6-allies?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 11:34:38 +0000", - "content": "Russian opposition figure has been moved from penal colony and lawyers say they haven't seen him since last week.", - "contentSnippet": "Russian opposition figure has been moved from penal colony and lawyers say they haven't seen him since last week.", - "guid": "https://www.aljazeera.com/?t=1702632784", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T11:34:38.000Z" - }, - { - "title": "China\u2019s big freeze blamed for Beijing subway crash", - "link": "https://www.aljazeera.com/news/2023/12/15/beijing-subway-collision-injures-515-people-amid-to-heavy-snowfall?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 10:40:41 +0000", - "content": "Extending recent erratic weather patterns, China has been hit by sudden freezing temperatures and heavy snowfall.", - "contentSnippet": "Extending recent erratic weather patterns, China has been hit by sudden freezing temperatures and heavy snowfall.", - "guid": "https://www.aljazeera.com/?t=1702631380", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T10:40:41.000Z" - }, - { - "title": "Video said to show Palestinian detainees being paraded", - "link": "https://www.aljazeera.com/program/newsfeed/2023/12/15/video-said-to-show-palestinian-detainees-being-paraded?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 10:39:03 +0000", - "content": "Video shared on social media appears to show blindfolded Palestinian detainees being paraded by Israeli soldiers.", - "contentSnippet": "Video shared on social media appears to show blindfolded Palestinian detainees being paraded by Israeli soldiers.", - "guid": "https://www.aljazeera.com/?t=1702636519", - "categories": [ - "Show Types" - ], - "isoDate": "2023-12-15T10:39:03.000Z" - }, - { - "title": "Emaciated but alive: Gaza mothers, premature babies reunited in Egypt", - "link": "https://www.aljazeera.com/news/2023/12/15/gaza-mothers-and-premature-babies-reunited-in-egypt-after-weeks?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 10:24:12 +0000", - "content": "Two mothers who gave birth to premature babies in al-Shifa Hospital recall emotional rollercoaster of separation.", - "contentSnippet": "Two mothers who gave birth to premature babies in al-Shifa Hospital recall emotional rollercoaster of separation.", - "guid": "https://www.aljazeera.com/?t=1702378572", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T10:24:12.000Z" - }, - { - "title": "MSF suspends work in Haiti emergency centre after armed group kills patient", - "link": "https://www.aljazeera.com/news/2023/12/15/msf-suspends-work-at-hatian-hospital-after-armed-group-kill-patient?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 10:24:08 +0000", - "content": "One of the last international groups providing healthcare in capital says it can't work if 'threatened by violence'.\r\n", - "contentSnippet": "One of the last international groups providing healthcare in capital says it can't work if 'threatened by violence'.", - "guid": "https://www.aljazeera.com/?t=1702630445", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T10:24:08.000Z" - }, - { - "title": "Adapting in the face of climate change in rural Kenya", - "link": "https://www.aljazeera.com/gallery/2023/12/15/adapting-in-the-face-of-climate-change-in-rural-kenya?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 09:10:49 +0000", - "content": "For farmers across the globe, access to reliable weather and climate data is critical in adapting to a new normal. ", - "contentSnippet": "For farmers across the globe, access to reliable weather and climate data is critical in adapting to a new normal.", - "guid": "https://www.aljazeera.com/?t=1702589180", - "categories": [ - "Gallery" - ], - "isoDate": "2023-12-15T09:10:49.000Z" - }, - { - "title": "Eleven security personnel killed in Iran police station attack", - "link": "https://www.aljazeera.com/news/2023/12/15/eleven-security-personnel-killed-in-iran-police-station-attack-state-tv?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 08:56:23 +0000", - "content": "Several wounded in shooting in province of Sistan-Baluchestan which borders Afghanistan and Pakistan.", - "contentSnippet": "Several wounded in shooting in province of Sistan-Baluchestan which borders Afghanistan and Pakistan.", - "guid": "https://www.aljazeera.com/?t=1702625311", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T08:56:23.000Z" - }, - { - "title": "Police and soldiers killed as more violence flares in northwest Pakistan", - "link": "https://www.aljazeera.com/news/2023/12/15/two-officers-killed-in-attack-on-police-station-in-northwest-pakistan?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 08:54:33 +0000", - "content": "The second attack this week on police posts in Khyber Pakhtunkhwa also saw three attackers killed.", - "contentSnippet": "The second attack this week on police posts in Khyber Pakhtunkhwa also saw three attackers killed.", - "guid": "https://www.aljazeera.com/?t=1702621447", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T08:54:33.000Z" - }, - { - "title": "Global coal use to reach record high in 2023, energy agency says", - "link": "https://www.aljazeera.com/news/2023/12/15/global-coal-use-to-reach-record-high-in-2023-iea?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 08:25:22 +0000", - "content": "IEA report says demand is expected to grow in India, China but decline in United States, European Union.", - "contentSnippet": "IEA report says demand is expected to grow in India, China but decline in United States, European Union.", - "guid": "https://www.aljazeera.com/?t=1702621265", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T08:25:22.000Z" - }, - { - "title": "Israel-Hamas war: List of key events, day 70", - "link": "https://www.aljazeera.com/news/2023/12/15/israel-hamas-war-list-of-key-events-day-70?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 07:56:49 +0000", - "content": "Raids continue on Jenin and Kamal Adwan Hospital amid mass protests for ceasefire - here are the major updates.", - "contentSnippet": "Raids continue on Jenin and Kamal Adwan Hospital amid mass protests for ceasefire - here are the major updates.", - "guid": "https://www.aljazeera.com/?t=1702617996", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T07:56:49.000Z" - }, - { - "title": "US Yazidis sue France\u2019s Lafarge for aiding ISIL violence", - "link": "https://www.aljazeera.com/news/2023/12/15/yazidis-in-the-us-file-lawsuit-against-french-company-lafarge-for-aiding-is?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 07:47:07 +0000", - "content": "The French cement maker is accused of abetting violence and terrorism by providing supplies for tunnels and prisons.", - "contentSnippet": "The French cement maker is accused of abetting violence and terrorism by providing supplies for tunnels and prisons.", - "guid": "https://www.aljazeera.com/?t=1702618027", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T07:47:07.000Z" - }, - { - "title": "Diseases spread in Gaza amid health system collapse, Israeli strikes", - "link": "https://www.aljazeera.com/gallery/2023/12/15/photos-amid-deadly-israeli-strikes-people-in-gaza-face-a-storm-of-diseases?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 07:30:28 +0000", - "content": "WHO says diarrhoea cases surged 66 percent among children. Meningitis, chickenpox, jaundice also reported.", - "contentSnippet": "WHO says diarrhoea cases surged 66 percent among children. Meningitis, chickenpox, jaundice also reported.", - "guid": "https://www.aljazeera.com/?t=1702609093", - "categories": [ - "News" - ], - "isoDate": "2023-12-15T07:30:28.000Z" - }, - { - "title": "Japan expands sanctions over Russia\u2019s war in Ukraine", - "link": "https://www.aljazeera.com/economy/2023/12/15/japan-expands-sanctions-over-russias-war-in-ukraine?traffic_source=rss", - "pubDate": "Fri, 15 Dec 2023 07:14:15 +0000", - "content": "Tokyo adds 57 Russian new organisations to its trade blacklist in latest measures to punish Moscow.", - "contentSnippet": "Tokyo adds 57 Russian new organisations to its trade blacklist in latest measures to punish Moscow.", - "guid": "https://www.aljazeera.com/?t=1702619417", - "categories": [ - "Economy" - ], - "isoDate": "2023-12-15T07:14:15.000Z" - }, - { - "title": "Confusion, speculation in Iran after twin blasts kill more than 80 people", - "link": "https://www.aljazeera.com/news/2024/1/4/confusion-speculation-in-iran-after-twin-blasts-kill-more-than-80-people?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 10:18:38 +0000", - "content": "Iranians mark day of mourning after bombings kill at least 84 people, leave more than 280 wounded.", - "contentSnippet": "Iranians mark day of mourning after bombings kill at least 84 people, leave more than 280 wounded.", - "guid": "https://www.aljazeera.com/?t=1704354849", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T10:18:38.000Z" - }, - { - "title": "Israel\u2019s war on Gaza: List of key events, day 90", - "link": "https://www.aljazeera.com/news/2024/1/4/israels-war-on-gaza-list-of-key-events-day-90?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 10:06:51 +0000", - "content": "Israel's plan for Palestinian resettlement is condemned as the ICJ confirms public hearings. Here is the latest:", - "contentSnippet": "Israel's plan for Palestinian resettlement is condemned as the ICJ confirms public hearings. Here is the latest:", - "guid": "https://www.aljazeera.com/?t=1704344618", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T10:06:51.000Z" - }, - { - "title": "Bangladesh elections mark a pro-China tipping point in South Asia", - "link": "https://www.aljazeera.com/opinions/2024/1/4/bangladesh-elections-mark-a-pro-china-tipping-point-in-south-asia?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 09:30:15 +0000", - "content": "Beijing will celebrate a return of the Awami League the most. But Dhaka might struggle to cope.", - "contentSnippet": "Beijing will celebrate a return of the Awami League the most. But Dhaka might struggle to cope.", - "guid": "https://www.aljazeera.com/?t=1704354824", - "categories": [ - "Opinions" - ], - "isoDate": "2024-01-04T09:30:15.000Z" - }, - { - "title": "School in Thailand offers safe space for harassed environment activists", - "link": "https://www.aljazeera.com/gallery/2024/1/4/photos-school-in-thailand-offers-safe-space-for-harassed-environment-activists?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 09:27:05 +0000", - "content": "Focus at EarthRights School is on learning from a community's fight to protect their land.", - "contentSnippet": "Focus at EarthRights School is on learning from a community's fight to protect their land.", - "guid": "https://www.aljazeera.com/?t=1701388355", - "categories": [ - "Gallery" - ], - "isoDate": "2024-01-04T09:27:05.000Z" - }, - { - "title": "Israeli military strikes south Lebanon stoking fears of widening conflict", - "link": "https://www.aljazeera.com/news/2024/1/4/israeli-military-strikes-south-lebanon-stoking-fears-of-widening-conflict?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 09:11:59 +0000", - "content": "Attacks on Hezbollah military infrastructure follow the killing of Hamas leader in Beirut, which Israel has not claimed.", - "contentSnippet": "Attacks on Hezbollah military infrastructure follow the killing of Hamas leader in Beirut, which Israel has not claimed.", - "guid": "https://www.aljazeera.com/?t=1704347414", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T09:11:59.000Z" - }, - { - "title": "For feminists, silence on Gaza is no longer an option", - "link": "https://www.aljazeera.com/opinions/2024/1/4/for-feminists-silence-on-gaza-is-no-longer-an-option?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 08:43:01 +0000", - "content": "It is a feminist responsibility to call for an immediate ceasefire in Gaza.", - "contentSnippet": "It is a feminist responsibility to call for an immediate ceasefire in Gaza.", - "guid": "https://www.aljazeera.com/?t=1704292293", - "categories": [ - "Opinions" - ], - "isoDate": "2024-01-04T08:43:01.000Z" - }, - { - "title": "Bangladesh holding \u2018sham\u2019 election: Exiled opposition leader Tarique Rahman", - "link": "https://www.aljazeera.com/news/2024/1/4/bangladesh-holding-sham-election-exiled-opposition-leader-tarique-rahman?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 08:26:08 +0000", - "content": "Son of jailed two-time PM Khaleda Zia defends the BNP's boycott of Sunday's vote, saying it has 'predetermined' outcome.", - "contentSnippet": "Son of jailed two-time PM Khaleda Zia defends the BNP's boycott of Sunday's vote, saying it has 'predetermined' outcome.", - "guid": "https://www.aljazeera.com/?t=1704352874", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T08:26:08.000Z" - }, - { - "title": "Jewish protesters calling for Gaza ceasefire shut down California assembly", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/4/jewish-protesters-calling-for-gaza-ceasefire-shut-down-california-assembly?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 08:08:34 +0000", - "content": "Pro-Palestinian protesters disrupted the first day of California legislature by calling for a ceasefire in Gaza.", - "contentSnippet": "Pro-Palestinian protesters disrupted the first day of California legislature by calling for a ceasefire in Gaza.", - "guid": "https://www.aljazeera.com/?t=1704353875", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-04T08:08:34.000Z" - }, - { - "title": "Gaza women and the isdal robes that shield them as war strips their privacy", - "link": "https://www.aljazeera.com/features/2024/1/4/gaza-women-isdal-robes-them-war-strips-their-privacy?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 07:28:54 +0000", - "content": "Women and girls rely on this cover-up garment to help them face the most difficult moments of Israel's war on Gaza.", - "contentSnippet": "Women and girls rely on this cover-up garment to help them face the most difficult moments of Israel's war on Gaza.", - "guid": "https://www.aljazeera.com/?t=1704293792", - "categories": [ - "Features" - ], - "isoDate": "2024-01-04T07:28:54.000Z" - }, - { - "title": "Netanyahu\u2019s bait: Why Israel might have killed Hamas leaders in Beirut now", - "link": "https://www.aljazeera.com/news/2024/1/4/netanyahus-bait-why-israel-might-have-killed-hamas-leaders-in-beirut-now?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 06:51:35 +0000", - "content": "The assassinations bear the marks of an Israeli operation. But the timing might also be about Israeli domestic politics.", - "contentSnippet": "The assassinations bear the marks of an Israeli operation. But the timing might also be about Israeli domestic politics.", - "guid": "https://www.aljazeera.com/?t=1704345875", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T06:51:35.000Z" - }, - { - "title": "Hunger hits displaced Palestinians and animals in Gaza zoo", - "link": "https://www.aljazeera.com/gallery/2024/1/4/photos-hunger-hits-displaced-palestinians-and-animals-in-gaza-zoo?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 06:50:02 +0000", - "content": "'Living among the animals is more merciful than what we get from the warplanes in the sky.'", - "contentSnippet": "'Living among the animals is more merciful than what we get from the warplanes in the sky.'", - "guid": "https://www.aljazeera.com/?t=1704307233", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T06:50:02.000Z" - }, - { - "title": "Photos: Palestinians flee Nuseirat refugee camp once again amid attacks", - "link": "https://www.aljazeera.com/gallery/2024/1/4/photos-people-fleeing-nuseirat-camp?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 05:22:40 +0000", - "content": "Residents say the Israeli army issued new evacuation orders as it continues to intensify attacks on the area.", - "contentSnippet": "Residents say the Israeli army issued new evacuation orders as it continues to intensify attacks on the area.", - "guid": "https://www.aljazeera.com/?t=1704290823", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T05:22:40.000Z" - }, - { - "title": "Japanese rescuers race to find survivors as quake death toll rises to 78", - "link": "https://www.aljazeera.com/news/2024/1/4/japanese-rescuers-race-to-find-survivors-as-quake-death-toll-rises-to-78?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 04:59:03 +0000", - "content": "Scale of damage to roads and poor weather hamper relief efforts, three days after quake off Noto Peninsula.", - "contentSnippet": "Scale of damage to roads and poor weather hamper relief efforts, three days after quake off Noto Peninsula.", - "guid": "https://www.aljazeera.com/?t=1704339841", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T04:59:03.000Z" - }, - { - "title": "Initial tranche of nearly 950 Epstein court documents released", - "link": "https://www.aljazeera.com/news/2024/1/4/initial-tranche-of-nearly-950-epstein-court-documents-released?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 03:37:27 +0000", - "content": "Papers include names of dozens of powerful men who associated with financier and sex trafficker Jeffrey Epstein.", - "contentSnippet": "Papers include names of dozens of powerful men who associated with financier and sex trafficker Jeffrey Epstein.", - "guid": "https://www.aljazeera.com/?t=1704330780", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T03:37:27.000Z" - }, - { - "title": "Russia-Ukraine war: List of key events, day 680", - "link": "https://www.aljazeera.com/news/2024/1/4/russia-ukraine-war-list-of-key-events-day-680?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 01:03:25 +0000", - "content": "As the war enters is 680th day, these are the main developments.", - "contentSnippet": "As the war enters is 680th day, these are the main developments.", - "guid": "https://www.aljazeera.com/?t=1704326220", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T01:03:25.000Z" - }, - { - "title": "Why temples are a top campaign stop in Taiwan\u2019s election", - "link": "https://www.aljazeera.com/news/2024/1/4/why-temples-are-a-top-campaign-stop-in-taiwans-election?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 00:45:08 +0000", - "content": "Temples help politicians meet local voters, but there are concerns some may be too close to Beijing.", - "contentSnippet": "Temples help politicians meet local voters, but there are concerns some may be too close to Beijing.", - "guid": "https://www.aljazeera.com/?t=1704258911", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T00:45:08.000Z" - }, - { - "title": "US led coalition warns Houthis of \u2018consequences\u2019 after Red Sea attacks", - "link": "https://www.aljazeera.com/news/2024/1/3/us-led-coalition-warns-houthis-of-consequences-after-red-sea-attacks?traffic_source=rss", - "pubDate": "Wed, 03 Jan 2024 21:02:20 +0000", - "content": "The Houthis have argued that their attacks on ship linked to Israel are an act of solidarity with Gaza.", - "contentSnippet": "The Houthis have argued that their attacks on ship linked to Israel are an act of solidarity with Gaza.", - "guid": "https://www.aljazeera.com/?t=1704313199", - "categories": [ - "News" - ], - "isoDate": "2024-01-03T21:02:20.000Z" - }, - { - "title": "Israel\u2019s controversial use of weapons in Gaza", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/3/israels-controversial-use-of-weapons-in-gaza?traffic_source=rss", - "pubDate": "Wed, 03 Jan 2024 20:53:55 +0000", - "content": "Nabila Bana takes a look at some of the weapons Israel is allegedly using and why their use could be leading to high", - "contentSnippet": "Nabila Bana takes a look at some of the weapons Israel is allegedly using and why their use could be leading to high", - "guid": "https://www.aljazeera.com/?t=1704314975", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-03T20:53:55.000Z" - }, - { - "title": "Hezbollah leader warns Israel of war \u2018without restrictions\u2019", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/3/hezbollah-leader-warns-israel-of-war-without-restrictions?traffic_source=rss", - "pubDate": "Wed, 03 Jan 2024 20:17:28 +0000", - "content": "Hezbollah leader warns Israel of war 'without restrictions'", - "contentSnippet": "Hezbollah leader warns Israel of war 'without restrictions'", - "guid": "https://www.aljazeera.com/?t=1704312844", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-03T20:17:28.000Z" - }, - { - "title": "\u2018Heinous\u2019: World reacts to twin blasts that kill dozens in Iran", - "link": "https://www.aljazeera.com/news/2024/1/3/heinous-world-reacts-to-twin-blasts-that-kill-dozens-in-iran?traffic_source=rss", - "pubDate": "Wed, 03 Jan 2024 20:11:54 +0000", - "content": "Iran\u2019s supreme leader, Ayatollah Ali Khamenei, promised a 'harsh response' to attack in southeastern city of Kerman.", - "contentSnippet": "Iran\u2019s supreme leader, Ayatollah Ali Khamenei, promised a 'harsh response' to attack in southeastern city of Kerman.", - "guid": "https://www.aljazeera.com/?t=1704305497", - "categories": [ - "News" - ], - "isoDate": "2024-01-03T20:11:54.000Z" - }, - { - "title": "Hezbollah chief says group won\u2019t \u2018be silent\u2019 after killing of Hamas leader", - "link": "https://www.aljazeera.com/news/2024/1/3/hezbollah-chief-says-group-wont-be-silent-after-killing-of-hamas-leader?traffic_source=rss", - "pubDate": "Wed, 03 Jan 2024 19:13:06 +0000", - "content": "Hassan Nasrallah offers condolences to Hamas after the killing of its deputy leader Saleh al-Arouri.", - "contentSnippet": "Hassan Nasrallah offers condolences to Hamas after the killing of its deputy leader Saleh al-Arouri.", - "guid": "https://www.aljazeera.com/?t=1704305646", - "categories": [ - "News" - ], - "isoDate": "2024-01-03T19:13:06.000Z" - }, - { - "title": "Explosions kill dozens gathered for anniversary of Soleimani assassination", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/3/explosions-kill-dozens-gathered-for-anniversary-of-soleimani-assassination?traffic_source=rss", - "pubDate": "Wed, 03 Jan 2024 18:51:19 +0000", - "content": "Explosions kill dozens gathered for anniversary of former IRGC General Soleimani\u2019s assassination ", - "contentSnippet": "Explosions kill dozens gathered for anniversary of former IRGC General Soleimani\u2019s assassination", - "guid": "https://www.aljazeera.com/?t=1704307713", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-03T18:51:19.000Z" - }, - { - "title": "Russia, Ukraine exchange hundreds of prisoners in largest release of war", - "link": "https://www.aljazeera.com/news/2024/1/3/russia-ukraine-exchange-hundreds-of-prisoners-in-largest-release-of-war?traffic_source=rss", - "pubDate": "Wed, 03 Jan 2024 18:15:36 +0000", - "content": "More than 470 prisoners of war return home on both sides after the swap deals stalled in the latter half of 2023.", - "contentSnippet": "More than 470 prisoners of war return home on both sides after the swap deals stalled in the latter half of 2023.", - "guid": "https://www.aljazeera.com/?t=1704301703", - "categories": [ - "News" - ], - "isoDate": "2024-01-03T18:15:36.000Z" - }, - { - "title": "Rory McIlroy would consider playing LIV if it turns into \u2018IPL of golf\u2019", - "link": "https://www.aljazeera.com/sports/2024/1/3/rory-mc-ilroy-liv-golf-ipl-money-jon-rahm-pga-ryder-cup?traffic_source=rss", - "pubDate": "Wed, 03 Jan 2024 17:53:33 +0000", - "content": "McIlroy has softened his stance on LIV Golf and says he has accepted it as 'part of our sport now'.", - "contentSnippet": "McIlroy has softened his stance on LIV Golf and says he has accepted it as 'part of our sport now'.", - "guid": "https://www.aljazeera.com/?t=1704297750", - "categories": [ - "Sports" - ], - "isoDate": "2024-01-03T17:53:33.000Z" - }, - { - "title": "South Africa trail India after 23 wickets fall on frenetic day of cricket", - "link": "https://www.aljazeera.com/sports/2024/1/3/south-africa-vs-india-second-test-cape-town-23-wickets-mohammed-siraj-dean-elgar-virat-kohli?traffic_source=rss", - "pubDate": "Wed, 03 Jan 2024 17:52:49 +0000", - "content": "The second Test between South Africa and India gets off to a manic start as both teams suffer batting collapses.", - "contentSnippet": "The second Test between South Africa and India gets off to a manic start as both teams suffer batting collapses.", - "guid": "https://www.aljazeera.com/?t=1704302429", - "categories": [ - "Sports" - ], - "isoDate": "2024-01-03T17:52:49.000Z" - }, - { - "title": "Courtroom drama as convicted felon attacks judge during sentencing", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/4/courtroom-drama-as-convicted-felon-attacks-judge-during-sentencing?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 11:11:45 +0000", - "content": "A defendant jumped over a courtroom bench to attack a judge in Nevada. Moments earlier, he asked for leniency.", - "contentSnippet": "A defendant jumped over a courtroom bench to attack a judge in Nevada. Moments earlier, he asked for leniency.", - "guid": "https://www.aljazeera.com/?t=1704361096", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-04T11:11:45.000Z" - }, - { - "title": "Japan races to find earthquake survivors five days on", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/5/japan-races-to-find-earthquake-survivors-five-days-on?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 13:27:06 +0000", - "content": "As Japan's earthquake rescue efforts enter its fifth day, there are growing concerns about resource availability.", - "contentSnippet": "As Japan's earthquake rescue efforts enter its fifth day, there are growing concerns about resource availability.", - "guid": "https://www.aljazeera.com/?t=1704460258", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-05T13:27:06.000Z" - }, - { - "title": "Why is President Ruto in a row with Kenya\u2019s judiciary? A simple guide", - "link": "https://www.aljazeera.com/news/2024/1/5/why-is-president-ruto-in-a-row-with-kenyas-judiciary-a-simple-guide?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 13:16:19 +0000", - "content": "The president's outbursts come after a series of rulings against his reforms since he took office in August 2022.", - "contentSnippet": "The president's outbursts come after a series of rulings against his reforms since he took office in August 2022.", - "guid": "https://www.aljazeera.com/?t=1704442489", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T13:16:19.000Z" - }, - { - "title": "What is Israel\u2019s latest \u2018day after\u2019 plan for Gaza?", - "link": "https://www.aljazeera.com/news/2024/1/5/what-is-israels-latest-day-after-plan-for-gaza?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 13:09:44 +0000", - "content": "In a vision laid out for post-war Gaza, defence minister Gallant said an undefined Palestinian entity will take charge.", - "contentSnippet": "In a vision laid out for post-war Gaza, defence minister Gallant said an undefined Palestinian entity will take charge.", - "guid": "https://www.aljazeera.com/?t=1704436688", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T13:09:44.000Z" - }, - { - "title": "Why Bangladesh\u2019s opposition is boycotting the election", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/5/why-bangladeshs-opposition-is-boycotting-the-election?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 12:59:04 +0000", - "content": "Bangladesh's main opposition party is boycotting Sunday's election.", - "contentSnippet": "Bangladesh's main opposition party is boycotting Sunday's election.", - "guid": "https://www.aljazeera.com/?t=1704448411", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-05T12:59:04.000Z" - }, - { - "title": "Iran\u2019s Raisi promises retaliation at funeral for victims of twin bombings", - "link": "https://www.aljazeera.com/news/2024/1/5/irans-raisi-promises-retaliation-at-funeral-for-victims-of-twin-bombings?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 11:48:04 +0000", - "content": "Attack claimed by ISIL (ISIS) took place in Kerman on Wednesday during a memorial for top commander Qassem Soleimani.", - "contentSnippet": "Attack claimed by ISIL (ISIS) took place in Kerman on Wednesday during a memorial for top commander Qassem Soleimani.", - "guid": "https://www.aljazeera.com/?t=1704447435", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T11:48:04.000Z" - }, - { - "title": "Bans and boycotts: The troubled history of Bangladesh\u2019s elections", - "link": "https://www.aljazeera.com/news/2024/1/5/bangladesh-elections-a-timeline-of-controversy?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 11:36:19 +0000", - "content": "Since independence in 1971, only a handful of the country's elections have been considered 'free and fair'.", - "contentSnippet": "Since independence in 1971, only a handful of the country's elections have been considered 'free and fair'.", - "guid": "https://www.aljazeera.com/?t=1704444289", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T11:36:19.000Z" - }, - { - "title": "What do we know about the school shooting in Iowa?", - "link": "https://www.aljazeera.com/news/2024/1/5/what-to-know-about-the-shooting-in-perry-iowa?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 10:45:03 +0000", - "content": "Republicans have reacted with prayers following the Perry school shooting but no proposals to change gun laws.", - "contentSnippet": "Republicans have reacted with prayers following the Perry school shooting but no proposals to change gun laws.", - "guid": "https://www.aljazeera.com/?t=1704443866", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T10:45:03.000Z" - }, - { - "title": "Pakistan\u2019s Senate approves resolution to delay February 8 general elections", - "link": "https://www.aljazeera.com/news/2024/1/5/pakistan-senate-approves-resolution-to-delay-february-8-elections-reports?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 10:08:35 +0000", - "content": "Independent senator moves the non-binding resolution to delay the vote, citing security concerns and harsh weather.", - "contentSnippet": "Independent senator moves the non-binding resolution to delay the vote, citing security concerns and harsh weather.", - "guid": "https://www.aljazeera.com/?t=1704449195", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T10:08:35.000Z" - }, - { - "title": "The (not so) surprising revelations of the Epstein list", - "link": "https://www.aljazeera.com/opinions/2024/1/5/the-not-so-surprising-revelations-of-the-epstein-list?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 10:00:56 +0000", - "content": "The list is just another a reminder that we live under a system where elite domination remains above the law.", - "contentSnippet": "The list is just another a reminder that we live under a system where elite domination remains above the law.", - "guid": "https://www.aljazeera.com/?t=1704434645", - "categories": [ - "Opinions" - ], - "isoDate": "2024-01-05T10:00:56.000Z" - }, - { - "title": "Drop the charges against Indigo \u2018Peace 11\u2019 protesters", - "link": "https://www.aljazeera.com/opinions/2024/1/5/drop-the-charges-against-indigo-peace-11-protesters?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 09:57:57 +0000", - "content": "Protesting a business for supporting the Israeli military is not anti-Semitic, and should not be treated as such.", - "contentSnippet": "Protesting a business for supporting the Israeli military is not anti-Semitic, and should not be treated as such.", - "guid": "https://www.aljazeera.com/?t=1704385950", - "categories": [ - "Opinions" - ], - "isoDate": "2024-01-05T09:57:57.000Z" - }, - { - "title": "\u2018He\u2019s breathing\u2019: My two hours under Gaza\u2019s rubble after an Israeli strike", - "link": "https://www.aljazeera.com/features/2024/1/5/hes-breathing-my-two-hours-under-gazas-rubble-after-an-israeli-strike?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 09:41:15 +0000", - "content": "A father's radio, a mother's reassurance - and then, in an instant, darkness and pain. This is life under Israeli attack", - "contentSnippet": "A father's radio, a mother's reassurance - and then, in an instant, darkness and pain. This is life under Israeli attack", - "guid": "https://www.aljazeera.com/?t=1704388160", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T09:41:15.000Z" - }, - { - "title": "Oscar Pistorius released on parole after serving nine years for murder", - "link": "https://www.aljazeera.com/news/2024/1/5/oscar-pistorius-released-on-parole-after-serving-nine-years-for-murder?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 09:36:20 +0000", - "content": "Former Paralympic athlete was serving 13-year sentence for Valentine's Day shooting of girlfriend Reeva Steenkamp.", - "contentSnippet": "Former Paralympic athlete was serving 13-year sentence for Valentine's Day shooting of girlfriend Reeva Steenkamp.", - "guid": "https://www.aljazeera.com/?t=1704438276", - "categories": [ - "Sports" - ], - "isoDate": "2024-01-05T09:36:20.000Z" - }, - { - "title": "Israel launches attacks across Gaza amid spike in regional tensions", - "link": "https://www.aljazeera.com/gallery/2024/1/5/photos-israel-launches-attacks-across-gaza-amid-spike-in-regional-tensions?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 08:47:08 +0000", - "content": "Health ministry in Gaza says 125 people have been killed and 318 injured in a 24-hour period.", - "contentSnippet": "Health ministry in Gaza says 125 people have been killed and 318 injured in a 24-hour period.", - "guid": "https://www.aljazeera.com/?t=1704404372", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T08:47:08.000Z" - }, - { - "title": "North Korea fires artillery towards South\u2019s islands, prompting evacuations", - "link": "https://www.aljazeera.com/news/2024/1/5/north-korea-fires-artillery-towards-souths-islands-prompting-evacuations?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 08:01:13 +0000", - "content": "South Korea condemns move as 'act of provocation that escalates tension and threatens peace on the Korean Peninsula'.", - "contentSnippet": "South Korea condemns move as 'act of provocation that escalates tension and threatens peace on the Korean Peninsula'.", - "guid": "https://www.aljazeera.com/?t=1704432287", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T08:01:13.000Z" - }, - { - "title": "Indian navy intercepts Liberian-flagged vessel hijacked in the Arabian Sea", - "link": "https://www.aljazeera.com/news/2024/1/5/india-navy-says-responding-to-liberian-flagged-vessel-hijack-in-arabian-sea?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 07:54:46 +0000", - "content": "The navy says its commandos boarded the warship to render assistance after the vessel issued a hijacking distress call.", - "contentSnippet": "The navy says its commandos boarded the warship to render assistance after the vessel issued a hijacking distress call.", - "guid": "https://www.aljazeera.com/?t=1704439196", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T07:54:46.000Z" - }, - { - "title": "\u2018We\u2019ll have more\u2019: Palestinians in Lebanon lay killed Hamas leader to rest", - "link": "https://www.aljazeera.com/news/2024/1/5/well-have-more-palestinians-in-lebanon-lay-killed-hamas-leader-to-rest?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 07:51:33 +0000", - "content": "Palestinians refugees from across the country pay their respects to top Hamas commander Saleh al-Arouri.", - "contentSnippet": "Palestinians refugees from across the country pay their respects to top Hamas commander Saleh al-Arouri.", - "guid": "https://www.aljazeera.com/?t=1704394983", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T07:51:33.000Z" - }, - { - "title": "Israel\u2019s war on Gaza: List of key events, day 91", - "link": "https://www.aljazeera.com/news/2024/1/5/israels-war-on-gaza-list-of-key-events-day-91?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 07:46:45 +0000", - "content": "Israel brings a 'day after' plan for Gaza and al-Arouri's funeral is held. Here's the latest:", - "contentSnippet": "Israel brings a 'day after' plan for Gaza and al-Arouri's funeral is held. Here's the latest:", - "guid": "https://www.aljazeera.com/?t=1704431731", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T07:46:45.000Z" - }, - { - "title": "Desert swallows livelihoods as climate shocks continue in northeast Nigeria", - "link": "https://www.aljazeera.com/features/2024/1/5/desert-swallows-livelihoods-as-climate-shocks-continue-in-northeast-nigeria?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 07:25:21 +0000", - "content": "More communities on the fringes of the Sahara desert say they are losing their farmlands and homes.", - "contentSnippet": "More communities on the fringes of the Sahara desert say they are losing their farmlands and homes.", - "guid": "https://www.aljazeera.com/?t=1704111949", - "categories": [ - "Features" - ], - "isoDate": "2024-01-05T07:25:21.000Z" - }, - { - "title": "Senegal top court rejects opposition leader Sonko\u2019s appeal in libel case", - "link": "https://www.aljazeera.com/news/2024/1/5/senegal-top-court-rejects-opposition-leader-sonkos-appeal-in-libel-case?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 07:11:22 +0000", - "content": "Ruling could jeopardise popular politician's chances of running in February's presidential elections.", - "contentSnippet": "Ruling could jeopardise popular politician's chances of running in February's presidential elections.", - "guid": "https://www.aljazeera.com/?t=1704435204", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T07:11:22.000Z" - }, - { - "title": "Four killed, many injured in two-train collision in Indonesia\u2019s West Java", - "link": "https://www.aljazeera.com/news/2024/1/5/three-killed-28-injured-in-two-train-collision-in-indonesias-west-java?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 07:08:25 +0000", - "content": "A long-distance train from Indonesia's second-largest city, Surabaya, collided with a commuter train near Bandung.", - "contentSnippet": "A long-distance train from Indonesia's second-largest city, Surabaya, collided with a commuter train near Bandung.", - "guid": "https://www.aljazeera.com/?t=1704435906", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T07:08:25.000Z" - }, - { - "title": "India\u2019s stateless babies: How lawless asylum rules leave refugees in limbo", - "link": "https://www.aljazeera.com/features/2024/1/5/stateless-babies-in-northeast-india-refugee-mothers-pray-for-nationhood?traffic_source=rss", - "pubDate": "Fri, 05 Jan 2024 06:07:03 +0000", - "content": "Without a refugee law, India is an uncertain home for new waves of asylum seekers. Will the 2024 election change that? ", - "contentSnippet": "Without a refugee law, India is an uncertain home for new waves of asylum seekers. Will the 2024 election change that?", - "guid": "https://www.aljazeera.com/?t=1703308674", - "categories": [ - "News" - ], - "isoDate": "2024-01-05T06:07:03.000Z" - }, - { - "title": "Asia\u2019s business heirs look beyond profits, hoping to escape parents\u2019 shadow", - "link": "https://www.aljazeera.com/economy/2024/1/4/asias-business-heirs-look-beyond-profits-hoping-to-escape-parents-shadow?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 22:09:25 +0000", - "content": "Second- and third-generation family businesses say sustainable investments are a priority like never before.", - "contentSnippet": "Second- and third-generation family businesses say sustainable investments are a priority like never before.", - "guid": "https://www.aljazeera.com/?t=1703835971", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T22:09:25.000Z" - }, - { - "title": "Israeli defence minister outlines new phase in Gaza war", - "link": "https://www.aljazeera.com/news/2024/1/4/israeli-defence-minister-outlines-new-phase-in-gaza-war?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 21:34:29 +0000", - "content": "Yoav\u00a0Gallant\u00a0says Israeli officials want a 'Palestinian entity' to run civilian affairs in Gaza after the war.", - "contentSnippet": "Yoav\u00a0Gallant\u00a0says Israeli officials want a 'Palestinian entity' to run civilian affairs in Gaza after the war.", - "guid": "https://www.aljazeera.com/?t=1704399754", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T21:34:29.000Z" - }, - { - "title": "Senior Hamas official Saleh al-Arouri\u2019s funeral held", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/4/senior-hamas-official-saleh-al-arouris-funeral-held?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 20:58:26 +0000", - "content": "Mourners gather for senior Hamas leader Saleh al-Arouri\u2019s funeral in Beirut. ", - "contentSnippet": "Mourners gather for senior Hamas leader Saleh al-Arouri\u2019s funeral in Beirut.", - "guid": "https://www.aljazeera.com/?t=1704401598", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-04T20:58:26.000Z" - }, - { - "title": "Russia used North Korean missiles in Ukraine, US says", - "link": "https://www.aljazeera.com/news/2024/1/4/russia-used-north-korean-missiles-in-ukraine-us-says?traffic_source=rss", - "pubDate": "Thu, 04 Jan 2024 20:47:48 +0000", - "content": "The United States also expressed concerns that Russia is seeking close-range ballistic missiles from Iran.", - "contentSnippet": "The United States also expressed concerns that Russia is seeking close-range ballistic missiles from Iran.", - "guid": "https://www.aljazeera.com/?t=1704397900", - "categories": [ - "News" - ], - "isoDate": "2024-01-04T20:47:48.000Z" - }, - { - "title": "Gaza daily deaths exceed all other major conflicts in 21st century: Oxfam", - "link": "https://www.aljazeera.com/news/2024/1/11/gaza-daily-deaths-exceed-all-other-major-conflicts-in-21st-century-oxfam?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 21:05:29 +0000", - "content": "Human Rights Watch also says Israel\u2019s war has included 'acts of collective punishment that amount to war crimes'.", - "contentSnippet": "Human Rights Watch also says Israel\u2019s war has included 'acts of collective punishment that amount to war crimes'.", - "guid": "https://www.aljazeera.com/?t=1705002424", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T21:05:29.000Z" - }, - { - "title": "Trump accuses New York attorney general of bias in court closing arguments", - "link": "https://www.aljazeera.com/news/2024/1/11/trump-accuses-new-york-attorney-general-of-bias-in-court-closing-arguments?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 20:35:02 +0000", - "content": "Trump's remarks come on final day of a trial over allegations that he habitually exaggerated his wealth. ", - "contentSnippet": "Trump's remarks come on final day of a trial over allegations that he habitually exaggerated his wealth.", - "guid": "https://www.aljazeera.com/?t=1705001202", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T20:35:02.000Z" - }, - { - "title": "South Africa presents case to the ICJ accusing Israel of genocide in Gaza", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/11/south-africa-presents-case-to-the-icj-accusing-israel-of-genocide-in-gaza?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 20:20:27 +0000", - "content": "South Africa presents case to the ICJ accusing Israel of genocide in Gaza ", - "contentSnippet": "South Africa presents case to the ICJ accusing Israel of genocide in Gaza", - "guid": "https://www.aljazeera.com/?t=1705004206", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-11T20:20:27.000Z" - }, - { - "title": "Photos: Greek students protest government plan for private universities", - "link": "https://www.aljazeera.com/gallery/2024/1/11/photos-greek-students-protest-government-plan-for-private-universities?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 19:42:48 +0000", - "content": "Government expected to submit a bill to parliament that would permit private universities to operate inside Greece.", - "contentSnippet": "Government expected to submit a bill to parliament that would permit private universities to operate inside Greece.", - "guid": "https://www.aljazeera.com/?t=1704985635", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T19:42:48.000Z" - }, - { - "title": "What plans does Washington have for Gaza?", - "link": "https://www.aljazeera.com/program/inside-story/2024/1/11/what-plans-does-washington-have-for-gaza?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 18:52:35 +0000", - "content": "In yet another Middle East visit, the US secretary of state has been rallying support from regional players.", - "contentSnippet": "In yet another Middle East visit, the US secretary of state has been rallying support from regional players.", - "guid": "https://www.aljazeera.com/?t=1704997203", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T18:52:35.000Z" - }, - { - "title": "Fears simmer in Essequibo region as Venezuela eyes the disputed territory", - "link": "https://www.aljazeera.com/news/2024/1/11/fears-simmer-in-essequibo-region-as-venezuela-eyes-the-disputed-territory?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 18:49:19 +0000", - "content": "Essequibo residents express anxiety as Venezuela advances its claims over the region, largely seen as part of Guyana.", - "contentSnippet": "Essequibo residents express anxiety as Venezuela advances its claims over the region, largely seen as part of Guyana.", - "guid": "https://www.aljazeera.com/?t=1704990807", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T18:49:19.000Z" - }, - { - "title": "Photos: The female marines Japan is training for war", - "link": "https://www.aljazeera.com/gallery/2024/1/11/photos-the-female-marines-japan-is-training-for-war?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 18:39:33 +0000", - "content": "Japan's first marine unit since World War II is an elite force. But the 2,400-person unit only includes about 40 women.", - "contentSnippet": "Japan's first marine unit since World War II is an elite force. But the 2,400-person unit only includes about 40 women.", - "guid": "https://www.aljazeera.com/?t=1704982951", - "categories": [ - "Gallery" - ], - "isoDate": "2024-01-11T18:39:33.000Z" - }, - { - "title": "UN \u2018concerned\u2019 Taliban detaining Afghan women for dress code violations", - "link": "https://www.aljazeera.com/news/2024/1/11/un-concerned-taliban-detaining-afghan-women-for-dress-code-violations?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 18:07:31 +0000", - "content": "Taliban chief spokesman Zabihullah Mujahid says the UN preoccupation with Afghan women is unwarranted.", - "contentSnippet": "Taliban chief spokesman Zabihullah Mujahid says the UN preoccupation with Afghan women is unwarranted.", - "guid": "https://www.aljazeera.com/?t=1704989131", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T18:07:31.000Z" - }, - { - "title": "Any US attack on Yemen\u2019s Houthis will \u2018not go without response\u2019", - "link": "https://www.aljazeera.com/news/2024/1/11/any-us-attack-on-yemens-houthis-will-not-go-without?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 17:17:41 +0000", - "content": "Houthi leader says any US attack will trigger a greater response as the group steps up attacks in the Red Sea.", - "contentSnippet": "Houthi leader says any US attack will trigger a greater response as the group steps up attacks in the Red Sea.", - "guid": "https://www.aljazeera.com/?t=1704988999", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T17:17:41.000Z" - }, - { - "title": "Lebanon and Israel \u2018prefer\u2019 diplomatic end to tensions, US envoy says", - "link": "https://www.aljazeera.com/news/2024/1/11/lebanon-and-israel-prefer-diplomatic-end-to-tensions-us-envoy-says?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 17:13:59 +0000", - "content": "Hezbollah and Israel have been engaged in cross-border attacks since the early days of the war on Gaza.", - "contentSnippet": "Hezbollah and Israel have been engaged in cross-border attacks since the early days of the war on Gaza.", - "guid": "https://www.aljazeera.com/?t=1704989485", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T17:13:59.000Z" - }, - { - "title": "Day one of the ICJ genocide hearing against Israel: Key takeaways", - "link": "https://www.aljazeera.com/news/2024/1/11/day-one-of-the-icj-genocide-hearing-against-israel-key-takeaways?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 17:01:16 +0000", - "content": "South Africa laid out a list of alleged genocidal acts by Israel while seeking an injunction against the war.", - "contentSnippet": "South Africa laid out a list of alleged genocidal acts by Israel while seeking an injunction against the war.", - "guid": "https://www.aljazeera.com/?t=1704981932", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T17:01:16.000Z" - }, - { - "title": "Blinken says path to a Palestinian state can stabilise region, isolate Iran", - "link": "https://www.aljazeera.com/news/2024/1/11/blinken-says-path-to-a-palestinian-state-can-stabilise-region-isolate-iran?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 16:47:26 +0000", - "content": "Top US diplomat stresses the need for a path to Palesitnian statehood as he ends latest visit to the Middle East.", - "contentSnippet": "Top US diplomat stresses the need for a path to Palesitnian statehood as he ends latest visit to the Middle East.", - "guid": "https://www.aljazeera.com/?t=1704988550", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T16:47:26.000Z" - }, - { - "title": "How did a UN helicopter fall into al-Shabab\u2019s hands in Somalia?", - "link": "https://www.aljazeera.com/news/2024/1/11/how-did-a-un-helicopter-fall-into-al-shababs-hands-in-somalia-2?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 15:31:40 +0000", - "content": "Despite a government offensive against the armed group, al-Shabab shows its capacity for high-level attacks.", - "contentSnippet": "Despite a government offensive against the armed group, al-Shabab shows its capacity for high-level attacks.", - "guid": "https://www.aljazeera.com/?t=1704980308", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T15:31:40.000Z" - }, - { - "title": "ICJ hears South Africa\u2019s genocide case against Israel over Gaza war", - "link": "https://www.aljazeera.com/news/2024/1/11/icj-hears-south-africas-genocide-case-against-israel-over-gaza-war?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 14:54:51 +0000", - "content": "South Africa accuses Israel of violating UN's 1948 Genocide Convention, established in the Holocaust's wake.", - "contentSnippet": "South Africa accuses Israel of violating UN's 1948 Genocide Convention, established in the Holocaust's wake.", - "guid": "https://www.aljazeera.com/?t=1704970512", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T14:54:51.000Z" - }, - { - "title": "Three key takeaways from Donald Trump\u2019s Iowa town hall", - "link": "https://www.aljazeera.com/news/2024/1/11/three-key-takeaways-from-donald-trumps-iowa-town-hall?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 13:59:37 +0000", - "content": "The former president and 2024 contender suggested he might have decided on his vice presidential pick. ", - "contentSnippet": "The former president and 2024 contender suggested he might have decided on his vice presidential pick.", - "guid": "https://www.aljazeera.com/?t=1704968109", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T13:59:37.000Z" - }, - { - "title": "Protests as UN top court hears genocide case against Israel over Gaza war", - "link": "https://www.aljazeera.com/gallery/2024/1/11/protests-as-un-top-court-hears-genocide-case-against-israel-over-gaza-war?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 13:56:08 +0000", - "content": "In ICJ case brought to The Hague, South Africa accuses Israel of committing genocide and demands end to offensive. ", - "contentSnippet": "In ICJ case brought to The Hague, South Africa accuses Israel of committing genocide and demands end to offensive.", - "guid": "https://www.aljazeera.com/?t=1704971243", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T13:56:08.000Z" - }, - { - "title": "Russia doubles down on fast, cheap, unguided bombs to attack Ukraine", - "link": "https://www.aljazeera.com/news/2024/1/11/russia-doubles-down-on-fast-cheap-unguided-bombs-to-strike-ukraine?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 13:50:02 +0000", - "content": "Russia produces more ballistic missiles, glide bombs and drones as Ukraine targets Russian military hubs from afar.", - "contentSnippet": "Russia produces more ballistic missiles, glide bombs and drones as Ukraine targets Russian military hubs from afar.", - "guid": "https://www.aljazeera.com/?t=1704968951", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T13:50:02.000Z" - }, - { - "title": "Comoros President Assoumani seeks fourth term in January 13 election", - "link": "https://www.aljazeera.com/news/2024/1/11/comoros-president-assoumani-seeks-fourth-term-in-january-13-election?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 13:33:06 +0000", - "content": "Azali Assoumani, 65, will face five competitors in Sunday's election.", - "contentSnippet": "Azali Assoumani, 65, will face five competitors in Sunday's election.", - "guid": "https://www.aljazeera.com/?t=1704973464", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T13:33:06.000Z" - }, - { - "title": "Iran seizes oil tanker off Oman in dispute with US", - "link": "https://www.aljazeera.com/news/2024/1/11/iran-navy-says-seized-oil-tanker-off-oman-state-media-2?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 13:24:59 +0000", - "content": "The state-run IRNA news agency published a story acknowledging the seizure of an oil tanker by Iran's navy.", - "contentSnippet": "The state-run IRNA news agency published a story acknowledging the seizure of an oil tanker by Iran's navy.", - "guid": "https://www.aljazeera.com/?t=1704979335", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T13:24:59.000Z" - }, - { - "title": "French historian: Israel destroyed 4,000-year-old culture in Gaza", - "link": "https://www.aljazeera.com/program/the-bottom-line/2024/1/11/french-historian-israel-destroyed-4000-year-old-culture-in-gaza?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 13:20:40 +0000", - "content": "French historian Jean-Pierre Filiu says Gaza\u2019s rich civilization has endured centuries of wars, but not Israel\u2019s war.", - "contentSnippet": "French historian Jean-Pierre Filiu says Gaza\u2019s rich civilization has endured centuries of wars, but not Israel\u2019s war.", - "guid": "https://www.aljazeera.com/?t=1704976846", - "categories": [ - "TV Shows" - ], - "isoDate": "2024-01-11T13:20:40.000Z" - }, - { - "title": "\u2018Hold Israel accountable\u2019: South Africans rally behind Gaza amid ICJ case", - "link": "https://www.aljazeera.com/features/2024/1/11/hold-israel-accountable-south-africans-rally-behind-gaza-amid-icj-case?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 13:01:07 +0000", - "content": "As their government takes Israel to The Hague on genocide allegations, South Africans are standing by Palestine.", - "contentSnippet": "As their government takes Israel to The Hague on genocide allegations, South Africans are standing by Palestine.", - "guid": "https://www.aljazeera.com/?t=1704962955", - "categories": [ - "Features" - ], - "isoDate": "2024-01-11T13:01:07.000Z" - }, - { - "title": "Finland extends border closure with Russia until February 11", - "link": "https://www.aljazeera.com/news/2024/1/11/finland-extends-border-closure-with-russia-until-february-11?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 12:59:40 +0000", - "content": "Finland accuses Russia of encouraging asylum seekers to cross their shared frontier.", - "contentSnippet": "Finland accuses Russia of encouraging asylum seekers to cross their shared frontier.", - "guid": "https://www.aljazeera.com/?t=1704974730", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T12:59:40.000Z" - }, - { - "title": "Protesters outside ICJ hearing demand Israel is held accountable", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/11/protesters-outside-icj-hearing-demand-israel-is-held-accountable?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 12:56:40 +0000", - "content": "Pro-Palestine protesters have gathered to support South Africa\u2019s case accusing Israel of genocide in Gaza. ", - "contentSnippet": "Pro-Palestine protesters have gathered to support South Africa\u2019s case accusing Israel of genocide in Gaza.", - "guid": "https://www.aljazeera.com/?t=1704977500", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-11T12:56:40.000Z" - }, - { - "title": "Aharon Barak and Israel\u2019s legal illegality", - "link": "https://www.aljazeera.com/opinions/2024/1/11/aharon-barak-and-israels-legal-illegality?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 12:39:08 +0000", - "content": "Israel\u2019s ad hoc judge at the ICJ genocide hearing has a long\u00a0track record of circumventing international legal norms.", - "contentSnippet": "Israel\u2019s ad hoc judge at the ICJ genocide hearing has a long\u00a0track record of circumventing international legal norms.", - "guid": "https://www.aljazeera.com/?t=1704973238", - "categories": [ - "Opinions" - ], - "isoDate": "2024-01-11T12:39:08.000Z" - }, - { - "title": "NATO allies Turkey, Romania, Bulgaria sign deal to clear Black Sea mines", - "link": "https://www.aljazeera.com/news/2024/1/11/nato-allies-turkey-romania-bulgaria-sign-deal-to-clear-black-sea-mines?traffic_source=rss", - "pubDate": "Thu, 11 Jan 2024 12:32:29 +0000", - "content": "Initiative limited to three nations aims to make shipping safer, including for vessels transporting grain from Ukraine.", - "contentSnippet": "Initiative limited to three nations aims to make shipping safer, including for vessels transporting grain from Ukraine.", - "guid": "https://www.aljazeera.com/?t=1704974275", - "categories": [ - "News" - ], - "isoDate": "2024-01-11T12:32:29.000Z" - }, - { - "title": "Ukraine\u2019s harsh winter a memory but new Russian tactics sow destruction", - "link": "https://www.aljazeera.com/news/2024/1/18/ukraine-winter-shelling?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 12:09:41 +0000", - "content": "Ukraine's latest winter hardly resembles the cold season of 2022 beset by blackouts, but Russian attacks persist.", - "contentSnippet": "Ukraine's latest winter hardly resembles the cold season of 2022 beset by blackouts, but Russian attacks persist.", - "guid": "https://www.aljazeera.com/?t=1705570147", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T12:09:41.000Z" - }, - { - "title": "Russia\u2019s Lavrov rejects US proposal to resume nuclear arms talks", - "link": "https://www.aljazeera.com/news/2024/1/18/russias-lavrov-rejects-us-proposal-to-resume-nuclear-arms-talks?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 11:56:12 +0000", - "content": "The foreign minister also warned that Ukraine must end its push to join NATO before any peace discussions can proceed.", - "contentSnippet": "The foreign minister also warned that Ukraine must end its push to join NATO before any peace discussions can proceed.", - "guid": "https://www.aljazeera.com/?t=1705570509", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T11:56:12.000Z" - }, - { - "title": "Mental trauma in a warzone: Why Ukraine needs therapists", - "link": "https://www.aljazeera.com/program/mindset/2024/1/18/mental-trauma-in-a-warzone-why-ukraine-needs-therapists?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 11:30:41 +0000", - "content": "Mindset meets the Ukrainian therapists fighting to keep a population sane in a country at war.", - "contentSnippet": "Mindset meets the Ukrainian therapists fighting to keep a population sane in a country at war.", - "guid": "https://www.aljazeera.com/?t=1705497578", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-18T11:30:41.000Z" - }, - { - "title": "Palestinian Red Crescent reveals destruction at Gaza City hospital", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/18/palestinian-red-crescent-reveals-destruction-at-gaza-city-hospital?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 11:27:53 +0000", - "content": "Workers with the Palestinian Red Crescent have documented the destruction left by Israeli attacks on a hospital in Gaza.", - "contentSnippet": "Workers with the Palestinian Red Crescent have documented the destruction left by Israeli attacks on a hospital in Gaza.", - "guid": "https://www.aljazeera.com/?t=1705573389", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-18T11:27:53.000Z" - }, - { - "title": "Why does the US act as Israel\u2019s lawyer?", - "link": "https://www.aljazeera.com/program/the-bottom-line/2024/1/18/why-does-the-us-act-as-israels-lawyer?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 11:01:41 +0000", - "content": "Former US diplomat Aaron David Miller says prospects for \u2018conflict-ending solution\u2019 have entered \u2018a long, dark tunnel'.", - "contentSnippet": "Former US diplomat Aaron David Miller says prospects for \u2018conflict-ending solution\u2019 have entered \u2018a long, dark tunnel'.", - "guid": "https://www.aljazeera.com/?t=1705494300", - "categories": [ - "TV Shows" - ], - "isoDate": "2024-01-18T11:01:41.000Z" - }, - { - "title": "Somalia rejects mediation with Ethiopia gov\u2019t over Somaliland port deal", - "link": "https://www.aljazeera.com/news/2024/1/18/somalia-rejects-mediation-with-ethiopia-govt-over-somaliland-port-deal?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 10:46:50 +0000", - "content": "The Ethiopia-Somalia feud continues with Mogadishu claiming its territorial integrity has been violated by the deal.", - "contentSnippet": "The Ethiopia-Somalia feud continues with Mogadishu claiming its territorial integrity has been violated by the deal.", - "guid": "https://www.aljazeera.com/?t=1705570984", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T10:46:50.000Z" - }, - { - "title": "Maghazi residents left reeling after Israeli forces withdraw", - "link": "https://www.aljazeera.com/gallery/2024/1/18/maghazi-residents-left-reeling-after-israeli-forces-withdraw?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 09:33:56 +0000", - "content": "Palestinians in central Gaza refugee camp struggle to pull their loved ones from under the rubble amid mass destruction.", - "contentSnippet": "Palestinians in central Gaza refugee camp struggle to pull their loved ones from under the rubble amid mass destruction.", - "guid": "https://www.aljazeera.com/?t=1705414837", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T09:33:56.000Z" - }, - { - "title": "Comoros announces curfew after president\u2019s fourth-term win sparks protests", - "link": "https://www.aljazeera.com/news/2024/1/18/comoros-announces-curfew-after-presidents-fourth-term-win-sparks-protests?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 09:26:51 +0000", - "content": "Assoumani, an ex-military officer whose opponents accuse him of muzzling dissent, first came to power in a 1999 coup.", - "contentSnippet": "Assoumani, an ex-military officer whose opponents accuse him of muzzling dissent, first came to power in a 1999 coup.", - "guid": "https://www.aljazeera.com/?t=1705563919", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T09:26:51.000Z" - }, - { - "title": "Ecuador prosecutor investigating gang attack on TV studio shot dead", - "link": "https://www.aljazeera.com/news/2024/1/18/ecuador-prosecutor-investigating-gang-attack-on-tv-studio-shot-dead?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 09:22:29 +0000", - "content": "Public prosecutor Cesar Suarez was investigating a number of recent high-profile cases of drug-related violent attacks.", - "contentSnippet": "Public prosecutor Cesar Suarez was investigating a number of recent high-profile cases of drug-related violent attacks.", - "guid": "https://www.aljazeera.com/?t=1705563146", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T09:22:29.000Z" - }, - { - "title": "What is Disease X and how will pandemic preparations help the world?", - "link": "https://www.aljazeera.com/news/2024/1/18/what-is-disease-x-and-how-will-pandemic-preparations-help-the-world?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 09:06:49 +0000", - "content": "WHO chief Tedros joined world leaders at the Davos summit to discuss strategies for the next potential pandemic.", - "contentSnippet": "WHO chief Tedros joined world leaders at the Davos summit to discuss strategies for the next potential pandemic.", - "guid": "https://www.aljazeera.com/?t=1705485497", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T09:06:49.000Z" - }, - { - "title": "Aid for Israeli captives, Palestinians reaches Gaza despite challenges", - "link": "https://www.aljazeera.com/news/2024/1/18/aid-for-israeli-captives-palestinians-reaches-gaza-despite-challenges?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 08:39:43 +0000", - "content": "Shipment of medical supplies, other aid set to be distributed as part of a deal brokered by Qatar and France.", - "contentSnippet": "Shipment of medical supplies, other aid set to be distributed as part of a deal brokered by Qatar and France.", - "guid": "https://www.aljazeera.com/?t=1705558847", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T08:39:43.000Z" - }, - { - "title": "Israel\u2019s war on Gaza: List of key events, day 104", - "link": "https://www.aljazeera.com/news/2024/1/18/israels-war-on-gaza-list-of-key-events-day-104?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 07:41:37 +0000", - "content": "Medical aid enters Gaza while deadly Israeli strikes continue on the south of the enclave.", - "contentSnippet": "Medical aid enters Gaza while deadly Israeli strikes continue on the south of the enclave.", - "guid": "https://www.aljazeera.com/?t=1705554709", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T07:41:37.000Z" - }, - { - "title": "US launches new strikes on Houthi targets in Yemen", - "link": "https://www.aljazeera.com/news/2024/1/18/us-launches-new-strikes-on-houthi-targets-in-yemen?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 07:16:15 +0000", - "content": "On fourth day of strikes, US military says it targeted 14 Houthi missiles that were 'loaded to be fired' from Yemen.", - "contentSnippet": "On fourth day of strikes, US military says it targeted 14 Houthi missiles that were 'loaded to be fired' from Yemen.", - "guid": "https://www.aljazeera.com/?t=1705494372", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T07:16:15.000Z" - }, - { - "title": "Pakistan attacks \u2018terrorist hideouts\u2019 in Iran", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/18/pakistan-attacks-terrorist-hideouts-in-iran?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 06:43:20 +0000", - "content": "Pakistan has launched retaliatory strikes on Iran, allegedly targeting 'terrorist hideouts' in Sistan-Baluchestan.", - "contentSnippet": "Pakistan has launched retaliatory strikes on Iran, allegedly targeting 'terrorist hideouts' in Sistan-Baluchestan.", - "guid": "https://www.aljazeera.com/?t=1705559415", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-18T06:43:20.000Z" - }, - { - "title": "Pakistan launches military strikes on Iran in response to bombing", - "link": "https://www.aljazeera.com/news/2024/1/18/pakistan-launches-precise-military-strikes-on-iran-in-response-to-bombing?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 05:39:51 +0000", - "content": "Islamabad says it targeted hideouts of armed groups in Iran in a series of attacks, a day after Iran struck Pakistan. ", - "contentSnippet": "Islamabad says it targeted hideouts of armed groups in Iran in a series of attacks, a day after Iran struck Pakistan.", - "guid": "https://www.aljazeera.com/?t=1705554858", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T05:39:51.000Z" - }, - { - "title": "As PM, India\u2019s Modi secretly tried to massively cut state funds", - "link": "https://www.aljazeera.com/economy/2024/1/18/as-pm-indias-modi-secretly-tried-to-massively-cut-state-funds?traffic_source=rss", - "pubDate": "Thu, 18 Jan 2024 02:28:50 +0000", - "content": "Revelation came from a top gov't official who also said budgets have 'layers and layers of attempt to cover the truth'.\r\n", - "contentSnippet": "Revelation came from a top gov't official who also said budgets have 'layers and layers of attempt to cover the truth'.", - "guid": "https://www.aljazeera.com/?t=1705347532", - "categories": [ - "News" - ], - "isoDate": "2024-01-18T02:28:50.000Z" - }, - { - "title": "Biden \u2018playing with fire\u2019 by re-designating Yemen\u2019s Houthis as \u2018terrorists\u2019", - "link": "https://www.aljazeera.com/news/2024/1/17/biden-playing-with-fire-by-redesignating-yemens-houthis-as-terrorists?traffic_source=rss", - "pubDate": "Wed, 17 Jan 2024 22:09:59 +0000", - "content": "Advocates say labelling Houthis a 'global terrorist group' risks worsening already dire humanitarian crisis in Yemen.", - "contentSnippet": "Advocates say labelling Houthis a 'global terrorist group' risks worsening already dire humanitarian crisis in Yemen.", - "guid": "https://www.aljazeera.com/?t=1705511429", - "categories": [ - "News" - ], - "isoDate": "2024-01-17T22:09:59.000Z" - }, - { - "title": "Protests erupt in Tunisian town as search continues for 37 missing migrants", - "link": "https://www.aljazeera.com/news/2024/1/17/protests-erupt-in-tunisian-town-as-search-continues-for-37-missing-migrants?traffic_source=rss", - "pubDate": "Wed, 17 Jan 2024 20:38:06 +0000", - "content": "Residents in the town of El Hancha are waiting to hear news of loved ones who disappeared crossing the Mediterranean.", - "contentSnippet": "Residents in the town of El Hancha are waiting to hear news of loved ones who disappeared crossing the Mediterranean.", - "guid": "https://www.aljazeera.com/?t=1705518846", - "categories": [ - "News" - ], - "isoDate": "2024-01-17T20:38:06.000Z" - }, - { - "title": "What\u2019s behind North Korea\u2019s shock change of policy towards the South?", - "link": "https://www.aljazeera.com/program/inside-story/2024/1/17/whats-behind-north-koreas-shock-change-of-policy-towards-the-south?traffic_source=rss", - "pubDate": "Wed, 17 Jan 2024 20:22:49 +0000", - "content": "Pyongyang announces it is scrapping its long-term aim of reunification with South Korea.", - "contentSnippet": "Pyongyang announces it is scrapping its long-term aim of reunification with South Korea.", - "guid": "https://www.aljazeera.com/?t=1705521685", - "categories": [ - "News" - ], - "isoDate": "2024-01-17T20:22:49.000Z" - }, - { - "title": "Israel ramps up attacks on Khan Younis as aid for Gaza arrives in Egypt", - "link": "https://www.aljazeera.com/news/2024/1/17/israel-ramps-up-attacks-on-khan-younis-as-aid-for-gaza-arrives-in-egypt?traffic_source=rss", - "pubDate": "Wed, 17 Jan 2024 20:07:33 +0000", - "content": "Palestinian officials say seven people were killed by Israeli air raids that damaged homes near Nasser Hospital.", - "contentSnippet": "Palestinian officials say seven people were killed by Israeli air raids that damaged homes near Nasser Hospital.", - "guid": "https://www.aljazeera.com/?t=1705517477", - "categories": [ - "News" - ], - "isoDate": "2024-01-17T20:07:33.000Z" - }, - { - "title": "Sierra Leone court allows ex-President Koroma to go abroad for medical care", - "link": "https://www.aljazeera.com/news/2024/1/17/sierra-leone-court-allows-ex-president-koroma-to-go-abroad-for-medical-care?traffic_source=rss", - "pubDate": "Wed, 17 Jan 2024 19:57:16 +0000", - "content": "The former leader is charged with treason for his alleged role in a failed coup in November.", - "contentSnippet": "The former leader is charged with treason for his alleged role in a failed coup in November.", - "guid": "https://www.aljazeera.com/?t=1705512744", - "categories": [ - "News" - ], - "isoDate": "2024-01-17T19:57:16.000Z" - }, - { - "title": "Favourites Morocco beat Tanzania 3-0 to open AFCON 2023 campaign", - "link": "https://www.aljazeera.com/sports/2024/1/17/morocco-vs-tanzania-afcon-2023-achraf-hakimi-neysri?traffic_source=rss", - "pubDate": "Wed, 17 Jan 2024 19:41:22 +0000", - "content": "Goals from Romain Saiss, Azzedine Ounahi and Youssef En-Nesyri see Morocco cruise past 10-man Tanzania.", - "contentSnippet": "Goals from Romain Saiss, Azzedine Ounahi and Youssef En-Nesyri see Morocco cruise past 10-man Tanzania.", - "guid": "https://www.aljazeera.com/?t=1705518984", - "categories": [ - "Sports" - ], - "isoDate": "2024-01-17T19:41:22.000Z" - }, - { - "title": "Palestinians\u2019 tents in Gaza offer no shelter from Israeli bombardment", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/17/palestinians-tents-in-gaza-offer-no-shelter-from-israeli-bombardment?traffic_source=rss", - "pubDate": "Wed, 17 Jan 2024 17:59:36 +0000", - "content": "A Palestinian father recalls an Israeli attack on his family\u2019s tent in central Gaza that killed three of his children.", - "contentSnippet": "A Palestinian father recalls an Israeli attack on his family\u2019s tent in central Gaza that killed three of his children.", - "guid": "https://www.aljazeera.com/?t=1705514107", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-17T17:59:36.000Z" - }, - { - "title": "Violent protests over jailing of activist in Russia\u2019s Bashkortostan", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/17/violent-protests-over-jailing-of-activist-in-russias-bashkortostan?traffic_source=rss", - "pubDate": "Wed, 17 Jan 2024 17:33:39 +0000", - "content": "Police and protesters clash over jail sentence for Russian activist Fail Alsynov ", - "contentSnippet": "Police and protesters clash over jail sentence for Russian activist Fail Alsynov", - "guid": "https://www.aljazeera.com/?t=1705512580", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-17T17:33:39.000Z" - }, - { - "title": "Guinness World Records reviews evidence related to \u2018oldest dog\u2019 title", - "link": "https://www.aljazeera.com/news/2024/1/17/guinness-world-records-reviews-evidence-related-to-oldest-dog-title?traffic_source=rss", - "pubDate": "Wed, 17 Jan 2024 17:20:57 +0000", - "content": "GWR originally said the canine lived for 31 years and 165 days, breaking a record held since 1939.", - "contentSnippet": "GWR originally said the canine lived for 31 years and 165 days, breaking a record held since 1939.", - "guid": "https://www.aljazeera.com/?t=1705509596", - "categories": [ - "News" - ], - "isoDate": "2024-01-17T17:20:57.000Z" - }, - { - "title": "Israeli minister says only a deal can free captives as rifts split cabinet", - "link": "https://www.aljazeera.com/news/2024/1/19/israeli-minister-says-only-a-deal-can-free-captives-as-rifts-split-cabinet?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 15:24:08 +0000", - "content": "Gadi Eizenkot's comments come amid disagreement in the war cabinet about how to handle the war in Gaza. ", - "contentSnippet": "Gadi Eizenkot's comments come amid disagreement in the war cabinet about how to handle the war in Gaza.", - "guid": "https://www.aljazeera.com/?t=1705672565", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T15:24:08.000Z" - }, - { - "title": "It\u2019s high time for all those at Harvard to stand with Palestine", - "link": "https://www.aljazeera.com/opinions/2024/1/19/its-high-time-for-all-those-at-harvard-to-stand-with-palestine?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 14:51:22 +0000", - "content": "The university must end its complicity in genocide, and protect students standing with the oppressed. ", - "contentSnippet": "The university must end its complicity in genocide, and protect students standing with the oppressed.", - "guid": "https://www.aljazeera.com/?t=1705559157", - "categories": [ - "Opinions" - ], - "isoDate": "2024-01-19T14:51:22.000Z" - }, - { - "title": "Christian Zionist cowboys: American and Israeli affinities laid bare", - "link": "https://www.aljazeera.com/opinions/2024/1/19/christian-zionist-cowboys-american-and-israeli-affinities-laid-bare?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 14:00:13 +0000", - "content": "The American cowboys flocking to Israel amid its war on Gaza expose the parallels between the two settler societies.", - "contentSnippet": "The American cowboys flocking to Israel amid its war on Gaza expose the parallels between the two settler societies.", - "guid": "https://www.aljazeera.com/?t=1705654837", - "categories": [ - "Opinions" - ], - "isoDate": "2024-01-19T14:00:13.000Z" - }, - { - "title": "Non-Aligned Movement criticises Israel\u2019s war on Gaza at Kampala summit", - "link": "https://www.aljazeera.com/news/2024/1/19/non-aligned-movement-criticises-israeli-war-in-gaza-at-kampala-summit?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 14:00:08 +0000", - "content": "Foreign ministers within the 120-member bloc have adopted a resolution at the summit, calling for a ceasefire in Gaza..", - "contentSnippet": "Foreign ministers within the 120-member bloc have adopted a resolution at the summit, calling for a ceasefire in Gaza..", - "guid": "https://www.aljazeera.com/?t=1705662038", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T14:00:08.000Z" - }, - { - "title": "Gaza\u2019s morning ritual: Searching under rubble for dolls, books, loved ones", - "link": "https://www.aljazeera.com/features/2024/1/19/the-scale-of-destruction-is-unimaginable?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 13:48:42 +0000", - "content": "From Gaza, Al Jazeera's Mohammed R Mhawish looks back on more than 100 days of carnage.", - "contentSnippet": "From Gaza, Al Jazeera's Mohammed R Mhawish looks back on more than 100 days of carnage.", - "guid": "https://www.aljazeera.com/?t=1705480802", - "categories": [ - "Features" - ], - "isoDate": "2024-01-19T13:48:42.000Z" - }, - { - "title": "UN says Palestinians detained by Israeli forces humiliated, beaten", - "link": "https://www.aljazeera.com/news/2024/1/19/un-says-palestinians-detained-by-israeli-forces-humiliated-beaten?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 13:22:47 +0000", - "content": "Rights official says Palestinian men detained by Israeli security forces in unknown locations for between 30 to 55 days.", - "contentSnippet": "Rights official says Palestinian men detained by Israeli security forces in unknown locations for between 30 to 55 days.", - "guid": "https://www.aljazeera.com/?t=1705662659", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T13:22:47.000Z" - }, - { - "title": "Why isn\u2019t the world keeping #EyesOnSudan?", - "link": "https://www.aljazeera.com/program/the-stream/2024/1/19/why-isnt-the-world-keeping-eyesonsudan?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 13:00:08 +0000", - "content": "The Sudanese youth are again at the forefront of organising online and offline as the country is being ravaged by war.", - "contentSnippet": "The Sudanese youth are again at the forefront of organising online and offline as the country is being ravaged by war.", - "guid": "https://www.aljazeera.com/?t=1705491344", - "categories": [ - "TV Shows" - ], - "isoDate": "2024-01-19T13:00:08.000Z" - }, - { - "title": "People are getting sick because of Israel\u2019s war on Gaza", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/19/people-are-getting-sick-because-of-israels-war-on-gaza?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 12:39:26 +0000", - "content": "Doctors in Gaza are warning that diseases like Hepatitis-A are rapidly on the rise.", - "contentSnippet": "Doctors in Gaza are warning that diseases like Hepatitis-A are rapidly on the rise.", - "guid": "https://www.aljazeera.com/?t=1705667524", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-19T12:39:26.000Z" - }, - { - "title": "Palestinians in Ukraine decry \u2018double standard\u2019 as Kyiv supports Israel", - "link": "https://www.aljazeera.com/news/2024/1/19/palestinians-in-ukraine-decry-double-standard-as-kyiv-supports-israel?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 12:10:56 +0000", - "content": "Ukraine has supported Israel throughout the latest conflict, upsetting Palestinians as war ravages Gaza.", - "contentSnippet": "Ukraine has supported Israel throughout the latest conflict, upsetting Palestinians as war ravages Gaza.", - "guid": "https://www.aljazeera.com/?t=1702290179", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T12:10:56.000Z" - }, - { - "title": "$900 fine for a delivery rider\u2019s death: Do couriers have any rights?", - "link": "https://www.aljazeera.com/features/2024/1/19/900-fine-for-a-delivery-riders-death-do-couriers-have-any-rights?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 11:38:22 +0000", - "content": "The death of a Turkish delivery courier has brought into focus the conditions under which riders work. ", - "contentSnippet": "The death of a Turkish delivery courier has brought into focus the conditions under which riders work.", - "guid": "https://www.aljazeera.com/?t=1705497659", - "categories": [ - "Features" - ], - "isoDate": "2024-01-19T11:38:22.000Z" - }, - { - "title": "Japan counts down to \u2018Moon Sniper\u2019 landing on lunar surface", - "link": "https://www.aljazeera.com/news/2024/1/19/japan-counts-down-to-moon-sniper-landing-on-lunar-surface?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 10:53:58 +0000", - "content": "A successful touchdown will make Japan the fifth country ever to put a spacecraft on the moon.", - "contentSnippet": "A successful touchdown will make Japan the fifth country ever to put a spacecraft on the moon.", - "guid": "https://www.aljazeera.com/?t=1705648903", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T10:53:58.000Z" - }, - { - "title": "Why has the Maori king of New Zealand called a national meeting?", - "link": "https://www.aljazeera.com/news/2024/1/19/why-has-the-maori-king-of-new-zealand-called-a-national-meeting?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 10:34:53 +0000", - "content": "The gathering will discuss how Maori rights can be protected by upholding their interpretation of Treaty of Waitangi.", - "contentSnippet": "The gathering will discuss how Maori rights can be protected by upholding their interpretation of Treaty of Waitangi.", - "guid": "https://www.aljazeera.com/?t=1705646839", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T10:34:53.000Z" - }, - { - "title": "Palestinians welcome Chile and Mexico\u2019s call for ICC probe into Gaza war", - "link": "https://www.aljazeera.com/news/2024/1/19/palestinians-welcome-chile-and-mexico-call-for-icc-probe-into-gaza-war?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 10:02:13 +0000", - "content": "Two countries express 'growing worry' over 'escalation of violence' in International Criminal Court referral.", - "contentSnippet": "Two countries express 'growing worry' over 'escalation of violence' in International Criminal Court referral.", - "guid": "https://www.aljazeera.com/?t=1705653762", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T10:02:13.000Z" - }, - { - "title": "\u2018Credibility at stake\u2019: Why did Iran strike inside Pakistan amid Gaza war?", - "link": "https://www.aljazeera.com/news/2024/1/19/credibility-at-stake-why-did-iran-bomb-pakistan-amid-gaza-war?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 09:51:01 +0000", - "content": "Tehran\u2019s attacks on Pakistani, Iraqi and Syrian land have only one thing in common, say analysts: a show of strength. ", - "contentSnippet": "Tehran\u2019s attacks on Pakistani, Iraqi and Syrian land have only one thing in common, say analysts: a show of strength.", - "guid": "https://www.aljazeera.com/?t=1705647823", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T09:51:01.000Z" - }, - { - "title": "Is time running out for Egypt\u2019s Salah to win AFCON in Messi moment?", - "link": "https://www.aljazeera.com/features/2024/1/19/is-time-running-out-for-egypts-salah-to-win-afcon-in-messi-moment?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 09:38:06 +0000", - "content": "The Egyptian footballing great is on a continuing quest to win one piece of silverware missing in a stellar career.", - "contentSnippet": "The Egyptian footballing great is on a continuing quest to win one piece of silverware missing in a stellar career.", - "guid": "https://www.aljazeera.com/?t=1705563883", - "categories": [ - "Sports" - ], - "isoDate": "2024-01-19T09:38:06.000Z" - }, - { - "title": "Soldiers raid Ecuador prison as two arrested for prosecutor\u2019s murder", - "link": "https://www.aljazeera.com/news/2024/1/19/soldiers-raid-ecuador-prison-as-two-arrested-for-prosecutors-murder?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 09:29:03 +0000", - "content": "The government's crackdown on gangs faces fierce retaliation as violence rages in the country.", - "contentSnippet": "The government's crackdown on gangs faces fierce retaliation as violence rages in the country.", - "guid": "https://www.aljazeera.com/?t=1705648814", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T09:29:03.000Z" - }, - { - "title": "\u2018It\u2019s very scary now\u2019: Fear grips Haiti\u2019s Port-au-Prince amid gang violence", - "link": "https://www.aljazeera.com/gallery/2024/1/19/fear-grips-haitis-port-au-prince-amid-gang-violence?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 09:15:06 +0000", - "content": "A key community in Haiti\u2019s capital has been under siege for days as violence escalates.", - "contentSnippet": "A key community in Haiti\u2019s capital has been under siege for days as violence escalates.", - "guid": "https://www.aljazeera.com/?t=1705650715", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T09:15:06.000Z" - }, - { - "title": "US lawmakers pass spending bill to avert government shutdown", - "link": "https://www.aljazeera.com/news/2024/1/19/us-lawmakers-pass-spending-bill-to-avert-government-shutdown?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 08:30:33 +0000", - "content": "House of Representatives also votes to keep the lights on in government facilities for at least another six weeks.", - "contentSnippet": "House of Representatives also votes to keep the lights on in government facilities for at least another six weeks.", - "guid": "https://www.aljazeera.com/?t=1705647878", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T08:30:33.000Z" - }, - { - "title": "Pakistan conducts national security review amid standoff with Iran", - "link": "https://www.aljazeera.com/news/2024/1/19/pakistan-to-conduct-national-security-review-amid-standoff-with-iran?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 08:12:12 +0000", - "content": "Meeting of top military, civilian leaders held after Pakistan's retaliatory strikes on armed groups in Iran.", - "contentSnippet": "Meeting of top military, civilian leaders held after Pakistan's retaliatory strikes on armed groups in Iran.", - "guid": "https://www.aljazeera.com/?t=1705644277", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T08:12:12.000Z" - }, - { - "title": "Israel\u2019s war on Gaza: List of key events, day 105", - "link": "https://www.aljazeera.com/news/2024/1/19/israels-war-on-gaza-list-of-key-events-day-105?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 07:59:31 +0000", - "content": "Clashes over a two-state solution and US foreign policy on Houthi strikes - here are major updates.", - "contentSnippet": "Clashes over a two-state solution and US foreign policy on Houthi strikes - here are major updates.", - "guid": "https://www.aljazeera.com/?t=1705641225", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T07:59:31.000Z" - }, - { - "title": "Netanyahu rejects Palestinian statehood", - "link": "https://www.aljazeera.com/program/newsfeed/2024/1/19/netanyahu-rejects-palestinian-statehood?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 06:48:03 +0000", - "content": "During a press conference Israeli Prime Minister Benjamin Netanyahu said that he objects to Palestinian statehood.", - "contentSnippet": "During a press conference Israeli Prime Minister Benjamin Netanyahu said that he objects to Palestinian statehood.", - "guid": "https://www.aljazeera.com/?t=1705646294", - "categories": [ - "Show Types" - ], - "isoDate": "2024-01-19T06:48:03.000Z" - }, - { - "title": "North Korea touts \u2018underwater nuclear weapons system\u2019, blasts US drills", - "link": "https://www.aljazeera.com/news/2024/1/19/north-korea-touts-underwater-nuclear-weapon-system-blasts-us-drills?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 06:40:40 +0000", - "content": "Pyongyang promises to deter 'hostile military manoeuvres' after US, South Korea and Japan conduct naval exercises.", - "contentSnippet": "Pyongyang promises to deter 'hostile military manoeuvres' after US, South Korea and Japan conduct naval exercises.", - "guid": "https://www.aljazeera.com/?t=1705642494", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T06:40:40.000Z" - }, - { - "title": "\u2018Used to be a festival\u2019: Why Pakistan is seeing a subdued election campaign", - "link": "https://www.aljazeera.com/features/2024/1/19/used-to-be-a-festival-why-pakistan-is-seeing-a-subdued-election-campaign?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 05:15:39 +0000", - "content": "Crackdown and censure on the main opposition party turns the run-up to the February 8 election into a lukewarm affair.", - "contentSnippet": "Crackdown and censure on the main opposition party turns the run-up to the February 8 election into a lukewarm affair.", - "guid": "https://www.aljazeera.com/?t=1705401359", - "categories": [ - "Features" - ], - "isoDate": "2024-01-19T05:15:39.000Z" - }, - { - "title": "\u2018Better future\u2019: India\u2019s Ayodhya sees business boom with Ram temple launch", - "link": "https://www.aljazeera.com/economy/2024/1/19/upcoming-ram-temple-is-good-for-business-in-indias-ayodhya?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 04:23:10 +0000", - "content": "Ayodhya is getting an economic boost as the city gears up for millions of tourists to see the controversial Ram temple.", - "contentSnippet": "Ayodhya is getting an economic boost as the city gears up for millions of tourists to see the controversial Ram temple.", - "guid": "https://www.aljazeera.com/?t=1705522477", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T04:23:10.000Z" - }, - { - "title": "Los Angeles Times to lay off \u2018significant\u2019 number of employees, union says", - "link": "https://www.aljazeera.com/news/2024/1/19/los-angeles-times-to-lay-off-significant-number-of-employees-union-says?traffic_source=rss", - "pubDate": "Fri, 19 Jan 2024 04:14:01 +0000", - "content": "LA Times Guild announces one-day walk-out to protest planned layoffs.", - "contentSnippet": "LA Times Guild announces one-day walk-out to protest planned layoffs.", - "guid": "https://www.aljazeera.com/?t=1705633943", - "categories": [ - "News" - ], - "isoDate": "2024-01-19T04:14:01.000Z" - }, - { - "title": "Angela Davis: \u2018Palestine is a moral litmus test for the world\u2019", - "link": "https://www.aljazeera.com/program/upfront/2023/10/27/angela-davis-palestine-is-a-moral-litmus-test-for-the-world?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 12:55:01 +0000", - "content": "Citing the late poet June Jordan, Angela Davis stresses the importance of Palestine for other social justice movements.", - "contentSnippet": "Citing the late poet June Jordan, Angela Davis stresses the importance of Palestine for other social justice movements.", - "guid": "https://www.aljazeera.com/?t=1698383004", - "categories": [ - "TV Shows" - ], - "isoDate": "2023-10-27T12:55:01.000Z" - }, - { - "title": "China\u2019s jet comes dangerously close to US bomber over South China Sea: US", - "link": "https://www.aljazeera.com/news/2023/10/27/chinas-jet-comes-dangerously-close-to-us-bomber-over-south-china-sea-us?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 12:47:26 +0000", - "content": "Beijing blames Washington for the incident that almost caused an accident as the two compete for influence in region.", - "contentSnippet": "Beijing blames Washington for the incident that almost caused an accident as the two compete for influence in region.", - "guid": "https://www.aljazeera.com/?t=1698405540", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T12:47:26.000Z" - }, - { - "title": "The double standards of free speech on Palestine", - "link": "https://www.aljazeera.com/program/upfront/2023/10/27/the-double-standards-of-free-speech-on-palestine?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 12:40:45 +0000", - "content": "As the war in Gaza continues, why is the West cracking down on free speech?", - "contentSnippet": "As the war in Gaza continues, why is the West cracking down on free speech?", - "guid": "https://www.aljazeera.com/?t=1698383310", - "categories": [ - "TV Shows" - ], - "isoDate": "2023-10-27T12:40:45.000Z" - }, - { - "title": "Australia vs New Zealand: ICC Cricket World Cup 2023 match preview", - "link": "https://www.aljazeera.com/sports/2023/10/27/australia-vs-new-zealand-icc-cricket-world-cup-2023-match-preview?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 12:35:40 +0000", - "content": "Both teams will look to bag two points in order to secure a semifinal finish at the Cricket World Cup 2023.", - "contentSnippet": "Both teams will look to bag two points in order to secure a semifinal finish at the Cricket World Cup 2023.", - "guid": "https://www.aljazeera.com/?t=1698404485", - "categories": [ - "Sports" - ], - "isoDate": "2023-10-27T12:35:40.000Z" - }, - { - "title": "The Gaza Strip: Under siege, at war", - "link": "https://www.aljazeera.com/gallery/2023/10/27/the-gaza-strip-under-siege-at-war?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 12:09:58 +0000", - "content": "Palestinians in the besieged enclave have had to endure decades of violence and oppression \u2014 and now it\u2019s even worse.", - "contentSnippet": "Palestinians in the besieged enclave have had to endure decades of violence and oppression \u2014 and now it\u2019s even worse.", - "guid": "https://www.aljazeera.com/?t=1698406517", - "categories": [ - "Gallery" - ], - "isoDate": "2023-10-27T12:09:58.000Z" - }, - { - "title": "Ethnic rebel alliance attacks military positions across northern Myanmar", - "link": "https://www.aljazeera.com/news/2023/10/27/ethnic-rebel-alliance-attacks-military-positions-across-northern-myanmar?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 12:06:22 +0000", - "content": "Rebel groups attack 12 towns in Shan state, with local media reporting a number of military casualties.", - "contentSnippet": "Rebel groups attack 12 towns in Shan state, with local media reporting a number of military casualties.", - "guid": "https://www.aljazeera.com/?t=1698403590", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T12:06:22.000Z" - }, - { - "title": "Israeli volunteers clean up kibbutz attacked by Hamas fighters on October 7", - "link": "https://www.aljazeera.com/gallery/2023/10/27/israeli-volunteers-clean-up-kibbutz-attacked-by-hamas-on-october-7?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 11:27:09 +0000", - "content": "Al Jazeera visited Holit, a kibbutz near Gaza which was attacked by Hamas fighters on October 7.", - "contentSnippet": "Al Jazeera visited Holit, a kibbutz near Gaza which was attacked by Hamas fighters on October 7.", - "guid": "https://www.aljazeera.com/?t=1698393293", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T11:27:09.000Z" - }, - { - "title": "Displaced Palestinians in overcrowded UN schools face outbreak of disease", - "link": "https://www.aljazeera.com/news/2023/10/27/displaced-palestinians-in-overcrowded-un-schools-face-outbreak-of-disease?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 11:12:11 +0000", - "content": "More than half a million displaced Palestinians are sheltering in 150 UNRWA facilities and in poor conditions.", - "contentSnippet": "More than half a million displaced Palestinians are sheltering in 150 UNRWA facilities and in poor conditions.", - "guid": "https://www.aljazeera.com/?t=1698243489", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T11:12:11.000Z" - }, - { - "title": "\u2018Solidarity with Palestine\u2019: British protesters defy threats to hit streets", - "link": "https://www.aljazeera.com/news/2023/10/27/solidarity-with-palestine-british-protesters-defy-curbs-to-hit-streets?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 10:22:57 +0000", - "content": "Activists who opposed the Iraq War are warning of lessons from 2003, as they push the UK government to seek peace. ", - "contentSnippet": "Activists who opposed the Iraq War are warning of lessons from 2003, as they push the UK government to seek peace.", - "guid": "https://www.aljazeera.com/?t=1698391297", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T10:22:57.000Z" - }, - { - "title": "Israeli forces kill four Palestinians in occupied West Bank: WAFA", - "link": "https://www.aljazeera.com/news/2023/10/27/israeli-forces-kill-four-palestinians-in-occupied-west-bank-wafa?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 10:11:36 +0000", - "content": "The Palestinian news agency says the latest deaths take the number of Palestinians killed in the territory to 110.", - "contentSnippet": "The Palestinian news agency says the latest deaths take the number of Palestinians killed in the territory to 110.", - "guid": "https://www.aljazeera.com/?t=1698396389", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T10:11:36.000Z" - }, - { - "title": "Israel conducts second ground raid into northern Gaza with air support", - "link": "https://www.aljazeera.com/news/2023/10/27/israel-conducts-second-ground-raid-into-northern-gaza-with-air-support?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 09:38:14 +0000", - "content": "The overnight incursion was backed by fighter jets and drones that hit targets in Shujaiya area, Israel's army says.", - "contentSnippet": "The overnight incursion was backed by fighter jets and drones that hit targets in Shujaiya area, Israel's army says.", - "guid": "https://www.aljazeera.com/?t=1698394890", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T09:38:14.000Z" - }, - { - "title": "US says \u2018no evidence\u2019 Israel forces targeted Al Jazeera", - "link": "https://www.aljazeera.com/program/newsfeed/2023/10/27/us-says-no-evidence-israel-forces-targeted-al-jazeera?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 09:36:37 +0000", - "content": "John Kirby has said he saw "zero evidence" that the family of an Al Jazeera journalist in Gaza were targeted by Israel.", - "contentSnippet": "John Kirby has said he saw \"zero evidence\" that the family of an Al Jazeera journalist in Gaza were targeted by Israel.", - "guid": "https://www.aljazeera.com/?t=1698399250", - "categories": [ - "Show Types" - ], - "isoDate": "2023-10-27T09:36:37.000Z" - }, - { - "title": "Will unconditional US support for Israel harm its ties with the Arab world?", - "link": "https://www.aljazeera.com/features/2023/10/27/analysis-is-the-us-approach-to-gaza-damaging-ties-with-its-arab-allies?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 09:33:00 +0000", - "content": "The US\u2019s unwavering support for Israel has exposed both double standards and strategic short-sightedness, observers say.", - "contentSnippet": "The US\u2019s unwavering support for Israel has exposed both double standards and strategic short-sightedness, observers say.", - "guid": "https://www.aljazeera.com/?t=1698333442", - "categories": [ - "Features" - ], - "isoDate": "2023-10-27T09:33:00.000Z" - }, - { - "title": "Ceasefire or pause? Words UN members can\u2019t agree on to stop Israel\u2019s bombs", - "link": "https://www.aljazeera.com/news/2023/10/27/ceasefire-or-pause-words-un-members-cant-agree-on-to-stop-israels-bombs?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 09:27:45 +0000", - "content": "A look at the terms dividing UN Security Council members in their efforts to temporarily halt fighting in Gaza. ", - "contentSnippet": "A look at the terms dividing UN Security Council members in their efforts to temporarily halt fighting in Gaza.", - "guid": "https://www.aljazeera.com/?t=1698317375", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T09:27:45.000Z" - }, - { - "title": "Hamas cannot free captives until Israel-Gaza ceasefire: Official", - "link": "https://www.aljazeera.com/news/2023/10/27/hamas-cannot-free-captives-until-israel-gaza-truce-official?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 08:29:33 +0000", - "content": "The group needs time to locate captives taken to Gaza by various Palestinian factions, a Russian newspaper is told.", - "contentSnippet": "The group needs time to locate captives taken to Gaza by various Palestinian factions, a Russian newspaper is told.", - "guid": "https://www.aljazeera.com/?t=1698389345", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T08:29:33.000Z" - }, - { - "title": "Dispatches from Ukraine\u2019s front lines: A strike devastates a village of 300", - "link": "https://www.aljazeera.com/features/2023/10/27/dispatches-from-ukraines-front-lines-a-strike-devastates-a-village-of-300?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 08:13:01 +0000", - "content": "From an underground town to the start of a pre-dawn assault, an inside look at life on four front lines over four days.", - "contentSnippet": "From an underground town to the start of a pre-dawn assault, an inside look at life on four front lines over four days.", - "guid": "https://www.aljazeera.com/?t=1698327957", - "categories": [ - "Features" - ], - "isoDate": "2023-10-27T08:13:01.000Z" - }, - { - "title": "Malaysian sultans choose new king in unique rotational monarchy", - "link": "https://www.aljazeera.com/news/2023/10/27/malaysian-sultans-choose-new-king-in-unique-rotational-monarchy?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 08:09:29 +0000", - "content": "Sultan Ibrahim of the southern state of Johor will hold the largely ceremonial post for five years. ", - "contentSnippet": "Sultan Ibrahim of the southern state of Johor will hold the largely ceremonial post for five years.", - "guid": "https://www.aljazeera.com/?t=1698390116", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T08:09:29.000Z" - }, - { - "title": "Israel-Hamas war: List of key events, day 21", - "link": "https://www.aljazeera.com/news/2023/10/27/israel-hamas-war-list-of-key-events-day-21?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 07:54:04 +0000", - "content": "As the conflict between Israel and Gaza enters its 21st day, these are the main developments.", - "contentSnippet": "As the conflict between Israel and Gaza enters its 21st day, these are the main developments.", - "guid": "https://www.aljazeera.com/?t=1698382591", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T07:54:04.000Z" - }, - { - "title": "Israeli bombing levels a residential square on Gaza City\u2019s Jalaa Street", - "link": "https://www.aljazeera.com/gallery/2023/10/27/israeli-bombing-levels-a-residential-square-on-gaza-citys-jalaa-street?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 07:38:50 +0000", - "content": "Yarmouk Square, and all its apartment buildings, was targeted and destroyed by Israeli air raids.", - "contentSnippet": "Yarmouk Square, and all its apartment buildings, was targeted and destroyed by Israeli air raids.", - "guid": "https://www.aljazeera.com/?t=1698322713", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T07:38:50.000Z" - }, - { - "title": "Blasts hit two Egyptian Red Sea towns, six wounded", - "link": "https://www.aljazeera.com/news/2023/10/27/missile-strikes-egypts-taba-resort-town-near-israel-border?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 07:28:11 +0000", - "content": "Israel points to an 'aerial threat' after projectiles strike Taba and Nuweiba, towns not far from Israel and Gaza. ", - "contentSnippet": "Israel points to an 'aerial threat' after projectiles strike Taba and Nuweiba, towns not far from Israel and Gaza.", - "guid": "https://www.aljazeera.com/?t=1698389077", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T07:28:11.000Z" - }, - { - "title": "Why are Palestinians supposed to take it \u2013 again and again?", - "link": "https://www.aljazeera.com/opinions/2023/10/27/why-are-palestinians-supposed-to-take-it-again-and-again?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 07:23:50 +0000", - "content": "The West is trying not only to stifle but to criminalise all Palestinian dissent.", - "contentSnippet": "The West is trying not only to stifle but to criminalise all Palestinian dissent.", - "guid": "https://www.aljazeera.com/?t=1698380556", - "categories": [ - "Opinions" - ], - "isoDate": "2023-10-27T07:23:50.000Z" - }, - { - "title": "Hurricane Otis leaves trail of destruction in Mexico\u2019s Acapulco", - "link": "https://www.aljazeera.com/gallery/2023/10/27/hurricane-otis-leaves-trail-of-destruction-in-mexicos-acapulco?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 07:20:42 +0000", - "content": "The Pacific storm strengthened with shocking swiftness before it hammered the beach resort of Acapulco. ", - "contentSnippet": "The Pacific storm strengthened with shocking swiftness before it hammered the beach resort of Acapulco.", - "guid": "https://www.aljazeera.com/?t=1698388740", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T07:20:42.000Z" - }, - { - "title": "Displaced cook volunteers to feed 50 Gaza families amidst Israeli bombing", - "link": "https://www.aljazeera.com/news/2023/10/27/displaced-cook-uses-donations-to-feed-50-palestinian-families?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 06:36:11 +0000", - "content": "In one of the areas set up for displaced Palestinians in Khan Younis, volunteer cooks aim to feed 500 people daily.", - "contentSnippet": "In one of the areas set up for displaced Palestinians in Khan Younis, volunteer cooks aim to feed 500 people daily.", - "guid": "https://www.aljazeera.com/?t=1698323821", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T06:36:11.000Z" - }, - { - "title": "Palestinian PM: Will Israel\u2019s war on Gaza bring Hamas and Fatah together?", - "link": "https://www.aljazeera.com/program/talk-to-al-jazeera/2023/10/27/palestinian-pm-will-war-on-gaza-bring-hamas-and-fatah-together?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 06:29:47 +0000", - "content": "Mohammad Shtayyeh discusses war on Gaza, West Bank-Israel relationship, and criticism against Palestinian Authority.", - "contentSnippet": "Mohammad Shtayyeh discusses war on Gaza, West Bank-Israel relationship, and criticism against Palestinian Authority.", - "guid": "https://www.aljazeera.com/?t=1698382431", - "categories": [ - "TV Shows" - ], - "isoDate": "2023-10-27T06:29:47.000Z" - }, - { - "title": "Israeli air strikes kill dozens in Gaza overnight, Palestinian sources say", - "link": "https://www.aljazeera.com/news/2023/10/27/israeli-air-strikes-kill-dozens-in-gaza-overnight-palestinian-sources-say?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 06:14:50 +0000", - "content": "Four Palestinians also reportedly killed in the occupied West Bank following pre-dawn raids by Israeli forces. ", - "contentSnippet": "Four Palestinians also reportedly killed in the occupied West Bank following pre-dawn raids by Israeli forces.", - "guid": "https://www.aljazeera.com/?t=1698371612", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T06:14:50.000Z" - }, - { - "title": "A day in the life of families sheltering at Gaza\u2019s al-Shifa Hospital", - "link": "https://www.aljazeera.com/gallery/2023/10/27/palestinian-family-taking-shelter-at-al-shifa-hospital?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 15:06:39 +0000", - "content": "Families taking refuge in al-Shifa Hospital say situation is unbearable - no clean water, electricity, and sanitation.", - "contentSnippet": "Families taking refuge in al-Shifa Hospital say situation is unbearable - no clean water, electricity, and sanitation.", - "guid": "https://www.aljazeera.com/?t=1698400376", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T15:06:39.000Z" - }, - { - "title": "My student Yehia Dahdouh survived an Israeli bombing, but his pain is huge", - "link": "https://www.aljazeera.com/features/2023/10/27/my-student-yehia-dahdouh-survived-an-israeli-bombing-but-his-pain-is-huge?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 14:35:47 +0000", - "content": "Young boy lost his mother when Israel bombed the house his family sought refuge in in central Gaza, how will he cope?", - "contentSnippet": "Young boy lost his mother when Israel bombed the house his family sought refuge in in central Gaza, how will he cope?", - "guid": "https://www.aljazeera.com/?t=1698408679", - "categories": [ - "Features" - ], - "isoDate": "2023-10-27T14:35:47.000Z" - }, - { - "title": "People with disabilities not spared by Israel\u2019s war machine on Gaza Strip", - "link": "https://www.aljazeera.com/news/2023/10/27/people-with-disabilities-not-spared-from-israels-war-machine-on-gaza-strip?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 14:33:36 +0000", - "content": "Bombs, lack of electricity and roads damaged by Israeli offensive make life impossible for disabled people in Gaza.", - "contentSnippet": "Bombs, lack of electricity and roads damaged by Israeli offensive make life impossible for disabled people in Gaza.", - "guid": "https://www.aljazeera.com/?t=1698157034", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T14:33:36.000Z" - }, - { - "title": "Explosion seen as Hamas rocket hits Tel Aviv apartment block", - "link": "https://www.aljazeera.com/program/newsfeed/2023/10/27/explosion-seen-as-hamas-rocket-hits-tel-aviv-apartment-block?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 14:29:11 +0000", - "content": "An explosion was seen on the skyline in the Israeli city of Tel Aviv as a rocket fired from Gaza hit an apartment block.", - "contentSnippet": "An explosion was seen on the skyline in the Israeli city of Tel Aviv as a rocket fired from Gaza hit an apartment block.", - "guid": "https://www.aljazeera.com/?t=1698416785", - "categories": [ - "Show Types" - ], - "isoDate": "2023-10-27T14:29:11.000Z" - }, - { - "title": "What does Gaza\u2019s food shortage look like amid Israeli siege?", - "link": "https://www.aljazeera.com/news/2023/10/27/what-does-gazas-food-shortage-look-like?traffic_source=rss", - "pubDate": "Fri, 27 Oct 2023 13:21:54 +0000", - "content": "Since October 21, only 84 trucks carrying aid have been allowed into Gaza. ", - "contentSnippet": "Since October 21, only 84 trucks carrying aid have been allowed into Gaza.", - "guid": "https://www.aljazeera.com/?t=1698408786", - "categories": [ - "News" - ], - "isoDate": "2023-10-27T13:21:54.000Z" - } -] \ No newline at end of file + { + "title": "Panama celebrates court order to cancel mine even as business is hit", + "link": "https://www.aljazeera.com/economy/2023/11/30/panama-celebrates-court-order-to-cancel-mine-even-as-business-is-hit?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 22:25:53 +0000", + "content": "For weeks, Panama was shaken by its largest protest movement in decades as residents decried a mining contract.", + "contentSnippet": "For weeks, Panama was shaken by its largest protest movement in decades as residents decried a mining contract.", + "guid": "https://www.aljazeera.com/?t=1701371975", + "categories": ["Features"], + "isoDate": "2023-11-30T22:25:53.000Z" + }, + { + "title": "Israel has lost the war of public opinion", + "link": "https://www.aljazeera.com/opinions/2023/11/30/israel-has-lost-the-war-of-public-opinion?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 21:23:31 +0000", + "content": "In the age of social media, Israel is no longer able to conceal the truth about its conduct in Palestine.", + "contentSnippet": "In the age of social media, Israel is no longer able to conceal the truth about its conduct in Palestine.", + "guid": "https://www.aljazeera.com/?t=1701376437", + "categories": ["Opinions"], + "isoDate": "2023-11-30T21:23:31.000Z" + }, + { + "title": "COP28: Israel should not be allowed to greenwash its war on Gaza", + "link": "https://www.aljazeera.com/opinions/2023/11/30/cop28-israel-should-not-be-allowed-to-greenwash-its-war-on-gaza?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 20:17:48 +0000", + "content": "Israel's participation at COP28 amid its war on Gaza casts a shadow over the world's top climate summit.", + "contentSnippet": "Israel's participation at COP28 amid its war on Gaza casts a shadow over the world's top climate summit.", + "guid": "https://www.aljazeera.com/?t=1701264412", + "categories": ["Opinions"], + "isoDate": "2023-11-30T20:17:48.000Z" + }, + { + "title": "Blinken urges Israel to protect civilians amid tough Gaza truce talks", + "link": "https://www.aljazeera.com/news/2023/11/30/blinken-pledges-support-for-israel-as-gaza-truce-extend-for-third-time?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 20:15:10 +0000", + "content": "Mediators Qatar and Egypt push for further extension to pause in hostilities as deal holds for a week.", + "contentSnippet": "Mediators Qatar and Egypt push for further extension to pause in hostilities as deal holds for a week.", + "guid": "https://www.aljazeera.com/?t=1701366806", + "categories": ["News"], + "isoDate": "2023-11-30T20:15:10.000Z" + }, + { + "title": "Musk\u2019s crude message to advertisers", + "link": "https://www.aljazeera.com/program/newsfeed/2023/11/30/musks-crude-message-to-advertisers?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 20:13:25 +0000", + "content": "X Owner Elon Musk had a crude message for companies pulling advertising from the platform", + "contentSnippet": "X Owner Elon Musk had a crude message for companies pulling advertising from the platform", + "guid": "https://www.aljazeera.com/?t=1701374852", + "categories": ["Show Types"], + "isoDate": "2023-11-30T20:13:25.000Z" + }, + { + "title": "Palestine advocates decry MSNBC\u2019s cancellation of Mehdi Hasan news show", + "link": "https://www.aljazeera.com/news/2023/11/30/palestine-advocates-decry-msnbcs-cancellation-of-mehdi-hasan-news-show?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 19:55:03 +0000", + "content": "Channel president says change aims to put network in 'better position' for the 2024 US elections, The Hill reports.", + "contentSnippet": "Channel president says change aims to put network in 'better position' for the 2024 US elections, The Hill reports.", + "guid": "https://www.aljazeera.com/?t=1701370778", + "categories": ["News"], + "isoDate": "2023-11-30T19:55:03.000Z" + }, + { + "title": "OPEC+ agrees voluntary oil production cuts", + "link": "https://www.aljazeera.com/news/2023/11/30/opec-agrees-voluntary-oil-production-cuts?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 19:41:18 +0000", + "content": "Saudi Arabia, Russia and other members of OPEC+ agreed to voluntary output cuts for th first quarter of 2024.", + "contentSnippet": "Saudi Arabia, Russia and other members of OPEC+ agreed to voluntary output cuts for th first quarter of 2024.", + "guid": "https://www.aljazeera.com/?t=1701359217", + "categories": ["News"], + "isoDate": "2023-11-30T19:41:18.000Z" + }, + { + "title": "Why have so many Palestinian children been killed by Israel?", + "link": "https://www.aljazeera.com/program/inside-story/2023/11/30/why-have-so-many-palestinian-children-been-killed-by-israel?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 19:05:43 +0000", + "content": "Thousands of children have been killed, maimed, injured or arrested by Israeli forces.", + "contentSnippet": "Thousands of children have been killed, maimed, injured or arrested by Israeli forces.", + "guid": "https://www.aljazeera.com/?t=1701368338", + "categories": ["TV Shows"], + "isoDate": "2023-11-30T19:05:43.000Z" + }, + { + "title": "\u2018Country of promises\u2019: Brazil\u2019s struggle to lead climate policy at COP28", + "link": "https://www.aljazeera.com/news/2023/11/30/country-of-promises-brazils-struggle-to-lead-climate-policy-at-cop28?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 18:53:18 +0000", + "content": "President Luiz In\u00e1cio Lula da Silva is slated to helm Brazil\u2019s largest-ever delegation, but he faces criticism at home.", + "contentSnippet": "President Luiz In\u00e1cio Lula da Silva is slated to helm Brazil\u2019s largest-ever delegation, but he faces criticism at home.", + "guid": "https://www.aljazeera.com/?t=1701308555", + "categories": ["News"], + "isoDate": "2023-11-30T18:53:18.000Z" + }, + { + "title": "Call to prayer amidst the ruins", + "link": "https://www.aljazeera.com/program/newsfeed/2023/11/30/call-to-prayer-amidst-the-ruins?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 18:21:19 +0000", + "content": "A call to prayer is made from a destroyed mosque as a drone shot shows the ruins of the building and surroundings in Kh", + "contentSnippet": "A call to prayer is made from a destroyed mosque as a drone shot shows the ruins of the building and surroundings in Kh", + "guid": "https://www.aljazeera.com/?t=1701368186", + "categories": ["Show Types"], + "isoDate": "2023-11-30T18:21:19.000Z" + }, + { + "title": "Relief as Thai hostages return home amid fears for those still held in Gaza", + "link": "https://www.aljazeera.com/news/2023/11/30/relief-as-thai-hostages-return-home-amid-fears-for-those-still-held-in-gaza?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 18:15:17 +0000", + "content": "Group of 17 Thai nationals return from a total of 23 who have been released by Hamas, with nine still captive in Gaza.", + "contentSnippet": "Group of 17 Thai nationals return from a total of 23 who have been released by Hamas, with nine still captive in Gaza.", + "guid": "https://www.aljazeera.com/?t=1701360348", + "categories": ["News"], + "isoDate": "2023-11-30T18:15:17.000Z" + }, + { + "title": "India\u2019s Rohit and Kohli skip white-ball leg of South Africa cricket tour", + "link": "https://www.aljazeera.com/sports/2023/11/30/indias-rohit-and-kohli-skip-white-ball-leg-of-south-africa-cricket-tour?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 17:32:24 +0000", + "content": "BCCI says Rohit Sharma and Virat Kohli asked for a break from the white-ball leg of the eight-match, multiformat tour.", + "contentSnippet": "BCCI says Rohit Sharma and Virat Kohli asked for a break from the white-ball leg of the eight-match, multiformat tour.", + "guid": "https://www.aljazeera.com/?t=1701364774", + "categories": ["Sports"], + "isoDate": "2023-11-30T17:32:24.000Z" + }, + { + "title": "Iran rapper Toomaj Salehi rearrested days after release on bail", + "link": "https://www.aljazeera.com/news/2023/11/30/iran-rearrests-rapper-less-than-two-weeks-after-his-release-on-bail?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 17:19:47 +0000", + "content": "Salehi was first arrested after publicly backing anti-government protests over Mahsa Amini's death in police custody.", + "contentSnippet": "Salehi was first arrested after publicly backing anti-government protests over Mahsa Amini's death in police custody.", + "guid": "https://www.aljazeera.com/?t=1701361218", + "categories": ["News"], + "isoDate": "2023-11-30T17:19:47.000Z" + }, + { + "title": "What does silencing of supporters of Palestine mean for freedom of speech?", + "link": "https://www.aljazeera.com/program/the-stream/2023/11/30/war-on-words-freedom-of-speech?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 16:30:27 +0000", + "content": "The stifling of voices around the globe supporting Palestinians is putting the principles of free speech to the test.", + "contentSnippet": "The stifling of voices around the globe supporting Palestinians is putting the principles of free speech to the test.", + "guid": "https://www.aljazeera.com/?t=1701356488", + "categories": ["TV Shows"], + "isoDate": "2023-11-30T16:30:27.000Z" + }, + { + "title": "Shane MacGowan, poetic, hard-charging frontman of The Pogues, dies at 65", + "link": "https://www.aljazeera.com/news/2023/11/30/shane-macgowan-poetic-hard-charging-frontman-of-the-pogues-dead-at-65?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 15:24:23 +0000", + "content": "MacGowan won fame for incorporating traditional Irish ballads into Britain's punk scene in the 1980s and 90s. ", + "contentSnippet": "MacGowan won fame for incorporating traditional Irish ballads into Britain's punk scene in the 1980s and 90s.", + "guid": "https://www.aljazeera.com/?t=1701350765", + "categories": ["News"], + "isoDate": "2023-11-30T15:24:23.000Z" + }, + { + "title": "Russian court bans \u2018LGBT movement\u2019 as \u2018extremist\u2019", + "link": "https://www.aljazeera.com/news/2023/11/30/russian-court-bans-lgbtq-movement-as-extremist?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 15:17:58 +0000", + "content": "Russia's Supreme Court has issued a ban on the activities of the 'international LGBT movement' in the latest crackdown.", + "contentSnippet": "Russia's Supreme Court has issued a ban on the activities of the 'international LGBT movement' in the latest crackdown.", + "guid": "https://www.aljazeera.com/?t=1701353061", + "categories": ["News"], + "isoDate": "2023-11-30T15:17:58.000Z" + }, + { + "title": "High-profile murders inspire calls for justice at Mexico\u2019s \u2018muxe\u2019 festival", + "link": "https://www.aljazeera.com/news/2023/11/30/high-profile-murders-inspire-calls-for-justice-at-mexicos-muxe-festival?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 15:16:26 +0000", + "content": "Members of Mexico\u2019s third-gender community used their annual celebration to push for answers after two prominent deaths.", + "contentSnippet": "Members of Mexico\u2019s third-gender community used their annual celebration to push for answers after two prominent deaths.", + "guid": "https://www.aljazeera.com/?t=1701197636", + "categories": ["News"], + "isoDate": "2023-11-30T15:16:26.000Z" + }, + { + "title": "Pakistani girl killed after photos with boy\u2019s arm around her go viral", + "link": "https://www.aljazeera.com/news/2023/11/30/pakistani-girl-killed-after-photos-with-boys-arm-around-her-go-viral?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 15:04:27 +0000", + "content": "The murder is the latest in a spate of more than 5,000 incidents since 2012 in which women have been killed.", + "contentSnippet": "The murder is the latest in a spate of more than 5,000 incidents since 2012 in which women have been killed.", + "guid": "https://www.aljazeera.com/?t=1701352227", + "categories": ["News"], + "isoDate": "2023-11-30T15:04:27.000Z" + }, + { + "title": "Climate disaster fund approved at UN\u2019s COP28 climate summit", + "link": "https://www.aljazeera.com/news/2023/11/30/climate-disaster-fund-approved-at-uns-cop28-climate-summit?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 14:21:49 +0000", + "content": "UAE's Sultan Al Jaber calls to 'proactively engage' fossil fuel companies as part of the solution to climate challenges.", + "contentSnippet": "UAE's Sultan Al Jaber calls to 'proactively engage' fossil fuel companies as part of the solution to climate challenges.", + "guid": "https://www.aljazeera.com/?t=1701344615", + "categories": ["News"], + "isoDate": "2023-11-30T14:21:49.000Z" + }, + { + "title": "Henry Kissinger: 10 conflicts, countries that define a blood-stained legacy", + "link": "https://www.aljazeera.com/news/2023/11/30/henry-kissinger-10-conflicts-countries-that-define-a-blood-stained-legacy?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 14:13:10 +0000", + "content": "The master of cold realpolitik left a legacy of destruction that is still playing out across the world. ", + "contentSnippet": "The master of cold realpolitik left a legacy of destruction that is still playing out across the world.", + "guid": "https://www.aljazeera.com/?t=1701342262", + "categories": ["News"], + "isoDate": "2023-11-30T14:13:10.000Z" + }, + { + "title": "Israel-Palestine war: \u2018Ceasefire\u2019 or \u2018pause\u2019, what have world leaders said?", + "link": "https://www.aljazeera.com/news/longform/2023/11/30/israel-palestine-war-ceasefire-or-pause-what-have-world-leaders-said?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 13:18:11 +0000", + "content": "Al Jazeera analysed hundreds of world leaders' speeches to see how language is shaping the conflict and its resolution.", + "contentSnippet": "Al Jazeera analysed hundreds of world leaders' speeches to see how language is shaping the conflict and its resolution.", + "guid": "https://www.aljazeera.com/?t=1700029395", + "categories": ["News"], + "isoDate": "2023-11-30T13:18:11.000Z" + }, + { + "title": "COP28 Dubai: What were the gains of past five UN climate summits?", + "link": "https://www.aljazeera.com/news/2023/11/30/cop28-dubai-what-were-the-gains-of-past-five-un-climate-summits?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 13:01:49 +0000", + "content": "As COP28 commences in Dubai, here is a look at the major outcomes of the UN's last five COPs and where they stand. ", + "contentSnippet": "As COP28 commences in Dubai, here is a look at the major outcomes of the UN's last five COPs and where they stand.", + "guid": "https://www.aljazeera.com/?t=1701237615", + "categories": ["News"], + "isoDate": "2023-11-30T13:01:49.000Z" + }, + { + "title": "The UN must not abandon Sudan amid war and atrocities", + "link": "https://www.aljazeera.com/opinions/2023/11/30/the-un-must-not-abandon-sudan-amid-war-and-atrocities?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 12:42:39 +0000", + "content": "The end of the UN's political mission in the country comes at a time when civilians are in dire need of protection.", + "contentSnippet": "The end of the UN's political mission in the country comes at a time when civilians are in dire need of protection.", + "guid": "https://www.aljazeera.com/?t=1701289139", + "categories": ["Opinions"], + "isoDate": "2023-11-30T12:42:39.000Z" + }, + { + "title": "A hard, bloody winter awaits Ukrainian and Russian soldiers, say experts", + "link": "https://www.aljazeera.com/news/2023/11/30/a-hard-bloody-winter-awaits-ukrainian-and-russian-soldiers-say-experts?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 12:39:56 +0000", + "content": "Neither side is ready to give up, and neither can win in the medium term, but negotiations could come next year.", + "contentSnippet": "Neither side is ready to give up, and neither can win in the medium term, but negotiations could come next year.", + "guid": "https://www.aljazeera.com/?t=1701248549", + "categories": ["News"], + "isoDate": "2023-11-30T12:39:56.000Z" + }, + { + "title": "\u2018We\u2019re not here to beg\u2019: Gaza residents\u2019 anger over steep rise in prices", + "link": "https://www.aljazeera.com/news/2023/11/30/were-not-here-to-beg-gaza-residents-anger-over-steep-rise-in-prices?traffic_source=rss", + "pubDate": "Thu, 30 Nov 2023 12:22:36 +0000", + "content": "People hoping to buy essentials like food, warm clothes during the pause in Israel's bombing frustrated by price hikes.", + "contentSnippet": "People hoping to buy essentials like food, warm clothes during the pause in Israel's bombing frustrated by price hikes.", + "guid": "https://www.aljazeera.com/?t=1701183452", + "categories": ["News"], + "isoDate": "2023-11-30T12:22:36.000Z" + }, + { + "title": "Meta shuts 4,800 accounts over alleged China-based influence operation", + "link": "https://www.aljazeera.com/news/2023/12/1/meta-shuts-4800-accounts-over-alleged-china-based-influence-operation?traffic_source=rss", + "pubDate": "Fri, 01 Dec 2023 01:31:35 +0000", + "content": "Tech giant says it has dismantled five China-based networks of fake accounts so far this year.", + "contentSnippet": "Tech giant says it has dismantled five China-based networks of fake accounts so far this year.", + "guid": "https://www.aljazeera.com/?t=1701389415", + "categories": ["News"], + "isoDate": "2023-12-01T01:31:35.000Z" + }, + { + "title": "Jon Rahm jumps ship to LIV Golf in a stunning blow to the PGA Tour", + "link": "https://www.aljazeera.com/sports/2023/12/8/jon-rahm-jumps-ship-to-liv-golf-in-a-stunning-blow-to-the-pga-tour?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 09:16:20 +0000", + "content": "Big money move by the 29-year-old Masters champion to Saudi-backed LIV Golf sends another shockwave through the sport.", + "contentSnippet": "Big money move by the 29-year-old Masters champion to Saudi-backed LIV Golf sends another shockwave through the sport.", + "guid": "https://www.aljazeera.com/?t=1702025932", + "categories": ["Sports"], + "isoDate": "2023-12-08T09:16:20.000Z" + }, + { + "title": "The newsroom has become a battleground in Israel\u2019s war on Gaza", + "link": "https://www.aljazeera.com/opinions/2023/12/8/the-newsroom-has-become-a-battleground-in-israels-war-on-gaza?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 09:16:15 +0000", + "content": "More than 60 journalists and media workers have been killed in and around the Gaza Strip since October 7. ", + "contentSnippet": "More than 60 journalists and media workers have been killed in and around the Gaza Strip since October 7.", + "guid": "https://www.aljazeera.com/?t=1701939489", + "categories": ["Opinions"], + "isoDate": "2023-12-08T09:16:15.000Z" + }, + { + "title": "Hunter Biden indicted for evading $1.4m in tax: What we know and what next?", + "link": "https://www.aljazeera.com/news/2023/12/8/hunter-biden-indicted-for-evading-1-4m-in-tax-what-we-know-and-what-next?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 08:42:55 +0000", + "content": "US President Joe Biden's son has been charged for the second time this year amid heated presidential election campaign.", + "contentSnippet": "US President Joe Biden's son has been charged for the second time this year amid heated presidential election campaign.", + "guid": "https://www.aljazeera.com/?t=1702020746", + "categories": ["News"], + "isoDate": "2023-12-08T08:42:55.000Z" + }, + { + "title": "Netanyahu warns Hezbollah after cross-border attack kills Israeli civilian", + "link": "https://www.aljazeera.com/news/2023/12/8/netanyahu-threatens-hezbollah-after-cross-border-attack-kills-civilian?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 08:33:01 +0000", + "content": "Israeli PM says Hezbollah will turn Beirut, southern Lebanon into Gaza if group's attacks on Israel continue.", + "contentSnippet": "Israeli PM says Hezbollah will turn Beirut, southern Lebanon into Gaza if group's attacks on Israel continue.", + "guid": "https://www.aljazeera.com/?t=1702018464", + "categories": ["News"], + "isoDate": "2023-12-08T08:33:01.000Z" + }, + { + "title": "Occupied West Bank faces growing Israeli aggression amid Gaza war", + "link": "https://www.aljazeera.com/gallery/2023/12/8/photos-two-months-of-gaza-warwest-bank-faces-onslaught-of-israeli?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 08:23:35 +0000", + "content": "Hundreds of Palestinians have been killed and thousands injured and detained in occupied West Bank since October 7.", + "contentSnippet": "Hundreds of Palestinians have been killed and thousands injured and detained in occupied West Bank since October 7.", + "guid": "https://www.aljazeera.com/?t=1702011642", + "categories": ["Gallery"], + "isoDate": "2023-12-08T08:23:35.000Z" + }, + { + "title": "Taiwan detects Chinese balloon, fighter jets crossing median line", + "link": "https://www.aljazeera.com/news/2023/12/8/taiwan-detects-chinese-balloon-fighter-jets-crossing-median-line?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 08:21:15 +0000", + "content": "Activity along Taiwan Strait comes as Taipei is on high alert for Chinese interference ahead of elections next month.", + "contentSnippet": "Activity along Taiwan Strait comes as Taipei is on high alert for Chinese interference ahead of elections next month.", + "guid": "https://www.aljazeera.com/?t=1702018055", + "categories": ["News"], + "isoDate": "2023-12-08T08:21:15.000Z" + }, + { + "title": "Playing with friends, shot dead by Israel: A Jenin boy\u2019s final moments", + "link": "https://www.aljazeera.com/features/2023/12/8/playing-with-friends-shot-dead-by-israel-a-jenin-boys-final-moments?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 07:47:24 +0000", + "content": "Basil Abu al-Waf's father, a doctor, raced to the spot near Jenin refugee camp. It was too late. ", + "contentSnippet": "Basil Abu al-Waf's father, a doctor, raced to the spot near Jenin refugee camp. It was too late.", + "guid": "https://www.aljazeera.com/?t=1702019590", + "categories": ["Features"], + "isoDate": "2023-12-08T07:47:24.000Z" + }, + { + "title": "Tech firms failing to \u2018walk the walk\u2019 on ethical AI, report says", + "link": "https://www.aljazeera.com/news/2023/12/8/tech-firms-failing-to-walk-the-walk-on-ethical-ai-report-says?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 07:29:09 +0000", + "content": "Stanford University researchers say AI ethics practitioners report lacking institutional support at their companies. ", + "contentSnippet": "Stanford University researchers say AI ethics practitioners report lacking institutional support at their companies.", + "guid": "https://www.aljazeera.com/?t=1702014598", + "categories": ["News"], + "isoDate": "2023-12-08T07:29:09.000Z" + }, + { + "title": "No end in sight as death toll rises in Gaza and Israel escalates attacks", + "link": "https://www.aljazeera.com/gallery/2023/12/8/photos-death-toll-continues-to-rise-in-gaza-amid-widening-israeli-attacks?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 07:15:27 +0000", + "content": "Humanitarian aid is trickling into southern Gaza but UN says it\u2019s 'erratic, undependable' and not 'sustainable'.", + "contentSnippet": "Humanitarian aid is trickling into southern Gaza but UN says it\u2019s 'erratic, undependable' and not 'sustainable'.", + "guid": "https://www.aljazeera.com/?t=1701997474", + "categories": ["News"], + "isoDate": "2023-12-08T07:15:27.000Z" + }, + { + "title": "Rockets reportedly fired towards US embassy in Iraq\u2019s capital Green Zone", + "link": "https://www.aljazeera.com/news/2023/12/8/alarm-sirens-explosions-heard-near-us-embassy-in-baghdad?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 06:54:30 +0000", + "content": "US troops and installations have come under regular attacks due to Washington's support of Israel's bombardment of Gaza.", + "contentSnippet": "US troops and installations have come under regular attacks due to Washington's support of Israel's bombardment of Gaza.", + "guid": "https://www.aljazeera.com/?t=1702013494", + "categories": ["News"], + "isoDate": "2023-12-08T06:54:30.000Z" + }, + { + "title": "The first Intifada against Israel", + "link": "https://www.aljazeera.com/gallery/2023/12/8/history-illustrated-the-first-intifada-against-israel?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 06:44:12 +0000", + "content": "A years-long uprising by Palestinians would end with a deal that some considered an outright surrender.", + "contentSnippet": "A years-long uprising by Palestinians would end with a deal that some considered an outright surrender.", + "guid": "https://www.aljazeera.com/?t=1702015925", + "categories": ["Gallery"], + "isoDate": "2023-12-08T06:44:12.000Z" + }, + { + "title": "Will Netanyahu risk a tunnel conflict to \u2018eradicate Hamas\u2019, stay in power?", + "link": "https://www.aljazeera.com/news/2023/12/8/will-netanyahu-risk-a-tunnel-conflict-to-eradicate-hamas-stay-in-power?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 05:42:51 +0000", + "content": "Israeli forces may risk a fight under Gaza as a politically embattled Netanyahu looks for a total defeat of Hamas.", + "contentSnippet": "Israeli forces may risk a fight under Gaza as a politically embattled Netanyahu looks for a total defeat of Hamas.", + "guid": "https://www.aljazeera.com/?t=1701673050", + "categories": ["News"], + "isoDate": "2023-12-08T05:42:51.000Z" + }, + { + "title": "Social media platform X added 10 million new users in December, CEO says", + "link": "https://www.aljazeera.com/economy/2023/12/8/social-media-platform-x-added-10-million-new-users-in-december-ceo-says?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 04:47:37 +0000", + "content": "Linda Yaccarino makes announcement amid exodus of advertisers from the platform.\r\n", + "contentSnippet": "Linda Yaccarino makes announcement amid exodus of advertisers from the platform.", + "guid": "https://www.aljazeera.com/?t=1702007733", + "categories": ["News"], + "isoDate": "2023-12-08T04:47:37.000Z" + }, + { + "title": "Armenia, Azerbaijan agree to take steps towards normalisation", + "link": "https://www.aljazeera.com/news/2023/12/8/armenia-azerbaijan-agree-to-take-steps-towards-normalisation?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 04:09:27 +0000", + "content": "EU, US welcome statement in which two sides agree to exchange prisoners of war and Armenia backs Azerbaijan COP29 bid.", + "contentSnippet": "EU, US welcome statement in which two sides agree to exchange prisoners of war and Armenia backs Azerbaijan COP29 bid.", + "guid": "https://www.aljazeera.com/?t=1702004294", + "categories": ["News"], + "isoDate": "2023-12-08T04:09:27.000Z" + }, + { + "title": "Blinken urges Israel to finish probe into killing of journalist in Lebanon", + "link": "https://www.aljazeera.com/news/2023/12/8/blinken-urges-israel-to-finish-probe-into-killing-of-journalist-in-lebanon?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 02:36:56 +0000", + "content": "Blinken's comments come after rights groups say Israel should be investigated over possible war crime.", + "contentSnippet": "Blinken's comments come after rights groups say Israel should be investigated over possible war crime.", + "guid": "https://www.aljazeera.com/?t=1701993490", + "categories": ["News"], + "isoDate": "2023-12-08T02:36:56.000Z" + }, + { + "title": "Russia-Ukraine war: List of key events, day 653", + "link": "https://www.aljazeera.com/news/2023/12/8/russia-ukraine-war-list-of-key-events-day-653?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 01:34:49 +0000", + "content": "As the war enters its 653rd day, these are the main developments.", + "contentSnippet": "As the war enters its 653rd day, these are the main developments.", + "guid": "https://www.aljazeera.com/?t=1701994017", + "categories": ["News"], + "isoDate": "2023-12-08T01:34:49.000Z" + }, + { + "title": "Hunter Biden charged over alleged scheme to avoid $1.4m tax bill", + "link": "https://www.aljazeera.com/news/2023/12/8/us-prosecutors-file-new-charges-against-hunter-biden-cnn-says?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 00:25:39 +0000", + "content": "Indictment comes after President Joe Biden\u2019s son last month pleaded not guilty to three firearms-related charges.", + "contentSnippet": "Indictment comes after President Joe Biden\u2019s son last month pleaded not guilty to three firearms-related charges.", + "guid": "https://www.aljazeera.com/?t=1701994289", + "categories": ["News"], + "isoDate": "2023-12-08T00:25:39.000Z" + }, + { + "title": "Q&A: \u2018I need to be vindicated\u2019: Leila de Lima on Duterte and the drug war", + "link": "https://www.aljazeera.com/news/2023/12/8/qa-i-need-to-be-vindicated-leila-de-lima-on-duterte-and-the-drug-war?traffic_source=rss", + "pubDate": "Fri, 08 Dec 2023 00:02:54 +0000", + "content": "Freed after six years, the former Philippines senator spoke to Al Jazeera about her ordeal and her hopes for the future.", + "contentSnippet": "Freed after six years, the former Philippines senator spoke to Al Jazeera about her ordeal and her hopes for the future.", + "guid": "https://www.aljazeera.com/?t=1701926984", + "categories": ["News"], + "isoDate": "2023-12-08T00:02:54.000Z" + }, + { + "title": "Spain expels two US embassy staff for allegedly bribing intelligence agents", + "link": "https://www.aljazeera.com/news/2023/12/7/spain-expels-two-us-embassy-staff-for-allegedly-bribing-intelligence-agents?traffic_source=rss", + "pubDate": "Thu, 07 Dec 2023 21:10:08 +0000", + "content": "The Spanish paper El Pais reports that the US quietly withdrew two staff workers at the request of Spain's government. ", + "contentSnippet": "The Spanish paper El Pais reports that the US quietly withdrew two staff workers at the request of Spain's government.", + "guid": "https://www.aljazeera.com/?t=1701973727", + "categories": ["News"], + "isoDate": "2023-12-07T21:10:08.000Z" + }, + { + "title": "US to conduct Guyana flights as tensions mount over Venezuela dispute", + "link": "https://www.aljazeera.com/news/2023/12/7/us-to-conduct-guyana-flights-as-tensions-mount-over-venezuela-dispute?traffic_source=rss", + "pubDate": "Thu, 07 Dec 2023 20:57:31 +0000", + "content": "US announces flight drills, stresses 'unwavering support' for Guyana's sovereignty amid growing border tensions.", + "contentSnippet": "US announces flight drills, stresses 'unwavering support' for Guyana's sovereignty amid growing border tensions.", + "guid": "https://www.aljazeera.com/?t=1701978813", + "categories": ["News"], + "isoDate": "2023-12-07T20:57:31.000Z" + }, + { + "title": "UNICEF: Lack of basic necessities threatening lives of thousands in Gaza", + "link": "https://www.aljazeera.com/program/newsfeed/2023/12/7/unicef-lack-of-basic-necessities-threatening-lives-of-thousands-in-gaza?traffic_source=rss", + "pubDate": "Thu, 07 Dec 2023 19:57:25 +0000", + "content": "UNICEF tells Al Jazeera that the lack of basic necessities is threatening lives of thousands in Gaza. ", + "contentSnippet": "UNICEF tells Al Jazeera that the lack of basic necessities is threatening lives of thousands in Gaza.", + "guid": "https://www.aljazeera.com/?t=1701978815", + "categories": ["Show Types"], + "isoDate": "2023-12-07T19:57:25.000Z" + }, + { + "title": "Is Israel\u2019s Gaza War the most destructive yet with conventional weapons?", + "link": "https://www.aljazeera.com/program/inside-story/2023/12/7/is-israels-gaza-war-the-most-destructive-yet-with-conventional-weapons?traffic_source=rss", + "pubDate": "Thu, 07 Dec 2023 19:39:55 +0000", + "content": "Some military analysts have compared the Israeli bombardment of Gaza with bombing campaigns from World War II.", + "contentSnippet": "Some military analysts have compared the Israeli bombardment of Gaza with bombing campaigns from World War II.", + "guid": "https://www.aljazeera.com/?t=1701976655", + "categories": ["TV Shows"], + "isoDate": "2023-12-07T19:39:55.000Z" + }, + { + "title": "Ex-PM Boris Johnson denies in inquiry he wanted to let COVID \u2018rip\u2019", + "link": "https://www.aljazeera.com/news/2023/12/7/former-uk-pm-boris-johnson-denies-he-wanted-to-let-covid-rip?traffic_source=rss", + "pubDate": "Thu, 07 Dec 2023 19:36:00 +0000", + "content": "Johnson says at public inquiry that perceptions of the 'Partygate' scandal were 'a million miles from reality'.", + "contentSnippet": "Johnson says at public inquiry that perceptions of the 'Partygate' scandal were 'a million miles from reality'.", + "guid": "https://www.aljazeera.com/?t=1701972818", + "categories": ["News"], + "isoDate": "2023-12-07T19:36:00.000Z" + }, + { + "title": "US targets Houthi funding network following attacks on commercial ships", + "link": "https://www.aljazeera.com/news/2023/12/7/us-targets-houthi-funding-network-following-attacks-on-commercial-ships?traffic_source=rss", + "pubDate": "Thu, 07 Dec 2023 19:10:55 +0000", + "content": "US slaps sanctions on 13 people and entities allegedly involved in efforts to direct funds to the Iran-backed group. ", + "contentSnippet": "US slaps sanctions on 13 people and entities allegedly involved in efforts to direct funds to the Iran-backed group.", + "guid": "https://www.aljazeera.com/?t=1701970469", + "categories": ["News"], + "isoDate": "2023-12-07T19:10:55.000Z" + }, + { + "title": "UN aid chief sees \u2018promising signs\u2019 on opening of new crossing to Gaza", + "link": "https://www.aljazeera.com/news/2023/12/7/un-aid-chief-sees-promising-signs-on-opening-of-new-crossing-to-gaza?traffic_source=rss", + "pubDate": "Thu, 07 Dec 2023 18:39:47 +0000", + "content": "Martin Griffiths says the Kerem Shalom crossing may be opening 'soon' to facilitate aid deliveries to Gaza. ", + "contentSnippet": "Martin Griffiths says the Kerem Shalom crossing may be opening 'soon' to facilitate aid deliveries to Gaza.", + "guid": "https://www.aljazeera.com/?t=1701967580", + "categories": ["News"], + "isoDate": "2023-12-07T18:39:47.000Z" + }, + { + "title": "Indigenous advocates reject Chile\u2019s new draft constitution ahead of vote", + "link": "https://www.aljazeera.com/news/2023/12/15/indigenous-advocates-reject-chiles-new-draft-constitution-ahead-of-vote?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 15:22:13 +0000", + "content": "Sunday\u2019s referendum will be the second time in as many years that Chileans have voted for a revised constitution.", + "contentSnippet": "Sunday\u2019s referendum will be the second time in as many years that Chileans have voted for a revised constitution.", + "guid": "https://www.aljazeera.com/?t=1702510259", + "categories": ["News"], + "isoDate": "2023-12-15T15:22:13.000Z" + }, + { + "title": "Africa must challenge the West\u2019s colonial game plan for Palestine", + "link": "https://www.aljazeera.com/opinions/2023/12/15/africa-must-challenge-the-wests-colonial-game-plan-for?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 15:16:17 +0000", + "content": "Africans, who know this story well, should not let the West put Gaza under an Israel-friendly puppet government.", + "contentSnippet": "Africans, who know this story well, should not let the West put Gaza under an Israel-friendly puppet government.", + "guid": "https://www.aljazeera.com/?t=1702638913", + "categories": ["Opinions"], + "isoDate": "2023-12-15T15:16:17.000Z" + }, + { + "title": "Israel-Gaza: Does Islamophobia play a part in US foreign policy?", + "link": "https://www.aljazeera.com/program/upfront/2023/12/15/israel-gaza-does-islamophobia-play-a-part-in-us-foreign-policy?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 14:45:39 +0000", + "content": "Marc Lamont Hill speaks with scholars of Islamophobia and anti-Semitism.\r\n", + "contentSnippet": "Marc Lamont Hill speaks with scholars of Islamophobia and anti-Semitism.", + "guid": "https://www.aljazeera.com/?t=1702616201", + "categories": ["TV Shows"], + "isoDate": "2023-12-15T14:45:39.000Z" + }, + { + "title": "\u2018War is stupid and I want it to end\u2019: Injured Palestinian children speak", + "link": "https://www.aljazeera.com/news/2023/12/15/war-is-stupid-and-i-want-it-to-end-injured-palestinian-children-say?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 14:37:50 +0000", + "content": "Israel's relentless bombardment of Gaza has killed or injured about 28,000 Palestinian children in the past two months.", + "contentSnippet": "Israel's relentless bombardment of Gaza has killed or injured about 28,000 Palestinian children in the past two months.", + "guid": "https://www.aljazeera.com/?t=1702470225", + "categories": ["News"], + "isoDate": "2023-12-15T14:37:50.000Z" + }, + { + "title": "Israel continues Gaza onslaught despite US envoy\u2019s \u2018new phase of war\u2019", + "link": "https://www.aljazeera.com/news/2023/12/15/israel-to-transition-to-more-precise-targeted-warfare-in-gaza-us-adviser?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 13:59:36 +0000", + "content": "US National Security Adviser Jake Sullivan to meet Palestine's Mahmud Abbas after talks with Israeli officials.", + "contentSnippet": "US National Security Adviser Jake Sullivan to meet Palestine's Mahmud Abbas after talks with Israeli officials.", + "guid": "https://www.aljazeera.com/?t=1702639707", + "categories": ["News"], + "isoDate": "2023-12-15T13:59:36.000Z" + }, + { + "title": "\u2018We barely make ends meet\u2019: In Italy, some women are postponing motherhood", + "link": "https://www.aljazeera.com/features/2023/12/15/127?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 13:22:55 +0000", + "content": "Women say that low salaries, precarious employment and poor childcare options hold them back from starting families.", + "contentSnippet": "Women say that low salaries, precarious employment and poor childcare options hold them back from starting families.", + "guid": "https://www.aljazeera.com/?t=1702628179", + "categories": ["Features"], + "isoDate": "2023-12-15T13:22:55.000Z" + }, + { + "title": "Attack launched from Houthi-held Yemen hits cargo ship in Red Sea", + "link": "https://www.aljazeera.com/news/2023/12/15/yemen-rebels-hit-cargo-ship-in-latest-red-sea-attack?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 13:17:44 +0000", + "content": "Liberia-flagged vessel caught fire in Red Sea after being hit by a projectile from Yemen, US sources say.", + "contentSnippet": "Liberia-flagged vessel caught fire in Red Sea after being hit by a projectile from Yemen, US sources say.", + "guid": "https://www.aljazeera.com/?t=1702637709", + "categories": ["News"], + "isoDate": "2023-12-15T13:17:44.000Z" + }, + { + "title": "Denmark stepping up terror probe amid suspicion of Hamas links", + "link": "https://www.aljazeera.com/news/2023/12/15/denmark-detains-two-people-amid-terror-investigation?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 13:08:35 +0000", + "content": "Arrests in Denmark coincide with detentions in the Netherlands and Germany allegedly linked to Hamas.", + "contentSnippet": "Arrests in Denmark coincide with detentions in the Netherlands and Germany allegedly linked to Hamas.", + "guid": "https://www.aljazeera.com/?t=1702639278", + "categories": ["News"], + "isoDate": "2023-12-15T13:08:35.000Z" + }, + { + "title": "Israel-Gaza war: Is the US administration divorced from reality?", + "link": "https://www.aljazeera.com/program/upfront/2023/12/15/israel-gaza-war-is-the-us-administration-divorced-from-reality?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 13:00:22 +0000", + "content": "Hanan Ashrawi talks to Marc Lamont Hill about the situation in the occupied Palestinian territories and the US position.", + "contentSnippet": "Hanan Ashrawi talks to Marc Lamont Hill about the situation in the occupied Palestinian territories and the US position.", + "guid": "https://www.aljazeera.com/?t=1702616010", + "categories": ["TV Shows"], + "isoDate": "2023-12-15T13:00:22.000Z" + }, + { + "title": "ECOWAS court orders reinstatement of Niger\u2019s ousted Bazoum", + "link": "https://www.aljazeera.com/news/2023/12/15/ecowas-court-orders-reinstatement-of-nigers-ousted-bazoum?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 12:02:31 +0000", + "content": "Mohamed Bazoum was overthrown by presidential guard members on July 26 and has been detained with his family since then.", + "contentSnippet": "Mohamed Bazoum was overthrown by presidential guard members on July 26 and has been detained with his family since then.", + "guid": "https://www.aljazeera.com/?t=1702640359", + "categories": ["News"], + "isoDate": "2023-12-15T12:02:31.000Z" + }, + { + "title": "Dutch court dismisses war crimes case against military supplies to Israel", + "link": "https://www.aljazeera.com/news/2023/12/15/dutch-court-dismisses-case-against-delivery-of-f-35-parts-to-israel?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 12:01:25 +0000", + "content": "Rights groups said the exporting of F-35 jet parts to Israel from the Netherlands makes it complicit in Gaza war crimes.", + "contentSnippet": "Rights groups said the exporting of F-35 jet parts to Israel from the Netherlands makes it complicit in Gaza war crimes.", + "guid": "https://www.aljazeera.com/?t=1702637154", + "categories": ["News"], + "isoDate": "2023-12-15T12:01:25.000Z" + }, + { + "title": "UN Humanitarian Chief: \u2018Gaza is special, not in a good way\u2019", + "link": "https://www.aljazeera.com/program/talk-to-al-jazeera/2023/12/15/un-humanitarian-chief-gaza-is-special-not-in-a-good-way?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 11:45:12 +0000", + "content": "Martin Griffiths on Gaza\u2019s dire conditions for aid operations and the voices that should be heard on Palestine\u2019s future.", + "contentSnippet": "Martin Griffiths on Gaza\u2019s dire conditions for aid operations and the voices that should be heard on Palestine\u2019s future.", + "guid": "https://www.aljazeera.com/?t=1702566365", + "categories": ["TV Shows"], + "isoDate": "2023-12-15T11:45:12.000Z" + }, + { + "title": "Kremlin has \u2018no information\u2019 on missing Putin critic Alexey Navalny", + "link": "https://www.aljazeera.com/news/2023/12/15/lawyers-have-not-seen-kremlin-critic-navalny-since-december-6-allies?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 11:34:38 +0000", + "content": "Russian opposition figure has been moved from penal colony and lawyers say they haven't seen him since last week.", + "contentSnippet": "Russian opposition figure has been moved from penal colony and lawyers say they haven't seen him since last week.", + "guid": "https://www.aljazeera.com/?t=1702632784", + "categories": ["News"], + "isoDate": "2023-12-15T11:34:38.000Z" + }, + { + "title": "China\u2019s big freeze blamed for Beijing subway crash", + "link": "https://www.aljazeera.com/news/2023/12/15/beijing-subway-collision-injures-515-people-amid-to-heavy-snowfall?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 10:40:41 +0000", + "content": "Extending recent erratic weather patterns, China has been hit by sudden freezing temperatures and heavy snowfall.", + "contentSnippet": "Extending recent erratic weather patterns, China has been hit by sudden freezing temperatures and heavy snowfall.", + "guid": "https://www.aljazeera.com/?t=1702631380", + "categories": ["News"], + "isoDate": "2023-12-15T10:40:41.000Z" + }, + { + "title": "Video said to show Palestinian detainees being paraded", + "link": "https://www.aljazeera.com/program/newsfeed/2023/12/15/video-said-to-show-palestinian-detainees-being-paraded?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 10:39:03 +0000", + "content": "Video shared on social media appears to show blindfolded Palestinian detainees being paraded by Israeli soldiers.", + "contentSnippet": "Video shared on social media appears to show blindfolded Palestinian detainees being paraded by Israeli soldiers.", + "guid": "https://www.aljazeera.com/?t=1702636519", + "categories": ["Show Types"], + "isoDate": "2023-12-15T10:39:03.000Z" + }, + { + "title": "Emaciated but alive: Gaza mothers, premature babies reunited in Egypt", + "link": "https://www.aljazeera.com/news/2023/12/15/gaza-mothers-and-premature-babies-reunited-in-egypt-after-weeks?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 10:24:12 +0000", + "content": "Two mothers who gave birth to premature babies in al-Shifa Hospital recall emotional rollercoaster of separation.", + "contentSnippet": "Two mothers who gave birth to premature babies in al-Shifa Hospital recall emotional rollercoaster of separation.", + "guid": "https://www.aljazeera.com/?t=1702378572", + "categories": ["News"], + "isoDate": "2023-12-15T10:24:12.000Z" + }, + { + "title": "MSF suspends work in Haiti emergency centre after armed group kills patient", + "link": "https://www.aljazeera.com/news/2023/12/15/msf-suspends-work-at-hatian-hospital-after-armed-group-kill-patient?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 10:24:08 +0000", + "content": "One of the last international groups providing healthcare in capital says it can't work if 'threatened by violence'.\r\n", + "contentSnippet": "One of the last international groups providing healthcare in capital says it can't work if 'threatened by violence'.", + "guid": "https://www.aljazeera.com/?t=1702630445", + "categories": ["News"], + "isoDate": "2023-12-15T10:24:08.000Z" + }, + { + "title": "Adapting in the face of climate change in rural Kenya", + "link": "https://www.aljazeera.com/gallery/2023/12/15/adapting-in-the-face-of-climate-change-in-rural-kenya?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 09:10:49 +0000", + "content": "For farmers across the globe, access to reliable weather and climate data is critical in adapting to a new normal. ", + "contentSnippet": "For farmers across the globe, access to reliable weather and climate data is critical in adapting to a new normal.", + "guid": "https://www.aljazeera.com/?t=1702589180", + "categories": ["Gallery"], + "isoDate": "2023-12-15T09:10:49.000Z" + }, + { + "title": "Eleven security personnel killed in Iran police station attack", + "link": "https://www.aljazeera.com/news/2023/12/15/eleven-security-personnel-killed-in-iran-police-station-attack-state-tv?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 08:56:23 +0000", + "content": "Several wounded in shooting in province of Sistan-Baluchestan which borders Afghanistan and Pakistan.", + "contentSnippet": "Several wounded in shooting in province of Sistan-Baluchestan which borders Afghanistan and Pakistan.", + "guid": "https://www.aljazeera.com/?t=1702625311", + "categories": ["News"], + "isoDate": "2023-12-15T08:56:23.000Z" + }, + { + "title": "Police and soldiers killed as more violence flares in northwest Pakistan", + "link": "https://www.aljazeera.com/news/2023/12/15/two-officers-killed-in-attack-on-police-station-in-northwest-pakistan?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 08:54:33 +0000", + "content": "The second attack this week on police posts in Khyber Pakhtunkhwa also saw three attackers killed.", + "contentSnippet": "The second attack this week on police posts in Khyber Pakhtunkhwa also saw three attackers killed.", + "guid": "https://www.aljazeera.com/?t=1702621447", + "categories": ["News"], + "isoDate": "2023-12-15T08:54:33.000Z" + }, + { + "title": "Global coal use to reach record high in 2023, energy agency says", + "link": "https://www.aljazeera.com/news/2023/12/15/global-coal-use-to-reach-record-high-in-2023-iea?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 08:25:22 +0000", + "content": "IEA report says demand is expected to grow in India, China but decline in United States, European Union.", + "contentSnippet": "IEA report says demand is expected to grow in India, China but decline in United States, European Union.", + "guid": "https://www.aljazeera.com/?t=1702621265", + "categories": ["News"], + "isoDate": "2023-12-15T08:25:22.000Z" + }, + { + "title": "Israel-Hamas war: List of key events, day 70", + "link": "https://www.aljazeera.com/news/2023/12/15/israel-hamas-war-list-of-key-events-day-70?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 07:56:49 +0000", + "content": "Raids continue on Jenin and Kamal Adwan Hospital amid mass protests for ceasefire - here are the major updates.", + "contentSnippet": "Raids continue on Jenin and Kamal Adwan Hospital amid mass protests for ceasefire - here are the major updates.", + "guid": "https://www.aljazeera.com/?t=1702617996", + "categories": ["News"], + "isoDate": "2023-12-15T07:56:49.000Z" + }, + { + "title": "US Yazidis sue France\u2019s Lafarge for aiding ISIL violence", + "link": "https://www.aljazeera.com/news/2023/12/15/yazidis-in-the-us-file-lawsuit-against-french-company-lafarge-for-aiding-is?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 07:47:07 +0000", + "content": "The French cement maker is accused of abetting violence and terrorism by providing supplies for tunnels and prisons.", + "contentSnippet": "The French cement maker is accused of abetting violence and terrorism by providing supplies for tunnels and prisons.", + "guid": "https://www.aljazeera.com/?t=1702618027", + "categories": ["News"], + "isoDate": "2023-12-15T07:47:07.000Z" + }, + { + "title": "Diseases spread in Gaza amid health system collapse, Israeli strikes", + "link": "https://www.aljazeera.com/gallery/2023/12/15/photos-amid-deadly-israeli-strikes-people-in-gaza-face-a-storm-of-diseases?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 07:30:28 +0000", + "content": "WHO says diarrhoea cases surged 66 percent among children. Meningitis, chickenpox, jaundice also reported.", + "contentSnippet": "WHO says diarrhoea cases surged 66 percent among children. Meningitis, chickenpox, jaundice also reported.", + "guid": "https://www.aljazeera.com/?t=1702609093", + "categories": ["News"], + "isoDate": "2023-12-15T07:30:28.000Z" + }, + { + "title": "Japan expands sanctions over Russia\u2019s war in Ukraine", + "link": "https://www.aljazeera.com/economy/2023/12/15/japan-expands-sanctions-over-russias-war-in-ukraine?traffic_source=rss", + "pubDate": "Fri, 15 Dec 2023 07:14:15 +0000", + "content": "Tokyo adds 57 Russian new organisations to its trade blacklist in latest measures to punish Moscow.", + "contentSnippet": "Tokyo adds 57 Russian new organisations to its trade blacklist in latest measures to punish Moscow.", + "guid": "https://www.aljazeera.com/?t=1702619417", + "categories": ["Economy"], + "isoDate": "2023-12-15T07:14:15.000Z" + }, + { + "title": "Confusion, speculation in Iran after twin blasts kill more than 80 people", + "link": "https://www.aljazeera.com/news/2024/1/4/confusion-speculation-in-iran-after-twin-blasts-kill-more-than-80-people?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 10:18:38 +0000", + "content": "Iranians mark day of mourning after bombings kill at least 84 people, leave more than 280 wounded.", + "contentSnippet": "Iranians mark day of mourning after bombings kill at least 84 people, leave more than 280 wounded.", + "guid": "https://www.aljazeera.com/?t=1704354849", + "categories": ["News"], + "isoDate": "2024-01-04T10:18:38.000Z" + }, + { + "title": "Israel\u2019s war on Gaza: List of key events, day 90", + "link": "https://www.aljazeera.com/news/2024/1/4/israels-war-on-gaza-list-of-key-events-day-90?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 10:06:51 +0000", + "content": "Israel's plan for Palestinian resettlement is condemned as the ICJ confirms public hearings. Here is the latest:", + "contentSnippet": "Israel's plan for Palestinian resettlement is condemned as the ICJ confirms public hearings. Here is the latest:", + "guid": "https://www.aljazeera.com/?t=1704344618", + "categories": ["News"], + "isoDate": "2024-01-04T10:06:51.000Z" + }, + { + "title": "Bangladesh elections mark a pro-China tipping point in South Asia", + "link": "https://www.aljazeera.com/opinions/2024/1/4/bangladesh-elections-mark-a-pro-china-tipping-point-in-south-asia?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 09:30:15 +0000", + "content": "Beijing will celebrate a return of the Awami League the most. But Dhaka might struggle to cope.", + "contentSnippet": "Beijing will celebrate a return of the Awami League the most. But Dhaka might struggle to cope.", + "guid": "https://www.aljazeera.com/?t=1704354824", + "categories": ["Opinions"], + "isoDate": "2024-01-04T09:30:15.000Z" + }, + { + "title": "School in Thailand offers safe space for harassed environment activists", + "link": "https://www.aljazeera.com/gallery/2024/1/4/photos-school-in-thailand-offers-safe-space-for-harassed-environment-activists?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 09:27:05 +0000", + "content": "Focus at EarthRights School is on learning from a community's fight to protect their land.", + "contentSnippet": "Focus at EarthRights School is on learning from a community's fight to protect their land.", + "guid": "https://www.aljazeera.com/?t=1701388355", + "categories": ["Gallery"], + "isoDate": "2024-01-04T09:27:05.000Z" + }, + { + "title": "Israeli military strikes south Lebanon stoking fears of widening conflict", + "link": "https://www.aljazeera.com/news/2024/1/4/israeli-military-strikes-south-lebanon-stoking-fears-of-widening-conflict?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 09:11:59 +0000", + "content": "Attacks on Hezbollah military infrastructure follow the killing of Hamas leader in Beirut, which Israel has not claimed.", + "contentSnippet": "Attacks on Hezbollah military infrastructure follow the killing of Hamas leader in Beirut, which Israel has not claimed.", + "guid": "https://www.aljazeera.com/?t=1704347414", + "categories": ["News"], + "isoDate": "2024-01-04T09:11:59.000Z" + }, + { + "title": "For feminists, silence on Gaza is no longer an option", + "link": "https://www.aljazeera.com/opinions/2024/1/4/for-feminists-silence-on-gaza-is-no-longer-an-option?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 08:43:01 +0000", + "content": "It is a feminist responsibility to call for an immediate ceasefire in Gaza.", + "contentSnippet": "It is a feminist responsibility to call for an immediate ceasefire in Gaza.", + "guid": "https://www.aljazeera.com/?t=1704292293", + "categories": ["Opinions"], + "isoDate": "2024-01-04T08:43:01.000Z" + }, + { + "title": "Bangladesh holding \u2018sham\u2019 election: Exiled opposition leader Tarique Rahman", + "link": "https://www.aljazeera.com/news/2024/1/4/bangladesh-holding-sham-election-exiled-opposition-leader-tarique-rahman?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 08:26:08 +0000", + "content": "Son of jailed two-time PM Khaleda Zia defends the BNP's boycott of Sunday's vote, saying it has 'predetermined' outcome.", + "contentSnippet": "Son of jailed two-time PM Khaleda Zia defends the BNP's boycott of Sunday's vote, saying it has 'predetermined' outcome.", + "guid": "https://www.aljazeera.com/?t=1704352874", + "categories": ["News"], + "isoDate": "2024-01-04T08:26:08.000Z" + }, + { + "title": "Jewish protesters calling for Gaza ceasefire shut down California assembly", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/4/jewish-protesters-calling-for-gaza-ceasefire-shut-down-california-assembly?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 08:08:34 +0000", + "content": "Pro-Palestinian protesters disrupted the first day of California legislature by calling for a ceasefire in Gaza.", + "contentSnippet": "Pro-Palestinian protesters disrupted the first day of California legislature by calling for a ceasefire in Gaza.", + "guid": "https://www.aljazeera.com/?t=1704353875", + "categories": ["Show Types"], + "isoDate": "2024-01-04T08:08:34.000Z" + }, + { + "title": "Gaza women and the isdal robes that shield them as war strips their privacy", + "link": "https://www.aljazeera.com/features/2024/1/4/gaza-women-isdal-robes-them-war-strips-their-privacy?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 07:28:54 +0000", + "content": "Women and girls rely on this cover-up garment to help them face the most difficult moments of Israel's war on Gaza.", + "contentSnippet": "Women and girls rely on this cover-up garment to help them face the most difficult moments of Israel's war on Gaza.", + "guid": "https://www.aljazeera.com/?t=1704293792", + "categories": ["Features"], + "isoDate": "2024-01-04T07:28:54.000Z" + }, + { + "title": "Netanyahu\u2019s bait: Why Israel might have killed Hamas leaders in Beirut now", + "link": "https://www.aljazeera.com/news/2024/1/4/netanyahus-bait-why-israel-might-have-killed-hamas-leaders-in-beirut-now?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 06:51:35 +0000", + "content": "The assassinations bear the marks of an Israeli operation. But the timing might also be about Israeli domestic politics.", + "contentSnippet": "The assassinations bear the marks of an Israeli operation. But the timing might also be about Israeli domestic politics.", + "guid": "https://www.aljazeera.com/?t=1704345875", + "categories": ["News"], + "isoDate": "2024-01-04T06:51:35.000Z" + }, + { + "title": "Hunger hits displaced Palestinians and animals in Gaza zoo", + "link": "https://www.aljazeera.com/gallery/2024/1/4/photos-hunger-hits-displaced-palestinians-and-animals-in-gaza-zoo?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 06:50:02 +0000", + "content": "'Living among the animals is more merciful than what we get from the warplanes in the sky.'", + "contentSnippet": "'Living among the animals is more merciful than what we get from the warplanes in the sky.'", + "guid": "https://www.aljazeera.com/?t=1704307233", + "categories": ["News"], + "isoDate": "2024-01-04T06:50:02.000Z" + }, + { + "title": "Photos: Palestinians flee Nuseirat refugee camp once again amid attacks", + "link": "https://www.aljazeera.com/gallery/2024/1/4/photos-people-fleeing-nuseirat-camp?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 05:22:40 +0000", + "content": "Residents say the Israeli army issued new evacuation orders as it continues to intensify attacks on the area.", + "contentSnippet": "Residents say the Israeli army issued new evacuation orders as it continues to intensify attacks on the area.", + "guid": "https://www.aljazeera.com/?t=1704290823", + "categories": ["News"], + "isoDate": "2024-01-04T05:22:40.000Z" + }, + { + "title": "Japanese rescuers race to find survivors as quake death toll rises to 78", + "link": "https://www.aljazeera.com/news/2024/1/4/japanese-rescuers-race-to-find-survivors-as-quake-death-toll-rises-to-78?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 04:59:03 +0000", + "content": "Scale of damage to roads and poor weather hamper relief efforts, three days after quake off Noto Peninsula.", + "contentSnippet": "Scale of damage to roads and poor weather hamper relief efforts, three days after quake off Noto Peninsula.", + "guid": "https://www.aljazeera.com/?t=1704339841", + "categories": ["News"], + "isoDate": "2024-01-04T04:59:03.000Z" + }, + { + "title": "Initial tranche of nearly 950 Epstein court documents released", + "link": "https://www.aljazeera.com/news/2024/1/4/initial-tranche-of-nearly-950-epstein-court-documents-released?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 03:37:27 +0000", + "content": "Papers include names of dozens of powerful men who associated with financier and sex trafficker Jeffrey Epstein.", + "contentSnippet": "Papers include names of dozens of powerful men who associated with financier and sex trafficker Jeffrey Epstein.", + "guid": "https://www.aljazeera.com/?t=1704330780", + "categories": ["News"], + "isoDate": "2024-01-04T03:37:27.000Z" + }, + { + "title": "Russia-Ukraine war: List of key events, day 680", + "link": "https://www.aljazeera.com/news/2024/1/4/russia-ukraine-war-list-of-key-events-day-680?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 01:03:25 +0000", + "content": "As the war enters is 680th day, these are the main developments.", + "contentSnippet": "As the war enters is 680th day, these are the main developments.", + "guid": "https://www.aljazeera.com/?t=1704326220", + "categories": ["News"], + "isoDate": "2024-01-04T01:03:25.000Z" + }, + { + "title": "Why temples are a top campaign stop in Taiwan\u2019s election", + "link": "https://www.aljazeera.com/news/2024/1/4/why-temples-are-a-top-campaign-stop-in-taiwans-election?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 00:45:08 +0000", + "content": "Temples help politicians meet local voters, but there are concerns some may be too close to Beijing.", + "contentSnippet": "Temples help politicians meet local voters, but there are concerns some may be too close to Beijing.", + "guid": "https://www.aljazeera.com/?t=1704258911", + "categories": ["News"], + "isoDate": "2024-01-04T00:45:08.000Z" + }, + { + "title": "US led coalition warns Houthis of \u2018consequences\u2019 after Red Sea attacks", + "link": "https://www.aljazeera.com/news/2024/1/3/us-led-coalition-warns-houthis-of-consequences-after-red-sea-attacks?traffic_source=rss", + "pubDate": "Wed, 03 Jan 2024 21:02:20 +0000", + "content": "The Houthis have argued that their attacks on ship linked to Israel are an act of solidarity with Gaza.", + "contentSnippet": "The Houthis have argued that their attacks on ship linked to Israel are an act of solidarity with Gaza.", + "guid": "https://www.aljazeera.com/?t=1704313199", + "categories": ["News"], + "isoDate": "2024-01-03T21:02:20.000Z" + }, + { + "title": "Israel\u2019s controversial use of weapons in Gaza", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/3/israels-controversial-use-of-weapons-in-gaza?traffic_source=rss", + "pubDate": "Wed, 03 Jan 2024 20:53:55 +0000", + "content": "Nabila Bana takes a look at some of the weapons Israel is allegedly using and why their use could be leading to high", + "contentSnippet": "Nabila Bana takes a look at some of the weapons Israel is allegedly using and why their use could be leading to high", + "guid": "https://www.aljazeera.com/?t=1704314975", + "categories": ["Show Types"], + "isoDate": "2024-01-03T20:53:55.000Z" + }, + { + "title": "Hezbollah leader warns Israel of war \u2018without restrictions\u2019", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/3/hezbollah-leader-warns-israel-of-war-without-restrictions?traffic_source=rss", + "pubDate": "Wed, 03 Jan 2024 20:17:28 +0000", + "content": "Hezbollah leader warns Israel of war 'without restrictions'", + "contentSnippet": "Hezbollah leader warns Israel of war 'without restrictions'", + "guid": "https://www.aljazeera.com/?t=1704312844", + "categories": ["Show Types"], + "isoDate": "2024-01-03T20:17:28.000Z" + }, + { + "title": "\u2018Heinous\u2019: World reacts to twin blasts that kill dozens in Iran", + "link": "https://www.aljazeera.com/news/2024/1/3/heinous-world-reacts-to-twin-blasts-that-kill-dozens-in-iran?traffic_source=rss", + "pubDate": "Wed, 03 Jan 2024 20:11:54 +0000", + "content": "Iran\u2019s supreme leader, Ayatollah Ali Khamenei, promised a 'harsh response' to attack in southeastern city of Kerman.", + "contentSnippet": "Iran\u2019s supreme leader, Ayatollah Ali Khamenei, promised a 'harsh response' to attack in southeastern city of Kerman.", + "guid": "https://www.aljazeera.com/?t=1704305497", + "categories": ["News"], + "isoDate": "2024-01-03T20:11:54.000Z" + }, + { + "title": "Hezbollah chief says group won\u2019t \u2018be silent\u2019 after killing of Hamas leader", + "link": "https://www.aljazeera.com/news/2024/1/3/hezbollah-chief-says-group-wont-be-silent-after-killing-of-hamas-leader?traffic_source=rss", + "pubDate": "Wed, 03 Jan 2024 19:13:06 +0000", + "content": "Hassan Nasrallah offers condolences to Hamas after the killing of its deputy leader Saleh al-Arouri.", + "contentSnippet": "Hassan Nasrallah offers condolences to Hamas after the killing of its deputy leader Saleh al-Arouri.", + "guid": "https://www.aljazeera.com/?t=1704305646", + "categories": ["News"], + "isoDate": "2024-01-03T19:13:06.000Z" + }, + { + "title": "Explosions kill dozens gathered for anniversary of Soleimani assassination", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/3/explosions-kill-dozens-gathered-for-anniversary-of-soleimani-assassination?traffic_source=rss", + "pubDate": "Wed, 03 Jan 2024 18:51:19 +0000", + "content": "Explosions kill dozens gathered for anniversary of former IRGC General Soleimani\u2019s assassination ", + "contentSnippet": "Explosions kill dozens gathered for anniversary of former IRGC General Soleimani\u2019s assassination", + "guid": "https://www.aljazeera.com/?t=1704307713", + "categories": ["Show Types"], + "isoDate": "2024-01-03T18:51:19.000Z" + }, + { + "title": "Russia, Ukraine exchange hundreds of prisoners in largest release of war", + "link": "https://www.aljazeera.com/news/2024/1/3/russia-ukraine-exchange-hundreds-of-prisoners-in-largest-release-of-war?traffic_source=rss", + "pubDate": "Wed, 03 Jan 2024 18:15:36 +0000", + "content": "More than 470 prisoners of war return home on both sides after the swap deals stalled in the latter half of 2023.", + "contentSnippet": "More than 470 prisoners of war return home on both sides after the swap deals stalled in the latter half of 2023.", + "guid": "https://www.aljazeera.com/?t=1704301703", + "categories": ["News"], + "isoDate": "2024-01-03T18:15:36.000Z" + }, + { + "title": "Rory McIlroy would consider playing LIV if it turns into \u2018IPL of golf\u2019", + "link": "https://www.aljazeera.com/sports/2024/1/3/rory-mc-ilroy-liv-golf-ipl-money-jon-rahm-pga-ryder-cup?traffic_source=rss", + "pubDate": "Wed, 03 Jan 2024 17:53:33 +0000", + "content": "McIlroy has softened his stance on LIV Golf and says he has accepted it as 'part of our sport now'.", + "contentSnippet": "McIlroy has softened his stance on LIV Golf and says he has accepted it as 'part of our sport now'.", + "guid": "https://www.aljazeera.com/?t=1704297750", + "categories": ["Sports"], + "isoDate": "2024-01-03T17:53:33.000Z" + }, + { + "title": "South Africa trail India after 23 wickets fall on frenetic day of cricket", + "link": "https://www.aljazeera.com/sports/2024/1/3/south-africa-vs-india-second-test-cape-town-23-wickets-mohammed-siraj-dean-elgar-virat-kohli?traffic_source=rss", + "pubDate": "Wed, 03 Jan 2024 17:52:49 +0000", + "content": "The second Test between South Africa and India gets off to a manic start as both teams suffer batting collapses.", + "contentSnippet": "The second Test between South Africa and India gets off to a manic start as both teams suffer batting collapses.", + "guid": "https://www.aljazeera.com/?t=1704302429", + "categories": ["Sports"], + "isoDate": "2024-01-03T17:52:49.000Z" + }, + { + "title": "Courtroom drama as convicted felon attacks judge during sentencing", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/4/courtroom-drama-as-convicted-felon-attacks-judge-during-sentencing?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 11:11:45 +0000", + "content": "A defendant jumped over a courtroom bench to attack a judge in Nevada. Moments earlier, he asked for leniency.", + "contentSnippet": "A defendant jumped over a courtroom bench to attack a judge in Nevada. Moments earlier, he asked for leniency.", + "guid": "https://www.aljazeera.com/?t=1704361096", + "categories": ["Show Types"], + "isoDate": "2024-01-04T11:11:45.000Z" + }, + { + "title": "Japan races to find earthquake survivors five days on", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/5/japan-races-to-find-earthquake-survivors-five-days-on?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 13:27:06 +0000", + "content": "As Japan's earthquake rescue efforts enter its fifth day, there are growing concerns about resource availability.", + "contentSnippet": "As Japan's earthquake rescue efforts enter its fifth day, there are growing concerns about resource availability.", + "guid": "https://www.aljazeera.com/?t=1704460258", + "categories": ["Show Types"], + "isoDate": "2024-01-05T13:27:06.000Z" + }, + { + "title": "Why is President Ruto in a row with Kenya\u2019s judiciary? A simple guide", + "link": "https://www.aljazeera.com/news/2024/1/5/why-is-president-ruto-in-a-row-with-kenyas-judiciary-a-simple-guide?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 13:16:19 +0000", + "content": "The president's outbursts come after a series of rulings against his reforms since he took office in August 2022.", + "contentSnippet": "The president's outbursts come after a series of rulings against his reforms since he took office in August 2022.", + "guid": "https://www.aljazeera.com/?t=1704442489", + "categories": ["News"], + "isoDate": "2024-01-05T13:16:19.000Z" + }, + { + "title": "What is Israel\u2019s latest \u2018day after\u2019 plan for Gaza?", + "link": "https://www.aljazeera.com/news/2024/1/5/what-is-israels-latest-day-after-plan-for-gaza?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 13:09:44 +0000", + "content": "In a vision laid out for post-war Gaza, defence minister Gallant said an undefined Palestinian entity will take charge.", + "contentSnippet": "In a vision laid out for post-war Gaza, defence minister Gallant said an undefined Palestinian entity will take charge.", + "guid": "https://www.aljazeera.com/?t=1704436688", + "categories": ["News"], + "isoDate": "2024-01-05T13:09:44.000Z" + }, + { + "title": "Why Bangladesh\u2019s opposition is boycotting the election", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/5/why-bangladeshs-opposition-is-boycotting-the-election?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 12:59:04 +0000", + "content": "Bangladesh's main opposition party is boycotting Sunday's election.", + "contentSnippet": "Bangladesh's main opposition party is boycotting Sunday's election.", + "guid": "https://www.aljazeera.com/?t=1704448411", + "categories": ["Show Types"], + "isoDate": "2024-01-05T12:59:04.000Z" + }, + { + "title": "Iran\u2019s Raisi promises retaliation at funeral for victims of twin bombings", + "link": "https://www.aljazeera.com/news/2024/1/5/irans-raisi-promises-retaliation-at-funeral-for-victims-of-twin-bombings?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 11:48:04 +0000", + "content": "Attack claimed by ISIL (ISIS) took place in Kerman on Wednesday during a memorial for top commander Qassem Soleimani.", + "contentSnippet": "Attack claimed by ISIL (ISIS) took place in Kerman on Wednesday during a memorial for top commander Qassem Soleimani.", + "guid": "https://www.aljazeera.com/?t=1704447435", + "categories": ["News"], + "isoDate": "2024-01-05T11:48:04.000Z" + }, + { + "title": "Bans and boycotts: The troubled history of Bangladesh\u2019s elections", + "link": "https://www.aljazeera.com/news/2024/1/5/bangladesh-elections-a-timeline-of-controversy?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 11:36:19 +0000", + "content": "Since independence in 1971, only a handful of the country's elections have been considered 'free and fair'.", + "contentSnippet": "Since independence in 1971, only a handful of the country's elections have been considered 'free and fair'.", + "guid": "https://www.aljazeera.com/?t=1704444289", + "categories": ["News"], + "isoDate": "2024-01-05T11:36:19.000Z" + }, + { + "title": "What do we know about the school shooting in Iowa?", + "link": "https://www.aljazeera.com/news/2024/1/5/what-to-know-about-the-shooting-in-perry-iowa?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 10:45:03 +0000", + "content": "Republicans have reacted with prayers following the Perry school shooting but no proposals to change gun laws.", + "contentSnippet": "Republicans have reacted with prayers following the Perry school shooting but no proposals to change gun laws.", + "guid": "https://www.aljazeera.com/?t=1704443866", + "categories": ["News"], + "isoDate": "2024-01-05T10:45:03.000Z" + }, + { + "title": "Pakistan\u2019s Senate approves resolution to delay February 8 general elections", + "link": "https://www.aljazeera.com/news/2024/1/5/pakistan-senate-approves-resolution-to-delay-february-8-elections-reports?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 10:08:35 +0000", + "content": "Independent senator moves the non-binding resolution to delay the vote, citing security concerns and harsh weather.", + "contentSnippet": "Independent senator moves the non-binding resolution to delay the vote, citing security concerns and harsh weather.", + "guid": "https://www.aljazeera.com/?t=1704449195", + "categories": ["News"], + "isoDate": "2024-01-05T10:08:35.000Z" + }, + { + "title": "The (not so) surprising revelations of the Epstein list", + "link": "https://www.aljazeera.com/opinions/2024/1/5/the-not-so-surprising-revelations-of-the-epstein-list?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 10:00:56 +0000", + "content": "The list is just another a reminder that we live under a system where elite domination remains above the law.", + "contentSnippet": "The list is just another a reminder that we live under a system where elite domination remains above the law.", + "guid": "https://www.aljazeera.com/?t=1704434645", + "categories": ["Opinions"], + "isoDate": "2024-01-05T10:00:56.000Z" + }, + { + "title": "Drop the charges against Indigo \u2018Peace 11\u2019 protesters", + "link": "https://www.aljazeera.com/opinions/2024/1/5/drop-the-charges-against-indigo-peace-11-protesters?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 09:57:57 +0000", + "content": "Protesting a business for supporting the Israeli military is not anti-Semitic, and should not be treated as such.", + "contentSnippet": "Protesting a business for supporting the Israeli military is not anti-Semitic, and should not be treated as such.", + "guid": "https://www.aljazeera.com/?t=1704385950", + "categories": ["Opinions"], + "isoDate": "2024-01-05T09:57:57.000Z" + }, + { + "title": "\u2018He\u2019s breathing\u2019: My two hours under Gaza\u2019s rubble after an Israeli strike", + "link": "https://www.aljazeera.com/features/2024/1/5/hes-breathing-my-two-hours-under-gazas-rubble-after-an-israeli-strike?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 09:41:15 +0000", + "content": "A father's radio, a mother's reassurance - and then, in an instant, darkness and pain. This is life under Israeli attack", + "contentSnippet": "A father's radio, a mother's reassurance - and then, in an instant, darkness and pain. This is life under Israeli attack", + "guid": "https://www.aljazeera.com/?t=1704388160", + "categories": ["News"], + "isoDate": "2024-01-05T09:41:15.000Z" + }, + { + "title": "Oscar Pistorius released on parole after serving nine years for murder", + "link": "https://www.aljazeera.com/news/2024/1/5/oscar-pistorius-released-on-parole-after-serving-nine-years-for-murder?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 09:36:20 +0000", + "content": "Former Paralympic athlete was serving 13-year sentence for Valentine's Day shooting of girlfriend Reeva Steenkamp.", + "contentSnippet": "Former Paralympic athlete was serving 13-year sentence for Valentine's Day shooting of girlfriend Reeva Steenkamp.", + "guid": "https://www.aljazeera.com/?t=1704438276", + "categories": ["Sports"], + "isoDate": "2024-01-05T09:36:20.000Z" + }, + { + "title": "Israel launches attacks across Gaza amid spike in regional tensions", + "link": "https://www.aljazeera.com/gallery/2024/1/5/photos-israel-launches-attacks-across-gaza-amid-spike-in-regional-tensions?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 08:47:08 +0000", + "content": "Health ministry in Gaza says 125 people have been killed and 318 injured in a 24-hour period.", + "contentSnippet": "Health ministry in Gaza says 125 people have been killed and 318 injured in a 24-hour period.", + "guid": "https://www.aljazeera.com/?t=1704404372", + "categories": ["News"], + "isoDate": "2024-01-05T08:47:08.000Z" + }, + { + "title": "North Korea fires artillery towards South\u2019s islands, prompting evacuations", + "link": "https://www.aljazeera.com/news/2024/1/5/north-korea-fires-artillery-towards-souths-islands-prompting-evacuations?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 08:01:13 +0000", + "content": "South Korea condemns move as 'act of provocation that escalates tension and threatens peace on the Korean Peninsula'.", + "contentSnippet": "South Korea condemns move as 'act of provocation that escalates tension and threatens peace on the Korean Peninsula'.", + "guid": "https://www.aljazeera.com/?t=1704432287", + "categories": ["News"], + "isoDate": "2024-01-05T08:01:13.000Z" + }, + { + "title": "Indian navy intercepts Liberian-flagged vessel hijacked in the Arabian Sea", + "link": "https://www.aljazeera.com/news/2024/1/5/india-navy-says-responding-to-liberian-flagged-vessel-hijack-in-arabian-sea?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 07:54:46 +0000", + "content": "The navy says its commandos boarded the warship to render assistance after the vessel issued a hijacking distress call.", + "contentSnippet": "The navy says its commandos boarded the warship to render assistance after the vessel issued a hijacking distress call.", + "guid": "https://www.aljazeera.com/?t=1704439196", + "categories": ["News"], + "isoDate": "2024-01-05T07:54:46.000Z" + }, + { + "title": "\u2018We\u2019ll have more\u2019: Palestinians in Lebanon lay killed Hamas leader to rest", + "link": "https://www.aljazeera.com/news/2024/1/5/well-have-more-palestinians-in-lebanon-lay-killed-hamas-leader-to-rest?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 07:51:33 +0000", + "content": "Palestinians refugees from across the country pay their respects to top Hamas commander Saleh al-Arouri.", + "contentSnippet": "Palestinians refugees from across the country pay their respects to top Hamas commander Saleh al-Arouri.", + "guid": "https://www.aljazeera.com/?t=1704394983", + "categories": ["News"], + "isoDate": "2024-01-05T07:51:33.000Z" + }, + { + "title": "Israel\u2019s war on Gaza: List of key events, day 91", + "link": "https://www.aljazeera.com/news/2024/1/5/israels-war-on-gaza-list-of-key-events-day-91?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 07:46:45 +0000", + "content": "Israel brings a 'day after' plan for Gaza and al-Arouri's funeral is held. Here's the latest:", + "contentSnippet": "Israel brings a 'day after' plan for Gaza and al-Arouri's funeral is held. Here's the latest:", + "guid": "https://www.aljazeera.com/?t=1704431731", + "categories": ["News"], + "isoDate": "2024-01-05T07:46:45.000Z" + }, + { + "title": "Desert swallows livelihoods as climate shocks continue in northeast Nigeria", + "link": "https://www.aljazeera.com/features/2024/1/5/desert-swallows-livelihoods-as-climate-shocks-continue-in-northeast-nigeria?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 07:25:21 +0000", + "content": "More communities on the fringes of the Sahara desert say they are losing their farmlands and homes.", + "contentSnippet": "More communities on the fringes of the Sahara desert say they are losing their farmlands and homes.", + "guid": "https://www.aljazeera.com/?t=1704111949", + "categories": ["Features"], + "isoDate": "2024-01-05T07:25:21.000Z" + }, + { + "title": "Senegal top court rejects opposition leader Sonko\u2019s appeal in libel case", + "link": "https://www.aljazeera.com/news/2024/1/5/senegal-top-court-rejects-opposition-leader-sonkos-appeal-in-libel-case?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 07:11:22 +0000", + "content": "Ruling could jeopardise popular politician's chances of running in February's presidential elections.", + "contentSnippet": "Ruling could jeopardise popular politician's chances of running in February's presidential elections.", + "guid": "https://www.aljazeera.com/?t=1704435204", + "categories": ["News"], + "isoDate": "2024-01-05T07:11:22.000Z" + }, + { + "title": "Four killed, many injured in two-train collision in Indonesia\u2019s West Java", + "link": "https://www.aljazeera.com/news/2024/1/5/three-killed-28-injured-in-two-train-collision-in-indonesias-west-java?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 07:08:25 +0000", + "content": "A long-distance train from Indonesia's second-largest city, Surabaya, collided with a commuter train near Bandung.", + "contentSnippet": "A long-distance train from Indonesia's second-largest city, Surabaya, collided with a commuter train near Bandung.", + "guid": "https://www.aljazeera.com/?t=1704435906", + "categories": ["News"], + "isoDate": "2024-01-05T07:08:25.000Z" + }, + { + "title": "India\u2019s stateless babies: How lawless asylum rules leave refugees in limbo", + "link": "https://www.aljazeera.com/features/2024/1/5/stateless-babies-in-northeast-india-refugee-mothers-pray-for-nationhood?traffic_source=rss", + "pubDate": "Fri, 05 Jan 2024 06:07:03 +0000", + "content": "Without a refugee law, India is an uncertain home for new waves of asylum seekers. Will the 2024 election change that? ", + "contentSnippet": "Without a refugee law, India is an uncertain home for new waves of asylum seekers. Will the 2024 election change that?", + "guid": "https://www.aljazeera.com/?t=1703308674", + "categories": ["News"], + "isoDate": "2024-01-05T06:07:03.000Z" + }, + { + "title": "Asia\u2019s business heirs look beyond profits, hoping to escape parents\u2019 shadow", + "link": "https://www.aljazeera.com/economy/2024/1/4/asias-business-heirs-look-beyond-profits-hoping-to-escape-parents-shadow?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 22:09:25 +0000", + "content": "Second- and third-generation family businesses say sustainable investments are a priority like never before.", + "contentSnippet": "Second- and third-generation family businesses say sustainable investments are a priority like never before.", + "guid": "https://www.aljazeera.com/?t=1703835971", + "categories": ["News"], + "isoDate": "2024-01-04T22:09:25.000Z" + }, + { + "title": "Israeli defence minister outlines new phase in Gaza war", + "link": "https://www.aljazeera.com/news/2024/1/4/israeli-defence-minister-outlines-new-phase-in-gaza-war?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 21:34:29 +0000", + "content": "Yoav\u00a0Gallant\u00a0says Israeli officials want a 'Palestinian entity' to run civilian affairs in Gaza after the war.", + "contentSnippet": "Yoav\u00a0Gallant\u00a0says Israeli officials want a 'Palestinian entity' to run civilian affairs in Gaza after the war.", + "guid": "https://www.aljazeera.com/?t=1704399754", + "categories": ["News"], + "isoDate": "2024-01-04T21:34:29.000Z" + }, + { + "title": "Senior Hamas official Saleh al-Arouri\u2019s funeral held", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/4/senior-hamas-official-saleh-al-arouris-funeral-held?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 20:58:26 +0000", + "content": "Mourners gather for senior Hamas leader Saleh al-Arouri\u2019s funeral in Beirut. ", + "contentSnippet": "Mourners gather for senior Hamas leader Saleh al-Arouri\u2019s funeral in Beirut.", + "guid": "https://www.aljazeera.com/?t=1704401598", + "categories": ["Show Types"], + "isoDate": "2024-01-04T20:58:26.000Z" + }, + { + "title": "Russia used North Korean missiles in Ukraine, US says", + "link": "https://www.aljazeera.com/news/2024/1/4/russia-used-north-korean-missiles-in-ukraine-us-says?traffic_source=rss", + "pubDate": "Thu, 04 Jan 2024 20:47:48 +0000", + "content": "The United States also expressed concerns that Russia is seeking close-range ballistic missiles from Iran.", + "contentSnippet": "The United States also expressed concerns that Russia is seeking close-range ballistic missiles from Iran.", + "guid": "https://www.aljazeera.com/?t=1704397900", + "categories": ["News"], + "isoDate": "2024-01-04T20:47:48.000Z" + }, + { + "title": "Gaza daily deaths exceed all other major conflicts in 21st century: Oxfam", + "link": "https://www.aljazeera.com/news/2024/1/11/gaza-daily-deaths-exceed-all-other-major-conflicts-in-21st-century-oxfam?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 21:05:29 +0000", + "content": "Human Rights Watch also says Israel\u2019s war has included 'acts of collective punishment that amount to war crimes'.", + "contentSnippet": "Human Rights Watch also says Israel\u2019s war has included 'acts of collective punishment that amount to war crimes'.", + "guid": "https://www.aljazeera.com/?t=1705002424", + "categories": ["News"], + "isoDate": "2024-01-11T21:05:29.000Z" + }, + { + "title": "Trump accuses New York attorney general of bias in court closing arguments", + "link": "https://www.aljazeera.com/news/2024/1/11/trump-accuses-new-york-attorney-general-of-bias-in-court-closing-arguments?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 20:35:02 +0000", + "content": "Trump's remarks come on final day of a trial over allegations that he habitually exaggerated his wealth. ", + "contentSnippet": "Trump's remarks come on final day of a trial over allegations that he habitually exaggerated his wealth.", + "guid": "https://www.aljazeera.com/?t=1705001202", + "categories": ["News"], + "isoDate": "2024-01-11T20:35:02.000Z" + }, + { + "title": "South Africa presents case to the ICJ accusing Israel of genocide in Gaza", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/11/south-africa-presents-case-to-the-icj-accusing-israel-of-genocide-in-gaza?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 20:20:27 +0000", + "content": "South Africa presents case to the ICJ accusing Israel of genocide in Gaza ", + "contentSnippet": "South Africa presents case to the ICJ accusing Israel of genocide in Gaza", + "guid": "https://www.aljazeera.com/?t=1705004206", + "categories": ["Show Types"], + "isoDate": "2024-01-11T20:20:27.000Z" + }, + { + "title": "Photos: Greek students protest government plan for private universities", + "link": "https://www.aljazeera.com/gallery/2024/1/11/photos-greek-students-protest-government-plan-for-private-universities?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 19:42:48 +0000", + "content": "Government expected to submit a bill to parliament that would permit private universities to operate inside Greece.", + "contentSnippet": "Government expected to submit a bill to parliament that would permit private universities to operate inside Greece.", + "guid": "https://www.aljazeera.com/?t=1704985635", + "categories": ["News"], + "isoDate": "2024-01-11T19:42:48.000Z" + }, + { + "title": "What plans does Washington have for Gaza?", + "link": "https://www.aljazeera.com/program/inside-story/2024/1/11/what-plans-does-washington-have-for-gaza?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 18:52:35 +0000", + "content": "In yet another Middle East visit, the US secretary of state has been rallying support from regional players.", + "contentSnippet": "In yet another Middle East visit, the US secretary of state has been rallying support from regional players.", + "guid": "https://www.aljazeera.com/?t=1704997203", + "categories": ["News"], + "isoDate": "2024-01-11T18:52:35.000Z" + }, + { + "title": "Fears simmer in Essequibo region as Venezuela eyes the disputed territory", + "link": "https://www.aljazeera.com/news/2024/1/11/fears-simmer-in-essequibo-region-as-venezuela-eyes-the-disputed-territory?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 18:49:19 +0000", + "content": "Essequibo residents express anxiety as Venezuela advances its claims over the region, largely seen as part of Guyana.", + "contentSnippet": "Essequibo residents express anxiety as Venezuela advances its claims over the region, largely seen as part of Guyana.", + "guid": "https://www.aljazeera.com/?t=1704990807", + "categories": ["News"], + "isoDate": "2024-01-11T18:49:19.000Z" + }, + { + "title": "Photos: The female marines Japan is training for war", + "link": "https://www.aljazeera.com/gallery/2024/1/11/photos-the-female-marines-japan-is-training-for-war?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 18:39:33 +0000", + "content": "Japan's first marine unit since World War II is an elite force. But the 2,400-person unit only includes about 40 women.", + "contentSnippet": "Japan's first marine unit since World War II is an elite force. But the 2,400-person unit only includes about 40 women.", + "guid": "https://www.aljazeera.com/?t=1704982951", + "categories": ["Gallery"], + "isoDate": "2024-01-11T18:39:33.000Z" + }, + { + "title": "UN \u2018concerned\u2019 Taliban detaining Afghan women for dress code violations", + "link": "https://www.aljazeera.com/news/2024/1/11/un-concerned-taliban-detaining-afghan-women-for-dress-code-violations?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 18:07:31 +0000", + "content": "Taliban chief spokesman Zabihullah Mujahid says the UN preoccupation with Afghan women is unwarranted.", + "contentSnippet": "Taliban chief spokesman Zabihullah Mujahid says the UN preoccupation with Afghan women is unwarranted.", + "guid": "https://www.aljazeera.com/?t=1704989131", + "categories": ["News"], + "isoDate": "2024-01-11T18:07:31.000Z" + }, + { + "title": "Any US attack on Yemen\u2019s Houthis will \u2018not go without response\u2019", + "link": "https://www.aljazeera.com/news/2024/1/11/any-us-attack-on-yemens-houthis-will-not-go-without?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 17:17:41 +0000", + "content": "Houthi leader says any US attack will trigger a greater response as the group steps up attacks in the Red Sea.", + "contentSnippet": "Houthi leader says any US attack will trigger a greater response as the group steps up attacks in the Red Sea.", + "guid": "https://www.aljazeera.com/?t=1704988999", + "categories": ["News"], + "isoDate": "2024-01-11T17:17:41.000Z" + }, + { + "title": "Lebanon and Israel \u2018prefer\u2019 diplomatic end to tensions, US envoy says", + "link": "https://www.aljazeera.com/news/2024/1/11/lebanon-and-israel-prefer-diplomatic-end-to-tensions-us-envoy-says?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 17:13:59 +0000", + "content": "Hezbollah and Israel have been engaged in cross-border attacks since the early days of the war on Gaza.", + "contentSnippet": "Hezbollah and Israel have been engaged in cross-border attacks since the early days of the war on Gaza.", + "guid": "https://www.aljazeera.com/?t=1704989485", + "categories": ["News"], + "isoDate": "2024-01-11T17:13:59.000Z" + }, + { + "title": "Day one of the ICJ genocide hearing against Israel: Key takeaways", + "link": "https://www.aljazeera.com/news/2024/1/11/day-one-of-the-icj-genocide-hearing-against-israel-key-takeaways?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 17:01:16 +0000", + "content": "South Africa laid out a list of alleged genocidal acts by Israel while seeking an injunction against the war.", + "contentSnippet": "South Africa laid out a list of alleged genocidal acts by Israel while seeking an injunction against the war.", + "guid": "https://www.aljazeera.com/?t=1704981932", + "categories": ["News"], + "isoDate": "2024-01-11T17:01:16.000Z" + }, + { + "title": "Blinken says path to a Palestinian state can stabilise region, isolate Iran", + "link": "https://www.aljazeera.com/news/2024/1/11/blinken-says-path-to-a-palestinian-state-can-stabilise-region-isolate-iran?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 16:47:26 +0000", + "content": "Top US diplomat stresses the need for a path to Palesitnian statehood as he ends latest visit to the Middle East.", + "contentSnippet": "Top US diplomat stresses the need for a path to Palesitnian statehood as he ends latest visit to the Middle East.", + "guid": "https://www.aljazeera.com/?t=1704988550", + "categories": ["News"], + "isoDate": "2024-01-11T16:47:26.000Z" + }, + { + "title": "How did a UN helicopter fall into al-Shabab\u2019s hands in Somalia?", + "link": "https://www.aljazeera.com/news/2024/1/11/how-did-a-un-helicopter-fall-into-al-shababs-hands-in-somalia-2?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 15:31:40 +0000", + "content": "Despite a government offensive against the armed group, al-Shabab shows its capacity for high-level attacks.", + "contentSnippet": "Despite a government offensive against the armed group, al-Shabab shows its capacity for high-level attacks.", + "guid": "https://www.aljazeera.com/?t=1704980308", + "categories": ["News"], + "isoDate": "2024-01-11T15:31:40.000Z" + }, + { + "title": "ICJ hears South Africa\u2019s genocide case against Israel over Gaza war", + "link": "https://www.aljazeera.com/news/2024/1/11/icj-hears-south-africas-genocide-case-against-israel-over-gaza-war?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 14:54:51 +0000", + "content": "South Africa accuses Israel of violating UN's 1948 Genocide Convention, established in the Holocaust's wake.", + "contentSnippet": "South Africa accuses Israel of violating UN's 1948 Genocide Convention, established in the Holocaust's wake.", + "guid": "https://www.aljazeera.com/?t=1704970512", + "categories": ["News"], + "isoDate": "2024-01-11T14:54:51.000Z" + }, + { + "title": "Three key takeaways from Donald Trump\u2019s Iowa town hall", + "link": "https://www.aljazeera.com/news/2024/1/11/three-key-takeaways-from-donald-trumps-iowa-town-hall?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 13:59:37 +0000", + "content": "The former president and 2024 contender suggested he might have decided on his vice presidential pick. ", + "contentSnippet": "The former president and 2024 contender suggested he might have decided on his vice presidential pick.", + "guid": "https://www.aljazeera.com/?t=1704968109", + "categories": ["News"], + "isoDate": "2024-01-11T13:59:37.000Z" + }, + { + "title": "Protests as UN top court hears genocide case against Israel over Gaza war", + "link": "https://www.aljazeera.com/gallery/2024/1/11/protests-as-un-top-court-hears-genocide-case-against-israel-over-gaza-war?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 13:56:08 +0000", + "content": "In ICJ case brought to The Hague, South Africa accuses Israel of committing genocide and demands end to offensive. ", + "contentSnippet": "In ICJ case brought to The Hague, South Africa accuses Israel of committing genocide and demands end to offensive.", + "guid": "https://www.aljazeera.com/?t=1704971243", + "categories": ["News"], + "isoDate": "2024-01-11T13:56:08.000Z" + }, + { + "title": "Russia doubles down on fast, cheap, unguided bombs to attack Ukraine", + "link": "https://www.aljazeera.com/news/2024/1/11/russia-doubles-down-on-fast-cheap-unguided-bombs-to-strike-ukraine?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 13:50:02 +0000", + "content": "Russia produces more ballistic missiles, glide bombs and drones as Ukraine targets Russian military hubs from afar.", + "contentSnippet": "Russia produces more ballistic missiles, glide bombs and drones as Ukraine targets Russian military hubs from afar.", + "guid": "https://www.aljazeera.com/?t=1704968951", + "categories": ["News"], + "isoDate": "2024-01-11T13:50:02.000Z" + }, + { + "title": "Comoros President Assoumani seeks fourth term in January 13 election", + "link": "https://www.aljazeera.com/news/2024/1/11/comoros-president-assoumani-seeks-fourth-term-in-january-13-election?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 13:33:06 +0000", + "content": "Azali Assoumani, 65, will face five competitors in Sunday's election.", + "contentSnippet": "Azali Assoumani, 65, will face five competitors in Sunday's election.", + "guid": "https://www.aljazeera.com/?t=1704973464", + "categories": ["News"], + "isoDate": "2024-01-11T13:33:06.000Z" + }, + { + "title": "Iran seizes oil tanker off Oman in dispute with US", + "link": "https://www.aljazeera.com/news/2024/1/11/iran-navy-says-seized-oil-tanker-off-oman-state-media-2?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 13:24:59 +0000", + "content": "The state-run IRNA news agency published a story acknowledging the seizure of an oil tanker by Iran's navy.", + "contentSnippet": "The state-run IRNA news agency published a story acknowledging the seizure of an oil tanker by Iran's navy.", + "guid": "https://www.aljazeera.com/?t=1704979335", + "categories": ["News"], + "isoDate": "2024-01-11T13:24:59.000Z" + }, + { + "title": "French historian: Israel destroyed 4,000-year-old culture in Gaza", + "link": "https://www.aljazeera.com/program/the-bottom-line/2024/1/11/french-historian-israel-destroyed-4000-year-old-culture-in-gaza?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 13:20:40 +0000", + "content": "French historian Jean-Pierre Filiu says Gaza\u2019s rich civilization has endured centuries of wars, but not Israel\u2019s war.", + "contentSnippet": "French historian Jean-Pierre Filiu says Gaza\u2019s rich civilization has endured centuries of wars, but not Israel\u2019s war.", + "guid": "https://www.aljazeera.com/?t=1704976846", + "categories": ["TV Shows"], + "isoDate": "2024-01-11T13:20:40.000Z" + }, + { + "title": "\u2018Hold Israel accountable\u2019: South Africans rally behind Gaza amid ICJ case", + "link": "https://www.aljazeera.com/features/2024/1/11/hold-israel-accountable-south-africans-rally-behind-gaza-amid-icj-case?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 13:01:07 +0000", + "content": "As their government takes Israel to The Hague on genocide allegations, South Africans are standing by Palestine.", + "contentSnippet": "As their government takes Israel to The Hague on genocide allegations, South Africans are standing by Palestine.", + "guid": "https://www.aljazeera.com/?t=1704962955", + "categories": ["Features"], + "isoDate": "2024-01-11T13:01:07.000Z" + }, + { + "title": "Finland extends border closure with Russia until February 11", + "link": "https://www.aljazeera.com/news/2024/1/11/finland-extends-border-closure-with-russia-until-february-11?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 12:59:40 +0000", + "content": "Finland accuses Russia of encouraging asylum seekers to cross their shared frontier.", + "contentSnippet": "Finland accuses Russia of encouraging asylum seekers to cross their shared frontier.", + "guid": "https://www.aljazeera.com/?t=1704974730", + "categories": ["News"], + "isoDate": "2024-01-11T12:59:40.000Z" + }, + { + "title": "Protesters outside ICJ hearing demand Israel is held accountable", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/11/protesters-outside-icj-hearing-demand-israel-is-held-accountable?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 12:56:40 +0000", + "content": "Pro-Palestine protesters have gathered to support South Africa\u2019s case accusing Israel of genocide in Gaza. ", + "contentSnippet": "Pro-Palestine protesters have gathered to support South Africa\u2019s case accusing Israel of genocide in Gaza.", + "guid": "https://www.aljazeera.com/?t=1704977500", + "categories": ["Show Types"], + "isoDate": "2024-01-11T12:56:40.000Z" + }, + { + "title": "Aharon Barak and Israel\u2019s legal illegality", + "link": "https://www.aljazeera.com/opinions/2024/1/11/aharon-barak-and-israels-legal-illegality?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 12:39:08 +0000", + "content": "Israel\u2019s ad hoc judge at the ICJ genocide hearing has a long\u00a0track record of circumventing international legal norms.", + "contentSnippet": "Israel\u2019s ad hoc judge at the ICJ genocide hearing has a long\u00a0track record of circumventing international legal norms.", + "guid": "https://www.aljazeera.com/?t=1704973238", + "categories": ["Opinions"], + "isoDate": "2024-01-11T12:39:08.000Z" + }, + { + "title": "NATO allies Turkey, Romania, Bulgaria sign deal to clear Black Sea mines", + "link": "https://www.aljazeera.com/news/2024/1/11/nato-allies-turkey-romania-bulgaria-sign-deal-to-clear-black-sea-mines?traffic_source=rss", + "pubDate": "Thu, 11 Jan 2024 12:32:29 +0000", + "content": "Initiative limited to three nations aims to make shipping safer, including for vessels transporting grain from Ukraine.", + "contentSnippet": "Initiative limited to three nations aims to make shipping safer, including for vessels transporting grain from Ukraine.", + "guid": "https://www.aljazeera.com/?t=1704974275", + "categories": ["News"], + "isoDate": "2024-01-11T12:32:29.000Z" + }, + { + "title": "Ukraine\u2019s harsh winter a memory but new Russian tactics sow destruction", + "link": "https://www.aljazeera.com/news/2024/1/18/ukraine-winter-shelling?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 12:09:41 +0000", + "content": "Ukraine's latest winter hardly resembles the cold season of 2022 beset by blackouts, but Russian attacks persist.", + "contentSnippet": "Ukraine's latest winter hardly resembles the cold season of 2022 beset by blackouts, but Russian attacks persist.", + "guid": "https://www.aljazeera.com/?t=1705570147", + "categories": ["News"], + "isoDate": "2024-01-18T12:09:41.000Z" + }, + { + "title": "Russia\u2019s Lavrov rejects US proposal to resume nuclear arms talks", + "link": "https://www.aljazeera.com/news/2024/1/18/russias-lavrov-rejects-us-proposal-to-resume-nuclear-arms-talks?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 11:56:12 +0000", + "content": "The foreign minister also warned that Ukraine must end its push to join NATO before any peace discussions can proceed.", + "contentSnippet": "The foreign minister also warned that Ukraine must end its push to join NATO before any peace discussions can proceed.", + "guid": "https://www.aljazeera.com/?t=1705570509", + "categories": ["News"], + "isoDate": "2024-01-18T11:56:12.000Z" + }, + { + "title": "Mental trauma in a warzone: Why Ukraine needs therapists", + "link": "https://www.aljazeera.com/program/mindset/2024/1/18/mental-trauma-in-a-warzone-why-ukraine-needs-therapists?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 11:30:41 +0000", + "content": "Mindset meets the Ukrainian therapists fighting to keep a population sane in a country at war.", + "contentSnippet": "Mindset meets the Ukrainian therapists fighting to keep a population sane in a country at war.", + "guid": "https://www.aljazeera.com/?t=1705497578", + "categories": ["Show Types"], + "isoDate": "2024-01-18T11:30:41.000Z" + }, + { + "title": "Palestinian Red Crescent reveals destruction at Gaza City hospital", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/18/palestinian-red-crescent-reveals-destruction-at-gaza-city-hospital?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 11:27:53 +0000", + "content": "Workers with the Palestinian Red Crescent have documented the destruction left by Israeli attacks on a hospital in Gaza.", + "contentSnippet": "Workers with the Palestinian Red Crescent have documented the destruction left by Israeli attacks on a hospital in Gaza.", + "guid": "https://www.aljazeera.com/?t=1705573389", + "categories": ["Show Types"], + "isoDate": "2024-01-18T11:27:53.000Z" + }, + { + "title": "Why does the US act as Israel\u2019s lawyer?", + "link": "https://www.aljazeera.com/program/the-bottom-line/2024/1/18/why-does-the-us-act-as-israels-lawyer?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 11:01:41 +0000", + "content": "Former US diplomat Aaron David Miller says prospects for \u2018conflict-ending solution\u2019 have entered \u2018a long, dark tunnel'.", + "contentSnippet": "Former US diplomat Aaron David Miller says prospects for \u2018conflict-ending solution\u2019 have entered \u2018a long, dark tunnel'.", + "guid": "https://www.aljazeera.com/?t=1705494300", + "categories": ["TV Shows"], + "isoDate": "2024-01-18T11:01:41.000Z" + }, + { + "title": "Somalia rejects mediation with Ethiopia gov\u2019t over Somaliland port deal", + "link": "https://www.aljazeera.com/news/2024/1/18/somalia-rejects-mediation-with-ethiopia-govt-over-somaliland-port-deal?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 10:46:50 +0000", + "content": "The Ethiopia-Somalia feud continues with Mogadishu claiming its territorial integrity has been violated by the deal.", + "contentSnippet": "The Ethiopia-Somalia feud continues with Mogadishu claiming its territorial integrity has been violated by the deal.", + "guid": "https://www.aljazeera.com/?t=1705570984", + "categories": ["News"], + "isoDate": "2024-01-18T10:46:50.000Z" + }, + { + "title": "Maghazi residents left reeling after Israeli forces withdraw", + "link": "https://www.aljazeera.com/gallery/2024/1/18/maghazi-residents-left-reeling-after-israeli-forces-withdraw?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 09:33:56 +0000", + "content": "Palestinians in central Gaza refugee camp struggle to pull their loved ones from under the rubble amid mass destruction.", + "contentSnippet": "Palestinians in central Gaza refugee camp struggle to pull their loved ones from under the rubble amid mass destruction.", + "guid": "https://www.aljazeera.com/?t=1705414837", + "categories": ["News"], + "isoDate": "2024-01-18T09:33:56.000Z" + }, + { + "title": "Comoros announces curfew after president\u2019s fourth-term win sparks protests", + "link": "https://www.aljazeera.com/news/2024/1/18/comoros-announces-curfew-after-presidents-fourth-term-win-sparks-protests?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 09:26:51 +0000", + "content": "Assoumani, an ex-military officer whose opponents accuse him of muzzling dissent, first came to power in a 1999 coup.", + "contentSnippet": "Assoumani, an ex-military officer whose opponents accuse him of muzzling dissent, first came to power in a 1999 coup.", + "guid": "https://www.aljazeera.com/?t=1705563919", + "categories": ["News"], + "isoDate": "2024-01-18T09:26:51.000Z" + }, + { + "title": "Ecuador prosecutor investigating gang attack on TV studio shot dead", + "link": "https://www.aljazeera.com/news/2024/1/18/ecuador-prosecutor-investigating-gang-attack-on-tv-studio-shot-dead?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 09:22:29 +0000", + "content": "Public prosecutor Cesar Suarez was investigating a number of recent high-profile cases of drug-related violent attacks.", + "contentSnippet": "Public prosecutor Cesar Suarez was investigating a number of recent high-profile cases of drug-related violent attacks.", + "guid": "https://www.aljazeera.com/?t=1705563146", + "categories": ["News"], + "isoDate": "2024-01-18T09:22:29.000Z" + }, + { + "title": "What is Disease X and how will pandemic preparations help the world?", + "link": "https://www.aljazeera.com/news/2024/1/18/what-is-disease-x-and-how-will-pandemic-preparations-help-the-world?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 09:06:49 +0000", + "content": "WHO chief Tedros joined world leaders at the Davos summit to discuss strategies for the next potential pandemic.", + "contentSnippet": "WHO chief Tedros joined world leaders at the Davos summit to discuss strategies for the next potential pandemic.", + "guid": "https://www.aljazeera.com/?t=1705485497", + "categories": ["News"], + "isoDate": "2024-01-18T09:06:49.000Z" + }, + { + "title": "Aid for Israeli captives, Palestinians reaches Gaza despite challenges", + "link": "https://www.aljazeera.com/news/2024/1/18/aid-for-israeli-captives-palestinians-reaches-gaza-despite-challenges?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 08:39:43 +0000", + "content": "Shipment of medical supplies, other aid set to be distributed as part of a deal brokered by Qatar and France.", + "contentSnippet": "Shipment of medical supplies, other aid set to be distributed as part of a deal brokered by Qatar and France.", + "guid": "https://www.aljazeera.com/?t=1705558847", + "categories": ["News"], + "isoDate": "2024-01-18T08:39:43.000Z" + }, + { + "title": "Israel\u2019s war on Gaza: List of key events, day 104", + "link": "https://www.aljazeera.com/news/2024/1/18/israels-war-on-gaza-list-of-key-events-day-104?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 07:41:37 +0000", + "content": "Medical aid enters Gaza while deadly Israeli strikes continue on the south of the enclave.", + "contentSnippet": "Medical aid enters Gaza while deadly Israeli strikes continue on the south of the enclave.", + "guid": "https://www.aljazeera.com/?t=1705554709", + "categories": ["News"], + "isoDate": "2024-01-18T07:41:37.000Z" + }, + { + "title": "US launches new strikes on Houthi targets in Yemen", + "link": "https://www.aljazeera.com/news/2024/1/18/us-launches-new-strikes-on-houthi-targets-in-yemen?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 07:16:15 +0000", + "content": "On fourth day of strikes, US military says it targeted 14 Houthi missiles that were 'loaded to be fired' from Yemen.", + "contentSnippet": "On fourth day of strikes, US military says it targeted 14 Houthi missiles that were 'loaded to be fired' from Yemen.", + "guid": "https://www.aljazeera.com/?t=1705494372", + "categories": ["News"], + "isoDate": "2024-01-18T07:16:15.000Z" + }, + { + "title": "Pakistan attacks \u2018terrorist hideouts\u2019 in Iran", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/18/pakistan-attacks-terrorist-hideouts-in-iran?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 06:43:20 +0000", + "content": "Pakistan has launched retaliatory strikes on Iran, allegedly targeting 'terrorist hideouts' in Sistan-Baluchestan.", + "contentSnippet": "Pakistan has launched retaliatory strikes on Iran, allegedly targeting 'terrorist hideouts' in Sistan-Baluchestan.", + "guid": "https://www.aljazeera.com/?t=1705559415", + "categories": ["Show Types"], + "isoDate": "2024-01-18T06:43:20.000Z" + }, + { + "title": "Pakistan launches military strikes on Iran in response to bombing", + "link": "https://www.aljazeera.com/news/2024/1/18/pakistan-launches-precise-military-strikes-on-iran-in-response-to-bombing?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 05:39:51 +0000", + "content": "Islamabad says it targeted hideouts of armed groups in Iran in a series of attacks, a day after Iran struck Pakistan. ", + "contentSnippet": "Islamabad says it targeted hideouts of armed groups in Iran in a series of attacks, a day after Iran struck Pakistan.", + "guid": "https://www.aljazeera.com/?t=1705554858", + "categories": ["News"], + "isoDate": "2024-01-18T05:39:51.000Z" + }, + { + "title": "As PM, India\u2019s Modi secretly tried to massively cut state funds", + "link": "https://www.aljazeera.com/economy/2024/1/18/as-pm-indias-modi-secretly-tried-to-massively-cut-state-funds?traffic_source=rss", + "pubDate": "Thu, 18 Jan 2024 02:28:50 +0000", + "content": "Revelation came from a top gov't official who also said budgets have 'layers and layers of attempt to cover the truth'.\r\n", + "contentSnippet": "Revelation came from a top gov't official who also said budgets have 'layers and layers of attempt to cover the truth'.", + "guid": "https://www.aljazeera.com/?t=1705347532", + "categories": ["News"], + "isoDate": "2024-01-18T02:28:50.000Z" + }, + { + "title": "Biden \u2018playing with fire\u2019 by re-designating Yemen\u2019s Houthis as \u2018terrorists\u2019", + "link": "https://www.aljazeera.com/news/2024/1/17/biden-playing-with-fire-by-redesignating-yemens-houthis-as-terrorists?traffic_source=rss", + "pubDate": "Wed, 17 Jan 2024 22:09:59 +0000", + "content": "Advocates say labelling Houthis a 'global terrorist group' risks worsening already dire humanitarian crisis in Yemen.", + "contentSnippet": "Advocates say labelling Houthis a 'global terrorist group' risks worsening already dire humanitarian crisis in Yemen.", + "guid": "https://www.aljazeera.com/?t=1705511429", + "categories": ["News"], + "isoDate": "2024-01-17T22:09:59.000Z" + }, + { + "title": "Protests erupt in Tunisian town as search continues for 37 missing migrants", + "link": "https://www.aljazeera.com/news/2024/1/17/protests-erupt-in-tunisian-town-as-search-continues-for-37-missing-migrants?traffic_source=rss", + "pubDate": "Wed, 17 Jan 2024 20:38:06 +0000", + "content": "Residents in the town of El Hancha are waiting to hear news of loved ones who disappeared crossing the Mediterranean.", + "contentSnippet": "Residents in the town of El Hancha are waiting to hear news of loved ones who disappeared crossing the Mediterranean.", + "guid": "https://www.aljazeera.com/?t=1705518846", + "categories": ["News"], + "isoDate": "2024-01-17T20:38:06.000Z" + }, + { + "title": "What\u2019s behind North Korea\u2019s shock change of policy towards the South?", + "link": "https://www.aljazeera.com/program/inside-story/2024/1/17/whats-behind-north-koreas-shock-change-of-policy-towards-the-south?traffic_source=rss", + "pubDate": "Wed, 17 Jan 2024 20:22:49 +0000", + "content": "Pyongyang announces it is scrapping its long-term aim of reunification with South Korea.", + "contentSnippet": "Pyongyang announces it is scrapping its long-term aim of reunification with South Korea.", + "guid": "https://www.aljazeera.com/?t=1705521685", + "categories": ["News"], + "isoDate": "2024-01-17T20:22:49.000Z" + }, + { + "title": "Israel ramps up attacks on Khan Younis as aid for Gaza arrives in Egypt", + "link": "https://www.aljazeera.com/news/2024/1/17/israel-ramps-up-attacks-on-khan-younis-as-aid-for-gaza-arrives-in-egypt?traffic_source=rss", + "pubDate": "Wed, 17 Jan 2024 20:07:33 +0000", + "content": "Palestinian officials say seven people were killed by Israeli air raids that damaged homes near Nasser Hospital.", + "contentSnippet": "Palestinian officials say seven people were killed by Israeli air raids that damaged homes near Nasser Hospital.", + "guid": "https://www.aljazeera.com/?t=1705517477", + "categories": ["News"], + "isoDate": "2024-01-17T20:07:33.000Z" + }, + { + "title": "Sierra Leone court allows ex-President Koroma to go abroad for medical care", + "link": "https://www.aljazeera.com/news/2024/1/17/sierra-leone-court-allows-ex-president-koroma-to-go-abroad-for-medical-care?traffic_source=rss", + "pubDate": "Wed, 17 Jan 2024 19:57:16 +0000", + "content": "The former leader is charged with treason for his alleged role in a failed coup in November.", + "contentSnippet": "The former leader is charged with treason for his alleged role in a failed coup in November.", + "guid": "https://www.aljazeera.com/?t=1705512744", + "categories": ["News"], + "isoDate": "2024-01-17T19:57:16.000Z" + }, + { + "title": "Favourites Morocco beat Tanzania 3-0 to open AFCON 2023 campaign", + "link": "https://www.aljazeera.com/sports/2024/1/17/morocco-vs-tanzania-afcon-2023-achraf-hakimi-neysri?traffic_source=rss", + "pubDate": "Wed, 17 Jan 2024 19:41:22 +0000", + "content": "Goals from Romain Saiss, Azzedine Ounahi and Youssef En-Nesyri see Morocco cruise past 10-man Tanzania.", + "contentSnippet": "Goals from Romain Saiss, Azzedine Ounahi and Youssef En-Nesyri see Morocco cruise past 10-man Tanzania.", + "guid": "https://www.aljazeera.com/?t=1705518984", + "categories": ["Sports"], + "isoDate": "2024-01-17T19:41:22.000Z" + }, + { + "title": "Palestinians\u2019 tents in Gaza offer no shelter from Israeli bombardment", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/17/palestinians-tents-in-gaza-offer-no-shelter-from-israeli-bombardment?traffic_source=rss", + "pubDate": "Wed, 17 Jan 2024 17:59:36 +0000", + "content": "A Palestinian father recalls an Israeli attack on his family\u2019s tent in central Gaza that killed three of his children.", + "contentSnippet": "A Palestinian father recalls an Israeli attack on his family\u2019s tent in central Gaza that killed three of his children.", + "guid": "https://www.aljazeera.com/?t=1705514107", + "categories": ["Show Types"], + "isoDate": "2024-01-17T17:59:36.000Z" + }, + { + "title": "Violent protests over jailing of activist in Russia\u2019s Bashkortostan", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/17/violent-protests-over-jailing-of-activist-in-russias-bashkortostan?traffic_source=rss", + "pubDate": "Wed, 17 Jan 2024 17:33:39 +0000", + "content": "Police and protesters clash over jail sentence for Russian activist Fail Alsynov ", + "contentSnippet": "Police and protesters clash over jail sentence for Russian activist Fail Alsynov", + "guid": "https://www.aljazeera.com/?t=1705512580", + "categories": ["Show Types"], + "isoDate": "2024-01-17T17:33:39.000Z" + }, + { + "title": "Guinness World Records reviews evidence related to \u2018oldest dog\u2019 title", + "link": "https://www.aljazeera.com/news/2024/1/17/guinness-world-records-reviews-evidence-related-to-oldest-dog-title?traffic_source=rss", + "pubDate": "Wed, 17 Jan 2024 17:20:57 +0000", + "content": "GWR originally said the canine lived for 31 years and 165 days, breaking a record held since 1939.", + "contentSnippet": "GWR originally said the canine lived for 31 years and 165 days, breaking a record held since 1939.", + "guid": "https://www.aljazeera.com/?t=1705509596", + "categories": ["News"], + "isoDate": "2024-01-17T17:20:57.000Z" + }, + { + "title": "Israeli minister says only a deal can free captives as rifts split cabinet", + "link": "https://www.aljazeera.com/news/2024/1/19/israeli-minister-says-only-a-deal-can-free-captives-as-rifts-split-cabinet?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 15:24:08 +0000", + "content": "Gadi Eizenkot's comments come amid disagreement in the war cabinet about how to handle the war in Gaza. ", + "contentSnippet": "Gadi Eizenkot's comments come amid disagreement in the war cabinet about how to handle the war in Gaza.", + "guid": "https://www.aljazeera.com/?t=1705672565", + "categories": ["News"], + "isoDate": "2024-01-19T15:24:08.000Z" + }, + { + "title": "It\u2019s high time for all those at Harvard to stand with Palestine", + "link": "https://www.aljazeera.com/opinions/2024/1/19/its-high-time-for-all-those-at-harvard-to-stand-with-palestine?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 14:51:22 +0000", + "content": "The university must end its complicity in genocide, and protect students standing with the oppressed. ", + "contentSnippet": "The university must end its complicity in genocide, and protect students standing with the oppressed.", + "guid": "https://www.aljazeera.com/?t=1705559157", + "categories": ["Opinions"], + "isoDate": "2024-01-19T14:51:22.000Z" + }, + { + "title": "Christian Zionist cowboys: American and Israeli affinities laid bare", + "link": "https://www.aljazeera.com/opinions/2024/1/19/christian-zionist-cowboys-american-and-israeli-affinities-laid-bare?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 14:00:13 +0000", + "content": "The American cowboys flocking to Israel amid its war on Gaza expose the parallels between the two settler societies.", + "contentSnippet": "The American cowboys flocking to Israel amid its war on Gaza expose the parallels between the two settler societies.", + "guid": "https://www.aljazeera.com/?t=1705654837", + "categories": ["Opinions"], + "isoDate": "2024-01-19T14:00:13.000Z" + }, + { + "title": "Non-Aligned Movement criticises Israel\u2019s war on Gaza at Kampala summit", + "link": "https://www.aljazeera.com/news/2024/1/19/non-aligned-movement-criticises-israeli-war-in-gaza-at-kampala-summit?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 14:00:08 +0000", + "content": "Foreign ministers within the 120-member bloc have adopted a resolution at the summit, calling for a ceasefire in Gaza..", + "contentSnippet": "Foreign ministers within the 120-member bloc have adopted a resolution at the summit, calling for a ceasefire in Gaza..", + "guid": "https://www.aljazeera.com/?t=1705662038", + "categories": ["News"], + "isoDate": "2024-01-19T14:00:08.000Z" + }, + { + "title": "Gaza\u2019s morning ritual: Searching under rubble for dolls, books, loved ones", + "link": "https://www.aljazeera.com/features/2024/1/19/the-scale-of-destruction-is-unimaginable?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 13:48:42 +0000", + "content": "From Gaza, Al Jazeera's Mohammed R Mhawish looks back on more than 100 days of carnage.", + "contentSnippet": "From Gaza, Al Jazeera's Mohammed R Mhawish looks back on more than 100 days of carnage.", + "guid": "https://www.aljazeera.com/?t=1705480802", + "categories": ["Features"], + "isoDate": "2024-01-19T13:48:42.000Z" + }, + { + "title": "UN says Palestinians detained by Israeli forces humiliated, beaten", + "link": "https://www.aljazeera.com/news/2024/1/19/un-says-palestinians-detained-by-israeli-forces-humiliated-beaten?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 13:22:47 +0000", + "content": "Rights official says Palestinian men detained by Israeli security forces in unknown locations for between 30 to 55 days.", + "contentSnippet": "Rights official says Palestinian men detained by Israeli security forces in unknown locations for between 30 to 55 days.", + "guid": "https://www.aljazeera.com/?t=1705662659", + "categories": ["News"], + "isoDate": "2024-01-19T13:22:47.000Z" + }, + { + "title": "Why isn\u2019t the world keeping #EyesOnSudan?", + "link": "https://www.aljazeera.com/program/the-stream/2024/1/19/why-isnt-the-world-keeping-eyesonsudan?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 13:00:08 +0000", + "content": "The Sudanese youth are again at the forefront of organising online and offline as the country is being ravaged by war.", + "contentSnippet": "The Sudanese youth are again at the forefront of organising online and offline as the country is being ravaged by war.", + "guid": "https://www.aljazeera.com/?t=1705491344", + "categories": ["TV Shows"], + "isoDate": "2024-01-19T13:00:08.000Z" + }, + { + "title": "People are getting sick because of Israel\u2019s war on Gaza", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/19/people-are-getting-sick-because-of-israels-war-on-gaza?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 12:39:26 +0000", + "content": "Doctors in Gaza are warning that diseases like Hepatitis-A are rapidly on the rise.", + "contentSnippet": "Doctors in Gaza are warning that diseases like Hepatitis-A are rapidly on the rise.", + "guid": "https://www.aljazeera.com/?t=1705667524", + "categories": ["Show Types"], + "isoDate": "2024-01-19T12:39:26.000Z" + }, + { + "title": "Palestinians in Ukraine decry \u2018double standard\u2019 as Kyiv supports Israel", + "link": "https://www.aljazeera.com/news/2024/1/19/palestinians-in-ukraine-decry-double-standard-as-kyiv-supports-israel?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 12:10:56 +0000", + "content": "Ukraine has supported Israel throughout the latest conflict, upsetting Palestinians as war ravages Gaza.", + "contentSnippet": "Ukraine has supported Israel throughout the latest conflict, upsetting Palestinians as war ravages Gaza.", + "guid": "https://www.aljazeera.com/?t=1702290179", + "categories": ["News"], + "isoDate": "2024-01-19T12:10:56.000Z" + }, + { + "title": "$900 fine for a delivery rider\u2019s death: Do couriers have any rights?", + "link": "https://www.aljazeera.com/features/2024/1/19/900-fine-for-a-delivery-riders-death-do-couriers-have-any-rights?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 11:38:22 +0000", + "content": "The death of a Turkish delivery courier has brought into focus the conditions under which riders work. ", + "contentSnippet": "The death of a Turkish delivery courier has brought into focus the conditions under which riders work.", + "guid": "https://www.aljazeera.com/?t=1705497659", + "categories": ["Features"], + "isoDate": "2024-01-19T11:38:22.000Z" + }, + { + "title": "Japan counts down to \u2018Moon Sniper\u2019 landing on lunar surface", + "link": "https://www.aljazeera.com/news/2024/1/19/japan-counts-down-to-moon-sniper-landing-on-lunar-surface?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 10:53:58 +0000", + "content": "A successful touchdown will make Japan the fifth country ever to put a spacecraft on the moon.", + "contentSnippet": "A successful touchdown will make Japan the fifth country ever to put a spacecraft on the moon.", + "guid": "https://www.aljazeera.com/?t=1705648903", + "categories": ["News"], + "isoDate": "2024-01-19T10:53:58.000Z" + }, + { + "title": "Why has the Maori king of New Zealand called a national meeting?", + "link": "https://www.aljazeera.com/news/2024/1/19/why-has-the-maori-king-of-new-zealand-called-a-national-meeting?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 10:34:53 +0000", + "content": "The gathering will discuss how Maori rights can be protected by upholding their interpretation of Treaty of Waitangi.", + "contentSnippet": "The gathering will discuss how Maori rights can be protected by upholding their interpretation of Treaty of Waitangi.", + "guid": "https://www.aljazeera.com/?t=1705646839", + "categories": ["News"], + "isoDate": "2024-01-19T10:34:53.000Z" + }, + { + "title": "Palestinians welcome Chile and Mexico\u2019s call for ICC probe into Gaza war", + "link": "https://www.aljazeera.com/news/2024/1/19/palestinians-welcome-chile-and-mexico-call-for-icc-probe-into-gaza-war?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 10:02:13 +0000", + "content": "Two countries express 'growing worry' over 'escalation of violence' in International Criminal Court referral.", + "contentSnippet": "Two countries express 'growing worry' over 'escalation of violence' in International Criminal Court referral.", + "guid": "https://www.aljazeera.com/?t=1705653762", + "categories": ["News"], + "isoDate": "2024-01-19T10:02:13.000Z" + }, + { + "title": "\u2018Credibility at stake\u2019: Why did Iran strike inside Pakistan amid Gaza war?", + "link": "https://www.aljazeera.com/news/2024/1/19/credibility-at-stake-why-did-iran-bomb-pakistan-amid-gaza-war?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 09:51:01 +0000", + "content": "Tehran\u2019s attacks on Pakistani, Iraqi and Syrian land have only one thing in common, say analysts: a show of strength. ", + "contentSnippet": "Tehran\u2019s attacks on Pakistani, Iraqi and Syrian land have only one thing in common, say analysts: a show of strength.", + "guid": "https://www.aljazeera.com/?t=1705647823", + "categories": ["News"], + "isoDate": "2024-01-19T09:51:01.000Z" + }, + { + "title": "Is time running out for Egypt\u2019s Salah to win AFCON in Messi moment?", + "link": "https://www.aljazeera.com/features/2024/1/19/is-time-running-out-for-egypts-salah-to-win-afcon-in-messi-moment?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 09:38:06 +0000", + "content": "The Egyptian footballing great is on a continuing quest to win one piece of silverware missing in a stellar career.", + "contentSnippet": "The Egyptian footballing great is on a continuing quest to win one piece of silverware missing in a stellar career.", + "guid": "https://www.aljazeera.com/?t=1705563883", + "categories": ["Sports"], + "isoDate": "2024-01-19T09:38:06.000Z" + }, + { + "title": "Soldiers raid Ecuador prison as two arrested for prosecutor\u2019s murder", + "link": "https://www.aljazeera.com/news/2024/1/19/soldiers-raid-ecuador-prison-as-two-arrested-for-prosecutors-murder?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 09:29:03 +0000", + "content": "The government's crackdown on gangs faces fierce retaliation as violence rages in the country.", + "contentSnippet": "The government's crackdown on gangs faces fierce retaliation as violence rages in the country.", + "guid": "https://www.aljazeera.com/?t=1705648814", + "categories": ["News"], + "isoDate": "2024-01-19T09:29:03.000Z" + }, + { + "title": "\u2018It\u2019s very scary now\u2019: Fear grips Haiti\u2019s Port-au-Prince amid gang violence", + "link": "https://www.aljazeera.com/gallery/2024/1/19/fear-grips-haitis-port-au-prince-amid-gang-violence?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 09:15:06 +0000", + "content": "A key community in Haiti\u2019s capital has been under siege for days as violence escalates.", + "contentSnippet": "A key community in Haiti\u2019s capital has been under siege for days as violence escalates.", + "guid": "https://www.aljazeera.com/?t=1705650715", + "categories": ["News"], + "isoDate": "2024-01-19T09:15:06.000Z" + }, + { + "title": "US lawmakers pass spending bill to avert government shutdown", + "link": "https://www.aljazeera.com/news/2024/1/19/us-lawmakers-pass-spending-bill-to-avert-government-shutdown?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 08:30:33 +0000", + "content": "House of Representatives also votes to keep the lights on in government facilities for at least another six weeks.", + "contentSnippet": "House of Representatives also votes to keep the lights on in government facilities for at least another six weeks.", + "guid": "https://www.aljazeera.com/?t=1705647878", + "categories": ["News"], + "isoDate": "2024-01-19T08:30:33.000Z" + }, + { + "title": "Pakistan conducts national security review amid standoff with Iran", + "link": "https://www.aljazeera.com/news/2024/1/19/pakistan-to-conduct-national-security-review-amid-standoff-with-iran?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 08:12:12 +0000", + "content": "Meeting of top military, civilian leaders held after Pakistan's retaliatory strikes on armed groups in Iran.", + "contentSnippet": "Meeting of top military, civilian leaders held after Pakistan's retaliatory strikes on armed groups in Iran.", + "guid": "https://www.aljazeera.com/?t=1705644277", + "categories": ["News"], + "isoDate": "2024-01-19T08:12:12.000Z" + }, + { + "title": "Israel\u2019s war on Gaza: List of key events, day 105", + "link": "https://www.aljazeera.com/news/2024/1/19/israels-war-on-gaza-list-of-key-events-day-105?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 07:59:31 +0000", + "content": "Clashes over a two-state solution and US foreign policy on Houthi strikes - here are major updates.", + "contentSnippet": "Clashes over a two-state solution and US foreign policy on Houthi strikes - here are major updates.", + "guid": "https://www.aljazeera.com/?t=1705641225", + "categories": ["News"], + "isoDate": "2024-01-19T07:59:31.000Z" + }, + { + "title": "Netanyahu rejects Palestinian statehood", + "link": "https://www.aljazeera.com/program/newsfeed/2024/1/19/netanyahu-rejects-palestinian-statehood?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 06:48:03 +0000", + "content": "During a press conference Israeli Prime Minister Benjamin Netanyahu said that he objects to Palestinian statehood.", + "contentSnippet": "During a press conference Israeli Prime Minister Benjamin Netanyahu said that he objects to Palestinian statehood.", + "guid": "https://www.aljazeera.com/?t=1705646294", + "categories": ["Show Types"], + "isoDate": "2024-01-19T06:48:03.000Z" + }, + { + "title": "North Korea touts \u2018underwater nuclear weapons system\u2019, blasts US drills", + "link": "https://www.aljazeera.com/news/2024/1/19/north-korea-touts-underwater-nuclear-weapon-system-blasts-us-drills?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 06:40:40 +0000", + "content": "Pyongyang promises to deter 'hostile military manoeuvres' after US, South Korea and Japan conduct naval exercises.", + "contentSnippet": "Pyongyang promises to deter 'hostile military manoeuvres' after US, South Korea and Japan conduct naval exercises.", + "guid": "https://www.aljazeera.com/?t=1705642494", + "categories": ["News"], + "isoDate": "2024-01-19T06:40:40.000Z" + }, + { + "title": "\u2018Used to be a festival\u2019: Why Pakistan is seeing a subdued election campaign", + "link": "https://www.aljazeera.com/features/2024/1/19/used-to-be-a-festival-why-pakistan-is-seeing-a-subdued-election-campaign?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 05:15:39 +0000", + "content": "Crackdown and censure on the main opposition party turns the run-up to the February 8 election into a lukewarm affair.", + "contentSnippet": "Crackdown and censure on the main opposition party turns the run-up to the February 8 election into a lukewarm affair.", + "guid": "https://www.aljazeera.com/?t=1705401359", + "categories": ["Features"], + "isoDate": "2024-01-19T05:15:39.000Z" + }, + { + "title": "\u2018Better future\u2019: India\u2019s Ayodhya sees business boom with Ram temple launch", + "link": "https://www.aljazeera.com/economy/2024/1/19/upcoming-ram-temple-is-good-for-business-in-indias-ayodhya?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 04:23:10 +0000", + "content": "Ayodhya is getting an economic boost as the city gears up for millions of tourists to see the controversial Ram temple.", + "contentSnippet": "Ayodhya is getting an economic boost as the city gears up for millions of tourists to see the controversial Ram temple.", + "guid": "https://www.aljazeera.com/?t=1705522477", + "categories": ["News"], + "isoDate": "2024-01-19T04:23:10.000Z" + }, + { + "title": "Los Angeles Times to lay off \u2018significant\u2019 number of employees, union says", + "link": "https://www.aljazeera.com/news/2024/1/19/los-angeles-times-to-lay-off-significant-number-of-employees-union-says?traffic_source=rss", + "pubDate": "Fri, 19 Jan 2024 04:14:01 +0000", + "content": "LA Times Guild announces one-day walk-out to protest planned layoffs.", + "contentSnippet": "LA Times Guild announces one-day walk-out to protest planned layoffs.", + "guid": "https://www.aljazeera.com/?t=1705633943", + "categories": ["News"], + "isoDate": "2024-01-19T04:14:01.000Z" + }, + { + "title": "Angela Davis: \u2018Palestine is a moral litmus test for the world\u2019", + "link": "https://www.aljazeera.com/program/upfront/2023/10/27/angela-davis-palestine-is-a-moral-litmus-test-for-the-world?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 12:55:01 +0000", + "content": "Citing the late poet June Jordan, Angela Davis stresses the importance of Palestine for other social justice movements.", + "contentSnippet": "Citing the late poet June Jordan, Angela Davis stresses the importance of Palestine for other social justice movements.", + "guid": "https://www.aljazeera.com/?t=1698383004", + "categories": ["TV Shows"], + "isoDate": "2023-10-27T12:55:01.000Z" + }, + { + "title": "China\u2019s jet comes dangerously close to US bomber over South China Sea: US", + "link": "https://www.aljazeera.com/news/2023/10/27/chinas-jet-comes-dangerously-close-to-us-bomber-over-south-china-sea-us?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 12:47:26 +0000", + "content": "Beijing blames Washington for the incident that almost caused an accident as the two compete for influence in region.", + "contentSnippet": "Beijing blames Washington for the incident that almost caused an accident as the two compete for influence in region.", + "guid": "https://www.aljazeera.com/?t=1698405540", + "categories": ["News"], + "isoDate": "2023-10-27T12:47:26.000Z" + }, + { + "title": "The double standards of free speech on Palestine", + "link": "https://www.aljazeera.com/program/upfront/2023/10/27/the-double-standards-of-free-speech-on-palestine?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 12:40:45 +0000", + "content": "As the war in Gaza continues, why is the West cracking down on free speech?", + "contentSnippet": "As the war in Gaza continues, why is the West cracking down on free speech?", + "guid": "https://www.aljazeera.com/?t=1698383310", + "categories": ["TV Shows"], + "isoDate": "2023-10-27T12:40:45.000Z" + }, + { + "title": "Australia vs New Zealand: ICC Cricket World Cup 2023 match preview", + "link": "https://www.aljazeera.com/sports/2023/10/27/australia-vs-new-zealand-icc-cricket-world-cup-2023-match-preview?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 12:35:40 +0000", + "content": "Both teams will look to bag two points in order to secure a semifinal finish at the Cricket World Cup 2023.", + "contentSnippet": "Both teams will look to bag two points in order to secure a semifinal finish at the Cricket World Cup 2023.", + "guid": "https://www.aljazeera.com/?t=1698404485", + "categories": ["Sports"], + "isoDate": "2023-10-27T12:35:40.000Z" + }, + { + "title": "The Gaza Strip: Under siege, at war", + "link": "https://www.aljazeera.com/gallery/2023/10/27/the-gaza-strip-under-siege-at-war?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 12:09:58 +0000", + "content": "Palestinians in the besieged enclave have had to endure decades of violence and oppression \u2014 and now it\u2019s even worse.", + "contentSnippet": "Palestinians in the besieged enclave have had to endure decades of violence and oppression \u2014 and now it\u2019s even worse.", + "guid": "https://www.aljazeera.com/?t=1698406517", + "categories": ["Gallery"], + "isoDate": "2023-10-27T12:09:58.000Z" + }, + { + "title": "Ethnic rebel alliance attacks military positions across northern Myanmar", + "link": "https://www.aljazeera.com/news/2023/10/27/ethnic-rebel-alliance-attacks-military-positions-across-northern-myanmar?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 12:06:22 +0000", + "content": "Rebel groups attack 12 towns in Shan state, with local media reporting a number of military casualties.", + "contentSnippet": "Rebel groups attack 12 towns in Shan state, with local media reporting a number of military casualties.", + "guid": "https://www.aljazeera.com/?t=1698403590", + "categories": ["News"], + "isoDate": "2023-10-27T12:06:22.000Z" + }, + { + "title": "Israeli volunteers clean up kibbutz attacked by Hamas fighters on October 7", + "link": "https://www.aljazeera.com/gallery/2023/10/27/israeli-volunteers-clean-up-kibbutz-attacked-by-hamas-on-october-7?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 11:27:09 +0000", + "content": "Al Jazeera visited Holit, a kibbutz near Gaza which was attacked by Hamas fighters on October 7.", + "contentSnippet": "Al Jazeera visited Holit, a kibbutz near Gaza which was attacked by Hamas fighters on October 7.", + "guid": "https://www.aljazeera.com/?t=1698393293", + "categories": ["News"], + "isoDate": "2023-10-27T11:27:09.000Z" + }, + { + "title": "Displaced Palestinians in overcrowded UN schools face outbreak of disease", + "link": "https://www.aljazeera.com/news/2023/10/27/displaced-palestinians-in-overcrowded-un-schools-face-outbreak-of-disease?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 11:12:11 +0000", + "content": "More than half a million displaced Palestinians are sheltering in 150 UNRWA facilities and in poor conditions.", + "contentSnippet": "More than half a million displaced Palestinians are sheltering in 150 UNRWA facilities and in poor conditions.", + "guid": "https://www.aljazeera.com/?t=1698243489", + "categories": ["News"], + "isoDate": "2023-10-27T11:12:11.000Z" + }, + { + "title": "\u2018Solidarity with Palestine\u2019: British protesters defy threats to hit streets", + "link": "https://www.aljazeera.com/news/2023/10/27/solidarity-with-palestine-british-protesters-defy-curbs-to-hit-streets?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 10:22:57 +0000", + "content": "Activists who opposed the Iraq War are warning of lessons from 2003, as they push the UK government to seek peace. ", + "contentSnippet": "Activists who opposed the Iraq War are warning of lessons from 2003, as they push the UK government to seek peace.", + "guid": "https://www.aljazeera.com/?t=1698391297", + "categories": ["News"], + "isoDate": "2023-10-27T10:22:57.000Z" + }, + { + "title": "Israeli forces kill four Palestinians in occupied West Bank: WAFA", + "link": "https://www.aljazeera.com/news/2023/10/27/israeli-forces-kill-four-palestinians-in-occupied-west-bank-wafa?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 10:11:36 +0000", + "content": "The Palestinian news agency says the latest deaths take the number of Palestinians killed in the territory to 110.", + "contentSnippet": "The Palestinian news agency says the latest deaths take the number of Palestinians killed in the territory to 110.", + "guid": "https://www.aljazeera.com/?t=1698396389", + "categories": ["News"], + "isoDate": "2023-10-27T10:11:36.000Z" + }, + { + "title": "Israel conducts second ground raid into northern Gaza with air support", + "link": "https://www.aljazeera.com/news/2023/10/27/israel-conducts-second-ground-raid-into-northern-gaza-with-air-support?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 09:38:14 +0000", + "content": "The overnight incursion was backed by fighter jets and drones that hit targets in Shujaiya area, Israel's army says.", + "contentSnippet": "The overnight incursion was backed by fighter jets and drones that hit targets in Shujaiya area, Israel's army says.", + "guid": "https://www.aljazeera.com/?t=1698394890", + "categories": ["News"], + "isoDate": "2023-10-27T09:38:14.000Z" + }, + { + "title": "US says \u2018no evidence\u2019 Israel forces targeted Al Jazeera", + "link": "https://www.aljazeera.com/program/newsfeed/2023/10/27/us-says-no-evidence-israel-forces-targeted-al-jazeera?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 09:36:37 +0000", + "content": "John Kirby has said he saw "zero evidence" that the family of an Al Jazeera journalist in Gaza were targeted by Israel.", + "contentSnippet": "John Kirby has said he saw \"zero evidence\" that the family of an Al Jazeera journalist in Gaza were targeted by Israel.", + "guid": "https://www.aljazeera.com/?t=1698399250", + "categories": ["Show Types"], + "isoDate": "2023-10-27T09:36:37.000Z" + }, + { + "title": "Will unconditional US support for Israel harm its ties with the Arab world?", + "link": "https://www.aljazeera.com/features/2023/10/27/analysis-is-the-us-approach-to-gaza-damaging-ties-with-its-arab-allies?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 09:33:00 +0000", + "content": "The US\u2019s unwavering support for Israel has exposed both double standards and strategic short-sightedness, observers say.", + "contentSnippet": "The US\u2019s unwavering support for Israel has exposed both double standards and strategic short-sightedness, observers say.", + "guid": "https://www.aljazeera.com/?t=1698333442", + "categories": ["Features"], + "isoDate": "2023-10-27T09:33:00.000Z" + }, + { + "title": "Ceasefire or pause? Words UN members can\u2019t agree on to stop Israel\u2019s bombs", + "link": "https://www.aljazeera.com/news/2023/10/27/ceasefire-or-pause-words-un-members-cant-agree-on-to-stop-israels-bombs?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 09:27:45 +0000", + "content": "A look at the terms dividing UN Security Council members in their efforts to temporarily halt fighting in Gaza. ", + "contentSnippet": "A look at the terms dividing UN Security Council members in their efforts to temporarily halt fighting in Gaza.", + "guid": "https://www.aljazeera.com/?t=1698317375", + "categories": ["News"], + "isoDate": "2023-10-27T09:27:45.000Z" + }, + { + "title": "Hamas cannot free captives until Israel-Gaza ceasefire: Official", + "link": "https://www.aljazeera.com/news/2023/10/27/hamas-cannot-free-captives-until-israel-gaza-truce-official?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 08:29:33 +0000", + "content": "The group needs time to locate captives taken to Gaza by various Palestinian factions, a Russian newspaper is told.", + "contentSnippet": "The group needs time to locate captives taken to Gaza by various Palestinian factions, a Russian newspaper is told.", + "guid": "https://www.aljazeera.com/?t=1698389345", + "categories": ["News"], + "isoDate": "2023-10-27T08:29:33.000Z" + }, + { + "title": "Dispatches from Ukraine\u2019s front lines: A strike devastates a village of 300", + "link": "https://www.aljazeera.com/features/2023/10/27/dispatches-from-ukraines-front-lines-a-strike-devastates-a-village-of-300?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 08:13:01 +0000", + "content": "From an underground town to the start of a pre-dawn assault, an inside look at life on four front lines over four days.", + "contentSnippet": "From an underground town to the start of a pre-dawn assault, an inside look at life on four front lines over four days.", + "guid": "https://www.aljazeera.com/?t=1698327957", + "categories": ["Features"], + "isoDate": "2023-10-27T08:13:01.000Z" + }, + { + "title": "Malaysian sultans choose new king in unique rotational monarchy", + "link": "https://www.aljazeera.com/news/2023/10/27/malaysian-sultans-choose-new-king-in-unique-rotational-monarchy?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 08:09:29 +0000", + "content": "Sultan Ibrahim of the southern state of Johor will hold the largely ceremonial post for five years. ", + "contentSnippet": "Sultan Ibrahim of the southern state of Johor will hold the largely ceremonial post for five years.", + "guid": "https://www.aljazeera.com/?t=1698390116", + "categories": ["News"], + "isoDate": "2023-10-27T08:09:29.000Z" + }, + { + "title": "Israel-Hamas war: List of key events, day 21", + "link": "https://www.aljazeera.com/news/2023/10/27/israel-hamas-war-list-of-key-events-day-21?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 07:54:04 +0000", + "content": "As the conflict between Israel and Gaza enters its 21st day, these are the main developments.", + "contentSnippet": "As the conflict between Israel and Gaza enters its 21st day, these are the main developments.", + "guid": "https://www.aljazeera.com/?t=1698382591", + "categories": ["News"], + "isoDate": "2023-10-27T07:54:04.000Z" + }, + { + "title": "Israeli bombing levels a residential square on Gaza City\u2019s Jalaa Street", + "link": "https://www.aljazeera.com/gallery/2023/10/27/israeli-bombing-levels-a-residential-square-on-gaza-citys-jalaa-street?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 07:38:50 +0000", + "content": "Yarmouk Square, and all its apartment buildings, was targeted and destroyed by Israeli air raids.", + "contentSnippet": "Yarmouk Square, and all its apartment buildings, was targeted and destroyed by Israeli air raids.", + "guid": "https://www.aljazeera.com/?t=1698322713", + "categories": ["News"], + "isoDate": "2023-10-27T07:38:50.000Z" + }, + { + "title": "Blasts hit two Egyptian Red Sea towns, six wounded", + "link": "https://www.aljazeera.com/news/2023/10/27/missile-strikes-egypts-taba-resort-town-near-israel-border?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 07:28:11 +0000", + "content": "Israel points to an 'aerial threat' after projectiles strike Taba and Nuweiba, towns not far from Israel and Gaza. ", + "contentSnippet": "Israel points to an 'aerial threat' after projectiles strike Taba and Nuweiba, towns not far from Israel and Gaza.", + "guid": "https://www.aljazeera.com/?t=1698389077", + "categories": ["News"], + "isoDate": "2023-10-27T07:28:11.000Z" + }, + { + "title": "Why are Palestinians supposed to take it \u2013 again and again?", + "link": "https://www.aljazeera.com/opinions/2023/10/27/why-are-palestinians-supposed-to-take-it-again-and-again?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 07:23:50 +0000", + "content": "The West is trying not only to stifle but to criminalise all Palestinian dissent.", + "contentSnippet": "The West is trying not only to stifle but to criminalise all Palestinian dissent.", + "guid": "https://www.aljazeera.com/?t=1698380556", + "categories": ["Opinions"], + "isoDate": "2023-10-27T07:23:50.000Z" + }, + { + "title": "Hurricane Otis leaves trail of destruction in Mexico\u2019s Acapulco", + "link": "https://www.aljazeera.com/gallery/2023/10/27/hurricane-otis-leaves-trail-of-destruction-in-mexicos-acapulco?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 07:20:42 +0000", + "content": "The Pacific storm strengthened with shocking swiftness before it hammered the beach resort of Acapulco. ", + "contentSnippet": "The Pacific storm strengthened with shocking swiftness before it hammered the beach resort of Acapulco.", + "guid": "https://www.aljazeera.com/?t=1698388740", + "categories": ["News"], + "isoDate": "2023-10-27T07:20:42.000Z" + }, + { + "title": "Displaced cook volunteers to feed 50 Gaza families amidst Israeli bombing", + "link": "https://www.aljazeera.com/news/2023/10/27/displaced-cook-uses-donations-to-feed-50-palestinian-families?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 06:36:11 +0000", + "content": "In one of the areas set up for displaced Palestinians in Khan Younis, volunteer cooks aim to feed 500 people daily.", + "contentSnippet": "In one of the areas set up for displaced Palestinians in Khan Younis, volunteer cooks aim to feed 500 people daily.", + "guid": "https://www.aljazeera.com/?t=1698323821", + "categories": ["News"], + "isoDate": "2023-10-27T06:36:11.000Z" + }, + { + "title": "Palestinian PM: Will Israel\u2019s war on Gaza bring Hamas and Fatah together?", + "link": "https://www.aljazeera.com/program/talk-to-al-jazeera/2023/10/27/palestinian-pm-will-war-on-gaza-bring-hamas-and-fatah-together?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 06:29:47 +0000", + "content": "Mohammad Shtayyeh discusses war on Gaza, West Bank-Israel relationship, and criticism against Palestinian Authority.", + "contentSnippet": "Mohammad Shtayyeh discusses war on Gaza, West Bank-Israel relationship, and criticism against Palestinian Authority.", + "guid": "https://www.aljazeera.com/?t=1698382431", + "categories": ["TV Shows"], + "isoDate": "2023-10-27T06:29:47.000Z" + }, + { + "title": "Israeli air strikes kill dozens in Gaza overnight, Palestinian sources say", + "link": "https://www.aljazeera.com/news/2023/10/27/israeli-air-strikes-kill-dozens-in-gaza-overnight-palestinian-sources-say?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 06:14:50 +0000", + "content": "Four Palestinians also reportedly killed in the occupied West Bank following pre-dawn raids by Israeli forces. ", + "contentSnippet": "Four Palestinians also reportedly killed in the occupied West Bank following pre-dawn raids by Israeli forces.", + "guid": "https://www.aljazeera.com/?t=1698371612", + "categories": ["News"], + "isoDate": "2023-10-27T06:14:50.000Z" + }, + { + "title": "A day in the life of families sheltering at Gaza\u2019s al-Shifa Hospital", + "link": "https://www.aljazeera.com/gallery/2023/10/27/palestinian-family-taking-shelter-at-al-shifa-hospital?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 15:06:39 +0000", + "content": "Families taking refuge in al-Shifa Hospital say situation is unbearable - no clean water, electricity, and sanitation.", + "contentSnippet": "Families taking refuge in al-Shifa Hospital say situation is unbearable - no clean water, electricity, and sanitation.", + "guid": "https://www.aljazeera.com/?t=1698400376", + "categories": ["News"], + "isoDate": "2023-10-27T15:06:39.000Z" + }, + { + "title": "My student Yehia Dahdouh survived an Israeli bombing, but his pain is huge", + "link": "https://www.aljazeera.com/features/2023/10/27/my-student-yehia-dahdouh-survived-an-israeli-bombing-but-his-pain-is-huge?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 14:35:47 +0000", + "content": "Young boy lost his mother when Israel bombed the house his family sought refuge in in central Gaza, how will he cope?", + "contentSnippet": "Young boy lost his mother when Israel bombed the house his family sought refuge in in central Gaza, how will he cope?", + "guid": "https://www.aljazeera.com/?t=1698408679", + "categories": ["Features"], + "isoDate": "2023-10-27T14:35:47.000Z" + }, + { + "title": "People with disabilities not spared by Israel\u2019s war machine on Gaza Strip", + "link": "https://www.aljazeera.com/news/2023/10/27/people-with-disabilities-not-spared-from-israels-war-machine-on-gaza-strip?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 14:33:36 +0000", + "content": "Bombs, lack of electricity and roads damaged by Israeli offensive make life impossible for disabled people in Gaza.", + "contentSnippet": "Bombs, lack of electricity and roads damaged by Israeli offensive make life impossible for disabled people in Gaza.", + "guid": "https://www.aljazeera.com/?t=1698157034", + "categories": ["News"], + "isoDate": "2023-10-27T14:33:36.000Z" + }, + { + "title": "Explosion seen as Hamas rocket hits Tel Aviv apartment block", + "link": "https://www.aljazeera.com/program/newsfeed/2023/10/27/explosion-seen-as-hamas-rocket-hits-tel-aviv-apartment-block?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 14:29:11 +0000", + "content": "An explosion was seen on the skyline in the Israeli city of Tel Aviv as a rocket fired from Gaza hit an apartment block.", + "contentSnippet": "An explosion was seen on the skyline in the Israeli city of Tel Aviv as a rocket fired from Gaza hit an apartment block.", + "guid": "https://www.aljazeera.com/?t=1698416785", + "categories": ["Show Types"], + "isoDate": "2023-10-27T14:29:11.000Z" + }, + { + "title": "What does Gaza\u2019s food shortage look like amid Israeli siege?", + "link": "https://www.aljazeera.com/news/2023/10/27/what-does-gazas-food-shortage-look-like?traffic_source=rss", + "pubDate": "Fri, 27 Oct 2023 13:21:54 +0000", + "content": "Since October 21, only 84 trucks carrying aid have been allowed into Gaza. ", + "contentSnippet": "Since October 21, only 84 trucks carrying aid have been allowed into Gaza.", + "guid": "https://www.aljazeera.com/?t=1698408786", + "categories": ["News"], + "isoDate": "2023-10-27T13:21:54.000Z" + } +] diff --git a/intro to react/newData/rss-to-json.js b/intro to react/newData/rss-to-json.js index 811aeb3..db99d42 100644 --- a/intro to react/newData/rss-to-json.js +++ b/intro to react/newData/rss-to-json.js @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/no-var-requires */ -const express = require('express'); -const Parser = require('rss-parser'); +const express = require("express"); +const Parser = require("rss-parser"); const parser = new Parser(); const app = express(); @@ -9,24 +9,31 @@ const port = process.env.PORT || 50110; app.use(function (req, res, next) { // Set CORS headers to allow requests from any origin res.header("Access-Control-Allow-Origin", "*"); - res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); + res.header( + "Access-Control-Allow-Headers", + "Origin, X-Requested-With, Content-Type, Accept", + ); next(); }); -app.get('/', async (req, res) => { +app.get("/", async (req, res) => { if (req.query.feedURL) { const feedURL = req.query.feedURL; try { console.log(`Fetching and parsing RSS feed from: ${feedURL}`); const rss = await parser.parseURL(req.query.feedURL); - console.log('RSS feed parsed successfully.'); + console.log("RSS feed parsed successfully."); res.json(rss); } catch (error) { - console.error('Error:', error); - res.status(500).json({ error: 'An error occurred while fetching or parsing the RSS feed.' }); + console.error("Error:", error); + res + .status(500) + .json({ + error: "An error occurred while fetching or parsing the RSS feed.", + }); } } else { - res.status(400).json({ error: 'feedURL is required' }); + res.status(400).json({ error: "feedURL is required" }); } }); @@ -35,4 +42,3 @@ app.listen(port, () => { }); module.exports = app; - diff --git a/intro to react/t3st/public/index.html b/intro to react/t3st/public/index.html index aa069f2..e65acb3 100644 --- a/intro to react/t3st/public/index.html +++ b/intro to react/t3st/public/index.html @@ -1,4 +1,4 @@ - + diff --git a/intro to react/t3st/src/App.js b/intro to react/t3st/src/App.js index 1a39d00..73118f4 100644 --- a/intro to react/t3st/src/App.js +++ b/intro to react/t3st/src/App.js @@ -1,17 +1,16 @@ -import './App.css'; -import Example from './notApp.js' -import buttonResponse from './buttonAlert.js' -import LogoToggle from './logoToggle.js' -import Counter from './counter.js' - +import "./App.css"; +import Example from "./notApp.js"; +import buttonResponse from "./buttonAlert.js"; +import LogoToggle from "./logoToggle.js"; +import Counter from "./counter.js"; function App() { return (
- - - + + +

Edit src/App.js and save to reload.

@@ -24,7 +23,6 @@ function App() { > Learn React -
); diff --git a/intro to react/t3st/src/App.test.js b/intro to react/t3st/src/App.test.js index 1f03afe..9382b9a 100644 --- a/intro to react/t3st/src/App.test.js +++ b/intro to react/t3st/src/App.test.js @@ -1,7 +1,7 @@ -import { render, screen } from '@testing-library/react'; -import App from './App'; +import { render, screen } from "@testing-library/react"; +import App from "./App"; -test('renders learn react link', () => { +test("renders learn react link", () => { render(); const linkElement = screen.getByText(/learn react/i); expect(linkElement).toBeInTheDocument(); diff --git a/intro to react/t3st/src/buttonAlert.js b/intro to react/t3st/src/buttonAlert.js index 9669cc2..da7e355 100644 --- a/intro to react/t3st/src/buttonAlert.js +++ b/intro to react/t3st/src/buttonAlert.js @@ -1,6 +1,6 @@ export function buttonResponse() { - alert('You clicked me!'); - } + alert("You clicked me!"); +} export default function buttonAlert() { - alert('You clicked me!'); -} \ No newline at end of file + alert("You clicked me!"); +} diff --git a/intro to react/t3st/src/counter.js b/intro to react/t3st/src/counter.js index a33c1b7..464b7e9 100644 --- a/intro to react/t3st/src/counter.js +++ b/intro to react/t3st/src/counter.js @@ -1,26 +1,24 @@ -import React, { Component } from 'react'; +import React, { Component } from "react"; class Counter extends Component { - constructor(props) { - super(props); - this.state = { - count: 0, - }; - } - handleClick = () => { - this.setState(state => ({ - count: state.count + 1 - })); - } - render() { - return ( -
- -

{this.state.count}

-
- ); - } + constructor(props) { + super(props); + this.state = { + count: 0, + }; + } + handleClick = () => { + this.setState((state) => ({ + count: state.count + 1, + })); + }; + render() { + return ( +
+ +

{this.state.count}

+
+ ); + } } export default Counter; diff --git a/intro to react/t3st/src/index.css b/intro to react/t3st/src/index.css index ec2585e..4a1df4d 100644 --- a/intro to react/t3st/src/index.css +++ b/intro to react/t3st/src/index.css @@ -1,13 +1,13 @@ body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", + "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; } diff --git a/intro to react/t3st/src/index.js b/intro to react/t3st/src/index.js index d563c0f..902eb7c 100644 --- a/intro to react/t3st/src/index.js +++ b/intro to react/t3st/src/index.js @@ -1,14 +1,14 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import './index.css'; -import App from './App'; -import reportWebVitals from './reportWebVitals'; +import React from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; +import App from "./App"; +import reportWebVitals from "./reportWebVitals"; -const root = ReactDOM.createRoot(document.getElementById('root')); +const root = ReactDOM.createRoot(document.getElementById("root")); root.render( - + , ); // If you want to start measuring performance in your app, pass a function diff --git a/intro to react/t3st/src/logoToggle.js b/intro to react/t3st/src/logoToggle.js index 87757f2..2ba1f63 100644 --- a/intro to react/t3st/src/logoToggle.js +++ b/intro to react/t3st/src/logoToggle.js @@ -1,29 +1,31 @@ -import logo1 from './logo.svg'; -import logo2 from './logo2.svg'; -import React, { Component } from 'react'; +import logo1 from "./logo.svg"; +import logo2 from "./logo2.svg"; +import React, { Component } from "react"; class LogoToggle extends Component { - constructor(props) { - super(props); - this.state = { - isLogo1: true, - }; - } - handleClick = () => { - this.setState(state => ({ - isLogo1: !state.isLogo1 - })); - } - render() { - return ( -
- - logo -
- ); - } + constructor(props) { + super(props); + this.state = { + isLogo1: true, + }; + } + handleClick = () => { + this.setState((state) => ({ + isLogo1: !state.isLogo1, + })); + }; + render() { + return ( +
+ + logo +
+ ); + } } -export default LogoToggle; \ No newline at end of file +export default LogoToggle; diff --git a/intro to react/t3st/src/notApp.js b/intro to react/t3st/src/notApp.js index 1a60fc9..021f7fb 100644 --- a/intro to react/t3st/src/notApp.js +++ b/intro to react/t3st/src/notApp.js @@ -1,10 +1,8 @@ -import React, { Component } from 'react'; +import React, { Component } from "react"; class Example extends Component { - render() { - return ( -

Hello World!

- ); - } + render() { + return

Hello World!

; } -export default Example; \ No newline at end of file +} +export default Example; diff --git a/intro to react/t3st/src/reportWebVitals.js b/intro to react/t3st/src/reportWebVitals.js index 5253d3a..9ecd33f 100644 --- a/intro to react/t3st/src/reportWebVitals.js +++ b/intro to react/t3st/src/reportWebVitals.js @@ -1,6 +1,6 @@ -const reportWebVitals = onPerfEntry => { +const reportWebVitals = (onPerfEntry) => { if (onPerfEntry && onPerfEntry instanceof Function) { - import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { + import("web-vitals").then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { getCLS(onPerfEntry); getFID(onPerfEntry); getFCP(onPerfEntry); diff --git a/intro to react/t3st/src/setupTests.js b/intro to react/t3st/src/setupTests.js index 8f2609b..1dd407a 100644 --- a/intro to react/t3st/src/setupTests.js +++ b/intro to react/t3st/src/setupTests.js @@ -2,4 +2,4 @@ // allows you to do things like: // expect(element).toHaveTextContent(/react/i) // learn more: https://github.com/testing-library/jest-dom -import '@testing-library/jest-dom'; +import "@testing-library/jest-dom"; diff --git a/intro to react/tictactoe-done/public/index.html b/intro to react/tictactoe-done/public/index.html index aa069f2..e65acb3 100644 --- a/intro to react/tictactoe-done/public/index.html +++ b/intro to react/tictactoe-done/public/index.html @@ -1,4 +1,4 @@ - + diff --git a/intro to react/tictactoe-done/src/App.js b/intro to react/tictactoe-done/src/App.js index 32a6970..4cdc2c2 100644 --- a/intro to react/tictactoe-done/src/App.js +++ b/intro to react/tictactoe-done/src/App.js @@ -1,12 +1,11 @@ -import { useState } from 'react'; +import { useState } from "react"; Square.propTypes = { value: PropTypes.string.isRequired, // Assuming value is a string ('X' or 'O') onSquareClick: PropTypes.func.isRequired, }; - -function Square({value, onSquareClick}) { +function Square({ value, onSquareClick }) { return (
- } /> + } + />
diff --git a/intro to react/vite-project/src/index.css b/intro to react/vite-project/src/index.css index 3ec2e08..667fefe 100644 --- a/intro to react/vite-project/src/index.css +++ b/intro to react/vite-project/src/index.css @@ -1,16 +1,16 @@ body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", + "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; } @tailwind base; @tailwind components; -@tailwind utilities; \ No newline at end of file +@tailwind utilities; diff --git a/intro to react/vite-project/src/index.tsx b/intro to react/vite-project/src/index.tsx index 08bfe25..c5e4951 100644 --- a/intro to react/vite-project/src/index.tsx +++ b/intro to react/vite-project/src/index.tsx @@ -1,14 +1,14 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import './index.css'; -import App from './App'; +import React from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; +import App from "./App"; - -const root: ReactDOM.Root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement); +const root: ReactDOM.Root = ReactDOM.createRoot( + document.getElementById("root") as HTMLElement, +); root.render( - - -); \ No newline at end of file + , +); diff --git a/intro to react/vite-project/src/main.tsx b/intro to react/vite-project/src/main.tsx index 3d7150d..f25366e 100644 --- a/intro to react/vite-project/src/main.tsx +++ b/intro to react/vite-project/src/main.tsx @@ -1,10 +1,10 @@ -import React from 'react' -import ReactDOM from 'react-dom/client' -import App from './App.tsx' -import './index.css' +import React from "react"; +import ReactDOM from "react-dom/client"; +import App from "./App.tsx"; +import "./index.css"; -ReactDOM.createRoot(document.getElementById('root')!).render( +ReactDOM.createRoot(document.getElementById("root")!).render( , -) +); diff --git a/intro to react/vite-project/src/navBar.tsx b/intro to react/vite-project/src/navBar.tsx index 32616fe..ca8b827 100644 --- a/intro to react/vite-project/src/navBar.tsx +++ b/intro to react/vite-project/src/navBar.tsx @@ -6,26 +6,23 @@ type Props = { }; const NavBar = ({ sendQueryToParent }: Props) => { - const [query, setQuery] = useState(""); - - const sendQuery = () => { - sendQueryToParent(query); - }; - - const handleChange = (event: React.ChangeEvent) => { - const newQuery = event.target.value; - setQuery(newQuery); - sendQueryToParent(newQuery); - }; + const [query, setQuery] = useState(""); + + const sendQuery = () => { + sendQueryToParent(query); + }; + + const handleChange = (event: React.ChangeEvent) => { + const newQuery = event.target.value; + setQuery(newQuery); + sendQueryToParent(newQuery); + }; return (